diff --git a/.claude/skills/rtl-docker-fixture/SKILL.md b/.claude/skills/rtl-docker-fixture/SKILL.md new file mode 100644 index 00000000..ac333923 --- /dev/null +++ b/.claude/skills/rtl-docker-fixture/SKILL.md @@ -0,0 +1,98 @@ +--- +name: rtl-docker-fixture +description: Bring up and use the docker/ regtest fixture (bitcoind + LND alice/bob/carol + Core Lightning + Eclair + RTL) to test RTL end-to-end. Use when testing a branch against real Lightning nodes, seeding channels and payments, driving RTL's API for verification, taking screenshots of live data, or reproducing disconnected-peer states. +--- + +# Testing against a live network — `docker/` regtest fixture + +`docker/` is a self-contained regtest network for developing and testing RTL end-to-end: +`bitcoind` + three LND nodes (**alice → bob → carol**) + a **Core Lightning node** (`cln`, +with a channel to alice) + RTL wired to all four. bob sits in the middle so it accrues +forwarding history and RTL's routing screens have data; the CLN node gives RTL's Core +Lightning screens a real backend (it talks to RTL over clnrest with rune auth). LND/bitcoind +images come from [Polar](https://lightningpolar.com), CLN from `elementsproject/lightningd` +(all multi-arch, so it works on Apple Silicon). **Dev only; every credential is throwaway.** +Full details in `docker/README.md`. + +Bring it up (from `docker/`, needs Compose v2 — `docker compose`, not `docker-compose`): + +```bash +docker compose up -d # bitcoind, alice, bob, carol, cln, rtl +./scripts/seed.sh # fund, connect, open channels, make payments +``` + +Then open , password `rtldev`; all four nodes show in the switcher. +Reset to a clean slate: `docker compose down -v && docker compose up -d && ./scripts/seed.sh`. + +Helpers and logs: + +```bash +bin/b-cli getblockcount # bitcoin-cli +bin/ln-cli alice getinfo # lncli (node name required; handles --lnddir) +bin/ln-cli bob fwdinghistory +docker compose logs -f rtl +``` + +Testing the **BTCPay Server integration** (RTL in single-sign-on mode behind a proxy) — +behind a compose profile, so a plain `up` does not start it: + +```bash +docker compose --profile sso up -d +./scripts/verify-sso.sh # 11 assertions over the whole entry path; non-zero on failure +open "$(bin/sso-url)" # the link BTCPay renders on its Services page +``` + +Key facts when working with the fixture: + +- **Run `scripts/verify-sso.sh` after touching authentication, CSRF or static serving.** + BTCPay reaches RTL over a path the standalone login never exercises — a rotating cookie + file, an unregistered `/rtl/api/authenticate/cookie` URL that falls through to the + catch-all in `server/utils/app.ts`, and a reverse proxy. Note `GET /rtl/` is served by + `express.static` and mints **no** `XSRF-TOKEN`; only the catch-all does, so a client + entering there 403s on its first POST. That is long-standing, not a regression. +- **`scripts/seed.sh` is deterministic but not idempotent.** Every amount is fixed, so a + fresh run always produces identical state (screenshots differ only by your change) — so + **do not introduce randomness**. It refuses to run twice against an already-seeded + network; use the `down -v` reset above to start over. +- Seed creates: 10M sat on-chain per node; channels alice→bob (5M), bob→carol (3M), + cln→alice (4M) and eclair→bob (3.5M); 5 routed alice→carol payments + 2 direct + alice→bob + 2 direct eclair→bob; 2 unpaid invoices on carol + 1 on eclair; + carol as MERCHANT, everyone else OPERATOR. +- **`rtl/RTL-Config.regtest.json`** is the tracked config template. RTL rewrites its config + on startup, so an init container copies it into a volume rather than bind-mounting it + (a read-only mount → `EROFS`; a writable one would edit a tracked file). It's not named + `RTL-Config.json` because `.gitignore` matches that bare name at any depth. +- **Payments right after a channel opens fail** until the graph propagates to the sender; + the seed waits for this and so should anything you script. +- **Eclair node** (`eclair`, `polarlightning/eclair` — the official `acinq/eclair` image is + amd64-only and stale): RTL talks to its HTTP API with basic auth (`lnApiPassword`). Eclair + has no wallet of its own — `eclair-wallet-init` creates a dedicated `eclair` bitcoind + wallet before it starts, else it grabs the mining wallet. Its channels confirm at 8 blocks + (`channel.min-depth-blocks`), not 6. Helper: `bin/e-cli `. +- **Not included:** the Boltz swap service. + +## Testing an unreleased branch against the fixture + +The `rtl` service defaults to a published image but is overridable — build your branch and +point the fixture at it: + +```bash +docker build -t rtl:pr . # from repo root (RTL/) +cd docker && RTL_IMAGE=rtl:pr docker compose up -d +``` + +To confirm your change is actually running, grep inside the container: compiled backend at +`/RTL/backend/...`, built frontend bundle at `/RTL/frontend/*.js`. + +- **Reproduce a disconnected CLN channel** (to exercise `peer_connected` states): the `cln` + node has a channel to alice, so `docker compose stop alice` flips it to disconnected within + ~1s. Gotcha: **`docker compose up -d rtl` restarts stopped dependencies** (rtl `depends_on` + them), silently reconnecting the peer — don't re-run `up` on rtl mid-test. Restore with + `docker compose start alice`. +- **Driving RTL's API for verification** (host→container network is often blocked; run a Node + script via `docker compose exec -T rtl node < script.js`): the base href is `/rtl`, so all + API paths are `/rtl/api/...`; auth needs the CSRF handshake (`GET /` for the `XSRF-TOKEN`, + echoed as an `x-xsrf-token` header) and a **SHA256-hashed** password; and you must call + `/rtl/api/cln/getinfo` before CLN channel endpoints (it initializes the session's rune auth, + else `listPeerChannels` 401s). Prefer verifying the data layer (API) separately from frontend + rendering — a template can crash mid-render while the API returns correct data. diff --git a/.dockerignore b/.dockerignore index b81e86ec..459f8d15 100644 --- a/.dockerignore +++ b/.dockerignore @@ -4,6 +4,7 @@ .github/ .settings/ .vscode/ +src/app/shared/test-helpers/ frontend/ backend/ backup/ @@ -12,6 +13,7 @@ coverage/ dist/ docker/ dockerfiles/ +Dockerfile logs/ node_modules/ node_modules_old/ diff --git a/.eslintrc.json b/.eslintrc.json index 3020a913..b9680fca 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -24,7 +24,7 @@ ], "rules": { "@angular-eslint/component-selector": ["error", { "prefix": "rtl", "style": "kebab-case", "type": "element" }], - "@angular-eslint/directive-selector": ["error", { "style": "camelCase", "type": "attribute" }], + "@angular-eslint/directive-selector": ["error", { "style": "camelCase", "type": "attribute", "prefix": [] }], "@angular-eslint/consistent-component-styles": "off", "@angular-eslint/prefer-on-push-component-change-detection": "off", "@angular-eslint/prefer-standalone": "off", @@ -32,6 +32,11 @@ "@angular-eslint/sort-ngmodule-metadata-arrays": "off", "@angular-eslint/use-component-view-encapsulation": "off", "@angular-eslint/use-injectable-provided-in": "off", + "@angular-eslint/prefer-inject": "off", + "@angular-eslint/sort-keys-in-type-decorator": "off", + "@angular-eslint/prefer-signals": "off", + "@angular-eslint/prefer-host-metadata-property": "off", + "@angular-eslint/prefer-output-emitter-ref": "off", "@typescript-eslint/member-delimiter-style": "off", "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/type-annotation-spacing": 0, @@ -116,7 +121,6 @@ "no-label-var": "error", "no-restricted-globals": "error", "no-undef-init": "error", - "no-undefined": "error", "block-spacing": "error", "brace-style": ["error", "1tbs", { "allowSingleLine": true }], "comma-style": "error", @@ -208,7 +212,8 @@ "@angular-eslint/template/prefer-ngsrc": "off", "@angular-eslint/template/prefer-control-flow": "off", "@angular-eslint/template/prefer-self-closing-tags": "off", - "@angular-eslint/template/use-track-by-function": "off" + "@angular-eslint/template/use-track-by-function": "off", + "@angular-eslint/template/prefer-template-literal": "off" } } ] diff --git a/.github/README.md b/.github/README.md index f414e014..e478d9b6 100644 --- a/.github/README.md +++ b/.github/README.md @@ -4,7 +4,7 @@ Known Vulnerabilities [![license](https://img.shields.io/github/license/DAVFoundation/captain-n3m0.svg?style=flat-square)](https://github.com/DAVFoundation/captain-n3m0/blob/master/LICENSE) -**Intro** -- [Application Features](./docs/Application_features.md) -- [Road Map](./docs/Roadmap.md) -- [Application Configurations](./docs/Application_configurations.md) -- [Core Lightning](./docs/Core_lightning_setup.md) -- [Eclair](./docs/Eclair_setup.md) -- [Contribution](./docs/Contributing.md) +**Intro** -- [Application Features](./docs/Application_features.md) -- [Road Map](./docs/Roadmap.md) -- [Application Configurations](./docs/Application_configurations.md) -- [Core Lightning](./docs/Core_lightning_setup.md) -- [Eclair](./docs/Eclair_setup.md) -- [Contribution](./docs/Contributing.md) -- [Release Notes](../release-notes) * [Introduction](#intro) * [Architecture](#arch) @@ -55,7 +55,7 @@ To download from master (*not recommended*): ``` $ git clone https://github.com/Ride-The-Lightning/RTL.git $ cd RTL -$ npm install --omit=dev --legacy-peer-deps +$ npm ci --omit=dev --legacy-peer-deps ``` #### Or: Update existing dependencies ``` @@ -63,12 +63,9 @@ $ cd RTL $ git reset --hard HEAD $ git clean -f -d $ git pull -$ npm install --omit=dev --legacy-peer-deps +$ npm ci --omit=dev --legacy-peer-deps ``` -#### Error on npm install -If there is an error with `upstream dependency conflict` message then replace `npm install --omit=dev` with `npm install --omit=dev --legacy-peer-deps`. - ### Prep for Execution RTL requires its own config file `RTL-Config.json`, to start the server and provide user authentication on the app. @@ -127,6 +124,8 @@ For details on all the configuration options refer to [this page](./docs/Applica RTL requires the user to be authenticated by the application first, before allowing access to LND functions. Specific password must be provided in RTL-Config.json (in plain text) for authentication. Password should be set with `multiPass:` in the `Authentication` section of RTL-Config.json. Default initial password is `password`. +For hosted solutions such as BTCPayServer, we implemented an "SSO" setup using a one-time-use cookie. For other vendors which have their own authentication service, we introduced a "disableAuth" option, which disables authentication at the RTL level. When using this option, the authentication security is the responsibility of the Vendor. This option is NOT recommended for standalone users of RTL. + ### Start the Server Run the following command: diff --git a/.github/docs/Application_configurations.md b/.github/docs/Application_configurations.md index 2e89e958..59e79ee4 100644 --- a/.github/docs/Application_configurations.md +++ b/.github/docs/Application_configurations.md @@ -5,7 +5,8 @@ parameters have `default` values for initial setup and can be updated after RTL ### RTL-Config.json
``` { - "multiPass": "", + "multiPass": "", + "disableAuth": "", "port": "", "host": "", "defaultNodeIndex": , @@ -55,7 +56,8 @@ If the environment variables are set, it will take precedence over the parameter PORT (port number for the rtl node server, default 3000, Optional)
HOST (host for the rtl node server, default localhost, Optional)
DB_DIRECTORY_PATH (Path for the folder where rtl database file should be saved, default RTL root directory, Optional) -APP_PASSWORD (Plaintext password to be provided by the parent container, NOT suggested for standalone RTL applications, to be used by Umbrel) (Optional)
+APP_PASSWORD (Plaintext password to be provided by the parent container, NOT suggested for standalone RTL applications, only to be used by Vendors providing their own authentication service) (Optional)
+DISABLE_AUTH (Flag to disable authentication, NOT recommended for standalone RTL applications, only to be used by Vendors providing their own authentication service) (Optional)
LN_SERVER_URL (LN server URL for LNP REST APIs, default https://127.0.0.1:8080) (Optional)
SWAP_SERVER_URL (Swap server URL for REST APIs, default http://127.0.0.1:8081) (Optional)
diff --git a/.github/docs/Core_lightning_setup.md b/.github/docs/Core_lightning_setup.md index 46baeff3..09c9ccec 100644 --- a/.github/docs/Core_lightning_setup.md +++ b/.github/docs/Core_lightning_setup.md @@ -33,7 +33,7 @@ To download from master (*not recommended*): ``` $ git clone https://github.com/Ride-The-Lightning/RTL.git $ cd RTL -$ npm install --omit=dev --legacy-peer-deps +$ npm ci --omit=dev --legacy-peer-deps ``` #### Or: Update existing build @@ -42,12 +42,9 @@ $ cd RTL $ git reset --hard HEAD $ git clean -f -d $ git pull -$ npm install --omit=dev --legacy-peer-deps +$ npm ci --omit=dev --legacy-peer-deps ``` -#### Error on npm install -If there is an error with `upstream dependency conflict` message then replace `npm install --omit=dev` with `npm install --omit=dev --legacy-peer-deps`. - ### Prep for Execution RTL requires its own config file `RTL-Config.json`, to start the server and provide user authentication on the app * Rename the file `Sample-RTL-Config.json` to `RTL-Config.json` located at`./RTL` diff --git a/.github/docs/Eclair_setup.md b/.github/docs/Eclair_setup.md index 6b6ae8a6..fd8cfb03 100644 --- a/.github/docs/Eclair_setup.md +++ b/.github/docs/Eclair_setup.md @@ -28,7 +28,7 @@ To download from master (*not recommended*) follow the below instructions: ``` $ git clone https://github.com/Ride-The-Lightning/RTL.git $ cd RTL -$ npm install --omit=dev --legacy-peer-deps +$ npm ci --omit=dev --legacy-peer-deps ``` #### Or: Update existing build ``` @@ -36,12 +36,9 @@ $ cd RTL $ git reset --hard HEAD $ git clean -f -d $ git pull -$ npm install --omit=dev --legacy-peer-deps +$ npm ci --omit=dev --legacy-peer-deps ``` -#### Error on npm install -If there is an error with `upstream dependency conflict` message then replace `npm install --omit=dev` with `npm install --omit=dev --legacy-peer-deps`. - ### Prep for Execution RTL requires its own config file `RTL-Config.json`, to start the server and provide user authentication on the app. * Rename the file `Sample-RTL-Config.json` to `RTL-Config.json` located at`./RTL`.. diff --git a/.github/scripts/export_traffic.py b/.github/scripts/export_traffic.py new file mode 100644 index 00000000..21e62126 --- /dev/null +++ b/.github/scripts/export_traffic.py @@ -0,0 +1,86 @@ +import os +import gspread +import requests +from datetime import datetime +from oauth2client.service_account import ServiceAccountCredentials + +# --- CONFIGURATION --- +# GitHub repository details +GITHUB_REPO = "Ride-The-Lightning/RTL" # e.g., "google/gemini" + +# Get credentials from environment variables (for GitHub Actions) +# For local testing, you can temporarily hardcode these or set them in your terminal +GITHUB_TOKEN = os.getenv('GH_TOKEN') +GOOGLE_SHEETS_CREDENTIALS = os.getenv('GOOGLE_SHEETS_CREDENTIALS') + +# --- MAIN SCRIPT --- +def get_github_traffic(repo, token, metric): + """Fetches view or clone traffic data from the GitHub API.""" + url = f"https://api.github.com/repos/{repo}/traffic/{metric}" + headers = { + "Authorization": f"token {token}", + "Accept": "application/vnd.github.v3+json" + } + try: + response = requests.get(url, headers=headers) + response.raise_for_status() # Raises an error for bad responses (4xx or 5xx) + data = response.json() + print(f"Successfully fetched {metric} data. Total: {data['count']}, Unique: {data['uniques']}.") + return data + except requests.exceptions.RequestException as e: + print(f"Error fetching GitHub data for {metric}: {e}") + return None + +def main(): + """Main function to fetch data and write to Google Sheets.""" + # 1. Authenticate with Google Sheets + try: + scope = ["https://spreadsheets.google.com/feeds", 'https://www.googleapis.com/auth/spreadsheets', + "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive"] + + # Use credentials from environment variable + creds = ServiceAccountCredentials.from_json_keyfile_name(GOOGLE_SHEETS_CREDENTIALS, scope) + client = gspread.authorize(creds) + + # Open the worksheet + # Make sure your service account email has editor access to this sheet + sheet = client.open("GitHub Repo Traffic").sheet1 + print("Successfully connected to Google Sheets.") + except Exception as e: + print(f"Error connecting to Google Sheets: {e}") + return + + # 2. Fetch traffic data from GitHub + views_data = get_github_traffic(GITHUB_REPO, GITHUB_TOKEN, "views") + clones_data = get_github_traffic(GITHUB_REPO, GITHUB_TOKEN, "clones") + + # 3. Prepare and append the data + if views_data and clones_data: + today_str = datetime.now().strftime("%Y-%m-%d") + + # Create a new row with today's summary + new_row = [ + today_str, + views_data['count'], + views_data['uniques'], + clones_data['count'], + clones_data['uniques'] + ] + + # Check if headers are needed + if not sheet.get_all_values(): + sheet.append_row(["Date", "Total Views", "Unique Views", "Total Clones", "Unique Clones"]) + + sheet.append_row(new_row) + print(f"Successfully appended data for {today_str} to the sheet.") + +if __name__ == "__main__": + # For local testing, you need to set up the credentials file path + # For example: os.environ['GOOGLE_SHEETS_CREDENTIALS'] = 'your-key-file.json' + # And your GitHub token: os.environ['GH_TOKEN'] = 'your_github_token' + + # Check if credentials are set + if not GITHUB_TOKEN or not GOOGLE_SHEETS_CREDENTIALS: + print("Error: Required environment variables GH_TOKEN or GOOGLE_SHEETS_CREDENTIALS are not set.") + else: + main() diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 434ebbe3..dd4cdb50 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -15,21 +15,29 @@ on: jobs: prepare: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + node-version: + - '18.x' + - '20.x' + - '22.x' + - '24.x' steps: - name: Checkout source code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: ${{ matrix.node-version }} - name: Cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-npm-packages with: path: node_modules - key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }} + key: ${{ runner.OS }}-${{ matrix.node-version }}-build-${{ hashFiles('**/package-lock.json') }} - name: Install NPM dependencies if: steps.cache-npm-packages.outputs.cache-hit != 'true' @@ -39,21 +47,29 @@ jobs: name: Lint runs-on: ubuntu-latest needs: prepare + strategy: + fail-fast: false + matrix: + node-version: + - '18.x' + - '20.x' + - '22.x' + - '24.x' steps: - name: Checkout source code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: ${{ matrix.node-version }} - name: Cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-npm-packages with: path: node_modules - key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }} + key: ${{ runner.OS }}-${{ matrix.node-version }}-build-${{ hashFiles('**/package-lock.json') }} - name: Install NPM dependencies if: steps.cache-npm-packages.outputs.cache-hit != 'true' @@ -70,19 +86,19 @@ jobs: CI: true steps: - name: Checkout source code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: ${{ matrix.node-version }} - name: Cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-npm-packages with: path: node_modules - key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }} + key: ${{ runner.OS }}-${{ matrix.node-version }}-build-${{ hashFiles('**/package-lock.json') }} - name: Install NPM dependencies if: steps.cache-npm-packages.outputs.cache-hit != 'true' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e63809aa..0f09f496 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,31 +2,29 @@ name: Artifact on: push: - branches: [ master, 'Release-*' ] tags: [ 'v*' ] release: types: [released] - # Triggers the workflow only when merging pull request to the branches. - pull_request: - types: [closed] - branches: [ master, 'Release-*' ] - # Allows you to run this workflow manually from the Actions tab workflow_dispatch: - + inputs: + version: + description: 'Release version' + required: true + jobs: build: runs-on: ubuntu-latest steps: - name: Checkout source code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 22.x - name: Cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-npm-packages with: path: node_modules @@ -37,7 +35,7 @@ jobs: run: npm ci --legacy-peer-deps - name: Cache build frontend - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-build-frontend with: path: frontend @@ -47,7 +45,7 @@ jobs: run: npm run buildfrontend - name: Cache build backend - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-build-backend with: path: backend @@ -61,26 +59,32 @@ jobs: needs: build steps: - name: Checkout source code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache build frontend - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-build-frontend with: path: frontend key: ${{ runner.os }}-frontend-${{ github.sha }} - name: Cache build backend - uses: actions/cache@v2 + uses: actions/cache@v4 id: cache-build-backend with: path: backend key: ${{ runner.os }}-backend-${{ github.sha }} - name: Compress files - run: tar -czf /tmp/rtlbuild.tar.gz frontend backend rtl.js package.json package-lock.json - - - uses: actions/upload-artifact@v2 + env: + VERSION: "${{ github.event.release.tag_name || github.event.inputs.version || '' }}" + run: | + tar -czf /tmp/rtl-build-$VERSION.tar.gz frontend backend rtl.js package.json package-lock.json + zip -r /tmp/rtl-build-$VERSION.zip frontend backend rtl.js package.json package-lock.json + + - uses: actions/upload-artifact@v4 with: - name: rtl-build-${{ github.event.release.tag_name }} - path: /tmp/rtlbuild.tar.gz + name: rtl-build-${{ github.event.release.tag_name || github.event.inputs.version || '' }} + path: | + /tmp/rtl-build-${{ github.event.release.tag_name || github.event.inputs.version || '' }}.tar.gz + /tmp/rtl-build-${{ github.event.release.tag_name || github.event.inputs.version || '' }}.zip diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index cc16cf90..c704feaa 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -11,7 +11,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout repository @@ -41,6 +41,10 @@ jobs: exit 1 fi echo "VERSION=$VERSION" >> $GITHUB_ENV + echo "GITHUB REF TYPE: ${{ github.ref_type }}" + echo "GITHUB REF NAME: ${{ github.ref_name }}" + echo "EVENT INPUT VERSION: ${{ github.event.inputs.version }}" + echo "ENV VERSION: $VERSION" - name: Build and push Docker image uses: docker/build-push-action@v5 diff --git a/.github/workflows/rtlreviewbot.yml b/.github/workflows/rtlreviewbot.yml new file mode 100644 index 00000000..b54eeeea --- /dev/null +++ b/.github/workflows/rtlreviewbot.yml @@ -0,0 +1,31 @@ + name: rtlreviewbot + + on: + issue_comment: + types: [created] + pull_request: + types: [review_requested, closed] + + permissions: + contents: read + + jobs: + review: + if: ${{ github.event_name != 'issue_comment' || github.event.issue.pull_request != null }} + runs-on: ubuntu-latest + timeout-minutes: 20 + steps: + - uses: Ride-The-Lightning/rtlreviewbot-action@main + with: + event_name: ${{ github.event_name }} + event_action: ${{ github.event.action }} + repo: ${{ github.repository }} + pr_number: ${{ github.event.issue.number || github.event.pull_request.number }} + actor: ${{ github.event.sender.login }} + comment_body: ${{ github.event.comment.body }} + comment_id: ${{ github.event.comment.id }} + installation_id: 127679607 + app_id: ${{ secrets.GATEWAY_APP_ID }} + private_key: ${{ secrets.GATEWAY_PRIVATE_KEY }} + anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} + claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} diff --git a/.github/workflows/traffic-exporter.yml b/.github/workflows/traffic-exporter.yml new file mode 100644 index 00000000..711faf30 --- /dev/null +++ b/.github/workflows/traffic-exporter.yml @@ -0,0 +1,39 @@ +name: Export Repo Traffic to Google Sheets + +on: + schedule: + - cron: '0 2 * * *' + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: '3.10' + + - name: Install Python dependencies + run: | + python -m pip install --upgrade pip + pip install gspread oauth2client requests + + # --- NEW STEP TO DECODE THE SECRET --- + - name: Write Google credentials to a file + id: write_creds + uses: timheuer/base64-to-file@v1.2 + with: + fileName: 'google-credentials.json' + encodedString: ${{ secrets.GOOGLE_SHEETS_CREDENTIALS }} + + # --- MODIFIED STEP TO RUN THE SCRIPT --- + - name: Run the Python script + env: + GH_TOKEN: ${{ secrets.GH_TOKEN }} + # Point the environment variable to the file path created in the previous step + GOOGLE_SHEETS_CREDENTIALS: ${{ steps.write_creds.outputs.filePath }} + run: python .github/scripts/export_traffic.py diff --git a/.gitignore b/.gitignore index 47d9f83e..a35b9e2a 100644 --- a/.gitignore +++ b/.gitignore @@ -21,10 +21,6 @@ # IDE - VSCode .vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json # misc /.angular/cache @@ -67,3 +63,5 @@ RTL-Config-Regtest.json RTL-Config-Signet.json RTL-Config-Testnet.json RTL-Config-All.json +.aider* +.continue diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 6f15dc13..00000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "pwa-node", - "request": "launch", - "name": "Launch Program", - "skipFiles": [ - "/**" - ], - "env": { - "NODE_ENV": "development" - }, - "program": "${workspaceFolder}/rtl.js" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index fdc25922..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "eslint.enable": true, - "eslint.validate": [ - "typescript", - "HTML" - ], - "eslint.options": { - "configFile": ".eslintrc.json" - }, - "editor.codeActionsOnSave": { - "source.fixAll.eslint": "explicit" - } -} diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 00000000..6fbba349 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,122 @@ +# RTL — notes for AI coding agents + +RTL (Ride The Lightning) is a device-agnostic web UI for Lightning node operations: +an Angular single-page frontend plus a Node/Express backend, both TypeScript. + +`CONTRIBUTING.md` is the process document — how to install, run the dev servers, package a +build, open a PR, add a library, and handle Dependabot. **Read it first.** This file covers +only the things that are easy to get wrong and aren't obvious from the tree. + +## Source vs. generated — read this before editing anything + +| Directory | What it is | Edit it? | +|-------------|-----------------------------------|----------| +| `src/` | Angular frontend source | yes | +| `server/` | Express backend source | yes | +| `frontend/` | Built AOT bundle, **committed** | never by hand | +| `backend/` | Compiled `server/` output, **committed** | never by hand | + +`frontend/` and `backend/` look like ignorable build artifacts, but they are tracked in git +and are expected to stay in sync with the sources. So a code change is a two-step edit: +change `src/`/`server/`, then rebuild and commit the regenerated output in the same PR. + +```bash +npm run buildbackend # tsc: server/ -> backend/ +npm run buildfrontend # ng build --configuration production: src/ -> frontend/ +``` + +`backend/` is a plain `tsc` transpile of `server/`, so it changes only when `server/` does — +a dependency bump alone won't move it. `frontend/` is a bundle, so it also carries the app +version and any bundled dependency. + +## The three-implementation pattern + +RTL supports three Lightning implementations, and the layout mirrors that everywhere: + +``` +src/app/{lnd,cln,eclair,shared}/ +server/controllers/{lnd,cln,eclair,shared}/ +server/routes/{lnd,cln,eclair,shared}/ +``` + +A feature or fix usually touches the matching folder in **each layer** for the +implementations it affects; genuinely cross-cutting logic belongs in `shared/`. When fixing a +bug in one implementation, check whether the same shape exists in the other two — they +frequently do, since the controllers were written in parallel. + +## Commands, and where they bite + +- **Install with `npm ci --legacy-peer-deps`**, not `npm install`. Plain `npm ci` fails on an + `ERESOLVE` conflict from `@fortawesome/angular-fontawesome`. +- **`npm run server` only works on Windows** — it sets `NODE_ENV` with `set X=Y&&` syntax. On + macOS/Linux use `npm run serverUbuntu`. +- **`npm run lint` and `npm run test` must both be green before a PR.** Nothing will check + this for you: no build or test CI runs on an open PR. `checks.yml` fires on + `pull_request: closed` (i.e. on merge) and on tags/releases, and `rtlreviewbot` only on a + requested review or a comment — so running both locally is the only gate before merge. +- If lint reports hundreds of template "Parsing error" failures, look for a stale + **`coverage/`** directory (git-ignored Karma output). The template linter walks its HTML + report. Delete it and re-run. +- The repo README is at **`.github/README.md`** — there is none at the root. + +## Branches and releases + +- **PRs target the current `Release-x.y.z` branch, not `master`.** Because release branches + merge into `master` by *rebase*, a `Fixes #N` reference never auto-closes its issue (GitHub + only does that for the default branch) — close it manually after the merge. +- **Every PR adds its own release-note entry**, in the same PR as the change: + `release-notes/Release-notes-.md`, under `## Bug Fixes`, `## Enhancements`, + `## Code Health` or `## Developer Tooling`. Create the file if it doesn't exist yet. + Link the PR and any issue, and state the root cause briefly. Because the PR number isn't + known until the PR exists, commit the entry with `#TBD` and follow up with a + `Fill in PR number in release note (#N)` commit. + +### If a release ships while your PR is open + +The rebase-merge rewrites every commit of the release branch to a new hash, and the next +release branch is cut from `master` — so a branch based on the old release branch shares no +recent ancestor with the new one. Retargeting it makes the merge base collapse to before the +release cycle, and GitHub replays the entire cycle into your PR: hundreds of files, and a +`CONFLICTING` state. Replay just your own commits instead: + +```bash +git rebase --onto Release- Release- +``` + +Then confirm `git diff Release-..` is identical to +`git diff Release-..` before force-pushing. Retargeting *before* the release +branch is merged avoids the problem entirely. + +## Testing against real nodes + +`docker/` is a self-contained regtest fixture — bitcoind, three LND nodes, Core Lightning and +Eclair, wired to RTL — for end-to-end testing across all three implementations. See +`docker/README.md`, or the `rtl-docker-fixture` skill in `.claude/skills/`. It is dev-only; +every credential in it is throwaway. + +The fixture also carries a **BTCPay Server SSO harness** behind a compose profile +(`docker compose --profile sso up -d`). BTCPay bundles RTL and reaches it over a path the +standalone login never exercises: a rotating cookie file, an unregistered +`/rtl/api/authenticate/cookie` URL that is not a route at all and falls through to the +catch-all in `server/utils/app.ts`, and a reverse proxy serving it under `/rtl`. Run +`docker/scripts/verify-sso.sh` (11 assertions, exits non-zero) after touching +authentication, CSRF or static serving — none of that path is covered by logging into the +fixture's own RTL. One trap it encodes: `GET /rtl/` is served by `express.static`, which +sits above the catch-all and mints no `XSRF-TOKEN`, so a client entering there gets a 403 +on its first POST. That is long-standing behaviour, not a regression. + +Backend regression tests live in `test/backend/` (plain `node:test`, run against the +compiled `backend/`). `npm run test` compiles the backend, then runs them +(`npm run testbackend`) before the frontend Karma/Jasmine specs, so they never test stale +code. For backend changes, also verify against the fixture and say so in the PR. + +## Conventions + +- **Be conservative about dependencies.** This is security-sensitive software. Prefer what's + already there, and raise an issue before adding anything. Never run `npm audit fix` — it + reaches for breaking major bumps. Dependabot PRs are batched, not merged individually; see + `CONTRIBUTING.md`. +- Match the surrounding code's style, naming and structure. Only fix style in code you're + already changing. +- `RTL-Config.json` is local runtime config and git-ignored; `Sample-RTL-Config.json` is the + template, and `RTL.conf` is an alternate config format. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..579d7e84 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,91 @@ +## Contributing to RTL +Thanks for your interest in contributing to the development of RTL. RTL is a community project and aspires to remain free and open source for the benefit of the community. With that objective in mind, this document provides contribution guidelines which the community can utilize to contribute towards the development and maintenance of this software. + +### How Can I Contribute +There are multiple ways you can contribute towards the development and not all of those methods involve coding. Below are a few examples on how meaningful contributions can be made. +* [Bug Report](#bug) - While using RTL, if you notice something is not working correctly create a bug report, by creating an issue. +* [Feature Request](#feature) - While using RTL, if you feel that the software should be changed in certain way to make it for usable and helpful, create a feature request. +* [Testing](#testing) - Testing is one the easiest and most sought after method of contribution. Testing can be done on release branches, so that releases are relatively bug free. +* [Design](#design) - Design inputs can be made based on user enhancement suggestions or novel ideas which you get while using RTL. +* [Code](#code) - Development contributions are made via making coding changes to the software and getting it tested, reviewed and merged. +* [Code Review](#codereview) - Code review contributions are made by reviewing the code changes submitted via PRs to address bugs or feature requests + +#### Bug Report +Bug reports are reports of technical or functional issues with the software. Bug reports help with the removal of defects from the software and improve its quality. Guidelines for submitting a bug report: +* Label the bug with the correct Lightning implementation (LND/Core Lightning/Eclair). +* Add the `Bug` label to the issue +* Provide details of your configuration like Device, Operating system, Bitcoin version, Lightning implementation version, RTL version etc. +* Attempt to explain the scenario in detail, so that the developer can try to replicate the issue at their end. +* If the bug is with the UI, screenshots help. Try to highlight the problem areas by circling with red outline. +* Take care to redact sensitive info from the screenshots like Pubkey or channel IDs etc. +* Be responsive to the developers requesting details on the issues. + +#### Feature Request +Feature Requests are requests raised to add new features to the application. The features requests can range from technical to functional, making the application better for everyone. Guidelines to follow for create a feature request: +* Label the feature request with the correct Lightning implementation (LND/Core Lightning/Eclair). +* Add the `Enhancement Request` label to the issue +* If the feature relates to an existing aspect of the application, indicate clearly which part of the application the feature request relates to. E.g. Transactions page under Lightning menu. +* Provide the justification for the feature request. E.g. Privacy/Security/Usability benefit. +* If the feature request is technical in nature, try to provide the platform detail like OS, Lightning Implementation version etc. +* For new UI features mockups are helpful for the developers. +* Be responsive on the feature requests when developers request details or clarification and also help with the testing of the features requested. + +#### Testing +Testing is the easiest and most effective method to contribute. It helps uncover bugs and improve the quality of software. Best time to test would be pre-release, when the changes are being made to the software for the next release. RTL maintains a release branch for the next planned release and changes are merge to the release branch on a regular basis. The testers can contribute by pulling from the release branch and testing the software. If issues are found during testing, follow the steps described above to raise bug reports to help address the issues. + +#### Design +Design suggestions are always welcome and helpful. Design suggestion can range from improving both the aesthetics as well as the UX of the application. We believe improving design and UX of the application is an ongoing journey. User feedback and bugs raised also provide insights into how both can be improved. if you would like to provide design related suggestions or contribute with design inputs, raise issues on the [Design repo of RTL](https://github.com/Ride-The-Lightning/RTL-Design) and follow the guidance provided there. + +#### Code +Contributions via code is the most sought after contribution and something we enthusiastically encourage. Follow the below guideline to be able to contribute code to RTL. + +##### Pull Code +* Pull the code from the release (current eg Release-0.12.2) branch into your local workspace via github commandline/GUI. + +##### Install Dependencies +* Assuming that nodejs (v14 & above) and npm are already installed on your local machine. Go into your RTL root folder and run `npm ci`. +* Use `npm ci --legacy-peer-deps` if there is any dependency conflict. +* Sometimes after installation, user receives a message from npm to fix dependency vulnerability by running `npm audit fix`. Please do not follow this step as it can break some of the working RTL code on your machine. We audit and fix these vulnerabilities as soon as possible at our end. + +##### Node Backend Server for Development +* The RTL server code has been written in typescript and `npm run watchbackend` script can be used to compile and generate their javascript equivalents. Keep the script running to watch for realtime changes and compilation. `watchbackend` and `buildbackend` scripts get the configuration options from tsconfig, read .ts files from the `./server` folder and save the compiled .js and .map files in `./backend` folder. +* To run RTL node server in development mode, open another command window, go to workspace/RTL and excute `npm run server`. This will run the script named `server` defined in package.json. This script sets the node environment as development and starts the server from rtl.js. Nodemon restarts the node application when file changes in the directory are detected. +* This `server` script has been written for windows machine. Please update the script to set the `NODE_ENV=development` according to your machine's OS. +* To check all available scripts for the project, explore the `scripts` section of package.json. +![](../screenshots/node-server-dev.jpg) + +##### Angular Frontend Server for Development +* The last step starts the node server but it cannot detect and update the code written in Angular. We run the angular development server separately while working on the frontend of the project and package the final build once the development is finished. +* To run the angular development server, go to workspace/RTL and run `npm run start`. It will start the angular server at default '4200' port and serve the application on localhost:4200. +![](../screenshots/angular-server-dev.jpg) +![](../screenshots/localhost-ui-dev.jpg) + +##### Package Angular Build +* Run `npm run test` script to verify and fix, if needed, automated test cases. +* Execute `npm run lint` to lint the code before final compilation. +* To compile the backend code, `npm run buildbackend` script should be used. It will compile the code written in typescript in `server` folder and create a folder named `backend` with final compiled javascript code. +* The Angular application code needs to be compiled into the output directory named `frontend` at workspace/RTL. It can be done by running `npm run buildfrontend` command in the RTL root. +* Please make sure to remove all linting and other errors thrown by the build command before moving to the next step. +![](../screenshots/angular-build.jpg) + +##### Create a Pull Request +* Create a new branch on the github to push your updated code. +* Commit your updates into the newly created branch. +* Create a new pull request once you are satisfied with your updates to be merged into the latest `release` branch with details of your updates and submit it for the review. + +##### Caution about adding new libraries +* We are conservative in adding new dependencies to the repository. Do your best to not add any new libraries on RTL. We believe this is the best strategy to keep the software safe from vulnerabilites. +* Confirm before starting by creating an issue about adding the library +* The library should be popular, well maintained and pre-existing vulnerability free. + +##### Handling Dependabot PRs (dependency updates) +Dependabot files its security PRs against `master`, but they are not merged individually: they conflict with each other on `package-lock.json`, and `master` only advances when a release is merged. Instead, all open Dependabot alerts are resolved together in a single dependency-update PR against the current release branch (see [#1633](https://github.com/Ride-The-Lightning/RTL/pull/1633) for an example). The process: + +1. **Collect the targets.** Gather the fixed versions from every open Dependabot PR. Also review `npm audit` for findings *without* an open Dependabot PR — many are fixable in the same pass, and exact version pins in `package.json` can hide an available in-range fix for a direct dependency (check `fixAvailable` in `npm audit --json`). +2. **Apply the bumps.** Update the pins in `package.json` for direct dependencies (Dependabot's validated version for runtime deps; the latest patch of the same minor for build tooling). Keep all `@angular/*` framework packages on a single version, and the CLI line (`@angular/cli`, `@angular/build`, `@angular-devkit/build-angular`) on its own matching version — Angular is under devDependencies but is compiled into the shipped frontend bundle. Never run a blanket `npm audit fix`. +3. **Regenerate the lockfile from scratch.** Delete `package-lock.json` and run `npm install --legacy-peer-deps`. This produces one clean, fully re-resolved tree instead of an incrementally patched lockfile, and typically picks up additional in-range fixes for deep transitive dependencies. +4. **Rebuild the compiled outputs.** Run `npm run buildbackend && npm run buildfrontend` and commit the regenerated `backend/` and `frontend/` artifacts along with `package.json` and `package-lock.json`, so the shipped bundles match the updated dependency tree. +5. **Verify before opening the PR.** `npm run lint`, `npm run test`, and a functional check against real nodes — the regtest fixture under `docker/` covers all three implementations (see `docker/README.md`). +6. **Open one PR** against the current release branch with a release-note entry summarizing the before/after `npm audit` counts. Once the release branch is merged to `master`, Dependabot closes its superseded PRs automatically. + +Vulnerabilities in deprecated packages (e.g. an unmaintained dependency with no fixed release) cannot be resolved by version bumps — track those in a dedicated issue for a code-level replacement instead of leaving them in the batch PR. diff --git a/Dockerfile b/Dockerfile index e1e1c98b..7585a01f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,13 @@ -ARG BASE_DISTRO="node:alpine" +ARG BASE_DISTRO="node:22-alpine" -FROM --platform=${BUILDPLATFORM} ${BASE_DISTRO} as builder +FROM --platform=${BUILDPLATFORM} ${BASE_DISTRO} AS builder WORKDIR /RTL COPY package.json /RTL/package.json COPY package-lock.json /RTL/package-lock.json -RUN npm install --legacy-peer-deps +RUN npm ci --legacy-peer-deps COPY . . @@ -20,7 +20,7 @@ RUN npm run buildbackend # Remove non production necessary modules RUN npm prune --omit=dev --legacy-peer-deps -FROM --platform=$BUILDPLATFORM ${BASE_DISTRO} as runner +FROM --platform=${TARGETPLATFORM} ${BASE_DISTRO} AS runner RUN apk add --no-cache tini diff --git a/LICENSE b/LICENSE index 59adeea4..9d875ab6 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Shahana Farooqui +Copyright (c) 2018-2026 Shahana Farooqui Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/backend/controllers/cln/channels.js b/backend/controllers/cln/channels.js index 15d7ae70..b9e0eece 100644 --- a/backend/controllers/cln/channels.js +++ b/backend/controllers/cln/channels.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { getAlias } from './network.js'; @@ -14,11 +14,21 @@ export const listPeerChannels = (req, res, next) => { options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listpeerchannels'; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Peer Channels List Received', data: body.channels }); - return Promise.all(body.channels?.map((channel) => { + if (!body.channels || body.channels.length === 0) { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'No Channels to Process' }); + return res.status(200).json([]); + } + const getPeerAliasesTasks = body.channels.map((channel) => () => { channel.to_them_msat = channel.total_msat - channel.to_us_msat; - channel.balancedness = (channel.total_msat === 0) ? 1 : (1 - Math.abs((channel.to_us_msat - (channel.total_msat - channel.to_us_msat)) / channel.total_msat)).toFixed(3); + channel.balancedness = (channel.total_msat === 0) ? 1 : (1 - Math.abs((channel.to_us_msat - channel.to_them_msat) / channel.total_msat)).toFixed(3); + // listpeerchannels reports connection state as peer_connected. Mirror it onto the + // documented legacy 'connected' field (see the Channel model) as a real boolean, so + // any backward-compat consumer of this endpoint gets a defined true/false rather than + // undefined when peer_connected is absent (issue #1606). + channel.connected = !!channel.peer_connected; return getAlias(req.session.selectedNode, channel, 'peer_id'); - })).then((values) => { + }); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Peer Channels List With Aliases Received', data: body.channels }); return res.status(200).json(body.channels || []); }); diff --git a/backend/controllers/cln/getInfo.js b/backend/controllers/cln/getInfo.js index 53a9101e..e8714c30 100644 --- a/backend/controllers/cln/getInfo.js +++ b/backend/controllers/cln/getInfo.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { CLWSClient } from './webSocketClient.js'; diff --git a/backend/controllers/cln/invoices.js b/backend/controllers/cln/invoices.js index 2f26a949..d1f04c1f 100644 --- a/backend/controllers/cln/invoices.js +++ b/backend/controllers/cln/invoices.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -10,11 +10,11 @@ export const deleteExpiredInvoice = (req, res, next) => { if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/delexpiredinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/autoclean-once'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoices Deleted', data: body }); - res.status(204).json({ status: 'Invoice Deleted Successfully' }); + res.status(201).json({ status: 'Cleaned Invoices: ' + body.autoclean.expiredinvoices.cleaned + ', Uncleaned Invoices: ' + body.autoclean.expiredinvoices.uncleaned }); }).catch((errRes) => { const err = common.handleError(errRes, 'Invoice', 'Delete Invoice Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); diff --git a/backend/controllers/cln/network.js b/backend/controllers/cln/network.js index 81c72d29..ae132580 100644 --- a/backend/controllers/cln/network.js +++ b/backend/controllers/cln/network.js @@ -1,9 +1,14 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; const logger = Logger; const common = Common; +// Alias cache: peerId -> { alias, ts }. Bounded by a TTL so an updated node alias is picked +// up without an RTL restart, and by a max size so it can't grow unbounded (evicts oldest). +const ALIAS_CACHE_TTL = 6 * 60 * 60 * 1000; // 6 hours +const ALIAS_CACHE_MAX = 5000; +const aliasCache = new Map(); export const getRoute = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Getting Network Routes..' }); options = common.getOptions(req); @@ -14,9 +19,21 @@ export const getRoute = (req, res, next) => { options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Network Routes Received', data: body }); - return Promise.all(body.route?.map((rt) => getAlias(req.session.selectedNode, rt, 'id'))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Network Routes with Alias Received', data: body }); - res.status(200).json(body || []); + // Resolve hop aliases with a bounded number of concurrent listnodes calls, matching the + // peers/channels paths, so a long route can't storm clnrest (#1501). + const getRouteAliasesTasks = (body.route || []).map((rt) => () => getAlias(req.session.selectedNode, rt, 'id')); + common.runWithConcurrencyLimit(getRouteAliasesTasks, 20, () => { + // Guard the response-send: the limiter invokes this outside the surrounding .catch. + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Network Routes with Alias Received', data: body }); + res.status(200).json(body || []); + } + catch (e) { + const err = common.handleError(e, 'Network', 'Query Routes Error', req.session.selectedNode); + if (!res.headersSent) { + res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Network', 'Query Routes Error', req.session.selectedNode); @@ -80,20 +97,46 @@ export const listNodes = (req, res, next) => { }); }; export const getAlias = (selNode, peer, id) => { - options.url = selNode.settings.lnServerUrl + '/v1/listnodes'; - if (!peer[id]) { + const peerId = peer[id]; + if (!peerId) { logger.log({ selectedNode: selNode, level: 'ERROR', fileName: 'Network', msg: 'Empty Peer ID' }); peer.alias = ''; - return peer; + return Promise.resolve(peer); } - options.body = { id: peer[id] }; - return request.post(options).then((body) => { + const cached = aliasCache.get(peerId); + if (cached && (Date.now() - cached.ts) < ALIAS_CACHE_TTL) { + peer.alias = cached.alias; + return Promise.resolve(peer); + } + // Build a self-contained request from the selected node's own auth options rather than the + // shared module-level 'options', which is only set by a prior network.ts endpoint call. That + // coupling meant a cold Peers/route lookup (no prior network call) dereferenced a null 'options' + // and threw; now that the limiter swallows per-task throws, that surfaced as a 200 with every + // alias unset (#1501 review F1). selNode.authentication.options is guaranteed present here + // because every caller runs getOptions() first. + const nodeOptions = selNode.authentication?.options; + if (!nodeOptions || !nodeOptions.headers) { + peer.alias = peerId.substring(0, 20); + return Promise.resolve(peer); + } + const aliasOptions = { ...nodeOptions, method: 'POST', url: selNode.settings.lnServerUrl + '/v1/listnodes', body: { id: peerId }, json: true, qs: {} }; + delete aliasOptions.form; + return request.post(aliasOptions).then((body) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Network', msg: 'Peer Alias Finished', data: body }); - peer.alias = body.nodes[0] && body.nodes[0].alias ? body.nodes[0].alias : peer[id].substring(0, 20); + const alias = body.nodes?.[0]?.alias || peerId.substring(0, 20); + // Re-insert so a refreshed entry moves to the most-recent position, then evict the + // oldest if we're over the cap (Map preserves insertion order). + aliasCache.delete(peerId); + aliasCache.set(peerId, { alias, ts: Date.now() }); + if (aliasCache.size > ALIAS_CACHE_MAX) { + aliasCache.delete(aliasCache.keys().next().value); + } + peer.alias = alias; return peer; }).catch((errRes) => { common.handleError(errRes, 'Network', 'Peer Alias Error', selNode); - peer.alias = peer[id].substring(0, 20); + const alias = peerId.substring(0, 20); + peer.alias = alias; return peer; }); }; diff --git a/backend/controllers/cln/offers.js b/backend/controllers/cln/offers.js index f427d538..09290695 100644 --- a/backend/controllers/cln/offers.js +++ b/backend/controllers/cln/offers.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { Database } from '../../utils/database.js'; @@ -83,7 +83,7 @@ export const disableOffer = (req, res, next) => { if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/disableOffer'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/disableoffer'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Disabled', data: body }); diff --git a/backend/controllers/cln/onchain.js b/backend/controllers/cln/onchain.js index f4615442..37ca3e26 100644 --- a/backend/controllers/cln/onchain.js +++ b/backend/controllers/cln/onchain.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/cln/payments.js b/backend/controllers/cln/payments.js index 6a756a00..77573cad 100644 --- a/backend/controllers/cln/payments.js +++ b/backend/controllers/cln/payments.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { Database } from '../../utils/database.js'; diff --git a/backend/controllers/cln/peers.js b/backend/controllers/cln/peers.js index dba0c304..4889d189 100644 --- a/backend/controllers/cln/peers.js +++ b/backend/controllers/cln/peers.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { getAlias } from './network.js'; @@ -15,9 +15,23 @@ export const getPeers = (req, res, next) => { request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; - return Promise.all(peers?.map((peer) => getAlias(req.session.selectedNode, peer, 'id'))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); - res.status(200).json(body.peers || []); + // Resolve peer aliases with a bounded number of concurrent listnodes calls. An unbounded + // Promise.all here fires one request per peer at once, which overwhelms clnrest on nodes + // with many peers and fails with "Resource temporarily unavailable (os error 11)" (#1501). + const getPeerAliasesTasks = peers.map((peer) => () => getAlias(req.session.selectedNode, peer, 'id')); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + // The limiter invokes this outside the surrounding .then/.catch chain, so guard the + // response-send: a throw here would otherwise be an unhandled rejection with no response. + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); + res.status(200).json(body.peers || []); + } + catch (e) { + const err = common.handleError(e, 'Peers', 'List Peers Error', req.session.selectedNode); + if (!res.headersSent) { + res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'List Peers Error', req.session.selectedNode); @@ -38,8 +52,21 @@ export const postPeer = (req, res, next) => { listOptions.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listpeers'; request.post(listOptions).then((listPeersRes) => { const peers = listPeersRes && listPeersRes.peers ? common.newestOnTop(listPeersRes.peers, 'id', connectRes.id) : []; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); - res.status(201).json(peers); + // Resolve aliases (bounded) for the returned peers so a freshly connected peer shows its + // alias rather than a raw node id, matching getPeers and the LND postPeer path (#1629 F5). + const getPeerAliasesTasks = peers.map((peer) => () => getAlias(req.session.selectedNode, peer, 'id')); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); + res.status(201).json(peers); + } + catch (e) { + const err = common.handleError(e, 'Peers', 'Connect Peer Error', req.session.selectedNode); + if (!res.headersSent) { + res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + } + }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); diff --git a/backend/controllers/cln/utility.js b/backend/controllers/cln/utility.js index 5a10dcdc..964b8f34 100644 --- a/backend/controllers/cln/utility.js +++ b/backend/controllers/cln/utility.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -44,7 +44,7 @@ export const verifyMessage = (req, res, next) => { } options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/checkmessage'; options.body = req.body; - request.post(options, (error, response, body) => { + request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Message Verified', data: body }); res.status(201).json(body); }).catch((errRes) => { diff --git a/backend/controllers/eclair/channels.js b/backend/controllers/eclair/channels.js index e4bbfca8..b2a0a26b 100644 --- a/backend/controllers/eclair/channels.js +++ b/backend/controllers/eclair/channels.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { createInvoiceRequestCall, listPendingInvoicesRequestCall } from './invoices.js'; @@ -28,7 +28,7 @@ export const simplifyAllChannels = (selNode, channels) => { }); channelNodeIds = channelNodeIds.substring(1); options.url = selNode.settings.lnServerUrl + '/nodes'; - options.form = { nodeIds: channelNodeIds }; + options.form = channelNodeIds; logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Node Ids to find alias', data: channelNodeIds }); return request.post(options).then((nodes) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Filtered Nodes Received', data: nodes }); @@ -53,7 +53,10 @@ export const getChannels = (req, res, next) => { options.form = req.query; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Channels Node Id', data: options.form }); } - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Options', data: options }); + // Log the call's shape only. Eclair authenticates with HTTP basic auth, so the options + // object carries the node's lnApiPassword in its authorization header, and node logs are + // routinely shared when debugging. + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Options', data: { url: options.url, form: options.form } }); if (common.read_dummy_data) { common.getDummyData('Channels', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(data); }); } @@ -68,7 +71,7 @@ export const getChannels = (req, res, next) => { } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Empty Channels List Received' }); - res.status(200).json([]); + return res.status(200).json([]); } }). catch((errRes) => { diff --git a/backend/controllers/eclair/fees.js b/backend/controllers/eclair/fees.js index 0b4f4018..a84f78b4 100644 --- a/backend/controllers/eclair/fees.js +++ b/backend/controllers/eclair/fees.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/eclair/getInfo.js b/backend/controllers/eclair/getInfo.js index 813baa53..b5092f9d 100644 --- a/backend/controllers/eclair/getInfo.js +++ b/backend/controllers/eclair/getInfo.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { ECLWSClient } from './webSocketClient.js'; diff --git a/backend/controllers/eclair/invoices.js b/backend/controllers/eclair/invoices.js index f3d48cd3..e960c299 100644 --- a/backend/controllers/eclair/invoices.js +++ b/backend/controllers/eclair/invoices.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/eclair/network.js b/backend/controllers/eclair/network.js index c9924fd4..0a18622e 100644 --- a/backend/controllers/eclair/network.js +++ b/backend/controllers/eclair/network.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/eclair/onchain.js b/backend/controllers/eclair/onchain.js index 858e3e0e..4c3cacdd 100644 --- a/backend/controllers/eclair/onchain.js +++ b/backend/controllers/eclair/onchain.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/eclair/payments.js b/backend/controllers/eclair/payments.js index 25f6d974..1f07ab0f 100644 --- a/backend/controllers/eclair/payments.js +++ b/backend/controllers/eclair/payments.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -96,7 +96,7 @@ export const queryPaymentRoute = (req, res, next) => { } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Empty Payment Route Information Received' }); - res.status(200).json({ routes: [] }); + return res.status(200).json({ routes: [] }); } }).catch((errRes) => { const err = common.handleError(errRes, 'Payments', 'Query Route Error', req.session.selectedNode); diff --git a/backend/controllers/eclair/peers.js b/backend/controllers/eclair/peers.js index c29f4e22..8584e178 100644 --- a/backend/controllers/eclair/peers.js +++ b/backend/controllers/eclair/peers.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -43,7 +43,7 @@ export const getPeers = (req, res, next) => { } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Empty Peers Received' }); - res.status(200).json([]); + return res.status(200).json([]); } }). catch((errRes) => { @@ -95,7 +95,7 @@ export const connectPeer = (req, res, next) => { }); } else { - res.status(201).json([]); + return res.status(201).json([]); } }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); diff --git a/backend/controllers/lnd/balance.js b/backend/controllers/lnd/balance.js index b49f7a02..4dcc5bfa 100644 --- a/backend/controllers/lnd/balance.js +++ b/backend/controllers/lnd/balance.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/lnd/channels.js b/backend/controllers/lnd/channels.js index 66d091e0..ac9e9daf 100644 --- a/backend/controllers/lnd/channels.js +++ b/backend/controllers/lnd/channels.js @@ -1,13 +1,13 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; const logger = Logger; const common = Common; -export const getAliasForChannel = (selNode, channel) => { +export const getAliasForChannel = (selNode, channel, requestOptions) => { const pubkey = (channel.remote_pubkey) ? channel.remote_pubkey : (channel.remote_node_pub) ? channel.remote_node_pub : ''; - options.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; - return request(options).then((aliasBody) => { + requestOptions.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; + return request(requestOptions).then((aliasBody) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Alias Received', data: aliasBody.node.alias }); channel.remote_alias = aliasBody.node.alias && aliasBody.node.alias !== '' ? aliasBody.node.alias : aliasBody.node.pub_key.slice(0, 20); return channel; @@ -30,18 +30,26 @@ export const getAllChannels = (req, res, next) => { request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Channels List Received', data: body }); if (body.channels) { - return Promise.all(body.channels?.map((channel) => { + body.channels.forEach((channel) => { local = (channel.local_balance) ? +channel.local_balance : 0; remote = (channel.remote_balance) ? +channel.remote_balance : 0; total = local + remote; channel.balancedness = (total === 0) ? 1 : (1 - Math.abs((local - remote) / total)).toFixed(3); - return getAliasForChannel(req.session.selectedNode, channel); - })).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sorted Channels List Received', data: body }); - return res.status(200).json(body); - }).catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Get All Channel Aliases Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getChannelAliasesTasks = body.channels.map((channel) => () => getAliasForChannel(selNode, channel, { ...requestOptions })); + common.runWithConcurrencyLimit(getChannelAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sorted Channels List Received', data: body }); + return res.status(200).json(body); + } + catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Get All Channel Aliases Error', error: e.message }); + if (!res.headersSent) { + res.status(500).json({ message: 'Get All Channel Aliases Error', error: e.message }); + } + } }); } else { @@ -66,26 +74,32 @@ export const getPendingChannels = (req, res, next) => { if (!body.total_limbo_balance) { body.total_limbo_balance = 0; } - const promises = []; + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getPendingAliasesTasks = []; if (body.pending_open_channels && body.pending_open_channels.length > 0) { - body.pending_open_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.pending_open_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } if (body.pending_force_closing_channels && body.pending_force_closing_channels.length > 0) { - body.pending_force_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.pending_force_closing_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } if (body.pending_closing_channels && body.pending_closing_channels.length > 0) { - body.pending_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.pending_closing_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } if (body.waiting_close_channels && body.waiting_close_channels.length > 0) { - body.waiting_close_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.waiting_close_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } - return Promise.all(promises).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Pending Channels List Received', data: body }); - return res.status(200).json(body); - }). - catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Get Pending Channel Aliases Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + common.runWithConcurrencyLimit(getPendingAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Pending Channels List Received', data: body }); + return res.status(200).json(body); + } + catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Get Pending Channel Aliases Error', error: e.message }); + if (!res.headersSent) { + res.status(500).json({ message: 'Get Pending Channel Aliases Error', error: e.message }); + } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Channels', 'List Pending Channels Error', req.session.selectedNode); @@ -102,15 +116,23 @@ export const getClosedChannels = (req, res, next) => { options.qs = req.query; request(options).then((body) => { if (body.channels && body.channels.length > 0) { - return Promise.all(body.channels?.map((channel) => { + body.channels.forEach((channel) => { channel.close_type = (!channel.close_type) ? 'COOPERATIVE_CLOSE' : channel.close_type; - return getAliasForChannel(req.session.selectedNode, channel); - })).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closed Channels List Received', data: body }); - return res.status(200).json(body); - }).catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Get Closed Channel Aliases Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getClosedAliasesTasks = body.channels.map((channel) => () => getAliasForChannel(selNode, channel, { ...requestOptions })); + common.runWithConcurrencyLimit(getClosedAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closed Channels List Received', data: body }); + return res.status(200).json(body); + } + catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Get Closed Channel Aliases Error', error: e.message }); + if (!res.headersSent) { + res.status(500).json({ message: 'Get Closed Channel Aliases Error', error: e.message }); + } + } }); } else { @@ -140,7 +162,7 @@ export const postChannel = (req, res, next) => { options.form.target_conf = trans_type_value; } else if (trans_type === '2') { - options.form.sat_per_byte = trans_type_value; + options.form.sat_per_vbyte = trans_type_value; } if (commitment_type) { options.form.commitment_type = commitment_type; @@ -155,47 +177,6 @@ export const postChannel = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); }); }; -export const postTransactions = (req, res, next) => { - const { paymentReq, paymentAmount, feeLimit, outgoingChannel, allowSelfPayment, lastHopPubkey } = req.body; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sending Payment..' }); - options = common.getOptions(req); - if (options.error) { - return res.status(options.statusCode).json({ message: options.message, error: options.error }); - } - options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/transaction-stream'; - options.form = { payment_request: paymentReq }; - if (paymentAmount) { - options.form.amt = paymentAmount; - } - if (feeLimit) { - options.form.fee_limit = feeLimit; - } - if (outgoingChannel) { - options.form.outgoing_chan_id = outgoingChannel; - } - if (allowSelfPayment) { - options.form.allow_self_payment = allowSelfPayment; - } - if (lastHopPubkey) { - options.form.last_hop_pubkey = Buffer.from(lastHopPubkey, 'hex').toString('base64'); - } - options.form = JSON.stringify(options.form); - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Send Payment Options', data: options.form }); - request.post(options).then((body) => { - body = body.result ? body.result : body; - if (body.payment_error) { - const err = common.handleError(body.payment_error, 'Channels', 'Send Payment Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - } - else { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Payment Sent', data: body }); - res.status(201).json(body); - } - }).catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Send Payment Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - }); -}; export const closeChannel = (req, res, next) => { try { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closing Channel..' }); @@ -212,11 +193,17 @@ export const closeChannel = (req, res, next) => { if (req.query.target_conf) { options.url = options.url + '&target_conf=' + req.query.target_conf; } - if (req.query.sat_per_byte) { - options.url = options.url + '&sat_per_byte=' + req.query.sat_per_byte; + if (req.query.sat_per_vbyte) { + options.url = options.url + '&sat_per_vbyte=' + req.query.sat_per_vbyte; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Closing Channel Options URL', data: options.url }); - request.delete(options); + // Fire-and-forget: LND keeps the close stream open until the closing tx + // confirms, so exempt it from the request timeout; the 202 is already sent, + // so log a rejection instead of letting it crash the process. + request.delete({ ...options, timeout: 0 }).catch((errRes) => { + const err = common.handleError(errRes, 'Channels', 'Close Channel Error', req.session.selectedNode); + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Close Channel Error', error: err }); + }); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Channel Close Requested' }); res.status(202).json({ message: 'Close channel request has been submitted.' }); } diff --git a/backend/controllers/lnd/channelsBackup.js b/backend/controllers/lnd/channelsBackup.js index a00a8074..27ffa5af 100644 --- a/backend/controllers/lnd/channelsBackup.js +++ b/backend/controllers/lnd/channelsBackup.js @@ -1,6 +1,6 @@ import * as fs from 'fs'; import { sep } from 'path'; -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -9,10 +9,10 @@ const common = Common; function getFilesList(channelBackupPath, callback) { const files_list = []; let all_restore_exists = false; - let response = { all_restore_exists: false, files: [] } || { message: '', error: {}, statusCode: 500 }; + let response = { all_restore_exists: false, files: [] }; fs.readdir(channelBackupPath + sep + 'restore', (err, files) => { if (err && err.code !== 'ENOENT' && err.errno !== -4058) { - response = { message: 'Channels Restore List Failed!', error: err, statusCode: 500 }; + response = Object.assign({ message: 'Channels Restore List Failed!', error: err, statusCode: 500 }); } if (files && files.length > 0) { files.forEach((file) => { diff --git a/backend/controllers/lnd/fees.js b/backend/controllers/lnd/fees.js index 643a5e91..708a96e0 100644 --- a/backend/controllers/lnd/fees.js +++ b/backend/controllers/lnd/fees.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { getAllForwardingEvents } from './switch.js'; diff --git a/backend/controllers/lnd/getInfo.js b/backend/controllers/lnd/getInfo.js index dd846ee9..a83f7617 100644 --- a/backend/controllers/lnd/getInfo.js +++ b/backend/controllers/lnd/getInfo.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { LNDWSClient } from './webSocketClient.js'; diff --git a/backend/controllers/lnd/graph.js b/backend/controllers/lnd/graph.js index 7d008e40..49146f12 100644 --- a/backend/controllers/lnd/graph.js +++ b/backend/controllers/lnd/graph.js @@ -1,12 +1,12 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; const logger = Logger; const common = Common; -export const getAliasFromPubkey = (selNode, pubkey) => { - options.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; - return request(options).then((res) => { +export const getAliasFromPubkey = (selNode, pubkey, requestOptions) => { + requestOptions.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; + return request(requestOptions).then((res) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Graph', msg: 'Alias Received', data: res.node.alias }); return res.node.alias; }). @@ -79,26 +79,29 @@ export const getQueryRoutes = (req, res, next) => { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/routes/' + req.params.destPubkey + '/' + req.params.amount; - if (req.query.outgoing_chan_id) { - options.url = options.url + '?outgoing_chan_id=' + req.query.outgoing_chan_id; - } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Graph', msg: 'Query Routes URL', data: options.url }); request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Graph', msg: 'Query Routes Received', data: body }); if (body.routes && body.routes.length && body.routes.length > 0 && body.routes[0].hops && body.routes[0].hops.length && body.routes[0].hops.length > 0) { - return Promise.all(body.routes[0].hops?.map((hop) => getAliasFromPubkey(req.session.selectedNode, hop.pub_key))). - then((values) => { - body.routes[0].hops?.map((hop, i) => { - hop.hop_sequence = i + 1; - hop.pubkey_alias = values[i]; - return hop; - }); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Routes with Alias Received', data: body }); - res.status(200).json(body); - }). - catch((errRes) => { - const err = common.handleError(errRes, 'Graph', 'Get Query Routes Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getRouteAliasesTasks = body.routes[0].hops.map((hop) => () => getAliasFromPubkey(selNode, hop.pub_key, { ...requestOptions })); + common.runWithConcurrencyLimit(getRouteAliasesTasks, 20, (values) => { + try { + body.routes[0].hops?.map((hop, i) => { + hop.hop_sequence = i + 1; + hop.pubkey_alias = typeof values[i] === 'string' ? values[i] : 'Unknown'; + return hop; + }); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Routes with Alias Received', data: body }); + res.status(200).json(body); + } + catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Graph', msg: 'Get Query Routes Error', error: e.message }); + if (!res.headersSent) { + res.status(500).json({ message: 'Get Query Routes Error', error: e.message }); + } + } }); } else { @@ -148,14 +151,21 @@ export const getAliasesForPubkeys = (req, res, next) => { } if (req.query.pubkeys) { const pubkeyArr = req.query.pubkeys.split(','); - return Promise.all(pubkeyArr?.map((pubkey) => getAliasFromPubkey(req.session.selectedNode, pubkey))). - then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Node Alias', data: values }); - res.status(200).json(values); - }). - catch((errRes) => { - const err = common.handleError(errRes, 'Graph', 'Get Aliases for Pubkeys Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getAliasesTasks = pubkeyArr.map((pubkey) => () => getAliasFromPubkey(selNode, pubkey, { ...requestOptions })); + common.runWithConcurrencyLimit(getAliasesTasks, 20, (values) => { + try { + const safeValues = values.map((v) => (typeof v === 'string' ? v : 'Unknown')); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Node Alias', data: safeValues }); + res.status(200).json(safeValues); + } + catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Graph', msg: 'Get Aliases for Pubkeys Error', error: e.message }); + if (!res.headersSent) { + res.status(500).json({ message: 'Get Aliases for Pubkeys Error', error: e.message }); + } + } }); } else { diff --git a/backend/controllers/lnd/invoices.js b/backend/controllers/lnd/invoices.js index 59601ab9..928007e8 100644 --- a/backend/controllers/lnd/invoices.js +++ b/backend/controllers/lnd/invoices.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { LNDWSClient } from './webSocketClient.js'; @@ -6,6 +6,22 @@ let options = null; const logger = Logger; const common = Common; const lndWsClient = LNDWSClient; +const KEYSEND_MESSAGE_TLV_TYPE = '34349334'; +const extractKeysendMessage = (invoice) => { + if (invoice.is_keysend && (!invoice.memo || invoice.memo === '') && invoice.htlcs && invoice.htlcs.length > 0) { + for (const htlc of invoice.htlcs) { + if (htlc.custom_records && htlc.custom_records[KEYSEND_MESSAGE_TLV_TYPE]) { + try { + return Buffer.from(htlc.custom_records[KEYSEND_MESSAGE_TLV_TYPE], 'base64').toString('utf8'); + } + catch (err) { + return ''; + } + } + } + } + return invoice.memo || ''; +}; export const invoiceLookup = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Getting Invoice Information..' }); options = common.getOptions(req); @@ -23,6 +39,7 @@ export const invoiceLookup = (req, res, next) => { body.r_preimage = body.r_preimage ? Buffer.from(body.r_preimage, 'base64').toString('hex') : ''; body.r_hash = body.r_hash ? Buffer.from(body.r_hash, 'base64').toString('hex') : ''; body.description_hash = body.description_hash ? Buffer.from(body.description_hash, 'base64').toString('hex') : null; + body.memo = extractKeysendMessage(body); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoice Information Received', data: body }); res.status(200).json(body); }).catch((errRes) => { @@ -45,6 +62,7 @@ export const listInvoices = (req, res, next) => { invoice.r_preimage = invoice.r_preimage ? Buffer.from(invoice.r_preimage, 'base64').toString('hex') : ''; invoice.r_hash = invoice.r_hash ? Buffer.from(invoice.r_hash, 'base64').toString('hex') : ''; invoice.description_hash = invoice.description_hash ? Buffer.from(invoice.description_hash, 'base64').toString('hex') : null; + invoice.memo = extractKeysendMessage(invoice); }); } logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Sorted Invoices List Received', data: body }); diff --git a/backend/controllers/lnd/message.js b/backend/controllers/lnd/message.js index 65a1328f..57219707 100644 --- a/backend/controllers/lnd/message.js +++ b/backend/controllers/lnd/message.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/lnd/newAddress.js b/backend/controllers/lnd/newAddress.js index b8857064..90aec06f 100644 --- a/backend/controllers/lnd/newAddress.js +++ b/backend/controllers/lnd/newAddress.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/lnd/payments.js b/backend/controllers/lnd/payments.js index 208a1883..acf7ce58 100644 --- a/backend/controllers/lnd/payments.js +++ b/backend/controllers/lnd/payments.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -89,6 +89,9 @@ export const paymentLookup = (req, res, next) => { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/router/track/' + req.params.paymentHash; + // Deliberately keep the wrapper's default timeout here: this holds a + // browser-facing response open while tracking, and payments in flight + // longer than that are delivered via the websocket subscription instead. request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Information Received for ' + req.params.paymentHash, data: body }); res.status(200).json(body.result || body); @@ -97,3 +100,36 @@ export const paymentLookup = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); }); }; +export const sendPayment = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Sending Payment..' }); + options = common.getOptions(req); + if (options.error) { + return res.status(options.statusCode).json({ message: options.message, error: options.error }); + } + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/router/send'; + if (req.body.last_hop_pubkey) { + req.body.last_hop_pubkey = Buffer.from(req.body.last_hop_pubkey, 'hex').toString('base64'); + } + req.body.amp = req.body.amp ?? false; + req.body.timeout_seconds = (Number.isFinite(+req.body.timeout_seconds) && +req.body.timeout_seconds > 0) ? +req.body.timeout_seconds : 600; + options.form = JSON.stringify(req.body); + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Send Payment Options', data: options.form }); + // LND ends the stream at timeout_seconds with a FAILURE_REASON_TIMEOUT result; + // give the transport a margin over that so LND's mapped failure always wins + // the race against the wrapper's own timeout. + request.post({ ...options, timeout: (+req.body.timeout_seconds + 60) * 1000 }).then((body) => { + const results = body.split('\n').filter(Boolean).map((jsonString) => JSON.parse(jsonString)); + body = results.length > 0 ? results[results.length - 1] : { result: { status: 'UNKNOWN' } }; + if (body.result.status === 'FAILED') { + const err = common.handleError(common.titleCase(body.result.failure_reason.replace(/_/g, ' ').replace('FAILURE REASON ', '')), 'Payments', 'Send Payment Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + if (body.result.status === 'SUCCEEDED') { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Sent', data: body.result }); + res.status(201).json(body.result); + } + }).catch((errRes) => { + const err = common.handleError(errRes, 'Payments', 'Send Payment Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); +}; diff --git a/backend/controllers/lnd/peers.js b/backend/controllers/lnd/peers.js index 104dc753..917e910c 100644 --- a/backend/controllers/lnd/peers.js +++ b/backend/controllers/lnd/peers.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -25,9 +25,21 @@ export const getPeers = (req, res, next) => { request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; - return Promise.all(peers?.map((peer) => getAliasForPeers(req.session.selectedNode, peer))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); - res.status(200).json(body.peers); + // Bound concurrent alias lookups so a node with many peers can't fire one graph/node + // request per peer at once and overwhelm the backend (parity with the CLN fix, #1501). + const getPeerAliasesTasks = peers.map((peer) => () => getAliasForPeers(req.session.selectedNode, peer)); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + // Guard the response-send: the limiter invokes this outside the surrounding .catch. + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); + res.status(200).json(body.peers); + } + catch (e) { + const err = common.handleError(e, 'Peers', 'List Peers Error', req.session.selectedNode); + if (!res.headersSent) { + res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'List Peers Error', req.session.selectedNode); @@ -51,15 +63,24 @@ export const postPeer = (req, res, next) => { options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/peers'; request(options).then((body) => { const peers = (!body.peers) ? [] : body.peers; - return Promise.all(peers?.map((peer) => getAliasForPeers(req.session.selectedNode, peer))).then((values) => { - if (body.peers) { - body.peers = common.newestOnTop(body.peers, 'pub_key', pubkey); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: body }); + // Bound concurrent alias lookups (parity with the CLN fix, #1501). + const getPeerAliasesTasks = peers.map((peer) => () => getAliasForPeers(req.session.selectedNode, peer)); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + // Guard the response-send: the limiter invokes this outside the surrounding .catch, and + // this replaced an explicit inner .catch — a throw here must not hang the POST (#1629 F4). + try { + if (body.peers) { + body.peers = common.newestOnTop(body.peers, 'pub_key', pubkey); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: body }); + } + res.status(201).json(body.peers); + } + catch (e) { + const err = common.handleError(e, 'Peers', 'Connect Peer Error', req.session.selectedNode); + if (!res.headersSent) { + res.status(err.statusCode).json({ message: err.message, error: err.error }); + } } - res.status(201).json(body.peers); - }).catch((errRes) => { - const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); diff --git a/backend/controllers/lnd/switch.js b/backend/controllers/lnd/switch.js index a8571941..dceea934 100644 --- a/backend/controllers/lnd/switch.js +++ b/backend/controllers/lnd/switch.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/controllers/lnd/transactions.js b/backend/controllers/lnd/transactions.js index cb715822..452f9333 100644 --- a/backend/controllers/lnd/transactions.js +++ b/backend/controllers/lnd/transactions.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -30,7 +30,7 @@ export const postTransactions = (req, res, next) => { options.form = { amount: amount, addr: address, - sat_per_byte: fees, + sat_per_vbyte: fees, target_conf: blocks }; if (sendAll) { diff --git a/backend/controllers/lnd/wallet.js b/backend/controllers/lnd/wallet.js index be5a7296..e876d4a2 100644 --- a/backend/controllers/lnd/wallet.js +++ b/backend/controllers/lnd/wallet.js @@ -1,5 +1,5 @@ import atob from 'atob'; -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -120,7 +120,7 @@ export const getUTXOs = (req, res, next) => { }); }; export const bumpFee = (req, res, next) => { - const { txid, outputIndex, targetConf, satPerByte } = req.body; + const { txid, outputIndex, targetConf, satPerVByte } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Bumping Fee..' }); options = common.getOptions(req); if (options.error) { @@ -135,8 +135,8 @@ export const bumpFee = (req, res, next) => { if (targetConf) { options.form.target_conf = targetConf; } - else if (satPerByte) { - options.form.sat_per_byte = satPerByte; + else if (satPerVByte) { + options.form.sat_per_vbyte = satPerVByte; } options.form = JSON.stringify(options.form); request.post(options).then((body) => { diff --git a/backend/controllers/lnd/webSocketClient.js b/backend/controllers/lnd/webSocketClient.js index 0519da4f..943a1b56 100644 --- a/backend/controllers/lnd/webSocketClient.js +++ b/backend/controllers/lnd/webSocketClient.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import * as fs from 'fs'; import { join } from 'path'; import { Logger } from '../../utils/logger.js'; @@ -44,7 +44,9 @@ export class LNDWebSocketClient { this.subscribeToInvoice = (options, selectedNode, rHash) => { rHash = rHash?.replace(/\+/g, '-')?.replace(/[/]/g, '_'); this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Subscribing to Invoice ' + rHash + ' ..' }); - options.url = selectedNode.settings.lnServerUrl + '/v2/invoices/subscribe/' + rHash; + // Copy the options: the caller may pass the session-cached object, and the + // long poll needs an unbounded timeout without leaking it to other calls. + options = { ...options, url: selectedNode.settings.lnServerUrl + '/v2/invoices/subscribe/' + rHash, timeout: 0 }; request(options).then((msg) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Invoice Information Received for ' + rHash }); if (typeof msg === 'string') { @@ -67,7 +69,9 @@ export class LNDWebSocketClient { }; this.subscribeToPayment = (options, selectedNode, paymentHash) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Subscribing to Payment ' + paymentHash + ' ..' }); - options.url = selectedNode.settings.lnServerUrl + '/v2/router/track/' + paymentHash; + // Copy the options: the long poll needs an unbounded timeout without + // leaking it to other calls sharing the object. + options = { ...options, url: selectedNode.settings.lnServerUrl + '/v2/router/track/' + paymentHash, timeout: 0 }; request(options).then((msg) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Payment Information Received for ' + paymentHash }); msg['type'] = 'payment'; diff --git a/backend/controllers/shared/RTLConf.js b/backend/controllers/shared/RTLConf.js index a24934ce..60f35764 100644 --- a/backend/controllers/shared/RTLConf.js +++ b/backend/controllers/shared/RTLConf.js @@ -1,14 +1,14 @@ import jwt from 'jsonwebtoken'; import * as fs from 'fs'; -import { sep } from 'path'; +import { resolve, sep } from 'path'; import ini from 'ini'; import parseHocon from 'hocon-parser'; -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Database } from '../../utils/database.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; import { WSServer } from '../../utils/webSocketServer.js'; -import { Authentication, SSO } from '../../models/config.model.js'; +import { Authentication } from '../../models/config.model.js'; const options = { url: '' }; const logger = Logger; const common = Common; @@ -76,7 +76,23 @@ export const getCurrencyRates = (req, res, next) => { }; export const getFile = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting File..' }); - const file = req.query.path ? req.query.path : (req.session.selectedNode.settings.channelBackupPath + sep + 'channel-' + req.query.channel?.replace(':', '-') + '.bak'); + const channelBackupPath = req.session.selectedNode.settings.channelBackupPath; + let file = ''; + if (req.query.path) { + // The UI only ever requests channel backup files; contain caller paths to the node's + // backup directory so this endpoint cannot read the config, macaroons or the SSO + // cookie (getConfig serves the config file masked; this must not bypass that). + const resolved = resolve(req.query.path); + if (resolved !== resolve(channelBackupPath) && !resolved.startsWith(resolve(channelBackupPath) + sep)) { + logger.log({ selectedNode: req.session.selectedNode, level: 'WARN', fileName: 'RTLConf', msg: 'Blocked file read outside the channel backup directory', data: req.query.path }); + const err = common.handleError({ statusCode: 403, message: 'Reading File Error', error: 'File path is outside the channel backup directory' }, 'RTLConf', 'Reading File Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + file = resolved; + } + else { + file = channelBackupPath + sep + 'channel-' + req.query.channel?.replace(':', '-') + '.bak'; + } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'Channel Point', data: req.query.channel }); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'File Path', data: file }); fs.readFile(file, 'utf8', (errRes, data) => { @@ -89,48 +105,40 @@ export const getFile = (req, res, next) => { return res.status(err.statusCode).json({ message: err.error, error: err.error }); } else { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'File Data Received', data: data }); + // File contents can carry node credentials; never write them to the log. + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'File Data Received' }); res.status(200).json(data); } }); }; export const getApplicationSettings = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting RTL Configuration..' }); - const confFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; - fs.readFile(confFile, 'utf8', (errRes, data) => { - if (errRes) { - const errMsg = 'Get Node Config Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } - else { - const appConfData = common.removeSecureData(JSON.parse(data)); - appConfData.allowPasswordUpdate = common.appConfig.allowPasswordUpdate; - appConfData.enable2FA = common.appConfig.enable2FA; - appConfData.selectedNodeIndex = (req.session.selectedNode && req.session.selectedNode.index ? req.session.selectedNode.index : common.selectedNode.index); - common.appConfig.selectedNodeIndex = appConfData.selectedNodeIndex; - const token = req.headers.authorization ? req.headers.authorization.split(' ')[1] : ''; - jwt.verify(token, common.secret_key, (err, user) => { - if (err) { - // Delete unnecessary data for initial response (without security token) - const selNodeIdx = appConfData.nodes.findIndex((node) => node.index === appConfData.selectedNodeIndex) || 0; - appConfData.SSO = new SSO(); - appConfData.secret2FA = ''; - appConfData.dbDirectoryPath = ''; - appConfData.nodes[selNodeIdx].authentication = new Authentication(); - delete appConfData.nodes[selNodeIdx].settings.bitcoindConfigPath; - delete appConfData.nodes[selNodeIdx].settings.lnServerUrl; - delete appConfData.nodes[selNodeIdx].settings.swapServerUrl; - delete appConfData.nodes[selNodeIdx].settings.boltzServerUrl; - delete appConfData.nodes[selNodeIdx].settings.enableOffers; - delete appConfData.nodes[selNodeIdx].settings.enablePeerswap; - delete appConfData.nodes[selNodeIdx].settings.channelBackupPath; - appConfData.nodes = [appConfData.nodes[selNodeIdx]]; - } - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'RTL Configuration Received', data: appConfData }); - res.status(200).json(appConfData); - }); + const appConfData = common.removeSecureData(JSON.parse(JSON.stringify(common.appConfig))); + appConfData.allowPasswordUpdate = common.appConfig.allowPasswordUpdate; + appConfData.enable2FA = common.appConfig.enable2FA; + appConfData.selectedNodeIndex = (req.session.selectedNode && req.session.selectedNode.index ? req.session.selectedNode.index : common.selectedNode.index); + common.appConfig.selectedNodeIndex = appConfData.selectedNodeIndex; + const token = req.headers.authorization ? req.headers.authorization.split(' ')[1] : ''; + jwt.verify(token, common.secret_key, (err, user) => { + if (err) { + // Delete unnecessary data for initial response (without security token) + const selNodeIdx = appConfData.nodes.findIndex((node) => node.index === appConfData.selectedNodeIndex) || 0; + delete appConfData.SSO.rtlCookiePath; + delete appConfData.SSO.cookieValue; + delete appConfData.SSO.logoutRedirectLink; + appConfData.dbDirectoryPath = ''; + appConfData.nodes[selNodeIdx].authentication = new Authentication(); + delete appConfData.nodes[selNodeIdx].settings.bitcoindConfigPath; + delete appConfData.nodes[selNodeIdx].settings.lnServerUrl; + delete appConfData.nodes[selNodeIdx].settings.swapServerUrl; + delete appConfData.nodes[selNodeIdx].settings.boltzServerUrl; + delete appConfData.nodes[selNodeIdx].settings.enableOffers; + delete appConfData.nodes[selNodeIdx].settings.enablePeerswap; + delete appConfData.nodes[selNodeIdx].settings.channelBackupPath; + appConfData.nodes = [appConfData.nodes[selNodeIdx]]; } + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'RTL Configuration Received', data: appConfData }); + res.status(200).json(appConfData); }); }; export const updateSelectedNode = (req, res, next) => { @@ -205,30 +213,51 @@ export const getConfig = (req, res, next) => { export const updateNodeSettings = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Node Settings..' }); const RTLConfFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; - const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); - const node = config.nodes.find((node) => (node.index === req.session.selectedNode.index)); - if (node && node.settings) { - node.settings = req.body.settings; - if (req.body.authentication.boltzMacaroonPath) { - node.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; - } - else { - delete node.authentication.boltzMacaroonPath; - } - if (req.body.authentication.swapMacaroonPath) { - node.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; - } - else { - delete node.authentication.swapMacaroonPath; - } - } try { + const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); + const node = config.nodes.find((node) => (node.index === req.session.selectedNode.index)); + if (node && node.settings) { + // channelBackupPath anchors getFile's containment root and is documented as a + // config-file-only setting; accepting it from the API would let the caller being + // contained choose the containment base. Pin it to the server-held value. + const serverChannelBackupPath = node.settings.channelBackupPath; + node.settings = { ...node.settings, ...req.body.settings }; + node.settings.channelBackupPath = serverChannelBackupPath; + if (node.authentication && req.body.authentication) { + if (req.body.authentication.boltzMacaroonPath) { + node.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; + } + else { + delete node.authentication.boltzMacaroonPath; + } + if (req.body.authentication.swapMacaroonPath) { + node.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + } + else { + delete node.authentication.swapMacaroonPath; + } + } + } fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); const selectedNode = common.findNode(req.session.selectedNode.index); if (selectedNode && selectedNode.settings) { - selectedNode.settings = req.body.settings; - selectedNode.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; - selectedNode.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + const serverChannelBackupPath = selectedNode.settings.channelBackupPath; + selectedNode.settings = { ...selectedNode.settings, ...req.body.settings }; + selectedNode.settings.channelBackupPath = serverChannelBackupPath; + if (selectedNode.authentication && req.body.authentication) { + if (req.body.authentication.boltzMacaroonPath) { + selectedNode.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; + } + else { + delete selectedNode.authentication.boltzMacaroonPath; + } + if (req.body.authentication.swapMacaroonPath) { + selectedNode.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + } + else { + delete selectedNode.authentication.swapMacaroonPath; + } + } common.replaceNode(req, selectedNode); } let responseNode = JSON.parse(JSON.stringify(common.selectedNode)); @@ -246,17 +275,82 @@ export const updateApplicationSettings = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Application Settings..' }); const RTLConfFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; try { - const config = common.addSecureData(req.body); - common.appConfig = JSON.parse(JSON.stringify(config)); - delete config.selectedNodeIndex; - delete config.enable2FA; - delete config.allowPasswordUpdate; - delete config.rtlConfFilePath; - delete config.rtlPass; - fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - const newConfig = JSON.parse(JSON.stringify(common.appConfig)); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Application Settings Updated', data: common.maskPasswords(newConfig) }); - res.status(201).json(common.removeSecureData(newConfig)); + const oldConfig = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); + const config = common.addSecureData(JSON.parse(JSON.stringify(req.body))); + const runtimeConfig = oldConfig; + Object.keys(config).forEach((key) => { + if (key !== 'nodes') { + runtimeConfig[key] = config[key]; + } + }); + if (config.nodes && config.nodes.length > 0) { + const oldNodes = (common.appConfig.nodes && common.appConfig.nodes.length > 0) ? common.appConfig.nodes : (oldConfig.nodes || []); + const newNodesMap = new Map(config.nodes.map((node) => [node.index, node])); + const updatedAndExistingNodes = oldNodes.map((oldNode) => { + const newNode = newNodesMap.get(oldNode.index); + newNodesMap.delete(oldNode.index); + const node = newNode ? { + ...oldNode, + ...newNode, + authentication: { ...(oldNode.authentication || {}), ...(newNode.authentication || {}) }, + settings: { ...(oldNode.settings || {}), ...(newNode.settings || {}) } + } : { + ...oldNode, + authentication: { ...(oldNode.authentication || {}) }, + settings: { ...(oldNode.settings || {}) } + }; + return node; + }); + const newOnlyNodes = [...newNodesMap.values()].map((newNode) => JSON.parse(JSON.stringify(newNode))); + runtimeConfig.nodes = [...updatedAndExistingNodes, ...newOnlyNodes]; + } + const newAppConfig = JSON.parse(JSON.stringify({ + ...runtimeConfig, + selectedNodeIndex: config.selectedNodeIndex !== undefined ? + config.selectedNodeIndex : common.appConfig.selectedNodeIndex, + enable2FA: config.enable2FA !== undefined ? + config.enable2FA : common.appConfig.enable2FA, + allowPasswordUpdate: config.allowPasswordUpdate !== undefined ? + config.allowPasswordUpdate : common.appConfig.allowPasswordUpdate, + rtlConfFilePath: common.appConfig.rtlConfFilePath, + rtlPass: common.appConfig.rtlPass + })); + const fileConfig = JSON.parse(JSON.stringify(newAppConfig)); + delete fileConfig.selectedNodeIndex; + delete fileConfig.enable2FA; + delete fileConfig.allowPasswordUpdate; + delete fileConfig.rtlConfFilePath; + delete fileConfig.rtlPass; + delete fileConfig.multiPass; + // Runtime-only SSO bearer; must not be persisted with the config. + if (fileConfig.SSO) { + delete fileConfig.SSO.cookieValue; + } + fileConfig.nodes?.forEach((node) => { + delete node.authentication?.options; + delete node.authentication?.runeValue; + }); + // Persist atomically (temp file + rename, so a mid-write failure cannot truncate the + // config) and only then adopt the new runtime config, so a failed write leaves the + // process on the old one. The temp file inherits the existing file's mode so a + // hardened 0600 is not silently downgraded; a fresh file gets 0600. Symlinks and + // single-file bind mounts cannot be renamed over — fall back to an in-place write, + // which preserves inode and mode. + const tempConfigFile = RTLConfFile + '.tmp'; + try { + fs.writeFileSync(tempConfigFile, JSON.stringify(fileConfig, null, 2), 'utf-8'); + fs.chmodSync(tempConfigFile, fs.existsSync(RTLConfFile) ? (fs.statSync(RTLConfFile).mode & 0o777) : 0o600); + fs.renameSync(tempConfigFile, RTLConfFile); + } + catch { + fs.rmSync(tempConfigFile, { force: true, recursive: true }); + fs.writeFileSync(RTLConfFile, JSON.stringify(fileConfig, null, 2), 'utf-8'); + } + common.appConfig = newAppConfig; + // removeSecureData clones, so the runtime config is untouched; it strips rtlPass, + // the TOTP seed, the SSO cookie and all per-node credentials symmetrically. + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Application Settings Updated', data: common.removeSecureData(newAppConfig) }); + res.status(201).json(common.removeSecureData(newAppConfig)); } catch (errRes) { const errMsg = 'Update Default Node Error'; diff --git a/backend/controllers/shared/authenticate.js b/backend/controllers/shared/authenticate.js index 3dbf8a1e..13b64988 100644 --- a/backend/controllers/shared/authenticate.js +++ b/backend/controllers/shared/authenticate.js @@ -19,6 +19,9 @@ const loginInterval = setInterval(() => { } } }, LOCKING_PERIOD); +// The sweeper must not hold the event loop open on its own (it would keep +// `node --test` or a CLI invocation alive for the full 30-minute period). +loginInterval.unref(); export const getFailedInfo = (reqIP, currentTime) => { let failed = { count: 0, lastTried: currentTime }; if ((!failedLoginAttempts[reqIP]) || (currentTime > (failed.lastTried + LOCKING_PERIOD))) { @@ -45,10 +48,33 @@ const handleMultipleFailedAttemptsError = (failed, currentTime, errMsg) => { } }; export const verifyToken = (twoFAToken) => !!(common.appConfig.secret2FA && common.appConfig.secret2FA !== '' && otplib.authenticator.check(twoFAToken, common.appConfig.secret2FA)); +// Mirrors isAuthenticated: a request carrying a valid session JWT has already +// completed 2FA at login, since tokens are only minted after verification when +// 2FA is enabled. Used to exempt in-app re-authorization (e.g. the password +// prompt before on-chain sends) from the TOTP requirement without opening a +// password-only path. +const hasValidAuthToken = (req) => { + try { + const token = req.headers.authorization.split(' ')[1]; + jwt.verify(token, common.secret_key); + return true; + } + catch (error) { + return false; + } +}; export const authenticateUser = (req, res, next) => { const { authenticateWith, authenticationValue, twoFAToken } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Authenticating User..' }); - if (+common.appConfig.SSO.rtlSso) { + if (!!common.appConfig.disableAuth) { + if (!req.session.selectedNode) { + req.session.selectedNode = common.selectedNode; + } + const token = jwt.sign({ user: 'AUTH_DISABLED_USER' }, common.secret_key); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'User Disabled Authentication' }); + res.status(200).json({ token: token }); + } + else if (+common.appConfig.SSO.rtlSSO) { if (authenticateWith === 'JWT' && jwt.verify(authenticationValue, common.secret_key)) { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'User Authenticated' }); res.status(406).json({ message: 'SSO Authentication Error', error: 'Login with Password is not allowed with SSO.' }); @@ -76,8 +102,15 @@ export const authenticateUser = (req, res, next) => { const failed = getFailedInfo(reqIP, currentTime); const password = authenticationValue; if (common.appConfig.rtlPass === password && failed.count < ALLOWED_LOGIN_ATTEMPTS) { - if (twoFAToken && twoFAToken !== '') { - if (!verifyToken(twoFAToken)) { + // Gate on the server-side 2FA configuration, not on the request: when 2FA is + // enabled a token is mandatory, so a request omitting twoFAToken is rejected + // instead of silently skipping verification. The login UI keys its token prompt + // on enable2FA, so both fields are consulted — a stale secret with 2FA disabled + // must not lock the operator out of a UI that never prompts for a token. + // Requests with a valid session token (in-app re-authorization, e.g. the + // password prompt before on-chain sends) are exempt from the TOTP requirement. + if (common.appConfig.enable2FA && common.appConfig.secret2FA && common.appConfig.secret2FA !== '' && !hasValidAuthToken(req)) { + if (typeof twoFAToken !== 'string' || twoFAToken === '' || !verifyToken(twoFAToken)) { logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Authenticate', msg: 'Invalid Token! Failed IP ' + reqIP, error: { error: 'Invalid token.' } }); failed.count = failed.count + 1; failed.lastTried = currentTime; @@ -103,7 +136,7 @@ export const authenticateUser = (req, res, next) => { export const resetPassword = (req, res, next) => { const { currPassword, newPassword } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Resetting Password..' }); - if (+common.appConfig.SSO.rtlSso) { + if (+common.appConfig.SSO.rtlSSO) { const errMsg = 'Password cannot be reset for SSO authentication'; const err = common.handleError({ statusCode: 401, message: 'Password Reset Error', error: errMsg }, 'Authenticate', errMsg, req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); diff --git a/backend/controllers/shared/boltz.js b/backend/controllers/shared/boltz.js index 6af21b1b..a1c69592 100644 --- a/backend/controllers/shared/boltz.js +++ b/backend/controllers/shared/boltz.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; @@ -79,7 +79,7 @@ export const getSwapInfo = (req, res, next) => { }); }; export const createSwap = (req, res, next) => { - const { amount, sendFromInternal, address } = req.body; + const { amount, sendFromInternal, address, refundAddress } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Boltz', msg: 'Creating Swap..' }); options = common.getBoltzServerOptions(req); if (options.url === '') { @@ -88,7 +88,7 @@ export const createSwap = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); } options.url = options.url + '/v1/createswap'; - options.body = { amount: amount }; + options.body = { amount: amount, refundAddress }; if (sendFromInternal) { options.body.send_from_internal = sendFromInternal; } diff --git a/backend/controllers/shared/loop.js b/backend/controllers/shared/loop.js index 525b635d..72fecfb7 100644 --- a/backend/controllers/shared/loop.js +++ b/backend/controllers/shared/loop.js @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger } from '../../utils/logger.js'; import { Common } from '../../utils/common.js'; let options = null; diff --git a/backend/models/config.model.js b/backend/models/config.model.js index c3cb8ead..4c2b14c9 100644 --- a/backend/models/config.model.js +++ b/backend/models/config.model.js @@ -1,6 +1,6 @@ export class SSO { - constructor(rtlSso, rtlCookiePath, logoutRedirectLink, cookieValue) { - this.rtlSso = rtlSso; + constructor(rtlSSO, rtlCookiePath, logoutRedirectLink, cookieValue) { + this.rtlSSO = rtlSSO; this.rtlCookiePath = rtlCookiePath; this.logoutRedirectLink = logoutRedirectLink; this.cookieValue = cookieValue; @@ -40,11 +40,12 @@ export class Authentication { } } export class ApplicationConfig { - constructor(defaultNodeIndex, selectedNodeIndex, dbDirectoryPath, rtlConfFilePath, rtlPass, multiPass, multiPassHashed, allowPasswordUpdate, enable2FA, secret2FA, SSO, nodes) { + constructor(defaultNodeIndex, selectedNodeIndex, dbDirectoryPath, rtlConfFilePath, disableAuth, rtlPass, multiPass, multiPassHashed, allowPasswordUpdate, enable2FA, secret2FA, SSO, nodes) { this.defaultNodeIndex = defaultNodeIndex; this.selectedNodeIndex = selectedNodeIndex; this.dbDirectoryPath = dbDirectoryPath; this.rtlConfFilePath = rtlConfFilePath; + this.disableAuth = disableAuth; this.rtlPass = rtlPass; this.multiPass = multiPass; this.multiPassHashed = multiPassHashed; diff --git a/backend/routes/lnd/channels.js b/backend/routes/lnd/channels.js index 6bc1aa7f..27d64b93 100644 --- a/backend/routes/lnd/channels.js +++ b/backend/routes/lnd/channels.js @@ -1,13 +1,12 @@ import exprs from 'express'; const { Router } = exprs; import { isAuthenticated } from '../../utils/authCheck.js'; -import { getAllChannels, getPendingChannels, getClosedChannels, postChannel, postTransactions, closeChannel, postChanPolicy } from '../../controllers/lnd/channels.js'; +import { getAllChannels, getPendingChannels, getClosedChannels, postChannel, closeChannel, postChanPolicy } from '../../controllers/lnd/channels.js'; const router = Router(); router.get('/', isAuthenticated, getAllChannels); router.get('/pending', isAuthenticated, getPendingChannels); router.get('/closed', isAuthenticated, getClosedChannels); router.post('/', isAuthenticated, postChannel); -router.post('/transactions', isAuthenticated, postTransactions); router.delete('/:channelPoint', isAuthenticated, closeChannel); router.post('/chanPolicy', isAuthenticated, postChanPolicy); export default router; diff --git a/backend/routes/lnd/payments.js b/backend/routes/lnd/payments.js index 9a496d38..6cb156a4 100644 --- a/backend/routes/lnd/payments.js +++ b/backend/routes/lnd/payments.js @@ -1,11 +1,12 @@ import exprs from 'express'; const { Router } = exprs; import { isAuthenticated } from '../../utils/authCheck.js'; -import { decodePayment, decodePayments, getPayments, getAllLightningTransactions, paymentLookup } from '../../controllers/lnd/payments.js'; +import { decodePayment, decodePayments, getPayments, getAllLightningTransactions, paymentLookup, sendPayment } from '../../controllers/lnd/payments.js'; const router = Router(); router.get('/', isAuthenticated, getPayments); router.get('/alltransactions', isAuthenticated, getAllLightningTransactions); router.get('/decode/:payRequest', isAuthenticated, decodePayment); router.get('/lookup/:paymentHash', isAuthenticated, paymentLookup); router.post('/', isAuthenticated, decodePayments); +router.post('/send', isAuthenticated, sendPayment); export default router; diff --git a/backend/routes/lnd/wallet.js b/backend/routes/lnd/wallet.js index 4f2fbc9d..9d558092 100644 --- a/backend/routes/lnd/wallet.js +++ b/backend/routes/lnd/wallet.js @@ -3,7 +3,8 @@ const { Router } = exprs; import { isAuthenticated } from '../../utils/authCheck.js'; import { genSeed, updateSelNodeOptions, getUTXOs, operateWallet, bumpFee, labelTransaction, leaseUTXO, releaseUTXO } from '../../controllers/lnd/wallet.js'; const router = Router(); -router.get('/genseed/:passphrase?', isAuthenticated, genSeed); +router.get('/genseed', isAuthenticated, genSeed); +router.get('/genseed/:passphrase', isAuthenticated, genSeed); router.get('/updateSelNodeOptions', isAuthenticated, updateSelNodeOptions); router.get('/getUTXOs', isAuthenticated, getUTXOs); router.post('/wallet/:operation', isAuthenticated, operateWallet); diff --git a/backend/routes/shared/authenticate.js b/backend/routes/shared/authenticate.js index 0cbdbbe4..7e1559a2 100644 --- a/backend/routes/shared/authenticate.js +++ b/backend/routes/shared/authenticate.js @@ -1,9 +1,12 @@ import exprs from 'express'; const { Router } = exprs; import { authenticateUser, verifyToken, resetPassword, logoutUser } from '../../controllers/shared/authenticate.js'; +import { isAuthenticated } from '../../utils/authCheck.js'; const router = Router(); router.post('/', authenticateUser); router.post('/token', verifyToken); -router.post('/reset', resetPassword); +// Password changes mint a fresh session token, so the route requires an existing +// authenticated session; the frontend interceptor attaches it for the settings UI. +router.post('/reset', isAuthenticated, resetPassword); router.get('/logout', logoutUser); export default router; diff --git a/backend/utils/app.js b/backend/utils/app.js index 5471cf88..8cd5e096 100644 --- a/backend/utils/app.js +++ b/backend/utils/app.js @@ -37,17 +37,21 @@ export class ExpressApplication { this.app.use(this.common.baseHref + '/api/ecl', eclRoutes); this.app.use(this.common.baseHref, express.static(join(this.directoryName, '../..', 'frontend'))); this.app.use((req, res, next) => { - res.cookie('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : (req.cookies && req.cookies._csrf) ? req.cookies._csrf : ''); // RTL Angular Frontend - res.setHeader('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : (req.cookies && req.cookies._csrf) ? req.cookies._csrf : ''); // RTL Quickpay JQuery + // Generate the token once per request: with csrf-csrf every call mints a + // new token on a first visit, so calling twice would desync the cookie + // from the header and the _csrf cookie it must match. + const csrfToken = req.csrfToken ? req.csrfToken() : (req.cookies && req.cookies._csrf) ? req.cookies._csrf : ''; + res.cookie('XSRF-TOKEN', csrfToken); // RTL Angular Frontend + res.setHeader('XSRF-TOKEN', csrfToken); // RTL Quickpay JQuery res.sendFile(join(this.directoryName, '../..', 'frontend', 'index.html')); }); this.app.use((err, req, res, next) => { - this.handleApplicationErrors(err, res); + this.handleApplicationErrors(err, req, res); next(); }); this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'App', msg: 'Application Routes Set' }); }; - this.handleApplicationErrors = (err, res) => { + this.handleApplicationErrors = (err, req, res) => { switch (err.code) { case 'EACCES': this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Server requires elevated privileges' }); @@ -62,6 +66,16 @@ export class ExpressApplication { res.status(401).send('Server is down/locked.'); break; case 'EBADCSRFTOKEN': + // Re-mint the token for the current session so a client retry succeeds + // (the stale one may be bound to a destroyed session or rotated secret). + try { + const csrfToken = CSRF.reMintToken(req, res); + res.cookie('XSRF-TOKEN', csrfToken); + res.setHeader('XSRF-TOKEN', csrfToken); + } + catch (csrfError) { + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'CSRF Token Re-Mint Failed', error: csrfError }); + } this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Invalid CSRF token. Form tempered.' }); res.status(403).send('Invalid CSRF token, form tempered.'); break; diff --git a/backend/utils/authCheck.js b/backend/utils/authCheck.js index e6ee9dd1..2e8d23ae 100644 --- a/backend/utils/authCheck.js +++ b/backend/utils/authCheck.js @@ -1,10 +1,10 @@ import jwt from 'jsonwebtoken'; -import csurf from 'csurf/index.js'; +import CSRF from './csrf.js'; import { Common } from './common.js'; import { Logger } from './logger.js'; const common = Common; const logger = Logger; -const csurfProtection = csurf({ cookie: true }); +const csurfProtection = CSRF.csrfProtection; export const isAuthenticated = (req, res, next) => { try { const token = req.headers.authorization.split(' ')[1]; diff --git a/backend/utils/common.js b/backend/utils/common.js index 797bf8b5..5ffd6a11 100644 --- a/backend/utils/common.js +++ b/backend/utils/common.js @@ -2,14 +2,14 @@ import * as fs from 'fs'; import { join, dirname, isAbsolute, resolve, sep } from 'path'; import { fileURLToPath } from 'url'; import * as crypto from 'crypto'; -import request from 'request-promise'; +import request from './request.js'; import { Logger } from './logger.js'; export class CommonService { constructor() { this.logger = Logger; this.nodes = []; this.selectedNode = null; - this.ssoInit = { rtlSso: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' }; + this.ssoInit = { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' }; this.appConfig = { defaultNodeIndex: 0, selectedNodeIndex: 0, rtlConfFilePath: '', dbDirectoryPath: join(dirname(fileURLToPath(import.meta.url)), '..', '..'), rtlPass: '', allowPasswordUpdate: true, enable2FA: false, secret2FA: '', SSO: this.ssoInit, nodes: [] }; this.port = 3000; this.host = ''; @@ -22,22 +22,37 @@ export class CommonService { { name: 'JUL', days: 31 }, { name: 'AUG', days: 31 }, { name: 'SEP', days: 30 }, { name: 'OCT', days: 31 }, { name: 'NOV', days: 30 }, { name: 'DEC', days: 31 } ]; this.maskPasswords = (obj) => { - const keys = Object.keys(obj); - const length = keys.length; - if (length !== 0) { - for (let i = 0; i < length; i++) { - if (typeof obj[keys[i]] === 'object') { - keys[keys[i]] = this.maskPasswords(obj[keys[i]]); - } - if (typeof keys[i] === 'string' && - ((keys[i].toLowerCase().includes('password') && keys[i] !== 'allowPasswordUpdate') || keys[i].toLowerCase().includes('multipass') || - keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword') || - keys[i].toLowerCase().includes('rpcuser'))) { - obj[keys[i]] = '*'.repeat(20); + // Clone up front: masking a live config object must not blank the credentials LN + // requests authenticate with (mirrors removeSecureData). + const masked = JSON.parse(JSON.stringify(obj)); + const maskRecursive = (current) => { + const keys = Object.keys(current); + const length = keys.length; + if (length !== 0) { + for (let i = 0; i < length; i++) { + // Header maps always carry credentials in this codebase (macaroon, rune, basic + // auth). Key-substring matching cannot catch them without also hiding the *Path + // fields the settings UI legitimately shows, so mask the whole map. + if (keys[i] === 'headers' && current[keys[i]] && typeof current[keys[i]] === 'object') { + Object.keys(current[keys[i]]).forEach((headerKey) => { current[keys[i]][headerKey] = '*'.repeat(20); }); + } + else if (current[keys[i]] && typeof current[keys[i]] === 'object') { + // Truthiness guard: null is 'object' too and must not reach Object.keys. + maskRecursive(current[keys[i]]); + } + if (typeof keys[i] === 'string' && + ((keys[i].toLowerCase().includes('password') && keys[i] !== 'allowPasswordUpdate') || keys[i].toLowerCase().includes('multipass') || + keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword') || + keys[i].toLowerCase().includes('rpcuser') || keys[i].toLowerCase().includes('rpcauth') || + keys[i].toLowerCase().includes('secret2fa') || keys[i].toLowerCase().includes('cookievalue') || + keys[i].toLowerCase().includes('rtlpass') || keys[i].toLowerCase().includes('runevalue'))) { + current[keys[i]] = '*'.repeat(20); + } } } - } - return obj; + return current; + }; + return maskRecursive(masked); }; this.removeAuthSecureData = (node) => { if (node.authentication) { @@ -50,38 +65,70 @@ export class CommonService { return node; }; this.removeSecureData = (config) => { - delete config.rtlConfFilePath; - delete config.rtlPass; - delete config.multiPass; - delete config.multiPassHashed; - delete config.secret2FA; - config.nodes?.map((node) => this.removeAuthSecureData(node)); - return config; + // Clone before deleting: cookieValue is runtime-only, so mutating a caller's live + // appConfig would destroy SSO state with no way to restore it. + const sanitized = JSON.parse(JSON.stringify(config)); + delete sanitized.rtlConfFilePath; + delete sanitized.rtlPass; + delete sanitized.multiPass; + delete sanitized.multiPassHashed; + delete sanitized.secret2FA; + // The SSO cookie is a live bearer credential; it must never leave the server. + if (sanitized.SSO) { + delete sanitized.SSO.cookieValue; + } + sanitized.nodes?.forEach((node) => this.removeAuthSecureData(node)); + return sanitized; }; this.addSecureData = (config) => { config.rtlConfFilePath = this.appConfig.rtlConfFilePath; config.rtlPass = this.appConfig.rtlPass; - config.multiPassHashed = this.appConfig.multiPassHashed; - config.SSO.rtlCookiePath = this.appConfig.SSO.rtlCookiePath; + // Pin the hash only when the server holds one: on a default install's first boot the + // file already has multiPassHashed but the in-memory config does not, and pinning + // undefined would erase the only password from the file on save, bricking the boot. + if (this.appConfig.multiPassHashed) { + config.multiPassHashed = this.appConfig.multiPassHashed; + } + else { + delete config.multiPassHashed; + } + // Deployment-level switches are pinned to server-held values: the settings API must + // not flip the authentication mode (disableAuth, SSO) or move SSO fields, the + // password policy, or the database location; no UI flow writes them. Pinning the + // whole SSO object also means a trimmed or missing SSO object can never wipe server + // state. + config.disableAuth = this.appConfig.disableAuth; + config.allowPasswordUpdate = this.appConfig.allowPasswordUpdate; + config.dbDirectoryPath = this.appConfig.dbDirectoryPath; + config.SSO = JSON.parse(JSON.stringify(this.appConfig.SSO || {})); if (this.appConfig.multiPass) { config.multiPass = this.appConfig.multiPass; } - if (config.secret2FA === this.appConfig.secret2FA) { + // Restore the TOTP seed when the client omits it — and when it sends an empty seed + // while still claiming 2FA is on (an inconsistent pair no honest flow produces). + // The settings UI's enable flow sends a non-empty seed; its disable flow sends an + // empty seed with enable2FA false. Both are honored. + if (config.secret2FA === undefined || (config.secret2FA === '' && config.enable2FA)) { config.secret2FA = this.appConfig.secret2FA; } - config.nodes.map((node, i) => { - if (this.appConfig && this.appConfig.nodes && this.appConfig.nodes.length > i && this.appConfig.nodes[i].authentication) { - if (this.appConfig.nodes[i].authentication.macaroonPath) { - node.authentication.macaroonPath = this.appConfig.nodes[i].authentication.macaroonPath; + // enable2FA derives from the seed, matching the boot-time derivation in config.ts, + // so the two fields can never diverge after a save. + config.enable2FA = !!config.secret2FA; + const appConfigNodes = new Map(this.appConfig.nodes?.map((node) => [node.index, node]) || []); + config.nodes?.forEach((node) => { + const appConfigNode = appConfigNodes.get(node.index); + if (appConfigNode?.authentication) { + node.authentication = node.authentication || {}; + if (appConfigNode.authentication.macaroonPath) { + node.authentication.macaroonPath = appConfigNode.authentication.macaroonPath; } - if (this.appConfig.nodes[i].authentication.runePath) { - node.authentication.runePath = this.appConfig.nodes[i].authentication.runePath; + if (appConfigNode.authentication.runePath) { + node.authentication.runePath = appConfigNode.authentication.runePath; } - if (this.appConfig.nodes[i].authentication.lnApiPassword) { - node.authentication.lnApiPassword = this.appConfig.nodes[i].authentication.lnApiPassword; + if (appConfigNode.authentication.lnApiPassword) { + node.authentication.lnApiPassword = appConfigNode.authentication.lnApiPassword; } } - return node; }); return config; }; @@ -101,7 +148,7 @@ export class CommonService { this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Loop macaroon Error', error: err }); } } - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Swap Options', data: swapOptions }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Swap Options Set' }); return swapOptions; }; this.getBoltzServerOptions = (req) => { @@ -119,7 +166,7 @@ export class CommonService { this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Boltz macaroon Error', error: err }); } } - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Boltz Options', data: boltzOptions }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Boltz Options Set' }); return boltzOptions; }; this.getOptions = (req) => { @@ -165,7 +212,7 @@ export class CommonService { } } if (req.session.selectedNode) { - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Updated Node Options for ' + req.session.selectedNode.lnNode, data: req.session.selectedNode.authentication.options }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Updated Node Options for ' + req.session.selectedNode.lnNode }); } return { status: 200, message: 'Updated Successfully' }; } @@ -192,11 +239,11 @@ export class CommonService { } }; this.setOptions = (req) => { - if (this.nodes[0].authentication.options && this.nodes[0].authentication.options.headers) { - return; - } if (this.nodes && this.nodes.length > 0) { this.nodes.forEach((node) => { + if (node.authentication.options && node.authentication.options.headers) { + return; + } node.authentication.options = { url: '', rejectUnauthorized: false, @@ -235,7 +282,7 @@ export class CommonService { form: '' }; } - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Set Node Options for ' + node.lnNode, data: node.authentication.options }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Set Node Options for ' + node.lnNode }); }); this.updateSelectedNodeOptions(req); } @@ -343,10 +390,11 @@ export class CommonService { this.logger.log({ selectedNode: selectedNode, level: 'ERROR', fileName: fileName, msg: errMsg, error: (typeof err === 'object' ? JSON.stringify(err) : err) }); let newErrorObj = { statusCode: 500, message: '', error: '' }; if (err.code && err.code === 'ENOENT') { + // The absolute path stays in the server log above but is not echoed to clients. newErrorObj = { statusCode: 500, - message: 'No such file or directory ' + (err.path ? err.path : ''), - error: 'No such file or directory ' + (err.path ? err.path : '') + message: 'No such file or directory', + error: 'No such file or directory' }; } else { @@ -395,7 +443,8 @@ export class CommonService { } }); }; - this.readCookie = () => { + this.readCookie = (config) => { + this.appConfig.SSO = config.SSO; const exists = fs.existsSync(this.appConfig.SSO.rtlCookiePath); if (exists) { try { @@ -527,7 +576,7 @@ export class CommonService { const selNode = req.session.selectedNode; if (selNode && selNode.index) { this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup:', msg: JSON.stringify(this.removeSecureData(JSON.parse(JSON.stringify(this.appConfig)))) }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'SSO: ' + this.appConfig.SSO.rtlSso }); + this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'SSO: ' + this.appConfig.SSO.rtlSSO }); } }; this.filterData = (dataKey, lnImplementation) => { @@ -607,6 +656,57 @@ export class CommonService { const dataStr = foundDataLine ? foundDataLine.substring((foundDataLine.indexOf(search_string)) + search_string.length) : '{}'; return JSON.parse(dataStr); }; + this.runWithConcurrencyLimit = (tasks, limit, done) => { + const results = new Array(tasks?.length || 0); + // 'done' must fire exactly once. Guard it: multiple runNext() completions (e.g. several + // non-function task elements draining synchronously) must not send the response twice. + let finished = false; + const finish = () => { + if (finished) { + return; + } + finished = true; + done(results); + }; + // No tasks: the start loop below never runs, so 'done' would never fire and the + // response would hang. Resolve immediately for empty lists (e.g. a node with no peers). + if (!tasks || tasks.length === 0) { + return finish(); + } + let nextIndex = 0; + let activeCount = 0; + const runNext = () => { + if (nextIndex >= tasks.length) { + if (activeCount === 0) { + finish(); // all tasks are finished + } + return; + } + const currentIndex = nextIndex++; + activeCount++; + const task = tasks[currentIndex]; + if (typeof task !== 'function') { + results[currentIndex] = { error: new Error('Invalid task at index ' + currentIndex) }; + activeCount--; + runNext(); + return; + } + Promise.resolve().then(() => task()).then((result) => { + results[currentIndex] = result; + }).catch((err) => { + results[currentIndex] = { error: err }; + }).finally(() => { + activeCount--; + runNext(); + }); + }; + // Normalize to at least 1: a non-positive limit would start no tasks, so 'done' (only + // reached from a task's finally) would never fire and the response would hang. + const startCount = Math.max(1, limit); + for (let i = 0; i < startCount && i < tasks.length; i++) { + runNext(); + } + }; } } export const Common = new CommonService(); diff --git a/backend/utils/config.js b/backend/utils/config.js index c34f8a23..36ecca30 100644 --- a/backend/utils/config.js +++ b/backend/utils/config.js @@ -118,9 +118,18 @@ export class ConfigService { this.validateNodeConfig = (config) => { config.allowPasswordUpdate = true; if ((process?.env?.RTL_SSO && +process?.env?.RTL_SSO === 0) || (typeof process?.env?.RTL_SSO === 'undefined' && +config.SSO.rtlSSO === 0)) { - if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { + if (!!process?.env?.DISABLE_AUTH || !!config.disableAuth) { + config.allowPasswordUpdate = false; + config.enable2FA = false; + this.logger.log({ selectedNode: this.common.selectedNode, level: 'WARN', fileName: 'Config', msg: 'Authentication is Disabled via environment or config' }); + if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { + this.errMsg = this.errMsg + '\nRTL Password cannot be set with disabled authentication. Please remove disableAuth option or password.'; + } + } + else if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { config.rtlPass = this.hash.update(process?.env?.APP_PASSWORD).digest('hex'); config.allowPasswordUpdate = false; + this.logger.log({ selectedNode: this.common.selectedNode, level: 'WARN', fileName: 'Config', msg: 'Passing APP_PASSWORD via environment is suggested for standalone RTL application' }); } else if (config.multiPassHashed && config.multiPassHashed !== '') { config.rtlPass = config.multiPassHashed; @@ -146,7 +155,7 @@ export class ConfigService { this.common.nodes[idx] = { settings: { blockExplorerUrl: '' }, authentication: {} }; this.common.nodes[idx].index = node.index; this.common.nodes[idx].lnNode = node.lnNode; - this.common.nodes[idx].lnImplementation = (process?.env?.lnImplementation) ? process?.env?.lnImplementation : node.lnImplementation ? node.lnImplementation : 'LND'; + this.common.nodes[idx].lnImplementation = (process?.env?.LN_IMPLEMENTATION) ? process?.env?.LN_IMPLEMENTATION : node.lnImplementation ? node.lnImplementation : 'LND'; if (this.common.nodes[idx].lnImplementation === 'CLT') { this.common.nodes[idx].lnImplementation = 'CLN'; } @@ -293,7 +302,9 @@ export class ConfigService { this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating the backup directory: \n' + err }); } this.common.nodes[idx].settings.logFile = config.rtlConfFilePath + '/logs/RTL-Node-' + node.index + '.log'; - this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'Config', msg: 'Node Config: ' + JSON.stringify(this.common.nodes[idx]) }); + // maskPasswords keeps paths visible for debugging while redacting credential + // fields such as lnApiPassword before they reach the log file. + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'Config', msg: 'Node Config: ' + JSON.stringify(this.common.maskPasswords(this.common.nodes[idx])) }); const log_file = this.common.nodes[idx].settings.logFile; if (fs.existsSync(log_file || '')) { fs.writeFile((log_file || ''), '', () => { }); @@ -318,10 +329,10 @@ export class ConfigService { }; this.setSSOParams = (config) => { if (process?.env?.RTL_SSO) { - config.SSO.rtlSso = +process?.env?.RTL_SSO; + config.SSO.rtlSSO = +process?.env?.RTL_SSO; } else if (config.SSO && config.SSO.rtlSSO) { - config.SSO.rtlSso = config.SSO.rtlSSO; + config.SSO.rtlSSO = config.SSO.rtlSSO; } if (process?.env?.RTL_COOKIE_PATH) { config.SSO.rtlCookiePath = process?.env?.RTL_COOKIE_PATH; @@ -338,12 +349,12 @@ export class ConfigService { else if (config.SSO && config.SSO.logoutRedirectLink) { config.SSO.logoutRedirectLink = config.SSO.logoutRedirectLink; } - if (+config.SSO.rtlSso) { + if (+config.SSO.rtlSSO) { if (!config.SSO.rtlCookiePath || config.SSO.rtlCookiePath.trim() === '') { this.errMsg = 'Please set rtlCookiePath value for single sign on option!'; } else { - this.common.readCookie(); + this.common.readCookie(config); } } }; diff --git a/backend/utils/csrf.js b/backend/utils/csrf.js index 94c3b41d..0f98607d 100644 --- a/backend/utils/csrf.js +++ b/backend/utils/csrf.js @@ -1,11 +1,30 @@ -import csurf from 'csurf/index.js'; +import { doubleCsrf } from 'csrf-csrf'; import { Logger } from './logger.js'; import { Common } from './common.js'; class CSRF { constructor() { - this.csrfProtection = csurf({ cookie: true }); this.logger = Logger; this.common = Common; + // Signed double-submit-cookie protection (replaces the deprecated csurf). + // The signed token lives in the httpOnly '_csrf' cookie; the client echoes + // the same token (read from the XSRF-TOKEN cookie set in app.ts) in a + // header. The cookie is not secure-only because RTL commonly serves plain + // HTTP (matching the session cookie); token sources match what csurf + // accepted. The error code EBADCSRFTOKEN is handled in app.ts. + this.doubleCsrfUtilities = doubleCsrf({ + getSecret: () => this.common.secret_key, + getSessionIdentifier: (req) => (req.session ? req.session.id : ''), + cookieName: '_csrf', + cookieOptions: { sameSite: 'strict', path: '/', secure: false, httpOnly: true }, + getCsrfTokenFromRequest: (req) => (req.body && req.body._csrf) || (req.query && req.query._csrf) || + req.headers['csrf-token'] || req.headers['xsrf-token'] || + req.headers['x-csrf-token'] || req.headers['x-xsrf-token'] + }); + this.csrfProtection = this.doubleCsrfUtilities.doubleCsrfProtection; + // Force-mints a fresh token for the current session, discarding any token + // cookie bound to a previous session or boot secret (used by the + // EBADCSRFTOKEN error path in app.ts so a client retry succeeds). + this.reMintToken = (req, res) => this.doubleCsrfUtilities.generateCsrfToken(req, res, { overwrite: true }); } mount(app) { this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'CSRF', msg: 'Setting up CSRF..' }); diff --git a/backend/utils/request.js b/backend/utils/request.js new file mode 100644 index 00000000..72a776f4 --- /dev/null +++ b/backend/utils/request.js @@ -0,0 +1,96 @@ +import axios from 'axios'; +import * as https from 'https'; +// Drop-in replacement for the deprecated request-promise, backed by axios. +// Accepts the same options shape used across the controllers ({ url, baseUrl, +// uri, qs, form, body, headers, rejectUnauthorized, json }), resolves with the +// response body directly and rejects with a plain, serializable object that +// mirrors request-promise's StatusCodeError/RequestError shape expected by +// CommonService.handleError. Auth headers are intentionally excluded from the +// rejected error so they can never leak into logs or API error responses. +const insecureAgent = new https.Agent({ rejectUnauthorized: false }); +const buildConfig = (options, method) => { + const config = { + url: options.url && options.url !== '' ? options.url : options.uri, + method: method || options.method || 'GET', + headers: options.headers ? { ...options.headers } : {}, + // Bound hung upstreams; 10 minutes accommodates the slowest legitimate + // operations (LND's /v2/router/send streams up to timeout_seconds=600 and + // slow CLN channel operations get req.setTimeout(600000) upstream). + // Callers can override per request; 0 disables the bound entirely, which + // the LND invoice/payment subscription streams need (open until settled). + timeout: options.timeout !== null && options.timeout !== undefined ? options.timeout : 600000 + }; + if (options.baseUrl) { + config.baseURL = options.baseUrl; + } + if (options.qs && Object.keys(options.qs).length > 0) { + config.params = options.qs; + } + if (options.rejectUnauthorized === false) { + config.httpsAgent = insecureAgent; + } + if (options.form !== null && options.form !== undefined) { + if (typeof options.form === 'string') { + // Pre-encoded (or raw JSON string for LND's wallet endpoints), send as-is. + config.data = options.form; + } + else { + const params = new URLSearchParams(); + Object.entries(options.form).forEach(([key, value]) => { + if (value === null || value === undefined) { + return; + } + if (Array.isArray(value)) { + // Eclair parses list fields as comma-separated values; omit empty lists + // (request-promise's qs encoding also dropped them). + if (value.length > 0) { + params.append(key, value.join(',')); + } + } + else { + params.append(key, String(value)); + } + }); + config.data = params; + } + config.headers['Content-Type'] = 'application/x-www-form-urlencoded'; + } + else if (options.body !== null && options.body !== undefined) { + config.data = options.body; + } + if (options.json !== true) { + // Callers without json: true (block explorer, currency rates) JSON.parse the body themselves. + config.responseType = 'text'; + config.transformResponse = [(data) => data]; + } + return config; +}; +const toRequestPromiseError = (err, config) => { + const errOptions = { url: config.url, method: config.method }; + if (err.response) { + return { + name: 'StatusCodeError', + statusCode: err.response.status, + message: err.response.status + ' - ' + JSON.stringify(err.response.data), + error: err.response.data, + options: errOptions + }; + } + const message = err.message && err.message !== '' ? err.message : err.code; + return { + name: 'RequestError', + message: message, + error: { code: err.code, message: message }, + options: errOptions + }; +}; +const call = (options, method) => { + const config = buildConfig(options, method); + return axios.request(config).then((response) => response.data).catch((err) => Promise.reject(toRequestPromiseError(err, config))); +}; +const request = (options) => call(options); +request.get = (options) => call(options, 'GET'); +request.post = (options) => call(options, 'POST'); +request.put = (options) => call(options, 'PUT'); +request.delete = (options) => call(options, 'DELETE'); +export default request; diff --git a/docker/.env b/docker/.env index ed45187c..9bfd439a 100644 --- a/docker/.env +++ b/docker/.env @@ -1,18 +1,32 @@ -BITCOIN_HOST=bitcoind -BITCOIN_PORT=18889 -BITCOIN_RPC_USER=bitcoin -BITCOIN_RPC_PASSWORD=bitcoin -BITCOIN_RPC_PORT=18888 -BITCOIN_ZMQ_TX_PORT=28888 -BITCOIN_ZMQ_BLOCK_PORT=28889 - -LIGHTNING_HOST=lnd -LIGHTNING_PORT=9735 -LIGHTNING_RPC_PORT=10009 -LIGHTNING_REST_PORT=8080 -LIGHTNING_LOOP_PORT=8081 - -RTL_PORT=3000 +# Regtest dev fixture. NOT for production. Credentials here are throwaway. COMPOSE_FILE=docker-compose.yml COMPOSE_PROJECT_NAME=rtldev + +# bitcoind. The rpcauth hash for these credentials is baked into docker-compose.yml; +# if you change the user/password here you must regenerate it (see README). +BITCOIN_HOST=bitcoind +BITCOIN_RPC_USER=rtldev +BITCOIN_RPC_PASSWORD=rtldev +BITCOIN_RPC_PORT=18443 +BITCOIN_P2P_PORT=18444 +BITCOIN_ZMQ_BLOCK_PORT=28334 +BITCOIN_ZMQ_TX_PORT=28335 + +# LND. Ports are the container-internal ones (identical for every node); +# host-side mappings are assigned per node in docker-compose.yml. +LIGHTNING_REST_PORT=8080 +LIGHTNING_RPC_PORT=10009 +LIGHTNING_P2P_PORT=9735 + +# Host-side LND REST ports, one per node +ALICE_REST_PORT=8081 +BOB_REST_PORT=8082 +CAROL_REST_PORT=8083 + +# RTL. Must not be one of RTL's blacklisted weak passwords +# ('password', 'changeme', 'moneyprintergobrrr') or RTL forces a password change +# on every login and parks you on the auth settings screen. Set in +# rtl/RTL-Config.regtest.json as multiPass; this is only used for messages. +RTL_PORT=3000 +RTL_PASSWORD=rtldev diff --git a/docker/README.md b/docker/README.md index dcd9254d..7cf8ccb9 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,95 +1,278 @@ -# 1) RTL Docker Dev Setup +# RTL regtest dev fixture -### This is not suitable for production deployments. ONLY FOR DEVELOPMENT. +### NOT suitable for production. Development only. Every credential here is throwaway. -This `docker-compose` template launches `bitcoind`, `lnd` and `rtl` containers. - -It is configured to run in **regtest** mode but can be modified to suit your needs. - -### 1.1) Notes - - `bitcoind` is built from an Ubuntu repository and should not be used in production. - - `lnd` will not sync to chain until Bitcoin regtest blocks are generated (see below). - - `rtl` image is from the Docker Hub repository but you can change this to your needs. - - Various ports and configs can be adjusted in the `.env` or `docker-compose.yml` files. - -## 1.2) How to run -It may take several minutes if containers need to be built. - -1.2.1) From the terminal in this folder: +A self-contained regtest network for developing and testing RTL: `bitcoind`, three +LND nodes, a Core Lightning node, an Eclair node, and RTL wired to all five. ``` -$ docker-compose up -d bitcoind -$ bin/b-cli generate 101 -$ docker-compose up -d lnd rtl +alice --[ 5,000,000 sat ]--> bob --[ 3,000,000 sat ]--> carol +cln --[ 4,000,000 sat ]--> alice +eclair --[ 3,500,000 sat ]--> bob ``` -1.2.2) Check containers are up and running with: -``` -$ docker-compose ps +## Topology + +```mermaid +flowchart TB + subgraph chain["Chain backend"] + bitcoind["bitcoind (regtest)
RPC · ZMQ rawblock/rawtx · ZMQ hashblock"] + end + + subgraph ln["Lightning nodes"] + alice["alice (LND)"] + bob["bob (LND)
forwards payments"] + carol["carol (LND)"] + cln["cln (Core Lightning)"] + eclair["eclair (Eclair)"] + end + + alice =="5M sat"==> bob + bob =="3M sat"==> carol + cln =="4M sat"==> alice + eclair =="3.5M sat"==> bob + + alice -.-> bitcoind + bob -.-> bitcoind + carol -.-> bitcoind + cln -.-> bitcoind + eclair -.->|"dedicated 'eclair' wallet
+ hashblock ZMQ"| bitcoind + + rtl["RTL
localhost:3000"] + rtl -->|"REST + macaroon"| alice + rtl -->|"REST + macaroon"| bob + rtl -->|"REST + macaroon"| carol + rtl -->|"clnrest + rune"| cln + rtl -->|"HTTP API + basic auth"| eclair ``` -1.2.3) Use the cli tools to get responses from the containers: -``` -$ bin/ln-cli getinfo -$ bin/b-cli getblockchaininfo +Thick arrows are channels (opener → peer), dotted arrows the chain backend each node +uses, and solid arrows how RTL reaches each node. + +bob sits in the middle so it accrues forwarding history, which is what gives RTL's +routing screens something to show. Two nodes would leave them empty. The `cln` +(Core Lightning) node gives RTL's CLN screens a real backend — it talks to RTL over +clnrest with rune auth. The `eclair` node does the same for RTL's Eclair screens — +RTL talks to its HTTP API with basic auth. + +LND, bitcoind and Eclair images come from [Polar](https://lightningpolar.com); the Core +Lightning image is the official [`elementsproject/lightningd`](https://hub.docker.com/r/elementsproject/lightningd). +All are multi-arch (amd64 + arm64) and nothing is built locally, so this works on +Apple Silicon. (The official `acinq/eclair` image is amd64-only and its versioned tags +are years stale, which is why Polar's build of the same source is used instead.) + +## Requirements + +Docker with Compose v2 (`docker compose`, not `docker-compose`). + +## Quick start + +From this directory: + +```bash +docker compose up -d # bitcoind, alice, bob, carol, cln, eclair, rtl +./scripts/seed.sh # fund, connect, open channels, make payments ``` -1.2.4) View daemon logs as follows: -``` -$ docker-compose logs bitcoind lnd rtl +To also bring up the BTCPay single-sign-on harness, add `--profile sso` — see +[BTCPay SSO harness](#btcpay-sso-harness). + +Then open — password `rtldev`. All five nodes (alice, bob, +carol, cln, eclair) appear in the node switcher. + +Tear down, discarding all state: + +```bash +docker compose down -v ``` -Once the containers are running you can access the RTL UI at http://localhost:3000 +## What the seed creates - - Default password is `password`. - - Default host, port and password can be changed in `.env`. +| | | +|---|---| +| On-chain | 10,000,000 sats per node (LND) + 10,000,000 sats each on cln and eclair, confirmed | +| Channels | alice→bob 5,000,000 · bob→carol 3,000,000 · eclair→bob 3,500,000 sats (1,000,000 pushed each) · cln→alice 4,000,000 sats (no push) | +| Routed payments | 5 × alice→carol via bob (10k, 25k, 50k, 75k, 100k sats) | +| Direct payments | 2 × alice→bob (5k, 15k sats) · 2 × eclair→bob (8k, 18k sats) | +| Open invoices | 2 unpaid on carol (20k, 40k sats) · 1 unpaid on eclair (30k sats) | +| Personas | alice + bob + cln + eclair OPERATOR, carol MERCHANT | -When you are done you can destroy containers with: -``` -$ docker-compose down -v -``` ---- -# 2) Stand alone RTL Setup -This is suitable when you already have a LND node running and configured. +## Determinism -## 2.1) From docker image pull -``` -RTL_VERSION=0.12.0 -docker run --name rtl -d -it \ --e RTL_CONFIG_PATH=/RTLConfig \ --v /path/to/RTLConfig/dir:/RTLConfig \ --v /path/to/macaroon/dir:/path/as/specified/in/RTLConfig \ --v /path/to/database/dir:/RTL/database \ --p 3000:3000/tcp \ -shahanafarooqui/rtl:${RTL_VERSION} +Every amount and payment in `scripts/seed.sh` is fixed. A fresh run always produces +identical state, so screenshots taken before and after a change differ only by the +change. **Do not introduce randomness.** + +The seed is deterministic but deliberately *not* idempotent — running it twice would +fund every node again and open a second set of channels. It refuses to run against an +already-seeded network. To start over: + +```bash +docker compose down -v && docker compose up -d && ./scripts/seed.sh ``` -## 2.2) From local docker build -### 2.2.1) Build the image locally -``` -RTL_VERSION=0.12.0 -docker build -t rtl:${RTL_VERSION} -f dockerfiles/Dockerfile . -``` -### 2.2.2) Create .env file -Create an environment file with your required configurations. Sample .env: -``` -RTL_CONFIG_PATH=/RTLConfig -MACAROON_PATH=/LNDMacaroon -LN_SERVER_URL=https://host.docker.internal:8080 +## Helpers +```bash +bin/b-cli getblockcount # bitcoin-cli +bin/b-cli -rpcwallet=rtldev getbalance +bin/ln-cli alice getinfo # lncli, node name required +bin/ln-cli bob listchannels +bin/ln-cli bob fwdinghistory # forwarding history +bin/e-cli getinfo # eclair-cli +bin/e-cli channels +bin/sso-url # BTCPay-style SSO link (needs --profile sso) +docker compose exec cln lightning-cli --network=regtest listpeerchannels # Core Lightning ``` -### 2.2.3) Run the newly built image with .env configurations -``` -RTL_VERSION=0.12.0 -docker run -d -it \ --v /path/to/RTLConfig/dir:/RTLConfig \ --v /path/to/macaroon/dir:/LNDMacaroon \ --v /path/to/database/dir:/RTL/database \ ---env-file=.env -p 3000:3000 rtl:${RTL_VERSION} +Logs: + +```bash +docker compose logs -f rtl +docker compose logs alice ``` -Once the container is running you can access the RTL UI at http://localhost:3000 +## BTCPay SSO harness ---- -@hashamadeus on Twitter +BTCPay Server bundles RTL and runs it in single-sign-on mode, reached through a very +different entry path than the standalone login: no password, a rotating cookie, and a +reverse proxy in front. That path has broken before without the standalone flow +noticing, so the fixture can reproduce it. + +It is behind a compose profile, so a plain `docker compose up -d` does not start it: + +```bash +docker compose --profile sso up -d +./scripts/verify-sso.sh # 11 assertions over the whole entry path +open "$(bin/sso-url)" # or click through it yourself +``` + +`bin/sso-url` prints the link BTCPay renders on its Services page. Following it lands +you in RTL already authenticated, against the `alice` node. + +### How the flow works + +```mermaid +sequenceDiagram + participant B as Browser + participant P as rtl-sso-proxy
(stands in for traefik) + participant R as rtl-sso
(RTL_SSO=1) + participant C as .cookie
(shared volume) + + R->>C: writes 64 random bytes at startup + Note over B: bin/sso-url reads the cookie —
BTCPay reads the same file + B->>P: GET /rtl/api/authenticate/cookie?access-key= + P->>R: same URI, prefix passed through + R-->>B: not a registered route → catch-all:
mints XSRF-TOKEN, serves index.html + B->>P: POST /rtl/api/authenticate
{ PASSWORD, sha256(access-key) } + P->>R: + R->>C: matches → rotates the cookie + R-->>B: JWT +``` + +The three services are `rtl-sso-config-init` (stages `rtl/RTL-Config.sso.json`, same +copy-into-a-volume dance as the standalone RTL), `rtl-sso` (RTL with `RTL_SSO=1`, +`RTL_COOKIE_PATH` and `LOGOUT_REDIRECT_LINK` — the env block is lifted verbatim from +BTCPay's own compose fragment), and `rtl-sso-proxy` (nginx standing in for BTCPay's +traefik). `RTL_IMAGE` overrides both RTL containers at once, so a branch build gets +tested through both entry paths. + +It is a second RTL container rather than a flag on the first because RTL picks one +authentication mode at startup — SSO and the password login cannot coexist in one +instance. Both are up at the same time on different ports. + +### Things this makes visible + +**No prefix stripping anywhere.** RTL is built with `` and mounts +every route under `baseHref '/rtl'`, so BTCPay's traefik — and the nginx here — pass +`/rtl/…` through unmodified. The proxy deliberately 404s everything outside `/rtl`, so +a request escaping the prefix shows up as a failure instead of being quietly served. + +**The entry URL is not a real route.** `/rtl/api/authenticate/cookie` matches nothing in +`server/routes/shared/authenticate.ts`; it falls through to the catch-all in +`server/utils/app.ts`, which is what mints the `XSRF-TOKEN` cookie and serves the SPA. +The access-key is the raw cookie file content — the frontend sha256s it before posting +and the backend compares against `sha256(cookieValue)`. + +**`GET /rtl/` mints no CSRF token.** That path is served by `express.static`, which +sits *above* the catch-all, so a client entering there has no `XSRF-TOKEN` and its first +POST gets a 403. Only the catch-all mints one. This is long-standing behaviour, not a +regression — but it is why `verify-sso.sh` always seeds its cookie jar from the entry +URL, and worth remembering before concluding that CSRF is broken. + +**The cookie is effectively single-use.** Authenticating rotates it, so a stale +`bin/sso-url` link fails. BTCPay re-reads the file on every page render, which is why +this is invisible in normal use. + +### What it does not cover + +BTCPay itself is not here — no postgres, nbxplorer or btcpayserver container. So this +does not exercise BTCPay *generating* the link, its Services page, or its own upgrades. +For that, run BTCPay's own regtest stack and point it at a local image: + +```bash +# in a btcpayserver-docker checkout, after building an RTL image locally +docker build -t shahanafarooqui/rtl:dev /path/to/RTL +# then edit the rtl image tag in the generated docker-compose, or set it in +# docker-compose-generator/docker-fragments/bitcoin-lnd.yml before generating +``` + +That tests the real composition rather than this reconstruction of it; the harness here +is the fast everyday check. + +## Notes and gotchas + +**RTL's config.** `rtl/RTL-Config.regtest.json` is the tracked template. RTL rewrites +its config on startup, so an init container copies it into a volume rather than +bind-mounting it — a read-only mount makes RTL exit with `EROFS`, and a writable one +would let RTL modify a version-controlled file. The name is not `RTL-Config.json` +because `.gitignore` matches that bare filename at any depth. + +**`lncli` needs `--lnddir=/home/lnd/.lnd`.** `docker compose exec` lands as root, +whose HOME is `/root`, but lnd's datadir is `/home/lnd/.lnd`. `bin/ln-cli` handles this. + +**Changing bitcoind credentials.** `docker-compose.yml` carries an `-rpcauth` hash for +the `BITCOIN_RPC_USER` / `BITCOIN_RPC_PASSWORD` in `.env`. Changing them there is not +enough; regenerate the hash: + +```bash +python3 - <<'EOF' +import hmac, hashlib +user, password, salt = "rtldev", "rtldev", "8a1f2c3d4e5b6a7c8d9e0f1a2b3c4d5e" +print(f"{user}:{salt}${hmac.new(salt.encode(), password.encode(), hashlib.sha256).hexdigest()}") +EOF +``` + +In `docker-compose.yml` the `$` must be written `$$` to escape Compose interpolation. + +**Payments right after channel open will fail.** The channel graph has to reach alice +before she can route to carol. The seed waits for this; anything you script yourself +should too. + +**Core Lightning auth uses a rune.** RTL talks to `cln` over clnrest and authenticates +with a rune, not a macaroon. `cln/create-rune.sh` — run from the `cln` healthcheck — +creates a master rune once the RPC is up and writes it as `LIGHTNING_RUNE="…"` to +`rtl.rune` in the shared `cln_data` volume; RTL reads it via the `runePath` in its config. +The healthcheck reports unhealthy until that file exists, so RTL (which waits on +`service_healthy`) starts only once the rune is ready. Because it runs on every +healthcheck tick (idempotent), a transient RPC-startup race just retries and self-heals +rather than wedging the stack. `--clnrest-host=0.0.0.0` is required for RTL (another +container) to reach clnrest; the default `127.0.0.1` would only be reachable from inside +the node. + +**Eclair has no wallet of its own.** It drives a bitcoind wallet over RPC. The +`eclair-wallet-init` service creates a dedicated `eclair` wallet before the node starts; +without it eclair would attach to "the default loaded wallet" — the `rtldev` mining +wallet — and report the miner's balance as its own. RTL authenticates to eclair with +`lnApiPassword` (HTTP basic auth), no file mount needed. Eclair also confirms channels +at 8 blocks (`channel.min-depth-blocks`), not 6 — the seed mines accordingly. And its +`bitcoind.zmqblock` must point at a `zmqpubhashblock` endpoint — wired to the rawblock +one LND uses, eclair never sees new blocks and channels never confirm. + +## Not included + +The Boltz swap service. + +BTCPay Server itself (postgres + nbxplorer + btcpayserver). The `sso` profile +reproduces the entry path BTCPay uses to reach RTL without running BTCPay — see +[BTCPay SSO harness](#btcpay-sso-harness) for what that covers and what it does not. diff --git a/docker/bin/b-cli b/docker/bin/b-cli index d43ba4d4..55d1002c 100755 --- a/docker/bin/b-cli +++ b/docker/bin/b-cli @@ -1,10 +1,20 @@ #!/usr/bin/env bash +# +# bitcoin-cli against the regtest fixture. +# +# bin/b-cli getblockchaininfo +# bin/b-cli -rpcwallet=rtldev getbalance +# bin/b-cli -rpcwallet=rtldev generatetoaddress 6
+set -euo pipefail + +cd "$(dirname "$0")/.." +# shellcheck disable=SC1091 source .env -docker-compose exec bitcoind bitcoin-cli \ - -datadir=/bitcoin \ - -rpcuser=$BITCOIN_RPC_USER \ - -rpcpassword=$BITCOIN_RPC_PASSWORD \ - -rpcport=$BITCOIN_RPC_PORT \ - "$@" \ No newline at end of file +exec docker compose exec -T bitcoind bitcoin-cli \ + -regtest \ + -rpcuser="$BITCOIN_RPC_USER" \ + -rpcpassword="$BITCOIN_RPC_PASSWORD" \ + -rpcport="$BITCOIN_RPC_PORT" \ + "$@" diff --git a/docker/bin/e-cli b/docker/bin/e-cli new file mode 100755 index 00000000..e01dc8c8 --- /dev/null +++ b/docker/bin/e-cli @@ -0,0 +1,20 @@ +#!/usr/bin/env bash +# +# eclair-cli against the regtest fixture's eclair node. +# +# bin/e-cli getinfo +# bin/e-cli channels +# bin/e-cli createinvoice --amountMsat=1000000 --description=test +# +# The API password is passed explicitly because 'docker compose exec' does not +# read eclair's config for auth; it defaults to the fixture's throwaway value. + +set -euo pipefail + +cd "$(dirname "$0")/.." +# shellcheck disable=SC1091 +source .env + +exec docker compose exec -T eclair eclair-cli \ + -p "${ECLAIR_API_PASSWORD:-rtldev}" \ + "$@" diff --git a/docker/bin/ln-cli b/docker/bin/ln-cli index 0ef12af1..e87c213c 100755 --- a/docker/bin/ln-cli +++ b/docker/bin/ln-cli @@ -1,8 +1,32 @@ #!/usr/bin/env bash +# +# lncli against one node of the regtest fixture. The node name is required, +# because the fixture runs three of them. +# +# bin/ln-cli alice getinfo +# bin/ln-cli bob listchannels +# bin/ln-cli carol addinvoice --amt=1000 +# +# --lnddir is passed explicitly: 'docker compose exec' lands as root, whose HOME +# is /root, but lnd's datadir is /home/lnd/.lnd. Without it lncli looks for the +# TLS cert in the wrong place and fails. -source .env +set -euo pipefail -docker-compose exec lnd lncli \ - --macaroonpath /shared/admin.macaroon \ - --tlscertpath /shared/tls.cert \ - "$@" \ No newline at end of file +cd "$(dirname "$0")/.." + +node="${1:-}" +case "$node" in + alice|bob|carol) + shift + ;; + *) + echo "usage: $(basename "$0") [lncli args...]" >&2 + exit 1 + ;; +esac + +exec docker compose exec -T "$node" lncli \ + --network=regtest \ + --lnddir=/home/lnd/.lnd \ + "$@" diff --git a/docker/bin/sso-url b/docker/bin/sso-url new file mode 100755 index 00000000..08d92870 --- /dev/null +++ b/docker/bin/sso-url @@ -0,0 +1,39 @@ +#!/usr/bin/env bash +# +# Print the BTCPay-style single-sign-on entry URL for the SSO harness. +# +# docker compose --profile sso up -d +# bin/sso-url # print it +# open "$(bin/sso-url)" # or follow it straight into RTL +# +# This is the link BTCPay renders on its Services page. BTCPay builds it from +# BTCPAY_BTCEXTERNALRTL="server=/rtl/api/authenticate/cookie;cookiefile=..." +# by reading the cookie file RTL wrote and appending it as ?access-key=. The +# value is the raw file content: RTL's frontend sha256s it before posting +# (src/app/app.component.ts) and the backend compares against +# sha256(cookieValue), so no hashing happens here. +# +# Authenticating rotates the cookie (common.refreshCookie), so re-run this for +# each login -- exactly as BTCPay re-reads the file on every page render. + +set -euo pipefail + +cd "$(dirname "$0")/.." +# shellcheck disable=SC1091 +[ -f .env ] && source .env + +port="${RTL_SSO_PORT:-3001}" + +if ! docker compose --profile sso ps --status running --services 2>/dev/null | grep -qx rtl-sso; then + echo "rtl-sso is not running. Start it with: docker compose --profile sso up -d" >&2 + exit 1 +fi + +cookie="$(docker compose --profile sso exec -T rtl-sso cat /RTL/cookie/.cookie | tr -d '\r\n')" + +if [ -z "$cookie" ]; then + echo "The cookie file /RTL/cookie/.cookie is empty. Is RTL_SSO=1 set on rtl-sso?" >&2 + exit 1 +fi + +echo "http://localhost:${port}/rtl/api/authenticate/cookie?access-key=${cookie}" diff --git a/docker/bitcoind/Dockerfile b/docker/bitcoind/Dockerfile deleted file mode 100644 index def696ca..00000000 --- a/docker/bitcoind/Dockerfile +++ /dev/null @@ -1,10 +0,0 @@ -FROM ubuntu:18.04 - -RUN apt-get -qq update && apt-get install -y software-properties-common - -RUN add-apt-repository -y ppa:bitcoin/bitcoin \ - && add-apt-repository -y universe && apt-get update - -RUN apt-get install -y bitcoind - -ADD ./bitcoin.conf /bitcoin/bitcoin.conf diff --git a/docker/bitcoind/bitcoin.conf b/docker/bitcoind/bitcoin.conf deleted file mode 100644 index 0e320e91..00000000 --- a/docker/bitcoind/bitcoin.conf +++ /dev/null @@ -1,2 +0,0 @@ -daemon=0 -printtoconsole=1 \ No newline at end of file diff --git a/docker/cln/create-rune.sh b/docker/cln/create-rune.sh new file mode 100755 index 00000000..3fd3e3d1 --- /dev/null +++ b/docker/cln/create-rune.sh @@ -0,0 +1,31 @@ +#!/usr/bin/env bash +# +# Ensure the RTL rune exists. One quick, idempotent attempt: +# - already have it -> succeed +# - RPC up, createrune works -> write it, succeed +# - RPC not ready / failure -> fail, so the caller retries +# +# This is invoked from the cln healthcheck (not a one-shot poststart hook) so a +# transient RPC-startup race self-heals on the next healthcheck tick instead of +# permanently wedging the stack. Stores the rune as LIGHTNING_RUNE="", the +# format RTL reads via its runePath. POSIX sh compatible. +set -u + +# Hardcoded to match the single source of truth used everywhere else in the fixture: +# the cln volume mount (cln_data:/root/.lightning), the healthcheck's `test -f`, and +# RTL's runePath (/cln/rtl.rune, /cln being cln_data mounted read-only). Keep these in +# lockstep — do not switch to ${LIGHTNINGD_DATA}, which would silently diverge if the +# image's data dir ever changed while the mounts/healthcheck stayed on /root/.lightning. +RUNE_FILE="/root/.lightning/rtl.rune" + +[ -f "${RUNE_FILE}" ] && exit 0 + +lightning-cli --network="${LIGHTNINGD_NETWORK}" getinfo >/dev/null 2>&1 || exit 1 + +rune=$(lightning-cli --network="${LIGHTNINGD_NETWORK}" createrune 2>/dev/null \ + | grep -o '"rune"[[:space:]]*:[[:space:]]*"[^"]*"' \ + | sed -e 's/.*"rune"[[:space:]]*:[[:space:]]*"//' -e 's/"$//') + +[ -n "${rune}" ] || exit 1 + +printf 'LIGHTNING_RUNE="%s"\n' "${rune}" > "${RUNE_FILE}" diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 8daed008..e059ab3a 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -1,132 +1,400 @@ -version: "2.4" +# Regtest dev fixture for RTL: bitcoind + 3 LND nodes + RTL. +# +# NOT suitable for production. All credentials are throwaway. +# +# Topology is alice -> bob -> carol, so bob forwards payments and RTL's +# routing/forwarding screens have data in them. See README.md. +# +# Node images come from Polar (https://lightningpolar.com), which publishes +# multi-arch (amd64 + arm64) builds. Nothing is built locally. volumes: - bitcoin_data: - lightning_data: - lightning_shared: + bitcoind_data: + alice_data: + bob_data: + carol_data: + cln_data: + eclair_data: rtl_db: + rtl_config: + rtl_sso_db: + rtl_sso_config: + rtl_sso_cookie: + +x-lnd: &lnd + image: polarlightning/lnd:0.20.0-beta + restart: unless-stopped + depends_on: + - bitcoind services: bitcoind: container_name: ${COMPOSE_PROJECT_NAME}_bitcoind - image: bitcoind:0.19.0 - build: ./bitcoind - command: [ - "bitcoind", - "-datadir=/bitcoin", - "-port=${BITCOIN_PORT}", - "-upnp=0", - "-dnsseed=0", - "-txindex=1", - "-listen=0", - "-onlynet=ipv4", - "-regtest=1", - "-regtest.rpcport=${BITCOIN_RPC_PORT}", - "-regtest.port=${BITCOIN_PORT}", - "-rpcport=${BITCOIN_RPC_PORT}", - "-rpcuser=${BITCOIN_RPC_USER}", - "-rpcpassword=${BITCOIN_RPC_PASSWORD}", - "-rpcallowip=0.0.0.0/0", - "-zmqpubrawtx=tcp://0.0.0.0:${BITCOIN_ZMQ_TX_PORT}", - "-zmqpubrawblock=tcp://0.0.0.0:${BITCOIN_ZMQ_BLOCK_PORT}", - "-zmqpubhashblock=tcp://0.0.0.0:${BITCOIN_ZMQ_BLOCK_PORT}" - ] - ports: - - "${BITCOIN_PORT}:${BITCOIN_PORT}" - volumes: - - bitcoin_data:/bitcoin - - lnd: - container_name: ${COMPOSE_PROJECT_NAME}_lnd - image: lnd:0.12.0-beta - build: ./lnd + image: polarlightning/bitcoind:30.0 + restart: unless-stopped + command: + - bitcoind + - -server=1 + - -regtest=1 + # rpcauth hash for ${BITCOIN_RPC_USER}/${BITCOIN_RPC_PASSWORD}. '$$' escapes + # compose interpolation and reaches bitcoind as a single '$'. + - -rpcauth=rtldev:8a1f2c3d4e5b6a7c8d9e0f1a2b3c4d5e$$010df4b32c5e9a556cba1857eb5865990c983d8a56dadc0fdbf457cf90073c6c + - -zmqpubrawblock=tcp://0.0.0.0:${BITCOIN_ZMQ_BLOCK_PORT} + - -zmqpubrawtx=tcp://0.0.0.0:${BITCOIN_ZMQ_TX_PORT} + # eclair's zmqblock consumes the hashblock topic, not rawblock (LND uses + # rawblock/rawtx above); without this endpoint eclair never sees new + # blocks and channels stay in WAIT_FOR_FUNDING_CONFIRMED forever. + - -zmqpubhashblock=tcp://0.0.0.0:${BITCOIN_ZMQ_HASHBLOCK_PORT:-28336} + - -txindex=1 + - -dnsseed=0 + - -rpcbind=0.0.0.0 + - -rpcallowip=0.0.0.0/0 + - -rpcport=${BITCOIN_RPC_PORT} + - -listen=1 + - -listenonion=0 + - -fallbackfee=0.0002 + ports: + - "${BITCOIN_RPC_PORT}:${BITCOIN_RPC_PORT}" + volumes: + - bitcoind_data:/home/bitcoin/.bitcoin + + # --alias / --externalip / --tlsextradomain are per-node on purpose: the alias + # is what RTL displays, and the extradomain must match the hostname RTL dials + # (https://alice:8080) or TLS validation fails. + alice: + <<: *lnd + container_name: ${COMPOSE_PROJECT_NAME}_alice + command: + - lnd + - --noseedbackup + - --trickledelay=5000 + - --alias=alice + - --externalip=alice + - --tlsextradomain=alice + - --tlsextradomain=${COMPOSE_PROJECT_NAME}_alice + - --tlsextradomain=host.docker.internal + - --listen=0.0.0.0:${LIGHTNING_P2P_PORT} + - --rpclisten=0.0.0.0:${LIGHTNING_RPC_PORT} + - --restlisten=0.0.0.0:${LIGHTNING_REST_PORT} + - --bitcoin.active + - --bitcoin.regtest + - --bitcoin.node=bitcoind + - --bitcoind.rpchost=${BITCOIN_HOST}:${BITCOIN_RPC_PORT} + - --bitcoind.rpcuser=${BITCOIN_RPC_USER} + - --bitcoind.rpcpass=${BITCOIN_RPC_PASSWORD} + - --bitcoind.zmqpubrawblock=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_BLOCK_PORT} + - --bitcoind.zmqpubrawtx=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_TX_PORT} + - --accept-keysend + - --accept-amp + ports: + - "${ALICE_REST_PORT}:${LIGHTNING_REST_PORT}" + volumes: + - alice_data:/home/lnd/.lnd + + bob: + <<: *lnd + container_name: ${COMPOSE_PROJECT_NAME}_bob + command: + - lnd + - --noseedbackup + - --trickledelay=5000 + - --alias=bob + - --externalip=bob + - --tlsextradomain=bob + - --tlsextradomain=${COMPOSE_PROJECT_NAME}_bob + - --tlsextradomain=host.docker.internal + - --listen=0.0.0.0:${LIGHTNING_P2P_PORT} + - --rpclisten=0.0.0.0:${LIGHTNING_RPC_PORT} + - --restlisten=0.0.0.0:${LIGHTNING_REST_PORT} + - --bitcoin.active + - --bitcoin.regtest + - --bitcoin.node=bitcoind + - --bitcoind.rpchost=${BITCOIN_HOST}:${BITCOIN_RPC_PORT} + - --bitcoind.rpcuser=${BITCOIN_RPC_USER} + - --bitcoind.rpcpass=${BITCOIN_RPC_PASSWORD} + - --bitcoind.zmqpubrawblock=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_BLOCK_PORT} + - --bitcoind.zmqpubrawtx=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_TX_PORT} + - --accept-keysend + - --accept-amp + ports: + - "${BOB_REST_PORT}:${LIGHTNING_REST_PORT}" + volumes: + - bob_data:/home/lnd/.lnd + + carol: + <<: *lnd + container_name: ${COMPOSE_PROJECT_NAME}_carol + command: + - lnd + - --noseedbackup + - --trickledelay=5000 + - --alias=carol + - --externalip=carol + - --tlsextradomain=carol + - --tlsextradomain=${COMPOSE_PROJECT_NAME}_carol + - --tlsextradomain=host.docker.internal + - --listen=0.0.0.0:${LIGHTNING_P2P_PORT} + - --rpclisten=0.0.0.0:${LIGHTNING_RPC_PORT} + - --restlisten=0.0.0.0:${LIGHTNING_REST_PORT} + - --bitcoin.active + - --bitcoin.regtest + - --bitcoin.node=bitcoind + - --bitcoind.rpchost=${BITCOIN_HOST}:${BITCOIN_RPC_PORT} + - --bitcoind.rpcuser=${BITCOIN_RPC_USER} + - --bitcoind.rpcpass=${BITCOIN_RPC_PASSWORD} + - --bitcoind.zmqpubrawblock=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_BLOCK_PORT} + - --bitcoind.zmqpubrawtx=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_TX_PORT} + - --accept-keysend + - --accept-amp + ports: + - "${CAROL_REST_PORT}:${LIGHTNING_REST_PORT}" + volumes: + - carol_data:/home/lnd/.lnd + + # Core Lightning node. Unlike the LND nodes it talks to RTL over clnrest (the + # built-in REST plugin) using rune auth, so it needs --clnrest-* options and a + # rune written where RTL can read it. create-rune.sh (run from the healthcheck) + # creates the rune and writes it to /root/.lightning/rtl.rune (RTL mounts that + # read-only); the healthcheck is unhealthy until it exists, so rtl waits for it. + # --clnrest-host=0.0.0.0 is required so the rtl container can reach it; the default + # 127.0.0.1 would only be reachable from inside this container. Protocol stays https + # (clnrest default, self-signed) — RTL connects with rejectUnauthorized:false. + cln: + image: elementsproject/lightningd:v25.09 + container_name: ${COMPOSE_PROJECT_NAME}_cln restart: unless-stopped - command: [ - "lnd", - "--noseedbackup", - "--rpclisten=0.0.0.0:${LIGHTNING_RPC_PORT}", - "--restlisten=0.0.0.0:${LIGHTNING_REST_PORT}", - "--adminmacaroonpath=/shared/admin.macaroon", - "--tlsextradomain=${LIGHTNING_HOST}", - "--tlsextraip=0.0.0.0", - "--tlscertpath=/shared/tls.cert", - "--datadir=/lnd", - "--bitcoin.active", - "--bitcoin.regtest", - "--bitcoin.node=bitcoind", - "--bitcoind.rpchost=${BITCOIN_HOST}:${BITCOIN_RPC_PORT}", - "--bitcoind.rpcuser=${BITCOIN_RPC_USER}", - "--bitcoind.rpcpass=${BITCOIN_RPC_PASSWORD}", - "--bitcoind.zmqpubrawtx=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_TX_PORT}", - "--bitcoind.zmqpubrawblock=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_BLOCK_PORT}" - ] depends_on: - bitcoind + environment: + LIGHTNINGD_NETWORK: regtest + command: + - --alias=cln + - --bitcoin-rpcconnect=${BITCOIN_HOST} + - --bitcoin-rpcport=${BITCOIN_RPC_PORT} + - --bitcoin-rpcuser=${BITCOIN_RPC_USER} + - --bitcoin-rpcpassword=${BITCOIN_RPC_PASSWORD} + - --bitcoin-retry-timeout=3600 + - --addr=0.0.0.0:9735 + - --announce-addr=cln:9735 + - --large-channels + - --clnrest-host=0.0.0.0 + - --clnrest-port=3010 ports: - - "${LIGHTNING_REST_PORT}:${LIGHTNING_REST_PORT}" + - "${CLN_REST_PORT:-3010}:3010" volumes: - - lightning_data:/lnd - - lightning_shared:/shared + - cln_data:/root/.lightning + - ./cln/create-rune.sh:/opt/create-rune.sh:ro + healthcheck: + # create-rune.sh ensures the rune exists (idempotent, one quick attempt) and + # this reports healthy only once it does. Driving it from the healthcheck — which + # retries on its interval — means a transient RPC-startup race self-heals instead + # of a one-shot script permanently wedging the stack. rtl waits on this via + # depends_on: condition: service_healthy before reading the rune at startup. + test: ["CMD-SHELL", "sh /opt/create-rune.sh && test -f /root/.lightning/rtl.rune"] + interval: 5s + timeout: 10s + retries: 40 - boltz: - container_name: ${COMPOSE_PROJECT_NAME}_boltz - image: boltz:1.2.0 - build: ./boltz - restart: unless-stopped - command: [ - "boltz", - "--noseedbackup", - "--rpclisten=0.0.0.0:${BOLTZ_RPC_PORT}", - "--restlisten=0.0.0.0:${BOLTZ_REST_PORT}", - "--adminmacaroonpath=/shared/admin.macaroon", - "--tlsextradomain=${BOLTZ_HOST}", - "--tlsextraip=0.0.0.0", - "--tlscertpath=/shared/tls.cert", - "--datadir=/boltz", - "--bitcoin.active", - "--bitcoin.regtest", - "--bitcoin.node=bitcoind", - "--bitcoind.rpchost=${BITCOIN_HOST}:${BITCOIN_RPC_PORT}", - "--bitcoind.rpcuser=${BITCOIN_RPC_USER}", - "--bitcoind.rpcpass=${BITCOIN_RPC_PASSWORD}", - "--bitcoind.zmqpubrawtx=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_TX_PORT}", - "--bitcoind.zmqpubrawblock=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_BLOCK_PORT}" - ] + # Eclair has no on-chain wallet of its own -- it drives a bitcoind wallet over + # RPC. Without a dedicated wallet it would grab "the default loaded wallet", + # which here is the rtldev mining wallet, and eclair's on-chain balance would + # show the miner's coins. This init container creates (or reloads) a wallet + # named "eclair" before the eclair node starts; load_on_startup survives + # bitcoind restarts. + eclair-wallet-init: + container_name: ${COMPOSE_PROJECT_NAME}_eclair_wallet_init + image: polarlightning/bitcoind:30.0 depends_on: - bitcoind + entrypoint: ["/bin/sh", "-c"] + command: + - | + bcli() { bitcoin-cli -regtest -rpcconnect=${BITCOIN_HOST} -rpcport=${BITCOIN_RPC_PORT} -rpcuser=${BITCOIN_RPC_USER} -rpcpassword=${BITCOIN_RPC_PASSWORD} "$$@"; } + i=0 + until bcli getblockchaininfo >/dev/null 2>&1; do + i=$$((i+1)); [ "$$i" -ge 60 ] && echo "bitcoind never came up" && exit 1 + sleep 1 + done + bcli -named createwallet wallet_name=eclair load_on_startup=true >/dev/null 2>&1 \ + || bcli loadwallet eclair true >/dev/null 2>&1 \ + || true + bcli -rpcwallet=eclair getwalletinfo >/dev/null + echo "eclair wallet ready" + + # Eclair node. Talks to RTL over its HTTP API with basic auth (the + # lnApiPassword in RTL's config). The polarlightning image is used because + # acinq/eclair on Docker Hub is amd64-only and its newest versioned tag is + # years stale; Polar builds the same ACINQ source multi-arch (amd64 + arm64). + # The image entrypoint translates each --key=value into -Declair.key=value. + # The entrypoint also overrides server.public-ips.0 with the container IP, but + # the arg must still be present for that substitution to happen. + eclair: + image: polarlightning/eclair:0.13.1 + container_name: ${COMPOSE_PROJECT_NAME}_eclair + restart: unless-stopped + depends_on: + bitcoind: + condition: service_started + eclair-wallet-init: + condition: service_completed_successfully + command: + - polar-eclair + - --node-alias=eclair + - --server.public-ips.0=eclair + - --server.port=9735 + - --api.enabled=true + - --api.binding-ip=0.0.0.0 + - --api.port=8080 + - --api.password=${ECLAIR_API_PASSWORD:-rtldev} + - --chain=regtest + - --bitcoind.host=${BITCOIN_HOST} + - --bitcoind.rpcport=${BITCOIN_RPC_PORT} + - --bitcoind.rpcuser=${BITCOIN_RPC_USER} + - --bitcoind.rpcpassword=${BITCOIN_RPC_PASSWORD} + # zmqblock must be bitcoind's *hashblock* endpoint (eclair subscribes to + # that topic); pointing it at the rawblock endpoint the LND nodes use + # leaves eclair blind to new blocks. + - --bitcoind.zmqblock=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_HASHBLOCK_PORT:-28336} + - --bitcoind.zmqtx=tcp://${BITCOIN_HOST}:${BITCOIN_ZMQ_TX_PORT} + - --bitcoind.wallet=eclair + - --datadir=/home/eclair/.eclair + - --printToConsole=true + # Regtest feerates are far from mainnet estimates; without a wide + # tolerance eclair closes channels over feerate disagreements. + - --on-chain-fees.feerate-tolerance.ratio-low=0.00001 + - --on-chain-fees.feerate-tolerance.ratio-high=10000.0 ports: - - "${BOLTZ_REST_PORT}:${BOLTZ_REST_PORT}" + - "${ECLAIR_REST_PORT:-8281}:8080" volumes: - - boltz_data:/boltz - - boltz_shared:/shared - + - eclair_data:/home/eclair + + # RTL rewrites its config file on startup, so it cannot be given the tracked + # template directly: a bind mount would either be read-only (RTL exits with + # EROFS) or would let RTL scribble into a version-controlled file. Instead the + # template is copied into a volume that 'down -v' discards, which keeps the + # source pristine and every run starting from identical config. + rtl-config-init: + container_name: ${COMPOSE_PROJECT_NAME}_rtl_config_init + image: busybox:1.36 + command: > + sh -c "cp /template/RTL-Config.regtest.json /config/RTL-Config.json && + chmod 644 /config/RTL-Config.json && + echo 'config staged'" + volumes: + - ./rtl/RTL-Config.regtest.json:/template/RTL-Config.regtest.json:ro + - rtl_config:/config + rtl: container_name: ${COMPOSE_PROJECT_NAME}_rtl - image: shahanafarooqui/rtl:0.12.0 + # Defaults to the published image; override with RTL_IMAGE (e.g. a locally built + # branch image) to test unreleased changes: RTL_IMAGE=rtl:pr1625 docker compose up. + image: ${RTL_IMAGE:-shahanafarooqui/rtl:v0.15.10} restart: unless-stopped depends_on: - - lnd - volumes: - - lightning_shared:/shared:ro - - rtl_db:/database + rtl-config-init: + condition: service_completed_successfully + alice: + condition: service_started + bob: + condition: service_started + carol: + condition: service_started + cln: + condition: service_healthy + eclair: + condition: service_started ports: - "${RTL_PORT}:${RTL_PORT}" environment: - PORT: ${RTL_PORT} - HOST: 192.168.0.27 - MACAROON_PATH: /shared - LN_SERVER_URL: https://${LIGHTNING_HOST}:${LIGHTNING_REST_PORT} - CONFIG_PATH: '' - LN_IMPLEMENTATION: LND - SWAP_SERVER_URL: https://${LIGHTNING_HOST}:${LIGHTNING_LOOP_PORT} - SWAP_MACAROON_PATH: /shared - BOLTZ_SERVER_URL: https://${BOLTZ_HOST}:${BOLTZ_PORT} - BOLTZ_MACAROON_PATH: /shared - RTL_SSO: 0 - RTL_COOKIE_PATH: '' - LOGOUT_REDIRECT_LINK: '' - RTL_CONFIG_PATH: /RTL - BITCOIND_CONFIG_PATH: '' - CHANNEL_BACKUP_PATH: /shared/lnd/backup - ENABLE_OFFERS: false - ENABLE_PEERSWAP: false + RTL_CONFIG_PATH: /RTL/config + volumes: + - rtl_config:/RTL/config + - alice_data:/lnd/alice:ro + - bob_data:/lnd/bob:ro + - carol_data:/lnd/carol:ro + - cln_data:/cln:ro + - rtl_db:/RTL/database + + # --------------------------------------------------------------------------- + # BTCPay Server SSO harness -- profile "sso", so a plain 'up' does not start it: + # + # docker compose --profile sso up -d + # bin/sso-url + # + # BTCPay bundles RTL as a service and runs it in single-sign-on mode. RTL + # writes a random cookie to RTL_COOKIE_PATH; BTCPay reads that file and renders + # a link to /rtl/api/authenticate/cookie?access-key= on its Services + # page. That path is not a registered route -- it falls through to RTL's + # catch-all, which mints the XSRF-TOKEN cookie and serves index.html, and the + # SPA then reads access-key from the query string and posts it as a password + # login. Reproducing that entry path is the whole point of this harness: it is + # where RTL's auth, CSRF and static-serving behaviour meet an external caller, + # and it has broken before without the standalone flow noticing. + # + # BTCPay itself (postgres + nbxplorer + btcpayserver) is deliberately not here. + # See README.md, "BTCPay SSO harness", for what that leaves untested and how to + # run against a real BTCPay when it matters. + # --------------------------------------------------------------------------- + + # Same copy-into-a-volume dance as rtl-config-init above, and for the same + # reason: RTL rewrites its config on startup. + rtl-sso-config-init: + container_name: ${COMPOSE_PROJECT_NAME}_rtl_sso_config_init + profiles: ["sso"] + image: busybox:1.36 + command: > + sh -c "cp /template/RTL-Config.sso.json /config/RTL-Config.json && + chmod 644 /config/RTL-Config.json && + echo 'sso config staged'" + volumes: + - ./rtl/RTL-Config.sso.json:/template/RTL-Config.sso.json:ro + - rtl_sso_config:/config + + # A second RTL rather than a flag on the first: RTL picks one authentication + # mode at startup, so SSO and the password login cannot coexist in one + # instance. Only alice is wired up, matching BTCPay's one-node-per-RTL layout. + # + # The environment block is copied from BTCPay's own compose fragment + # (docker-compose-generator/docker-fragments/bitcoin-lnd.yml in + # btcpayserver-docker), so this exercises the env-driven SSO path BTCPay + # actually uses rather than the config-file equivalent -- which is why + # RTL-Config.sso.json leaves its SSO block zeroed and carries no multiPass. + # + # Only 'expose'd, never published: all access goes through the proxy, as it + # does under BTCPay. + rtl-sso: + container_name: ${COMPOSE_PROJECT_NAME}_rtl_sso + profiles: ["sso"] + image: ${RTL_IMAGE:-shahanafarooqui/rtl:v0.15.10} + restart: unless-stopped + depends_on: + rtl-sso-config-init: + condition: service_completed_successfully + alice: + condition: service_started + environment: + RTL_CONFIG_PATH: /RTL/config + RTL_SSO: 1 + RTL_COOKIE_PATH: /RTL/cookie/.cookie + LOGOUT_REDIRECT_LINK: /server/services + expose: + - "3000" + volumes: + - rtl_sso_config:/RTL/config + - rtl_sso_cookie:/RTL/cookie + - alice_data:/lnd/alice:ro + - rtl_sso_db:/RTL/database + + # Stands in for BTCPay's traefik. Routes only /rtl and /rtl/*, mirroring the + # label BTCPay puts on its RTL container; see nginx/rtl-sso.conf. + rtl-sso-proxy: + container_name: ${COMPOSE_PROJECT_NAME}_rtl_sso_proxy + profiles: ["sso"] + image: nginx:1.27-alpine + restart: unless-stopped + depends_on: + - rtl-sso + ports: + - "${RTL_SSO_PORT:-3001}:80" + volumes: + - ./nginx/rtl-sso.conf:/etc/nginx/conf.d/default.conf:ro diff --git a/docker/lnd/Dockerfile b/docker/lnd/Dockerfile deleted file mode 100644 index 65297f0d..00000000 --- a/docker/lnd/Dockerfile +++ /dev/null @@ -1,29 +0,0 @@ -FROM golang:1.11-alpine as builder - -WORKDIR /go/src/github.com/lightningnetwork/lnd - -# Force Go to use the cgo based DNS resolver. This is required to ensure DNS -# queries required to connect to linked containers succeed. -ENV GODEBUG netdns=cgo - -RUN apk add --no-cache --update alpine-sdk git make \ - && git clone -n https://github.com/lightningnetwork/lnd . \ - && git checkout d2186cc9da29853091175189268b073f49586cf0 \ - && make \ - && make install - -# Start a new, final image to reduce size. -FROM alpine as final - -# Expose lnd ports (server, rpc). -EXPOSE 9735 10009 - -# Copy the binaries and entrypoint from the builder image. -COPY --from=builder /go/bin/lncli /bin/ -COPY --from=builder /go/bin/lnd /bin/ - -# Add bash. -RUN apk add --no-cache bash - -# Import the config -ADD ./lnd.conf /root/.lnd/lnd.conf \ No newline at end of file diff --git a/docker/lnd/lnd.conf b/docker/lnd/lnd.conf deleted file mode 100644 index a9c97140..00000000 --- a/docker/lnd/lnd.conf +++ /dev/null @@ -1,2 +0,0 @@ -[Application Options] -debuglevel=info \ No newline at end of file diff --git a/docker/nginx/rtl-sso.conf b/docker/nginx/rtl-sso.conf new file mode 100644 index 00000000..314aa605 --- /dev/null +++ b/docker/nginx/rtl-sso.conf @@ -0,0 +1,46 @@ +# Reverse proxy in front of RTL running in BTCPay Server's single-sign-on mode. +# +# Stands in for the traefik instance BTCPay puts in front of its bundled RTL. +# The location regex mirrors the router rule BTCPay labels that container with: +# +# Host(`${BTCPAY_HOST}`) && (Path(`/rtl`) || PathPrefix(`/rtl/`)) +# +# so only /rtl and /rtl/* are proxied and everything else 404s here. That +# strictness is deliberate: RTL is built with (angular.json) +# and mounts every route under baseHref '/rtl' (server/utils/common.ts), so a +# request that escapes the prefix is a bug the harness should surface rather +# than quietly serve. +# +# The prefix is passed through unmodified -- there is no strip-prefix step to +# get wrong, because RTL expects to see it. proxy_pass without a URI part +# preserves the original request URI. + +map $http_upgrade $connection_upgrade { + default upgrade; + '' close; +} + +server { + listen 80; + server_name _; + + location ~ ^/rtl(/|$) { + proxy_pass http://rtl-sso:3000; + + # RTL runs with Express 'trust proxy' enabled, so these are what it sees + # as the client address in its logs and rate limiting. + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + + # RTL's websocket lives at /rtl/api/ws and stays open for the life of the + # session. Without the upgrade headers it fails the handshake and the UI + # silently stops receiving live updates; without the long read timeout + # nginx drops it after 60s. + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection $connection_upgrade; + proxy_read_timeout 3600s; + } +} diff --git a/docker/rtl/RTL-Config.regtest.json b/docker/rtl/RTL-Config.regtest.json new file mode 100644 index 00000000..73f85f4d --- /dev/null +++ b/docker/rtl/RTL-Config.regtest.json @@ -0,0 +1,103 @@ +{ + "multiPass": "rtldev", + "port": "3000", + "defaultNodeIndex": 1, + "dbDirectoryPath": "/RTL/database", + "SSO": { + "rtlSSO": 0, + "rtlCookiePath": "", + "logoutRedirectLink": "" + }, + "nodes": [ + { + "index": 1, + "lnNode": "alice", + "lnImplementation": "LND", + "authentication": { + "macaroonPath": "/lnd/alice/data/chain/bitcoin/regtest" + }, + "settings": { + "userPersona": "OPERATOR", + "themeMode": "DAY", + "themeColor": "PURPLE", + "logLevel": "ERROR", + "lnServerUrl": "https://alice:8080", + "fiatConversion": false, + "unannouncedChannels": false, + "blockExplorerUrl": "https://mempool.space" + } + }, + { + "index": 2, + "lnNode": "bob", + "lnImplementation": "LND", + "authentication": { + "macaroonPath": "/lnd/bob/data/chain/bitcoin/regtest" + }, + "settings": { + "userPersona": "OPERATOR", + "themeMode": "DAY", + "themeColor": "PURPLE", + "logLevel": "ERROR", + "lnServerUrl": "https://bob:8080", + "fiatConversion": false, + "unannouncedChannels": false, + "blockExplorerUrl": "https://mempool.space" + } + }, + { + "index": 3, + "lnNode": "carol", + "lnImplementation": "LND", + "authentication": { + "macaroonPath": "/lnd/carol/data/chain/bitcoin/regtest" + }, + "settings": { + "userPersona": "MERCHANT", + "themeMode": "DAY", + "themeColor": "PURPLE", + "logLevel": "ERROR", + "lnServerUrl": "https://carol:8080", + "fiatConversion": false, + "unannouncedChannels": false, + "blockExplorerUrl": "https://mempool.space" + } + }, + { + "index": 4, + "lnNode": "cln", + "lnImplementation": "CLN", + "authentication": { + "runePath": "/cln/rtl.rune" + }, + "settings": { + "userPersona": "OPERATOR", + "themeMode": "DAY", + "themeColor": "PURPLE", + "logLevel": "ERROR", + "lnServerUrl": "https://cln:3010", + "fiatConversion": false, + "unannouncedChannels": false, + "blockExplorerUrl": "https://mempool.space" + } + }, + { + "index": 5, + "lnNode": "eclair", + "lnImplementation": "ECL", + "authentication": { + "lnApiPassword": "rtldev" + }, + "settings": { + "userPersona": "OPERATOR", + "themeMode": "DAY", + "themeColor": "PURPLE", + "logLevel": "ERROR", + "lnServerUrl": "http://eclair:8080", + "fiatConversion": false, + "unannouncedChannels": false, + "blockExplorerUrl": "https://mempool.space" + } + } + ] +} diff --git a/docker/rtl/RTL-Config.sso.json b/docker/rtl/RTL-Config.sso.json new file mode 100644 index 00000000..59b7b1b4 --- /dev/null +++ b/docker/rtl/RTL-Config.sso.json @@ -0,0 +1,30 @@ +{ + "port": "3000", + "defaultNodeIndex": 1, + "dbDirectoryPath": "/RTL/database", + "SSO": { + "rtlSSO": 0, + "rtlCookiePath": "", + "logoutRedirectLink": "" + }, + "nodes": [ + { + "index": 1, + "lnNode": "alice", + "lnImplementation": "LND", + "authentication": { + "macaroonPath": "/lnd/alice/data/chain/bitcoin/regtest" + }, + "settings": { + "userPersona": "OPERATOR", + "themeMode": "DAY", + "themeColor": "PURPLE", + "logLevel": "ERROR", + "lnServerUrl": "https://alice:8080", + "fiatConversion": false, + "unannouncedChannels": false, + "blockExplorerUrl": "https://mempool.space" + } + } + ] +} diff --git a/docker/scripts/seed.sh b/docker/scripts/seed.sh new file mode 100755 index 00000000..bbe5779e --- /dev/null +++ b/docker/scripts/seed.sh @@ -0,0 +1,367 @@ +#!/usr/bin/env bash +# +# Seed the regtest fixture with a deterministic scenario. +# +# Every amount, capacity and payment below is fixed on purpose. Re-running this +# against a fresh network must produce the same state, so that screenshots taken +# now and after a redesign differ only by the design. Do not introduce randomness. +# +# Topology: +# +# alice --[ 5,000,000 sat ]--> bob --[ 3,000,000 sat ]--> carol +# cln --[ 4,000,000 sat ]--> alice +# eclair --[ 3,500,000 sat ]--> bob +# +# bob sits in the middle so it accrues forwarding history, which is what +# populates RTL's routing screens. +# +# Usage: ./scripts/seed.sh (from the docker/ directory) + +set -euo pipefail + +cd "$(dirname "$0")/.." + +# Docker Compose reads .env by itself; bash does not. Without this the defaults +# below silently win, and the summary at the end prints a password that does not +# work. +if [ -f .env ]; then + set -a + # shellcheck disable=SC1091 + source .env + set +a +fi + +BITCOIN_RPC_USER="${BITCOIN_RPC_USER:-rtldev}" +BITCOIN_RPC_PASSWORD="${BITCOIN_RPC_PASSWORD:-rtldev}" +ECLAIR_API_PASSWORD="${ECLAIR_API_PASSWORD:-rtldev}" + +NODES=(alice bob carol) + +# Deterministic scenario constants +FUND_SATS=10000000 # on-chain funding per node +CH_ALICE_BOB=5000000 # channel capacity alice -> bob +CH_BOB_CAROL=3000000 # channel capacity bob -> carol +CH_CLN_ALICE=4000000 # channel capacity cln -> alice (Core Lightning node) +CH_ECL_BOB=3500000 # channel capacity eclair -> bob (Eclair node) +PUSH_SATS=1000000 # pushed to remote on open, so both sides have liquidity +MINE_CONFIRM=6 # blocks to confirm a funding tx +ECL_MINE_CONFIRM=8 # eclair's channel.min-depth-blocks default is 8, not 6 + +log() { printf '\n\033[1;34m==>\033[0m %s\n' "$*"; } +info() { printf ' %s\n' "$*"; } +die() { printf '\n\033[1;31mERROR:\033[0m %s\n' "$*" >&2; exit 1; } + +bcli() { + docker compose exec -T bitcoind bitcoin-cli -regtest \ + -rpcuser="$BITCOIN_RPC_USER" -rpcpassword="$BITCOIN_RPC_PASSWORD" "$@" +} + +# 'docker compose exec' lands as root, whose HOME is /root, but lnd's datadir is +# /home/lnd/.lnd -- so lncli must be told where to find the cert and macaroon. +lncli() { + local node=$1; shift + docker compose exec -T "$node" lncli --network=regtest --lnddir=/home/lnd/.lnd "$@" +} + +# Core Lightning cli. Runs inside the cln container against the regtest node. +clncli() { + docker compose exec -T cln lightning-cli --network=regtest "$@" +} + +# Eclair cli. Runs inside the eclair container; auths with the API password. +ecli() { + docker compose exec -T eclair eclair-cli -p "$ECLAIR_API_PASSWORD" "$@" +} + +# Extract the first value for a JSON key from lncli output. +# 'first' matters: walletbalance reports confirmed_balance at the top level AND +# again under account_balance.default, and lncli emits no --json flag we can use. +json_first() { + grep -o "\"$1\": *\"[^\"]*\"" | head -1 | sed -e 's/^[^:]*: *"//' -e 's/"$//' +} + +# Wait for a command to succeed, up to N attempts. +wait_for() { + local desc=$1 attempts=$2; shift 2 + local i=1 + while (( i <= attempts )); do + if "$@" >/dev/null 2>&1; then + info "$desc ready (${i}s)" + return 0 + fi + sleep 1 + (( i++ )) + done + die "timed out after ${attempts}s waiting for: $desc" +} + +# ---------------------------------------------------------------- bitcoind + +log "Waiting for bitcoind" +wait_for "bitcoind RPC" 60 bcli getblockchaininfo + +log "Preparing wallet" +if ! bcli listwallets | grep -q '"rtldev"'; then + bcli createwallet rtldev >/dev/null 2>&1 || bcli loadwallet rtldev >/dev/null +fi +info "wallet rtldev present" + +MINE_ADDR=$(bcli -rpcwallet=rtldev getnewaddress) +info "mining address: $MINE_ADDR" + +HEIGHT=$(bcli getblockcount) +if (( HEIGHT < 101 )); then + log "Mining 101 blocks (coinbase maturity)" + bcli -rpcwallet=rtldev generatetoaddress 101 "$MINE_ADDR" >/dev/null +else + info "chain already at height $HEIGHT, skipping initial mine" +fi + +# ---------------------------------------------------------------- lnd nodes + +log "Waiting for LND nodes" +for n in "${NODES[@]}"; do + wait_for "$n" 120 lncli "$n" getinfo +done + +# This script is deterministic, not idempotent: running it twice would fund every +# node again and open a second set of channels. Refuse rather than corrupt the +# fixture, since the whole point is that a fresh run reproduces identical state. +if lncli alice listchannels | grep -q '"chan_id"'; then + die "network is already seeded -- re-running would double-fund it. + Reset with: docker compose down -v && docker compose up -d && ./scripts/seed.sh" +fi + +log "Funding nodes (${FUND_SATS} sats each)" +BTC_AMOUNT=$(awk "BEGIN{printf \"%.8f\", $FUND_SATS/100000000}") +for n in "${NODES[@]}"; do + addr=$(lncli "$n" newaddress p2wkh | json_first address) + [ -n "$addr" ] || die "could not get address for $n" + bcli -rpcwallet=rtldev sendtoaddress "$addr" "$BTC_AMOUNT" >/dev/null + info "$n <- $BTC_AMOUNT BTC ($addr)" +done + +bcli -rpcwallet=rtldev generatetoaddress "$MINE_CONFIRM" "$MINE_ADDR" >/dev/null +info "mined $MINE_CONFIRM blocks to confirm funding" + +log "Waiting for confirmed on-chain balances" +for n in "${NODES[@]}"; do + for i in $(seq 1 60); do + bal=$(lncli "$n" walletbalance | json_first confirmed_balance) + bal=${bal:-0} + (( bal > 0 )) && { info "$n confirmed balance: $bal sats"; break; } + sleep 1 + (( i == 60 )) && die "$n never saw confirmed funds" + done +done + +# ---------------------------------------------------------------- peers + +pubkey_of() { + lncli "$1" getinfo | json_first identity_pubkey +} + +log "Connecting peers" +ALICE_PUB=$(pubkey_of alice) +BOB_PUB=$(pubkey_of bob) +CAROL_PUB=$(pubkey_of carol) +info "alice pubkey: $ALICE_PUB" +info "bob pubkey: $BOB_PUB" +info "carol pubkey: $CAROL_PUB" + +lncli alice connect "${BOB_PUB}@bob:9735" >/dev/null 2>&1 || info "alice->bob already connected" +lncli bob connect "${CAROL_PUB}@carol:9735" >/dev/null 2>&1 || info "bob->carol already connected" +info "peers connected" + +# ---------------------------------------------------------------- channels + +log "Opening channels" +lncli alice openchannel --node_key="$BOB_PUB" \ + --local_amt="$CH_ALICE_BOB" --push_amt="$PUSH_SATS" >/dev/null +info "alice -> bob ${CH_ALICE_BOB} sats (push ${PUSH_SATS})" + +lncli bob openchannel --node_key="$CAROL_PUB" \ + --local_amt="$CH_BOB_CAROL" --push_amt="$PUSH_SATS" >/dev/null +info "bob -> carol ${CH_BOB_CAROL} sats (push ${PUSH_SATS})" + +bcli -rpcwallet=rtldev generatetoaddress "$MINE_CONFIRM" "$MINE_ADDR" >/dev/null +info "mined $MINE_CONFIRM blocks to confirm channels" + +log "Waiting for channels to become active" +for n in alice bob; do + for i in $(seq 1 60); do + active=$(lncli "$n" listchannels | grep -c '"active": *true' || true) + (( active > 0 )) && { info "$n has $active active channel(s)"; break; } + sleep 1 + (( i == 60 )) && die "$n has no active channels" + done +done + +# ---------------------------------------------------------------- payments + +# alice can only route to carol once the bob->carol channel has been announced and +# reached her graph. Channels are confirmed by now, but gossip is not instant -- +# --trickledelay alone is 5s. Paying before this lands fails with "no route". +log "Waiting for the channel graph to reach alice" +for i in $(seq 1 90); do + edges=$(lncli alice describegraph | grep -c '"channel_id"' || true) + (( ${edges:-0} >= 2 )) && { info "alice sees ${edges} channels in her graph"; break; } + sleep 1 + (( i == 90 )) && die "channel graph never propagated to alice" +done + +# Fixed amounts. alice -> carol routes through bob, generating forwarding history. +log "Sending payments (alice -> carol, routed via bob)" +for amt in 10000 25000 50000 75000 100000; do + inv=$(lncli carol addinvoice --amt="$amt" --memo="seed payment ${amt} sats" \ + | json_first payment_request) + if lncli alice payinvoice --force --pay_req="$inv" >/dev/null 2>&1; then + info "alice -> carol ${amt} sats (routed)" + else + info "alice -> carol ${amt} sats FAILED (route not ready?)" + fi +done + +log "Sending direct payments (alice -> bob)" +for amt in 5000 15000; do + inv=$(lncli bob addinvoice --amt="$amt" --memo="direct payment ${amt} sats" \ + | json_first payment_request) + lncli alice payinvoice --force --pay_req="$inv" >/dev/null 2>&1 \ + && info "alice -> bob ${amt} sats" \ + || info "alice -> bob ${amt} sats FAILED" +done + +# Unsettled invoices, so the invoice list shows more than one state. +log "Creating open (unpaid) invoices on carol" +for amt in 20000 40000; do + lncli carol addinvoice --amt="$amt" --memo="open invoice ${amt} sats" >/dev/null + info "carol open invoice ${amt} sats" +done + +# ---------------------------------------------------------------- core lightning + +# A Core Lightning node with one active channel, so RTL's CLN screens have data. +# An active (peer_connected) channel is what exercises the connection-status column. +log "Waiting for Core Lightning node" +wait_for "cln" 120 clncli getinfo + +log "Funding Core Lightning (${FUND_SATS} sats)" +CLN_ADDR=$(clncli newaddr | json_first bech32) +[ -n "$CLN_ADDR" ] || die "could not get address for cln" +bcli -rpcwallet=rtldev sendtoaddress "$CLN_ADDR" "$BTC_AMOUNT" >/dev/null +info "cln <- $BTC_AMOUNT BTC ($CLN_ADDR)" +bcli -rpcwallet=rtldev generatetoaddress "$MINE_CONFIRM" "$MINE_ADDR" >/dev/null +info "mined $MINE_CONFIRM blocks to confirm cln funding" + +log "Waiting for cln confirmed on-chain balance" +for i in $(seq 1 60); do + clncli listfunds | grep -q '"status": "confirmed"' && { info "cln funds confirmed"; break; } + sleep 1 + (( i == 60 )) && die "cln never saw confirmed funds" +done + +log "Opening channel cln -> alice" +clncli connect "${ALICE_PUB}@alice:9735" >/dev/null 2>&1 || info "cln->alice already connected" +clncli fundchannel "$ALICE_PUB" "$CH_CLN_ALICE" >/dev/null +info "cln -> alice ${CH_CLN_ALICE} sats" +bcli -rpcwallet=rtldev generatetoaddress "$MINE_CONFIRM" "$MINE_ADDR" >/dev/null +info "mined $MINE_CONFIRM blocks to confirm the cln channel" + +log "Waiting for the cln channel to become active" +for i in $(seq 1 90); do + if clncli listpeerchannels | grep -o '"state": "[A-Z_]*"' | grep -q "CHANNELD_NORMAL"; then + info "cln channel is CHANNELD_NORMAL"; break + fi + sleep 1 + (( i == 90 )) && die "cln channel never reached CHANNELD_NORMAL" +done + +# ---------------------------------------------------------------- eclair + +# An Eclair node with one active channel to bob plus a couple of settled and +# open invoices, so RTL's Eclair screens have data. Eclair's on-chain wallet is +# the dedicated "eclair" bitcoind wallet (created by eclair-wallet-init), but +# funding still goes through eclair's own API so its balances update. +log "Waiting for Eclair node" +wait_for "eclair" 180 ecli getinfo + +log "Funding Eclair (${FUND_SATS} sats)" +ECL_ADDR=$(ecli getnewaddress | tr -d '"') +[ -n "$ECL_ADDR" ] || die "could not get address for eclair" +bcli -rpcwallet=rtldev sendtoaddress "$ECL_ADDR" "$BTC_AMOUNT" >/dev/null +info "eclair <- $BTC_AMOUNT BTC ($ECL_ADDR)" +bcli -rpcwallet=rtldev generatetoaddress "$MINE_CONFIRM" "$MINE_ADDR" >/dev/null +info "mined $MINE_CONFIRM blocks to confirm eclair funding" + +log "Waiting for eclair confirmed on-chain balance" +for i in $(seq 1 60); do + ecli onchainbalance | grep -q '"confirmed": *[1-9]' && { info "eclair funds confirmed"; break; } + sleep 1 + (( i == 60 )) && die "eclair never saw confirmed funds" +done + +log "Opening channel eclair -> bob" +ecli connect --uri="${BOB_PUB}@bob:9735" >/dev/null 2>&1 || info "eclair->bob already connected" +ecli open --nodeId="$BOB_PUB" --fundingSatoshis="$CH_ECL_BOB" --pushMsat=$(( PUSH_SATS * 1000 )) >/dev/null +info "eclair -> bob ${CH_ECL_BOB} sats (push ${PUSH_SATS})" + +# 'open' returns before eclair broadcasts the funding tx; mining too early would +# confirm nothing and leave the channel waiting forever. +for i in $(seq 1 30); do + bcli getrawmempool | grep -q '"' && { info "funding tx in mempool"; break; } + sleep 1 + (( i == 30 )) && die "eclair funding tx never reached the mempool" +done +bcli -rpcwallet=rtldev generatetoaddress "$ECL_MINE_CONFIRM" "$MINE_ADDR" >/dev/null +info "mined $ECL_MINE_CONFIRM blocks to confirm the eclair channel" + +log "Waiting for the eclair channel to become active" +for i in $(seq 1 90); do + if ecli channels | grep -q '"state" *: *"NORMAL"'; then + info "eclair channel is NORMAL"; break + fi + sleep 1 + (( i == 90 )) && die "eclair channel never reached NORMAL" +done + +# Direct payments over the eclair->bob channel; no routing, so no gossip wait. +# payinvoice is asynchronous -- confirm settlement on bob's side. +log "Sending direct payments (eclair -> bob)" +for amt in 8000 18000; do + inv_out=$(lncli bob addinvoice --amt="$amt" --memo="eclair payment ${amt} sats") + inv=$(echo "$inv_out" | json_first payment_request) + rhash=$(echo "$inv_out" | json_first r_hash) + ecli payinvoice --invoice="$inv" >/dev/null 2>&1 + paid="" + for i in $(seq 1 30); do + if lncli bob lookupinvoice "$rhash" | grep -q '"state": *"SETTLED"'; then + paid=1; break + fi + sleep 1 + done + [ -n "$paid" ] && info "eclair -> bob ${amt} sats" \ + || info "eclair -> bob ${amt} sats FAILED (never settled)" +done + +# An unpaid invoice, so the eclair invoice list shows more than one state. +log "Creating an open (unpaid) invoice on eclair" +ecli createinvoice --amountMsat=$(( 30000 * 1000 )) --description="open invoice 30000 sats" >/dev/null +info "eclair open invoice 30000 sats" + +# ---------------------------------------------------------------- summary + +log "Seed complete" +for n in "${NODES[@]}"; do + chans=$(lncli "$n" listchannels | grep -c '"active": *true' || true) + bal=$(lncli "$n" walletbalance | json_first confirmed_balance) + printf ' %-6s channels: %-3s on-chain: %s sats\n' "$n" "${chans:-0}" "${bal:-0}" +done +cln_chans=$(clncli listpeerchannels | grep -o '"state": "[A-Z_]*"' | grep -c "CHANNELD_NORMAL" || true) +printf ' %-6s channels: %-3s (Core Lightning)\n' "cln" "${cln_chans:-0}" +ecl_chans=$(ecli channels | grep -o '"state" *: *"NORMAL"' | grep -c NORMAL || true) +printf ' %-6s channels: %-3s (Eclair)\n' "eclair" "${ecl_chans:-0}" +# '|| echo 0' would be wrong here: grep -c already prints 0 when it finds nothing +# and then exits 1, so the echo would append a second line. +fwds=$(lncli bob fwdinghistory | grep -c '"chan_id_in"' || true) +printf ' bob forwarded %s payment(s)\n' "${fwds:-0}" +printf '\n RTL: http://localhost:%s (password: %s)\n\n' "${RTL_PORT:-3000}" "${RTL_PASSWORD:-password}" diff --git a/docker/scripts/verify-sso.sh b/docker/scripts/verify-sso.sh new file mode 100755 index 00000000..c9fe0e1f --- /dev/null +++ b/docker/scripts/verify-sso.sh @@ -0,0 +1,110 @@ +#!/usr/bin/env bash +# +# Check the BTCPay SSO harness end to end. +# +# Walks the exact path a browser takes when an operator clicks the RTL link on +# BTCPay Server's Services page, and asserts each step. Run it after any change +# to authentication, CSRF or static serving -- this is the entry path BTCPay +# uses, and none of it is covered by logging into the standalone fixture RTL. +# +# docker compose --profile sso up -d +# ./scripts/verify-sso.sh +# +# Usage: ./scripts/verify-sso.sh (from the docker/ directory) +# +# Exits non-zero if any check fails, so it can gate a PR. + +# Deliberately no -e: a failing assertion must record itself and let the rest of +# the checks run, rather than aborting on the first one. That means anything +# that would normally rely on -e needs its own guard. +set -uo pipefail + +cd "$(dirname "$0")/.." || exit 1 + +if [ -f .env ]; then + set -a + # shellcheck disable=SC1091 + source .env + set +a +fi + +BASE="http://localhost:${RTL_SSO_PORT:-3001}" +JAR="$(mktemp)" +JAR2="$(mktemp)" +trap 'rm -f "$JAR" "$JAR2"' EXIT + +pass=0 +fail=0 +# Both return 0 explicitly: the checks below are written as `test && ok || bad`, +# which would also run `bad` if `ok` itself ever returned non-zero. +ok() { echo " PASS: $1"; pass=$((pass + 1)); return 0; } +bad() { echo " FAIL: $1"; fail=$((fail + 1)); return 0; } + +if ! docker compose --profile sso ps --status running --services 2>/dev/null | grep -qx rtl-sso; then + echo "rtl-sso is not running. Start it with: docker compose --profile sso up -d" >&2 + exit 1 +fi + +cookie="$(docker compose --profile sso exec -T rtl-sso cat /RTL/cookie/.cookie | tr -d '\r\n')" +echo "cookie: ${cookie:0:16}... (${#cookie} chars)" + +echo +echo "1. the proxy routes only /rtl, mirroring BTCPay's traefik rule" +code=$(curl -s -o /dev/null -w '%{http_code}' "$BASE/") +[ "$code" = "404" ] && ok "GET / -> 404" || bad "GET / -> $code (want 404)" +code=$(curl -s -o /dev/null -w '%{http_code}' "$BASE/api/authenticate") +[ "$code" = "404" ] && ok "GET /api/authenticate -> 404" || bad "GET /api/authenticate -> $code (want 404)" +code=$(curl -s -o /dev/null -w '%{http_code}' "$BASE/rtl/") +[ "$code" = "200" ] && ok "GET /rtl/ -> 200" || bad "GET /rtl/ -> $code (want 200)" + +echo +echo "2. the entry URL falls through to the catch-all, which mints the CSRF token" +body=$(curl -s -c "$JAR" "$BASE/rtl/api/authenticate/cookie?access-key=$cookie") +echo "$body" | grep -q '' \ + && ok "entry URL serves the SPA shell with base href /rtl/" \ + || bad "entry URL did not serve index.html" +xsrf=$(awk '/XSRF-TOKEN/ {print $7}' "$JAR") +[ -n "$xsrf" ] && ok "XSRF-TOKEN cookie minted" || bad "no XSRF-TOKEN cookie" +grep -q '_csrf' "$JAR" && ok "_csrf cookie set" || bad "no _csrf cookie" + +echo +echo "3. the SPA posts sha256(access-key) as a password login" +hash=$(printf '%s' "$cookie" | shasum -a 256 | cut -d' ' -f1) +resp=$(curl -s -b "$JAR" -c "$JAR" -X POST "$BASE/rtl/api/authenticate" \ + -H 'Content-Type: application/json' -H "X-XSRF-TOKEN: $xsrf" \ + -d "{\"authenticateWith\":\"PASSWORD\",\"authenticationValue\":\"$hash\"}") +token=$(echo "$resp" | python3 -c 'import sys,json;print(json.load(sys.stdin).get("token",""))' 2>/dev/null) +[ -n "$token" ] && ok "authenticated, JWT issued" || bad "auth failed: $resp" + +echo +echo "4. the JWT reaches the node behind it" +info=$(curl -s -b "$JAR" "$BASE/rtl/api/lnd/getinfo" -H "Authorization: Bearer $token") +node_alias=$(echo "$info" | python3 -c 'import sys,json;print(json.load(sys.stdin).get("alias",""))' 2>/dev/null) +[ "$node_alias" = "alice" ] && ok "GET /rtl/api/lnd/getinfo -> alias '$node_alias'" || bad "getinfo returned: ${info:0:200}" + +echo +echo "5. the cookie rotates on login, so each BTCPay page render hands out a fresh one" +after=$(docker compose --profile sso exec -T rtl-sso cat /RTL/cookie/.cookie | tr -d '\r\n') +[ "$after" != "$cookie" ] && ok "cookie rotated after authentication" || bad "cookie did NOT rotate" + +echo +echo "6. a wrong access-key is refused" +# The token has to come from the catch-all: GET /rtl/ is served by express.static, +# which mints no XSRF-TOKEN, and the POST would then fail CSRF (403) before it +# ever reached the access-key comparison this step is checking. +curl -s -c "$JAR2" "$BASE/rtl/api/authenticate/cookie?access-key=x" > /dev/null +x2=$(awk '/XSRF-TOKEN/ {print $7}' "$JAR2") +badhash=$(printf '%s' "not-the-cookie-value-but-long-enough-to-pass-the-length-check" | shasum -a 256 | cut -d' ' -f1) +code=$(curl -s -o /dev/null -w '%{http_code}' -b "$JAR2" -X POST "$BASE/rtl/api/authenticate" \ + -H 'Content-Type: application/json' -H "X-XSRF-TOKEN: $x2" \ + -d "{\"authenticateWith\":\"PASSWORD\",\"authenticationValue\":\"$badhash\"}") +[ "$code" = "406" ] && ok "wrong access-key -> 406" || bad "wrong access-key -> $code (want 406)" + +echo +echo "7. the standalone fixture RTL is unaffected" +code=$(curl -s -o /dev/null -w '%{http_code}' "http://localhost:${RTL_PORT:-3000}/rtl/") +[ "$code" = "200" ] && ok "standalone RTL still serving on ${RTL_PORT:-3000}" || bad "standalone RTL -> $code" + +echo +echo "=== $pass passed, $fail failed ===" +[ "$fail" -eq 0 ] diff --git a/frontend/17.d00d31d08d7bad32.js b/frontend/17.d00d31d08d7bad32.js deleted file mode 100644 index 525d4b80..00000000 --- a/frontend/17.d00d31d08d7bad32.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[17],{9017:(vp,Et,_)=>{_.r(Et),_.d(Et,{ECLModule:()=>Sp});var p=_(177),b=_(1188),Ut=_(9881),t=_(4438),h=_(2920),V=_(7575);function zt(n,o){1&n&&t.nrm(0,"mat-progress-bar",3)}let xt=(()=>{class n{constructor(e){this.router=e,this.loading=!1,this.router.events.subscribe(i=>{switch(!0){case i instanceof b.Z:this.loading=!0;break;case i instanceof b.wF:case i instanceof b.j5:case i instanceof b.L6:this.loading=!1}})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-root"]],decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(i,a){1&i&&(t.j41(0,"div",1),t.DNE(1,zt,1,0,"mat-progress-bar",2),t.nrm(2,"router-outlet",null,0),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf",a.loading))},dependencies:[p.bT,h.DJ,h.sA,h.UI,V.HM,b.n3],data:{animation:[Ut.E]}})}return n})();var u=_(1413),f=_(6977),rt=_(3993),Lt=_(614),F=_(5383),l=_(4416),U=_(9647),C=_(2730),G=_(8570),R=_(9640),M=_(2571),w=_(60),L=_(6038),j=_(8834),E=_(5596),St=_(6195),ct=_(9213),mt=_(9115),D=_(6850);const vt=n=>({backgroundColor:n});function Jt(n,o){if(1&n&&t.nrm(0,"span",6),2&n){const e=t.XpG();t.Y8G("ngStyle",t.eq3(1,vt,null==e.information?null:e.information.color))}}function qt(n,o){if(1&n&&(t.j41(0,"div")(1,"h4",1),t.EFF(2,"Color"),t.k0s(),t.j41(3,"div",2),t.nrm(4,"span",7),t.EFF(5),t.nI1(6,"uppercase"),t.k0s()()),2&n){const e=t.XpG();t.R7$(4),t.Y8G("ngStyle",t.eq3(4,vt,null==e.information?null:e.information.color)),t.R7$(),t.SpI(" ",t.bMT(6,2,null==e.information?null:e.information.color)," ")}}function Qt(n,o){if(1&n&&(t.j41(0,"span",2),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}let Zt=(()=>{class n{constructor(e){this.commonService=e,this.chains=[""]}ngOnChanges(){this.chains=[],this.chains.push("Bitcoin "+(this.information.network?this.commonService.titleCase(this.information.network):"Testnet"))}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(M.h))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},features:[t.OA$],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"]],template:function(i,a){1&i&&(t.j41(0,"div",0)(1,"div")(2,"h4",1),t.EFF(3,"Alias"),t.k0s(),t.j41(4,"div",2),t.EFF(5),t.DNE(6,Jt,1,3,"span",3),t.k0s()(),t.DNE(7,qt,7,6,"div",4),t.j41(8,"div")(9,"h4",1),t.EFF(10,"Implementation"),t.k0s(),t.j41(11,"div",2),t.EFF(12),t.k0s()(),t.j41(13,"div")(14,"h4",1),t.EFF(15,"Chain"),t.k0s(),t.DNE(16,Qt,2,1,"span",5),t.k0s()()),2&i&&(t.R7$(5),t.SpI(" ",null==a.information?null:a.information.alias," "),t.R7$(),t.Y8G("ngIf",!a.showColorFieldSeparately),t.R7$(),t.Y8G("ngIf",a.showColorFieldSeparately),t.R7$(5),t.JRh(null!=a.information&&a.information.lnImplementation||null!=a.information&&a.information.version?(null==a.information?null:a.information.lnImplementation)+" "+(null==a.information?null:a.information.version):""),t.R7$(4),t.Y8G("ngForOf",a.chains))},dependencies:[p.Sq,p.bT,p.B3,h.DJ,h.sA,h.UI,L.eI,p.Pc]})}return n})();function Wt(n,o){if(1&n&&(t.j41(0,"div",2)(1,"div")(2,"h4",3),t.EFF(3,"Lightning"),t.k0s(),t.j41(4,"div",4),t.EFF(5),t.nI1(6,"number"),t.k0s(),t.nrm(7,"mat-progress-bar",5),t.k0s(),t.j41(8,"div")(9,"h4",3),t.EFF(10,"On-chain"),t.k0s(),t.j41(11,"div",4),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.nrm(14,"mat-progress-bar",5),t.k0s(),t.j41(15,"div")(16,"h4",3),t.EFF(17,"Total"),t.k0s(),t.j41(18,"div",4),t.EFF(19),t.nI1(20,"number"),t.k0s()()()),2&n){const e=t.XpG();t.R7$(5),t.SpI("",t.bMT(6,5,e.balances.lightning)," Sats"),t.R7$(2),t.FS9("value",e.balances.lightning/e.balances.total*100),t.R7$(5),t.SpI("",t.bMT(13,7,e.balances.onchain)," Sats"),t.R7$(2),t.FS9("value",e.balances.onchain/e.balances.total*100),t.R7$(5),t.SpI("",t.bMT(20,9,e.balances.total)," Sats")}}function Kt(n,o){if(1&n&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let te=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(i,a){if(1&i&&t.DNE(0,Wt,21,11,"div",1)(1,Kt,3,1,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.bT,h.DJ,h.sA,h.UI,V.HM,p.QX]})}return n})();function ee(n,o){if(1&n&&(t.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t.EFF(4,"Daily"),t.k0s(),t.j41(5,"div",5),t.EFF(6),t.nI1(7,"number"),t.k0s()(),t.j41(8,"div")(9,"h4",4),t.EFF(10,"Weekly"),t.k0s(),t.j41(11,"div",5),t.EFF(12),t.nI1(13,"number"),t.k0s()(),t.j41(14,"div")(15,"h4",4),t.EFF(16,"Monthly"),t.k0s(),t.j41(17,"div",5),t.EFF(18),t.nI1(19,"number"),t.k0s()()(),t.j41(20,"div",3)(21,"div")(22,"h4",4),t.EFF(23,"Transactions"),t.k0s(),t.j41(24,"div",5),t.EFF(25),t.nI1(26,"number"),t.k0s()(),t.j41(27,"div")(28,"h4",4),t.EFF(29,"Transactions"),t.k0s(),t.j41(30,"div",5),t.EFF(31),t.nI1(32,"number"),t.k0s()(),t.j41(33,"div")(34,"h4",4),t.EFF(35,"Transactions"),t.k0s(),t.j41(36,"div",5),t.EFF(37),t.nI1(38,"number"),t.k0s()()()()),2&n){const e=t.XpG();t.R7$(6),t.SpI("",t.bMT(7,6,null==e.fees?null:e.fees.daily_fee)," Sats"),t.R7$(6),t.SpI("",t.bMT(13,8,null==e.fees?null:e.fees.weekly_fee)," Sats"),t.R7$(6),t.SpI("",t.bMT(19,10,null==e.fees?null:e.fees.monthly_fee)," Sats"),t.R7$(7),t.JRh(t.bMT(26,12,null==e.fees?null:e.fees.daily_txs)),t.R7$(6),t.JRh(t.bMT(32,14,null==e.fees?null:e.fees.weekly_txs)),t.R7$(6),t.JRh(t.bMT(38,16,null==e.fees?null:e.fees.monthly_txs))}}function ne(n,o){if(1&n&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let ie=(()=>{class n{constructor(){this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100}ngOnChanges(){if(this.fees?.monthly_fee){this.totalFees=[{name:"Monthly",value:this.fees.monthly_fee},{name:"Weekly",value:this.fees.weekly_fee||0},{name:"Daily ",value:this.fees.daily_fee||0}];const i=10**(Math.ceil(Math.log(this.fees.monthly_fee+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.monthly_fee/i)*i/5||100,Object.assign(this,this.totalFees)}else this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100,Object.assign(this,this.totalFees)}static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},features:[t.OA$],decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(i,a){if(1&i&&t.DNE(0,ee,39,18,"div",1)(1,ne,3,1,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.bT,h.DJ,h.sA,h.UI,p.QX]})}return n})();function ae(n,o){if(1&n&&(t.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t.EFF(4,"Active"),t.k0s(),t.j41(5,"div",5),t.nrm(6,"span",6),t.EFF(7),t.nI1(8,"number"),t.k0s()(),t.j41(9,"div")(10,"h4",4),t.EFF(11,"Pending"),t.k0s(),t.j41(12,"div",5),t.nrm(13,"span",7),t.EFF(14),t.nI1(15,"number"),t.k0s()(),t.j41(16,"div")(17,"h4",4),t.EFF(18,"Inactive"),t.k0s(),t.j41(19,"div",5),t.nrm(20,"span",8),t.EFF(21),t.nI1(22,"number"),t.k0s()()(),t.j41(23,"div",3)(24,"div")(25,"h4",4),t.EFF(26,"Capacity"),t.k0s(),t.j41(27,"div",5),t.EFF(28),t.nI1(29,"number"),t.k0s()(),t.j41(30,"div")(31,"h4",4),t.EFF(32,"Capacity"),t.k0s(),t.j41(33,"div",5),t.EFF(34),t.nI1(35,"number"),t.k0s()(),t.j41(36,"div")(37,"h4",4),t.EFF(38,"Capacity"),t.k0s(),t.j41(39,"div",5),t.EFF(40),t.nI1(41,"number"),t.k0s()()()()),2&n){const e=t.XpG();t.R7$(7),t.JRh(t.bMT(8,6,(null==e.channelsStatus.active?null:e.channelsStatus.active.channels)||0)),t.R7$(7),t.JRh(t.bMT(15,8,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.channels)||0)),t.R7$(7),t.JRh(t.bMT(22,10,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.channels)||0)),t.R7$(7),t.SpI("",t.bMT(29,12,(null==e.channelsStatus.active?null:e.channelsStatus.active.capacity)||0)," Sats"),t.R7$(6),t.SpI("",t.bMT(35,14,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.capacity)||0)," Sats"),t.R7$(6),t.SpI("",t.bMT(41,16,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.capacity)||0)," Sats")}}function oe(n,o){if(1&n&&(t.j41(0,"div",9)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let se=(()=>{class n{constructor(){this.channelsStatus={}}static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(i,a){if(1&i&&t.DNE(0,ae,42,18,"div",1)(1,oe,3,1,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.bT,h.DJ,h.sA,h.UI,p.QX]})}return n})();var g=_(6467),Z=_(1997),J=_(4823),A=_(497);const le=()=>["../connections/channels/open"],re=(n,o)=>({filterColumn:n,filterValue:o});function ce(n,o){if(1&n&&(t.j41(0,"div",19)(1,"a",20),t.EFF(2),t.nI1(3,"slice"),t.k0s(),t.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),t.EFF(7,"Local:"),t.k0s(),t.EFF(8),t.nI1(9,"number"),t.k0s(),t.j41(10,"mat-hint",22),t.nrm(11,"fa-icon",23),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.j41(14,"mat-hint",24)(15,"strong",8),t.EFF(16,"Remote:"),t.k0s(),t.EFF(17),t.nI1(18,"number"),t.k0s()(),t.nrm(19,"mat-progress-bar",25),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(3);t.R7$(),t.FS9("matTooltip",e.alias||e.shortChannelId),t.FS9("matTooltipDisabled",(e.alias||e.shortChannelId).length<26),t.Y8G("routerLink",t.lJ4(23,le))("state",t.l_i(24,re,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(3,11,(null==e?null:e.alias)||(null==e?null:e.shortChannelId),0,24),"",((null==e?null:e.alias)||(null==e?null:e.shortChannelId)).length>25?"...":""," "),t.R7$(6),t.SpI("",t.i5U(9,15,(null==e?null:e.toLocal)||0,"1.0-0")," Sats"),t.R7$(3),t.Y8G("icon",i.faBalanceScale),t.R7$(),t.SpI(" (",t.bMT(13,18,(null==e?null:e.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,20,(null==e?null:e.toRemote)||0,"1.0-0")," Sats"),t.R7$(2),t.FS9("value",e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0)}}function me(n,o){if(1&n&&(t.j41(0,"div",17),t.DNE(1,ce,20,27,"div",18),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function pe(n,o){if(1&n&&(t.j41(0,"div",3)(1,"div",4)(2,"span",5),t.EFF(3,"Total Capacity"),t.k0s(),t.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),t.EFF(7,"Local:"),t.k0s(),t.EFF(8),t.nI1(9,"number"),t.k0s(),t.j41(10,"mat-hint",9),t.nrm(11,"fa-icon",10),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.j41(14,"mat-hint",11)(15,"strong",8),t.EFF(16,"Remote:"),t.k0s(),t.EFF(17),t.nI1(18,"number"),t.k0s()(),t.nrm(19,"mat-progress-bar",12),t.k0s(),t.j41(20,"div",13),t.nrm(21,"mat-divider",14),t.k0s(),t.j41(22,"div",15),t.DNE(23,me,2,1,"div",16),t.k0s()()),2&n){const e=t.XpG(),i=t.sdS(2);t.R7$(8),t.SpI("",t.i5U(9,7,(null==e.channelBalances?null:e.channelBalances.localBalance)||0,"1.0-0")," Sats"),t.R7$(3),t.Y8G("icon",e.faBalanceScale),t.R7$(),t.SpI(" (",t.bMT(13,10,(null==e.channelBalances?null:e.channelBalances.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,12,(null==e.channelBalances?null:e.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),t.R7$(2),t.FS9("value",null!=e.channelBalances&&e.channelBalances.localBalance&&(null==e.channelBalances?null:e.channelBalances.localBalance)>0?+(null==e.channelBalances?null:e.channelBalances.localBalance)/(+(null==e.channelBalances?null:e.channelBalances.localBalance)+ +(null==e.channelBalances?null:e.channelBalances.remoteBalance))*100:0),t.R7$(4),t.Y8G("ngIf",e.allChannels&&(null==e.allChannels?null:e.allChannels.length)>0)("ngIfElse",i)}}function ue(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",26),t.EFF(1," No channels available. "),t.j41(2,"button",27),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.goToChannels())}),t.EFF(3,"Open Channel"),t.k0s()()}}function de(n,o){if(1&n&&(t.j41(0,"div",28)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let he=(()=>{class n{constructor(e){this.router=e,this.faBalanceScale=F.GR4,this.faDumbbell=F.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(i,a){if(1&i&&t.DNE(0,pe,24,15,"div",2)(1,ue,4,0,"ng-template",null,0,t.C5r)(3,de,3,1,"ng-template",null,1,t.C5r),2&i){const s=t.sdS(4);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.Sq,p.bT,w.aY,h.DJ,h.sA,h.UI,j.$z,g.MV,Z.q,V.HM,J.oV,A.Ld,b.Wk,p.P9,p.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}return n})();const fe=(n,o,e)=>({"mb-4":n,"mb-2":o,"mb-1":e}),_e=()=>["../connections/channels/open"],ge=(n,o)=>({filterColumn:n,filterValue:o});function Ce(n,o){if(1&n&&(t.j41(0,"mat-hint",19)(1,"strong",20),t.EFF(2,"Capacity: "),t.k0s(),t.EFF(3),t.nI1(4,"number"),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toRemote||0,"1.0-0")," Sats")}}function ye(n,o){if(1&n&&(t.j41(0,"mat-hint",19)(1,"strong",20),t.EFF(2,"Capacity: "),t.k0s(),t.EFF(3),t.nI1(4,"number"),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toLocal||0,"1.0-0")," Sats")}}function be(n,o){if(1&n&&t.nrm(0,"mat-progress-bar",21),2&n){const e=t.XpG().$implicit,i=t.XpG(3);t.FS9("value",i.totalLiquidity>0?(+e.toRemote||0)/i.totalLiquidity*100:0)}}function Fe(n,o){if(1&n&&t.nrm(0,"mat-progress-bar",21),2&n){const e=t.XpG().$implicit,i=t.XpG(3);t.FS9("value",i.totalLiquidity>0?(+e.toLocal||0)/i.totalLiquidity*100:0)}}function Ee(n,o){if(1&n&&(t.j41(0,"div",14)(1,"a",15),t.EFF(2),t.nI1(3,"slice"),t.k0s(),t.j41(4,"div",16),t.DNE(5,Ce,5,4,"mat-hint",17)(6,ye,5,4,"mat-hint",17),t.k0s(),t.DNE(7,be,1,1,"mat-progress-bar",18)(8,Fe,1,1,"mat-progress-bar",18),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(3);t.R7$(),t.FS9("matTooltip",e.alias||e.shortChannelId),t.FS9("matTooltipDisabled",(e.alias||e.shortChannelId).length<26),t.Y8G("routerLink",t.lJ4(14,_e))("state",t.l_i(15,ge,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(3,10,e.alias||e.shortChannelId,0,24),"",(e.alias||e.shortChannelId).length>25?"...":""," "),t.R7$(3),t.Y8G("ngIf","In"===i.direction),t.R7$(),t.Y8G("ngIf","Out"===i.direction),t.R7$(),t.Y8G("ngIf","In"===i.direction),t.R7$(),t.Y8G("ngIf","Out"===i.direction)}}function xe(n,o){if(1&n&&(t.j41(0,"div",12),t.DNE(1,Ee,9,18,"div",13),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function Le(n,o){if(1&n&&(t.j41(0,"div",3)(1,"div",4)(2,"span",5),t.EFF(3,"Total Capacity"),t.k0s(),t.j41(4,"mat-hint",6),t.EFF(5),t.nI1(6,"number"),t.k0s(),t.nrm(7,"mat-progress-bar",7),t.k0s(),t.j41(8,"div",8),t.nrm(9,"mat-divider",9),t.k0s(),t.j41(10,"div",10),t.DNE(11,xe,2,1,"div",11),t.k0s()()),2&n){const e=t.XpG(),i=t.sdS(2);t.Y8G("ngClass",t.sMw(7,fe,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD,e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),t.R7$(5),t.SpI("",t.i5U(6,4,e.totalLiquidity,"1.0-0")," Sats"),t.R7$(6),t.Y8G("ngIf",e.allChannels&&e.allChannels.length>0)("ngIfElse",i)}}function Se(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",24),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.goToChannels())}),t.EFF(1,"Open Channel"),t.k0s()}}function ve(n,o){if(1&n&&(t.j41(0,"div",22),t.EFF(1," No channels available. "),t.DNE(2,Se,2,0,"button",23),t.k0s()),2&n){const e=t.XpG();t.R7$(2),t.Y8G("ngIf","Out"===e.direction)}}function Re(n,o){if(1&n&&(t.j41(0,"div",25)(1,"p"),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let Ie=(()=>{class n{constructor(e,i){this.router=e,this.commonService=i,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix),t.rXU(M.h))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],["fxLayout","column","fxFlex.gt-sm","88","fxFlex","84","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","class","w-100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100",1,"w-100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","100","fxLayoutAlign","start center","class","font-size-90 color-primary",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(i,a){if(1&i&&t.DNE(0,Le,12,11,"div",2)(1,ve,3,1,"ng-template",null,0,t.C5r)(3,Re,3,1,"ng-template",null,1,t.C5r),2&i){const s=t.sdS(4);t.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",s)}},dependencies:[p.YU,p.Sq,p.bT,h.DJ,h.sA,h.UI,L.PW,j.$z,g.MV,Z.q,V.HM,J.oV,A.Ld,b.Wk,p.P9,p.QX]})}return n})();var q=_(6697),I=_(6695),x=_(2042),c=_(9159),S=_(2798),H=_(5964),k=_(5428),B=_(5351),pt=_(3017),Q=_(4054),et=_(1534),d=_(9417),O=_(9631),W=_(9587);const ke=["paymentReq"];function Te(n,o){if(1&n&&(t.j41(0,"span",23),t.nrm(1,"fa-icon",24),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function we(n,o){if(1&n&&t.nrm(0,"span",25),2&n){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function je(n,o){if(1&n&&(t.j41(0,"mat-hint",20),t.EFF(1),t.DNE(2,Te,2,1,"span",21)(3,we,1,1,"span",22),t.EFF(4),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI(" ",e.paymentDecodedHintPre," "),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.SpI(" ",e.paymentDecodedHintPost," ")}}function De(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function Pe(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.paymentDecodedHint)}}function Ge(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Payment amount is required."),t.k0s())}function Ae(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-form-field",4)(1,"mat-label"),t.EFF(2,"Amount (Sats)"),t.k0s(),t.j41(3,"input",26,2),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.paymentAmount,a)||(s.paymentAmount=a),t.Njj(a)}),t.bIt("change",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onAmountChange(a))}),t.k0s(),t.j41(5,"mat-hint"),t.EFF(6,"It is a zero amount invoice, enter amount to be paid."),t.k0s(),t.DNE(7,Ge,2,0,"mat-error",14),t.k0s()}if(2&n){const e=t.XpG();t.R7$(3),t.R50("ngModel",e.paymentAmount),t.R7$(4),t.Y8G("ngIf",!e.paymentAmount)}}function Ne(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.paymentError)}}function Me(n,o){if(1&n&&(t.j41(0,"div",27),t.nrm(1,"fa-icon",28),t.DNE(2,Ne,2,1,"span",14),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.paymentError)}}let Be=(()=>{class n{constructor(e,i,a,s,r,m,T,y){this.dialogRef=e,this.store=i,this.eclEffects=a,this.logger=s,this.commonService=r,this.decimalPipe=m,this.actions=T,this.dataService=y,this.faExclamationTriangle=F.zpE,this.convertedCurrency=null,this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=l.nv[0],this.feeLimitTypes=l.nv,this.paymentError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.activeChannels=e.activeChannels,this.logger.info(e)}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(e=>e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL||e.type===l.Uu.SEND_PAYMENT_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.SEND_PAYMENT_STATUS_ECL&&this.dialogRef.close(),e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&"SendPayment"===e.payload.action&&(delete this.paymentDecoded.amount,this.paymentError=e.payload.message)})}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():(this.paymentAmount=null,this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors(null),this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,q.s)(1)).subscribe({next:e=>{this.paymentDecoded=e,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[2])).subscribe({next:i=>{this.convertedCurrency=i,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:i=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))},error:e=>{this.logger.error(e),this.paymentDecodedHintPre="ERROR: "+(e.message?e.message:"string"==typeof e?e:JSON.stringify(e)),this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}sendPayment(){this.store.dispatch((0,k.Fd)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{invoice:this.paymentRequest,amountMsat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{invoice:this.paymentRequest,fromDialog:!0}}))}onPaymentRequestEntry(e){this.paymentRequest=e&&"string"==typeof e?e.trim():e,this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentRequest&&this.paymentRequest.length>100&&(this.paymentReq.control.setErrors(null),this.zeroAmtInvoice=!1,this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,q.s)(1)).subscribe({next:i=>{this.paymentDecoded=i,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[3])).subscribe({next:a=>{this.convertedCurrency=a,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))},error:i=>{this.logger.error(i),this.paymentDecodedHintPre="ERROR: "+(i.message?i.message:"string"==typeof i?i:JSON.stringify(i)),this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}onAmountChange(e){delete this.paymentDecoded.amount,this.paymentDecoded.amount=e}resetData(){this.paymentDecoded={},this.paymentRequest="",this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=l.nv[0],this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(R.il),t.rXU(pt.B),t.rXU(G.gP),t.rXU(M.h),t.rXU(p.QX),t.rXU(Q.En),t.rXU(et.u))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lightning-send-payments"]],viewQuery:function(i,a){if(1&i&&t.GBs(ke,5),2&i){let s;t.mGM(s=t.lsd())&&(a.paymentReq=s.first)}},decls:26,vars:7,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["paymentAmt","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayoutAlign","space-between stretch","fxLayout","column"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","2","required","",3,"ngModelChange","change","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),t.EFF(5,"Send Payment"),t.k0s()(),t.j41(6,"button",8),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",9)(9,"form",10,0)(11,"mat-form-field",11)(12,"mat-label"),t.EFF(13,"Payment Request"),t.k0s(),t.j41(14,"textarea",12,1),t.bIt("ngModelChange",function(m){return t.eBV(s),t.Njj(a.onPaymentRequestEntry(m))})("matTextareaAutosize",function(){return t.eBV(s),t.Njj(!0)}),t.k0s(),t.DNE(16,je,5,4,"mat-hint",13)(17,De,2,0,"mat-error",14)(18,Pe,2,1,"mat-error",14),t.k0s(),t.DNE(19,Ae,8,2,"mat-form-field",15)(20,Me,3,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(23,"Clear Fields"),t.k0s(),t.j41(24,"button",19),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onSendPayment())}),t.EFF(25,"Send Payment"),t.k0s()()()()()()}if(2&i){const s=t.sdS(15);t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.Y8G("ngModel",a.paymentRequest),t.R7$(2),t.Y8G("ngIf",a.paymentRequest&&""!==a.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",!a.paymentRequest),t.R7$(),t.Y8G("ngIf",null==s.errors?null:s.errors.decodeError),t.R7$(),t.Y8G("ngIf",a.zeroAmtInvoice),t.R7$(),t.Y8G("ngIf",""!==a.paymentError)}},dependencies:[p.bT,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,B.tx,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.MV,g.TL,W.N]})}return n})();var Y=_(9454);const $e=["scrollContainer"];function Ve(n,o){if(1&n&&(t.j41(0,"div",9)(1,"div",2)(2,"h4",11),t.EFF(3,"Description"),t.k0s(),t.j41(4,"span",12),t.EFF(5),t.k0s()()()),2&n){const e=t.XpG();t.R7$(5),t.JRh(e.description)}}function Oe(n,o){1&n&&t.nrm(0,"mat-divider",14)}function He(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-expansion-panel",23),t.bIt("opened",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onExpansionOpen(!0))})("closed",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onExpansionOpen(!1))}),t.j41(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"h4",24),t.EFF(4),t.k0s(),t.j41(5,"h4",25),t.EFF(6),t.nI1(7,"number"),t.k0s()()(),t.j41(8,"div",8)(9,"div",9)(10,"div",26)(11,"h4",11),t.EFF(12,"Fees (mSats)"),t.k0s(),t.j41(13,"span",12),t.EFF(14),t.nI1(15,"number"),t.k0s()(),t.j41(16,"div",26)(17,"h4",11),t.EFF(18,"Date/Time"),t.k0s(),t.j41(19,"span",12),t.EFF(20),t.nI1(21,"date"),t.k0s()()(),t.nrm(22,"mat-divider",14),t.j41(23,"div",9)(24,"div",2)(25,"h4",11),t.EFF(26,"ID"),t.k0s(),t.j41(27,"span",27),t.EFF(28),t.k0s()()(),t.nrm(29,"mat-divider",14),t.j41(30,"div",9)(31,"div",2)(32,"h4",11),t.EFF(33,"To Channel"),t.k0s(),t.j41(34,"span",27),t.EFF(35),t.k0s()()()()()}if(2&n){const e=o.$implicit,i=o.index,a=t.XpG();t.Y8G("expanded",a.expansionOpen),t.R7$(4),t.SpI("Part ",i+1,""),t.R7$(2),t.SpI("",t.bMT(7,7,e.amount)," (Sats)"),t.R7$(8),t.JRh(t.bMT(15,9,e.feesPaid)),t.R7$(6),t.JRh(t.i5U(21,11,e.timestamp,"dd/MMM/y HH:mm")),t.R7$(8),t.JRh(e.id),t.R7$(7),t.JRh(e.toChannelAlias)}}let Ye=(()=>{class n{constructor(e,i){this.dialogRef=e,this.data=i,this.description=null,this.shouldScroll=!0,this.expansionOpen=!0}ngOnInit(){this.payment=this.data.payment,this.data.sentPaymentInfo.length>0&&this.data.sentPaymentInfo[0].paymentRequest&&this.data.sentPaymentInfo[0].paymentRequest.description&&""!==this.data.sentPaymentInfo[0].paymentRequest.description&&(this.description=this.data.sentPaymentInfo[0].paymentRequest.description)}ngAfterViewChecked(){this.shouldScroll=this.scrollContainer.nativeElement.classList.value.includes("ps--active-y")}onScrollDown(){this.scrollContainer.nativeElement.scrollTop=this.scrollContainer.nativeElement.scrollTop+62.6}onExpansionOpen(e){this.expansionOpen=e}onClose(){this.dialogRef.close(!1)}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-payment-information"]],viewQuery:function(i,a){if(1&i&&t.GBs($e,5),2&i){let s;t.mGM(s=t.lsd())&&(a.scrollContainer=s.first)}},decls:66,vars:15,consts:[["scrollContainer",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"h-40","padding-gap-x-large",3,"perfectScrollbar"],["fxLayout","column"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],["fxFlex","70"],[1,"w-100","my-1"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],["class","flat-expansion-panel my-1",3,"expanded","opened","closed",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll Down","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center"],["fxLayout","row","fxLayoutAlign","end center",1,"padding-gap-x-large","padding-gap-bottom-large"],["fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",1,"mr-1",3,"mat-dialog-close"],[1,"flat-expansion-panel","my-1",3,"opened","closed","expanded"],["fxFlex","30","fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","70","fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Payment Information"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7,0)(10,"div",8)(11,"div",9)(12,"div",10)(13,"h4",11),t.EFF(14,"Amount (Sats)"),t.k0s(),t.j41(15,"span",12),t.EFF(16),t.nI1(17,"number"),t.k0s()(),t.j41(18,"div",13)(19,"h4",11),t.EFF(20,"Date/Time"),t.k0s(),t.j41(21,"span",12),t.EFF(22),t.nI1(23,"date"),t.k0s()()(),t.nrm(24,"mat-divider",14),t.j41(25,"div",9)(26,"div",2)(27,"h4",11),t.EFF(28,"ID"),t.k0s(),t.j41(29,"span",12),t.EFF(30),t.k0s()()(),t.nrm(31,"mat-divider",14),t.j41(32,"div",9)(33,"div",2)(34,"h4",11),t.EFF(35,"Payment Hash"),t.k0s(),t.j41(36,"span",12),t.EFF(37),t.k0s()()(),t.nrm(38,"mat-divider",14),t.j41(39,"div",9)(40,"div",2)(41,"h4",11),t.EFF(42,"Payment Preimage"),t.k0s(),t.j41(43,"span",12),t.EFF(44),t.k0s()()(),t.nrm(45,"mat-divider",14),t.j41(46,"div",9)(47,"div",2)(48,"h4",11),t.EFF(49,"Recipient Node"),t.k0s(),t.j41(50,"span",12),t.EFF(51),t.k0s()()(),t.nrm(52,"mat-divider",14),t.DNE(53,Ve,6,1,"div",15)(54,Oe,1,0,"mat-divider",16),t.j41(55,"div",9)(56,"div",2)(57,"mat-accordion"),t.DNE(58,He,36,14,"mat-expansion-panel",17),t.k0s()()()()(),t.j41(59,"div",18)(60,"button",19),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onScrollDown())}),t.j41(61,"mat-icon",20),t.EFF(62,"arrow_downward"),t.k0s()()(),t.j41(63,"div",21)(64,"button",22),t.EFF(65,"OK"),t.k0s()()()()}2&i&&(t.R7$(16),t.JRh(t.bMT(17,10,a.payment.recipientAmount)),t.R7$(6),t.JRh(t.i5U(23,12,a.payment.firstPartTimestamp,"dd/MMM/y HH:mm")),t.R7$(8),t.JRh(a.payment.id),t.R7$(7),t.JRh(a.payment.paymentHash),t.R7$(7),t.JRh(a.payment.paymentPreimage),t.R7$(7),t.JRh(a.payment.recipientNodeAlias),t.R7$(2),t.Y8G("ngIf",a.description),t.R7$(),t.Y8G("ngIf",a.description),t.R7$(4),t.Y8G("ngForOf",a.payment.parts),t.R7$(6),t.Y8G("mat-dialog-close",!1))},dependencies:[p.Sq,p.bT,h.DJ,h.sA,h.UI,B.tx,j.$z,j.$0,E.m2,E.MM,Y.BS,Y.GK,Y.Z2,Y.WN,ct.An,Z.q,A.Ld,p.QX,p.vh]})}return n})();var v=_(1771),at=_(7541),z=_(2929),X=_(6600);const Xe=["sendPaymentForm"],Ue=()=>["all"],ze=n=>({"error-border":n}),Je=()=>["no_payment"],$=n=>({width:n}),qe=n=>({"display-none":n});function Qe(n,o){if(1&n&&(t.j41(0,"span",18),t.nrm(1,"fa-icon",19),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function Ze(n,o){if(1&n&&t.nrm(0,"span",20),2&n){const e=t.XpG(3);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function We(n,o){if(1&n&&(t.j41(0,"mat-hint",15),t.EFF(1),t.DNE(2,Qe,2,1,"span",16)(3,Ze,1,1,"span",17),t.EFF(4),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.SpI(" ",e.paymentDecodedHintPre," "),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.SpI(" ",e.paymentDecodedHintPost," ")}}function Ke(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function tn(n,o){if(1&n){const e=t.RV6();t.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),t.EFF(4,"Payment Request"),t.k0s(),t.j41(5,"textarea",9,1),t.bIt("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onPaymentRequestEntry(a))})("matTextareaAutosize",function(){return t.eBV(e),t.Njj(!0)}),t.k0s(),t.DNE(7,We,5,4,"mat-hint",10)(8,Ke,2,0,"mat-error",11),t.k0s(),t.j41(9,"div",12)(10,"button",13),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.resetData())}),t.EFF(11,"Clear Field"),t.k0s(),t.j41(12,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSendPayment())}),t.EFF(13,"Send Payment"),t.k0s()()()}if(2&n){const e=t.XpG();t.R7$(5),t.Y8G("ngModel",e.paymentRequest),t.R7$(2),t.Y8G("ngIf",e.paymentRequest&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",!e.paymentRequest)}}function en(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",21)(1,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.openSendPaymentModal())}),t.EFF(2,"Send Payment"),t.k0s()()}}function nn(n,o){if(1&n&&(t.j41(0,"mat-option",66),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function an(n,o){1&n&&t.nrm(0,"mat-progress-bar",67)}function on(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Date/Time"),t.k0s())}function sn(n,o){if(1&n&&(t.j41(0,"td",69),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,null==e?null:e.firstPartTimestamp,"dd/MMM/y HH:mm"))}}function ln(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"ID"),t.k0s())}function rn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id)}}function cn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Destination Node ID"),t.k0s())}function mn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId)}}function pn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Destination"),t.k0s())}function un(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias)}}function dn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Description"),t.k0s())}function hn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function fn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Payment Hash"),t.k0s())}function _n(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function gn(n,o){1&n&&(t.j41(0,"th",68),t.EFF(1,"Preimage"),t.k0s())}function Cn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage)}}function yn(n,o){1&n&&(t.j41(0,"th",72),t.EFF(1,"Amount (Sats)"),t.k0s())}function bn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"span",73),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.recipientAmount))}}function Fn(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",74)(1,"div",75)(2,"mat-select",76),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",77),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function En(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",78)(1,"button",79),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onPaymentClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function xn(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No payment available."),t.k0s())}function Ln(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting payments..."),t.k0s())}function Sn(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function vn(n,o){if(1&n&&(t.j41(0,"td",80),t.DNE(1,xn,2,0,"p",11)(2,Ln,2,0,"p",11)(3,Sn,2,1,"p",11),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Rn(n,o){if(1&n&&(t.j41(0,"span",81),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.timestamp,"dd/MMM/y HH:mm")," ")}}function In(n,o){if(1&n&&(t.qex(0),t.DNE(1,Rn,3,4,"span",82),t.bVm()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function kn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"span",81),t.EFF(2),t.k0s(),t.DNE(3,In,2,1,"ng-container",11),t.k0s()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" Total Attempts: ",(null==e||null==e.parts?null:e.parts.length)||0," "),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Tn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.id)}}function wn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Tn,4,4,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function jn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,wn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Dn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.toChannelId)}}function Pn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Dn,4,4,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Gn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Pn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function An(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.toChannelAlias)}}function Nn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,An,4,4,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Mn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Nn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Bn(n,o){if(1&n&&(t.j41(0,"span",84),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.amount,"1.0-0")," ")}}function $n(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Bn,3,4,"span",85),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Vn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"span",84),t.EFF(2),t.nI1(3,"number"),t.k0s(),t.DNE(4,$n,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.i5U(3,2,null==e?null:e.recipientAmount,"1.0-0")),t.R7$(2),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function On(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Hn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,On,5,7,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Yn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Hn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Xn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Un(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Xn,5,7,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function zn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Un,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Jn(n,o){if(1&n&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function qn(n,o){if(1&n&&(t.j41(0,"span"),t.DNE(1,Jn,5,7,"span",82),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Qn(n,o){if(1&n&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,qn,2,1,"span",11),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,$,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Zn(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",89)(1,"button",90),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2).$implicit,r=t.XpG(2);return t.Njj(r.onPartClick(a,s))}),t.EFF(2),t.k0s()()}if(2&n){const e=o.index;t.R7$(2),t.SpI("View ",e+1,"")}}function Wn(n,o){if(1&n&&(t.j41(0,"div"),t.DNE(1,Zn,3,1,"div",88),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Kn(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",69)(1,"span",86)(2,"button",87),t.bIt("click",function(){const a=t.eBV(e).$implicit;return t.Njj(a.is_expanded=!a.is_expanded)}),t.EFF(3),t.k0s()(),t.DNE(4,Wn,2,1,"div",11),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(3),t.JRh(null!=e&&e.is_expanded?"Hide":"Show"),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function ti(n,o){1&n&&t.nrm(0,"tr",91)}function ei(n,o){if(1&n&&t.nrm(0,"tr",92),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,qe,(null==e.payments||null==e.payments.data?null:e.payments.data.length)>0))}}function ni(n,o){1&n&&t.nrm(0,"tr",93)}function ii(n,o){1&n&&t.nrm(0,"tr",91)}function ai(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",22)(1,"div",23)(2,"div",24),t.nrm(3,"fa-icon",25),t.j41(4,"span",26),t.EFF(5,"Payments History"),t.k0s()(),t.j41(6,"div",27)(7,"mat-form-field",28)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",29),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilterBy,a)||(s.selFilterBy=a),t.Njj(a)}),t.bIt("selectionChange",function(){t.eBV(e);const a=t.XpG();return a.selFilter="",t.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,nn,2,2,"mat-option",30),t.k0s()()(),t.j41(13,"mat-form-field",28)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",31),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilter,a)||(s.selFilter=a),t.Njj(a)}),t.bIt("input",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())})("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",32)(18,"div",33),t.DNE(19,an,1,0,"mat-progress-bar",34),t.j41(20,"table",35,2),t.qex(22,36),t.DNE(23,on,2,0,"th",37)(24,sn,3,4,"td",38),t.bVm(),t.qex(25,39),t.DNE(26,ln,2,0,"th",37)(27,rn,4,4,"td",38),t.bVm(),t.qex(28,40),t.DNE(29,cn,2,0,"th",37)(30,mn,4,4,"td",38),t.bVm(),t.qex(31,41),t.DNE(32,pn,2,0,"th",37)(33,un,4,4,"td",38),t.bVm(),t.qex(34,42),t.DNE(35,dn,2,0,"th",37)(36,hn,4,4,"td",38),t.bVm(),t.qex(37,43),t.DNE(38,fn,2,0,"th",37)(39,_n,4,4,"td",38),t.bVm(),t.qex(40,44),t.DNE(41,gn,2,0,"th",37)(42,Cn,4,4,"td",38),t.bVm(),t.qex(43,45),t.DNE(44,yn,2,0,"th",46)(45,bn,4,3,"td",38),t.bVm(),t.qex(46,47),t.DNE(47,Fn,6,0,"th",48)(48,En,3,0,"td",49),t.bVm(),t.qex(49,50),t.DNE(50,vn,4,3,"td",51),t.bVm(),t.qex(51,52),t.DNE(52,kn,4,2,"td",38),t.bVm(),t.qex(53,53),t.DNE(54,jn,5,5,"td",38),t.bVm(),t.qex(55,54),t.DNE(56,Gn,5,5,"td",38),t.bVm(),t.qex(57,55),t.DNE(58,Mn,5,5,"td",38),t.bVm(),t.qex(59,56),t.DNE(60,Vn,5,5,"td",38),t.bVm(),t.qex(61,57),t.DNE(62,Yn,5,5,"td",38),t.bVm(),t.qex(63,58),t.DNE(64,zn,5,5,"td",38),t.bVm(),t.qex(65,59),t.DNE(66,Qn,5,5,"td",38),t.bVm(),t.qex(67,60),t.DNE(68,Kn,5,2,"td",38),t.bVm(),t.DNE(69,ti,1,0,"tr",61)(70,ei,1,3,"tr",62)(71,ni,1,0,"tr",63)(72,ii,1,0,"tr",64),t.k0s()()(),t.nrm(73,"mat-paginator",65),t.k0s()}if(2&n){const e=t.XpG();t.R7$(3),t.Y8G("icon",e.faHistory),t.R7$(7),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(17,Ue).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter),t.R7$(3),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.payments)("ngClass",t.eq3(18,ze,""!==e.errorMessage)),t.R7$(49),t.Y8G("matRowDefColumns",e.partColumns)("matRowDefWhen",e.is_group),t.R7$(),t.Y8G("matFooterRowDef",t.lJ4(20,Je)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Rt=(()=>{class n{constructor(e,i,a,s,r,m,T,y){this.logger=e,this.commonService=i,this.store=a,this.rtlEffects=s,this.decimalPipe=r,this.dataService=m,this.datePipe=T,this.camelCaseWithSpaces=y,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:l.md,sortBy:"firstPartTimestamp",sortOrder:l.oi.DESCENDING},this.faHistory=F.Int,this.newlyAddedPayment="",this.information={},this.payments=new c.I6([]),this.paymentJSONArr=[],this.paymentDecoded={},this.displayedColumns=[],this.partColumns=[],this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.partColumns=[],this.displayedColumns.map(i=>this.partColumns.push("group_"+i)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,k.CK)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=e.payments&&e.payments.sent&&e.payments.sent.length>0?e.payments.sent:[],this.paymentJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(e)})}ngAfterViewInit(){this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.payments.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.firstPartTimestamp?this.datePipe.transform(new Date(e.firstPartTimestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"firstPartTimestamp":a=this.datePipe.transform(new Date(e.firstPartTimestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadPaymentsTable(e){this.payments=new c.I6(e?[...e]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(i,a)=>{switch(a){case"firstPartTimestamp":return this.commonService.sortByKey(i.parts,"timestamp","number",this.sort?.direction),i.firstPartTimestamp;case"id":return this.commonService.sortByKey(i.parts,"id","string",this.sort?.direction),i.id;case"recipientNodeAlias":return this.commonService.sortByKey(i.parts,"toChannelAlias","string",this.sort?.direction),i.recipientNodeAlias;case"recipientAmount":return this.commonService.sortByKey(i.parts,"amount","number",this.sort?.direction),i.recipientAmount;default:return i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null}},this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,q.s)(1)).subscribe(e=>{this.paymentDecoded=e,this.paymentDecoded.timestamp?(this.paymentDecoded.amount||(this.paymentDecoded.amount=0),this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded.paymentHash||"",this.paymentDecoded.amount&&0!==this.paymentDecoded.amount?(this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"paymentHash",value:this.paymentDecoded.paymentHash,title:"Payment Hash",width:100}],[{key:"nodeId",value:this.paymentDecoded.nodeId,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:50,type:l.UN.DATE_TIME},{key:"amount",value:this.paymentDecoded.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:l.UN.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,q.s)(1)).subscribe(i=>{i&&(this.store.dispatch((0,k.Fd)({payload:{invoice:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",message:[[{key:"paymentHash",value:this.paymentDecoded.paymentHash,title:"Payment Hash",width:100}],[{key:"nodeId",value:this.paymentDecoded.nodeId,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:40,type:l.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:l.UN.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",getInputs:[{placeholder:"Amount (Sats)",inputType:l.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,q.s)(1)).subscribe(a=>{a&&(this.paymentDecoded.amount=a[0].inputValue,this.store.dispatch((0,k.Fd)({payload:{invoice:this.paymentRequest,amountMsat:1e3*a[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(e){this.paymentRequest=e,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,q.s)(1)).subscribe(i=>{this.paymentDecoded=i,this.paymentDecoded.amount?this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.amount,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[4])).subscribe({next:a=>{this.convertedCurrency=a,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}openSendPaymentModal(){this.store.dispatch((0,v.xO)({payload:{data:{component:Be}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}is_group(e,i){return i.parts&&i.parts.length>1}onPaymentClick(e){e.paymentHash&&""!==e.paymentHash.trim()?this.dataService.decodePayments(e.paymentHash).pipe((0,q.s)(1)).subscribe({next:i=>{setTimeout(()=>{this.showPaymentView(e,i.length&&i.length>0?i[0]:[])},0)},error:i=>{this.showPaymentView(e,[])}}):this.showPaymentView(e,[])}showPaymentView(e,i){this.store.dispatch((0,v.xO)({payload:{data:{sentPaymentInfo:i,payment:e,component:Ye}}}))}onPartClick(e,i){i.paymentHash&&""!==i.paymentHash.trim()?this.dataService.decodePayments(i.paymentHash).pipe((0,q.s)(1)).subscribe({next:a=>{setTimeout(()=>{this.showPartView(e,i,a.length&&a.length>0?a[0]:[])},0)},error:a=>{this.showPartView(e,i,[])}}):this.showPartView(e,i,[])}showPartView(e,i,a){const s=[[{key:"paymentHash",value:i.paymentHash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"paymentPreimage",value:i.paymentPreimage,title:"Payment Preimage",width:100,type:l.UN.STRING}],[{key:"toChannelId",value:e.toChannelId,title:"Channel",width:100,type:l.UN.STRING}],[{key:"id",value:e.id,title:"Part ID",width:50,type:l.UN.STRING},{key:"timestamp",value:e.timestamp,title:"Time",width:50,type:l.UN.DATE_TIME}],[{key:"amount",value:e.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER},{key:"feesPaid",value:e.feesPaid,title:"Fee (Sats)",width:50,type:l.UN.NUMBER}]];a&&a.length>0&&a[0].paymentRequest&&a[0].paymentRequest.description&&""!==a[0].paymentRequest.description&&s.splice(3,0,[{key:"description",value:a[0].paymentRequest.description,title:"Description",width:100,type:l.UN.STRING}]),this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Payment Part Information",message:s}}}))}onPageChange(e){this.store.dispatch((0,k.CK)({payload:{count:this.pageSize,skip:e.pageIndex*e.pageSize}}))}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const e=JSON.parse(JSON.stringify(this.payments.data)),i=e?.reduce((a,s)=>(s.paymentHash&&""!==s.paymentHash.trim()&&(a=""===a?s.paymentHash:a+","+s.paymentHash),a),"");this.dataService.decodePayments(i).pipe((0,f.Q)(this.unSubs[5])).subscribe(a=>{a.forEach((r,m)=>{r.length>0&&r[0].paymentRequest&&r[0].paymentRequest.description&&""!==r[0].paymentRequest.description&&(e[m].description=r[0].paymentRequest.description)});const s=e?.reduce((r,m)=>r.concat(m),[]);this.commonService.downloadFile(s,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(at.H),t.rXU(p.QX),t.rXU(et.u),t.rXU(p.vh),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lightning-payments"]],viewQuery:function(i,a){if(1&i&&(t.GBs(Xe,5),t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first),t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},inputs:{calledFrom:"calledFrom"},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["fxLayout","column","fxFlex","colWidth","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","colWidth",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","colWidth","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","firstPartTimestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","id"],["matColumnDef","recipientNodeId"],["matColumnDef","recipientNodeAlias"],["matColumnDef","description"],["matColumnDef","paymentHash"],["matColumnDef","paymentPreimage"],["matColumnDef","recipientAmount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_firstPartTimestamp"],["matColumnDef","group_id"],["matColumnDef","group_recipientNodeId"],["matColumnDef","group_recipientNodeAlias"],["matColumnDef","group_recipientAmount"],["matColumnDef","group_description"],["matColumnDef","group_paymentHash"],["matColumnDef","group_paymentPreimage"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"part-row-span"],["fxLayoutAlign","start center","class","part-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","part-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"part-row-span"],["fxLayoutAlign","end center","class","part-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"part-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-part-expand",3,"click"],["class","part-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"part-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-part-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(i,a){1&i&&(t.j41(0,"div",3),t.DNE(1,tn,14,3,"form",4)(2,en,3,0,"div",5)(3,ai,74,21,"div",6),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf","home"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.BC,d.cb,d.YS,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,g.MV,g.TL,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,I.iy,A.ZF,A.Ld,p.QX,p.vh],styles:[".mat-column-group_actions[_ngcontent-%COMP%] .part-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .part-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%] .part-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.part-row-span[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%]{min-width:11rem}"]})}return n})();var K=_(6114);function oi(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function si(n,o){1&n&&(t.j41(0,"span",29),t.EFF(1,"= "),t.k0s())}function li(n,o){if(1&n&&(t.j41(0,"span",30),t.nrm(1,"fa-icon",31),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function ri(n,o){if(1&n&&t.nrm(0,"span",32),2&n){const e=t.XpG();t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function ci(n,o){if(1&n&&(t.j41(0,"mat-option",33),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(t.bMT(2,2,e))}}function mi(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.invoiceError)}}function pi(n,o){if(1&n&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.DNE(2,mi,2,1,"span",11),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.invoiceError)}}let ui=(()=>{class n{constructor(e,i,a,s,r,m){this.dialogRef=e,this.data=i,this.store=a,this.decimalPipe=s,this.commonService=r,this.actions=m,this.faExclamationTriangle=F.zpE,this.convertedCurrency=null,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=l.md,this.timeUnitEnum=l.F7,this.timeUnits=l.SY,this.selTimeUnit=l.F7.SECS,this.invoiceError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.actions.pipe((0,f.Q)(this.unSubs[2]),(0,H.p)(e=>e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&"CreateInvoice"===e.payload.action&&(e.payload.status===l.wn.ERROR&&(this.invoiceError=e.payload.message),e.payload.status===l.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(e){if(this.invoiceError="",!this.description)return!0;let i=this.expiry?this.expiry:l.It;this.expiry&&this.selTimeUnit!==l.F7.SECS&&(i=this.commonService.convertTime(this.expiry,this.selTimeUnit,l.F7.SECS));let a=null;a=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,k.iO)({payload:a}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=l.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[3])).subscribe({next:e=>{this.convertedCurrency=e,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.unit},error:e=>{this.invoiceValueHint="Conversion Error: "+e}}))}onTimeUnitChange(e){this.expiry&&this.selTimeUnit!==e.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,e.value)),this.selTimeUnit=e.value}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(R.il),t.rXU(p.QX),t.rXU(M.h),t.rXU(Q.En))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-create-invoices"]],decls:44,vars:19,consts:[["addInvoiceForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","2","name","description","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","3","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","type","number","name","exp","tabindex","4",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","26"],["tabindex","5","name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","8",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Create Invoice"),t.k0s()(),t.j41(6,"button",6),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),t.EFF(13,"Description"),t.k0s(),t.j41(14,"input",10),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.description,m)||(a.description=m),t.Njj(m)}),t.k0s(),t.DNE(15,oi,2,0,"mat-error",11),t.k0s(),t.j41(16,"div",12)(17,"mat-form-field",13)(18,"mat-label"),t.EFF(19,"Amount"),t.k0s(),t.j41(20,"input",14),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.invoiceValue,m)||(a.invoiceValue=m),t.Njj(m)}),t.bIt("keyup",function(){return t.eBV(s),t.Njj(a.onInvoiceValueChange())}),t.k0s(),t.j41(21,"span",15),t.EFF(22,"Sats "),t.k0s(),t.j41(23,"mat-hint",16),t.DNE(24,si,2,0,"span",17)(25,li,2,1,"span",18)(26,ri,1,1,"span",19),t.EFF(27),t.k0s()(),t.j41(28,"mat-form-field",20)(29,"mat-label"),t.EFF(30,"Expiry"),t.k0s(),t.j41(31,"input",21),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.expiry,m)||(a.expiry=m),t.Njj(m)}),t.k0s(),t.j41(32,"span",15),t.EFF(33),t.nI1(34,"titlecase"),t.k0s()(),t.j41(35,"mat-form-field",22)(36,"mat-select",23),t.bIt("selectionChange",function(m){return t.eBV(s),t.Njj(a.onTimeUnitChange(m))}),t.DNE(37,ci,3,4,"mat-option",24),t.k0s()()(),t.DNE(38,pi,3,2,"div",25),t.j41(39,"div",26)(40,"button",27),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(41,"Clear Field"),t.k0s(),t.j41(42,"button",28),t.bIt("click",function(){t.eBV(s);const m=t.sdS(10);return t.Njj(a.onAddInvoice(m))}),t.EFF(43,"Create Invoice"),t.k0s()()()()()()}2&i&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.R50("ngModel",a.description),t.R7$(),t.Y8G("ngIf",!a.description),t.R7$(5),t.Y8G("step",100)("min",1),t.R50("ngModel",a.invoiceValue),t.R7$(4),t.Y8G("ngIf",""!==a.invoiceValueHint),t.R7$(),t.Y8G("ngIf",a.convertedCurrency&&"FA"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),t.R7$(),t.Y8G("ngIf",a.convertedCurrency&&"SVG"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),t.R7$(),t.SpI(" ",a.invoiceValueHint," "),t.R7$(4),t.Y8G("step",a.selTimeUnit===a.timeUnitEnum.SECS?300:a.selTimeUnit===a.timeUnitEnum.MINS?10:a.selTimeUnit===a.timeUnitEnum.HOURS?2:1)("min",1),t.R50("ngModel",a.expiry),t.R7$(2),t.SpI("",t.bMT(34,17,a.selTimeUnit)," "),t.R7$(3),t.Y8G("value",a.selTimeUnit),t.R7$(),t.Y8G("ngForOf",a.timeUnits),t.R7$(),t.Y8G("ngIf",""!==a.invoiceError))},dependencies:[p.Sq,p.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,B.tx,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,S.VO,X.wT,W.N,K.V,p.PV]})}return n})();var di=_(6439);const hi=()=>["all"],fi=n=>({"error-border":n}),_i=()=>["no_invoice"],ut=n=>({"mr-0":n}),dt=n=>({width:n}),gi=n=>({"display-none":n});function Ci(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function yi(n,o){1&n&&(t.j41(0,"span",21),t.EFF(1,"= "),t.k0s())}function bi(n,o){if(1&n&&(t.j41(0,"span",22),t.nrm(1,"fa-icon",23),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function Fi(n,o){if(1&n&&t.nrm(0,"span",24),2&n){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function Ei(n,o){if(1&n){const e=t.RV6();t.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),t.EFF(4,"Description"),t.k0s(),t.j41(5,"input",9),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.description,a)||(s.description=a),t.Njj(a)}),t.k0s(),t.DNE(6,Ci,2,0,"mat-error",10),t.k0s(),t.j41(7,"mat-form-field",11)(8,"mat-label"),t.EFF(9,"Amount"),t.k0s(),t.j41(10,"input",12,1),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.invoiceValue,a)||(s.invoiceValue=a),t.Njj(a)}),t.bIt("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onInvoiceValueChange())}),t.k0s(),t.j41(12,"span",13),t.EFF(13,"Sats "),t.k0s(),t.j41(14,"mat-hint",14),t.DNE(15,yi,2,0,"span",15)(16,bi,2,1,"span",16)(17,Fi,1,1,"span",17),t.EFF(18),t.k0s()(),t.j41(19,"div",18)(20,"button",19),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.resetData())}),t.EFF(21,"Clear Field"),t.k0s(),t.j41(22,"button",20),t.bIt("click",function(){t.eBV(e);const a=t.sdS(1),s=t.XpG();return t.Njj(s.onAddInvoice(a))}),t.EFF(23,"Create Invoice"),t.k0s()()()}if(2&n){const e=t.XpG();t.R7$(5),t.R50("ngModel",e.description),t.R7$(),t.Y8G("ngIf",!e.description),t.R7$(4),t.Y8G("step",100)("min",1),t.R50("ngModel",e.invoiceValue),t.R7$(5),t.Y8G("ngIf",""!==e.invoiceValueHint),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),t.R7$(),t.SpI(" ",e.invoiceValueHint," ")}}function xi(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",25)(1,"button",26),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.openCreateInvoiceModal())}),t.EFF(2,"Create Invoice"),t.k0s()()}}function Li(n,o){if(1&n&&(t.j41(0,"mat-option",63),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Si(n,o){1&n&&t.nrm(0,"mat-progress-bar",64)}function vi(n,o){1&n&&t.nrm(0,"th",65)}function Ri(n,o){if(1&n&&t.nrm(0,"span",70),2&n){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ut,e.screenSize===e.screenSizeEnum.XS))}}function Ii(n,o){if(1&n&&t.nrm(0,"span",71),2&n){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ut,e.screenSize===e.screenSizeEnum.XS))}}function ki(n,o){if(1&n&&t.nrm(0,"span",72),2&n){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ut,e.screenSize===e.screenSizeEnum.XS))}}function Ti(n,o){if(1&n&&(t.j41(0,"td",66),t.DNE(1,Ri,1,3,"span",67)(2,Ii,1,3,"span",68)(3,ki,1,3,"span",69),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf","received"===(null==e?null:e.status)),t.R7$(),t.Y8G("ngIf","unpaid"===(null==e?null:e.status)),t.R7$(),t.Y8G("ngIf",!(null!=e&&e.status)||"expired"===(null==e?null:e.status)||"unknown"===(null==e?null:e.status))}}function wi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Date Created"),t.k0s())}function ji(n,o){if(1&n&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Di(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Date Expiry"),t.k0s())}function Pi(n,o){if(1&n&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.expiresAt),"dd/MMM/y HH:mm")||"-")}}function Gi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Date Settled"),t.k0s())}function Ai(n,o){if(1&n&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.receivedAt),"dd/MMM/y HH:mm")||"-")}}function Ni(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Node ID"),t.k0s())}function Mi(n,o){if(1&n&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,dt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Bi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Description"),t.k0s())}function $i(n,o){if(1&n&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,dt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function Vi(n,o){1&n&&(t.j41(0,"th",73),t.EFF(1,"Payment Hash"),t.k0s())}function Oi(n,o){if(1&n&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,dt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function Hi(n,o){1&n&&(t.j41(0,"th",76),t.EFF(1,"Amount (Sats)"),t.k0s())}function Yi(n,o){if(1&n&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(null!=e&&e.amount?t.i5U(3,1,null==e?null:e.amount,"1.0-0"):"-")}}function Xi(n,o){1&n&&(t.j41(0,"th",78),t.EFF(1," Amount Settled (Sats)"),t.k0s())}function Ui(n,o){if(1&n&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(null!=e&&e.amountSettled?t.i5U(3,1,null==e?null:e.amountSettled,"1.0-0"):"-")}}function zi(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",79)(1,"div",80)(2,"mat-select",81),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",82),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Ji(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",83)(1,"div",80)(2,"mat-select",84),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",82),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onInvoiceClick(a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",82),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onRefreshInvoice(a))}),t.EFF(7,"Refresh"),t.k0s()()()()}}function qi(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No invoice available."),t.k0s())}function Qi(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting invoices..."),t.k0s())}function Zi(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Wi(n,o){if(1&n&&(t.j41(0,"td",85),t.DNE(1,qi,2,0,"p",10)(2,Qi,2,0,"p",10)(3,Zi,2,1,"p",10),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Ki(n,o){if(1&n&&t.nrm(0,"tr",86),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,gi,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function ta(n,o){1&n&&t.nrm(0,"tr",87)}function ea(n,o){1&n&&t.nrm(0,"tr",88)}function na(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",27)(1,"div",28)(2,"div",29),t.nrm(3,"fa-icon",30),t.j41(4,"span",31),t.EFF(5,"Invoices History"),t.k0s()(),t.j41(6,"div",32)(7,"mat-form-field",33)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",34),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilterBy,a)||(s.selFilterBy=a),t.Njj(a)}),t.bIt("selectionChange",function(){t.eBV(e);const a=t.XpG();return a.selFilter="",t.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,Li,2,2,"mat-option",35),t.k0s()()(),t.j41(13,"mat-form-field",33)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",36),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilter,a)||(s.selFilter=a),t.Njj(a)}),t.bIt("input",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())})("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",37),t.DNE(18,Si,1,0,"mat-progress-bar",38),t.j41(19,"table",39,2),t.qex(21,40),t.DNE(22,vi,1,0,"th",41)(23,Ti,4,3,"td",42),t.bVm(),t.qex(24,43),t.DNE(25,wi,2,0,"th",44)(26,ji,3,4,"td",42),t.bVm(),t.qex(27,45),t.DNE(28,Di,2,0,"th",44)(29,Pi,3,4,"td",42),t.bVm(),t.qex(30,46),t.DNE(31,Gi,2,0,"th",44)(32,Ai,3,4,"td",42),t.bVm(),t.qex(33,47),t.DNE(34,Ni,2,0,"th",44)(35,Mi,4,4,"td",42),t.bVm(),t.qex(36,48),t.DNE(37,Bi,2,0,"th",44)(38,$i,4,4,"td",42),t.bVm(),t.qex(39,49),t.DNE(40,Vi,2,0,"th",44)(41,Oi,4,4,"td",42),t.bVm(),t.qex(42,50),t.DNE(43,Hi,2,0,"th",51)(44,Yi,4,4,"td",42),t.bVm(),t.qex(45,52),t.DNE(46,Xi,2,0,"th",53)(47,Ui,4,4,"td",42),t.bVm(),t.qex(48,54),t.DNE(49,zi,6,0,"th",55)(50,Ji,8,0,"td",56),t.bVm(),t.qex(51,57),t.DNE(52,Wi,4,3,"td",58),t.bVm(),t.DNE(53,Ki,1,3,"tr",59)(54,ta,1,0,"tr",60)(55,ea,1,0,"tr",61),t.k0s()(),t.nrm(56,"mat-paginator",62),t.k0s()}if(2&n){const e=t.XpG();t.R7$(3),t.Y8G("icon",e.faHistory),t.R7$(7),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,hi).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter),t.R7$(2),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.invoices)("ngClass",t.eq3(16,fi,""!==e.errorMessage)),t.R7$(34),t.Y8G("matFooterRowDef",t.lJ4(18,_i)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let It=(()=>{class n{constructor(e,i,a,s,r,m,T){this.logger=e,this.store=i,this.decimalPipe=a,this.commonService=s,this.datePipe=r,this.actions=m,this.camelCaseWithSpaces=T,this.calledFrom="transactions",this.faHistory=F.Int,this.convertedCurrency=null,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:l.md,sortBy:"expiresAt",sortOrder:l.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new c.I6([]),this.invoiceJSONArr=[],this.information={},this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.information=e}),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,k.Do)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(C.rN).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=e.invoices&&e.invoices.length>0?e.invoices:[],this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(e)}),this.actions.pipe((0,f.Q)(this.unSubs[4]),(0,H.p)(e=>e.type===l.Uu.SET_LOOKUP_ECL||e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.SET_LOOKUP_ECL&&this.invoiceJSONArr&&this.sort&&this.paginator&&e.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(e.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,v.xO)({payload:{data:{pageSize:this.pageSize,component:ui}}}))}onAddInvoice(e){if(!this.description)return!0;const i=this.expiry?this.expiry:l.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue;let a=null;a=this.invoiceValue?{description:this.description,expireIn:i,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:i},this.store.dispatch((0,k.iO)({payload:a})),this.resetData()}onInvoiceClick(e){this.store.dispatch((0,v.xO)({payload:{data:{invoice:e,newlyAdded:!1,component:di.Z}}}))}onRefreshInvoice(e){this.store.dispatch((0,k.Yi)({payload:e.paymentHash}))}updateInvoicesData(e){this.invoiceJSONArr=this.invoiceJSONArr?.map(i=>i.paymentHash===e.paymentHash?e:i)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.invoices.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(1e3*e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"status":a=e?.status&&"expired"!==e?.status&&"unknown"!==e?.status?e.status?.toLowerCase():"expired/unknown";break;case"timestamp":case"expiresAt":case"receivedAt":a=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amount":case"amountSettled":a=e[this.selFilterBy]?.toString()||"-";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===a.indexOf(i):a.includes(i)}}loadInvoicesTable(e){this.invoices=new c.I6(e?[...e]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.invoices.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}resetData(){this.description="",this.invoiceValue=null,this.expiry=null,this.invoiceValueHint=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,f.Q)(this.unSubs[5])).subscribe({next:e=>{this.convertedCurrency=e,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.unit},error:e=>{this.invoiceValueHint="Conversion Error: "+e}}))}onPageChange(e){this.store.dispatch((0,k.Do)({payload:{count:this.pageSize,skip:e.pageIndex*e.pageSize}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(p.QX),t.rXU(M.h),t.rXU(p.vh),t.rXU(Q.En),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lightning-invoices"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},inputs:{calledFrom:"calledFrom"},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["invcVal","ngModel"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","tabindex","2","name","description","required","true",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","3","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","expiresAt"],["matColumnDef","receivedAt"],["matColumnDef","nodeId"],["matColumnDef","description"],["matColumnDef","paymentHash"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amountSettled"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","p1-3",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Received","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Expired/Unknown","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Received","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Expired/Unknown","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"p1-3"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(i,a){1&i&&(t.j41(0,"div",3),t.DNE(1,Ei,24,9,"form",4)(2,xi,3,0,"div",5)(3,na,57,19,"div",6),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf","home"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,K.V,p.QX,p.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();const kt=n=>({"dashboard-card-content":!0,"error-border":n}),ia=n=>({"p-0":n});function aa(n,o){if(1&n&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&n){t.XpG();const e=t.sdS(11);t.Y8G("matMenuTriggerFor",e)}}function oa(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=t.eBV(e).index,s=t.XpG().$implicit,r=t.XpG(2);return t.Njj(r.onNavigateTo(s.links[a]))}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function sa(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){t.eBV(e);const a=t.XpG(3);return t.Njj(a.onsortChannelsBy())}),t.EFF(1),t.k0s()}if(2&n){const e=t.XpG(3);t.R7$(),t.SpI("Sort By ","Balance Score"===e.sortField?"Capacity":"Balance Score","")}}function la(n,o){1&n&&t.nrm(0,"mat-progress-bar",30)}function ra(n,o){if(1&n&&t.nrm(0,"rtl-ecl-node-info",31),2&n){const e=t.XpG(3);t.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function ca(n,o){if(1&n&&t.nrm(0,"rtl-ecl-balances-info",32),2&n){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function ma(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-capacity-info",33),2&n){const e=t.XpG(3);t.Y8G("sortBy",e.sortField)("channelBalances",e.channelBalances)("allChannels",e.allChannelsCapacity)("errorMessage",e.errorMessages[2])}}function pa(n,o){if(1&n&&t.nrm(0,"rtl-ecl-fee-info",34),2&n){const e=t.XpG(3);t.Y8G("fees",e.fees)("errorMessage",e.errorMessages[1])}}function ua(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-status-info",35),2&n){const e=t.XpG(3);t.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[2])}}function da(n,o){1&n&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function ha(n,o){if(1&n&&(t.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),t.nrm(5,"fa-icon",14),t.j41(6,"span"),t.EFF(7),t.k0s()(),t.j41(8,"div"),t.DNE(9,aa,3,1,"button",15),t.j41(10,"mat-menu",16,1),t.DNE(12,oa,2,1,"button",17)(13,sa,2,1,"button",18),t.k0s()()()(),t.j41(14,"mat-card-content",19),t.DNE(15,la,1,0,"mat-progress-bar",20),t.j41(16,"div",21),t.DNE(17,ra,1,2,"rtl-ecl-node-info",22)(18,ca,1,2,"rtl-ecl-balances-info",23)(19,ma,1,4,"rtl-ecl-channel-capacity-info",24)(20,pa,1,2,"rtl-ecl-fee-info",25)(21,ua,1,2,"rtl-ecl-channel-status-info",26)(22,da,2,0,"h3",27),t.k0s()()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("colspan",e.cols)("rowspan",e.rows),t.R7$(5),t.Y8G("icon",e.icon),t.R7$(2),t.JRh(e.title),t.R7$(2),t.Y8G("ngIf",e.links[0]),t.R7$(3),t.Y8G("ngForOf",e.goToOptions),t.R7$(),t.Y8G("ngIf","capacity"===e.id),t.R7$(),t.FS9("fxFlex","capacity"===e.id?90:70),t.Y8G("ngClass",t.eq3(16,kt,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.ERROR)||("capacity"===e.id||"status"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||"fee"===e.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.ERROR)),t.R7$(),t.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.INITIATED)||("capacity"===e.id||"status"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||"fee"===e.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngSwitch",e.id),t.R7$(),t.Y8G("ngSwitchCase","node"),t.R7$(),t.Y8G("ngSwitchCase","balance"),t.R7$(),t.Y8G("ngSwitchCase","capacity"),t.R7$(),t.Y8G("ngSwitchCase","fee"),t.R7$(),t.Y8G("ngSwitchCase","status")}}function fa(n,o){if(1&n&&(t.j41(0,"div",5)(1,"div",6),t.nrm(2,"fa-icon",7),t.j41(3,"span",8),t.EFF(4),t.k0s()(),t.j41(5,"mat-grid-list",9),t.DNE(6,ha,23,18,"mat-grid-tile",10),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.Y8G("icon",e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.ERROR?e.faFrown:e.faSmile),t.R7$(2),t.JRh(e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.COMPLETED?"Welcome "+e.information.alias+"! Your node is up and running.":e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),t.R7$(),t.Y8G("rowHeight",e.operatorCardHeight),t.R7$(),t.Y8G("ngForOf",e.operatorCards)}}function _a(n,o){if(1&n&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&n){t.XpG();const e=t.sdS(9);t.Y8G("matMenuTriggerFor",e)}}function ga(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=t.eBV(e).index,s=t.XpG(2).$implicit,r=t.XpG(2);return t.Njj(r.onNavigateTo(s.links[a]))}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function Ca(n,o){if(1&n&&(t.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),t.nrm(3,"fa-icon",14),t.j41(4,"span"),t.EFF(5),t.k0s()(),t.j41(6,"div"),t.DNE(7,_a,3,1,"button",15),t.j41(8,"mat-menu",16,2),t.DNE(10,ga,2,1,"button",17),t.k0s()()()()),2&n){const e=t.XpG().$implicit;t.R7$(3),t.Y8G("icon",e.icon),t.R7$(2),t.JRh(e.title),t.R7$(2),t.Y8G("ngIf",e.links[0]),t.R7$(3),t.Y8G("ngForOf",e.goToOptions)}}function ya(n,o){1&n&&t.nrm(0,"mat-progress-bar",30)}function ba(n,o){if(1&n&&t.nrm(0,"rtl-ecl-node-info",44),2&n){const e=t.XpG(3);t.Y8G("information",e.information)}}function Fa(n,o){if(1&n&&t.nrm(0,"rtl-ecl-balances-info",32),2&n){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function Ea(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-liquidity-info",45),2&n){const e=t.XpG(3);t.Y8G("direction","In")("totalLiquidity",e.totalInboundLiquidity)("allChannels",e.allInboundChannels)("errorMessage",e.errorMessages[2])}}function xa(n,o){if(1&n&&t.nrm(0,"rtl-ecl-channel-liquidity-info",45),2&n){const e=t.XpG(3);t.Y8G("direction","Out")("totalLiquidity",e.totalOutboundLiquidity)("allChannels",e.allOutboundChannels)("errorMessage",e.errorMessages[2])}}function La(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=t.eBV(e).index,s=t.XpG(2).$implicit,r=t.XpG(2);return t.Njj(r.onNavigateTo(s.links[a]))}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function Sa(n,o){if(1&n&&(t.j41(0,"span",46)(1,"mat-tab-group",47)(2,"mat-tab",48),t.nrm(3,"rtl-ecl-lightning-invoices",49),t.k0s(),t.j41(4,"mat-tab",50),t.nrm(5,"rtl-ecl-lightning-payments",51),t.k0s()(),t.j41(6,"div",52)(7,"button",28)(8,"mat-icon"),t.EFF(9,"more_vert"),t.k0s()(),t.j41(10,"mat-menu",16,3),t.DNE(12,La,2,1,"button",17),t.k0s()()()),2&n){const e=t.sdS(11),i=t.XpG().$implicit;t.R7$(3),t.Y8G("calledFrom","home"),t.R7$(2),t.Y8G("calledFrom","home"),t.R7$(2),t.Y8G("matMenuTriggerFor",e),t.R7$(5),t.Y8G("ngForOf",i.goToOptions)}}function va(n,o){1&n&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function Ra(n,o){if(1&n&&(t.j41(0,"mat-grid-tile",11)(1,"mat-card",38),t.DNE(2,Ca,11,4,"mat-card-header",39),t.j41(3,"mat-card-content",40),t.DNE(4,ya,1,0,"mat-progress-bar",20),t.j41(5,"div",21),t.DNE(6,ba,1,1,"rtl-ecl-node-info",41)(7,Fa,1,2,"rtl-ecl-balances-info",23)(8,Ea,1,4,"rtl-ecl-channel-liquidity-info",42)(9,xa,1,4,"rtl-ecl-channel-liquidity-info",42)(10,Sa,13,4,"span",43)(11,va,2,0,"h3",27),t.k0s()()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("colspan",e.cols)("rowspan",e.rows),t.R7$(),t.Y8G("ngClass",t.eq3(13,ia,"transactions"===e.id)),t.R7$(),t.Y8G("ngIf","transactions"!==e.id),t.R7$(),t.FS9("fxFlex","transactions"===e.id?100:"balance"===e.id?70:90),t.Y8G("ngClass",t.eq3(15,kt,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.ERROR)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.ERROR)),t.R7$(),t.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&(i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusOCBal.status===i.apiCallStatusEnum.INITIATED)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusAllChannels.status===i.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngSwitch",e.id),t.R7$(),t.Y8G("ngSwitchCase","node"),t.R7$(),t.Y8G("ngSwitchCase","balance"),t.R7$(),t.Y8G("ngSwitchCase","inboundLiq"),t.R7$(),t.Y8G("ngSwitchCase","outboundLiq"),t.R7$(),t.Y8G("ngSwitchCase","transactions")}}function Ia(n,o){if(1&n&&(t.j41(0,"div",36),t.nrm(1,"fa-icon",7),t.j41(2,"span",8),t.EFF(3),t.k0s()(),t.j41(4,"mat-grid-list",37),t.DNE(5,Ra,12,17,"mat-grid-tile",10),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faSmile),t.R7$(2),t.SpI("Welcome ",e.information.alias,"! Your node is up and running."),t.R7$(),t.Y8G("rowHeight",e.merchantCardHeight),t.R7$(),t.Y8G("ngForOf",e.merchantCards)}}let ka=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.store=i,this.commonService=a,this.router=s,this.faSmile=Lt.Qpm,this.faFrown=Lt.wB1,this.faAngleDoubleDown=F.WxX,this.faAngleDoubleUp=F.$sC,this.faChartPie=F.W1p,this.faBolt=F.zm_,this.faServer=F.D6w,this.faNetworkWired=F.eGi,this.userPersonaEnum=l.HW,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.information={},this.channels=[],this.onchainBalance={},this.balances={onchain:-1,lightning:-1,total:0},this.channelsStatus={},this.allChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.errorMessages=["","","",""],this.apiCallStatusNodeInfo={status:l.wn.COMPLETED},this.apiCallStatusFees={status:l.wn.COMPLETED},this.apiCallStatusOCBal={status:l.wn.COMPLETED},this.apiCallStatusAllChannels={status:l.wn.COMPLETED},this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}]):this.screenSize===l.f7.SM||this.screenSize===l.f7.MD?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}]):(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}])}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e}),this.store.select(C.b_).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=e.apiCallStatus,this.apiCallStatusNodeInfo.status===l.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.information=e.information}),this.store.select(C.oR).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessages[1]="",this.apiCallStatusFees=e.apiCallStatus,this.apiCallStatusFees.status===l.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=e.fees}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[3]),(0,rt.E)(this.store.select(C.DW))).subscribe(([e,i])=>{this.errorMessages[2]="",this.errorMessages[3]="",this.apiCallStatusAllChannels=e.apiCallStatus,this.apiCallStatusOCBal=i.apiCallStatus,this.apiCallStatusAllChannels.status===l.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusAllChannels.message?JSON.stringify(this.apiCallStatusAllChannels.message):this.apiCallStatusAllChannels.message?this.apiCallStatusAllChannels.message:""),this.apiCallStatusOCBal.status===l.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusOCBal.message?JSON.stringify(this.apiCallStatusOCBal.message):this.apiCallStatusOCBal.message?this.apiCallStatusOCBal.message:""),this.channels=e.activeChannels,this.onchainBalance=i.onchainBalance,this.balances.onchain=this.onchainBalance.total||0,this.balances.lightning=e.lightningBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const a=e.lightningBalance.localBalance?+e.lightningBalance.localBalance:0,s=e.lightningBalance.remoteBalance?+e.lightningBalance.remoteBalance:0;this.channelBalances={localBalance:a,remoteBalance:s,balancedness:+(1-Math.abs((a-s)/(a+s))).toFixed(3)},this.channelsStatus=e.channelsStatus,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels?.filter(m=>(m.toRemote||0)>0),"toRemote"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels?.filter(m=>(m.toLocal||0)>0),"toLocal"))),this.channels.forEach(m=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil(m.toRemote||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor(m.toLocal||0)}),this.logger.info(e)})}onNavigateTo(e){this.router.navigateByUrl("/ecl/"+e)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.channels.sort((e,i)=>{const a=+(e.toLocal||0)+ +(e.toRemote||0),s=+(i.toLocal||0)+ +(i.toRemote||0);return a>s?-1:a{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(M.h),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-home"]],decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[1,"underline"]],template:function(i,a){if(1&i&&t.DNE(0,fa,7,4,"div",4)(1,Ia,6,4,"ng-template",null,0,t.C5r),2&i){const s=t.sdS(2);t.Y8G("ngIf",(null==a.selNode?null:a.selNode.settings.userPersona)===a.userPersonaEnum.OPERATOR)("ngIfElse",s)}},dependencies:[p.YU,p.Sq,p.bT,p.ux,p.e1,p.fG,w.aY,h.DJ,h.sA,h.UI,L.PW,j.iY,E.RN,E.m2,E.MM,E.dh,St.B_,St.NS,ct.An,mt.kk,mt.fb,mt.Cp,V.HM,D.mq,D.T8,Zt,te,ie,se,he,Ie,Rt,It]})}return n})();const Ta=["form"];function wa(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Bitcoin address is required."),t.k0s())}function ja(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.amountError)}}function Da(n,o){if(1&n&&(t.j41(0,"mat-option",29),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e)}}function Pa(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Target Confirmation Blocks is required."),t.k0s())}function Ga(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.sendFundError)}}function Aa(n,o){if(1&n&&(t.j41(0,"div",30),t.nrm(1,"fa-icon",31),t.DNE(2,Ga,2,1,"span",14),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.sendFundError)}}let Tt=(()=>{class n{constructor(e,i,a,s,r,m){this.dialogRef=e,this.logger=i,this.store=a,this.commonService=s,this.decimalPipe=r,this.actions=m,this.faExclamationTriangle=F.zpE,this.addressTypes=[],this.selectedAddress=l.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.sendFundError="",this.fiatConversion=!1,this.amountUnits=l.A0,this.selAmountUnit=l.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=l.k,this.amountError="Amount is Required.",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.fiatConversion=e.settings.fiatConversion,this.amountUnits=e.settings.currencyUnits,this.logger.info(e)}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(e=>e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL||e.type===l.Uu.SEND_ONCHAIN_FUNDS_RES_ECL)).subscribe(e=>{e.type===l.Uu.SEND_ONCHAIN_FUNDS_RES_ECL&&(this.store.dispatch((0,v.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&"SendOnchainFunds"===e.payload.action&&(this.sendFundError=e.payload.message)})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="",this.transaction.amount&&this.selAmountUnit!==l.BQ.SATS?this.commonService.convertCurrency(this.transaction.amount,this.selAmountUnit===this.amountUnits[2]?l.BQ.OTHER:this.selAmountUnit,l.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,f.Q)(this.unSubs[2])).subscribe({next:e=>{this.transaction.amount=parseInt(e[l.BQ.SATS]),this.selAmountUnit=l.BQ.SATS,this.store.dispatch((0,k.Lz)({payload:this.transaction}))},error:e=>{this.selAmountUnit=l.BQ.SATS,this.amountError="Conversion Error: "+e}}):this.store.dispatch((0,k.Lz)({payload:this.transaction}))}get invalidValues(){return!this.transaction.address||""===this.transaction.address||!this.transaction.amount||this.transaction.amount<=0||!this.transaction.blocks||this.transaction.blocks<=0}resetData(){this.sendFundError="",this.transaction={}}onAmountUnitChange(e){const i=this,a=this.selAmountUnit===this.amountUnits[2]?l.BQ.OTHER:this.selAmountUnit;let s=e.value===this.amountUnits[2]?l.BQ.OTHER:e.value;this.transaction.amount&&this.selAmountUnit!==e.value&&this.commonService.convertCurrency(this.transaction.amount,a,s,this.amountUnits[2],this.fiatConversion).pipe((0,f.Q)(this.unSubs[3])).subscribe({next:r=>{this.selAmountUnit=e.value,i.transaction.amount=+i.decimalPipe.transform(r[s],i.currencyUnitFormats[s]).replace(/,/g,"")},error:r=>{this.amountError="Conversion Error: "+r,this.selAmountUnit=a,s=a}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(G.gP),t.rXU(R.il),t.rXU(M.h),t.rXU(p.QX),t.rXU(Q.En))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-send-modal"]],viewQuery:function(i,a){if(1&i&&t.GBs(Ta,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},decls:42,vars:15,consts:[["form","ngForm"],["addrs","ngModel"],["amnt","ngModel"],["blocks","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex","55"],["matInput","","autoFocus","","tabindex","1","name","addr","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","amt","type","number","tabindex","2","required","",3,"ngModelChange","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","60","fxLayoutAlign","space-between stretch","fxLayout","row wrap"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start center"],["matInput","","type","number","name","blocks","tabindex","8","required","true",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),t.EFF(5,"Send Payment"),t.k0s()(),t.j41(6,"button",9),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",10)(9,"form",11,0),t.bIt("submit",function(){return t.eBV(s),t.Njj(a.onSendFunds())})("reset",function(){return t.eBV(s),t.Njj(a.resetData())}),t.j41(11,"mat-form-field",12)(12,"mat-label"),t.EFF(13,"Bitcoin Address"),t.k0s(),t.j41(14,"input",13,1),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.transaction.address,m)||(a.transaction.address=m),t.Njj(m)}),t.k0s(),t.DNE(16,wa,2,0,"mat-error",14),t.k0s(),t.j41(17,"mat-form-field",15)(18,"mat-label"),t.EFF(19,"Amount"),t.k0s(),t.j41(20,"input",16,2),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.transaction.amount,m)||(a.transaction.amount=m),t.Njj(m)}),t.k0s(),t.j41(22,"span",17),t.EFF(23),t.k0s(),t.DNE(24,ja,2,1,"mat-error",14),t.k0s(),t.j41(25,"mat-form-field",18)(26,"mat-select",19),t.bIt("selectionChange",function(m){return t.eBV(s),t.Njj(a.onAmountUnitChange(m))}),t.DNE(27,Da,2,2,"mat-option",20),t.k0s()(),t.j41(28,"div",21)(29,"mat-form-field",22)(30,"mat-label"),t.EFF(31,"Target Confirmation Blocks"),t.k0s(),t.j41(32,"input",23,3),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.transaction.blocks,m)||(a.transaction.blocks=m),t.Njj(m)}),t.k0s(),t.DNE(34,Pa,2,0,"mat-error",14),t.k0s()(),t.nrm(35,"div",24),t.DNE(36,Aa,3,2,"div",25),t.j41(37,"div",26)(38,"button",27),t.EFF(39,"Clear Fields"),t.k0s(),t.j41(40,"button",28),t.EFF(41,"Send Funds"),t.k0s()()()()()()}2&i&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.R50("ngModel",a.transaction.address),t.R7$(2),t.Y8G("ngIf",!a.transaction.address),t.R7$(4),t.Y8G("step",100)("min",0),t.R50("ngModel",a.transaction.amount),t.R7$(3),t.SpI("",a.selAmountUnit," "),t.R7$(),t.Y8G("ngIf",!a.transaction.amount),t.R7$(2),t.Y8G("value",a.selAmountUnit),t.R7$(),t.Y8G("ngForOf",a.amountUnits),t.R7$(5),t.Y8G("step",1)("min",0),t.R50("ngModel",a.transaction.blocks),t.R7$(2),t.Y8G("ngIf",!a.transaction.blocks),t.R7$(2),t.Y8G("ngIf",""!==a.sendFundError))},dependencies:[p.Sq,p.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,B.tx,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.TL,g.yw,S.VO,X.wT,W.N,K.V]})}return n})();var ht=_(5837);const Na=()=>["all"],Ma=n=>({"error-border":n}),Ba=()=>["no_transaction"],ft=n=>({width:n}),$a=n=>({"display-none":n});function Va(n,o){if(1&n&&(t.j41(0,"mat-option",34),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Oa(n,o){1&n&&t.nrm(0,"mat-progress-bar",35)}function Ha(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Date/Time"),t.k0s())}function Ya(n,o){if(1&n&&(t.j41(0,"td",37),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Xa(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Address"),t.k0s())}function Ua(n,o){if(1&n&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.address)}}function za(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Blockhash"),t.k0s())}function Ja(n,o){if(1&n&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.blockHash)}}function qa(n,o){1&n&&(t.j41(0,"th",36),t.EFF(1,"Transaction ID"),t.k0s())}function Qa(n,o){if(1&n&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.txid)}}function Za(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1,"Amount (Sats)"),t.k0s())}function Wa(n,o){if(1&n&&(t.j41(0,"span",43),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.amount))}}function Ka(n,o){if(1&n&&(t.j41(0,"span",44),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&n){const e=t.XpG().$implicit;t.R7$(),t.SpI("(",t.bMT(2,1,-1*(null==e?null:e.amount)),")")}}function to(n,o){if(1&n&&(t.j41(0,"td",37),t.DNE(1,Wa,3,3,"span",41)(2,Ka,3,3,"span",42),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",(null==e?null:e.amount)>0||0===(null==e?null:e.amount)),t.R7$(),t.Y8G("ngIf",(null==e?null:e.amount)<0)}}function eo(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1,"Fees (Sats)"),t.k0s())}function no(n,o){if(1&n&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.fees))}}function io(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1,"Confirmations"),t.k0s())}function ao(n,o){if(1&n&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.bMT(3,1,null==e?null:e.confirmations)," ")}}function oo(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",48),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function so(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",49)(1,"button",50),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onTransactionClick(s,a))}),t.EFF(2,"View Info"),t.k0s()()}}function lo(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No transaction available."),t.k0s())}function ro(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting transactions..."),t.k0s())}function co(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function mo(n,o){if(1&n&&(t.j41(0,"td",51),t.DNE(1,lo,2,0,"p",52)(2,ro,2,0,"p",52)(3,co,2,1,"p",52),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function po(n,o){if(1&n&&t.nrm(0,"tr",53),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,$a,(null==e.listTransactions?null:e.listTransactions.data)&&(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)>0))}}function uo(n,o){1&n&&t.nrm(0,"tr",54)}function ho(n,o){1&n&&t.nrm(0,"tr",55)}let fo=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.commonService=i,this.store=a,this.datePipe=s,this.camelCaseWithSpaces=r,this.faHistory=F.Int,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transaction",recordsPerPage:l.md,sortBy:"timestamp",sortOrder:l.oi.DESCENDING},this.displayedColumns=[],this.listTransactions=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.apiCallStatus.status===l.wn.COMPLETED&&(this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,k.mh)({payload:{count:1e3,skip:0}}))),this.logger.info(this.displayedColumns))}),this.store.select(C.gN).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),e.transactions&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadTransactionsTable(e.transactions),this.logger.info(e)})}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.listTransactions.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(1e3*e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(1e3*(e[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}onTransactionClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"blockHash",value:e.blockHash||e.blockId_opt,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"txid",value:e.txid,title:"Transaction ID",width:100,explorerLink:"tx"}],[{key:"timestamp",value:e.timestamp,title:"Date/Time",width:50,type:l.UN.DATE_TIME},{key:"confirmations",value:e.confirmations,title:"Number of Confirmations",width:50,type:l.UN.NUMBER}],[{key:"fees",value:e.fees,title:"Fees (Sats)",width:50,type:l.UN.NUMBER},{key:"amount",value:e.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER}],[{key:"address",value:e.address,title:"Address",width:100,type:l.UN.STRING}]]}}}))}loadTransactionsTable(e){this.listTransactions=new c.I6([...e]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.listTransactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listTransactions)}onPageChange(e){this.store.dispatch((0,k.mh)({payload:{count:this.pageSize,skip:e.pageIndex*e.pageSize}}))}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(p.vh),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-transaction-history"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Transactions")}])],decls:52,vars:19,consts:[["table",""],["fxLayout","row wrap","fxLayoutAlign","start start","fxLayout.gt-sm","column","fxFlex","100","fxLayoutAlign.gt-sm","start stretch"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","blockHash"],["matColumnDef","txid"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","fees"],["matColumnDef","confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"div",3),t.nrm(3,"fa-icon",4),t.j41(4,"span",5),t.EFF(5,"Transaction History"),t.k0s()(),t.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",8),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,Va,2,2,"mat-option",9),t.k0s()()(),t.j41(13,"mat-form-field",7)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",10),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,Oa,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,Ha,2,0,"th",16)(24,Ya,3,4,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,Xa,2,0,"th",16)(27,Ua,4,4,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,za,2,0,"th",16)(30,Ja,4,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,qa,2,0,"th",16)(33,Qa,4,4,"td",17),t.bVm(),t.qex(34,21),t.DNE(35,Za,2,0,"th",22)(36,to,3,2,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,eo,2,0,"th",22)(39,no,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,io,2,0,"th",22)(42,ao,4,3,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,oo,6,0,"th",26)(45,so,3,0,"td",27),t.bVm(),t.qex(46,28),t.DNE(47,mo,4,3,"td",29),t.bVm(),t.DNE(48,po,1,3,"tr",30)(49,uo,1,0,"tr",31)(50,ho,1,0,"tr",32),t.k0s(),t.nrm(51,"mat-paginator",33),t.k0s()()()}2&i&&(t.R7$(3),t.Y8G("icon",a.faHistory),t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Na).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(3),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.listTransactions)("ngClass",t.eq3(16,Ma,""!==a.errorMessage)),t.R7$(28),t.Y8G("matFooterRowDef",t.lJ4(18,Ba)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,I.iy,A.ZF,A.Ld,p.QX,p.vh]})}return n})();function _o(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let go=(()=>{class n{constructor(e,i){this.store=e,this.router=i,this.faExchangeAlt=F._qq,this.faChartPie=F.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(U._c).pipe((0,f.Q)(this.unSubs[1])).subscribe(i=>{this.selNode=i}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[2])).subscribe(i=>{this.balances=[{title:"Total Balance",dataValue:i.onchainBalance.total||0},{title:"Confirmed",dataValue:i.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:i.onchainBalance.unconfirmed||0}]})}openSendFundsModal(){this.store.dispatch((0,v.xO)({payload:{data:{component:Tt}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain"]],decls:23,vars:5,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(i,a){if(1&i&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"On-chain Balance"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),t.nrm(7,"rtl-currency-unit-converter",6),t.k0s()()(),t.j41(8,"div",1),t.nrm(9,"fa-icon",2),t.j41(10,"span",3),t.EFF(11,"On-chain Transactions"),t.k0s()(),t.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),t.DNE(16,_o,2,3,"div",9),t.k0s(),t.nrm(17,"mat-tab-nav-panel",null,0),t.j41(19,"div",10),t.nrm(20,"router-outlet"),t.k0s(),t.j41(21,"div",10),t.nrm(22,"rtl-ecl-on-chain-transaction-history",11),t.k0s()()()()),2&i){const s=t.sdS(18);t.R7$(),t.Y8G("icon",a.faChartPie),t.R7$(6),t.Y8G("values",a.balances),t.R7$(2),t.Y8G("icon",a.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,ht.f,b.n3,b.Wk,fo]})}return n})();var wt=_(1975);function Co(n,o){if(1&n&&(t.j41(0,"span",10),t.EFF(1,"Channels"),t.k0s()),2&n){const e=t.XpG();t.FS9("matBadge",e.activeChannels)}}function yo(n,o){if(1&n&&(t.j41(0,"span",10),t.EFF(1,"Peers"),t.k0s()),2&n){const e=t.XpG();t.FS9("matBadge",e.activePeers)}}let bo=(()=>{class n{constructor(e,i){this.store=e,this.router=i,this.activePeers=0,this.activeChannels=0,this.faUsers=F.gdJ,this.faChartPie=F.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(e=>e instanceof b.gx)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.activePeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.activeChannels=e.channelsStatus&&e.channelsStatus.active&&e.channelsStatus.active.channels?e.channelsStatus.active.channels:0}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.balances=[{title:"Total Balance",dataValue:e.onchainBalance.total||0},{title:"Confirmed",dataValue:e.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:e.onchainBalance.unconfirmed||0}]})}onSelectedTabChange(e){this.router.navigateByUrl("/ecl/connections/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-connections"]],decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(i,a){1&i&&(t.j41(0,"div",0),t.nrm(1,"fa-icon",1),t.j41(2,"span",2),t.EFF(3,"On-chain Balance"),t.k0s()(),t.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),t.nrm(7,"rtl-currency-unit-converter",5),t.k0s()()(),t.j41(8,"div",0),t.nrm(9,"fa-icon",1),t.j41(10,"span",2),t.EFF(11,"Connections"),t.k0s()(),t.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),t.mxI("selectedIndexChange",function(r){return t.DH7(a.activeLink,r)||(a.activeLink=r),r}),t.bIt("selectedTabChange",function(r){return a.onSelectedTabChange(r)}),t.j41(16,"mat-tab"),t.DNE(17,Co,2,1,"ng-template",8),t.k0s(),t.j41(18,"mat-tab"),t.DNE(19,yo,2,1,"ng-template",8),t.k0s()(),t.j41(20,"div",9),t.nrm(21,"router-outlet"),t.k0s()()()()),2&i&&(t.R7$(),t.Y8G("icon",a.faChartPie),t.R7$(6),t.Y8G("values",a.balances),t.R7$(2),t.Y8G("icon",a.faUsers),t.R7$(6),t.R50("selectedIndex",a.activeLink))},dependencies:[w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,wt.k,D.ES,D.mq,D.T8,ht.f,b.n3]})}return n})();function Fo(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Eo=(()=>{class n{constructor(e,i,a){this.logger=e,this.store=i,this.router=a,this.faExchangeAlt=F._qq,this.faChartPie=F.W1p,this.currencyUnits=[],this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1]),(0,rt.E)(this.store.select(U._c))).subscribe(([i,a])=>{this.currencyUnits=a?.settings.currencyUnits||[],this.balances=a&&a.settings.userPersona===l.HW.OPERATOR?[{title:"Local Capacity",dataValue:i.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:i.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:i.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:i.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(i)})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-transactions"]],decls:21,vars:5,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(i,a){if(1&i&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Lightning Balance"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),t.nrm(7,"rtl-currency-unit-converter",6),t.k0s()()(),t.j41(8,"div",7),t.nrm(9,"fa-icon",2),t.j41(10,"span",3),t.EFF(11,"Lightning Transactions"),t.k0s()(),t.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),t.DNE(16,Fo,2,3,"div",10),t.k0s(),t.nrm(17,"mat-tab-nav-panel",null,0),t.j41(19,"div",11),t.nrm(20,"router-outlet"),t.k0s()()()()),2&i){const s=t.sdS(18);t.R7$(),t.Y8G("icon",a.faChartPie),t.R7$(6),t.Y8G("values",a.balances),t.R7$(2),t.Y8G("icon",a.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,ht.f,b.n3,b.Wk]})}return n})();function xo(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Lo=(()=>{class n{constructor(e){this.router=e,this.faMapSigns=F.knH,this.events=[],this.flgLoading=[!0],this.errorMessage="",this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"peers",name:"Routing Peers"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-routing"]],decls:15,vars:3,consts:[["tabPanel",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(i,a){if(1&i&&(t.j41(0,"div",1)(1,"div",2),t.nrm(2,"fa-icon",3),t.j41(3,"span",4),t.EFF(4,"Routing"),t.k0s()(),t.j41(5,"div",5)(6,"mat-card",6)(7,"mat-card-content",7)(8,"div",8)(9,"nav",9),t.DNE(10,xo,2,3,"div",10),t.k0s(),t.nrm(11,"mat-tab-nav-panel",null,0),t.k0s(),t.j41(13,"div",11),t.nrm(14,"router-outlet"),t.k0s()()()()()),2&i){const s=t.sdS(12);t.R7$(2),t.Y8G("icon",a.faMapSigns),t.R7$(7),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,b.n3,b.Wk]})}return n})();var ot=_(5951),jt=_(450),tt=_(6013);const So=["peersForm"],vo=["stepper"];function Ro(n,o){if(1&n&&t.EFF(0),2&n){const e=t.XpG();t.JRh(e.peerFormLabel)}}function Io(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Address is required."),t.k0s())}function ko(n,o){if(1&n&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.peerConnectionError)}}function To(n,o){if(1&n&&t.EFF(0),2&n){const e=t.XpG();t.JRh(e.channelFormLabel)}}function wo(n,o){if(1&n&&(t.j41(0,"div",36),t.nrm(1,"fa-icon",35),t.j41(2,"span",13)(3,"div"),t.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),t.k0s(),t.j41(5,"span",37)(6,"span"),t.EFF(7),t.k0s(),t.j41(8,"span"),t.EFF(9),t.k0s(),t.j41(10,"span"),t.EFF(11),t.k0s(),t.j41(12,"span"),t.EFF(13),t.k0s(),t.j41(14,"span"),t.EFF(15),t.k0s()()()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faInfoCircle),t.R7$(6),t.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown",""),t.R7$(2),t.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown",""),t.R7$(2),t.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown",""),t.R7$(2),t.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown",""),t.R7$(2),t.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown","")}}function jo(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function Do(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function Po(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function Go(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function Ao(n,o){if(1&n&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.channelConnectionError)}}let Dt=(()=>{class n{constructor(e,i,a,s,r,m,T){this.dialogRef=e,this.data=i,this.store=a,this.formBuilder=s,this.actions=r,this.logger=m,this.dataService=T,this.faExclamationTriangle=F.zpE,this.faInfoCircle=F.iW_,this.peerAddress="",this.totalBalance=0,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.data.message?(this.totalBalance=this.data.message.balance,this.peerAddress=this.data.message.peer&&this.data.message.peer.nodeId&&this.data.message.peer.address?this.data.message.peer.nodeId+"@"+this.data.message.peer.address:this.data.message.peer&&this.data.message.peer.nodeId&&!this.data.message.peer.address?this.data.message.peer.nodeId:""):(this.totalBalance=0,this.peerAddress=""),this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[d.k0.required]],peerAddress:[this.peerAddress,[d.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[d.k0.required,d.k0.min(1),d.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],feeRate:[null],hiddenAmount:["",[d.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.selNode=e,this.channelFormGroup.controls.isPrivate.setValue(!!e?.settings.unannouncedChannels)}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(e=>e.type===l.Uu.NEWLY_ADDED_PEER_ECL||e.type===l.Uu.FETCH_CHANNELS_ECL||e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{e.type===l.Uu.NEWLY_ADDED_PEER_ECL&&(this.logger.info(e.payload),this.flgEditable=!1,this.newlyAddedPeer=e.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),e.type===l.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close(),e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&("SaveNewPeer"===e.payload.action?this.peerConnectionError=e.payload.message:"SaveNewChannel"===e.payload.action&&(this.channelConnectionError=e.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,f.Q)(this.unSubs[2])).subscribe({next:e=>{this.recommendedFee=e},error:e=>{this.logger.error(e)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,k.sq)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){return this.channelFormGroup.controls.feeRate.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.feeRate.value?(this.channelFormGroup.controls.feeRate.setErrors({minimum:!0}),!0):!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||(this.channelConnectionError="",void this.store.dispatch((0,k.vL)({payload:{nodeId:this.newlyAddedPeer?.nodeId,amount:this.channelFormGroup.controls.fundingAmount.value,private:this.channelFormGroup.controls.isPrivate.value,feeRate:this.channelFormGroup.controls.feeRate.value}})))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(e){switch(e.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.nodeId):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.nodeId):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}e.selectedIndex{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(R.il),t.rXU(d.ze),t.rXU(Q.En),t.rXU(G.gP),t.rXU(et.u))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-connect-peer"]],viewQuery:function(i,a){if(1&i&&(t.GBs(So,5),t.GBs(vo,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first),t.mGM(s=t.lsd())&&(a.stepper=s.first)}},decls:59,vars:25,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","35","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxLayout","column","fxFlex","40"],["matInput","","formControlName","feeRate","type","number","name","feeRate","tabindex","7",3,"step","min"],["fxFlex","20","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Connect to a new peer"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),t.bIt("selectionChange",function(m){return t.eBV(s),t.Njj(a.stepSelectionChanged(m))}),t.j41(12,"mat-step",10)(13,"form",11),t.DNE(14,Ro,1,1,"ng-template",12),t.j41(15,"mat-form-field",13)(16,"mat-label"),t.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),t.k0s(),t.nrm(18,"input",14),t.DNE(19,Io,2,0,"mat-error",15),t.k0s(),t.DNE(20,ko,4,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onConnectPeer())}),t.EFF(23),t.k0s()()()(),t.j41(24,"mat-step",10)(25,"form",19),t.DNE(26,To,1,1,"ng-template",20),t.j41(27,"div",21),t.DNE(28,wo,16,6,"div",22),t.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),t.EFF(32,"Amount"),t.k0s(),t.nrm(33,"input",25),t.j41(34,"mat-hint"),t.EFF(35),t.nI1(36,"number"),t.k0s(),t.j41(37,"span",26),t.EFF(38," Sats "),t.k0s(),t.DNE(39,jo,2,0,"mat-error",15)(40,Do,2,0,"mat-error",15)(41,Po,2,1,"mat-error",15),t.k0s(),t.j41(42,"mat-form-field",27)(43,"mat-label"),t.EFF(44,"Fee (Sats/vByte)"),t.k0s(),t.nrm(45,"input",28),t.j41(46,"mat-hint"),t.EFF(47),t.k0s(),t.DNE(48,Go,2,1,"mat-error",15),t.k0s(),t.j41(49,"div",29)(50,"mat-slide-toggle",30),t.EFF(51,"Private Channel"),t.k0s()()()(),t.DNE(52,Ao,4,2,"div",16),t.j41(53,"div",17)(54,"button",31),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onOpenChannel())}),t.EFF(55),t.k0s()()()()(),t.j41(56,"div",32)(57,"button",33),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onClose())}),t.EFF(58),t.k0s()()()()()()}2&i&&(t.R7$(10),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",a.peerFormGroup)("editable",a.flgEditable),t.R7$(),t.Y8G("formGroup",a.peerFormGroup),t.R7$(6),t.Y8G("ngIf",null==a.peerFormGroup.controls.peerAddress.errors?null:a.peerFormGroup.controls.peerAddress.errors.required),t.R7$(),t.Y8G("ngIf",""!==a.peerConnectionError),t.R7$(3),t.JRh(""!==a.peerConnectionError?"Retry":"Add Peer"),t.R7$(),t.Y8G("stepControl",a.channelFormGroup)("editable",a.flgEditable),t.R7$(),t.Y8G("formGroup",a.channelFormGroup),t.R7$(3),t.Y8G("ngIf",a.recommendedFee.minimumFee),t.R7$(5),t.Y8G("step",1e3),t.R7$(2),t.SpI("Remaining: ",t.bMT(36,23,a.totalBalance-(a.channelFormGroup.controls.fundingAmount.value?a.channelFormGroup.controls.fundingAmount.value:0)),""),t.R7$(4),t.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.max),t.R7$(4),t.Y8G("step",1)("min",a.recommendedFee.minimumFee||0),t.R7$(2),t.SpI("Mempool Min: ",a.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",null==a.channelFormGroup.controls.feeRate.errors?null:a.channelFormGroup.controls.feeRate.errors.minimum),t.R7$(4),t.Y8G("ngIf",""!==a.channelConnectionError),t.R7$(3),t.JRh(""!==a.channelConnectionError?"Retry":"Open Channel"),t.R7$(3),t.JRh(null!=a.newlyAddedPeer&&a.newlyAddedPeer.nodeId?"Do It Later":"Close"))},dependencies:[p.bT,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.j4,d.JD,w.aY,h.DJ,h.sA,h.UI,j.$z,E.m2,E.MM,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,jt.sG,tt.V5,tt.Ti,tt.M6,W.N,K.V,p.QX]})}return n})();var Pt=_(5416),Gt=_(9157);const No=n=>({"background-color":n});function Mo(n,o){if(1&n&&(t.j41(0,"span",10)(1,"div"),t.EFF(2),t.nI1(3,"titlecase"),t.k0s()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(2),t.Lme("",i.nodeFeaturesEnum[e.key]||e.key,": ",t.bMT(3,2,e.value),"")}}function Bo(n,o){1&n&&(t.j41(0,"th",24),t.EFF(1,"Address"),t.k0s())}function $o(n,o){if(1&n&&(t.j41(0,"td",25),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(e)}}function Vo(n,o){1&n&&(t.j41(0,"th",26)(1,"div",27),t.EFF(2,"Actions"),t.k0s()())}function Oo(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",28)(1,"div",29)(2,"mat-select",30),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",31),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onConnectNode(a))}),t.EFF(5,"Connect"),t.k0s(),t.j41(6,"mat-option",32),t.bIt("copied",function(a){t.eBV(e);const s=t.XpG(2);return t.Njj(s.onCopyNodeURI(a))}),t.EFF(7,"Copy URI"),t.k0s()()()()}if(2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(6),t.Y8G("payload",(null==i.lookupResult?null:i.lookupResult.nodeId)+"@"+e)}}function Ho(n,o){1&n&&t.nrm(0,"tr",33)}function Yo(n,o){1&n&&t.nrm(0,"tr",34)}function Xo(n,o){if(1&n&&(t.j41(0,"div",2),t.nrm(1,"mat-divider",3),t.j41(2,"div",4)(3,"div",5)(4,"h4",6),t.EFF(5,"Alias"),t.k0s(),t.j41(6,"span",7),t.EFF(7),t.j41(8,"span",8),t.EFF(9),t.k0s()()(),t.j41(10,"div",9)(11,"h4",6),t.EFF(12,"Pub Key"),t.k0s(),t.j41(13,"span",10),t.EFF(14),t.k0s()()(),t.nrm(15,"mat-divider",3),t.j41(16,"div",4)(17,"div",5)(18,"h4",6),t.EFF(19,"Date/Time"),t.k0s(),t.j41(20,"span",7),t.EFF(21),t.nI1(22,"date"),t.k0s()(),t.j41(23,"div",9)(24,"h4",6),t.EFF(25,"Features"),t.k0s(),t.DNE(26,Mo,4,4,"span",11),t.nI1(27,"keyvalue"),t.k0s()(),t.nrm(28,"mat-divider",3),t.j41(29,"div",4)(30,"div",12)(31,"h4",6),t.EFF(32,"Signature"),t.k0s(),t.j41(33,"span",7),t.EFF(34),t.k0s()()(),t.nrm(35,"mat-divider",3),t.j41(36,"div",2)(37,"h4",13),t.EFF(38,"Addresses"),t.k0s(),t.j41(39,"div",14)(40,"table",15,0),t.qex(42,16),t.DNE(43,Bo,2,0,"th",17)(44,$o,2,1,"td",18),t.bVm(),t.qex(45,19),t.DNE(46,Vo,3,0,"th",20)(47,Oo,8,1,"td",21),t.bVm(),t.DNE(48,Ho,1,0,"tr",22)(49,Yo,1,0,"tr",23),t.k0s()()()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(null==e.lookupResult?null:e.lookupResult.alias),t.R7$(),t.Y8G("ngStyle",t.eq3(19,No,null==e.lookupResult?null:e.lookupResult.rgbColor)),t.R7$(),t.JRh(null!=e.lookupResult&&e.lookupResult.rgbColor?null==e.lookupResult?null:e.lookupResult.rgbColor:""),t.R7$(5),t.JRh(null==e.lookupResult?null:e.lookupResult.nodeId),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.i5U(22,14,1e3*(null==e.lookupResult?null:e.lookupResult.timestamp),"dd/MMM/y HH:mm")),t.R7$(5),t.Y8G("ngForOf",t.bMT(27,17,null==e.lookupResult?null:e.lookupResult.features.activated)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(null==e.lookupResult?null:e.lookupResult.signature),t.R7$(),t.Y8G("inset",!0),t.R7$(5),t.Y8G("dataSource",e.addresses),t.R7$(8),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns)}}let Uo=(()=>{class n{constructor(e,i,a){this.logger=e,this.snackBar=i,this.store=a,this.lookupResult={},this.addresses=new c.I6([]),this.displayedColumns=["address","actions"],this.nodeFeaturesEnum=l.Uq,this.information={},this.availableBalance=0,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.addresses=new c.I6(this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]:null,this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.information=e}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.availableBalance=e.onchainBalance.total||0})}onConnectNode(e){this.store.dispatch((0,v.xO)({payload:{data:{message:{peer:this.lookupResult.nodeId?{nodeId:this.lookupResult.nodeId,address:e}:null,information:this.information,balance:this.availableBalance},component:Dt}}}))}onCopyNodeURI(e){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+e)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(Pt.UG),t.rXU(R.il))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-node-lookup"]],viewQuery:function(i,a){if(1&i&&t.GBs(x.B4,5),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first)}},inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["table",""],["fxLayout","column",4,"ngIf"],["fxLayout","column"],[1,"my-1",3,"inset"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],["class","foreground-secondary-text w-100",4,"ngFor","ngForOf"],["fxFlex","100"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["matColumnDef","address"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(i,a){1&i&&t.DNE(0,Xo,50,21,"div",1),2&i&&t.Y8G("ngIf",a.lookupResult)},dependencies:[p.Sq,p.bT,p.B3,h.DJ,h.sA,h.UI,L.eI,Z.q,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,Gt.U,p.PV,p.vh,p.lG]})}return n})();const zo=["form"],Jo=n=>({"mt-1":!0,"mt-2":n});function qo(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder," is required.")}}function Qo(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Invalid ",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder,".")}}function Zo(n,o){if(1&n&&(t.j41(0,"div"),t.nrm(1,"rtl-ecl-node-lookup",25),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.Y8G("lookupResult",e.nodeLookupValue)}}function Wo(n,o){if(1&n&&(t.j41(0,"span",23),t.DNE(1,Zo,2,1,"div",24),t.k0s()),2&n){const e=t.XpG(2),i=t.sdS(23);t.R7$(),t.Y8G("ngIf",e.nodeLookupValue.nodeId)("ngIfElse",i)}}function Ko(n,o){1&n&&(t.j41(0,"span"),t.EFF(1,' fxFlex="100"'),t.j41(2,"h3"),t.EFF(3,"Error! Unable to find details!"),t.k0s()())}function ts(n,o){if(1&n&&(t.j41(0,"div",17)(1,"div",18)(2,"span",19),t.EFF(3),t.k0s()(),t.j41(4,"div",20),t.DNE(5,Wo,2,2,"span",21)(6,Ko,4,0,"span",22),t.k0s()()),2&n){const e=t.XpG();t.R7$(3),t.SpI("",e.lookupFields[e.selectedFieldId].name," Details"),t.R7$(),t.Y8G("ngSwitch",e.selectedFieldId),t.R7$(),t.Y8G("ngSwitchCase",0)}}function es(n,o){1&n&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find details!"),t.k0s())}let ns=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.commonService=i,this.store=a,this.actions=s,this.lookupKeyCtrl=new d.hs,this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Node ID"},{id:1,name:"Channel",placeholder:"Short Channel ID"}],this.flgLoading=[!0],this.faSearch=F.MjD,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKeyCtrl.setValue(window.history.state.lookupValue||"")),this.actions.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(e=>e.type===l.Uu.SET_LOOKUP_ECL||e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(e=>{if(e.type===l.Uu.SET_LOOKUP_ECL){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue=e.payload[0]?JSON.parse(JSON.stringify(e.payload[0])):{nodeid:""};break;case 1:this.channelLookupValue=JSON.parse(JSON.stringify(e.payload))||[]}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}e.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&e.payload.status===l.wn.ERROR&&"Lookup"===e.payload.action&&(this.flgLoading[0]="error")}),this.lookupKeyCtrl.valueChanges.pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1})}onLookup(){return this.lookupKeyCtrl.value?this.lookupKeyCtrl.value&&(this.lookupKeyCtrl.value.includes("@")||this.lookupKeyCtrl.value.includes(","))?(this.lookupKeyCtrl.setErrors({invalid:!0}),!0):void(0===(this.selectedFieldId||(this.selectedFieldId=0),this.flgSetLookupValue=!1,this.nodeLookupValue={},this.channelLookupValue=[],this.selectedFieldId)&&this.store.dispatch((0,k.zU)({payload:this.lookupKeyCtrl.value.trim()}))):(this.lookupKeyCtrl.setErrors({required:!0}),!0)}onSelectChange(e){this.resetData(),this.selectedFieldId=e.value}resetData(){this.flgSetLookupValue=!1,this.nodeLookupValue={},this.channelLookupValue=[],this.lookupKeyCtrl.setValue(""),this.lookupKeyCtrl.setErrors(null),this.form.resetForm()}clearLookupValue(){this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(Q.En))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-lookups"]],viewQuery:function(i,a){if(1&i&&t.GBs(zo,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},decls:24,vars:9,consts:[["form","ngForm"],["key",""],["errorBlock",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField"],["checked","",1,"mr-4",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"formControl"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",3)(1,"div",4)(2,"mat-card-content",5)(3,"form",6,0)(5,"div",7)(6,"mat-radio-group",8)(7,"mat-radio-button",9),t.EFF(8,"Node"),t.k0s()()(),t.j41(9,"mat-form-field",10)(10,"mat-label"),t.EFF(11),t.k0s(),t.nrm(12,"input",11,1),t.DNE(14,qo,2,1,"mat-error",12)(15,Qo,2,1,"mat-error",12),t.k0s(),t.j41(16,"div",13)(17,"button",14),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(18,"Clear"),t.k0s(),t.j41(19,"button",15),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onLookup())}),t.EFF(20,"Lookup"),t.k0s()()(),t.DNE(21,ts,7,3,"div",16),t.k0s()()(),t.DNE(22,es,2,0,"ng-template",null,2,t.C5r)}2&i&&(t.R7$(7),t.Y8G("value",0),t.R7$(2),t.Y8G("ngClass",t.eq3(7,Jo,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),t.R7$(2),t.JRh((null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key"),t.R7$(),t.Y8G("formControl",a.lookupKeyCtrl),t.R7$(2),t.Y8G("ngIf",null==a.lookupKeyCtrl.errors?null:a.lookupKeyCtrl.errors.required),t.R7$(),t.Y8G("ngIf",null==a.lookupKeyCtrl.errors?null:a.lookupKeyCtrl.errors.invalid),t.R7$(6),t.Y8G("ngIf",a.flgSetLookupValue))},dependencies:[p.YU,p.bT,p.ux,p.e1,p.fG,d.qT,d.me,d.BC,d.cb,d.YS,d.cV,d.l_,h.DJ,h.sA,h.UI,L.PW,j.$z,E.m2,O.fg,g.rl,g.nJ,g.TL,ot.VT,ot._g,Uo],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]})}return n})();var is=_(396);let as=(()=>{class n{constructor(e,i){this.store=e,this.eclEffects=i,this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,k.XT)()),this.eclEffects.setNewAddress.pipe((0,q.s)(1)).subscribe(e=>{this.newAddress=e,setTimeout(()=>{this.store.dispatch((0,v.xO)({payload:{data:{address:this.newAddress,addressType:"",component:is.f}}}))},0)})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(pt.B))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-receive"]],decls:4,vars:0,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","1",3,"click"]],template:function(i,a){1&i&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return a.onGenerateAddress()}),t.EFF(3,"Generate Address"),t.k0s()()())},dependencies:[h.DJ,h.sA,h.UI,j.$z]})}return n})(),os=(()=>{class n{constructor(e,i){this.store=e,this.activatedRoute=i,this.sweepAll=!1,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.activatedRoute.data.pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.sweepAll=e.sweepAll})}openSendFundsModal(){this.store.dispatch((0,v.xO)({payload:{data:{sweepAll:this.sweepAll,component:Tt}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(b.nX))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-on-chain-send"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(i,a){1&i&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return a.openSendFundsModal()}),t.EFF(3),t.k0s()()()),2&i&&(t.R7$(3),t.JRh(a.sweepAll?"Sweep All":"Send Funds"))},dependencies:[h.DJ,h.sA,h.UI,j.$z]})}return n})();var _t=_(9172),At=_(6354),st=_(850),ss=_(92);const ls=["form"];function rs(n,o){if(1&n&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e.alias?e.alias:e.nodeId?e.nodeId:"")}}function cs(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Peer alias is required."),t.k0s())}function ms(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Peer not found in the list."),t.k0s())}function ps(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-form-field",6)(1,"mat-label"),t.EFF(2,"Peer Alias"),t.k0s(),t.j41(3,"input",33),t.bIt("change",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(4,"mat-autocomplete",34,4),t.bIt("optionSelected",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.DNE(6,rs,2,2,"mat-option",35),t.nI1(7,"async"),t.k0s(),t.DNE(8,cs,2,0,"mat-error",20)(9,ms,2,0,"mat-error",20),t.k0s()}if(2&n){const e=t.sdS(5),i=t.XpG();t.R7$(3),t.Y8G("formControl",i.selectedPeer)("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",i.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(7,6,i.filteredPeers)),t.R7$(2),t.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.required),t.R7$(),t.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.notfound)}}function us(n,o){1&n&&t.eu8(0)}function ds(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function hs(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function fs(n,o){if(1&n&&(t.j41(0,"div",37),t.nrm(1,"fa-icon",38),t.j41(2,"span",39)(3,"div"),t.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),t.k0s(),t.j41(5,"span",40)(6,"span"),t.EFF(7),t.k0s(),t.j41(8,"span"),t.EFF(9),t.k0s(),t.j41(10,"span"),t.EFF(11),t.k0s(),t.j41(12,"span"),t.EFF(13),t.k0s(),t.j41(14,"span"),t.EFF(15),t.k0s()()()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faInfoCircle),t.R7$(6),t.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown",""),t.R7$(2),t.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown",""),t.R7$(2),t.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown",""),t.R7$(2),t.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown",""),t.R7$(2),t.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown","")}}function _s(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function gs(n,o){if(1&n&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.channelConnectionError)}}function Cs(n,o){if(1&n&&(t.j41(0,"div",41),t.nrm(1,"fa-icon",38),t.DNE(2,gs,2,1,"span",20),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.channelConnectionError)}}function ys(n,o){if(1&n&&(t.j41(0,"mat-expansion-panel",43)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),t.EFF(4,"Peer: \xa0"),t.k0s(),t.j41(5,"strong",44),t.EFF(6),t.k0s()()(),t.j41(7,"div",13)(8,"div",5)(9,"div",6)(10,"h4",45),t.EFF(11,"Pubkey"),t.k0s(),t.j41(12,"span",46),t.EFF(13),t.k0s()()(),t.nrm(14,"mat-divider",47),t.j41(15,"div",5)(16,"div",48)(17,"h4",45),t.EFF(18,"Address"),t.k0s(),t.j41(19,"span",49),t.EFF(20),t.k0s()(),t.j41(21,"div",48)(22,"h4",45),t.EFF(23,"State"),t.k0s(),t.j41(24,"span",49),t.EFF(25),t.nI1(26,"titlecase"),t.k0s()()()()()),2&n){const e=t.XpG(2);t.R7$(6),t.JRh((null==e.peer?null:e.peer.alias)||(null==e.peer?null:e.peer.nodeId)),t.R7$(7),t.JRh(e.peer.nodeId),t.R7$(7),t.JRh(null==e.peer?null:e.peer.address),t.R7$(5),t.JRh(t.bMT(26,4,null==e.peer?null:e.peer.state))}}function bs(n,o){if(1&n&&t.DNE(0,ys,27,6,"mat-expansion-panel",42),2&n){const e=t.XpG();t.Y8G("ngIf",e.peer)}}let Nt=(()=>{class n{constructor(e,i,a,s,r,m){this.logger=e,this.dialogRef=i,this.data=a,this.store=s,this.actions=r,this.dataService=m,this.selectedPeer=new d.hs,this.faExclamationTriangle=F.zpE,this.faInfoCircle=F.iW_,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.feeRate=null,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(U._c).pipe((0,f.Q)(this.unSubs[0])).subscribe(a=>{this.selNode=a,this.isPrivate=!!a?.settings.unannouncedChannels}),this.actions.pipe((0,f.Q)(this.unSubs[1]),(0,H.p)(a=>a.type===l.Uu.UPDATE_API_CALL_STATUS_ECL||a.type===l.Uu.FETCH_CHANNELS_ECL)).subscribe(a=>{a.type===l.Uu.UPDATE_API_CALL_STATUS_ECL&&a.payload.status===l.wn.ERROR&&"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message),a.type===l.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close()});let e="",i="";this.sortedPeers=this.peers.sort((a,s)=>(e=a.alias?a.alias.toLowerCase():a.nodeId?a.nodeId.toLowerCase():"",i=s.alias?s.alias.toLowerCase():a.nodeId?a.nodeId.toLowerCase():"",ei?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,f.Q)(this.unSubs[2]),(0,_t.Z)(""),(0,At.T)(a=>"string"==typeof a?a:a.alias?a.alias:a.nodeId),(0,At.T)(a=>a?this.filterPeers(a):this.sortedPeers.slice()))}filterPeers(e){return this.sortedPeers?.filter(i=>0===i.alias?.toLowerCase().indexOf(e?e.toLowerCase():""))}displayFn(e){return e&&e.alias?e.alias:e&&e.nodeId?e.nodeId:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.nodeId?this.selectedPeer.value.nodeId:null,"string"==typeof this.selectedPeer.value){const e=this.peers?.filter(i=>i.alias?.length===this.selectedPeer.value.length&&0===i.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===e.length&&e[0].nodeId&&(this.selectedPubkey=e[0].nodeId)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.feeRate=null,this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!this.selNode?.settings.unannouncedChannels,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(e){this.advancedTitle="Advanced Options",e?this.feeRate&&this.feeRate>0&&(this.advancedTitle=this.advancedTitle+" | Fee (Sats/vByte): "+this.feeRate):this.dataService.getRecommendedFeeRates().pipe((0,f.Q)(this.unSubs[3])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}})}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||this.feeRate&&this.recommendedFee.minimumFee>this.feeRate)return!0;const e={nodeId:this.peer&&this.peer.nodeId?this.peer.nodeId:this.selectedPubkey,amount:this.fundingAmount,private:this.isPrivate};this.feeRate&&(e.feeRate=this.feeRate),this.store.dispatch((0,k.vL)({payload:e}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(B.CP),t.rXU(B.Vh),t.rXU(R.il),t.rXU(Q.En),t.rXU(et.u))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-open-channel"]],viewQuery:function(i,a){if(1&i&&t.GBs(ls,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},decls:56,vars:21,consts:[["form","ngForm"],["amount","ngModel"],["fee","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","11","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amount",3,"ngModelChange","step","min","max","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","25","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxFlex","100","fxLayout","row","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","49"],["matInput","","type","number","name","fee","tabindex","7",3,"ngModelChange","step","min","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","10"],["type","text","aria-label","Peers","matInput","","tabindex","1","required","",3,"change","formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),t.EFF(5),t.k0s()(),t.j41(6,"button",10),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",11)(9,"form",12,0),t.bIt("submit",function(){return t.eBV(s),t.Njj(a.onOpenChannel())})("reset",function(){return t.eBV(s),t.Njj(a.resetData())}),t.j41(11,"div",13),t.DNE(12,ps,10,8,"mat-form-field",14),t.k0s(),t.DNE(13,us,1,0,"ng-container",15),t.j41(14,"div",13)(15,"div",16)(16,"mat-form-field",17)(17,"mat-label"),t.EFF(18,"Amount"),t.k0s(),t.j41(19,"input",18,1),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.fundingAmount,m)||(a.fundingAmount=m),t.Njj(m)}),t.k0s(),t.j41(21,"mat-hint"),t.EFF(22),t.nI1(23,"number"),t.k0s(),t.j41(24,"span",19),t.EFF(25,"Sats "),t.k0s(),t.DNE(26,ds,2,0,"mat-error",20)(27,hs,2,1,"mat-error",20),t.k0s(),t.j41(28,"div",21)(29,"mat-slide-toggle",22),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.isPrivate,m)||(a.isPrivate=m),t.Njj(m)}),t.EFF(30,"Private Channel"),t.k0s()()(),t.j41(31,"mat-expansion-panel",23),t.bIt("closed",function(){return t.eBV(s),t.Njj(a.onAdvancedPanelToggle(!0))})("opened",function(){return t.eBV(s),t.Njj(a.onAdvancedPanelToggle(!1))}),t.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),t.EFF(35),t.k0s()()(),t.j41(36,"div",24),t.DNE(37,fs,16,6,"div",25),t.j41(38,"div",16)(39,"div",26)(40,"mat-form-field",27)(41,"mat-label"),t.EFF(42,"Fee (Sats/vByte)"),t.k0s(),t.j41(43,"input",28,2),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.feeRate,m)||(a.feeRate=m),t.Njj(m)}),t.k0s(),t.j41(45,"mat-hint"),t.EFF(46),t.k0s(),t.DNE(47,_s,2,1,"mat-error",20),t.k0s()()()()()(),t.DNE(48,Cs,3,2,"div",29),t.j41(49,"div",30)(50,"button",31),t.EFF(51,"Clear Fields"),t.k0s(),t.j41(52,"button",32),t.EFF(53,"Open Channel"),t.k0s()()()()()(),t.DNE(54,bs,1,1,"ng-template",null,3,t.C5r)}if(2&i){const s=t.sdS(20),r=t.sdS(55);t.R7$(5),t.JRh(a.alertTitle),t.R7$(7),t.Y8G("ngIf",!a.peer&&a.peers&&a.peers.length>0),t.R7$(),t.Y8G("ngTemplateOutlet",r),t.R7$(6),t.Y8G("step",1e3)("min",1)("max",a.totalBalance),t.R50("ngModel",a.fundingAmount),t.R7$(3),t.SpI("Remaining: ",t.bMT(23,19,a.totalBalance-(a.fundingAmount?a.fundingAmount:0)),""),t.R7$(4),t.Y8G("ngIf",null==s.errors?null:s.errors.required),t.R7$(),t.Y8G("ngIf",null==s.errors?null:s.errors.max),t.R7$(2),t.R50("ngModel",a.isPrivate),t.R7$(6),t.JRh(a.advancedTitle),t.R7$(2),t.Y8G("ngIf",a.recommendedFee.minimumFee),t.R7$(6),t.Y8G("step",1)("min",a.recommendedFee.minimumFee),t.R50("ngModel",a.feeRate),t.R7$(3),t.SpI("Mempool Min: ",a.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",a.feeRate&&a.feeRate{class n{constructor(e,i,a){this.logger=e,this.store=i,this.router=a,this.numOfOpenChannels=0,this.numOfPendingChannels=0,this.numOfInactiveChannels=0,this.information={},this.peers=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending"},{link:"inactive",name:"Inactive"}],this.activeLink=0,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(e=>e.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(e=>e instanceof b.gx)).subscribe({next:e=>{this.activeLink=this.links.findIndex(i=>i.link===e.urlAfterRedirects.substring(e.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.numOfOpenChannels=e.channelsStatus&&e.channelsStatus.active&&e.channelsStatus.active.channels?e.channelsStatus.active.channels:0,this.numOfPendingChannels=e.channelsStatus&&e.channelsStatus.pending&&e.channelsStatus.pending.channels?e.channelsStatus.pending.channels:0,this.numOfInactiveChannels=e.channelsStatus&&e.channelsStatus.inactive&&e.channelsStatus.inactive.channels?e.channelsStatus.inactive.channels:0,this.logger.info(e)}),this.store.select(U._c).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.selNode=e}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.peers=e.peers}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[5])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}onOpenChannel(){this.store.dispatch((0,v.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:Nt}}}))}onSelectedTabChange(e){this.router.navigateByUrl("/ecl/connections/channels/"+this.links[e.index].link)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channels-tables"]],decls:14,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(i,a){1&i&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return a.onOpenChannel()}),t.EFF(3,"Open Channel"),t.k0s()(),t.j41(4,"div",3)(5,"mat-tab-group",4),t.mxI("selectedIndexChange",function(r){return t.DH7(a.activeLink,r)||(a.activeLink=r),r}),t.bIt("selectedTabChange",function(r){return a.onSelectedTabChange(r)}),t.j41(6,"mat-tab"),t.DNE(7,Fs,2,1,"ng-template",5),t.k0s(),t.j41(8,"mat-tab"),t.DNE(9,Es,2,1,"ng-template",5),t.k0s(),t.j41(10,"mat-tab"),t.DNE(11,xs,2,1,"ng-template",5),t.k0s()(),t.j41(12,"div",6),t.nrm(13,"router-outlet"),t.k0s()()()),2&i&&(t.R7$(5),t.R50("selectedIndex",a.activeLink))},dependencies:[h.DJ,h.sA,h.UI,j.$z,wt.k,D.ES,D.mq,D.T8,b.n3]})}return n})();const Ss=n=>({"xs-scroll-y":n}),vs=(n,o)=>({"mt-2":n,"mt-1":o});function Rs(n,o){if(1&n&&(t.j41(0,"div",12)(1,"h4",13),t.EFF(2,"Short Channel ID"),t.k0s(),t.j41(3,"span",14),t.EFF(4),t.k0s()()),2&n){const e=t.XpG();t.R7$(4),t.JRh(e.channel.shortChannelId)}}function Is(n,o){if(1&n&&(t.j41(0,"div",12)(1,"h4",13),t.EFF(2,"State"),t.k0s(),t.j41(3,"span",17),t.EFF(4),t.nI1(5,"titlecase"),t.k0s()()),2&n){const e=t.XpG();t.R7$(4),t.JRh(t.bMT(5,1,e.channel.state))}}function ks(n,o){if(1&n&&(t.j41(0,"div")(1,"div",10)(2,"div",12)(3,"h4",13),t.EFF(4,"Local Balance (Sats)"),t.k0s(),t.j41(5,"span",17),t.EFF(6),t.nI1(7,"number"),t.k0s()(),t.j41(8,"div",12)(9,"h4",13),t.EFF(10,"Remote Balance (Sats)"),t.k0s(),t.j41(11,"span",17),t.EFF(12),t.nI1(13,"number"),t.k0s()()(),t.nrm(14,"mat-divider",15),t.j41(15,"div",10)(16,"div",12)(17,"h4",13),t.EFF(18,"Base Fee (mSats)"),t.k0s(),t.j41(19,"span",17),t.EFF(20),t.nI1(21,"number"),t.k0s()(),t.j41(22,"div",12)(23,"h4",13),t.EFF(24,"Fee Rate (mili mSats)"),t.k0s(),t.j41(25,"span",17),t.EFF(26),t.nI1(27,"number"),t.k0s()()(),t.nrm(28,"mat-divider",15),t.k0s()),2&n){const e=t.XpG();t.R7$(6),t.JRh(t.bMT(7,6,e.channel.toLocal)),t.R7$(6),t.JRh(t.bMT(13,8,e.channel.toRemote)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.bMT(21,10,e.channel.feeBaseMsat)),t.R7$(6),t.JRh(t.bMT(27,12,e.channel.feeProportionalMillionths)),t.R7$(2),t.Y8G("inset",!0)}}function Ts(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Show Advanced"),t.k0s())}function ws(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Hide Advanced"),t.k0s())}function js(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",23),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onShowAdvanced())}),t.DNE(1,Ts,2,0,"p",24)(2,ws,2,0,"ng-template",null,0,t.C5r),t.k0s()}if(2&n){const e=t.sdS(3),i=t.XpG();t.R7$(),t.Y8G("ngIf",!i.showAdvanced)("ngIfElse",e)}}function Ds(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",25),t.bIt("copied",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onCopyChanID(a))}),t.EFF(1,"Copy Short Channel ID"),t.k0s()}if(2&n){const e=t.XpG();t.Y8G("payload",e.channel.shortChannelId)}}function Ps(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",26),t.bIt("copied",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onCopyChanID(a))}),t.EFF(1,"Copy Channel ID"),t.k0s()}if(2&n){const e=t.XpG();t.Y8G("payload",e.channel.channelId)}}let gt=(()=>{class n{constructor(e,i,a,s,r,m){this.dialogRef=e,this.data=i,this.logger=a,this.commonService=s,this.snackBar=r,this.router=m,this.faReceipt=F.Mf0,this.showAdvanced=!1,this.channelsType="open",this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.channel=this.data.channel,this.channelsType=this.data.channelsType||"",this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(e){this.snackBar.open("open"===this.channelsType?"Short channel ID "+e+" copied.":"Channel ID copied."),this.logger.info("Copied Text: "+e)}onGoToLink(e,i){this.router.navigateByUrl("/ecl/graph/lookups",{state:{lookupType:e,lookupValue:i}}),this.onClose()}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(G.gP),t.rXU(M.h),t.rXU(Pt.UG),t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-information"]],decls:59,vars:27,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50",4,"ngIf"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["tabindex","1","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","2","class","mr-1",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","4","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["mat-button","","color","primary","type","reset","tabindex","2",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","4","type","submit","rtlClipboard","",3,"copied","payload"]],template:function(i,a){1&i&&(t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),t.nrm(4,"fa-icon",5),t.j41(5,"span",6),t.EFF(6,"Channel Information"),t.k0s()(),t.j41(7,"button",7),t.bIt("click",function(){return a.onClose()}),t.EFF(8,"X"),t.k0s()(),t.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10),t.DNE(12,Rs,5,1,"div",11),t.j41(13,"div",12)(14,"h4",13),t.EFF(15,"Peer Alias"),t.k0s(),t.j41(16,"span",14),t.EFF(17),t.k0s()(),t.DNE(18,Is,6,3,"div",11),t.k0s(),t.nrm(19,"mat-divider",15),t.j41(20,"div",10)(21,"div",2)(22,"h4",13),t.EFF(23,"Channel ID"),t.k0s(),t.j41(24,"span",14),t.EFF(25),t.k0s()()(),t.nrm(26,"mat-divider",15),t.j41(27,"div",10)(28,"div",2)(29,"h4",13),t.EFF(30,"Peer Public Key"),t.k0s(),t.j41(31,"span",16),t.bIt("click",function(){return a.onGoToLink("0",a.channel.nodeId)}),t.EFF(32),t.k0s()()(),t.nrm(33,"mat-divider",15),t.j41(34,"div",10)(35,"div",2)(36,"h4",13),t.EFF(37,"State"),t.k0s(),t.j41(38,"span",17),t.EFF(39),t.nI1(40,"titlecase"),t.k0s()()(),t.nrm(41,"mat-divider",15),t.j41(42,"div",10)(43,"div",12)(44,"h4",13),t.EFF(45,"Private"),t.k0s(),t.j41(46,"span",17),t.EFF(47),t.k0s()(),t.j41(48,"div",12)(49,"h4",13),t.EFF(50,"Initiator"),t.k0s(),t.j41(51,"span",17),t.EFF(52),t.k0s()()(),t.nrm(53,"mat-divider",15),t.DNE(54,ks,29,14,"div",18),t.j41(55,"div",19),t.DNE(56,js,4,2,"button",20)(57,Ds,2,1,"button",21)(58,Ps,2,1,"button",22),t.k0s()()()()()),2&i&&(t.R7$(4),t.Y8G("icon",a.faReceipt),t.R7$(5),t.Y8G("ngClass",t.eq3(22,Ss,a.screenSize===a.screenSizeEnum.XS)),t.R7$(3),t.Y8G("ngIf","open"===a.channelsType),t.R7$(5),t.JRh(a.channel.alias),t.R7$(),t.Y8G("ngIf","open"!==a.channelsType),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(a.channel.channelId),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.SpI(" ",a.channel.nodeId," "),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.bMT(40,20,a.channel.state)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(a.channel.announceChannel?"No":"Yes"),t.R7$(5),t.JRh(a.channel.isInitiator?"Yes":"No"),t.R7$(),t.Y8G("inset",!0),t.R7$(),t.Y8G("ngIf",a.showAdvanced&&"open"===a.channelsType),t.R7$(),t.Y8G("ngClass",t.l_i(24,vs,!a.showAdvanced,a.showAdvanced)),t.R7$(),t.Y8G("ngIf","open"===a.channelsType),t.R7$(),t.Y8G("ngIf","open"===a.channelsType),t.R7$(),t.Y8G("ngIf","open"!==a.channelsType))},dependencies:[p.YU,p.bT,w.aY,h.DJ,h.sA,h.UI,L.PW,j.$z,E.m2,E.MM,Z.q,J.oV,Gt.U,W.N,p.QX,p.PV]})}return n})();var Ct=_(7673),yt=_(1001),Gs=_(6949);const nt=(n,o)=>({"small-svg":n,"large-svg":o});function As(n,o){1&n&&t.eu8(0)}function Ns(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.qSk(),t.j41(1,"svg",7),t.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17)(12,"path",18)(13,"path",19)(14,"path",20)(15,"path",21)(16,"path",22)(17,"path",23)(18,"path",24)(19,"path",25)(20,"path",26)(21,"path",27)(22,"path",28)(23,"path",29)(24,"path",30)(25,"path",31)(26,"path",32)(27,"path",33)(28,"path",34)(29,"path",35)(30,"path",36)(31,"path",37)(32,"path",38)(33,"path",39)(34,"path",40)(35,"path",41)(36,"path",42)(37,"path",43)(38,"path",44)(39,"path",45)(40,"path",46),t.k0s(),t.joV(),t.j41(41,"div",47)(42,"mat-card-title"),t.EFF(43,"Circular rebalancing explained."),t.k0s()(),t.j41(44,"div",48)(45,"mat-card-subtitle",49),t.EFF(46," Circular payments are a completely off-chain rebalancing strategy where a node makes a payment to itself across a circular path of chained payment channels. "),t.k0s()()()}if(2&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Ms(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.qSk(),t.j41(1,"svg",51),t.nrm(2,"path",52)(3,"path",53)(4,"path",54)(5,"path",55)(6,"path",56)(7,"path",57)(8,"path",58)(9,"path",59)(10,"path",60)(11,"path",61)(12,"path",62)(13,"path",63)(14,"path",64)(15,"path",65)(16,"path",66)(17,"path",67)(18,"path",68)(19,"path",69)(20,"path",70)(21,"path",71)(22,"path",72)(23,"path",73)(24,"path",74)(25,"path",75)(26,"path",76)(27,"path",77)(28,"path",78)(29,"path",79)(30,"path",80)(31,"path",81)(32,"path",82)(33,"path",52)(34,"path",53)(35,"path",54)(36,"path",55)(37,"path",56)(38,"path",57)(39,"path",58)(40,"path",59)(41,"path",60)(42,"path",83)(43,"path",84)(44,"path",63)(45,"path",85)(46,"path",86)(47,"path",87)(48,"path",67)(49,"path",68)(50,"path",69)(51,"path",70)(52,"path",71)(53,"path",72)(54,"path",73)(55,"path",74)(56,"path",75)(57,"path",76)(58,"path",77)(59,"path",78)(60,"path",79)(61,"path",80)(62,"path",88)(63,"path",82)(64,"path",89),t.j41(65,"defs")(66,"linearGradient",90),t.nrm(67,"stop",91)(68,"stop",92)(69,"stop",93),t.k0s(),t.j41(70,"linearGradient",94),t.nrm(71,"stop",91)(72,"stop",92)(73,"stop",93),t.k0s(),t.j41(74,"linearGradient",95),t.nrm(75,"stop",91)(76,"stop",92)(77,"stop",93),t.k0s(),t.j41(78,"linearGradient",96),t.nrm(79,"stop",91)(80,"stop",92)(81,"stop",93),t.k0s(),t.j41(82,"linearGradient",97),t.nrm(83,"stop",91)(84,"stop",92)(85,"stop",93),t.k0s(),t.j41(86,"linearGradient",98),t.nrm(87,"stop",91)(88,"stop",92)(89,"stop",93),t.k0s()()(),t.joV(),t.j41(90,"div",47)(91,"mat-card-title"),t.EFF(92,"Step 1: Unbalanced channel"),t.k0s()(),t.j41(93,"div",48)(94,"mat-card-subtitle",49),t.EFF(95," It starts with an unbalanced channel, that needs to be rebalanced in order to continue to route payments. "),t.k0s()()()}if(2&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Bs(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.qSk(),t.j41(1,"svg",99),t.nrm(2,"path",100)(3,"path",101)(4,"path",102)(5,"path",103)(6,"path",104)(7,"path",105)(8,"path",106)(9,"path",107)(10,"path",108)(11,"path",109)(12,"path",110)(13,"path",111)(14,"path",112)(15,"path",113)(16,"path",114)(17,"path",52)(18,"path",115)(19,"path",116)(20,"path",117)(21,"path",118)(22,"path",119)(23,"path",120)(24,"path",121)(25,"path",122)(26,"path",83)(27,"path",84)(28,"path",123)(29,"path",124)(30,"path",125)(31,"path",126)(32,"path",67)(33,"path",127)(34,"path",128)(35,"path",129)(36,"path",130)(37,"path",131)(38,"path",132)(39,"path",74)(40,"path",75)(41,"path",133)(42,"path",77)(43,"path",78)(44,"path",79)(45,"path",80)(46,"path",134)(47,"path",135)(48,"path",136),t.j41(49,"defs")(50,"linearGradient",137),t.nrm(51,"stop",91)(52,"stop",92)(53,"stop",93),t.k0s(),t.j41(54,"linearGradient",138),t.nrm(55,"stop",91)(56,"stop",92)(57,"stop",93),t.k0s(),t.j41(58,"linearGradient",139),t.nrm(59,"stop",91)(60,"stop",92)(61,"stop",93),t.k0s()()(),t.joV(),t.j41(62,"div",47)(63,"mat-card-title"),t.EFF(64,"Step 2: Invoice/Payment"),t.k0s()(),t.j41(65,"div",48)(66,"mat-card-subtitle",49),t.EFF(67," All you have to do is make a payment to yourself in a favorable direction by generating and paying an invoice. This is taken care automatically by your node. "),t.k0s()()()}if(2&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function $s(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.qSk(),t.j41(1,"svg",140),t.nrm(2,"path",141)(3,"path",142)(4,"path",143)(5,"path",144)(6,"path",145)(7,"path",146)(8,"path",147)(9,"path",148)(10,"path",149)(11,"path",150)(12,"path",151)(13,"path",152)(14,"path",153)(15,"path",154)(16,"path",155)(17,"path",156)(18,"path",157)(19,"path",158)(20,"path",159)(21,"path",160)(22,"path",161)(23,"path",162)(24,"path",163)(25,"path",164)(26,"path",163)(27,"path",165)(28,"path",166)(29,"path",167)(30,"path",168)(31,"path",169)(32,"path",170)(33,"path",171)(34,"path",172)(35,"path",173)(36,"path",174)(37,"path",175)(38,"path",176)(39,"path",177)(40,"path",178)(41,"path",179),t.j41(42,"defs")(43,"linearGradient",180),t.nrm(44,"stop",91)(45,"stop",92)(46,"stop",93),t.k0s()()(),t.joV(),t.j41(47,"div",47)(48,"mat-card-title"),t.EFF(49,"Step 3: Rebalance amount"),t.k0s()(),t.j41(50,"div",48)(51,"mat-card-subtitle",49),t.EFF(52," You will be moving part or all of the local balance to the remote side. For the route to be circular, there should be at least 3 nodes involved. "),t.k0s()()()}if(2&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Vs(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onSwipe(a))}),t.qSk(),t.j41(1,"svg",140),t.nrm(2,"path",181)(3,"path",143)(4,"path",182)(5,"path",145)(6,"path",146)(7,"path",183)(8,"path",148)(9,"path",184)(10,"path",185)(11,"path",186)(12,"path",187)(13,"path",188)(14,"path",189)(15,"path",190)(16,"path",191)(17,"path",192)(18,"path",158)(19,"path",193)(20,"path",194)(21,"path",179)(22,"path",160)(23,"path",161)(24,"path",195)(25,"path",163)(26,"path",164)(27,"path",163)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",196)(33,"path",170)(34,"path",197)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",198),t.j41(41,"defs")(42,"linearGradient",199),t.nrm(43,"stop",91)(44,"stop",92)(45,"stop",93),t.k0s()()(),t.joV(),t.j41(46,"div",47)(47,"mat-card-title"),t.EFF(48,"Rebalance successful!"),t.k0s()(),t.j41(49,"div",48)(50,"mat-card-subtitle",49),t.EFF(51," Your channel is successfully rebalanced and is able to continue to route payments. "),t.k0s()()()}if(2&n){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,nt,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}let Os=(()=>{class n{constructor(e){this.commonService=e,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(e){2===e.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===e.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(M.h))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[["infoStepBlock1",""],["infoStepBlock2",""],["infoStepBlock3",""],["infoStepBlock4",""],["infoStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between starts",3,"swipe"],["fxFlex","30","viewBox","0 0 246 154","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M187.8 136C203.043 136 215.4 133.493 215.4 130.4C215.4 127.307 203.043 124.8 187.8 124.8C172.557 124.8 160.2 127.307 160.2 130.4C160.2 133.493 172.557 136 187.8 136Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M128.6 148.8C143.843 148.8 156.2 146.293 156.2 143.2C156.2 140.107 143.843 137.6 128.6 137.6C113.357 137.6 101 140.107 101 143.2C101 146.293 113.357 148.8 128.6 148.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["opacity","0.1","d","M100.2 117.421C100.2 117.421 99.0633 117.494 99.4998 117.722C99.9363 117.95 100.2 117.421 100.2 117.421Z","fill","black"],["opacity","0.1","d","M101 118.4C100.986 118.471 98.1102 119.483 98.673 119.933C99.2358 120.384 101 118.4 101 118.4Z","fill","black"],["opacity","0.1","d","M97.8 128.98C98.0492 128.966 100.509 128.241 101 128.89L97.8 128.98Z","fill","black"],["opacity","0.1","d","M100.2 129.709C100.2 129.709 100.563 129.362 100.926 129.543C101.289 129.725 100.2 129.709 100.2 129.709Z","fill","black"],["opacity","0.1","d","M101.8 132C101.8 132 101.641 133.198 101 133.6L101.8 132Z","fill","black"],["d","M119.223 21.4239L123.102 22.0818L118.209 50.9111L114.33 50.2532L119.223 21.4239Z",1,"fill-color-primary-darker"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z",1,"fill-color-29"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z",1,"fill-color-28"],["d","M110.75 50.4L104.806 87.6521C104.806 87.6521 96.0162 127.358 99.3581 135.2H103.57L116.2 58.9791L110.75 50.4Z",1,"fill-color-29"],["d","M125.308 45.6L129.979 83.02C129.979 83.02 133.381 130.691 129.656 138.4H125.976L119.4 53.9698L125.308 45.6Z",1,"fill-color-29"],["d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z","fill","black"],["d","M112.922 39.2661C113.364 37.7699 114.731 36.7605 116.259 36.8012C118.804 36.8682 122.74 37.3423 124.787 39.4927C127.969 42.8316 122.638 54.0832 122.638 54.0832C122.638 54.0832 117.661 63.4872 113.092 51.5396C113.092 51.5327 111.203 45.1393 112.922 39.2661Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M131.383 131.52C131.69 131.628 131.968 131.791 132.2 132C131.813 131.613 130.708 131.42 130.166 131.24C129.495 131.019 128.764 130.793 128.2 130.4C129.29 130.705 130.354 131.079 131.383 131.52Z","fill","black"],["opacity","0.1","d","M94.2 24.8C96.1882 24.8 97.8 23.1882 97.8 21.2C97.8 19.2118 96.1882 17.6 94.2 17.6C92.2117 17.6 90.6 19.2118 90.6 21.2C90.6 23.1882 92.2117 24.8 94.2 24.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M107 12C110.314 12 113 9.31371 113 6C113 2.68629 110.314 0 107 0C103.686 0 101 2.68629 101 6C101 9.31371 103.686 12 107 12Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M99 40.8C102.314 40.8 105 38.1137 105 34.8C105 31.4863 102.314 28.8 99 28.8C95.6863 28.8 93 31.4863 93 34.8C93 38.1137 95.6863 40.8 99 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M223 67.2C224.988 67.2 226.6 65.5882 226.6 63.6C226.6 61.6118 224.988 60 223 60C221.012 60 219.4 61.6118 219.4 63.6C219.4 65.5882 221.012 67.2 223 67.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M210.2 54.4C213.514 54.4 216.2 51.7137 216.2 48.4C216.2 45.0863 213.514 42.4 210.2 42.4C206.886 42.4 204.2 45.0863 204.2 48.4C204.2 51.7137 206.886 54.4 210.2 54.4Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M218.2 83.2C221.514 83.2 224.2 80.5137 224.2 77.2C224.2 73.8863 221.514 71.2 218.2 71.2C214.886 71.2 212.2 73.8863 212.2 77.2C212.2 80.5137 214.886 83.2 218.2 83.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M23.8 72C24.9046 72 25.8 71.1046 25.8 70C25.8 68.8954 24.9046 68 23.8 68C22.6954 68 21.8 68.8954 21.8 70C21.8 71.1046 22.6954 72 23.8 72Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M33 65.6C34.7673 65.6 36.2 64.1673 36.2 62.4C36.2 60.6327 34.7673 59.2 33 59.2C31.2327 59.2 29.8 60.6327 29.8 62.4C29.8 64.1673 31.2327 65.6 33 65.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M17 71.2C18.7673 71.2 20.2 69.7673 20.2 68C20.2 66.2327 18.7673 64.8 17 64.8C15.2327 64.8 13.8 66.2327 13.8 68C13.8 69.7673 15.2327 71.2 17 71.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M171.8 60C172.905 60 173.8 59.1046 173.8 58C173.8 56.8954 172.905 56 171.8 56C170.695 56 169.8 56.8954 169.8 58C169.8 59.1046 170.695 60 171.8 60Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M180.2 53.6C181.967 53.6 183.4 52.1673 183.4 50.4C183.4 48.6327 181.967 47.2 180.2 47.2C178.433 47.2 177 48.6327 177 50.4C177 52.1673 178.433 53.6 180.2 53.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M164.2 59.2C165.967 59.2 167.4 57.7673 167.4 56C167.4 54.2327 165.967 52.8 164.2 52.8C162.433 52.8 161 54.2327 161 56C161 57.7673 162.433 59.2 164.2 59.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M51 40.8C55.6392 40.8 59.4 37.0392 59.4 32.4C59.4 27.7608 55.6392 24 51 24C46.3608 24 42.6 27.7608 42.6 32.4C42.6 37.0392 46.3608 40.8 51 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M98.6 64.8C101.251 64.8 103.4 62.651 103.4 60C103.4 57.349 101.251 55.2 98.6 55.2C95.949 55.2 93.8 57.349 93.8 60C93.8 62.651 95.949 64.8 98.6 64.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M145.8 96.8C148.451 96.8 150.6 94.651 150.6 92C150.6 89.349 148.451 87.2 145.8 87.2C143.149 87.2 141 89.349 141 92C141 94.651 143.149 96.8 145.8 96.8Z",1,"fill-color-primary-darker"],["fill-rule","evenodd","clip-rule","evenodd","d","M59.8 136.8C75.0431 136.8 87.4 134.293 87.4 131.2C87.4 128.107 75.0431 125.6 59.8 125.6C44.557 125.6 32.2 128.107 32.2 131.2C32.2 134.293 44.557 136.8 59.8 136.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M217.4 152.8C232.643 152.8 245 150.293 245 147.2C245 144.107 232.643 141.6 217.4 141.6C202.157 141.6 189.8 144.107 189.8 147.2C189.8 150.293 202.157 152.8 217.4 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M28.6 152.8C43.8431 152.8 56.2 150.293 56.2 147.2C56.2 144.107 43.8431 141.6 28.6 141.6C13.3569 141.6 1 144.107 1 147.2C1 150.293 13.3569 152.8 28.6 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["d","M122.425 44.7H119.162L120.372 41.0719C120.484 40.6219 120.147 40.2 119.725 40.2H115.675C115.337 40.2 115.028 40.4531 115 40.7906L114.1 47.5406C114.044 47.9625 114.353 48.3 114.775 48.3H118.094L116.8 53.7844C116.716 54.2063 117.025 54.6 117.447 54.6C117.7 54.6 117.925 54.4875 118.037 54.2625L122.987 45.7125C123.269 45.2906 122.931 44.7 122.425 44.7Z","fill","white"],["d","M23.5204 123.2C23.0498 123.2 22.6141 123.375 22.2807 123.669C21.9491 123.96 21.7189 124.369 21.6565 124.837L20.2164 135.712C20.1423 136.278 20.3237 136.811 20.6643 137.203C21.0076 137.598 21.5119 137.85 22.0804 137.85H26.4117L24.5687 145.68C24.4289 146.274 24.5836 146.851 24.9204 147.28C25.2626 147.716 25.7931 148 26.3959 148C26.7289 148 27.0539 147.911 27.3385 147.746C27.616 147.585 27.8553 147.351 28.0254 147.055L35.9453 133.28C36.3068 132.658 36.2644 131.95 35.9495 131.398C35.7868 131.113 35.551 130.871 35.2622 130.703C34.9905 130.544 34.6717 130.45 34.3203 130.45H30.1609L31.7043 124.49C31.5476 124.305 31.4051 124.176 31.278 124.085C31.004 123.89 30.5348 123.687 29.7238 123.539C28.6009 123.335 26.6977 123.2 23.5204 123.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M185.5 109.6C185.075 109.6 184.682 109.757 184.381 110.02C184.08 110.284 183.872 110.652 183.815 111.073L182.615 120.074C182.548 120.585 182.712 121.066 183.021 121.419C183.331 121.774 183.787 122 184.3 122H187.74L186.244 128.309C186.117 128.846 186.258 129.366 186.564 129.753C186.873 130.145 187.352 130.4 187.897 130.4C188.505 130.4 189.084 130.074 189.391 129.512L195.745 115.6H191.208L192.467 110.771C192.308 110.576 192.165 110.445 192.04 110.357C191.803 110.189 191.397 110.01 190.693 109.883C189.753 109.713 188.16 109.6 185.5 109.6Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M215.1 128C214.675 128 214.282 128.157 213.981 128.42C213.68 128.683 213.472 129.052 213.415 129.473L212.215 138.474C212.148 138.985 212.312 139.466 212.621 139.819C212.931 140.174 213.387 140.4 213.9 140.4H217.34L215.844 146.709C215.717 147.246 215.858 147.766 216.164 148.153C216.473 148.545 216.952 148.8 217.497 148.8C218.105 148.8 218.684 148.474 218.991 147.912L225.345 134H220.808L222.067 129.171C221.908 128.976 221.765 128.845 221.64 128.757C221.403 128.589 220.997 128.41 220.293 128.283C219.353 128.113 217.76 128 215.1 128Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M55.9003 111.2C55.4754 111.2 55.0822 111.357 54.7812 111.62C54.4802 111.883 54.2716 112.252 54.215 112.673L53.0149 121.674C52.9475 122.185 53.112 122.666 53.4214 123.019C53.7314 123.374 54.1868 123.6 54.7004 123.6H58.1398L56.6444 129.909C56.5174 130.446 56.6576 130.966 56.9637 131.353C57.2728 131.745 57.7518 132 58.2966 132C58.9052 132 59.4843 131.674 59.7907 131.112L66.1452 117.2H61.6081L62.8674 112.371C62.7082 112.176 62.5651 112.045 62.4402 111.957C62.2025 111.789 61.7969 111.61 61.0927 111.483C60.1529 111.313 58.5599 111.2 55.9003 111.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 210 124","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M90.1491 0H0V100.616H90.1491V0Z",1,"fill-color-10"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z",1,"fill-color-primary-darker"],["d","M76.3172 90.6426C80.8187 90.6426 84.4679 86.9934 84.4679 82.4919C84.4679 77.9904 80.8187 74.3412 76.3172 74.3412C71.8157 74.3412 68.1665 77.9904 68.1665 82.4919C68.1665 86.9934 71.8157 90.6426 76.3172 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3172 58.1801C80.8187 58.1801 84.4679 54.5309 84.4679 50.0294C84.4679 45.5279 80.8187 41.8787 76.3172 41.8787C71.8157 41.8787 68.1665 45.5279 68.1665 50.0294C68.1665 54.5309 71.8157 58.1801 76.3172 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z",1,"fill-color-primary-darker"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z",1,"fill-color-17"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z",1,"fill-color-17"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint0_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint2_linear)"],["d","M76.1507 25.3014C80.6522 25.3014 84.3014 21.6522 84.3014 17.1507C84.3014 12.6492 80.6522 9 76.1507 9C71.6492 9 68 12.6492 68 17.1507C68 21.6522 71.6492 25.3014 76.1507 25.3014Z",1,"fill-color-17"],["d","M193.435 36.7899H142.709V35.7444H119.709V36.7899H68.7744C67.8644 36.7899 66.9917 37.1514 66.3482 37.7949C65.7048 38.4384 65.3433 39.3111 65.3433 40.2211V109.679C65.3433 110.589 65.7048 111.462 66.3482 112.106C66.9917 112.749 67.8644 113.111 68.7744 113.111H193.435C195.33 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.345 36.7899 193.435 36.7899Z",1,"fill-color-19"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.284 111.856H69.9434V42.8538L157.284 111.856Z","fill","black"],["d","M89.0832 106.693C95.577 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.577 83.1766 89.0832 83.1766C82.5894 83.1766 77.3252 88.4408 77.3252 94.9346C77.3252 101.428 82.5894 106.693 89.0832 106.693Z",1,"fill-color-25"],["d","M91.7005 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7005 103.772ZM91.7005 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7005 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7005 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z",1,"fill-color-19"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z",1,"fill-color-19"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z",1,"fill-color-19"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z",1,"fill-color-19"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z",1,"fill-color-19"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z",1,"fill-color-19"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z",1,"fill-color-25"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.115C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.261 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.042 109.589 156.01 109.621C155.978 109.653 155.96 109.696 155.96 109.741V110.601H153.402V109.741C153.402 109.696 153.384 109.653 153.352 109.621C153.32 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.089 109.589 114.057 109.621C114.025 109.653 114.007 109.696 114.007 109.741V110.601H111.449V109.741C111.449 109.696 111.431 109.653 111.399 109.621C111.367 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.148 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.4642V109.741C97.4642 109.696 97.4462 109.653 97.4142 109.621C97.3822 109.589 97.3388 109.571 97.2936 109.571H93.2006C93.1554 109.571 93.112 109.589 93.08 109.621C93.048 109.653 93.0301 109.696 93.0301 109.741V110.601H90.472V109.741C90.472 109.696 90.454 109.653 90.422 109.621C90.39 109.589 90.3467 109.571 90.3014 109.571H86.2085C86.1632 109.571 86.1198 109.589 86.0879 109.621C86.0559 109.653 86.0379 109.696 86.0379 109.741V110.601H83.4798V109.741C83.4798 109.696 83.4618 109.653 83.4299 109.621C83.3979 109.589 83.3545 109.571 83.3093 109.571H79.2163C79.171 109.571 79.1277 109.589 79.0957 109.621C79.0637 109.653 79.0457 109.696 79.0457 109.741V110.601H76.4876V109.741C76.4876 109.696 76.4697 109.653 76.4377 109.621C76.4057 109.589 76.3623 109.571 76.3171 109.571H72.2241C72.1789 109.571 72.1355 109.589 72.1035 109.621C72.0715 109.653 72.0536 109.696 72.0536 109.741V110.601H64.2087C61.9482 110.601 60.1157 112.434 60.1157 114.694V116.545C60.1157 118.806 61.9482 120.638 64.2087 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8456 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9773 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1718L88.0762 87.0663C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5347 96.5996L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M42 75H9V91H42V75Z",1,"fill-color-17"],["d","M42 42H9V58H42V42Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint3_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint4_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint5_linear)"],["d","M205.185 113.031H193.247V112.171C193.247 112.125 193.229 112.082 193.197 112.05C193.165 112.018 193.121 112 193.076 112H188.983C188.938 112 188.895 112.018 188.863 112.05C188.831 112.082 188.813 112.125 188.813 112.171V113.031H186.254V112.171C186.254 112.125 186.237 112.082 186.205 112.05C186.173 112.018 186.129 112 186.084 112H181.991C181.946 112 181.902 112.018 181.87 112.05C181.838 112.082 181.82 112.125 181.82 112.171V113.031H179.262V112.171C179.262 112.125 179.244 112.082 179.212 112.05C179.18 112.018 179.137 112 179.092 112H174.999C174.954 112 174.91 112.018 174.878 112.05C174.846 112.082 174.828 112.125 174.828 112.171V113.031H172.27V112.171C172.27 112.125 172.252 112.082 172.22 112.05C172.188 112.018 172.145 112 172.1 112H168.007C167.961 112 167.918 112.018 167.886 112.05C167.854 112.082 167.836 112.125 167.836 112.171V113.031H165.278V112.171C165.278 112.125 165.26 112.082 165.228 112.05C165.196 112.018 165.153 112 165.107 112H161.014C160.969 112 160.926 112.018 160.894 112.05C160.862 112.082 160.844 112.125 160.844 112.171V113.031H158.286V112.171C158.286 112.125 158.268 112.082 158.236 112.05C158.204 112.018 158.16 112 158.115 112H154.022C153.977 112 153.934 112.018 153.902 112.05C153.87 112.082 153.852 112.125 153.852 112.171V113.031H151.294V112.171C151.294 112.125 151.276 112.082 151.244 112.05C151.212 112.018 151.168 112 151.123 112H119.061C119.016 112 118.973 112.018 118.941 112.05C118.909 112.082 118.891 112.125 118.891 112.171V113.031H116.333V112.171C116.333 112.125 116.315 112.082 116.283 112.05C116.251 112.018 116.207 112 116.162 112H112.069C112.024 112 111.981 112.018 111.949 112.05C111.917 112.082 111.899 112.125 111.899 112.171V113.031H109.341V112.171C109.341 112.125 109.323 112.082 109.291 112.05C109.259 112.018 109.215 112 109.17 112H105.077C105.032 112 104.988 112.018 104.956 112.05C104.924 112.082 104.907 112.125 104.907 112.171V113.031H102.348V112.171C102.348 112.125 102.33 112.082 102.298 112.05C102.266 112.018 102.223 112 102.178 112H98.0849C98.0397 112 97.9963 112.018 97.9643 112.05C97.9323 112.082 97.9144 112.125 97.9144 112.171V113.031H95.3563V112.171C95.3563 112.125 95.3383 112.082 95.3063 112.05C95.2743 112.018 95.2309 112 95.1857 112H91.0927C91.0475 112 91.0041 112.018 90.9721 112.05C90.9402 112.082 90.9222 112.125 90.9222 112.171V113.031H88.3641V112.171C88.3641 112.125 88.3461 112.082 88.3141 112.05C88.2822 112.018 88.2388 112 88.1935 112H84.1006C84.0553 112 84.0119 112.018 83.98 112.05C83.948 112.082 83.93 112.125 83.93 112.171V113.031H81.3719V112.171C81.3719 112.125 81.3539 112.082 81.322 112.05C81.29 112.018 81.2466 112 81.2014 112H77.1084C77.0632 112 77.0198 112.018 76.9878 112.05C76.9558 112.082 76.9378 112.125 76.9379 112.171V113.031H69.093C66.8325 113.031 65 114.863 65 117.124V118.974C65 121.235 66.8325 123.067 69.093 123.067H205.185C207.445 123.067 209.277 121.235 209.277 118.974V117.124C209.277 114.863 207.445 113.031 205.185 113.031Z",1,"fill-color-19"],["d","M78.375 20.625C78.375 19.5938 77.5312 18.75 76.5 18.75C75.4453 18.75 74.625 19.5938 74.625 20.625C74.625 21.6797 75.4453 22.5 76.5 22.5C77.5312 22.5 78.375 21.6797 78.375 20.625ZM74.8359 11.1094L75.1406 17.4844C75.1641 17.7656 75.4219 18 75.7031 18H77.2734C77.5547 18 77.8125 17.7656 77.8359 17.4844L78.1406 11.1094C78.1641 10.7812 77.9062 10.5 77.5781 10.5H75.3984C75.0703 10.5 74.8125 10.7812 74.8359 11.1094Z","fill","white"],["id","paint0_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["stop-color","#808080","stop-opacity","0.25"],["offset","0.54","stop-color","#808080","stop-opacity","0.12"],["offset","1","stop-color","#808080","stop-opacity","0.1"],["id","paint1_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["id","paint3_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["id","paint4_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint5_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 370 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M327.488 99.9755C350.953 99.9755 369.975 80.9531 369.975 57.4877C369.975 34.0224 350.953 15 327.488 15C304.022 15 285 34.0224 285 57.4877C285 80.9531 304.022 99.9755 327.488 99.9755Z",1,"fill-color-25"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z",1,"fill-color-19"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z",1,"fill-color-primary-lighter"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z",1,"fill-color-19"],["d","M265 57.3624H357.392V120.307H265V57.3624Z",1,"fill-color-22"],["d","M362.545 50H271.626C271.016 50.0009 270.521 50.495 270.521 51.1048V112.577C270.521 112.87 270.638 113.151 270.845 113.358C271.052 113.565 271.333 113.681 271.626 113.681H362.545C362.838 113.681 363.119 113.565 363.326 113.358C363.533 113.151 363.65 112.87 363.65 112.577V51.1048C363.65 50.495 363.155 50.0009 362.545 50ZM362.913 112.577C362.913 112.674 362.875 112.768 362.806 112.837C362.736 112.907 362.643 112.945 362.545 112.945H271.626C271.528 112.945 271.434 112.907 271.365 112.837C271.296 112.768 271.258 112.674 271.258 112.577V51.1048C271.258 50.9015 271.423 50.7365 271.626 50.7365H362.545C362.748 50.7365 362.913 50.9015 362.913 51.1048V112.577Z",1,"fill-color-19"],["d","M316.364 93.4359H275.844C275.547 93.4359 275.307 93.6766 275.307 93.9735V97.6835C275.307 97.9804 275.547 98.2211 275.844 98.2211H316.364C316.661 98.2211 316.901 97.9804 316.901 97.6835V93.9735C316.901 93.6766 316.661 93.4359 316.364 93.4359Z",1,"fill-color-19"],["d","M354.814 89.3873H341.565C341.272 89.3873 340.991 89.5036 340.784 89.7108C340.577 89.918 340.46 90.199 340.46 90.492V100.798C340.46 101.091 340.577 101.372 340.784 101.579C340.991 101.786 341.272 101.903 341.565 101.903H354.814C355.107 101.903 355.388 101.786 355.595 101.579C355.803 101.372 355.919 101.091 355.919 100.798V90.492C355.919 90.199 355.803 89.918 355.595 89.7108C355.388 89.5036 355.107 89.3873 354.814 89.3873ZM355.182 100.798C355.182 101.001 355.017 101.166 354.814 101.166H341.565C341.362 101.166 341.197 101.001 341.197 100.798V90.492C341.196 90.3943 341.235 90.3004 341.304 90.2313C341.373 90.1622 341.467 90.1235 341.565 90.1238H354.814C354.912 90.1235 355.006 90.1622 355.075 90.2313C355.144 90.3004 355.183 90.3943 355.182 90.492V100.798Z",1,"fill-color-19"],["d","M352.168 91.7653H344.211C343.914 91.7653 343.673 92.006 343.673 92.3029V93.0965C343.673 93.3934 343.914 93.6341 344.211 93.6341H352.168C352.465 93.6341 352.706 93.3934 352.706 93.0965V92.3029C352.706 92.006 352.465 91.7653 352.168 91.7653Z",1,"fill-color-19"],["d","M352.168 94.71H344.211C343.914 94.71 343.673 94.9507 343.673 95.2476V96.0412C343.673 96.3381 343.914 96.5788 344.211 96.5788H352.168C352.465 96.5788 352.706 96.3381 352.706 96.0412V95.2476C352.706 94.9507 352.465 94.71 352.168 94.71Z",1,"fill-color-19"],["d","M352.168 97.6548H344.211C343.914 97.6548 343.673 97.8955 343.673 98.1924V98.986C343.673 99.2829 343.914 99.5236 344.211 99.5236H352.168C352.465 99.5236 352.706 99.2829 352.706 98.986V98.1924C352.706 97.8955 352.465 97.6548 352.168 97.6548Z",1,"fill-color-19"],["d","M295.014 54.4177H276.949C276.652 54.4177 276.411 54.6584 276.411 54.9553V61.9782C276.411 62.2752 276.652 62.5158 276.949 62.5158H295.014C295.311 62.5158 295.552 62.2752 295.552 61.9782V54.9553C295.552 54.6584 295.311 54.4177 295.014 54.4177Z",1,"fill-color-19"],["d","M312.293 105.198C319.455 105.198 325.261 99.3917 325.261 92.2295C325.261 85.0672 319.455 79.2611 312.293 79.2611C305.131 79.2611 299.325 85.0672 299.325 92.2295C299.325 99.3917 305.131 105.198 312.293 105.198Z",1,"fill-color-25"],["d","M315.18 101.976C308.655 101.976 302.773 98.0462 300.276 92.0183C297.78 85.9904 299.16 79.052 303.773 74.4384C308.387 69.8249 315.325 68.4448 321.353 70.9416C327.381 73.4384 331.311 79.3205 331.311 85.8451C331.301 94.75 324.085 101.966 315.18 101.976ZM315.18 69.9245C306.387 69.9245 299.259 77.0524 299.259 85.8451C299.259 94.6377 306.387 101.766 315.18 101.766C323.973 101.766 331.1 94.6377 331.1 85.8451C331.09 77.0565 323.968 69.9345 315.18 69.9245Z",1,"fill-color-19"],["d","M309.677 100.883C309.936 100.948 310.216 100.873 310.41 100.673L318.163 92.664C318.571 92.2458 318.371 91.5387 317.802 91.3966L314.249 90.5107L316.557 86.8411C316.797 86.4038 316.558 85.8537 316.074 85.7332L311.64 84.6277C311.271 84.5355 310.888 84.7313 310.748 85.0854L307.92 92.2295C307.751 92.6583 307.998 93.1384 308.444 93.2497L312.099 94.161L309.186 99.7958C308.959 100.236 309.206 100.766 309.677 100.883Z",1,"fill-color-21"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z",1,"fill-color-primary-darker"],["d","M76.3175 90.6426C80.819 90.6426 84.4682 86.9934 84.4682 82.4919C84.4682 77.9904 80.819 74.3412 76.3175 74.3412C71.8159 74.3412 68.1667 77.9904 68.1667 82.4919C68.1667 86.9934 71.8159 90.6426 76.3175 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3175 58.1801C80.819 58.1801 84.4682 54.531 84.4682 50.0294C84.4682 45.5279 80.819 41.8787 76.3175 41.8787C71.8159 41.8787 68.1667 45.5279 68.1667 50.0294C68.1667 54.531 71.8159 58.1801 76.3175 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-primary-darker"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-17"],["d","M76.7868 26.5736C81.6396 26.5736 85.5736 22.6396 85.5736 17.7868C85.5736 12.934 81.6396 9 76.7868 9C71.934 9 68 12.934 68 17.7868C68 22.6396 71.934 26.5736 76.7868 26.5736Z","fill","url(#paint0_linear)"],["d","M76.3174 59.0334C81.1702 59.0334 85.1042 55.0994 85.1042 50.2466C85.1042 45.3938 81.1702 41.4598 76.3174 41.4598C71.4646 41.4598 67.5306 45.3938 67.5306 50.2466C67.5306 55.0994 71.4646 59.0334 76.3174 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3174 91.4958C81.1702 91.4958 85.1042 87.5618 85.1042 82.709C85.1042 77.8562 81.1702 73.9222 76.3174 73.9222C71.4646 73.9222 67.5306 77.8562 67.5306 82.709C67.5306 87.5618 71.4646 91.4958 76.3174 91.4958Z","fill","url(#paint2_linear)"],["d","M193.434 36.7899H142.709V35.7444H119.708V36.7899H68.7742C67.8642 36.7899 66.9915 37.1514 66.348 37.7949C65.7045 38.4384 65.343 39.3111 65.343 40.2211V109.679C65.343 110.589 65.7045 111.462 66.348 112.106C66.9915 112.749 67.8642 113.111 68.7742 113.111H193.434C195.329 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.344 36.7899 193.434 36.7899Z",1,"fill-color-19"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.283 111.856H69.9432V42.8538L157.283 111.856Z","fill","black"],["d","M89.0829 106.693C95.5767 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.5767 83.1766 89.0829 83.1766C82.5892 83.1766 77.325 88.4408 77.325 94.9346C77.325 101.428 82.5892 106.693 89.0829 106.693Z",1,"fill-color-25"],["d","M91.7004 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7004 103.772ZM91.7004 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7004 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7004 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z",1,"fill-color-19"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.114C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.26 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.041 109.589 156.009 109.621C155.977 109.653 155.96 109.696 155.96 109.741V110.601H153.401V109.741C153.401 109.696 153.383 109.653 153.351 109.621C153.319 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.088 109.589 114.056 109.621C114.024 109.653 114.006 109.696 114.006 109.741V110.601H111.448V109.741C111.448 109.696 111.43 109.653 111.398 109.621C111.366 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.147 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.464V109.741C97.464 109.696 97.4461 109.653 97.4141 109.621C97.3821 109.589 97.3387 109.571 97.2935 109.571H93.2005C93.1553 109.571 93.1119 109.589 93.0799 109.621C93.0479 109.653 93.03 109.696 93.03 109.741V110.601H90.4719V109.741C90.4719 109.696 90.4539 109.653 90.4219 109.621C90.3899 109.589 90.3465 109.571 90.3013 109.571H86.2083C86.1631 109.571 86.1197 109.589 86.0877 109.621C86.0558 109.653 86.0378 109.696 86.0378 109.741V110.601H83.4797V109.741C83.4797 109.696 83.4617 109.653 83.4297 109.621C83.3978 109.589 83.3544 109.571 83.3091 109.571H79.2162C79.1709 109.571 79.1276 109.589 79.0956 109.621C79.0636 109.653 79.0456 109.696 79.0456 109.741V110.601H76.4875V109.741C76.4875 109.696 76.4695 109.653 76.4376 109.621C76.4056 109.589 76.3622 109.571 76.317 109.571H72.224C72.1788 109.571 72.1354 109.589 72.1034 109.621C72.0714 109.653 72.0535 109.696 72.0535 109.741V110.601H64.2086C61.9481 110.601 60.1156 112.434 60.1156 114.694V116.545C60.1156 118.806 61.9481 120.638 64.2086 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8457 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9774 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1719L88.0762 87.0664C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5348 96.5997L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M78.125 21.625C78.125 20.5938 77.2812 19.75 76.25 19.75C75.1953 19.75 74.375 20.5938 74.375 21.625C74.375 22.6797 75.1953 23.5 76.25 23.5C77.2812 23.5 78.125 22.6797 78.125 21.625ZM74.5859 12.1094L74.8906 18.4844C74.9141 18.7656 75.1719 19 75.4531 19H77.0234C77.3047 19 77.5625 18.7656 77.5859 18.4844L77.8906 12.1094C77.9141 11.7812 77.6562 11.5 77.3281 11.5H75.1484C74.8203 11.5 74.5625 11.7812 74.5859 12.1094Z","fill","white"],["id","paint0_linear","x1","76.7868","y1","26.5736","x2","76.7868","y2","9","gradientUnits","userSpaceOnUse"],["id","paint1_linear","x1","76.3174","y1","59.0334","x2","76.3174","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3174","y1","91.4958","x2","76.3174","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 153 200","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary-lighter"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M122.399 37H32.25V137.616H122.399V37Z",1,"fill-color-10"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z",1,"fill-color-primary-darker"],["d","M108.567 127.643C113.069 127.643 116.718 123.993 116.718 119.492C116.718 114.99 113.069 111.341 108.567 111.341C104.066 111.341 100.417 114.99 100.417 119.492C100.417 123.993 104.066 127.643 108.567 127.643Z",1,"fill-color-primary-darker"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z",1,"fill-color-primary-darker"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.531 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.531 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M74.5 112H40.5V128H74.5V112Z",1,"fill-color-17"],["d","M74.5 79H40.5V95H74.5V79Z",1,"fill-color-17"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z",1,"fill-color-17"],["d","M108.567 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.567 45.778C103.715 45.778 99.7806 49.712 99.7806 54.5648C99.7806 59.4176 103.715 63.3516 108.567 63.3516Z","fill","url(#paint0_linear)"],["d","M108.567 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.567 78.4598C103.715 78.4598 99.7806 82.3938 99.7806 87.2466C99.7806 92.0994 103.715 96.0334 108.567 96.0334Z",1,"fill-color-17"],["d","M108.567 128.496C113.42 128.496 117.354 124.562 117.354 119.709C117.354 114.856 113.42 110.922 108.567 110.922C103.715 110.922 99.7806 114.856 99.7806 119.709C99.7806 124.562 103.715 128.496 108.567 128.496Z",1,"fill-color-17"],["d","M108.401 62.3014C112.902 62.3014 116.551 58.6522 116.551 54.1507C116.551 49.6492 112.902 46 108.401 46C103.899 46 100.25 49.6492 100.25 54.1507C100.25 58.6522 103.899 62.3014 108.401 62.3014Z",1,"fill-color-17"],["d","M110.625 57.625C110.625 56.5938 109.781 55.75 108.75 55.75C107.695 55.75 106.875 56.5938 106.875 57.625C106.875 58.6797 107.695 59.5 108.75 59.5C109.781 59.5 110.625 58.6797 110.625 57.625ZM107.086 48.1094L107.391 54.4844C107.414 54.7656 107.672 55 107.953 55H109.523C109.805 55 110.062 54.7656 110.086 54.4844L110.391 48.1094C110.414 47.7812 110.156 47.5 109.828 47.5H107.648C107.32 47.5 107.062 47.7812 107.086 48.1094Z","fill","white"],["d","M141.711 111C141.008 111 140.656 111.859 141.164 112.367L146.164 117.367C146.477 117.68 146.984 117.68 147.297 117.367L152.297 112.367C152.805 111.859 152.453 111 151.75 111H141.711Z",1,"fill-color-17"],["d","M84.25 185.461C84.25 184.758 83.3906 184.406 82.8828 184.914L77.8828 189.914C77.5703 190.227 77.5703 190.734 77.8828 191.047L82.8828 196.047C83.3906 196.555 84.25 196.203 84.25 195.5V185.461Z",1,"fill-color-primary-darker"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-primary-darker"],["d","M133.75 174C142.31 174 149.25 167.06 149.25 158.5C149.25 149.94 142.31 143 133.75 143C125.19 143 118.25 149.94 118.25 158.5C118.25 167.06 125.19 174 133.75 174Z",1,"fill-color-25"],["d","M129.872 169.64C130.214 169.726 130.584 169.628 130.84 169.363L141.093 158.771C141.633 158.218 141.369 157.283 140.616 157.095L135.917 155.924L138.969 151.071C139.286 150.493 138.97 149.765 138.331 149.606L132.468 148.144C131.979 148.022 131.473 148.281 131.287 148.749L127.548 158.197C127.324 158.764 127.65 159.399 128.241 159.546L133.074 160.751L129.222 168.203C128.921 168.785 129.249 169.485 129.872 169.64Z",1,"fill-color-21"],["d","M19.75 174C28.3104 174 35.25 167.06 35.25 158.5C35.25 149.94 28.3104 143 19.75 143C11.1896 143 4.25 149.94 4.25 158.5C4.25 167.06 11.1896 174 19.75 174Z",1,"fill-color-25"],["d","M19.3208 167.769C23.2973 167.769 26.5208 164.545 26.5208 160.569C26.5208 156.592 23.2973 153.369 19.3208 153.369C15.3444 153.369 12.1208 156.592 12.1208 160.569C12.1208 164.545 15.3444 167.769 19.3208 167.769Z",1,"fill-color-22"],["d","M13.7656 153.188L12.4676 152.716C12.4676 152.716 15.1815 150.002 18.9572 150.238L17.8953 149.177C17.8953 149.177 20.4911 148.233 22.851 150.71C24.0915 152.013 25.5268 153.544 26.4216 155.269H27.8116L27.2314 156.429L29.2619 157.589L27.1778 157.381C27.3752 158.383 27.3073 159.418 26.9807 160.386L26.5087 161.684C26.5087 161.684 24.6208 157.908 24.6208 157.436V158.616C24.6208 158.616 23.3229 157.554 23.3229 156.846L22.615 157.672L22.261 156.374L17.8953 157.672L18.6032 156.61L15.8894 156.964L16.9514 155.666C16.9514 155.666 13.8836 157.2 13.7656 158.498C13.6476 159.796 12.1137 161.448 12.1137 161.448L11.4058 160.268C11.4058 160.268 10.3438 154.958 13.7656 153.188Z",1,"fill-color-21"],["d","M76.75 31C68.1896 31 61.25 24.0604 61.25 15.5C61.25 6.93959 68.1896 0 76.75 0C85.3104 0 92.25 6.93959 92.25 15.5C92.25 24.0604 85.3104 31 76.75 31Z",1,"fill-color-25"],["d","M77.1792 24.7687C73.2027 24.7687 69.9792 21.5452 69.9792 17.5687C69.9792 13.5923 73.2027 10.3687 77.1792 10.3687C81.1556 10.3687 84.3792 13.5923 84.3792 17.5687C84.3792 21.5452 81.1556 24.7687 77.1792 24.7687Z",1,"fill-color-22"],["d","M82.7344 10.1883L84.0324 9.71628C84.0324 9.71628 81.3185 7.00246 77.5428 7.23845L78.6047 6.17651C78.6047 6.17651 76.0089 5.23258 73.649 7.71041C72.4085 9.01295 70.9732 10.544 70.0784 12.2687H68.6884L69.2686 13.429L67.2381 14.5893L69.3222 14.3808C69.1248 15.3825 69.1927 16.4184 69.5193 17.3858L69.9913 18.6837C69.9913 18.6837 71.8792 14.9079 71.8792 14.4359V15.6159C71.8792 15.6159 73.1771 14.5539 73.1771 13.846L73.885 14.6719L74.239 13.374L78.6047 14.6719L77.8968 13.61L80.6106 13.964L79.5486 12.6661C79.5486 12.6661 82.6164 14.2 82.7344 15.4979C82.8524 16.7958 84.3863 18.4477 84.3863 18.4477L85.0942 17.2678C85.0942 17.2678 86.1562 11.9581 82.7344 10.1883Z",1,"fill-color-21"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.786 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.542 141.365 153.936Z",1,"fill-color-21"],["d","M140.968 160.376C141.521 160.376 141.968 159.928 141.968 159.376C141.968 158.823 141.521 158.376 140.968 158.376C140.416 158.376 139.968 158.823 139.968 159.376C139.968 159.928 140.416 160.376 140.968 160.376Z",1,"fill-color-22"],["d","M129.168 160.376C129.721 160.376 130.168 159.928 130.168 159.376C130.168 158.823 129.721 158.376 129.168 158.376C128.616 158.376 128.168 158.823 128.168 159.376C128.168 159.928 128.616 160.376 129.168 160.376Z",1,"fill-color-22"],["d","M135.068 165.276C138.272 165.276 140.868 162.679 140.868 159.476C140.868 156.272 138.272 153.676 135.068 153.676C131.865 153.676 129.268 156.272 129.268 159.476C129.268 162.679 131.865 165.276 135.068 165.276Z",1,"fill-color-22"],["d","M140.384 153.575L136.049 151.304L130.062 152.233L128.824 157.704L131.907 157.585L132.768 155.576V157.552L134.191 157.498L135.017 154.298L135.533 157.704L140.591 157.601L140.384 153.575Z",1,"fill-color-21"],["d","M79.4007 199.301C83.9022 199.301 87.5514 195.652 87.5514 191.151C87.5514 186.649 83.9022 183 79.4007 183C74.8992 183 71.25 186.649 71.25 191.151C71.25 195.652 74.8992 199.301 79.4007 199.301Z",1,"fill-color-17"],["d","M82.9375 189.25H80.2188L81.2266 186.227C81.3203 185.852 81.0391 185.5 80.6875 185.5H77.3125C77.0313 185.5 76.7735 185.711 76.75 185.992L76 191.617C75.9531 191.969 76.211 192.25 76.5625 192.25H79.3281L78.25 196.82C78.1797 197.172 78.4375 197.5 78.7891 197.5C79 197.5 79.1875 197.406 79.2813 197.219L83.4063 190.094C83.6406 189.742 83.3594 189.25 82.9375 189.25Z","fill","white"],["d","M106.555 91.8125C106.789 92.0469 107.188 92.0469 107.422 91.8125L114.312 84.9219C114.547 84.6875 114.547 84.2891 114.312 84.0547L113.469 83.2109C113.234 82.9766 112.859 82.9766 112.625 83.2109L107 88.8359L104.352 86.2109C104.117 85.9766 103.742 85.9766 103.508 86.2109L102.664 87.0547C102.43 87.2891 102.43 87.6875 102.664 87.9219L106.555 91.8125Z","fill","white"],["d","M106.555 124.812C106.789 125.047 107.188 125.047 107.422 124.812L114.312 117.922C114.547 117.688 114.547 117.289 114.312 117.055L113.469 116.211C113.234 115.977 112.859 115.977 112.625 116.211L107 121.836L104.352 119.211C104.117 118.977 103.742 118.977 103.508 119.211L102.664 120.055C102.43 120.289 102.43 120.688 102.664 120.922L106.555 124.812Z","fill","white"],["id","paint0_linear","x1","108.567","y1","63.3516","x2","108.567","y2","45.778","gradientUnits","userSpaceOnUse"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M120.908 104.177H33.7393V135.425H120.908V104.177Z","fill","white"],["d","M120.908 71.7129H33.7393V102.96H120.908V71.7129Z","fill","white"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.5309 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.5309 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M76 112H41V128H76V112Z",1,"fill-color-17"],["d","M70 79H41V95H70V79Z",1,"fill-color-17"],["d","M70 47H41V63H70V47Z",1,"fill-color-17"],["d","M108.568 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.568 45.778C103.715 45.778 99.7808 49.712 99.7808 54.5648C99.7808 59.4176 103.715 63.3516 108.568 63.3516Z","fill","url(#paint0_linear)"],["d","M108.568 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.568 78.4598C103.715 78.4598 99.7808 82.3938 99.7808 87.2466C99.7808 92.0994 103.715 96.0334 108.568 96.0334Z",1,"fill-color-17"],["d","M108.568 129.496C113.42 129.496 117.354 125.562 117.354 120.709C117.354 115.856 113.42 111.922 108.568 111.922C103.715 111.922 99.7808 115.856 99.7808 120.709C99.7808 125.562 103.715 129.496 108.568 129.496Z",1,"fill-color-17"],["d","M106.805 91.8125C107.039 92.0469 107.438 92.0469 107.672 91.8125L114.562 84.9219C114.797 84.6875 114.797 84.2891 114.562 84.0547L113.719 83.2109C113.484 82.9766 113.109 82.9766 112.875 83.2109L107.25 88.8359L104.602 86.2109C104.367 85.9766 103.992 85.9766 103.758 86.2109L102.914 87.0547C102.68 87.2891 102.68 87.6875 102.914 87.9219L106.805 91.8125Z","fill","white"],["d","M106.805 58.8125C107.039 59.0469 107.438 59.0469 107.672 58.8125L114.562 51.9219C114.797 51.6875 114.797 51.2891 114.562 51.0547L113.719 50.2109C113.484 49.9766 113.109 49.9766 112.875 50.2109L107.25 55.8359L104.602 53.2109C104.367 52.9766 103.992 52.9766 103.758 53.2109L102.914 54.0547C102.68 54.2891 102.68 54.6875 102.914 54.9219L106.805 58.8125Z","fill","white"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-17"],["d","M77.1792 24.7688C73.2027 24.7688 69.9792 21.5452 69.9792 17.5688C69.9792 13.5923 73.2027 10.3688 77.1792 10.3688C81.1556 10.3688 84.3792 13.5923 84.3792 17.5688C84.3792 21.5452 81.1556 24.7688 77.1792 24.7688Z",1,"fill-color-22"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.785 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.543 141.365 153.936Z",1,"fill-color-21"],["d","M82.9374 189.25H80.2186L81.2265 186.227C81.3202 185.852 81.039 185.5 80.6874 185.5H77.3124C77.0311 185.5 76.7733 185.711 76.7499 185.992L75.9999 191.617C75.953 191.969 76.2108 192.25 76.5624 192.25H79.328L78.2499 196.82C78.1796 197.172 78.4374 197.5 78.789 197.5C78.9999 197.5 79.1874 197.406 79.2811 197.219L83.4061 190.094C83.6405 189.742 83.3593 189.25 82.9374 189.25Z","fill","white"],["id","paint0_linear","x1","108.568","y1","63.3516","x2","108.568","y2","45.778","gradientUnits","userSpaceOnUse"]],template:function(i,a){if(1&i&&t.DNE(0,As,1,0,"ng-container",5)(1,Ns,47,5,"ng-template",null,0,t.C5r)(3,Ms,96,5,"ng-template",null,1,t.C5r)(5,Bs,68,5,"ng-template",null,2,t.C5r)(7,$s,53,5,"ng-template",null,3,t.C5r)(9,Vs,52,5,"ng-template",null,4,t.C5r),2&i){const s=t.sdS(2),r=t.sdS(4),m=t.sdS(6),T=t.sdS(8),y=t.sdS(10);t.Y8G("ngTemplateOutlet",1===a.stepNumber?s:2===a.stepNumber?r:3===a.stepNumber?m:4===a.stepNumber?T:y)}},dependencies:[p.YU,p.T3,h.DJ,h.sA,h.UI,L.PW,E.Lc,E.dh],styles:["svg.small-svg[_ngcontent-%COMP%]{height:10%;min-height:10%;max-width:50%;margin:auto}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:50%;margin:auto}"],data:{animation:[Gs.k]}})}return n})();const Hs=["stepper"],Ys=()=>[1,2,3,4,5],Xs=(n,o)=>({"dot-primary":n,"dot-primary-lighter":o});function Us(n,o){if(1&n&&t.EFF(0),2&n){const e=t.XpG(2);t.JRh(e.inputFormLabel)}}function zs(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function Js(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function qs(n,o){if(1&n&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.SpI("Amount must be less than or equal to ",null==e.selChannel?null:e.selChannel.toLocal,".")}}function Qs(n,o){if(1&n&&(t.j41(0,"mat-option",50),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.Y8G("value",e),t.R7$(),t.Lme("",e.alias," - ",e.shortChannelId,"")}}function Zs(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer is required."),t.k0s())}function Ws(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer not found in the list."),t.k0s())}function Ks(n,o){1&n&&t.EFF(0,"Status")}function tl(n,o){1&n&&t.nrm(0,"mat-progress-bar",51)}function el(n,o){if(1&n&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(""!==e.rebalanceStatus.invoice?"check":"close")}}function nl(n,o){1&n&&t.nrm(0,"mat-progress-bar",51)}function il(n,o){if(1&n&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.rebalanceStatus.paymentRoute?"check":"close")}}function al(n,o){if(1&n&&(t.j41(0,"span",42),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",e," ")}}function ol(n,o){if(1&n&&(t.j41(0,"div",7),t.DNE(1,al,2,1,"span",53),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.rebalanceStatus.paymentRoute.split(","))}}function sl(n,o){1&n&&t.nrm(0,"mat-progress-bar",51)}function ll(n,o){if(1&n&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(!e.rebalanceStatus.paymentStatus||null!=e.rebalanceStatus.paymentStatus&&e.rebalanceStatus.paymentStatus.error?"close":"check")}}function rl(n,o){1&n&&t.nrm(0,"div",7)}function cl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",54),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onRestart())}),t.EFF(1,"Start Again"),t.k0s()}}function ml(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",7)(1,"mat-card-header",8)(2,"div",9)(3,"div",10)(4,"span",11),t.EFF(5,"Channel Rebalance"),t.k0s()(),t.j41(6,"div",12)(7,"button",13),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.showInfo())}),t.EFF(8,"?"),t.k0s(),t.j41(9,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onClose())}),t.EFF(10,"X"),t.k0s()()()(),t.j41(11,"mat-card-content",15)(12,"div",7)(13,"div",16)(14,"div",17),t.nrm(15,"fa-icon",18),t.j41(16,"span"),t.EFF(17,"Circular Rebalance is a payment you make to *yourself* to affect a relative change in the balances of two channels. This is accomplished by sending payment out from the selected channel and receiving it back on the channel with the selected peer. Please note, you will be paying routing fee to balance the channels in this manner."),t.k0s()()(),t.j41(18,"div",19)(19,"p",20)(20,"strong"),t.EFF(21,"Channel Peer:\xa0"),t.k0s(),t.EFF(22),t.nI1(23,"titlecase"),t.k0s(),t.j41(24,"p",20)(25,"strong"),t.EFF(26,"Channel ID:\xa0"),t.k0s(),t.EFF(27),t.k0s()(),t.j41(28,"mat-vertical-stepper",21,3)(30,"mat-step",22)(31,"form",23),t.DNE(32,Us,1,1,"ng-template",24),t.j41(33,"div",25)(34,"mat-form-field",26)(35,"mat-label"),t.EFF(36,"Amount"),t.k0s(),t.nrm(37,"input",27),t.j41(38,"mat-hint"),t.EFF(39),t.k0s(),t.j41(40,"span",28),t.EFF(41,"Sats"),t.k0s(),t.DNE(42,zs,2,0,"mat-error",29)(43,Js,2,0,"mat-error",29)(44,qs,2,1,"mat-error",29),t.k0s(),t.j41(45,"mat-form-field",30)(46,"mat-label"),t.EFF(47,"Receive from Peer"),t.k0s(),t.j41(48,"input",31),t.bIt("change",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(49,"mat-autocomplete",32,4),t.bIt("optionSelected",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onSelectedPeerChanged())}),t.DNE(51,Qs,2,3,"mat-option",33),t.nI1(52,"async"),t.k0s(),t.DNE(53,Zs,2,0,"mat-error",29)(54,Ws,2,0,"mat-error",29),t.k0s()(),t.j41(55,"div",34)(56,"button",35),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onRebalance())}),t.EFF(57,"Rebalance"),t.k0s()()()(),t.j41(58,"mat-step",36)(59,"form",23),t.DNE(60,Ks,1,0,"ng-template",24),t.j41(61,"div",37),t.DNE(62,tl,1,0,"mat-progress-bar",38),t.j41(63,"mat-expansion-panel",39)(64,"mat-expansion-panel-header")(65,"mat-panel-title")(66,"span",40),t.EFF(67),t.DNE(68,el,2,1,"mat-icon",41),t.k0s()()(),t.j41(69,"div",7)(70,"span",42),t.EFF(71),t.k0s()()(),t.DNE(72,nl,1,0,"mat-progress-bar",38),t.j41(73,"mat-expansion-panel",39)(74,"mat-expansion-panel-header")(75,"mat-panel-title")(76,"span",40),t.EFF(77),t.DNE(78,il,2,1,"mat-icon",41),t.k0s()()(),t.DNE(79,ol,2,1,"div",5),t.k0s(),t.DNE(80,sl,1,0,"mat-progress-bar",38),t.j41(81,"mat-expansion-panel",43)(82,"mat-expansion-panel-header")(83,"mat-panel-title")(84,"span",40),t.EFF(85),t.DNE(86,ll,2,1,"mat-icon",41),t.k0s()()(),t.DNE(87,rl,1,0,"div",44),t.k0s()(),t.j41(88,"h4",45),t.EFF(89),t.k0s(),t.j41(90,"div",46),t.DNE(91,cl,2,0,"button",47),t.k0s()()()(),t.j41(92,"div",48)(93,"button",49),t.EFF(94,"Close"),t.k0s()()()()()}if(2&n){const e=t.sdS(50),i=t.XpG(),a=t.sdS(2);t.Y8G("@opacityAnimation",void 0),t.R7$(15),t.Y8G("icon",i.faInfoCircle),t.R7$(7),t.JRh(t.bMT(23,38,i.selChannel.alias)),t.R7$(5),t.JRh(i.selChannel.shortChannelId),t.R7$(),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",i.inputFormGroup)("editable",i.flgEditable),t.R7$(),t.Y8G("formGroup",i.inputFormGroup),t.R7$(6),t.Y8G("step",100),t.R7$(2),t.Lme("(Local Bal: ",null==i.selChannel?null:i.selChannel.toLocal,", Remaining: ",(null==i.selChannel?null:i.selChannel.toLocal)-(i.inputFormGroup.controls.rebalanceAmount.value?i.inputFormGroup.controls.rebalanceAmount.value:0),")"),t.R7$(3),t.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.max),t.R7$(4),t.Y8G("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",i.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(52,40,i.filteredActiveChannels)),t.R7$(2),t.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.required),t.R7$(),t.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.notfound),t.R7$(4),t.Y8G("stepControl",i.statusFormGroup),t.R7$(),t.Y8G("formGroup",i.statusFormGroup),t.R7$(3),t.Y8G("ngIf",""===i.rebalanceStatus.invoice),t.R7$(5),t.JRh(""===i.rebalanceStatus.invoice?"Searching invoice...":i.rebalanceStatus.flgReusingInvoice?"Invoice re-used":"Invoice generated"),t.R7$(),t.Y8G("ngIf",""!==i.rebalanceStatus.invoice),t.R7$(3),t.JRh(i.rebalanceStatus.invoice),t.R7$(),t.Y8G("ngIf",!(null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error||i.rebalanceStatus.paymentRoute||"pending"===(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type))),t.R7$(5),t.JRh(null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Route failed":i.rebalanceStatus.paymentRoute?"Route used":"Searching route..."),t.R7$(),t.Y8G("ngIf",i.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("ngIf",""!==i.rebalanceStatus.paymentRoute),t.R7$(),t.Y8G("ngIf",!i.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("expanded",!!i.rebalanceStatus.paymentStatus),t.R7$(4),t.JRh(i.rebalanceStatus.paymentStatus&&"pending"!==(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)?null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Payment failed":"sent"===(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)?"Payment successful":"":"Payment status pending..."),t.R7$(),t.Y8G("ngIf",i.rebalanceStatus.paymentStatus&&"pending"!==(null==i.rebalanceStatus.paymentStatus?null:i.rebalanceStatus.paymentStatus.type)),t.R7$(),t.Y8G("ngIf",!i.rebalanceStatus.paymentStatus)("ngIfElse",a),t.R7$(2),t.JRh(i.rebalanceStatus.paymentStatus?i.rebalanceStatus.paymentStatus&&null!=i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error?"Rebalance Failed.":"Rebalance Successful.":""),t.R7$(2),t.Y8G("ngIf",i.rebalanceStatus.paymentStatus&&i.rebalanceStatus.paymentStatus.error),t.R7$(2),t.Y8G("mat-dialog-close",!1)}}function pl(n,o){1&n&&t.eu8(0)}function ul(n,o){if(1&n&&t.DNE(0,pl,1,0,"ng-container",55),2&n){const e=t.XpG(),i=t.sdS(4),a=t.sdS(6);t.Y8G("ngTemplateOutlet",e.rebalanceStatus.paymentStatus.error?i:a)}}function dl(n,o){if(1&n&&(t.j41(0,"div",7)(1,"span",42),t.EFF(2),t.k0s()()),2&n){const e=t.XpG();t.R7$(2),t.SpI("Error: ",e.rebalanceStatus.paymentStatus.error,"")}}function hl(n,o){if(1&n&&(t.j41(0,"div",7)(1,"div",56)(2,"div",57)(3,"h4",58),t.EFF(4,"Total Fees (Sats)"),t.k0s(),t.j41(5,"span",42),t.EFF(6),t.k0s()(),t.j41(7,"div",57)(8,"h4",58),t.EFF(9,"Number of Hops"),t.k0s(),t.j41(10,"span",42),t.EFF(11),t.k0s()()(),t.nrm(12,"mat-divider",59),t.j41(13,"div",56)(14,"div",60)(15,"h4",58),t.EFF(16,"Payment Hash"),t.k0s(),t.j41(17,"span",42),t.EFF(18),t.k0s()()(),t.nrm(19,"mat-divider",59),t.j41(20,"div",56)(21,"div",60)(22,"h4",58),t.EFF(23,"Payment ID"),t.k0s(),t.j41(24,"span",42),t.EFF(25),t.k0s()()(),t.nrm(26,"mat-divider",59),t.j41(27,"div",56)(28,"div",60)(29,"h4",58),t.EFF(30,"Parent ID"),t.k0s(),t.j41(31,"span",42),t.EFF(32),t.k0s()()()()),2&n){let e;const i=t.XpG();t.R7$(6),t.JRh(i.rebalanceStatus.paymentStatus.feesPaid?i.rebalanceStatus.paymentStatus.feesPaid/1e3:0),t.R7$(5),t.JRh(i.rebalanceStatus.paymentRoute&&""!==i.rebalanceStatus.paymentRoute?null==(e=i.rebalanceStatus.paymentRoute.split(","))?null:e.length:0),t.R7$(7),t.JRh(i.rebalanceStatus.paymentHash),t.R7$(7),t.JRh(i.rebalanceStatus.paymentDetails.paymentId),t.R7$(7),t.JRh(i.rebalanceStatus.paymentDetails.parentId)}}function fl(n,o){if(1&n){const e=t.RV6();t.j41(0,"span",76),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onStepChanged(a))}),t.nrm(1,"p",77),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngClass",t.l_i(1,Xs,i.stepNumber===e,i.stepNumber!==e))}}function _l(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",78),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onStepChanged(4))}),t.EFF(1,"Back"),t.k0s()}}function gl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",79),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,t.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function Cl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",80),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,t.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function yl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",81),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onStepChanged(a.stepNumber-1))}),t.EFF(1,"Back"),t.k0s()}}function bl(n,o){if(1&n){const e=t.RV6();t.j41(0,"button",82),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onStepChanged(a.stepNumber+1))}),t.EFF(1,"Next"),t.k0s()}}function Fl(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",61)(1,"div",62)(2,"mat-card-header",63)(3,"div",64),t.nrm(4,"span",11),t.k0s(),t.j41(5,"div",65)(6,"button",14),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return a.flgShowInfo=!1,t.Njj(a.stepNumber=1)}),t.EFF(7,"X"),t.k0s()()(),t.j41(8,"mat-card-content",66)(9,"rtl-ecl-channel-rebalance-infographics",67),t.mxI("stepNumberChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.stepNumber,a)||(s.stepNumber=a),t.Njj(a)}),t.k0s()(),t.j41(10,"div",68),t.DNE(11,fl,2,4,"span",69),t.k0s(),t.j41(12,"div",70),t.DNE(13,_l,2,0,"button",71)(14,gl,2,0,"button",72)(15,Cl,2,0,"button",73)(16,yl,2,0,"button",74)(17,bl,2,0,"button",75),t.k0s()()()}if(2&n){const e=t.XpG();t.Y8G("@opacityAnimation",void 0),t.R7$(9),t.Y8G("animationDirection",e.animationDirection),t.R50("stepNumber",e.stepNumber),t.R7$(2),t.Y8G("ngForOf",t.lJ4(9,Ys)),t.R7$(2),t.Y8G("ngIf",5===e.stepNumber),t.R7$(),t.Y8G("ngIf",5===e.stepNumber),t.R7$(),t.Y8G("ngIf",e.stepNumber<5),t.R7$(),t.Y8G("ngIf",e.stepNumber>1&&e.stepNumber<5),t.R7$(),t.Y8G("ngIf",e.stepNumber<5)}}let El=(()=>{class n{constructor(e,i,a,s,r,m,T){this.dialogRef=e,this.data=i,this.logger=a,this.dataService=s,this.formBuilder=r,this.store=m,this.decimalPipe=T,this.faInfoCircle=F.iW_,this.information={},this.selChannel={},this.activeChannels=[],this.rebalanceStatus={flgReusingInvoice:!1,invoice:"",paymentRoute:"",paymentHash:"",paymentDetails:null,paymentStatus:null},this.inputFormLabel="Amount to rebalance",this.flgEditable=!0,this.flgShowInfo=!1,this.stepNumber=1,this.animationDirection="forward",this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){let e="",i="";this.information=this.data.message?.information||{},this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(a=>a.channelId!==this.selChannel.channelId&&a.toRemote&&a.toRemote>0)||[],this.activeChannels=this.activeChannels.sort((a,s)=>(e=a.alias?a.alias.toLowerCase():a.shortChannelId?a.shortChannelId.toLowerCase():"",i=s.alias?s.alias.toLowerCase():a.shortChannelId?a.shortChannelId.toLowerCase():"",ei?1:0)),this.inputFormGroup=this.formBuilder.group({rebalanceAmount:["",[d.k0.required,d.k0.min(1),d.k0.max(this.selChannel.toLocal||0)]],selRebalancePeer:[null,d.k0.required]}),this.statusFormGroup=this.formBuilder.group({}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,f.Q)(this.unSubs[0]),(0,_t.Z)(0)).subscribe(a=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,Ct.of)(a?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,f.Q)(this.unSubs[1]),(0,_t.Z)("")).subscribe(a=>{"string"==typeof a&&(this.filteredActiveChannels=(0,Ct.of)(this.filterActiveChannels()))})}stepSelectionChanged(e){switch(e.selectedIndex){case 0:default:this.inputFormLabel="Amount to rebalance";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.alias?this.inputFormGroup.controls.selRebalancePeer.value.alias:this.inputFormGroup.controls.selRebalancePeer.value.nodeId.substring(0,15)+"..."):"Amount to rebalance"}}onRebalance(){if(!this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.rebalanceAmount.value<=0||this.selChannel.toLocal&&this.inputFormGroup.controls.rebalanceAmount.value>+this.selChannel.toLocal||!this.inputFormGroup.controls.selRebalancePeer.value.nodeId)return this.inputFormGroup.controls.selRebalancePeer.value.nodeId||this.inputFormGroup.controls.selRebalancePeer.setErrors({required:!0}),!0;this.stepper.next(),this.flgEditable=!1,this.rebalanceStatus={flgReusingInvoice:!1,invoice:"",paymentRoute:"",paymentHash:"",paymentDetails:null,paymentStatus:null},this.dataService.circularRebalance(1e3*this.inputFormGroup.controls.rebalanceAmount.value,this.selChannel.shortChannelId,this.selChannel.nodeId,this.inputFormGroup.controls.selRebalancePeer.value.shortChannelId,this.inputFormGroup.controls.selRebalancePeer.value.nodeId,[this.information.nodeId||""]).pipe((0,f.Q)(this.unSubs[2])).subscribe({next:e=>{this.logger.info(e),this.rebalanceStatus=e,this.flgEditable=!0,this.store.dispatch((0,k.$Q)())},error:e=>{this.logger.error(e),this.rebalanceStatus=e,this.flgEditable=!0}})}filterActiveChannels(){return this.activeChannels?.filter(e=>e.toRemote&&e.toRemote>=this.inputFormGroup.controls.rebalanceAmount.value&&e.channelId!==this.selChannel.channelId&&(0===e.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===e.channelId?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))}onSelectedPeerChanged(){if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const e=this.activeChannels?.filter(i=>i.alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===i.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));e&&e.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(e[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(e){return e&&e.alias?e.alias:e&&e.shortChannelId?e.shortChannelId:""}showInfo(){this.flgShowInfo=!0}onStepChanged(e){this.animationDirection=e{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(B.CP),t.rXU(B.Vh),t.rXU(G.gP),t.rXU(et.u),t.rXU(d.ok),t.rXU(R.il),t.rXU(p.QX))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-rebalance"]],viewQuery:function(i,a){if(1&i&&t.GBs(Hs,5),2&i){let s;t.mGM(s=t.lsd())&&(a.stepper=s.first)}},decls:8,vars:2,consts:[["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["stepper",""],["auto","matAutocomplete"],["fxLayout","column",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column"],[1,"modal-info-header"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayoutAlign","start center"],[1,"page-title"],["fxLayoutAlign","end center"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","46"],[3,"linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start end"],["type","text","aria-label","Receive from Peer","matInput","","formControlName","selRebalancePeer","tabindex","2","required","",3,"change","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","8","type","submit",3,"click"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxFlex","100",1,"flat-expansion-panel","mb-2"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[1,"foreground-secondary-text"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayoutAlign","start",1,"font-bold-500","mt-1"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],[3,"value"],["fxFlex","100","color","primary","mode","indeterminate"],[1,"ml-1","icon-small"],["class","foreground-secondary-text",4,"ngFor","ngForOf"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[4,"ngTemplateOutlet"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(i,a){1&i&&t.DNE(0,ml,95,42,"div",5)(1,ul,1,1,"ng-template",null,0,t.C5r)(3,dl,3,1,"ng-template",null,1,t.C5r)(5,hl,33,5,"ng-template",null,2,t.C5r)(7,Fl,18,10,"div",6),2&i&&(t.Y8G("ngIf",!a.flgShowInfo),t.R7$(7),t.Y8G("ngIf",a.flgShowInfo))},dependencies:[p.YU,p.Sq,p.bT,p.T3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.j4,d.JD,w.aY,h.DJ,h.sA,h.UI,L.PW,B.tx,j.$z,E.m2,E.MM,Y.GK,Y.Z2,Y.WN,ct.An,O.fg,g.rl,g.nJ,g.MV,g.TL,g.yw,Z.q,V.HM,X.wT,tt.V5,tt.Ti,tt.M6,st.$3,st.pN,W.N,Os,p.Jj,p.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[yt.C]}})}return n})();const xl=()=>["all"],Ll=n=>({"error-border":n}),Sl=()=>["no_peer"],bt=n=>({width:n}),vl=n=>({"display-none":n});function Rl(n,o){if(1&n&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Il(n,o){1&n&&t.nrm(0,"mat-progress-bar",37)}function kl(n,o){1&n&&t.nrm(0,"th",38)}function Tl(n,o){if(1&n&&(t.j41(0,"span",42),t.nrm(1,"fa-icon",43),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function wl(n,o){if(1&n&&(t.j41(0,"span",44),t.nrm(1,"fa-icon",43),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function jl(n,o){if(1&n&&(t.j41(0,"td",39),t.DNE(1,Tl,2,1,"span",40)(2,wl,2,1,"span",41),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function Dl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Short Channel ID"),t.k0s())}function Pl(n,o){if(1&n&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function Gl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Channel ID"),t.k0s())}function Al(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,bt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Nl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Alias"),t.k0s())}function Ml(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,bt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Bl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Node ID"),t.k0s())}function $l(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,bt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Vl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Initiator"),t.k0s())}function Ol(n,o){if(1&n&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function Hl(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Base Fee (mSats)"),t.k0s())}function Yl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeBaseMsat,"1.0-0")," ")}}function Xl(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Fee Rate (mili mSats)"),t.k0s())}function Ul(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeProportionalMillionths,"1.0-0")," ")}}function zl(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function Jl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function ql(n,o){1&n&&(t.j41(0,"th",48),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function Ql(n,o){if(1&n&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Zl(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Balance Score"),t.k0s())}function Wl(n,o){if(1&n&&(t.j41(0,"td",39)(1,"div",50)(2,"mat-hint",51),t.EFF(3),t.nI1(4,"number"),t.k0s()(),t.nrm(5,"mat-progress-bar",52),t.k0s()),2&n){const e=o.$implicit;t.R7$(3),t.JRh(t.bMT(4,2,(null==e?null:e.balancedness)||0)),t.R7$(2),t.FS9("value",null!=e&&e.toLocal&&(null==e?null:e.toLocal)>0?+(null==e?null:e.toLocal)/(+(null==e?null:e.toLocal)+ +(null==e?null:e.toRemote))*100:0)}}function Kl(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",53)(1,"div",54)(2,"mat-select",55),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",56),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onChannelUpdate("all"))}),t.EFF(5,"Update Fee Policy"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(7,"Download CSV"),t.k0s()()()()}}function tr(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",57)(1,"div",54)(2,"mat-select",58),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",56),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onChannelClick(s,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelUpdate(a))}),t.EFF(7,"Update Fee Policy"),t.k0s(),t.j41(8,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onCircularRebalance(a))}),t.EFF(9,"Circular Rebalance"),t.k0s(),t.j41(10,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelClose(a,!1))}),t.EFF(11,"Close Channel"),t.k0s(),t.j41(12,"mat-option",56),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelClose(a,!0))}),t.EFF(13,"Force Close"),t.k0s()()()()}}function er(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No peers connected. Add a peer in order to open a channel."),t.k0s())}function nr(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No channel available."),t.k0s())}function ir(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting channels..."),t.k0s())}function ar(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function or(n,o){if(1&n&&(t.j41(0,"td",59),t.DNE(1,er,2,0,"p",60)(2,nr,2,0,"p",60)(3,ir,2,0,"p",60)(4,ar,2,1,"p",60),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("ngIf",e.numPeers<1&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",e.numPeers>0&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function sr(n,o){if(1&n&&t.nrm(0,"tr",61),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,vl,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function lr(n,o){1&n&&t.nrm(0,"tr",62)}function rr(n,o){1&n&&t.nrm(0,"tr",63)}let cr=(()=>{class n{constructor(e,i,a,s,r,m){this.logger=e,this.store=i,this.rtlEffects=a,this.commonService=s,this.router=r,this.camelCaseWithSpaces=m,this.faEye=F.pS3,this.faEyeSlash=F.k6j,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.G,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=e.activeChannels,this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable()}onCircularRebalance(e){this.store.dispatch((0,v.xO)({payload:{data:{message:{channels:this.activeChannels,selChannel:e,information:this.information},component:El}}}))}onChannelUpdate(e){"all"!==e&&e?.state&&"NORMAL"!==e?.state||(this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"string"==typeof e&&"all"===e?"Update fee policy for all channels":"Update fee policy for Channel: "+(e?.alias||e?.shortChannelId?e?.alias&&e?.shortChannelId?e?.alias+" ("+e?.shortChannelId+")":e?.alias?e?.alias:e?.shortChannelId:e?.channelId),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:l.UN.NUMBER,inputValue:e&&typeof e?.feeBaseMsat<"u"?e?.feeBaseMsat:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:l.UN.NUMBER,inputValue:e&&typeof e?.feeProportionalMillionths<"u"?e?.feeProportionalMillionths:100,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[5])).subscribe(s=>{if(s){const r=s[0].inputValue,m=s[1].inputValue;let T=null;if(this.commonService.isVersionCompatible(this.information.version,"0.6.2")){let y="";"all"===e?(this.activeChannels.forEach(P=>{y=y+","+P.nodeId}),y=y.substring(1),T={baseFeeMsat:r,feeRate:m,nodeIds:y}):T={baseFeeMsat:r,feeRate:m,nodeId:e?.nodeId}}else{let y="";"all"===e?(this.activeChannels.forEach(P=>{y=y+","+P.channelId}),y=y.substring(1),T={baseFeeMsat:r,feeRate:m,channelIds:y}):T={baseFeeMsat:r,feeRate:m,channelId:e?.channelId}}this.store.dispatch((0,k.fy)({payload:T}))}}),this.applyFilter())}percentHintFunction(e){return(e/1e4).toString()+"%"}onChannelClose(e,i){this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:i?"Force Close Channel":"Close Channel",titleMessage:i?"Force closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId):"Closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId),noBtnText:"Cancel",yesBtnText:i?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[6])).subscribe(m=>{m&&this.store.dispatch((0,k.w0)({payload:{channelId:e.channelId,force:i}}))})}onChannelClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{channel:e,channelsType:"open",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):"announceChannel"===e?"Private":this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadChannelsTable(){this.channels=new c.I6([...this.activeChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"ActiveChannels")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(at.H),t.rXU(M.h),t.rXU(b.Ix),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-open-table"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Channels")}])],decls:60,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","shortChannelId"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isInitiator"],["matColumnDef","feeBaseMsat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","feeProportionalMillionths"],["matColumnDef","toLocal"],["matColumnDef","toRemote"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,Rl,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,Il,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,kl,1,0,"th",13)(20,jl,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,Dl,2,0,"th",16)(23,Pl,2,1,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,Gl,2,0,"th",16)(26,Al,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Nl,2,0,"th",16)(29,Ml,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,Bl,2,0,"th",16)(32,$l,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,Vl,2,0,"th",16)(35,Ol,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,Hl,2,0,"th",22)(38,Yl,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,Xl,2,0,"th",22)(41,Ul,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,zl,2,0,"th",22)(44,Jl,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,ql,2,0,"th",22)(47,Ql,4,4,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,Zl,2,0,"th",16)(50,Wl,6,4,"td",14),t.bVm(),t.qex(51,27),t.DNE(52,Kl,8,0,"th",28)(53,tr,14,0,"td",29),t.bVm(),t.qex(54,30),t.DNE(55,or,5,4,"td",31),t.bVm(),t.DNE(56,sr,1,3,"tr",32)(57,lr,1,0,"tr",33)(58,rr,1,0,"tr",34),t.k0s()(),t.nrm(59,"mat-paginator",35),t.k0s()}2&i&&(t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,xl).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.eq3(15,Ll,""!==a.errorMessage)),t.R7$(40),t.Y8G("matFooterRowDef",t.lJ4(17,Sl)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,O.fg,g.rl,g.nJ,g.MV,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,p.QX],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]})}return n})();const mr=()=>["all"],pr=n=>({"error-border":n}),ur=()=>["no_channel"],Mt=n=>({width:n}),dr=n=>({"display-none":n});function hr(n,o){if(1&n&&(t.j41(0,"mat-option",33),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function fr(n,o){1&n&&t.nrm(0,"mat-progress-bar",34)}function _r(n,o){1&n&&t.nrm(0,"th",35)}function gr(n,o){if(1&n&&(t.j41(0,"span",39),t.nrm(1,"fa-icon",40),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function Cr(n,o){if(1&n&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",40),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function yr(n,o){if(1&n&&(t.j41(0,"td",36),t.DNE(1,gr,2,1,"span",37)(2,Cr,2,1,"span",38),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function br(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"State"),t.k0s())}function Fr(n,o){if(1&n&&(t.j41(0,"td",36),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function Er(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Channel ID"),t.k0s())}function xr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Mt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Lr(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Alias"),t.k0s())}function Sr(n,o){if(1&n&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.alias)}}function vr(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Node ID"),t.k0s())}function Rr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Mt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Ir(n,o){1&n&&(t.j41(0,"th",42),t.EFF(1,"Initiator"),t.k0s())}function kr(n,o){if(1&n&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function Tr(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function wr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function jr(n,o){1&n&&(t.j41(0,"th",45),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function Dr(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Pr(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",50),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Gr(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",51)(1,"button",52),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onChannelClick(s,a))}),t.EFF(2,"View Info"),t.k0s()()}}function Ar(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No pending channel available."),t.k0s())}function Nr(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting pending channels..."),t.k0s())}function Mr(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function Br(n,o){if(1&n&&(t.j41(0,"td",53),t.DNE(1,Ar,2,0,"p",54)(2,Nr,2,0,"p",54)(3,Mr,2,1,"p",54),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function $r(n,o){if(1&n&&t.nrm(0,"tr",55),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,dr,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Vr(n,o){1&n&&t.nrm(0,"tr",56)}function Or(n,o){1&n&&t.nrm(0,"tr",57)}let Hr=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.store=i,this.commonService=a,this.camelCaseWithSpaces=s,this.faEye=F.pS3,this.faEyeSlash=F.k6j,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_channels",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.G,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=e.pendingChannels,this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.pendingChannels.length>0&&this.loadChannelsTable()}onChannelClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{channel:e,channelsType:"pending",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):"announceChannel"===e?"Private":this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadChannelsTable(){this.channels=new c.I6([...this.pendingChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"PendingChannels")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(M.h),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-pending-table"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Channels")}])],decls:51,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isInitiator"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,hr,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,fr,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,_r,1,0,"th",13)(20,yr,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,br,2,0,"th",16)(23,Fr,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,Er,2,0,"th",16)(26,xr,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Lr,2,0,"th",16)(29,Sr,2,1,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,vr,2,0,"th",16)(32,Rr,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,Ir,2,0,"th",16)(35,kr,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,Tr,2,0,"th",22)(38,wr,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,jr,2,0,"th",22)(41,Dr,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,Pr,6,0,"th",25)(44,Gr,3,0,"td",26),t.bVm(),t.qex(45,27),t.DNE(46,Br,4,3,"td",28),t.bVm(),t.DNE(47,$r,1,3,"tr",29)(48,Vr,1,0,"tr",30)(49,Or,1,0,"tr",31),t.k0s()(),t.nrm(50,"mat-paginator",32),t.k0s()}2&i&&(t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,mr).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.eq3(15,pr,""!==a.errorMessage)),t.R7$(31),t.Y8G("matFooterRowDef",t.lJ4(17,ur)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,p.QX,p.PV],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();const Yr=()=>["all"],Xr=n=>({"error-border":n}),Ur=()=>["no_peer"],Bt=n=>({"mr-0":n}),$t=n=>({width:n}),zr=n=>({"display-none":n});function Jr(n,o){if(1&n&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function qr(n,o){1&n&&t.nrm(0,"mat-progress-bar",36)}function Qr(n,o){1&n&&t.nrm(0,"th",37)}function Zr(n,o){if(1&n&&t.nrm(0,"span",41),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Bt,e.screenSize===e.screenSizeEnum.XS))}}function Wr(n,o){if(1&n&&t.nrm(0,"span",42),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Bt,e.screenSize===e.screenSizeEnum.XS))}}function Kr(n,o){if(1&n&&(t.j41(0,"td",38),t.DNE(1,Zr,1,3,"span",39)(2,Wr,1,3,"span",40),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function t1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Alias"),t.k0s())}function e1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function n1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Node ID"),t.k0s())}function i1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function a1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Network Address"),t.k0s())}function o1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",null==e?null:e.address," ")}}function s1(n,o){1&n&&(t.j41(0,"th",43),t.EFF(1,"Channels"),t.k0s())}function l1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.channels)}}function r1(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",46)(1,"div",47)(2,"mat-select",48),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",49),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function c1(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){t.eBV(e);const a=t.XpG().$implicit,s=t.XpG();return t.Njj(s.onPeerDetach(a))}),t.EFF(1,"Disconnect"),t.k0s()}}function m1(n,o){if(1&n){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){t.eBV(e);const a=t.XpG().$implicit,s=t.XpG();return t.Njj(s.onConnectPeer(a))}),t.EFF(1,"Reconnect"),t.k0s()}}function p1(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",50)(1,"div",47)(2,"mat-select",48),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",49),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onPeerClick(s,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",49),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onOpenChannel(a))}),t.EFF(7,"Open Channel"),t.k0s(),t.DNE(8,c1,2,0,"mat-option",51)(9,m1,2,0,"mat-option",51),t.k0s()()()}if(2&n){const e=o.$implicit;t.R7$(8),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function u1(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No connected peer."),t.k0s())}function d1(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting peers..."),t.k0s())}function h1(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function f1(n,o){if(1&n&&(t.j41(0,"td",52),t.DNE(1,u1,2,0,"p",53)(2,d1,2,0,"p",53)(3,h1,2,1,"p",53),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function _1(n,o){if(1&n&&t.nrm(0,"tr",54),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,zr,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function g1(n,o){1&n&&t.nrm(0,"tr",55)}function C1(n,o){1&n&&t.nrm(0,"tr",56)}let y1=(()=>{class n{constructor(e,i,a,s,r,m){this.logger=e,this.store=i,this.rtlEffects=a,this.actions=s,this.commonService=r,this.camelCaseWithSpaces=m,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.faUsers=F.gdJ,this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new c.I6([]),this.information={},this.availableBalance=0,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.information=e}),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("state"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=e.peers,this.loadPeersTable(this.peersData),this.logger.info(e)}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.availableBalance=e.onchainBalance.total||0}),this.actions.pipe((0,f.Q)(this.unSubs[4]),(0,H.p)(e=>e.type===l.Uu.SET_PEERS_ECL)).subscribe(e=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(e,i){const a=[[{key:"nodeId",value:e.nodeId,title:"Public Key",width:100}],[{key:"address",value:e.address,title:"Address",width:50},{key:"alias",value:e.alias,title:"Alias",width:50}],[{key:"state",value:this.commonService.titleCase(e.state||""),title:"State",width:50},{key:"channels",value:e.channels,title:"Channels",width:50}]];this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:e.nodeId,goToName:"Graph lookup",goToLink:"/ecl/graph/lookups",showQRName:"Public Key",showQRField:e.nodeId,message:a}}}))}onConnectPeer(e){this.store.dispatch((0,v.xO)({payload:{data:{message:{peer:e.nodeId?e:null,information:this.information,balance:this.availableBalance},component:Dt}}}))}onOpenChannel(e){this.store.dispatch((0,v.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:e,information:this.information,balance:this.availableBalance},newlyAdded:!1,component:Nt}}}))}onPeerDetach(e){this.store.dispatch(e&&e.channels&&e.channels>0?(0,v.xO)({payload:{data:{type:l.A$.ERROR,alertTitle:"Disconnect Not Allowed",titleMessage:"Channel active with this peer."}}}):(0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(e.alias?e.alias:e.nodeId),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[5])).subscribe(i=>{i&&this.store.dispatch((0,k.Lc)({payload:{nodeId:e.nodeId||""}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.peers.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"state":a=e?.state?.toLowerCase()||"";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===a.indexOf(i):a.includes(i)}}loadPeersTable(e){this.peers=new c.I6(e?[...e]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(i,a)=>i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(at.H),t.rXU(Q.En),t.rXU(M.h),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-peers"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Peers")}])],decls:50,vars:19,consts:[["peersForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","nodeId"],["matColumnDef","address"],["matColumnDef","channels"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State"],["mat-cell",""],["class","dot green","matTooltip","Connected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Disconnected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Connected","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Disconnected","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",2)(1,"form",3,0)(3,"button",4),t.bIt("click",function(){return t.eBV(s),t.Njj(a.onConnectPeer({}))}),t.EFF(4,"Add Peer"),t.k0s()(),t.j41(5,"div",5)(6,"div",6)(7,"div",7),t.nrm(8,"fa-icon",8),t.j41(9,"span",9),t.EFF(10,"Peers"),t.k0s()(),t.j41(11,"div",10)(12,"mat-form-field",11)(13,"mat-label"),t.EFF(14,"Filter By"),t.k0s(),t.j41(15,"mat-select",12),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(16,"perfect-scrollbar"),t.DNE(17,Jr,2,2,"mat-option",13),t.k0s()()(),t.j41(18,"mat-form-field",11)(19,"mat-label"),t.EFF(20,"Filter"),t.k0s(),t.j41(21,"input",14),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(22,"div",15),t.DNE(23,qr,1,0,"mat-progress-bar",16),t.j41(24,"table",17,1),t.qex(26,18),t.DNE(27,Qr,1,0,"th",19)(28,Kr,3,2,"td",20),t.bVm(),t.qex(29,21),t.DNE(30,t1,2,0,"th",22)(31,e1,4,4,"td",20),t.bVm(),t.qex(32,23),t.DNE(33,n1,2,0,"th",22)(34,i1,4,4,"td",20),t.bVm(),t.qex(35,24),t.DNE(36,a1,2,0,"th",22)(37,o1,2,1,"td",20),t.bVm(),t.qex(38,25),t.DNE(39,s1,2,0,"th",22)(40,l1,2,1,"td",20),t.bVm(),t.qex(41,26),t.DNE(42,r1,6,0,"th",27)(43,p1,10,2,"td",28),t.bVm(),t.qex(44,29),t.DNE(45,f1,4,3,"td",30),t.bVm(),t.DNE(46,_1,1,3,"tr",31)(47,g1,1,0,"tr",32)(48,C1,1,0,"tr",33),t.k0s()(),t.nrm(49,"mat-paginator",34),t.k0s()()}2&i&&(t.R7$(8),t.Y8G("icon",a.faUsers),t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Yr).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.peers)("ngClass",t.eq3(16,Xr,""!==a.errorMessage)),t.R7$(22),t.Y8G("matFooterRowDef",t.lJ4(18,Ur)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.BC,d.cb,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld],styles:[".mat-column-state[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();const b1=["queryRoutesForm"],F1=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),Vt=n=>({"max-width":n});function E1(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Destination Node ID is required."),t.k0s())}function x1(n,o){1&n&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function L1(n,o){1&n&&t.nrm(0,"mat-progress-bar",23)}function S1(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1," Alias"),t.k0s())}function v1(n,o){if(1&n&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Vt,i.screenSize===i.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.alias)}}function R1(n,o){1&n&&(t.j41(0,"th",40),t.EFF(1," ID"),t.k0s())}function I1(n,o){if(1&n&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Vt,i.screenSize===i.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function k1(n,o){1&n&&(t.j41(0,"th",40)(1,"div",44),t.EFF(2,"Actions"),t.k0s()())}function T1(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",45)(1,"button",46),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG(2);return t.Njj(s.onHopClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function w1(n,o){1&n&&t.nrm(0,"tr",47)}function j1(n,o){1&n&&t.nrm(0,"tr",48)}function D1(n,o){if(1&n&&(t.j41(0,"div",24)(1,"mat-expansion-panel",25)(2,"mat-expansion-panel-header")(3,"mat-panel-title",26)(4,"span",27),t.EFF(5),t.k0s(),t.j41(6,"span",28),t.EFF(7),t.nI1(8,"number"),t.k0s()()(),t.j41(9,"mat-panel-description",29)(10,"div",30)(11,"table",31,2),t.qex(13,32),t.DNE(14,S1,2,0,"th",33)(15,v1,4,4,"td",34),t.bVm(),t.qex(16,35),t.DNE(17,R1,2,0,"th",33)(18,I1,4,4,"td",34),t.bVm(),t.qex(19,36),t.DNE(20,k1,3,0,"th",33)(21,T1,3,0,"td",37),t.bVm(),t.DNE(22,w1,1,0,"tr",38)(23,j1,1,0,"tr",39),t.k0s()()()()()),2&n){const e=o.$implicit,i=o.index,a=t.XpG();t.R7$(5),t.SpI("Route ",i+1,""),t.R7$(2),t.JRh(t.bMT(8,6,e.amount/1e3)),t.R7$(4),t.Y8G("dataSource",a.qrHops[i])("ngClass",t.eq3(8,F1,"error"===a.flgLoading[0])),t.R7$(11),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns)}}let P1=(()=>{class n{constructor(e,i,a){this.store=e,this.eclEffects=i,this.commonService=a,this.allQRoutes=[],this.nodeId="",this.amount=0,this.qrHops=[],this.displayedColumns=["alias","nodeId","actions"],this.flgLoading=[!1],this.faRoute=F.TBz,this.faExclamationTriangle=F.zpE,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.qrHops[0]=new c.I6([]),this.qrHops[0].data=[],this.eclEffects.setQueryRoutes.pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{e&&e.routes&&e.routes.length?(this.flgLoading[0]=!1,this.allQRoutes=e.routes,this.allQRoutes.forEach((i,a)=>{this.qrHops[a]=new c.I6([...i.nodeIds])})):(this.flgLoading[0]="error",this.allQRoutes=[],this.qrHops=[])})}onQueryRoutes(){if(!this.nodeId||!this.amount)return!0;this.qrHops=[],this.flgLoading[0]=!0,this.store.dispatch((0,k.T4)({payload:{nodeId:this.nodeId,amount:1e3*this.amount}}))}resetData(){this.allQRoutes=[],this.nodeId="",this.amount=0,this.flgLoading[0]=!1,this.qrHops=[],this.form.resetForm()}onHopClick(e){this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"alias",value:e.alias,title:"Alias",width:100,type:l.UN.STRING}],[{key:"nodeId",value:e.nodeId,title:"Node ID",width:100,type:l.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(R.il),t.rXU(pt.B),t.rXU(M.h))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-query-routes"]],viewQuery:function(i,a){if(1&i&&t.GBs(b1,7),2&i){let s;t.mGM(s=t.lsd())&&(a.form=s.first)}},decls:32,vars:10,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table[i]",""],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","nodeId","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-3","mb-1"],["fxFlex","70","fxLayoutAlign","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","column","fxFlex","100"],["fxFlex","100",4,"ngFor","ngForOf"],["mode","indeterminate"],["fxFlex","100"],[1,"flat-expansion-panel","help-expansion","mb-2px"],["fxLayout","row","fxLayoutAlign","space-between start"],["fxFlex","50","fxLayoutAlign","start start"],["fxFlex","50","fxLayoutAlign","end end"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"table-container","mb-2",3,"perfectScrollbar"],["mat-table","",3,"dataSource","ngClass"],["matColumnDef","alias"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","nodeId"],["matColumnDef","actions"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",3)(1,"form",4,0),t.bIt("ngSubmit",function(){t.eBV(s);const m=t.sdS(2);return t.Njj(m.form.valid&&a.onQueryRoutes())}),t.j41(3,"div",5),t.nrm(4,"fa-icon",6),t.j41(5,"span"),t.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),t.k0s()(),t.j41(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Destination Node ID"),t.k0s(),t.j41(10,"input",8,1),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.nodeId,m)||(a.nodeId=m),t.Njj(m)}),t.k0s(),t.DNE(12,E1,2,0,"mat-error",9),t.k0s(),t.j41(13,"mat-form-field",10)(14,"mat-label"),t.EFF(15,"Amount (Sats)"),t.k0s(),t.j41(16,"input",11),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.amount,m)||(a.amount=m),t.Njj(m)}),t.k0s(),t.DNE(17,x1,2,0,"mat-error",9),t.k0s(),t.j41(18,"div",12)(19,"button",13),t.bIt("click",function(){return t.eBV(s),t.Njj(a.resetData())}),t.EFF(20,"Clear"),t.k0s(),t.j41(21,"button",14),t.EFF(22,"Query Route"),t.k0s()()(),t.j41(23,"div",15)(24,"div",16),t.nrm(25,"fa-icon",17),t.j41(26,"span",18),t.EFF(27,"Transaction Route"),t.k0s()()(),t.DNE(28,L1,1,0,"mat-progress-bar",19),t.j41(29,"div",20)(30,"div",21),t.DNE(31,D1,24,10,"div",22),t.k0s()()()}2&i&&(t.R7$(4),t.Y8G("icon",a.faExclamationTriangle),t.R7$(6),t.R50("ngModel",a.nodeId),t.R7$(2),t.Y8G("ngIf",!a.nodeId),t.R7$(4),t.Y8G("step",1e3)("min",0),t.R50("ngModel",a.amount),t.R7$(),t.Y8G("ngIf",!a.amount),t.R7$(8),t.Y8G("icon",a.faRoute),t.R7$(3),t.Y8G("ngIf",!0===a.flgLoading[0]),t.R7$(3),t.Y8G("ngForOf",a.allQRoutes))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.qT,d.me,d.Q0,d.BC,d.cb,d.YS,d.VZ,d.vS,d.cV,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,Y.GK,Y.Z2,Y.WN,Y.Q6,O.fg,g.rl,g.nJ,g.TL,V.HM,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,K.V,p.QX]})}return n})();const G1=()=>["all"],A1=n=>({"error-border":n}),N1=()=>["no_channel"],Ft=n=>({width:n}),M1=n=>({"display-none":n});function B1(n,o){if(1&n&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function $1(n,o){1&n&&t.nrm(0,"mat-progress-bar",36)}function V1(n,o){1&n&&t.nrm(0,"th",37)}function O1(n,o){if(1&n&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",42),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function H1(n,o){if(1&n&&(t.j41(0,"span",43),t.nrm(1,"fa-icon",42),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function Y1(n,o){if(1&n&&(t.j41(0,"td",38),t.DNE(1,O1,2,1,"span",39)(2,H1,2,1,"span",40),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf",!e.announceChannel),t.R7$(),t.Y8G("ngIf",e.announceChannel)}}function X1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"State"),t.k0s())}function U1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function z1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Short Channel ID"),t.k0s())}function J1(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function q1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Channel ID"),t.k0s())}function Q1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Z1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Alias"),t.k0s())}function W1(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(e.alias)}}function K1(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Node ID"),t.k0s())}function tc(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ft,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function ec(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Initiator"),t.k0s())}function nc(n,o){if(1&n&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function ic(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function ac(n,o){if(1&n&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function oc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function sc(n,o){if(1&n&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function lc(n,o){1&n&&(t.j41(0,"th",44),t.EFF(1,"Balance Score"),t.k0s())}function rc(n,o){if(1&n&&(t.j41(0,"td",38)(1,"div",49)(2,"mat-hint",50),t.EFF(3),t.nI1(4,"number"),t.k0s()(),t.nrm(5,"mat-progress-bar",51),t.k0s()),2&n){const e=o.$implicit;t.R7$(3),t.JRh(t.bMT(4,2,(null==e?null:e.balancedness)||0)),t.R7$(2),t.FS9("value",e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0)}}function cc(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",52)(1,"div",53)(2,"mat-select",54),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function mc(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",56)(1,"div",53)(2,"mat-select",57),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG();return t.Njj(r.onChannelClick(s,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",55),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.onChannelClose(a,!0))}),t.EFF(7,"Force Close"),t.k0s()()()()}}function pc(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No inactive channel available."),t.k0s())}function uc(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting inactive channels..."),t.k0s())}function dc(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function hc(n,o){if(1&n&&(t.j41(0,"td",58),t.DNE(1,pc,2,0,"p",59)(2,uc,2,0,"p",59)(3,dc,2,1,"p",59),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function fc(n,o){if(1&n&&t.nrm(0,"tr",60),2&n){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,M1,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function _c(n,o){1&n&&t.nrm(0,"tr",61)}function gc(n,o){1&n&&t.nrm(0,"tr",62)}let Cc=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.store=i,this.rtlEffects=a,this.commonService=s,this.camelCaseWithSpaces=r,this.faEye=F.pS3,this.faEyeSlash=F.k6j,this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"inactive_channels",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=l.G,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.Ou).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.inactiveChannels=e.inactiveChannels,this.loadChannelsTable(),this.logger.info(e)}),this.store.select(C.p3).pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{this.information=e}),this.store.select(C.os).pipe((0,f.Q)(this.unSubs[3])).subscribe(e=>{this.numPeers=e.peers&&e.peers.length?e.peers.length:0}),this.store.select(C.DW).pipe((0,f.Q)(this.unSubs[4])).subscribe(e=>{this.totalBalance=e.onchainBalance.total||0})}ngAfterViewInit(){this.inactiveChannels.length>0&&this.loadChannelsTable()}onChannelClose(e,i){this.store.dispatch((0,v.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:i?"Force Close Channel":"Close Channel",titleMessage:i?"Force closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId):"Closing channel: "+(e.alias||e.shortChannelId?e.alias&&e.shortChannelId?e.alias+" ("+e.shortChannelId+")":e.alias?e.alias:e.shortChannelId:e.channelId),noBtnText:"Cancel",yesBtnText:i?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,f.Q)(this.unSubs[5])).subscribe(m=>{m&&this.store.dispatch((0,k.w0)({payload:{channelId:e.channelId||"",force:i}}))})}onChannelClick(e,i){this.store.dispatch((0,v.xO)({payload:{data:{channel:e,channelsType:"inactive",component:gt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLocaleLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):"announceChannel"===e?"Private":this.commonService.titleCase(e)}setFilterPredicate(){this.channels.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(e).toLowerCase();break;case"announceChannel":a=e?.announceChannel?"public":"private";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadChannelsTable(){this.channels=new c.I6([...this.inactiveChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(e,i)=>e[i]&&isNaN(e[i])?e[i].toLocaleLowerCase():e[i]?+e[i]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"InactiveChannels")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(R.il),t.rXU(at.H),t.rXU(M.h),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-channel-inactive-table"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Channels")}])],decls:57,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","shortChannelId"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isInitiator"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(i,a){if(1&i){const s=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilterBy,m)||(a.selFilterBy=m),t.Njj(m)}),t.bIt("selectionChange",function(){return t.eBV(s),a.selFilter="",t.Njj(a.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,B1,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(m){return t.eBV(s),t.DH7(a.selFilter,m)||(a.selFilter=m),t.Njj(m)}),t.bIt("input",function(){return t.eBV(s),t.Njj(a.applyFilter())})("keyup",function(){return t.eBV(s),t.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,$1,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,V1,1,0,"th",13)(20,Y1,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,X1,2,0,"th",16)(23,U1,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,z1,2,0,"th",16)(26,J1,2,1,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,q1,2,0,"th",16)(29,Q1,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,Z1,2,0,"th",16)(32,W1,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,K1,2,0,"th",16)(35,tc,4,4,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,ec,2,0,"th",16)(38,nc,2,1,"td",14),t.bVm(),t.qex(39,22),t.DNE(40,ic,2,0,"th",23)(41,ac,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,oc,2,0,"th",23)(44,sc,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,lc,2,0,"th",16)(47,rc,6,4,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,cc,6,0,"th",27)(50,mc,8,0,"td",28),t.bVm(),t.qex(51,29),t.DNE(52,hc,4,3,"td",30),t.bVm(),t.DNE(53,fc,1,3,"tr",31)(54,_c,1,0,"tr",32)(55,gc,1,0,"tr",33),t.k0s()(),t.nrm(56,"mat-paginator",34),t.k0s()}2&i&&(t.R7$(7),t.R50("ngModel",a.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,G1).concat(a.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",a.selFilter),t.R7$(2),t.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",t.eq3(15,A1,""!==a.errorMessage)),t.R7$(37),t.Y8G("matFooterRowDef",t.lJ4(17,N1)),t.R7$(),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns),t.R7$(),t.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,w.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,O.fg,g.rl,g.nJ,g.MV,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,p.QX,p.PV],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:3rem;min-width:15rem;max-width:30rem}"]})}return n})();const yc=()=>["all"],bc=()=>["no_event"],Fc=n=>({"ml-0":n}),it=n=>({width:n}),Ec=n=>({"display-none":n});function xc(n,o){if(1&n&&(t.j41(0,"div",6),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function Lc(n,o){if(1&n&&(t.j41(0,"mat-option",14),t.EFF(1),t.k0s()),2&n){const e=o.$implicit,i=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(i.getLabel(e))}}function Sc(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",7),t.nrm(1,"div",8),t.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),t.EFF(5,"Filter By"),t.k0s(),t.j41(6,"mat-select",11),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilterBy,a)||(s.selFilterBy=a),t.Njj(a)}),t.bIt("selectionChange",function(){t.eBV(e);const a=t.XpG();return a.selFilter="",t.Njj(a.applyFilter())}),t.j41(7,"perfect-scrollbar"),t.DNE(8,Lc,2,2,"mat-option",12),t.k0s()()(),t.j41(9,"mat-form-field",10)(10,"mat-label"),t.EFF(11,"Filter"),t.k0s(),t.j41(12,"input",13),t.mxI("ngModelChange",function(a){t.eBV(e);const s=t.XpG();return t.DH7(s.selFilter,a)||(s.selFilter=a),t.Njj(a)}),t.bIt("input",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())})("keyup",function(){t.eBV(e);const a=t.XpG();return t.Njj(a.applyFilter())}),t.k0s()()()()}if(2&n){const e=t.XpG();t.R7$(6),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(3,yc).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter)}}function vc(n,o){1&n&&t.nrm(0,"mat-progress-bar",42)}function Rc(n,o){1&n&&t.nrm(0,"th",43)}function Ic(n,o){if(1&n&&(t.nrm(0,"span",46),t.nI1(1,"camelcase")),2&n){const e=t.XpG().$implicit,i=t.XpG(2);t.FS9("matTooltip",t.bMT(1,2,null==e?null:e.type)),t.Y8G("ngClass",t.eq3(4,Fc,i.screenSize===i.screenSizeEnum.XS))}}function kc(n,o){if(1&n&&(t.j41(0,"td",44),t.DNE(1,Ic,2,6,"span",45),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.Y8G("ngIf","payment-relayed"!==(null==e?null:e.type))}}function Tc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Date/Time"),t.k0s())}function wc(n,o){if(1&n&&(t.j41(0,"td",44),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,null==e?null:e.timestamp,"dd/MMM/y HH:mm")," ")}}function jc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"In Channel ID"),t.k0s())}function Dc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelId)}}function Pc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"In Channel Short ID"),t.k0s())}function Gc(n,o){if(1&n&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.fromShortChannelId)}}function Ac(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"In Channel"),t.k0s())}function Nc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelAlias)}}function Mc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Out Channel ID"),t.k0s())}function Bc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelId)}}function $c(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Out Channel Short ID"),t.k0s())}function Vc(n,o){if(1&n&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&n){const e=o.$implicit;t.R7$(),t.JRh(null==e?null:e.toShortChannelId)}}function Oc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Out Channel"),t.k0s())}function Hc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelAlias)}}function Yc(n,o){1&n&&(t.j41(0,"th",47),t.EFF(1,"Payment Hash"),t.k0s())}function Xc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,it,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function Uc(n,o){1&n&&(t.j41(0,"th",50),t.EFF(1,"Amount In (Sats)"),t.k0s())}function zc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountIn))}}function Jc(n,o){1&n&&(t.j41(0,"th",50),t.EFF(1,"Amount Out (Sats)"),t.k0s())}function qc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountOut))}}function Qc(n,o){1&n&&(t.j41(0,"th",50),t.EFF(1,"Fee Earned (Sats)"),t.k0s())}function Zc(n,o){if(1&n&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,(null==e?null:e.amountIn)-(null==e?null:e.amountOut)))}}function Wc(n,o){if(1&n){const e=t.RV6();t.j41(0,"th",52)(1,"div",53)(2,"mat-select",54),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(){t.eBV(e);const a=t.XpG(2);return t.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Kc(n,o){if(1&n){const e=t.RV6();t.j41(0,"td",56)(1,"button",57),t.bIt("click",function(a){const s=t.eBV(e).$implicit,r=t.XpG(2);return t.Njj(r.onForwardingEventClick(s,a))}),t.EFF(2,"View Info"),t.k0s()()}}function tm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No forwarding history available."),t.k0s())}function em(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting forwarding history..."),t.k0s())}function nm(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function im(n,o){if(1&n&&(t.j41(0,"td",58),t.DNE(1,tm,2,0,"p",59)(2,em,2,0,"p",59)(3,nm,2,1,"p",59),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function am(n,o){if(1&n&&t.nrm(0,"tr",60),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ec,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function om(n,o){1&n&&t.nrm(0,"tr",61)}function sm(n,o){1&n&&t.nrm(0,"tr",62)}function lm(n,o){if(1&n&&(t.j41(0,"div",15),t.DNE(1,vc,1,0,"mat-progress-bar",16),t.j41(2,"table",17,0),t.qex(4,18),t.DNE(5,Rc,1,0,"th",19)(6,kc,2,1,"td",20),t.bVm(),t.qex(7,21),t.DNE(8,Tc,2,0,"th",22)(9,wc,3,4,"td",20),t.bVm(),t.qex(10,23),t.DNE(11,jc,2,0,"th",22)(12,Dc,4,4,"td",20),t.bVm(),t.qex(13,24),t.DNE(14,Pc,2,0,"th",22)(15,Gc,2,1,"td",20),t.bVm(),t.qex(16,25),t.DNE(17,Ac,2,0,"th",22)(18,Nc,4,4,"td",20),t.bVm(),t.qex(19,26),t.DNE(20,Mc,2,0,"th",22)(21,Bc,4,4,"td",20),t.bVm(),t.qex(22,27),t.DNE(23,$c,2,0,"th",22)(24,Vc,2,1,"td",20),t.bVm(),t.qex(25,28),t.DNE(26,Oc,2,0,"th",22)(27,Hc,4,4,"td",20),t.bVm(),t.qex(28,29),t.DNE(29,Yc,2,0,"th",22)(30,Xc,4,4,"td",20),t.bVm(),t.qex(31,30),t.DNE(32,Uc,2,0,"th",31)(33,zc,4,3,"td",20),t.bVm(),t.qex(34,32),t.DNE(35,Jc,2,0,"th",31)(36,qc,4,3,"td",20),t.bVm(),t.qex(37,33),t.DNE(38,Qc,2,0,"th",31)(39,Zc,4,3,"td",20),t.bVm(),t.qex(40,34),t.DNE(41,Wc,6,0,"th",35)(42,Kc,3,0,"td",36),t.bVm(),t.qex(43,37),t.DNE(44,im,4,3,"td",38),t.bVm(),t.DNE(45,am,1,3,"tr",39)(46,om,1,0,"tr",40)(47,sm,1,0,"tr",41),t.k0s()()),2&n){const e=t.XpG();t.R7$(),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.forwardingHistoryEvents),t.R7$(43),t.Y8G("matFooterRowDef",t.lJ4(7,bc)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns)}}function rm(n,o){if(1&n&&t.nrm(0,"mat-paginator",63),2&n){const e=t.XpG();t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Ot=(()=>{class n{constructor(e,i,a,s,r){this.logger=e,this.commonService=i,this.store=a,this.datePipe=s,this.camelCaseWithSpaces=r,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=l.WW,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:l.md,sortBy:"timestamp",sortOrder:l.oi.DESCENDING},this.displayedColumns=[],this.forwardingHistoryEvents=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(e){e.eventsData&&(this.apiCallStatus={status:l.wn.COMPLETED,action:"FetchPayments"},this.eventsData=e.eventsData.currentValue,e.eventsData.firstChange||this.loadForwardingEventsTable(this.eventsData)),e.selFilter&&!e.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=e.pageSettings.find(i=>i.pageId===this.pageId)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.pageId)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("type"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData=e.payments&&e.payments.relayed?e.payments.relayed:[],this.eventsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.eventsData),this.logger.info(this.eventsData)})}ngAfterViewInit(){setTimeout(()=>{this.eventsData.length>0&&this.loadForwardingEventsTable(this.eventsData)},0)}onForwardingEventClick(e,i){const a=[[{key:"paymentHash",value:e.paymentHash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"timestamp",value:Math.round((e.timestamp||0)/1e3),title:"Date/Time",width:50,type:l.UN.DATE_TIME},{key:"fee",value:(e.amountIn||0)-(e.amountOut||0),title:"Fee Earned (Sats)",width:50,type:l.UN.NUMBER}],[{key:"amountIn",value:e.amountIn,title:"Amount In (Sats)",width:50,type:l.UN.NUMBER},{key:"amountOut",value:e.amountOut,title:"Amount Out (Sats)",width:50,type:l.UN.NUMBER}],[{key:"fromChannelAlias",value:e.fromChannelAlias,title:"From Channel Alias",width:50,type:l.UN.STRING},{key:"fromShortChannelId",value:e.fromShortChannelId,title:"From Short Channel ID",width:50,type:l.UN.STRING}],[{key:"fromChannelId",value:e.fromChannelId,title:"From Channel ID",width:100,type:l.UN.STRING}],[{key:"toChannelAlias",value:e.toChannelAlias,title:"To Channel Alias",width:50,type:l.UN.STRING},{key:"toShortChannelId",value:e.toShortChannelId,title:"To Short Channel ID",width:50,type:l.UN.STRING}],[{key:"toChannelId",value:e.toChannelId,title:"To Channel ID",width:100,type:l.UN.STRING}]];"payment-relayed"!==e.type&&a?.unshift([{key:"type",value:this.commonService.camelCase(e.type),title:"Relay Type",width:100,type:l.UN.STRING}]),this.store.dispatch((0,v.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Event Information",message:a}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(e){const i=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column):this.commonService.titleCase(e)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(e,i)=>{let a="";switch(this.selFilterBy){case"all":a=(e.timestamp?this.datePipe.transform(new Date(e.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(e).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(e.timestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":a=(e.amountIn-e.amountOut).toString()||"0";break;default:a=typeof e[this.selFilterBy]>"u"?"":"string"==typeof e[this.selFilterBy]?e[this.selFilterBy].toLowerCase():"boolean"==typeof e[this.selFilterBy]?e[this.selFilterBy]?"yes":"no":e[this.selFilterBy].toString()}return a.includes(i)}}loadForwardingEventsTable(e){this.forwardingHistoryEvents=new c.I6([...e]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(i,a)=>"fee"===a?i.amountIn-i.amountOut:i[a]&&isNaN(i[a])?i[a].toLocaleLowerCase():i[a]?+i[a]:null,this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(p.vh),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-forwarding-history"]],viewQuery:function(i,a){if(1&i&&(t.GBs(x.B4,5),t.GBs(I.iy,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sort=s.first),t.mGM(s=t.lsd())&&(a.paginator=s.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[t.Jv_([{provide:S.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:I.xX,useValue:(0,l.on)("Events")}]),t.OA$],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Type (if not payment relayed)",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","fromChannelId"],["matColumnDef","fromShortChannelId"],["matColumnDef","fromChannelAlias"],["matColumnDef","toChannelId"],["matColumnDef","toShortChannelId"],["matColumnDef","toChannelAlias"],["matColumnDef","paymentHash"],["matColumnDef","amountIn"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amountOut"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Type (if not payment relayed)"],["mat-cell",""],["class","dot yellow","matTooltipPosition","right",3,"matTooltip","ngClass",4,"ngIf"],["matTooltipPosition","right",1,"dot","yellow",3,"matTooltip","ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(i,a){1&i&&(t.j41(0,"div",1),t.DNE(1,xc,2,1,"div",2)(2,Sc,13,4,"div",3)(3,lm,48,8,"div",4)(4,rm,1,3,"mat-paginator",5),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf",""!==a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage))},dependencies:[p.YU,p.Sq,p.bT,p.B3,d.me,d.BC,d.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,j.$z,O.fg,g.rl,g.nJ,V.HM,S.VO,S.$2,X.wT,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,J.oV,I.iy,A.ZF,A.Ld,p.QX,p.vh,z.ZE],styles:[".mat-column-type[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-type[_ngcontent-%COMP%] svg[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-actions[_ngcontent-%COMP%]{min-height:3.55rem}"]})}return n})();const cm=["tableIn"],mm=["tableOut"],pm=["paginatorIn"],um=["paginatorOut"],dm=(n,o)=>({"mt-2":n,"mt-1":o}),hm=()=>["no_incoming_event"],fm=n=>({"mt-2":n}),_m=()=>["no_outgoing_event"],lt=n=>({width:n}),Ht=n=>({"display-none":n});function gm(n,o){if(1&n&&(t.j41(0,"div",7),t.EFF(1),t.k0s()),2&n){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function Cm(n,o){1&n&&t.nrm(0,"mat-progress-bar",34)}function ym(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function bm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Fm(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function Em(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function xm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function Lm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function Sm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function vm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function Rm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function Im(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function km(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No incoming routing peer available."),t.k0s())}function Tm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting incoming routing peers..."),t.k0s())}function wm(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function jm(n,o){if(1&n&&(t.j41(0,"td",41),t.DNE(1,km,2,0,"p",42)(2,Tm,2,0,"p",42)(3,wm,2,1,"p",42),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Dm(n,o){if(1&n&&t.nrm(0,"tr",43),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ht,(null==e.routingPeersIncoming?null:e.routingPeersIncoming.data)&&(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)>0))}}function Pm(n,o){1&n&&t.nrm(0,"tr",44)}function Gm(n,o){1&n&&t.nrm(0,"tr",45)}function Am(n,o){1&n&&t.nrm(0,"mat-progress-bar",34)}function Nm(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function Mm(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Bm(n,o){1&n&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function $m(n,o){if(1&n&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&n){const e=o.$implicit,i=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Vm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function Om(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function Hm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function Ym(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function Xm(n,o){1&n&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function Um(n,o){if(1&n&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&n){const e=o.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function zm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"No outgoing routing peer available."),t.k0s())}function Jm(n,o){1&n&&(t.j41(0,"p"),t.EFF(1,"Getting outgoing routing peers..."),t.k0s())}function qm(n,o){if(1&n&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&n){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Qm(n,o){if(1&n&&(t.j41(0,"td",41),t.DNE(1,zm,2,0,"p",42)(2,Jm,2,0,"p",42)(3,qm,2,1,"p",42),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Zm(n,o){if(1&n&&t.nrm(0,"tr",43),2&n){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ht,(null==e.routingPeersOutgoing?null:e.routingPeersOutgoing.data)&&(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)>0))}}function Wm(n,o){1&n&&t.nrm(0,"tr",44)}function Km(n,o){1&n&&t.nrm(0,"tr",45)}function tp(n,o){if(1&n&&(t.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),t.EFF(4,"Incoming"),t.k0s(),t.nrm(5,"div",12),t.k0s(),t.j41(6,"div",13),t.DNE(7,Cm,1,0,"mat-progress-bar",14),t.j41(8,"table",15,0),t.qex(10,16),t.DNE(11,ym,2,0,"th",17)(12,bm,4,4,"td",18),t.bVm(),t.qex(13,19),t.DNE(14,Fm,2,0,"th",17)(15,Em,4,4,"td",18),t.bVm(),t.qex(16,20),t.DNE(17,xm,2,0,"th",21)(18,Lm,4,3,"td",18),t.bVm(),t.qex(19,22),t.DNE(20,Sm,2,0,"th",21)(21,vm,4,3,"td",18),t.bVm(),t.qex(22,23),t.DNE(23,Rm,2,0,"th",21)(24,Im,4,3,"td",18),t.bVm(),t.qex(25,24),t.DNE(26,jm,4,3,"td",25),t.bVm(),t.DNE(27,Dm,1,3,"tr",26)(28,Pm,1,0,"tr",27)(29,Gm,1,0,"tr",28),t.k0s()(),t.nrm(30,"mat-paginator",29,1),t.k0s(),t.j41(32,"div",30)(33,"div",10)(34,"div",11),t.EFF(35,"Outgoing"),t.k0s(),t.nrm(36,"div",12),t.k0s(),t.j41(37,"div",31),t.DNE(38,Am,1,0,"mat-progress-bar",14),t.j41(39,"table",32,2),t.qex(41,16),t.DNE(42,Nm,2,0,"th",17)(43,Mm,4,4,"td",18),t.bVm(),t.qex(44,19),t.DNE(45,Bm,2,0,"th",17)(46,$m,4,4,"td",18),t.bVm(),t.qex(47,20),t.DNE(48,Vm,2,0,"th",21)(49,Om,4,3,"td",18),t.bVm(),t.qex(50,22),t.DNE(51,Hm,2,0,"th",21)(52,Ym,4,3,"td",18),t.bVm(),t.qex(53,23),t.DNE(54,Xm,2,0,"th",21)(55,Um,4,3,"td",18),t.bVm(),t.qex(56,33),t.DNE(57,Qm,4,3,"td",25),t.bVm(),t.DNE(58,Zm,1,3,"tr",26)(59,Wm,1,0,"tr",27)(60,Km,1,0,"tr",28),t.k0s(),t.nrm(61,"mat-paginator",29,3),t.k0s()()()),2&n){const e=t.XpG();t.R7$(2),t.Y8G("ngClass",t.l_i(22,dm,e.screenSize===e.screenSizeEnum.XS,e.screenSize===e.screenSizeEnum.SM)),t.R7$(5),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersIncoming),t.R7$(19),t.Y8G("matFooterRowDef",t.lJ4(25,hm)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS),t.R7$(3),t.Y8G("ngClass",t.eq3(26,fm,e.screenSize!==e.screenSizeEnum.LG)),t.R7$(5),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersOutgoing),t.R7$(19),t.Y8G("matFooterRowDef",t.lJ4(28,_m)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let ep=(()=>{class n{constructor(e,i,a,s){this.logger=e,this.commonService=i,this.store=a,this.camelCaseWithSpaces=s,this.nodePageDefs=l.WW,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:l.md,sortBy:"totalFee",sortOrder:l.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{this.errorMessage="",this.apiCallStatus=e.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=e.payments&&e.payments.relayed?e.payments.relayed:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(e)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData)}applyFilterIncoming(){this.routingPeersIncoming.filter=this.filterIn.trim().toLowerCase()}applyFilterOutgoing(){this.routingPeersOutgoing.filter=this.filterOut.trim().toLowerCase()}getLabel(e){const i=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===e);return i?i.label?i.label:this.camelCaseWithSpaces.transform(i.column,"_"):this.commonService.titleCase(e)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(e,i)=>{let a="";return a="all"===this.selFilterByIn?JSON.stringify(e).toLowerCase():"string"==typeof e[this.selFilterByIn]?e[this.selFilterByIn].toLowerCase():"boolean"==typeof e[this.selFilterByIn]?e[this.selFilterByIn]?"yes":"no":e[this.selFilterByIn].toString(),a.includes(i)},this.routingPeersOutgoing.filterPredicate=(e,i)=>{let a="";switch(this.selFilterByOut){case"all":a=JSON.stringify(e).toLowerCase();break;case"total_amount":case"total_fee":a=(+(e[this.selFilterByOut]||0)/1e3).toString()||"";break;default:a="string"==typeof e[this.selFilterByOut]?e[this.selFilterByOut].toLowerCase():"boolean"==typeof e[this.selFilterByOut]?e[this.selFilterByOut]?"yes":"no":e[this.selFilterByOut].toString()}return a.includes(i)}}loadRoutingPeersTable(e){if(e.length>0){const i=this.groupRoutingPeers(e);this.routingPeersIncoming=new c.I6(i[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new c.I6(i[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(e){const i=[],a=[];return e.forEach(s=>{const r=i.find(T=>T.channelId===s.fromChannelId),m=a.find(T=>T.channelId===s.toChannelId);r?(r.events++,r.totalAmount=+r.totalAmount+ +s.amountIn,r.totalFee=s.amountIn-s.amountOut+ +r.totalFee):i.push({channelId:s.fromChannelId,alias:s.fromChannelAlias,events:1,totalAmount:+s.amountIn,totalFee:s.amountIn-s.amountOut}),m?(m.events++,m.totalAmount=+m.totalAmount+ +s.amountOut,m.totalFee=s.amountIn-s.amountOut+ +m.totalFee):a.push({channelId:s.toChannelId,alias:s.toChannelAlias,events:1,totalAmount:+s.amountOut,totalFee:s.amountIn-s.amountOut})}),[this.commonService.sortDescByKey(i,"totalFee"),this.commonService.sortDescByKey(a,"totalFee")]}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il),t.rXU(z.Qu))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-routing-peers"]],viewQuery:function(i,a){if(1&i&&(t.GBs(cm,5,x.B4),t.GBs(mm,5,x.B4),t.GBs(pm,5),t.GBs(um,5)),2&i){let s;t.mGM(s=t.lsd())&&(a.sortIn=s.first),t.mGM(s=t.lsd())&&(a.sortOut=s.first),t.mGM(s=t.lsd())&&(a.paginatorIn=s.first),t.mGM(s=t.lsd())&&(a.paginatorOut=s.first)}},features:[t.Jv_([{provide:I.xX,useValue:(0,l.on)("Peers")}])],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mb-4"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","channelId"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","totalAmount"],["matColumnDef","totalFee"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxFlex","49","fxLayoutAlign","end stretch",1,"mb-4"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","no_outgoing_event"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(i,a){1&i&&(t.j41(0,"div",4),t.DNE(1,gm,2,1,"div",5)(2,tp,63,29,"div",6),t.k0s()),2&i&&(t.R7$(),t.Y8G("ngIf",""!==a.errorMessage),t.R7$(),t.Y8G("ngIf",""===a.errorMessage))},dependencies:[p.YU,p.bT,p.B3,h.DJ,h.sA,h.UI,L.PW,L.eI,V.HM,x.B4,x.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,I.iy,A.Ld,p.QX]})}return n})();function np(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",8),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let ip=(()=>{class n{constructor(e){this.router=e,this.faChartBar=F.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-reports"]],decls:12,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(i,a){if(1&i&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Reports"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,np,2,3,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),t.k0s()()()),2&i){const s=t.sdS(10);t.R7$(),t.Y8G("icon",a.faChartBar),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,E.RN,E.m2,D.Bu,D.hQ,D.Ql,b.n3,b.Wk]})}return n})();var Yt=_(6064),Xt=_(4655);function ap(n,o){if(1&n&&(t.j41(0,"div",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){const e=t.XpG();t.Y8G("@fadeIn",e.totalFeeSat),t.R7$(),t.Lme("",t.i5U(2,3,e.totalFeeSat||0,"1.0-2")," Sats/",t.bMT(3,6,e.filteredEventsBySelectedPeriod.length||0)," Events")}}function op(n,o){1&n&&(t.j41(0,"div",15),t.EFF(1,"No routing report for the selected period"),t.k0s())}function sp(n,o){if(1&n&&(t.j41(0,"span")(1,"span",17),t.EFF(2),t.nI1(3,"number"),t.k0s(),t.j41(4,"span",17),t.EFF(5),t.nI1(6,"number"),t.k0s()()),2&n){const e=o.model,i=t.XpG(2);t.R7$(2),t.SpI("Events: ",t.bMT(3,2,(i.selReportBy===i.reportBy.EVENTS?e.value:e.extra.totalEvents)||0),""),t.R7$(3),t.SpI("Fee: ",t.i5U(6,4,(i.selReportBy===i.reportBy.EVENTS?e.extra.totalFees:e.value)||0,"1.0-2"),"")}}function lp(n,o){if(1&n){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical",16),t.bIt("select",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartBarSelected(a))})("mouseup",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartMouseUp(a))}),t.DNE(1,sp,7,7,"ng-template",null,0,t.C5r),t.k0s()}if(2&n){const e=t.XpG();t.Y8G("view",e.view)("results",e.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function rp(n,o){if(1&n&&t.nrm(0,"rtl-ecl-forwarding-history",18),2&n){const e=t.XpG();t.Y8G("pageId","reports")("tableId","routing")("eventsData",e.filteredEventsBySelectedPeriod)("selFilter",e.eventFilterValue)}}let cp=(()=>{class n{constructor(e,i,a){this.logger=e,this.commonService=i,this.store=a,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=l.aR,this.selReportBy=l.aR.FEES,this.totalFeeSat=null,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.events=e.payments&&e.payments.relayed?e.payments.relayed:[],this.filterForwardingEvents(this.startDate,this.endDate),this.logger.info(e)}),this.commonService.containerSizeUpdated.pipe((0,f.Q)(this.unSubs[1])).subscribe(e=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=e.width/10;break;case l.f7.LG:this.screenPaddingX=e.width/16;break;default:this.screenPaddingX=e.width/20}this.view=[e.width-this.screenPaddingX,e.height/2.2],this.logger.info("Container Size: "+JSON.stringify(e)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(e,i){const a=Math.round(e.getTime()/1e3),s=Math.round(i.getTime()/1e3);this.logger.info("Filtering Forwarding Events Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()+" To "+i.toLocaleString()),this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeSat=null,this.events&&this.events.length>0&&(this.events.forEach(r=>{Math.floor((r.timestamp||0)/1e3)>=a&&Math.floor((r.timestamp||0)/1e3)0&&"ngx-charts"===e.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(e){this.eventFilterValue=this.reportPeriod===l.rs[1]?e.name+"/"+this.startDate.getFullYear():e.name.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(e){const i=Math.round(e.getTime()/1e3),a=[];if(this.totalFeeSat=0,this.logger.info("Fee Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()),this.reportPeriod===l.rs[1]){for(let s=0;s<12;s++)a.push({name:l.KR[s].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(s=>{const r=new Date(s.timestamp||0).getMonth();return a[r].value=a[r].value+((s.amountIn||0)-(s.amountOut||0)),a[r].extra.totalEvents=a[r].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let s=0;s{const r=Math.floor((Math.floor((s.timestamp||0)/1e3)-i)/this.secondsInADay);return a[r].value=a[r].value+((s.amountIn||0)-(s.amountOut||0)),a[r].extra.totalEvents=a[r].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Fee Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),a}prepareEventsReport(e){const i=Math.round(e.getTime()/1e3),a=[];if(this.totalFeeSat=0,this.logger.info("Events Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+e.toLocaleString()),this.reportPeriod===l.rs[1]){for(let s=0;s<12;s++)a.push({name:l.KR[s].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(s=>{const r=new Date(s.timestamp||0).getMonth();return a[r].value=a[r].value+1,a[r].extra.totalFees=a[r].extra.totalFees+((s.amountIn||0)-(s.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let s=0;s{const r=Math.floor((Math.floor((s.timestamp||0)/1e3)-i)/this.secondsInADay);return a[r].value=a[r].value+1,a[r].extra.totalFees=a[r].extra.totalFees+((s.amountIn||0)-(s.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((s.amountIn||0)-(s.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Events Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),a}onSelectionChange(e){const i=e.selDate.getMonth(),a=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.rs[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,i,1,0,0,0),this.endDate=new Date(a,i,this.getMonthDays(i,a),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(e,i){return 1===e&&i%4==0?l.KR[e].days+1:l.KR[e].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-routing-report"]],hostBindings:function(i,a){1&i&&t.bIt("mouseup",function(r){return a.onChartMouseUp(r)})},decls:17,vars:7,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start center",1,"my-1",3,"ngModelChange","change","ngModel"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],[3,"pageId","tableId","eventsData","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"one-color",3,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(i,a){1&i&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(r){return a.onSelectionChange(r)}),t.k0s(),t.j41(2,"div",3)(3,"mat-radio-group",4),t.mxI("ngModelChange",function(r){return t.DH7(a.selReportBy,r)||(a.selReportBy=r),r}),t.bIt("change",function(){return a.onSelReportByChange()}),t.j41(4,"span",5),t.EFF(5,"Report By: "),t.k0s(),t.j41(6,"mat-radio-button",6),t.EFF(7,"Fees"),t.k0s(),t.j41(8,"mat-radio-button",7),t.EFF(9,"Events"),t.k0s()()(),t.j41(10,"div",8),t.DNE(11,ap,4,8,"div",9)(12,op,2,0,"div",10),t.j41(13,"div",11),t.DNE(14,lp,3,11,"ngx-charts-bar-vertical",12),t.k0s(),t.j41(15,"div",11),t.DNE(16,rp,1,4,"rtl-ecl-forwarding-history",13),t.k0s()()()),2&i&&(t.R7$(3),t.R50("ngModel",a.selReportBy),t.R7$(3),t.FS9("value",a.reportBy.FEES),t.R7$(2),t.FS9("value",a.reportBy.EVENTS),t.R7$(3),t.Y8G("ngIf",a.routingReportData.length>0&&a.filteredEventsBySelectedPeriod.length>0),t.R7$(),t.Y8G("ngIf",a.routingReportData.length<=0||a.filteredEventsBySelectedPeriod.length<=0),t.R7$(2),t.Y8G("ngIf",a.routingReportData.length>0&&a.filteredEventsBySelectedPeriod.length>0),t.R7$(2),t.Y8G("ngIf",a.filteredEventsBySelectedPeriod.length>0))},dependencies:[p.bT,d.BC,d.vS,h.DJ,h.sA,h.UI,ot.VT,ot._g,Yt.L8,Xt.m,Ot,p.QX],data:{animation:[yt.q]}})}return n})();var mp=_(5085);function pp(n,o){if(1&n&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Lme(" Paid ",t.i5U(2,2,e.transactionsReportSummary.amountPaidSelectedPeriod||0,"1.0-2")," Sats/",t.bMT(3,5,e.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function up(n,o){if(1&n&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){const e=t.XpG(2);t.R7$(),t.Lme(" Received ",t.i5U(2,2,e.transactionsReportSummary.amountReceivedSelectedPeriod||0,"1.0-2")," Sats/",t.bMT(3,5,e.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function dp(n,o){if(1&n&&(t.j41(0,"div",9),t.DNE(1,pp,4,7,"div",10)(2,up,4,7,"div",10),t.k0s()),2&n){const e=t.XpG();t.Y8G("@fadeIn",e.transactionsReportSummary),t.R7$(),t.Y8G("ngIf",e.transactionsReportSummary.paymentsSelectedPeriod),t.R7$(),t.Y8G("ngIf",e.transactionsReportSummary.invoicesSelectedPeriod)}}function hp(n,o){1&n&&(t.j41(0,"div",12),t.EFF(1,"No transactions report for the selected period"),t.k0s())}function fp(n,o){if(1&n&&(t.j41(0,"span",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&n){const e=o.model;t.R7$(),t.LHq("",e.name,": ",t.i5U(2,4,e.value||0,"1.0-2"),"/# ","Paid"===e.name?"Payments":"Invoices",": ",t.bMT(3,7,(null==e.extra?null:e.extra.total)||0),"")}}function _p(n,o){if(1&n){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical-2d",13),t.bIt("select",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartBarSelected(a))})("mouseup",function(a){t.eBV(e);const s=t.XpG();return t.Njj(s.onChartMouseUp(a))}),t.DNE(1,fp,4,9,"ng-template",null,0,t.C5r),t.k0s()}if(2&n){const e=t.XpG();t.Y8G("view",e.view)("results",e.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",e.reportPeriod===e.scrollRanges[0]?2:8)}}function gp(n,o){if(1&n&&t.nrm(0,"rtl-transactions-report-table",15),2&n){const e=t.XpG();t.Y8G("displayedColumns",e.displayedColumns)("tableSetting",e.tableSetting)("dataList",e.transactionsNonZeroReportData)("dataRange",e.reportPeriod)("selFilter",e.transactionFilterValue)}}let Cp=(()=>{class n{constructor(e,i,a){this.logger=e,this.commonService=i,this.store=a,this.scrollRanges=l.rs,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"date",sortOrder:l.oi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[],this.transactionsNonZeroReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(C.jZ).pipe((0,f.Q)(this.unSubs[0])).subscribe(e=>{this.tableSetting=e.pageSettings.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId)||l.X8.find(i=>i.pageId===this.PAGE_ID)?.tables.find(i=>i.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(C.KT).pipe((0,f.Q)(this.unSubs[1]),(0,rt.E)(this.store.select(C.rN))).subscribe(([e,i])=>{this.payments=e.payments.sent?e.payments.sent:[],this.invoices=i.invoices?i.invoices:[],(this.payments.length>0||this.invoices.length>0)&&(this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData())}),this.commonService.containerSizeUpdated.pipe((0,f.Q)(this.unSubs[2])).subscribe(e=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=e.width/10;break;case l.f7.LG:this.screenPaddingX=e.width/16;break;default:this.screenPaddingX=e.width/20}this.view=[e.width-this.screenPaddingX,e.height/2.2],this.logger.info("Container Size: "+JSON.stringify(e)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(e){"svg"===e.srcElement.tagName&&e.srcElement.classList.length>0&&"ngx-charts"===e.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(e){this.transactionFilterValue=this.reportPeriod===l.rs[1]?e.series.toString()+"/"+this.startDate.getFullYear():e.series.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(e,i){const a=Math.round(e.getTime()/1e3),s=Math.round(i.getTime()/1e3),r=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const m=this.payments?.filter(y=>y.firstPartTimestamp&&Math.floor(y.firstPartTimestamp/1e3)>=a&&Math.floor(y.firstPartTimestamp/1e3)"received"===y.status&&y.timestamp&&y.timestamp>=a&&y.timestamp{const P=new Date(y.firstPartTimestamp||0).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(y.recipientAmount||0),r[P].series[0].value=r[P].series[0].value+y.recipientAmount,r[P].series[0].extra.total=r[P].series[0].extra.total+1,this.transactionsReportSummary}),T?.map(y=>{const P=new Date(1e3*(y.timestamp||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(y.amountSettled||0),r[P].series[1].value=r[P].series[1].value+y.amountSettled,r[P].series[1].extra.total=r[P].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let y=0;y{const P=Math.floor((Math.floor((y.firstPartTimestamp||0)/1e3)-a)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(y.recipientAmount||0),r[P].series[0].value=r[P].series[0].value+y.recipientAmount,r[P].series[0].extra.total=r[P].series[0].extra.total+1,this.transactionsReportSummary}),T?.map(y=>{const P=Math.floor(((y.timestamp||0)-a)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(y.amountSettled||0),r[P].series[1].value=r[P].series[1].value+y.amountSettled,r[P].series[1].extra.total=r[P].series[1].extra.total+1,this.transactionsReportSummary})}return r}prepareTableData(){return this.transactionsReportData?.reduce((e,i)=>i.series[0].extra.total>0||i.series[1].extra.total>0?e.concat({date:i.date,amount_paid:i.series[0].value,num_payments:i.series[0].extra.total,amount_received:i.series[1].value,num_invoices:i.series[1].extra.total}):e,[])}onSelectionChange(e){const i=e.selDate.getMonth(),a=e.selDate.getFullYear();this.reportPeriod=e.selScrollRange,this.reportPeriod===l.rs[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,i,1,0,0,0),this.endDate=new Date(a,i,this.getMonthDays(i,a),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(e,i){return 1===e&&i%4==0?l.KR[e].days+1:l.KR[e].days}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(G.gP),t.rXU(M.h),t.rXU(R.il))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-transactions-report"]],hostBindings:function(i,a){1&i&&t.bIt("mouseup",function(r){return a.onChartMouseUp(r)})},decls:9,vars:4,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"two-color",3,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(i,a){1&i&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(r){return a.onSelectionChange(r)}),t.k0s(),t.j41(2,"div",3),t.DNE(3,dp,3,3,"div",4)(4,hp,2,0,"div",5),t.j41(5,"div",6),t.DNE(6,_p,3,13,"ngx-charts-bar-vertical-2d",7),t.k0s(),t.j41(7,"div",6),t.DNE(8,gp,1,5,"rtl-transactions-report-table",8),t.k0s()()()),2&i&&(t.R7$(3),t.Y8G("ngIf",a.transactionsNonZeroReportData.length>0),t.R7$(),t.Y8G("ngIf",a.transactionsNonZeroReportData.length<=0),t.R7$(2),t.Y8G("ngIf",a.transactionsNonZeroReportData.length>0),t.R7$(2),t.Y8G("ngIf",a.transactionsNonZeroReportData.length>0))},dependencies:[p.bT,h.DJ,h.sA,h.UI,Yt.Dl,Xt.m,mp.T,p.QX],data:{animation:[yt.q]}})}return n})();var N=_(7186),yp=_(13);function bp(n,o){if(1&n){const e=t.RV6();t.j41(0,"div",9),t.bIt("click",function(){const a=t.eBV(e).$implicit,s=t.XpG();return t.Njj(s.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&n){const e=o.$implicit,i=t.XpG();t.FS9("routerLink",e.link),t.Y8G("active",i.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Fp=(()=>{class n{constructor(e){this.router=e,this.faSearch=F.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const e=this.links.find(i=>this.router.url.includes(i.link));this.activeLink=e?e.link:this.links[0].link,this.router.events.pipe((0,f.Q)(this.unSubs[0]),(0,H.p)(i=>i instanceof b.gx)).subscribe({next:i=>{const a=this.links.find(s=>i.urlAfterRedirects.includes(s.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(e=>{e.next(null),e.complete()})}static#t=this.\u0275fac=function(i){return new(i||n)(t.rXU(b.Ix))};static#e=this.\u0275cmp=t.VBU({type:n,selectors:[["rtl-ecl-graph"]],decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(i,a){if(1&i&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Graph Lookups"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,bp,2,3,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0),t.j41(11,"div",8),t.nrm(12,"router-outlet"),t.k0s()()()()),2&i){const s=t.sdS(10);t.R7$(),t.Y8G("icon",a.faSearch),t.R7$(6),t.Y8G("tabPanel",s),t.R7$(),t.Y8G("ngForOf",a.links)}},dependencies:[p.Sq,w.aY,h.DJ,h.sA,h.UI,E.RN,E.m2,D.Bu,D.hQ,D.Ql,b.n3,b.Wk]})}return n})();const Ep=[{path:"",component:xt,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:ka,canActivate:[(0,N.fe)()]},{path:"onchain",component:go,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"receive"},{path:"receive",component:as,canActivate:[(0,N.fe)()]},{path:"send",component:os,canActivate:[(0,N.fe)()]}]},{path:"connections",component:bo,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:Ls,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:cr,canActivate:[(0,N.fe)()]},{path:"pending",component:Hr,canActivate:[(0,N.fe)()]},{path:"inactive",component:Cc,canActivate:[(0,N.fe)()]}]},{path:"peers",component:y1,data:{sweepAll:!1},canActivate:[(0,N.fe)()]}]},{path:"transactions",component:Eo,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Rt,canActivate:[(0,N.fe)()]},{path:"invoices",component:It,canActivate:[(0,N.fe)()]}]},{path:"routing",component:Lo,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Ot,canActivate:[(0,N.fe)()]},{path:"peers",component:ep,canActivate:[(0,N.fe)()]}]},{path:"reports",component:ip,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:cp,canActivate:[(0,N.fe)()]},{path:"transactions",component:Cp,canActivate:[(0,N.fe)()]}]},{path:"graph",component:Fp,canActivate:[(0,N.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:ns,canActivate:[(0,N.fe)()]},{path:"queryroutes",component:P1,canActivate:[(0,N.fe)()]}]},{path:"**",component:yp.X}]}],xp=b.iI.forChild(Ep);var Lp=_(9029);let Sp=(()=>{class n{static#t=this.\u0275fac=function(i){return new(i||n)};static#e=this.\u0275mod=t.$C({type:n,bootstrap:[xt]});static#n=this.\u0275inj=t.G2t({imports:[p.MD,Lp.G,xp]})}return n})()}}]); \ No newline at end of file diff --git a/frontend/17.da5e0b6abb96d103.js b/frontend/17.da5e0b6abb96d103.js new file mode 100644 index 00000000..8a893ce9 --- /dev/null +++ b/frontend/17.da5e0b6abb96d103.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[17],{9017(wp,Jt,C){C.d(Jt,{ECLModule:()=>Tp});var d=C(2200),W=C(8132),L=C(3694),qt=C(9881),t=C(3664),H=C(7575),_=C(2920);function Qt(i,s){1&i&&t.nrm(0,"mat-progress-bar",3)}let vt=(()=>{var i;class s{constructor(n){this.router=n,this.loading=!1,this.router.events.subscribe(a=>{switch(!0){case a instanceof L.Z:this.loading=!0;break;case a instanceof L.wF:case a instanceof L.j5:case a instanceof L.L6:this.loading=!1}})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-root"]],standalone:!1,decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(a,o){1&a&&(t.j41(0,"div",1),t.DNE(1,Qt,1,0,"mat-progress-bar",2),t.nrm(2,"router-outlet",null,0),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf",o.loading))},dependencies:[d.bT,H.HM,_.DJ,_.sA,_.UI,L.n3],encapsulation:2,data:{animation:[qt.E]}}))}return i(),s})();var h=C(1413),g=C(6977),pt=C(3993),St=C(614),E=C(5383),c=C(4416),J=C(9647),b=C(2730),r=C(2615),A=C(8570),I=C(9640),$=C(2571),D=C(60),Zt=C(2598),x=C(5596),Rt=C(2885),ut=C(2629),dt=C(9115),S=C(6038),G=C(6850);const kt=i=>({backgroundColor:i});function Wt(i,s){if(1&i&&t.nrm(0,"span",6),2&i){const e=t.XpG();t.Y8G("ngStyle",t.eq3(1,kt,null==e.information?null:e.information.color))}}function Kt(i,s){if(1&i&&(t.j41(0,"div")(1,"h4",1),t.EFF(2,"Color"),t.k0s(),t.j41(3,"div",2),t.nrm(4,"span",7),t.EFF(5),t.nI1(6,"uppercase"),t.k0s()()),2&i){const e=t.XpG();t.R7$(4),t.Y8G("ngStyle",t.eq3(4,kt,null==e.information?null:e.information.color)),t.R7$(),t.SpI(" ",t.bMT(6,2,null==e.information?null:e.information.color)," ")}}function te(i,s){if(1&i&&(t.j41(0,"span",2),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}let ee=(()=>{var i;class s{constructor(n){this.commonService=n,this.chains=[""]}ngOnChanges(){this.chains=[],this.chains.push("Bitcoin "+(this.information.network?this.commonService.titleCase(this.information.network):"Testnet"))}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU($.h))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},standalone:!1,features:[t.OA$],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"]],template:function(a,o){1&a&&(t.j41(0,"div",0)(1,"div")(2,"h4",1),t.EFF(3,"Alias"),t.k0s(),t.j41(4,"div",2),t.EFF(5),t.DNE(6,Wt,1,3,"span",3),t.k0s()(),t.DNE(7,Kt,7,6,"div",4),t.j41(8,"div")(9,"h4",1),t.EFF(10,"Implementation"),t.k0s(),t.j41(11,"div",2),t.EFF(12),t.k0s()(),t.j41(13,"div")(14,"h4",1),t.EFF(15,"Chain"),t.k0s(),t.DNE(16,te,2,1,"span",5),t.k0s()()),2&a&&(t.R7$(5),t.SpI(" ",null==o.information?null:o.information.alias," "),t.R7$(),t.Y8G("ngIf",!o.showColorFieldSeparately),t.R7$(),t.Y8G("ngIf",o.showColorFieldSeparately),t.R7$(5),t.JRh(null!=o.information&&o.information.lnImplementation||null!=o.information&&o.information.version?(null==o.information?null:o.information.lnImplementation)+" "+(null==o.information?null:o.information.version):""),t.R7$(4),t.Y8G("ngForOf",o.chains))},dependencies:[d.Sq,d.bT,d.B3,_.DJ,_.sA,_.UI,S.eI,d.Pc],encapsulation:2}))}return i(),s})();function ne(i,s){if(1&i&&(t.j41(0,"div",2)(1,"div")(2,"h4",3),t.EFF(3,"Lightning"),t.k0s(),t.j41(4,"div",4),t.EFF(5),t.nI1(6,"number"),t.k0s(),t.nrm(7,"mat-progress-bar",5),t.k0s(),t.j41(8,"div")(9,"h4",3),t.EFF(10,"On-chain"),t.k0s(),t.j41(11,"div",4),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.nrm(14,"mat-progress-bar",5),t.k0s(),t.j41(15,"div")(16,"h4",3),t.EFF(17,"Total"),t.k0s(),t.j41(18,"div",4),t.EFF(19),t.nI1(20,"number"),t.k0s()()()),2&i){const e=t.XpG();t.R7$(5),t.SpI("",t.bMT(6,7,e.balances.lightning)," Sats"),t.R7$(2),t.Y8G("value",t.mNQ(e.balances.lightning/e.balances.total*100)),t.R7$(5),t.SpI("",t.bMT(13,9,e.balances.onchain)," Sats"),t.R7$(2),t.Y8G("value",t.mNQ(e.balances.onchain/e.balances.total*100)),t.R7$(5),t.SpI("",t.bMT(20,11,e.balances.total)," Sats")}}function ie(i,s){if(1&i&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let ae=(()=>{var i;class s{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,ne,21,13,"div",1)(1,ie,3,1,"ng-template",null,0,t.C5r),2&a){const l=t.sdS(2);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.bT,H.HM,_.DJ,_.sA,_.UI,d.QX],encapsulation:2}))}return i(),s})();function oe(i,s){if(1&i&&(t.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t.EFF(4,"Daily"),t.k0s(),t.j41(5,"div",5),t.EFF(6),t.nI1(7,"number"),t.k0s()(),t.j41(8,"div")(9,"h4",4),t.EFF(10,"Weekly"),t.k0s(),t.j41(11,"div",5),t.EFF(12),t.nI1(13,"number"),t.k0s()(),t.j41(14,"div")(15,"h4",4),t.EFF(16,"Monthly"),t.k0s(),t.j41(17,"div",5),t.EFF(18),t.nI1(19,"number"),t.k0s()()(),t.j41(20,"div",3)(21,"div")(22,"h4",4),t.EFF(23,"Transactions"),t.k0s(),t.j41(24,"div",5),t.EFF(25),t.nI1(26,"number"),t.k0s()(),t.j41(27,"div")(28,"h4",4),t.EFF(29,"Transactions"),t.k0s(),t.j41(30,"div",5),t.EFF(31),t.nI1(32,"number"),t.k0s()(),t.j41(33,"div")(34,"h4",4),t.EFF(35,"Transactions"),t.k0s(),t.j41(36,"div",5),t.EFF(37),t.nI1(38,"number"),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(6),t.SpI("",t.bMT(7,6,null==e.fees?null:e.fees.daily_fee)," Sats"),t.R7$(6),t.SpI("",t.bMT(13,8,null==e.fees?null:e.fees.weekly_fee)," Sats"),t.R7$(6),t.SpI("",t.bMT(19,10,null==e.fees?null:e.fees.monthly_fee)," Sats"),t.R7$(7),t.JRh(t.bMT(26,12,null==e.fees?null:e.fees.daily_txs)),t.R7$(6),t.JRh(t.bMT(32,14,null==e.fees?null:e.fees.weekly_txs)),t.R7$(6),t.JRh(t.bMT(38,16,null==e.fees?null:e.fees.monthly_txs))}}function se(i,s){if(1&i&&(t.j41(0,"div",6)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let le=(()=>{var i;class s{constructor(){this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100}ngOnChanges(){if(this.fees?.monthly_fee){this.totalFees=[{name:"Monthly",value:this.fees.monthly_fee},{name:"Weekly",value:this.fees.weekly_fee||0},{name:"Daily ",value:this.fees.daily_fee||0}];const a=10**(Math.ceil(Math.log(this.fees.monthly_fee+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.monthly_fee/a)*a/5||100,Object.assign(this,this.totalFees)}else this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100,Object.assign(this,this.totalFees)}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},standalone:!1,features:[t.OA$],decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,oe,39,18,"div",1)(1,se,3,1,"ng-template",null,0,t.C5r),2&a){const l=t.sdS(2);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.bT,_.DJ,_.sA,_.UI,d.QX],encapsulation:2}))}return i(),s})();function re(i,s){if(1&i&&(t.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),t.EFF(4,"Active"),t.k0s(),t.j41(5,"div",5),t.nrm(6,"span",6),t.EFF(7),t.nI1(8,"number"),t.k0s()(),t.j41(9,"div")(10,"h4",4),t.EFF(11,"Pending"),t.k0s(),t.j41(12,"div",5),t.nrm(13,"span",7),t.EFF(14),t.nI1(15,"number"),t.k0s()(),t.j41(16,"div")(17,"h4",4),t.EFF(18,"Inactive"),t.k0s(),t.j41(19,"div",5),t.nrm(20,"span",8),t.EFF(21),t.nI1(22,"number"),t.k0s()()(),t.j41(23,"div",3)(24,"div")(25,"h4",4),t.EFF(26,"Capacity"),t.k0s(),t.j41(27,"div",5),t.EFF(28),t.nI1(29,"number"),t.k0s()(),t.j41(30,"div")(31,"h4",4),t.EFF(32,"Capacity"),t.k0s(),t.j41(33,"div",5),t.EFF(34),t.nI1(35,"number"),t.k0s()(),t.j41(36,"div")(37,"h4",4),t.EFF(38,"Capacity"),t.k0s(),t.j41(39,"div",5),t.EFF(40),t.nI1(41,"number"),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(7),t.JRh(t.bMT(8,6,(null==e.channelsStatus.active?null:e.channelsStatus.active.channels)||0)),t.R7$(7),t.JRh(t.bMT(15,8,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.channels)||0)),t.R7$(7),t.JRh(t.bMT(22,10,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.channels)||0)),t.R7$(7),t.SpI("",t.bMT(29,12,(null==e.channelsStatus.active?null:e.channelsStatus.active.capacity)||0)," Sats"),t.R7$(6),t.SpI("",t.bMT(35,14,(null==e.channelsStatus.pending?null:e.channelsStatus.pending.capacity)||0)," Sats"),t.R7$(6),t.SpI("",t.bMT(41,16,(null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.capacity)||0)," Sats")}}function ce(i,s){if(1&i&&(t.j41(0,"div",9)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let me=(()=>{var i;class s{constructor(){this.channelsStatus={}}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,re,42,18,"div",1)(1,ce,3,1,"ng-template",null,0,t.C5r),2&a){const l=t.sdS(2);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.bT,_.DJ,_.sA,_.UI,d.QX],encapsulation:2}))}return i(),s})();var N=C(8834),y=C(9588),tt=C(1997),Q=C(455),B=C(497);const pe=()=>["../connections/channels/open"],ue=(i,s)=>({filterColumn:i,filterValue:s});function de(i,s){if(1&i&&(t.j41(0,"div",19)(1,"a",20),t.EFF(2),t.nI1(3,"slice"),t.k0s(),t.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),t.EFF(7,"Local:"),t.k0s(),t.EFF(8),t.nI1(9,"number"),t.k0s(),t.j41(10,"mat-hint",22),t.nrm(11,"fa-icon",23),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.j41(14,"mat-hint",24)(15,"strong",8),t.EFF(16,"Remote:"),t.k0s(),t.EFF(17),t.nI1(18,"number"),t.k0s()(),t.nrm(19,"mat-progress-bar",25),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(3);t.R7$(),t.Y8G("matTooltip",t.mNQ(e.alias||e.shortChannelId))("matTooltipDisabled",t.mNQ((e.alias||e.shortChannelId).length<26))("routerLink",t.lJ4(26,pe))("state",t.l_i(27,ue,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(3,14,(null==e?null:e.alias)||(null==e?null:e.shortChannelId),0,24),"",((null==e?null:e.alias)||(null==e?null:e.shortChannelId)).length>25?"...":""," "),t.R7$(6),t.SpI("",t.i5U(9,18,(null==e?null:e.toLocal)||0,"1.0-0")," Sats"),t.R7$(3),t.Y8G("icon",n.faBalanceScale),t.R7$(),t.SpI(" (",t.bMT(13,21,(null==e?null:e.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,23,(null==e?null:e.toRemote)||0,"1.0-0")," Sats"),t.R7$(2),t.Y8G("value",t.mNQ(e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0))}}function he(i,s){if(1&i&&(t.j41(0,"div",17),t.DNE(1,de,20,30,"div",18),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function fe(i,s){if(1&i&&(t.j41(0,"div",3)(1,"div",4)(2,"span",5),t.EFF(3,"Total Capacity"),t.k0s(),t.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),t.EFF(7,"Local:"),t.k0s(),t.EFF(8),t.nI1(9,"number"),t.k0s(),t.j41(10,"mat-hint",9),t.nrm(11,"fa-icon",10),t.EFF(12),t.nI1(13,"number"),t.k0s(),t.j41(14,"mat-hint",11)(15,"strong",8),t.EFF(16,"Remote:"),t.k0s(),t.EFF(17),t.nI1(18,"number"),t.k0s()(),t.nrm(19,"mat-progress-bar",12),t.k0s(),t.j41(20,"div",13),t.nrm(21,"mat-divider",14),t.k0s(),t.j41(22,"div",15),t.DNE(23,he,2,1,"div",16),t.k0s()()),2&i){const e=t.XpG(),n=t.sdS(2);t.R7$(8),t.SpI("",t.i5U(9,8,(null==e.channelBalances?null:e.channelBalances.localBalance)||0,"1.0-0")," Sats"),t.R7$(3),t.Y8G("icon",e.faBalanceScale),t.R7$(),t.SpI(" (",t.bMT(13,11,(null==e.channelBalances?null:e.channelBalances.balancedness)||0),") "),t.R7$(5),t.SpI("",t.i5U(18,13,(null==e.channelBalances?null:e.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),t.R7$(2),t.Y8G("value",t.mNQ(null!=e.channelBalances&&e.channelBalances.localBalance&&(null==e.channelBalances?null:e.channelBalances.localBalance)>0?+(null==e.channelBalances?null:e.channelBalances.localBalance)/(+(null==e.channelBalances?null:e.channelBalances.localBalance)+ +(null==e.channelBalances?null:e.channelBalances.remoteBalance))*100:0)),t.R7$(4),t.Y8G("ngIf",e.allChannels&&(null==e.allChannels?null:e.allChannels.length)>0)("ngIfElse",n)}}function _e(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",26),t.EFF(1," No channels available. "),t.j41(2,"button",27),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.goToChannels())}),t.EFF(3,"Open Channel"),t.k0s()()}}function ge(i,s){if(1&i&&(t.j41(0,"div",28)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let Ce=(()=>{var i;class s{constructor(n){this.router=n,this.faBalanceScale=E.GR4,this.faDumbbell=E.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,fe,24,16,"div",2)(1,_e,4,0,"ng-template",null,0,t.C5r)(3,ge,3,1,"ng-template",null,1,t.C5r),2&a){const l=t.sdS(4);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.Sq,d.bT,D.aY,N.$z,y.MV,tt.q,H.HM,_.DJ,_.sA,_.UI,Q.oV,B.Ld,W.Wk,d.P9,d.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}))}return i(),s})();const ye=(i,s,e)=>({"mb-4":i,"mb-2":s,"mb-1":e}),be=()=>["../connections/channels/open"],Fe=(i,s)=>({filterColumn:i,filterValue:s});function Ee(i,s){if(1&i&&(t.j41(0,"mat-hint",19)(1,"strong",20),t.EFF(2,"Capacity: "),t.k0s(),t.EFF(3),t.nI1(4,"number"),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toRemote||0,"1.0-0")," Sats")}}function xe(i,s){if(1&i&&(t.j41(0,"mat-hint",19)(1,"strong",20),t.EFF(2,"Capacity: "),t.k0s(),t.EFF(3),t.nI1(4,"number"),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(3),t.SpI("",t.i5U(4,1,e.toLocal||0,"1.0-0")," Sats")}}function Le(i,s){if(1&i&&t.nrm(0,"mat-progress-bar",21),2&i){const e=t.XpG().$implicit,n=t.XpG(3);t.Y8G("value",t.mNQ(n.totalLiquidity>0?(+e.toRemote||0)/n.totalLiquidity*100:0))}}function ve(i,s){if(1&i&&t.nrm(0,"mat-progress-bar",21),2&i){const e=t.XpG().$implicit,n=t.XpG(3);t.Y8G("value",t.mNQ(n.totalLiquidity>0?(+e.toLocal||0)/n.totalLiquidity*100:0))}}function Se(i,s){if(1&i&&(t.j41(0,"div",14)(1,"a",15),t.EFF(2),t.nI1(3,"slice"),t.k0s(),t.j41(4,"div",16),t.DNE(5,Ee,5,4,"mat-hint",17)(6,xe,5,4,"mat-hint",17),t.k0s(),t.DNE(7,Le,1,2,"mat-progress-bar",18)(8,ve,1,2,"mat-progress-bar",18),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(3);t.R7$(),t.Y8G("matTooltip",t.mNQ(e.alias||e.shortChannelId))("matTooltipDisabled",t.mNQ((e.alias||e.shortChannelId).length<26))("routerLink",t.lJ4(16,be))("state",t.l_i(17,Fe,e.alias?"alias":"shortChannelId",e.alias||e.shortChannelId)),t.R7$(),t.Lme(" ",t.brH(3,12,e.alias||e.shortChannelId||"",0,24),"",(e.alias||e.shortChannelId||"").length>25?"...":""," "),t.R7$(3),t.Y8G("ngIf","In"===n.direction),t.R7$(),t.Y8G("ngIf","Out"===n.direction),t.R7$(),t.Y8G("ngIf","In"===n.direction),t.R7$(),t.Y8G("ngIf","Out"===n.direction)}}function Re(i,s){if(1&i&&(t.j41(0,"div",12),t.DNE(1,Se,9,20,"div",13),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.allChannels)}}function ke(i,s){if(1&i&&(t.j41(0,"div",3)(1,"div",4)(2,"span",5),t.EFF(3,"Total Capacity"),t.k0s(),t.j41(4,"mat-hint",6),t.EFF(5),t.nI1(6,"number"),t.k0s(),t.nrm(7,"mat-progress-bar",7),t.k0s(),t.j41(8,"div",8),t.nrm(9,"mat-divider",9),t.k0s(),t.j41(10,"div",10),t.DNE(11,Re,2,1,"div",11),t.k0s()()),2&i){const e=t.XpG(),n=t.sdS(2);t.Y8G("ngClass",t.sMw(7,ye,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD,e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),t.R7$(5),t.SpI("",t.i5U(6,4,e.totalLiquidity,"1.0-0")," Sats"),t.R7$(6),t.Y8G("ngIf",e.allChannels&&e.allChannels.length>0)("ngIfElse",n)}}function Ie(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",24),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.goToChannels())}),t.EFF(1,"Open Channel"),t.k0s()}}function Te(i,s){if(1&i&&(t.j41(0,"div",22),t.EFF(1," No channels available. "),t.DNE(2,Ie,2,0,"button",23),t.k0s()),2&i){const e=t.XpG();t.R7$(2),t.Y8G("ngIf","Out"===e.direction)}}function we(i,s){if(1&i&&(t.j41(0,"div",25)(1,"p"),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.JRh(e.errorMessage)}}let je=(()=>{var i;class s{constructor(n,a){this.router=n,this.commonService=a,this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/ecl/connections")}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix),t.rXU($.h))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],["fxLayout","column","fxFlex.gt-sm","88","fxFlex","84","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","class","w-100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100",1,"w-100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","100","fxLayoutAlign","start center","class","font-size-90 color-primary",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,o){if(1&a&&t.DNE(0,ke,12,11,"div",2)(1,Te,3,1,"ng-template",null,0,t.C5r)(3,we,3,1,"ng-template",null,1,t.C5r),2&a){const l=t.sdS(4);t.Y8G("ngIf",""===(null==o.errorMessage?null:o.errorMessage.trim()))("ngIfElse",l)}},dependencies:[d.YU,d.Sq,d.bT,N.$z,y.MV,tt.q,H.HM,_.DJ,_.sA,_.UI,S.PW,Q.oV,B.Ld,W.Wk,d.P9,d.QX],encapsulation:2}))}return i(),s})();var Z=C(6697),w=C(6695),v=C(2042),p=C(1676),R=C(6183),X=C(5964),j=C(5428),V=C(1585),ht=C(3017),K=C(1747),nt=C(1534),f=C(9417),Y=C(3746),et=C(9587);const De=["paymentReq"];function Ge(i,s){if(1&i&&(t.j41(0,"span",23),t.nrm(1,"fa-icon",24),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function Pe(i,s){if(1&i&&t.nrm(0,"span",25),2&i){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function Ae(i,s){if(1&i&&(t.j41(0,"mat-hint",20),t.EFF(1),t.DNE(2,Ge,2,1,"span",21)(3,Pe,1,1,"span",22),t.EFF(4),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI(" ",e.paymentDecodedHintPre," "),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.SpI(" ",e.paymentDecodedHintPost," ")}}function Ne(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function Be(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.JRh(e.paymentDecodedHint)}}function Me(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Payment amount is required."),t.k0s())}function $e(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-form-field",4)(1,"mat-label"),t.EFF(2,"Amount (Sats)"),t.k0s(),t.j41(3,"input",26,2),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.paymentAmount,a)||(o.paymentAmount=a),r.Njj(a)}),t.bIt("change",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onAmountChange(a))}),t.k0s(),t.j41(5,"mat-hint"),t.EFF(6,"It is a zero amount invoice, enter amount to be paid."),t.k0s(),t.DNE(7,Me,2,0,"mat-error",14),t.k0s()}if(2&i){const e=t.XpG();t.R7$(3),t.R50("ngModel",e.paymentAmount),t.R7$(4),t.Y8G("ngIf",!e.paymentAmount)}}function Ve(i,s){if(1&i&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.paymentError)}}function Oe(i,s){if(1&i&&(t.j41(0,"div",27),t.nrm(1,"fa-icon",28),t.DNE(2,Ve,2,1,"span",14),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.paymentError)}}let He=(()=>{var i;class s{constructor(n,a,o,l,m,u,T,F){this.dialogRef=n,this.store=a,this.eclEffects=o,this.logger=l,this.commonService=m,this.decimalPipe=u,this.actions=T,this.dataService=F,this.faExclamationTriangle=E.zpE,this.convertedCurrency=null,this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=c.nv[0],this.feeLimitTypes=c.nv,this.paymentError="",this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.activeChannels=n.activeChannels,this.logger.info(n)}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,X.p)(n=>n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL||n.type===c.Uu.SEND_PAYMENT_STATUS_ECL)).subscribe(n=>{n.type===c.Uu.SEND_PAYMENT_STATUS_ECL&&this.dialogRef.close(),n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&n.payload.status===c.wn.ERROR&&"SendPayment"===n.payload.action&&(delete this.paymentDecoded.amount,this.paymentError=n.payload.message)})}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():(this.paymentAmount=null,this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors(null),this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,Z.s)(1)).subscribe({next:n=>{this.paymentDecoded=n,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[2])).subscribe({next:a=>{this.convertedCurrency=a,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,c.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))},error:n=>{this.logger.error(n),this.paymentDecodedHintPre="ERROR: "+(n.message?n.message:"string"==typeof n?n:JSON.stringify(n)),this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}sendPayment(){this.store.dispatch((0,j.Fd)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{invoice:this.paymentRequest,amountMsat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{invoice:this.paymentRequest,fromDialog:!0}}))}onPaymentRequestEntry(n){this.paymentRequest=n&&"string"==typeof n?n.trim():n,this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentRequest&&this.paymentRequest.length>100&&(this.paymentReq.control.setErrors(null),this.zeroAmtInvoice=!1,this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,Z.s)(1)).subscribe({next:a=>{this.paymentDecoded=a,this.paymentDecoded.timestamp&&!this.paymentDecoded.amount?(this.paymentDecoded.amount=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion&&this.paymentDecoded.amount?this.commonService.convertCurrency(+this.paymentDecoded.amount,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:o=>{this.convertedCurrency=o,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,c.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:o=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))},error:a=>{this.logger.error(a),this.paymentDecodedHintPre="ERROR: "+(a.message?a.message:"string"==typeof a?a:JSON.stringify(a)),this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}onAmountChange(n){delete this.paymentDecoded.amount,this.paymentDecoded.amount=n}resetData(){this.paymentDecoded={},this.paymentRequest="",this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=c.nv[0],this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(I.il),t.rXU(ht.B),t.rXU(A.gP),t.rXU($.h),t.rXU(d.QX),t.rXU(K.En),t.rXU(nt.u))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-lightning-send-payments"]],viewQuery:function(a,o){if(1&a&&t.GBs(De,5),2&a){let l;t.mGM(l=t.lsd())&&(o.paymentReq=l.first)}},standalone:!1,decls:26,vars:7,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["paymentAmt","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayoutAlign","space-between stretch","fxLayout","column"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","2","required","",3,"ngModelChange","change","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),t.EFF(5,"Send Payment"),t.k0s()(),t.j41(6,"button",8),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",9)(9,"form",10,0)(11,"mat-form-field",11)(12,"mat-label"),t.EFF(13,"Payment Request"),t.k0s(),t.j41(14,"textarea",12,1),t.bIt("ngModelChange",function(u){return r.eBV(l),r.Njj(o.onPaymentRequestEntry(u))})("matTextareaAutosize",function(){return r.eBV(l),r.Njj(!0)}),t.k0s(),t.DNE(16,Ae,5,4,"mat-hint",13)(17,Ne,2,0,"mat-error",14)(18,Be,2,1,"mat-error",14),t.k0s(),t.DNE(19,$e,8,2,"mat-form-field",15)(20,Oe,3,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return r.eBV(l),r.Njj(o.resetData())}),t.EFF(23,"Clear Fields"),t.k0s(),t.j41(24,"button",19),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onSendPayment())}),t.EFF(25,"Send Payment"),t.k0s()()()()()()}if(2&a){const l=t.sdS(15);t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.Y8G("ngModel",o.paymentRequest),t.R7$(2),t.Y8G("ngIf",o.paymentRequest&&""!==o.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",!o.paymentRequest),t.R7$(),t.Y8G("ngIf",null==l.errors?null:l.errors.decodeError),t.R7$(),t.Y8G("ngIf",o.zeroAmtInvoice),t.R7$(),t.Y8G("ngIf",""!==o.paymentError)}},dependencies:[d.bT,f.qT,f.me,f.BC,f.cb,f.YS,f.vS,f.cV,D.aY,V.tx,N.$z,x.m2,x.MM,Y.fg,y.rl,y.nJ,y.MV,y.TL,_.DJ,_.sA,_.UI,et.N],encapsulation:2}))}return i(),s})();var U=C(9454);const Ye=["scrollContainer"];function Xe(i,s){if(1&i&&(t.j41(0,"div",9)(1,"div",2)(2,"h4",11),t.EFF(3,"Description"),t.k0s(),t.j41(4,"span",12),t.EFF(5),t.k0s()()()),2&i){const e=t.XpG();t.R7$(5),t.JRh(e.description)}}function Ue(i,s){1&i&&t.nrm(0,"mat-divider",14)}function ze(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-expansion-panel",23),t.bIt("opened",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onExpansionOpen(!0))})("closed",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onExpansionOpen(!1))}),t.j41(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"h4",24),t.EFF(4),t.k0s(),t.j41(5,"h4",25),t.EFF(6),t.nI1(7,"number"),t.k0s()()(),t.j41(8,"div",8)(9,"div",9)(10,"div",26)(11,"h4",11),t.EFF(12,"Fees (mSats)"),t.k0s(),t.j41(13,"span",12),t.EFF(14),t.nI1(15,"number"),t.k0s()(),t.j41(16,"div",26)(17,"h4",11),t.EFF(18,"Date/Time"),t.k0s(),t.j41(19,"span",12),t.EFF(20),t.nI1(21,"date"),t.k0s()()(),t.nrm(22,"mat-divider",14),t.j41(23,"div",9)(24,"div",2)(25,"h4",11),t.EFF(26,"ID"),t.k0s(),t.j41(27,"span",27),t.EFF(28),t.k0s()()(),t.nrm(29,"mat-divider",14),t.j41(30,"div",9)(31,"div",2)(32,"h4",11),t.EFF(33,"To Channel"),t.k0s(),t.j41(34,"span",27),t.EFF(35),t.k0s()()()()()}if(2&i){const e=s.$implicit,n=s.index,a=t.XpG();t.Y8G("expanded",a.expansionOpen),t.R7$(4),t.SpI("Part ",n+1),t.R7$(2),t.SpI("",t.bMT(7,7,e.amount)," (Sats)"),t.R7$(8),t.JRh(t.bMT(15,9,e.feesPaid)),t.R7$(6),t.JRh(t.i5U(21,11,e.timestamp,"dd/MMM/y HH:mm")),t.R7$(8),t.JRh(e.id),t.R7$(7),t.JRh(e.toChannelAlias)}}let Je=(()=>{var i;class s{constructor(n,a){this.dialogRef=n,this.data=a,this.description=null,this.shouldScroll=!0,this.expansionOpen=!0}ngOnInit(){this.payment=this.data.payment,this.data.sentPaymentInfo.length>0&&this.data.sentPaymentInfo[0].paymentRequest&&this.data.sentPaymentInfo[0].paymentRequest.description&&""!==this.data.sentPaymentInfo[0].paymentRequest.description&&(this.description=this.data.sentPaymentInfo[0].paymentRequest.description)}ngAfterViewChecked(){this.shouldScroll=this.scrollContainer.nativeElement.classList.value.includes("ps--active-y")}onScrollDown(){this.scrollContainer.nativeElement.scrollTop=this.scrollContainer.nativeElement.scrollTop+62.6}onExpansionOpen(n){this.expansionOpen=n}onClose(){this.dialogRef.close(!1)}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-payment-information"]],viewQuery:function(a,o){if(1&a&&t.GBs(Ye,5),2&a){let l;t.mGM(l=t.lsd())&&(o.scrollContainer=l.first)}},standalone:!1,decls:66,vars:15,consts:[["scrollContainer",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"h-40","padding-gap-x-large",3,"perfectScrollbar"],["fxLayout","column"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],["fxFlex","70"],[1,"w-100","my-1"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],["class","flat-expansion-panel my-1",3,"expanded","opened","closed",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll Down","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center"],["fxLayout","row","fxLayoutAlign","end center",1,"padding-gap-x-large","padding-gap-bottom-large"],["fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",1,"mr-1",3,"mat-dialog-close"],[1,"flat-expansion-panel","my-1",3,"opened","closed","expanded"],["fxFlex","30","fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","70","fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Payment Information"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7,0)(10,"div",8)(11,"div",9)(12,"div",10)(13,"h4",11),t.EFF(14,"Amount (Sats)"),t.k0s(),t.j41(15,"span",12),t.EFF(16),t.nI1(17,"number"),t.k0s()(),t.j41(18,"div",13)(19,"h4",11),t.EFF(20,"Date/Time"),t.k0s(),t.j41(21,"span",12),t.EFF(22),t.nI1(23,"date"),t.k0s()()(),t.nrm(24,"mat-divider",14),t.j41(25,"div",9)(26,"div",2)(27,"h4",11),t.EFF(28,"ID"),t.k0s(),t.j41(29,"span",12),t.EFF(30),t.k0s()()(),t.nrm(31,"mat-divider",14),t.j41(32,"div",9)(33,"div",2)(34,"h4",11),t.EFF(35,"Payment Hash"),t.k0s(),t.j41(36,"span",12),t.EFF(37),t.k0s()()(),t.nrm(38,"mat-divider",14),t.j41(39,"div",9)(40,"div",2)(41,"h4",11),t.EFF(42,"Payment Preimage"),t.k0s(),t.j41(43,"span",12),t.EFF(44),t.k0s()()(),t.nrm(45,"mat-divider",14),t.j41(46,"div",9)(47,"div",2)(48,"h4",11),t.EFF(49,"Recipient Node"),t.k0s(),t.j41(50,"span",12),t.EFF(51),t.k0s()()(),t.nrm(52,"mat-divider",14),t.DNE(53,Xe,6,1,"div",15)(54,Ue,1,0,"mat-divider",16),t.j41(55,"div",9)(56,"div",2)(57,"mat-accordion"),t.DNE(58,ze,36,14,"mat-expansion-panel",17),t.k0s()()()()(),t.j41(59,"div",18)(60,"button",19),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onScrollDown())}),t.j41(61,"mat-icon",20),t.EFF(62,"arrow_downward"),t.k0s()()(),t.j41(63,"div",21)(64,"button",22),t.EFF(65,"OK"),t.k0s()()()()}2&a&&(t.R7$(16),t.JRh(t.bMT(17,10,o.payment.recipientAmount)),t.R7$(6),t.JRh(t.i5U(23,12,o.payment.firstPartTimestamp,"dd/MMM/y HH:mm")),t.R7$(8),t.JRh(o.payment.id),t.R7$(7),t.JRh(o.payment.paymentHash),t.R7$(7),t.JRh(o.payment.paymentPreimage),t.R7$(7),t.JRh(o.payment.recipientNodeAlias),t.R7$(2),t.Y8G("ngIf",o.description),t.R7$(),t.Y8G("ngIf",o.description),t.R7$(4),t.Y8G("ngForOf",o.payment.parts),t.R7$(6),t.Y8G("mat-dialog-close",!1))},dependencies:[d.Sq,d.bT,V.tx,N.$z,N.$0,x.m2,x.MM,U.BS,U.GK,U.Z2,U.WN,ut.An,tt.q,_.DJ,_.sA,_.UI,B.Ld,d.QX,d.vh],encapsulation:2}))}return i(),s})();var k=C(1771),lt=C(7541),q=C(2929),z=C(3029);const qe=["sendPaymentForm"],Qe=()=>["all"],Ze=i=>({"error-border":i}),We=()=>["no_payment"],O=i=>({width:i}),Ke=i=>({"display-none":i});function tn(i,s){if(1&i&&(t.j41(0,"span",18),t.nrm(1,"fa-icon",19),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function en(i,s){if(1&i&&t.nrm(0,"span",20),2&i){const e=t.XpG(3);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function nn(i,s){if(1&i&&(t.j41(0,"mat-hint",15),t.EFF(1),t.DNE(2,tn,2,1,"span",16)(3,en,1,1,"span",17),t.EFF(4),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.SpI(" ",e.paymentDecodedHintPre," "),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),t.R7$(),t.SpI(" ",e.paymentDecodedHintPost," ")}}function an(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Payment request is required."),t.k0s())}function on(i,s){if(1&i){const e=t.RV6();t.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),t.EFF(4,"Payment Request"),t.k0s(),t.j41(5,"textarea",9,1),t.bIt("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onPaymentRequestEntry(a))})("matTextareaAutosize",function(){return r.eBV(e),r.Njj(!0)}),t.k0s(),t.DNE(7,nn,5,4,"mat-hint",10)(8,an,2,0,"mat-error",11),t.k0s(),t.j41(9,"div",12)(10,"button",13),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.resetData())}),t.EFF(11,"Clear Field"),t.k0s(),t.j41(12,"button",14),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSendPayment())}),t.EFF(13,"Send Payment"),t.k0s()()()}if(2&i){const e=t.XpG();t.R7$(5),t.Y8G("ngModel",e.paymentRequest),t.R7$(2),t.Y8G("ngIf",e.paymentRequest&&""!==e.paymentDecodedHintPre),t.R7$(),t.Y8G("ngIf",!e.paymentRequest)}}function sn(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",21)(1,"button",14),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.openSendPaymentModal())}),t.EFF(2,"Send Payment"),t.k0s()()}}function ln(i,s){if(1&i&&(t.j41(0,"mat-option",66),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function rn(i,s){1&i&&t.nrm(0,"mat-progress-bar",67)}function cn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Date/Time"),t.k0s())}function mn(i,s){if(1&i&&(t.j41(0,"td",69),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,null==e?null:e.firstPartTimestamp,"dd/MMM/y HH:mm"))}}function pn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"ID"),t.k0s())}function un(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id)}}function dn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Destination Node ID"),t.k0s())}function hn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId)}}function fn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Destination"),t.k0s())}function _n(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias)}}function gn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Description"),t.k0s())}function Cn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function yn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Payment Hash"),t.k0s())}function bn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function Fn(i,s){1&i&&(t.j41(0,"th",68),t.EFF(1,"Preimage"),t.k0s())}function En(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",70)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage)}}function xn(i,s){1&i&&(t.j41(0,"th",72),t.EFF(1,"Amount (Sats)"),t.k0s())}function Ln(i,s){if(1&i&&(t.j41(0,"td",69)(1,"span",73),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.recipientAmount))}}function vn(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",74)(1,"div",75)(2,"mat-select",76),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",77),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Sn(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",78)(1,"button",79),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onPaymentClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function Rn(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No payment available."),t.k0s())}function kn(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting payments..."),t.k0s())}function In(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Tn(i,s){if(1&i&&(t.j41(0,"td",80),t.DNE(1,Rn,2,0,"p",11)(2,kn,2,0,"p",11)(3,In,2,1,"p",11),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.payments&&e.payments.data)||(null==e.payments||null==e.payments.data?null:e.payments.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function wn(i,s){if(1&i&&(t.j41(0,"span",81),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.timestamp,"dd/MMM/y HH:mm")," ")}}function jn(i,s){if(1&i&&(t.qex(0),t.DNE(1,wn,3,4,"span",82),t.bVm()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Dn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"span",81),t.EFF(2),t.k0s(),t.DNE(3,jn,2,1,"ng-container",11),t.k0s()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" Total Attempts: ",(null==e||null==e.parts?null:e.parts.length)||0," "),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Gn(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(e.id)}}function Pn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Gn,4,4,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function An(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Pn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.id),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Nn(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(e.toChannelId)}}function Bn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Nn,4,4,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Mn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Bn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeId),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function $n(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(2,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(e.toChannelAlias)}}function Vn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,$n,4,4,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function On(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Vn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.recipientNodeAlias),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Hn(i,s){if(1&i&&(t.j41(0,"span",84),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,e.amount,"1.0-0")," ")}}function Yn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Hn,3,4,"span",85),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Xn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"span",84),t.EFF(2),t.nI1(3,"number"),t.k0s(),t.DNE(4,Yn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.i5U(3,2,null==e?null:e.recipientAmount,"1.0-0")),t.R7$(2),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Un(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function zn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Un,5,7,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Jn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,zn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function qn(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Qn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,qn,5,7,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function Zn(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Qn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function Wn(i,s){if(1&i&&(t.j41(0,"span",81)(1,"span",83)(2,"span",71),t.EFF(3),t.nI1(4,"number"),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(4);t.R7$(),t.Y8G("ngStyle",t.eq3(5,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.SpI("Fee Paid: ",t.i5U(4,2,e.feesPaid,"1.0-0")," (Sats)")}}function Kn(i,s){if(1&i&&(t.j41(0,"span"),t.DNE(1,Wn,5,7,"span",82),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function ti(i,s){if(1&i&&(t.j41(0,"td",69)(1,"div",83)(2,"span",71),t.EFF(3),t.k0s()(),t.DNE(4,Kn,2,1,"span",11),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(3,O,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentPreimage),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function ei(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",89)(1,"button",90),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2).$implicit,l=t.XpG(2);return r.Njj(l.onPartClick(a,o))}),t.EFF(2),t.k0s()()}if(2&i){const e=s.index;t.R7$(2),t.SpI("View ",e+1)}}function ni(i,s){if(1&i&&(t.j41(0,"div"),t.DNE(1,ei,3,1,"div",88),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.Y8G("ngForOf",null==e?null:e.parts)}}function ii(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",69)(1,"span",86)(2,"button",87),t.bIt("click",function(){const a=r.eBV(e).$implicit;return r.Njj(a.is_expanded=!a.is_expanded)}),t.EFF(3),t.k0s()(),t.DNE(4,ni,2,1,"div",11),t.k0s()}if(2&i){const e=s.$implicit;t.R7$(3),t.JRh(null!=e&&e.is_expanded?"Hide":"Show"),t.R7$(),t.Y8G("ngIf",null==e?null:e.is_expanded)}}function ai(i,s){1&i&&t.nrm(0,"tr",91)}function oi(i,s){if(1&i&&t.nrm(0,"tr",92),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Ke,(null==e.payments||null==e.payments.data?null:e.payments.data.length)>0))}}function si(i,s){1&i&&t.nrm(0,"tr",93)}function li(i,s){1&i&&t.nrm(0,"tr",91)}function ri(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",22)(1,"div",23)(2,"div",24),t.nrm(3,"fa-icon",25),t.j41(4,"span",26),t.EFF(5,"Payments History"),t.k0s()(),t.j41(6,"div",27)(7,"mat-form-field",28)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",29),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilterBy,a)||(o.selFilterBy=a),r.Njj(a)}),t.bIt("selectionChange",function(){r.eBV(e);const a=t.XpG();return a.selFilter="",r.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,ln,2,2,"mat-option",30),t.k0s()()(),t.j41(13,"mat-form-field",28)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",31),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilter,a)||(o.selFilter=a),r.Njj(a)}),t.bIt("input",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())})("keyup",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",32)(18,"div",33),t.DNE(19,rn,1,0,"mat-progress-bar",34),t.j41(20,"table",35,2),t.qex(22,36),t.DNE(23,cn,2,0,"th",37)(24,mn,3,4,"td",38),t.bVm(),t.qex(25,39),t.DNE(26,pn,2,0,"th",37)(27,un,4,4,"td",38),t.bVm(),t.qex(28,40),t.DNE(29,dn,2,0,"th",37)(30,hn,4,4,"td",38),t.bVm(),t.qex(31,41),t.DNE(32,fn,2,0,"th",37)(33,_n,4,4,"td",38),t.bVm(),t.qex(34,42),t.DNE(35,gn,2,0,"th",37)(36,Cn,4,4,"td",38),t.bVm(),t.qex(37,43),t.DNE(38,yn,2,0,"th",37)(39,bn,4,4,"td",38),t.bVm(),t.qex(40,44),t.DNE(41,Fn,2,0,"th",37)(42,En,4,4,"td",38),t.bVm(),t.qex(43,45),t.DNE(44,xn,2,0,"th",46)(45,Ln,4,3,"td",38),t.bVm(),t.qex(46,47),t.DNE(47,vn,6,0,"th",48)(48,Sn,3,0,"td",49),t.bVm(),t.qex(49,50),t.DNE(50,Tn,4,3,"td",51),t.bVm(),t.qex(51,52),t.DNE(52,Dn,4,2,"td",38),t.bVm(),t.qex(53,53),t.DNE(54,An,5,5,"td",38),t.bVm(),t.qex(55,54),t.DNE(56,Mn,5,5,"td",38),t.bVm(),t.qex(57,55),t.DNE(58,On,5,5,"td",38),t.bVm(),t.qex(59,56),t.DNE(60,Xn,5,5,"td",38),t.bVm(),t.qex(61,57),t.DNE(62,Jn,5,5,"td",38),t.bVm(),t.qex(63,58),t.DNE(64,Zn,5,5,"td",38),t.bVm(),t.qex(65,59),t.DNE(66,ti,5,5,"td",38),t.bVm(),t.qex(67,60),t.DNE(68,ii,5,2,"td",38),t.bVm(),t.DNE(69,ai,1,0,"tr",61)(70,oi,1,3,"tr",62)(71,si,1,0,"tr",63)(72,li,1,0,"tr",64),t.k0s()()(),t.nrm(73,"mat-paginator",65),t.k0s()}if(2&i){const e=t.XpG();t.R7$(3),t.Y8G("icon",e.faHistory),t.R7$(7),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(17,Qe).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter),t.R7$(3),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.payments)("ngClass",t.eq3(18,Ze,""!==e.errorMessage)),t.R7$(49),t.Y8G("matRowDefColumns",e.partColumns)("matRowDefWhen",e.is_group),t.R7$(),t.Y8G("matFooterRowDef",t.lJ4(20,We)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let It=(()=>{var i;class s{constructor(n,a,o,l,m,u,T,F){this.logger=n,this.commonService=a,this.store=o,this.rtlEffects=l,this.decimalPipe=m,this.dataService=u,this.datePipe=T,this.camelCaseWithSpaces=F,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:c.md,sortBy:"firstPartTimestamp",sortOrder:c.oi.DESCENDING},this.faHistory=E.Int,this.newlyAddedPayment="",this.information={},this.payments=new p.I6([]),this.paymentJSONArr=[],this.paymentDecoded={},this.displayedColumns=[],this.partColumns=[],this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.information=n}),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.partColumns=[],this.displayedColumns.map(a=>this.partColumns.push("group_"+a)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,j.CK)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=n.payments&&n.payments.sent&&n.payments.sent.length>0?n.payments.sent:[],this.paymentJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(n)})}ngAfterViewInit(){this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.payments.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=(n.firstPartTimestamp?this.datePipe.transform(new Date(n.firstPartTimestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"firstPartTimestamp":o=this.datePipe.transform(new Date(n.firstPartTimestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadPaymentsTable(n){this.payments=new p.I6(n?[...n]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(a,o)=>{switch(o){case"firstPartTimestamp":return this.commonService.sortByKey(a.parts,"timestamp","number",this.sort?.direction),a.firstPartTimestamp;case"id":return this.commonService.sortByKey(a.parts,"id","string",this.sort?.direction),a.id;case"recipientNodeAlias":return this.commonService.sortByKey(a.parts,"toChannelAlias","string",this.sort?.direction),a.recipientNodeAlias;case"recipientAmount":return this.commonService.sortByKey(a.parts,"amount","number",this.sort?.direction),a.recipientAmount;default:return a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null}},this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,Z.s)(1)).subscribe(n=>{this.paymentDecoded=n,this.paymentDecoded.timestamp?(this.paymentDecoded.amount||(this.paymentDecoded.amount=0),this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded.paymentHash||"",this.paymentDecoded.amount&&0!==this.paymentDecoded.amount?(this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"paymentHash",value:this.paymentDecoded.paymentHash,title:"Payment Hash",width:100}],[{key:"nodeId",value:this.paymentDecoded.nodeId,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:50,type:c.UN.DATE_TIME},{key:"amount",value:this.paymentDecoded.amount,title:"Amount (Sats)",width:50,type:c.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:c.UN.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,Z.s)(1)).subscribe(a=>{a&&(this.store.dispatch((0,j.Fd)({payload:{invoice:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",message:[[{key:"paymentHash",value:this.paymentDecoded.paymentHash,title:"Payment Hash",width:100}],[{key:"nodeId",value:this.paymentDecoded.nodeId,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:40,type:c.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:c.UN.NUMBER},{key:"minFinalCltvExpiry",value:this.paymentDecoded.minFinalCltvExpiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",getInputs:[{placeholder:"Amount (Sats)",inputType:c.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,Z.s)(1)).subscribe(o=>{o&&(this.paymentDecoded.amount=o[0].inputValue,this.store.dispatch((0,j.Fd)({payload:{invoice:this.paymentRequest,amountMsat:1e3*o[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(n){this.paymentRequest=n,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,Z.s)(1)).subscribe(a=>{this.paymentDecoded=a,this.paymentDecoded.amount?this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.amount,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[4])).subscribe({next:o=>{this.convertedCurrency=o,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,c.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:o=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount?this.paymentDecoded.amount:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}openSendPaymentModal(){this.store.dispatch((0,k.xO)({payload:{data:{component:He}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}is_group(n,a){return a.parts&&a.parts.length>1}onPaymentClick(n){n.paymentHash&&""!==n.paymentHash.trim()?this.dataService.decodePayments(n.paymentHash).pipe((0,Z.s)(1)).subscribe({next:a=>{setTimeout(()=>{this.showPaymentView(n,a.length&&a.length>0?a[0]:[])},0)},error:a=>{this.showPaymentView(n,[])}}):this.showPaymentView(n,[])}showPaymentView(n,a){this.store.dispatch((0,k.xO)({payload:{data:{sentPaymentInfo:a,payment:n,component:Je}}}))}onPartClick(n,a){a.paymentHash&&""!==a.paymentHash.trim()?this.dataService.decodePayments(a.paymentHash).pipe((0,Z.s)(1)).subscribe({next:o=>{setTimeout(()=>{this.showPartView(n,a,o.length&&o.length>0?o[0]:[])},0)},error:o=>{this.showPartView(n,a,[])}}):this.showPartView(n,a,[])}showPartView(n,a,o){const l=[[{key:"paymentHash",value:a.paymentHash,title:"Payment Hash",width:100,type:c.UN.STRING}],[{key:"paymentPreimage",value:a.paymentPreimage,title:"Payment Preimage",width:100,type:c.UN.STRING}],[{key:"toChannelId",value:n.toChannelId,title:"Channel",width:100,type:c.UN.STRING}],[{key:"id",value:n.id,title:"Part ID",width:50,type:c.UN.STRING},{key:"timestamp",value:n.timestamp,title:"Time",width:50,type:c.UN.DATE_TIME}],[{key:"amount",value:n.amount,title:"Amount (Sats)",width:50,type:c.UN.NUMBER},{key:"feesPaid",value:n.feesPaid,title:"Fee (Sats)",width:50,type:c.UN.NUMBER}]];o&&o.length>0&&o[0].paymentRequest&&o[0].paymentRequest.description&&""!==o[0].paymentRequest.description&&l.splice(3,0,[{key:"description",value:o[0].paymentRequest.description,title:"Description",width:100,type:c.UN.STRING}]),this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Payment Part Information",message:l}}}))}onPageChange(n){this.store.dispatch((0,j.CK)({payload:{count:this.pageSize,skip:n.pageIndex*n.pageSize}}))}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const n=JSON.parse(JSON.stringify(this.payments.data)),a=n?.reduce((o,l)=>(l.paymentHash&&""!==l.paymentHash.trim()&&(o=""===o?l.paymentHash:o+","+l.paymentHash),o),"");this.dataService.decodePayments(a).pipe((0,g.Q)(this.unSubs[5])).subscribe(o=>{o.forEach((m,u)=>{m.length>0&&m[0].paymentRequest&&m[0].paymentRequest.description&&""!==m[0].paymentRequest.description&&(n[u].description=m[0].paymentRequest.description)});const l=n?.reduce((m,u)=>m.concat(u),[]);this.commonService.downloadFile(l,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(lt.H),t.rXU(d.QX),t.rXU(nt.u),t.rXU(d.vh),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-lightning-payments"]],viewQuery:function(a,o){if(1&a&&(t.GBs(qe,5),t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first),t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["fxLayout","column","fxFlex","colWidth","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","colWidth",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","colWidth","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","firstPartTimestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","id"],["matColumnDef","recipientNodeId"],["matColumnDef","recipientNodeAlias"],["matColumnDef","description"],["matColumnDef","paymentHash"],["matColumnDef","paymentPreimage"],["matColumnDef","recipientAmount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_firstPartTimestamp"],["matColumnDef","group_id"],["matColumnDef","group_recipientNodeId"],["matColumnDef","group_recipientNodeAlias"],["matColumnDef","group_recipientAmount"],["matColumnDef","group_description"],["matColumnDef","group_paymentHash"],["matColumnDef","group_paymentPreimage"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"part-row-span"],["fxLayoutAlign","start center","class","part-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","part-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"part-row-span"],["fxLayoutAlign","end center","class","part-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"part-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-part-expand",3,"click"],["class","part-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"part-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-part-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(a,o){1&a&&(t.j41(0,"div",3),t.DNE(1,on,14,3,"form",4)(2,sn,3,0,"div",5)(3,ri,74,21,"div",6),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf","home"===o.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===o.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===o.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.qT,f.me,f.BC,f.cb,f.YS,f.vS,f.cV,D.aY,N.$z,Y.fg,y.rl,y.nJ,y.MV,y.TL,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,w.iy,B.ZF,B.Ld,d.QX,d.vh],styles:[".mat-column-group_actions[_ngcontent-%COMP%] .part-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .part-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-part-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%] .part-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.part-row-span[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_firstPartTimestamp[_ngcontent-%COMP%]{min-width:11rem}"]}))}return i(),s})();var it=C(6114);function ci(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function mi(i,s){1&i&&(t.j41(0,"span",29),t.EFF(1,"= "),t.k0s())}function pi(i,s){if(1&i&&(t.j41(0,"span",30),t.nrm(1,"fa-icon",31),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function ui(i,s){if(1&i&&t.nrm(0,"span",32),2&i){const e=t.XpG();t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function di(i,s){if(1&i&&(t.j41(0,"mat-option",33),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&i){const e=s.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(t.bMT(2,2,e))}}function hi(i,s){if(1&i&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.invoiceError)}}function fi(i,s){if(1&i&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.DNE(2,hi,2,1,"span",11),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.invoiceError)}}let _i=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.dialogRef=n,this.data=a,this.store=o,this.decimalPipe=l,this.commonService=m,this.actions=u,this.faExclamationTriangle=E.zpE,this.convertedCurrency=null,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=c.md,this.timeUnitEnum=c.F7,this.timeUnits=c.SY,this.selTimeUnit=c.F7.SECS,this.invoiceError="",this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.information=n}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,X.p)(n=>n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(n=>{n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&"CreateInvoice"===n.payload.action&&(n.payload.status===c.wn.ERROR&&(this.invoiceError=n.payload.message),n.payload.status===c.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(n){if(this.invoiceError="",!this.description)return!0;let a=this.expiry?this.expiry:c.It;this.expiry&&this.selTimeUnit!==c.F7.SECS&&(a=this.commonService.convertTime(this.expiry,this.selTimeUnit,c.F7.SECS));let o=null;o=this.invoiceValue?{description:this.description,expireIn:a,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:a},this.store.dispatch((0,j.iO)({payload:o}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=c.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:n=>{this.convertedCurrency=n,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,c.k.OTHER)+" "+this.convertedCurrency.unit},error:n=>{this.invoiceValueHint="Conversion Error: "+n}}))}onTimeUnitChange(n){this.expiry&&this.selTimeUnit!==n.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,n.value)),this.selTimeUnit=n.value}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh),t.rXU(I.il),t.rXU(d.QX),t.rXU($.h),t.rXU(K.En))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-create-invoices"]],standalone:!1,decls:46,vars:19,consts:[["addInvoiceForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","name","description","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","type","number","name","exp",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","26"],["name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Create Invoice"),t.k0s()(),t.j41(6,"button",6),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),t.EFF(13,"Description"),t.k0s(),t.j41(14,"input",10),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.description,u)||(o.description=u),r.Njj(u)}),t.k0s(),t.DNE(15,ci,2,0,"mat-error",11),t.k0s(),t.j41(16,"div",12)(17,"mat-form-field",13)(18,"mat-label"),t.EFF(19,"Amount"),t.k0s(),t.j41(20,"input",14),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.invoiceValue,u)||(o.invoiceValue=u),r.Njj(u)}),t.bIt("keyup",function(){return r.eBV(l),r.Njj(o.onInvoiceValueChange())}),t.k0s(),t.j41(21,"span",15),t.EFF(22,"Sats "),t.k0s(),t.j41(23,"mat-hint",16),t.DNE(24,mi,2,0,"span",17)(25,pi,2,1,"span",18)(26,ui,1,1,"span",19),t.EFF(27),t.k0s()(),t.j41(28,"mat-form-field",20)(29,"mat-label"),t.EFF(30,"Expiry"),t.k0s(),t.j41(31,"input",21),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.expiry,u)||(o.expiry=u),r.Njj(u)}),t.k0s(),t.j41(32,"span",15),t.EFF(33),t.nI1(34,"titlecase"),t.k0s()(),t.j41(35,"mat-form-field",22)(36,"mat-label"),t.EFF(37,"Time Unit"),t.k0s(),t.j41(38,"mat-select",23),t.bIt("selectionChange",function(u){return r.eBV(l),r.Njj(o.onTimeUnitChange(u))}),t.DNE(39,di,3,4,"mat-option",24),t.k0s()()(),t.DNE(40,fi,3,2,"div",25),t.j41(41,"div",26)(42,"button",27),t.bIt("click",function(){return r.eBV(l),r.Njj(o.resetData())}),t.EFF(43,"Clear Field"),t.k0s(),t.j41(44,"button",28),t.bIt("click",function(){r.eBV(l);const u=t.sdS(10);return r.Njj(o.onAddInvoice(u))}),t.EFF(45,"Create Invoice"),t.k0s()()()()()()}2&a&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(8),t.R50("ngModel",o.description),t.R7$(),t.Y8G("ngIf",!o.description),t.R7$(5),t.Y8G("step",100)("min",1),t.R50("ngModel",o.invoiceValue),t.R7$(4),t.Y8G("ngIf",""!==o.invoiceValueHint),t.R7$(),t.Y8G("ngIf",o.convertedCurrency&&"FA"===o.convertedCurrency.iconType&&""!==o.invoiceValueHint),t.R7$(),t.Y8G("ngIf",o.convertedCurrency&&"SVG"===o.convertedCurrency.iconType&&""!==o.invoiceValueHint),t.R7$(),t.SpI(" ",o.invoiceValueHint," "),t.R7$(4),t.Y8G("step",o.selTimeUnit===o.timeUnitEnum.SECS?300:o.selTimeUnit===o.timeUnitEnum.MINS?10:o.selTimeUnit===o.timeUnitEnum.HOURS?2:1)("min",1),t.R50("ngModel",o.expiry),t.R7$(2),t.SpI("",t.bMT(34,17,o.selTimeUnit)," "),t.R7$(5),t.Y8G("value",o.selTimeUnit),t.R7$(),t.Y8G("ngForOf",o.timeUnits),t.R7$(),t.Y8G("ngIf",""!==o.invoiceError))},dependencies:[d.Sq,d.bT,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.vS,f.cV,D.aY,V.tx,N.$z,x.m2,x.MM,Y.fg,y.rl,y.nJ,y.MV,y.TL,y.yw,_.DJ,_.sA,_.UI,R.VO,z.wT,et.N,it.V,d.PV],encapsulation:2}))}return i(),s})();var gi=C(6439);const Ci=()=>["all"],yi=i=>({"error-border":i}),bi=()=>["no_invoice"],ft=i=>({"mr-0":i}),_t=i=>({width:i}),Fi=i=>({"display-none":i});function Ei(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Description is required."),t.k0s())}function xi(i,s){1&i&&(t.j41(0,"span",21),t.EFF(1,"= "),t.k0s())}function Li(i,s){if(1&i&&(t.j41(0,"span",22),t.nrm(1,"fa-icon",23),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.convertedCurrency.symbol)}}function vi(i,s){if(1&i&&t.nrm(0,"span",24),2&i){const e=t.XpG(2);t.Y8G("innerHTML",e.convertedCurrency.symbol,t.npT)}}function Si(i,s){if(1&i){const e=t.RV6();t.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),t.EFF(4,"Description"),t.k0s(),t.j41(5,"input",9),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.description,a)||(o.description=a),r.Njj(a)}),t.k0s(),t.DNE(6,Ei,2,0,"mat-error",10),t.k0s(),t.j41(7,"mat-form-field",11)(8,"mat-label"),t.EFF(9,"Amount"),t.k0s(),t.j41(10,"input",12,1),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.invoiceValue,a)||(o.invoiceValue=a),r.Njj(a)}),t.bIt("keyup",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onInvoiceValueChange())}),t.k0s(),t.j41(12,"span",13),t.EFF(13,"Sats "),t.k0s(),t.j41(14,"mat-hint",14),t.DNE(15,xi,2,0,"span",15)(16,Li,2,1,"span",16)(17,vi,1,1,"span",17),t.EFF(18),t.k0s()(),t.j41(19,"div",18)(20,"button",19),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.resetData())}),t.EFF(21,"Clear Field"),t.k0s(),t.j41(22,"button",20),t.bIt("click",function(){r.eBV(e);const a=t.sdS(1),o=t.XpG();return r.Njj(o.onAddInvoice(a))}),t.EFF(23,"Create Invoice"),t.k0s()()()}if(2&i){const e=t.XpG();t.R7$(5),t.R50("ngModel",e.description),t.R7$(),t.Y8G("ngIf",!e.description),t.R7$(4),t.Y8G("step",100)("min",1),t.R50("ngModel",e.invoiceValue),t.R7$(5),t.Y8G("ngIf",""!==e.invoiceValueHint),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),t.R7$(),t.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),t.R7$(),t.SpI(" ",e.invoiceValueHint," ")}}function Ri(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",25)(1,"button",26),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.openCreateInvoiceModal())}),t.EFF(2,"Create Invoice"),t.k0s()()}}function ki(i,s){if(1&i&&(t.j41(0,"mat-option",63),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function Ii(i,s){1&i&&t.nrm(0,"mat-progress-bar",64)}function Ti(i,s){1&i&&t.nrm(0,"th",65)}function wi(i,s){if(1&i&&t.nrm(0,"span",70),2&i){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ft,e.screenSize===e.screenSizeEnum.XS))}}function ji(i,s){if(1&i&&t.nrm(0,"span",71),2&i){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ft,e.screenSize===e.screenSizeEnum.XS))}}function Di(i,s){if(1&i&&t.nrm(0,"span",72),2&i){const e=t.XpG(3);t.Y8G("ngClass",t.eq3(1,ft,e.screenSize===e.screenSizeEnum.XS))}}function Gi(i,s){if(1&i&&(t.j41(0,"td",66),t.DNE(1,wi,1,3,"span",67)(2,ji,1,3,"span",68)(3,Di,1,3,"span",69),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf","received"===(null==e?null:e.status)),t.R7$(),t.Y8G("ngIf","unpaid"===(null==e?null:e.status)),t.R7$(),t.Y8G("ngIf",!(null!=e&&e.status)||"expired"===(null==e?null:e.status)||"unknown"===(null==e?null:e.status))}}function Pi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Date Created"),t.k0s())}function Ai(i,s){if(1&i&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Ni(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Date Expiry"),t.k0s())}function Bi(i,s){if(1&i&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.expiresAt),"dd/MMM/y HH:mm")||"-")}}function Mi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Date Settled"),t.k0s())}function $i(i,s){if(1&i&&(t.j41(0,"td",66),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.receivedAt),"dd/MMM/y HH:mm")||"-")}}function Vi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Node ID"),t.k0s())}function Oi(i,s){if(1&i&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,_t,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Hi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Description"),t.k0s())}function Yi(i,s){if(1&i&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,_t,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.description)}}function Xi(i,s){1&i&&(t.j41(0,"th",73),t.EFF(1,"Payment Hash"),t.k0s())}function Ui(i,s){if(1&i&&(t.j41(0,"td",66)(1,"div",74)(2,"span",75),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,_t,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function zi(i,s){1&i&&(t.j41(0,"th",76),t.EFF(1,"Amount (Sats)"),t.k0s())}function Ji(i,s){if(1&i&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(null!=e&&e.amount?t.i5U(3,1,null==e?null:e.amount,"1.0-0"):"-")}}function qi(i,s){1&i&&(t.j41(0,"th",78),t.EFF(1," Amount Settled (Sats)"),t.k0s())}function Qi(i,s){if(1&i&&(t.j41(0,"td",66)(1,"span",77),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(null!=e&&e.amountSettled?t.i5U(3,1,null==e?null:e.amountSettled,"1.0-0"):"-")}}function Zi(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",79)(1,"div",80)(2,"mat-select",81),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",82),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function Wi(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",83)(1,"div",80)(2,"mat-select",84),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",82),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onInvoiceClick(a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",82),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onRefreshInvoice(a))}),t.EFF(7,"Refresh"),t.k0s()()()()}}function Ki(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No invoice available."),t.k0s())}function ta(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting invoices..."),t.k0s())}function ea(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function na(i,s){if(1&i&&(t.j41(0,"td",85),t.DNE(1,Ki,2,0,"p",10)(2,ta,2,0,"p",10)(3,ea,2,1,"p",10),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function ia(i,s){if(1&i&&t.nrm(0,"tr",86),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Fi,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function aa(i,s){1&i&&t.nrm(0,"tr",87)}function oa(i,s){1&i&&t.nrm(0,"tr",88)}function sa(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",27)(1,"div",28)(2,"div",29),t.nrm(3,"fa-icon",30),t.j41(4,"span",31),t.EFF(5,"Invoices History"),t.k0s()(),t.j41(6,"div",32)(7,"mat-form-field",33)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",34),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilterBy,a)||(o.selFilterBy=a),r.Njj(a)}),t.bIt("selectionChange",function(){r.eBV(e);const a=t.XpG();return a.selFilter="",r.Njj(a.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,ki,2,2,"mat-option",35),t.k0s()()(),t.j41(13,"mat-form-field",33)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",36),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilter,a)||(o.selFilter=a),r.Njj(a)}),t.bIt("input",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())})("keyup",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())}),t.k0s()()()(),t.j41(17,"div",37),t.DNE(18,Ii,1,0,"mat-progress-bar",38),t.j41(19,"table",39,2),t.qex(21,40),t.DNE(22,Ti,1,0,"th",41)(23,Gi,4,3,"td",42),t.bVm(),t.qex(24,43),t.DNE(25,Pi,2,0,"th",44)(26,Ai,3,4,"td",42),t.bVm(),t.qex(27,45),t.DNE(28,Ni,2,0,"th",44)(29,Bi,3,4,"td",42),t.bVm(),t.qex(30,46),t.DNE(31,Mi,2,0,"th",44)(32,$i,3,4,"td",42),t.bVm(),t.qex(33,47),t.DNE(34,Vi,2,0,"th",44)(35,Oi,4,4,"td",42),t.bVm(),t.qex(36,48),t.DNE(37,Hi,2,0,"th",44)(38,Yi,4,4,"td",42),t.bVm(),t.qex(39,49),t.DNE(40,Xi,2,0,"th",44)(41,Ui,4,4,"td",42),t.bVm(),t.qex(42,50),t.DNE(43,zi,2,0,"th",51)(44,Ji,4,4,"td",42),t.bVm(),t.qex(45,52),t.DNE(46,qi,2,0,"th",53)(47,Qi,4,4,"td",42),t.bVm(),t.qex(48,54),t.DNE(49,Zi,6,0,"th",55)(50,Wi,8,0,"td",56),t.bVm(),t.qex(51,57),t.DNE(52,na,4,3,"td",58),t.bVm(),t.DNE(53,ia,1,3,"tr",59)(54,aa,1,0,"tr",60)(55,oa,1,0,"tr",61),t.k0s()(),t.nrm(56,"mat-paginator",62),t.k0s()}if(2&i){const e=t.XpG();t.R7$(3),t.Y8G("icon",e.faHistory),t.R7$(7),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Ci).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter),t.R7$(2),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.invoices)("ngClass",t.eq3(16,yi,""!==e.errorMessage)),t.R7$(34),t.Y8G("matFooterRowDef",t.lJ4(18,bi)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Tt=(()=>{var i;class s{constructor(n,a,o,l,m,u,T){this.logger=n,this.store=a,this.decimalPipe=o,this.commonService=l,this.datePipe=m,this.actions=u,this.camelCaseWithSpaces=T,this.calledFrom="transactions",this.faHistory=E.Int,this.convertedCurrency=null,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:c.md,sortBy:"expiresAt",sortOrder:c.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new p.I6([]),this.invoiceJSONArr=[],this.information={},this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.information=n}),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,j.Do)({payload:{count:1e6,skip:0}}))),this.logger.info(this.displayedColumns)}),this.store.select(b.rN).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=n.invoices&&n.invoices.length>0?n.invoices:[],this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(n)}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,X.p)(n=>n.type===c.Uu.SET_LOOKUP_ECL||n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(n=>{n.type===c.Uu.SET_LOOKUP_ECL&&this.invoiceJSONArr&&this.sort&&this.paginator&&n.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(n.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,k.xO)({payload:{data:{pageSize:this.pageSize,component:_i}}}))}onAddInvoice(n){if(!this.description)return!0;const a=this.expiry?this.expiry:c.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue;let o=null;o=this.invoiceValue?{description:this.description,expireIn:a,amountMsat:1e3*this.invoiceValue}:{description:this.description,expireIn:a},this.store.dispatch((0,j.iO)({payload:o})),this.resetData()}onInvoiceClick(n){this.store.dispatch((0,k.xO)({payload:{data:{invoice:n,newlyAdded:!1,component:gi.Z}}}))}onRefreshInvoice(n){this.store.dispatch((0,j.Yi)({payload:n.paymentHash}))}updateInvoicesData(n){this.invoiceJSONArr=this.invoiceJSONArr?.map(a=>a.paymentHash===n.paymentHash?n:a)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.invoices.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=(n.timestamp?this.datePipe.transform(new Date(1e3*n.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"status":o=n?.status&&"expired"!==n?.status&&"unknown"!==n?.status?n.status?.toLowerCase():"expired/unknown";break;case"timestamp":case"expiresAt":case"receivedAt":o=this.datePipe.transform(new Date(1e3*(n[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amount":case"amountSettled":o=n[this.selFilterBy]?.toString()||"-";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===o.indexOf(a):o.includes(a)}}loadInvoicesTable(n){this.invoices=new p.I6(n?[...n]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.invoices.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}resetData(){this.description="",this.invoiceValue=null,this.expiry=null,this.invoiceValueHint=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,c.BQ.SATS,c.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[5])).subscribe({next:n=>{this.convertedCurrency=n,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,c.k.OTHER)+" "+this.convertedCurrency.unit},error:n=>{this.invoiceValueHint="Conversion Error: "+n}}))}onPageChange(n){this.store.dispatch((0,j.Do)({payload:{count:this.pageSize,skip:n.pageIndex*n.pageSize}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(d.QX),t.rXU($.h),t.rXU(d.vh),t.rXU(K.En),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-lightning-invoices"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["invcVal","ngModel"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","tabindex","2","name","description","required","true",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","3","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","expiresAt"],["matColumnDef","receivedAt"],["matColumnDef","nodeId"],["matColumnDef","description"],["matColumnDef","paymentHash"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amountSettled"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","p1-3",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Received","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Expired/Unknown","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Received","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Expired/Unknown","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"p1-3"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){1&a&&(t.j41(0,"div",3),t.DNE(1,Si,24,9,"form",4)(2,Ri,3,0,"div",5)(3,sa,57,19,"div",6),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf","home"===o.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===o.calledFrom),t.R7$(),t.Y8G("ngIf","transactions"===o.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.vS,f.cV,D.aY,N.$z,Y.fg,y.rl,y.nJ,y.MV,y.TL,y.yw,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,it.V,d.QX,d.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return i(),s})();const wt=i=>({"dashboard-card-content":!0,"error-border":i}),la=i=>({"p-0":i});function ra(i,s){if(1&i&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&i){t.XpG();const e=t.sdS(11);t.Y8G("matMenuTriggerFor",e)}}function ca(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=r.eBV(e).index,o=t.XpG().$implicit,l=t.XpG(2);return r.Njj(l.onNavigateTo(o.links[a]))}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}function ma(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){r.eBV(e);const a=t.XpG(3);return r.Njj(a.onsortChannelsBy())}),t.EFF(1),t.k0s()}if(2&i){const e=t.XpG(3);t.R7$(),t.SpI("Sort By ","Balance Score"===e.sortField?"Capacity":"Balance Score")}}function pa(i,s){1&i&&t.nrm(0,"mat-progress-bar",30)}function ua(i,s){if(1&i&&t.nrm(0,"rtl-ecl-node-info",31),2&i){const e=t.XpG(3);t.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function da(i,s){if(1&i&&t.nrm(0,"rtl-ecl-balances-info",32),2&i){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function ha(i,s){if(1&i&&t.nrm(0,"rtl-ecl-channel-capacity-info",33),2&i){const e=t.XpG(3);t.Y8G("sortBy",e.sortField)("channelBalances",e.channelBalances)("allChannels",e.allChannelsCapacity)("errorMessage",e.errorMessages[2])}}function fa(i,s){if(1&i&&t.nrm(0,"rtl-ecl-fee-info",34),2&i){const e=t.XpG(3);t.Y8G("fees",e.fees)("errorMessage",e.errorMessages[1])}}function _a(i,s){if(1&i&&t.nrm(0,"rtl-ecl-channel-status-info",35),2&i){const e=t.XpG(3);t.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[2])}}function ga(i,s){1&i&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function Ca(i,s){if(1&i&&(t.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),t.nrm(5,"fa-icon",14),t.j41(6,"span"),t.EFF(7),t.k0s()(),t.j41(8,"div"),t.DNE(9,ra,3,1,"button",15),t.j41(10,"mat-menu",16,1),t.DNE(12,ca,2,1,"button",17)(13,ma,2,1,"button",18),t.k0s()()()(),t.j41(14,"mat-card-content",19),t.DNE(15,pa,1,0,"mat-progress-bar",20),t.j41(16,"div",21),t.DNE(17,ua,1,2,"rtl-ecl-node-info",22)(18,da,1,2,"rtl-ecl-balances-info",23)(19,ha,1,4,"rtl-ecl-channel-capacity-info",24)(20,fa,1,2,"rtl-ecl-fee-info",25)(21,_a,1,2,"rtl-ecl-channel-status-info",26)(22,ga,2,0,"h3",27),t.k0s()()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("colspan",e.cols)("rowspan",e.rows),t.R7$(5),t.Y8G("icon",e.icon),t.R7$(2),t.JRh(e.title),t.R7$(2),t.Y8G("ngIf",e.links[0]),t.R7$(3),t.Y8G("ngForOf",e.goToOptions),t.R7$(),t.Y8G("ngIf","capacity"===e.id),t.R7$(),t.Y8G("fxFlex",t.mNQ("capacity"===e.id?90:70))("ngClass",t.eq3(17,wt,"node"===e.id&&n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.ERROR||"balance"===e.id&&(n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.ERROR||n.apiCallStatusOCBal.status===n.apiCallStatusEnum.ERROR)||("capacity"===e.id||"status"===e.id)&&n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.ERROR||"fee"===e.id&&n.apiCallStatusFees.status===n.apiCallStatusEnum.ERROR)),t.R7$(),t.Y8G("ngIf","node"===e.id&&n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.INITIATED||"balance"===e.id&&(n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.INITIATED||n.apiCallStatusOCBal.status===n.apiCallStatusEnum.INITIATED)||("capacity"===e.id||"status"===e.id)&&n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.INITIATED||"fee"===e.id&&n.apiCallStatusFees.status===n.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngSwitch",e.id),t.R7$(),t.Y8G("ngSwitchCase","node"),t.R7$(),t.Y8G("ngSwitchCase","balance"),t.R7$(),t.Y8G("ngSwitchCase","capacity"),t.R7$(),t.Y8G("ngSwitchCase","fee"),t.R7$(),t.Y8G("ngSwitchCase","status")}}function ya(i,s){if(1&i&&(t.j41(0,"div",5)(1,"div",6),t.nrm(2,"fa-icon",7),t.j41(3,"span",8),t.EFF(4),t.k0s()(),t.j41(5,"mat-grid-list",9),t.DNE(6,Ca,23,19,"mat-grid-tile",10),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.Y8G("icon",e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.ERROR?e.faFrown:e.faSmile),t.R7$(2),t.JRh(e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.COMPLETED?"Welcome "+e.information.alias+"! Your node is up and running.":e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),t.R7$(),t.Y8G("rowHeight",e.operatorCardHeight),t.R7$(),t.Y8G("ngForOf",e.operatorCards)}}function ba(i,s){if(1&i&&(t.j41(0,"button",28)(1,"mat-icon"),t.EFF(2,"more_vert"),t.k0s()()),2&i){t.XpG();const e=t.sdS(9);t.Y8G("matMenuTriggerFor",e)}}function Fa(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=r.eBV(e).index,o=t.XpG(2).$implicit,l=t.XpG(2);return r.Njj(l.onNavigateTo(o.links[a]))}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}function Ea(i,s){if(1&i&&(t.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),t.nrm(3,"fa-icon",14),t.j41(4,"span"),t.EFF(5),t.k0s()(),t.j41(6,"div"),t.DNE(7,ba,3,1,"button",15),t.j41(8,"mat-menu",16,2),t.DNE(10,Fa,2,1,"button",17),t.k0s()()()()),2&i){const e=t.XpG().$implicit;t.R7$(3),t.Y8G("icon",e.icon),t.R7$(2),t.JRh(e.title),t.R7$(2),t.Y8G("ngIf",e.links[0]),t.R7$(3),t.Y8G("ngForOf",e.goToOptions)}}function xa(i,s){1&i&&t.nrm(0,"mat-progress-bar",30)}function La(i,s){if(1&i&&t.nrm(0,"rtl-ecl-node-info",45),2&i){const e=t.XpG(3);t.Y8G("information",e.information)}}function va(i,s){if(1&i&&t.nrm(0,"rtl-ecl-balances-info",32),2&i){const e=t.XpG(3);t.Y8G("balances",e.balances)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[3])}}function Sa(i,s){if(1&i&&t.nrm(0,"rtl-ecl-channel-liquidity-info",46),2&i){const e=t.XpG(3);t.Y8G("totalLiquidity",e.totalInboundLiquidity)("allChannels",e.allInboundChannels)("errorMessage",e.errorMessages[2])}}function Ra(i,s){if(1&i&&t.nrm(0,"rtl-ecl-channel-liquidity-info",47),2&i){const e=t.XpG(3);t.Y8G("totalLiquidity",e.totalOutboundLiquidity)("allChannels",e.allOutboundChannels)("errorMessage",e.errorMessages[2])}}function ka(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",29),t.bIt("click",function(){const a=r.eBV(e).index,o=t.XpG(2).$implicit,l=t.XpG(2);return r.Njj(l.onNavigateTo(o.links[a]))}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}function Ia(i,s){if(1&i&&(t.j41(0,"span",48)(1,"mat-tab-group",49)(2,"mat-tab",50),t.nrm(3,"rtl-ecl-lightning-invoices",51),t.k0s(),t.j41(4,"mat-tab",52),t.nrm(5,"rtl-ecl-lightning-payments",53),t.k0s()(),t.j41(6,"div",54)(7,"button",28)(8,"mat-icon"),t.EFF(9,"more_vert"),t.k0s()(),t.j41(10,"mat-menu",16,3),t.DNE(12,ka,2,1,"button",17),t.k0s()()()),2&i){const e=t.sdS(11),n=t.XpG().$implicit;t.R7$(7),t.Y8G("matMenuTriggerFor",e),t.R7$(5),t.Y8G("ngForOf",n.goToOptions)}}function Ta(i,s){1&i&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find information!"),t.k0s())}function wa(i,s){if(1&i&&(t.j41(0,"mat-grid-tile",11)(1,"mat-card",38),t.DNE(2,Ea,11,4,"mat-card-header",39),t.j41(3,"mat-card-content",40),t.DNE(4,xa,1,0,"mat-progress-bar",20),t.j41(5,"div",21),t.DNE(6,La,1,1,"rtl-ecl-node-info",41)(7,va,1,2,"rtl-ecl-balances-info",23)(8,Sa,1,3,"rtl-ecl-channel-liquidity-info",42)(9,Ra,1,3,"rtl-ecl-channel-liquidity-info",43)(10,Ia,13,2,"span",44)(11,Ta,2,0,"h3",27),t.k0s()()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("colspan",e.cols)("rowspan",e.rows),t.R7$(),t.Y8G("ngClass",t.eq3(14,la,"transactions"===e.id)),t.R7$(),t.Y8G("ngIf","transactions"!==e.id),t.R7$(),t.Y8G("fxFlex",t.mNQ("transactions"===e.id?100:"balance"===e.id?70:90))("ngClass",t.eq3(16,wt,"node"===e.id&&n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.ERROR||"balance"===e.id&&(n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.ERROR||n.apiCallStatusOCBal.status===n.apiCallStatusEnum.ERROR)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.ERROR)),t.R7$(),t.Y8G("ngIf","node"===e.id&&n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.INITIATED||"balance"===e.id&&(n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.INITIATED||n.apiCallStatusOCBal.status===n.apiCallStatusEnum.INITIATED)||("inboundLiq"===e.id||"outboundLiq"===e.id)&&n.apiCallStatusAllChannels.status===n.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngSwitch",e.id),t.R7$(),t.Y8G("ngSwitchCase","node"),t.R7$(),t.Y8G("ngSwitchCase","balance"),t.R7$(),t.Y8G("ngSwitchCase","inboundLiq"),t.R7$(),t.Y8G("ngSwitchCase","outboundLiq"),t.R7$(),t.Y8G("ngSwitchCase","transactions")}}function ja(i,s){if(1&i&&(t.j41(0,"div",36),t.nrm(1,"fa-icon",7),t.j41(2,"span",8),t.EFF(3),t.k0s()(),t.j41(4,"mat-grid-list",37),t.DNE(5,wa,12,18,"mat-grid-tile",10),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faSmile),t.R7$(2),t.SpI("Welcome ",e.information.alias,"! Your node is up and running."),t.R7$(),t.Y8G("rowHeight",e.merchantCardHeight),t.R7$(),t.Y8G("ngForOf",e.merchantCards)}}let Da=(()=>{var i;class s{constructor(n,a,o,l){this.logger=n,this.store=a,this.commonService=o,this.router=l,this.faSmile=St.Qpm,this.faFrown=St.wB1,this.faAngleDoubleDown=E.WxX,this.faAngleDoubleUp=E.$sC,this.faChartPie=E.W1p,this.faBolt=E.zm_,this.faServer=E.D6w,this.faNetworkWired=E.eGi,this.userPersonaEnum=c.HW,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.information={},this.channels=[],this.onchainBalance={},this.balances={onchain:-1,lightning:-1,total:0},this.channelsStatus={},this.allChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.errorMessages=["","","",""],this.apiCallStatusNodeInfo={status:c.wn.COMPLETED},this.apiCallStatusFees={status:c.wn.COMPLETED},this.apiCallStatusOCBal={status:c.wn.COMPLETED},this.apiCallStatusAllChannels={status:c.wn.COMPLETED},this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===c.f7.XS?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}]):this.screenSize===c.f7.SM||this.screenSize===c.f7.MD?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}]):(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/inactive"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}])}ngOnInit(){this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n}),this.store.select(b.b_).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=n.apiCallStatus,this.apiCallStatusNodeInfo.status===c.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.information=n.information}),this.store.select(b.oR).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.errorMessages[1]="",this.apiCallStatusFees=n.apiCallStatus,this.apiCallStatusFees.status===c.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=n.fees}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[3]),(0,pt.E)(this.store.select(b.DW))).subscribe(([n,a])=>{this.errorMessages[2]="",this.errorMessages[3]="",this.apiCallStatusAllChannels=n.apiCallStatus,this.apiCallStatusOCBal=a.apiCallStatus,this.apiCallStatusAllChannels.status===c.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusAllChannels.message?JSON.stringify(this.apiCallStatusAllChannels.message):this.apiCallStatusAllChannels.message?this.apiCallStatusAllChannels.message:""),this.apiCallStatusOCBal.status===c.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusOCBal.message?JSON.stringify(this.apiCallStatusOCBal.message):this.apiCallStatusOCBal.message?this.apiCallStatusOCBal.message:""),this.channels=n.activeChannels,this.onchainBalance=a.onchainBalance,this.balances.onchain=this.onchainBalance.total||0,this.balances.lightning=n.lightningBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const o=n.lightningBalance.localBalance?+n.lightningBalance.localBalance:0,l=n.lightningBalance.remoteBalance?+n.lightningBalance.remoteBalance:0;this.channelBalances={localBalance:o,remoteBalance:l,balancedness:+(1-Math.abs((o-l)/(o+l))).toFixed(3)},this.channelsStatus=n.channelsStatus,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels?.filter(u=>(u.toRemote||0)>0),"toRemote"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.channels?.filter(u=>(u.toLocal||0)>0),"toLocal"))),this.channels.forEach(u=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil(u.toRemote||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor(u.toLocal||0)}),this.logger.info(n)})}onNavigateTo(n){this.router.navigateByUrl("/ecl/"+n)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.channels.sort((n,a)=>{const o=+(n.toLocal||0)+ +(n.toRemote||0),l=+(a.toLocal||0)+ +(a.toRemote||0);return o>l?-1:o{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU($.h),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-home"]],standalone:!1,decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100","direction","In",3,"totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100","direction","Out",3,"totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100","direction","In",3,"totalLiquidity","allChannels","errorMessage"],["fxFlex","100","direction","Out",3,"totalLiquidity","allChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],["calledFrom","home",1,"h-100"],["label","Pay"],["calledFrom","home"],[1,"underline"]],template:function(a,o){if(1&a&&t.DNE(0,ya,7,4,"div",4)(1,ja,6,4,"ng-template",null,0,t.C5r),2&a){const l=t.sdS(2);t.Y8G("ngIf",(null==o.selNode?null:o.selNode.settings.userPersona)===o.userPersonaEnum.OPERATOR)("ngIfElse",l)}},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,D.aY,Zt.iY,x.RN,x.m2,x.MM,x.dh,Rt.B_,Rt.NS,ut.An,dt.kk,dt.fb,dt.Cp,H.HM,_.DJ,_.sA,_.UI,S.PW,G.mq,G.T8,ee,ae,le,me,Ce,je,It,Tt],encapsulation:2}))}return i(),s})();const Ga=["form"];function Pa(i,s){if(1&i&&(t.j41(0,"div",30),t.nrm(1,"fa-icon",31),t.j41(2,"span",32)(3,"div"),t.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),t.k0s(),t.j41(5,"span",33)(6,"span"),t.EFF(7),t.k0s(),t.j41(8,"span"),t.EFF(9),t.k0s(),t.j41(10,"span"),t.EFF(11),t.k0s(),t.j41(12,"span"),t.EFF(13),t.k0s(),t.j41(14,"span"),t.EFF(15),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faInfoCircle),t.R7$(6),t.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),t.R7$(2),t.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),t.R7$(2),t.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),t.R7$(2),t.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),t.R7$(2),t.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function Aa(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Bitcoin address is required."),t.k0s())}function Na(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.JRh(e.amountError)}}function Ba(i,s){if(1&i&&(t.j41(0,"mat-option",34),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e)}}function Ma(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Target Confirmation Blocks is required."),t.k0s())}function $a(i,s){if(1&i&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.sendFundError)}}function Va(i,s){if(1&i&&(t.j41(0,"div",35),t.nrm(1,"fa-icon",31),t.DNE(2,$a,2,1,"span",15),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.sendFundError)}}let jt=(()=>{var i;class s{constructor(n,a,o,l,m,u,T){this.dialogRef=n,this.logger=a,this.dataService=o,this.store=l,this.commonService=m,this.decimalPipe=u,this.actions=T,this.faExclamationTriangle=E.zpE,this.faInfoCircle=E.iW_,this.addressTypes=[],this.selectedAddress=c.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.sendFundError="",this.fiatConversion=!1,this.amountUnits=c.A0,this.selAmountUnit=c.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=c.k,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.amountError="Amount is Required.",this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[0])).subscribe({next:n=>{this.recommendedFee=n},error:n=>{this.logger.error(n)}}),this.store.select(J._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.fiatConversion=n.settings.fiatConversion,this.amountUnits=n.settings.currencyUnits,this.logger.info(n)}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,X.p)(n=>n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL||n.type===c.Uu.SEND_ONCHAIN_FUNDS_RES_ECL)).subscribe(n=>{n.type===c.Uu.SEND_ONCHAIN_FUNDS_RES_ECL&&(this.store.dispatch((0,k.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&n.payload.status===c.wn.ERROR&&"SendOnchainFunds"===n.payload.action&&(this.sendFundError=n.payload.message)})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="",this.transaction.amount&&this.selAmountUnit!==c.BQ.SATS?this.commonService.convertCurrency(this.transaction.amount,this.selAmountUnit===this.amountUnits[2]?c.BQ.OTHER:this.selAmountUnit,c.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:n=>{this.transaction.amount=parseInt(n[c.BQ.SATS]),this.selAmountUnit=c.BQ.SATS,this.store.dispatch((0,j.Lz)({payload:this.transaction}))},error:n=>{this.selAmountUnit=c.BQ.SATS,this.amountError="Conversion Error: "+n}}):this.store.dispatch((0,j.Lz)({payload:this.transaction}))}get invalidValues(){return!this.transaction.address||""===this.transaction.address||!this.transaction.amount||this.transaction.amount<=0||!this.transaction.blocks||this.transaction.blocks<=0}resetData(){this.sendFundError="",this.transaction={}}onAmountUnitChange(n){const a=this,o=this.selAmountUnit===this.amountUnits[2]?c.BQ.OTHER:this.selAmountUnit;let l=n.value===this.amountUnits[2]?c.BQ.OTHER:n.value;this.transaction.amount&&this.selAmountUnit!==n.value&&this.commonService.convertCurrency(this.transaction.amount,o,l,this.amountUnits[2],this.fiatConversion).pipe((0,g.Q)(this.unSubs[4])).subscribe({next:m=>{this.selAmountUnit=n.value,a.transaction.amount=+a.decimalPipe.transform(m[l],a.currencyUnitFormats[l]).replace(/,/g,"")},error:m=>{this.amountError="Conversion Error: "+m,this.selAmountUnit=o,l=o}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(A.gP),t.rXU(nt.u),t.rXU(I.il),t.rXU($.h),t.rXU(d.QX),t.rXU(K.En))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain-send-modal"]],viewQuery:function(a,o){if(1&a&&t.GBs(Ga,7),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first)}},standalone:!1,decls:45,vars:16,consts:[["form","ngForm"],["addrs","ngModel"],["amnt","ngModel"],["blocks","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column",1,"padding-gap-x-large"],["fxFlex","100","class","alert alert-info mb-2",4,"ngIf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex","55"],["matInput","","autoFocus","","name","addr","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","amt","type","number","required","",3,"ngModelChange","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","10","fxLayoutAlign","start end"],["required","","name","amountUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","60","fxLayoutAlign","space-between stretch","fxLayout","row wrap"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start center"],["matInput","","type","number","name","blocks","required","true",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit"],["fxFlex","100",1,"alert","alert-info","mb-2"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),t.EFF(5,"Send Payment"),t.k0s()(),t.j41(6,"button",9),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",10),t.DNE(9,Pa,16,6,"div",11),t.j41(10,"form",12,0),t.bIt("submit",function(){return r.eBV(l),r.Njj(o.onSendFunds())})("reset",function(){return r.eBV(l),r.Njj(o.resetData())}),t.j41(12,"mat-form-field",13)(13,"mat-label"),t.EFF(14,"Bitcoin Address"),t.k0s(),t.j41(15,"input",14,1),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.transaction.address,u)||(o.transaction.address=u),r.Njj(u)}),t.k0s(),t.DNE(17,Aa,2,0,"mat-error",15),t.k0s(),t.j41(18,"mat-form-field",16)(19,"mat-label"),t.EFF(20,"Amount"),t.k0s(),t.j41(21,"input",17,2),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.transaction.amount,u)||(o.transaction.amount=u),r.Njj(u)}),t.k0s(),t.j41(23,"span",18),t.EFF(24),t.k0s(),t.DNE(25,Na,2,1,"mat-error",15),t.k0s(),t.j41(26,"mat-form-field",19)(27,"mat-label"),t.EFF(28,"Amount Unit"),t.k0s(),t.j41(29,"mat-select",20),t.bIt("selectionChange",function(u){return r.eBV(l),r.Njj(o.onAmountUnitChange(u))}),t.DNE(30,Ba,2,2,"mat-option",21),t.k0s()(),t.j41(31,"div",22)(32,"mat-form-field",23)(33,"mat-label"),t.EFF(34,"Target Confirmation Blocks"),t.k0s(),t.j41(35,"input",24,3),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.transaction.blocks,u)||(o.transaction.blocks=u),r.Njj(u)}),t.k0s(),t.DNE(37,Ma,2,0,"mat-error",15),t.k0s()(),t.nrm(38,"div",25),t.DNE(39,Va,3,2,"div",26),t.j41(40,"div",27)(41,"button",28),t.EFF(42,"Clear Fields"),t.k0s(),t.j41(43,"button",29),t.EFF(44,"Send Funds"),t.k0s()()()()()()}2&a&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(3),t.Y8G("ngIf",o.recommendedFee.minimumFee),t.R7$(6),t.R50("ngModel",o.transaction.address),t.R7$(2),t.Y8G("ngIf",!o.transaction.address),t.R7$(4),t.Y8G("step",100)("min",0),t.R50("ngModel",o.transaction.amount),t.R7$(3),t.SpI("",o.selAmountUnit," "),t.R7$(),t.Y8G("ngIf",!o.transaction.amount),t.R7$(4),t.Y8G("value",o.selAmountUnit),t.R7$(),t.Y8G("ngForOf",o.amountUnits),t.R7$(5),t.Y8G("step",1)("min",0),t.R50("ngModel",o.transaction.blocks),t.R7$(2),t.Y8G("ngIf",!o.transaction.blocks),t.R7$(2),t.Y8G("ngIf",""!==o.sendFundError))},dependencies:[d.Sq,d.bT,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.vS,f.cV,D.aY,V.tx,N.$z,x.m2,x.MM,Y.fg,y.rl,y.nJ,y.TL,y.yw,_.DJ,_.sA,_.UI,R.VO,z.wT,et.N,it.V],encapsulation:2}))}return i(),s})();var gt=C(5837);const Oa=()=>["all"],Ha=i=>({"error-border":i}),Ya=()=>["no_transaction"],Ct=i=>({width:i}),Xa=i=>({"display-none":i});function Ua(i,s){if(1&i&&(t.j41(0,"mat-option",34),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function za(i,s){1&i&&t.nrm(0,"mat-progress-bar",35)}function Ja(i,s){1&i&&(t.j41(0,"th",36),t.EFF(1,"Date/Time"),t.k0s())}function qa(i,s){if(1&i&&(t.j41(0,"td",37),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.i5U(2,1,1e3*(null==e?null:e.timestamp),"dd/MMM/y HH:mm"))}}function Qa(i,s){1&i&&(t.j41(0,"th",36),t.EFF(1,"Address"),t.k0s())}function Za(i,s){if(1&i&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ct,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.address)}}function Wa(i,s){1&i&&(t.j41(0,"th",36),t.EFF(1,"Blockhash"),t.k0s())}function Ka(i,s){if(1&i&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ct,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.blockHash)}}function to(i,s){1&i&&(t.j41(0,"th",36),t.EFF(1,"Transaction ID"),t.k0s())}function eo(i,s){if(1&i&&(t.j41(0,"td",37)(1,"div",38)(2,"span",39),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ct,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.txid)}}function no(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1,"Amount (Sats)"),t.k0s())}function io(i,s){if(1&i&&(t.j41(0,"span",43),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.amount))}}function ao(i,s){if(1&i&&(t.j41(0,"span",44),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&i){const e=t.XpG().$implicit;t.R7$(),t.SpI("(",t.bMT(2,1,-1*(null==e?null:e.amount)),")")}}function oo(i,s){if(1&i&&(t.j41(0,"td",37),t.DNE(1,io,3,3,"span",41)(2,ao,3,3,"span",42),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf",(null==e?null:e.amount)>0||0===(null==e?null:e.amount)),t.R7$(),t.Y8G("ngIf",(null==e?null:e.amount)<0)}}function so(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1,"Fees (Sats)"),t.k0s())}function lo(i,s){if(1&i&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.fees))}}function ro(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1,"Confirmations"),t.k0s())}function co(i,s){if(1&i&&(t.j41(0,"td",37)(1,"span",43),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.bMT(3,1,null==e?null:e.confirmations)," ")}}function mo(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",48),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function po(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",49)(1,"button",50),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onTransactionClick(o,a))}),t.EFF(2,"View Info"),t.k0s()()}}function uo(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No transaction available."),t.k0s())}function ho(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting transactions..."),t.k0s())}function fo(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function _o(i,s){if(1&i&&(t.j41(0,"td",51),t.DNE(1,uo,2,0,"p",52)(2,ho,2,0,"p",52)(3,fo,2,1,"p",52),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.listTransactions&&e.listTransactions.data)||(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function go(i,s){if(1&i&&t.nrm(0,"tr",53),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,Xa,(null==e.listTransactions?null:e.listTransactions.data)&&(null==e.listTransactions||null==e.listTransactions.data?null:e.listTransactions.data.length)>0))}}function Co(i,s){1&i&&t.nrm(0,"tr",54)}function yo(i,s){1&i&&t.nrm(0,"tr",55)}let bo=(()=>{var i;class s{constructor(n,a,o,l,m){this.logger=n,this.commonService=a,this.store=o,this.datePipe=l,this.camelCaseWithSpaces=m,this.faHistory=E.Int,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transaction",recordsPerPage:c.md,sortBy:"timestamp",sortOrder:c.oi.DESCENDING},this.displayedColumns=[],this.listTransactions=new p.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.totalRecords=0,this.flgInit=!1,this.unSubs=[new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.apiCallStatus.status===c.wn.COMPLETED&&(this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.flgInit||(this.flgInit=!0,this.store.dispatch((0,j.mh)({payload:{count:1e3,skip:0}}))),this.logger.info(this.displayedColumns))}),this.store.select(b.gN).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),n.transactions&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadTransactionsTable(n.transactions),this.logger.info(n)})}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.listTransactions.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=(n.timestamp?this.datePipe.transform(new Date(1e3*n.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"timestamp":o=this.datePipe.transform(new Date(1e3*(n[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}onTransactionClick(n,a){this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"blockHash",value:n.blockHash||n.blockId_opt,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"txid",value:n.txid,title:"Transaction ID",width:100,explorerLink:"tx"}],[{key:"timestamp",value:n.timestamp,title:"Date/Time",width:50,type:c.UN.DATE_TIME},{key:"confirmations",value:n.confirmations,title:"Number of Confirmations",width:50,type:c.UN.NUMBER}],[{key:"fees",value:n.fees,title:"Fees (Sats)",width:50,type:c.UN.NUMBER},{key:"amount",value:n.amount,title:"Amount (Sats)",width:50,type:c.UN.NUMBER}],[{key:"address",value:n.address,title:"Address",width:100,type:c.UN.STRING}]]}}}))}loadTransactionsTable(n){this.listTransactions=new p.I6([...n]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.listTransactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listTransactions)}onPageChange(n){this.store.dispatch((0,j.mh)({payload:{count:this.pageSize,skip:n.pageIndex*n.pageSize}}))}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(d.vh),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain-transaction-history"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Transactions")}])],decls:52,vars:19,consts:[["table",""],["fxLayout","row wrap","fxLayoutAlign","start start","fxLayout.gt-sm","column","fxFlex","100","fxLayoutAlign.gt-sm","start stretch"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","blockHash"],["matColumnDef","txid"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","fees"],["matColumnDef","confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"div",3),t.nrm(3,"fa-icon",4),t.j41(4,"span",5),t.EFF(5,"Transaction History"),t.k0s()(),t.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",8),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,Ua,2,2,"mat-option",9),t.k0s()()(),t.j41(13,"mat-form-field",7)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",10),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,za,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,Ja,2,0,"th",16)(24,qa,3,4,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,Qa,2,0,"th",16)(27,Za,4,4,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,Wa,2,0,"th",16)(30,Ka,4,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,to,2,0,"th",16)(33,eo,4,4,"td",17),t.bVm(),t.qex(34,21),t.DNE(35,no,2,0,"th",22)(36,oo,3,2,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,so,2,0,"th",22)(39,lo,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,ro,2,0,"th",22)(42,co,4,3,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,mo,6,0,"th",26)(45,po,3,0,"td",27),t.bVm(),t.qex(46,28),t.DNE(47,_o,4,3,"td",29),t.bVm(),t.DNE(48,go,1,3,"tr",30)(49,Co,1,0,"tr",31)(50,yo,1,0,"tr",32),t.k0s(),t.nrm(51,"mat-paginator",33),t.k0s()()()}2&a&&(t.R7$(3),t.Y8G("icon",o.faHistory),t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,Oa).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(3),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.listTransactions)("ngClass",t.eq3(16,Ha,""!==o.errorMessage)),t.R7$(28),t.Y8G("matFooterRowDef",t.lJ4(18,Ya)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("showFirstLastButtons",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,D.aY,N.$z,Y.fg,y.rl,y.nJ,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,w.iy,B.ZF,B.Ld,d.QX,d.vh],encapsulation:2}))}return i(),s})();function Fo(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Eo=(()=>{var i;class s{constructor(n,a){this.store=n,this.router=a,this.faExchangeAlt=E._qq,this.faChartPie=E.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}}),this.store.select(J._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(a=>{this.selNode=a}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[2])).subscribe(a=>{this.balances=[{title:"Total Balance",dataValue:a.onchainBalance.total||0},{title:"Confirmed",dataValue:a.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:a.onchainBalance.unconfirmed||0}]})}openSendFundsModal(){this.store.dispatch((0,k.xO)({payload:{data:{component:jt}}}))}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain"]],standalone:!1,decls:23,vars:5,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"On-chain Balance"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),t.nrm(7,"rtl-currency-unit-converter",6),t.k0s()()(),t.j41(8,"div",1),t.nrm(9,"fa-icon",2),t.j41(10,"span",3),t.EFF(11,"On-chain Transactions"),t.k0s()(),t.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),t.DNE(16,Fo,2,4,"div",9),t.k0s(),t.nrm(17,"mat-tab-nav-panel",null,0),t.j41(19,"div",10),t.nrm(20,"router-outlet"),t.k0s(),t.j41(21,"div",10),t.nrm(22,"rtl-ecl-on-chain-transaction-history",11),t.k0s()()()()),2&a){const l=t.sdS(18);t.R7$(),t.Y8G("icon",o.faChartPie),t.R7$(6),t.Y8G("values",o.balances),t.R7$(2),t.Y8G("icon",o.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,G.Bu,G.hQ,G.Ql,gt.f,L.n3,W.Wk,bo],encapsulation:2}))}return i(),s})();var Dt=C(1975);function xo(i,s){if(1&i&&(t.j41(0,"span",10),t.EFF(1,"Channels"),t.k0s()),2&i){const e=t.XpG();t.Y8G("matBadge",t.mNQ(e.activeChannels))}}function Lo(i,s){if(1&i&&(t.j41(0,"span",10),t.EFF(1,"Peers"),t.k0s()),2&i){const e=t.XpG();t.Y8G("matBadge",t.mNQ(e.activePeers))}}let vo=(()=>{var i;class s{constructor(n,a){this.store=n,this.router=a,this.activePeers=0,this.activeChannels=0,this.faUsers=E.gdJ,this.faChartPie=E.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.activeLink=this.links.findIndex(n=>n.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(n=>n instanceof L.gx)).subscribe({next:n=>{this.activeLink=this.links.findIndex(a=>a.link===n.urlAfterRedirects.substring(n.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.activePeers=n.peers&&n.peers.length?n.peers.length:0}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.activeChannels=n.channelsStatus&&n.channelsStatus.active&&n.channelsStatus.active.channels?n.channelsStatus.active.channels:0}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.balances=[{title:"Total Balance",dataValue:n.onchainBalance.total||0},{title:"Confirmed",dataValue:n.onchainBalance.confirmed||0},{title:"Unconfirmed",dataValue:n.onchainBalance.unconfirmed||0}]})}onSelectedTabChange(n){this.router.navigateByUrl("/ecl/connections/"+this.links[n.index].link)}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-connections"]],standalone:!1,decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(a,o){1&a&&(t.j41(0,"div",0),t.nrm(1,"fa-icon",1),t.j41(2,"span",2),t.EFF(3,"On-chain Balance"),t.k0s()(),t.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),t.nrm(7,"rtl-currency-unit-converter",5),t.k0s()()(),t.j41(8,"div",0),t.nrm(9,"fa-icon",1),t.j41(10,"span",2),t.EFF(11,"Connections"),t.k0s()(),t.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),t.mxI("selectedIndexChange",function(m){return t.DH7(o.activeLink,m)||(o.activeLink=m),m}),t.bIt("selectedTabChange",function(m){return o.onSelectedTabChange(m)}),t.j41(16,"mat-tab"),t.DNE(17,xo,2,2,"ng-template",8),t.k0s(),t.j41(18,"mat-tab"),t.DNE(19,Lo,2,2,"ng-template",8),t.k0s()(),t.j41(20,"div",9),t.nrm(21,"router-outlet"),t.k0s()()()()),2&a&&(t.R7$(),t.Y8G("icon",o.faChartPie),t.R7$(6),t.Y8G("values",o.balances),t.R7$(2),t.Y8G("icon",o.faUsers),t.R7$(6),t.R50("selectedIndex",o.activeLink))},dependencies:[D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,Dt.k,G.ES,G.mq,G.T8,gt.f,L.n3],encapsulation:2}))}return i(),s})();function So(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Ro=(()=>{var i;class s{constructor(n,a,o){this.logger=n,this.store=a,this.router=o,this.faExchangeAlt=E._qq,this.faChartPie=E.W1p,this.currencyUnits=[],this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1]),(0,pt.E)(this.store.select(J._c))).subscribe(([a,o])=>{this.currencyUnits=o?.settings.currencyUnits||[],this.balances=o&&o.settings.userPersona===c.HW.OPERATOR?[{title:"Local Capacity",dataValue:a.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:a.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:a.lightningBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:a.lightningBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(a)})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-transactions"]],standalone:!1,decls:21,vars:5,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Lightning Balance"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),t.nrm(7,"rtl-currency-unit-converter",6),t.k0s()()(),t.j41(8,"div",7),t.nrm(9,"fa-icon",2),t.j41(10,"span",3),t.EFF(11,"Lightning Transactions"),t.k0s()(),t.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),t.DNE(16,So,2,4,"div",10),t.k0s(),t.nrm(17,"mat-tab-nav-panel",null,0),t.j41(19,"div",11),t.nrm(20,"router-outlet"),t.k0s()()()()),2&a){const l=t.sdS(18);t.R7$(),t.Y8G("icon",o.faChartPie),t.R7$(6),t.Y8G("values",o.balances),t.R7$(2),t.Y8G("icon",o.faExchangeAlt),t.R7$(6),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,G.Bu,G.hQ,G.Ql,gt.f,L.n3,W.Wk],encapsulation:2}))}return i(),s})();function ko(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Io=(()=>{var i;class s{constructor(n){this.router=n,this.faMapSigns=E.knH,this.events=[],this.flgLoading=[!0],this.errorMessage="",this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"peers",name:"Routing Peers"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-routing"]],standalone:!1,decls:15,vars:3,consts:[["tabPanel",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1)(1,"div",2),t.nrm(2,"fa-icon",3),t.j41(3,"span",4),t.EFF(4,"Routing"),t.k0s()(),t.j41(5,"div",5)(6,"mat-card",6)(7,"mat-card-content",7)(8,"div",8)(9,"nav",9),t.DNE(10,ko,2,4,"div",10),t.k0s(),t.nrm(11,"mat-tab-nav-panel",null,0),t.k0s(),t.j41(13,"div",11),t.nrm(14,"router-outlet"),t.k0s()()()()()),2&a){const l=t.sdS(12);t.R7$(2),t.Y8G("icon",o.faMapSigns),t.R7$(7),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,G.Bu,G.hQ,G.Ql,L.n3,W.Wk],encapsulation:2}))}return i(),s})();var rt=C(5951),Gt=C(450),at=C(6013);const To=["peersForm"],wo=["stepper"];function jo(i,s){if(1&i&&t.EFF(0),2&i){const e=t.XpG();t.JRh(e.peerFormLabel)}}function Do(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Address is required."),t.k0s())}function Go(i,s){if(1&i&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.peerConnectionError)}}function Po(i,s){if(1&i&&t.EFF(0),2&i){const e=t.XpG();t.JRh(e.channelFormLabel)}}function Ao(i,s){if(1&i&&(t.j41(0,"div",36),t.nrm(1,"fa-icon",35),t.j41(2,"span",13)(3,"div"),t.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),t.k0s(),t.j41(5,"span",37)(6,"span"),t.EFF(7),t.k0s(),t.j41(8,"span"),t.EFF(9),t.k0s(),t.j41(10,"span"),t.EFF(11),t.k0s(),t.j41(12,"span"),t.EFF(13),t.k0s(),t.j41(14,"span"),t.EFF(15),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faInfoCircle),t.R7$(6),t.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),t.R7$(2),t.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),t.R7$(2),t.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),t.R7$(2),t.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),t.R7$(2),t.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function No(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function Bo(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function Mo(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function $o(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function Vo(i,s){if(1&i&&(t.j41(0,"div",34),t.nrm(1,"fa-icon",35),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(2),t.JRh(e.channelConnectionError)}}let Pt=(()=>{var i;class s{constructor(n,a,o,l,m,u,T){this.dialogRef=n,this.data=a,this.store=o,this.formBuilder=l,this.actions=m,this.logger=u,this.dataService=T,this.faExclamationTriangle=E.zpE,this.faInfoCircle=E.iW_,this.peerAddress="",this.totalBalance=0,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.data.message?(this.totalBalance=this.data.message.balance,this.peerAddress=this.data.message.peer&&this.data.message.peer.nodeId&&this.data.message.peer.address?this.data.message.peer.nodeId+"@"+this.data.message.peer.address:this.data.message.peer&&this.data.message.peer.nodeId&&!this.data.message.peer.address?this.data.message.peer.nodeId:""):(this.totalBalance=0,this.peerAddress=""),this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[f.k0.required]],peerAddress:[this.peerAddress,[f.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[f.k0.required,f.k0.min(1),f.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],feeRate:[null],hiddenAmount:["",[f.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.selNode=n,this.channelFormGroup.controls.isPrivate.setValue(!!n?.settings.unannouncedChannels)}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,X.p)(n=>n.type===c.Uu.NEWLY_ADDED_PEER_ECL||n.type===c.Uu.FETCH_CHANNELS_ECL||n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(n=>{n.type===c.Uu.NEWLY_ADDED_PEER_ECL&&(this.logger.info(n.payload),this.flgEditable=!1,this.newlyAddedPeer=n.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),n.type===c.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close(),n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&n.payload.status===c.wn.ERROR&&("SaveNewPeer"===n.payload.action?this.peerConnectionError=n.payload.message:"SaveNewChannel"===n.payload.action&&(this.channelConnectionError=n.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[2])).subscribe({next:n=>{this.recommendedFee=n},error:n=>{this.logger.error(n)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,j.sq)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){return this.channelFormGroup.controls.feeRate.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.feeRate.value?(this.channelFormGroup.controls.feeRate.setErrors({minimum:!0}),!0):!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||(this.channelConnectionError="",void this.store.dispatch((0,j.vL)({payload:{nodeId:this.newlyAddedPeer?.nodeId,amount:this.channelFormGroup.controls.fundingAmount.value,private:this.channelFormGroup.controls.isPrivate.value,feeRate:this.channelFormGroup.controls.feeRate.value}})))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(n){switch(n.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.nodeId):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.nodeId):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}n.selectedIndex{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh),t.rXU(I.il),t.rXU(f.ze),t.rXU(K.En),t.rXU(A.gP),t.rXU(nt.u))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-connect-peer"]],viewQuery:function(a,o){if(1&a&&(t.GBs(To,5),t.GBs(wo,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first),t.mGM(l=t.lsd())&&(o.stepper=l.first)}},standalone:!1,decls:59,vars:25,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","35","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxLayout","column","fxFlex","40"],["matInput","","formControlName","feeRate","type","number","name","feeRate","tabindex","7",3,"step","min"],["fxFlex","20","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Connect to a new peer"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),t.bIt("selectionChange",function(u){return r.eBV(l),r.Njj(o.stepSelectionChanged(u))}),t.j41(12,"mat-step",10)(13,"form",11),t.DNE(14,jo,1,1,"ng-template",12),t.j41(15,"mat-form-field",13)(16,"mat-label"),t.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),t.k0s(),t.nrm(18,"input",14),t.DNE(19,Do,2,0,"mat-error",15),t.k0s(),t.DNE(20,Go,4,2,"div",16),t.j41(21,"div",17)(22,"button",18),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onConnectPeer())}),t.EFF(23),t.k0s()()()(),t.j41(24,"mat-step",10)(25,"form",19),t.DNE(26,Po,1,1,"ng-template",20),t.j41(27,"div",21),t.DNE(28,Ao,16,6,"div",22),t.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),t.EFF(32,"Amount"),t.k0s(),t.nrm(33,"input",25),t.j41(34,"mat-hint"),t.EFF(35),t.nI1(36,"number"),t.k0s(),t.j41(37,"span",26),t.EFF(38," Sats "),t.k0s(),t.DNE(39,No,2,0,"mat-error",15)(40,Bo,2,0,"mat-error",15)(41,Mo,2,1,"mat-error",15),t.k0s(),t.j41(42,"mat-form-field",27)(43,"mat-label"),t.EFF(44,"Fee (Sats/vByte)"),t.k0s(),t.nrm(45,"input",28),t.j41(46,"mat-hint"),t.EFF(47),t.k0s(),t.DNE(48,$o,2,1,"mat-error",15),t.k0s(),t.j41(49,"div",29)(50,"mat-slide-toggle",30),t.EFF(51,"Private Channel"),t.k0s()()()(),t.DNE(52,Vo,4,2,"div",16),t.j41(53,"div",17)(54,"button",31),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onOpenChannel())}),t.EFF(55),t.k0s()()()()(),t.j41(56,"div",32)(57,"button",33),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onClose())}),t.EFF(58),t.k0s()()()()()()}2&a&&(t.R7$(10),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",o.peerFormGroup)("editable",o.flgEditable),t.R7$(),t.Y8G("formGroup",o.peerFormGroup),t.R7$(6),t.Y8G("ngIf",null==o.peerFormGroup.controls.peerAddress.errors?null:o.peerFormGroup.controls.peerAddress.errors.required),t.R7$(),t.Y8G("ngIf",""!==o.peerConnectionError),t.R7$(3),t.JRh(""!==o.peerConnectionError?"Retry":"Add Peer"),t.R7$(),t.Y8G("stepControl",o.channelFormGroup)("editable",o.flgEditable),t.R7$(),t.Y8G("formGroup",o.channelFormGroup),t.R7$(3),t.Y8G("ngIf",o.recommendedFee.minimumFee),t.R7$(5),t.Y8G("step",1e3),t.R7$(2),t.SpI("Remaining: ",t.bMT(36,23,o.totalBalance-(o.channelFormGroup.controls.fundingAmount.value?o.channelFormGroup.controls.fundingAmount.value:0))),t.R7$(4),t.Y8G("ngIf",null==o.channelFormGroup.controls.fundingAmount.errors?null:o.channelFormGroup.controls.fundingAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==o.channelFormGroup.controls.fundingAmount.errors?null:o.channelFormGroup.controls.fundingAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==o.channelFormGroup.controls.fundingAmount.errors?null:o.channelFormGroup.controls.fundingAmount.errors.max),t.R7$(4),t.Y8G("step",1)("min",o.recommendedFee.minimumFee||0),t.R7$(2),t.SpI("Mempool Min: ",o.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",null==o.channelFormGroup.controls.feeRate.errors?null:o.channelFormGroup.controls.feeRate.errors.minimum),t.R7$(4),t.Y8G("ngIf",""!==o.channelConnectionError),t.R7$(3),t.JRh(""!==o.channelConnectionError?"Retry":"Open Channel"),t.R7$(3),t.JRh(null!=o.newlyAddedPeer&&o.newlyAddedPeer.nodeId?"Do It Later":"Close"))},dependencies:[d.bT,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.j4,f.JD,D.aY,N.$z,x.m2,x.MM,Y.fg,y.rl,y.nJ,y.MV,y.TL,y.yw,_.DJ,_.sA,_.UI,Gt.sG,at.V5,at.Ti,at.M6,et.N,it.V,d.QX],encapsulation:2}))}return i(),s})();var At=C(5416),Nt=C(9157);const Oo=i=>({"background-color":i});function Ho(i,s){if(1&i&&(t.j41(0,"span",10)(1,"div"),t.EFF(2),t.nI1(3,"titlecase"),t.k0s()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(2),t.Lme("",n.nodeFeaturesEnum[e.key]||e.key,": ",t.bMT(3,2,e.value))}}function Yo(i,s){1&i&&(t.j41(0,"th",24),t.EFF(1,"Address"),t.k0s())}function Xo(i,s){if(1&i&&(t.j41(0,"td",25),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(e)}}function Uo(i,s){1&i&&(t.j41(0,"th",26)(1,"div",27),t.EFF(2,"Actions"),t.k0s()())}function zo(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",28)(1,"div",29)(2,"mat-select",30),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",31),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onConnectNode(a))}),t.EFF(5,"Connect"),t.k0s(),t.j41(6,"mat-option",32),t.bIt("copied",function(a){r.eBV(e);const o=t.XpG(2);return r.Njj(o.onCopyNodeURI(a))}),t.EFF(7,"Copy URI"),t.k0s()()()()}if(2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(6),t.Y8G("payload",(null==n.lookupResult?null:n.lookupResult.nodeId)+"@"+e)}}function Jo(i,s){1&i&&t.nrm(0,"tr",33)}function qo(i,s){1&i&&t.nrm(0,"tr",34)}function Qo(i,s){if(1&i&&(t.j41(0,"div",2),t.nrm(1,"mat-divider",3),t.j41(2,"div",4)(3,"div",5)(4,"h4",6),t.EFF(5,"Alias"),t.k0s(),t.j41(6,"span",7),t.EFF(7),t.j41(8,"span",8),t.EFF(9),t.k0s()()(),t.j41(10,"div",9)(11,"h4",6),t.EFF(12,"Pub Key"),t.k0s(),t.j41(13,"span",10),t.EFF(14),t.k0s()()(),t.nrm(15,"mat-divider",3),t.j41(16,"div",4)(17,"div",5)(18,"h4",6),t.EFF(19,"Date/Time"),t.k0s(),t.j41(20,"span",7),t.EFF(21),t.nI1(22,"date"),t.k0s()(),t.j41(23,"div",9)(24,"h4",6),t.EFF(25,"Features"),t.k0s(),t.DNE(26,Ho,4,4,"span",11),t.nI1(27,"keyvalue"),t.k0s()(),t.nrm(28,"mat-divider",3),t.j41(29,"div",4)(30,"div",12)(31,"h4",6),t.EFF(32,"Signature"),t.k0s(),t.j41(33,"span",7),t.EFF(34),t.k0s()()(),t.nrm(35,"mat-divider",3),t.j41(36,"div",2)(37,"h4",13),t.EFF(38,"Addresses"),t.k0s(),t.j41(39,"div",14)(40,"table",15,0),t.qex(42,16),t.DNE(43,Yo,2,0,"th",17)(44,Xo,2,1,"td",18),t.bVm(),t.qex(45,19),t.DNE(46,Uo,3,0,"th",20)(47,zo,8,1,"td",21),t.bVm(),t.DNE(48,Jo,1,0,"tr",22)(49,qo,1,0,"tr",23),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(null==e.lookupResult?null:e.lookupResult.alias),t.R7$(),t.Y8G("ngStyle",t.eq3(19,Oo,null==e.lookupResult?null:e.lookupResult.rgbColor)),t.R7$(),t.JRh(null!=e.lookupResult&&e.lookupResult.rgbColor?null==e.lookupResult?null:e.lookupResult.rgbColor:""),t.R7$(5),t.JRh(null==e.lookupResult?null:e.lookupResult.nodeId),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.i5U(22,14,1e3*(null==e.lookupResult?null:e.lookupResult.timestamp),"dd/MMM/y HH:mm")),t.R7$(5),t.Y8G("ngForOf",t.bMT(27,17,null==e.lookupResult?null:e.lookupResult.features.activated)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(null==e.lookupResult?null:e.lookupResult.signature),t.R7$(),t.Y8G("inset",!0),t.R7$(5),t.Y8G("dataSource",e.addresses),t.R7$(8),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns)}}let Zo=(()=>{var i;class s{constructor(n,a,o){this.logger=n,this.snackBar=a,this.store=o,this.lookupResult={},this.addresses=new p.I6([]),this.displayedColumns=["address","actions"],this.nodeFeaturesEnum=c.Uq,this.information={},this.availableBalance=0,this.unSubs=[new h.B,new h.B,new h.B]}ngOnInit(){this.addresses=new p.I6(this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(n,a)=>n[a]&&isNaN(n[a])?n[a].toLocaleLowerCase():n[a]?+n[a]:null,this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.information=n}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.availableBalance=n.onchainBalance.total||0})}onConnectNode(n){this.store.dispatch((0,k.xO)({payload:{data:{message:{peer:this.lookupResult.nodeId?{nodeId:this.lookupResult.nodeId,address:n}:null,information:this.information,balance:this.availableBalance},component:Pt}}}))}onCopyNodeURI(n){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+n)}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(At.UG),t.rXU(I.il))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-node-lookup"]],viewQuery:function(a,o){if(1&a&&t.GBs(v.B4,5),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first)}},inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["table",""],["fxLayout","column",4,"ngIf"],["fxLayout","column"],[1,"my-1",3,"inset"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],["class","foreground-secondary-text w-100",4,"ngFor","ngForOf"],["fxFlex","100"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["matColumnDef","address"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(a,o){1&a&&t.DNE(0,Qo,50,21,"div",1),2&a&&t.Y8G("ngIf",o.lookupResult)},dependencies:[d.Sq,d.bT,d.B3,tt.q,_.DJ,_.sA,_.UI,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.KS,p.$R,p.YZ,p.NB,B.Ld,Nt.U,d.PV,d.vh,d.lG],encapsulation:2}))}return i(),s})();const Wo=["form"],Ko=i=>({"mt-1":!0,"mt-2":i});function ts(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder," is required.")}}function es(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Invalid ",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder,".")}}function ns(i,s){if(1&i&&(t.j41(0,"div"),t.nrm(1,"rtl-ecl-node-lookup",25),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.Y8G("lookupResult",e.nodeLookupValue)}}function is(i,s){if(1&i&&(t.j41(0,"span",23),t.DNE(1,ns,2,1,"div",24),t.k0s()),2&i){const e=t.XpG(2),n=t.sdS(23);t.R7$(),t.Y8G("ngIf",e.nodeLookupValue.nodeId)("ngIfElse",n)}}function as(i,s){1&i&&(t.j41(0,"span"),t.EFF(1,' fxFlex="100"'),t.j41(2,"h3"),t.EFF(3,"Error! Unable to find details!"),t.k0s()())}function os(i,s){if(1&i&&(t.j41(0,"div",17)(1,"div",18)(2,"span",19),t.EFF(3),t.k0s()(),t.j41(4,"div",20),t.DNE(5,is,2,2,"span",21)(6,as,4,0,"span",22),t.k0s()()),2&i){const e=t.XpG();t.R7$(3),t.SpI("",e.lookupFields[e.selectedFieldId].name," Details"),t.R7$(),t.Y8G("ngSwitch",e.selectedFieldId),t.R7$(),t.Y8G("ngSwitchCase",0)}}function ss(i,s){1&i&&(t.j41(0,"h3"),t.EFF(1,"Error! Unable to find details!"),t.k0s())}let ls=(()=>{var i;class s{constructor(n,a,o,l){this.logger=n,this.commonService=a,this.store=o,this.actions=l,this.lookupKeyCtrl=new f.hs,this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Node ID"},{id:1,name:"Channel",placeholder:"Short Channel ID"}],this.flgLoading=[!0],this.faSearch=E.MjD,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKeyCtrl.setValue(window.history.state.lookupValue||"")),this.actions.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(n=>n.type===c.Uu.SET_LOOKUP_ECL||n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL)).subscribe(n=>{if(n.type===c.Uu.SET_LOOKUP_ECL){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue=n.payload[0]?JSON.parse(JSON.stringify(n.payload[0])):{nodeid:""};break;case 1:this.channelLookupValue=JSON.parse(JSON.stringify(n.payload))||[]}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}n.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&n.payload.status===c.wn.ERROR&&"Lookup"===n.payload.action&&(this.flgLoading[0]="error")}),this.lookupKeyCtrl.valueChanges.pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1})}onLookup(){return this.lookupKeyCtrl.value?this.lookupKeyCtrl.value&&(this.lookupKeyCtrl.value.includes("@")||this.lookupKeyCtrl.value.includes(","))?(this.lookupKeyCtrl.setErrors({invalid:!0}),!0):void(0===(this.selectedFieldId||(this.selectedFieldId=0),this.flgSetLookupValue=!1,this.nodeLookupValue={},this.channelLookupValue=[],this.selectedFieldId)&&this.store.dispatch((0,j.zU)({payload:this.lookupKeyCtrl.value.trim()}))):(this.lookupKeyCtrl.setErrors({required:!0}),!0)}onSelectChange(n){this.resetData(),this.selectedFieldId=n.value}resetData(){this.flgSetLookupValue=!1,this.nodeLookupValue={},this.channelLookupValue=[],this.lookupKeyCtrl.setValue(""),this.lookupKeyCtrl.setErrors(null),this.form.resetForm()}clearLookupValue(){this.nodeLookupValue={},this.channelLookupValue=[],this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(K.En))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-lookups"]],viewQuery:function(a,o){if(1&a&&t.GBs(Wo,7),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first)}},standalone:!1,decls:24,vars:9,consts:[["form","ngForm"],["key",""],["errorBlock",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField"],["checked","",1,"mr-4",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"formControl"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",3)(1,"div",4)(2,"mat-card-content",5)(3,"form",6,0)(5,"div",7)(6,"mat-radio-group",8)(7,"mat-radio-button",9),t.EFF(8,"Node"),t.k0s()()(),t.j41(9,"mat-form-field",10)(10,"mat-label"),t.EFF(11),t.k0s(),t.nrm(12,"input",11,1),t.DNE(14,ts,2,1,"mat-error",12)(15,es,2,1,"mat-error",12),t.k0s(),t.j41(16,"div",13)(17,"button",14),t.bIt("click",function(){return r.eBV(l),r.Njj(o.resetData())}),t.EFF(18,"Clear"),t.k0s(),t.j41(19,"button",15),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onLookup())}),t.EFF(20,"Lookup"),t.k0s()()(),t.DNE(21,os,7,3,"div",16),t.k0s()()(),t.DNE(22,ss,2,0,"ng-template",null,2,t.C5r)}2&a&&(t.R7$(7),t.Y8G("value",0),t.R7$(2),t.Y8G("ngClass",t.eq3(7,Ko,o.screenSize===o.screenSizeEnum.XS||o.screenSize===o.screenSizeEnum.SM)),t.R7$(2),t.JRh((null==o.lookupFields[o.selectedFieldId]?null:o.lookupFields[o.selectedFieldId].placeholder)||"Lookup Key"),t.R7$(),t.Y8G("formControl",o.lookupKeyCtrl),t.R7$(2),t.Y8G("ngIf",null==o.lookupKeyCtrl.errors?null:o.lookupKeyCtrl.errors.required),t.R7$(),t.Y8G("ngIf",null==o.lookupKeyCtrl.errors?null:o.lookupKeyCtrl.errors.invalid),t.R7$(6),t.Y8G("ngIf",o.flgSetLookupValue))},dependencies:[d.YU,d.bT,d.ux,d.e1,d.fG,f.qT,f.me,f.BC,f.cb,f.YS,f.cV,f.l_,N.$z,x.m2,Y.fg,y.rl,y.nJ,y.TL,rt.VT,rt._g,_.DJ,_.sA,_.UI,S.PW,Zo],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}))}return i(),s})();var rs=C(396);let cs=(()=>{var i;class s{constructor(n,a){this.store=n,this.eclEffects=a,this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,j.XT)()),this.eclEffects.setNewAddress.pipe((0,Z.s)(1)).subscribe(n=>{this.newAddress=n,setTimeout(()=>{this.store.dispatch((0,k.xO)({payload:{data:{address:this.newAddress,addressType:"",component:rs.f}}}))},0)})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(ht.B))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain-receive"]],standalone:!1,decls:4,vars:0,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","1",3,"click"]],template:function(a,o){1&a&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return o.onGenerateAddress()}),t.EFF(3,"Generate Address"),t.k0s()()())},dependencies:[N.$z,_.DJ,_.sA,_.UI],encapsulation:2}))}return i(),s})(),ms=(()=>{var i;class s{constructor(n,a){this.store=n,this.activatedRoute=a,this.sweepAll=!1,this.unSubs=[new h.B,new h.B]}ngOnInit(){this.activatedRoute.data.pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.sweepAll=n.sweepAll})}openSendFundsModal(){this.store.dispatch((0,k.xO)({payload:{data:{sweepAll:this.sweepAll,component:jt}}}))}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(L.nX))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-on-chain-send"]],standalone:!1,decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(a,o){1&a&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return o.openSendFundsModal()}),t.EFF(3),t.k0s()()()),2&a&&(t.R7$(3),t.JRh(o.sweepAll?"Sweep All":"Send Funds"))},dependencies:[N.$z,_.DJ,_.sA,_.UI],encapsulation:2}))}return i(),s})();var yt=C(9172),Bt=C(6354),ct=C(2628),ps=C(92);const us=["form"];function ds(i,s){if(1&i&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.Y8G("value",e),t.R7$(),t.JRh(e.alias?e.alias:e.nodeId?e.nodeId:"")}}function hs(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Peer alias is required."),t.k0s())}function fs(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Peer not found in the list."),t.k0s())}function _s(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-form-field",6)(1,"mat-label"),t.EFF(2,"Peer Alias"),t.k0s(),t.j41(3,"input",33),t.bIt("change",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(4,"mat-autocomplete",34,4),t.bIt("optionSelected",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSelectedPeerChanged())}),t.DNE(6,ds,2,2,"mat-option",35),t.nI1(7,"async"),t.k0s(),t.DNE(8,hs,2,0,"mat-error",20)(9,fs,2,0,"mat-error",20),t.k0s()}if(2&i){const e=t.sdS(5),n=t.XpG();t.R7$(3),t.Y8G("formControl",n.selectedPeer)("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",n.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(7,6,n.filteredPeers)),t.R7$(2),t.Y8G("ngIf",null==n.selectedPeer.errors?null:n.selectedPeer.errors.required),t.R7$(),t.Y8G("ngIf",null==n.selectedPeer.errors?null:n.selectedPeer.errors.notfound)}}function gs(i,s){1&i&&t.eu8(0)}function Cs(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function ys(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function bs(i,s){if(1&i&&(t.j41(0,"div",37),t.nrm(1,"fa-icon",38),t.j41(2,"span",39)(3,"div"),t.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),t.k0s(),t.j41(5,"span",40)(6,"span"),t.EFF(7),t.k0s(),t.j41(8,"span"),t.EFF(9),t.k0s(),t.j41(10,"span"),t.EFF(11),t.k0s(),t.j41(12,"span"),t.EFF(13),t.k0s(),t.j41(14,"span"),t.EFF(15),t.k0s()()()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faInfoCircle),t.R7$(6),t.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),t.R7$(2),t.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),t.R7$(2),t.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),t.R7$(2),t.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),t.R7$(2),t.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function Fs(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function Es(i,s){if(1&i&&(t.j41(0,"span"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.channelConnectionError)}}function xs(i,s){if(1&i&&(t.j41(0,"div",41),t.nrm(1,"fa-icon",38),t.DNE(2,Es,2,1,"span",20),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("icon",e.faExclamationTriangle),t.R7$(),t.Y8G("ngIf",""!==e.channelConnectionError)}}function Ls(i,s){if(1&i&&(t.j41(0,"mat-expansion-panel",43)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),t.EFF(4,"Peer: \xa0"),t.k0s(),t.j41(5,"strong",44),t.EFF(6),t.k0s()()(),t.j41(7,"div",13)(8,"div",5)(9,"div",6)(10,"h4",45),t.EFF(11,"Pubkey"),t.k0s(),t.j41(12,"span",46),t.EFF(13),t.k0s()()(),t.nrm(14,"mat-divider",47),t.j41(15,"div",5)(16,"div",48)(17,"h4",45),t.EFF(18,"Address"),t.k0s(),t.j41(19,"span",49),t.EFF(20),t.k0s()(),t.j41(21,"div",48)(22,"h4",45),t.EFF(23,"State"),t.k0s(),t.j41(24,"span",49),t.EFF(25),t.nI1(26,"titlecase"),t.k0s()()()()()),2&i){const e=t.XpG(2);t.R7$(6),t.JRh((null==e.peer?null:e.peer.alias)||(null==e.peer?null:e.peer.nodeId)),t.R7$(7),t.JRh(e.peer.nodeId),t.R7$(7),t.JRh(null==e.peer?null:e.peer.address),t.R7$(5),t.JRh(t.bMT(26,4,null==e.peer?null:e.peer.state))}}function vs(i,s){if(1&i&&t.DNE(0,Ls,27,6,"mat-expansion-panel",42),2&i){const e=t.XpG();t.Y8G("ngIf",e.peer)}}let Mt=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.logger=n,this.dialogRef=a,this.data=o,this.store=l,this.actions=m,this.dataService=u,this.selectedPeer=new f.hs,this.faExclamationTriangle=E.zpE,this.faInfoCircle=E.iW_,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.feeRate=null,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(J._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(o=>{this.selNode=o,this.isPrivate=!!o?.settings.unannouncedChannels}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,X.p)(o=>o.type===c.Uu.UPDATE_API_CALL_STATUS_ECL||o.type===c.Uu.FETCH_CHANNELS_ECL)).subscribe(o=>{o.type===c.Uu.UPDATE_API_CALL_STATUS_ECL&&o.payload.status===c.wn.ERROR&&"SaveNewChannel"===o.payload.action&&(this.channelConnectionError=o.payload.message),o.type===c.Uu.FETCH_CHANNELS_ECL&&this.dialogRef.close()});let n="",a="";this.sortedPeers=this.peers.sort((o,l)=>(n=o.alias?o.alias.toLowerCase():o.nodeId?o.nodeId.toLowerCase():"",a=l.alias?l.alias.toLowerCase():o.nodeId?o.nodeId.toLowerCase():"",na?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,g.Q)(this.unSubs[2]),(0,yt.Z)(""),(0,Bt.T)(o=>"string"==typeof o?o:o.alias?o.alias:o.nodeId),(0,Bt.T)(o=>o?this.filterPeers(o):this.sortedPeers.slice()))}filterPeers(n){return this.sortedPeers?.filter(a=>0===a.alias?.toLowerCase().indexOf(n?n.toLowerCase():""))}displayFn(n){return n&&n.alias?n.alias:n&&n.nodeId?n.nodeId:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.nodeId?this.selectedPeer.value.nodeId:null,"string"==typeof this.selectedPeer.value){const n=this.peers?.filter(a=>a.alias?.length===this.selectedPeer.value.length&&0===a.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===n.length&&n[0].nodeId&&(this.selectedPubkey=n[0].nodeId)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.feeRate=null,this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!this.selNode?.settings.unannouncedChannels,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(n){this.advancedTitle="Advanced Options",n?this.feeRate&&this.feeRate>0&&(this.advancedTitle=this.advancedTitle+" | Fee (Sats/vByte): "+this.feeRate):this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[3])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||this.feeRate&&this.recommendedFee.minimumFee>this.feeRate)return!0;const n={nodeId:this.peer&&this.peer.nodeId?this.peer.nodeId:this.selectedPubkey,amount:this.fundingAmount,private:this.isPrivate};this.feeRate&&(n.feeRate=this.feeRate),this.store.dispatch((0,j.vL)({payload:n}))}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(V.CP),t.rXU(V.Vh),t.rXU(I.il),t.rXU(K.En),t.rXU(nt.u))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-open-channel"]],viewQuery:function(a,o){if(1&a&&t.GBs(us,7),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first)}},standalone:!1,decls:56,vars:21,consts:[["form","ngForm"],["amount","ngModel"],["fee","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","11","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amount",3,"ngModelChange","step","min","max","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","25","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxFlex","100","fxLayout","row","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","49"],["matInput","","type","number","name","fee","tabindex","7",3,"ngModelChange","step","min","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","10"],["type","text","aria-label","Peers","matInput","","tabindex","1","required","",3,"change","formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),t.EFF(5),t.k0s()(),t.j41(6,"button",10),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",11)(9,"form",12,0),t.bIt("submit",function(){return r.eBV(l),r.Njj(o.onOpenChannel())})("reset",function(){return r.eBV(l),r.Njj(o.resetData())}),t.j41(11,"div",13),t.DNE(12,_s,10,8,"mat-form-field",14),t.k0s(),t.DNE(13,gs,1,0,"ng-container",15),t.j41(14,"div",13)(15,"div",16)(16,"mat-form-field",17)(17,"mat-label"),t.EFF(18,"Amount"),t.k0s(),t.j41(19,"input",18,1),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.fundingAmount,u)||(o.fundingAmount=u),r.Njj(u)}),t.k0s(),t.j41(21,"mat-hint"),t.EFF(22),t.nI1(23,"number"),t.k0s(),t.j41(24,"span",19),t.EFF(25,"Sats "),t.k0s(),t.DNE(26,Cs,2,0,"mat-error",20)(27,ys,2,1,"mat-error",20),t.k0s(),t.j41(28,"div",21)(29,"mat-slide-toggle",22),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.isPrivate,u)||(o.isPrivate=u),r.Njj(u)}),t.EFF(30,"Private Channel"),t.k0s()()(),t.j41(31,"mat-expansion-panel",23),t.bIt("closed",function(){return r.eBV(l),r.Njj(o.onAdvancedPanelToggle(!0))})("opened",function(){return r.eBV(l),r.Njj(o.onAdvancedPanelToggle(!1))}),t.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),t.EFF(35),t.k0s()()(),t.j41(36,"div",24),t.DNE(37,bs,16,6,"div",25),t.j41(38,"div",16)(39,"div",26)(40,"mat-form-field",27)(41,"mat-label"),t.EFF(42,"Fee (Sats/vByte)"),t.k0s(),t.j41(43,"input",28,2),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.feeRate,u)||(o.feeRate=u),r.Njj(u)}),t.k0s(),t.j41(45,"mat-hint"),t.EFF(46),t.k0s(),t.DNE(47,Fs,2,1,"mat-error",20),t.k0s()()()()()(),t.DNE(48,xs,3,2,"div",29),t.j41(49,"div",30)(50,"button",31),t.EFF(51,"Clear Fields"),t.k0s(),t.j41(52,"button",32),t.EFF(53,"Open Channel"),t.k0s()()()()()(),t.DNE(54,vs,1,1,"ng-template",null,3,t.C5r)}if(2&a){const l=t.sdS(20),m=t.sdS(55);t.R7$(5),t.JRh(o.alertTitle),t.R7$(7),t.Y8G("ngIf",!o.peer&&o.peers&&o.peers.length>0),t.R7$(),t.Y8G("ngTemplateOutlet",m),t.R7$(6),t.Y8G("step",1e3)("min",1)("max",o.totalBalance),t.R50("ngModel",o.fundingAmount),t.R7$(3),t.SpI("Remaining: ",t.bMT(23,19,o.totalBalance-(o.fundingAmount?o.fundingAmount:0))),t.R7$(4),t.Y8G("ngIf",null==l.errors?null:l.errors.required),t.R7$(),t.Y8G("ngIf",null==l.errors?null:l.errors.max),t.R7$(2),t.R50("ngModel",o.isPrivate),t.R7$(6),t.JRh(o.advancedTitle),t.R7$(2),t.Y8G("ngIf",o.recommendedFee.minimumFee),t.R7$(6),t.Y8G("step",1)("min",o.recommendedFee.minimumFee),t.R50("ngModel",o.feeRate),t.R7$(3),t.SpI("Mempool Min: ",o.recommendedFee.minimumFee," (Sats/vByte)"),t.R7$(),t.Y8G("ngIf",o.feeRate&&o.feeRate{var i;class s{constructor(n,a,o){this.logger=n,this.store=a,this.router=o,this.numOfOpenChannels=0,this.numOfPendingChannels=0,this.numOfInactiveChannels=0,this.information={},this.peers=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending"},{link:"inactive",name:"Inactive"}],this.activeLink=0,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.activeLink=this.links.findIndex(n=>n.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(n=>n instanceof L.gx)).subscribe({next:n=>{this.activeLink=this.links.findIndex(a=>a.link===n.urlAfterRedirects.substring(n.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.numOfOpenChannels=n.channelsStatus&&n.channelsStatus.active&&n.channelsStatus.active.channels?n.channelsStatus.active.channels:0,this.numOfPendingChannels=n.channelsStatus&&n.channelsStatus.pending&&n.channelsStatus.pending.channels?n.channelsStatus.pending.channels:0,this.numOfInactiveChannels=n.channelsStatus&&n.channelsStatus.inactive&&n.channelsStatus.inactive.channels?n.channelsStatus.inactive.channels:0,this.logger.info(n)}),this.store.select(J._c).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.selNode=n}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.information=n}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[4])).subscribe(n=>{this.peers=n.peers}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[5])).subscribe(n=>{this.totalBalance=n.onchainBalance.total||0})}onOpenChannel(){this.store.dispatch((0,k.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:Mt}}}))}onSelectedTabChange(n){this.router.navigateByUrl("/ecl/connections/channels/"+this.links[n.index].link)}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channels-tables"]],standalone:!1,decls:14,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(a,o){1&a&&(t.j41(0,"div",0)(1,"div",1)(2,"button",2),t.bIt("click",function(){return o.onOpenChannel()}),t.EFF(3,"Open Channel"),t.k0s()(),t.j41(4,"div",3)(5,"mat-tab-group",4),t.mxI("selectedIndexChange",function(m){return t.DH7(o.activeLink,m)||(o.activeLink=m),m}),t.bIt("selectedTabChange",function(m){return o.onSelectedTabChange(m)}),t.j41(6,"mat-tab"),t.DNE(7,Ss,2,2,"ng-template",5),t.k0s(),t.j41(8,"mat-tab"),t.DNE(9,Rs,2,2,"ng-template",5),t.k0s(),t.j41(10,"mat-tab"),t.DNE(11,ks,2,2,"ng-template",5),t.k0s()(),t.j41(12,"div",6),t.nrm(13,"router-outlet"),t.k0s()()()),2&a&&(t.R7$(5),t.R50("selectedIndex",o.activeLink))},dependencies:[N.$z,_.DJ,_.sA,_.UI,Dt.k,G.ES,G.mq,G.T8,L.n3],encapsulation:2}))}return i(),s})();const Ts=i=>({"xs-scroll-y":i}),ws=(i,s)=>({"mt-2":i,"mt-1":s});function js(i,s){if(1&i&&(t.j41(0,"div",12)(1,"h4",13),t.EFF(2,"Short Channel ID"),t.k0s(),t.j41(3,"span",14),t.EFF(4),t.k0s()()),2&i){const e=t.XpG();t.R7$(4),t.JRh(e.channel.shortChannelId)}}function Ds(i,s){if(1&i&&(t.j41(0,"div",12)(1,"h4",13),t.EFF(2,"State"),t.k0s(),t.j41(3,"span",17),t.EFF(4),t.nI1(5,"titlecase"),t.k0s()()),2&i){const e=t.XpG();t.R7$(4),t.JRh(t.bMT(5,1,e.channel.state))}}function Gs(i,s){if(1&i&&(t.j41(0,"div")(1,"div",10)(2,"div",12)(3,"h4",13),t.EFF(4,"Local Balance (Sats)"),t.k0s(),t.j41(5,"span",17),t.EFF(6),t.nI1(7,"number"),t.k0s()(),t.j41(8,"div",12)(9,"h4",13),t.EFF(10,"Remote Balance (Sats)"),t.k0s(),t.j41(11,"span",17),t.EFF(12),t.nI1(13,"number"),t.k0s()()(),t.nrm(14,"mat-divider",15),t.j41(15,"div",10)(16,"div",12)(17,"h4",13),t.EFF(18,"Base Fee (mSats)"),t.k0s(),t.j41(19,"span",17),t.EFF(20),t.nI1(21,"number"),t.k0s()(),t.j41(22,"div",12)(23,"h4",13),t.EFF(24,"Fee Rate (mili mSats)"),t.k0s(),t.j41(25,"span",17),t.EFF(26),t.nI1(27,"number"),t.k0s()()(),t.nrm(28,"mat-divider",15),t.k0s()),2&i){const e=t.XpG();t.R7$(6),t.JRh(t.bMT(7,6,e.channel.toLocal)),t.R7$(6),t.JRh(t.bMT(13,8,e.channel.toRemote)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.bMT(21,10,e.channel.feeBaseMsat)),t.R7$(6),t.JRh(t.bMT(27,12,e.channel.feeProportionalMillionths)),t.R7$(2),t.Y8G("inset",!0)}}function Ps(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Show Advanced"),t.k0s())}function As(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Hide Advanced"),t.k0s())}function Ns(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",23),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onShowAdvanced())}),t.DNE(1,Ps,2,0,"p",24)(2,As,2,0,"ng-template",null,0,t.C5r),t.k0s()}if(2&i){const e=t.sdS(3),n=t.XpG();t.R7$(),t.Y8G("ngIf",!n.showAdvanced)("ngIfElse",e)}}function Bs(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",25),t.bIt("copied",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onCopyChanID(a))}),t.EFF(1,"Copy Short Channel ID"),t.k0s()}if(2&i){const e=t.XpG();t.Y8G("payload",e.channel.shortChannelId)}}function Ms(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",26),t.bIt("copied",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onCopyChanID(a))}),t.EFF(1,"Copy Channel ID"),t.k0s()}if(2&i){const e=t.XpG();t.Y8G("payload",e.channel.channelId)}}let bt=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.dialogRef=n,this.data=a,this.logger=o,this.commonService=l,this.snackBar=m,this.router=u,this.faReceipt=E.Mf0,this.showAdvanced=!1,this.channelsType="open",this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.channel=this.data.channel,this.channelsType=this.data.channelsType||"",this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(n){this.snackBar.open("open"===this.channelsType?"Short channel ID "+n+" copied.":"Channel ID copied."),this.logger.info("Copied Text: "+n)}onGoToLink(n,a){this.router.navigateByUrl("/ecl/graph/lookups",{state:{lookupType:n,lookupValue:a}}),this.onClose()}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh),t.rXU(A.gP),t.rXU($.h),t.rXU(At.UG),t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-information"]],standalone:!1,decls:59,vars:27,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50",4,"ngIf"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["tabindex","1","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","2","class","mr-1",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","4","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["mat-button","","color","primary","type","reset","tabindex","2",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","3","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","4","type","submit","rtlClipboard","",3,"copied","payload"]],template:function(a,o){1&a&&(t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),t.nrm(4,"fa-icon",5),t.j41(5,"span",6),t.EFF(6,"Channel Information"),t.k0s()(),t.j41(7,"button",7),t.bIt("click",function(){return o.onClose()}),t.EFF(8,"X"),t.k0s()(),t.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10),t.DNE(12,js,5,1,"div",11),t.j41(13,"div",12)(14,"h4",13),t.EFF(15,"Peer Alias"),t.k0s(),t.j41(16,"span",14),t.EFF(17),t.k0s()(),t.DNE(18,Ds,6,3,"div",11),t.k0s(),t.nrm(19,"mat-divider",15),t.j41(20,"div",10)(21,"div",2)(22,"h4",13),t.EFF(23,"Channel ID"),t.k0s(),t.j41(24,"span",14),t.EFF(25),t.k0s()()(),t.nrm(26,"mat-divider",15),t.j41(27,"div",10)(28,"div",2)(29,"h4",13),t.EFF(30,"Peer Public Key"),t.k0s(),t.j41(31,"span",16),t.bIt("click",function(){return o.onGoToLink("0",o.channel.nodeId)}),t.EFF(32),t.k0s()()(),t.nrm(33,"mat-divider",15),t.j41(34,"div",10)(35,"div",2)(36,"h4",13),t.EFF(37,"State"),t.k0s(),t.j41(38,"span",17),t.EFF(39),t.nI1(40,"titlecase"),t.k0s()()(),t.nrm(41,"mat-divider",15),t.j41(42,"div",10)(43,"div",12)(44,"h4",13),t.EFF(45,"Private"),t.k0s(),t.j41(46,"span",17),t.EFF(47),t.k0s()(),t.j41(48,"div",12)(49,"h4",13),t.EFF(50,"Initiator"),t.k0s(),t.j41(51,"span",17),t.EFF(52),t.k0s()()(),t.nrm(53,"mat-divider",15),t.DNE(54,Gs,29,14,"div",18),t.j41(55,"div",19),t.DNE(56,Ns,4,2,"button",20)(57,Bs,2,1,"button",21)(58,Ms,2,1,"button",22),t.k0s()()()()()),2&a&&(t.R7$(4),t.Y8G("icon",o.faReceipt),t.R7$(5),t.Y8G("ngClass",t.eq3(22,Ts,o.screenSize===o.screenSizeEnum.XS)),t.R7$(3),t.Y8G("ngIf","open"===o.channelsType),t.R7$(5),t.JRh(o.channel.alias),t.R7$(),t.Y8G("ngIf","open"!==o.channelsType),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(o.channel.channelId),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.SpI(" ",o.channel.nodeId," "),t.R7$(),t.Y8G("inset",!0),t.R7$(6),t.JRh(t.bMT(40,20,o.channel.state)),t.R7$(2),t.Y8G("inset",!0),t.R7$(6),t.JRh(o.channel.announceChannel?"No":"Yes"),t.R7$(5),t.JRh(o.channel.isInitiator?"Yes":"No"),t.R7$(),t.Y8G("inset",!0),t.R7$(),t.Y8G("ngIf",o.showAdvanced&&"open"===o.channelsType),t.R7$(),t.Y8G("ngClass",t.l_i(24,ws,!o.showAdvanced,o.showAdvanced)),t.R7$(),t.Y8G("ngIf","open"===o.channelsType),t.R7$(),t.Y8G("ngIf","open"===o.channelsType),t.R7$(),t.Y8G("ngIf","open"!==o.channelsType))},dependencies:[d.YU,d.bT,D.aY,N.$z,x.m2,x.MM,tt.q,_.DJ,_.sA,_.UI,S.PW,Q.oV,Nt.U,et.N,d.QX,d.PV],encapsulation:2}))}return i(),s})();var Ft=C(7673),Et=C(1001),$s=C(6949);const ot=(i,s)=>({"small-svg":i,"large-svg":s});function Vs(i,s){1&i&&t.eu8(0)}function Os(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",7),t.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17)(12,"path",18)(13,"path",19)(14,"path",20)(15,"path",21)(16,"path",22)(17,"path",23)(18,"path",24)(19,"path",25)(20,"path",26)(21,"path",27)(22,"path",28)(23,"path",29)(24,"path",30)(25,"path",31)(26,"path",32)(27,"path",33)(28,"path",34)(29,"path",35)(30,"path",36)(31,"path",37)(32,"path",38)(33,"path",39)(34,"path",40)(35,"path",41)(36,"path",42)(37,"path",43)(38,"path",44)(39,"path",45)(40,"path",46),t.k0s(),r.joV(),t.j41(41,"div",47)(42,"mat-card-title"),t.EFF(43,"Circular rebalancing explained."),t.k0s()(),t.j41(44,"div",48)(45,"mat-card-subtitle",49),t.EFF(46," Circular payments are a completely off-chain rebalancing strategy where a node makes a payment to itself across a circular path of chained payment channels. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Hs(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",51),t.nrm(2,"path",52)(3,"path",53)(4,"path",54)(5,"path",55)(6,"path",56)(7,"path",57)(8,"path",58)(9,"path",59)(10,"path",60)(11,"path",61)(12,"path",62)(13,"path",63)(14,"path",64)(15,"path",65)(16,"path",66)(17,"path",67)(18,"path",68)(19,"path",69)(20,"path",70)(21,"path",71)(22,"path",72)(23,"path",73)(24,"path",74)(25,"path",75)(26,"path",76)(27,"path",77)(28,"path",78)(29,"path",79)(30,"path",80)(31,"path",81)(32,"path",82)(33,"path",52)(34,"path",53)(35,"path",54)(36,"path",55)(37,"path",56)(38,"path",57)(39,"path",58)(40,"path",59)(41,"path",60)(42,"path",83)(43,"path",84)(44,"path",63)(45,"path",85)(46,"path",86)(47,"path",87)(48,"path",67)(49,"path",68)(50,"path",69)(51,"path",70)(52,"path",71)(53,"path",72)(54,"path",73)(55,"path",74)(56,"path",75)(57,"path",76)(58,"path",77)(59,"path",78)(60,"path",79)(61,"path",80)(62,"path",88)(63,"path",82)(64,"path",89),t.j41(65,"defs")(66,"linearGradient",90),t.nrm(67,"stop",91)(68,"stop",92)(69,"stop",93),t.k0s(),t.j41(70,"linearGradient",94),t.nrm(71,"stop",91)(72,"stop",92)(73,"stop",93),t.k0s(),t.j41(74,"linearGradient",95),t.nrm(75,"stop",91)(76,"stop",92)(77,"stop",93),t.k0s(),t.j41(78,"linearGradient",96),t.nrm(79,"stop",91)(80,"stop",92)(81,"stop",93),t.k0s(),t.j41(82,"linearGradient",97),t.nrm(83,"stop",91)(84,"stop",92)(85,"stop",93),t.k0s(),t.j41(86,"linearGradient",98),t.nrm(87,"stop",91)(88,"stop",92)(89,"stop",93),t.k0s()()(),r.joV(),t.j41(90,"div",47)(91,"mat-card-title"),t.EFF(92,"Step 1: Unbalanced channel"),t.k0s()(),t.j41(93,"div",48)(94,"mat-card-subtitle",49),t.EFF(95," It starts with an unbalanced channel, that needs to be rebalanced in order to continue to route payments. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Ys(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",99),t.nrm(2,"path",100)(3,"path",101)(4,"path",102)(5,"path",103)(6,"path",104)(7,"path",105)(8,"path",106)(9,"path",107)(10,"path",108)(11,"path",109)(12,"path",110)(13,"path",111)(14,"path",112)(15,"path",113)(16,"path",114)(17,"path",52)(18,"path",115)(19,"path",116)(20,"path",117)(21,"path",118)(22,"path",119)(23,"path",120)(24,"path",121)(25,"path",122)(26,"path",83)(27,"path",84)(28,"path",123)(29,"path",124)(30,"path",125)(31,"path",126)(32,"path",67)(33,"path",127)(34,"path",128)(35,"path",129)(36,"path",130)(37,"path",131)(38,"path",132)(39,"path",74)(40,"path",75)(41,"path",133)(42,"path",77)(43,"path",78)(44,"path",79)(45,"path",80)(46,"path",134)(47,"path",135)(48,"path",136),t.j41(49,"defs")(50,"linearGradient",137),t.nrm(51,"stop",91)(52,"stop",92)(53,"stop",93),t.k0s(),t.j41(54,"linearGradient",138),t.nrm(55,"stop",91)(56,"stop",92)(57,"stop",93),t.k0s(),t.j41(58,"linearGradient",139),t.nrm(59,"stop",91)(60,"stop",92)(61,"stop",93),t.k0s()()(),r.joV(),t.j41(62,"div",47)(63,"mat-card-title"),t.EFF(64,"Step 2: Invoice/Payment"),t.k0s()(),t.j41(65,"div",48)(66,"mat-card-subtitle",49),t.EFF(67," All you have to do is make a payment to yourself in a favorable direction by generating and paying an invoice. This is taken care automatically by your node. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Xs(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",140),t.nrm(2,"path",141)(3,"path",142)(4,"path",143)(5,"path",144)(6,"path",145)(7,"path",146)(8,"path",147)(9,"path",148)(10,"path",149)(11,"path",150)(12,"path",151)(13,"path",152)(14,"path",153)(15,"path",154)(16,"path",155)(17,"path",156)(18,"path",157)(19,"path",158)(20,"path",159)(21,"path",160)(22,"path",161)(23,"path",162)(24,"path",163)(25,"path",164)(26,"path",163)(27,"path",165)(28,"path",166)(29,"path",167)(30,"path",168)(31,"path",169)(32,"path",170)(33,"path",171)(34,"path",172)(35,"path",173)(36,"path",174)(37,"path",175)(38,"path",176)(39,"path",177)(40,"path",178)(41,"path",179),t.j41(42,"defs")(43,"linearGradient",180),t.nrm(44,"stop",91)(45,"stop",92)(46,"stop",93),t.k0s()()(),r.joV(),t.j41(47,"div",47)(48,"mat-card-title"),t.EFF(49,"Step 3: Rebalance amount"),t.k0s()(),t.j41(50,"div",48)(51,"mat-card-subtitle",49),t.EFF(52," You will be moving part or all of the local balance to the remote side. For the route to be circular, there should be at least 3 nodes involved. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}function Us(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",50),t.bIt("swipe",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onSwipe(a))}),r.qSk(),t.j41(1,"svg",140),t.nrm(2,"path",181)(3,"path",143)(4,"path",182)(5,"path",145)(6,"path",146)(7,"path",183)(8,"path",148)(9,"path",184)(10,"path",185)(11,"path",186)(12,"path",187)(13,"path",188)(14,"path",189)(15,"path",190)(16,"path",191)(17,"path",192)(18,"path",158)(19,"path",193)(20,"path",194)(21,"path",179)(22,"path",160)(23,"path",161)(24,"path",195)(25,"path",163)(26,"path",164)(27,"path",163)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",196)(33,"path",170)(34,"path",197)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",198),t.j41(41,"defs")(42,"linearGradient",199),t.nrm(43,"stop",91)(44,"stop",92)(45,"stop",93),t.k0s()()(),r.joV(),t.j41(46,"div",47)(47,"mat-card-title"),t.EFF(48,"Rebalance successful!"),t.k0s()(),t.j41(49,"div",48)(50,"mat-card-subtitle",49),t.EFF(51," Your channel is successfully rebalanced and is able to continue to route payments. "),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@sliderAnimation",e.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,ot,e.screenSize===e.screenSizeEnum.XS,e.screenSize!==e.screenSizeEnum.XS))}}let zs=(()=>{var i;class s{constructor(n){this.commonService=n,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=c.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(n){2===n.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===n.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU($.h))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["infoStepBlock1",""],["infoStepBlock2",""],["infoStepBlock3",""],["infoStepBlock4",""],["infoStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between starts",3,"swipe"],["fxFlex","30","viewBox","0 0 246 154","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M187.8 136C203.043 136 215.4 133.493 215.4 130.4C215.4 127.307 203.043 124.8 187.8 124.8C172.557 124.8 160.2 127.307 160.2 130.4C160.2 133.493 172.557 136 187.8 136Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M128.6 148.8C143.843 148.8 156.2 146.293 156.2 143.2C156.2 140.107 143.843 137.6 128.6 137.6C113.357 137.6 101 140.107 101 143.2C101 146.293 113.357 148.8 128.6 148.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["opacity","0.1","d","M100.2 117.421C100.2 117.421 99.0633 117.494 99.4998 117.722C99.9363 117.95 100.2 117.421 100.2 117.421Z","fill","black"],["opacity","0.1","d","M101 118.4C100.986 118.471 98.1102 119.483 98.673 119.933C99.2358 120.384 101 118.4 101 118.4Z","fill","black"],["opacity","0.1","d","M97.8 128.98C98.0492 128.966 100.509 128.241 101 128.89L97.8 128.98Z","fill","black"],["opacity","0.1","d","M100.2 129.709C100.2 129.709 100.563 129.362 100.926 129.543C101.289 129.725 100.2 129.709 100.2 129.709Z","fill","black"],["opacity","0.1","d","M101.8 132C101.8 132 101.641 133.198 101 133.6L101.8 132Z","fill","black"],["d","M119.223 21.4239L123.102 22.0818L118.209 50.9111L114.33 50.2532L119.223 21.4239Z",1,"fill-color-primary-darker"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z",1,"fill-color-29"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z",1,"fill-color-28"],["d","M110.75 50.4L104.806 87.6521C104.806 87.6521 96.0162 127.358 99.3581 135.2H103.57L116.2 58.9791L110.75 50.4Z",1,"fill-color-29"],["d","M125.308 45.6L129.979 83.02C129.979 83.02 133.381 130.691 129.656 138.4H125.976L119.4 53.9698L125.308 45.6Z",1,"fill-color-29"],["d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z","fill","black"],["d","M112.922 39.2661C113.364 37.7699 114.731 36.7605 116.259 36.8012C118.804 36.8682 122.74 37.3423 124.787 39.4927C127.969 42.8316 122.638 54.0832 122.638 54.0832C122.638 54.0832 117.661 63.4872 113.092 51.5396C113.092 51.5327 111.203 45.1393 112.922 39.2661Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M131.383 131.52C131.69 131.628 131.968 131.791 132.2 132C131.813 131.613 130.708 131.42 130.166 131.24C129.495 131.019 128.764 130.793 128.2 130.4C129.29 130.705 130.354 131.079 131.383 131.52Z","fill","black"],["opacity","0.1","d","M94.2 24.8C96.1882 24.8 97.8 23.1882 97.8 21.2C97.8 19.2118 96.1882 17.6 94.2 17.6C92.2117 17.6 90.6 19.2118 90.6 21.2C90.6 23.1882 92.2117 24.8 94.2 24.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M107 12C110.314 12 113 9.31371 113 6C113 2.68629 110.314 0 107 0C103.686 0 101 2.68629 101 6C101 9.31371 103.686 12 107 12Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M99 40.8C102.314 40.8 105 38.1137 105 34.8C105 31.4863 102.314 28.8 99 28.8C95.6863 28.8 93 31.4863 93 34.8C93 38.1137 95.6863 40.8 99 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M223 67.2C224.988 67.2 226.6 65.5882 226.6 63.6C226.6 61.6118 224.988 60 223 60C221.012 60 219.4 61.6118 219.4 63.6C219.4 65.5882 221.012 67.2 223 67.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M210.2 54.4C213.514 54.4 216.2 51.7137 216.2 48.4C216.2 45.0863 213.514 42.4 210.2 42.4C206.886 42.4 204.2 45.0863 204.2 48.4C204.2 51.7137 206.886 54.4 210.2 54.4Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M218.2 83.2C221.514 83.2 224.2 80.5137 224.2 77.2C224.2 73.8863 221.514 71.2 218.2 71.2C214.886 71.2 212.2 73.8863 212.2 77.2C212.2 80.5137 214.886 83.2 218.2 83.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M23.8 72C24.9046 72 25.8 71.1046 25.8 70C25.8 68.8954 24.9046 68 23.8 68C22.6954 68 21.8 68.8954 21.8 70C21.8 71.1046 22.6954 72 23.8 72Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M33 65.6C34.7673 65.6 36.2 64.1673 36.2 62.4C36.2 60.6327 34.7673 59.2 33 59.2C31.2327 59.2 29.8 60.6327 29.8 62.4C29.8 64.1673 31.2327 65.6 33 65.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M17 71.2C18.7673 71.2 20.2 69.7673 20.2 68C20.2 66.2327 18.7673 64.8 17 64.8C15.2327 64.8 13.8 66.2327 13.8 68C13.8 69.7673 15.2327 71.2 17 71.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M171.8 60C172.905 60 173.8 59.1046 173.8 58C173.8 56.8954 172.905 56 171.8 56C170.695 56 169.8 56.8954 169.8 58C169.8 59.1046 170.695 60 171.8 60Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M180.2 53.6C181.967 53.6 183.4 52.1673 183.4 50.4C183.4 48.6327 181.967 47.2 180.2 47.2C178.433 47.2 177 48.6327 177 50.4C177 52.1673 178.433 53.6 180.2 53.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M164.2 59.2C165.967 59.2 167.4 57.7673 167.4 56C167.4 54.2327 165.967 52.8 164.2 52.8C162.433 52.8 161 54.2327 161 56C161 57.7673 162.433 59.2 164.2 59.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M51 40.8C55.6392 40.8 59.4 37.0392 59.4 32.4C59.4 27.7608 55.6392 24 51 24C46.3608 24 42.6 27.7608 42.6 32.4C42.6 37.0392 46.3608 40.8 51 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M98.6 64.8C101.251 64.8 103.4 62.651 103.4 60C103.4 57.349 101.251 55.2 98.6 55.2C95.949 55.2 93.8 57.349 93.8 60C93.8 62.651 95.949 64.8 98.6 64.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M145.8 96.8C148.451 96.8 150.6 94.651 150.6 92C150.6 89.349 148.451 87.2 145.8 87.2C143.149 87.2 141 89.349 141 92C141 94.651 143.149 96.8 145.8 96.8Z",1,"fill-color-primary-darker"],["fill-rule","evenodd","clip-rule","evenodd","d","M59.8 136.8C75.0431 136.8 87.4 134.293 87.4 131.2C87.4 128.107 75.0431 125.6 59.8 125.6C44.557 125.6 32.2 128.107 32.2 131.2C32.2 134.293 44.557 136.8 59.8 136.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M217.4 152.8C232.643 152.8 245 150.293 245 147.2C245 144.107 232.643 141.6 217.4 141.6C202.157 141.6 189.8 144.107 189.8 147.2C189.8 150.293 202.157 152.8 217.4 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M28.6 152.8C43.8431 152.8 56.2 150.293 56.2 147.2C56.2 144.107 43.8431 141.6 28.6 141.6C13.3569 141.6 1 144.107 1 147.2C1 150.293 13.3569 152.8 28.6 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["d","M122.425 44.7H119.162L120.372 41.0719C120.484 40.6219 120.147 40.2 119.725 40.2H115.675C115.337 40.2 115.028 40.4531 115 40.7906L114.1 47.5406C114.044 47.9625 114.353 48.3 114.775 48.3H118.094L116.8 53.7844C116.716 54.2063 117.025 54.6 117.447 54.6C117.7 54.6 117.925 54.4875 118.037 54.2625L122.987 45.7125C123.269 45.2906 122.931 44.7 122.425 44.7Z","fill","white"],["d","M23.5204 123.2C23.0498 123.2 22.6141 123.375 22.2807 123.669C21.9491 123.96 21.7189 124.369 21.6565 124.837L20.2164 135.712C20.1423 136.278 20.3237 136.811 20.6643 137.203C21.0076 137.598 21.5119 137.85 22.0804 137.85H26.4117L24.5687 145.68C24.4289 146.274 24.5836 146.851 24.9204 147.28C25.2626 147.716 25.7931 148 26.3959 148C26.7289 148 27.0539 147.911 27.3385 147.746C27.616 147.585 27.8553 147.351 28.0254 147.055L35.9453 133.28C36.3068 132.658 36.2644 131.95 35.9495 131.398C35.7868 131.113 35.551 130.871 35.2622 130.703C34.9905 130.544 34.6717 130.45 34.3203 130.45H30.1609L31.7043 124.49C31.5476 124.305 31.4051 124.176 31.278 124.085C31.004 123.89 30.5348 123.687 29.7238 123.539C28.6009 123.335 26.6977 123.2 23.5204 123.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M185.5 109.6C185.075 109.6 184.682 109.757 184.381 110.02C184.08 110.284 183.872 110.652 183.815 111.073L182.615 120.074C182.548 120.585 182.712 121.066 183.021 121.419C183.331 121.774 183.787 122 184.3 122H187.74L186.244 128.309C186.117 128.846 186.258 129.366 186.564 129.753C186.873 130.145 187.352 130.4 187.897 130.4C188.505 130.4 189.084 130.074 189.391 129.512L195.745 115.6H191.208L192.467 110.771C192.308 110.576 192.165 110.445 192.04 110.357C191.803 110.189 191.397 110.01 190.693 109.883C189.753 109.713 188.16 109.6 185.5 109.6Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M215.1 128C214.675 128 214.282 128.157 213.981 128.42C213.68 128.683 213.472 129.052 213.415 129.473L212.215 138.474C212.148 138.985 212.312 139.466 212.621 139.819C212.931 140.174 213.387 140.4 213.9 140.4H217.34L215.844 146.709C215.717 147.246 215.858 147.766 216.164 148.153C216.473 148.545 216.952 148.8 217.497 148.8C218.105 148.8 218.684 148.474 218.991 147.912L225.345 134H220.808L222.067 129.171C221.908 128.976 221.765 128.845 221.64 128.757C221.403 128.589 220.997 128.41 220.293 128.283C219.353 128.113 217.76 128 215.1 128Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M55.9003 111.2C55.4754 111.2 55.0822 111.357 54.7812 111.62C54.4802 111.883 54.2716 112.252 54.215 112.673L53.0149 121.674C52.9475 122.185 53.112 122.666 53.4214 123.019C53.7314 123.374 54.1868 123.6 54.7004 123.6H58.1398L56.6444 129.909C56.5174 130.446 56.6576 130.966 56.9637 131.353C57.2728 131.745 57.7518 132 58.2966 132C58.9052 132 59.4843 131.674 59.7907 131.112L66.1452 117.2H61.6081L62.8674 112.371C62.7082 112.176 62.5651 112.045 62.4402 111.957C62.2025 111.789 61.7969 111.61 61.0927 111.483C60.1529 111.313 58.5599 111.2 55.9003 111.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 210 124","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M90.1491 0H0V100.616H90.1491V0Z",1,"fill-color-10"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z",1,"fill-color-primary-darker"],["d","M76.3172 90.6426C80.8187 90.6426 84.4679 86.9934 84.4679 82.4919C84.4679 77.9904 80.8187 74.3412 76.3172 74.3412C71.8157 74.3412 68.1665 77.9904 68.1665 82.4919C68.1665 86.9934 71.8157 90.6426 76.3172 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3172 58.1801C80.8187 58.1801 84.4679 54.5309 84.4679 50.0294C84.4679 45.5279 80.8187 41.8787 76.3172 41.8787C71.8157 41.8787 68.1665 45.5279 68.1665 50.0294C68.1665 54.5309 71.8157 58.1801 76.3172 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z",1,"fill-color-primary-darker"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z",1,"fill-color-17"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z",1,"fill-color-17"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint0_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint2_linear)"],["d","M76.1507 25.3014C80.6522 25.3014 84.3014 21.6522 84.3014 17.1507C84.3014 12.6492 80.6522 9 76.1507 9C71.6492 9 68 12.6492 68 17.1507C68 21.6522 71.6492 25.3014 76.1507 25.3014Z",1,"fill-color-17"],["d","M193.435 36.7899H142.709V35.7444H119.709V36.7899H68.7744C67.8644 36.7899 66.9917 37.1514 66.3482 37.7949C65.7048 38.4384 65.3433 39.3111 65.3433 40.2211V109.679C65.3433 110.589 65.7048 111.462 66.3482 112.106C66.9917 112.749 67.8644 113.111 68.7744 113.111H193.435C195.33 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.345 36.7899 193.435 36.7899Z",1,"fill-color-19"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.284 111.856H69.9434V42.8538L157.284 111.856Z","fill","black"],["d","M89.0832 106.693C95.577 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.577 83.1766 89.0832 83.1766C82.5894 83.1766 77.3252 88.4408 77.3252 94.9346C77.3252 101.428 82.5894 106.693 89.0832 106.693Z",1,"fill-color-25"],["d","M91.7005 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7005 103.772ZM91.7005 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7005 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7005 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z",1,"fill-color-19"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z",1,"fill-color-19"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z",1,"fill-color-19"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z",1,"fill-color-19"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z",1,"fill-color-19"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z",1,"fill-color-19"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z",1,"fill-color-25"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.115C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.261 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.042 109.589 156.01 109.621C155.978 109.653 155.96 109.696 155.96 109.741V110.601H153.402V109.741C153.402 109.696 153.384 109.653 153.352 109.621C153.32 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.089 109.589 114.057 109.621C114.025 109.653 114.007 109.696 114.007 109.741V110.601H111.449V109.741C111.449 109.696 111.431 109.653 111.399 109.621C111.367 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.148 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.4642V109.741C97.4642 109.696 97.4462 109.653 97.4142 109.621C97.3822 109.589 97.3388 109.571 97.2936 109.571H93.2006C93.1554 109.571 93.112 109.589 93.08 109.621C93.048 109.653 93.0301 109.696 93.0301 109.741V110.601H90.472V109.741C90.472 109.696 90.454 109.653 90.422 109.621C90.39 109.589 90.3467 109.571 90.3014 109.571H86.2085C86.1632 109.571 86.1198 109.589 86.0879 109.621C86.0559 109.653 86.0379 109.696 86.0379 109.741V110.601H83.4798V109.741C83.4798 109.696 83.4618 109.653 83.4299 109.621C83.3979 109.589 83.3545 109.571 83.3093 109.571H79.2163C79.171 109.571 79.1277 109.589 79.0957 109.621C79.0637 109.653 79.0457 109.696 79.0457 109.741V110.601H76.4876V109.741C76.4876 109.696 76.4697 109.653 76.4377 109.621C76.4057 109.589 76.3623 109.571 76.3171 109.571H72.2241C72.1789 109.571 72.1355 109.589 72.1035 109.621C72.0715 109.653 72.0536 109.696 72.0536 109.741V110.601H64.2087C61.9482 110.601 60.1157 112.434 60.1157 114.694V116.545C60.1157 118.806 61.9482 120.638 64.2087 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8456 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9773 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1718L88.0762 87.0663C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5347 96.5996L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M42 75H9V91H42V75Z",1,"fill-color-17"],["d","M42 42H9V58H42V42Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint3_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint4_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint5_linear)"],["d","M205.185 113.031H193.247V112.171C193.247 112.125 193.229 112.082 193.197 112.05C193.165 112.018 193.121 112 193.076 112H188.983C188.938 112 188.895 112.018 188.863 112.05C188.831 112.082 188.813 112.125 188.813 112.171V113.031H186.254V112.171C186.254 112.125 186.237 112.082 186.205 112.05C186.173 112.018 186.129 112 186.084 112H181.991C181.946 112 181.902 112.018 181.87 112.05C181.838 112.082 181.82 112.125 181.82 112.171V113.031H179.262V112.171C179.262 112.125 179.244 112.082 179.212 112.05C179.18 112.018 179.137 112 179.092 112H174.999C174.954 112 174.91 112.018 174.878 112.05C174.846 112.082 174.828 112.125 174.828 112.171V113.031H172.27V112.171C172.27 112.125 172.252 112.082 172.22 112.05C172.188 112.018 172.145 112 172.1 112H168.007C167.961 112 167.918 112.018 167.886 112.05C167.854 112.082 167.836 112.125 167.836 112.171V113.031H165.278V112.171C165.278 112.125 165.26 112.082 165.228 112.05C165.196 112.018 165.153 112 165.107 112H161.014C160.969 112 160.926 112.018 160.894 112.05C160.862 112.082 160.844 112.125 160.844 112.171V113.031H158.286V112.171C158.286 112.125 158.268 112.082 158.236 112.05C158.204 112.018 158.16 112 158.115 112H154.022C153.977 112 153.934 112.018 153.902 112.05C153.87 112.082 153.852 112.125 153.852 112.171V113.031H151.294V112.171C151.294 112.125 151.276 112.082 151.244 112.05C151.212 112.018 151.168 112 151.123 112H119.061C119.016 112 118.973 112.018 118.941 112.05C118.909 112.082 118.891 112.125 118.891 112.171V113.031H116.333V112.171C116.333 112.125 116.315 112.082 116.283 112.05C116.251 112.018 116.207 112 116.162 112H112.069C112.024 112 111.981 112.018 111.949 112.05C111.917 112.082 111.899 112.125 111.899 112.171V113.031H109.341V112.171C109.341 112.125 109.323 112.082 109.291 112.05C109.259 112.018 109.215 112 109.17 112H105.077C105.032 112 104.988 112.018 104.956 112.05C104.924 112.082 104.907 112.125 104.907 112.171V113.031H102.348V112.171C102.348 112.125 102.33 112.082 102.298 112.05C102.266 112.018 102.223 112 102.178 112H98.0849C98.0397 112 97.9963 112.018 97.9643 112.05C97.9323 112.082 97.9144 112.125 97.9144 112.171V113.031H95.3563V112.171C95.3563 112.125 95.3383 112.082 95.3063 112.05C95.2743 112.018 95.2309 112 95.1857 112H91.0927C91.0475 112 91.0041 112.018 90.9721 112.05C90.9402 112.082 90.9222 112.125 90.9222 112.171V113.031H88.3641V112.171C88.3641 112.125 88.3461 112.082 88.3141 112.05C88.2822 112.018 88.2388 112 88.1935 112H84.1006C84.0553 112 84.0119 112.018 83.98 112.05C83.948 112.082 83.93 112.125 83.93 112.171V113.031H81.3719V112.171C81.3719 112.125 81.3539 112.082 81.322 112.05C81.29 112.018 81.2466 112 81.2014 112H77.1084C77.0632 112 77.0198 112.018 76.9878 112.05C76.9558 112.082 76.9378 112.125 76.9379 112.171V113.031H69.093C66.8325 113.031 65 114.863 65 117.124V118.974C65 121.235 66.8325 123.067 69.093 123.067H205.185C207.445 123.067 209.277 121.235 209.277 118.974V117.124C209.277 114.863 207.445 113.031 205.185 113.031Z",1,"fill-color-19"],["d","M78.375 20.625C78.375 19.5938 77.5312 18.75 76.5 18.75C75.4453 18.75 74.625 19.5938 74.625 20.625C74.625 21.6797 75.4453 22.5 76.5 22.5C77.5312 22.5 78.375 21.6797 78.375 20.625ZM74.8359 11.1094L75.1406 17.4844C75.1641 17.7656 75.4219 18 75.7031 18H77.2734C77.5547 18 77.8125 17.7656 77.8359 17.4844L78.1406 11.1094C78.1641 10.7812 77.9062 10.5 77.5781 10.5H75.3984C75.0703 10.5 74.8125 10.7812 74.8359 11.1094Z","fill","white"],["id","paint0_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["stop-color","#808080","stop-opacity","0.25"],["offset","0.54","stop-color","#808080","stop-opacity","0.12"],["offset","1","stop-color","#808080","stop-opacity","0.1"],["id","paint1_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["id","paint3_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["id","paint4_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint5_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 370 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M327.488 99.9755C350.953 99.9755 369.975 80.9531 369.975 57.4877C369.975 34.0224 350.953 15 327.488 15C304.022 15 285 34.0224 285 57.4877C285 80.9531 304.022 99.9755 327.488 99.9755Z",1,"fill-color-25"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z",1,"fill-color-19"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z",1,"fill-color-primary-lighter"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z",1,"fill-color-19"],["d","M265 57.3624H357.392V120.307H265V57.3624Z",1,"fill-color-22"],["d","M362.545 50H271.626C271.016 50.0009 270.521 50.495 270.521 51.1048V112.577C270.521 112.87 270.638 113.151 270.845 113.358C271.052 113.565 271.333 113.681 271.626 113.681H362.545C362.838 113.681 363.119 113.565 363.326 113.358C363.533 113.151 363.65 112.87 363.65 112.577V51.1048C363.65 50.495 363.155 50.0009 362.545 50ZM362.913 112.577C362.913 112.674 362.875 112.768 362.806 112.837C362.736 112.907 362.643 112.945 362.545 112.945H271.626C271.528 112.945 271.434 112.907 271.365 112.837C271.296 112.768 271.258 112.674 271.258 112.577V51.1048C271.258 50.9015 271.423 50.7365 271.626 50.7365H362.545C362.748 50.7365 362.913 50.9015 362.913 51.1048V112.577Z",1,"fill-color-19"],["d","M316.364 93.4359H275.844C275.547 93.4359 275.307 93.6766 275.307 93.9735V97.6835C275.307 97.9804 275.547 98.2211 275.844 98.2211H316.364C316.661 98.2211 316.901 97.9804 316.901 97.6835V93.9735C316.901 93.6766 316.661 93.4359 316.364 93.4359Z",1,"fill-color-19"],["d","M354.814 89.3873H341.565C341.272 89.3873 340.991 89.5036 340.784 89.7108C340.577 89.918 340.46 90.199 340.46 90.492V100.798C340.46 101.091 340.577 101.372 340.784 101.579C340.991 101.786 341.272 101.903 341.565 101.903H354.814C355.107 101.903 355.388 101.786 355.595 101.579C355.803 101.372 355.919 101.091 355.919 100.798V90.492C355.919 90.199 355.803 89.918 355.595 89.7108C355.388 89.5036 355.107 89.3873 354.814 89.3873ZM355.182 100.798C355.182 101.001 355.017 101.166 354.814 101.166H341.565C341.362 101.166 341.197 101.001 341.197 100.798V90.492C341.196 90.3943 341.235 90.3004 341.304 90.2313C341.373 90.1622 341.467 90.1235 341.565 90.1238H354.814C354.912 90.1235 355.006 90.1622 355.075 90.2313C355.144 90.3004 355.183 90.3943 355.182 90.492V100.798Z",1,"fill-color-19"],["d","M352.168 91.7653H344.211C343.914 91.7653 343.673 92.006 343.673 92.3029V93.0965C343.673 93.3934 343.914 93.6341 344.211 93.6341H352.168C352.465 93.6341 352.706 93.3934 352.706 93.0965V92.3029C352.706 92.006 352.465 91.7653 352.168 91.7653Z",1,"fill-color-19"],["d","M352.168 94.71H344.211C343.914 94.71 343.673 94.9507 343.673 95.2476V96.0412C343.673 96.3381 343.914 96.5788 344.211 96.5788H352.168C352.465 96.5788 352.706 96.3381 352.706 96.0412V95.2476C352.706 94.9507 352.465 94.71 352.168 94.71Z",1,"fill-color-19"],["d","M352.168 97.6548H344.211C343.914 97.6548 343.673 97.8955 343.673 98.1924V98.986C343.673 99.2829 343.914 99.5236 344.211 99.5236H352.168C352.465 99.5236 352.706 99.2829 352.706 98.986V98.1924C352.706 97.8955 352.465 97.6548 352.168 97.6548Z",1,"fill-color-19"],["d","M295.014 54.4177H276.949C276.652 54.4177 276.411 54.6584 276.411 54.9553V61.9782C276.411 62.2752 276.652 62.5158 276.949 62.5158H295.014C295.311 62.5158 295.552 62.2752 295.552 61.9782V54.9553C295.552 54.6584 295.311 54.4177 295.014 54.4177Z",1,"fill-color-19"],["d","M312.293 105.198C319.455 105.198 325.261 99.3917 325.261 92.2295C325.261 85.0672 319.455 79.2611 312.293 79.2611C305.131 79.2611 299.325 85.0672 299.325 92.2295C299.325 99.3917 305.131 105.198 312.293 105.198Z",1,"fill-color-25"],["d","M315.18 101.976C308.655 101.976 302.773 98.0462 300.276 92.0183C297.78 85.9904 299.16 79.052 303.773 74.4384C308.387 69.8249 315.325 68.4448 321.353 70.9416C327.381 73.4384 331.311 79.3205 331.311 85.8451C331.301 94.75 324.085 101.966 315.18 101.976ZM315.18 69.9245C306.387 69.9245 299.259 77.0524 299.259 85.8451C299.259 94.6377 306.387 101.766 315.18 101.766C323.973 101.766 331.1 94.6377 331.1 85.8451C331.09 77.0565 323.968 69.9345 315.18 69.9245Z",1,"fill-color-19"],["d","M309.677 100.883C309.936 100.948 310.216 100.873 310.41 100.673L318.163 92.664C318.571 92.2458 318.371 91.5387 317.802 91.3966L314.249 90.5107L316.557 86.8411C316.797 86.4038 316.558 85.8537 316.074 85.7332L311.64 84.6277C311.271 84.5355 310.888 84.7313 310.748 85.0854L307.92 92.2295C307.751 92.6583 307.998 93.1384 308.444 93.2497L312.099 94.161L309.186 99.7958C308.959 100.236 309.206 100.766 309.677 100.883Z",1,"fill-color-21"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z",1,"fill-color-primary-darker"],["d","M76.3175 90.6426C80.819 90.6426 84.4682 86.9934 84.4682 82.4919C84.4682 77.9904 80.819 74.3412 76.3175 74.3412C71.8159 74.3412 68.1667 77.9904 68.1667 82.4919C68.1667 86.9934 71.8159 90.6426 76.3175 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3175 58.1801C80.819 58.1801 84.4682 54.531 84.4682 50.0294C84.4682 45.5279 80.819 41.8787 76.3175 41.8787C71.8159 41.8787 68.1667 45.5279 68.1667 50.0294C68.1667 54.531 71.8159 58.1801 76.3175 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-primary-darker"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-17"],["d","M76.7868 26.5736C81.6396 26.5736 85.5736 22.6396 85.5736 17.7868C85.5736 12.934 81.6396 9 76.7868 9C71.934 9 68 12.934 68 17.7868C68 22.6396 71.934 26.5736 76.7868 26.5736Z","fill","url(#paint0_linear)"],["d","M76.3174 59.0334C81.1702 59.0334 85.1042 55.0994 85.1042 50.2466C85.1042 45.3938 81.1702 41.4598 76.3174 41.4598C71.4646 41.4598 67.5306 45.3938 67.5306 50.2466C67.5306 55.0994 71.4646 59.0334 76.3174 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3174 91.4958C81.1702 91.4958 85.1042 87.5618 85.1042 82.709C85.1042 77.8562 81.1702 73.9222 76.3174 73.9222C71.4646 73.9222 67.5306 77.8562 67.5306 82.709C67.5306 87.5618 71.4646 91.4958 76.3174 91.4958Z","fill","url(#paint2_linear)"],["d","M193.434 36.7899H142.709V35.7444H119.708V36.7899H68.7742C67.8642 36.7899 66.9915 37.1514 66.348 37.7949C65.7045 38.4384 65.343 39.3111 65.343 40.2211V109.679C65.343 110.589 65.7045 111.462 66.348 112.106C66.9915 112.749 67.8642 113.111 68.7742 113.111H193.434C195.329 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.344 36.7899 193.434 36.7899Z",1,"fill-color-19"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.283 111.856H69.9432V42.8538L157.283 111.856Z","fill","black"],["d","M89.0829 106.693C95.5767 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.5767 83.1766 89.0829 83.1766C82.5892 83.1766 77.325 88.4408 77.325 94.9346C77.325 101.428 82.5892 106.693 89.0829 106.693Z",1,"fill-color-25"],["d","M91.7004 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7004 103.772ZM91.7004 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7004 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7004 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z",1,"fill-color-19"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.114C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.26 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.041 109.589 156.009 109.621C155.977 109.653 155.96 109.696 155.96 109.741V110.601H153.401V109.741C153.401 109.696 153.383 109.653 153.351 109.621C153.319 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.088 109.589 114.056 109.621C114.024 109.653 114.006 109.696 114.006 109.741V110.601H111.448V109.741C111.448 109.696 111.43 109.653 111.398 109.621C111.366 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.147 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.464V109.741C97.464 109.696 97.4461 109.653 97.4141 109.621C97.3821 109.589 97.3387 109.571 97.2935 109.571H93.2005C93.1553 109.571 93.1119 109.589 93.0799 109.621C93.0479 109.653 93.03 109.696 93.03 109.741V110.601H90.4719V109.741C90.4719 109.696 90.4539 109.653 90.4219 109.621C90.3899 109.589 90.3465 109.571 90.3013 109.571H86.2083C86.1631 109.571 86.1197 109.589 86.0877 109.621C86.0558 109.653 86.0378 109.696 86.0378 109.741V110.601H83.4797V109.741C83.4797 109.696 83.4617 109.653 83.4297 109.621C83.3978 109.589 83.3544 109.571 83.3091 109.571H79.2162C79.1709 109.571 79.1276 109.589 79.0956 109.621C79.0636 109.653 79.0456 109.696 79.0456 109.741V110.601H76.4875V109.741C76.4875 109.696 76.4695 109.653 76.4376 109.621C76.4056 109.589 76.3622 109.571 76.317 109.571H72.224C72.1788 109.571 72.1354 109.589 72.1034 109.621C72.0714 109.653 72.0535 109.696 72.0535 109.741V110.601H64.2086C61.9481 110.601 60.1156 112.434 60.1156 114.694V116.545C60.1156 118.806 61.9481 120.638 64.2086 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8457 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9774 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1719L88.0762 87.0664C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5348 96.5997L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M78.125 21.625C78.125 20.5938 77.2812 19.75 76.25 19.75C75.1953 19.75 74.375 20.5938 74.375 21.625C74.375 22.6797 75.1953 23.5 76.25 23.5C77.2812 23.5 78.125 22.6797 78.125 21.625ZM74.5859 12.1094L74.8906 18.4844C74.9141 18.7656 75.1719 19 75.4531 19H77.0234C77.3047 19 77.5625 18.7656 77.5859 18.4844L77.8906 12.1094C77.9141 11.7812 77.6562 11.5 77.3281 11.5H75.1484C74.8203 11.5 74.5625 11.7812 74.5859 12.1094Z","fill","white"],["id","paint0_linear","x1","76.7868","y1","26.5736","x2","76.7868","y2","9","gradientUnits","userSpaceOnUse"],["id","paint1_linear","x1","76.3174","y1","59.0334","x2","76.3174","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3174","y1","91.4958","x2","76.3174","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 153 200","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary-lighter"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M122.399 37H32.25V137.616H122.399V37Z",1,"fill-color-10"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z",1,"fill-color-primary-darker"],["d","M108.567 127.643C113.069 127.643 116.718 123.993 116.718 119.492C116.718 114.99 113.069 111.341 108.567 111.341C104.066 111.341 100.417 114.99 100.417 119.492C100.417 123.993 104.066 127.643 108.567 127.643Z",1,"fill-color-primary-darker"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z",1,"fill-color-primary-darker"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.531 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.531 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M74.5 112H40.5V128H74.5V112Z",1,"fill-color-17"],["d","M74.5 79H40.5V95H74.5V79Z",1,"fill-color-17"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z",1,"fill-color-17"],["d","M108.567 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.567 45.778C103.715 45.778 99.7806 49.712 99.7806 54.5648C99.7806 59.4176 103.715 63.3516 108.567 63.3516Z","fill","url(#paint0_linear)"],["d","M108.567 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.567 78.4598C103.715 78.4598 99.7806 82.3938 99.7806 87.2466C99.7806 92.0994 103.715 96.0334 108.567 96.0334Z",1,"fill-color-17"],["d","M108.567 128.496C113.42 128.496 117.354 124.562 117.354 119.709C117.354 114.856 113.42 110.922 108.567 110.922C103.715 110.922 99.7806 114.856 99.7806 119.709C99.7806 124.562 103.715 128.496 108.567 128.496Z",1,"fill-color-17"],["d","M108.401 62.3014C112.902 62.3014 116.551 58.6522 116.551 54.1507C116.551 49.6492 112.902 46 108.401 46C103.899 46 100.25 49.6492 100.25 54.1507C100.25 58.6522 103.899 62.3014 108.401 62.3014Z",1,"fill-color-17"],["d","M110.625 57.625C110.625 56.5938 109.781 55.75 108.75 55.75C107.695 55.75 106.875 56.5938 106.875 57.625C106.875 58.6797 107.695 59.5 108.75 59.5C109.781 59.5 110.625 58.6797 110.625 57.625ZM107.086 48.1094L107.391 54.4844C107.414 54.7656 107.672 55 107.953 55H109.523C109.805 55 110.062 54.7656 110.086 54.4844L110.391 48.1094C110.414 47.7812 110.156 47.5 109.828 47.5H107.648C107.32 47.5 107.062 47.7812 107.086 48.1094Z","fill","white"],["d","M141.711 111C141.008 111 140.656 111.859 141.164 112.367L146.164 117.367C146.477 117.68 146.984 117.68 147.297 117.367L152.297 112.367C152.805 111.859 152.453 111 151.75 111H141.711Z",1,"fill-color-17"],["d","M84.25 185.461C84.25 184.758 83.3906 184.406 82.8828 184.914L77.8828 189.914C77.5703 190.227 77.5703 190.734 77.8828 191.047L82.8828 196.047C83.3906 196.555 84.25 196.203 84.25 195.5V185.461Z",1,"fill-color-primary-darker"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-primary-darker"],["d","M133.75 174C142.31 174 149.25 167.06 149.25 158.5C149.25 149.94 142.31 143 133.75 143C125.19 143 118.25 149.94 118.25 158.5C118.25 167.06 125.19 174 133.75 174Z",1,"fill-color-25"],["d","M129.872 169.64C130.214 169.726 130.584 169.628 130.84 169.363L141.093 158.771C141.633 158.218 141.369 157.283 140.616 157.095L135.917 155.924L138.969 151.071C139.286 150.493 138.97 149.765 138.331 149.606L132.468 148.144C131.979 148.022 131.473 148.281 131.287 148.749L127.548 158.197C127.324 158.764 127.65 159.399 128.241 159.546L133.074 160.751L129.222 168.203C128.921 168.785 129.249 169.485 129.872 169.64Z",1,"fill-color-21"],["d","M19.75 174C28.3104 174 35.25 167.06 35.25 158.5C35.25 149.94 28.3104 143 19.75 143C11.1896 143 4.25 149.94 4.25 158.5C4.25 167.06 11.1896 174 19.75 174Z",1,"fill-color-25"],["d","M19.3208 167.769C23.2973 167.769 26.5208 164.545 26.5208 160.569C26.5208 156.592 23.2973 153.369 19.3208 153.369C15.3444 153.369 12.1208 156.592 12.1208 160.569C12.1208 164.545 15.3444 167.769 19.3208 167.769Z",1,"fill-color-22"],["d","M13.7656 153.188L12.4676 152.716C12.4676 152.716 15.1815 150.002 18.9572 150.238L17.8953 149.177C17.8953 149.177 20.4911 148.233 22.851 150.71C24.0915 152.013 25.5268 153.544 26.4216 155.269H27.8116L27.2314 156.429L29.2619 157.589L27.1778 157.381C27.3752 158.383 27.3073 159.418 26.9807 160.386L26.5087 161.684C26.5087 161.684 24.6208 157.908 24.6208 157.436V158.616C24.6208 158.616 23.3229 157.554 23.3229 156.846L22.615 157.672L22.261 156.374L17.8953 157.672L18.6032 156.61L15.8894 156.964L16.9514 155.666C16.9514 155.666 13.8836 157.2 13.7656 158.498C13.6476 159.796 12.1137 161.448 12.1137 161.448L11.4058 160.268C11.4058 160.268 10.3438 154.958 13.7656 153.188Z",1,"fill-color-21"],["d","M76.75 31C68.1896 31 61.25 24.0604 61.25 15.5C61.25 6.93959 68.1896 0 76.75 0C85.3104 0 92.25 6.93959 92.25 15.5C92.25 24.0604 85.3104 31 76.75 31Z",1,"fill-color-25"],["d","M77.1792 24.7687C73.2027 24.7687 69.9792 21.5452 69.9792 17.5687C69.9792 13.5923 73.2027 10.3687 77.1792 10.3687C81.1556 10.3687 84.3792 13.5923 84.3792 17.5687C84.3792 21.5452 81.1556 24.7687 77.1792 24.7687Z",1,"fill-color-22"],["d","M82.7344 10.1883L84.0324 9.71628C84.0324 9.71628 81.3185 7.00246 77.5428 7.23845L78.6047 6.17651C78.6047 6.17651 76.0089 5.23258 73.649 7.71041C72.4085 9.01295 70.9732 10.544 70.0784 12.2687H68.6884L69.2686 13.429L67.2381 14.5893L69.3222 14.3808C69.1248 15.3825 69.1927 16.4184 69.5193 17.3858L69.9913 18.6837C69.9913 18.6837 71.8792 14.9079 71.8792 14.4359V15.6159C71.8792 15.6159 73.1771 14.5539 73.1771 13.846L73.885 14.6719L74.239 13.374L78.6047 14.6719L77.8968 13.61L80.6106 13.964L79.5486 12.6661C79.5486 12.6661 82.6164 14.2 82.7344 15.4979C82.8524 16.7958 84.3863 18.4477 84.3863 18.4477L85.0942 17.2678C85.0942 17.2678 86.1562 11.9581 82.7344 10.1883Z",1,"fill-color-21"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.786 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.542 141.365 153.936Z",1,"fill-color-21"],["d","M140.968 160.376C141.521 160.376 141.968 159.928 141.968 159.376C141.968 158.823 141.521 158.376 140.968 158.376C140.416 158.376 139.968 158.823 139.968 159.376C139.968 159.928 140.416 160.376 140.968 160.376Z",1,"fill-color-22"],["d","M129.168 160.376C129.721 160.376 130.168 159.928 130.168 159.376C130.168 158.823 129.721 158.376 129.168 158.376C128.616 158.376 128.168 158.823 128.168 159.376C128.168 159.928 128.616 160.376 129.168 160.376Z",1,"fill-color-22"],["d","M135.068 165.276C138.272 165.276 140.868 162.679 140.868 159.476C140.868 156.272 138.272 153.676 135.068 153.676C131.865 153.676 129.268 156.272 129.268 159.476C129.268 162.679 131.865 165.276 135.068 165.276Z",1,"fill-color-22"],["d","M140.384 153.575L136.049 151.304L130.062 152.233L128.824 157.704L131.907 157.585L132.768 155.576V157.552L134.191 157.498L135.017 154.298L135.533 157.704L140.591 157.601L140.384 153.575Z",1,"fill-color-21"],["d","M79.4007 199.301C83.9022 199.301 87.5514 195.652 87.5514 191.151C87.5514 186.649 83.9022 183 79.4007 183C74.8992 183 71.25 186.649 71.25 191.151C71.25 195.652 74.8992 199.301 79.4007 199.301Z",1,"fill-color-17"],["d","M82.9375 189.25H80.2188L81.2266 186.227C81.3203 185.852 81.0391 185.5 80.6875 185.5H77.3125C77.0313 185.5 76.7735 185.711 76.75 185.992L76 191.617C75.9531 191.969 76.211 192.25 76.5625 192.25H79.3281L78.25 196.82C78.1797 197.172 78.4375 197.5 78.7891 197.5C79 197.5 79.1875 197.406 79.2813 197.219L83.4063 190.094C83.6406 189.742 83.3594 189.25 82.9375 189.25Z","fill","white"],["d","M106.555 91.8125C106.789 92.0469 107.188 92.0469 107.422 91.8125L114.312 84.9219C114.547 84.6875 114.547 84.2891 114.312 84.0547L113.469 83.2109C113.234 82.9766 112.859 82.9766 112.625 83.2109L107 88.8359L104.352 86.2109C104.117 85.9766 103.742 85.9766 103.508 86.2109L102.664 87.0547C102.43 87.2891 102.43 87.6875 102.664 87.9219L106.555 91.8125Z","fill","white"],["d","M106.555 124.812C106.789 125.047 107.188 125.047 107.422 124.812L114.312 117.922C114.547 117.688 114.547 117.289 114.312 117.055L113.469 116.211C113.234 115.977 112.859 115.977 112.625 116.211L107 121.836L104.352 119.211C104.117 118.977 103.742 118.977 103.508 119.211L102.664 120.055C102.43 120.289 102.43 120.688 102.664 120.922L106.555 124.812Z","fill","white"],["id","paint0_linear","x1","108.567","y1","63.3516","x2","108.567","y2","45.778","gradientUnits","userSpaceOnUse"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M120.908 104.177H33.7393V135.425H120.908V104.177Z","fill","white"],["d","M120.908 71.7129H33.7393V102.96H120.908V71.7129Z","fill","white"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.5309 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.5309 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M76 112H41V128H76V112Z",1,"fill-color-17"],["d","M70 79H41V95H70V79Z",1,"fill-color-17"],["d","M70 47H41V63H70V47Z",1,"fill-color-17"],["d","M108.568 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.568 45.778C103.715 45.778 99.7808 49.712 99.7808 54.5648C99.7808 59.4176 103.715 63.3516 108.568 63.3516Z","fill","url(#paint0_linear)"],["d","M108.568 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.568 78.4598C103.715 78.4598 99.7808 82.3938 99.7808 87.2466C99.7808 92.0994 103.715 96.0334 108.568 96.0334Z",1,"fill-color-17"],["d","M108.568 129.496C113.42 129.496 117.354 125.562 117.354 120.709C117.354 115.856 113.42 111.922 108.568 111.922C103.715 111.922 99.7808 115.856 99.7808 120.709C99.7808 125.562 103.715 129.496 108.568 129.496Z",1,"fill-color-17"],["d","M106.805 91.8125C107.039 92.0469 107.438 92.0469 107.672 91.8125L114.562 84.9219C114.797 84.6875 114.797 84.2891 114.562 84.0547L113.719 83.2109C113.484 82.9766 113.109 82.9766 112.875 83.2109L107.25 88.8359L104.602 86.2109C104.367 85.9766 103.992 85.9766 103.758 86.2109L102.914 87.0547C102.68 87.2891 102.68 87.6875 102.914 87.9219L106.805 91.8125Z","fill","white"],["d","M106.805 58.8125C107.039 59.0469 107.438 59.0469 107.672 58.8125L114.562 51.9219C114.797 51.6875 114.797 51.2891 114.562 51.0547L113.719 50.2109C113.484 49.9766 113.109 49.9766 112.875 50.2109L107.25 55.8359L104.602 53.2109C104.367 52.9766 103.992 52.9766 103.758 53.2109L102.914 54.0547C102.68 54.2891 102.68 54.6875 102.914 54.9219L106.805 58.8125Z","fill","white"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-17"],["d","M77.1792 24.7688C73.2027 24.7688 69.9792 21.5452 69.9792 17.5688C69.9792 13.5923 73.2027 10.3688 77.1792 10.3688C81.1556 10.3688 84.3792 13.5923 84.3792 17.5688C84.3792 21.5452 81.1556 24.7688 77.1792 24.7688Z",1,"fill-color-22"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.785 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.543 141.365 153.936Z",1,"fill-color-21"],["d","M82.9374 189.25H80.2186L81.2265 186.227C81.3202 185.852 81.039 185.5 80.6874 185.5H77.3124C77.0311 185.5 76.7733 185.711 76.7499 185.992L75.9999 191.617C75.953 191.969 76.2108 192.25 76.5624 192.25H79.328L78.2499 196.82C78.1796 197.172 78.4374 197.5 78.789 197.5C78.9999 197.5 79.1874 197.406 79.2811 197.219L83.4061 190.094C83.6405 189.742 83.3593 189.25 82.9374 189.25Z","fill","white"],["id","paint0_linear","x1","108.568","y1","63.3516","x2","108.568","y2","45.778","gradientUnits","userSpaceOnUse"]],template:function(a,o){if(1&a&&t.DNE(0,Vs,1,0,"ng-container",5)(1,Os,47,5,"ng-template",null,0,t.C5r)(3,Hs,96,5,"ng-template",null,1,t.C5r)(5,Ys,68,5,"ng-template",null,2,t.C5r)(7,Xs,53,5,"ng-template",null,3,t.C5r)(9,Us,52,5,"ng-template",null,4,t.C5r),2&a){const l=t.sdS(2),m=t.sdS(4),u=t.sdS(6),T=t.sdS(8),F=t.sdS(10);t.Y8G("ngTemplateOutlet",1===o.stepNumber?l:2===o.stepNumber?m:3===o.stepNumber?u:4===o.stepNumber?T:F)}},dependencies:[d.YU,d.T3,x.Lc,x.dh,_.DJ,_.sA,_.UI,S.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:10%;min-height:10%;max-width:50%;margin:auto}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:50%;margin:auto}"],data:{animation:[$s.k]}}))}return i(),s})();const Js=["stepper"],qs=()=>[1,2,3,4,5],Qs=(i,s)=>({"dot-primary":i,"dot-primary-lighter":s});function Zs(i,s){if(1&i&&t.EFF(0),2&i){const e=t.XpG(2);t.JRh(e.inputFormLabel)}}function Ws(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function Ks(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount must be a positive number."),t.k0s())}function tl(i,s){if(1&i&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.SpI("Amount must be less than or equal to ",null==e.selChannel?null:e.selChannel.toLocal,".")}}function el(i,s){if(1&i&&(t.j41(0,"mat-option",50),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.Y8G("value",e),t.R7$(),t.Lme("",e.alias," - ",e.shortChannelId)}}function nl(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer is required."),t.k0s())}function il(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Receive from Peer not found in the list."),t.k0s())}function al(i,s){1&i&&t.EFF(0,"Status")}function ol(i,s){1&i&&t.nrm(0,"mat-progress-bar",51)}function sl(i,s){if(1&i&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(""!==e.rebalanceStatus.invoice?"check":"close")}}function ll(i,s){1&i&&t.nrm(0,"mat-progress-bar",51)}function rl(i,s){if(1&i&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.rebalanceStatus.paymentRoute?"check":"close")}}function cl(i,s){if(1&i&&(t.j41(0,"span",42),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",e," ")}}function ml(i,s){if(1&i&&(t.j41(0,"div",7),t.DNE(1,cl,2,1,"span",53),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngForOf",e.rebalanceStatus.paymentRoute.split(","))}}function pl(i,s){1&i&&t.nrm(0,"mat-progress-bar",51)}function ul(i,s){if(1&i&&(t.j41(0,"mat-icon",52),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(!e.rebalanceStatus.paymentStatus||null!=e.rebalanceStatus.paymentStatus&&e.rebalanceStatus.paymentStatus.error?"close":"check")}}function dl(i,s){1&i&&t.nrm(0,"div",7)}function hl(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",54),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onRestart())}),t.EFF(1,"Start Again"),t.k0s()}}function fl(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",7)(1,"mat-card-header",8)(2,"div",9)(3,"div",10)(4,"span",11),t.EFF(5,"Channel Rebalance"),t.k0s()(),t.j41(6,"div",12)(7,"button",13),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.showInfo())}),t.EFF(8,"?"),t.k0s(),t.j41(9,"button",14),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onClose())}),t.EFF(10,"X"),t.k0s()()()(),t.j41(11,"mat-card-content",15)(12,"div",7)(13,"div",16)(14,"div",17),t.nrm(15,"fa-icon",18),t.j41(16,"span"),t.EFF(17,"Circular Rebalance is a payment you make to *yourself* to affect a relative change in the balances of two channels. This is accomplished by sending payment out from the selected channel and receiving it back on the channel with the selected peer. Please note, you will be paying routing fee to balance the channels in this manner."),t.k0s()()(),t.j41(18,"div",19)(19,"p",20)(20,"strong"),t.EFF(21,"Channel Peer:\xa0"),t.k0s(),t.EFF(22),t.nI1(23,"titlecase"),t.k0s(),t.j41(24,"p",20)(25,"strong"),t.EFF(26,"Channel ID:\xa0"),t.k0s(),t.EFF(27),t.k0s()(),t.j41(28,"mat-vertical-stepper",21,3)(30,"mat-step",22)(31,"form",23),t.DNE(32,Zs,1,1,"ng-template",24),t.j41(33,"div",25)(34,"mat-form-field",26)(35,"mat-label"),t.EFF(36,"Amount"),t.k0s(),t.nrm(37,"input",27),t.j41(38,"mat-hint"),t.EFF(39),t.k0s(),t.j41(40,"span",28),t.EFF(41,"Sats"),t.k0s(),t.DNE(42,Ws,2,0,"mat-error",29)(43,Ks,2,0,"mat-error",29)(44,tl,2,1,"mat-error",29),t.k0s(),t.j41(45,"mat-form-field",30)(46,"mat-label"),t.EFF(47,"Receive from Peer"),t.k0s(),t.j41(48,"input",31),t.bIt("change",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSelectedPeerChanged())}),t.k0s(),t.j41(49,"mat-autocomplete",32,4),t.bIt("optionSelected",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onSelectedPeerChanged())}),t.DNE(51,el,2,3,"mat-option",33),t.nI1(52,"async"),t.k0s(),t.DNE(53,nl,2,0,"mat-error",29)(54,il,2,0,"mat-error",29),t.k0s()(),t.j41(55,"div",34)(56,"button",35),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onRebalance())}),t.EFF(57,"Rebalance"),t.k0s()()()(),t.j41(58,"mat-step",36)(59,"form",23),t.DNE(60,al,1,0,"ng-template",24),t.j41(61,"div",37),t.DNE(62,ol,1,0,"mat-progress-bar",38),t.j41(63,"mat-expansion-panel",39)(64,"mat-expansion-panel-header")(65,"mat-panel-title")(66,"span",40),t.EFF(67),t.DNE(68,sl,2,1,"mat-icon",41),t.k0s()()(),t.j41(69,"div",7)(70,"span",42),t.EFF(71),t.k0s()()(),t.DNE(72,ll,1,0,"mat-progress-bar",38),t.j41(73,"mat-expansion-panel",39)(74,"mat-expansion-panel-header")(75,"mat-panel-title")(76,"span",40),t.EFF(77),t.DNE(78,rl,2,1,"mat-icon",41),t.k0s()()(),t.DNE(79,ml,2,1,"div",5),t.k0s(),t.DNE(80,pl,1,0,"mat-progress-bar",38),t.j41(81,"mat-expansion-panel",43)(82,"mat-expansion-panel-header")(83,"mat-panel-title")(84,"span",40),t.EFF(85),t.DNE(86,ul,2,1,"mat-icon",41),t.k0s()()(),t.DNE(87,dl,1,0,"div",44),t.k0s()(),t.j41(88,"h4",45),t.EFF(89),t.k0s(),t.j41(90,"div",46),t.DNE(91,hl,2,0,"button",47),t.k0s()()()(),t.j41(92,"div",48)(93,"button",49),t.EFF(94,"Close"),t.k0s()()()()()}if(2&i){const e=t.sdS(50),n=t.XpG(),a=t.sdS(2);t.Y8G("@opacityAnimation",void 0),t.R7$(15),t.Y8G("icon",n.faInfoCircle),t.R7$(7),t.JRh(t.bMT(23,38,n.selChannel.alias)),t.R7$(5),t.JRh(n.selChannel.shortChannelId),t.R7$(),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",n.inputFormGroup)("editable",n.flgEditable),t.R7$(),t.Y8G("formGroup",n.inputFormGroup),t.R7$(6),t.Y8G("step",100),t.R7$(2),t.Lme("(Local Bal: ",null==n.selChannel?null:n.selChannel.toLocal,", Remaining: ",(null==n.selChannel?null:n.selChannel.toLocal)-(n.inputFormGroup.controls.rebalanceAmount.value?n.inputFormGroup.controls.rebalanceAmount.value:0),")"),t.R7$(3),t.Y8G("ngIf",null==n.inputFormGroup.controls.rebalanceAmount.errors?null:n.inputFormGroup.controls.rebalanceAmount.errors.required),t.R7$(),t.Y8G("ngIf",null==n.inputFormGroup.controls.rebalanceAmount.errors?null:n.inputFormGroup.controls.rebalanceAmount.errors.min),t.R7$(),t.Y8G("ngIf",null==n.inputFormGroup.controls.rebalanceAmount.errors?null:n.inputFormGroup.controls.rebalanceAmount.errors.max),t.R7$(4),t.Y8G("matAutocomplete",e),t.R7$(),t.Y8G("displayWith",n.displayFn),t.R7$(2),t.Y8G("ngForOf",t.bMT(52,40,n.filteredActiveChannels)),t.R7$(2),t.Y8G("ngIf",null==n.inputFormGroup.controls.selRebalancePeer.errors?null:n.inputFormGroup.controls.selRebalancePeer.errors.required),t.R7$(),t.Y8G("ngIf",null==n.inputFormGroup.controls.selRebalancePeer.errors?null:n.inputFormGroup.controls.selRebalancePeer.errors.notfound),t.R7$(4),t.Y8G("stepControl",n.statusFormGroup),t.R7$(),t.Y8G("formGroup",n.statusFormGroup),t.R7$(3),t.Y8G("ngIf",""===n.rebalanceStatus.invoice),t.R7$(5),t.JRh(""===n.rebalanceStatus.invoice?"Searching invoice...":n.rebalanceStatus.flgReusingInvoice?"Invoice re-used":"Invoice generated"),t.R7$(),t.Y8G("ngIf",""!==n.rebalanceStatus.invoice),t.R7$(3),t.JRh(n.rebalanceStatus.invoice),t.R7$(),t.Y8G("ngIf",!(null!=n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error||n.rebalanceStatus.paymentRoute||"pending"===(null==n.rebalanceStatus.paymentStatus?null:n.rebalanceStatus.paymentStatus.type))),t.R7$(5),t.JRh(null!=n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error?"Route failed":n.rebalanceStatus.paymentRoute?"Route used":"Searching route..."),t.R7$(),t.Y8G("ngIf",n.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("ngIf",""!==n.rebalanceStatus.paymentRoute),t.R7$(),t.Y8G("ngIf",!n.rebalanceStatus.paymentStatus),t.R7$(),t.Y8G("expanded",!!n.rebalanceStatus.paymentStatus),t.R7$(4),t.JRh(n.rebalanceStatus.paymentStatus&&"pending"!==(null==n.rebalanceStatus.paymentStatus?null:n.rebalanceStatus.paymentStatus.type)?null!=n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error?"Payment failed":"sent"===(null==n.rebalanceStatus.paymentStatus?null:n.rebalanceStatus.paymentStatus.type)?"Payment successful":"":"Payment status pending..."),t.R7$(),t.Y8G("ngIf",n.rebalanceStatus.paymentStatus&&"pending"!==(null==n.rebalanceStatus.paymentStatus?null:n.rebalanceStatus.paymentStatus.type)),t.R7$(),t.Y8G("ngIf",!n.rebalanceStatus.paymentStatus)("ngIfElse",a),t.R7$(2),t.JRh(n.rebalanceStatus.paymentStatus?n.rebalanceStatus.paymentStatus&&null!=n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error?"Rebalance Failed.":"Rebalance Successful.":""),t.R7$(2),t.Y8G("ngIf",n.rebalanceStatus.paymentStatus&&n.rebalanceStatus.paymentStatus.error),t.R7$(2),t.Y8G("mat-dialog-close",!1)}}function _l(i,s){1&i&&t.eu8(0)}function gl(i,s){if(1&i&&t.DNE(0,_l,1,0,"ng-container",55),2&i){const e=t.XpG(),n=t.sdS(4),a=t.sdS(6);t.Y8G("ngTemplateOutlet",e.rebalanceStatus.paymentStatus.error?n:a)}}function Cl(i,s){if(1&i&&(t.j41(0,"div",7)(1,"span",42),t.EFF(2),t.k0s()()),2&i){const e=t.XpG();t.R7$(2),t.SpI("Error: ",e.rebalanceStatus.paymentStatus.error)}}function yl(i,s){if(1&i&&(t.j41(0,"div",7)(1,"div",56)(2,"div",57)(3,"h4",58),t.EFF(4,"Total Fees (Sats)"),t.k0s(),t.j41(5,"span",42),t.EFF(6),t.k0s()(),t.j41(7,"div",57)(8,"h4",58),t.EFF(9,"Number of Hops"),t.k0s(),t.j41(10,"span",42),t.EFF(11),t.k0s()()(),t.nrm(12,"mat-divider",59),t.j41(13,"div",56)(14,"div",60)(15,"h4",58),t.EFF(16,"Payment Hash"),t.k0s(),t.j41(17,"span",42),t.EFF(18),t.k0s()()(),t.nrm(19,"mat-divider",59),t.j41(20,"div",56)(21,"div",60)(22,"h4",58),t.EFF(23,"Payment ID"),t.k0s(),t.j41(24,"span",42),t.EFF(25),t.k0s()()(),t.nrm(26,"mat-divider",59),t.j41(27,"div",56)(28,"div",60)(29,"h4",58),t.EFF(30,"Parent ID"),t.k0s(),t.j41(31,"span",42),t.EFF(32),t.k0s()()()()),2&i){let e;const n=t.XpG();t.R7$(6),t.JRh(n.rebalanceStatus.paymentStatus.feesPaid?n.rebalanceStatus.paymentStatus.feesPaid/1e3:0),t.R7$(5),t.JRh(n.rebalanceStatus.paymentRoute&&""!==n.rebalanceStatus.paymentRoute?null==(e=n.rebalanceStatus.paymentRoute.split(","))?null:e.length:0),t.R7$(7),t.JRh(n.rebalanceStatus.paymentHash),t.R7$(7),t.JRh(n.rebalanceStatus.paymentDetails.paymentId),t.R7$(7),t.JRh(n.rebalanceStatus.paymentDetails.parentId)}}function bl(i,s){if(1&i){const e=t.RV6();t.j41(0,"span",76),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onStepChanged(a))}),t.nrm(1,"p",77),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngClass",t.l_i(1,Qs,n.stepNumber===e,n.stepNumber!==e))}}function Fl(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",78),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onStepChanged(4))}),t.EFF(1,"Back"),t.k0s()}}function El(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",79),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,r.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function xl(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",80),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return a.flgShowInfo=!1,r.Njj(a.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function Ll(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",81),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onStepChanged(a.stepNumber-1))}),t.EFF(1,"Back"),t.k0s()}}function vl(i,s){if(1&i){const e=t.RV6();t.j41(0,"button",82),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onStepChanged(a.stepNumber+1))}),t.EFF(1,"Next"),t.k0s()}}function Sl(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",61)(1,"div",62)(2,"mat-card-header",63)(3,"div",64),t.nrm(4,"span",11),t.k0s(),t.j41(5,"div",65)(6,"button",14),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return a.flgShowInfo=!1,r.Njj(a.stepNumber=1)}),t.EFF(7,"X"),t.k0s()()(),t.j41(8,"mat-card-content",66)(9,"rtl-ecl-channel-rebalance-infographics",67),t.mxI("stepNumberChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.stepNumber,a)||(o.stepNumber=a),r.Njj(a)}),t.k0s()(),t.j41(10,"div",68),t.DNE(11,bl,2,4,"span",69),t.k0s(),t.j41(12,"div",70),t.DNE(13,Fl,2,0,"button",71)(14,El,2,0,"button",72)(15,xl,2,0,"button",73)(16,Ll,2,0,"button",74)(17,vl,2,0,"button",75),t.k0s()()()}if(2&i){const e=t.XpG();t.Y8G("@opacityAnimation",void 0),t.R7$(9),t.Y8G("animationDirection",e.animationDirection),t.R50("stepNumber",e.stepNumber),t.R7$(2),t.Y8G("ngForOf",t.lJ4(9,qs)),t.R7$(2),t.Y8G("ngIf",5===e.stepNumber),t.R7$(),t.Y8G("ngIf",5===e.stepNumber),t.R7$(),t.Y8G("ngIf",e.stepNumber<5),t.R7$(),t.Y8G("ngIf",e.stepNumber>1&&e.stepNumber<5),t.R7$(),t.Y8G("ngIf",e.stepNumber<5)}}let Rl=(()=>{var i;class s{constructor(n,a,o,l,m,u,T){this.dialogRef=n,this.data=a,this.logger=o,this.dataService=l,this.formBuilder=m,this.store=u,this.decimalPipe=T,this.faInfoCircle=E.iW_,this.information={},this.selChannel={},this.activeChannels=[],this.rebalanceStatus={flgReusingInvoice:!1,invoice:"",paymentRoute:"",paymentHash:"",paymentDetails:null,paymentStatus:null},this.inputFormLabel="Amount to rebalance",this.flgEditable=!0,this.flgShowInfo=!1,this.stepNumber=1,this.animationDirection="forward",this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){let n="",a="";this.information=this.data.message?.information||{},this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(o=>o.channelId!==this.selChannel.channelId&&o.toRemote&&o.toRemote>0)||[],this.activeChannels=this.activeChannels.sort((o,l)=>(n=o.alias?o.alias.toLowerCase():o.shortChannelId?o.shortChannelId.toLowerCase():"",a=l.alias?l.alias.toLowerCase():o.shortChannelId?o.shortChannelId.toLowerCase():"",na?1:0)),this.inputFormGroup=this.formBuilder.group({rebalanceAmount:["",[f.k0.required,f.k0.min(1),f.k0.max(this.selChannel.toLocal||0)]],selRebalancePeer:[null,f.k0.required]}),this.statusFormGroup=this.formBuilder.group({}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,g.Q)(this.unSubs[0]),(0,yt.Z)(0)).subscribe(o=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,Ft.of)(o?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,g.Q)(this.unSubs[1]),(0,yt.Z)("")).subscribe(o=>{"string"==typeof o&&(this.filteredActiveChannels=(0,Ft.of)(this.filterActiveChannels()))})}stepSelectionChanged(n){switch(n.selectedIndex){case 0:default:this.inputFormLabel="Amount to rebalance";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.alias?this.inputFormGroup.controls.selRebalancePeer.value.alias:this.inputFormGroup.controls.selRebalancePeer.value.nodeId.substring(0,15)+"..."):"Amount to rebalance"}}onRebalance(){if(!this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.rebalanceAmount.value<=0||this.selChannel.toLocal&&this.inputFormGroup.controls.rebalanceAmount.value>+this.selChannel.toLocal||!this.inputFormGroup.controls.selRebalancePeer.value.nodeId)return this.inputFormGroup.controls.selRebalancePeer.value.nodeId||this.inputFormGroup.controls.selRebalancePeer.setErrors({required:!0}),!0;this.stepper.next(),this.flgEditable=!1,this.rebalanceStatus={flgReusingInvoice:!1,invoice:"",paymentRoute:"",paymentHash:"",paymentDetails:null,paymentStatus:null},this.dataService.circularRebalance(1e3*this.inputFormGroup.controls.rebalanceAmount.value,this.selChannel.shortChannelId,this.selChannel.nodeId,this.inputFormGroup.controls.selRebalancePeer.value.shortChannelId,this.inputFormGroup.controls.selRebalancePeer.value.nodeId,[this.information.nodeId||""]).pipe((0,g.Q)(this.unSubs[2])).subscribe({next:n=>{this.logger.info(n),this.rebalanceStatus=n,this.flgEditable=!0,this.store.dispatch((0,j.$Q)())},error:n=>{this.logger.error(n),this.rebalanceStatus=n,this.flgEditable=!0}})}filterActiveChannels(){return this.activeChannels?.filter(n=>n.toRemote&&n.toRemote>=this.inputFormGroup.controls.rebalanceAmount.value&&n.channelId!==this.selChannel.channelId&&(0===n.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===n.channelId?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))}onSelectedPeerChanged(){if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const n=this.activeChannels?.filter(a=>a.alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===a.alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));n&&n.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(n[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(n){return n&&n.alias?n.alias:n&&n.shortChannelId?n.shortChannelId:""}showInfo(){this.flgShowInfo=!0}onStepChanged(n){this.animationDirection=n{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(V.CP),t.rXU(V.Vh),t.rXU(A.gP),t.rXU(nt.u),t.rXU(f.ok),t.rXU(I.il),t.rXU(d.QX))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-rebalance"]],viewQuery:function(a,o){if(1&a&&t.GBs(Js,5),2&a){let l;t.mGM(l=t.lsd())&&(o.stepper=l.first)}},standalone:!1,decls:8,vars:2,consts:[["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["stepper",""],["auto","matAutocomplete"],["fxLayout","column",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column"],[1,"modal-info-header"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayoutAlign","start center"],[1,"page-title"],["fxLayoutAlign","end center"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","46"],[3,"linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start end"],["type","text","aria-label","Receive from Peer","matInput","","formControlName","selRebalancePeer","tabindex","2","required","",3,"change","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","8","type","submit",3,"click"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxFlex","100",1,"flat-expansion-panel","mb-2"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[1,"foreground-secondary-text"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayoutAlign","start",1,"font-bold-500","mt-1"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],[3,"value"],["fxFlex","100","color","primary","mode","indeterminate"],[1,"ml-1","icon-small"],["class","foreground-secondary-text",4,"ngFor","ngForOf"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[4,"ngTemplateOutlet"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(a,o){1&a&&t.DNE(0,fl,95,42,"div",5)(1,gl,1,1,"ng-template",null,0,t.C5r)(3,Cl,3,1,"ng-template",null,1,t.C5r)(5,yl,33,5,"ng-template",null,2,t.C5r)(7,Sl,18,10,"div",6),2&a&&(t.Y8G("ngIf",!o.flgShowInfo),t.R7$(7),t.Y8G("ngIf",o.flgShowInfo))},dependencies:[d.YU,d.Sq,d.bT,d.T3,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.j4,f.JD,D.aY,V.tx,N.$z,x.m2,x.MM,U.GK,U.Z2,U.WN,ut.An,Y.fg,y.rl,y.nJ,y.MV,y.TL,y.yw,tt.q,H.HM,_.DJ,_.sA,_.UI,S.PW,z.wT,at.V5,at.Ti,at.M6,ct.$3,ct.pN,et.N,zs,d.Jj,d.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[Et.C]}}))}return i(),s})();const kl=()=>["all"],Il=i=>({"error-border":i}),Tl=()=>["no_peer"],xt=i=>({width:i}),wl=i=>({"display-none":i});function jl(i,s){if(1&i&&(t.j41(0,"mat-option",36),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function Dl(i,s){1&i&&t.nrm(0,"mat-progress-bar",37)}function Gl(i,s){1&i&&t.nrm(0,"th",38)}function Pl(i,s){if(1&i&&(t.j41(0,"span",42),t.nrm(1,"fa-icon",43),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function Al(i,s){if(1&i&&(t.j41(0,"span",44),t.nrm(1,"fa-icon",43),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function Nl(i,s){if(1&i&&(t.j41(0,"td",39),t.DNE(1,Pl,2,1,"span",40)(2,Al,2,1,"span",41),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function Bl(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Short Channel ID"),t.k0s())}function Ml(i,s){if(1&i&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function $l(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Channel ID"),t.k0s())}function Vl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,xt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Ol(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Alias"),t.k0s())}function Hl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,xt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Yl(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Node ID"),t.k0s())}function Xl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"div",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,xt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Ul(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Initiator"),t.k0s())}function zl(i,s){if(1&i&&(t.j41(0,"td",39),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function Jl(i,s){1&i&&(t.j41(0,"th",48),t.EFF(1,"Base Fee (mSats)"),t.k0s())}function ql(i,s){if(1&i&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeBaseMsat,"1.0-0")," ")}}function Ql(i,s){1&i&&(t.j41(0,"th",48),t.EFF(1,"Fee Rate (mili mSats)"),t.k0s())}function Zl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.feeProportionalMillionths,"1.0-0")," ")}}function Wl(i,s){1&i&&(t.j41(0,"th",48),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function Kl(i,s){if(1&i&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function tr(i,s){1&i&&(t.j41(0,"th",48),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function er(i,s){if(1&i&&(t.j41(0,"td",39)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function nr(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Balance Score"),t.k0s())}function ir(i,s){if(1&i&&(t.j41(0,"td",39)(1,"div",50)(2,"mat-hint",51),t.EFF(3),t.nI1(4,"number"),t.k0s()(),t.nrm(5,"mat-progress-bar",52),t.k0s()),2&i){const e=s.$implicit;t.R7$(3),t.JRh(t.bMT(4,3,(null==e?null:e.balancedness)||0)),t.R7$(2),t.Y8G("value",t.mNQ(null!=e&&e.toLocal&&(null==e?null:e.toLocal)>0?+(null==e?null:e.toLocal)/(+(null==e?null:e.toLocal)+ +(null==e?null:e.toRemote))*100:0))}}function ar(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",53)(1,"div",54)(2,"mat-select",55),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",56),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onChannelUpdate("all"))}),t.EFF(5,"Update Fee Policy"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(7,"Download CSV"),t.k0s()()()()}}function or(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",57)(1,"div",54)(2,"mat-select",58),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",56),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onChannelClick(o,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",56),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onChannelUpdate(a))}),t.EFF(7,"Update Fee Policy"),t.k0s(),t.j41(8,"mat-option",56),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onCircularRebalance(a))}),t.EFF(9,"Circular Rebalance"),t.k0s(),t.j41(10,"mat-option",56),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onChannelClose(a,!1))}),t.EFF(11,"Close Channel"),t.k0s(),t.j41(12,"mat-option",56),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onChannelClose(a,!0))}),t.EFF(13,"Force Close"),t.k0s()()()()}}function sr(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No peers connected. Add a peer in order to open a channel."),t.k0s())}function lr(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No channel available."),t.k0s())}function rr(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting channels..."),t.k0s())}function cr(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function mr(i,s){if(1&i&&(t.j41(0,"td",59),t.DNE(1,sr,2,0,"p",60)(2,lr,2,0,"p",60)(3,rr,2,0,"p",60)(4,cr,2,1,"p",60),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",e.numPeers<1&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",e.numPeers>0&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function pr(i,s){if(1&i&&t.nrm(0,"tr",61),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,wl,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function ur(i,s){1&i&&t.nrm(0,"tr",62)}function dr(i,s){1&i&&t.nrm(0,"tr",63)}let hr=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.logger=n,this.store=a,this.rtlEffects=o,this.commonService=l,this.router=m,this.camelCaseWithSpaces=u,this.faEye=E.pS3,this.faEyeSlash=E.k6j,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new p.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=c.G,this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=n.activeChannels,this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(),this.logger.info(n)}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.information=n}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.numPeers=n.peers&&n.peers.length?n.peers.length:0}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[4])).subscribe(n=>{this.totalBalance=n.onchainBalance.total||0})}ngAfterViewInit(){this.activeChannels&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable()}onCircularRebalance(n){this.store.dispatch((0,k.xO)({payload:{data:{message:{channels:this.activeChannels,selChannel:n,information:this.information},component:Rl}}}))}onChannelUpdate(n){"all"!==n&&n?.state&&"NORMAL"!==n?.state||(this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"string"==typeof n&&"all"===n?"Update fee policy for all channels":"Update fee policy for Channel: "+(n?.alias||n?.shortChannelId?n?.alias&&n?.shortChannelId?n?.alias+" ("+n?.shortChannelId+")":n?.alias?n?.alias:n?.shortChannelId:n?.channelId),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:c.UN.NUMBER,inputValue:n&&typeof n?.feeBaseMsat<"u"?n?.feeBaseMsat:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:c.UN.NUMBER,inputValue:n&&typeof n?.feeProportionalMillionths<"u"?n?.feeProportionalMillionths:100,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(l=>{if(l){const m=l[0].inputValue,u=l[1].inputValue;let T=null;if(this.commonService.isVersionCompatible(this.information.version,"0.6.2")){let F="";"all"===n?(this.activeChannels.forEach(P=>{F=F+","+P.nodeId}),F=F.substring(1),T={baseFeeMsat:m,feeRate:u,nodeIds:F}):T={baseFeeMsat:m,feeRate:u,nodeId:n?.nodeId}}else{let F="";"all"===n?(this.activeChannels.forEach(P=>{F=F+","+P.channelId}),F=F.substring(1),T={baseFeeMsat:m,feeRate:u,channelIds:F}):T={baseFeeMsat:m,feeRate:u,channelId:n?.channelId}}this.store.dispatch((0,j.fy)({payload:T}))}}),this.applyFilter())}percentHintFunction(n){return(n/1e4).toString()+"%"}onChannelClose(n,a){this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:a?"Force Close Channel":"Close Channel",titleMessage:a?"Force closing channel: "+(n.alias||n.shortChannelId?n.alias&&n.shortChannelId?n.alias+" ("+n.shortChannelId+")":n.alias?n.alias:n.shortChannelId:n.channelId):"Closing channel: "+(n.alias||n.shortChannelId?n.alias&&n.shortChannelId?n.alias+" ("+n.shortChannelId+")":n.alias?n.alias:n.shortChannelId:n.channelId),noBtnText:"Cancel",yesBtnText:a?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[6])).subscribe(u=>{u&&this.store.dispatch((0,j.w0)({payload:{channelId:n.channelId,force:a}}))})}onChannelClick(n,a){this.store.dispatch((0,k.xO)({payload:{data:{channel:n,channelsType:"open",component:bt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):"announceChannel"===n?"Private":this.commonService.titleCase(n)}setFilterPredicate(){this.channels.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(n).toLowerCase();break;case"announceChannel":o=n?.announceChannel?"public":"private";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadChannelsTable(){this.channels=new p.I6([...this.activeChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(n,a)=>n[a]&&isNaN(n[a])?n[a].toLocaleLowerCase():n[a]?+n[a]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"ActiveChannels")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(lt.H),t.rXU($.h),t.rXU(L.Ix),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-open-table"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Channels")}])],decls:60,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","shortChannelId"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isInitiator"],["matColumnDef","feeBaseMsat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","feeProportionalMillionths"],["matColumnDef","toLocal"],["matColumnDef","toRemote"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,jl,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,Dl,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,Gl,1,0,"th",13)(20,Nl,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,Bl,2,0,"th",16)(23,Ml,2,1,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,$l,2,0,"th",16)(26,Vl,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Ol,2,0,"th",16)(29,Hl,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,Yl,2,0,"th",16)(32,Xl,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,Ul,2,0,"th",16)(35,zl,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,Jl,2,0,"th",22)(38,ql,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,Ql,2,0,"th",22)(41,Zl,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,Wl,2,0,"th",22)(44,Kl,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,tr,2,0,"th",22)(47,er,4,4,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,nr,2,0,"th",16)(50,ir,6,5,"td",14),t.bVm(),t.qex(51,27),t.DNE(52,ar,8,0,"th",28)(53,or,14,0,"td",29),t.bVm(),t.qex(54,30),t.DNE(55,mr,5,4,"td",31),t.bVm(),t.DNE(56,pr,1,3,"tr",32)(57,ur,1,0,"tr",33)(58,dr,1,0,"tr",34),t.k0s()(),t.nrm(59,"mat-paginator",35),t.k0s()}2&a&&(t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,kl).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(2),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.channels)("ngClass",t.eq3(15,Il,""!==o.errorMessage)),t.R7$(40),t.Y8G("matFooterRowDef",t.lJ4(17,Tl)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("showFirstLastButtons",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,D.aY,Y.fg,y.rl,y.nJ,y.MV,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,d.QX],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]}))}return i(),s})();const fr=()=>["all"],_r=i=>({"error-border":i}),gr=()=>["no_channel"],$t=i=>({width:i}),Cr=i=>({"display-none":i});function yr(i,s){if(1&i&&(t.j41(0,"mat-option",33),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function br(i,s){1&i&&t.nrm(0,"mat-progress-bar",34)}function Fr(i,s){1&i&&t.nrm(0,"th",35)}function Er(i,s){if(1&i&&(t.j41(0,"span",39),t.nrm(1,"fa-icon",40),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function xr(i,s){if(1&i&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",40),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function Lr(i,s){if(1&i&&(t.j41(0,"td",36),t.DNE(1,Er,2,1,"span",37)(2,xr,2,1,"span",38),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf",!(null!=e&&e.announceChannel)),t.R7$(),t.Y8G("ngIf",null==e?null:e.announceChannel)}}function vr(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"State"),t.k0s())}function Sr(i,s){if(1&i&&(t.j41(0,"td",36),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function Rr(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"Channel ID"),t.k0s())}function kr(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$t,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Ir(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"Alias"),t.k0s())}function Tr(i,s){if(1&i&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.alias)}}function wr(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"Node ID"),t.k0s())}function jr(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$t,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function Dr(i,s){1&i&&(t.j41(0,"th",42),t.EFF(1,"Initiator"),t.k0s())}function Gr(i,s){if(1&i&&(t.j41(0,"td",36),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function Pr(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function Ar(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function Nr(i,s){1&i&&(t.j41(0,"th",45),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function Br(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",46),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function Mr(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",50),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function $r(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",51)(1,"button",52),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onChannelClick(o,a))}),t.EFF(2,"View Info"),t.k0s()()}}function Vr(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No pending channel available."),t.k0s())}function Or(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting pending channels..."),t.k0s())}function Hr(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function Yr(i,s){if(1&i&&(t.j41(0,"td",53),t.DNE(1,Vr,2,0,"p",54)(2,Or,2,0,"p",54)(3,Hr,2,1,"p",54),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Xr(i,s){if(1&i&&t.nrm(0,"tr",55),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,Cr,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Ur(i,s){1&i&&t.nrm(0,"tr",56)}function zr(i,s){1&i&&t.nrm(0,"tr",57)}let Jr=(()=>{var i;class s{constructor(n,a,o,l){this.logger=n,this.store=a,this.commonService=o,this.camelCaseWithSpaces=l,this.faEye=E.pS3,this.faEyeSlash=E.k6j,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_channels",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new p.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=c.G,this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=n.pendingChannels,this.loadChannelsTable(),this.logger.info(n)}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.information=n}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.numPeers=n.peers&&n.peers.length?n.peers.length:0}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[4])).subscribe(n=>{this.totalBalance=n.onchainBalance.total||0})}ngAfterViewInit(){this.pendingChannels.length>0&&this.loadChannelsTable()}onChannelClick(n,a){this.store.dispatch((0,k.xO)({payload:{data:{channel:n,channelsType:"pending",component:bt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):"announceChannel"===n?"Private":this.commonService.titleCase(n)}setFilterPredicate(){this.channels.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(n).toLowerCase();break;case"announceChannel":o=n?.announceChannel?"public":"private";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadChannelsTable(){this.channels=new p.I6([...this.pendingChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(n,a)=>n[a]&&isNaN(n[a])?n[a].toLocaleLowerCase():n[a]?+n[a]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"PendingChannels")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU($.h),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-pending-table"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Channels")}])],decls:51,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isInitiator"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,yr,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,br,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,Fr,1,0,"th",13)(20,Lr,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,vr,2,0,"th",16)(23,Sr,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,Rr,2,0,"th",16)(26,kr,4,4,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,Ir,2,0,"th",16)(29,Tr,2,1,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,wr,2,0,"th",16)(32,jr,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,Dr,2,0,"th",16)(35,Gr,2,1,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,Pr,2,0,"th",22)(38,Ar,4,4,"td",14),t.bVm(),t.qex(39,23),t.DNE(40,Nr,2,0,"th",22)(41,Br,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,Mr,6,0,"th",25)(44,$r,3,0,"td",26),t.bVm(),t.qex(45,27),t.DNE(46,Yr,4,3,"td",28),t.bVm(),t.DNE(47,Xr,1,3,"tr",29)(48,Ur,1,0,"tr",30)(49,zr,1,0,"tr",31),t.k0s()(),t.nrm(50,"mat-paginator",32),t.k0s()}2&a&&(t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,fr).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(2),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.channels)("ngClass",t.eq3(15,_r,""!==o.errorMessage)),t.R7$(31),t.Y8G("matFooterRowDef",t.lJ4(17,gr)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("showFirstLastButtons",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,D.aY,N.$z,Y.fg,y.rl,y.nJ,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,d.QX,d.PV],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return i(),s})();const qr=()=>["all"],Qr=i=>({"error-border":i}),Zr=()=>["no_peer"],Vt=i=>({"mr-0":i}),Ot=i=>({width:i}),Wr=i=>({"display-none":i});function Kr(i,s){if(1&i&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function t1(i,s){1&i&&t.nrm(0,"mat-progress-bar",36)}function e1(i,s){1&i&&t.nrm(0,"th",37)}function n1(i,s){if(1&i&&t.nrm(0,"span",41),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Vt,e.screenSize===e.screenSizeEnum.XS))}}function i1(i,s){if(1&i&&t.nrm(0,"span",42),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Vt,e.screenSize===e.screenSizeEnum.XS))}}function a1(i,s){if(1&i&&(t.j41(0,"td",38),t.DNE(1,n1,1,3,"span",39)(2,i1,1,3,"span",40),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function o1(i,s){1&i&&(t.j41(0,"th",43),t.EFF(1,"Alias"),t.k0s())}function s1(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ot,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function l1(i,s){1&i&&(t.j41(0,"th",43),t.EFF(1,"Node ID"),t.k0s())}function r1(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",44)(2,"span",45),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ot,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function c1(i,s){1&i&&(t.j41(0,"th",43),t.EFF(1,"Network Address"),t.k0s())}function m1(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",null==e?null:e.address," ")}}function p1(i,s){1&i&&(t.j41(0,"th",43),t.EFF(1,"Channels"),t.k0s())}function u1(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.channels)}}function d1(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",46)(1,"div",47)(2,"mat-select",48),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",49),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function h1(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){r.eBV(e);const a=t.XpG().$implicit,o=t.XpG();return r.Njj(o.onPeerDetach(a))}),t.EFF(1,"Disconnect"),t.k0s()}}function f1(i,s){if(1&i){const e=t.RV6();t.j41(0,"mat-option",49),t.bIt("click",function(){r.eBV(e);const a=t.XpG().$implicit,o=t.XpG();return r.Njj(o.onConnectPeer(a))}),t.EFF(1,"Reconnect"),t.k0s()}}function _1(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",50)(1,"div",47)(2,"mat-select",48),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",49),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onPeerClick(o,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",49),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onOpenChannel(a))}),t.EFF(7,"Open Channel"),t.k0s(),t.DNE(8,h1,2,0,"mat-option",51)(9,f1,2,0,"mat-option",51),t.k0s()()()}if(2&i){const e=s.$implicit;t.R7$(8),t.Y8G("ngIf","CONNECTED"===e.state),t.R7$(),t.Y8G("ngIf","DISCONNECTED"===e.state)}}function g1(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No connected peer."),t.k0s())}function C1(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting peers..."),t.k0s())}function y1(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function b1(i,s){if(1&i&&(t.j41(0,"td",52),t.DNE(1,g1,2,0,"p",53)(2,C1,2,0,"p",53)(3,y1,2,1,"p",53),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function F1(i,s){if(1&i&&t.nrm(0,"tr",54),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,Wr,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function E1(i,s){1&i&&t.nrm(0,"tr",55)}function x1(i,s){1&i&&t.nrm(0,"tr",56)}let L1=(()=>{var i;class s{constructor(n,a,o,l,m,u){this.logger=n,this.store=a,this.rtlEffects=o,this.actions=l,this.commonService=m,this.camelCaseWithSpaces=u,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.faUsers=E.gdJ,this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new p.I6([]),this.information={},this.availableBalance=0,this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.information=n}),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("state"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=n.peers,this.loadPeersTable(this.peersData),this.logger.info(n)}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.availableBalance=n.onchainBalance.total||0}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,X.p)(n=>n.type===c.Uu.SET_PEERS_ECL)).subscribe(n=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(n,a){const o=[[{key:"nodeId",value:n.nodeId,title:"Public Key",width:100}],[{key:"address",value:n.address,title:"Address",width:50},{key:"alias",value:n.alias,title:"Alias",width:50}],[{key:"state",value:this.commonService.titleCase(n.state||""),title:"State",width:50},{key:"channels",value:n.channels,title:"Channels",width:50}]];this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:n.nodeId,goToName:"Graph lookup",goToLink:"/ecl/graph/lookups",showQRName:"Public Key",showQRField:n.nodeId,message:o}}}))}onConnectPeer(n){this.store.dispatch((0,k.xO)({payload:{data:{message:{peer:n.nodeId?n:null,information:this.information,balance:this.availableBalance},component:Pt}}}))}onOpenChannel(n){this.store.dispatch((0,k.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:n,information:this.information,balance:this.availableBalance},newlyAdded:!1,component:Mt}}}))}onPeerDetach(n){this.store.dispatch(n&&n.channels&&n.channels>0?(0,k.xO)({payload:{data:{type:c.A$.ERROR,alertTitle:"Disconnect Not Allowed",titleMessage:"Channel active with this peer."}}}):(0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(n.alias?n.alias:n.nodeId),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(a=>{a&&this.store.dispatch((0,j.Lc)({payload:{nodeId:n.nodeId||""}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.peers.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(n).toLowerCase();break;case"state":o=n?.state?.toLowerCase()||"";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===o.indexOf(a):o.includes(a)}}loadPeersTable(n){this.peers=new p.I6(n?[...n]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(a,o)=>a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(lt.H),t.rXU(K.En),t.rXU($.h),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-peers"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Peers")}])],decls:50,vars:19,consts:[["peersForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","nodeId"],["matColumnDef","address"],["matColumnDef","channels"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State"],["mat-cell",""],["class","dot green","matTooltip","Connected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Disconnected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Connected","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Disconnected","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",2)(1,"form",3,0)(3,"button",4),t.bIt("click",function(){return r.eBV(l),r.Njj(o.onConnectPeer({}))}),t.EFF(4,"Add Peer"),t.k0s()(),t.j41(5,"div",5)(6,"div",6)(7,"div",7),t.nrm(8,"fa-icon",8),t.j41(9,"span",9),t.EFF(10,"Peers"),t.k0s()(),t.j41(11,"div",10)(12,"mat-form-field",11)(13,"mat-label"),t.EFF(14,"Filter By"),t.k0s(),t.j41(15,"mat-select",12),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(16,"perfect-scrollbar"),t.DNE(17,Kr,2,2,"mat-option",13),t.k0s()()(),t.j41(18,"mat-form-field",11)(19,"mat-label"),t.EFF(20,"Filter"),t.k0s(),t.j41(21,"input",14),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(22,"div",15),t.DNE(23,t1,1,0,"mat-progress-bar",16),t.j41(24,"table",17,1),t.qex(26,18),t.DNE(27,e1,1,0,"th",19)(28,a1,3,2,"td",20),t.bVm(),t.qex(29,21),t.DNE(30,o1,2,0,"th",22)(31,s1,4,4,"td",20),t.bVm(),t.qex(32,23),t.DNE(33,l1,2,0,"th",22)(34,r1,4,4,"td",20),t.bVm(),t.qex(35,24),t.DNE(36,c1,2,0,"th",22)(37,m1,2,1,"td",20),t.bVm(),t.qex(38,25),t.DNE(39,p1,2,0,"th",22)(40,u1,2,1,"td",20),t.bVm(),t.qex(41,26),t.DNE(42,d1,6,0,"th",27)(43,_1,10,2,"td",28),t.bVm(),t.qex(44,29),t.DNE(45,b1,4,3,"td",30),t.bVm(),t.DNE(46,F1,1,3,"tr",31)(47,E1,1,0,"tr",32)(48,x1,1,0,"tr",33),t.k0s()(),t.nrm(49,"mat-paginator",34),t.k0s()()}2&a&&(t.R7$(8),t.Y8G("icon",o.faUsers),t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(15,qr).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(2),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.peers)("ngClass",t.eq3(16,Qr,""!==o.errorMessage)),t.R7$(22),t.Y8G("matFooterRowDef",t.lJ4(18,Zr)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("showFirstLastButtons",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.qT,f.me,f.BC,f.cb,f.vS,f.cV,D.aY,N.$z,Y.fg,y.rl,y.nJ,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld],styles:[".mat-column-state[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return i(),s})();const v1=["queryRoutesForm"],S1=i=>({"overflow-auto error-border":i,"overflow-auto":!0}),Ht=i=>({"max-width":i});function R1(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Destination Node ID is required."),t.k0s())}function k1(i,s){1&i&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function I1(i,s){1&i&&t.nrm(0,"mat-progress-bar",23)}function T1(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1," Alias"),t.k0s())}function w1(i,s){if(1&i&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ht,n.screenSize===n.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.alias)}}function j1(i,s){1&i&&(t.j41(0,"th",40),t.EFF(1," ID"),t.k0s())}function D1(i,s){if(1&i&&(t.j41(0,"td",41)(1,"span",42)(2,"span",43),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,Ht,n.screenSize===n.screenSizeEnum.XS?"6rem":"30rem")),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function G1(i,s){1&i&&(t.j41(0,"th",40)(1,"div",44),t.EFF(2,"Actions"),t.k0s()())}function P1(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",45)(1,"button",46),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG(2);return r.Njj(o.onHopClick(a))}),t.EFF(2,"View Info"),t.k0s()()}}function A1(i,s){1&i&&t.nrm(0,"tr",47)}function N1(i,s){1&i&&t.nrm(0,"tr",48)}function B1(i,s){if(1&i&&(t.j41(0,"div",24)(1,"mat-expansion-panel",25)(2,"mat-expansion-panel-header")(3,"mat-panel-title",26)(4,"span",27),t.EFF(5),t.k0s(),t.j41(6,"span",28),t.EFF(7),t.nI1(8,"number"),t.k0s()()(),t.j41(9,"mat-panel-description",29)(10,"div",30)(11,"table",31,2),t.qex(13,32),t.DNE(14,T1,2,0,"th",33)(15,w1,4,4,"td",34),t.bVm(),t.qex(16,35),t.DNE(17,j1,2,0,"th",33)(18,D1,4,4,"td",34),t.bVm(),t.qex(19,36),t.DNE(20,G1,3,0,"th",33)(21,P1,3,0,"td",37),t.bVm(),t.DNE(22,A1,1,0,"tr",38)(23,N1,1,0,"tr",39),t.k0s()()()()()),2&i){const e=s.$implicit,n=s.index,a=t.XpG();t.R7$(5),t.SpI("Route ",n+1),t.R7$(2),t.JRh(t.bMT(8,6,e.amount/1e3)),t.R7$(4),t.Y8G("dataSource",a.qrHops[n])("ngClass",t.eq3(8,S1,"error"===a.flgLoading[0])),t.R7$(11),t.Y8G("matHeaderRowDef",a.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",a.displayedColumns)}}let M1=(()=>{var i;class s{constructor(n,a,o){this.store=n,this.eclEffects=a,this.commonService=o,this.allQRoutes=[],this.nodeId="",this.amount=0,this.qrHops=[],this.displayedColumns=["alias","nodeId","actions"],this.flgLoading=[!1],this.faRoute=E.TBz,this.faExclamationTriangle=E.zpE,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.qrHops[0]=new p.I6([]),this.qrHops[0].data=[],this.eclEffects.setQueryRoutes.pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{n&&n.routes&&n.routes.length?(this.flgLoading[0]=!1,this.allQRoutes=n.routes,this.allQRoutes.forEach((a,o)=>{this.qrHops[o]=new p.I6([...a.nodeIds])})):(this.flgLoading[0]="error",this.allQRoutes=[],this.qrHops=[])})}onQueryRoutes(){if(!this.nodeId||!this.amount)return!0;this.qrHops=[],this.flgLoading[0]=!0,this.store.dispatch((0,j.T4)({payload:{nodeId:this.nodeId,amount:1e3*this.amount}}))}resetData(){this.allQRoutes=[],this.nodeId="",this.amount=0,this.flgLoading[0]=!1,this.qrHops=[],this.form.resetForm()}onHopClick(n){this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"alias",value:n.alias,title:"Alias",width:100,type:c.UN.STRING}],[{key:"nodeId",value:n.nodeId,title:"Node ID",width:100,type:c.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(I.il),t.rXU(ht.B),t.rXU($.h))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-query-routes"]],viewQuery:function(a,o){if(1&a&&t.GBs(v1,7),2&a){let l;t.mGM(l=t.lsd())&&(o.form=l.first)}},standalone:!1,decls:32,vars:10,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table[i]",""],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","nodeId","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-3","mb-1"],["fxFlex","70","fxLayoutAlign","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","column","fxFlex","100"],["fxFlex","100",4,"ngFor","ngForOf"],["mode","indeterminate"],["fxFlex","100"],[1,"flat-expansion-panel","help-expansion","mb-2px"],["fxLayout","row","fxLayoutAlign","space-between start"],["fxFlex","50","fxLayoutAlign","start start"],["fxFlex","50","fxLayoutAlign","end end"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"table-container","mb-2",3,"perfectScrollbar"],["mat-table","",3,"dataSource","ngClass"],["matColumnDef","alias"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","nodeId"],["matColumnDef","actions"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",3)(1,"form",4,0),t.bIt("ngSubmit",function(){r.eBV(l);const u=t.sdS(2);return r.Njj(u.form.valid&&o.onQueryRoutes())}),t.j41(3,"div",5),t.nrm(4,"fa-icon",6),t.j41(5,"span"),t.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),t.k0s()(),t.j41(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Destination Node ID"),t.k0s(),t.j41(10,"input",8,1),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.nodeId,u)||(o.nodeId=u),r.Njj(u)}),t.k0s(),t.DNE(12,R1,2,0,"mat-error",9),t.k0s(),t.j41(13,"mat-form-field",10)(14,"mat-label"),t.EFF(15,"Amount (Sats)"),t.k0s(),t.j41(16,"input",11),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.amount,u)||(o.amount=u),r.Njj(u)}),t.k0s(),t.DNE(17,k1,2,0,"mat-error",9),t.k0s(),t.j41(18,"div",12)(19,"button",13),t.bIt("click",function(){return r.eBV(l),r.Njj(o.resetData())}),t.EFF(20,"Clear"),t.k0s(),t.j41(21,"button",14),t.EFF(22,"Query Route"),t.k0s()()(),t.j41(23,"div",15)(24,"div",16),t.nrm(25,"fa-icon",17),t.j41(26,"span",18),t.EFF(27,"Transaction Route"),t.k0s()()(),t.DNE(28,I1,1,0,"mat-progress-bar",19),t.j41(29,"div",20)(30,"div",21),t.DNE(31,B1,24,10,"div",22),t.k0s()()()}2&a&&(t.R7$(4),t.Y8G("icon",o.faExclamationTriangle),t.R7$(6),t.R50("ngModel",o.nodeId),t.R7$(2),t.Y8G("ngIf",!o.nodeId),t.R7$(4),t.Y8G("step",1e3)("min",0),t.R50("ngModel",o.amount),t.R7$(),t.Y8G("ngIf",!o.amount),t.R7$(8),t.Y8G("icon",o.faRoute),t.R7$(3),t.Y8G("ngIf",!0===o.flgLoading[0]),t.R7$(3),t.Y8G("ngForOf",o.allQRoutes))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.qT,f.me,f.Q0,f.BC,f.cb,f.YS,f.VZ,f.vS,f.cV,D.aY,N.$z,U.GK,U.Z2,U.WN,U.Q6,Y.fg,y.rl,y.nJ,y.TL,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.KS,p.$R,p.YZ,p.NB,B.Ld,it.V,d.QX],encapsulation:2}))}return i(),s})();const $1=()=>["all"],V1=i=>({"error-border":i}),O1=()=>["no_channel"],Lt=i=>({width:i}),H1=i=>({"display-none":i});function Y1(i,s){if(1&i&&(t.j41(0,"mat-option",35),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG();t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function X1(i,s){1&i&&t.nrm(0,"mat-progress-bar",36)}function U1(i,s){1&i&&t.nrm(0,"th",37)}function z1(i,s){if(1&i&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",42),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEyeSlash)}}function J1(i,s){if(1&i&&(t.j41(0,"span",43),t.nrm(1,"fa-icon",42),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("icon",e.faEye)}}function q1(i,s){if(1&i&&(t.j41(0,"td",38),t.DNE(1,z1,2,1,"span",39)(2,J1,2,1,"span",40),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf",!e.announceChannel),t.R7$(),t.Y8G("ngIf",e.announceChannel)}}function Q1(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"State"),t.k0s())}function Z1(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(t.bMT(2,1,null==e?null:e.state))}}function W1(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Short Channel ID"),t.k0s())}function K1(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.shortChannelId)}}function tc(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Channel ID"),t.k0s())}function ec(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Lt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function nc(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Alias"),t.k0s())}function ic(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Lt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(e.alias)}}function ac(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Node ID"),t.k0s())}function oc(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",45)(2,"span",46),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,Lt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.nodeId)}}function sc(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Initiator"),t.k0s())}function lc(i,s){if(1&i&&(t.j41(0,"td",38),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null!=e&&e.isInitiator?"Yes":"No")}}function rc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Local Balance (Sats)"),t.k0s())}function cc(i,s){if(1&i&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toLocal,"1.0-0")," ")}}function mc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Remote Balance (Sats)"),t.k0s())}function pc(i,s){if(1&i&&(t.j41(0,"td",38)(1,"span",48),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.SpI(" ",t.i5U(3,1,null==e?null:e.toRemote,"1.0-0")," ")}}function uc(i,s){1&i&&(t.j41(0,"th",44),t.EFF(1,"Balance Score"),t.k0s())}function dc(i,s){if(1&i&&(t.j41(0,"td",38)(1,"div",49)(2,"mat-hint",50),t.EFF(3),t.nI1(4,"number"),t.k0s()(),t.nrm(5,"mat-progress-bar",51),t.k0s()),2&i){const e=s.$implicit;t.R7$(3),t.JRh(t.bMT(4,3,(null==e?null:e.balancedness)||0)),t.R7$(2),t.Y8G("value",t.mNQ(e.toLocal&&e.toLocal>0?+e.toLocal/(+e.toLocal+ +e.toRemote)*100:0))}}function hc(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",52)(1,"div",53)(2,"mat-select",54),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function fc(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",56)(1,"div",53)(2,"mat-select",57),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG();return r.Njj(l.onChannelClick(o,a))}),t.EFF(5,"View Info"),t.k0s(),t.j41(6,"mat-option",55),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.onChannelClose(a,!0))}),t.EFF(7,"Force Close"),t.k0s()()()()}}function _c(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No inactive channel available."),t.k0s())}function gc(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting inactive channels..."),t.k0s())}function Cc(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.JRh(e.errorMessage)}}function yc(i,s){if(1&i&&(t.j41(0,"td",58),t.DNE(1,_c,2,0,"p",59)(2,gc,2,0,"p",59)(3,Cc,2,1,"p",59),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function bc(i,s){if(1&i&&t.nrm(0,"tr",60),2&i){const e=t.XpG();t.Y8G("ngClass",t.eq3(1,H1,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function Fc(i,s){1&i&&t.nrm(0,"tr",61)}function Ec(i,s){1&i&&t.nrm(0,"tr",62)}let xc=(()=>{var i;class s{constructor(n,a,o,l,m){this.logger=n,this.store=a,this.rtlEffects=o,this.commonService=l,this.camelCaseWithSpaces=m,this.faEye=E.pS3,this.faEyeSlash=E.k6j,this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"inactive_channels",recordsPerPage:c.md,sortBy:"alias",sortOrder:c.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channels=new p.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=c.G,this.selFilter="",this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("announceChannel"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.Ou).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.inactiveChannels=n.inactiveChannels,this.loadChannelsTable(),this.logger.info(n)}),this.store.select(b.p3).pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{this.information=n}),this.store.select(b.os).pipe((0,g.Q)(this.unSubs[3])).subscribe(n=>{this.numPeers=n.peers&&n.peers.length?n.peers.length:0}),this.store.select(b.DW).pipe((0,g.Q)(this.unSubs[4])).subscribe(n=>{this.totalBalance=n.onchainBalance.total||0})}ngAfterViewInit(){this.inactiveChannels.length>0&&this.loadChannelsTable()}onChannelClose(n,a){this.store.dispatch((0,k.I1)({payload:{data:{type:c.A$.CONFIRM,alertTitle:a?"Force Close Channel":"Close Channel",titleMessage:a?"Force closing channel: "+(n.alias||n.shortChannelId?n.alias&&n.shortChannelId?n.alias+" ("+n.shortChannelId+")":n.alias?n.alias:n.shortChannelId:n.channelId):"Closing channel: "+(n.alias||n.shortChannelId?n.alias&&n.shortChannelId?n.alias+" ("+n.shortChannelId+")":n.alias?n.alias:n.shortChannelId:n.channelId),noBtnText:"Cancel",yesBtnText:a?"Force Close":"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(u=>{u&&this.store.dispatch((0,j.w0)({payload:{channelId:n.channelId||"",force:a}}))})}onChannelClick(n,a){this.store.dispatch((0,k.xO)({payload:{data:{channel:n,channelsType:"inactive",component:bt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLocaleLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):"announceChannel"===n?"Private":this.commonService.titleCase(n)}setFilterPredicate(){this.channels.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=JSON.stringify(n).toLowerCase();break;case"announceChannel":o=n?.announceChannel?"public":"private";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadChannelsTable(){this.channels=new p.I6([...this.inactiveChannels]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(n,a)=>n[a]&&isNaN(n[a])?n[a].toLocaleLowerCase():n[a]?+n[a]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"InactiveChannels")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU(I.il),t.rXU(lt.H),t.rXU($.h),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-channel-inactive-table"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Channels")}])],decls:57,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","announceChannel"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","shortChannelId"],["matColumnDef","channelId"],["matColumnDef","alias"],["matColumnDef","nodeId"],["matColumnDef","isInitiator"],["matColumnDef","toLocal"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","toRemote"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){if(1&a){const l=t.RV6();t.j41(0,"div",1)(1,"div",2),t.nrm(2,"div",3),t.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),t.EFF(6,"Filter By"),t.k0s(),t.j41(7,"mat-select",6),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilterBy,u)||(o.selFilterBy=u),r.Njj(u)}),t.bIt("selectionChange",function(){return r.eBV(l),o.selFilter="",r.Njj(o.applyFilter())}),t.j41(8,"perfect-scrollbar"),t.DNE(9,Y1,2,2,"mat-option",7),t.k0s()()(),t.j41(10,"mat-form-field",5)(11,"mat-label"),t.EFF(12,"Filter"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(u){return r.eBV(l),t.DH7(o.selFilter,u)||(o.selFilter=u),r.Njj(u)}),t.bIt("input",function(){return r.eBV(l),r.Njj(o.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(o.applyFilter())}),t.k0s()()()(),t.j41(14,"div",9),t.DNE(15,X1,1,0,"mat-progress-bar",10),t.j41(16,"table",11,0),t.qex(18,12),t.DNE(19,U1,1,0,"th",13)(20,q1,3,2,"td",14),t.bVm(),t.qex(21,15),t.DNE(22,Q1,2,0,"th",16)(23,Z1,3,3,"td",14),t.bVm(),t.qex(24,17),t.DNE(25,W1,2,0,"th",16)(26,K1,2,1,"td",14),t.bVm(),t.qex(27,18),t.DNE(28,tc,2,0,"th",16)(29,ec,4,4,"td",14),t.bVm(),t.qex(30,19),t.DNE(31,nc,2,0,"th",16)(32,ic,4,4,"td",14),t.bVm(),t.qex(33,20),t.DNE(34,ac,2,0,"th",16)(35,oc,4,4,"td",14),t.bVm(),t.qex(36,21),t.DNE(37,sc,2,0,"th",16)(38,lc,2,1,"td",14),t.bVm(),t.qex(39,22),t.DNE(40,rc,2,0,"th",23)(41,cc,4,4,"td",14),t.bVm(),t.qex(42,24),t.DNE(43,mc,2,0,"th",23)(44,pc,4,4,"td",14),t.bVm(),t.qex(45,25),t.DNE(46,uc,2,0,"th",16)(47,dc,6,5,"td",14),t.bVm(),t.qex(48,26),t.DNE(49,hc,6,0,"th",27)(50,fc,8,0,"td",28),t.bVm(),t.qex(51,29),t.DNE(52,yc,4,3,"td",30),t.bVm(),t.DNE(53,bc,1,3,"tr",31)(54,Fc,1,0,"tr",32)(55,Ec,1,0,"tr",33),t.k0s()(),t.nrm(56,"mat-paginator",34),t.k0s()}2&a&&(t.R7$(7),t.R50("ngModel",o.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(14,$1).concat(o.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",o.selFilter),t.R7$(2),t.Y8G("ngIf",o.apiCallStatus.status===o.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",o.tableSetting.sortBy)("matSortDirection",o.tableSetting.sortOrder)("dataSource",o.channels)("ngClass",t.eq3(15,V1,""!==o.errorMessage)),t.R7$(37),t.Y8G("matFooterRowDef",t.lJ4(17,O1)),t.R7$(),t.Y8G("matHeaderRowDef",o.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",o.displayedColumns),t.R7$(),t.Y8G("pageSize",o.pageSize)("pageSizeOptions",o.pageSizeOptions)("showFirstLastButtons",o.screenSize!==o.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,D.aY,Y.fg,y.rl,y.nJ,y.MV,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,d.QX,d.PV],styles:[".mat-column-announceChannel[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:3rem;min-width:15rem;max-width:30rem}"]}))}return i(),s})();const Lc=()=>["all"],vc=()=>["no_event"],Sc=i=>({"ml-0":i}),st=i=>({width:i}),Rc=i=>({"display-none":i});function kc(i,s){if(1&i&&(t.j41(0,"div",6),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function Ic(i,s){if(1&i&&(t.j41(0,"mat-option",14),t.EFF(1),t.k0s()),2&i){const e=s.$implicit,n=t.XpG(2);t.Y8G("value",e),t.R7$(),t.JRh(n.getLabel(e))}}function Tc(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",7),t.nrm(1,"div",8),t.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),t.EFF(5,"Filter By"),t.k0s(),t.j41(6,"mat-select",11),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilterBy,a)||(o.selFilterBy=a),r.Njj(a)}),t.bIt("selectionChange",function(){r.eBV(e);const a=t.XpG();return a.selFilter="",r.Njj(a.applyFilter())}),t.j41(7,"perfect-scrollbar"),t.DNE(8,Ic,2,2,"mat-option",12),t.k0s()()(),t.j41(9,"mat-form-field",10)(10,"mat-label"),t.EFF(11,"Filter"),t.k0s(),t.j41(12,"input",13),t.mxI("ngModelChange",function(a){r.eBV(e);const o=t.XpG();return t.DH7(o.selFilter,a)||(o.selFilter=a),r.Njj(a)}),t.bIt("input",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())})("keyup",function(){r.eBV(e);const a=t.XpG();return r.Njj(a.applyFilter())}),t.k0s()()()()}if(2&i){const e=t.XpG();t.R7$(6),t.R50("ngModel",e.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(3,Lc).concat(e.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",e.selFilter)}}function wc(i,s){1&i&&t.nrm(0,"mat-progress-bar",42)}function jc(i,s){1&i&&t.nrm(0,"th",43)}function Dc(i,s){if(1&i&&(t.nrm(0,"span",46),t.nI1(1,"camelcase")),2&i){const e=t.XpG().$implicit,n=t.XpG(2);t.Y8G("matTooltip",t.mNQ(t.bMT(1,3,null==e?null:e.type)))("ngClass",t.eq3(5,Sc,n.screenSize===n.screenSizeEnum.XS))}}function Gc(i,s){if(1&i&&(t.j41(0,"td",44),t.DNE(1,Dc,2,7,"span",45),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.Y8G("ngIf","payment-relayed"!==(null==e?null:e.type))}}function Pc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Date/Time"),t.k0s())}function Ac(i,s){if(1&i&&(t.j41(0,"td",44),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.SpI(" ",t.i5U(2,1,null==e?null:e.timestamp,"dd/MMM/y HH:mm")," ")}}function Nc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"In Channel ID"),t.k0s())}function Bc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelId)}}function Mc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"In Channel Short ID"),t.k0s())}function $c(i,s){if(1&i&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.fromShortChannelId)}}function Vc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"In Channel"),t.k0s())}function Oc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.fromChannelAlias)}}function Hc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Out Channel ID"),t.k0s())}function Yc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelId)}}function Xc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Out Channel Short ID"),t.k0s())}function Uc(i,s){if(1&i&&(t.j41(0,"td",44),t.EFF(1),t.k0s()),2&i){const e=s.$implicit;t.R7$(),t.JRh(null==e?null:e.toShortChannelId)}}function zc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Out Channel"),t.k0s())}function Jc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.toChannelAlias)}}function qc(i,s){1&i&&(t.j41(0,"th",47),t.EFF(1,"Payment Hash"),t.k0s())}function Qc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"div",48)(2,"span",49),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,st,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.paymentHash)}}function Zc(i,s){1&i&&(t.j41(0,"th",50),t.EFF(1,"Amount In (Sats)"),t.k0s())}function Wc(i,s){if(1&i&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountIn))}}function Kc(i,s){1&i&&(t.j41(0,"th",50),t.EFF(1,"Amount Out (Sats)"),t.k0s())}function tm(i,s){if(1&i&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==e?null:e.amountOut))}}function em(i,s){1&i&&(t.j41(0,"th",50),t.EFF(1,"Fee Earned (Sats)"),t.k0s())}function nm(i,s){if(1&i&&(t.j41(0,"td",44)(1,"span",51),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,(null==e?null:e.amountIn)-(null==e?null:e.amountOut)))}}function im(i,s){if(1&i){const e=t.RV6();t.j41(0,"th",52)(1,"div",53)(2,"mat-select",54),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",55),t.bIt("click",function(){r.eBV(e);const a=t.XpG(2);return r.Njj(a.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function am(i,s){if(1&i){const e=t.RV6();t.j41(0,"td",56)(1,"button",57),t.bIt("click",function(a){const o=r.eBV(e).$implicit,l=t.XpG(2);return r.Njj(l.onForwardingEventClick(o,a))}),t.EFF(2,"View Info"),t.k0s()()}}function om(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No forwarding history available."),t.k0s())}function sm(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting forwarding history..."),t.k0s())}function lm(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function rm(i,s){if(1&i&&(t.j41(0,"td",58),t.DNE(1,om,2,0,"p",59)(2,sm,2,0,"p",59)(3,lm,2,1,"p",59),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function cm(i,s){if(1&i&&t.nrm(0,"tr",60),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Rc,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function mm(i,s){1&i&&t.nrm(0,"tr",61)}function pm(i,s){1&i&&t.nrm(0,"tr",62)}function um(i,s){if(1&i&&(t.j41(0,"div",15),t.DNE(1,wc,1,0,"mat-progress-bar",16),t.j41(2,"table",17,0),t.qex(4,18),t.DNE(5,jc,1,0,"th",19)(6,Gc,2,1,"td",20),t.bVm(),t.qex(7,21),t.DNE(8,Pc,2,0,"th",22)(9,Ac,3,4,"td",20),t.bVm(),t.qex(10,23),t.DNE(11,Nc,2,0,"th",22)(12,Bc,4,4,"td",20),t.bVm(),t.qex(13,24),t.DNE(14,Mc,2,0,"th",22)(15,$c,2,1,"td",20),t.bVm(),t.qex(16,25),t.DNE(17,Vc,2,0,"th",22)(18,Oc,4,4,"td",20),t.bVm(),t.qex(19,26),t.DNE(20,Hc,2,0,"th",22)(21,Yc,4,4,"td",20),t.bVm(),t.qex(22,27),t.DNE(23,Xc,2,0,"th",22)(24,Uc,2,1,"td",20),t.bVm(),t.qex(25,28),t.DNE(26,zc,2,0,"th",22)(27,Jc,4,4,"td",20),t.bVm(),t.qex(28,29),t.DNE(29,qc,2,0,"th",22)(30,Qc,4,4,"td",20),t.bVm(),t.qex(31,30),t.DNE(32,Zc,2,0,"th",31)(33,Wc,4,3,"td",20),t.bVm(),t.qex(34,32),t.DNE(35,Kc,2,0,"th",31)(36,tm,4,3,"td",20),t.bVm(),t.qex(37,33),t.DNE(38,em,2,0,"th",31)(39,nm,4,3,"td",20),t.bVm(),t.qex(40,34),t.DNE(41,im,6,0,"th",35)(42,am,3,0,"td",36),t.bVm(),t.qex(43,37),t.DNE(44,rm,4,3,"td",38),t.bVm(),t.DNE(45,cm,1,3,"tr",39)(46,mm,1,0,"tr",40)(47,pm,1,0,"tr",41),t.k0s()()),2&i){const e=t.XpG();t.R7$(),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.forwardingHistoryEvents),t.R7$(43),t.Y8G("matFooterRowDef",t.lJ4(7,vc)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns)}}function dm(i,s){if(1&i&&t.nrm(0,"mat-paginator",63),2&i){const e=t.XpG();t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Yt=(()=>{var i;class s{constructor(n,a,o,l,m){this.logger=n,this.commonService=a,this.store=o,this.datePipe=l,this.camelCaseWithSpaces=m,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=c.WW,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:c.md,sortBy:"timestamp",sortOrder:c.oi.DESCENDING},this.displayedColumns=[],this.forwardingHistoryEvents=new p.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(n){n.eventsData&&(this.apiCallStatus={status:c.wn.COMPLETED,action:"FetchPayments"},this.eventsData=n.eventsData.currentValue,n.eventsData.firstChange||this.loadForwardingEventsTable(this.eventsData)),n.selFilter&&!n.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=n.pageSettings.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("type"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData=n.payments&&n.payments.relayed?n.payments.relayed:[],this.eventsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.eventsData),this.logger.info(this.eventsData)})}ngAfterViewInit(){setTimeout(()=>{this.eventsData.length>0&&this.loadForwardingEventsTable(this.eventsData)},0)}onForwardingEventClick(n,a){const o=[[{key:"paymentHash",value:n.paymentHash,title:"Payment Hash",width:100,type:c.UN.STRING}],[{key:"timestamp",value:Math.round((n.timestamp||0)/1e3),title:"Date/Time",width:50,type:c.UN.DATE_TIME},{key:"fee",value:(n.amountIn||0)-(n.amountOut||0),title:"Fee Earned (Sats)",width:50,type:c.UN.NUMBER}],[{key:"amountIn",value:n.amountIn,title:"Amount In (Sats)",width:50,type:c.UN.NUMBER},{key:"amountOut",value:n.amountOut,title:"Amount Out (Sats)",width:50,type:c.UN.NUMBER}],[{key:"fromChannelAlias",value:n.fromChannelAlias,title:"From Channel Alias",width:50,type:c.UN.STRING},{key:"fromShortChannelId",value:n.fromShortChannelId,title:"From Short Channel ID",width:50,type:c.UN.STRING}],[{key:"fromChannelId",value:n.fromChannelId,title:"From Channel ID",width:100,type:c.UN.STRING}],[{key:"toChannelAlias",value:n.toChannelAlias,title:"To Channel Alias",width:50,type:c.UN.STRING},{key:"toShortChannelId",value:n.toShortChannelId,title:"To Short Channel ID",width:50,type:c.UN.STRING}],[{key:"toChannelId",value:n.toChannelId,title:"To Channel ID",width:100,type:c.UN.STRING}]];"payment-relayed"!==n.type&&o?.unshift([{key:"type",value:this.commonService.camelCase(n.type),title:"Relay Type",width:100,type:c.UN.STRING}]),this.store.dispatch((0,k.xO)({payload:{data:{type:c.A$.INFORMATION,alertTitle:"Event Information",message:o}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(n){const a=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column):this.commonService.titleCase(n)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(n,a)=>{let o="";switch(this.selFilterBy){case"all":o=(n.timestamp?this.datePipe.transform(new Date(n.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"timestamp":o=this.datePipe.transform(new Date(n.timestamp||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":o=(n.amountIn-n.amountOut).toString()||"0";break;default:o=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return o.includes(a)}}loadForwardingEventsTable(n){this.forwardingHistoryEvents=new p.I6([...n]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(a,o)=>"fee"===o?a.amountIn-a.amountOut:a[o]&&isNaN(a[o])?a[o].toLocaleLowerCase():a[o]?+a[o]:null,this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(d.vh),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-forwarding-history"]],viewQuery:function(a,o){if(1&a&&(t.GBs(v.B4,5),t.GBs(w.iy,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sort=l.first),t.mGM(l=t.lsd())&&(o.paginator=l.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},standalone:!1,features:[t.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,c.on)("Events")}]),t.OA$],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Type (if not payment relayed)",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","fromChannelId"],["matColumnDef","fromShortChannelId"],["matColumnDef","fromChannelAlias"],["matColumnDef","toChannelId"],["matColumnDef","toShortChannelId"],["matColumnDef","toChannelAlias"],["matColumnDef","paymentHash"],["matColumnDef","amountIn"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amountOut"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Type (if not payment relayed)"],["mat-cell",""],["class","dot yellow","matTooltipPosition","right",3,"matTooltip","ngClass",4,"ngIf"],["matTooltipPosition","right",1,"dot","yellow",3,"matTooltip","ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(a,o){1&a&&(t.j41(0,"div",1),t.DNE(1,kc,2,1,"div",2)(2,Tc,13,4,"div",3)(3,um,48,8,"div",4)(4,dm,1,3,"mat-paginator",5),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf",""!==o.errorMessage),t.R7$(),t.Y8G("ngIf",""===o.errorMessage),t.R7$(),t.Y8G("ngIf",""===o.errorMessage),t.R7$(),t.Y8G("ngIf",""===o.errorMessage))},dependencies:[d.YU,d.Sq,d.bT,d.B3,f.me,f.BC,f.vS,N.$z,Y.fg,y.rl,y.nJ,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,R.VO,R.$2,z.wT,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,Q.oV,w.iy,B.ZF,B.Ld,d.QX,d.vh,q.ZE],styles:[".mat-column-type[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-type[_ngcontent-%COMP%] svg[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-actions[_ngcontent-%COMP%]{min-height:3.55rem}"]}))}return i(),s})();const hm=["tableIn"],fm=["tableOut"],_m=["paginatorIn"],gm=["paginatorOut"],Cm=(i,s)=>({"mt-2":i,"mt-1":s}),ym=()=>["no_incoming_event"],bm=i=>({"mt-2":i}),Fm=()=>["no_outgoing_event"],mt=i=>({width:i}),Xt=i=>({"display-none":i});function Em(i,s){if(1&i&&(t.j41(0,"div",7),t.EFF(1),t.k0s()),2&i){const e=t.XpG();t.R7$(),t.JRh(e.errorMessage)}}function xm(i,s){1&i&&t.nrm(0,"mat-progress-bar",34)}function Lm(i,s){1&i&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function vm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,mt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Sm(i,s){1&i&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function Rm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,mt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function km(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function Im(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function Tm(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function wm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function jm(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function Dm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function Gm(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No incoming routing peer available."),t.k0s())}function Pm(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting incoming routing peers..."),t.k0s())}function Am(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function Nm(i,s){if(1&i&&(t.j41(0,"td",41),t.DNE(1,Gm,2,0,"p",42)(2,Pm,2,0,"p",42)(3,Am,2,1,"p",42),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Bm(i,s){if(1&i&&t.nrm(0,"tr",43),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Xt,(null==e.routingPeersIncoming?null:e.routingPeersIncoming.data)&&(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)>0))}}function Mm(i,s){1&i&&t.nrm(0,"tr",44)}function $m(i,s){1&i&&t.nrm(0,"tr",45)}function Vm(i,s){1&i&&t.nrm(0,"mat-progress-bar",34)}function Om(i,s){1&i&&(t.j41(0,"th",35),t.EFF(1,"Channel ID"),t.k0s())}function Hm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,mt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.channelId)}}function Ym(i,s){1&i&&(t.j41(0,"th",35),t.EFF(1,"Peer Alias"),t.k0s())}function Xm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"div",37)(2,"span",38),t.EFF(3),t.k0s()()()),2&i){const e=s.$implicit,n=t.XpG(2);t.R7$(),t.Y8G("ngStyle",t.eq3(2,mt,n.screenSize===n.screenSizeEnum.XS?"6rem":n.colWidth)),t.R7$(2),t.JRh(null==e?null:e.alias)}}function Um(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Events"),t.k0s())}function zm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.events))}}function Jm(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Amount (Sats)"),t.k0s())}function qm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalAmount))}}function Qm(i,s){1&i&&(t.j41(0,"th",39),t.EFF(1,"Fee (Sats)"),t.k0s())}function Zm(i,s){if(1&i&&(t.j41(0,"td",36)(1,"span",40),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&i){const e=s.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,e.totalFee))}}function Wm(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"No outgoing routing peer available."),t.k0s())}function Km(i,s){1&i&&(t.j41(0,"p"),t.EFF(1,"Getting outgoing routing peers..."),t.k0s())}function tp(i,s){if(1&i&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&i){const e=t.XpG(3);t.R7$(),t.JRh(e.errorMessage)}}function ep(i,s){if(1&i&&(t.j41(0,"td",41),t.DNE(1,Wm,2,0,"p",42)(2,Km,2,0,"p",42)(3,tp,2,1,"p",42),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function np(i,s){if(1&i&&t.nrm(0,"tr",43),2&i){const e=t.XpG(2);t.Y8G("ngClass",t.eq3(1,Xt,(null==e.routingPeersOutgoing?null:e.routingPeersOutgoing.data)&&(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)>0))}}function ip(i,s){1&i&&t.nrm(0,"tr",44)}function ap(i,s){1&i&&t.nrm(0,"tr",45)}function op(i,s){if(1&i&&(t.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),t.EFF(4,"Incoming"),t.k0s(),t.nrm(5,"div",12),t.k0s(),t.j41(6,"div",13),t.DNE(7,xm,1,0,"mat-progress-bar",14),t.j41(8,"table",15,0),t.qex(10,16),t.DNE(11,Lm,2,0,"th",17)(12,vm,4,4,"td",18),t.bVm(),t.qex(13,19),t.DNE(14,Sm,2,0,"th",17)(15,Rm,4,4,"td",18),t.bVm(),t.qex(16,20),t.DNE(17,km,2,0,"th",21)(18,Im,4,3,"td",18),t.bVm(),t.qex(19,22),t.DNE(20,Tm,2,0,"th",21)(21,wm,4,3,"td",18),t.bVm(),t.qex(22,23),t.DNE(23,jm,2,0,"th",21)(24,Dm,4,3,"td",18),t.bVm(),t.qex(25,24),t.DNE(26,Nm,4,3,"td",25),t.bVm(),t.DNE(27,Bm,1,3,"tr",26)(28,Mm,1,0,"tr",27)(29,$m,1,0,"tr",28),t.k0s()(),t.nrm(30,"mat-paginator",29,1),t.k0s(),t.j41(32,"div",30)(33,"div",10)(34,"div",11),t.EFF(35,"Outgoing"),t.k0s(),t.nrm(36,"div",12),t.k0s(),t.j41(37,"div",31),t.DNE(38,Vm,1,0,"mat-progress-bar",14),t.j41(39,"table",32,2),t.qex(41,16),t.DNE(42,Om,2,0,"th",17)(43,Hm,4,4,"td",18),t.bVm(),t.qex(44,19),t.DNE(45,Ym,2,0,"th",17)(46,Xm,4,4,"td",18),t.bVm(),t.qex(47,20),t.DNE(48,Um,2,0,"th",21)(49,zm,4,3,"td",18),t.bVm(),t.qex(50,22),t.DNE(51,Jm,2,0,"th",21)(52,qm,4,3,"td",18),t.bVm(),t.qex(53,23),t.DNE(54,Qm,2,0,"th",21)(55,Zm,4,3,"td",18),t.bVm(),t.qex(56,33),t.DNE(57,ep,4,3,"td",25),t.bVm(),t.DNE(58,np,1,3,"tr",26)(59,ip,1,0,"tr",27)(60,ap,1,0,"tr",28),t.k0s(),t.nrm(61,"mat-paginator",29,3),t.k0s()()()),2&i){const e=t.XpG();t.R7$(2),t.Y8G("ngClass",t.l_i(22,Cm,e.screenSize===e.screenSizeEnum.XS,e.screenSize===e.screenSizeEnum.SM)),t.R7$(5),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersIncoming),t.R7$(19),t.Y8G("matFooterRowDef",t.lJ4(25,ym)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS),t.R7$(3),t.Y8G("ngClass",t.eq3(26,bm,e.screenSize!==e.screenSizeEnum.LG)),t.R7$(5),t.Y8G("ngIf",e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),t.R7$(),t.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersOutgoing),t.R7$(19),t.Y8G("matFooterRowDef",t.lJ4(28,Fm)),t.R7$(),t.Y8G("matHeaderRowDef",e.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",e.displayedColumns),t.R7$(),t.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let sp=(()=>{var i;class s{constructor(n,a,o,l){this.logger=n,this.commonService=a,this.store=o,this.camelCaseWithSpaces=l,this.nodePageDefs=c.WW,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:c.md,sortBy:"totalFee",sortOrder:c.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new p.I6([]),this.routingPeersOutgoing=new p.I6([]),this.pageSize=c.md,this.pageSizeOptions=c.xp,this.screenSize="",this.screenSizeEnum=c.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=c.wn,this.unSubs=[new h.B,new h.B,new h.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:c.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{this.errorMessage="",this.apiCallStatus=n.apiCallStatus,this.apiCallStatus.status===c.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=n.payments&&n.payments.relayed?n.payments.relayed:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(n)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData)}applyFilterIncoming(){this.routingPeersIncoming.filter=this.filterIn.trim().toLowerCase()}applyFilterOutgoing(){this.routingPeersOutgoing.filter=this.filterOut.trim().toLowerCase()}getLabel(n){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(o=>o.column===n);return a?a.label?a.label:this.camelCaseWithSpaces.transform(a.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(n,a)=>{let o="";return o="all"===this.selFilterByIn?JSON.stringify(n).toLowerCase():"string"==typeof n[this.selFilterByIn]?n[this.selFilterByIn].toLowerCase():"boolean"==typeof n[this.selFilterByIn]?n[this.selFilterByIn]?"yes":"no":n[this.selFilterByIn].toString(),o.includes(a)},this.routingPeersOutgoing.filterPredicate=(n,a)=>{let o="";switch(this.selFilterByOut){case"all":o=JSON.stringify(n).toLowerCase();break;case"total_amount":case"total_fee":o=(+(n[this.selFilterByOut]||0)/1e3).toString()||"";break;default:o="string"==typeof n[this.selFilterByOut]?n[this.selFilterByOut].toLowerCase():"boolean"==typeof n[this.selFilterByOut]?n[this.selFilterByOut]?"yes":"no":n[this.selFilterByOut].toString()}return o.includes(a)}}loadRoutingPeersTable(n){if(n.length>0){const a=this.groupRoutingPeers(n);this.routingPeersIncoming=new p.I6(a[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new p.I6(a[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new p.I6([]),this.routingPeersOutgoing=new p.I6([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(n){const a=[],o=[];return n.forEach(l=>{const m=a.find(T=>T.channelId===l.fromChannelId),u=o.find(T=>T.channelId===l.toChannelId);m?(m.events++,m.totalAmount=+m.totalAmount+ +l.amountIn,m.totalFee=l.amountIn-l.amountOut+ +m.totalFee):a.push({channelId:l.fromChannelId,alias:l.fromChannelAlias,events:1,totalAmount:+l.amountIn,totalFee:l.amountIn-l.amountOut}),u?(u.events++,u.totalAmount=+u.totalAmount+ +l.amountOut,u.totalFee=l.amountIn-l.amountOut+ +u.totalFee):o.push({channelId:l.toChannelId,alias:l.toChannelAlias,events:1,totalAmount:+l.amountOut,totalFee:l.amountIn-l.amountOut})}),[this.commonService.sortDescByKey(a,"totalFee"),this.commonService.sortDescByKey(o,"totalFee")]}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il),t.rXU(q.Qu))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-routing-peers"]],viewQuery:function(a,o){if(1&a&&(t.GBs(hm,5,v.B4),t.GBs(fm,5,v.B4),t.GBs(_m,5),t.GBs(gm,5)),2&a){let l;t.mGM(l=t.lsd())&&(o.sortIn=l.first),t.mGM(l=t.lsd())&&(o.sortOut=l.first),t.mGM(l=t.lsd())&&(o.paginatorIn=l.first),t.mGM(l=t.lsd())&&(o.paginatorOut=l.first)}},standalone:!1,features:[t.Jv_([{provide:w.xX,useValue:(0,c.on)("Peers")}])],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mb-4"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","channelId"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","totalAmount"],["matColumnDef","totalFee"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxFlex","49","fxLayoutAlign","end stretch",1,"mb-4"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","no_outgoing_event"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,o){1&a&&(t.j41(0,"div",4),t.DNE(1,Em,2,1,"div",5)(2,op,63,29,"div",6),t.k0s()),2&a&&(t.R7$(),t.Y8G("ngIf",""!==o.errorMessage),t.R7$(),t.Y8G("ngIf",""===o.errorMessage))},dependencies:[d.YU,d.bT,d.B3,H.HM,_.DJ,_.sA,_.UI,S.PW,S.eI,v.B4,v.aE,p.Zl,p.tL,p.ji,p.cC,p.YV,p.iL,p.Zq,p.xW,p.KS,p.$R,p.Qo,p.YZ,p.NB,p.iF,w.iy,B.Ld,d.QX],encapsulation:2}))}return i(),s})();function lp(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",8),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let rp=(()=>{var i;class s{constructor(n){this.router=n,this.faChartBar=E.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-reports"]],standalone:!1,decls:12,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Reports"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,lp,2,4,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),t.k0s()()()),2&a){const l=t.sdS(10);t.R7$(),t.Y8G("icon",o.faChartBar),t.R7$(6),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,G.Bu,G.hQ,G.Ql,L.n3,W.Wk],encapsulation:2}))}return i(),s})();var Ut=C(1993),zt=C(4655);function cp(i,s){if(1&i&&(t.j41(0,"div",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&i){const e=t.XpG();t.Y8G("@fadeIn",e.totalFeeSat),t.R7$(),t.Lme("",t.i5U(2,3,e.totalFeeSat||0,"1.0-2")," Sats/",t.bMT(3,6,e.filteredEventsBySelectedPeriod.length||0)," Events")}}function mp(i,s){1&i&&(t.j41(0,"div",15),t.EFF(1,"No routing report for the selected period"),t.k0s())}function pp(i,s){if(1&i&&(t.j41(0,"span")(1,"span",17),t.EFF(2),t.nI1(3,"number"),t.k0s(),t.j41(4,"span",17),t.EFF(5),t.nI1(6,"number"),t.k0s()()),2&i){const e=s.model,n=t.XpG(2);t.R7$(2),t.SpI("Events: ",t.bMT(3,2,(n.selReportBy===n.reportBy.EVENTS?e.value:e.extra.totalEvents)||0)),t.R7$(3),t.SpI("Fee: ",t.i5U(6,4,(n.selReportBy===n.reportBy.EVENTS?e.extra.totalFees:e.value)||0,"1.0-2"))}}function up(i,s){if(1&i){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical",16),t.bIt("select",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onChartBarSelected(a))})("mouseup",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onChartMouseUp(a))}),t.DNE(1,pp,7,7,"ng-template",null,0,t.C5r),t.k0s()}if(2&i){const e=t.XpG();t.Y8G("view",e.view)("results",e.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function dp(i,s){if(1&i&&t.nrm(0,"rtl-ecl-forwarding-history",18),2&i){const e=t.XpG();t.Y8G("eventsData",e.filteredEventsBySelectedPeriod)("selFilter",e.eventFilterValue)}}let hp=(()=>{var i;class s{constructor(n,a,o){this.logger=n,this.commonService=a,this.store=o,this.reportPeriod=c.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=c.aR,this.selReportBy=c.aR.FEES,this.totalFeeSat=null,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===c.f7.XS||this.screenSize===c.f7.SM),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.events=n.payments&&n.payments.relayed?n.payments.relayed:[],this.filterForwardingEvents(this.startDate,this.endDate),this.logger.info(n)}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[1])).subscribe(n=>{switch(this.screenSize){case c.f7.MD:this.screenPaddingX=n.width/10;break;case c.f7.LG:this.screenPaddingX=n.width/16;break;default:this.screenPaddingX=n.width/20}this.view=[n.width-this.screenPaddingX,n.height/2.2],this.logger.info("Container Size: "+JSON.stringify(n)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(n,a){const o=Math.round(n.getTime()/1e3),l=Math.round(a.getTime()/1e3);this.logger.info("Filtering Forwarding Events Starting at "+new Date(Date.now()).toLocaleString()+" From "+n.toLocaleString()+" To "+a.toLocaleString()),this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeSat=null,this.events&&this.events.length>0&&(this.events.forEach(m=>{Math.floor((m.timestamp||0)/1e3)>=o&&Math.floor((m.timestamp||0)/1e3)0&&"ngx-charts"===n.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(n){this.eventFilterValue=this.reportPeriod===c.rs[1]?n.name+"/"+this.startDate.getFullYear():n.name.toString().padStart(2,"0")+"/"+c.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(n){const a=Math.round(n.getTime()/1e3),o=[];if(this.totalFeeSat=0,this.logger.info("Fee Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+n.toLocaleString()),this.reportPeriod===c.rs[1]){for(let l=0;l<12;l++)o.push({name:c.KR[l].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(l=>{const m=new Date(l.timestamp||0).getMonth();return o[m].value=o[m].value+((l.amountIn||0)-(l.amountOut||0)),o[m].extra.totalEvents=o[m].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((l.amountIn||0)-(l.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let l=0;l{const m=Math.floor((Math.floor((l.timestamp||0)/1e3)-a)/this.secondsInADay);return o[m].value=o[m].value+((l.amountIn||0)-(l.amountOut||0)),o[m].extra.totalEvents=o[m].extra.totalEvents+1,this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((l.amountIn||0)-(l.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Fee Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),o}prepareEventsReport(n){const a=Math.round(n.getTime()/1e3),o=[];if(this.totalFeeSat=0,this.logger.info("Events Report Prepare Starting at "+new Date(Date.now()).toLocaleString()+" From "+n.toLocaleString()),this.reportPeriod===c.rs[1]){for(let l=0;l<12;l++)o.push({name:c.KR[l].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(l=>{const m=new Date(l.timestamp||0).getMonth();return o[m].value=o[m].value+1,o[m].extra.totalFees=o[m].extra.totalFees+((l.amountIn||0)-(l.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((l.amountIn||0)-(l.amountOut||0)),this.filteredEventsBySelectedPeriod})}else{for(let l=0;l{const m=Math.floor((Math.floor((l.timestamp||0)/1e3)-a)/this.secondsInADay);return o[m].value=o[m].value+1,o[m].extra.totalFees=o[m].extra.totalFees+((l.amountIn||0)-(l.amountOut||0)),this.totalFeeSat=(this.totalFeeSat?this.totalFeeSat:0)+((l.amountIn||0)-(l.amountOut||0)),this.filteredEventsBySelectedPeriod})}return this.logger.info("Events Report Prepare Finished at "+new Date(Date.now()).toLocaleString()),o}onSelectionChange(n){const a=n.selDate.getMonth(),o=n.selDate.getFullYear();this.reportPeriod=n.selScrollRange,this.reportPeriod===c.rs[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,a,1,0,0,0),this.endDate=new Date(o,a,this.getMonthDays(a,o),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(n,a){return 1===n&&a%4==0?c.KR[n].days+1:c.KR[n].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-routing-report"]],hostBindings:function(a,o){1&a&&t.bIt("mouseup",function(m){return o.onChartMouseUp(m)})},standalone:!1,decls:17,vars:9,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start center",1,"my-1",3,"ngModelChange","change","ngModel"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],["pageId","reports","tableId","routing",3,"eventsData","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"one-color",3,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],["pageId","reports","tableId","routing",3,"eventsData","selFilter"]],template:function(a,o){1&a&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(m){return o.onSelectionChange(m)}),t.k0s(),t.j41(2,"div",3)(3,"mat-radio-group",4),t.mxI("ngModelChange",function(m){return t.DH7(o.selReportBy,m)||(o.selReportBy=m),m}),t.bIt("change",function(){return o.onSelReportByChange()}),t.j41(4,"span",5),t.EFF(5,"Report By: "),t.k0s(),t.j41(6,"mat-radio-button",6),t.EFF(7,"Fees"),t.k0s(),t.j41(8,"mat-radio-button",7),t.EFF(9,"Events"),t.k0s()()(),t.j41(10,"div",8),t.DNE(11,cp,4,8,"div",9)(12,mp,2,0,"div",10),t.j41(13,"div",11),t.DNE(14,up,3,11,"ngx-charts-bar-vertical",12),t.k0s(),t.j41(15,"div",11),t.DNE(16,dp,1,2,"rtl-ecl-forwarding-history",13),t.k0s()()()),2&a&&(t.R7$(3),t.R50("ngModel",o.selReportBy),t.R7$(3),t.Y8G("value",t.mNQ(o.reportBy.FEES)),t.R7$(2),t.Y8G("value",t.mNQ(o.reportBy.EVENTS)),t.R7$(3),t.Y8G("ngIf",o.routingReportData.length>0&&o.filteredEventsBySelectedPeriod.length>0),t.R7$(),t.Y8G("ngIf",o.routingReportData.length<=0||o.filteredEventsBySelectedPeriod.length<=0),t.R7$(2),t.Y8G("ngIf",o.routingReportData.length>0&&o.filteredEventsBySelectedPeriod.length>0),t.R7$(2),t.Y8G("ngIf",o.filteredEventsBySelectedPeriod.length>0))},dependencies:[d.bT,f.BC,f.vS,rt.VT,rt._g,_.DJ,_.sA,_.UI,Ut.L8,zt.m,Yt,d.QX],encapsulation:2,data:{animation:[Et.q]}}))}return i(),s})();var fp=C(5085);function _p(i,s){if(1&i&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Lme(" Paid ",t.i5U(2,2,e.transactionsReportSummary.amountPaidSelectedPeriod||0,"1.0-2")," Sats/",t.bMT(3,5,e.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function gp(i,s){if(1&i&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&i){const e=t.XpG(2);t.R7$(),t.Lme(" Received ",t.i5U(2,2,e.transactionsReportSummary.amountReceivedSelectedPeriod||0,"1.0-2")," Sats/",t.bMT(3,5,e.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function Cp(i,s){if(1&i&&(t.j41(0,"div",9),t.DNE(1,_p,4,7,"div",10)(2,gp,4,7,"div",10),t.k0s()),2&i){const e=t.XpG();t.Y8G("@fadeIn",e.transactionsReportSummary),t.R7$(),t.Y8G("ngIf",e.transactionsReportSummary.paymentsSelectedPeriod),t.R7$(),t.Y8G("ngIf",e.transactionsReportSummary.invoicesSelectedPeriod)}}function yp(i,s){1&i&&(t.j41(0,"div",12),t.EFF(1,"No transactions report for the selected period"),t.k0s())}function bp(i,s){if(1&i&&(t.j41(0,"span",14),t.EFF(1),t.nI1(2,"number"),t.nI1(3,"number"),t.k0s()),2&i){const e=s.model;t.R7$(),t.LHq("",e.name,": ",t.i5U(2,4,e.value||0,"1.0-2"),"/# ","Paid"===e.name?"Payments":"Invoices",": ",t.bMT(3,7,(null==e.extra?null:e.extra.total)||0))}}function Fp(i,s){if(1&i){const e=t.RV6();t.j41(0,"ngx-charts-bar-vertical-2d",13),t.bIt("select",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onChartBarSelected(a))})("mouseup",function(a){r.eBV(e);const o=t.XpG();return r.Njj(o.onChartMouseUp(a))}),t.DNE(1,bp,4,9,"ng-template",null,0,t.C5r),t.k0s()}if(2&i){const e=t.XpG();t.Y8G("view",e.view)("results",e.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",e.reportPeriod===e.scrollRanges[0]?2:8)}}function Ep(i,s){if(1&i&&t.nrm(0,"rtl-transactions-report-table",15),2&i){const e=t.XpG();t.Y8G("displayedColumns",e.displayedColumns)("tableSetting",e.tableSetting)("dataList",e.transactionsNonZeroReportData)("dataRange",e.reportPeriod)("selFilter",e.transactionFilterValue)}}let xp=(()=>{var i;class s{constructor(n,a,o){this.logger=n,this.commonService=a,this.store=o,this.scrollRanges=c.rs,this.reportPeriod=c.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:c.md,sortBy:"date",sortOrder:c.oi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[],this.transactionsNonZeroReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=c.f7,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===c.f7.XS||this.screenSize===c.f7.SM),this.store.select(b.jZ).pipe((0,g.Q)(this.unSubs[0])).subscribe(n=>{this.tableSetting=n.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||c.X8.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===c.f7.XS||this.screenSize===c.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(b.KT).pipe((0,g.Q)(this.unSubs[1]),(0,pt.E)(this.store.select(b.rN))).subscribe(([n,a])=>{this.payments=n.payments.sent?n.payments.sent:[],this.invoices=a.invoices?a.invoices:[],(this.payments.length>0||this.invoices.length>0)&&(this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData())}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[2])).subscribe(n=>{switch(this.screenSize){case c.f7.MD:this.screenPaddingX=n.width/10;break;case c.f7.LG:this.screenPaddingX=n.width/16;break;default:this.screenPaddingX=n.width/20}this.view=[n.width-this.screenPaddingX,n.height/2.2],this.logger.info("Container Size: "+JSON.stringify(n)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(n){"svg"===n.srcElement.tagName&&n.srcElement.classList.length>0&&"ngx-charts"===n.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(n){this.transactionFilterValue=this.reportPeriod===c.rs[1]?n.series.toString()+"/"+this.startDate.getFullYear():n.series.toString().padStart(2,"0")+"/"+c.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(n,a){const o=Math.round(n.getTime()/1e3),l=Math.round(a.getTime()/1e3),m=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const u=this.payments?.filter(F=>F.firstPartTimestamp&&Math.floor(F.firstPartTimestamp/1e3)>=o&&Math.floor(F.firstPartTimestamp/1e3)"received"===F.status&&F.timestamp&&F.timestamp>=o&&F.timestamp{const P=new Date(F.firstPartTimestamp||0).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(F.recipientAmount||0),m[P].series[0].value=m[P].series[0].value+F.recipientAmount,m[P].series[0].extra.total=m[P].series[0].extra.total+1,this.transactionsReportSummary}),T?.map(F=>{const P=new Date(1e3*(F.timestamp||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(F.amountSettled||0),m[P].series[1].value=m[P].series[1].value+F.amountSettled,m[P].series[1].extra.total=m[P].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let F=0;F{const P=Math.floor((Math.floor((F.firstPartTimestamp||0)/1e3)-o)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(F.recipientAmount||0),m[P].series[0].value=m[P].series[0].value+F.recipientAmount,m[P].series[0].extra.total=m[P].series[0].extra.total+1,this.transactionsReportSummary}),T?.map(F=>{const P=Math.floor(((F.timestamp||0)-o)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(F.amountSettled||0),m[P].series[1].value=m[P].series[1].value+F.amountSettled,m[P].series[1].extra.total=m[P].series[1].extra.total+1,this.transactionsReportSummary})}return m}prepareTableData(){return this.transactionsReportData?.reduce((n,a)=>a.series[0].extra.total>0||a.series[1].extra.total>0?n.concat({date:a.date,amount_paid:a.series[0].value,num_payments:a.series[0].extra.total,amount_received:a.series[1].value,num_invoices:a.series[1].extra.total}):n,[])}onSelectionChange(n){const a=n.selDate.getMonth(),o=n.selDate.getFullYear();this.reportPeriod=n.selScrollRange,this.reportPeriod===c.rs[1]?(this.startDate=new Date(o,0,1,0,0,0),this.endDate=new Date(o,11,31,23,59,59)):(this.startDate=new Date(o,a,1,0,0,0),this.endDate=new Date(o,a,this.getMonthDays(a,o),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(n,a){return 1===n&&a%4==0?c.KR[n].days+1:c.KR[n].days}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(A.gP),t.rXU($.h),t.rXU(I.il))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-transactions-report"]],hostBindings:function(a,o){1&a&&t.bIt("mouseup",function(m){return o.onChartMouseUp(m)})},standalone:!1,decls:9,vars:4,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"two-color",3,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(a,o){1&a&&(t.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),t.bIt("stepChanged",function(m){return o.onSelectionChange(m)}),t.k0s(),t.j41(2,"div",3),t.DNE(3,Cp,3,3,"div",4)(4,yp,2,0,"div",5),t.j41(5,"div",6),t.DNE(6,Fp,3,13,"ngx-charts-bar-vertical-2d",7),t.k0s(),t.j41(7,"div",6),t.DNE(8,Ep,1,5,"rtl-transactions-report-table",8),t.k0s()()()),2&a&&(t.R7$(3),t.Y8G("ngIf",o.transactionsNonZeroReportData.length>0),t.R7$(),t.Y8G("ngIf",o.transactionsNonZeroReportData.length<=0),t.R7$(2),t.Y8G("ngIf",o.transactionsNonZeroReportData.length>0),t.R7$(2),t.Y8G("ngIf",o.transactionsNonZeroReportData.length>0))},dependencies:[d.bT,_.DJ,_.sA,_.UI,Ut.Dl,zt.m,fp.T,d.QX],encapsulation:2,data:{animation:[Et.q]}}))}return i(),s})();var M=C(7186),Lp=C(13);function vp(i,s){if(1&i){const e=t.RV6();t.j41(0,"div",9),t.bIt("click",function(){const a=r.eBV(e).$implicit,o=t.XpG();return r.Njj(o.activeLink=a.link)}),t.EFF(1),t.k0s()}if(2&i){const e=s.$implicit,n=t.XpG();t.Y8G("routerLink",t.mNQ(e.link))("active",n.activeLink===e.link),t.R7$(),t.JRh(e.name)}}let Sp=(()=>{var i;class s{constructor(n){this.router=n,this.faSearch=E.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new h.B,new h.B,new h.B,new h.B]}ngOnInit(){const n=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=n?n.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,X.p)(a=>a instanceof L.gx)).subscribe({next:a=>{const o=this.links.find(l=>a.urlAfterRedirects.includes(l.link));this.activeLink=o?o.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)(t.rXU(L.Ix))},this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-ecl-graph"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(a,o){if(1&a&&(t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Graph Lookups"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,vp,2,4,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0),t.j41(11,"div",8),t.nrm(12,"router-outlet"),t.k0s()()()()),2&a){const l=t.sdS(10);t.R7$(),t.Y8G("icon",o.faSearch),t.R7$(6),t.Y8G("tabPanel",l),t.R7$(),t.Y8G("ngForOf",o.links)}},dependencies:[d.Sq,D.aY,x.RN,x.m2,_.DJ,_.sA,_.UI,G.Bu,G.hQ,G.Ql,L.n3,W.Wk],encapsulation:2}))}return i(),s})();const Rp=[{path:"",component:vt,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Da,canActivate:[(0,M.fe)()]},{path:"onchain",component:Eo,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"receive"},{path:"receive",component:cs,canActivate:[(0,M.fe)()]},{path:"send",component:ms,canActivate:[(0,M.fe)()]}]},{path:"connections",component:vo,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:Is,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:hr,canActivate:[(0,M.fe)()]},{path:"pending",component:Jr,canActivate:[(0,M.fe)()]},{path:"inactive",component:xc,canActivate:[(0,M.fe)()]}]},{path:"peers",component:L1,data:{sweepAll:!1},canActivate:[(0,M.fe)()]}]},{path:"transactions",component:Ro,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:It,canActivate:[(0,M.fe)()]},{path:"invoices",component:Tt,canActivate:[(0,M.fe)()]}]},{path:"routing",component:Io,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Yt,canActivate:[(0,M.fe)()]},{path:"peers",component:sp,canActivate:[(0,M.fe)()]}]},{path:"reports",component:rp,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:hp,canActivate:[(0,M.fe)()]},{path:"transactions",component:xp,canActivate:[(0,M.fe)()]}]},{path:"graph",component:Sp,canActivate:[(0,M.fe)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:ls,canActivate:[(0,M.fe)()]},{path:"queryroutes",component:M1,canActivate:[(0,M.fe)()]}]},{path:"**",component:Lp.X}]}],kp=W.iI.forChild(Rp);var Ip=C(9029);let Tp=(()=>{var i;class s{static#t=i=()=>(this.\u0275fac=function(a){return new(a||s)},this.\u0275mod=t.$C({type:s,bootstrap:[vt]}),this.\u0275inj=r.G2t({imports:[d.MD,Ip.G,kp]}))}return i(),s})()}}]); \ No newline at end of file diff --git a/frontend/190.0e6572086349bd7c.js b/frontend/190.0e6572086349bd7c.js new file mode 100644 index 00000000..7981f8d3 --- /dev/null +++ b/frontend/190.0e6572086349bd7c.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[190],{9190(Ze,xe,S){"use strict";S.d(xe,{LNDModule:()=>PC});var y=S(2200),le=S(8132),j=S(3694),re=S(9881),e=S(3664),D=S(7575),b=S(2920);function T(t,s){1&t&&e.nrm(0,"mat-progress-bar",3)}let _e=(()=>{var t;class s{constructor(i){this.router=i,this.loading=!1,this.router.events.subscribe(o=>{switch(!0){case o instanceof j.Z:this.loading=!0;break;case o instanceof j.wF:case o instanceof j.j5:case o instanceof j.L6:this.loading=!1}})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lnd-root"]],standalone:!1,decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(o,a){1&o&&(e.j41(0,"div",1),e.DNE(1,T,1,0,"mat-progress-bar",2),e.nrm(2,"router-outlet",null,0),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",a.loading))},dependencies:[y.bT,D.HM,b.DJ,b.sA,b.UI,j.n3],encapsulation:2,data:{animation:[re.E]}}))}return t(),s})();var C=S(1413),x=S(6977),me=S(3993),L=S(5964),q=S(614),I=S(5383),p=S(4416),W=S(9647),E=S(3536),r=S(2615),V=S(8570),G=S(9640),ce=S(1747),z=S(2571),ee=S(60),Ke=S(2598),B=S(5596),Le=S(2885),ke=S(2629),$e=S(9115),U=S(6038),J=S(6850),X=S(6695),A=S(2042),_=S(1676),O=S(6183),ne=S(1585),N=S(190),g=S(9417),$=S(8834),Z=S(3746),R=S(9588),ae=S(3029),Re=S(450),fe=S(455),pe=S(9587),ye=S(6114);function Ue(t,s){1&t&&(e.j41(0,"span",32),e.EFF(1,"= "),e.k0s())}function et(t,s){if(1&t&&(e.j41(0,"span",33),e.nrm(1,"fa-icon",34),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.convertedCurrency.symbol)}}function Xe(t,s){if(1&t&&e.nrm(0,"span",35),2&t){const n=e.XpG();e.Y8G("innerHTML",n.convertedCurrency.symbol,e.npT)}}function Ee(t,s){if(1&t&&(e.j41(0,"mat-option",36),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.JRh(e.bMT(2,2,n))}}function Ie(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.invoiceError)}}function tt(t,s){if(1&t&&(e.j41(0,"div",37),e.nrm(1,"fa-icon",38),e.DNE(2,Ie,2,1,"span",39),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.invoiceError)}}let nt=(()=>{var t;class s{constructor(i,o,a,l,h,f){this.dialogRef=i,this.data=o,this.store=a,this.decimalPipe=l,this.commonService=h,this.actions=f,this.faExclamationTriangle=I.zpE,this.convertedCurrency=null,this.memo="",this.isAmp=!1,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=p.md,this.timeUnitEnum=p.F7,this.timeUnits=p.SY,this.selTimeUnit=p.F7.SECS,this.invoiceError="",this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.actions.pipe((0,x.Q)(this.unSubs[2]),(0,L.p)(i=>i.type===p.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(i=>{i.type===p.QP.UPDATE_API_CALL_STATUS_LND&&"SaveNewInvoice"===i.payload.action&&(this.invoiceError=i.payload.message,i.payload.status===p.wn.ERROR&&(this.invoiceError=i.payload.message),i.payload.status===p.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(i){this.invoiceError="";let o=0;o=this.expiry?this.selTimeUnit!==p.F7.SECS?this.commonService.convertTime(this.expiry,this.selTimeUnit,p.F7.SECS):this.expiry:p.It,this.store.dispatch((0,N.VK)({payload:{uiMessage:p.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:o,is_amp:this.isAmp,pageSize:this.pageSize,openModal:!0}}))}resetData(){this.memo="",this.invoiceValue=null,this.private=!1,this.isAmp=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=p.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,p.BQ.SATS,p.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,x.Q)(this.unSubs[3])).subscribe({next:i=>{this.convertedCurrency=i,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,p.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.invoiceValueHint="Conversion Error: "+i}}))}onTimeUnitChange(i){this.expiry&&this.selTimeUnit!==i.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,i.value)),this.selTimeUnit=i.value}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(G.il),e.rXU(y.QX),e.rXU(z.h),e.rXU(ce.En))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-create-invoices"]],standalone:!1,decls:55,vars:20,consts:[["addInvoiceForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end start"],["matInput","","autoFocus","","name","memo",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start end"],["matInput","","type","number","name","invoiceValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","24","fxLayoutAlign","start end"],["matInput","","type","number","name","expiry",3,"ngModelChange","step","min","ngModel"],["name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"ml-2"],["fxFlex","49","fxLayoutAlign","start start"],["color","primary","name","private",3,"ngModelChange","ngModel"],["matTooltip","Include routing hints for private channels","matTooltipPosition","above",1,"info-icon"],["color","primary","name","amp",3,"ngModelChange","ngModel"],["matTooltip","Atomic multipath payment invoice","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Create Invoice"),e.k0s()(),e.j41(6,"button",6),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),e.EFF(13,"Memo"),e.k0s(),e.j41(14,"input",10),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.memo,f)||(a.memo=f),r.Njj(f)}),e.k0s()(),e.j41(15,"mat-form-field",11)(16,"mat-label"),e.EFF(17,"Amount"),e.k0s(),e.j41(18,"input",12),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.invoiceValue,f)||(a.invoiceValue=f),r.Njj(f)}),e.bIt("keyup",function(){return r.eBV(l),r.Njj(a.onInvoiceValueChange())}),e.k0s(),e.j41(19,"span",13),e.EFF(20,"Sats "),e.k0s(),e.j41(21,"mat-hint",14),e.DNE(22,Ue,2,0,"span",15)(23,et,2,1,"span",16)(24,Xe,1,1,"span",17),e.EFF(25),e.k0s()(),e.j41(26,"mat-form-field",18)(27,"mat-label"),e.EFF(28,"Expiry"),e.k0s(),e.j41(29,"input",19),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.expiry,f)||(a.expiry=f),r.Njj(f)}),e.k0s(),e.j41(30,"span",13),e.EFF(31),e.nI1(32,"titlecase"),e.k0s()(),e.j41(33,"mat-form-field",18)(34,"mat-label"),e.EFF(35,"Time Unit"),e.k0s(),e.j41(36,"mat-select",20),e.bIt("selectionChange",function(f){return r.eBV(l),r.Njj(a.onTimeUnitChange(f))}),e.DNE(37,Ee,3,4,"mat-option",21),e.k0s()(),e.j41(38,"div",22)(39,"div",23)(40,"mat-slide-toggle",24),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.private,f)||(a.private=f),r.Njj(f)}),e.EFF(41,"Private Routing Hints"),e.k0s(),e.j41(42,"mat-icon",25),e.EFF(43,"info_outline"),e.k0s()(),e.j41(44,"div",23)(45,"mat-slide-toggle",26),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.isAmp,f)||(a.isAmp=f),r.Njj(f)}),e.EFF(46,"AMP Invoice"),e.k0s(),e.j41(47,"mat-icon",27),e.EFF(48,"info_outline"),e.k0s()()(),e.DNE(49,tt,3,2,"div",28),e.j41(50,"div",29)(51,"button",30),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(52,"Clear Field"),e.k0s(),e.j41(53,"button",31),e.bIt("click",function(){r.eBV(l);const f=e.sdS(10);return r.Njj(a.onAddInvoice(f))}),e.EFF(54,"Create Invoice"),e.k0s()()()()()()}2&o&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.R50("ngModel",a.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",a.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==a.invoiceValueHint),e.R7$(),e.Y8G("ngIf",a.convertedCurrency&&"FA"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),e.R7$(),e.Y8G("ngIf",a.convertedCurrency&&"SVG"===a.convertedCurrency.iconType&&""!==a.invoiceValueHint),e.R7$(),e.SpI(" ",a.invoiceValueHint," "),e.R7$(4),e.Y8G("step",a.selTimeUnit===a.timeUnitEnum.SECS?300:a.selTimeUnit===a.timeUnitEnum.MINS?10:a.selTimeUnit===a.timeUnitEnum.HOURS?2:1)("min",1),e.R50("ngModel",a.expiry),e.R7$(2),e.SpI("",e.bMT(32,18,a.selTimeUnit)," "),e.R7$(5),e.Y8G("value",a.selTimeUnit),e.R7$(),e.Y8G("ngForOf",a.timeUnits),e.R7$(3),e.R50("ngModel",a.private),e.R7$(5),e.R50("ngModel",a.isAmp),e.R7$(4),e.Y8G("ngIf",""!==a.invoiceError))},dependencies:[y.Sq,y.bT,g.qT,g.me,g.Q0,g.BC,g.cb,g.VZ,g.vS,g.cV,ee.aY,ne.tx,$.$z,B.m2,B.MM,ke.An,Z.fg,R.rl,R.nJ,R.MV,R.yw,b.DJ,b.sA,b.UI,O.VO,ae.wT,Re.sG,fe.oV,pe.N,ye.V,y.PV],encapsulation:2}))}return t(),s})();var Me=S(6391),Y=S(1771),ue=S(2929),K=S(497);const je=()=>["all"],ve=t=>({"error-border":t}),Oe=()=>["no_invoice"],Ge=t=>({"mr-0":t}),ge=t=>({width:t}),it=t=>({"display-none":t});function u(t,s){1&t&&(e.j41(0,"span",19),e.EFF(1,"= "),e.k0s())}function c(t,s){if(1&t&&(e.j41(0,"span",20),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.convertedCurrency.symbol)}}function m(t,s){if(1&t&&e.nrm(0,"span",22),2&t){const n=e.XpG(2);e.Y8G("innerHTML",n.convertedCurrency.symbol,e.npT)}}function d(t,s){if(1&t){const n=e.RV6();e.j41(0,"form",6,0)(2,"mat-form-field",7)(3,"mat-label"),e.EFF(4,"Memo"),e.k0s(),e.j41(5,"input",8),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.memo,o)||(a.memo=o),r.Njj(o)}),e.k0s()(),e.j41(6,"mat-form-field",9)(7,"mat-label"),e.EFF(8,"Amount"),e.k0s(),e.j41(9,"input",10),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.invoiceValue,o)||(a.invoiceValue=o),r.Njj(o)}),e.bIt("keyup",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onInvoiceValueChange())}),e.k0s(),e.j41(10,"span",11),e.EFF(11,"Sats "),e.k0s(),e.j41(12,"mat-hint",12),e.DNE(13,u,2,0,"span",13)(14,c,2,1,"span",14)(15,m,1,1,"span",15),e.EFF(16),e.k0s()(),e.j41(17,"div",16)(18,"button",17),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(19,"Clear Field"),e.k0s(),e.j41(20,"button",18),e.bIt("click",function(){r.eBV(n);const o=e.sdS(1),a=e.XpG();return r.Njj(a.onAddInvoice(o))}),e.EFF(21,"Create Invoice"),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(5),e.R50("ngModel",n.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",n.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==n.invoiceValueHint),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"FA"===n.convertedCurrency.iconType&&""!==n.invoiceValueHint),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"SVG"===n.convertedCurrency.iconType&&""!==n.invoiceValueHint),e.R7$(),e.SpI(" ",n.invoiceValueHint," ")}}function F(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",23)(1,"button",24),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.openCreateInvoiceModal())}),e.EFF(2,"Create Invoice"),e.k0s()()}}function v(t,s){if(1&t&&(e.j41(0,"mat-option",72),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function k(t,s){1&t&&e.nrm(0,"mat-progress-bar",73)}function H(t,s){1&t&&e.nrm(0,"th",74)}function se(t,s){if(1&t&&e.nrm(0,"span",80),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ge,n.screenSize===n.screenSizeEnum.XS))}}function ie(t,s){if(1&t&&e.nrm(0,"span",81),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ge,n.screenSize===n.screenSizeEnum.XS))}}function oe(t,s){if(1&t&&e.nrm(0,"span",82),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ge,n.screenSize===n.screenSizeEnum.XS))}}function te(t,s){if(1&t&&e.nrm(0,"span",83),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ge,n.screenSize===n.screenSizeEnum.XS))}}function Ot(t,s){if(1&t&&(e.j41(0,"td",75),e.DNE(1,se,1,3,"span",76)(2,ie,1,3,"span",77)(3,oe,1,3,"span",78)(4,te,1,3,"span",79),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf","OPEN"===(null==n?null:n.state)),e.R7$(),e.Y8G("ngIf","SETTLED"===(null==n?null:n.state)),e.R7$(),e.Y8G("ngIf","ACCEPTED"===(null==n?null:n.state)),e.R7$(),e.Y8G("ngIf","CANCELED"===(null==n?null:n.state))}}function Vt(t,s){1&t&&e.nrm(0,"th",84)}function Yt(t,s){if(1&t&&(e.j41(0,"span",87),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faEyeSlash)}}function Ut(t,s){if(1&t&&(e.j41(0,"span",88),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faEye)}}function Xt(t,s){if(1&t&&(e.j41(0,"td",75),e.DNE(1,Yt,2,1,"span",85)(2,Ut,2,1,"span",86),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.private),e.R7$(),e.Y8G("ngIf",!n.private)}}function Ht(t,s){1&t&&e.nrm(0,"th",89)}function qt(t,s){if(1&t&&(e.j41(0,"span",92),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faArrowsTurnToDots)}}function zt(t,s){if(1&t&&(e.j41(0,"span",93),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faArrowsTurnRight)}}function Jt(t,s){if(1&t&&(e.j41(0,"td",75),e.DNE(1,qt,2,1,"span",90)(2,zt,2,1,"span",91),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.is_keysend),e.R7$(),e.Y8G("ngIf",!n.is_keysend)}}function Qt(t,s){1&t&&e.nrm(0,"th",94)}function Wt(t,s){if(1&t&&(e.j41(0,"span",97),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faMoneyBill1)}}function Zt(t,s){if(1&t&&(e.j41(0,"span",98),e.nrm(1,"fa-icon",21),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.faBurst)}}function Kt(t,s){if(1&t&&(e.j41(0,"td",75),e.DNE(1,Wt,2,1,"span",95)(2,Zt,2,1,"span",96),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",!n.is_amp),e.R7$(),e.Y8G("ngIf",n.is_amp)}}function en(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Date Created"),e.k0s())}function tn(t,s){if(1&t&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==n?null:n.creation_date),"dd/MMM/y HH:mm"))}}function nn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Date Settled"),e.k0s())}function an(t,s){if(1&t&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(0!=+(null==n?null:n.settle_date)?e.i5U(2,1,1e3*+(null==n?null:n.settle_date),"dd/MMM/y HH:mm"):"-")}}function sn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Memo"),e.k0s())}function on(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.memo)}}function ln(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Preimage"),e.k0s())}function rn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.r_preimage)}}function cn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Preimage Hash"),e.k0s())}function pn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.r_hash)}}function mn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Payment Address"),e.k0s())}function un(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_addr)}}function hn(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Payment Request"),e.k0s())}function dn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_request)}}function _n(t,s){1&t&&(e.j41(0,"th",99),e.EFF(1,"Description Hash"),e.k0s())}function fn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ge,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description_hash)}}function gn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Expiry"),e.k0s())}function Cn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.expiry)," ")}}function yn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"CLTV Expiry"),e.k0s())}function bn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.cltv_expiry)," ")}}function Fn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Add Index"),e.k0s())}function xn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.add_index)," ")}}function vn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Settle Index"),e.k0s())}function Tn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.settle_index)," ")}}function kn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Amount (Sats)"),e.k0s())}function Sn(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.value)," ")}}function Rn(t,s){1&t&&(e.j41(0,"th",102),e.EFF(1,"Amount Settled (Sats)"),e.k0s())}function En(t,s){if(1&t&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.amt_paid_sat)," ")}}function In(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",104)(1,"div",105)(2,"mat-select",106),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",107),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function wn(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",108)(1,"div",105)(2,"mat-select",109),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",107),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onInvoiceClick(o))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",107),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onRefreshInvoice(o))}),e.EFF(7,"Refresh"),e.k0s()()()()}}function Ln(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No invoice available."),e.k0s())}function jn(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting invoices..."),e.k0s())}function Gn(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function Dn(t,s){if(1&t&&(e.j41(0,"td",110),e.DNE(1,Ln,2,0,"p",111)(2,jn,2,0,"p",111)(3,Gn,2,1,"p",111),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.invoices&&n.invoices.data)||(null==n.invoices||null==n.invoices.data?null:n.invoices.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.invoices&&n.invoices.data)||(null==n.invoices||null==n.invoices.data?null:n.invoices.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.invoices&&n.invoices.data)||(null==n.invoices||null==n.invoices.data?null:n.invoices.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Nn(t,s){if(1&t&&e.nrm(0,"tr",112),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,it,(null==n.invoices?null:n.invoices.data)&&(null==n.invoices||null==n.invoices.data?null:n.invoices.data.length)>0))}}function Pn(t,s){1&t&&e.nrm(0,"tr",113)}function Bn(t,s){1&t&&e.nrm(0,"tr",114)}function An(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",25)(1,"div",26)(2,"div",27),e.nrm(3,"fa-icon",28),e.j41(4,"span",29),e.EFF(5,"Invoices History"),e.k0s()(),e.j41(6,"div",30)(7,"mat-form-field",31)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",32),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilterBy,o)||(a.selFilterBy=o),r.Njj(o)}),e.bIt("selectionChange",function(){r.eBV(n);const o=e.XpG();return o.selFilter="",r.Njj(o.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,v,2,2,"mat-option",33),e.k0s()()(),e.j41(13,"mat-form-field",31)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",34),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilter,o)||(a.selFilter=o),r.Njj(o)}),e.bIt("input",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())})("keyup",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())}),e.k0s()()()(),e.j41(17,"div",35),e.DNE(18,k,1,0,"mat-progress-bar",36),e.j41(19,"table",37,1),e.qex(21,38),e.DNE(22,H,1,0,"th",39)(23,Ot,5,4,"td",40),e.bVm(),e.qex(24,41),e.DNE(25,Vt,1,0,"th",42)(26,Xt,3,2,"td",40),e.bVm(),e.qex(27,43),e.DNE(28,Ht,1,0,"th",44)(29,Jt,3,2,"td",40),e.bVm(),e.qex(30,45),e.DNE(31,Qt,1,0,"th",46)(32,Kt,3,2,"td",40),e.bVm(),e.qex(33,47),e.DNE(34,en,2,0,"th",48)(35,tn,3,4,"td",40),e.bVm(),e.qex(36,49),e.DNE(37,nn,2,0,"th",48)(38,an,3,4,"td",40),e.bVm(),e.qex(39,50),e.DNE(40,sn,2,0,"th",48)(41,on,4,4,"td",40),e.bVm(),e.qex(42,51),e.DNE(43,ln,2,0,"th",48)(44,rn,4,4,"td",40),e.bVm(),e.qex(45,52),e.DNE(46,cn,2,0,"th",48)(47,pn,4,4,"td",40),e.bVm(),e.qex(48,53),e.DNE(49,mn,2,0,"th",48)(50,un,4,4,"td",40),e.bVm(),e.qex(51,54),e.DNE(52,hn,2,0,"th",48)(53,dn,4,4,"td",40),e.bVm(),e.qex(54,55),e.DNE(55,_n,2,0,"th",48)(56,fn,4,4,"td",40),e.bVm(),e.qex(57,56),e.DNE(58,gn,2,0,"th",57)(59,Cn,4,3,"td",40),e.bVm(),e.qex(60,58),e.DNE(61,yn,2,0,"th",57)(62,bn,4,3,"td",40),e.bVm(),e.qex(63,59),e.DNE(64,Fn,2,0,"th",57)(65,xn,4,3,"td",40),e.bVm(),e.qex(66,60),e.DNE(67,vn,2,0,"th",57)(68,Tn,4,3,"td",40),e.bVm(),e.qex(69,61),e.DNE(70,kn,2,0,"th",57)(71,Sn,4,3,"td",40),e.bVm(),e.qex(72,62),e.DNE(73,Rn,2,0,"th",57)(74,En,4,3,"td",40),e.bVm(),e.qex(75,63),e.DNE(76,In,6,0,"th",64)(77,wn,8,0,"td",65),e.bVm(),e.qex(78,66),e.DNE(79,Dn,4,3,"td",67),e.bVm(),e.DNE(80,Nn,1,3,"tr",68)(81,Pn,1,0,"tr",69)(82,Bn,1,0,"tr",70),e.k0s(),e.j41(83,"mat-paginator",71),e.bIt("page",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onPageChange(o))}),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(3),e.Y8G("icon",n.faHistory),e.R7$(7),e.R50("ngModel",n.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(16,je).concat(n.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",n.selFilter),e.R7$(2),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",n.tableSetting.sortBy)("matSortDirection",n.tableSetting.sortOrder)("dataSource",n.invoices)("ngClass",e.eq3(17,ve,""!==n.errorMessage)),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(19,Oe)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns),e.R7$(),e.Y8G("length",n.totalInvoices)("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("showFirstLastButtons",n.screenSize!==n.screenSizeEnum.XS)}}let gt=(()=>{var t;class s{constructor(i,o,a,l,h,f,P){this.logger=i,this.store=o,this.decimalPipe=a,this.commonService=l,this.datePipe=h,this.actions=f,this.camelCaseWithReplace=P,this.calledFrom="transactions",this.faEye=I.pS3,this.faEyeSlash=I.k6j,this.faHistory=I.Int,this.faArrowsTurnToDots=I.If6,this.faArrowsTurnRight=I.peG,this.faBurst=I.M29,this.faMoneyBill1=I.Ccf,this.convertedCurrency=null,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:p.md,sortBy:"creation_date",sortOrder:p.oi.DESCENDING},this.newlyAddedInvoiceMemo=null,this.newlyAddedInvoiceValue=null,this.memo="",this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoicesData=[],this.invoices=new _.I6([]),this.information={},this.selFilter="",this.private=!1,this.expiryStep=100,this.pageSize=p.md,this.pageSizeOptions=p.xp,this.firstOffset=-1,this.lastOffset=-1,this.totalInvoices=0,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("state"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.rN).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalInvoices=i.listInvoices.total_invoices||0,this.firstOffset=+(i.listInvoices.first_index_offset||-1),this.lastOffset=+(i.listInvoices.last_index_offset||-1),this.invoicesData=i.listInvoices.invoices||[],this.invoicesData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoicesData),this.logger.info(i)}),this.actions.pipe((0,x.Q)(this.unSubs[4]),(0,L.p)(i=>i.type===p.QP.SET_LOOKUP_LND||i.type===p.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(i=>{i.type===p.QP.SET_LOOKUP_LND&&this.invoicesData&&this.sort&&this.paginator&&i.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(i.payload))),this.loadInvoicesTable(this.invoicesData))})}ngAfterViewInit(){this.invoicesData.length>0&&this.loadInvoicesTable(this.invoicesData)}onAddInvoice(i){const o=this.expiry?this.expiry:p.It;this.newlyAddedInvoiceMemo=this.memo,this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,N.VK)({payload:{uiMessage:p.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:o,is_amp:!1,pageSize:this.pageSize,openModal:!0}})),this.resetData()}onInvoiceClick(i){this.store.dispatch((0,Y.xO)({payload:{data:{invoice:i,newlyAdded:!1,component:Me.H}}}))}onRefreshInvoice(i){i&&i.r_hash&&this.store.dispatch((0,N.Yi)({payload:{openSnackBar:!0,paymentHash:Buffer.from(i.r_hash.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}updateInvoicesData(i){this.invoicesData=this.invoicesData?.map(o=>o.r_hash===i.r_hash?i:o)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.invoices.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.creation_date?this.datePipe.transform(new Date(1e3*i.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+(i.settle_date?this.datePipe.transform(new Date(1e3*i.settle_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(i).toLowerCase();break;case"creation_date":case"settle_date":a=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"private":a=i?.private?"private":"public";break;case"is_keysend":a=i?.is_keysend?"keysend invoices":"non keysend invoices";break;case"is_amp":a=i?.is_amp?"atomic multi path payment":"non atomic payment";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"is_keysend"===this.selFilterBy||"is_amp"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}loadInvoicesTable(i){this.invoices=new _.I6(i?[...i]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.invoices)}resetData(){this.memo="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}onPageChange(i){let o=!0,a=this.lastOffset;this.pageSize=i.pageSize,0===i.pageIndex?(o=!0,a=0):i.previousPageIndex&&i.pageIndexi.previousPageIndex&&i.length>(i.pageIndex+1)*i.pageSize?(o=!0,a=this.firstOffset):i.length<=(i.pageIndex+1)*i.pageSize&&(o=!1,a=0),this.store.dispatch((0,N.Do)({payload:{num_max_invoices:i.pageSize,index_offset:a,reversed:o}}))}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,p.BQ.SATS,p.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,x.Q)(this.unSubs[5])).subscribe({next:i=>{this.convertedCurrency=i,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,p.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.invoiceValueHint="Conversion Error: "+i}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}openCreateInvoiceModal(){this.store.dispatch((0,Y.xO)({payload:{data:{pageSize:this.pageSize,component:nt}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(y.QX),e.rXU(z.h),e.rXU(y.vh),e.rXU(ce.En),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lightning-invoices"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end start"],["matInput","","tabindex","1","name","memo",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","2","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","5",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private",4,"matHeaderCellDef"],["matColumnDef","is_keysend"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Keysend",4,"matHeaderCellDef"],["matColumnDef","is_amp"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","AMP",4,"matHeaderCellDef"],["matColumnDef","creation_date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","settle_date"],["matColumnDef","memo"],["matColumnDef","r_preimage"],["matColumnDef","r_hash"],["matColumnDef","payment_addr"],["matColumnDef","payment_request"],["matColumnDef","description_hash"],["matColumnDef","expiry"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","cltv_expiry"],["matColumnDef","add_index"],["matColumnDef","settle_index"],["matColumnDef","value"],["matColumnDef","amt_paid_sat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","6",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"page","length","pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State"],["mat-cell",""],["class","dot grey","matTooltip","Open","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Canceled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Open","matTooltipPosition","right",1,"dot","grey",3,"ngClass"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Canceled","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Keysend"],["class","mr-1","matTooltip","Keysend Invoices","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Non Keysend Invoices","matTooltipPosition","right",4,"ngIf"],["matTooltip","Keysend Invoices","matTooltipPosition","right",1,"mr-1"],["matTooltip","Non Keysend Invoices","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","AMP"],["class","mr-1","matTooltip","Non Atomic Payment","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Atomic Multi Path Payment","matTooltipPosition","right",4,"ngIf"],["matTooltip","Non Atomic Payment","matTooltipPosition","right",1,"mr-1"],["matTooltip","Atomic Multi Path Payment","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","6"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){1&o&&(e.j41(0,"div",2),e.DNE(1,d,22,8,"form",3)(2,F,3,0,"div",4)(3,An,84,20,"div",5),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf","home"===a.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===a.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.qT,g.me,g.Q0,g.BC,g.cb,g.VZ,g.vS,g.cV,ee.aY,$.$z,Z.fg,R.rl,R.nJ,R.MV,R.yw,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,fe.oV,X.iy,K.ZF,K.Ld,ye.V,y.QX,y.vh],styles:[".mat-column-state[_ngcontent-%COMP%], .mat-column-private[_ngcontent-%COMP%], .mat-column-is_keysend[_ngcontent-%COMP%], .mat-column-is_amp[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return t(),s})();var be=S(6697),Fe=S(1534),he=S(9454),De=S(2628);const $n=["paymentReq"];function Mn(t,s){if(1&t&&(e.j41(0,"span",36),e.nrm(1,"fa-icon",37),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.convertedCurrency.symbol)}}function On(t,s){if(1&t&&e.nrm(0,"span",38),2&t){const n=e.XpG(2);e.Y8G("innerHTML",n.convertedCurrency.symbol,e.npT)}}function Vn(t,s){if(1&t&&(e.j41(0,"mat-hint",33),e.EFF(1),e.DNE(2,Mn,2,1,"span",34)(3,On,1,1,"span",35),e.EFF(4),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI(" ",n.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"FA"===n.convertedCurrency.iconType&&""!==n.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"SVG"===n.convertedCurrency.iconType&&""!==n.paymentDecodedHintPre),e.R7$(),e.SpI(" ",n.paymentDecodedHintPost," ")}}function Yn(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function Un(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.paymentDecodedHint)}}function Xn(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Payment amount is required."),e.k0s())}function Hn(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",6)(1,"mat-label"),e.EFF(2,"Amount (Sats)"),e.k0s(),e.j41(3,"input",39,4),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.paymentAmount,o)||(a.paymentAmount=o),r.Njj(o)}),e.bIt("change",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onAmountChange(o))}),e.k0s(),e.j41(5,"mat-hint"),e.EFF(6,"It is a zero amount invoice, enter amount to be paid."),e.k0s(),e.DNE(7,Xn,2,0,"mat-error",16),e.k0s()}if(2&t){const n=e.XpG();e.R7$(3),e.R50("ngModel",n.paymentAmount),e.R7$(4),e.Y8G("ngIf",!n.paymentAmount)}}function qn(t,s){if(1&t&&(e.j41(0,"mat-option",40),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.SpI(" ",null==n?null:n.name," ")}}function zn(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("",null==n.selFeeLimitType?null:n.selFeeLimitType.placeholder," is required.")}}function Jn(t,s){if(1&t&&(e.j41(0,"mat-option",40),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.JRh((null==n?null:n.remote_alias)||(null==n?null:n.chan_id))}}function Qn(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Channel not found in the list."),e.k0s())}function Wn(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.paymentError)}}function Zn(t,s){if(1&t&&(e.j41(0,"div",41),e.nrm(1,"fa-icon",42),e.DNE(2,Wn,2,1,"span",16),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.paymentError)}}let Kn=(()=>{var t;class s{constructor(i,o,a,l,h,f,P){this.dialogRef=i,this.store=o,this.logger=a,this.commonService=l,this.decimalPipe=h,this.actions=f,this.dataService=P,this.faExclamationTriangle=I.zpE,this.convertedCurrency=null,this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.showAdvanced=!1,this.activeChannels=[],this.filteredMinAmtActvChannels=[],this.selectedChannelCtrl=new g.hs,this.isAmp=!1,this.feeLimit=null,this.selFeeLimitType=p.nv[0],this.feeLimitTypes=p.nv,this.advancedTitle="Advanced Options",this.paymentError="",this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(a=>{this.selNode=a}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[1])).subscribe(a=>{this.activeChannels=a.channels&&a.channels.length?a.channels?.filter(l=>l.active):[],this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.logger.info(a)}),this.actions.pipe((0,x.Q)(this.unSubs[2]),(0,L.p)(a=>a.type===p.QP.UPDATE_API_CALL_STATUS_LND||a.type===p.QP.SEND_PAYMENT_STATUS_LND)).subscribe(a=>{a.type===p.QP.SEND_PAYMENT_STATUS_LND&&this.dialogRef.close(),a.type===p.QP.UPDATE_API_CALL_STATUS_LND&&a.payload.status===p.wn.ERROR&&"SendPayment"===a.payload.action&&(delete this.paymentDecoded.num_satoshis,this.paymentError=a.payload.message)});let i="",o="";this.activeChannels=this.activeChannels.sort((a,l)=>(i=a.remote_alias?a.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"",o=l.remote_alias?l.remote_alias.toLowerCase():l.chan_id?l.chan_id.toLowerCase():"",io?1:0)),this.selectedChannelCtrl.valueChanges.pipe((0,x.Q)(this.unSubs[3])).subscribe(a=>{"string"==typeof a&&(this.filteredMinAmtActvChannels=this.filterChannels())})}filterChannels(){return this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(i=>0===(i.remote_alias?i.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"").indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")&&(i.local_balance||0)>=+(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)):[]}displayFn(i){return i&&i.remote_alias?i.remote_alias:i&&i.chan_id?i.chan_id:""}onSelectedChannelChanged(){if(this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.length>0&&"string"==typeof this.selectedChannelCtrl.value){const i=this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(o=>{const a=o.remote_alias?o.remote_alias.toLowerCase():o.chan_id?o.chan_id.toLowerCase():"";return a.length===this.selectedChannelCtrl.value.length&&0===a.indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")}):[];i&&i.length>0?(this.selectedChannelCtrl.setValue(i[0]),this.selectedChannelCtrl.setErrors(null)):this.selectedChannelCtrl.setErrors({notfound:!0})}}onSendPayment(){if(this.selectedChannelCtrl.value&&"string"==typeof this.selectedChannelCtrl.value&&this.onSelectedChannelChanged(),!this.paymentRequest||this.zeroAmtInvoice&&(!this.paymentAmount||this.paymentAmount<=0)||"string"==typeof this.selectedChannelCtrl.value)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.onPaymentRequestEntry(this.paymentRequest)}sendPayment(){if(this.selFeeLimitType!==this.feeLimitTypes[0]&&!this.feeLimit)return!0;if(this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis){this.zeroAmtInvoice=!1;const i={uiMessage:p.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:this.isAmp,outgoing_chan_ids:this.selectedChannelCtrl.value?.chan_id?[this.selectedChannelCtrl.value.chan_id]:void 0,fee_limit_sat:(0,p.C6)(this.selFeeLimitType.id,this.feeLimit,+this.paymentDecoded.num_satoshis||0),fromDialog:!0};this.store.dispatch((0,N.Fd)({payload:i}))}else{this.zeroAmtInvoice=!0,this.paymentDecoded.num_satoshis=this.paymentAmount?.toString()||"";const i={uiMessage:p.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:this.isAmp,amt:this.paymentAmount||0,outgoing_chan_ids:this.selectedChannelCtrl.value?.chan_id?[this.selectedChannelCtrl.value.chan_id]:void 0,fee_limit_sat:(0,p.C6)(this.selFeeLimitType.id,this.feeLimit,this.paymentAmount||0),fromDialog:!0};this.store.dispatch((0,N.Fd)({payload:i}))}}onAmountChange(i){delete this.paymentDecoded.num_satoshis}onPaymentRequestEntry(i){this.paymentRequest=i,this.paymentAmount=null,this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentRequest&&this.paymentRequest.length>100&&(this.paymentReq.control.setErrors(null),this.zeroAmtInvoice=!1,this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,be.s)(1)).subscribe({next:o=>{this.paymentDecoded=o,this.selectedChannelCtrl.setValue(null),this.onAdvancedPanelToggle(!0,!0),this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.filteredMinAmtActvChannels=this.filterChannels(),this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,p.BQ.SATS,p.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"BTC",this.selNode.settings.fiatConversion).pipe((0,x.Q)(this.unSubs[4])).subscribe({next:a=>{this.convertedCurrency=a,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(a.OTHER?a.OTHER:0,p.k.OTHER)+") | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")},error:a=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None"),this.paymentDecodedHintPost="")):(this.zeroAmtInvoice=!0,this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.paymentDecodedHintPre="Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None"),this.paymentDecodedHintPost="")},error:o=>{this.logger.error(o),this.paymentDecodedHintPre="ERROR: "+o.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}onAdvancedPanelToggle(i,o){if(i&&!o){const a=this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.remote_alias?this.selectedChannelCtrl.value.remote_alias:this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.chan_id?this.selectedChannelCtrl.value.chan_id:"";this.advancedTitle="Advanced Options | "+this.selFeeLimitType.name+("none"===this.selFeeLimitType.id?"":": "+this.feeLimit)+(""!==a?" | First Outgoing Channel: "+a:"")}else this.advancedTitle="Advanced Options"}resetData(){this.paymentDecoded={},this.paymentRequest="",this.isAmp=!1,this.selectedChannelCtrl.setValue(null),this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.feeLimit=null,this.selFeeLimitType=p.nv[0],this.advancedTitle="Advanced Options",this.zeroAmtInvoice=!1,this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost=""}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(G.il),e.rXU(V.gP),e.rXU(z.h),e.rXU(y.QX),e.rXU(ce.En),e.rXU(Fe.u))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lightning-send-payments"]],viewQuery:function(o,a){if(1&o&&e.GBs($n,5),2&o){let l;e.mGM(l=e.lsd())&&(a.paymentReq=l.first)}},standalone:!1,decls:53,vars:22,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["fLmt","ngModel"],["auto","matAutocomplete"],["paymentAmt","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","11","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayoutAlign","space-between stretch","fxLayout","column"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxFlex","100","fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","27","fxLayoutAlign","start end"],["tabindex","5",3,"valueChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","33"],["matInput","","type","number","name","feeLmt","required","","tabindex","6",3,"ngModelChange","step","min","disabled","ngModel"],["fxLayout","column","fxFlex","37","fxLayoutAlign","start end"],["type","text","aria-label","First Outgoing Channel","matInput","","tabindex","7",3,"formControl","matAutocomplete"],[3,"optionSelected","displayWith"],["fxFlex","25","tabindex","8","color","primary","name","isAmp",3,"ngModelChange","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-button","","id","sendBtn","color","primary","tabindex","10",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),e.EFF(5,"Send Payment"),e.k0s()(),e.j41(6,"button",10),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",11)(9,"form",12,0)(11,"mat-form-field",13)(12,"mat-label"),e.EFF(13,"Payment Request"),e.k0s(),e.j41(14,"textarea",14,1),e.bIt("ngModelChange",function(f){return r.eBV(l),r.Njj(a.onPaymentRequestEntry(f))})("matTextareaAutosize",function(){return r.eBV(l),r.Njj(!0)}),e.k0s(),e.DNE(16,Vn,5,4,"mat-hint",15)(17,Yn,2,0,"mat-error",16)(18,Un,2,1,"mat-error",16),e.k0s(),e.DNE(19,Hn,8,2,"mat-form-field",17),e.j41(20,"mat-expansion-panel",18),e.bIt("closed",function(){return r.eBV(l),r.Njj(a.onAdvancedPanelToggle(!0,!1))})("opened",function(){return r.eBV(l),r.Njj(a.onAdvancedPanelToggle(!1,!1))}),e.j41(21,"mat-expansion-panel-header")(22,"mat-panel-title")(23,"span"),e.EFF(24),e.k0s()()(),e.j41(25,"div",19)(26,"mat-form-field",20)(27,"mat-label"),e.EFF(28,"Fee Limits"),e.k0s(),e.j41(29,"mat-select",21),e.mxI("valueChange",function(f){return r.eBV(l),e.DH7(a.selFeeLimitType,f)||(a.selFeeLimitType=f),r.Njj(f)}),e.DNE(30,qn,2,2,"mat-option",22),e.k0s()(),e.j41(31,"mat-form-field",23)(32,"mat-label"),e.EFF(33),e.k0s(),e.j41(34,"input",24,2),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.feeLimit,f)||(a.feeLimit=f),r.Njj(f)}),e.k0s(),e.DNE(36,zn,2,1,"mat-error",16),e.k0s(),e.j41(37,"mat-form-field",25)(38,"mat-label"),e.EFF(39,"First Outgoing Channel"),e.k0s(),e.nrm(40,"input",26),e.j41(41,"mat-autocomplete",27,3),e.bIt("optionSelected",function(){return r.eBV(l),r.Njj(a.onSelectedChannelChanged())}),e.DNE(43,Jn,2,2,"mat-option",22),e.k0s(),e.DNE(44,Qn,2,0,"mat-error",16),e.k0s(),e.j41(45,"mat-slide-toggle",28),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.isAmp,f)||(a.isAmp=f),r.Njj(f)}),e.EFF(46,"AMP Payment"),e.k0s()()(),e.DNE(47,Zn,3,2,"div",29),e.j41(48,"div",30)(49,"button",31),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(50,"Clear Fields"),e.k0s(),e.j41(51,"button",32),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onSendPayment())}),e.EFF(52,"Send Payment"),e.k0s()()()()()()}if(2&o){const l=e.sdS(15),h=e.sdS(42);e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.Y8G("ngModel",a.paymentRequest),e.R7$(2),e.Y8G("ngIf",a.paymentRequest&&""!==a.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!a.paymentRequest),e.R7$(),e.Y8G("ngIf",null==l.errors?null:l.errors.decodeError),e.R7$(),e.Y8G("ngIf",a.zeroAmtInvoice),e.R7$(5),e.JRh(a.advancedTitle),e.R7$(5),e.R50("value",a.selFeeLimitType),e.R7$(),e.Y8G("ngForOf",a.feeLimitTypes),e.R7$(3),e.JRh(null==a.selFeeLimitType?null:a.selFeeLimitType.placeholder),e.R7$(),e.Y8G("step",1)("min",0)("disabled",a.selFeeLimitType===a.feeLimitTypes[0]),e.R50("ngModel",a.feeLimit),e.R7$(2),e.Y8G("ngIf",a.selFeeLimitType!==a.feeLimitTypes[0]&&!a.feeLimit),e.R7$(4),e.Y8G("formControl",a.selectedChannelCtrl)("matAutocomplete",h),e.R7$(),e.Y8G("displayWith",a.displayFn),e.R7$(2),e.Y8G("ngForOf",a.filteredMinAmtActvChannels),e.R7$(),e.Y8G("ngIf",null==a.selectedChannelCtrl.errors?null:a.selectedChannelCtrl.errors.notfound),e.R7$(),e.R50("ngModel",a.isAmp),e.R7$(2),e.Y8G("ngIf",""!==a.paymentError)}},dependencies:[y.Sq,y.bT,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.VZ,g.vS,g.cV,g.l_,ee.aY,ne.tx,$.$z,B.m2,B.MM,he.GK,he.Z2,he.WN,Z.fg,R.rl,R.nJ,R.MV,R.TL,b.DJ,b.sA,b.UI,O.VO,ae.wT,Re.sG,De.$3,De.pN,pe.N,ye.V],encapsulation:2}))}return t(),s})();var Ve=S(7541);const ei=["sendPaymentForm"],ti=()=>["all"],ni=t=>({"error-border":t}),ii=()=>["no_payment"],Ne=t=>({"mr-0":t}),Se=t=>({width:t}),ai=t=>({"display-none":t});function si(t,s){if(1&t&&(e.j41(0,"span",18),e.nrm(1,"fa-icon",19),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("icon",n.convertedCurrency.symbol)}}function oi(t,s){if(1&t&&e.nrm(0,"span",20),2&t){const n=e.XpG(3);e.Y8G("innerHTML",n.convertedCurrency.symbol,e.npT)}}function li(t,s){if(1&t&&(e.j41(0,"mat-hint",15),e.EFF(1),e.DNE(2,si,2,1,"span",16)(3,oi,1,1,"span",17),e.EFF(4),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.SpI(" ",n.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"FA"===n.convertedCurrency.iconType&&""!==n.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",n.convertedCurrency&&"SVG"===n.convertedCurrency.iconType&&""!==n.paymentDecodedHintPre),e.R7$(),e.SpI(" ",n.paymentDecodedHintPost," ")}}function ri(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function ci(t,s){if(1&t){const n=e.RV6();e.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),e.EFF(4,"Payment Request"),e.k0s(),e.j41(5,"textarea",9,1),e.bIt("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onPaymentRequestEntry(o))})("matTextareaAutosize",function(){return r.eBV(n),r.Njj(!0)}),e.k0s(),e.DNE(7,li,5,4,"mat-hint",10)(8,ri,2,0,"mat-error",11),e.k0s(),e.j41(9,"div",12)(10,"button",13),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",14),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSendPayment())}),e.EFF(13,"Send Payment"),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(5),e.Y8G("ngModel",n.paymentRequest),e.R7$(2),e.Y8G("ngIf",n.paymentRequest&&""!==n.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!n.paymentRequest)}}function pi(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.openSendPaymentModal())}),e.EFF(2,"Send Payment"),e.k0s()()}}function mi(t,s){if(1&t&&(e.j41(0,"mat-option",76),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function ui(t,s){1&t&&e.nrm(0,"mat-progress-bar",77)}function hi(t,s){1&t&&e.nrm(0,"th",78)}function di(t,s){if(1&t&&e.nrm(0,"span",82),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ne,n.screenSize===n.screenSizeEnum.XS))}}function _i(t,s){if(1&t&&e.nrm(0,"span",83),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ne,n.screenSize===n.screenSizeEnum.XS))}}function fi(t,s){if(1&t&&(e.j41(0,"td",79),e.DNE(1,di,1,3,"span",80)(2,_i,1,3,"span",81),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===(null==n?null:n.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==n?null:n.status))}}function gi(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Creation Date"),e.k0s())}function Ci(t,s){if(1&t&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==n?null:n.creation_date),"dd/MMM/y HH:mm")," ")}}function yi(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Payment Hash"),e.k0s())}function bi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_hash)}}function Fi(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Payment Request"),e.k0s())}function xi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_request)}}function vi(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Payment Preimage"),e.k0s())}function Ti(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_preimage)}}function ki(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Description"),e.k0s())}function Si(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description)}}function Ri(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Description Hash"),e.k0s())}function Ei(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description_hash)}}function Ii(t,s){1&t&&(e.j41(0,"th",84),e.EFF(1,"Failure Reason"),e.k0s())}function wi(t,s){if(1&t&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.brH(2,1,null==n?null:n.failure_reason,"failure_reason","_")," ")}}function Li(t,s){1&t&&(e.j41(0,"th",87),e.EFF(1,"Payment Index"),e.k0s())}function ji(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.payment_index))}}function Gi(t,s){1&t&&(e.j41(0,"th",87),e.EFF(1,"Fee (Sats)"),e.k0s())}function Di(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.fee))}}function Ni(t,s){1&t&&(e.j41(0,"th",87),e.EFF(1,"Value (Sats)"),e.k0s())}function Pi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.value))}}function Bi(t,s){1&t&&(e.j41(0,"th",87),e.EFF(1,"Hops"),e.k0s())}function Ai(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh((null==n||null==n.htlcs[0]||null==n.htlcs[0].route||null==n.htlcs[0].route.hops?null:n.htlcs[0].route.hops.length)||0)}}function $i(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",89)(1,"div",90)(2,"mat-select",91),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",92),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Mi(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",93)(1,"button",94),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onPaymentClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function Oi(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No payment available."),e.k0s())}function Vi(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting payments..."),e.k0s())}function Yi(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function Ui(t,s){if(1&t&&(e.j41(0,"td",95),e.DNE(1,Oi,2,0,"p",11)(2,Vi,2,0,"p",11)(3,Yi,2,1,"p",11),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.payments&&n.payments.data)||(null==n.payments||null==n.payments.data?null:n.payments.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.payments&&n.payments.data)||(null==n.payments||null==n.payments.data?null:n.payments.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.payments&&n.payments.data)||(null==n.payments||null==n.payments.data?null:n.payments.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Xi(t,s){if(1&t&&e.nrm(0,"span",82),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ne,n.screenSize===n.screenSizeEnum.XS))}}function Hi(t,s){if(1&t&&e.nrm(0,"span",83),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Ne,n.screenSize===n.screenSizeEnum.XS))}}function qi(t,s){if(1&t&&e.nrm(0,"span",82),2&t){const n=e.XpG(5);e.Y8G("ngClass",e.eq3(1,Ne,n.screenSize===n.screenSizeEnum.XS))}}function zi(t,s){if(1&t&&e.nrm(0,"span",83),2&t){const n=e.XpG(5);e.Y8G("ngClass",e.eq3(1,Ne,n.screenSize===n.screenSizeEnum.XS))}}function Ji(t,s){if(1&t&&(e.j41(0,"span",96),e.DNE(1,qi,1,3,"span",80)(2,zi,1,3,"span",81),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===n.status),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==n.status)}}function Qi(t,s){if(1&t&&(e.qex(0),e.DNE(1,Ji,3,2,"span",97),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Wi(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",96),e.DNE(2,Xi,1,3,"span",80)(3,Hi,1,3,"span",81),e.k0s(),e.DNE(4,Qi,2,1,"ng-container",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.Y8G("ngIf","SUCCEEDED"===(null==n?null:n.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==n?null:n.status)),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function Zi(t,s){if(1&t&&(e.j41(0,"span",96),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,n.attempt_time_ns/1e6,"dd/MMM/y HH:mm")," ")}}function Ki(t,s){if(1&t&&(e.qex(0),e.DNE(1,Zi,3,4,"span",97),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ea(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",96),e.EFF(2),e.k0s(),e.DNE(3,Ki,2,1,"ng-container",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.SpI(" Total Attempts: ",null==n||null==n.htlcs?null:n.htlcs.length," "),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function ta(t,s){if(1&t&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&t){const n=s.index;e.R7$(),e.SpI(" HTLC ",n+1," ")}}function na(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,ta,2,1,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ia(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,na,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_hash),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function aa(t,s){1&t&&e.nrm(0,"span",96)}function sa(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,aa,1,0,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function oa(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,sa,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_request),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function la(t,s){if(1&t&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",null==n?null:n.preimage," ")}}function ra(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,la,2,1,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ca(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ra,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.payment_preimage),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function pa(t,s){1&t&&e.nrm(0,"span",96)}function ma(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,pa,1,0,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function ua(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ma,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function ha(t,s){1&t&&e.nrm(0,"span",96)}function da(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,ha,1,0,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function _a(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,da,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,Se,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.description_hash),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function fa(t,s){1&t&&e.nrm(0,"span",96)}function ga(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,fa,1,0,"span",97),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Ca(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",96),e.EFF(2),e.nI1(3,"camelcaseWithReplace"),e.k0s(),e.DNE(4,ga,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.SpI(" ",e.brH(3,2,null==n?null:n.failure_reason,"failure_reason","_")," "),e.R7$(2),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function ya(t,s){if(1&t&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,n.attempt_id)," ")}}function ba(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,ya,3,3,"span",100),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Fa(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,ba,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,2,null==n?null:n.payment_index)),e.R7$(2),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function xa(t,s){if(1&t&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==n.route?null:n.route.total_fees,"1.0-0")," ")}}function va(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,xa,3,4,"span",100),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Ta(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,va,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==n?null:n.fee,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function ka(t,s){if(1&t&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==n.route?null:n.route.total_amt,"1.0-0")," ")}}function Sa(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,ka,3,4,"span",100),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Ra(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,Sa,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==n?null:n.value,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function Ea(t,s){if(1&t&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,(null==n.route||null==n.route.hops?null:n.route.hops.length)||0,"1.0-0")," ")}}function Ia(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Ea,3,4,"span",100),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function wa(t,s){if(1&t&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2,"-"),e.k0s(),e.DNE(3,Ia,2,1,"span",11),e.k0s()),2&t){const n=s.$implicit;e.R7$(3),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function La(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",104)(1,"button",105),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2).$implicit,l=e.XpG(2);return r.Njj(l.onHTLCClick(o,a))}),e.EFF(2),e.k0s()()}if(2&t){const n=s.index;e.R7$(2),e.SpI("View ",n+1)}}function ja(t,s){if(1&t&&(e.j41(0,"div"),e.DNE(1,La,3,1,"div",103),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.htlcs)}}function Ga(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",79)(1,"span",101)(2,"button",102),e.bIt("click",function(){const o=r.eBV(n).$implicit;return r.Njj(o.is_expanded=!(null!=o&&o.is_expanded))}),e.EFF(3),e.k0s()(),e.DNE(4,ja,2,1,"div",11),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(3),e.JRh(null!=n&&n.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",null==n?null:n.is_expanded)}}function Da(t,s){1&t&&e.nrm(0,"tr",106)}function Na(t,s){if(1&t&&e.nrm(0,"tr",107),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,ai,(null==n.payments?null:n.payments.data)&&(null==n.payments||null==n.payments.data?null:n.payments.data.length)>0))}}function Pa(t,s){1&t&&e.nrm(0,"tr",108)}function Ba(t,s){1&t&&e.nrm(0,"tr",106)}function Aa(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",23)(1,"div",24)(2,"div",25),e.nrm(3,"fa-icon",26),e.j41(4,"span",27),e.EFF(5,"Payments History"),e.k0s()(),e.j41(6,"div",28)(7,"mat-form-field",29)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",30),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilterBy,o)||(a.selFilterBy=o),r.Njj(o)}),e.bIt("selectionChange",function(){r.eBV(n);const o=e.XpG();return o.selFilter="",r.Njj(o.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,mi,2,2,"mat-option",31),e.k0s()()(),e.j41(13,"mat-form-field",29)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",32),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilter,o)||(a.selFilter=o),r.Njj(o)}),e.bIt("input",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())})("keyup",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())}),e.k0s()()()(),e.j41(17,"div",33)(18,"div",34),e.DNE(19,ui,1,0,"mat-progress-bar",35),e.j41(20,"table",36,2),e.qex(22,37),e.DNE(23,hi,1,0,"th",38)(24,fi,3,2,"td",39),e.bVm(),e.qex(25,40),e.DNE(26,gi,2,0,"th",41)(27,Ci,3,4,"td",39),e.bVm(),e.qex(28,42),e.DNE(29,yi,2,0,"th",41)(30,bi,4,4,"td",39),e.bVm(),e.qex(31,43),e.DNE(32,Fi,2,0,"th",41)(33,xi,4,4,"td",39),e.bVm(),e.qex(34,44),e.DNE(35,vi,2,0,"th",41)(36,Ti,4,4,"td",39),e.bVm(),e.qex(37,45),e.DNE(38,ki,2,0,"th",41)(39,Si,4,4,"td",39),e.bVm(),e.qex(40,46),e.DNE(41,Ri,2,0,"th",41)(42,Ei,4,4,"td",39),e.bVm(),e.qex(43,47),e.DNE(44,Ii,2,0,"th",41)(45,wi,3,5,"td",39),e.bVm(),e.qex(46,48),e.DNE(47,Li,2,0,"th",49)(48,ji,4,3,"td",39),e.bVm(),e.qex(49,50),e.DNE(50,Gi,2,0,"th",49)(51,Di,4,3,"td",39),e.bVm(),e.qex(52,51),e.DNE(53,Ni,2,0,"th",49)(54,Pi,4,3,"td",39),e.bVm(),e.qex(55,52),e.DNE(56,Bi,2,0,"th",49)(57,Ai,3,1,"td",39),e.bVm(),e.qex(58,53),e.DNE(59,$i,6,0,"th",54)(60,Mi,3,0,"td",55),e.bVm(),e.qex(61,56),e.DNE(62,Ui,4,3,"td",57),e.bVm(),e.qex(63,58),e.DNE(64,Wi,5,3,"td",39),e.bVm(),e.qex(65,59),e.DNE(66,ea,4,2,"td",39),e.bVm(),e.qex(67,60),e.DNE(68,ia,5,5,"td",39),e.bVm(),e.qex(69,61),e.DNE(70,oa,5,5,"td",39),e.bVm(),e.qex(71,62),e.DNE(72,ca,5,5,"td",39),e.bVm(),e.qex(73,63),e.DNE(74,ua,5,5,"td",39),e.bVm(),e.qex(75,64),e.DNE(76,_a,5,5,"td",39),e.bVm(),e.qex(77,65),e.DNE(78,Ca,5,6,"td",39),e.bVm(),e.qex(79,66),e.DNE(80,Fa,5,4,"td",39),e.bVm(),e.qex(81,67),e.DNE(82,Ta,5,5,"td",39),e.bVm(),e.qex(83,68),e.DNE(84,Ra,5,5,"td",39),e.bVm(),e.qex(85,69),e.DNE(86,wa,4,1,"td",39),e.bVm(),e.qex(87,70),e.DNE(88,Ga,5,2,"td",39),e.bVm(),e.DNE(89,Da,1,0,"tr",71)(90,Na,1,3,"tr",72)(91,Pa,1,0,"tr",73)(92,Ba,1,0,"tr",74),e.k0s(),e.j41(93,"mat-paginator",75),e.bIt("page",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onPageChange(o))}),e.k0s()()()()}if(2&t){const n=e.XpG();e.R7$(3),e.Y8G("icon",n.faHistory),e.R7$(7),e.R50("ngModel",n.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(18,ti).concat(n.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",n.selFilter),e.R7$(3),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",n.tableSetting.sortBy)("matSortDirection",n.tableSetting.sortOrder)("dataSource",n.payments)("ngClass",e.eq3(19,ni,""!==n.errorMessage)),e.R7$(69),e.Y8G("matRowDefColumns",n.htlcColumns)("matRowDefWhen",n.is_group),e.R7$(),e.Y8G("matFooterRowDef",e.lJ4(21,ii)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns),e.R7$(),e.Y8G("length",n.totalPayments)("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("showFirstLastButtons",n.screenSize!==n.screenSizeEnum.XS)}}let Ct=(()=>{var t;class s{constructor(i,o,a,l,h,f,P,w){this.logger=i,this.commonService=o,this.dataService=a,this.store=l,this.rtlEffects=h,this.decimalPipe=f,this.datePipe=P,this.camelCaseWithReplace=w,this.calledFrom="transactions",this.faHistory=I.Int,this.convertedCurrency=null,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:p.md,sortBy:"creation_date",sortOrder:p.oi.DESCENDING},this.newlyAddedPayment="",this.information={},this.peers=[],this.payments=new _.I6([]),this.totalPayments=100,this.paymentJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.firstOffset=-1,this.lastOffset=-1,this.selFilter="",this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(E.os).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.peers=i.peers}),this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.htlcColumns=[],this.displayedColumns.map(o=>this.htlcColumns.push("group_"+o)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.KT).pipe((0,x.Q)(this.unSubs[5])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=i.listPayments.payments||[],this.totalPayments=this.paymentJSONArr.length,this.firstOffset=+(i.listPayments.first_index_offset||-1),this.lastOffset=+(i.listPayments.last_index_offset||-1),this.paymentJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr.slice(0,this.pageSize)),this.logger.info(i)})}ngAfterViewInit(){this.paymentJSONArr&&this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr.slice(0,this.pageSize))}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,be.s)(1)).subscribe(i=>{this.paymentDecoded=i,this.paymentDecoded.timestamp?(this.paymentDecoded.num_satoshis=this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis?(+this.paymentDecoded.num_msat/1e3).toString():"0",this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded.payment_hash||"",this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.store.dispatch((0,Y.I1)({payload:{data:{type:p.A$.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"destination",value:this.paymentDecoded.destination,title:"Destination",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:50,type:p.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.num_satoshis,title:"Amount (Sats)",width:50,type:p.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:p.UN.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,be.s)(1)).subscribe(o=>{o&&(this.store.dispatch((0,N.Fd)({payload:{uiMessage:p.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:!1,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,Y.I1)({payload:{data:{type:p.A$.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"destination",value:this.paymentDecoded.destination,title:"Destination",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:40,type:p.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:p.UN.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,getInputs:[{placeholder:"Amount (Sats)",inputType:p.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,be.s)(1)).subscribe(a=>{a&&(this.paymentDecoded.num_satoshis=a[0].inputValue,this.store.dispatch((0,N.Fd)({payload:{uiMessage:p.MZ.SEND_PAYMENT,payment_request:this.paymentRequest,amp:!1,amt:a[0].inputValue,fromDialog:!1}})),this.resetData())}))}openSendPaymentModal(){this.store.dispatch((0,Y.xO)({payload:{data:{component:Kn}}}))}onPaymentRequestEntry(i){this.paymentRequest=i,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,be.s)(1)).subscribe(o=>{this.paymentDecoded=o,this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis?this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,p.BQ.SATS,p.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,x.Q)(this.unSubs[6])).subscribe({next:a=>{this.convertedCurrency=a,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,p.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:a=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}onPageChange(i){let o=!0,a=this.lastOffset;this.pageSize=i.pageSize,0===i.pageIndex?(o=!0,a=0):i.pageIndexi.previousPageIndex&&i.length>(i.pageIndex+1)*i.pageSize?(o=!0,a=this.firstOffset):i.length<=(i.pageIndex+1)*i.pageSize&&(o=!1,a=0);const l=i.pageIndex*this.pageSize;this.loadPaymentsTable(this.paymentJSONArr.slice(l,l+this.pageSize))}is_group(i,o){return o.htlcs&&o.htlcs.length>1}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}getHopDetails(i){const o=this;return new Promise((a,l)=>{const h=o.peers.find(f=>f.pub_key===i.pub_key);h&&h.alias?a("
Channel: "+h.alias.padEnd(20)+"			Amount (Sats): "+o.decimalPipe.transform(i.amt_to_forward)+"
"):o.dataService.getAliasesFromPubkeys(i.pub_key||"",!1).pipe((0,x.Q)(o.unSubs[7])).subscribe({next:f=>a("
Channel: "+(f.node&&f.node.alias?f.node.alias.padEnd(20):i.pub_key?.substring(0,17)+"...")+"			Amount (Sats): "+o.decimalPipe.transform(i.amt_to_forward)+"
"),error:f=>a("
Channel: "+(i.pub_key?i.pub_key?.substring(0,17)+"...":"")+"			Amount (Sats): "+o.decimalPipe.transform(i.amt_to_forward)+"
")})})}onHTLCClick(i,o){o.payment_request&&""!==o.payment_request.trim()?this.dataService.decodePayment(o.payment_request,!1).pipe((0,be.s)(1)).subscribe({next:a=>{setTimeout(()=>{this.showHTLCView(i,o,a)},0)},error:a=>{this.showHTLCView(i,o)}}):this.showHTLCView(i,o)}showHTLCView(i,o,a){i.route&&i.route.hops&&i.route.hops.length?Promise.all(i.route.hops.map(l=>this.getHopDetails(l))).then(l=>{this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(i,o,a,l),scrollable:i.route&&i.route.hops&&i.route.hops.length>1}}}))}):this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(i,o,a,[]),scrollable:i.route&&i.route.hops&&i.route.hops.length>1}}}))}prepareData(i,o,a,l){const h=[[{key:"payment_hash",value:o.payment_hash,title:"Payment Hash",width:100,type:p.UN.STRING}],[{key:"preimage",value:i.preimage,title:"Preimage",width:100,type:p.UN.STRING}],[{key:"payment_request",value:o.payment_request,title:"Payment Request",width:100,type:p.UN.STRING}],[{key:"status",value:i.status,title:"Status",width:33,type:p.UN.STRING},{key:"attempt_time_ns",value:+(i.attempt_time_ns||0)/1e9,title:"Attempt Time",width:33,type:p.UN.DATE_TIME},{key:"resolve_time_ns",value:+(i.resolve_time_ns||0)/1e9,title:"Resolve Time",width:34,type:p.UN.DATE_TIME}],[{key:"total_amt",value:i.route?.total_amt,title:"Amount (Sats)",width:33,type:p.UN.NUMBER},{key:"total_fees",value:i.route?.total_fees,title:"Fee (Sats)",width:33,type:p.UN.NUMBER},{key:"total_time_lock",value:i.route?.total_time_lock,title:"Total Time Lock",width:34,type:p.UN.NUMBER}],[{key:"hops",value:l,title:"Hops",width:100,type:p.UN.ARRAY}]];return a&&a.description&&""!==a.description&&h.splice(3,0,[{key:"description",value:a.description,title:"Description",width:100,type:p.UN.STRING}]),h}onPaymentClick(i){if(i.htlcs&&i.htlcs[0]&&i.htlcs[0].route&&i.htlcs[0].route.hops&&i.htlcs[0].route.hops.length>0){const o=i.htlcs[0].route.hops?.reduce((a,l)=>l.pub_key&&""===a?l.pub_key:a+","+l.pub_key,"");this.dataService.getAliasesFromPubkeys(o,!0).pipe((0,x.Q)(this.unSubs[8])).subscribe(a=>{this.showPaymentView(i,a?.reduce((l,h)=>""===l?h:l+"\n"+h,""))})}else this.showPaymentView(i,"")}showPaymentView(i,o){const a=[[{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:p.UN.STRING}],[{key:"payment_preimage",value:i.payment_preimage,title:"Payment Preimage",width:100,type:p.UN.STRING}],[{key:"payment_request",value:i.payment_request,title:"Payment Request",width:100,type:p.UN.STRING}],[{key:"status",value:i.status,title:"Status",width:50,type:p.UN.STRING},{key:"creation_date",value:i.creation_date,title:"Creation Date",width:50,type:p.UN.DATE_TIME}],[{key:"value_msat",value:i.value_msat,title:"Value (mSats)",width:50,type:p.UN.NUMBER},{key:"fee_msat",value:i.fee_msat,title:"Fee (mSats)",width:50,type:p.UN.NUMBER}],[{key:"path",value:o,title:"Path",width:100,type:p.UN.STRING}]];i.payment_request&&""!==i.payment_request.trim()?this.dataService.decodePayment(i.payment_request,!1).pipe((0,be.s)(1)).subscribe(l=>{l&&l.description&&""!==l.description&&a.splice(3,0,[{key:"description",value:l.description,title:"Description",width:100,type:p.UN.STRING}]),setTimeout(()=>{this.openPaymentAlert(a,!!(i.htlcs&&i.htlcs[0]&&i.htlcs[0].route&&i.htlcs[0].route.hops&&i.htlcs[0].route.hops.length>1))},0)}):this.openPaymentAlert(a,!1)}openPaymentAlert(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Payment Information",message:i,scrollable:o}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.payments.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.creation_date?this.datePipe.transform(new Date(1e3*i.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(i).toLowerCase();break;case"status":case"group_status":a="SUCCEEDED"===i?.status?"succeeded":"failed";break;case"creation_date":a=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"failure_reason":case"group_failure_reason":a=this.camelCaseWithReplace.transform(i.failure_reason||"","failure_reason","_").trim().toLowerCase();break;case"hops":a=i.htlcs&&i.htlcs[0]&&i.htlcs[0].route&&i.htlcs[0].route.hops&&i.htlcs[0].route.hops.length?i.htlcs[0].route.hops.length.toString():"0";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"failure_reason"===this.selFilterBy||"group_failure_reason"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}loadPaymentsTable(i){this.payments=new _.I6(i?[...i]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(o,a)=>"hops"===a?o.htlcs.length&&o.htlcs[0]&&o.htlcs[0].route&&o.htlcs[0].route.hops&&o.htlcs[0].route.hops.length?o.htlcs[0].route.hops.length:0:o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const i=JSON.parse(JSON.stringify(this.payments.data)),o=i?.reduce((a,l)=>(l.payment_request&&""!==l.payment_request.trim()&&(a=""===a?l.payment_request:a+","+l.payment_request),a),"");this.dataService.decodePayments(o).pipe((0,x.Q)(this.unSubs[9])).subscribe(a=>{let l=0;a.forEach((f,P)=>{if(f){for(;i[P+l].payment_hash!==f.payment_hash;)l+=1;i[P+l].description=f.description}});const h=i?.reduce((f,P)=>f.concat(P),[]);this.commonService.downloadFile(h,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(Fe.u),e.rXU(G.il),e.rXU(Ve.H),e.rXU(y.QX),e.rXU(y.vh),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lightning-payments"]],viewQuery:function(o,a){if(1&o&&(e.GBs(ei,5),e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first),e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayoutAlign","space-between stretch","fxLayout","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayoutAlign","space-between stretch","fxLayout","row wrap"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","4",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","creation_date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","payment_hash"],["matColumnDef","payment_request"],["matColumnDef","payment_preimage"],["matColumnDef","description"],["matColumnDef","description_hash"],["matColumnDef","failure_reason"],["matColumnDef","payment_index"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","fee"],["matColumnDef","value"],["matColumnDef","hops"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_status"],["matColumnDef","group_creation_date"],["matColumnDef","group_payment_hash"],["matColumnDef","group_payment_request"],["matColumnDef","group_payment_preimage"],["matColumnDef","group_description"],["matColumnDef","group_description_hash"],["matColumnDef","group_failure_reason"],["matColumnDef","group_payment_index"],["matColumnDef","group_fee"],["matColumnDef","group_value"],["matColumnDef","group_hops"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"page","length","pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Succeeded","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Failed","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Succeeded","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Failed","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayout","row",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(o,a){1&o&&(e.j41(0,"div",3),e.DNE(1,ci,14,3,"form",4)(2,pi,3,0,"div",5)(3,Aa,94,22,"div",6),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf","home"===a.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===a.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===a.calledFrom))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,ee.aY,$.$z,Z.fg,R.rl,R.nJ,R.MV,R.TL,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,fe.oV,X.iy,K.ZF,K.Ld,y.QX,y.vh,ue.VD],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-group_actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_status[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type), .mat-column-group_creation_date[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.htlc-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.3rem;position:absolute}.mat-column-group_creation_date[_ngcontent-%COMP%]{min-width:11rem}"]}))}return t(),s})();const yt=t=>({backgroundColor:t});function $a(t,s){if(1&t&&e.nrm(0,"span",8),2&t){const n=e.XpG();e.Y8G("ngStyle",e.eq3(1,yt,null==n.information?null:n.information.color))}}function Ma(t,s){if(1&t&&(e.j41(0,"div")(1,"h4",1),e.EFF(2,"Color"),e.k0s(),e.j41(3,"div",2),e.nrm(4,"span",9),e.EFF(5),e.nI1(6,"uppercase"),e.k0s()()),2&t){const n=e.XpG();e.R7$(4),e.Y8G("ngStyle",e.eq3(4,yt,null==n.information?null:n.information.color)),e.R7$(),e.SpI(" ",e.bMT(6,2,null==n.information?null:n.information.color)," ")}}function Oa(t,s){1&t&&e.nrm(0,"span",10)}function Va(t,s){1&t&&e.nrm(0,"span",11)}function Ya(t,s){if(1&t&&(e.j41(0,"span",2),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}let bt=(()=>{var t;class s{constructor(i){this.commonService=i,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(i=>{this.chains.push(this.commonService.titleCase(i.chain)+" "+this.commonService.titleCase(i.network))}))}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},standalone:!1,features:[e.OA$],decls:19,vars:7,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","dot green mr-1","matTooltip","Synced to Chain","matTooltipPosition","right",4,"ngIf"],["class","dot red mr-1","matTooltip","Not Synced to Chain","matTooltipPosition","right",4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"],["matTooltip","Synced to Chain","matTooltipPosition","right",1,"dot","green","mr-1"],["matTooltip","Not Synced to Chain","matTooltipPosition","right",1,"dot","red","mr-1"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div")(2,"h4",1),e.EFF(3,"Alias"),e.k0s(),e.j41(4,"div",2),e.EFF(5),e.DNE(6,$a,1,3,"span",3),e.k0s()(),e.DNE(7,Ma,7,6,"div",4),e.j41(8,"div")(9,"h4",1),e.EFF(10,"Implementation"),e.k0s(),e.j41(11,"div",2),e.EFF(12),e.k0s()(),e.j41(13,"div")(14,"h4",1),e.EFF(15,"Chain"),e.k0s(),e.DNE(16,Oa,1,0,"span",5)(17,Va,1,0,"span",6)(18,Ya,2,1,"span",7),e.k0s()()),2&o&&(e.R7$(5),e.SpI(" ",null==a.information?null:a.information.alias," "),e.R7$(),e.Y8G("ngIf",!a.showColorFieldSeparately),e.R7$(),e.Y8G("ngIf",a.showColorFieldSeparately),e.R7$(5),e.JRh(null!=a.information&&a.information.lnImplementation||null!=a.information&&a.information.version?(null==a.information?null:a.information.lnImplementation)+" "+(null==a.information?null:a.information.version):""),e.R7$(4),e.Y8G("ngIf",null==a.information?null:a.information.synced_to_chain),e.R7$(),e.Y8G("ngIf",!(null!=a.information&&a.information.synced_to_chain)),e.R7$(),e.Y8G("ngForOf",a.chains))},dependencies:[y.Sq,y.bT,y.B3,b.DJ,b.sA,b.UI,U.eI,fe.oV,y.Pc],encapsulation:2}))}return t(),s})();function Ua(t,s){if(1&t&&(e.j41(0,"div",2)(1,"div")(2,"h4",3),e.EFF(3,"Lightning"),e.k0s(),e.j41(4,"div",4),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.nrm(7,"mat-progress-bar",5),e.k0s(),e.j41(8,"div")(9,"h4",3),e.EFF(10,"On-chain"),e.k0s(),e.j41(11,"div",4),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.nrm(14,"mat-progress-bar",5),e.k0s(),e.j41(15,"div")(16,"h4",3),e.EFF(17,"Total"),e.k0s(),e.j41(18,"div",4),e.EFF(19),e.nI1(20,"number"),e.k0s()()()),2&t){const n=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,7,null==n.balances?null:n.balances.lightning)," Sats"),e.R7$(2),e.Y8G("value",e.mNQ((null==n.balances?null:n.balances.lightning)/(null==n.balances?null:n.balances.total)*100)),e.R7$(5),e.SpI("",e.bMT(13,9,null==n.balances?null:n.balances.onchain)," Sats"),e.R7$(2),e.Y8G("value",e.mNQ((null==n.balances?null:n.balances.onchain)/(null==n.balances?null:n.balances.total)*100)),e.R7$(5),e.SpI("",e.bMT(20,11,null==n.balances?null:n.balances.total)," Sats")}}function Xa(t,s){if(1&t&&(e.j41(0,"div",6)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let Ha=(()=>{var t;class s{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,Ua,21,13,"div",1)(1,Xa,3,1,"ng-template",null,0,e.C5r),2&o){const l=e.sdS(2);e.Y8G("ngIf"," "===a.errorMessage)("ngIfElse",l)}},dependencies:[y.bT,D.HM,b.DJ,b.sA,b.UI,y.QX],encapsulation:2}))}return t(),s})();function qa(t,s){if(1&t&&(e.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e.EFF(4,"Daily"),e.k0s(),e.j41(5,"div",5),e.EFF(6),e.nI1(7,"number"),e.k0s()(),e.j41(8,"div")(9,"h4",4),e.EFF(10,"Weekly"),e.k0s(),e.j41(11,"div",5),e.EFF(12),e.nI1(13,"number"),e.k0s()(),e.j41(14,"div")(15,"h4",4),e.EFF(16,"Monthly"),e.k0s(),e.j41(17,"div",5),e.EFF(18),e.nI1(19,"number"),e.k0s()(),e.j41(20,"div",6),e.nrm(21,"h4",7)(22,"span",5),e.k0s()(),e.j41(23,"div",3)(24,"div")(25,"h4",4),e.EFF(26,"Transactions"),e.k0s(),e.j41(27,"div",5),e.EFF(28),e.nI1(29,"number"),e.k0s()(),e.j41(30,"div")(31,"h4",4),e.EFF(32,"Transactions"),e.k0s(),e.j41(33,"div",5),e.EFF(34),e.nI1(35,"number"),e.k0s()(),e.j41(36,"div")(37,"h4",4),e.EFF(38,"Transactions"),e.k0s(),e.j41(39,"div",5),e.EFF(40),e.nI1(41,"number"),e.k0s()(),e.j41(42,"div",6),e.nrm(43,"h4",7)(44,"span",5),e.k0s()()()),2&t){const n=e.XpG();e.R7$(6),e.SpI("",e.bMT(7,6,null==n.fees?null:n.fees.day_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(13,8,null==n.fees?null:n.fees.week_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(19,10,null==n.fees?null:n.fees.month_fee_sum)," Sats"),e.R7$(10),e.JRh(e.bMT(29,12,null==n.fees?null:n.fees.daily_tx_count)),e.R7$(6),e.JRh(e.bMT(35,14,null==n.fees?null:n.fees.weekly_tx_count)),e.R7$(6),e.JRh(e.bMT(41,16,null==n.fees?null:n.fees.monthly_tx_count))}}function za(t,s){if(1&t&&(e.j41(0,"div",8)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let Ft=(()=>{var t;class s{constructor(){this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100}ngOnChanges(){if(this.fees.month_fee_sum){this.totalFees=[{name:"Monthly",value:this.fees.month_fee_sum},{name:"Weekly",value:this.fees.week_fee_sum||0},{name:"Daily ",value:this.fees.day_fee_sum||0}];const o=10**(Math.ceil(Math.log(this.fees.month_fee_sum+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.month_fee_sum/o)*o/5||100,Object.assign(this,this.totalFees)}else this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100,Object.assign(this,this.totalFees)}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},standalone:!1,features:[e.OA$],decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"],[1,"dashboard-info-title"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,qa,45,18,"div",1)(1,za,3,1,"ng-template",null,0,e.C5r),2&o){const l=e.sdS(2);e.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",l)}},dependencies:[y.bT,b.DJ,b.sA,b.UI,y.QX],encapsulation:2}))}return t(),s})();function Ja(t,s){if(1&t&&(e.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e.EFF(4,"Active"),e.k0s(),e.j41(5,"div",5),e.nrm(6,"span",6),e.EFF(7),e.nI1(8,"number"),e.k0s()(),e.j41(9,"div")(10,"h4",4),e.EFF(11,"Pending"),e.k0s(),e.j41(12,"div",5),e.nrm(13,"span",7),e.EFF(14),e.nI1(15,"number"),e.k0s()(),e.j41(16,"div")(17,"h4",4),e.EFF(18,"Inactive"),e.k0s(),e.j41(19,"div",5),e.nrm(20,"span",8),e.EFF(21),e.nI1(22,"number"),e.k0s()(),e.j41(23,"div")(24,"h4",4),e.EFF(25,"Closing"),e.k0s(),e.j41(26,"div",5),e.nrm(27,"span",9),e.EFF(28),e.nI1(29,"number"),e.k0s()()(),e.j41(30,"div",3)(31,"div")(32,"h4",4),e.EFF(33,"Capacity"),e.k0s(),e.j41(34,"div",5),e.EFF(35),e.nI1(36,"number"),e.k0s()(),e.j41(37,"div")(38,"h4",4),e.EFF(39,"Capacity"),e.k0s(),e.j41(40,"div",5),e.EFF(41),e.nI1(42,"number"),e.k0s()(),e.j41(43,"div")(44,"h4",4),e.EFF(45,"Capacity"),e.k0s(),e.j41(46,"div",5),e.EFF(47),e.nI1(48,"number"),e.k0s()(),e.j41(49,"div")(50,"h4",4),e.EFF(51,"Capacity"),e.k0s(),e.j41(52,"div",5),e.EFF(53),e.nI1(54,"number"),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(7),e.JRh(e.bMT(8,8,(null==n.channelsStatus||null==n.channelsStatus.active?null:n.channelsStatus.active.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(15,10,(null==n.channelsStatus||null==n.channelsStatus.pending?null:n.channelsStatus.pending.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(22,12,(null==n.channelsStatus||null==n.channelsStatus.inactive?null:n.channelsStatus.inactive.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(29,14,(null==n.channelsStatus||null==n.channelsStatus.closing?null:n.channelsStatus.closing.num_channels)||0)),e.R7$(7),e.SpI("",e.bMT(36,16,(null==n.channelsStatus||null==n.channelsStatus.active?null:n.channelsStatus.active.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(42,18,(null==n.channelsStatus||null==n.channelsStatus.pending?null:n.channelsStatus.pending.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(48,20,(null==n.channelsStatus||null==n.channelsStatus.inactive?null:n.channelsStatus.inactive.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(54,22,(null==n.channelsStatus||null==n.channelsStatus.closing?null:n.channelsStatus.closing.capacity)||0)," Sats")}}function Qa(t,s){if(1&t&&(e.j41(0,"div",10)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let xt=(()=>{var t;class s{constructor(){this.channelsStatus={}}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],[1,"dot","tiny-dot","red"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,Ja,55,24,"div",1)(1,Qa,3,1,"ng-template",null,0,e.C5r),2&o){const l=e.sdS(2);e.Y8G("ngIf"," "===a.errorMessage)("ngIfElse",l)}},dependencies:[y.bT,b.DJ,b.sA,b.UI,y.QX],encapsulation:2}))}return t(),s})();var Te=S(1997);const Wa=()=>["../connections/channels/open"],Za=(t,s)=>({filterColumn:t,filterValue:s});function Ka(t,s){if(1&t&&(e.j41(0,"div",19)(1,"a",20),e.EFF(2),e.nI1(3,"slice"),e.k0s(),e.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),e.EFF(7,"Local:"),e.k0s(),e.EFF(8),e.nI1(9,"number"),e.k0s(),e.j41(10,"mat-hint",22),e.nrm(11,"fa-icon",23),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.j41(14,"mat-hint",24)(15,"strong",8),e.EFF(16,"Remote:"),e.k0s(),e.EFF(17),e.nI1(18,"number"),e.k0s()(),e.nrm(19,"mat-progress-bar",25),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("matTooltip",e.mNQ(n.remote_alias||n.remote_pubkey))("matTooltipDisabled",e.mNQ((n.remote_alias||n.remote_pubkey).length<26))("routerLink",e.lJ4(24,Wa))("state",e.l_i(25,Za,n.remote_alias?"remote_alias":"remote_pubkey",n.remote_alias||n.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,14,n.remote_alias||n.remote_pubkey||"",0,24),"",(n.remote_alias||n.remote_pubkey||"").length>25?"...":""," "),e.R7$(6),e.SpI("",e.bMT(9,18,n.local_balance||0)," Sats"),e.R7$(3),e.Y8G("icon",i.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,20,n.balancedness||0),") "),e.R7$(5),e.SpI("",e.bMT(18,22,n.remote_balance||0)," Sats"),e.R7$(2),e.Y8G("value",e.mNQ(n.local_balance&&n.local_balance>0?+n.local_balance/(+n.local_balance+ +n.remote_balance)*100:0))}}function es(t,s){if(1&t&&(e.j41(0,"div",17),e.DNE(1,Ka,20,28,"div",18),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngForOf",n.allChannels)}}function ts(t,s){if(1&t&&(e.j41(0,"div",3)(1,"div",4)(2,"span",5),e.EFF(3,"Total Capacity"),e.k0s(),e.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),e.EFF(7,"Local:"),e.k0s(),e.EFF(8),e.nI1(9,"number"),e.k0s(),e.j41(10,"mat-hint",9),e.nrm(11,"fa-icon",10),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.j41(14,"mat-hint",11)(15,"strong",8),e.EFF(16,"Remote:"),e.k0s(),e.EFF(17),e.nI1(18,"number"),e.k0s()(),e.nrm(19,"mat-progress-bar",12),e.k0s(),e.j41(20,"div",13),e.nrm(21,"mat-divider",14),e.k0s(),e.j41(22,"div",15),e.DNE(23,es,2,1,"div",16),e.k0s()()),2&t){const n=e.XpG(),i=e.sdS(2);e.R7$(8),e.SpI("",e.bMT(9,8,(null==n.channelBalances?null:n.channelBalances.localBalance)||0)," Sats"),e.R7$(3),e.Y8G("icon",n.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,10,(null==n.channelBalances?null:n.channelBalances.balancedness)||0),") "),e.R7$(5),e.SpI("",e.bMT(18,12,(null==n.channelBalances?null:n.channelBalances.remoteBalance)||0)," Sats"),e.R7$(2),e.Y8G("value",e.mNQ(null!=n.channelBalances&&n.channelBalances.localBalance&&(null==n.channelBalances?null:n.channelBalances.localBalance)>0?+(null==n.channelBalances?null:n.channelBalances.localBalance)/(+(null==n.channelBalances?null:n.channelBalances.localBalance)+ +(null==n.channelBalances?null:n.channelBalances.remoteBalance))*100:0)),e.R7$(4),e.Y8G("ngIf",n.allChannels&&n.allChannels.length>0)("ngIfElse",i)}}function ns(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",26),e.EFF(1," No channels available. "),e.j41(2,"button",27),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.goToChannels())}),e.EFF(3,"Open Channel"),e.k0s()()}}function is(t,s){if(1&t&&(e.j41(0,"div",28)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let as=(()=>{var t;class s{constructor(i){this.router=i,this.faBalanceScale=I.GR4,this.faDumbbell=I.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/lnd/connections")}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,ts,24,14,"div",2)(1,ns,4,0,"ng-template",null,0,e.C5r)(3,is,3,1,"ng-template",null,1,e.C5r),2&o){const l=e.sdS(4);e.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",l)}},dependencies:[y.Sq,y.bT,ee.aY,$.$z,R.MV,Te.q,D.HM,b.DJ,b.sA,b.UI,fe.oV,K.Ld,le.Wk,y.P9,y.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}))}return t(),s})();var vt=S(1092),Tt=S(4104);const ss=(t,s,n)=>({"mb-4":t,"mb-2":s,"mb-1":n}),os=()=>["../connections/channels/open"],ls=(t,s)=>({filterColumn:t,filterValue:s});function rs(t,s){if(1&t&&(e.j41(0,"mat-hint",19)(1,"strong",20),e.EFF(2,"Capacity: "),e.k0s(),e.EFF(3),e.nI1(4,"number"),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(3),e.SpI("",e.bMT(4,1,n.remote_balance||0)," Sats")}}function cs(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",24),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2).$implicit,a=e.XpG(3);return r.Njj(a.onLoopOut(o))}),e.EFF(1,"Loop Out"),e.k0s()}}function ps(t,s){if(1&t&&(e.j41(0,"div",21)(1,"mat-hint",22)(2,"strong",20),e.EFF(3,"Capacity: "),e.k0s(),e.EFF(4),e.nI1(5,"number"),e.k0s(),e.DNE(6,cs,2,0,"button",23),e.k0s()),2&t){const n=e.XpG().$implicit,i=e.XpG(3);e.R7$(4),e.SpI("",e.bMT(5,2,n.local_balance||0)," Sats"),e.R7$(2),e.Y8G("ngIf",i.showLoop)}}function ms(t,s){if(1&t&&e.nrm(0,"mat-progress-bar",25),2&t){const n=e.XpG().$implicit,i=e.XpG(3);e.Y8G("value",e.mNQ(i.totalLiquidity>0?(+n.remote_balance||0)/i.totalLiquidity*100:0))}}function us(t,s){if(1&t&&e.nrm(0,"mat-progress-bar",25),2&t){const n=e.XpG().$implicit,i=e.XpG(3);e.Y8G("value",e.mNQ(i.totalLiquidity>0?(+n.local_balance||0)/i.totalLiquidity*100:0))}}function hs(t,s){if(1&t&&(e.j41(0,"div",13)(1,"a",14),e.EFF(2),e.nI1(3,"slice"),e.k0s(),e.j41(4,"div",15),e.DNE(5,rs,5,3,"mat-hint",16)(6,ps,7,4,"div",17),e.k0s(),e.DNE(7,ms,1,2,"mat-progress-bar",18)(8,us,1,2,"mat-progress-bar",18),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("matTooltip",e.mNQ(n.remote_alias||n.remote_pubkey))("matTooltipDisabled",e.mNQ((n.remote_alias||n.remote_pubkey).length<26))("routerLink",e.lJ4(16,os))("state",e.l_i(17,ls,n.remote_alias?"remote_alias":"remote_pubkey",n.remote_alias||n.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,12,n.remote_alias||n.remote_pubkey||"",0,24),"",(n.remote_alias||n.remote_pubkey||"").length>25?"...":""," "),e.R7$(3),e.Y8G("ngIf","In"===i.direction),e.R7$(),e.Y8G("ngIf","Out"===i.direction),e.R7$(),e.Y8G("ngIf","In"===i.direction),e.R7$(),e.Y8G("ngIf","Out"===i.direction)}}function ds(t,s){if(1&t&&(e.j41(0,"div",11),e.DNE(1,hs,9,20,"div",12),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngForOf",n.allChannels)}}function _s(t,s){if(1&t&&(e.j41(0,"div",3)(1,"div",4)(2,"span",5),e.EFF(3,"Total Capacity"),e.k0s(),e.j41(4,"mat-hint",6),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.nrm(7,"mat-progress-bar",7),e.k0s(),e.j41(8,"div",8),e.nrm(9,"mat-divider",9),e.k0s(),e.DNE(10,ds,2,1,"div",10),e.k0s()),2&t){const n=e.XpG(),i=e.sdS(2);e.Y8G("ngClass",e.sMw(6,ss,n.screenSize===n.screenSizeEnum.XS||n.screenSize===n.screenSizeEnum.SM,n.screenSize===n.screenSizeEnum.MD,n.screenSize===n.screenSizeEnum.LG||n.screenSize===n.screenSizeEnum.XL)),e.R7$(5),e.SpI("",e.bMT(6,4,n.totalLiquidity)," Sats"),e.R7$(5),e.Y8G("ngIf",n.allChannels&&n.allChannels.length>0)("ngIfElse",i)}}function fs(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",28),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.goToChannels())}),e.EFF(1,"Open Channel"),e.k0s()}}function gs(t,s){if(1&t&&(e.j41(0,"div",26),e.EFF(1," No channels available. "),e.DNE(2,fs,2,0,"button",27),e.k0s()),2&t){const n=e.XpG();e.R7$(2),e.Y8G("ngIf","Out"===n.direction)}}function Cs(t,s){if(1&t&&(e.j41(0,"div",29)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessage)}}let ys=(()=>{var t;class s{constructor(i,o,a,l){this.router=i,this.loopService=o,this.commonService=a,this.store=l,this.targetConf=6,this.screenSize="",this.screenSizeEnum=p.f7,this.unSubs=[new C.B,new C.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.showLoop=!(!i?.settings.swapServerUrl||""===i.settings.swapServerUrl.trim())})}goToChannels(){this.router.navigateByUrl("/lnd/connections")}onLoopOut(i){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,x.Q)(this.unSubs[1])).subscribe(o=>{this.store.dispatch((0,Y.xO)({payload:{minHeight:"56rem",data:{channel:i,minQuote:o[0],maxQuote:o[1],direction:p.C7.LOOP_OUT,component:vt.D}}}))})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix),e.rXU(Tt.Q),e.rXU(z.h),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[3,"perfectScrollbar",4,"ngIf","ngIfElse"],[3,"perfectScrollbar"],["fxLayout","column",4,"ngFor","ngForOf"],["fxLayout","column"],[1,"dashboard-capacity-header","mt-2",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["class","font-size-90 color-primary",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],[1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxFlex","80","fxLayoutAlign","start start",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","end center","class","button-link-dashboard","color","primary","mat-button","","aria-label","Loop Out",3,"click",4,"ngIf"],["fxFlex","20","fxLayoutAlign","end center","color","primary","mat-button","","aria-label","Loop Out",1,"button-link-dashboard",3,"click"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,a){if(1&o&&e.DNE(0,_s,11,10,"div",2)(1,gs,3,1,"ng-template",null,0,e.C5r)(3,Cs,3,1,"ng-template",null,1,e.C5r),2&o){const l=e.sdS(4);e.Y8G("ngIf",""===(null==a.errorMessage?null:a.errorMessage.trim()))("ngIfElse",l)}},dependencies:[y.YU,y.Sq,y.bT,$.$z,R.MV,Te.q,D.HM,b.DJ,b.sA,b.UI,U.PW,fe.oV,K.Ld,le.Wk,y.P9,y.QX],encapsulation:2}))}return t(),s})();const kt=t=>({"dashboard-card-content":!0,"error-border":t}),bs=t=>({"p-0":t});function Fs(t,s){if(1&t&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&t){e.XpG();const n=e.sdS(11);e.Y8G("matMenuTriggerFor",n)}}function xs(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const o=r.eBV(n).index,a=e.XpG().$implicit,l=e.XpG(2);return r.Njj(l.onNavigateTo(a.links[o]))}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}function vs(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){r.eBV(n);const o=e.XpG(3);return r.Njj(o.onsortChannelsBy())}),e.EFF(1),e.k0s()}if(2&t){const n=e.XpG(3);e.R7$(),e.SpI("Sort By ","Balance Score"===n.sortField?"Capacity":"Balance Score")}}function Ts(t,s){1&t&&e.nrm(0,"mat-progress-bar",30)}function ks(t,s){if(1&t&&e.nrm(0,"rtl-node-info",31),2&t){const n=e.XpG(3);e.Y8G("information",n.information)("showColorFieldSeparately",!1)}}function Ss(t,s){if(1&t&&e.nrm(0,"rtl-balances-info",32),2&t){const n=e.XpG(3);e.Y8G("balances",n.balances)("errorMessage",n.errorMessages[3]+" "+n.errorMessages[2])}}function Rs(t,s){if(1&t&&e.nrm(0,"rtl-channel-capacity-info",33),2&t){const n=e.XpG(3);e.Y8G("sortBy",n.sortField)("channelBalances",n.channelBalances)("allChannels",n.allChannelsCapacity)("errorMessage",n.errorMessages[3])}}function Es(t,s){if(1&t&&e.nrm(0,"rtl-fee-info",34),2&t){const n=e.XpG(3);e.Y8G("fees",n.fees)("errorMessage",n.errorMessages[1])}}function Is(t,s){if(1&t&&e.nrm(0,"rtl-channel-status-info",35),2&t){const n=e.XpG(3);e.Y8G("channelsStatus",n.channelsStatus)("errorMessage",n.errorMessages[3]+" "+n.errorMessages[4])}}function ws(t,s){1&t&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function Ls(t,s){if(1&t&&(e.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),e.nrm(5,"fa-icon",14),e.j41(6,"span"),e.EFF(7),e.k0s()(),e.j41(8,"div"),e.DNE(9,Fs,3,1,"button",15),e.j41(10,"mat-menu",16,1),e.DNE(12,xs,2,1,"button",17)(13,vs,2,1,"button",18),e.k0s()()()(),e.j41(14,"mat-card-content",19),e.DNE(15,Ts,1,0,"mat-progress-bar",20),e.j41(16,"div",21),e.DNE(17,ks,1,2,"rtl-node-info",22)(18,Ss,1,2,"rtl-balances-info",23)(19,Rs,1,4,"rtl-channel-capacity-info",24)(20,Es,1,2,"rtl-fee-info",25)(21,Is,1,2,"rtl-channel-status-info",26)(22,ws,2,0,"h3",27),e.k0s()()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("colspan",n.cols)("rowspan",n.rows),e.R7$(5),e.Y8G("icon",n.icon),e.R7$(2),e.JRh(n.title),e.R7$(2),e.Y8G("ngIf",n.links[0]),e.R7$(3),e.Y8G("ngForOf",n.goToOptions),e.R7$(),e.Y8G("ngIf","capacity"===n.id),e.R7$(),e.Y8G("fxFlex",e.mNQ("node"===n.id||"balance"===n.id?70:"fee"===n.id||"status"===n.id?78:90))("ngClass",e.eq3(17,kt,"node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.ERROR)||"capacity"===n.id&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||"fee"===n.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.ERROR||"status"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.ERROR))),e.R7$(),e.Y8G("ngIf","node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.INITIATED)||"capacity"===n.id&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||"fee"===n.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.INITIATED||"status"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.INITIATED)),e.R7$(),e.Y8G("ngSwitch",n.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","balance"),e.R7$(),e.Y8G("ngSwitchCase","capacity"),e.R7$(),e.Y8G("ngSwitchCase","fee"),e.R7$(),e.Y8G("ngSwitchCase","status")}}function js(t,s){if(1&t&&(e.j41(0,"div",5)(1,"div",6),e.nrm(2,"fa-icon",7),e.j41(3,"span",8),e.EFF(4),e.k0s()(),e.j41(5,"mat-grid-list",9),e.DNE(6,Ls,23,19,"mat-grid-tile",10),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.Y8G("icon",n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.ERROR?n.faFrown:n.faSmile),e.R7$(2),e.JRh(n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.COMPLETED?"Welcome "+n.information.alias+"! Your node is up and running.":n.apiCallStatusNodeInfo.status===n.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),e.R7$(),e.Y8G("rowHeight",n.operatorCardHeight),e.R7$(),e.Y8G("ngForOf",n.operatorCards)}}function Gs(t,s){if(1&t&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&t){e.XpG();const n=e.sdS(9);e.Y8G("matMenuTriggerFor",n)}}function Ds(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const o=r.eBV(n).index,a=e.XpG(2).$implicit,l=e.XpG(2);return r.Njj(l.onNavigateTo(a.links[o]))}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}function Ns(t,s){if(1&t&&(e.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),e.nrm(3,"fa-icon",14),e.j41(4,"span"),e.EFF(5),e.k0s()(),e.j41(6,"div"),e.DNE(7,Gs,3,1,"button",15),e.j41(8,"mat-menu",16,2),e.DNE(10,Ds,2,1,"button",17),e.k0s()()()()),2&t){const n=e.XpG().$implicit;e.R7$(3),e.Y8G("icon",n.icon),e.R7$(2),e.JRh(n.title),e.R7$(2),e.Y8G("ngIf",n.links[0]),e.R7$(3),e.Y8G("ngForOf",n.goToOptions)}}function Ps(t,s){1&t&&e.nrm(0,"mat-progress-bar",30)}function Bs(t,s){if(1&t&&e.nrm(0,"rtl-node-info",46),2&t){const n=e.XpG(3);e.Y8G("information",n.information)}}function As(t,s){if(1&t&&e.nrm(0,"rtl-balances-info",32),2&t){const n=e.XpG(3);e.Y8G("balances",n.balances)("errorMessage",n.errorMessages[3]+" "+n.errorMessages[2])}}function $s(t,s){if(1&t&&e.nrm(0,"rtl-channel-liquidity-info",47),2&t){const n=e.XpG(3);e.Y8G("totalLiquidity",n.totalInboundLiquidity)("allChannels",n.allInboundChannels)("errorMessage",n.errorMessages[3])}}function Ms(t,s){if(1&t&&e.nrm(0,"rtl-channel-liquidity-info",48),2&t){const n=e.XpG(3);e.Y8G("totalLiquidity",n.totalOutboundLiquidity)("allChannels",n.allOutboundChannels)("errorMessage",n.errorMessages[3])}}function Os(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const o=r.eBV(n).index,a=e.XpG(2).$implicit,l=e.XpG(2);return r.Njj(l.onNavigateTo(a.links[o]))}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}function Vs(t,s){if(1&t&&(e.j41(0,"span",49)(1,"mat-tab-group",50)(2,"mat-tab",51),e.nrm(3,"rtl-lightning-invoices",52),e.k0s(),e.j41(4,"mat-tab",53),e.nrm(5,"rtl-lightning-payments",52),e.k0s()(),e.j41(6,"div",54)(7,"button",28)(8,"mat-icon"),e.EFF(9,"more_vert"),e.k0s()(),e.j41(10,"mat-menu",16,3),e.DNE(12,Os,2,1,"button",17),e.k0s()()()),2&t){const n=e.sdS(11),i=e.XpG().$implicit;e.R7$(7),e.Y8G("matMenuTriggerFor",n),e.R7$(5),e.Y8G("ngForOf",i.goToOptions)}}function Ys(t,s){1&t&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function Us(t,s){if(1&t&&(e.j41(0,"mat-grid-tile",11)(1,"mat-card",38),e.DNE(2,Ns,11,4,"mat-card-header",39),e.j41(3,"mat-card-content",40),e.DNE(4,Ps,1,0,"mat-progress-bar",20),e.j41(5,"div",41),e.DNE(6,Bs,1,1,"rtl-node-info",42)(7,As,1,2,"rtl-balances-info",23)(8,$s,1,3,"rtl-channel-liquidity-info",43)(9,Ms,1,3,"rtl-channel-liquidity-info",44)(10,Vs,13,2,"span",45)(11,Ys,2,0,"h3",27),e.k0s()()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("colspan",n.cols)("rowspan",n.rows),e.R7$(),e.Y8G("ngClass",e.eq3(14,bs,"transactions"===n.id)),e.R7$(),e.Y8G("ngIf","transactions"!==n.id),e.R7$(),e.Y8G("fxFlex",e.mNQ("transactions"===n.id?100:"balance"===n.id?70:90))("ngClass",e.eq3(16,kt,"node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.ERROR)||("inboundLiq"===n.id||"outboundLiq"===n.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf","node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBlockchainBalance.status===i.apiCallStatusEnum.INITIATED)||("inboundLiq"===n.id||"outboundLiq"===n.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",n.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","balance"),e.R7$(),e.Y8G("ngSwitchCase","inboundLiq"),e.R7$(),e.Y8G("ngSwitchCase","outboundLiq"),e.R7$(),e.Y8G("ngSwitchCase","transactions")}}function Xs(t,s){if(1&t&&(e.j41(0,"div",36),e.nrm(1,"fa-icon",7),e.j41(2,"span",8),e.EFF(3),e.k0s()(),e.j41(4,"mat-grid-list",37),e.DNE(5,Us,12,18,"mat-grid-tile",10),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faSmile),e.R7$(2),e.SpI("Welcome ",n.information.alias,"! Your node is up and running."),e.R7$(),e.Y8G("rowHeight",n.merchantCardHeight),e.R7$(),e.Y8G("ngForOf",n.merchantCards)}}let Hs=(()=>{var t;class s{constructor(i,o,a,l,h){switch(this.logger=i,this.store=o,this.actions=a,this.commonService=l,this.router=h,this.faSmile=q.Qpm,this.faFrown=q.wB1,this.faAngleDoubleDown=I.WxX,this.faAngleDoubleUp=I.$sC,this.faChartPie=I.W1p,this.faBolt=I.zm_,this.faServer=I.D6w,this.faNetworkWired=I.eGi,this.flgChildInfoUpdated=!1,this.userPersonaEnum=p.HW,this.activeChannels=0,this.inactiveChannels=0,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.information={},this.balances={onchain:-1,lightning:-1,total:0},this.allChannels=[],this.channelsStatus={},this.allChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.screenSizeEnum=p.f7,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusFees=null,this.apiCallStatusBlockchainBalance=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize){case p.f7.XS:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:6},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}];break;case p.f7.SM:case p.f7.MD:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}];break;default:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}]}}ngOnInit(){this.store.select(E.gj).pipe((0,x.Q)(this.unSubs[0]),(0,me.E)(this.store.select(W._c))).subscribe(([i,o])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=i.apiCallStatus,this.apiCallStatusNodeInfo.status===p.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=o,this.information=i.information}),this.store.select(E.oR).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessages[1]="",this.apiCallStatusFees=i.apiCallStatus,this.apiCallStatusFees.status===p.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=i.fees}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessages[2]="",this.apiCallStatusBlockchainBalance=i.apiCallStatus,this.apiCallStatusBlockchainBalance.status===p.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusBlockchainBalance.message?JSON.stringify(this.apiCallStatusBlockchainBalance.message):this.apiCallStatusBlockchainBalance.message?this.apiCallStatusBlockchainBalance.message:""),this.balances.onchain=i.blockchainBalance.total_balance&&+i.blockchainBalance.total_balance>=0?+i.blockchainBalance.total_balance:0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances)}),this.store.select(E.Uv).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=i.apiCallStatus,this.apiCallStatusPendingChannels.status===p.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPendingChannels.message?JSON.stringify(this.apiCallStatusPendingChannels.message):this.apiCallStatusPendingChannels.message?this.apiCallStatusPendingChannels.message:""),this.channelsStatus.pending={num_channels:i.pendingChannelsSummary.open?.num_channels,capacity:i.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(i.pendingChannelsSummary.closing?.num_channels||0)+(i.pendingChannelsSummary.force_closing?.num_channels||0)+(i.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:i.pendingChannelsSummary.total_limbo_balance}}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[4])).subscribe(i=>{this.errorMessages[3]="",this.apiCallStatusChannels=i.apiCallStatus,this.apiCallStatusChannels.status===p.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:"");const o=i.lightningBalance&&i.lightningBalance.local?+i.lightningBalance.local:0,a=i.lightningBalance&&i.lightningBalance.remote?+i.lightningBalance.remote:0;this.channelBalances={localBalance:o,remoteBalance:a,balancedness:+(1-Math.abs((o-a)/(o+a))).toFixed(3)},this.balances.lightning=i.lightningBalance.local||0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances),this.activeChannels=i.channelsSummary.active?.num_channels||0,this.inactiveChannels=i.channelsSummary.inactive?.num_channels||0,this.channelsStatus.active=i.channelsSummary.active,this.channelsStatus.inactive=i.channelsSummary.inactive,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannels=i.channels?.filter(h=>!0===h.active),this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(h=>h.remote_balance&&h.remote_balance>0),"remote_balance"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(h=>h.local_balance&&h.local_balance>0),"local_balance"))),this.allChannels.forEach(h=>{this.totalInboundLiquidity=this.totalInboundLiquidity+ +(h.remote_balance||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+ +(h.local_balance||0)}),this.flgChildInfoUpdated=!!(this.balances.lightning>=0&&this.balances.onchain>=0&&this.fees.month_fee_sum&&this.fees.month_fee_sum>=0),this.logger.info(i)}),this.actions.pipe((0,x.Q)(this.unSubs[5]),(0,L.p)(i=>i.type===p.QP.FETCH_FEES_LND||i.type===p.QP.SET_FEES_LND)).subscribe(i=>{i.type===p.QP.FETCH_FEES_LND&&(this.flgChildInfoUpdated=!1),i.type===p.QP.SET_FEES_LND&&(this.flgChildInfoUpdated=!0)})}onNavigateTo(i){"inactive"===i?this.router.navigateByUrl("/lnd/connections",{state:{filterColumn:"active",filterValue:i}}):this.router.navigateByUrl("/lnd/"+i)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.allChannels.sort((i,o)=>{const a=+(i.local_balance||0)+ +(i.remote_balance||0),l=+(o.local_balance||0)+ +(o.remote_balance||0);return a>l?-1:a{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(ce.En),e.rXU(z.h),e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-home"]],standalone:!1,decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",3,"ngSwitch"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100","direction","In",3,"totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100","direction","Out",3,"totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100","direction","In",3,"totalLiquidity","allChannels","errorMessage"],["fxFlex","100","direction","Out",3,"totalLiquidity","allChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],["calledFrom","home"],["label","Pay"],[1,"underline"]],template:function(o,a){if(1&o&&e.DNE(0,js,7,4,"div",4)(1,Xs,6,4,"ng-template",null,0,e.C5r),2&o){const l=e.sdS(2);e.Y8G("ngIf",(null==a.selNode?null:a.selNode.settings.userPersona)===a.userPersonaEnum.OPERATOR)("ngIfElse",l)}},dependencies:[y.YU,y.Sq,y.bT,y.ux,y.e1,y.fG,ee.aY,Ke.iY,B.RN,B.m2,B.MM,B.dh,Le.B_,Le.NS,ke.An,$e.kk,$e.fb,$e.Cp,D.HM,b.DJ,b.sA,b.UI,U.PW,J.mq,J.T8,gt,Ct,bt,Ha,Ft,xt,as,ys],encapsulation:2}))}return t(),s})();var at=S(1975),st=S(5837);function qs(t,s){if(1&t&&(e.j41(0,"span",10),e.EFF(1,"Channels"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.activeChannels))}}function zs(t,s){if(1&t&&(e.j41(0,"span",10),e.EFF(1,"Peers"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.activePeers))}}let Js=(()=>{var t;class s{constructor(i,o,a){this.store=i,this.logger=o,this.router=a,this.activePeers=0,this.activeChannels=0,this.faUsers=I.gdJ,this.faChartPie=I.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.activeLink=this.links.findIndex(i=>i.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(i=>i instanceof j.gx)).subscribe({next:i=>{this.activeLink=this.links.findIndex(o=>o.link===i.urlAfterRedirects.substring(i.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.selNode=i}),this.store.select(E.os).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.activePeers=i.peers&&i.peers.length?i.peers.length:0,this.logger.info(i)}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.activeChannels=i.channelsSummary.active?.num_channels||0,this.logger.info(i)}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[4])).subscribe(i=>{this.balances=[{title:"Total Balance",dataValue:i.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:i.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:i.blockchainBalance.unconfirmed_balance||0}],this.logger.info(i)})}onSelectedTabChange(i){this.router.navigateByUrl("/lnd/connections/"+this.links[i.index].link)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il),e.rXU(V.gP),e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-connections"]],standalone:!1,decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,a){1&o&&(e.j41(0,"div",0),e.nrm(1,"fa-icon",1),e.j41(2,"span",2),e.EFF(3,"On-chain Balance"),e.k0s()(),e.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),e.nrm(7,"rtl-currency-unit-converter",5),e.k0s()()(),e.j41(8,"div",0),e.nrm(9,"fa-icon",1),e.j41(10,"span",2),e.EFF(11,"Connections"),e.k0s()(),e.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),e.mxI("selectedIndexChange",function(h){return e.DH7(a.activeLink,h)||(a.activeLink=h),h}),e.bIt("selectedTabChange",function(h){return a.onSelectedTabChange(h)}),e.j41(16,"mat-tab"),e.DNE(17,qs,2,2,"ng-template",8),e.k0s(),e.j41(18,"mat-tab"),e.DNE(19,zs,2,2,"ng-template",8),e.k0s()(),e.j41(20,"div",9),e.nrm(21,"router-outlet"),e.k0s()()()()),2&o&&(e.R7$(),e.Y8G("icon",a.faChartPie),e.R7$(6),e.Y8G("values",a.balances),e.R7$(2),e.Y8G("icon",a.faUsers),e.R7$(6),e.R50("selectedIndex",a.activeLink))},dependencies:[ee.aY,B.RN,B.m2,b.DJ,b.sA,b.UI,at.k,J.ES,J.mq,J.T8,st.f,j.n3],encapsulation:2}))}return t(),s})();var ot=S(9172),St=S(6354),Rt=S(92);const Qs=["form"];function Ws(t,s){if(1&t&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.JRh(n.alias?n.alias:n.pub_key?n.pub_key:"")}}function Zs(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Peer alias is required."),e.k0s())}function Ks(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Peer not found in the list."),e.k0s())}function eo(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",38)(1,"mat-label"),e.EFF(2,"Peer Alias"),e.k0s(),e.nrm(3,"input",39),e.j41(4,"mat-autocomplete",40,4),e.bIt("optionSelected",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSelectedPeerChanged())}),e.DNE(6,Ws,2,2,"mat-option",28),e.nI1(7,"async"),e.k0s(),e.DNE(8,Zs,2,0,"mat-error",20)(9,Ks,2,0,"mat-error",20),e.k0s()}if(2&t){const n=e.sdS(5),i=e.XpG();e.R7$(3),e.Y8G("formControl",i.selectedPeer)("matAutocomplete",n),e.R7$(),e.Y8G("displayWith",i.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(7,6,i.filteredPeers)),e.R7$(2),e.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.required),e.R7$(),e.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.notfound)}}function to(t,s){1&t&&e.eu8(0)}function no(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function io(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Amount must be less than or equal to ",n.totalBalance,".")}}function ao(t,s){if(1&t&&(e.j41(0,"div",42),e.nrm(1,"fa-icon",43),e.j41(2,"span",6)(3,"div"),e.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(5,"span",44)(6,"span"),e.EFF(7),e.k0s(),e.j41(8,"span"),e.EFF(9),e.k0s(),e.j41(10,"span"),e.EFF(11),e.k0s(),e.j41(12,"span"),e.EFF(13),e.k0s(),e.j41(14,"span"),e.EFF(15),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faInfoCircle),e.R7$(6),e.SpI("- High: ",n.recommendedFee.fastestFee||"Unknown"),e.R7$(2),e.SpI("- Medium: ",n.recommendedFee.halfHourFee||"Unknown"),e.R7$(2),e.SpI("- Low: ",n.recommendedFee.hourFee||"Unknown"),e.R7$(2),e.SpI("- Economy: ",n.recommendedFee.economyFee||"Unknown"),e.R7$(2),e.SpI("- Minimum: ",n.recommendedFee.minimumFee||"Unknown")}}function so(t,s){if(1&t&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function oo(t,s){if(1&t&&(e.j41(0,"mat-hint"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Mempool Min: ",n.recommendedFee.minimumFee," (Sats/vByte)")}}function lo(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Target Confirmation Blocks is required."),e.k0s())}function ro(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fee is required."),e.k0s())}function co(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Lower than min feerate ",n.recommendedFee.minimumFee," in the mempool.")}}function po(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",32)(1,"mat-slide-toggle",45),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.taprootChannel,o)||(a.taprootChannel=o),r.Njj(o)}),e.EFF(2,"Taproot Channel"),e.k0s()()}if(2&t){const n=e.XpG();e.R7$(),e.R50("ngModel",n.taprootChannel)}}function mo(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.channelConnectionError)}}function uo(t,s){if(1&t&&(e.j41(0,"div",46),e.nrm(1,"fa-icon",43),e.DNE(2,mo,2,1,"span",20),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.channelConnectionError)}}function ho(t,s){if(1&t&&(e.j41(0,"mat-expansion-panel",48)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),e.EFF(4,"Peer: \xa0"),e.k0s(),e.j41(5,"strong",49),e.EFF(6),e.k0s()()(),e.j41(7,"div",13)(8,"div",50)(9,"div",38)(10,"h4",51),e.EFF(11,"Pubkey"),e.k0s(),e.j41(12,"span",52),e.EFF(13),e.k0s()()(),e.nrm(14,"mat-divider",53),e.j41(15,"div",50)(16,"div",54)(17,"h4",51),e.EFF(18,"Address"),e.k0s(),e.j41(19,"span",55),e.EFF(20),e.k0s()(),e.j41(21,"div",54)(22,"h4",51),e.EFF(23,"Inbound"),e.k0s(),e.j41(24,"span",55),e.EFF(25),e.k0s()()()()()),2&t){const n=e.XpG(2);e.R7$(6),e.JRh((null==n.peer?null:n.peer.alias)||(null==n.peer?null:n.peer.address)),e.R7$(7),e.JRh(n.peer.pub_key),e.R7$(7),e.JRh(null==n.peer?null:n.peer.address),e.R7$(5),e.JRh(null!=n.peer&&n.peer.inbound?"True":"False")}}function _o(t,s){if(1&t&&e.DNE(0,ho,26,4,"mat-expansion-panel",47),2&t){const n=e.XpG();e.Y8G("ngIf",n.peer)}}let Et=(()=>{var t;class s{constructor(i,o,a,l,h,f,P){this.logger=i,this.dialogRef=o,this.data=a,this.store=l,this.actions=h,this.commonService=f,this.dataService=P,this.selectedPeer=new g.hs,this.amount=new g.hs,this.faExclamationTriangle=I.zpE,this.faInfoCircle=I.iW_,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.selTransType="0",this.isTaprootAvailable=!1,this.taprootChannel=!1,this.spendUnconfirmed=!1,this.transTypeValue="",this.transTypes=p.XG,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[],this.isTaprootAvailable=this.commonService.isVersionCompatible(this.information.version,"0.17.0")):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[],this.isTaprootAvailable=!1),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(a=>{this.selNode=a,this.isPrivate=!!a?.settings.unannouncedChannels}),this.actions.pipe((0,x.Q)(this.unSubs[1]),(0,L.p)(a=>a.type===p.QP.UPDATE_API_CALL_STATUS_LND||a.type===p.QP.FETCH_CHANNELS_LND)).subscribe(a=>{a.type===p.QP.UPDATE_API_CALL_STATUS_LND&&a.payload.status===p.wn.ERROR&&"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message),a.type===p.QP.FETCH_CHANNELS_LND&&this.dialogRef.close()});let i="",o="";this.sortedPeers=this.peers.sort((a,l)=>(i=a.alias?a.alias.toLowerCase():a.pub_key?a.pub_key.toLowerCase():"",o=l.alias?l.alias.toLowerCase():a.pub_key?a.pub_key.toLowerCase():"",io?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,x.Q)(this.unSubs[2]),(0,ot.Z)(""),(0,St.T)(a=>"string"==typeof a?a:a.alias?a.alias:a.pub_key),(0,St.T)(a=>a?this.filterPeers(a):this.sortedPeers.slice()))}filterPeers(i){return this.sortedPeers?.filter(o=>0===o.alias?.toLowerCase().indexOf(i?i.toLowerCase():""))}displayFn(i){return i&&i.alias?i.alias:i&&i.pub_key?i.pub_key:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.pub_key?this.selectedPeer.value.pub_key:null,"string"==typeof this.selectedPeer.value){const i=this.peers?.filter(o=>o.alias?.length===this.selectedPeer.value.length&&0===o.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===i.length&&i[0].pub_key&&(this.selectedPubkey=i[0].pub_key)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!this.selNode?.settings.unannouncedChannels,this.taprootChannel=!1,this.spendUnconfirmed=!1,this.selTransType="0",this.transTypeValue="",this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||("1"===this.selTransType||"2"===this.selTransType)&&!this.transTypeValue||"2"===this.selTransType&&this.recommendedFee.minimumFee>+this.transTypeValue)return!0;this.store.dispatch((0,N.vL)({payload:{selectedPeerPubkey:this.peer&&this.peer.pub_key?this.peer.pub_key:this.selectedPubkey,fundingAmount:this.fundingAmount,private:this.isPrivate,transType:this.selTransType,transTypeValue:this.transTypeValue,spendUnconfirmed:this.spendUnconfirmed,commitmentType:this.taprootChannel?5:null}}))}onAdvancedPanelToggle(i){this.advancedTitle=i?"Advanced Options | "+("1"===this.selTransType?"Target Confirmation Blocks: ":"2"===this.selTransType?"Fee (Sats/vByte): ":"Default")+("1"===this.selTransType||"2"===this.selTransType?this.transTypeValue:"")+" | Taproot Channel: "+(this.taprootChannel?"Yes":"No")+" | Spend Unconfirmed Output: "+(this.spendUnconfirmed?"Yes":"No"):"Advanced Options"}onSelTransTypeChanged(i){this.transTypeValue="",i.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,x.Q)(this.unSubs[3])).subscribe({next:o=>{this.recommendedFee=o},error:o=>{this.logger.error(o)}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(G.il),e.rXU(ce.En),e.rXU(z.h),e.rXU(Fe.u))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-open-channel"]],viewQuery:function(o,a){if(1&o&&e.GBs(Qs,7),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first)}},standalone:!1,decls:66,vars:30,consts:[["form","ngForm"],["amt","ngModel"],["transTypeVal","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["fxLayout","row","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start end"],["matInput","","type","number","required","","name","amnt",3,"ngModelChange","step","min","max","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","35","fxLayoutAlign","start center"],["color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxFlex","49"],[3,"valueChange","selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["matInput","","type","number","name","transTpValue",3,"ngModelChange","required","disabled","step","min","ngModel"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-2"],["fxFlex","50","fxLayoutAlign","start center",4,"ngIf"],["fxFlex","50","fxLayoutAlign","start center"],["color","primary","name","spendUnconfirmed",3,"ngModelChange","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit"],["fxFlex","100"],["type","text","aria-label","Peers","matInput","","required","",3,"formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["color","primary","name","taprootChannel",3,"ngModelChange","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayout","row"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),e.EFF(5),e.k0s()(),e.j41(6,"button",10),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",11)(9,"form",12,0),e.bIt("submit",function(){return r.eBV(l),r.Njj(a.onOpenChannel())})("reset",function(){return r.eBV(l),r.Njj(a.resetData())}),e.j41(11,"div",13),e.DNE(12,eo,10,8,"mat-form-field",14),e.k0s(),e.DNE(13,to,1,0,"ng-container",15),e.j41(14,"div",13)(15,"div",16)(16,"mat-form-field",17)(17,"mat-label"),e.EFF(18,"Amount"),e.k0s(),e.j41(19,"input",18,1),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.fundingAmount,f)||(a.fundingAmount=f),r.Njj(f)}),e.k0s(),e.j41(21,"mat-hint"),e.EFF(22),e.nI1(23,"number"),e.k0s(),e.j41(24,"span",19),e.EFF(25," Sats "),e.k0s(),e.DNE(26,no,2,0,"mat-error",20)(27,io,2,1,"mat-error",20),e.k0s(),e.j41(28,"div",21)(29,"mat-slide-toggle",22),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.isPrivate,f)||(a.isPrivate=f),r.Njj(f)}),e.EFF(30,"Private Channel"),e.k0s()()(),e.j41(31,"mat-expansion-panel",23),e.bIt("closed",function(){return r.eBV(l),r.Njj(a.onAdvancedPanelToggle(!0))})("opened",function(){return r.eBV(l),r.Njj(a.onAdvancedPanelToggle(!1))}),e.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),e.EFF(35),e.k0s()()(),e.j41(36,"div",24),e.DNE(37,ao,16,6,"div",25),e.j41(38,"div",16)(39,"mat-form-field",26)(40,"mat-label"),e.EFF(41,"Transaction Type"),e.k0s(),e.j41(42,"mat-select",27),e.mxI("valueChange",function(f){return r.eBV(l),e.DH7(a.selTransType,f)||(a.selTransType=f),r.Njj(f)}),e.bIt("selectionChange",function(f){return r.eBV(l),r.Njj(a.onSelTransTypeChanged(f))}),e.DNE(43,so,2,2,"mat-option",28),e.k0s()(),e.j41(44,"mat-form-field",26)(45,"mat-label"),e.EFF(46),e.k0s(),e.j41(47,"input",29,2),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.transTypeValue,f)||(a.transTypeValue=f),r.Njj(f)}),e.k0s(),e.DNE(49,oo,2,1,"mat-hint",20)(50,lo,2,0,"mat-error",20)(51,ro,2,0,"mat-error",20)(52,co,2,1,"mat-error",20),e.k0s()(),e.j41(53,"div",30),e.DNE(54,po,3,1,"div",31),e.j41(55,"div",32)(56,"mat-slide-toggle",33),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.spendUnconfirmed,f)||(a.spendUnconfirmed=f),r.Njj(f)}),e.EFF(57,"Spend Unconfirmed Output"),e.k0s()()()()()(),e.DNE(58,uo,3,2,"div",34),e.j41(59,"div",35)(60,"button",36),e.EFF(61,"Clear Fields"),e.k0s(),e.j41(62,"button",37),e.EFF(63,"Open Channel"),e.k0s()()()()()(),e.DNE(64,_o,1,1,"ng-template",null,3,e.C5r)}if(2&o){const l=e.sdS(20),h=e.sdS(65);e.R7$(5),e.JRh(a.alertTitle),e.R7$(7),e.Y8G("ngIf",!a.peer&&a.peers&&a.peers.length>0),e.R7$(),e.Y8G("ngTemplateOutlet",h),e.R7$(6),e.Y8G("step",1e3)("min",1)("max",a.totalBalance),e.R50("ngModel",a.fundingAmount),e.R7$(3),e.SpI("(Remaining: ",e.bMT(23,28,a.totalBalance-(a.fundingAmount?a.fundingAmount:0)),")"),e.R7$(4),e.Y8G("ngIf",null==l.errors?null:l.errors.required),e.R7$(),e.Y8G("ngIf",null==l.errors?null:l.errors.max),e.R7$(2),e.R50("ngModel",a.isPrivate),e.R7$(6),e.JRh(a.advancedTitle),e.R7$(2),e.Y8G("ngIf",a.recommendedFee.minimumFee),e.R7$(5),e.R50("value",a.selTransType),e.R7$(),e.Y8G("ngForOf",a.transTypes),e.R7$(3),e.JRh("0"===a.selTransType?"Default":"1"===a.selTransType?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("required","0"!==a.selTransType)("disabled","0"===a.selTransType)("step",1)("min","2"===a.selTransType?a.recommendedFee.minimumFee:0),e.R50("ngModel",a.transTypeValue),e.R7$(2),e.Y8G("ngIf","2"===a.selTransType),e.R7$(),e.Y8G("ngIf","1"===a.selTransType&&!a.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===a.selTransType&&!a.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===a.selTransType&&a.transTypeValue&&+a.transTypeValue{var t;class s{constructor(i,o,a,l,h,f,P,w,M){this.dialogRef=i,this.data=o,this.store=a,this.lndEffects=l,this.formBuilder=h,this.actions=f,this.logger=P,this.commonService=w,this.dataService=M,this.faExclamationTriangle=I.zpE,this.faInfoCircle=I.iW_,this.peerAddress="",this.totalBalance=0,this.transTypes=p.XG,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.isTaprootAvailable=!1,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.totalBalance=this.data.message?.balance||0,this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[g.k0.required]],peerAddress:[this.data.message?.peer?.pub_key?this.data.message?.peer?.pub_key+(this.data.message?.peer?.address?"@"+this.data.message?.peer?.address:""):"",[g.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[g.k0.required,g.k0.min(1),g.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selTransType:[p.XG[0].id],transTypeValue:[{value:"",disabled:!0}],taprootChannel:[!1],spendUnconfirmed:[!1],hiddenAmount:["",[g.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(E.gj).pipe((0,x.Q)(this.unSubs[0]),(0,me.E)(this.store.select(W._c))).subscribe(([o,a])=>{this.selNode=a,this.channelFormGroup.controls.isPrivate.setValue(!!a?.settings.unannouncedChannels),this.isTaprootAvailable=this.commonService.isVersionCompatible(o.information.version,"0.17.0")}),this.channelFormGroup.controls.selTransType.valueChanges.pipe((0,x.Q)(this.unSubs[1])).subscribe(o=>{o===p.XG[0].id?(this.channelFormGroup.controls.transTypeValue.setValue(""),this.channelFormGroup.controls.transTypeValue.disable(),this.channelFormGroup.controls.transTypeValue.setValidators(null),this.channelFormGroup.controls.transTypeValue.setErrors(null)):(this.channelFormGroup.controls.transTypeValue.setValue(""),this.channelFormGroup.controls.transTypeValue.enable(),this.channelFormGroup.controls.transTypeValue.setValidators([g.k0.required]))}),this.actions.pipe((0,x.Q)(this.unSubs[2]),(0,L.p)(o=>o.type===p.QP.NEWLY_ADDED_PEER_LND||o.type===p.QP.FETCH_PENDING_CHANNELS_LND||o.type===p.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(o=>{o.type===p.QP.NEWLY_ADDED_PEER_LND&&(this.logger.info(o.payload),this.flgEditable=!1,this.newlyAddedPeer=o.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),o.type===p.QP.FETCH_PENDING_CHANNELS_LND&&this.dialogRef.close(),o.type===p.QP.UPDATE_API_CALL_STATUS_LND&&o.payload.status===p.wn.ERROR&&("SaveNewPeer"===o.payload.action||"FetchGraphNode"===o.payload.action?this.peerConnectionError=o.payload.message:"SaveNewChannel"===o.payload.action&&(this.channelConnectionError=o.payload.message))})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="";const i=this.peerFormGroup.controls.peerAddress.value.search("@");let o="",a="";i>-1?(o=this.peerFormGroup.controls.peerAddress.value.substring(0,i),a=this.peerFormGroup.controls.peerAddress.value.substring(i+1),this.connectPeerWithParams(o,a)):(this.store.dispatch((0,N.t0)({payload:{pubkey:this.peerFormGroup.controls.peerAddress.value}})),this.lndEffects.setGraphNode.pipe((0,be.s)(1)).subscribe(l=>{setTimeout(()=>{a=l.node.addresses&&l.node.addresses.length&&l.node.addresses.length>0&&l.node.addresses[0].addr?l.node.addresses[0].addr:"",this.connectPeerWithParams(this.peerFormGroup.controls.peerAddress.value,a)},0)}))}connectPeerWithParams(i,o){this.store.dispatch((0,N.sq)({payload:{pubkey:i,host:o,perm:!1}}))}onOpenChannel(){return"2"===this.channelFormGroup.controls.selTransType.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.transTypeValue.value?(this.channelFormGroup.controls.transTypeValue.setErrors({minimum:!0}),!0):!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||"1"===this.channelFormGroup.controls.selTransType.value&&!this.channelFormGroup.controls.transTypeValue.value||"2"===this.channelFormGroup.controls.selTransType.value&&!this.channelFormGroup.controls.transTypeValue.value||(this.channelConnectionError="",void this.store.dispatch((0,N.vL)({payload:{selectedPeerPubkey:this.newlyAddedPeer?.pub_key,fundingAmount:this.channelFormGroup.controls.fundingAmount.value,private:this.channelFormGroup.controls.isPrivate.value,transType:this.channelFormGroup.controls.selTransType.value,transTypeValue:this.channelFormGroup.controls.transTypeValue.value,spendUnconfirmed:this.channelFormGroup.controls.spendUnconfirmed.value,commitmentType:this.channelFormGroup.controls.taprootChannel.value?5:null}})))}onSelTransTypeChanged(i){this.channelFormGroup.controls.transTypeValue.setValue(""),i.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,x.Q)(this.unSubs[3])).subscribe({next:o=>{this.recommendedFee=o},error:o=>{this.logger.error(o)}})}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(i){switch(i.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+this.newlyAddedPeer?.alias:"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+this.newlyAddedPeer?.alias:"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}i.selectedIndex{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(G.il),e.rXU(Pe.L),e.rXU(g.ze),e.rXU(ce.En),e.rXU(V.gP),e.rXU(z.h),e.rXU(Fe.u))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-connect-peer"]],viewQuery:function(o,a){if(1&o&&(e.GBs(fo,5),e.GBs(go,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first),e.mGM(l=e.lsd())&&(a.stepper=l.first)}},standalone:!1,decls:70,vars:31,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start end"],["matInput","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start end"],["tabindex","3","formControlName","selTransType",3,"selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","50"],["matInput","","formControlName","transTypeValue","type","number","name","transTypeValue","tabindex","4",3,"step","min","required"],["fxFlex","50","fxLayoutAlign","start center",4,"ngIf"],["fxFlex","50","fxLayoutAlign","start center"],["tabindex","6","color","primary","formControlName","spendUnconfirmed","name","spendUnconfirmed"],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["tabindex","6","color","primary","formControlName","taprootChannel","name","taprootChannel",1,"ps-2"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Connect to a new peer"),e.k0s()(),e.j41(6,"button",6),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),e.bIt("selectionChange",function(f){return r.eBV(l),r.Njj(a.stepSelectionChanged(f))}),e.j41(12,"mat-step",10)(13,"form",11),e.DNE(14,Co,1,1,"ng-template",12),e.j41(15,"mat-form-field",13)(16,"mat-label"),e.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),e.k0s(),e.nrm(18,"input",14),e.DNE(19,yo,2,0,"mat-error",15),e.k0s(),e.DNE(20,bo,4,2,"div",16),e.j41(21,"div",17)(22,"button",18),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onConnectPeer())}),e.EFF(23),e.k0s()()()(),e.j41(24,"mat-step",10)(25,"form",19),e.DNE(26,Fo,1,1,"ng-template",20),e.j41(27,"div",21),e.DNE(28,xo,16,6,"div",22),e.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),e.EFF(32,"Amount"),e.k0s(),e.nrm(33,"input",25),e.j41(34,"mat-hint"),e.EFF(35),e.nI1(36,"number"),e.k0s(),e.j41(37,"span",26),e.EFF(38," Sats "),e.k0s(),e.DNE(39,vo,2,0,"mat-error",15)(40,To,2,0,"mat-error",15)(41,ko,2,1,"mat-error",15),e.k0s(),e.j41(42,"div",27)(43,"mat-slide-toggle",28),e.EFF(44,"Private Channel"),e.k0s()()(),e.j41(45,"div",29)(46,"mat-form-field",30)(47,"mat-label"),e.EFF(48,"Transaction Type"),e.k0s(),e.j41(49,"mat-select",31),e.bIt("selectionChange",function(f){return r.eBV(l),r.Njj(a.onSelTransTypeChanged(f))}),e.DNE(50,So,2,2,"mat-option",32),e.k0s()(),e.j41(51,"mat-form-field",33)(52,"mat-label"),e.EFF(53),e.k0s(),e.nrm(54,"input",34),e.DNE(55,Ro,2,1,"mat-hint",15)(56,Eo,2,1,"mat-error",15)(57,Io,2,1,"mat-error",15),e.k0s()(),e.j41(58,"div",29),e.DNE(59,wo,3,0,"div",35),e.j41(60,"div",36)(61,"mat-slide-toggle",37),e.EFF(62,"Spend Unconfirmed Output"),e.k0s()()()(),e.DNE(63,Lo,4,2,"div",16),e.j41(64,"div",17)(65,"button",38),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onOpenChannel())}),e.EFF(66),e.k0s()()()()(),e.j41(67,"div",39)(68,"button",40),e.EFF(69),e.k0s()()()()()()}2&o&&(e.R7$(10),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",a.peerFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.peerFormGroup),e.R7$(6),e.Y8G("ngIf",null==a.peerFormGroup.controls.peerAddress.errors?null:a.peerFormGroup.controls.peerAddress.errors.required),e.R7$(),e.Y8G("ngIf",""!==a.peerConnectionError),e.R7$(3),e.JRh(""!==a.peerConnectionError?"Retry":"Add Peer"),e.R7$(),e.Y8G("stepControl",a.channelFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.channelFormGroup),e.R7$(3),e.Y8G("ngIf",a.recommendedFee.minimumFee),e.R7$(5),e.Y8G("step",1e3),e.R7$(2),e.SpI("Remaining: ",e.bMT(36,29,a.totalBalance-(a.channelFormGroup.controls.fundingAmount.value?a.channelFormGroup.controls.fundingAmount.value:0))),e.R7$(4),e.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==a.channelFormGroup.controls.fundingAmount.errors?null:a.channelFormGroup.controls.fundingAmount.errors.max),e.R7$(9),e.Y8G("ngForOf",a.transTypes),e.R7$(3),e.JRh("0"===a.channelFormGroup.controls.selTransType.value?"Default":"1"===a.channelFormGroup.controls.selTransType.value?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("step",1)("min","2"===a.channelFormGroup.controls.selTransType.value?a.recommendedFee.minimumFee:0)("required","0"!==a.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===a.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf",null==a.channelFormGroup.controls.transTypeValue.errors?null:a.channelFormGroup.controls.transTypeValue.errors.required),e.R7$(),e.Y8G("ngIf",a.channelFormGroup.controls.transTypeValue.value&&(null==a.channelFormGroup.controls.transTypeValue.errors?null:a.channelFormGroup.controls.transTypeValue.errors.minimum)),e.R7$(2),e.Y8G("ngIf",a.isTaprootAvailable),e.R7$(4),e.Y8G("ngIf",""!==a.channelConnectionError),e.R7$(3),e.JRh(""!==a.channelConnectionError?"Retry":"Open Channel"),e.R7$(2),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(null!=a.newlyAddedPeer&&a.newlyAddedPeer.pub_key?"Do It Later":"Close"))},dependencies:[y.Sq,y.bT,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.VZ,g.j4,g.JD,ee.aY,ne.tx,$.$z,B.m2,B.MM,Z.fg,R.rl,R.nJ,R.MV,R.TL,R.yw,b.DJ,b.sA,b.UI,O.VO,ae.wT,Re.sG,de.V5,de.Ti,de.M6,pe.N,ye.V,y.QX],encapsulation:2}))}return t(),s})();const jo=()=>["all"],Go=t=>({"error-border":t}),Do=()=>["no_peer"],lt=t=>({width:t}),No=t=>({"display-none":t});function Po(t,s){if(1&t&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Bo(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function Ao(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Alias"),e.k0s())}function $o(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias)}}function Mo(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Public Key"),e.k0s())}function Oo(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.pub_key)}}function Vo(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Address"),e.k0s())}function Yo(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,lt,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.address)}}function Uo(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Sync Type"),e.k0s())}function Xo(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,null==n?null:n.sync_type,"sync","_"))}}function Ho(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Inbound"),e.k0s())}function qo(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null!=n&&n.inbound?"Yes":"No")}}function zo(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Bytes Sent"),e.k0s())}function Jo(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.bytes_sent)," ")}}function Qo(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Bytes Received"),e.k0s())}function Wo(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.bytes_recv)," ")}}function Zo(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Sats Sent"),e.k0s())}function Ko(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.sat_sent)," ")}}function el(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Sats Received"),e.k0s())}function tl(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.sat_recv)," ")}}function nl(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Ping Time ("),e.j41(2,"span"),e.EFF(3,"\xb5"),e.k0s(),e.EFF(4,"s)"),e.k0s())}function il(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.ping_time)," ")}}function al(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",50),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function sl(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",51)(1,"div",48)(2,"mat-select",49),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",50),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onPeerClick(a,o))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",50),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onOpenChannel(o))}),e.EFF(7,"Open Channel"),e.k0s(),e.j41(8,"mat-option",50),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onPeerDetach(o))}),e.EFF(9,"Disconnect"),e.k0s()()()()}}function ol(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No connected peer."),e.k0s())}function ll(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting peers..."),e.k0s())}function rl(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function cl(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,ol,2,0,"p",53)(2,ll,2,0,"p",53)(3,rl,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.peers&&n.peers.data)||(null==n.peers.data?null:n.peers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.peers&&n.peers.data)||(null==n.peers.data?null:n.peers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.peers&&n.peers.data)||(null==n.peers.data?null:n.peers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function pl(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,No,(null==n.peers?null:n.peers.data)&&(null==n.peers||null==n.peers.data?null:n.peers.data.length)>0))}}function ml(t,s){1&t&&e.nrm(0,"tr",55)}function ul(t,s){1&t&&e.nrm(0,"tr",56)}let hl=(()=>{var t;class s{constructor(i,o,a,l,h){this.logger=i,this.store=o,this.rtlEffects=a,this.commonService=l,this.camelCaseWithReplace=h,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:p.md,sortBy:"alias",sortOrder:p.oi.DESCENDING},this.availableBalance=0,this.faUsers=I.gdJ,this.displayedColumns=[],this.peersData=[],this.peers=new _.I6([]),this.information={},this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.information=i}),this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.availableBalance=i.blockchainBalance.total_balance||0}),this.store.select(E.os).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=i.peers,this.peersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(i)})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:i.pub_key,goToName:"Graph lookup",goToLink:"/lnd/graph/lookups",showQRName:"Public Key",showQRField:i.pub_key,message:[[{key:"pub_key",value:i.pub_key,title:"Public Key",width:100}],[{key:"address",value:i.address,title:"Address",width:100}],[{key:"alias",value:i.alias,title:"Alias",width:40},{key:"inbound",value:i.inbound?"True":"False",title:"Inbound",width:30},{key:"ping_time",value:i.ping_time,title:"Ping Time (\xb5s)",width:30,type:p.UN.NUMBER}],[{key:"sat_sent",value:i.sat_sent,title:"Satoshis Sent",width:50,type:p.UN.NUMBER},{key:"sat_recv",value:i.sat_recv,title:"Satoshis Received",width:50,type:p.UN.NUMBER}],[{key:"bytes_sent",value:i.bytes_sent,title:"Bytes Sent",width:50,type:p.UN.NUMBER},{key:"bytes_recv",value:i.bytes_recv,title:"Bytes Received",width:50,type:p.UN.NUMBER}]]}}}))}onConnectPeer(){this.store.dispatch((0,Y.xO)({payload:{data:{message:{peer:null,information:this.information,balance:this.availableBalance},component:It}}}))}onOpenChannel(i){this.store.dispatch((0,Y.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:i,information:this.information,balance:this.availableBalance},component:Et}}}))}onPeerDetach(i){this.store.dispatch((0,Y.I1)({payload:{data:{type:p.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(i.alias?i.alias:i.pub_key),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,x.Q)(this.unSubs[4])).subscribe(a=>{a&&this.store.dispatch((0,N.ed)({payload:{pubkey:i.pub_key}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.peers.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(i).toLowerCase();break;case"sync_type":a=this.camelCaseWithReplace.transform(i.sync_type||"","sync","_").trim().toLowerCase();break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"sync_type"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}loadPeersTable(i){this.peers=new _.I6(i?[...i]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(Ve.H),e.rXU(z.h),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-peers"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Peers")}])],decls:64,vars:19,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","pub_key"],["matColumnDef","address"],["matColumnDef","sync_type"],["matColumnDef","inbound"],["matColumnDef","bytes_sent"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","bytes_recv"],["matColumnDef","sat_sent"],["matColumnDef","sat_recv"],["matColumnDef","ping_time"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"button",3),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onConnectPeer())}),e.EFF(3,"Add Peer"),e.k0s()(),e.j41(4,"div",4)(5,"div",5)(6,"div",6),e.nrm(7,"fa-icon",7),e.j41(8,"span",8),e.EFF(9,"Connected Peers"),e.k0s()(),e.j41(10,"div",9)(11,"mat-form-field",10)(12,"mat-label"),e.EFF(13,"Filter By"),e.k0s(),e.j41(14,"mat-select",11),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilterBy,f)||(a.selFilterBy=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(15,"perfect-scrollbar"),e.DNE(16,Po,2,2,"mat-option",12),e.k0s()()(),e.j41(17,"mat-form-field",10)(18,"mat-label"),e.EFF(19,"Filter"),e.k0s(),e.j41(20,"input",13),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(21,"div",14),e.DNE(22,Bo,1,0,"mat-progress-bar",15),e.j41(23,"table",16,0),e.qex(25,17),e.DNE(26,Ao,2,0,"th",18)(27,$o,4,4,"td",19),e.bVm(),e.qex(28,20),e.DNE(29,Mo,2,0,"th",18)(30,Oo,4,4,"td",19),e.bVm(),e.qex(31,21),e.DNE(32,Vo,2,0,"th",18)(33,Yo,4,4,"td",19),e.bVm(),e.qex(34,22),e.DNE(35,Uo,2,0,"th",18)(36,Xo,3,5,"td",19),e.bVm(),e.qex(37,23),e.DNE(38,Ho,2,0,"th",18)(39,qo,2,1,"td",19),e.bVm(),e.qex(40,24),e.DNE(41,zo,2,0,"th",25)(42,Jo,4,3,"td",19),e.bVm(),e.qex(43,26),e.DNE(44,Qo,2,0,"th",25)(45,Wo,4,3,"td",19),e.bVm(),e.qex(46,27),e.DNE(47,Zo,2,0,"th",25)(48,Ko,4,3,"td",19),e.bVm(),e.qex(49,28),e.DNE(50,el,2,0,"th",25)(51,tl,4,3,"td",19),e.bVm(),e.qex(52,29),e.DNE(53,nl,5,0,"th",25)(54,il,4,3,"td",19),e.bVm(),e.qex(55,30),e.DNE(56,al,6,0,"th",31)(57,sl,10,0,"td",32),e.bVm(),e.qex(58,33),e.DNE(59,cl,4,3,"td",34),e.bVm(),e.DNE(60,pl,1,3,"tr",35)(61,ml,1,0,"tr",36)(62,ul,1,0,"tr",37),e.k0s()(),e.nrm(63,"mat-paginator",38),e.k0s()()}2&o&&(e.R7$(7),e.Y8G("icon",a.faUsers),e.R7$(7),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(15,jo).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.peers)("ngClass",e.eq3(16,Go,""!==a.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(18,Do)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,ee.aY,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.ZF,K.Ld,y.QX,ue.VD],encapsulation:2}))}return t(),s})();function dl(t,s){if(1&t&&(e.j41(0,"span",7),e.EFF(1,"Open"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numOpenChannels))}}function _l(t,s){if(1&t&&(e.j41(0,"span",7),e.EFF(1,"Pending"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numPendingChannels))}}function fl(t,s){if(1&t&&(e.j41(0,"span",7),e.EFF(1,"Closed"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numClosedChannels))}}function gl(t,s){if(1&t&&(e.j41(0,"span",7),e.EFF(1,"Active HTLCs"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numActiveHTLCs))}}let Cl=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.store=o,this.router=a,this.numOpenChannels=0,this.numPendingChannels=0,this.numClosedChannels=0,this.numActiveHTLCs=0,this.peers=[],this.information={},this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending"},{link:"closed",name:"Closed"},{link:"activehtlcs",name:"Active HTLCs"}],this.activeLink=0,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.activeLink=this.links.findIndex(i=>i.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(i=>i instanceof j.gx)).subscribe({next:i=>{this.activeLink=this.links.findIndex(o=>o.link===i.urlAfterRedirects.substring(i.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.numOpenChannels=i.channels&&i.channels.length?i.channels.length:0,this.numActiveHTLCs=i.channels?.reduce((o,a)=>o+(a.pending_htlcs&&a.pending_htlcs.length>0?a.pending_htlcs.length:0),0),this.logger.info(i)}),this.store.select(E.Uv).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.numPendingChannels=i.pendingChannelsSummary.total_channels?i.pendingChannelsSummary.total_channels:0}),this.store.select(E.Bw).pipe((0,x.Q)(this.unSubs[4])).subscribe(i=>{this.numClosedChannels=i.closedChannels&&i.closedChannels.length?i.closedChannels.length:0}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[5])).subscribe(i=>{this.totalBalance=+(i.blockchainBalance.total_balance||0)}),this.store.select(E.os).pipe((0,x.Q)(this.unSubs[6])).subscribe(i=>{this.peers=i.peers,this.peers.forEach(o=>{(!o.alias||""===o.alias)&&(o.alias=o.pub_key?.substring(0,20))}),this.logger.info(i)})}onOpenChannel(){this.store.dispatch((0,Y.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:Et}}}))}onSelectedTabChange(i){this.router.navigateByUrl("/lnd/connections/channels/"+this.links[i.index].link)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channels-tables"]],standalone:!1,decls:16,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return a.onOpenChannel()}),e.EFF(3,"Open Channel"),e.k0s()(),e.j41(4,"div",3)(5,"mat-tab-group",4),e.mxI("selectedIndexChange",function(h){return e.DH7(a.activeLink,h)||(a.activeLink=h),h}),e.bIt("selectedTabChange",function(h){return a.onSelectedTabChange(h)}),e.j41(6,"mat-tab"),e.DNE(7,dl,2,2,"ng-template",5),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,_l,2,2,"ng-template",5),e.k0s(),e.j41(10,"mat-tab"),e.DNE(11,fl,2,2,"ng-template",5),e.k0s(),e.j41(12,"mat-tab"),e.DNE(13,gl,2,2,"ng-template",5),e.k0s()(),e.j41(14,"div",6),e.nrm(15,"router-outlet"),e.k0s()()()),2&o&&(e.R7$(5),e.R50("selectedIndex",a.activeLink))},dependencies:[$.$z,b.DJ,b.sA,b.UI,at.k,J.ES,J.mq,J.T8,j.n3],encapsulation:2}))}return t(),s})();var we=S(5416),He=S(9157);const yl=t=>({"xs-scroll-y":t});function bl(t,s){if(1&t){const n=e.RV6();e.j41(0,"fa-icon",27),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onExplorerClicked())}),e.k0s()}if(2&t){const n=e.XpG();e.Y8G("matTooltip",e.mNQ("Link to "+(null==n.selNode||null==n.selNode.settings?null:n.selNode.settings.blockExplorerUrl)))("icon",n.faUpRightFromSquare)}}function Fl(t,s){if(1&t&&(e.j41(0,"div")(1,"div",10)(2,"div",19)(3,"h4",12),e.EFF(4,"Commit Fee"),e.k0s(),e.j41(5,"span",20),e.EFF(6),e.nI1(7,"number"),e.k0s()(),e.j41(8,"div",19)(9,"h4",12),e.EFF(10,"Commit Weight"),e.k0s(),e.j41(11,"span",20),e.EFF(12),e.nI1(13,"number"),e.k0s()(),e.j41(14,"div",19)(15,"h4",12),e.EFF(16,"Fee/KW"),e.k0s(),e.j41(17,"span",20),e.EFF(18),e.nI1(19,"number"),e.k0s()(),e.j41(20,"div",19)(21,"h4",12),e.EFF(22,"Static Remote Key"),e.k0s(),e.j41(23,"span",20),e.EFF(24),e.k0s()()(),e.nrm(25,"mat-divider",15),e.j41(26,"div",10)(27,"div",19)(28,"h4",12),e.EFF(29),e.k0s(),e.j41(30,"span",20),e.EFF(31),e.nI1(32,"number"),e.k0s()(),e.j41(33,"div",19)(34,"h4",12),e.EFF(35),e.k0s(),e.j41(36,"span",20),e.EFF(37),e.nI1(38,"number"),e.k0s()(),e.j41(39,"div",19)(40,"h4",12),e.EFF(41,"Unsettled Balance"),e.k0s(),e.j41(42,"span",20),e.EFF(43),e.nI1(44,"number"),e.k0s()(),e.j41(45,"div",19)(46,"h4",12),e.EFF(47,"CSV Delay"),e.k0s(),e.j41(48,"span",20),e.EFF(49),e.nI1(50,"number"),e.k0s()()(),e.nrm(51,"mat-divider",15),e.j41(52,"div",10)(53,"div",19)(54,"h4",12),e.EFF(55,"Local Reserve (Sats)"),e.k0s(),e.j41(56,"span",20),e.EFF(57),e.nI1(58,"number"),e.k0s()(),e.j41(59,"div",19)(60,"h4",12),e.EFF(61,"Remote Reserve (Sats)"),e.k0s(),e.j41(62,"span",20),e.EFF(63),e.nI1(64,"number"),e.k0s()(),e.j41(65,"div",19)(66,"h4",12),e.EFF(67,"Lifetime (Seconds)"),e.k0s(),e.j41(68,"span",20),e.EFF(69),e.nI1(70,"number"),e.k0s()(),e.j41(71,"div",19)(72,"h4",12),e.EFF(73,"Pending HTLCs"),e.k0s(),e.j41(74,"span",20),e.EFF(75),e.nI1(76,"number"),e.k0s()()(),e.nrm(77,"mat-divider",15),e.k0s()),2&t){const n=e.XpG();e.R7$(6),e.JRh(e.bMT(7,17,n.channel.commit_fee)),e.R7$(6),e.JRh(e.bMT(13,19,n.channel.commit_weight)),e.R7$(6),e.JRh(e.bMT(19,21,n.channel.fee_per_kw)),e.R7$(6),e.JRh(n.channel.static_remote_key?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(4),e.JRh(n.screenSize===n.screenSizeEnum.XS?"Total Sats Sent":"Total Satoshis Sent"),e.R7$(2),e.JRh(e.bMT(32,23,n.channel.total_satoshis_sent)),e.R7$(4),e.JRh(n.screenSize===n.screenSizeEnum.XS?"Total Sats Recv":"Total Satoshis Received"),e.R7$(2),e.JRh(e.bMT(38,25,n.channel.total_satoshis_received)),e.R7$(6),e.JRh(e.bMT(44,27,n.channel.unsettled_balance)),e.R7$(6),e.JRh(e.bMT(50,29,n.channel.csv_delay)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(58,31,n.channel.local_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(64,33,n.channel.remote_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(70,35,n.channel.lifetime)),e.R7$(6),e.JRh(e.bMT(76,37,null==n.channel||null==n.channel.pending_htlcs?null:n.channel.pending_htlcs.length)),e.R7$(2),e.Y8G("inset",!0)}}function xl(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Show Advanced"),e.k0s())}function vl(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Hide Advanced"),e.k0s())}function Tl(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",28),e.bIt("copied",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onCopyChanID(o))}),e.EFF(1,"Copy Channel ID"),e.k0s()}if(2&t){const n=e.XpG();e.Y8G("payload",n.channel.chan_id)}}function kl(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onClose())}),e.EFF(1,"OK"),e.k0s()}}let rt=(()=>{var t;class s{constructor(i,o,a,l,h,f){this.dialogRef=i,this.data=o,this.logger=a,this.commonService=l,this.snackBar=h,this.router=f,this.faReceipt=I.Mf0,this.faUpRightFromSquare=I.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=p.f7}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.selNode=this.data.selNode,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(i){this.snackBar.open("Channel ID "+i+" copied."),this.logger.info("Copied Text: "+i)}onExplorerClicked(){this.selNode?.settings?.blockExplorerUrl&&window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.channel_point,"_blank")}onGoToLink(i,o){this.router.navigateByUrl("/lnd/graph/lookups",{state:{lookupType:i,lookupValue:o}}),this.onClose()}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(V.gP),e.rXU(z.h),e.rXU(we.UG),e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-information"]],standalone:!1,decls:95,vars:37,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],["tabindex","4","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["tabindex","5",1,"foreground-secondary-text"],["class","ml-1 fa-icon-primary",3,"matTooltip","icon","click",4,"ngIf"],["tabindex","6","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],["fxFlex","25"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),e.nrm(4,"fa-icon",5),e.j41(5,"span",6),e.EFF(6,"Channel Information"),e.k0s()(),e.j41(7,"button",7),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onClose())}),e.EFF(8,"X"),e.k0s()(),e.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10)(12,"div",11)(13,"h4",12),e.EFF(14,"Channel ID"),e.k0s(),e.j41(15,"span",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onGoToLink("1",a.channel.chan_id))}),e.EFF(16),e.k0s()(),e.j41(17,"div",11)(18,"h4",12),e.EFF(19,"Peer Alias"),e.k0s(),e.j41(20,"span",14),e.EFF(21),e.k0s()()(),e.nrm(22,"mat-divider",15),e.j41(23,"div",10)(24,"div",2)(25,"h4",12),e.EFF(26,"Channel Point"),e.k0s(),e.j41(27,"span",16),e.EFF(28),e.DNE(29,bl,1,3,"fa-icon",17),e.k0s()()(),e.nrm(30,"mat-divider",15),e.j41(31,"div",10)(32,"div",2)(33,"h4",12),e.EFF(34,"Peer Public Key"),e.k0s(),e.j41(35,"span",18),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onGoToLink("0",a.channel.remote_pubkey))}),e.EFF(36),e.k0s()()(),e.nrm(37,"mat-divider",15),e.j41(38,"div",10)(39,"div",19)(40,"h4",12),e.EFF(41,"Local Balance"),e.k0s(),e.j41(42,"span",20),e.EFF(43),e.nI1(44,"number"),e.k0s()(),e.j41(45,"div",19)(46,"h4",12),e.EFF(47,"Remote Balance"),e.k0s(),e.j41(48,"span",20),e.EFF(49),e.nI1(50,"number"),e.k0s()(),e.j41(51,"div",19)(52,"h4",12),e.EFF(53,"Capacity"),e.k0s(),e.j41(54,"span",20),e.EFF(55),e.nI1(56,"number"),e.k0s()(),e.j41(57,"div",19)(58,"h4",12),e.EFF(59,"Uptime (Seconds)"),e.k0s(),e.j41(60,"span",20),e.EFF(61),e.nI1(62,"number"),e.k0s()()(),e.nrm(63,"mat-divider",15),e.j41(64,"div",10)(65,"div",19)(66,"h4",12),e.EFF(67,"Active"),e.k0s(),e.j41(68,"span",20),e.EFF(69),e.k0s()(),e.j41(70,"div",19)(71,"h4",12),e.EFF(72,"Private"),e.k0s(),e.j41(73,"span",20),e.EFF(74),e.k0s()(),e.j41(75,"div",19)(76,"h4",12),e.EFF(77,"Initiator"),e.k0s(),e.j41(78,"span",20),e.EFF(79),e.k0s()(),e.j41(80,"div",19)(81,"h4",12),e.EFF(82,"Number of Updates"),e.k0s(),e.j41(83,"span",20),e.EFF(84),e.nI1(85,"number"),e.k0s()()(),e.nrm(86,"mat-divider",15),e.DNE(87,Fl,78,39,"div",21),e.j41(88,"div",22)(89,"button",23),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onShowAdvanced())}),e.DNE(90,xl,2,0,"p",24)(91,vl,2,0,"ng-template",null,0,e.C5r),e.k0s(),e.DNE(93,Tl,2,1,"button",25)(94,kl,2,0,"button",26),e.k0s()()()()()}if(2&o){const l=e.sdS(92);e.R7$(4),e.Y8G("icon",a.faReceipt),e.R7$(5),e.Y8G("ngClass",e.eq3(35,yl,a.screenSize===a.screenSizeEnum.XS)),e.R7$(7),e.SpI(" ",a.channel.chan_id," "),e.R7$(5),e.JRh(a.channel.remote_alias),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",a.channel.channel_point," "),e.R7$(),e.Y8G("ngIf",null==a.selNode||null==a.selNode.settings?null:a.selNode.settings.blockExplorerUrl),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",a.channel.remote_pubkey," "),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(44,25,a.channel.local_balance)),e.R7$(6),e.JRh(e.bMT(50,27,a.channel.remote_balance)),e.R7$(6),e.JRh(e.bMT(56,29,a.channel.capacity)),e.R7$(6),e.JRh(e.bMT(62,31,a.channel.uptime)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(a.channel.active?"Yes":"No"),e.R7$(5),e.JRh(a.channel.private?"Yes":"No"),e.R7$(5),e.JRh(a.channel.initiator?"Yes":"No"),e.R7$(5),e.JRh(e.bMT(85,33,a.channel.num_updates)),e.R7$(2),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",a.showAdvanced),e.R7$(3),e.Y8G("ngIf",!a.showAdvanced)("ngIfElse",l),e.R7$(3),e.Y8G("ngIf",a.showCopy),e.R7$(),e.Y8G("ngIf",!a.showCopy)}},dependencies:[y.YU,y.bT,ee.aY,$.$z,B.m2,B.MM,Te.q,b.DJ,b.sA,b.UI,U.PW,fe.oV,He.U,pe.N,y.QX],encapsulation:2}))}return t(),s})();var ct=S(7673),pt=S(1001),Sl=S(6949);const Ye=(t,s)=>({"small-svg":t,"large-svg":s});function Rl(t,s){1&t&&e.eu8(0)}function El(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17)(12,"path",18)(13,"path",19)(14,"path",20)(15,"path",21)(16,"path",22)(17,"path",23)(18,"path",24)(19,"path",25)(20,"path",26)(21,"path",27)(22,"path",28)(23,"path",29)(24,"path",30)(25,"path",31)(26,"path",32)(27,"path",33)(28,"path",34)(29,"path",35)(30,"path",36)(31,"path",37)(32,"path",38)(33,"path",39)(34,"path",40)(35,"path",41)(36,"path",42)(37,"path",43)(38,"path",44)(39,"path",45)(40,"path",46),e.k0s(),r.joV(),e.j41(41,"div",47)(42,"mat-card-title"),e.EFF(43,"Circular rebalancing explained."),e.k0s()(),e.j41(44,"div",48)(45,"mat-card-subtitle",49),e.EFF(46," Circular payments are a completely off-chain rebalancing strategy where a node makes a payment to itself across a circular path of chained payment channels. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ye,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}function Il(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",51),e.nrm(2,"path",52)(3,"path",53)(4,"path",54)(5,"path",55)(6,"path",56)(7,"path",57)(8,"path",58)(9,"path",59)(10,"path",60)(11,"path",61)(12,"path",62)(13,"path",63)(14,"path",64)(15,"path",65)(16,"path",66)(17,"path",67)(18,"path",68)(19,"path",69)(20,"path",70)(21,"path",71)(22,"path",72)(23,"path",73)(24,"path",74)(25,"path",75)(26,"path",76)(27,"path",77)(28,"path",78)(29,"path",79)(30,"path",80)(31,"path",81)(32,"path",82)(33,"path",52)(34,"path",53)(35,"path",54)(36,"path",55)(37,"path",56)(38,"path",57)(39,"path",58)(40,"path",59)(41,"path",60)(42,"path",83)(43,"path",84)(44,"path",63)(45,"path",85)(46,"path",86)(47,"path",87)(48,"path",67)(49,"path",68)(50,"path",69)(51,"path",70)(52,"path",71)(53,"path",72)(54,"path",73)(55,"path",74)(56,"path",75)(57,"path",76)(58,"path",77)(59,"path",78)(60,"path",79)(61,"path",80)(62,"path",88)(63,"path",82)(64,"path",89),e.j41(65,"defs")(66,"linearGradient",90),e.nrm(67,"stop",91)(68,"stop",92)(69,"stop",93),e.k0s(),e.j41(70,"linearGradient",94),e.nrm(71,"stop",91)(72,"stop",92)(73,"stop",93),e.k0s(),e.j41(74,"linearGradient",95),e.nrm(75,"stop",91)(76,"stop",92)(77,"stop",93),e.k0s(),e.j41(78,"linearGradient",96),e.nrm(79,"stop",91)(80,"stop",92)(81,"stop",93),e.k0s(),e.j41(82,"linearGradient",97),e.nrm(83,"stop",91)(84,"stop",92)(85,"stop",93),e.k0s(),e.j41(86,"linearGradient",98),e.nrm(87,"stop",91)(88,"stop",92)(89,"stop",93),e.k0s()()(),r.joV(),e.j41(90,"div",47)(91,"mat-card-title"),e.EFF(92,"Step 1: Unbalanced channel"),e.k0s()(),e.j41(93,"div",48)(94,"mat-card-subtitle",49),e.EFF(95," It starts with an unbalanced channel, that needs to be rebalanced in order to continue to route payments. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ye,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}function wl(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",99),e.nrm(2,"path",100)(3,"path",101)(4,"path",102)(5,"path",103)(6,"path",104)(7,"path",105)(8,"path",106)(9,"path",107)(10,"path",108)(11,"path",109)(12,"path",110)(13,"path",111)(14,"path",112)(15,"path",113)(16,"path",114)(17,"path",52)(18,"path",115)(19,"path",116)(20,"path",117)(21,"path",118)(22,"path",119)(23,"path",120)(24,"path",121)(25,"path",122)(26,"path",83)(27,"path",84)(28,"path",123)(29,"path",124)(30,"path",125)(31,"path",126)(32,"path",67)(33,"path",127)(34,"path",128)(35,"path",129)(36,"path",130)(37,"path",131)(38,"path",132)(39,"path",74)(40,"path",75)(41,"path",133)(42,"path",77)(43,"path",78)(44,"path",79)(45,"path",80)(46,"path",134)(47,"path",135)(48,"path",136),e.j41(49,"defs")(50,"linearGradient",137),e.nrm(51,"stop",91)(52,"stop",92)(53,"stop",93),e.k0s(),e.j41(54,"linearGradient",138),e.nrm(55,"stop",91)(56,"stop",92)(57,"stop",93),e.k0s(),e.j41(58,"linearGradient",139),e.nrm(59,"stop",91)(60,"stop",92)(61,"stop",93),e.k0s()()(),r.joV(),e.j41(62,"div",47)(63,"mat-card-title"),e.EFF(64,"Step 2: Invoice/Payment"),e.k0s()(),e.j41(65,"div",48)(66,"mat-card-subtitle",49),e.EFF(67," All you have to do is make a payment to yourself in a favorable direction by generating and paying an invoice. This is taken care automatically by your node. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ye,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}function Ll(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",140),e.nrm(2,"path",141)(3,"path",142)(4,"path",143)(5,"path",144)(6,"path",145)(7,"path",146)(8,"path",147)(9,"path",148)(10,"path",149)(11,"path",150)(12,"path",151)(13,"path",152)(14,"path",153)(15,"path",154)(16,"path",155)(17,"path",156)(18,"path",157)(19,"path",158)(20,"path",159)(21,"path",160)(22,"path",161)(23,"path",162)(24,"path",163)(25,"path",164)(26,"path",163)(27,"path",165)(28,"path",166)(29,"path",167)(30,"path",168)(31,"path",169)(32,"path",170)(33,"path",171)(34,"path",172)(35,"path",173)(36,"path",174)(37,"path",175)(38,"path",176)(39,"path",177)(40,"path",178)(41,"path",179),e.j41(42,"defs")(43,"linearGradient",180),e.nrm(44,"stop",91)(45,"stop",92)(46,"stop",93),e.k0s()()(),r.joV(),e.j41(47,"div",47)(48,"mat-card-title"),e.EFF(49,"Step 3: Rebalance amount"),e.k0s()(),e.j41(50,"div",48)(51,"mat-card-subtitle",49),e.EFF(52," You will be moving part or all of the local balance to the remote side. For the route to be circular, there should be at least 3 nodes involved. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ye,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}function jl(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSwipe(o))}),r.qSk(),e.j41(1,"svg",140),e.nrm(2,"path",181)(3,"path",143)(4,"path",182)(5,"path",145)(6,"path",146)(7,"path",183)(8,"path",148)(9,"path",184)(10,"path",185)(11,"path",186)(12,"path",187)(13,"path",188)(14,"path",189)(15,"path",190)(16,"path",191)(17,"path",192)(18,"path",158)(19,"path",193)(20,"path",194)(21,"path",179)(22,"path",160)(23,"path",161)(24,"path",195)(25,"path",163)(26,"path",164)(27,"path",163)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",196)(33,"path",170)(34,"path",197)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",198),e.j41(41,"defs")(42,"linearGradient",199),e.nrm(43,"stop",91)(44,"stop",92)(45,"stop",93),e.k0s()()(),r.joV(),e.j41(46,"div",47)(47,"mat-card-title"),e.EFF(48,"Rebalance successful!"),e.k0s()(),e.j41(49,"div",48)(50,"mat-card-subtitle",49),e.EFF(51," Your channel is successfully rebalanced and is able to continue to route payments. "),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@sliderAnimation",n.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Ye,n.screenSize===n.screenSizeEnum.XS,n.screenSize!==n.screenSizeEnum.XS))}}let Gl=(()=>{var t;class s{constructor(i){this.commonService=i,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.bkB,this.screenSize="",this.screenSizeEnum=p.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(i){2===i.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===i.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["infoStepBlock1",""],["infoStepBlock2",""],["infoStepBlock3",""],["infoStepBlock4",""],["infoStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between starts",3,"swipe"],["fxFlex","30","viewBox","0 0 246 154","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M187.8 136C203.043 136 215.4 133.493 215.4 130.4C215.4 127.307 203.043 124.8 187.8 124.8C172.557 124.8 160.2 127.307 160.2 130.4C160.2 133.493 172.557 136 187.8 136Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M128.6 148.8C143.843 148.8 156.2 146.293 156.2 143.2C156.2 140.107 143.843 137.6 128.6 137.6C113.357 137.6 101 140.107 101 143.2C101 146.293 113.357 148.8 128.6 148.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["opacity","0.1","d","M100.2 117.421C100.2 117.421 99.0633 117.494 99.4998 117.722C99.9363 117.95 100.2 117.421 100.2 117.421Z","fill","black"],["opacity","0.1","d","M101 118.4C100.986 118.471 98.1102 119.483 98.673 119.933C99.2358 120.384 101 118.4 101 118.4Z","fill","black"],["opacity","0.1","d","M97.8 128.98C98.0492 128.966 100.509 128.241 101 128.89L97.8 128.98Z","fill","black"],["opacity","0.1","d","M100.2 129.709C100.2 129.709 100.563 129.362 100.926 129.543C101.289 129.725 100.2 129.709 100.2 129.709Z","fill","black"],["opacity","0.1","d","M101.8 132C101.8 132 101.641 133.198 101 133.6L101.8 132Z","fill","black"],["d","M119.223 21.4239L123.102 22.0818L118.209 50.9111L114.33 50.2532L119.223 21.4239Z",1,"fill-color-primary-darker"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z",1,"fill-color-29"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z",1,"fill-color-28"],["d","M110.75 50.4L104.806 87.6521C104.806 87.6521 96.0162 127.358 99.3581 135.2H103.57L116.2 58.9791L110.75 50.4Z",1,"fill-color-29"],["d","M125.308 45.6L129.979 83.02C129.979 83.02 133.381 130.691 129.656 138.4H125.976L119.4 53.9698L125.308 45.6Z",1,"fill-color-29"],["d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z","fill","black"],["d","M112.922 39.2661C113.364 37.7699 114.731 36.7605 116.259 36.8012C118.804 36.8682 122.74 37.3423 124.787 39.4927C127.969 42.8316 122.638 54.0832 122.638 54.0832C122.638 54.0832 117.661 63.4872 113.092 51.5396C113.092 51.5327 111.203 45.1393 112.922 39.2661Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M131.383 131.52C131.69 131.628 131.968 131.791 132.2 132C131.813 131.613 130.708 131.42 130.166 131.24C129.495 131.019 128.764 130.793 128.2 130.4C129.29 130.705 130.354 131.079 131.383 131.52Z","fill","black"],["opacity","0.1","d","M94.2 24.8C96.1882 24.8 97.8 23.1882 97.8 21.2C97.8 19.2118 96.1882 17.6 94.2 17.6C92.2117 17.6 90.6 19.2118 90.6 21.2C90.6 23.1882 92.2117 24.8 94.2 24.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M107 12C110.314 12 113 9.31371 113 6C113 2.68629 110.314 0 107 0C103.686 0 101 2.68629 101 6C101 9.31371 103.686 12 107 12Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M99 40.8C102.314 40.8 105 38.1137 105 34.8C105 31.4863 102.314 28.8 99 28.8C95.6863 28.8 93 31.4863 93 34.8C93 38.1137 95.6863 40.8 99 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M223 67.2C224.988 67.2 226.6 65.5882 226.6 63.6C226.6 61.6118 224.988 60 223 60C221.012 60 219.4 61.6118 219.4 63.6C219.4 65.5882 221.012 67.2 223 67.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M210.2 54.4C213.514 54.4 216.2 51.7137 216.2 48.4C216.2 45.0863 213.514 42.4 210.2 42.4C206.886 42.4 204.2 45.0863 204.2 48.4C204.2 51.7137 206.886 54.4 210.2 54.4Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M218.2 83.2C221.514 83.2 224.2 80.5137 224.2 77.2C224.2 73.8863 221.514 71.2 218.2 71.2C214.886 71.2 212.2 73.8863 212.2 77.2C212.2 80.5137 214.886 83.2 218.2 83.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M23.8 72C24.9046 72 25.8 71.1046 25.8 70C25.8 68.8954 24.9046 68 23.8 68C22.6954 68 21.8 68.8954 21.8 70C21.8 71.1046 22.6954 72 23.8 72Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M33 65.6C34.7673 65.6 36.2 64.1673 36.2 62.4C36.2 60.6327 34.7673 59.2 33 59.2C31.2327 59.2 29.8 60.6327 29.8 62.4C29.8 64.1673 31.2327 65.6 33 65.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M17 71.2C18.7673 71.2 20.2 69.7673 20.2 68C20.2 66.2327 18.7673 64.8 17 64.8C15.2327 64.8 13.8 66.2327 13.8 68C13.8 69.7673 15.2327 71.2 17 71.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M171.8 60C172.905 60 173.8 59.1046 173.8 58C173.8 56.8954 172.905 56 171.8 56C170.695 56 169.8 56.8954 169.8 58C169.8 59.1046 170.695 60 171.8 60Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M180.2 53.6C181.967 53.6 183.4 52.1673 183.4 50.4C183.4 48.6327 181.967 47.2 180.2 47.2C178.433 47.2 177 48.6327 177 50.4C177 52.1673 178.433 53.6 180.2 53.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M164.2 59.2C165.967 59.2 167.4 57.7673 167.4 56C167.4 54.2327 165.967 52.8 164.2 52.8C162.433 52.8 161 54.2327 161 56C161 57.7673 162.433 59.2 164.2 59.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M51 40.8C55.6392 40.8 59.4 37.0392 59.4 32.4C59.4 27.7608 55.6392 24 51 24C46.3608 24 42.6 27.7608 42.6 32.4C42.6 37.0392 46.3608 40.8 51 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M98.6 64.8C101.251 64.8 103.4 62.651 103.4 60C103.4 57.349 101.251 55.2 98.6 55.2C95.949 55.2 93.8 57.349 93.8 60C93.8 62.651 95.949 64.8 98.6 64.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M145.8 96.8C148.451 96.8 150.6 94.651 150.6 92C150.6 89.349 148.451 87.2 145.8 87.2C143.149 87.2 141 89.349 141 92C141 94.651 143.149 96.8 145.8 96.8Z",1,"fill-color-primary-darker"],["fill-rule","evenodd","clip-rule","evenodd","d","M59.8 136.8C75.0431 136.8 87.4 134.293 87.4 131.2C87.4 128.107 75.0431 125.6 59.8 125.6C44.557 125.6 32.2 128.107 32.2 131.2C32.2 134.293 44.557 136.8 59.8 136.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M217.4 152.8C232.643 152.8 245 150.293 245 147.2C245 144.107 232.643 141.6 217.4 141.6C202.157 141.6 189.8 144.107 189.8 147.2C189.8 150.293 202.157 152.8 217.4 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M28.6 152.8C43.8431 152.8 56.2 150.293 56.2 147.2C56.2 144.107 43.8431 141.6 28.6 141.6C13.3569 141.6 1 144.107 1 147.2C1 150.293 13.3569 152.8 28.6 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["d","M122.425 44.7H119.162L120.372 41.0719C120.484 40.6219 120.147 40.2 119.725 40.2H115.675C115.337 40.2 115.028 40.4531 115 40.7906L114.1 47.5406C114.044 47.9625 114.353 48.3 114.775 48.3H118.094L116.8 53.7844C116.716 54.2063 117.025 54.6 117.447 54.6C117.7 54.6 117.925 54.4875 118.037 54.2625L122.987 45.7125C123.269 45.2906 122.931 44.7 122.425 44.7Z","fill","white"],["d","M23.5204 123.2C23.0498 123.2 22.6141 123.375 22.2807 123.669C21.9491 123.96 21.7189 124.369 21.6565 124.837L20.2164 135.712C20.1423 136.278 20.3237 136.811 20.6643 137.203C21.0076 137.598 21.5119 137.85 22.0804 137.85H26.4117L24.5687 145.68C24.4289 146.274 24.5836 146.851 24.9204 147.28C25.2626 147.716 25.7931 148 26.3959 148C26.7289 148 27.0539 147.911 27.3385 147.746C27.616 147.585 27.8553 147.351 28.0254 147.055L35.9453 133.28C36.3068 132.658 36.2644 131.95 35.9495 131.398C35.7868 131.113 35.551 130.871 35.2622 130.703C34.9905 130.544 34.6717 130.45 34.3203 130.45H30.1609L31.7043 124.49C31.5476 124.305 31.4051 124.176 31.278 124.085C31.004 123.89 30.5348 123.687 29.7238 123.539C28.6009 123.335 26.6977 123.2 23.5204 123.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M185.5 109.6C185.075 109.6 184.682 109.757 184.381 110.02C184.08 110.284 183.872 110.652 183.815 111.073L182.615 120.074C182.548 120.585 182.712 121.066 183.021 121.419C183.331 121.774 183.787 122 184.3 122H187.74L186.244 128.309C186.117 128.846 186.258 129.366 186.564 129.753C186.873 130.145 187.352 130.4 187.897 130.4C188.505 130.4 189.084 130.074 189.391 129.512L195.745 115.6H191.208L192.467 110.771C192.308 110.576 192.165 110.445 192.04 110.357C191.803 110.189 191.397 110.01 190.693 109.883C189.753 109.713 188.16 109.6 185.5 109.6Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M215.1 128C214.675 128 214.282 128.157 213.981 128.42C213.68 128.683 213.472 129.052 213.415 129.473L212.215 138.474C212.148 138.985 212.312 139.466 212.621 139.819C212.931 140.174 213.387 140.4 213.9 140.4H217.34L215.844 146.709C215.717 147.246 215.858 147.766 216.164 148.153C216.473 148.545 216.952 148.8 217.497 148.8C218.105 148.8 218.684 148.474 218.991 147.912L225.345 134H220.808L222.067 129.171C221.908 128.976 221.765 128.845 221.64 128.757C221.403 128.589 220.997 128.41 220.293 128.283C219.353 128.113 217.76 128 215.1 128Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M55.9003 111.2C55.4754 111.2 55.0822 111.357 54.7812 111.62C54.4802 111.883 54.2716 112.252 54.215 112.673L53.0149 121.674C52.9475 122.185 53.112 122.666 53.4214 123.019C53.7314 123.374 54.1868 123.6 54.7004 123.6H58.1398L56.6444 129.909C56.5174 130.446 56.6576 130.966 56.9637 131.353C57.2728 131.745 57.7518 132 58.2966 132C58.9052 132 59.4843 131.674 59.7907 131.112L66.1452 117.2H61.6081L62.8674 112.371C62.7082 112.176 62.5651 112.045 62.4402 111.957C62.2025 111.789 61.7969 111.61 61.0927 111.483C60.1529 111.313 58.5599 111.2 55.9003 111.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 210 124","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M90.1491 0H0V100.616H90.1491V0Z",1,"fill-color-10"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z",1,"fill-color-primary-darker"],["d","M76.3172 90.6426C80.8187 90.6426 84.4679 86.9934 84.4679 82.4919C84.4679 77.9904 80.8187 74.3412 76.3172 74.3412C71.8157 74.3412 68.1665 77.9904 68.1665 82.4919C68.1665 86.9934 71.8157 90.6426 76.3172 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3172 58.1801C80.8187 58.1801 84.4679 54.5309 84.4679 50.0294C84.4679 45.5279 80.8187 41.8787 76.3172 41.8787C71.8157 41.8787 68.1665 45.5279 68.1665 50.0294C68.1665 54.5309 71.8157 58.1801 76.3172 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z",1,"fill-color-primary-darker"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z",1,"fill-color-17"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z",1,"fill-color-17"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint0_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint2_linear)"],["d","M76.1507 25.3014C80.6522 25.3014 84.3014 21.6522 84.3014 17.1507C84.3014 12.6492 80.6522 9 76.1507 9C71.6492 9 68 12.6492 68 17.1507C68 21.6522 71.6492 25.3014 76.1507 25.3014Z",1,"fill-color-17"],["d","M193.435 36.7899H142.709V35.7444H119.709V36.7899H68.7744C67.8644 36.7899 66.9917 37.1514 66.3482 37.7949C65.7048 38.4384 65.3433 39.3111 65.3433 40.2211V109.679C65.3433 110.589 65.7048 111.462 66.3482 112.106C66.9917 112.749 67.8644 113.111 68.7744 113.111H193.435C195.33 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.345 36.7899 193.435 36.7899Z",1,"fill-color-19"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.284 111.856H69.9434V42.8538L157.284 111.856Z","fill","black"],["d","M89.0832 106.693C95.577 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.577 83.1766 89.0832 83.1766C82.5894 83.1766 77.3252 88.4408 77.3252 94.9346C77.3252 101.428 82.5894 106.693 89.0832 106.693Z",1,"fill-color-25"],["d","M91.7005 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7005 103.772ZM91.7005 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7005 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7005 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z",1,"fill-color-19"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z",1,"fill-color-19"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z",1,"fill-color-19"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z",1,"fill-color-19"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z",1,"fill-color-19"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z",1,"fill-color-19"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z",1,"fill-color-25"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.115C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.261 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.042 109.589 156.01 109.621C155.978 109.653 155.96 109.696 155.96 109.741V110.601H153.402V109.741C153.402 109.696 153.384 109.653 153.352 109.621C153.32 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.089 109.589 114.057 109.621C114.025 109.653 114.007 109.696 114.007 109.741V110.601H111.449V109.741C111.449 109.696 111.431 109.653 111.399 109.621C111.367 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.148 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.4642V109.741C97.4642 109.696 97.4462 109.653 97.4142 109.621C97.3822 109.589 97.3388 109.571 97.2936 109.571H93.2006C93.1554 109.571 93.112 109.589 93.08 109.621C93.048 109.653 93.0301 109.696 93.0301 109.741V110.601H90.472V109.741C90.472 109.696 90.454 109.653 90.422 109.621C90.39 109.589 90.3467 109.571 90.3014 109.571H86.2085C86.1632 109.571 86.1198 109.589 86.0879 109.621C86.0559 109.653 86.0379 109.696 86.0379 109.741V110.601H83.4798V109.741C83.4798 109.696 83.4618 109.653 83.4299 109.621C83.3979 109.589 83.3545 109.571 83.3093 109.571H79.2163C79.171 109.571 79.1277 109.589 79.0957 109.621C79.0637 109.653 79.0457 109.696 79.0457 109.741V110.601H76.4876V109.741C76.4876 109.696 76.4697 109.653 76.4377 109.621C76.4057 109.589 76.3623 109.571 76.3171 109.571H72.2241C72.1789 109.571 72.1355 109.589 72.1035 109.621C72.0715 109.653 72.0536 109.696 72.0536 109.741V110.601H64.2087C61.9482 110.601 60.1157 112.434 60.1157 114.694V116.545C60.1157 118.806 61.9482 120.638 64.2087 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8456 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9773 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1718L88.0762 87.0663C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5347 96.5996L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M42 75H9V91H42V75Z",1,"fill-color-17"],["d","M42 42H9V58H42V42Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint3_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint4_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint5_linear)"],["d","M205.185 113.031H193.247V112.171C193.247 112.125 193.229 112.082 193.197 112.05C193.165 112.018 193.121 112 193.076 112H188.983C188.938 112 188.895 112.018 188.863 112.05C188.831 112.082 188.813 112.125 188.813 112.171V113.031H186.254V112.171C186.254 112.125 186.237 112.082 186.205 112.05C186.173 112.018 186.129 112 186.084 112H181.991C181.946 112 181.902 112.018 181.87 112.05C181.838 112.082 181.82 112.125 181.82 112.171V113.031H179.262V112.171C179.262 112.125 179.244 112.082 179.212 112.05C179.18 112.018 179.137 112 179.092 112H174.999C174.954 112 174.91 112.018 174.878 112.05C174.846 112.082 174.828 112.125 174.828 112.171V113.031H172.27V112.171C172.27 112.125 172.252 112.082 172.22 112.05C172.188 112.018 172.145 112 172.1 112H168.007C167.961 112 167.918 112.018 167.886 112.05C167.854 112.082 167.836 112.125 167.836 112.171V113.031H165.278V112.171C165.278 112.125 165.26 112.082 165.228 112.05C165.196 112.018 165.153 112 165.107 112H161.014C160.969 112 160.926 112.018 160.894 112.05C160.862 112.082 160.844 112.125 160.844 112.171V113.031H158.286V112.171C158.286 112.125 158.268 112.082 158.236 112.05C158.204 112.018 158.16 112 158.115 112H154.022C153.977 112 153.934 112.018 153.902 112.05C153.87 112.082 153.852 112.125 153.852 112.171V113.031H151.294V112.171C151.294 112.125 151.276 112.082 151.244 112.05C151.212 112.018 151.168 112 151.123 112H119.061C119.016 112 118.973 112.018 118.941 112.05C118.909 112.082 118.891 112.125 118.891 112.171V113.031H116.333V112.171C116.333 112.125 116.315 112.082 116.283 112.05C116.251 112.018 116.207 112 116.162 112H112.069C112.024 112 111.981 112.018 111.949 112.05C111.917 112.082 111.899 112.125 111.899 112.171V113.031H109.341V112.171C109.341 112.125 109.323 112.082 109.291 112.05C109.259 112.018 109.215 112 109.17 112H105.077C105.032 112 104.988 112.018 104.956 112.05C104.924 112.082 104.907 112.125 104.907 112.171V113.031H102.348V112.171C102.348 112.125 102.33 112.082 102.298 112.05C102.266 112.018 102.223 112 102.178 112H98.0849C98.0397 112 97.9963 112.018 97.9643 112.05C97.9323 112.082 97.9144 112.125 97.9144 112.171V113.031H95.3563V112.171C95.3563 112.125 95.3383 112.082 95.3063 112.05C95.2743 112.018 95.2309 112 95.1857 112H91.0927C91.0475 112 91.0041 112.018 90.9721 112.05C90.9402 112.082 90.9222 112.125 90.9222 112.171V113.031H88.3641V112.171C88.3641 112.125 88.3461 112.082 88.3141 112.05C88.2822 112.018 88.2388 112 88.1935 112H84.1006C84.0553 112 84.0119 112.018 83.98 112.05C83.948 112.082 83.93 112.125 83.93 112.171V113.031H81.3719V112.171C81.3719 112.125 81.3539 112.082 81.322 112.05C81.29 112.018 81.2466 112 81.2014 112H77.1084C77.0632 112 77.0198 112.018 76.9878 112.05C76.9558 112.082 76.9378 112.125 76.9379 112.171V113.031H69.093C66.8325 113.031 65 114.863 65 117.124V118.974C65 121.235 66.8325 123.067 69.093 123.067H205.185C207.445 123.067 209.277 121.235 209.277 118.974V117.124C209.277 114.863 207.445 113.031 205.185 113.031Z",1,"fill-color-19"],["d","M78.375 20.625C78.375 19.5938 77.5312 18.75 76.5 18.75C75.4453 18.75 74.625 19.5938 74.625 20.625C74.625 21.6797 75.4453 22.5 76.5 22.5C77.5312 22.5 78.375 21.6797 78.375 20.625ZM74.8359 11.1094L75.1406 17.4844C75.1641 17.7656 75.4219 18 75.7031 18H77.2734C77.5547 18 77.8125 17.7656 77.8359 17.4844L78.1406 11.1094C78.1641 10.7812 77.9062 10.5 77.5781 10.5H75.3984C75.0703 10.5 74.8125 10.7812 74.8359 11.1094Z","fill","white"],["id","paint0_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["stop-color","#808080","stop-opacity","0.25"],["offset","0.54","stop-color","#808080","stop-opacity","0.12"],["offset","1","stop-color","#808080","stop-opacity","0.1"],["id","paint1_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["id","paint3_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["id","paint4_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint5_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 370 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M327.488 99.9755C350.953 99.9755 369.975 80.9531 369.975 57.4877C369.975 34.0224 350.953 15 327.488 15C304.022 15 285 34.0224 285 57.4877C285 80.9531 304.022 99.9755 327.488 99.9755Z",1,"fill-color-25"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z",1,"fill-color-19"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z",1,"fill-color-primary-lighter"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z",1,"fill-color-19"],["d","M265 57.3624H357.392V120.307H265V57.3624Z",1,"fill-color-22"],["d","M362.545 50H271.626C271.016 50.0009 270.521 50.495 270.521 51.1048V112.577C270.521 112.87 270.638 113.151 270.845 113.358C271.052 113.565 271.333 113.681 271.626 113.681H362.545C362.838 113.681 363.119 113.565 363.326 113.358C363.533 113.151 363.65 112.87 363.65 112.577V51.1048C363.65 50.495 363.155 50.0009 362.545 50ZM362.913 112.577C362.913 112.674 362.875 112.768 362.806 112.837C362.736 112.907 362.643 112.945 362.545 112.945H271.626C271.528 112.945 271.434 112.907 271.365 112.837C271.296 112.768 271.258 112.674 271.258 112.577V51.1048C271.258 50.9015 271.423 50.7365 271.626 50.7365H362.545C362.748 50.7365 362.913 50.9015 362.913 51.1048V112.577Z",1,"fill-color-19"],["d","M316.364 93.4359H275.844C275.547 93.4359 275.307 93.6766 275.307 93.9735V97.6835C275.307 97.9804 275.547 98.2211 275.844 98.2211H316.364C316.661 98.2211 316.901 97.9804 316.901 97.6835V93.9735C316.901 93.6766 316.661 93.4359 316.364 93.4359Z",1,"fill-color-19"],["d","M354.814 89.3873H341.565C341.272 89.3873 340.991 89.5036 340.784 89.7108C340.577 89.918 340.46 90.199 340.46 90.492V100.798C340.46 101.091 340.577 101.372 340.784 101.579C340.991 101.786 341.272 101.903 341.565 101.903H354.814C355.107 101.903 355.388 101.786 355.595 101.579C355.803 101.372 355.919 101.091 355.919 100.798V90.492C355.919 90.199 355.803 89.918 355.595 89.7108C355.388 89.5036 355.107 89.3873 354.814 89.3873ZM355.182 100.798C355.182 101.001 355.017 101.166 354.814 101.166H341.565C341.362 101.166 341.197 101.001 341.197 100.798V90.492C341.196 90.3943 341.235 90.3004 341.304 90.2313C341.373 90.1622 341.467 90.1235 341.565 90.1238H354.814C354.912 90.1235 355.006 90.1622 355.075 90.2313C355.144 90.3004 355.183 90.3943 355.182 90.492V100.798Z",1,"fill-color-19"],["d","M352.168 91.7653H344.211C343.914 91.7653 343.673 92.006 343.673 92.3029V93.0965C343.673 93.3934 343.914 93.6341 344.211 93.6341H352.168C352.465 93.6341 352.706 93.3934 352.706 93.0965V92.3029C352.706 92.006 352.465 91.7653 352.168 91.7653Z",1,"fill-color-19"],["d","M352.168 94.71H344.211C343.914 94.71 343.673 94.9507 343.673 95.2476V96.0412C343.673 96.3381 343.914 96.5788 344.211 96.5788H352.168C352.465 96.5788 352.706 96.3381 352.706 96.0412V95.2476C352.706 94.9507 352.465 94.71 352.168 94.71Z",1,"fill-color-19"],["d","M352.168 97.6548H344.211C343.914 97.6548 343.673 97.8955 343.673 98.1924V98.986C343.673 99.2829 343.914 99.5236 344.211 99.5236H352.168C352.465 99.5236 352.706 99.2829 352.706 98.986V98.1924C352.706 97.8955 352.465 97.6548 352.168 97.6548Z",1,"fill-color-19"],["d","M295.014 54.4177H276.949C276.652 54.4177 276.411 54.6584 276.411 54.9553V61.9782C276.411 62.2752 276.652 62.5158 276.949 62.5158H295.014C295.311 62.5158 295.552 62.2752 295.552 61.9782V54.9553C295.552 54.6584 295.311 54.4177 295.014 54.4177Z",1,"fill-color-19"],["d","M312.293 105.198C319.455 105.198 325.261 99.3917 325.261 92.2295C325.261 85.0672 319.455 79.2611 312.293 79.2611C305.131 79.2611 299.325 85.0672 299.325 92.2295C299.325 99.3917 305.131 105.198 312.293 105.198Z",1,"fill-color-25"],["d","M315.18 101.976C308.655 101.976 302.773 98.0462 300.276 92.0183C297.78 85.9904 299.16 79.052 303.773 74.4384C308.387 69.8249 315.325 68.4448 321.353 70.9416C327.381 73.4384 331.311 79.3205 331.311 85.8451C331.301 94.75 324.085 101.966 315.18 101.976ZM315.18 69.9245C306.387 69.9245 299.259 77.0524 299.259 85.8451C299.259 94.6377 306.387 101.766 315.18 101.766C323.973 101.766 331.1 94.6377 331.1 85.8451C331.09 77.0565 323.968 69.9345 315.18 69.9245Z",1,"fill-color-19"],["d","M309.677 100.883C309.936 100.948 310.216 100.873 310.41 100.673L318.163 92.664C318.571 92.2458 318.371 91.5387 317.802 91.3966L314.249 90.5107L316.557 86.8411C316.797 86.4038 316.558 85.8537 316.074 85.7332L311.64 84.6277C311.271 84.5355 310.888 84.7313 310.748 85.0854L307.92 92.2295C307.751 92.6583 307.998 93.1384 308.444 93.2497L312.099 94.161L309.186 99.7958C308.959 100.236 309.206 100.766 309.677 100.883Z",1,"fill-color-21"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z",1,"fill-color-primary-darker"],["d","M76.3175 90.6426C80.819 90.6426 84.4682 86.9934 84.4682 82.4919C84.4682 77.9904 80.819 74.3412 76.3175 74.3412C71.8159 74.3412 68.1667 77.9904 68.1667 82.4919C68.1667 86.9934 71.8159 90.6426 76.3175 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3175 58.1801C80.819 58.1801 84.4682 54.531 84.4682 50.0294C84.4682 45.5279 80.819 41.8787 76.3175 41.8787C71.8159 41.8787 68.1667 45.5279 68.1667 50.0294C68.1667 54.531 71.8159 58.1801 76.3175 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-primary-darker"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-17"],["d","M76.7868 26.5736C81.6396 26.5736 85.5736 22.6396 85.5736 17.7868C85.5736 12.934 81.6396 9 76.7868 9C71.934 9 68 12.934 68 17.7868C68 22.6396 71.934 26.5736 76.7868 26.5736Z","fill","url(#paint0_linear)"],["d","M76.3174 59.0334C81.1702 59.0334 85.1042 55.0994 85.1042 50.2466C85.1042 45.3938 81.1702 41.4598 76.3174 41.4598C71.4646 41.4598 67.5306 45.3938 67.5306 50.2466C67.5306 55.0994 71.4646 59.0334 76.3174 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3174 91.4958C81.1702 91.4958 85.1042 87.5618 85.1042 82.709C85.1042 77.8562 81.1702 73.9222 76.3174 73.9222C71.4646 73.9222 67.5306 77.8562 67.5306 82.709C67.5306 87.5618 71.4646 91.4958 76.3174 91.4958Z","fill","url(#paint2_linear)"],["d","M193.434 36.7899H142.709V35.7444H119.708V36.7899H68.7742C67.8642 36.7899 66.9915 37.1514 66.348 37.7949C65.7045 38.4384 65.343 39.3111 65.343 40.2211V109.679C65.343 110.589 65.7045 111.462 66.348 112.106C66.9915 112.749 67.8642 113.111 68.7742 113.111H193.434C195.329 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.344 36.7899 193.434 36.7899Z",1,"fill-color-19"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.283 111.856H69.9432V42.8538L157.283 111.856Z","fill","black"],["d","M89.0829 106.693C95.5767 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.5767 83.1766 89.0829 83.1766C82.5892 83.1766 77.325 88.4408 77.325 94.9346C77.325 101.428 82.5892 106.693 89.0829 106.693Z",1,"fill-color-25"],["d","M91.7004 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7004 103.772ZM91.7004 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7004 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7004 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z",1,"fill-color-19"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.114C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.26 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.041 109.589 156.009 109.621C155.977 109.653 155.96 109.696 155.96 109.741V110.601H153.401V109.741C153.401 109.696 153.383 109.653 153.351 109.621C153.319 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.088 109.589 114.056 109.621C114.024 109.653 114.006 109.696 114.006 109.741V110.601H111.448V109.741C111.448 109.696 111.43 109.653 111.398 109.621C111.366 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.147 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.464V109.741C97.464 109.696 97.4461 109.653 97.4141 109.621C97.3821 109.589 97.3387 109.571 97.2935 109.571H93.2005C93.1553 109.571 93.1119 109.589 93.0799 109.621C93.0479 109.653 93.03 109.696 93.03 109.741V110.601H90.4719V109.741C90.4719 109.696 90.4539 109.653 90.4219 109.621C90.3899 109.589 90.3465 109.571 90.3013 109.571H86.2083C86.1631 109.571 86.1197 109.589 86.0877 109.621C86.0558 109.653 86.0378 109.696 86.0378 109.741V110.601H83.4797V109.741C83.4797 109.696 83.4617 109.653 83.4297 109.621C83.3978 109.589 83.3544 109.571 83.3091 109.571H79.2162C79.1709 109.571 79.1276 109.589 79.0956 109.621C79.0636 109.653 79.0456 109.696 79.0456 109.741V110.601H76.4875V109.741C76.4875 109.696 76.4695 109.653 76.4376 109.621C76.4056 109.589 76.3622 109.571 76.317 109.571H72.224C72.1788 109.571 72.1354 109.589 72.1034 109.621C72.0714 109.653 72.0535 109.696 72.0535 109.741V110.601H64.2086C61.9481 110.601 60.1156 112.434 60.1156 114.694V116.545C60.1156 118.806 61.9481 120.638 64.2086 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8457 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9774 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1719L88.0762 87.0664C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5348 96.5997L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M78.125 21.625C78.125 20.5938 77.2812 19.75 76.25 19.75C75.1953 19.75 74.375 20.5938 74.375 21.625C74.375 22.6797 75.1953 23.5 76.25 23.5C77.2812 23.5 78.125 22.6797 78.125 21.625ZM74.5859 12.1094L74.8906 18.4844C74.9141 18.7656 75.1719 19 75.4531 19H77.0234C77.3047 19 77.5625 18.7656 77.5859 18.4844L77.8906 12.1094C77.9141 11.7812 77.6562 11.5 77.3281 11.5H75.1484C74.8203 11.5 74.5625 11.7812 74.5859 12.1094Z","fill","white"],["id","paint0_linear","x1","76.7868","y1","26.5736","x2","76.7868","y2","9","gradientUnits","userSpaceOnUse"],["id","paint1_linear","x1","76.3174","y1","59.0334","x2","76.3174","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3174","y1","91.4958","x2","76.3174","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 153 200","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary-lighter"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M122.399 37H32.25V137.616H122.399V37Z",1,"fill-color-10"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z",1,"fill-color-primary-darker"],["d","M108.567 127.643C113.069 127.643 116.718 123.993 116.718 119.492C116.718 114.99 113.069 111.341 108.567 111.341C104.066 111.341 100.417 114.99 100.417 119.492C100.417 123.993 104.066 127.643 108.567 127.643Z",1,"fill-color-primary-darker"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z",1,"fill-color-primary-darker"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.531 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.531 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M74.5 112H40.5V128H74.5V112Z",1,"fill-color-17"],["d","M74.5 79H40.5V95H74.5V79Z",1,"fill-color-17"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z",1,"fill-color-17"],["d","M108.567 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.567 45.778C103.715 45.778 99.7806 49.712 99.7806 54.5648C99.7806 59.4176 103.715 63.3516 108.567 63.3516Z","fill","url(#paint0_linear)"],["d","M108.567 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.567 78.4598C103.715 78.4598 99.7806 82.3938 99.7806 87.2466C99.7806 92.0994 103.715 96.0334 108.567 96.0334Z",1,"fill-color-17"],["d","M108.567 128.496C113.42 128.496 117.354 124.562 117.354 119.709C117.354 114.856 113.42 110.922 108.567 110.922C103.715 110.922 99.7806 114.856 99.7806 119.709C99.7806 124.562 103.715 128.496 108.567 128.496Z",1,"fill-color-17"],["d","M108.401 62.3014C112.902 62.3014 116.551 58.6522 116.551 54.1507C116.551 49.6492 112.902 46 108.401 46C103.899 46 100.25 49.6492 100.25 54.1507C100.25 58.6522 103.899 62.3014 108.401 62.3014Z",1,"fill-color-17"],["d","M110.625 57.625C110.625 56.5938 109.781 55.75 108.75 55.75C107.695 55.75 106.875 56.5938 106.875 57.625C106.875 58.6797 107.695 59.5 108.75 59.5C109.781 59.5 110.625 58.6797 110.625 57.625ZM107.086 48.1094L107.391 54.4844C107.414 54.7656 107.672 55 107.953 55H109.523C109.805 55 110.062 54.7656 110.086 54.4844L110.391 48.1094C110.414 47.7812 110.156 47.5 109.828 47.5H107.648C107.32 47.5 107.062 47.7812 107.086 48.1094Z","fill","white"],["d","M141.711 111C141.008 111 140.656 111.859 141.164 112.367L146.164 117.367C146.477 117.68 146.984 117.68 147.297 117.367L152.297 112.367C152.805 111.859 152.453 111 151.75 111H141.711Z",1,"fill-color-17"],["d","M84.25 185.461C84.25 184.758 83.3906 184.406 82.8828 184.914L77.8828 189.914C77.5703 190.227 77.5703 190.734 77.8828 191.047L82.8828 196.047C83.3906 196.555 84.25 196.203 84.25 195.5V185.461Z",1,"fill-color-primary-darker"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-primary-darker"],["d","M133.75 174C142.31 174 149.25 167.06 149.25 158.5C149.25 149.94 142.31 143 133.75 143C125.19 143 118.25 149.94 118.25 158.5C118.25 167.06 125.19 174 133.75 174Z",1,"fill-color-25"],["d","M129.872 169.64C130.214 169.726 130.584 169.628 130.84 169.363L141.093 158.771C141.633 158.218 141.369 157.283 140.616 157.095L135.917 155.924L138.969 151.071C139.286 150.493 138.97 149.765 138.331 149.606L132.468 148.144C131.979 148.022 131.473 148.281 131.287 148.749L127.548 158.197C127.324 158.764 127.65 159.399 128.241 159.546L133.074 160.751L129.222 168.203C128.921 168.785 129.249 169.485 129.872 169.64Z",1,"fill-color-21"],["d","M19.75 174C28.3104 174 35.25 167.06 35.25 158.5C35.25 149.94 28.3104 143 19.75 143C11.1896 143 4.25 149.94 4.25 158.5C4.25 167.06 11.1896 174 19.75 174Z",1,"fill-color-25"],["d","M19.3208 167.769C23.2973 167.769 26.5208 164.545 26.5208 160.569C26.5208 156.592 23.2973 153.369 19.3208 153.369C15.3444 153.369 12.1208 156.592 12.1208 160.569C12.1208 164.545 15.3444 167.769 19.3208 167.769Z",1,"fill-color-22"],["d","M13.7656 153.188L12.4676 152.716C12.4676 152.716 15.1815 150.002 18.9572 150.238L17.8953 149.177C17.8953 149.177 20.4911 148.233 22.851 150.71C24.0915 152.013 25.5268 153.544 26.4216 155.269H27.8116L27.2314 156.429L29.2619 157.589L27.1778 157.381C27.3752 158.383 27.3073 159.418 26.9807 160.386L26.5087 161.684C26.5087 161.684 24.6208 157.908 24.6208 157.436V158.616C24.6208 158.616 23.3229 157.554 23.3229 156.846L22.615 157.672L22.261 156.374L17.8953 157.672L18.6032 156.61L15.8894 156.964L16.9514 155.666C16.9514 155.666 13.8836 157.2 13.7656 158.498C13.6476 159.796 12.1137 161.448 12.1137 161.448L11.4058 160.268C11.4058 160.268 10.3438 154.958 13.7656 153.188Z",1,"fill-color-21"],["d","M76.75 31C68.1896 31 61.25 24.0604 61.25 15.5C61.25 6.93959 68.1896 0 76.75 0C85.3104 0 92.25 6.93959 92.25 15.5C92.25 24.0604 85.3104 31 76.75 31Z",1,"fill-color-25"],["d","M77.1792 24.7687C73.2027 24.7687 69.9792 21.5452 69.9792 17.5687C69.9792 13.5923 73.2027 10.3687 77.1792 10.3687C81.1556 10.3687 84.3792 13.5923 84.3792 17.5687C84.3792 21.5452 81.1556 24.7687 77.1792 24.7687Z",1,"fill-color-22"],["d","M82.7344 10.1883L84.0324 9.71628C84.0324 9.71628 81.3185 7.00246 77.5428 7.23845L78.6047 6.17651C78.6047 6.17651 76.0089 5.23258 73.649 7.71041C72.4085 9.01295 70.9732 10.544 70.0784 12.2687H68.6884L69.2686 13.429L67.2381 14.5893L69.3222 14.3808C69.1248 15.3825 69.1927 16.4184 69.5193 17.3858L69.9913 18.6837C69.9913 18.6837 71.8792 14.9079 71.8792 14.4359V15.6159C71.8792 15.6159 73.1771 14.5539 73.1771 13.846L73.885 14.6719L74.239 13.374L78.6047 14.6719L77.8968 13.61L80.6106 13.964L79.5486 12.6661C79.5486 12.6661 82.6164 14.2 82.7344 15.4979C82.8524 16.7958 84.3863 18.4477 84.3863 18.4477L85.0942 17.2678C85.0942 17.2678 86.1562 11.9581 82.7344 10.1883Z",1,"fill-color-21"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.786 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.542 141.365 153.936Z",1,"fill-color-21"],["d","M140.968 160.376C141.521 160.376 141.968 159.928 141.968 159.376C141.968 158.823 141.521 158.376 140.968 158.376C140.416 158.376 139.968 158.823 139.968 159.376C139.968 159.928 140.416 160.376 140.968 160.376Z",1,"fill-color-22"],["d","M129.168 160.376C129.721 160.376 130.168 159.928 130.168 159.376C130.168 158.823 129.721 158.376 129.168 158.376C128.616 158.376 128.168 158.823 128.168 159.376C128.168 159.928 128.616 160.376 129.168 160.376Z",1,"fill-color-22"],["d","M135.068 165.276C138.272 165.276 140.868 162.679 140.868 159.476C140.868 156.272 138.272 153.676 135.068 153.676C131.865 153.676 129.268 156.272 129.268 159.476C129.268 162.679 131.865 165.276 135.068 165.276Z",1,"fill-color-22"],["d","M140.384 153.575L136.049 151.304L130.062 152.233L128.824 157.704L131.907 157.585L132.768 155.576V157.552L134.191 157.498L135.017 154.298L135.533 157.704L140.591 157.601L140.384 153.575Z",1,"fill-color-21"],["d","M79.4007 199.301C83.9022 199.301 87.5514 195.652 87.5514 191.151C87.5514 186.649 83.9022 183 79.4007 183C74.8992 183 71.25 186.649 71.25 191.151C71.25 195.652 74.8992 199.301 79.4007 199.301Z",1,"fill-color-17"],["d","M82.9375 189.25H80.2188L81.2266 186.227C81.3203 185.852 81.0391 185.5 80.6875 185.5H77.3125C77.0313 185.5 76.7735 185.711 76.75 185.992L76 191.617C75.9531 191.969 76.211 192.25 76.5625 192.25H79.3281L78.25 196.82C78.1797 197.172 78.4375 197.5 78.7891 197.5C79 197.5 79.1875 197.406 79.2813 197.219L83.4063 190.094C83.6406 189.742 83.3594 189.25 82.9375 189.25Z","fill","white"],["d","M106.555 91.8125C106.789 92.0469 107.188 92.0469 107.422 91.8125L114.312 84.9219C114.547 84.6875 114.547 84.2891 114.312 84.0547L113.469 83.2109C113.234 82.9766 112.859 82.9766 112.625 83.2109L107 88.8359L104.352 86.2109C104.117 85.9766 103.742 85.9766 103.508 86.2109L102.664 87.0547C102.43 87.2891 102.43 87.6875 102.664 87.9219L106.555 91.8125Z","fill","white"],["d","M106.555 124.812C106.789 125.047 107.188 125.047 107.422 124.812L114.312 117.922C114.547 117.688 114.547 117.289 114.312 117.055L113.469 116.211C113.234 115.977 112.859 115.977 112.625 116.211L107 121.836L104.352 119.211C104.117 118.977 103.742 118.977 103.508 119.211L102.664 120.055C102.43 120.289 102.43 120.688 102.664 120.922L106.555 124.812Z","fill","white"],["id","paint0_linear","x1","108.567","y1","63.3516","x2","108.567","y2","45.778","gradientUnits","userSpaceOnUse"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M120.908 104.177H33.7393V135.425H120.908V104.177Z","fill","white"],["d","M120.908 71.7129H33.7393V102.96H120.908V71.7129Z","fill","white"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.5309 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.5309 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M76 112H41V128H76V112Z",1,"fill-color-17"],["d","M70 79H41V95H70V79Z",1,"fill-color-17"],["d","M70 47H41V63H70V47Z",1,"fill-color-17"],["d","M108.568 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.568 45.778C103.715 45.778 99.7808 49.712 99.7808 54.5648C99.7808 59.4176 103.715 63.3516 108.568 63.3516Z","fill","url(#paint0_linear)"],["d","M108.568 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.568 78.4598C103.715 78.4598 99.7808 82.3938 99.7808 87.2466C99.7808 92.0994 103.715 96.0334 108.568 96.0334Z",1,"fill-color-17"],["d","M108.568 129.496C113.42 129.496 117.354 125.562 117.354 120.709C117.354 115.856 113.42 111.922 108.568 111.922C103.715 111.922 99.7808 115.856 99.7808 120.709C99.7808 125.562 103.715 129.496 108.568 129.496Z",1,"fill-color-17"],["d","M106.805 91.8125C107.039 92.0469 107.438 92.0469 107.672 91.8125L114.562 84.9219C114.797 84.6875 114.797 84.2891 114.562 84.0547L113.719 83.2109C113.484 82.9766 113.109 82.9766 112.875 83.2109L107.25 88.8359L104.602 86.2109C104.367 85.9766 103.992 85.9766 103.758 86.2109L102.914 87.0547C102.68 87.2891 102.68 87.6875 102.914 87.9219L106.805 91.8125Z","fill","white"],["d","M106.805 58.8125C107.039 59.0469 107.438 59.0469 107.672 58.8125L114.562 51.9219C114.797 51.6875 114.797 51.2891 114.562 51.0547L113.719 50.2109C113.484 49.9766 113.109 49.9766 112.875 50.2109L107.25 55.8359L104.602 53.2109C104.367 52.9766 103.992 52.9766 103.758 53.2109L102.914 54.0547C102.68 54.2891 102.68 54.6875 102.914 54.9219L106.805 58.8125Z","fill","white"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-17"],["d","M77.1792 24.7688C73.2027 24.7688 69.9792 21.5452 69.9792 17.5688C69.9792 13.5923 73.2027 10.3688 77.1792 10.3688C81.1556 10.3688 84.3792 13.5923 84.3792 17.5688C84.3792 21.5452 81.1556 24.7688 77.1792 24.7688Z",1,"fill-color-22"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.785 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.543 141.365 153.936Z",1,"fill-color-21"],["d","M82.9374 189.25H80.2186L81.2265 186.227C81.3202 185.852 81.039 185.5 80.6874 185.5H77.3124C77.0311 185.5 76.7733 185.711 76.7499 185.992L75.9999 191.617C75.953 191.969 76.2108 192.25 76.5624 192.25H79.328L78.2499 196.82C78.1796 197.172 78.4374 197.5 78.789 197.5C78.9999 197.5 79.1874 197.406 79.2811 197.219L83.4061 190.094C83.6405 189.742 83.3593 189.25 82.9374 189.25Z","fill","white"],["id","paint0_linear","x1","108.568","y1","63.3516","x2","108.568","y2","45.778","gradientUnits","userSpaceOnUse"]],template:function(o,a){if(1&o&&e.DNE(0,Rl,1,0,"ng-container",5)(1,El,47,5,"ng-template",null,0,e.C5r)(3,Il,96,5,"ng-template",null,1,e.C5r)(5,wl,68,5,"ng-template",null,2,e.C5r)(7,Ll,53,5,"ng-template",null,3,e.C5r)(9,jl,52,5,"ng-template",null,4,e.C5r),2&o){const l=e.sdS(2),h=e.sdS(4),f=e.sdS(6),P=e.sdS(8),w=e.sdS(10);e.Y8G("ngTemplateOutlet",1===a.stepNumber?l:2===a.stepNumber?h:3===a.stepNumber?f:4===a.stepNumber?P:w)}},dependencies:[y.YU,y.T3,B.Lc,B.dh,b.DJ,b.sA,b.UI,U.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:10%;min-height:10%;max-width:50%;margin:auto}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:50%;margin:auto}"],data:{animation:[Sl.k]}}))}return t(),s})();const Dl=["stepper"],Nl=()=>[1,2,3,4,5],Pl=(t,s)=>({"dot-primary":t,"dot-primary-lighter":s});function Bl(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(2);e.JRh(n.inputFormLabel)}}function Al(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function $l(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Amount must be a positive number."),e.k0s())}function Ml(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.SpI("Amount must be less than or equal to ",null==n.selChannel?null:n.selChannel.local_balance,".")}}function Ol(t,s){if(1&t&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.Lme("",n.remote_alias," - ",n.chan_id)}}function Vl(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer is required."),e.k0s())}function Yl(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer not found in the list."),e.k0s())}function Ul(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(2);e.JRh(n.feeFormLabel)}}function Xl(t,s){if(1&t&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.SpI(" ",n.name," ")}}function Hl(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.SpI("",n.feeFormGroup.controls.selFeeLimitType.value?n.feeFormGroup.controls.selFeeLimitType.value.placeholder:n.feeLimitTypes[0].placeholder," is required.")}}function ql(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.SpI("",n.feeFormGroup.controls.selFeeLimitType.value?n.feeFormGroup.controls.selFeeLimitType.value.placeholder:n.feeLimitTypes[0].placeholder," must be a positive number.")}}function zl(t,s){1&t&&e.EFF(0,"Invoice/Payment")}function Jl(t,s){1&t&&(e.j41(0,"mat-icon",55),e.EFF(1,"check"),e.k0s())}function Ql(t,s){1&t&&e.nrm(0,"mat-progress-bar",56)}function Wl(t,s){if(1&t&&(e.j41(0,"mat-icon",55),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(null!=n.paymentStatus&&n.paymentStatus.error?"close":"check")}}function Zl(t,s){1&t&&e.nrm(0,"div",7)}function Kl(t,s){1&t&&e.nrm(0,"mat-progress-bar",56)}function er(t,s){if(1&t&&(e.j41(0,"h4",57),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.paymentStatus&&n.paymentStatus.payment_hash?"Rebalance Successful.":"Rebalance Failed.")}}function tr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",58),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onRestart())}),e.EFF(1,"Start Again"),e.k0s()}}function nr(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",7)(1,"mat-card-header",8)(2,"div",9)(3,"div",10)(4,"span",11),e.EFF(5,"Channel Rebalance"),e.k0s()(),e.j41(6,"div",12)(7,"button",13),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.showInfo())}),e.EFF(8,"?"),e.k0s(),e.j41(9,"button",14),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onClose())}),e.EFF(10,"X"),e.k0s()()()(),e.j41(11,"mat-card-content",15)(12,"div",7)(13,"div",16)(14,"div",17),e.nrm(15,"fa-icon",18),e.j41(16,"span"),e.EFF(17,"Circular Rebalance is a payment you make to *yourself* to affect a relative change in the balances of two channels. This is accomplished by sending payment out from the selected channel and receiving it back on the channel with the selected peer. Please note, you will be paying routing fee to balance the channels in this manner."),e.k0s()()(),e.j41(18,"div",19)(19,"p",20)(20,"strong"),e.EFF(21,"Channel Peer:\xa0"),e.k0s(),e.EFF(22),e.nI1(23,"titlecase"),e.k0s(),e.j41(24,"p",20)(25,"strong"),e.EFF(26,"Channel ID:\xa0"),e.k0s(),e.EFF(27),e.k0s()(),e.j41(28,"mat-vertical-stepper",21,3),e.bIt("selectionChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.stepSelectionChanged(o))}),e.j41(30,"mat-step",22)(31,"form",23),e.DNE(32,Bl,1,1,"ng-template",24),e.j41(33,"div",25)(34,"mat-form-field",26)(35,"mat-label"),e.EFF(36,"Amount"),e.k0s(),e.nrm(37,"input",27),e.j41(38,"mat-hint"),e.EFF(39),e.k0s(),e.j41(40,"span",28),e.EFF(41,"Sats"),e.k0s(),e.DNE(42,Al,2,0,"mat-error",29)(43,$l,2,0,"mat-error",29)(44,Ml,2,1,"mat-error",29),e.k0s(),e.j41(45,"mat-form-field",30)(46,"mat-label"),e.EFF(47,"Receive from Peer"),e.k0s(),e.j41(48,"input",31),e.bIt("change",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSelectedPeerChanged())}),e.k0s(),e.j41(49,"mat-autocomplete",32,4),e.bIt("optionSelected",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSelectedPeerChanged())}),e.DNE(51,Ol,2,3,"mat-option",33),e.nI1(52,"async"),e.k0s(),e.DNE(53,Vl,2,0,"mat-error",29)(54,Yl,2,0,"mat-error",29),e.k0s()(),e.j41(55,"div",34)(56,"button",35),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSelectFee())}),e.EFF(57,"Select Fee"),e.k0s()()()(),e.j41(58,"mat-step",22)(59,"form",23),e.DNE(60,Ul,1,1,"ng-template",36),e.j41(61,"div",25)(62,"div",25)(63,"mat-form-field",30)(64,"mat-label"),e.EFF(65,"Fee Limits"),e.k0s(),e.j41(66,"mat-select",37),e.DNE(67,Xl,2,2,"mat-option",33),e.k0s()(),e.j41(68,"mat-form-field",26)(69,"mat-label"),e.EFF(70),e.k0s(),e.nrm(71,"input",38),e.DNE(72,Hl,2,1,"mat-error",29)(73,ql,2,1,"mat-error",29),e.k0s()()(),e.j41(74,"div",34)(75,"button",39),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onRebalance())}),e.EFF(76,"Rebalance"),e.k0s()()()(),e.j41(77,"mat-step",40)(78,"form",23),e.DNE(79,zl,1,0,"ng-template",24),e.j41(80,"div",41)(81,"mat-expansion-panel",42)(82,"mat-expansion-panel-header")(83,"mat-panel-title")(84,"span",43),e.EFF(85),e.DNE(86,Jl,2,0,"mat-icon",44),e.k0s()()(),e.j41(87,"div",7)(88,"span",45),e.EFF(89),e.k0s()()(),e.DNE(90,Ql,1,0,"mat-progress-bar",46),e.j41(91,"mat-expansion-panel",47)(92,"mat-expansion-panel-header")(93,"mat-panel-title")(94,"span",43),e.EFF(95),e.DNE(96,Wl,2,1,"mat-icon",44),e.k0s()()(),e.DNE(97,Zl,1,0,"div",48),e.k0s(),e.DNE(98,Kl,1,0,"mat-progress-bar",46),e.k0s(),e.DNE(99,er,2,1,"h4",49),e.j41(100,"div",50),e.DNE(101,tr,2,0,"button",51),e.k0s()()()(),e.j41(102,"div",52)(103,"button",53),e.EFF(104,"Close"),e.k0s()()()()()}if(2&t){const n=e.sdS(50),i=e.XpG(),o=e.sdS(2);e.Y8G("@opacityAnimation",void 0),e.R7$(15),e.Y8G("icon",i.faInfoCircle),e.R7$(7),e.JRh(e.bMT(23,42,i.selChannel.remote_alias)),e.R7$(5),e.JRh(i.selChannel.chan_id),e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",i.inputFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.inputFormGroup),e.R7$(6),e.Y8G("step",100),e.R7$(2),e.Lme("(Local Bal: ",null==i.selChannel?null:i.selChannel.local_balance,", Remaining: ",(null==i.selChannel?null:i.selChannel.local_balance)-(i.inputFormGroup.controls.rebalanceAmount.value?i.inputFormGroup.controls.rebalanceAmount.value:0),")"),e.R7$(3),e.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==i.inputFormGroup.controls.rebalanceAmount.errors?null:i.inputFormGroup.controls.rebalanceAmount.errors.max),e.R7$(4),e.Y8G("matAutocomplete",n),e.R7$(),e.Y8G("displayWith",i.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(52,44,i.filteredActiveChannels)),e.R7$(2),e.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.required),e.R7$(),e.Y8G("ngIf",null==i.inputFormGroup.controls.selRebalancePeer.errors?null:i.inputFormGroup.controls.selRebalancePeer.errors.notfound),e.R7$(4),e.Y8G("stepControl",i.feeFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.feeFormGroup),e.R7$(8),e.Y8G("ngForOf",i.feeLimitTypes),e.R7$(3),e.JRh(i.feeFormGroup.controls.selFeeLimitType.value?i.feeFormGroup.controls.selFeeLimitType.value.placeholder:i.feeLimitTypes[0].placeholder),e.R7$(),e.Y8G("step",1),e.R7$(),e.Y8G("ngIf",null==i.feeFormGroup.controls.feeLimit.errors?null:i.feeFormGroup.controls.feeLimit.errors.required),e.R7$(),e.Y8G("ngIf",null==i.feeFormGroup.controls.feeLimit.errors?null:i.feeFormGroup.controls.feeLimit.errors.min),e.R7$(4),e.Y8G("stepControl",i.statusFormGroup),e.R7$(),e.Y8G("formGroup",i.statusFormGroup),e.R7$(7),e.JRh(i.flgInvoiceGenerated?i.flgReusingInvoice?"Invoice re-used":"Invoice generated":"Generating invoice..."),e.R7$(),e.Y8G("ngIf",i.flgInvoiceGenerated),e.R7$(3),e.JRh(i.paymentRequest),e.R7$(),e.Y8G("ngIf",!i.flgInvoiceGenerated),e.R7$(),e.Y8G("expanded",(i.flgInvoiceGenerated||i.flgReusingInvoice)&&i.flgPaymentSent),e.R7$(4),e.JRh(i.flgInvoiceGenerated||i.flgPaymentSent?i.flgPaymentSent?null!=i.paymentStatus&&i.paymentStatus.error?"Payment failed":"Payment successful":"Processing payment...":"Payment waiting for Invoice"),e.R7$(),e.Y8G("ngIf",i.flgPaymentSent),e.R7$(),e.Y8G("ngIf",!i.paymentStatus)("ngIfElse",o),e.R7$(),e.Y8G("ngIf",i.flgInvoiceGenerated&&!i.flgPaymentSent),e.R7$(),e.Y8G("ngIf",i.flgInvoiceGenerated&&i.flgPaymentSent),e.R7$(2),e.Y8G("ngIf",i.paymentStatus&&i.paymentStatus.error),e.R7$(2),e.Y8G("mat-dialog-close",!1)}}function ir(t,s){1&t&&e.eu8(0)}function ar(t,s){if(1&t&&e.DNE(0,ir,1,0,"ng-container",59),2&t){const n=e.XpG(),i=e.sdS(4),o=e.sdS(6);e.Y8G("ngTemplateOutlet",n.paymentStatus.error?i:o)}}function sr(t,s){if(1&t&&(e.j41(0,"div",7)(1,"span",45),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.SpI("Error: ",n.paymentStatus.error)}}function or(t,s){if(1&t&&(e.j41(0,"div",7)(1,"div",60)(2,"div",61)(3,"h4",62),e.EFF(4,"Payment Hash"),e.k0s(),e.j41(5,"span",45),e.EFF(6),e.k0s()()(),e.nrm(7,"mat-divider",63),e.j41(8,"div",60)(9,"div",64)(10,"h4",62),e.EFF(11),e.k0s(),e.j41(12,"span",45),e.EFF(13),e.k0s()(),e.j41(14,"div",64)(15,"h4",62),e.EFF(16,"Number of Hops"),e.k0s(),e.j41(17,"span",45),e.EFF(18),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(6),e.JRh(n.paymentStatus.payment_hash),e.R7$(5),e.SpI("Total Fees (",n.paymentStatus.payment_route.total_fees_msat?"mSats":"Sats",")"),e.R7$(2),e.JRh(n.paymentStatus.payment_route.total_fees_msat?n.paymentStatus.payment_route.total_fees_msat:n.paymentStatus.payment_route.total_fees?n.paymentStatus.payment_route.total_fees:0),e.R7$(5),e.JRh(n.paymentStatus&&n.paymentStatus.payment_route&&n.paymentStatus.payment_route.hops&&n.paymentStatus.payment_route.hops.length?n.paymentStatus.payment_route.hops.length:0)}}function lr(t,s){if(1&t){const n=e.RV6();e.j41(0,"span",80),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onStepChanged(o))}),e.nrm(1,"p",81),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngClass",e.l_i(1,Pl,i.stepNumber===n,i.stepNumber!==n))}}function rr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",82),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onStepChanged(4))}),e.EFF(1,"Back"),e.k0s()}}function cr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",83),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return o.flgShowInfo=!1,r.Njj(o.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function pr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",84),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return o.flgShowInfo=!1,r.Njj(o.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function mr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",85),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onStepChanged(o.stepNumber-1))}),e.EFF(1,"Back"),e.k0s()}}function ur(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",86),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onStepChanged(o.stepNumber+1))}),e.EFF(1,"Next"),e.k0s()}}function hr(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",65)(1,"div",66)(2,"mat-card-header",67)(3,"div",68),e.nrm(4,"span",11),e.k0s(),e.j41(5,"div",69)(6,"button",14),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return o.flgShowInfo=!1,r.Njj(o.stepNumber=1)}),e.EFF(7,"X"),e.k0s()()(),e.j41(8,"mat-card-content",70)(9,"rtl-channel-rebalance-infographics",71),e.mxI("stepNumberChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.stepNumber,o)||(a.stepNumber=o),r.Njj(o)}),e.k0s()(),e.j41(10,"div",72),e.DNE(11,lr,2,4,"span",73),e.k0s(),e.j41(12,"div",74),e.DNE(13,rr,2,0,"button",75)(14,cr,2,0,"button",76)(15,pr,2,0,"button",77)(16,mr,2,0,"button",78)(17,ur,2,0,"button",79),e.k0s()()()}if(2&t){const n=e.XpG();e.Y8G("@opacityAnimation",void 0),e.R7$(9),e.Y8G("animationDirection",n.animationDirection),e.R50("stepNumber",n.stepNumber),e.R7$(2),e.Y8G("ngForOf",e.lJ4(9,Nl)),e.R7$(2),e.Y8G("ngIf",5===n.stepNumber),e.R7$(),e.Y8G("ngIf",5===n.stepNumber),e.R7$(),e.Y8G("ngIf",n.stepNumber<5),e.R7$(),e.Y8G("ngIf",n.stepNumber>1&&n.stepNumber<5),e.R7$(),e.Y8G("ngIf",n.stepNumber<5)}}let dr=(()=>{var t;class s{constructor(i,o,a,l,h,f,P,w){this.dialogRef=i,this.data=o,this.logger=a,this.store=l,this.actions=h,this.formBuilder=f,this.decimalPipe=P,this.commonService=w,this.faInfoCircle=I.iW_,this.invoices={},this.selChannel={},this.activeChannels=[],this.feeLimitTypes=[],this.queryRoute={},this.paymentRequest="",this.paymentStatus=null,this.flgReusingInvoice=!1,this.flgInvoiceGenerated=!1,this.flgPaymentSent=!1,this.inputFormLabel="Amount to rebalance",this.feeFormLabel="Select rebalance fee",this.flgEditable=!0,this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=p.f7,this.animationDirection="forward",this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize();let i="",o="";this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(a=>a.active&&a.chan_id!==this.selChannel.chan_id&&a.remote_balance&&a.remote_balance>0)||[],this.activeChannels=this.activeChannels.sort((a,l)=>(i=a.remote_alias?a.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"",o=l.remote_alias?l.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"",io?1:0)),p.nv.forEach((a,l)=>{l>0&&this.feeLimitTypes.push(a)}),this.inputFormGroup=this.formBuilder.group({hiddenAmount:["",[g.k0.required]],rebalanceAmount:["",[g.k0.required,g.k0.min(1),g.k0.max(this.selChannel.local_balance||0)]],selRebalancePeer:[null,g.k0.required]}),this.feeFormGroup=this.formBuilder.group({selFeeLimitType:[this.feeLimitTypes[0],g.k0.required],feeLimit:["",[g.k0.required,g.k0.min(0)]],hiddenFeeLimit:["",[g.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(E.rN).pipe((0,x.Q)(this.unSubs[0])).subscribe(a=>{this.invoices=a.listInvoices,this.logger.info(a)}),this.actions.pipe((0,x.Q)(this.unSubs[1]),(0,L.p)(a=>a.type===p.QP.SET_QUERY_ROUTES_LND||a.type===p.QP.SEND_PAYMENT_STATUS_LND||a.type===p.QP.NEWLY_SAVED_INVOICE_LND)).subscribe(a=>{a.type===p.QP.SET_QUERY_ROUTES_LND&&(this.queryRoute=a.payload),a.type===p.QP.SEND_PAYMENT_STATUS_LND&&(this.logger.info(a.payload),this.flgPaymentSent=!0,this.paymentStatus=a.payload,this.flgEditable=!0),a.type===p.QP.NEWLY_SAVED_INVOICE_LND&&(this.logger.info(a.payload),this.flgInvoiceGenerated=!0,this.sendPayment(a.payload.paymentRequest))}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,x.Q)(this.unSubs[2]),(0,ot.Z)(0)).subscribe(a=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,ct.of)(a?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,x.Q)(this.unSubs[3]),(0,ot.Z)("")).subscribe(a=>{"string"==typeof a&&(this.filteredActiveChannels=(0,ct.of)(this.filterActiveChannels()))})}onSelectFee(){return this.inputFormGroup.controls.selRebalancePeer.value&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value&&this.onSelectedPeerChanged(),this.inputFormGroup.controls.selRebalancePeer.value&&"string"!=typeof this.inputFormGroup.controls.selRebalancePeer.value?!this.inputFormGroup.controls.rebalanceAmount.value||(0===this.stepper.selectedIndex&&(this.inputFormGroup.controls.hiddenAmount.setValue(this.inputFormGroup.controls.rebalanceAmount.value),this.stepper.next()),this.queryRoute=null,this.feeFormGroup.reset(),void this.feeFormGroup.controls.selFeeLimitType.setValue(this.feeLimitTypes[0])):(this.inputFormGroup.controls.selRebalancePeer.setErrors({required:!0}),!0)}stepSelectionChanged(i){switch(i.selectedIndex){case 0:default:this.inputFormLabel="Amount to rebalance",this.feeFormLabel="Select rebalance fee";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?this.inputFormGroup.controls.selRebalancePeer.value.remote_alias:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0,15)+"..."):"Amount to rebalance",this.feeFormLabel="Select rebalance fee";break;case 2:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?this.inputFormGroup.controls.selRebalancePeer.value.remote_alias:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0,15)+"..."):"Amount to rebalance",this.feeFormLabel=this.queryRoute&&this.queryRoute.routes&&this.queryRoute.routes.length>0&&(this.queryRoute.routes[0].total_fees_msat||this.queryRoute.routes[0].hops&&this.queryRoute.routes[0].hops.length)?this.feeFormGroup.controls.selFeeLimitType.value.placeholder+": "+this.decimalPipe.transform(this.feeFormGroup.controls.feeLimit.value?this.feeFormGroup.controls.feeLimit.value:0)+" | Hops: "+this.queryRoute.routes[0].hops?.length:"Select rebalance fee"}i.selectedIndex+this.selChannel.local_balance||!this.feeFormGroup.controls.feeLimit.value||this.feeFormGroup.controls.feeLimit.value<0||!this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey)return!0;this.feeFormGroup.controls.hiddenFeeLimit.setValue(this.feeFormGroup.controls.feeLimit.value),this.stepper.next(),this.flgEditable=!1,this.paymentRequest="",this.paymentStatus=null,this.flgReusingInvoice=!1,this.flgInvoiceGenerated=!1,this.flgPaymentSent=!1;const i=this.findUnsettledInvoice();i?(this.flgReusingInvoice=!0,this.sendPayment(i.payment_request||"")):this.store.dispatch((0,N.VK)({payload:{uiMessage:p.MZ.NO_SPINNER,memo:"Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats",value:this.inputFormGroup.controls.rebalanceAmount.value,private:!1,expiry:p.It,is_amp:!1,pageSize:p.md,openModal:!1}}))}findUnsettledInvoice(){return this.invoices.invoices?.find(i=>(!i.settle_date||0==+i.settle_date)&&i.memo==="Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats"&&"CANCELED"!==i.state)}sendPayment(i){if(this.flgInvoiceGenerated=!0,this.paymentRequest=i,"percent"===this.feeFormGroup.controls.selFeeLimitType.value.id&&+this.feeFormGroup.controls.feeLimit.value%1!=0){const o={uiMessage:p.MZ.NO_SPINNER,payment_request:i,amp:!1,outgoing_chan_ids:this.selChannel?.chan_id?[this.selChannel?.chan_id]:void 0,fee_limit_sat:Math.ceil((0,p.C6)("fixed",this.feeFormGroup.controls.feeLimit.value,this.inputFormGroup.controls.rebalanceAmount.value||0)),allow_self_payment:!0,last_hop_pubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0};this.store.dispatch((0,N.Fd)({payload:o}))}else{const o={uiMessage:p.MZ.NO_SPINNER,payment_request:i,amp:!1,outgoing_chan_ids:this.selChannel?.chan_id?[this.selChannel?.chan_id]:void 0,fee_limit_sat:(0,p.C6)(this.feeFormGroup.controls.selFeeLimitType.value.id,this.feeFormGroup.controls.feeLimit.value,this.inputFormGroup.controls.rebalanceAmount.value||0),allow_self_payment:!0,last_hop_pubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0};this.store.dispatch((0,N.Fd)({payload:o}))}}filterActiveChannels(){return this.activeChannels?.filter(i=>i.remote_balance&&i.remote_balance>=this.inputFormGroup.controls.rebalanceAmount.value&&i.chan_id!==this.selChannel.chan_id&&(0===i.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===i.chan_id?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))}onSelectedPeerChanged(){if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const i=this.activeChannels?.filter(o=>o.remote_alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===o.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));i&&i.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(i[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(i){return i&&i.remote_alias?i.remote_alias:i&&i.chan_id?i.chan_id:""}showInfo(){this.flgShowInfo=!0}onStepChanged(i){this.animationDirection=i{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(V.gP),e.rXU(G.il),e.rXU(ce.En),e.rXU(g.ze),e.rXU(y.QX),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-rebalance"]],viewQuery:function(o,a){if(1&o&&e.GBs(Dl,5),2&o){let l;e.mGM(l=e.lsd())&&(a.stepper=l.first)}},standalone:!1,decls:8,vars:2,consts:[["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["stepper",""],["auto","matAutocomplete"],["fxLayout","column",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column"],[1,"modal-info-header"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayoutAlign","start center"],[1,"page-title"],["fxLayoutAlign","end center"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","46"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start end"],["type","text","aria-label","Receive from Peer","matInput","","formControlName","selRebalancePeer","tabindex","2","required","",3,"change","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","submit",3,"click"],["matStepLabel","","disabled","true"],["tabindex","6","formControlName","selFeeLimitType","required",""],["matInput","","formControlName","feeLimit","type","number","tabindex","7","required","",3,"step"],["mat-button","","color","primary","tabindex","8","type","submit",3,"click"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel","mb-2"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[1,"foreground-secondary-text"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayoutAlign","start","class","font-bold-500 mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],[3,"value"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[4,"ngTemplateOutlet"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","50"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(o,a){1&o&&e.DNE(0,nr,105,46,"div",5)(1,ar,1,1,"ng-template",null,0,e.C5r)(3,sr,3,1,"ng-template",null,1,e.C5r)(5,or,19,4,"ng-template",null,2,e.C5r)(7,hr,18,10,"div",6),2&o&&(e.Y8G("ngIf",!a.flgShowInfo),e.R7$(7),e.Y8G("ngIf",a.flgShowInfo))},dependencies:[y.YU,y.Sq,y.bT,y.T3,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.j4,g.JD,ee.aY,ne.tx,$.$z,B.m2,B.MM,he.GK,he.Z2,he.WN,ke.An,Z.fg,R.rl,R.nJ,R.MV,R.TL,R.yw,Te.q,D.HM,b.DJ,b.sA,b.UI,U.PW,O.VO,ae.wT,de.V5,de.Ti,de.M6,De.$3,De.pN,pe.N,Gl,y.Jj,y.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[pt.C]}}))}return t(),s})();function _r(t,s){if(1&t&&(e.j41(0,"div",17)(1,"p",18)(2,"mat-icon",19),e.EFF(3,"close"),e.k0s(),e.EFF(4),e.k0s()()),2&t){const n=e.XpG();e.R7$(4),e.JRh(n.errorMsg)}}function fr(t,s){if(1&t&&(e.j41(0,"div",28),e.nrm(1,"fa-icon",29),e.j41(2,"span"),e.EFF(3,"Priority/Fee for force closing inactive channels cannot be modified."),e.k0s()()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faInfoCircle)}}function gr(t,s){if(1&t&&(e.j41(0,"div",28),e.nrm(1,"fa-icon",29),e.j41(2,"span",30)(3,"div"),e.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(5,"span",31)(6,"span"),e.EFF(7),e.k0s(),e.j41(8,"span"),e.EFF(9),e.k0s(),e.j41(10,"span"),e.EFF(11),e.k0s(),e.j41(12,"span"),e.EFF(13),e.k0s(),e.j41(14,"span"),e.EFF(15),e.k0s()()()()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faInfoCircle),e.R7$(6),e.SpI("- High: ",n.recommendedFee.fastestFee||"Unknown"),e.R7$(2),e.SpI("- Medium: ",n.recommendedFee.halfHourFee||"Unknown"),e.R7$(2),e.SpI("- Low: ",n.recommendedFee.hourFee||"Unknown"),e.R7$(2),e.SpI("- Economy: ",n.recommendedFee.economyFee||"Unknown"),e.R7$(2),e.SpI("- Minimum: ",n.recommendedFee.minimumFee||"Unknown")}}function Cr(t,s){if(1&t&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function yr(t,s){1&t&&(e.j41(0,"mat-form-field",33)(1,"mat-label"),e.EFF(2,"Default"),e.k0s(),e.nrm(3,"input",34),e.k0s())}function br(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function Fr(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",35)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",36,0),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.blocks,o)||(a.blocks=o),r.Njj(o)}),e.k0s(),e.DNE(5,br,2,0,"mat-error",37),e.k0s()}if(2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.blocks),e.R7$(2),e.Y8G("ngIf",!n.blocks)}}function xr(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function vr(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",35)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",38,1),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.fees,o)||(a.fees=o),r.Njj(o)}),e.k0s(),e.DNE(5,xr,2,0,"mat-error",37),e.k0s()}if(2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.fees),e.R7$(2),e.Y8G("ngIf",!n.fees)}}function Tr(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",20),e.DNE(1,fr,4,1,"div",21)(2,gr,16,6,"div",21),e.j41(3,"div",22)(4,"mat-form-field",23)(5,"mat-label"),e.EFF(6,"Transaction Type"),e.k0s(),e.j41(7,"mat-select",24),e.mxI("valueChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selTransType,o)||(a.selTransType=o),r.Njj(o)}),e.bIt("selectionChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onSelTransTypeChanged(o))}),e.DNE(8,Cr,2,2,"mat-option",25),e.k0s()(),e.DNE(9,yr,4,0,"mat-form-field",26)(10,Fr,6,4,"mat-form-field",27)(11,vr,6,4,"mat-form-field",27),e.k0s()()}if(2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",!n.channelToClose.active),e.R7$(),e.Y8G("ngIf",n.recommendedFee.minimumFee),e.R7$(5),e.Y8G("disabled",!n.channelToClose.active),e.R50("value",n.selTransType),e.R7$(),e.Y8G("ngForOf",n.transTypes),e.R7$(),e.Y8G("ngIf","0"===n.selTransType),e.R7$(),e.Y8G("ngIf","1"===n.selTransType),e.R7$(),e.Y8G("ngIf","2"===n.selTransType)}}function kr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",39),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(1,"Clear"),e.k0s()}}function Sr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",40),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onCloseChannel())}),e.EFF(1),e.k0s()}if(2&t){const n=e.XpG();e.R7$(),e.JRh(n.channelToClose.active?"Close Channel":"Force Close")}}function Rr(t,s){if(1&t){const n=e.RV6();e.j41(0,"button",40),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onClose())}),e.EFF(1,"Ok"),e.k0s()}}let Er=(()=>{var t;class s{constructor(i,o,a,l,h,f){this.dialogRef=i,this.data=o,this.dataService=a,this.store=l,this.actions=h,this.logger=f,this.transTypes=p.XG,this.selTransType="0",this.blocks=null,this.fees=null,this.faExclamationTriangle=I.zpE,this.faInfoCircle=I.iW_,this.flgPendingHtlcs=!1,this.errorMsg="Please wait for pending HTLCs to settle before attempting channel closure.",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new C.B,new C.B]}ngOnInit(){this.channelToClose=this.data.channel,this.actions.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(i=>i.type===p.QP.UPDATE_API_CALL_STATUS_LND||i.type===p.QP.SET_CHANNELS_LND)).subscribe(i=>{if(i.type===p.QP.SET_CHANNELS_LND){const o=i.payload.find(a=>a.chan_id===this.data.channel.chan_id);o&&o.pending_htlcs&&o.pending_htlcs.length&&o.pending_htlcs.length>0&&(this.flgPendingHtlcs=!0)}i.type===p.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===p.wn.ERROR&&"FetchAllChannels"===i.payload.action&&this.logger.error("Fetching latest channel information failed!\n"+i.payload.message)})}onCloseChannel(){if("1"===this.selTransType&&(!this.blocks||0===this.blocks)||"2"===this.selTransType&&(!this.fees||0===this.fees))return!0;const i={channelPoint:this.channelToClose.channel_point,forcibly:!this.channelToClose.active};this.blocks&&(i.targetConf=this.blocks),this.fees&&(i.satPerVByte=this.fees),this.store.dispatch((0,N.w0)({payload:i})),this.dialogRef.close(!1)}resetData(){this.selTransType="0",this.blocks=null,this.fees=null}onSelTransTypeChanged(i){"2"===i.value&&this.dataService.getRecommendedFeeRates().pipe((0,x.Q)(this.unSubs[1])).subscribe({next:o=>{this.recommendedFee=o},error:o=>{this.logger.error(o)}})}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(Fe.u),e.rXU(G.il),e.rXU(ce.En),e.rXU(V.gP))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-close-channel"]],standalone:!1,decls:19,vars:7,consts:[["blcks","ngModel"],["clchfee","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],["fxLayoutAlign","start center",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","class","mr-1","default","",3,"click",4,"ngIf"],["mat-button","","color","primary","type","submit",3,"click",4,"ngIf"],["fxLayoutAlign","start center"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","column","fxFlex.gt-sm","48"],[3,"valueChange","selectionChange","disabled","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","48",4,"ngIf"],["fxFlex.gt-sm","48","fxLayoutAlign","start end",4,"ngIf"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["fxFlex","48"],["matInput","","disabled",""],["fxFlex.gt-sm","48","fxLayoutAlign","start end"],["matInput","","type","number","name","blocks","required","",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["matInput","","type","number","name","ccfees","required","",3,"ngModelChange","step","min","ngModel"],["mat-button","","color","primary","type","reset","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),e.EFF(5),e.k0s()(),e.j41(6,"button",7),e.bIt("click",function(){return a.onClose()}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",8)(9,"form",9)(10,"div",10)(11,"p",11),e.EFF(12),e.k0s(),e.DNE(13,_r,5,1,"div",12)(14,Tr,12,8,"div",13),e.k0s(),e.j41(15,"div",14),e.DNE(16,kr,2,0,"button",15)(17,Sr,2,1,"button",16)(18,Rr,2,0,"button",16),e.k0s()()()()()),2&o&&(e.R7$(5),e.JRh(a.channelToClose.active?"Close Channel":"Force Close Channel"),e.R7$(7),e.SpI("",a.channelToClose.active?"Closing channel: "+(a.channelToClose.remote_alias||a.channelToClose.chan_id?a.channelToClose.remote_alias&&a.channelToClose.chan_id?a.channelToClose.remote_alias+" ("+a.channelToClose.chan_id+")":a.channelToClose.remote_alias?a.channelToClose.remote_alias:a.channelToClose.chan_id:a.channelToClose.channel_point):"Force closing channel: "+(a.channelToClose.remote_alias||a.channelToClose.chan_id?a.channelToClose.remote_alias&&a.channelToClose.chan_id?a.channelToClose.remote_alias+" ("+a.channelToClose.chan_id+")":a.channelToClose.remote_alias?a.channelToClose.remote_alias:a.channelToClose.chan_id:a.channelToClose.channel_point)," "),e.R7$(),e.Y8G("ngIf",a.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!a.flgPendingHtlcs),e.R7$(2),e.Y8G("ngIf",a.channelToClose.active&&!a.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!a.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",a.flgPendingHtlcs))},dependencies:[y.Sq,y.bT,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.VZ,g.vS,g.cV,ee.aY,$.$z,B.m2,B.MM,ke.An,Z.fg,R.rl,R.nJ,R.TL,b.DJ,b.sA,b.UI,O.VO,ae.wT,ye.V],encapsulation:2}))}return t(),s})();const Ir=()=>["all"],wr=t=>({"error-border":t}),Lr=()=>["no_channel"],qe=t=>({width:t}),jr=t=>({"display-none":t});function Gr(t,s){if(1&t&&(e.j41(0,"mat-option",49),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Dr(t,s){1&t&&e.nrm(0,"mat-progress-bar",50)}function Nr(t,s){1&t&&e.nrm(0,"th",51)}function Pr(t,s){1&t&&e.nrm(0,"span",55)}function Br(t,s){1&t&&e.nrm(0,"span",56)}function Ar(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,Pr,1,0,"span",53)(2,Br,1,0,"span",54),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.active),e.R7$(),e.Y8G("ngIf",!n.active)}}function $r(t,s){1&t&&e.nrm(0,"th",57)}function Mr(t,s){if(1&t&&(e.j41(0,"span",60),e.nrm(1,"fa-icon",61),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faEyeSlash)}}function Or(t,s){if(1&t&&(e.j41(0,"span",62),e.nrm(1,"fa-icon",61),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faEye)}}function Vr(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,Mr,2,1,"span",58)(2,Or,2,1,"span",59),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.private),e.R7$(),e.Y8G("ngIf",!n.private)}}function Yr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Peer"),e.k0s())}function Ur(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.remote_alias)}}function Xr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Pubkey"),e.k0s())}function Hr(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.remote_pubkey)}}function qr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Channel Point"),e.k0s())}function zr(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel_point)}}function Jr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Channel ID"),e.k0s())}function Qr(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.chan_id)}}function Wr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Initiator"),e.k0s())}function Zr(t,s){if(1&t&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(n.initiator?"Yes":"No")}}function Kr(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Static Remote Key"),e.k0s())}function e1(t,s){if(1&t&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(n.static_remote_key?"Yes":"No")}}function t1(t,s){if(1&t&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Uptime (",n.timeUnit,")")}}function n1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",n.uptime_str," ")}}function i1(t,s){if(1&t&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("Lifetime (",n.timeUnit,")")}}function a1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",n.lifetime_str," ")}}function s1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function o1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.commit_fee)," ")}}function l1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Commit Weight"),e.k0s())}function r1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.commit_weight)," ")}}function c1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Fee/KW"),e.k0s())}function p1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.fee_per_kw)," ")}}function m1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Updates"),e.k0s())}function u1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.num_updates)," ")}}function h1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function d1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.unsettled_balance)," ")}}function _1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Capacity (Sats)"),e.k0s())}function f1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.capacity)," ")}}function g1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function C1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.local_chan_reserve_sat)," ")}}function y1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function b1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.remote_chan_reserve_sat)," ")}}function F1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Sats Sent"),e.k0s())}function x1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.total_satoshis_sent)," ")}}function v1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Sats Received"),e.k0s())}function T1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.total_satoshis_received)," ")}}function k1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function S1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.local_balance)," ")}}function R1(t,s){1&t&&(e.j41(0,"th",66),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function E1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.remote_balance)," ")}}function I1(t,s){1&t&&(e.j41(0,"th",63),e.EFF(1,"Balance Score"),e.k0s())}function w1(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",68)(2,"mat-hint",69),e.EFF(3),e.nI1(4,"number"),e.k0s()(),e.nrm(5,"mat-progress-bar",70),e.k0s()),2&t){const n=s.$implicit;e.R7$(3),e.JRh(e.bMT(4,3,n.balancedness||0)),e.R7$(2),e.Y8G("value",e.mNQ(n.local_balance&&n.local_balance>0?+n.local_balance/(+n.local_balance+ +n.remote_balance)*100:0))}}function L1(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",71)(1,"div",72)(2,"mat-select",73),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",74),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onChannelUpdate("all"))}),e.EFF(5,"Update Fee Policy"),e.k0s(),e.j41(6,"mat-option",74),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(7,"Download CSV"),e.k0s()()()()}}function j1(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){r.eBV(n);const o=e.XpG().$implicit,a=e.XpG();return r.Njj(a.onCircularRebalance(o))}),e.EFF(1,"Circular Rebalance"),e.k0s()}}function G1(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){r.eBV(n);const o=e.XpG().$implicit,a=e.XpG();return r.Njj(a.onLoopOut(o))}),e.EFF(1,"Loop Out"),e.k0s()}}function D1(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",75)(1,"div",72)(2,"mat-select",76),e.nrm(3,"mat-select-trigger"),e.j41(4,"perfect-scrollbar")(5,"mat-option",74),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onChannelClick(a,o))}),e.EFF(6,"View Info"),e.k0s(),e.j41(7,"mat-option",74),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onViewRemotePolicy(o))}),e.EFF(8,"View Remote Fee "),e.k0s(),e.j41(9,"mat-option",74),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onChannelUpdate(o))}),e.EFF(10,"Update Fee Policy"),e.k0s(),e.DNE(11,j1,2,0,"mat-option",77)(12,G1,2,0,"mat-option",77),e.j41(13,"mat-option",74),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onChannelClose(o))}),e.EFF(14,"Close Channel"),e.k0s()()()()()}if(2&t){const n=e.XpG();e.R7$(11),e.Y8G("ngIf",+n.versionsArr[0]>0||+n.versionsArr[1]>=9),e.R7$(),e.Y8G("ngIf",n.selNode.swapServerUrl)}}function N1(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No peers connected. Add a peer in order to open a channel."),e.k0s())}function P1(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function B1(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function A1(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function $1(t,s){if(1&t&&(e.j41(0,"td",78),e.DNE(1,N1,2,0,"p",79)(2,P1,2,0,"p",79)(3,B1,2,0,"p",79)(4,A1,2,1,"p",79),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",n.numPeers<1&&(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&(null==n.apiCallStatus?null:n.apiCallStatus.status)===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",n.numPeers>0&&(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&(null==n.apiCallStatus?null:n.apiCallStatus.status)===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&(null==n.apiCallStatus?null:n.apiCallStatus.status)===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&(null==n.apiCallStatus?null:n.apiCallStatus.status)===n.apiCallStatusEnum.ERROR)}}function M1(t,s){if(1&t&&e.nrm(0,"tr",80),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,jr,(null==n.channels?null:n.channels.data)&&(null==n.channels||null==n.channels.data?null:n.channels.data.length)>0))}}function O1(t,s){1&t&&e.nrm(0,"tr",81)}function V1(t,s){1&t&&e.nrm(0,"tr",82)}let Y1=(()=>{var t;class s{constructor(i,o,a,l,h,f,P,w){this.logger=i,this.store=o,this.lndEffects=a,this.commonService=l,this.rtlEffects=h,this.decimalPipe=f,this.loopService=P,this.camelCaseWithReplace=w,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open",recordsPerPage:p.md,sortBy:"balancedness",sortOrder:p.oi.DESCENDING},this.timeUnit="mins:secs",this.userPersonaEnum=p.HW,this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new _.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.selFilter="",this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.versionsArr=[],this.faEye=I.pS3,this.faEyeSlash=I.k6j,this.targetConf=6,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.information=i,this.information&&this.information.version&&(this.versionsArr=this.information.version.split("."))}),this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.unshift("active"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.os).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.numPeers=i.peers&&i.peers.length?i.peers.length:0}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[4])).subscribe(i=>{this.totalBalance=i.blockchainBalance?.total_balance?+i.blockchainBalance?.total_balance:0}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[5])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=this.calculateUptime(i.channels),this.channelsData.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(i)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(i){this.store.dispatch((0,N.ij)({payload:{uiMessage:p.MZ.GET_REMOTE_POLICY,channelID:i.chan_id?.toString()+"/"+this.information.identity_pubkey}})),this.lndEffects.setLookup.pipe((0,be.s)(1)).subscribe(o=>{if(!o.fee_base_msat&&!o.fee_rate_milli_msat&&!o.time_lock_delta)return!1;const a=[[{key:"fee_base_msat",value:o.fee_base_msat,title:"Base Fees (mSats)",width:25,type:p.UN.NUMBER},{key:"fee_rate_milli_msat",value:o.fee_rate_milli_msat,title:"Fee Rate (milli mSats)",width:25,type:p.UN.NUMBER},{key:"fee_rate_milli_msat",value:o.fee_rate_milli_msat/1e4,title:"Fee Rate (%)",width:25,type:p.UN.NUMBER,digitsInfo:"1.0-8"},{key:"time_lock_delta",value:o.time_lock_delta,title:"Time Lock Delta",width:25,type:p.UN.NUMBER}]],l="Remote policy for Channel: "+(i.remote_alias||i.chan_id?i.remote_alias&&i.chan_id?i.remote_alias+" ("+i.chan_id+")":i.remote_alias?i.remote_alias:i.chan_id:i.channel_point);setTimeout(()=>{this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:l,message:a}}}))},0)})}onCircularRebalance(i){this.store.dispatch((0,Y.xO)({payload:{data:{message:{channels:this.channelsData,selChannel:i},component:dr}}}))}onChannelUpdate(i){"all"===i?(this.store.dispatch((0,Y.I1)({payload:{data:{type:p.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update All Channels",message:[],titleMessage:"Update fee policy for all channels",flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:p.UN.NUMBER,inputValue:1e3,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:p.UN.NUMBER,inputValue:1,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:p.UN.NUMBER,inputValue:40,width:32}]}}})),this.rtlEffects.closeConfirm.pipe((0,x.Q)(this.unSubs[6])).subscribe(a=>{a&&this.store.dispatch((0,N.fy)({payload:{baseFeeMsat:a[0].inputValue,feeRate:a[1].inputValue,timeLockDelta:a[2].inputValue,chanPoint:"all"}}))})):(this.myChanPolicy={fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0,min_htlc_msat:0,max_htlc_msat:0},this.store.dispatch((0,N.ij)({payload:{uiMessage:p.MZ.GET_CHAN_POLICY,channelID:i.chan_id.toString()}})),this.lndEffects.setLookup.pipe((0,be.s)(1)).subscribe(o=>{this.myChanPolicy=o.node1_pub===this.information.identity_pubkey?o.node1_policy:o.node2_pub===this.information.identity_pubkey?o.node2_policy:{fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0},this.logger.info(this.myChanPolicy);const a="Update fee policy for Channel: "+(i.remote_alias||i.chan_id?i.remote_alias&&i.chan_id?i.remote_alias+" ("+i.chan_id+")":i.remote_alias?i.remote_alias:i.chan_id:i.channel_point),l=[];setTimeout(()=>{this.store.dispatch((0,Y.I1)({payload:{data:{type:p.A$.CONFIRM,alertTitle:"Update Fee Policy",titleMessage:a,noBtnText:"Cancel",yesBtnText:"Update Channel",message:l,flgShowInput:!0,hasAdvanced:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:p.UN.NUMBER,inputValue:""===this.myChanPolicy.fee_base_msat?0:this.myChanPolicy.fee_base_msat,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:p.UN.NUMBER,inputValue:this.myChanPolicy.fee_rate_milli_msat,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:p.UN.NUMBER,inputValue:this.myChanPolicy.time_lock_delta,width:32},{placeholder:"Minimum HTLC (mSat)",inputType:p.UN.NUMBER,inputValue:""===this.myChanPolicy.min_htlc?0:this.myChanPolicy.min_htlc,width:49,advancedField:!0},{placeholder:"Maximum HTLC (mSat)",inputType:p.UN.NUMBER,inputValue:""===this.myChanPolicy.max_htlc_msat?0:this.myChanPolicy.max_htlc_msat,width:49,advancedField:!0}]}}}))},0)}),this.rtlEffects.closeConfirm.pipe((0,x.Q)(this.unSubs[7])).subscribe(o=>{if(o){const a={baseFeeMsat:o[0].inputValue,feeRate:o[1].inputValue,timeLockDelta:o[2].inputValue,chanPoint:i.channel_point};o.length>3&&o[3]&&o[4]&&(a.minHtlcMsat=o[3].inputValue,a.maxHtlcMsat=o[4].inputValue),this.store.dispatch((0,N.fy)({payload:a}))}})),this.applyFilter()}onChannelClose(i){i.active&&this.store.dispatch((0,N.$Q)()),this.store.dispatch((0,Y.xO)({payload:{data:{channel:i,component:Er}}}))}onChannelClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{channel:i,selNode:this.selNode,showCopy:!0,component:rt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.active?"active":"inactive")+(i.chan_id?i.chan_id.toLowerCase():"")+(i.remote_pubkey?i.remote_pubkey.toLowerCase():"")+(i.remote_alias?i.remote_alias.toLowerCase():"")+(i.capacity?i.capacity:"")+(i.local_balance?i.local_balance:"")+(i.remote_balance?i.remote_balance:"")+(i.total_satoshis_sent?i.total_satoshis_sent:"")+(i.total_satoshis_received?i.total_satoshis_received:"")+(i.commit_fee?i.commit_fee:"")+(i.private?"private":"public");break;case"active":a=i?.active?"active":"inactive";break;case"private":a=i?.private?"private":"public";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"active"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}loadChannelsTable(i){this.channels=new _.I6([...i]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}calculateUptime(i){let f=60,P=1,w=0;switch(i.forEach(M=>{M.uptime&&+M.uptime>w&&(w=+M.uptime)}),!0){case w<3600:this.timeUnit="Mins:Secs",f=60,P=1;break;case w>=3600&&w<86400:this.timeUnit="Hrs:Mins",f=3600,P=60;break;case w>=86400&&w<31536e3:this.timeUnit="Days:Hrs",f=86400,P=3600;break;case w>31536e3:this.timeUnit="Yrs:Days",f=31536e3,P=86400;break;default:this.timeUnit="Mins:Secs",f=60,P=1}return i.forEach(M=>{M.uptime_str=M.uptime?this.decimalPipe.transform(Math.floor(+M.uptime/f),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+M.uptime%f/P),"2.0-0"):"---",M.lifetime_str=M.lifetime?this.decimalPipe.transform(Math.floor(+M.lifetime/f),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+M.lifetime%f/P),"2.0-0"):"---"}),i}onLoopOut(i){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,x.Q)(this.unSubs[8])).subscribe(o=>{this.store.dispatch((0,Y.xO)({payload:{minHeight:"56rem",data:{channel:i,minQuote:o[0],maxQuote:o[1],direction:p.C7.LOOP_OUT,component:vt.D}}}))})}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}percentHintFunction(i){return(i/1e4).toString()+"%"}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(Pe.L),e.rXU(z.h),e.rXU(Ve.H),e.rXU(y.QX),e.rXU(Tt.Q),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-open-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Channels")}])],decls:96,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","active"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private",4,"matHeaderCellDef"],["matColumnDef","remote_alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","chan_id"],["matColumnDef","initiator"],["matColumnDef","static_remote_key"],["matColumnDef","uptime_str"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","lifetime_str"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","num_updates"],["matColumnDef","unsettled_balance"],["matColumnDef","capacity"],["matColumnDef","local_chan_reserve_sat"],["matColumnDef","remote_chan_reserve_sat"],["matColumnDef","total_satoshis_sent"],["matColumnDef","total_satoshis_received"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active"],["mat-cell",""],["class","dot green","matTooltip","Active","matTooltipPosition","right",4,"ngIf"],["class","dot grey","matTooltip","Inactive","matTooltipPosition","right",4,"ngIf"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","grey"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilterBy,f)||(a.selFilterBy=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,Gr,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,Dr,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Nr,1,0,"th",13)(20,Ar,3,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,$r,1,0,"th",16)(23,Vr,3,2,"td",14),e.bVm(),e.qex(24,17),e.DNE(25,Yr,2,0,"th",18)(26,Ur,4,4,"td",14),e.bVm(),e.qex(27,19),e.DNE(28,Xr,2,0,"th",18)(29,Hr,4,4,"td",14),e.bVm(),e.qex(30,20),e.DNE(31,qr,2,0,"th",18)(32,zr,4,4,"td",14),e.bVm(),e.qex(33,21),e.DNE(34,Jr,2,0,"th",18)(35,Qr,4,4,"td",14),e.bVm(),e.qex(36,22),e.DNE(37,Wr,2,0,"th",18)(38,Zr,2,1,"td",14),e.bVm(),e.qex(39,23),e.DNE(40,Kr,2,0,"th",18)(41,e1,2,1,"td",14),e.bVm(),e.qex(42,24),e.DNE(43,t1,2,1,"th",25)(44,n1,3,1,"td",14),e.bVm(),e.qex(45,26),e.DNE(46,i1,2,1,"th",25)(47,a1,3,1,"td",14),e.bVm(),e.qex(48,27),e.DNE(49,s1,2,0,"th",25)(50,o1,4,3,"td",14),e.bVm(),e.qex(51,28),e.DNE(52,l1,2,0,"th",25)(53,r1,4,3,"td",14),e.bVm(),e.qex(54,29),e.DNE(55,c1,2,0,"th",25)(56,p1,4,3,"td",14),e.bVm(),e.qex(57,30),e.DNE(58,m1,2,0,"th",25)(59,u1,4,3,"td",14),e.bVm(),e.qex(60,31),e.DNE(61,h1,2,0,"th",25)(62,d1,4,3,"td",14),e.bVm(),e.qex(63,32),e.DNE(64,_1,2,0,"th",25)(65,f1,4,3,"td",14),e.bVm(),e.qex(66,33),e.DNE(67,g1,2,0,"th",25)(68,C1,4,3,"td",14),e.bVm(),e.qex(69,34),e.DNE(70,y1,2,0,"th",25)(71,b1,4,3,"td",14),e.bVm(),e.qex(72,35),e.DNE(73,F1,2,0,"th",25)(74,x1,4,3,"td",14),e.bVm(),e.qex(75,36),e.DNE(76,v1,2,0,"th",25)(77,T1,4,3,"td",14),e.bVm(),e.qex(78,37),e.DNE(79,k1,2,0,"th",25)(80,S1,4,3,"td",14),e.bVm(),e.qex(81,38),e.DNE(82,R1,2,0,"th",25)(83,E1,4,3,"td",14),e.bVm(),e.qex(84,39),e.DNE(85,I1,2,0,"th",18)(86,w1,6,5,"td",14),e.bVm(),e.qex(87,40),e.DNE(88,L1,8,0,"th",41)(89,D1,15,2,"td",42),e.bVm(),e.qex(90,43),e.DNE(91,$1,5,4,"td",44),e.bVm(),e.DNE(92,M1,1,3,"tr",45)(93,O1,1,0,"tr",46)(94,V1,1,0,"tr",47),e.k0s()(),e.nrm(95,"mat-paginator",48),e.k0s()}2&o&&(e.R7$(7),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,Ir).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",(null==a.apiCallStatus?null:a.apiCallStatus.status)===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",e.eq3(15,wr,""!==a.errorMessage)),e.R7$(76),e.Y8G("matFooterRowDef",e.lJ4(17,Lr)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,ee.aY,Z.fg,R.rl,R.nJ,R.MV,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,fe.oV,X.iy,K.ZF,K.Ld,y.QX],styles:[".mat-column-active[_ngcontent-%COMP%], .mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]}))}return t(),s})();const U1=["outputIdx"];function X1(t,s){if(1&t&&(e.j41(0,"div",31),e.nrm(1,"fa-icon",16),e.j41(2,"span"),e.EFF(3,"Change output balance "),e.j41(4,"strong"),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.EFF(7," (Sats) may be insufficient for fee bumping, depending on the prevailing fee rates."),e.k0s()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(4),e.JRh(e.bMT(6,2,n.dustOutputValue))}}function H1(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Index for change output is required."),e.k0s())}function q1(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid index value."),e.k0s())}function z1(t,s){if(1&t&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function J1(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function Q1(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",20)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",33,1),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.blocks,o)||(a.blocks=o),r.Njj(o)}),e.k0s(),e.DNE(5,J1,2,0,"mat-error",22),e.k0s()}if(2&t){const n=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.blocks),e.R7$(2),e.Y8G("ngIf",!n.blocks)}}function W1(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function Z1(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",20)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",34,2),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.fees,o)||(a.fees=o),r.Njj(o)}),e.k0s(),e.DNE(5,W1,2,0,"mat-error",22),e.k0s()}if(2&t){const n=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.fees),e.R7$(2),e.Y8G("ngIf",!n.fees)}}function K1(t,s){if(1&t&&(e.j41(0,"div",35),e.nrm(1,"fa-icon",16),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(2),e.JRh(n.bumpFeeError)}}let wt=(()=>{var t;class s{set outputIndx(i){i&&(this.outputIdx=i)}constructor(i,o,a,l,h){this.dialogRef=i,this.data=o,this.logger=a,this.dataService=l,this.store=h,this.faUpRightFromSquare=I.k02,this.txid="",this.outputIndex=null,this.transTypes=[...p.XG],this.selTransType="2",this.blocks=null,this.fees=null,this.faCopy=I.jPR,this.faInfoCircle=I.iW_,this.faExclamationTriangle=I.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){if(this.transTypes=this.transTypes.splice(1),this.data.pendingChannel&&this.data.pendingChannel.channel){const i=this.data.pendingChannel.channel?.channel_point?.split(":")||[];this.txid=i[0]||(this.data.pendingChannel.channel&&this.data.pendingChannel.channel.channel_point?this.data.pendingChannel.channel.channel_point:""),this.outputIndex=i[1]&&""!==i[1]&&0==+i[1]?1:0}else this.data.selUTXO&&this.data.selUTXO.outpoint&&(this.txid=this.data.selUTXO.outpoint.txid_str||"",this.outputIndex=this.data.selUTXO.outpoint.output_index||0);this.logger.info(this.txid,this.outputIndex),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,x.Q)(this.unSubs[1])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}}),this.dataService.getBlockExplorerTransaction(this.txid).pipe((0,x.Q)(this.unSubs[2])).subscribe({next:i=>{this.dustOutputValue=i.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:i=>{this.logger.error(i)}})}onBumpFee(){if(this.data.pendingChannel&&this.data.pendingChannel.channel){const i=this.data.pendingChannel.channel?.channel_point?.split(":")||[],o=i.length>1&&i[1]&&""!==i[1]?+i[1]:null;if(o&&this.outputIndex===o)return this.outputIdx.control.setErrors({pendingChannelOutputIndex:!0}),!0}if(!this.outputIndex&&0!==this.outputIndex||"1"===this.selTransType&&(!this.blocks||0===this.blocks)||"2"===this.selTransType&&(!this.fees||0===this.fees))return!0;this.dataService.bumpFee(this.txid,this.outputIndex,this.blocks||null,this.fees||null).pipe((0,x.Q)(this.unSubs[3])).subscribe({next:i=>{this.dialogRef.close(!1)},error:i=>{this.logger.error(i),this.bumpFeeError=i.message?i.message:i}})}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.txid,"_blank")}resetData(){this.bumpFeeError="",this.selTransType="2",this.blocks=null,this.fees=null,this.outputIdx.control.setErrors(null)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(V.gP),e.rXU(Fe.u),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-bump-fee"]],viewQuery:function(o,a){if(1&o&&e.GBs(U1,5),2&o){let l;e.mGM(l=e.lsd())&&(a.outputIndx=l.first)}},standalone:!1,decls:48,vars:20,consts:[["outputIndx","ngModel"],["blcks","ngModel"],["fee","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","column","fxFlex.gt-sm","32","fxLayoutAlign","start end"],["autoFocus","","matInput","","type","number","required","","name","outputIndx",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","32"],[3,"valueChange","selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex.gt-sm","32","fxLayoutAlign","start end",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit",3,"click"],["fxFlex","100",1,"alert","alert-warn"],[3,"value"],["matInput","","type","number","name","blocks","required","",3,"ngModelChange","step","min","ngModel"],["matInput","","type","number","name","fees","required","",3,"ngModelChange","step","min","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),e.EFF(5,"Bump Fee"),e.k0s()(),e.j41(6,"button",8),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",9)(9,"form",10)(10,"div",11)(11,"p",12),e.EFF(12),e.j41(13,"fa-icon",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onExplorerClicked())}),e.k0s()(),e.j41(14,"div",14)(15,"div",15),e.nrm(16,"fa-icon",16),e.j41(17,"span",17)(18,"div"),e.EFF(19,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(20,"div"),e.EFF(21),e.k0s(),e.j41(22,"div"),e.EFF(23),e.k0s(),e.j41(24,"div"),e.EFF(25),e.k0s()()(),e.DNE(26,X1,8,4,"div",18),e.j41(27,"div",19)(28,"mat-form-field",20)(29,"mat-label"),e.EFF(30,"Index for Change Output"),e.k0s(),e.j41(31,"input",21,0),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.outputIndex,f)||(a.outputIndex=f),r.Njj(f)}),e.k0s(),e.DNE(33,H1,2,0,"mat-error",22)(34,q1,2,0,"mat-error",22),e.k0s(),e.j41(35,"mat-form-field",23)(36,"mat-label"),e.EFF(37,"Transaction Type"),e.k0s(),e.j41(38,"mat-select",24),e.mxI("valueChange",function(f){return r.eBV(l),e.DH7(a.selTransType,f)||(a.selTransType=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.blocks=null,r.Njj(a.fees=null)}),e.DNE(39,z1,2,2,"mat-option",25),e.k0s()(),e.DNE(40,Q1,6,4,"mat-form-field",26)(41,Z1,6,4,"mat-form-field",26),e.k0s(),e.DNE(42,K1,4,2,"div",27),e.k0s()(),e.j41(43,"div",28)(44,"button",29),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(45,"Clear"),e.k0s(),e.j41(46,"button",30),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onBumpFee())}),e.EFF(47),e.k0s()()()()()()}if(2&o){const l=e.sdS(32);e.R7$(12),e.SpI(" ",a.txid?"Bump fee for transaction ID: "+a.txid:"Bump fee: "," "),e.R7$(),e.Y8G("matTooltip",e.mNQ("Link to "+a.selNode.settings.blockExplorerUrl))("icon",a.faUpRightFromSquare),e.R7$(3),e.Y8G("icon",a.faInfoCircle),e.R7$(5),e.SpI("- High: ",a.recommendedFee.fastestFee||"Unknown"),e.R7$(2),e.SpI("- Medium: ",a.recommendedFee.halfHourFee||"Unknown"),e.R7$(2),e.SpI("- Low: ",a.recommendedFee.hourFee||"Unknown"),e.R7$(),e.Y8G("ngIf",a.flgShowDustWarning),e.R7$(5),e.Y8G("step",1)("min",0),e.R50("ngModel",a.outputIndex),e.R7$(2),e.Y8G("ngIf",null==l.errors?null:l.errors.required),e.R7$(),e.Y8G("ngIf",null==l.errors?null:l.errors.OutputIndexError),e.R7$(4),e.R50("value",a.selTransType),e.R7$(),e.Y8G("ngForOf",a.transTypes),e.R7$(),e.Y8G("ngIf","1"===a.selTransType),e.R7$(),e.Y8G("ngIf","2"===a.selTransType),e.R7$(),e.Y8G("ngIf",""!==a.bumpFeeError),e.R7$(5),e.JRh(""!==a.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[y.Sq,y.bT,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.VZ,g.vS,g.cV,ee.aY,$.$z,B.m2,B.MM,Z.fg,R.rl,R.nJ,R.TL,b.DJ,b.sA,b.UI,O.VO,ae.wT,fe.oV,pe.N,ye.V,y.QX],encapsulation:2}))}return t(),s})();const ze=t=>({"error-border bordered-box":t,"bordered-box":!0}),ec=()=>["no_pending_open"],tc=()=>["no_pending_force_closing"],nc=()=>["no_pending_closing"],ic=()=>["no_pending_wait_closing"],Ce=t=>({width:t}),mt=t=>({"display-none":t}),ac=t=>({"py-0":!0,"display-none":t});function sc(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function oc(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function lc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function rc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_alias)}}function cc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function pc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_node_pub)}}function mc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function uc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.channel_point)}}function hc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function dc(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.channel.initiator,"initiator_"))}}function _c(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function fc(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,n.channel.commitment_type,"commitment_type","_"))}}function gc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Confirmation Height"),e.k0s())}function Cc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.confirmation_height))}}function yc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function bc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.commit_fee))}}function Fc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Commit Weight"),e.k0s())}function xc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.commit_weight))}}function vc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Fee/KW"),e.k0s())}function Tc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.fee_per_kw))}}function kc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Sc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.capacity))}}function Rc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function Ec(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.local_balance))}}function Ic(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function wc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.remote_balance))}}function Lc(t,s){1&t&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function jc(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"div",48)(2,"mat-select",50),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",51),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onOpenClick(o))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",51),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onBumpFee(o))}),e.EFF(7,"Bump Fee"),e.k0s()()()()}}function Gc(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Dc(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Nc(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Pc(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,Gc,2,0,"p",53)(2,Dc,2,0,"p",53)(3,Nc,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!n.pendingOpenChannels||!(null!=n.pendingOpenChannels&&n.pendingOpenChannels.data)||(null==n.pendingOpenChannels||null==n.pendingOpenChannels.data?null:n.pendingOpenChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!n.pendingOpenChannels||!(null!=n.pendingOpenChannels&&n.pendingOpenChannels.data)||(null==n.pendingOpenChannels||null==n.pendingOpenChannels.data?null:n.pendingOpenChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!n.pendingOpenChannels||!(null!=n.pendingOpenChannels&&n.pendingOpenChannels.data)||(null==n.pendingOpenChannels||null==n.pendingOpenChannels.data?null:n.pendingOpenChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Bc(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,mt,n.pendingOpenChannels&&(null==n.pendingOpenChannels?null:n.pendingOpenChannels.data)&&(null==n.pendingOpenChannels||null==n.pendingOpenChannels.data?null:n.pendingOpenChannels.data.length)>0))}}function Ac(t,s){1&t&&e.nrm(0,"tr",55)}function $c(t,s){1&t&&e.nrm(0,"tr",56)}function Mc(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function Oc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Vc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.closing_txid)}}function Yc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function Uc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_alias)}}function Xc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Hc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_node_pub)}}function qc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function zc(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.channel_point)}}function Jc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function Qc(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.channel.initiator,"initiator_"))}}function Wc(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function Zc(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,n.channel.commitment_type,"commitment_type","_"))}}function Kc(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function ep(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.limbo_balance))}}function tp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Maturity Height"),e.k0s())}function np(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.maturity_height))}}function ip(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Blocks till Maturity"),e.k0s())}function ap(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.blocks_til_maturity))}}function sp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Recovered Balance (Sats)"),e.k0s())}function op(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.recovered_balance))}}function lp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function rp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.capacity))}}function cp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function pp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.local_balance))}}function mp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function up(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.remote_balance))}}function hp(t,s){1&t&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function dp(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"button",57),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onForceClosingClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function _p(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function fp(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function gp(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Cp(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,_p,2,0,"p",53)(2,fp,2,0,"p",53)(3,gp,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!n.pendingForceClosingChannels||!(null!=n.pendingForceClosingChannels&&n.pendingForceClosingChannels.data)||(null==n.pendingForceClosingChannels||null==n.pendingForceClosingChannels.data?null:n.pendingForceClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!n.pendingForceClosingChannels||!(null!=n.pendingForceClosingChannels&&n.pendingForceClosingChannels.data)||(null==n.pendingForceClosingChannels||null==n.pendingForceClosingChannels.data?null:n.pendingForceClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!n.pendingForceClosingChannels||!(null!=n.pendingForceClosingChannels&&n.pendingForceClosingChannels.data)||(null==n.pendingForceClosingChannels||null==n.pendingForceClosingChannels.data?null:n.pendingForceClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function yp(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,mt,n.pendingForceClosingChannels&&(null==n.pendingForceClosingChannels?null:n.pendingForceClosingChannels.data)&&(null==n.pendingForceClosingChannels||null==n.pendingForceClosingChannels.data?null:n.pendingForceClosingChannels.data.length)>0))}}function bp(t,s){1&t&&e.nrm(0,"tr",55)}function Fp(t,s){1&t&&e.nrm(0,"tr",56)}function xp(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function vp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Tp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.closing_txid)}}function kp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function Sp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_alias)}}function Rp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Ep(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_node_pub)}}function Ip(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function wp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.channel_point)}}function Lp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function jp(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.channel.initiator,"initiator_"))}}function Gp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function Dp(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,n.channel.commitment_type,"commitment_type","_"))}}function Np(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Pp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.capacity))}}function Bp(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function Ap(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.local_balance))}}function $p(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function Mp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.remote_balance))}}function Op(t,s){1&t&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function Vp(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"button",58),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onClosingClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function Yp(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Up(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Xp(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Hp(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,Yp,2,0,"p",53)(2,Up,2,0,"p",53)(3,Xp,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!n.pendingClosingChannels||!(null!=n.pendingClosingChannels&&n.pendingClosingChannels.data)||(null==n.pendingClosingChannels||null==n.pendingClosingChannels.data?null:n.pendingClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!n.pendingClosingChannels||!(null!=n.pendingClosingChannels&&n.pendingClosingChannels.data)||(null==n.pendingClosingChannels||null==n.pendingClosingChannels.data?null:n.pendingClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!n.pendingClosingChannels||!(null!=n.pendingClosingChannels&&n.pendingClosingChannels.data)||(null==n.pendingClosingChannels||null==n.pendingClosingChannels.data?null:n.pendingClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function qp(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,mt,n.pendingClosingChannels&&(null==n.pendingClosingChannels?null:n.pendingClosingChannels.data)&&(null==n.pendingClosingChannels||null==n.pendingClosingChannels.data?null:n.pendingClosingChannels.data.length)>0))}}function zp(t,s){1&t&&e.nrm(0,"tr",55)}function Jp(t,s){1&t&&e.nrm(0,"tr",56)}function Qp(t,s){1&t&&e.nrm(0,"mat-progress-bar",40)}function Wp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Zp(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.closing_txid)}}function Kp(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function em(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_alias)}}function tm(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function nm(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.remote_node_pub)}}function im(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function am(t,s){if(1&t&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(n.channel.channel_point)}}function sm(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function om(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.channel.initiator,"initiator_"))}}function lm(t,s){1&t&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function rm(t,s){if(1&t&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,n.channel.commitment_type,"commitment_type","_"))}}function cm(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function pm(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.limbo_balance))}}function mm(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function um(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.capacity))}}function hm(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function dm(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.local_balance))}}function _m(t,s){1&t&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function fm(t,s){if(1&t&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.channel.remote_balance))}}function gm(t,s){1&t&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function Cm(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"button",59),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onWaitClosingClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function ym(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function bm(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Fm(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function xm(t,s){if(1&t&&(e.j41(0,"td",52),e.DNE(1,ym,2,0,"p",53)(2,bm,2,0,"p",53)(3,Fm,2,1,"p",53),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!n.pendingWaitClosingChannels||!(null!=n.pendingWaitClosingChannels&&n.pendingWaitClosingChannels.data)||(null==n.pendingWaitClosingChannels||null==n.pendingWaitClosingChannels.data?null:n.pendingWaitClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!n.pendingWaitClosingChannels||!(null!=n.pendingWaitClosingChannels&&n.pendingWaitClosingChannels.data)||(null==n.pendingWaitClosingChannels||null==n.pendingWaitClosingChannels.data?null:n.pendingWaitClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!n.pendingWaitClosingChannels||!(null!=n.pendingWaitClosingChannels&&n.pendingWaitClosingChannels.data)||(null==n.pendingWaitClosingChannels||null==n.pendingWaitClosingChannels.data?null:n.pendingWaitClosingChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function vm(t,s){if(1&t&&e.nrm(0,"tr",54),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,ac,n.pendingWaitClosingChannels&&(null==n.pendingWaitClosingChannels?null:n.pendingWaitClosingChannels.data)&&(null==n.pendingWaitClosingChannels||null==n.pendingWaitClosingChannels.data?null:n.pendingWaitClosingChannels.data.length)>0))}}function Tm(t,s){1&t&&e.nrm(0,"tr",55)}function km(t,s){1&t&&e.nrm(0,"tr",56)}let Sm=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.store=o,this.commonService=a,this.PAGE_ID="peers_channels",this.openTableSetting={tableId:"pending_open",recordsPerPage:p.md,sortBy:"capacity",sortOrder:p.oi.DESCENDING},this.forceClosingTableSetting={tableId:"pending_force_closing",recordsPerPage:p.md,sortBy:"limbo_balance",sortOrder:p.oi.DESCENDING},this.closingTableSetting={tableId:"pending_closing",recordsPerPage:p.md,sortBy:"capacity",sortOrder:p.oi.DESCENDING},this.waitingCloseTableSetting={tableId:"pending_waiting_close",recordsPerPage:p.md,sortBy:"limbo_balance",sortOrder:p.oi.DESCENDING},this.information={},this.pendingChannels={},this.displayedOpenColumns=[],this.pendingOpenChannelsLength=0,this.pendingOpenChannels=new _.I6([]),this.displayedForceClosingColumns=[],this.pendingForceClosingChannelsLength=0,this.pendingForceClosingChannels=new _.I6([]),this.displayedClosingColumns=[],this.pendingClosingChannelsLength=0,this.pendingClosingChannels=new _.I6([]),this.displayedWaitClosingColumns=[],this.pendingWaitClosingChannelsLength=0,this.pendingWaitClosingChannels=new _.I6([]),this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.openTableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.openTableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.openTableSetting.tableId),this.displayedOpenColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.openTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.openTableSetting.columnSelection)),this.displayedOpenColumns.push("actions"),this.logger.info(this.displayedOpenColumns),this.forceClosingTableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.forceClosingTableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.forceClosingTableSetting.tableId),this.displayedForceClosingColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.forceClosingTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.forceClosingTableSetting.columnSelection)),this.displayedForceClosingColumns.push("actions"),this.logger.info(this.displayedForceClosingColumns),this.closingTableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.closingTableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.closingTableSetting.tableId),this.displayedClosingColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.closingTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.closingTableSetting.columnSelection)),this.displayedClosingColumns.push("actions"),this.logger.info(this.displayedClosingColumns),this.waitingCloseTableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.waitingCloseTableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.waitingCloseTableSetting.tableId),this.displayedWaitClosingColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.waitingCloseTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.waitingCloseTableSetting.columnSelection)),this.displayedWaitClosingColumns.push("actions"),this.logger.info(this.displayedWaitClosingColumns)}),this.store.select(E.Uv).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=i.pendingChannels,this.pendingChannels.pending_open_channels&&this.pendingChannels.pending_open_channels.length&&this.pendingChannels.pending_open_channels.length>0&&this.loadOpenChannelsTable(this.pendingChannels.pending_open_channels),this.pendingChannels.pending_force_closing_channels&&this.pendingChannels.pending_force_closing_channels.length&&this.pendingChannels.pending_force_closing_channels.length>0&&this.loadForceClosingChannelsTable(this.pendingChannels.pending_force_closing_channels),this.pendingChannels.pending_closing_channels&&this.pendingChannels.pending_closing_channels.length&&this.pendingChannels.pending_closing_channels.length>0&&this.loadClosingChannelsTable(this.pendingChannels.pending_closing_channels),this.pendingChannels.waiting_close_channels&&this.pendingChannels.waiting_close_channels.length&&this.pendingChannels.waiting_close_channels.length>0&&this.loadWaitClosingChannelsTable(this.pendingChannels.waiting_close_channels),this.logger.info(i)})}ngAfterViewInit(){this.pendingChannels.pending_open_channels&&this.pendingChannels.pending_open_channels.length&&this.pendingChannels.pending_open_channels.length>0&&this.loadOpenChannelsTable(this.pendingChannels.pending_open_channels),this.pendingChannels.pending_force_closing_channels&&this.pendingChannels.pending_force_closing_channels.length&&this.pendingChannels.pending_force_closing_channels.length>0&&this.loadForceClosingChannelsTable(this.pendingChannels.pending_force_closing_channels),this.pendingChannels.pending_closing_channels&&this.pendingChannels.pending_closing_channels.length&&this.pendingChannels.pending_closing_channels.length>0&&this.loadClosingChannelsTable(this.pendingChannels.pending_closing_channels),this.pendingChannels.waiting_close_channels&&this.pendingChannels.waiting_close_channels.length&&this.pendingChannels.waiting_close_channels.length>0&&this.loadWaitClosingChannelsTable(this.pendingChannels.waiting_close_channels)}onOpenClick(i){const o=JSON.parse(JSON.stringify(i,["commit_weight","confirmation_height","fee_per_kw","commit_fee"],2)),a=JSON.parse(JSON.stringify(i.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),l={};Object.assign(l,o,a),this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Opening Channel Information",message:[[{key:"channel_point",value:l.channel_point,title:"Channel Point",width:100,type:p.UN.STRING,explorerLink:"tx"}],[{key:"remote_node_pub",value:l.remote_node_pub,title:"Peer Node Pubkey",width:100,type:p.UN.STRING}],[{key:"remote_alias",value:l.remote_alias,title:"Peer Alias",width:100,type:p.UN.STRING}],[{key:"capacity",value:l.capacity,title:"Capacity",width:25,type:p.UN.NUMBER},{key:"confirmation_height",value:l.confirmation_height,title:"Confirmation Height",width:25,type:p.UN.NUMBER},{key:"local_balance",value:l.local_balance,title:"Local Balance",width:25,type:p.UN.NUMBER},{key:"remote_balance",value:l.remote_balance,title:"Remote Balance",width:25,type:p.UN.NUMBER}],[{key:"fee_per_kw",value:l.fee_per_kw,title:"Fee/KW",width:25,type:p.UN.NUMBER},{key:"commit_weight",value:l.commit_weight,title:"Commit Weight",width:25,type:p.UN.NUMBER},{key:"commit_fee",value:l.commit_fee,title:"Commit Fee",width:50,type:p.UN.NUMBER}]]}}}))}onBumpFee(i){this.store.dispatch((0,Y.xO)({payload:{data:{pendingChannel:i,component:wt}}}))}onForceClosingClick(i){const o=JSON.parse(JSON.stringify(i,["closing_txid","limbo_balance","maturity_height","blocks_til_maturity","recovered_balance"],2)),a=JSON.parse(JSON.stringify(i.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),l={};Object.assign(l,o,a),this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Force Closing Channel Information",message:[[{key:"closing_txid",value:l.closing_txid,title:"Closing Transaction ID",width:100,type:p.UN.STRING}],[{key:"channel_point",value:l.channel_point,title:"Channel Point",width:100,type:p.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:l.remote_alias,title:"Peer Alias",width:25,type:p.UN.STRING},{key:"remote_node_pub",value:l.remote_node_pub,title:"Peer Node Pubkey",width:75,type:p.UN.STRING}],[{key:"capacity",value:l.capacity,title:"Capacity",width:25,type:p.UN.NUMBER},{key:"limbo_balance",value:l.limbo_balance,title:"Limbo Balance",width:25,type:p.UN.NUMBER},{key:"local_balance",value:l.local_balance,title:"Local Balance",width:25,type:p.UN.NUMBER},{key:"remote_balance",value:l.remote_balance,title:"Remote Balance",width:25,type:p.UN.NUMBER}],[{key:"maturity_height",value:l.maturity_height,title:"Maturity Height",width:25,type:p.UN.NUMBER},{key:"blocks_til_maturity",value:l.blocks_til_maturity,title:"Blocks Till Maturity",width:25,type:p.UN.NUMBER},{key:"recovered_balance",value:l.recovered_balance,title:"Recovered Balance",width:50,type:p.UN.NUMBER}]]}}}))}onClosingClick(i){const o=JSON.parse(JSON.stringify(i,["closing_txid"],2)),a=JSON.parse(JSON.stringify(i.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),l={};Object.assign(l,o,a),this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Closing Channel Information",message:[[{key:"closing_txid",value:l.closing_txid,title:"Closing Transaction ID",width:50,type:p.UN.STRING}],[{key:"channel_point",value:l.channel_point,title:"Channel Point",width:100,type:p.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:l.remote_alias,title:"Peer Alias",width:25,type:p.UN.STRING},{key:"remote_node_pub",value:l.remote_node_pub,title:"Peer Node Pubkey",width:75,type:p.UN.STRING}],[{key:"capacity",value:l.capacity,title:"Capacity",width:25,type:p.UN.NUMBER},{key:"local_balance",value:l.local_balance,title:"Local Balance",width:25,type:p.UN.NUMBER},{key:"remote_balance",value:l.remote_balance,title:"Remote Balance",width:50,type:p.UN.NUMBER}]]}}}))}onWaitClosingClick(i){const o=JSON.parse(JSON.stringify(i,["limbo_balance"],2)),a=JSON.parse(JSON.stringify(i.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),l=JSON.parse(JSON.stringify(i.commitments,["local_txid"],2)),h={};Object.assign(h,o,a,l),this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Wait Closing Channel Information",message:[[{key:"local_txid",value:h.local_txid,title:"Transaction ID",width:100,type:p.UN.STRING}],[{key:"channel_point",value:h.channel_point,title:"Channel Point",width:100,type:p.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:h.remote_alias,title:"Peer Alias",width:25,type:p.UN.STRING},{key:"remote_node_pub",value:h.remote_node_pub,title:"Peer Node Pubkey",width:75,type:p.UN.STRING}],[{key:"capacity",value:h.capacity,title:"Capacity",width:25,type:p.UN.NUMBER},{key:"limbo_balance",value:h.limbo_balance,title:"Limbo Balance",width:25,type:p.UN.NUMBER},{key:"local_balance",value:h.local_balance,title:"Local Balance",width:25,type:p.UN.NUMBER},{key:"remote_balance",value:h.remote_balance,title:"Remote Balance",width:25,type:p.UN.NUMBER}]]}}}))}loadOpenChannelsTable(i){this.pendingOpenChannelsLength=i.length?i.length:0,this.pendingOpenChannels=new _.I6([...i]),this.pendingOpenChannels.sort=this.sort,this.pendingOpenChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.logger.info(this.pendingOpenChannels)}loadForceClosingChannelsTable(i){this.pendingForceClosingChannelsLength=i.length?i.length:0,this.pendingForceClosingChannels=new _.I6([...i]),this.pendingForceClosingChannels.sort=this.sort,this.pendingForceClosingChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.logger.info(this.pendingForceClosingChannels)}loadClosingChannelsTable(i){this.pendingClosingChannelsLength=i.length?i.length:0,this.pendingClosingChannels=new _.I6([...i]),this.pendingClosingChannels.sort=this.sort,this.pendingClosingChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.logger.info(this.pendingClosingChannels)}loadWaitClosingChannelsTable(i){this.pendingWaitClosingChannelsLength=i.length?i.length:0,this.pendingWaitClosingChannels=new _.I6([...i]),this.pendingWaitClosingChannels.sort=this.sort,this.pendingWaitClosingChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.logger.info(this.pendingWaitClosingChannels)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-pending-table"]],viewQuery:function(o,a){if(1&o&&e.GBs(A.B4,5),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Channels")}])],decls:202,vars:52,consts:[["table",""],["fxLayout","column",1,"mb-2"],[1,"page-title"],["displayMode","flat",1,"mt-1"],["mode","indeterminate",4,"ngIf"],["fxLayout","column",1,"flat-expansion-panel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","remote_alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_node_pub"],["matColumnDef","channel_point"],["matColumnDef","initiator"],["matColumnDef","commitment_type"],["matColumnDef","confirmation_height"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","capacity"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_pending_open"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","","fxLayoutAlign","start center",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","closing_txid"],["matColumnDef","limbo_balance"],["matColumnDef","maturity_height"],["matColumnDef","blocks_til_maturity"],["matColumnDef","recovered_balance"],["matColumnDef","no_pending_force_closing"],["matColumnDef","no_pending_closing"],["matColumnDef","no_pending_wait_closing"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","","fxLayoutAlign","start center",3,"ngClass"],["mat-header-row",""],["mat-row",""],["mat-stroked-button","","color","primary","type","button","tabindex","2",1,"table-actions-button",3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","3",1,"table-actions-button",3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",1)(1,"span",2),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.j41(4,"mat-accordion",3),e.DNE(5,sc,1,0,"mat-progress-bar",4),e.j41(6,"mat-expansion-panel",5)(7,"mat-expansion-panel-header")(8,"mat-panel-title"),e.EFF(9),e.k0s()(),e.j41(10,"div",6),e.DNE(11,oc,1,0,"mat-progress-bar",4),e.j41(12,"table",7,0),e.qex(14,8),e.DNE(15,lc,2,0,"th",9)(16,rc,4,4,"td",10),e.bVm(),e.qex(17,11),e.DNE(18,cc,2,0,"th",9)(19,pc,4,4,"td",10),e.bVm(),e.qex(20,12),e.DNE(21,mc,2,0,"th",9)(22,uc,4,4,"td",10),e.bVm(),e.qex(23,13),e.DNE(24,hc,2,0,"th",9)(25,dc,3,4,"td",10),e.bVm(),e.qex(26,14),e.DNE(27,_c,2,0,"th",9)(28,fc,3,5,"td",10),e.bVm(),e.qex(29,15),e.DNE(30,gc,2,0,"th",16)(31,Cc,4,3,"td",10),e.bVm(),e.qex(32,17),e.DNE(33,yc,2,0,"th",16)(34,bc,4,3,"td",10),e.bVm(),e.qex(35,18),e.DNE(36,Fc,2,0,"th",16)(37,xc,4,3,"td",10),e.bVm(),e.qex(38,19),e.DNE(39,vc,2,0,"th",16)(40,Tc,4,3,"td",10),e.bVm(),e.qex(41,20),e.DNE(42,kc,2,0,"th",16)(43,Sc,4,3,"td",10),e.bVm(),e.qex(44,21),e.DNE(45,Rc,2,0,"th",16)(46,Ec,4,3,"td",10),e.bVm(),e.qex(47,22),e.DNE(48,Ic,2,0,"th",16)(49,wc,4,3,"td",10),e.bVm(),e.qex(50,23),e.DNE(51,Lc,3,0,"th",24)(52,jc,8,0,"td",25),e.bVm(),e.qex(53,26),e.DNE(54,Pc,4,3,"td",27),e.bVm(),e.DNE(55,Bc,1,3,"tr",28)(56,Ac,1,0,"tr",29)(57,$c,1,0,"tr",30),e.k0s()()(),e.DNE(58,Mc,1,0,"mat-progress-bar",4),e.j41(59,"mat-expansion-panel",5)(60,"mat-expansion-panel-header")(61,"mat-panel-title"),e.EFF(62),e.k0s()(),e.j41(63,"div",6)(64,"table",31,0),e.qex(66,32),e.DNE(67,Oc,2,0,"th",9)(68,Vc,4,4,"td",10),e.bVm(),e.qex(69,8),e.DNE(70,Yc,2,0,"th",9)(71,Uc,4,4,"td",10),e.bVm(),e.qex(72,11),e.DNE(73,Xc,2,0,"th",9)(74,Hc,4,4,"td",10),e.bVm(),e.qex(75,12),e.DNE(76,qc,2,0,"th",9)(77,zc,4,4,"td",10),e.bVm(),e.qex(78,13),e.DNE(79,Jc,2,0,"th",9)(80,Qc,3,4,"td",10),e.bVm(),e.qex(81,14),e.DNE(82,Wc,2,0,"th",9)(83,Zc,3,5,"td",10),e.bVm(),e.qex(84,33),e.DNE(85,Kc,2,0,"th",16)(86,ep,4,3,"td",10),e.bVm(),e.qex(87,34),e.DNE(88,tp,2,0,"th",16)(89,np,4,3,"td",10),e.bVm(),e.qex(90,35),e.DNE(91,ip,2,0,"th",16)(92,ap,4,3,"td",10),e.bVm(),e.qex(93,36),e.DNE(94,sp,2,0,"th",16)(95,op,4,3,"td",10),e.bVm(),e.qex(96,20),e.DNE(97,lp,2,0,"th",16)(98,rp,4,3,"td",10),e.bVm(),e.qex(99,21),e.DNE(100,cp,2,0,"th",16)(101,pp,4,3,"td",10),e.bVm(),e.qex(102,22),e.DNE(103,mp,2,0,"th",16)(104,up,4,3,"td",10),e.bVm(),e.qex(105,23),e.DNE(106,hp,3,0,"th",24)(107,dp,3,0,"td",25),e.bVm(),e.qex(108,37),e.DNE(109,Cp,4,3,"td",27),e.bVm(),e.DNE(110,yp,1,3,"tr",28)(111,bp,1,0,"tr",29)(112,Fp,1,0,"tr",30),e.k0s()()(),e.DNE(113,xp,1,0,"mat-progress-bar",4),e.j41(114,"mat-expansion-panel",5)(115,"mat-expansion-panel-header")(116,"mat-panel-title"),e.EFF(117),e.k0s()(),e.j41(118,"div",6)(119,"table",31,0),e.qex(121,32),e.DNE(122,vp,2,0,"th",9)(123,Tp,4,4,"td",10),e.bVm(),e.qex(124,8),e.DNE(125,kp,2,0,"th",9)(126,Sp,4,4,"td",10),e.bVm(),e.qex(127,11),e.DNE(128,Rp,2,0,"th",9)(129,Ep,4,4,"td",10),e.bVm(),e.qex(130,12),e.DNE(131,Ip,2,0,"th",9)(132,wp,4,4,"td",10),e.bVm(),e.qex(133,13),e.DNE(134,Lp,2,0,"th",9)(135,jp,3,4,"td",10),e.bVm(),e.qex(136,14),e.DNE(137,Gp,2,0,"th",9)(138,Dp,3,5,"td",10),e.bVm(),e.qex(139,20),e.DNE(140,Np,2,0,"th",16)(141,Pp,4,3,"td",10),e.bVm(),e.qex(142,21),e.DNE(143,Bp,2,0,"th",16)(144,Ap,4,3,"td",10),e.bVm(),e.qex(145,22),e.DNE(146,$p,2,0,"th",16)(147,Mp,4,3,"td",10),e.bVm(),e.qex(148,23),e.DNE(149,Op,3,0,"th",24)(150,Vp,3,0,"td",25),e.bVm(),e.qex(151,38),e.DNE(152,Hp,4,3,"td",27),e.bVm(),e.DNE(153,qp,1,3,"tr",28)(154,zp,1,0,"tr",29)(155,Jp,1,0,"tr",30),e.k0s()()(),e.DNE(156,Qp,1,0,"mat-progress-bar",4),e.j41(157,"mat-expansion-panel",5)(158,"mat-expansion-panel-header")(159,"mat-panel-title"),e.EFF(160),e.k0s()(),e.j41(161,"div",6)(162,"table",31,0),e.qex(164,32),e.DNE(165,Wp,2,0,"th",9)(166,Zp,4,4,"td",10),e.bVm(),e.qex(167,8),e.DNE(168,Kp,2,0,"th",9)(169,em,4,4,"td",10),e.bVm(),e.qex(170,11),e.DNE(171,tm,2,0,"th",9)(172,nm,4,4,"td",10),e.bVm(),e.qex(173,12),e.DNE(174,im,2,0,"th",9)(175,am,4,4,"td",10),e.bVm(),e.qex(176,13),e.DNE(177,sm,2,0,"th",9)(178,om,3,4,"td",10),e.bVm(),e.qex(179,14),e.DNE(180,lm,2,0,"th",9)(181,rm,3,5,"td",10),e.bVm(),e.qex(182,33),e.DNE(183,cm,2,0,"th",16)(184,pm,4,3,"td",10),e.bVm(),e.qex(185,20),e.DNE(186,mm,2,0,"th",16)(187,um,4,3,"td",10),e.bVm(),e.qex(188,21),e.DNE(189,hm,2,0,"th",16)(190,dm,4,3,"td",10),e.bVm(),e.qex(191,22),e.DNE(192,_m,2,0,"th",16)(193,fm,4,3,"td",10),e.bVm(),e.qex(194,23),e.DNE(195,gm,3,0,"th",24)(196,Cm,3,0,"td",25),e.bVm(),e.qex(197,39),e.DNE(198,xm,4,3,"td",27),e.bVm(),e.DNE(199,vm,1,3,"tr",28)(200,Tm,1,0,"tr",29)(201,km,1,0,"tr",30),e.k0s()()()()()),2&o&&(e.R7$(2),e.SpI("Total Limbo Balance: ",e.bMT(3,38,a.pendingChannels.total_limbo_balance)," Sats"),e.R7$(3),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Open (",a.pendingOpenChannelsLength,")"),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.openTableSetting.sortBy)("matSortDirection",a.openTableSetting.sortOrder)("dataSource",a.pendingOpenChannels)("ngClass",e.eq3(40,ze,""!==a.errorMessage)),e.R7$(43),e.Y8G("matFooterRowDef",e.lJ4(42,ec)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedOpenColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedOpenColumns),e.R7$(),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Force Closing (",a.pendingForceClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",a.forceClosingTableSetting.sortBy)("matSortDirection",a.forceClosingTableSetting.sortOrder)("dataSource",a.pendingForceClosingChannels)("ngClass",e.eq3(43,ze,""!==a.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(45,tc)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedForceClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedForceClosingColumns),e.R7$(),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Closing (",a.pendingClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",a.closingTableSetting.sortBy)("matSortDirection",a.closingTableSetting.sortOrder)("dataSource",a.pendingClosingChannels)("ngClass",e.eq3(46,ze,""!==a.errorMessage)),e.R7$(34),e.Y8G("matFooterRowDef",e.lJ4(48,nc)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedClosingColumns),e.R7$(),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Waiting Close (",a.pendingWaitClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",a.waitingCloseTableSetting.sortBy)("matSortDirection",a.waitingCloseTableSetting.sortOrder)("dataSource",a.pendingWaitClosingChannels)("ngClass",e.eq3(49,ze,""!==a.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(51,ic)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedWaitClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedWaitClosingColumns))},dependencies:[y.YU,y.bT,y.B3,$.$z,he.BS,he.GK,he.Z2,he.WN,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,K.Ld,y.QX,ue.VD],styles:["tr.mat-footer-row[_ngcontent-%COMP%] td.mat-footer-cell[_ngcontent-%COMP%]{border-bottom:none}"]}))}return t(),s})();const Rm=()=>["all"],Em=t=>({"error-border":t,"overflow-auto":!0}),Im=()=>["no_closed_channel"],Be=t=>({width:t}),wm=t=>({"display-none":t});function Lm(t,s){if(1&t&&(e.j41(0,"mat-option",36),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function jm(t,s){1&t&&e.nrm(0,"mat-progress-bar",37)}function Gm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Close Type"),e.k0s())}function Dm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"mat-icon",41),e.EFF(3,"info_outline"),e.k0s(),e.EFF(4),e.k0s()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(2),e.Y8G("matTooltip",i.channelClosureType[n.close_type].tooltip),e.R7$(2),e.SpI(" ",i.channelClosureType[n.close_type].name," ")}}function Nm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Peer"),e.k0s())}function Pm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Be,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.remote_alias)}}function Bm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Pubkey"),e.k0s())}function Am(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Be,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.remote_pubkey)}}function $m(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Channel Point"),e.k0s())}function Mm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Be,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.channel_point)}}function Om(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Channel ID"),e.k0s())}function Vm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Be,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function Ym(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Closing Tx Hash"),e.k0s())}function Um(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Be,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.closing_tx_hash)}}function Xm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Chain Hash"),e.k0s())}function Hm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Be,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chain_hash)}}function qm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Open Initiator"),e.k0s())}function zm(t,s){if(1&t&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.open_initiator,"initiator_"))}}function Jm(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Close Initiator"),e.k0s())}function Qm(t,s){if(1&t&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,n.close_initiator,"initiator_"))}}function Wm(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Timelocked Balance (Sats)"),e.k0s())}function Zm(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.time_locked_balance)," ")}}function Km(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function eu(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.capacity)," ")}}function tu(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Close Height"),e.k0s())}function nu(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.close_height)," ")}}function iu(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Settled Balance (Sats)"),e.k0s())}function au(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.settled_balance)," ")}}function su(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",46)(1,"div",47)(2,"mat-select",48),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",49),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function ou(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",39)(1,"span",45)(2,"button",50),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onClosedChannelClick(a,o))}),e.EFF(3,"View Info"),e.k0s()()()}}function lu(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No closed channel available."),e.k0s())}function ru(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting closed channels..."),e.k0s())}function cu(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function pu(t,s){if(1&t&&(e.j41(0,"td",51),e.DNE(1,lu,2,0,"p",52)(2,ru,2,0,"p",52)(3,cu,2,1,"p",52),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.closedChannels&&n.closedChannels.data)||(null==n.closedChannels||null==n.closedChannels.data?null:n.closedChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.closedChannels&&n.closedChannels.data)||(null==n.closedChannels||null==n.closedChannels.data?null:n.closedChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.closedChannels&&n.closedChannels.data)||(null==n.closedChannels||null==n.closedChannels.data?null:n.closedChannels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function mu(t,s){if(1&t&&e.nrm(0,"tr",53),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,wm,(null==n.closedChannels?null:n.closedChannels.data)&&(null==n.closedChannels||null==n.closedChannels.data?null:n.closedChannels.data.length)>0))}}function uu(t,s){1&t&&e.nrm(0,"tr",54)}function hu(t,s){1&t&&e.nrm(0,"tr",55)}let du=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.store=o,this.commonService=a,this.camelCaseWithReplace=l,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"closed",recordsPerPage:p.md,sortBy:"close_type",sortOrder:p.oi.DESCENDING},this.channelClosureType=p.tj,this.faHistory=I.Int,this.displayedColumns=[],this.closedChannelsData=[],this.closedChannels=new _.I6([]),this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Bw).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.closedChannelsData=i.closedChannels,this.closedChannelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadClosedChannelsTable(this.closedChannelsData),this.logger.info(i)})}ngAfterViewInit(){this.closedChannelsData.length>0&&this.loadClosedChannelsTable(this.closedChannelsData)}applyFilter(){this.closedChannels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.closedChannels.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=JSON.stringify(i).toLowerCase();break;case"close_type":a=i.close_type&&this.channelClosureType[i.close_type]&&this.channelClosureType[i.close_type].name?this.channelClosureType[i.close_type].name.toLowerCase():"";break;case"open_initiator":case"close_initiator":a=this.camelCaseWithReplace.transform(i[this.selFilterBy]||"","initiator_").trim().toLowerCase();break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"close_type"===this.selFilterBy||"open_initiator"===this.selFilterBy||"close_initiator"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}onClosedChannelClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Closed Channel Information",message:[[{key:"close_type",value:this.channelClosureType[i.close_type].name,title:"Close Type",width:30,type:p.UN.STRING},{key:"settled_balance",value:i.settled_balance,title:"Settled Balance",width:30,type:p.UN.NUMBER},{key:"time_locked_balance",value:i.time_locked_balance,title:"Time Locked Balance",width:40,type:p.UN.NUMBER}],[{key:"chan_id",value:i.chan_id,title:"Channel ID",width:30},{key:"capacity",value:i.capacity,title:"Capacity",width:30,type:p.UN.NUMBER},{key:"close_height",value:i.close_height,title:"Close Height",width:40,type:p.UN.NUMBER}],[{key:"remote_alias",value:i.remote_alias,title:"Peer Alias",width:30},{key:"remote_pubkey",value:i.remote_pubkey,title:"Peer Public Key",width:70}],[{key:"channel_point",value:i.channel_point,title:"Channel Point",width:100}],[{key:"closing_tx_hash",value:i.closing_tx_hash,title:"Closing Transaction Hash",width:100,type:p.UN.STRING}]]}}}))}loadClosedChannelsTable(i){this.closedChannels=new _.I6([...i]),this.closedChannels.sort=this.sort,this.closedChannels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.closedChannels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.closedChannels)}onDownloadCSV(){this.closedChannels.data&&this.closedChannels.data.length>0&&this.commonService.downloadFile(this.closedChannels.data,"Closed-channels")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(z.h),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-closed-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Channels")}])],decls:66,vars:18,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","close_type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_alias"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","chan_id"],["matColumnDef","closing_tx_hash"],["matColumnDef","chain_hash"],["matColumnDef","open_initiator"],["matColumnDef","close_initiator"],["matColumnDef","time_locked_balance"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","capacity"],["matColumnDef","close_height"],["matColumnDef","settled_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","no_closed_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout","row","fxLayoutAlign","start center"],[1,"info-icon","info-icon-text",3,"matTooltip"],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilterBy,f)||(a.selFilterBy=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,Lm,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,jm,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Gm,2,0,"th",13)(20,Dm,5,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Nm,2,0,"th",13)(23,Pm,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,Bm,2,0,"th",13)(26,Am,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,$m,2,0,"th",13)(29,Mm,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,Om,2,0,"th",13)(32,Vm,4,4,"td",14),e.bVm(),e.qex(33,19),e.DNE(34,Ym,2,0,"th",13)(35,Um,4,4,"td",14),e.bVm(),e.qex(36,20),e.DNE(37,Xm,2,0,"th",13)(38,Hm,4,4,"td",14),e.bVm(),e.qex(39,21),e.DNE(40,qm,2,0,"th",13)(41,zm,3,4,"td",14),e.bVm(),e.qex(42,22),e.DNE(43,Jm,2,0,"th",13)(44,Qm,3,4,"td",14),e.bVm(),e.qex(45,23),e.DNE(46,Wm,2,0,"th",24)(47,Zm,4,3,"td",14),e.bVm(),e.qex(48,25),e.DNE(49,Km,2,0,"th",24)(50,eu,4,3,"td",14),e.bVm(),e.qex(51,26),e.DNE(52,tu,2,0,"th",24)(53,nu,4,3,"td",14),e.bVm(),e.qex(54,27),e.DNE(55,iu,2,0,"th",24)(56,au,4,3,"td",14),e.bVm(),e.qex(57,28),e.DNE(58,su,6,0,"th",29)(59,ou,4,0,"td",14),e.bVm(),e.qex(60,30),e.DNE(61,pu,4,3,"td",31),e.bVm(),e.DNE(62,mu,1,3,"tr",32)(63,uu,1,0,"tr",33)(64,hu,1,0,"tr",34),e.k0s()(),e.nrm(65,"mat-paginator",35),e.k0s()}2&o&&(e.R7$(7),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,Rm).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.closedChannels)("ngClass",e.eq3(15,Em,""!==a.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(17,Im)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,$.$z,ke.An,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,fe.oV,X.iy,K.ZF,K.Ld,y.QX,ue.VD],encapsulation:2}))}return t(),s})();const _u=()=>["all"],fu=t=>({"error-border":t}),gu=()=>["no_channel"],Cu=t=>({"display-none":t});function yu(t,s){if(1&t&&(e.j41(0,"mat-option",33),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function bu(t,s){1&t&&e.nrm(0,"mat-progress-bar",34)}function Fu(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Amount (Sats)"),e.k0s())}function xu(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==n?null:n.amount)," ")}}function vu(t,s){if(1&t&&(e.qex(0),e.DNE(1,xu,3,3,"span",39),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Tu(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,vu,2,1,"ng-container",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.SpI(" Active HTLCs: ",null==n||null==n.pending_htlcs?null:n.pending_htlcs.length," "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function ku(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Alias/Incoming"),e.k0s())}function Su(t,s){if(1&t&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",null!=n&&n.incoming?"Yes":"No"," ")}}function Ru(t,s){if(1&t&&(e.qex(0),e.DNE(1,Su,2,1,"span",41),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Eu(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,Ru,2,1,"ng-container",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(null==n?null:n.remote_alias),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Iu(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Forwarding Channel"),e.k0s())}function wu(t,s){if(1&t&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",null==n?null:n.forwarding_channel," ")}}function Lu(t,s){if(1&t&&(e.qex(0),e.DNE(1,wu,2,1,"span",41),e.bVm()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function ju(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,Lu,2,1,"ng-container",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Gu(t,s){1&t&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"HTLC Index"),e.k0s()())}function Du(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==n?null:n.htlc_index)," ")}}function Nu(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Du,3,3,"span",39),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Pu(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Nu,2,1,"span",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Bu(t,s){1&t&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Forwarding HTLC Index"),e.k0s()())}function Au(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==n?null:n.forwarding_htlc_index)," ")}}function $u(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Au,3,3,"span",39),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Mu(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,$u,2,1,"span",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Ou(t,s){1&t&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Expiration Height"),e.k0s()())}function Vu(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==n?null:n.expiration_height,"1.0-0")," ")}}function Yu(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Vu,3,4,"span",39),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Uu(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Yu,2,1,"span",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Xu(t,s){1&t&&(e.j41(0,"th",43)(1,"span",40),e.EFF(2,"Hash Lock"),e.k0s()())}function Hu(t,s){if(1&t&&(e.j41(0,"span",40),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.SpI(" ",null==n?null:n.hash_lock," ")}}function qu(t,s){if(1&t&&(e.j41(0,"span"),e.DNE(1,Hu,2,1,"span",39),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function zu(t,s){if(1&t&&(e.j41(0,"td",44)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,qu,2,1,"span",38),e.k0s()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Ju(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",48),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Qu(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",53)(1,"button",54),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2).$implicit,l=e.XpG();return r.Njj(l.onHTLCClick(o,a))}),e.EFF(2),e.k0s()()}if(2&t){const n=s.index;e.R7$(2),e.SpI("View ",n+1)}}function Wu(t,s){if(1&t&&(e.j41(0,"div"),e.DNE(1,Qu,3,1,"div",52),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==n?null:n.pending_htlcs)}}function Zu(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",49)(1,"span",50)(2,"button",51),e.bIt("click",function(){const o=r.eBV(n).$implicit;return r.Njj(o.is_expanded=!o.is_expanded)}),e.EFF(3),e.k0s()(),e.DNE(4,Wu,2,1,"div",38),e.k0s()}if(2&t){const n=s.$implicit;e.R7$(3),e.JRh(n.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",n.is_expanded)}}function Ku(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No active htlc available."),e.k0s())}function eh(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting active htlcs..."),e.k0s())}function th(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function nh(t,s){if(1&t&&(e.j41(0,"td",55),e.DNE(1,Ku,2,0,"p",38)(2,eh,2,0,"p",38)(3,th,2,1,"p",38),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function ih(t,s){if(1&t&&e.nrm(0,"tr",56),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,Cu,(null==n.channels?null:n.channels.data)&&(null==n.channels||null==n.channels.data?null:n.channels.data.length)>0))}}function ah(t,s){1&t&&e.nrm(0,"tr",57)}function sh(t,s){1&t&&e.nrm(0,"tr",58)}let oh=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.commonService=o,this.store=a,this.camelCaseWithReplace=l,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:p.md,sortBy:"expiration_height",sortOrder:p.oi.DESCENDING},this.channels=new _.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsJSONArr=i.channels?.filter(o=>o.pending_htlcs&&o.pending_htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"HTLC Information",message:[[{key:"remote_alias",value:o.remote_alias,title:"Alias",width:100,type:p.UN.STRING}],[{key:"amount",value:i.amount,title:"Amount (Sats)",width:50,type:p.UN.NUMBER},{key:"incoming",value:i.incoming?"Yes":"No",title:"Incoming",width:50,type:p.UN.STRING}],[{key:"expiration_height",value:i.expiration_height,title:"Expiration Height",width:50,type:p.UN.NUMBER},{key:"hash_lock",value:i.hash_lock,title:"Hash Lock",width:50,type:p.UN.STRING}]]}}}))}onChannelClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{channel:i,showCopy:!0,component:rt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let a="";return a="all"===this.selFilterBy?(i.remote_alias?i.remote_alias.toLowerCase():"")+i.pending_htlcs?.map(l=>JSON.stringify(l)+(l.incoming?"yes":"no")):typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString(),a.includes(o)}}loadHTLCsTable(i){this.channels=new _.I6(i?[...i]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,a)=>{switch(a){case"amount":return this.commonService.sortByKey(o.pending_htlcs,a,"number",this.sort?.direction),o.pending_htlcs&&o.pending_htlcs.length?o.pending_htlcs.length:null;case"incoming":return this.commonService.sortByKey(o.pending_htlcs,a,"boolean",this.sort?.direction),o.remote_alias?o.remote_alias:o.remote_pubkey?o.remote_pubkey:null;case"expiration_height":case"hash_lock":return this.commonService.sortByKey(o.pending_htlcs,a,"number",this.sort?.direction),o;default:return o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.flattenHTLCs(),"ActiveHTLCs")}flattenHTLCs(){return JSON.parse(JSON.stringify(this.channels.data))?.reduce((a,l)=>a.concat(l.pending_htlcs?l.pending_htlcs:l),[])}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-active-htlcs-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("HTLCs")}])],decls:48,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","incoming"],["matColumnDef","forwarding_channel"],["matColumnDef","htlc_index"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","forwarding_htlc_index"],["matColumnDef","expiration_height"],["matColumnDef","hash_lock"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pl-3 htlc-row-span",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","px-2",4,"matHeaderCellDef"],["mat-cell","","class","px-2","fxLayout","column","fxLayoutAlign","center end",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayoutAlign","start center",1,"htlc-row-span"],[4,"ngIf"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"pl-3","htlc-row-span"],["mat-cell","",1,"pl-3"],["mat-header-cell","",1,"px-2"],["fxLayoutAlign","end center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayout","column","fxLayoutAlign","center end",1,"px-2"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilterBy,f)||(a.selFilterBy=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,yu,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,bu,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Fu,2,0,"th",13)(20,Tu,4,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,ku,2,0,"th",13)(23,Eu,4,2,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,Iu,2,0,"th",13)(26,ju,4,2,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,Gu,3,0,"th",18)(29,Pu,4,2,"td",14),e.bVm(),e.qex(30,19),e.DNE(31,Bu,3,0,"th",18)(32,Mu,4,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Ou,3,0,"th",18)(35,Uu,4,2,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,Xu,3,0,"th",22)(38,zu,4,2,"td",23),e.bVm(),e.qex(39,24),e.DNE(40,Ju,6,0,"th",25)(41,Zu,5,2,"td",26),e.bVm(),e.qex(42,27),e.DNE(43,nh,4,3,"td",28),e.bVm(),e.DNE(44,ih,1,3,"tr",29)(45,ah,1,0,"tr",30)(46,sh,1,0,"tr",31),e.k0s()(),e.nrm(47,"mat-paginator",32),e.k0s()}2&o&&(e.R7$(7),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,_u).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.channels)("ngClass",e.eq3(15,fu,""!==a.errorMessage)),e.R7$(28),e.Y8G("matFooterRowDef",e.lJ4(17,gu)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,g.me,g.BC,g.vS,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.ZF,K.Ld,y.QX],styles:[".mat-column-amount[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem;padding-right:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mat-column-actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_creation_date[_ngcontent-%COMP%]{min-width:7rem}"]}))}return t(),s})();function lh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Wallet password is required."),e.k0s())}let rh=(()=>{var t;class s{constructor(i){this.store=i,this.walletPassword=""}ngOnInit(){this.walletPassword=""}onUnlockWallet(){if(!this.walletPassword)return!0;this.store.dispatch((0,N.WE)({payload:{pwd:window.btoa(this.walletPassword)}}))}resetData(){this.walletPassword=""}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-unlock-wallet"]],standalone:!1,decls:14,vars:2,consts:[["fxLayout","column",1,"padding-gap","mb-2"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start"],["autoFocus","","matInput","","type","password","name","walletPassword","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","3",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"form",1)(2,"mat-form-field",2)(3,"mat-label"),e.EFF(4,"Password"),e.k0s(),e.j41(5,"input",3),e.mxI("ngModelChange",function(h){return e.DH7(a.walletPassword,h)||(a.walletPassword=h),h}),e.k0s(),e.j41(6,"mat-hint"),e.EFF(7,"Enter Wallet Password"),e.k0s(),e.DNE(8,lh,2,0,"mat-error",4),e.k0s(),e.j41(9,"div",5)(10,"button",6),e.bIt("click",function(){return a.resetData()}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",7),e.bIt("click",function(){return a.onUnlockWallet()}),e.EFF(13,"Unlock Wallet"),e.k0s()()()()),2&o&&(e.R7$(5),e.R50("ngModel",a.walletPassword),e.R7$(3),e.Y8G("ngIf",!a.walletPassword))},dependencies:[y.bT,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,$.$z,Z.fg,R.rl,R.nJ,R.MV,R.TL,b.DJ,b.sA,b.UI,pe.N],encapsulation:2}))}return t(),s})();var ch=S(7768);function ph(t,s){if(1&t){const n=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",6),e.EFF(3,"Warning: Your connection is unsecure, it's not safe to generate private keys over this connection.Are you sure you want to proceed?"),e.k0s(),e.j41(4,"div",7)(5,"button",8),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return o.proceed=!1,r.Njj(o.warnRes=!0)}),e.EFF(6,"Do Not Proceed"),e.k0s(),e.j41(7,"button",9),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return o.proceed=!0,r.Njj(o.warnRes=!0)}),e.EFF(8,"Proceed"),e.k0s()()()()}}function mh(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",10)(1,"div",11),e.EFF(2,"Please re-configure & re-start RTL after securing your LND connction. You can close this window now."),e.k0s(),e.j41(3,"div",7)(4,"button",12),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.warnRes=!1)}),e.EFF(5,"Go Back"),e.k0s()()()}}function uh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function hh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Password must be at least 8 characters in length."),e.k0s())}function dh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password is required."),e.k0s())}function _h(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password must be at least 8 characters in length."),e.k0s())}function fh(t,s){1&t&&(e.j41(0,"div",41)(1,"mat-icon",42),e.EFF(2,"cancel"),e.k0s(),e.EFF(3,"Passwords do not match. "),e.k0s())}function gh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Cipher seed is required."),e.k0s())}function Ch(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid Cipher. Enter comma separated 24 words cipher seed."),e.k0s())}function yh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Passphrase is required."),e.k0s())}function bh(t,s){1&t&&(e.j41(0,"mat-icon"),e.EFF(1,"vpn_key"),e.k0s())}function Fh(t,s){1&t&&(e.j41(0,"mat-icon"),e.EFF(1,"swap_calls"),e.k0s())}function xh(t,s){1&t&&(e.j41(0,"mat-icon"),e.EFF(1,"fingerprint"),e.k0s())}function vh(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-vertical-stepper",13,0)(2,"mat-step",14)(3,"form",15)(4,"mat-form-field",16)(5,"mat-label"),e.EFF(6,"Password"),e.k0s(),e.nrm(7,"input",17),e.j41(8,"mat-hint"),e.EFF(9,"Enter Wallet Password"),e.k0s(),e.DNE(10,uh,2,0,"mat-error",2)(11,hh,2,0,"mat-error",2),e.k0s(),e.j41(12,"mat-form-field",16)(13,"mat-label"),e.EFF(14,"Confirm Password"),e.k0s(),e.nrm(15,"input",18),e.j41(16,"mat-hint"),e.EFF(17,"Confirm Wallet Password"),e.k0s(),e.DNE(18,dh,2,0,"mat-error",2)(19,_h,2,0,"mat-error",2),e.k0s(),e.DNE(20,fh,4,0,"div",19),e.j41(21,"div",20)(22,"button",21),e.EFF(23,"Next"),e.k0s()()()(),e.j41(24,"mat-step",22)(25,"form",23)(26,"div",24)(27,"mat-slide-toggle",25),e.EFF(28,"Existing Cipher"),e.k0s(),e.j41(29,"mat-form-field",26)(30,"mat-label"),e.EFF(31,"Comma separated array of 24 words cipher seed"),e.k0s(),e.nrm(32,"input",27),e.j41(33,"mat-hint"),e.EFF(34,"Cipher Seed"),e.k0s(),e.DNE(35,gh,2,0,"mat-error",2)(36,Ch,2,0,"mat-error",2),e.k0s()(),e.j41(37,"div",28)(38,"button",29),e.EFF(39,"Back"),e.k0s(),e.j41(40,"button",30),e.EFF(41,"Next"),e.k0s()()()(),e.j41(42,"mat-step",31)(43,"form",23)(44,"div",24)(45,"mat-slide-toggle",32),e.EFF(46,"Existing Passphrase"),e.k0s(),e.j41(47,"mat-form-field",33)(48,"mat-label"),e.EFF(49,"Passphrase"),e.k0s(),e.nrm(50,"input",34),e.j41(51,"mat-hint"),e.EFF(52,"Enter Passphrase"),e.k0s(),e.DNE(53,yh,2,0,"mat-error",2),e.k0s()(),e.j41(54,"div",28)(55,"button",35),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(56,"Clear"),e.k0s(),e.j41(57,"button",36),e.EFF(58,"Back"),e.k0s(),e.j41(59,"button",37),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onInitWallet())}),e.EFF(60,"Initialize Wallet"),e.k0s()()()(),e.DNE(61,bh,2,0,"ng-template",38)(62,Fh,2,0,"ng-template",39)(63,xh,2,0,"ng-template",40),e.k0s()}if(2&t){const n=e.XpG();e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",n.passwordFormGroup),e.R7$(),e.Y8G("formGroup",n.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==n.passwordFormGroup.controls.initWalletPassword.errors?null:n.passwordFormGroup.controls.initWalletPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==n.passwordFormGroup.controls.initWalletPassword.errors?null:n.passwordFormGroup.controls.initWalletPassword.errors.minlength),e.R7$(7),e.Y8G("ngIf",null==n.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:n.passwordFormGroup.controls.initWalletConfirmPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==n.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:n.passwordFormGroup.controls.initWalletConfirmPassword.errors.minlength),e.R7$(),e.Y8G("ngIf",(null==n.passwordFormGroup.errors?null:n.passwordFormGroup.errors.unmatchedPasswords)&&(n.passwordFormGroup.controls.initWalletPassword.touched||n.passwordFormGroup.controls.initWalletPassword.dirty)&&(n.passwordFormGroup.controls.initWalletConfirmPassword.touched||n.passwordFormGroup.controls.initWalletConfirmPassword.dirty)),e.R7$(4),e.Y8G("stepControl",n.cipherFormGroup),e.R7$(),e.Y8G("formGroup",n.cipherFormGroup),e.R7$(10),e.Y8G("ngIf",null==n.cipherFormGroup.controls.cipherSeed.errors?null:n.cipherFormGroup.controls.cipherSeed.errors.required),e.R7$(),e.Y8G("ngIf",!(null!=n.cipherFormGroup.controls.cipherSeed.errors&&n.cipherFormGroup.controls.cipherSeed.errors.required)&&(null==n.cipherFormGroup.controls.cipherSeed.errors?null:n.cipherFormGroup.controls.cipherSeed.errors.invalidCipher)),e.R7$(6),e.Y8G("stepControl",n.passphraseFormGroup),e.R7$(),e.Y8G("formGroup",n.passphraseFormGroup),e.R7$(10),e.Y8G("ngIf",null==n.passphraseFormGroup.controls.passphrase.errors?null:n.passphraseFormGroup.controls.passphrase.errors.required)}}function Th(t,s){if(1&t&&(e.j41(0,"span",48),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(n)}}function kh(t,s){if(1&t){const n=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",43),e.EFF(3,"YOU MUST WRITE DOWN THIS SEED TO BE ABLE TO RESTORE THE WALLET!"),e.k0s(),e.j41(4,"div",44),e.DNE(5,Th,2,1,"span",45),e.k0s(),e.j41(6,"div",46),e.EFF(7,"Wallet initialization is done."),e.k0s(),e.j41(8,"div",46),e.EFF(9,"The node will be usable only after LND has synced completely with the network."),e.k0s(),e.j41(10,"div",46),e.EFF(11,"Click continue only after writing down the seed."),e.k0s(),e.j41(12,"div",7)(13,"button",47),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onGoToHome())}),e.EFF(14,"Go To Home"),e.k0s()()()()}if(2&t){const n=e.XpG();e.R7$(5),e.Y8G("ngForOf",n.genSeedResponse)}}function Sh(t,s){if(1&t){const n=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",46),e.EFF(3,"Something went wrong! Unable to initialize wallet!"),e.k0s(),e.j41(4,"div",7)(5,"button",49),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.EFF(6,"Restart"),e.k0s()()()()}}function Rh(t,s){if(1&t){const n=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",46),e.EFF(3,"Wallet recovery is done."),e.k0s(),e.j41(4,"div",46),e.EFF(5,"The node will be usable only after LND has synced completely with the network."),e.k0s(),e.j41(6,"div",7)(7,"button",50),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onGoToHome())}),e.EFF(8,"Go To Home"),e.k0s()()()()}}function Eh(t){const s=t.get("initWalletPassword"),n=t.get("initWalletConfirmPassword");return s&&n&&s.value!==n.value?{unmatchedPasswords:!0}:null}function Ih(t){const s=t.value.toString().trim().split(",")||[];return s&&24!==s.length?{invalidCipher:!0}:null}let wh=(()=>{var t;class s{constructor(i,o,a){this.store=i,this.formBuilder=o,this.lndEffects=a,this.insecureLND=!1,this.genSeedResponse=[],this.initWalletResponse="",this.proceed=!0,this.warnRes=!1,this.unsubs=[new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.passwordFormGroup=this.formBuilder.group({initWalletPassword:["",[g.k0.required,g.k0.minLength(8)]],initWalletConfirmPassword:["",[g.k0.required,g.k0.minLength(8)]]},{validators:Eh}),this.cipherFormGroup=this.formBuilder.group({existingCipher:[!1],cipherSeed:[{value:"",disabled:!0},[Ih]]}),this.passphraseFormGroup=this.formBuilder.group({enterPassphrase:[!1],passphrase:[{value:"",disabled:!0}]}),this.cipherFormGroup.controls.existingCipher.valueChanges.pipe((0,x.Q)(this.unsubs[0])).subscribe(i=>{i?(this.cipherFormGroup.controls.cipherSeed.setValue(""),this.cipherFormGroup.controls.cipherSeed.enable()):(this.cipherFormGroup.controls.cipherSeed.setValue(""),this.cipherFormGroup.controls.cipherSeed.disable())}),this.passphraseFormGroup.controls.enterPassphrase.valueChanges.pipe((0,x.Q)(this.unsubs[1])).subscribe(i=>{i?(this.passphraseFormGroup.controls.passphrase.setValue(""),this.passphraseFormGroup.controls.passphrase.enable()):(this.passphraseFormGroup.controls.passphrase.setValue(""),this.passphraseFormGroup.controls.passphrase.disable())}),this.insecureLND=!window.location.protocol.includes("https:"),this.lndEffects.initWalletRes.pipe((0,x.Q)(this.unsubs[2])).subscribe(i=>{this.initWalletResponse=i}),this.lndEffects.genSeedResponse.pipe((0,x.Q)(this.unsubs[3])).subscribe(i=>{this.genSeedResponse=i,this.store.dispatch((0,N.GZ)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:this.genSeedResponse,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:this.genSeedResponse}}))})}onInitWallet(){if(this.passwordFormGroup.invalid||this.cipherFormGroup.invalid||this.passphraseFormGroup.invalid)return!0;if(this.cipherFormGroup.controls.existingCipher.value){const i=this.cipherFormGroup.controls.cipherSeed.value.toString().trim().split(",");this.store.dispatch((0,N.GZ)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:i,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:i}}))}else this.store.dispatch((0,N.oX)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}:{payload:""}))}onGoToHome(){setTimeout(()=>{this.store.dispatch((0,N.X9)()),this.store.dispatch((0,N.Br)({payload:{loadPage:"HOME"}}))},1e3)}resetData(){this.genSeedResponse=[],this.initWalletResponse=""}ngOnDestroy(){this.unsubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il),e.rXU(g.ze),e.rXU(Pe.L))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-initialize-wallet"]],viewQuery:function(o,a){if(1&o&&e.GBs(de.M6,5),2&o){let l;e.mGM(l=e.lsd())&&(a.stepper=l.first)}},standalone:!1,features:[e.Jv_([{provide:ch.x8,useValue:{displayDefaultIndicatorType:!1}}])],decls:7,vars:6,consts:[["stepper",""],["fxLayout","column",1,"padding-gap","mb-4"],[4,"ngIf"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","stretch stretch",4,"ngIf"],[3,"linear",4,"ngIf"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mt-2"],["fxFlex","100","fxLayoutAlign","start"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","1","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","2",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","stretch stretch"],["fxFlex","100",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",3,"click"],[3,"linear"],["label","Wallet Password","state","password",3,"stepControl"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mt-1",3,"formGroup"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start"],["matInput","","type","password","name","initWalletPassword","formControlName","initWalletPassword","tabindex","5","required",""],["matInput","","type","password","name","initWalletConfirmPassword","formControlName","initWalletConfirmPassword","tabindex","6","required",""],["class","validation-error-message",4,"ngIf"],["fxLayout","row",1,"my-2"],["mat-flat-button","","color","primary","tabindex","7","type","submit","matStepperNext",""],["label","Cipher","state","cipher",3,"stepControl"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start",1,"mt-1",3,"formGroup"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch"],["labelPosition","before","fxFlex","20","tabindex","8","color","primary","formControlName","existingCipher","name","existingCipher",1,"chkbox-wallet"],["fxLayout","column","fxFlex","75","fxLayoutAlign","start",1,"my-1"],["autofocus","","matInput","","type","input","name","cipherSeed","formControlName","cipherSeed","tabindex","9","required",""],["fxLayout","row",1,"mb-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","10","matStepperPrevious","",1,"mr-1","mt-1"],["mat-flat-button","","color","primary","tabindex","11","type","submit","matStepperNext","",1,"mt-1"],["label","Passphrase","state","passphrase",3,"stepControl"],["labelPosition","before","fxFlex","20","tabindex","10","color","primary","formControlName","enterPassphrase","name","enterPassphrase",1,"chkbox-wallet"],["fxLayout","column","fxFlex","75","fxLayoutAlign","start"],["matInput","","type","password","name","passphrase","formControlName","passphrase","tabindex","12","required",""],["mat-stroked-button","","color","warn","tabindex","13","type","reset",1,"mr-1","mt-1",3,"click"],["mat-stroked-button","","tabindex","14","color","primary","type","button","matStepperPrevious","",1,"mr-1","mt-1"],["mat-flat-button","","color","primary","tabindex","15","type","submit",1,"mt-1",3,"click"],["matStepperIcon","password"],["matStepperIcon","cipher"],["matStepperIcon","passphrase"],[1,"validation-error-message"],[1,"validation-error-icon","red"],["fxFlex","100","fxLayoutAlign","start",1,"blinker"],["fxFlex","40","fxLayout","row wrap",1,"mt-2"],["fxFlex","25","fxLayoutAlign","start","class","genseed-message",4,"ngFor","ngForOf"],["fxFlex","100","fxLayoutAlign","start",1,"mt-2"],["mat-flat-button","","color","primary","type","submit","tabindex","16",3,"click"],["fxFlex","25","fxLayoutAlign","start",1,"genseed-message"],["mat-stroked-button","","color","primary","tabindex","17","type","reset",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","18",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",1),e.DNE(1,ph,9,0,"div",2)(2,mh,6,0,"div",3)(3,vh,64,15,"mat-vertical-stepper",4)(4,kh,15,1,"div",2)(5,Sh,7,0,"div",2)(6,Rh,9,0,"div",2),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",a.insecureLND&&!a.warnRes),e.R7$(),e.Y8G("ngIf",a.warnRes&&!a.proceed),e.R7$(),e.Y8G("ngIf",(!a.insecureLND||a.warnRes&&a.proceed)&&a.genSeedResponse.length<=0&&""===a.initWalletResponse),e.R7$(),e.Y8G("ngIf",a.genSeedResponse.length>0&&""!==a.initWalletResponse),e.R7$(),e.Y8G("ngIf",a.genSeedResponse.length>0&&""===a.initWalletResponse),e.R7$(),e.Y8G("ngIf",a.genSeedResponse.length<=0&&""!==a.initWalletResponse))},dependencies:[y.Sq,y.bT,g.qT,g.me,g.BC,g.cb,g.YS,g.cV,g.j4,g.JD,$.$z,ke.An,Z.fg,R.rl,R.nJ,R.MV,R.TL,b.DJ,b.sA,b.UI,Re.sG,de.V5,de.M6,de.F7,de.FR,de.xJ],encapsulation:2}))}return t(),s})(),Lh=(()=>{var t;class s{constructor(){this.faWallet=I.BA1}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-wallet"]],standalone:!1,decls:12,vars:1,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-stretch-tabs","false","mat-align-tabs","start"],["label","Unlock"],["label","Initialize"]],template:function(o,a){1&o&&(e.j41(0,"div",0),e.nrm(1,"fa-icon",1),e.j41(2,"span",2),e.EFF(3,"Wallet"),e.k0s()(),e.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"mat-tab-group",5)(8,"mat-tab",6),e.nrm(9,"rtl-unlock-wallet"),e.k0s(),e.j41(10,"mat-tab",7),e.nrm(11,"rtl-initialize-wallet"),e.k0s()()()()()),2&o&&(e.R7$(),e.Y8G("icon",a.faWallet))},dependencies:[ee.aY,B.RN,B.m2,b.DJ,b.sA,J.mq,J.T8,rh,wh],encapsulation:2}))}return t(),s})();function jh(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",12),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let Gh=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.store=o,this.router=a,this.faExchangeAlt=I._qq,this.faChartPie=I.W1p,this.currencyUnits=[],this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"},{link:"lookuptransactions",name:"Lookup"}],this.activeLink=this.links[0].link,this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[1]),(0,me.E)(this.store.select(W._c))).subscribe(([o,a])=>{this.currencyUnits=a?.settings.currencyUnits||[],this.balances=a?.settings.userPersona===p.HW.OPERATOR?[{title:"Local Capacity",dataValue:o.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:o.lightningBalance.remote||0,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:o.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:o.lightningBalance.remote||0,tooltip:"Amount you can receive"}],this.logger.info(o)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-transactions"]],standalone:!1,decls:21,vars:5,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Lightning Balance"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),e.nrm(7,"rtl-currency-unit-converter",6),e.k0s()()(),e.j41(8,"div",7),e.nrm(9,"fa-icon",2),e.j41(10,"span",3),e.EFF(11,"Lightning Transactions"),e.k0s()(),e.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),e.DNE(16,jh,2,4,"div",10),e.k0s(),e.nrm(17,"mat-tab-nav-panel",null,0),e.j41(19,"div",11),e.nrm(20,"router-outlet"),e.k0s()()()()),2&o){const l=e.sdS(18);e.R7$(),e.Y8G("icon",a.faChartPie),e.R7$(6),e.Y8G("values",a.balances),e.R7$(2),e.Y8G("icon",a.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[y.Sq,ee.aY,B.RN,B.m2,b.DJ,b.sA,b.UI,J.Bu,J.hQ,J.Ql,st.f,j.n3,le.Wk],encapsulation:2}))}return t(),s})();function Dh(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let Nh=(()=>{var t;class s{constructor(i){this.router=i,this.faSearch=I.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-graph"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Graph Lookups"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,Dh,2,4,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&o){const l=e.sdS(10);e.R7$(),e.Y8G("icon",a.faSearch),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[y.Sq,ee.aY,B.RN,B.m2,b.DJ,b.sA,b.UI,J.Bu,J.hQ,J.Ql,j.n3,le.Wk],encapsulation:2}))}return t(),s})();const Ph=t=>({"overflow-auto error-border":t,"overflow-auto":!0}),ut=t=>({width:t});function Bh(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Destination pubkey is required."),e.k0s())}function Ah(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function $h(t,s){1&t&&e.nrm(0,"mat-progress-bar",39)}function Mh(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"Hop"),e.k0s())}function Oh(t,s){if(1&t&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null==n?null:n.hop_sequence)}}function Vh(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"Peer"),e.k0s())}function Yh(t,s){if(1&t&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ut,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.pubkey_alias)}}function Uh(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"Peer Pubkey"),e.k0s())}function Xh(t,s){if(1&t&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ut,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.pub_key)}}function Hh(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"Channel ID"),e.k0s())}function qh(t,s){if(1&t&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ut,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function zh(t,s){1&t&&(e.j41(0,"th",40),e.EFF(1,"TLV Payload"),e.k0s())}function Jh(t,s){if(1&t&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null!=n&&n.tlv_payload?"Yes":"No")}}function Qh(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Expiry"),e.k0s())}function Wh(t,s){if(1&t&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.expiry))}}function Zh(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Kh(t,s){if(1&t&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==n?null:n.chan_capacity))}}function ed(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Amount To Fwd (Sats)"),e.k0s())}function td(t,s){if(1&t&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.amt_to_forward)," ")}}function nd(t,s){1&t&&(e.j41(0,"th",44),e.EFF(1,"Fee (mSats)"),e.k0s())}function id(t,s){if(1&t&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==n?null:n.fee_msat)," ")}}function ad(t,s){1&t&&(e.j41(0,"th",46)(1,"div",47),e.EFF(2,"Actions"),e.k0s()())}function sd(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onHopClick(a,o))}),e.EFF(2,"View Info"),e.k0s()()}}function od(t,s){1&t&&e.nrm(0,"tr",50)}function ld(t,s){1&t&&e.nrm(0,"tr",51)}let rd=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.store=o,this.lndEffects=a,this.commonService=l,this.colWidth="20rem",this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:p.md,sortBy:"hop_sequence",sortOrder:p.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new _.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=I.TBz,this.faExclamationTriangle=I.zpE,this.screenSize="",this.screenSizeEnum=p.f7,this.unSubs=[new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.lndEffects.setQueryRoutes.pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.qrHops=new _.I6([]),i.routes&&i.routes.length&&i.routes.length>0&&i.routes[0].hops?(this.flgLoading[0]=!1,this.qrHops=new _.I6([...i.routes[0].hops]),this.qrHops.data=i.routes[0].hops):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.qrHops=new _.I6([]),this.flgLoading[0]=!0,this.store.dispatch((0,N.T4)({payload:{destPubkey:this.destinationPubkey,amount:this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1}onHopClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"hop_sequence",value:i.hop_sequence,title:"Sequence",width:33,type:p.UN.NUMBER},{key:"amt_to_forward",value:i.amt_to_forward,title:"Amount To Forward (Sats)",width:33,type:p.UN.NUMBER},{key:"fee_msat",value:i.fee_msat,title:"Fee (mSats)",width:34,type:p.UN.NUMBER}],[{key:"chan_capacity",value:i.chan_capacity,title:"Channel Capacity (Sats)",width:50,type:p.UN.NUMBER},{key:"expiry",value:i.expiry,title:"Expiry",width:50,type:p.UN.NUMBER}],[{key:"pubkey_alias",value:i.pubkey_alias,title:"Peer Alias",width:50,type:p.UN.STRING},{key:"chan_id",value:i.chan_id,title:"Channel ID",width:50,type:p.UN.STRING}],[{key:"pub_key",value:i.pub_key,title:"Peer Pubkey",width:100,type:p.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(Pe.L),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-query-routes"]],viewQuery:function(o,a){if(1&o&&e.GBs(A.B4,5),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first)}},standalone:!1,decls:64,vars:17,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table",""],["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","destinationPubkey","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-3","mb-1"],["fxFlex","70","fxLayoutAlign","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"table-container","mb-6",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","hop_sequence"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","pubkey_alias"],["matColumnDef","pub_key"],["matColumnDef","chan_id"],["matColumnDef","tlv_payload"],["matColumnDef","expiry"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","chan_capacity"],["matColumnDef","amt_to_forward_msat"],["matColumnDef","fee_msat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",3)(1,"form",4,0),e.bIt("ngSubmit",function(){r.eBV(l);const f=e.sdS(2);return r.Njj(f.form.valid&&a.onQueryRoutes())}),e.j41(3,"div",5),e.nrm(4,"fa-icon",6),e.j41(5,"span"),e.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),e.k0s()(),e.j41(7,"mat-form-field",7)(8,"mat-label"),e.EFF(9,"Destination Pubkey"),e.k0s(),e.j41(10,"input",8,1),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.destinationPubkey,f)||(a.destinationPubkey=f),r.Njj(f)}),e.k0s(),e.DNE(12,Bh,2,0,"mat-error",9),e.k0s(),e.j41(13,"mat-form-field",10)(14,"mat-label"),e.EFF(15,"Amount (Sats)"),e.k0s(),e.j41(16,"input",11),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.amount,f)||(a.amount=f),r.Njj(f)}),e.k0s(),e.DNE(17,Ah,2,0,"mat-error",9),e.k0s(),e.j41(18,"div",12)(19,"button",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(20,"Clear"),e.k0s(),e.j41(21,"button",14),e.EFF(22,"Query Route"),e.k0s()()(),e.j41(23,"div",15)(24,"div",16),e.nrm(25,"fa-icon",17),e.j41(26,"span",18),e.EFF(27,"Transaction Route"),e.k0s()()(),e.j41(28,"div",19),e.DNE(29,$h,1,0,"mat-progress-bar",20),e.j41(30,"table",21,2),e.qex(32,22),e.DNE(33,Mh,2,0,"th",23)(34,Oh,2,1,"td",24),e.bVm(),e.qex(35,25),e.DNE(36,Vh,2,0,"th",23)(37,Yh,4,4,"td",24),e.bVm(),e.qex(38,26),e.DNE(39,Uh,2,0,"th",23)(40,Xh,4,4,"td",24),e.bVm(),e.qex(41,27),e.DNE(42,Hh,2,0,"th",23)(43,qh,4,4,"td",24),e.bVm(),e.qex(44,28),e.DNE(45,zh,2,0,"th",23)(46,Jh,2,1,"td",24),e.bVm(),e.qex(47,29),e.DNE(48,Qh,2,0,"th",30)(49,Wh,4,3,"td",24),e.bVm(),e.qex(50,31),e.DNE(51,Zh,2,0,"th",30)(52,Kh,4,3,"td",24),e.bVm(),e.qex(53,32),e.DNE(54,ed,2,0,"th",30)(55,td,4,3,"td",24),e.bVm(),e.qex(56,33),e.DNE(57,nd,2,0,"th",30)(58,id,4,3,"td",24),e.bVm(),e.qex(59,34),e.DNE(60,ad,3,0,"th",35)(61,sd,3,0,"td",36),e.bVm(),e.DNE(62,od,1,0,"tr",37)(63,ld,1,0,"tr",38),e.k0s()()()}2&o&&(e.R7$(4),e.Y8G("icon",a.faExclamationTriangle),e.R7$(6),e.R50("ngModel",a.destinationPubkey),e.R7$(2),e.Y8G("ngIf",!a.destinationPubkey),e.R7$(4),e.Y8G("step",1e3)("min",0),e.R50("ngModel",a.amount),e.R7$(),e.Y8G("ngIf",!a.amount),e.R7$(8),e.Y8G("icon",a.faRoute),e.R7$(4),e.Y8G("ngIf",!0===a.flgLoading[0]),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.qrHops)("ngClass",e.eq3(15,Ph,"error"===a.flgLoading[0])),e.R7$(32),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns))},dependencies:[y.YU,y.bT,y.B3,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.VZ,g.vS,g.cV,ee.aY,$.$z,Z.fg,R.rl,R.nJ,R.TL,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.KS,_.$R,_.YZ,_.NB,K.Ld,ye.V,y.QX],encapsulation:2}))}return t(),s})();var Ae=S(5951);function cd(t,s){1&t&&(e.j41(0,"h3",15),e.EFF(1,"Node 1"),e.k0s())}function pd(t,s){1&t&&(e.j41(0,"h3",15),e.EFF(1,"Node 1 (Your Node)"),e.k0s())}function md(t,s){1&t&&(e.j41(0,"h3",15),e.EFF(1,"Node 2"),e.k0s())}function ud(t,s){1&t&&(e.j41(0,"h3",15),e.EFF(1,"Node 2 (Your Node)"),e.k0s())}function hd(t,s){if(1&t&&(e.j41(0,"div",1),e.nrm(1,"mat-divider",2),e.j41(2,"div",3)(3,"div",4)(4,"h4",5),e.EFF(5,"Channel ID"),e.k0s(),e.j41(6,"span",6),e.EFF(7),e.k0s()(),e.j41(8,"div",7)(9,"h4",5),e.EFF(10,"Channel Point"),e.k0s(),e.j41(11,"span",6),e.EFF(12),e.k0s()()(),e.nrm(13,"mat-divider",8),e.j41(14,"div",3)(15,"div",4)(16,"h4",5),e.EFF(17,"Last Update"),e.k0s(),e.j41(18,"span",6),e.EFF(19),e.nI1(20,"date"),e.k0s()(),e.j41(21,"div",7)(22,"h4",5),e.EFF(23,"Capacity (Sats)"),e.k0s(),e.j41(24,"span",6),e.EFF(25),e.nI1(26,"number"),e.k0s()()(),e.nrm(27,"mat-divider",8),e.j41(28,"div",9)(29,"div",10)(30,"div",11),e.DNE(31,cd,2,0,"h3",12)(32,pd,2,0,"h3",12),e.k0s(),e.nrm(33,"mat-divider",8),e.j41(34,"div",13)(35,"h4",5),e.EFF(36,"Pubkey"),e.k0s(),e.j41(37,"span",6),e.EFF(38),e.k0s()(),e.nrm(39,"mat-divider",8),e.j41(40,"div",14)(41,"h4",5),e.EFF(42,"Time Lock Delta"),e.k0s(),e.j41(43,"span",6),e.EFF(44),e.k0s()(),e.nrm(45,"mat-divider",8),e.j41(46,"div",14)(47,"h4",5),e.EFF(48,"Min HTLC"),e.k0s(),e.j41(49,"span",6),e.EFF(50),e.k0s()(),e.nrm(51,"mat-divider",8),e.j41(52,"div",14)(53,"h4",5),e.EFF(54,"Max HTLC"),e.k0s(),e.j41(55,"span",6),e.EFF(56),e.k0s()(),e.nrm(57,"mat-divider",8),e.j41(58,"div",14)(59,"h4",5),e.EFF(60,"Fee Base Msat"),e.k0s(),e.j41(61,"span",6),e.EFF(62),e.k0s()(),e.nrm(63,"mat-divider",8),e.j41(64,"div",14)(65,"h4",5),e.EFF(66,"Fee Rate Milli Msat"),e.k0s(),e.j41(67,"span",6),e.EFF(68),e.k0s()(),e.nrm(69,"mat-divider",8),e.j41(70,"div",14)(71,"h4",5),e.EFF(72,"Disabled"),e.k0s(),e.j41(73,"span",6),e.EFF(74),e.k0s()()(),e.j41(75,"div",10)(76,"div"),e.DNE(77,md,2,0,"h3",12)(78,ud,2,0,"h3",12),e.k0s(),e.nrm(79,"mat-divider",8),e.j41(80,"div",13)(81,"h4",5),e.EFF(82,"Pubkey"),e.k0s(),e.j41(83,"span",6),e.EFF(84),e.k0s()(),e.nrm(85,"mat-divider",8),e.j41(86,"div",14)(87,"h4",5),e.EFF(88,"Time Lock Delta"),e.k0s(),e.j41(89,"span",6),e.EFF(90),e.k0s()(),e.nrm(91,"mat-divider",8),e.j41(92,"div",14)(93,"h4",5),e.EFF(94,"Min HTLC"),e.k0s(),e.j41(95,"span",6),e.EFF(96),e.k0s()(),e.nrm(97,"mat-divider",8),e.j41(98,"div",14)(99,"h4",5),e.EFF(100,"Max HTLC"),e.k0s(),e.j41(101,"span",6),e.EFF(102),e.k0s()(),e.nrm(103,"mat-divider",8),e.j41(104,"div",14)(105,"h4",5),e.EFF(106,"Fee Base Msat"),e.k0s(),e.j41(107,"span",6),e.EFF(108),e.k0s()(),e.nrm(109,"mat-divider",8),e.j41(110,"div",14)(111,"h4",5),e.EFF(112,"Fee Rate Milli Msat"),e.k0s(),e.j41(113,"span",6),e.EFF(114),e.k0s()(),e.nrm(115,"mat-divider",8),e.j41(116,"div",14)(117,"h4",5),e.EFF(118,"Disabled"),e.k0s(),e.j41(119,"span",6),e.EFF(120),e.k0s()()()()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(n.lookupResult.channel_id),e.R7$(5),e.JRh(n.lookupResult.chan_point),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(20,39,1e3*n.lookupResult.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(26,42,n.lookupResult.capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(4),e.Y8G("ngIf",!n.node1_match),e.R7$(),e.Y8G("ngIf",n.node1_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(n.lookupResult.node1_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node1_policy?null:n.lookupResult.node1_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=n.lookupResult.node1_policy&&n.lookupResult.node1_policy.disabled?"Yes":"No"),e.R7$(3),e.Y8G("ngIf",!n.node2_match),e.R7$(),e.Y8G("ngIf",n.node2_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(n.lookupResult.node2_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==n.lookupResult.node2_policy?null:n.lookupResult.node2_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=n.lookupResult.node2_policy&&n.lookupResult.node2_policy.disabled?"Yes":"No")}}let dd=(()=>{var t;class s{constructor(i){this.store=i,this.node1_match=!1,this.node2_match=!1,this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.lookupResult.node1_pub===i.identity_pubkey&&(this.node1_match=!0),this.lookupResult.node2_pub===i.identity_pubkey&&(this.node2_match=!0)})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-lookup"]],inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1",3,"inset"],["fxLayout","row"],["fxLayout","column","fxFlex","30","fxLayoutAlign","end start"],[1,"font-bold-500"],[1,"foreground-secondary-text"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end start"],[1,"my-1",3,"inset"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],["fxLayout","column","fxFlex","20"],["fxLayout","column","fxFlex","10"],[1,"page-title","font-bold-500"]],template:function(o,a){1&o&&e.DNE(0,hd,121,44,"div",0),2&o&&e.Y8G("ngIf",a.lookupResult)},dependencies:[y.bT,Te.q,b.DJ,b.sA,b.UI,y.QX,y.vh],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]}))}return t(),s})();const _d=t=>({"background-color":t});function fd(t,s){if(1&t&&(e.j41(0,"span",10),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Lme("",i.nodeFeaturesEnum[n.value.name]||n.value.name,": ",n.value.is_required?"Mandatory":"Optional")}}function gd(t,s){1&t&&(e.j41(0,"th",27),e.EFF(1,"Network"),e.k0s())}function Cd(t,s){if(1&t&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null==n?null:n.network)}}function yd(t,s){1&t&&(e.j41(0,"th",27),e.EFF(1,"Address"),e.k0s())}function bd(t,s){if(1&t&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(null==n?null:n.addr)}}function Fd(t,s){1&t&&(e.j41(0,"th",29)(1,"div",30),e.EFF(2,"Actions"),e.k0s()())}function xd(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",31)(1,"div",32)(2,"mat-select",33),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",34),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onConnectNode(o))}),e.EFF(5,"Connect"),e.k0s(),e.j41(6,"mat-option",35),e.bIt("copied",function(){const o=r.eBV(n).$implicit,a=e.XpG(2);return r.Njj(a.onCopyNodeURI(o))}),e.EFF(7,"Copy URI"),e.k0s()()()()}if(2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(6),e.Y8G("payload",i.lookupResult.node.pub_key+"@"+n.addr)}}function vd(t,s){1&t&&e.nrm(0,"tr",36)}function Td(t,s){1&t&&e.nrm(0,"tr",37)}function kd(t,s){if(1&t&&(e.j41(0,"div",2),e.nrm(1,"mat-divider",3),e.j41(2,"div",4)(3,"div",5)(4,"h4",6),e.EFF(5,"Alias"),e.k0s(),e.j41(6,"span",7),e.EFF(7),e.j41(8,"span",8),e.EFF(9),e.k0s()()(),e.j41(10,"div",9)(11,"h4",6),e.EFF(12,"Pub Key"),e.k0s(),e.j41(13,"span",10),e.EFF(14),e.k0s()()(),e.nrm(15,"mat-divider",11),e.j41(16,"div",4)(17,"div",5)(18,"h4",6),e.EFF(19,"Last Update"),e.k0s(),e.j41(20,"span",7),e.EFF(21),e.nI1(22,"date"),e.k0s()(),e.j41(23,"div",9)(24,"h4",6),e.EFF(25,"Total Capacity (Sats)"),e.k0s(),e.j41(26,"span",7),e.EFF(27),e.nI1(28,"number"),e.k0s()()(),e.nrm(29,"mat-divider",11),e.j41(30,"div",4)(31,"div",5)(32,"h4",6),e.EFF(33,"Number of Channels"),e.k0s(),e.j41(34,"span",7),e.EFF(35),e.nI1(36,"number"),e.k0s()(),e.j41(37,"div",12)(38,"h4",6),e.EFF(39,"Features"),e.k0s(),e.DNE(40,fd,2,2,"span",13),e.nI1(41,"keyvalue"),e.k0s()(),e.nrm(42,"mat-divider",11),e.j41(43,"div",14)(44,"h4",15),e.EFF(45,"Addresses"),e.k0s(),e.j41(46,"div",16)(47,"table",17,0),e.qex(49,18),e.DNE(50,gd,2,0,"th",19)(51,Cd,2,1,"td",20),e.bVm(),e.qex(52,21),e.DNE(53,yd,2,0,"th",19)(54,bd,2,1,"td",20),e.bVm(),e.qex(55,22),e.DNE(56,Fd,3,0,"th",23)(57,xd,8,1,"td",24),e.bVm(),e.DNE(58,vd,1,0,"tr",25)(59,Td,1,0,"tr",26),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(n.lookupResult.node.alias),e.R7$(),e.Y8G("ngStyle",e.eq3(24,_d,null==n.lookupResult.node?null:n.lookupResult.node.color)),e.R7$(),e.JRh(null==n.lookupResult.node?null:n.lookupResult.node.color),e.R7$(5),e.JRh(n.lookupResult.node.pub_key),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(22,15,1e3*n.lookupResult.node.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(28,18,n.lookupResult.total_capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(36,20,n.lookupResult.num_channels)),e.R7$(5),e.Y8G("ngForOf",e.bMT(41,22,n.lookupResult.node.features)),e.R7$(2),e.Y8G("inset",!0),e.R7$(5),e.Y8G("dataSource",n.lookupResult.node.addresses),e.R7$(11),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns)}}let Sd=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.snackBar=o,this.store=a,this.nodeFeaturesEnum=p._U,this.displayedColumns=["network","addr","actions"],this.information={},this.availableBalance=0,this.unSubs=[new C.B,new C.B,new C.B]}ngOnInit(){this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.information=i}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.availableBalance=i.blockchainBalance.total_balance||0})}onCopyNodeURI(i){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+i)}onConnectNode(i){this.store.dispatch((0,Y.xO)({payload:{data:{message:{peer:{pub_key:this.lookupResult.node?.pub_key,address:i.addr},information:this.information,balance:this.availableBalance},component:It}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(we.UG),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-node-lookup"]],inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["table",""],["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1",3,"inset"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],[1,"my-1",3,"inset"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end start",1,"my-1"],["class","foreground-secondary-text w-100",4,"ngFor","ngForOf"],["fxLayout","column"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource"],["matColumnDef","network"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","addr"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(o,a){1&o&&e.DNE(0,kd,60,26,"div",1),2&o&&e.Y8G("ngIf",a.lookupResult)},dependencies:[y.Sq,y.bT,y.B3,Te.q,b.DJ,b.sA,b.UI,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.KS,_.$R,_.YZ,_.NB,K.Ld,He.U,y.QX,y.vh,y.lG],encapsulation:2}))}return t(),s})();const Rd=t=>({"mt-1":!0,"mt-2":t}),Ed=t=>({"w-100 mt-2 p-2 error-border":t,"w-100 my-2 p-2":!0});function Id(t,s){if(1&t&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n.id)("checked",i.selectedFieldId===n.id),e.R7$(),e.SpI(" ",n.name," ")}}function wd(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("",null==n.lookupFields[n.selectedFieldId]?null:n.lookupFields[n.selectedFieldId].placeholder," is required.")}}function Ld(t,s){1&t&&e.nrm(0,"mat-progress-bar",20)}function jd(t,s){if(1&t&&(e.j41(0,"div",18),e.DNE(1,Ld,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(3,Ed,""!==n.errorMessage&&"Getting lookup details..."!==n.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===n.errorMessage),e.R7$(),e.SpI(" ",n.errorMessage," ")}}function Gd(t,s){if(1&t&&(e.j41(0,"span",27),e.nrm(1,"rtl-node-lookup",28),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("lookupResult",n.lookupValue)}}function Dd(t,s){if(1&t&&(e.j41(0,"span",27),e.nrm(1,"rtl-channel-lookup",28),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("lookupResult",n.lookupValue)}}function Nd(t,s){1&t&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function Pd(t,s){if(1&t&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,Gd,2,1,"span",25)(6,Dd,2,1,"span",25)(7,Nd,4,0,"span",26),e.k0s()()),2&t){const n=e.XpG();e.R7$(3),e.SpI("",n.lookupFields[n.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",n.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let Lt=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.commonService=o,this.store=a,this.actions=l,this.lookupKey="",this.lookupValue={},this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Pubkey"},{id:1,name:"Channel",placeholder:"Channel ID"}],this.faSearch=I.MjD,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKey=window.history.state.lookupValue||""),this.actions.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(i=>i.type===p.QP.SET_LOOKUP_LND||i.type===p.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(i=>{i.type===p.QP.SET_LOOKUP_LND&&(this.errorMessage=0===this.selectedFieldId&&i.payload.hasOwnProperty("node")||1===this.selectedFieldId&&i.payload.hasOwnProperty("channel_id")?"":this.errorMessage,this.lookupValue=JSON.parse(JSON.stringify(i.payload)),this.flgSetLookupValue=!(0!==this.selectedFieldId||!i.payload.hasOwnProperty("node"))||!(1!==this.selectedFieldId||!i.payload.hasOwnProperty("channel_id")),this.logger.info(this.lookupValue)),i.type===p.QP.UPDATE_API_CALL_STATUS_LND&&"Lookup"===i.payload.action&&(this.errorMessage="",i.payload.status===p.wn.ERROR&&(this.errorMessage="object"==typeof i.payload.message?JSON.stringify(i.payload.message):i.payload.message),i.payload.status===p.wn.INITIATED&&(this.errorMessage=p.MZ.GET_LOOKUP_DETAILS))})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,N.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,N.ij)({payload:{uiMessage:p.MZ.SEARCHING_CHANNEL,channelID:this.lookupKey.trim()}}))}}onSelectChange(i){this.resetData(),this.selectedFieldId=i.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(ce.En))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lookups"]],standalone:!1,decls:21,vars:10,consts:[["form","ngForm"],["key",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["mode","indeterminate"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[3,"lookupResult"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"mat-card-content",4)(3,"form",5,0)(5,"div",6)(6,"mat-radio-group",7),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selectedFieldId,f)||(a.selectedFieldId=f),r.Njj(f)}),e.bIt("change",function(f){return r.eBV(l),r.Njj(a.onSelectChange(f))}),e.DNE(7,Id,2,3,"mat-radio-button",8),e.k0s()(),e.j41(8,"mat-form-field",9)(9,"mat-label"),e.EFF(10),e.k0s(),e.j41(11,"input",10,1),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.lookupKey,f)||(a.lookupKey=f),r.Njj(f)}),e.bIt("change",function(){return r.eBV(l),r.Njj(a.clearLookupValue())}),e.k0s(),e.DNE(13,wd,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,jd,3,5,"div",15)(20,Pd,8,4,"div",16),e.k0s()()()}2&o&&(e.R7$(6),e.R50("ngModel",a.selectedFieldId),e.R7$(),e.Y8G("ngForOf",a.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,Rd,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",a.lookupKey),e.R7$(2),e.Y8G("ngIf",!a.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage&&a.lookupValue&&a.flgSetLookupValue))},dependencies:[y.YU,y.Sq,y.bT,y.ux,y.e1,y.fG,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,$.$z,B.m2,Z.fg,R.rl,R.nJ,R.TL,D.HM,Ae.VT,Ae._g,b.DJ,b.sA,b.UI,U.PW,dd,Sd],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}))}return t(),s})();var ht=S(5084);function Bd(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function Ad(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function $d(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",28),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let Md=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.store=o,this.router=a,this.faMapSigns=I.knH,this.today=new Date(Date.now()),this.lastMonthDay=new Date(this.today.getFullYear(),this.today.getMonth()-1,this.today.getDate()+1,0,0,0),this.yesterday=new Date(this.today.getFullYear(),this.today.getMonth(),this.today.getDate()-1,0,0,0),this.endDate=this.today,this.startDate=this.lastMonthDay,this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"peers",name:"Routing Peers"},{link:"nonroutingprs",name:"Non Routing Peers"}],this.activeLink=this.links[0].link,this.unSubs=[new C.B,new C.B,new C.B]}ngOnInit(){this.onEventsFetch();const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}onEventsFetch(){this.store.dispatch((0,N.kv)({payload:{forwarding_events:[]}})),this.endDate||(this.endDate=this.today),this.startDate||(this.startDate=new Date(this.endDate.getFullYear(),this.endDate.getMonth()-1,this.endDate.getDate()+1,0,0,0)),this.store.dispatch((0,N.uK)({payload:{end_time:Math.round(this.endDate.getTime()/1e3).toString(),start_time:Math.round(this.startDate.getTime()/1e3).toString()}}))}resetData(){this.endDate=this.today,this.startDate=this.lastMonthDay}ngOnDestroy(){this.resetData(),this.store.dispatch((0,N.kv)({payload:{forwarding_events:[]}})),this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-routing"]],standalone:!1,decls:41,vars:16,consts:[["routingForm","ngForm"],["strtDate","ngModel"],["startDatepicker",""],["enDate","ngModel"],["endDatepicker",""],["tabPanel",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"card-content-gap","mt-1"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mb-1",3,"ngSubmit"],["fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start"],["matInput","","name","startDate","tabindex","1",3,"ngModelChange","matDatepicker","max","ngModel"],["matSuffix","",3,"for"],[3,"startAt"],[4,"ngIf"],["matInput","","name","endDate","tabindex","2",3,"ngModelChange","matDatepicker","min","max","ngModel"],["fxLayout","row",1,""],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","5","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["tabindex","5","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",6)(1,"div",7),e.nrm(2,"fa-icon",8),e.j41(3,"span",9),e.EFF(4,"Routing"),e.k0s()(),e.j41(5,"div",10)(6,"mat-card",11)(7,"mat-card-content",12)(8,"form",13,0),e.bIt("ngSubmit",function(){return r.eBV(l),r.Njj(a.onEventsFetch())}),e.j41(10,"div",14)(11,"mat-form-field",15)(12,"mat-label"),e.EFF(13,"Start Date"),e.k0s(),e.j41(14,"input",16,1),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.startDate,f)||(a.startDate=f),r.Njj(f)}),e.k0s(),e.nrm(16,"mat-datepicker-toggle",17)(17,"mat-datepicker",18,2),e.DNE(19,Bd,2,0,"mat-error",19),e.k0s(),e.j41(20,"mat-form-field",15)(21,"mat-label"),e.EFF(22,"End Date"),e.k0s(),e.j41(23,"input",20,3),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.endDate,f)||(a.endDate=f),r.Njj(f)}),e.k0s(),e.nrm(25,"mat-datepicker-toggle",17)(26,"mat-datepicker",18,4),e.DNE(28,Ad,2,0,"mat-error",19),e.k0s()(),e.j41(29,"div",21)(30,"button",22),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(31,"Clear"),e.k0s(),e.j41(32,"button",23),e.EFF(33,"Fetch Events"),e.k0s()()(),e.j41(34,"div",24)(35,"nav",25),e.DNE(36,$d,2,4,"div",26),e.k0s(),e.nrm(37,"mat-tab-nav-panel",null,5),e.k0s(),e.j41(39,"div",27),e.nrm(40,"router-outlet"),e.k0s()()()()()}if(2&o){const l=e.sdS(15),h=e.sdS(18),f=e.sdS(24),P=e.sdS(27),w=e.sdS(38);e.R7$(2),e.Y8G("icon",a.faMapSigns),e.R7$(12),e.Y8G("matDatepicker",h)("max",a.today),e.R50("ngModel",a.startDate),e.R7$(2),e.Y8G("for",h),e.R7$(),e.Y8G("startAt",a.startDate),e.R7$(2),e.Y8G("ngIf",l.errors),e.R7$(4),e.Y8G("matDatepicker",P)("min",a.startDate)("max",a.today),e.R50("ngModel",a.endDate),e.R7$(2),e.Y8G("for",P),e.R7$(),e.Y8G("startAt",a.endDate),e.R7$(2),e.Y8G("ngIf",f.errors),e.R7$(7),e.Y8G("tabPanel",w),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[y.Sq,y.bT,g.qT,g.me,g.BC,g.cb,g.vS,g.cV,ee.aY,$.$z,B.RN,B.m2,ht.Vh,ht.bZ,ht.bU,Z.fg,R.rl,R.nJ,R.TL,R.yw,b.DJ,b.sA,b.UI,J.Bu,J.hQ,J.Ql,Rt.z,ye.V,j.n3,le.Wk],encapsulation:2}))}return t(),s})();const Od=()=>["all"],Vd=()=>["no_event"],Je=t=>({width:t}),Yd=t=>({"display-none":t});function Ud(t,s){if(1&t&&(e.j41(0,"div",6),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.errorMessage)}}function Xd(t,s){if(1&t&&(e.j41(0,"mat-option",14),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Hd(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",7),e.nrm(1,"div",8),e.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",11),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilterBy,o)||(a.selFilterBy=o),r.Njj(o)}),e.bIt("selectionChange",function(){r.eBV(n);const o=e.XpG();return o.selFilter="",r.Njj(o.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Xd,2,2,"mat-option",12),e.k0s()()(),e.j41(9,"mat-form-field",10)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",13),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selFilter,o)||(a.selFilter=o),r.Njj(o)}),e.bIt("input",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())})("keyup",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.applyFilter())}),e.k0s()()()()}if(2&t){const n=e.XpG();e.R7$(6),e.R50("ngModel",n.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,Od).concat(n.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",n.selFilter)}}function qd(t,s){1&t&&e.nrm(0,"mat-progress-bar",37)}function zd(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Timestamp"),e.k0s())}function Jd(t,s){if(1&t&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*n.timestamp,"dd/MMM/y HH:mm"))}}function Qd(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Inbound Alias"),e.k0s())}function Wd(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Je,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias_in)}}function Zd(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Inbound Channel"),e.k0s())}function Kd(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Je,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id_in)}}function e_(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Outbound Alias"),e.k0s())}function t_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Je,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias_out)}}function n_(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Outbound Channel"),e.k0s())}function i_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Je,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id_out)}}function a_(t,s){1&t&&(e.j41(0,"th",42),e.EFF(1,"Inbound Amount (Sats)"),e.k0s())}function s_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.amt_in))}}function o_(t,s){1&t&&(e.j41(0,"th",42),e.EFF(1,"Outbound Amount (Sats)"),e.k0s())}function l_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.amt_out))}}function r_(t,s){1&t&&(e.j41(0,"th",42),e.EFF(1,"Fee (mSats)"),e.k0s())}function c_(t,s){if(1&t&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.fee_msat))}}function p_(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",44)(1,"div",45)(2,"mat-select",46),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",47),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function m_(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG(2);return r.Njj(l.onForwardingEventClick(a,o))}),e.EFF(2,"View Info"),e.k0s()()}}function u_(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No forwarding history available."),e.k0s())}function h_(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting forwarding history..."),e.k0s())}function d_(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function __(t,s){if(1&t&&(e.j41(0,"td",50),e.DNE(1,u_,2,0,"p",51)(2,h_,2,0,"p",51)(3,d_,2,1,"p",51),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.forwardingHistoryEvents&&n.forwardingHistoryEvents.data)||(null==n.forwardingHistoryEvents||null==n.forwardingHistoryEvents.data?null:n.forwardingHistoryEvents.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.forwardingHistoryEvents&&n.forwardingHistoryEvents.data)||(null==n.forwardingHistoryEvents||null==n.forwardingHistoryEvents.data?null:n.forwardingHistoryEvents.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.forwardingHistoryEvents&&n.forwardingHistoryEvents.data)||(null==n.forwardingHistoryEvents||null==n.forwardingHistoryEvents.data?null:n.forwardingHistoryEvents.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function f_(t,s){if(1&t&&e.nrm(0,"tr",52),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,Yd,(null==n.forwardingHistoryEvents?null:n.forwardingHistoryEvents.data)&&(null==n.forwardingHistoryEvents||null==n.forwardingHistoryEvents.data?null:n.forwardingHistoryEvents.data.length)>0))}}function g_(t,s){1&t&&e.nrm(0,"tr",53)}function C_(t,s){1&t&&e.nrm(0,"tr",54)}function y_(t,s){if(1&t&&(e.j41(0,"div",15),e.DNE(1,qd,1,0,"mat-progress-bar",16),e.j41(2,"table",17,0),e.qex(4,18),e.DNE(5,zd,2,0,"th",19)(6,Jd,3,4,"td",20),e.bVm(),e.qex(7,21),e.DNE(8,Qd,2,0,"th",19)(9,Wd,4,4,"td",20),e.bVm(),e.qex(10,22),e.DNE(11,Zd,2,0,"th",19)(12,Kd,4,4,"td",20),e.bVm(),e.qex(13,23),e.DNE(14,e_,2,0,"th",19)(15,t_,4,4,"td",20),e.bVm(),e.qex(16,24),e.DNE(17,n_,2,0,"th",19)(18,i_,4,4,"td",20),e.bVm(),e.qex(19,25),e.DNE(20,a_,2,0,"th",26)(21,s_,4,3,"td",20),e.bVm(),e.qex(22,27),e.DNE(23,o_,2,0,"th",26)(24,l_,4,3,"td",20),e.bVm(),e.qex(25,28),e.DNE(26,r_,2,0,"th",26)(27,c_,4,3,"td",20),e.bVm(),e.qex(28,29),e.DNE(29,p_,6,0,"th",30)(30,m_,3,0,"td",31),e.bVm(),e.qex(31,32),e.DNE(32,__,4,3,"td",33),e.bVm(),e.DNE(33,f_,1,3,"tr",34)(34,g_,1,0,"tr",35)(35,C_,1,0,"tr",36),e.k0s()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",n.tableSetting.sortBy)("matSortDirection",n.tableSetting.sortOrder)("dataSource",n.forwardingHistoryEvents),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(7,Vd)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns)}}function b_(t,s){if(1&t&&e.nrm(0,"mat-paginator",55),2&t){const n=e.XpG();e.Y8G("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("showFirstLastButtons",n.screenSize!==n.screenSizeEnum.XS)}}let jt=(()=>{var t;class s{constructor(i,o,a,l,h){this.logger=i,this.commonService=o,this.store=a,this.datePipe=l,this.camelCaseWithReplace=h,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:p.md,sortBy:"timestamp",sortOrder:p.oi.DESCENDING},this.forwardingHistoryData=[],this.displayedColumns=[],this.forwardingHistoryEvents=new _.I6([]),this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(i){i.eventsData&&(this.apiCallStatus={status:p.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=i.eventsData.currentValue,this.forwardingHistoryData=this.eventsData,i.eventsData.firstChange||this.loadForwardingEventsTable(this.forwardingHistoryData)),i.selFilter&&!i.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=i.pageSettings.find(o=>o.pageId===this.pageId)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.pageId)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Ie).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=i.apiCallStatus,i.apiCallStatus?.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.forwardingHistoryData=i.forwardingHistory.forwarding_events||[],this.forwardingHistoryData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData),this.logger.info(i.apiCallStatus),this.logger.info(i.forwardingHistory))})}ngAfterViewInit(){setTimeout(()=>{this.forwardingHistoryData.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData)},0)}onForwardingEventClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Event Information",message:[[{key:"timestamp",value:i.timestamp,title:"Timestamp",width:25,type:p.UN.DATE_TIME},{key:"amt_in",value:i.amt_in,title:"Inbound Amount (Sats)",width:25,type:p.UN.NUMBER},{key:"amt_out",value:i.amt_out,title:"Outbound Amount (Sats)",width:25,type:p.UN.NUMBER},{key:"fee_msat",value:i.fee_msat,title:"Fee (mSats)",width:25,type:p.UN.NUMBER}],[{key:"alias_in",value:i.alias_in,title:"Inbound Peer Alias",width:25,type:p.UN.STRING},{key:"chan_id_in",value:i.chan_id_in,title:"Inbound Channel ID",width:25,type:p.UN.STRING},{key:"alias_out",value:i.alias_out,title:"Outbound Peer Alias",width:25,type:p.UN.STRING},{key:"chan_id_out",value:i.chan_id_out,title:"Outbound Channel ID",width:25,type:p.UN.STRING}]]}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(i){const o=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.timestamp?this.datePipe.transform(new Date(1e3*i.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(i).toLowerCase();break;case"timestamp":a=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return a.includes(o)}}loadForwardingEventsTable(i){this.forwardingHistoryEvents=new _.I6(i?[...i]:[]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(y.vh),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-forwarding-history"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Events")}]),e.OA$],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias_in"],["matColumnDef","chan_id_in"],["matColumnDef","alias_out"],["matColumnDef","chan_id_out"],["matColumnDef","amt_in"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amt_out"],["matColumnDef","fee_msat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(o,a){1&o&&(e.j41(0,"div",1),e.DNE(1,Ud,2,1,"div",2)(2,Hd,13,4,"div",3)(3,y_,36,8,"div",4)(4,b_,1,3,"mat-paginator",5),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.ZF,K.Ld,y.QX,y.vh],encapsulation:2}))}return t(),s})();const F_=["tableIn"],x_=["tableOut"],v_=["paginatorIn"],T_=["paginatorOut"],k_=(t,s)=>({"mt-2":t,"mt-1":s}),S_=()=>["no_incoming_event"],R_=t=>({"mt-2":t}),E_=()=>["no_outgoing_event"],Qe=t=>({width:t}),Gt=t=>({"display-none":t});function I_(t,s){if(1&t&&(e.j41(0,"div",7),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.errorMessage)}}function w_(t,s){1&t&&e.nrm(0,"mat-progress-bar",34)}function L_(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function j_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function G_(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function D_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias)}}function N_(t,s){1&t&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function P_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.events))}}function B_(t,s){1&t&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function A_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_amount))}}function $_(t,s){1&t&&(e.j41(0,"th",41)(1,"div",42),e.EFF(2,"Actions"),e.k0s()())}function M_(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",43)(1,"button",44),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG(2);return r.Njj(l.onRoutingPeerClick(a,o,"in"))}),e.EFF(2,"View Info"),e.k0s()()}}function O_(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No incoming routing peer available."),e.k0s())}function V_(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting incoming routing peers..."),e.k0s())}function Y_(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function U_(t,s){if(1&t&&(e.j41(0,"td",45),e.DNE(1,O_,2,0,"p",46)(2,V_,2,0,"p",46)(3,Y_,2,1,"p",46),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersIncoming&&n.routingPeersIncoming.data)||(null==n.routingPeersIncoming||null==n.routingPeersIncoming.data?null:n.routingPeersIncoming.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersIncoming&&n.routingPeersIncoming.data)||(null==n.routingPeersIncoming||null==n.routingPeersIncoming.data?null:n.routingPeersIncoming.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersIncoming&&n.routingPeersIncoming.data)||(null==n.routingPeersIncoming||null==n.routingPeersIncoming.data?null:n.routingPeersIncoming.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function X_(t,s){if(1&t&&e.nrm(0,"tr",47),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,Gt,(null==n.routingPeersIncoming||null==n.routingPeersIncoming.data?null:n.routingPeersIncoming.data.length)>0))}}function H_(t,s){1&t&&e.nrm(0,"tr",48)}function q_(t,s){1&t&&e.nrm(0,"tr",49)}function z_(t,s){1&t&&e.nrm(0,"mat-progress-bar",34)}function J_(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function Q_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function W_(t,s){1&t&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function Z_(t,s){if(1&t&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Qe,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.alias)}}function K_(t,s){1&t&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function e0(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.events))}}function t0(t,s){1&t&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function n0(t,s){if(1&t&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_amount))}}function i0(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No outgoing routing peer available."),e.k0s())}function a0(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting outgoing routing peers..."),e.k0s())}function s0(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.errorMessage)}}function o0(t,s){if(1&t&&(e.j41(0,"td",45),e.DNE(1,i0,2,0,"p",46)(2,a0,2,0,"p",46)(3,s0,2,1,"p",46),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersOutgoing&&n.routingPeersOutgoing.data)||(null==n.routingPeersOutgoing||null==n.routingPeersOutgoing.data?null:n.routingPeersOutgoing.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersOutgoing&&n.routingPeersOutgoing.data)||(null==n.routingPeersOutgoing||null==n.routingPeersOutgoing.data?null:n.routingPeersOutgoing.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.routingPeersOutgoing&&n.routingPeersOutgoing.data)||(null==n.routingPeersOutgoing||null==n.routingPeersOutgoing.data?null:n.routingPeersOutgoing.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function l0(t,s){if(1&t&&e.nrm(0,"tr",47),2&t){const n=e.XpG(2);e.Y8G("ngClass",e.eq3(1,Gt,(null==n.routingPeersOutgoing||null==n.routingPeersOutgoing.data?null:n.routingPeersOutgoing.data.length)>0))}}function r0(t,s){1&t&&e.nrm(0,"tr",48)}function c0(t,s){1&t&&e.nrm(0,"tr",49)}function p0(t,s){if(1&t&&(e.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),e.EFF(4,"Incoming"),e.k0s(),e.nrm(5,"div",12),e.k0s(),e.j41(6,"div",13),e.DNE(7,w_,1,0,"mat-progress-bar",14),e.j41(8,"table",15,0),e.qex(10,16),e.DNE(11,L_,2,0,"th",17)(12,j_,4,4,"td",18),e.bVm(),e.qex(13,19),e.DNE(14,G_,2,0,"th",17)(15,D_,4,4,"td",18),e.bVm(),e.qex(16,20),e.DNE(17,N_,2,0,"th",21)(18,P_,4,3,"td",18),e.bVm(),e.qex(19,22),e.DNE(20,B_,2,0,"th",21)(21,A_,4,3,"td",18),e.bVm(),e.qex(22,23),e.DNE(23,$_,3,0,"th",24)(24,M_,3,0,"td",25),e.bVm(),e.qex(25,26),e.DNE(26,U_,4,3,"td",27),e.bVm(),e.DNE(27,X_,1,3,"tr",28)(28,H_,1,0,"tr",29)(29,q_,1,0,"tr",30),e.k0s()(),e.nrm(30,"mat-paginator",31,1),e.k0s(),e.j41(32,"div",9)(33,"div",10)(34,"div",11),e.EFF(35,"Outgoing"),e.k0s(),e.nrm(36,"div",12),e.k0s(),e.j41(37,"div",13),e.DNE(38,z_,1,0,"mat-progress-bar",14),e.j41(39,"table",32,2),e.qex(41,16),e.DNE(42,J_,2,0,"th",17)(43,Q_,4,4,"td",18),e.bVm(),e.qex(44,19),e.DNE(45,W_,2,0,"th",17)(46,Z_,4,4,"td",18),e.bVm(),e.qex(47,20),e.DNE(48,K_,2,0,"th",21)(49,e0,4,3,"td",18),e.bVm(),e.qex(50,22),e.DNE(51,t0,2,0,"th",21)(52,n0,4,3,"td",18),e.bVm(),e.qex(53,33),e.DNE(54,o0,4,3,"td",27),e.bVm(),e.DNE(55,l0,1,3,"tr",28)(56,r0,1,0,"tr",29)(57,c0,1,0,"tr",30),e.k0s()(),e.nrm(58,"mat-paginator",31,3),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.Y8G("ngClass",e.l_i(18,k_,n.screenSize===n.screenSizeEnum.XS,n.screenSize===n.screenSizeEnum.SM)),e.R7$(5),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",n.routingPeersIncoming),e.R7$(19),e.Y8G("matFooterRowDef",e.lJ4(21,S_)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns),e.R7$(),e.Y8G("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("showFirstLastButtons",n.screenSize!==n.screenSizeEnum.XS),e.R7$(3),e.Y8G("ngClass",e.eq3(22,R_,n.screenSize!==n.screenSizeEnum.LG)),e.R7$(5),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",n.routingPeersOutgoing),e.R7$(16),e.Y8G("matFooterRowDef",e.lJ4(24,E_)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns),e.R7$(),e.Y8G("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("showFirstLastButtons",n.screenSize!==n.screenSizeEnum.XS)}}let m0=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.commonService=o,this.store=a,this.camelCaseWithReplace=l,this.nodePageDefs=p._1,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:p.md,sortBy:"total_amount",sortOrder:p.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new _.I6([]),this.routingPeersOutgoing=new _.I6([]),this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Ie).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,i.apiCallStatus?.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=i.forwardingHistory.forwarding_events?i.forwardingHistory.forwarding_events:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(i.apiCallStatus),this.logger.info(i.forwardingHistory)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadRoutingPeersTable(this.routingPeersData)}onRoutingPeerClick(i,o,a){let l=" Routing Information";l="in"===a?"Incoming"+l:"Outgoing"+l,this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:l,message:[[{key:"chan_id",value:i.chan_id,title:"Channel ID",width:50,type:p.UN.STRING},{key:"alias",value:i.alias,title:"Peer Alias",width:50,type:p.UN.STRING}],[{key:"events",value:i.events,title:"Events",width:50,type:p.UN.NUMBER},{key:"total_amount",value:i.total_amount,title:"Total Amount (Sats)",width:50,type:p.UN.NUMBER}]]}}}))}applyFilterIncoming(){this.routingPeersIncoming.filter=this.filterIn.trim().toLowerCase()}applyFilterOutgoing(){this.routingPeersOutgoing.filter=this.filterOut.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(i,o)=>{let a="";return a="all"===this.selFilterByIn?JSON.stringify(i).toLowerCase():"string"==typeof i[this.selFilterByIn]?i[this.selFilterByIn].toLowerCase():"boolean"==typeof i[this.selFilterByIn]?i[this.selFilterByIn]?"yes":"no":i[this.selFilterByIn].toString(),a.includes(o)},this.routingPeersOutgoing.filterPredicate=(i,o)=>{let a="";switch(this.selFilterByOut){case"all":a=JSON.stringify(i).toLowerCase();break;case"total_amount":case"total_fee":a=(+(i[this.selFilterByOut]||0)/1e3).toString()||"";break;default:a="string"==typeof i[this.selFilterByOut]?i[this.selFilterByOut].toLowerCase():"boolean"==typeof i[this.selFilterByOut]?i[this.selFilterByOut]?"yes":"no":i[this.selFilterByOut].toString()}return a.includes(o)}}loadRoutingPeersTable(i){if(i.length>0){const o=this.groupRoutingPeers(i);this.routingPeersIncoming=new _.I6(o[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||p.oi.DESCENDING,disableClear:!0}),this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new _.I6(o[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||p.oi.DESCENDING,disableClear:!0}),this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new _.I6([]),this.routingPeersOutgoing=new _.I6([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(i){const o=[],a=[];return i.forEach(l=>{const h=o.find(P=>P.chan_id===l.chan_id_in),f=a.find(P=>P.chan_id===l.chan_id_out);h?(h.events++,h.total_amount=+h.total_amount+ +(l.amt_in||0)):o.push({chan_id:l.chan_id_in,alias:l.alias_in,events:1,total_amount:+(l.amt_in||0)}),f?(f.events++,f.total_amount=+f.total_amount+ +(l.amt_out||0)):a.push({chan_id:l.chan_id_out,alias:l.alias_out,events:1,total_amount:+(l.amt_out||0)})}),[this.commonService.sortDescByKey(o,"total_amount"),this.commonService.sortDescByKey(a,"total_amount")]}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-routing-peers"]],viewQuery:function(o,a){if(1&o&&(e.GBs(F_,5,A.B4),e.GBs(x_,5,A.B4),e.GBs(v_,5),e.GBs(T_,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sortIn=l.first),e.mGM(l=e.lsd())&&(a.sortOut=l.first),e.mGM(l=e.lsd())&&(a.paginatorIn=l.first),e.mGM(l=e.lsd())&&(a.paginatorOut=l.first)}},standalone:!1,features:[e.Jv_([{provide:X.xX,useValue:(0,p.on)("Routing peers")}])],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between start","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between start",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mb-4"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"dataSource"],["matColumnDef","chan_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_amount"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"dataSource"],["matColumnDef","no_outgoing_event"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){1&o&&(e.j41(0,"div",4),e.DNE(1,I_,2,1,"div",5)(2,p0,60,25,"div",6),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage))},dependencies:[y.YU,y.bT,y.B3,$.$z,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.Ld,y.QX],encapsulation:2}))}return t(),s})();function u0(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",8),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let h0=(()=>{var t;class s{constructor(i){this.router=i,this.faChartBar=I.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-reports"]],standalone:!1,decls:12,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Reports"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,u0,2,4,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),e.k0s()()()),2&o){const l=e.sdS(10);e.R7$(),e.Y8G("icon",a.faChartBar),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[y.Sq,ee.aY,B.RN,B.m2,b.DJ,b.sA,J.Bu,J.hQ,J.Ql,j.n3,le.Wk],encapsulation:2}))}return t(),s})();var Dt=S(1993),Nt=S(4655);const d0=t=>({"error-border":t});function _0(t,s){1&t&&e.nrm(0,"mat-progress-bar",17)}function f0(t,s){if(1&t&&(e.j41(0,"div",18),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&t){const n=e.XpG();e.Y8G("@fadeIn",n.events.total_fee_msat),e.R7$(),e.Lme("",e.i5U(2,3,n.events.total_fee_msat/1e3||0,"1.0-2")," Sats/",e.bMT(3,6,(null==n.events||null==n.events.forwarding_events?null:n.events.forwarding_events.length)||0)," Events")}}function g0(t,s){1&t&&(e.j41(0,"div",19),e.EFF(1,"No routing report for the selected period"),e.k0s())}function C0(t,s){if(1&t&&(e.j41(0,"div",20),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(2,d0,"Getting Forwarding History..."!==n.errorMessage&&""!==n.errorMessage)),e.R7$(),e.JRh(n.errorMessage)}}function y0(t,s){if(1&t&&(e.j41(0,"span")(1,"span",22),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.j41(4,"span",22),e.EFF(5),e.nI1(6,"number"),e.k0s()()),2&t){const n=s.model,i=e.XpG(2);e.R7$(2),e.SpI("Events: ",e.bMT(3,2,(i.selReportBy===i.reportBy.EVENTS?n.value:n.extra.totalEvents)||0)),e.R7$(3),e.SpI("Fee: ",e.i5U(6,4,(i.selReportBy===i.reportBy.EVENTS?n.extra.totalFees:n.value)||0,"1.0-2"))}}function b0(t,s){if(1&t){const n=e.RV6();e.j41(0,"ngx-charts-bar-vertical",21),e.bIt("select",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onChartBarSelected(o))})("mouseup",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onChartMouseUp(o))}),e.DNE(1,y0,7,7,"ng-template",null,0,e.C5r),e.k0s()}if(2&t){const n=e.XpG();e.Y8G("view",n.view)("results",n.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",n.showYAxisLabel)("xAxisLabel",n.xAxisLabel)("yAxisLabel",n.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function F0(t,s){if(1&t&&e.nrm(0,"rtl-forwarding-history",23),2&t){const n=e.XpG();e.Y8G("eventsData",null==n.events?null:n.events.forwarding_events)("selFilter",n.eventFilterValue)}}let x0=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.dataService=o,this.commonService=a,this.store=l,this.reportPeriod=p.rs[0],this.secondsInADay=86400,this.events={},this.eventFilterValue="",this.reportBy=p.aR,this.selReportBy=p.aR.FEES,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.unSubs=[new C.B,new C.B,new C.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===p.f7.XS||this.screenSize===p.f7.SM),this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{i.identity_pubkey&&setTimeout(()=>{this.fetchEvents(this.startDate,this.endDate)},10)}),this.commonService.containerSizeUpdated.pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{switch(this.screenSize){case p.f7.MD:this.screenPaddingX=i.width/10;break;case p.f7.LG:this.screenPaddingX=i.width/16;break;default:this.screenPaddingX=i.width/20}this.view=[i.width-this.screenPaddingX,i.height/2.2],this.logger.info("Container Size: "+JSON.stringify(i)),this.logger.info("View: "+JSON.stringify(this.view))})}fetchEvents(i,o){this.errorMessage=p.MZ.GET_FORWARDING_HISTORY;const a=Math.round(i.getTime()/1e3).toString(),l=Math.round(o.getTime()/1e3).toString();this.dataService.getForwardingHistory("LND",a,l).pipe((0,x.Q)(this.unSubs[2])).subscribe({next:h=>{this.errorMessage="",h.forwarding_events&&h.forwarding_events.length?(h.forwarding_events=h.forwarding_events.reverse(),this.events=h,this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(i):this.prepareFeeReport(i)):(this.events={forwarding_events:[],total_fee_msat:0},this.routingReportData=[])},error:h=>{this.errorMessage=h}})}onChartMouseUp(i){"svg"===i.srcElement.tagName&&i.srcElement.classList.length>0&&"ngx-charts"===i.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(i){this.eventFilterValue=this.reportPeriod===p.rs[1]?i.name+"/"+this.startDate.getFullYear():i.name.toString().padStart(2,"0")+"/"+p.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(i){const o=Math.round(i.getTime()/1e3),a=[];if(this.events.total_fee_msat=0,this.reportPeriod===p.rs[1]){for(let l=0;l<12;l++)a.push({name:p.KR[l].name,value:0,extra:{totalEvents:0}});this.events.forwarding_events?.map(l=>{const h=new Date(1e3*+(l.timestamp||0)).getMonth();return a[h].value=a[h].value+ +(l.fee_msat||0)/1e3,a[h].extra.totalEvents=a[h].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(l.fee_msat||0),this.events})}else{for(let l=0;l{const h=Math.floor((+(l.timestamp||0)-o)/this.secondsInADay);return a[h].value=a[h].value+ +(l.fee_msat||0)/1e3,a[h].extra.totalEvents=a[h].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(l.fee_msat||0),this.events})}return a}prepareEventsReport(i){const o=Math.round(i.getTime()/1e3),a=[];if(this.events.total_fee_msat=0,this.reportPeriod===p.rs[1]){for(let l=0;l<12;l++)a.push({name:p.KR[l].name,value:0,extra:{totalFees:0}});this.events.forwarding_events?.map(l=>{const h=new Date(1e3*+(l.timestamp||0)).getMonth();return a[h].value=a[h].value+1,a[h].extra.totalFees=a[h].extra.totalFees+ +(l.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(l.fee_msat||0),this.events})}else{for(let l=0;l{const h=Math.floor((+(l.timestamp||0)-o)/this.secondsInADay);return a[h].value=a[h].value+1,a[h].extra.totalFees=a[h].extra.totalFees+ +(l.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(l.fee_msat||0),this.events})}return a}onSelectionChange(i){const o=i.selDate.getMonth(),a=i.selDate.getFullYear();this.reportPeriod=i.selScrollRange,this.reportPeriod===p.rs[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,o,1,0,0,0),this.endDate=new Date(a,o,this.getMonthDays(o,a),23,59,59)),this.fetchEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(i,o){return 1===i&&o%4==0?p.KR[i].days+1:p.KR[i].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(Fe.u),e.rXU(z.h),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-routing-report"]],hostBindings:function(o,a){1&o&&e.bIt("mouseup",function(h){return a.onChartMouseUp(h)})},standalone:!1,decls:20,vars:11,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start center",1,"my-1",3,"ngModelChange","change","ngModel"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["mode","indeterminate","class","mt-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x","my-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",3,"ngClass",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["pageId","reports","tableId","routing",3,"eventsData","selFilter",4,"ngIf"],["mode","indeterminate",1,"mt-2"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1",3,"ngClass"],[1,"one-color",3,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],["pageId","reports","tableId","routing",3,"eventsData","selFilter"]],template:function(o,a){1&o&&(e.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),e.bIt("stepChanged",function(h){return a.onSelectionChange(h)}),e.k0s(),e.j41(2,"div",3)(3,"mat-radio-group",4),e.mxI("ngModelChange",function(h){return e.DH7(a.selReportBy,h)||(a.selReportBy=h),h}),e.bIt("change",function(){return a.onSelReportByChange()}),e.j41(4,"span",5),e.EFF(5,"Report By: "),e.k0s(),e.j41(6,"mat-radio-button",6),e.EFF(7,"Fees"),e.k0s(),e.j41(8,"mat-radio-button",7),e.EFF(9,"Events"),e.k0s()()(),e.DNE(10,_0,1,0,"mat-progress-bar",8),e.j41(11,"div",9),e.DNE(12,f0,4,8,"div",10)(13,g0,2,0,"div",11)(14,C0,2,4,"div",12),e.j41(15,"div",13),e.DNE(16,b0,3,11,"ngx-charts-bar-vertical",14),e.k0s()(),e.j41(17,"div",15)(18,"div",13),e.DNE(19,F0,1,2,"rtl-forwarding-history",16),e.k0s()()()),2&o&&(e.R7$(3),e.R50("ngModel",a.selReportBy),e.R7$(3),e.Y8G("value",e.mNQ(a.reportBy.FEES)),e.R7$(2),e.Y8G("value",e.mNQ(a.reportBy.EVENTS)),e.R7$(2),e.Y8G("ngIf","Getting Forwarding History..."===a.errorMessage),e.R7$(2),e.Y8G("ngIf",a.routingReportData.length>0&&a.events.forwarding_events&&a.events.forwarding_events.length&&a.events.forwarding_events.length>0),e.R7$(),e.Y8G("ngIf",(a.routingReportData.length<=0||a.events.forwarding_events.length<=0)&&""===a.errorMessage),e.R7$(),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(2),e.Y8G("ngIf",a.routingReportData.length>0&&a.events.forwarding_events&&a.events.forwarding_events.length&&a.events.forwarding_events.length>0),e.R7$(3),e.Y8G("ngIf",a.events&&(null==a.events?null:a.events.forwarding_events)&&a.events.forwarding_events.length&&a.events.forwarding_events.length>0))},dependencies:[y.YU,y.bT,g.BC,g.vS,D.HM,Ae.VT,Ae._g,b.DJ,b.sA,b.UI,U.PW,Dt.L8,Nt.m,jt,y.QX],encapsulation:2,data:{animation:[pt.q]}}))}return t(),s})();var v0=S(9584),T0=S(5085);function k0(t,s){1&t&&(e.j41(0,"div",12),e.nrm(1,"mat-progress-bar",13),e.j41(2,"span"),e.EFF(3,"Getting transactions data..."),e.k0s()())}function S0(t,s){if(1&t&&(e.j41(0,"div",14),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.errorMessage)}}function R0(t,s){if(1&t&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Lme(" Paid ",e.i5U(2,2,n.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,n.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function E0(t,s){if(1&t&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Lme(" Received ",e.i5U(2,2,n.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,n.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function I0(t,s){if(1&t&&(e.j41(0,"div",15),e.DNE(1,R0,4,7,"div",16)(2,E0,4,7,"div",16),e.k0s()),2&t){const n=e.XpG();e.Y8G("@fadeIn",n.transactionsReportSummary),e.R7$(),e.Y8G("ngIf",n.transactionsReportSummary.paymentsSelectedPeriod>0),e.R7$(),e.Y8G("ngIf",n.transactionsReportSummary.invoicesSelectedPeriod)}}function w0(t,s){1&t&&(e.j41(0,"div",18),e.EFF(1,"No transactions report for the selected period"),e.k0s())}function L0(t,s){if(1&t&&(e.j41(0,"span",21),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&t){const n=s.model;e.R7$(),e.LHq("",n.name,": ",e.i5U(2,4,n.value||0,"1.0-2"),"/# ","Paid"===n.name?"Payments":"Invoices",": ",e.bMT(3,7,(null==n.extra?null:n.extra.total)||0))}}function j0(t,s){if(1&t){const n=e.RV6();e.j41(0,"ngx-charts-bar-vertical-2d",20),e.bIt("select",function(o){r.eBV(n);const a=e.XpG(2);return r.Njj(a.onChartBarSelected(o))})("mouseup",function(o){r.eBV(n);const a=e.XpG(2);return r.Njj(a.onChartMouseUp(o))}),e.DNE(1,L0,4,9,"ng-template",null,0,e.C5r),e.k0s()}if(2&t){const n=e.XpG(2);e.Y8G("view",n.view)("results",n.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",n.showYAxisLabel)("xAxisLabel",n.xAxisLabel)("yAxisLabel",n.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",n.reportPeriod===n.scrollRanges[0]?2:8)}}function G0(t,s){if(1&t&&(e.j41(0,"div",10),e.DNE(1,j0,3,13,"ngx-charts-bar-vertical-2d",19),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",n.transactionsReportData.length>0&&n.transactionsNonZeroReportData.length>0)}}function D0(t,s){if(1&t&&e.nrm(0,"rtl-transactions-report-table",22),2&t){const n=e.XpG();e.Y8G("displayedColumns",n.displayedColumns)("tableSetting",n.tableSetting)("dataList",n.transactionsNonZeroReportData)("dataRange",n.reportPeriod)("selFilter",n.transactionFilterValue)}}let N0=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.commonService=o,this.store=a,this.scrollRanges=p.rs,this.reportPeriod=p.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:p.md,sortBy:"date",sortOrder:p.oi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[{date:"",name:"1",series:[{extra:{total:0},name:"Paid",value:0},{extra:{total:0},name:"Received",value:0}]}],this.transactionsNonZeroReportData=[{amount_paid:0,amount_received:0,date:"",num_invoices:0,num_payments:0}],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===p.f7.XS||this.screenSize===p.f7.SM),this.store.select(v0.av).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.n_).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{i.apiCallStatus.status===p.wn.UN_INITIATED&&this.store.dispatch((0,N.tG)()),this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.payments=i.allLightningTransactions.listPaymentsAll.payments||[],this.invoices=i.allLightningTransactions.listInvoicesAll.invoices||[],(this.payments.length>0||this.invoices.length>0)&&(this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()),this.logger.info(i)}),this.commonService.containerSizeUpdated.pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{switch(this.screenSize){case p.f7.MD:this.screenPaddingX=i.width/10;break;case p.f7.LG:this.screenPaddingX=i.width/16;break;default:this.screenPaddingX=i.width/20}this.view=[i.width-this.screenPaddingX,i.height/2.2],this.logger.info("Container Size: "+JSON.stringify(i)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(i){"svg"===i.srcElement.tagName&&i.srcElement.classList.length>0&&"ngx-charts"===i.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(i){this.transactionFilterValue=this.reportPeriod===p.rs[1]?i.series+"/"+this.startDate.getFullYear():i.series.toString().padStart(2,"0")+"/"+p.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(i,o){const a=Math.round(i.getTime()/1e3),l=Math.round(o.getTime()/1e3),h=[];this.transactionsNonZeroReportData=[],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const f=this.payments?.filter(w=>"SUCCEEDED"===w.status&&w.creation_date&&w.creation_date>=a&&w.creation_datew.settled&&w.creation_date&&+w.creation_date>=a&&+w.creation_date{const M=new Date(1e3*+(w.creation_date||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(w.value_msat||0)+ +(w.fee_msat||0),h[M].series[0].value=h[M].series[0].value+(+(w.value_msat||0)+ +(w.fee_msat||0))/1e3,h[M].series[0].extra.total=h[M].series[0].extra.total+1,this.transactionsReportSummary}),P?.map(w=>{const M=new Date(1e3*+(w.creation_date||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(w.amt_paid_msat||0),h[M].series[1].value=h[M].series[1].value+ +(w.amt_paid_msat||0)/1e3,h[M].series[1].extra.total=h[M].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let w=0;w{const M=Math.floor((+(w.creation_date||0)-a)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(w.value_msat||0)+ +(w.fee_msat||0),h[M].series[0].value=h[M].series[0].value+(+(w.value_msat||0)+ +(w.fee_msat||0))/1e3,h[M].series[0].extra.total=h[M].series[0].extra.total+1,this.transactionsReportSummary}),P?.map(w=>{const M=Math.floor((+(w.creation_date||0)-a)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(w.amt_paid_msat||0),h[M].series[1].value=h[M].series[1].value+ +(w.amt_paid_msat||0)/1e3,h[M].series[1].extra.total=h[M].series[1].extra.total+1,this.transactionsReportSummary})}return h}prepareTableData(){return this.transactionsReportData?.reduce((i,o)=>o.series[0].extra.total>0||o.series[1].extra.total>0?i.concat({date:o.date,amount_paid:o.series[0].value,num_payments:o.series[0].extra.total,amount_received:o.series[1].value,num_invoices:o.series[1].extra.total}):i,[])}onSelectionChange(i){const o=i.selDate.getMonth(),a=i.selDate.getFullYear();this.reportPeriod=i.selScrollRange,this.reportPeriod===p.rs[1]?(this.startDate=new Date(a,0,1,0,0,0),this.endDate=new Date(a,11,31,23,59,59)):(this.startDate=new Date(a,o,1,0,0,0),this.endDate=new Date(a,o,this.getMonthDays(o,a),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(i,o){return 1===i&&o%4==0?p.KR[i].days+1:p.KR[i].days}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-transactions-report"]],hostBindings:function(o,a){1&o&&e.bIt("mouseup",function(h){return a.onChartMouseUp(h)})},standalone:!1,decls:11,vars:6,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],[3,"stepChanged"],["class","p-2",4,"ngIf"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["class","mt-1",4,"ngIf"],[1,"mt-1"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],[1,"p-2"],["mode","indeterminate"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[1,"two-color",3,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(o,a){1&o&&(e.j41(0,"div",1)(1,"div",2)(2,"div",3)(3,"rtl-horizontal-scroller",4),e.bIt("stepChanged",function(h){return a.onSelectionChange(h)}),e.k0s(),e.DNE(4,k0,4,0,"div",5)(5,S0,2,1,"div",6)(6,I0,3,3,"div",7)(7,w0,2,0,"div",8)(8,G0,2,1,"div",9),e.j41(9,"div",10),e.DNE(10,D0,1,5,"rtl-transactions-report-table",11),e.k0s()()()()),2&o&&(e.R7$(4),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.ERROR),e.R7$(),e.Y8G("ngIf",a.transactionsNonZeroReportData.length>0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",a.transactionsNonZeroReportData.length<=0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",a.transactionsNonZeroReportData.length>0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED),e.R7$(2),e.Y8G("ngIf",a.transactionsNonZeroReportData.length>0&&a.apiCallStatus.status===a.apiCallStatusEnum.COMPLETED))},dependencies:[y.bT,D.HM,b.DJ,b.sA,b.UI,Dt.Dl,Nt.m,T0.T,y.QX],encapsulation:2,data:{animation:[pt.q]}}))}return t(),s})();const P0=["form"];function B0(t,s){if(1&t&&(e.j41(0,"div",17),e.nrm(1,"fa-icon",18),e.j41(2,"span"),e.EFF(3,'Bump fee option will be disabled for unconfirmed UTXOs where label text includes "sweep" in its value.'),e.k0s()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle)}}function A0(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"UTXO Label is required."),e.k0s())}function $0(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.labelError)}}function M0(t,s){if(1&t&&(e.j41(0,"div",19),e.nrm(1,"fa-icon",18),e.DNE(2,$0,2,1,"span",12),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.labelError)}}let O0=(()=>{var t;class s{constructor(i,o,a,l,h,f){this.dialogRef=i,this.data=o,this.dataService=a,this.store=l,this.snackBar=h,this.commonService=f,this.faExclamationTriangle=I.zpE,this.utxo=null,this.label="",this.labelError="",this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.utxo=this.data.utxo,this.label=this.utxo.label||""}onLabelUTXO(){if(!this.label||""===this.label)return!0;this.labelError="",this.dataService.labelUTXO(this.utxo&&this.utxo.outpoint&&this.utxo.outpoint.txid_bytes?this.utxo.outpoint.txid_bytes:"",this.label,!0).pipe((0,x.Q)(this.unSubs[0])).subscribe({next:i=>{this.store.dispatch((0,N.mh)()),this.store.dispatch((0,N.SM)()),this.snackBar.open("Successfully labelled the UTXO."),this.dialogRef.close()},error:i=>{this.labelError=i}})}resetData(){this.labelError="",this.label=""}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(Fe.u),e.rXU(G.il),e.rXU(we.UG),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-lebel-modal"]],viewQuery:function(o,a){if(1&o&&e.GBs(P0,7),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first)}},standalone:!1,decls:24,vars:7,consts:[["form","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","100"],["autoFocus","","matInput","","name","label","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Label UTXO"),e.k0s()(),e.j41(6,"button",6),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"form",8,0),e.bIt("submit",function(){return r.eBV(l),r.Njj(a.onLabelUTXO())})("reset",function(){return r.eBV(l),r.Njj(a.resetData())}),e.DNE(11,B0,4,1,"div",9),e.nI1(12,"lowercase"),e.j41(13,"mat-form-field",10)(14,"mat-label"),e.EFF(15,"UTXO Label"),e.k0s(),e.j41(16,"input",11),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.label,f)||(a.label=f),r.Njj(f)}),e.k0s(),e.DNE(17,A0,2,0,"mat-error",12),e.k0s(),e.DNE(18,M0,3,2,"div",13),e.j41(19,"div",14)(20,"button",15),e.EFF(21,"Clear"),e.k0s(),e.j41(22,"button",16),e.EFF(23,"Label UTXO"),e.k0s()()()()()()}2&o&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(5),e.Y8G("ngIf",e.bMT(12,5,a.label).includes("sweep")&&"0"===a.utxo.confirmations),e.R7$(5),e.R50("ngModel",a.label),e.R7$(),e.Y8G("ngIf",!a.label),e.R7$(),e.Y8G("ngIf",""!==a.labelError))},dependencies:[y.bT,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,ee.aY,ne.tx,$.$z,B.m2,B.MM,Z.fg,R.rl,R.nJ,R.TL,b.DJ,b.sA,b.UI,pe.N,y.GH],encapsulation:2}))}return t(),s})();const Pt=()=>["all"],V0=t=>({"error-border":t}),Y0=()=>["no_utxo"],dt=t=>({width:t}),U0=t=>({"display-none":t});function X0(t,s){if(1&t&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function H0(t,s){1&t&&e.nrm(0,"mat-progress-bar",35)}function q0(t,s){1&t&&e.nrm(0,"th",36)}function z0(t,s){1&t&&(e.j41(0,"span",39)(1,"mat-icon",40),e.EFF(2,"warning"),e.k0s()())}function J0(t,s){if(1&t&&(e.j41(0,"td",37),e.DNE(1,z0,3,0,"span",38),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(),o=e.sdS(52);e.R7$(),e.Y8G("ngIf",n.amount_sat0))}}function yf(t,s){1&t&&e.nrm(0,"tr",57)}function bf(t,s){1&t&&e.nrm(0,"tr",58)}function Ff(t,s){1&t&&e.nrm(0,"mat-icon",40)}let xf=(()=>{var t;class s{constructor(i,o,a,l,h,f,P,w){this.logger=i,this.commonService=o,this.dataService=a,this.store=l,this.rtlEffects=h,this.decimalPipe=f,this.camelCaseWithReplace=P,this.snackBar=w,this.isDustUTXO=!1,this.dustAmount=1e3,this.faMoneyBillWave=I.ymQ,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:p.md,sortBy:"tx_id",sortOrder:p.oi.DESCENDING},this.addressType=p.aG,this.displayedColumns=[],this.listUTXOs=new _.I6([]),this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(){!this.isDustUTXO&&this.utxos&&this.utxos.length>0&&this.loadUTXOsTable(this.utxos),this.isDustUTXO&&this.dustUtxos&&this.dustUtxos.length>0&&this.loadUTXOsTable(this.dustUtxos)}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.ah).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),i.utxos&&i.utxos.length>0&&(this.dustUtxos=i.utxos?.filter(o=>+(o.amount_sat||0)0&&this.dustUtxos.length>0&&!this.isDustUTXO&&this.displayedColumns.unshift("is_dust"),this.loadUTXOsTable(this.isDustUTXO?this.dustUtxos:this.utxos)),this.logger.info(i)})}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):"is_dust"===i?"Dust":this.commonService.titleCase(i)}setFilterPredicate(){this.listUTXOs.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.label?i.label.toLowerCase():"")+(i.outpoint?.txid_str?i.outpoint.txid_str.toLowerCase():"")+(i.outpoint?.output_index?i.outpoint?.output_index:"")+(i.outpoint?.txid_bytes?i.outpoint?.txid_bytes.toLowerCase():"")+(i.address?i.address.toLowerCase():"")+(i.address_type?this.addressType[i.address_type].name.toLowerCase():"")+(i.amount_sat?i.amount_sat:"")+(i.confirmations?i.confirmations:"");break;case"is_dust":a=+(i?.amount_sat||0)"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"is_dust"===this.selFilterBy||"address_type"===this.selFilterBy?0===a.indexOf(o):a.includes(o)}}onUTXOClick(i){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"UTXO Information",message:[[{key:"txid",value:i.outpoint?.txid_str,title:"Transaction ID",width:100,type:p.UN.STRING,explorerLink:"tx"}],[{key:"label",value:i.label,title:"Label",width:100,type:p.UN.STRING}],[{key:"output_index",value:i.outpoint?.output_index,title:"Output Index",width:34,type:p.UN.NUMBER},{key:"amount_sat",value:i.amount_sat,title:"Amount (Sats)",width:33,type:p.UN.NUMBER},{key:"confirmations",value:i.confirmations,title:"Confirmations",width:33,type:p.UN.NUMBER}],[{key:"address_type",value:i.address_type?this.addressType[i.address_type].name:"",title:"Address Type",width:34},{key:"address",value:i.address,title:"Address",width:66}],[{key:"pk_script",value:i.pk_script,title:"PK Script",width:100,type:p.UN.STRING}]]}}}))}loadUTXOsTable(i){this.listUTXOs=new _.I6([...i]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(o,a)=>{switch(a){case"is_dust":return+(o.amount_sat||0){a&&this.dataService.leaseUTXO(i.outpoint?.txid_bytes||"",i.outpoint?.output_index||0).pipe((0,x.Q)(this.unSubs[0])).subscribe({next:l=>{this.snackBar.open("The UTXO has been leased till "+new Date(l).toString().substring(4,21).replace(" ","/").replace(" ","/").toUpperCase()+".")},error:l=>{this.snackBar.open(l+" UTXO not leased.","",{panelClass:"rtl-warn-snack-bar"})}})})}onBumpFee(i){this.store.dispatch((0,Y.xO)({payload:{data:{selUTXO:i,component:wt}}}))}onDownloadCSV(){this.listUTXOs.data&&this.listUTXOs.data.length>0&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(Fe.u),e.rXU(G.il),e.rXU(Ve.H),e.rXU(y.QX),e.rXU(ue.VD),e.rXU(we.UG))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-utxos"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},inputs:{isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("UTXOs")}]),e.OA$],decls:53,vars:19,consts:[["table",""],["emptySpace",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","end stretch","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","is_dust"],["mat-header-cell","","mat-sort-header","","matTooltip","Dust/Nondust",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","tx_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","output"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","label"],["matColumnDef","address_type"],["matColumnDef","address"],["matColumnDef","amount_sat"],["matColumnDef","confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_utxo"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Dust/Nondust"],["mat-cell",""],["matTooltip","Risk of dust attack","matTooltipPosition","right",4,"ngIf","ngIfElse"],["matTooltip","Risk of dust attack","matTooltipPosition","right"],["fxLayoutAlign","start center","color","warn",1,"small-icon"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row","fxLayoutAlign","start center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"div",4)(3,"mat-form-field",5)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",6),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilterBy,f)||(a.selFilterBy=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,X0,2,2,"mat-option",7),e.k0s()()(),e.j41(9,"mat-form-field",5)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",8),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(13,"div",9)(14,"div",10),e.DNE(15,H0,1,0,"mat-progress-bar",11),e.j41(16,"table",12,0),e.qex(18,13),e.DNE(19,q0,1,0,"th",14)(20,J0,2,2,"td",15),e.bVm(),e.qex(21,16),e.DNE(22,Q0,2,0,"th",17)(23,W0,4,4,"td",15),e.bVm(),e.qex(24,18),e.DNE(25,Z0,2,0,"th",19)(26,K0,3,1,"td",15),e.bVm(),e.qex(27,20),e.DNE(28,ef,2,0,"th",17)(29,tf,4,4,"td",15),e.bVm(),e.qex(30,21),e.DNE(31,nf,2,0,"th",17)(32,af,3,1,"td",15),e.bVm(),e.qex(33,22),e.DNE(34,sf,2,0,"th",17)(35,of,4,4,"td",15),e.bVm(),e.qex(36,23),e.DNE(37,lf,2,0,"th",19)(38,rf,4,3,"td",15),e.bVm(),e.qex(39,24),e.DNE(40,cf,2,0,"th",19)(41,pf,4,3,"td",15),e.bVm(),e.qex(42,25),e.DNE(43,mf,6,0,"th",26)(44,hf,12,3,"td",27),e.bVm(),e.qex(45,28),e.DNE(46,gf,4,3,"td",29),e.bVm(),e.DNE(47,Cf,1,3,"tr",30)(48,yf,1,0,"tr",31)(49,bf,1,0,"tr",32),e.k0s(),e.nrm(50,"mat-paginator",33),e.k0s()()(),e.DNE(51,Ff,1,0,"ng-template",null,1,e.C5r)}2&o&&(e.R7$(6),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",a.utxos&&a.utxos.length>0&&a.dustUtxos&&a.dustUtxos.length>0&&!a.isDustUTXO?e.lJ4(14,Pt).concat(a.displayedColumns.slice(0,-1)):e.lJ4(15,Pt).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(3),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.listUTXOs)("ngClass",e.eq3(16,V0,""!==a.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(18,Y0)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,ke.An,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,fe.oV,X.iy,K.ZF,K.Ld,y.GH,y.QX],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return t(),s})();const vf=()=>["all"],Tf=t=>({"error-border":t}),kf=()=>["no_transaction"],_t=t=>({width:t}),Sf=t=>({"display-none":t});function Rf(t,s){if(1&t&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function Ef(t,s){1&t&&e.nrm(0,"mat-progress-bar",33)}function If(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Date/Time"),e.k0s())}function wf(t,s){if(1&t&&(e.j41(0,"td",35),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*n.time_stamp,"dd/MMM/y HH:mm"))}}function Lf(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Label"),e.k0s())}function jf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,_t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.label)}}function Gf(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Block Hash"),e.k0s())}function Df(t,s){if(1&t&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,_t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.block_hash)}}function Nf(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Transaction Hash"),e.k0s())}function Pf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,_t,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.tx_hash)}}function Bf(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Amount (Sats)"),e.k0s())}function Af(t,s){if(1&t&&(e.j41(0,"span",41),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.JRh(e.bMT(2,1,n.amount))}}function $f(t,s){if(1&t&&(e.j41(0,"span",42),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&t){const n=e.XpG().$implicit;e.R7$(),e.SpI("(",e.bMT(2,1,-1*n.amount),")")}}function Mf(t,s){if(1&t&&(e.j41(0,"td",35),e.DNE(1,Af,3,3,"span",39)(2,$f,3,3,"span",40),e.k0s()),2&t){const n=s.$implicit;e.R7$(),e.Y8G("ngIf",n.amount>0||0===n.amount),e.R7$(),e.Y8G("ngIf",n.amount<0)}}function Of(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Fees (Sats)"),e.k0s())}function Vf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_fees))}}function Yf(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Block Height"),e.k0s())}function Uf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.block_height))}}function Xf(t,s){1&t&&(e.j41(0,"th",38),e.EFF(1,"Confirmations"),e.k0s())}function Hf(t,s){if(1&t&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI(" ",e.bMT(3,1,null==n?null:n.num_confirmations)," ")}}function qf(t,s){if(1&t){const n=e.RV6();e.j41(0,"th",43)(1,"div",44)(2,"mat-select",45),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",46),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function zf(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",47)(1,"button",48),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onTransactionClick(o))}),e.EFF(2,"View Info"),e.k0s()()}}function Jf(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No transaction available."),e.k0s())}function Qf(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting transactions..."),e.k0s())}function Wf(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Zf(t,s){if(1&t&&(e.j41(0,"td",49),e.DNE(1,Jf,2,0,"p",50)(2,Qf,2,0,"p",50)(3,Wf,2,1,"p",50),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.listTransactions&&n.listTransactions.data)||(null==n.listTransactions||null==n.listTransactions.data?null:n.listTransactions.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.listTransactions&&n.listTransactions.data)||(null==n.listTransactions||null==n.listTransactions.data?null:n.listTransactions.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.listTransactions&&n.listTransactions.data)||(null==n.listTransactions||null==n.listTransactions.data?null:n.listTransactions.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Kf(t,s){if(1&t&&e.nrm(0,"tr",51),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,Sf,(null==n.listTransactions?null:n.listTransactions.data)&&(null==n.listTransactions||null==n.listTransactions.data?null:n.listTransactions.data.length)>0))}}function e2(t,s){1&t&&e.nrm(0,"tr",52)}function t2(t,s){1&t&&e.nrm(0,"tr",53)}let n2=(()=>{var t;class s{constructor(i,o,a,l,h){this.logger=i,this.commonService=o,this.store=a,this.datePipe=l,this.camelCaseWithReplace=h,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transactions",recordsPerPage:p.md,sortBy:"time_stamp",sortOrder:p.oi.DESCENDING},this.faHistory=I.Int,this.displayedColumns=[],this.listTransactions=new _.I6([]),this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(){this.transactions&&this.transactions.length>0&&this.loadTransactionsTable(this.transactions)}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.gN).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),i.transactions&&i.transactions.length>0&&(this.transactions=i.transactions,this.loadTransactionsTable(this.transactions)),this.logger.info(i)})}onTransactionClick(i){this.store.dispatch((0,Y.xO)({payload:{data:{type:p.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"block_hash",value:i.block_hash,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"tx_hash",value:i.tx_hash,title:"Transaction Hash",width:100,explorerLink:"tx"}],[{key:"label",value:i.label,title:"Label",width:100,type:p.UN.STRING}],[{key:"time_stamp",value:i.time_stamp,title:"Date/Time",width:50,type:p.UN.DATE_TIME},{key:"block_height",value:i.block_height,title:"Block Height",width:50,type:p.UN.NUMBER}],[{key:"num_confirmations",value:i.num_confirmations,title:"Number of Confirmations",width:34,type:p.UN.NUMBER},{key:"total_fees",value:i.total_fees,title:"Total Fees (Sats)",width:33,type:p.UN.NUMBER},{key:"amount",value:i.amount,title:"Amount (Sats)",width:33,type:p.UN.NUMBER}],[{key:"dest_addresses",value:i.dest_addresses,title:"Destination Addresses",width:100,type:p.UN.ARRAY}]],scrollable:i.dest_addresses&&i.dest_addresses.length>5}}}))}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.listTransactions.filterPredicate=(i,o)=>{let a="";switch(this.selFilterBy){case"all":a=(i.time_stamp?this.datePipe.transform(new Date(1e3*i.time_stamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(i).toLowerCase();break;case"time_stamp":a=this.datePipe.transform(new Date(1e3*(i?.time_stamp||0)),"dd/MMM/YYYY HH:mm")?.toLowerCase()||"";break;default:a=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return a.includes(o)}}loadTransactionsTable(i){this.listTransactions=new _.I6([...i]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.listTransactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listTransactions)}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(y.vh),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-transaction-history"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Transactions")}]),e.OA$],decls:51,vars:18,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","end stretch","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","time_stamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","label"],["matColumnDef","block_hash"],["matColumnDef","tx_hash"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_fees"],["matColumnDef","block_height"],["matColumnDef","num_confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3)(3,"mat-form-field",4)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",5),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilterBy,f)||(a.selFilterBy=f),r.Njj(f)}),e.bIt("selectionChange",function(){return r.eBV(l),a.selFilter="",r.Njj(a.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Rf,2,2,"mat-option",6),e.k0s()()(),e.j41(9,"mat-form-field",4)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",7),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(13,"div",8)(14,"div",9),e.DNE(15,Ef,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,If,2,0,"th",13)(20,wf,3,4,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Lf,2,0,"th",13)(23,jf,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,Gf,2,0,"th",13)(26,Df,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,Nf,2,0,"th",13)(29,Pf,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,Bf,2,0,"th",19)(32,Mf,3,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Of,2,0,"th",19)(35,Vf,4,3,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,Yf,2,0,"th",19)(38,Uf,4,3,"td",14),e.bVm(),e.qex(39,22),e.DNE(40,Xf,2,0,"th",19)(41,Hf,4,3,"td",14),e.bVm(),e.qex(42,23),e.DNE(43,qf,6,0,"th",24)(44,zf,3,0,"td",25),e.bVm(),e.qex(45,26),e.DNE(46,Zf,4,3,"td",27),e.bVm(),e.DNE(47,Kf,1,3,"tr",28)(48,e2,1,0,"tr",29)(49,t2,1,0,"tr",30),e.k0s(),e.nrm(50,"mat-paginator",31),e.k0s()()()}2&o&&(e.R7$(6),e.R50("ngModel",a.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,vf).concat(a.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",a.selFilter),e.R7$(3),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",a.tableSetting.sortBy)("matSortDirection",a.tableSetting.sortOrder)("dataSource",a.listTransactions)("ngClass",e.eq3(15,Tf,""!==a.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(17,kf)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.ZF,K.Ld,y.QX,y.vh],encapsulation:2}))}return t(),s})();function i2(t,s){if(1&t&&(e.j41(0,"span",5),e.EFF(1,"UTXOs"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numUtxos))}}function a2(t,s){if(1&t&&(e.j41(0,"span",5),e.EFF(1,"Transactions"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numTransactions))}}function s2(t,s){if(1&t&&(e.j41(0,"span",5),e.EFF(1,"Dust UTXOs"),e.k0s()),2&t){const n=e.XpG();e.Y8G("matBadge",e.mNQ(n.numDustUtxos))}}let o2=(()=>{var t;class s{constructor(i,o){this.logger=i,this.store=o,this.selectedTableIndex=0,this.selectedTableIndexChange=new e.bkB,this.DUST_AMOUNT=1e3,this.numTransactions=0,this.numUtxos=0,this.numDustUtxos=0,this.unSubs=[new C.B,new C.B,new C.B]}ngOnInit(){this.store.dispatch((0,N.mh)()),this.store.dispatch((0,N.SM)()),this.store.select(E.ah).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{i.utxos&&i.utxos.length>0&&(this.numUtxos=i.utxos.length,this.numDustUtxos=i.utxos?.filter(o=>o.amount_sat&&+o.amount_sat{i.transactions&&i.transactions.length>0&&(this.numTransactions=i.transactions.length),this.logger.info(i)})}onSelectedIndexChanged(i){this.selectedTableIndexChange.emit(i)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},standalone:!1,decls:11,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedIndex"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"isDustUTXO","dustAmount"],["fxLayout","row","fxFlex","100"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"mat-tab-group",1),e.bIt("selectedIndexChange",function(h){return a.onSelectedIndexChanged(h)}),e.j41(2,"mat-tab"),e.DNE(3,i2,2,2,"ng-template",2),e.nrm(4,"rtl-on-chain-utxos",3),e.k0s(),e.j41(5,"mat-tab"),e.DNE(6,a2,2,2,"ng-template",2),e.nrm(7,"rtl-on-chain-transaction-history",4),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,s2,2,2,"ng-template",2),e.nrm(10,"rtl-on-chain-utxos",3),e.k0s()()()),2&o&&(e.R7$(),e.Y8G("selectedIndex",a.selectedTableIndex),e.R7$(3),e.Y8G("isDustUTXO",!1)("dustAmount",a.DUST_AMOUNT),e.R7$(6),e.Y8G("isDustUTXO",!0)("dustAmount",a.DUST_AMOUNT))},dependencies:[b.DJ,b.sA,b.UI,at.k,J.ES,J.mq,J.T8,xf,n2],encapsulation:2}))}return t(),s})();const l2=(t,s)=>[t,s];function r2(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",13),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=null==o?null:o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("active",i.activeLink===(null==n?null:n.link))("routerLink",e.l_i(3,l2,null==n?null:n.link,null==i.selectedTable?null:i.selectedTable.name)),e.R7$(),e.JRh(null==n?null:n.name)}}let c2=(()=>{var t;class s{constructor(i,o,a){this.store=i,this.router=o,this.activatedRoute=a,this.faExchangeAlt=I._qq,this.faChartPie=I.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"},{link:"sweep",name:"Sweep All"}],this.activeLink=this.links[0].link,this.tables=[{id:0,name:"utxos"},{id:1,name:"trans"},{id:2,name:"dustUtxos"}],this.selectedTable=this.tables[0],this.unSubs=[new C.B,new C.B,new C.B,new C.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.selectedTable=this.tables.find(o=>o.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link,this.selectedTable=this.tables.find(l=>l.name===o.urlAfterRedirects.substring(o.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[1])).subscribe(o=>{this.selNode=o}),this.store.select(E.$7).pipe((0,x.Q)(this.unSubs[2])).subscribe(o=>{this.balances=[{title:"Total Balance",dataValue:o.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:o.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:o.blockchainBalance.unconfirmed_balance||0}]})}onSelectedTableIndexChanged(i){this.selectedTable=this.tables.find(o=>o.id===i)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il),e.rXU(j.Ix),e.rXU(j.nX))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain"]],standalone:!1,decls:23,vars:6,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100",3,"selectedTableIndexChange","selectedTableIndex"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"On-chain Balance"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),e.nrm(7,"rtl-currency-unit-converter",6),e.k0s()()(),e.j41(8,"div",1),e.nrm(9,"fa-icon",2),e.j41(10,"span",3),e.EFF(11,"On-chain Transactions"),e.k0s()(),e.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),e.DNE(16,r2,2,6,"div",9),e.k0s(),e.nrm(17,"mat-tab-nav-panel",null,0),e.j41(19,"div",10),e.nrm(20,"router-outlet"),e.k0s(),e.j41(21,"div",11)(22,"rtl-utxo-tables",12),e.bIt("selectedTableIndexChange",function(f){return r.eBV(l),r.Njj(a.onSelectedTableIndexChanged(f))}),e.k0s()()()()()}if(2&o){const l=e.sdS(18);e.R7$(),e.Y8G("icon",a.faChartPie),e.R7$(6),e.Y8G("values",a.balances),e.R7$(2),e.Y8G("icon",a.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links),e.R7$(6),e.Y8G("selectedTableIndex",null==a.selectedTable?null:a.selectedTable.id)}},dependencies:[y.Sq,ee.aY,B.RN,B.m2,b.DJ,b.sA,b.UI,J.Bu,J.hQ,J.Ql,st.f,j.n3,le.Wk,o2],encapsulation:2}))}return t(),s})();var p2=S(396);function m2(t,s){if(1&t&&(e.j41(0,"mat-option",6),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.SpI(" ",n.addressTp," ")}}let u2=(()=>{var t;class s{constructor(i,o,a){this.store=i,this.lndEffects=o,this.commonService=a,this.addressTypes=[],this.selectedAddressType=p.Ld[2],this.newAddress="",this.flgVersionCompatible=!0,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.store.select(E.pI).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(i.version,"0.15.0"),this.addressTypes=this.flgVersionCompatible?p.Ld:p.Ld.filter(o=>"4"!==o.addressId)})}onGenerateAddress(){this.store.dispatch((0,N.XT)({payload:this.selectedAddressType})),this.lndEffects.setNewAddress.pipe((0,be.s)(1)).subscribe(i=>{this.newAddress=i,setTimeout(()=>{this.store.dispatch((0,Y.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:p2.f}}}))},0)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il),e.rXU(Pe.L),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-receive"]],standalone:!1,decls:10,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","space-between center","fxLayoutAlign.gt-sm","start center"],["fxLayout","column","fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["name","address_type","tabindex","1",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","tabindex","2",3,"click"],[3,"value"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-label"),e.EFF(4,"Address Type"),e.k0s(),e.j41(5,"mat-select",3),e.mxI("ngModelChange",function(h){return e.DH7(a.selectedAddressType,h)||(a.selectedAddressType=h),h}),e.DNE(6,m2,2,2,"mat-option",4),e.k0s()(),e.j41(7,"div")(8,"button",5),e.bIt("click",function(){return a.onGenerateAddress()}),e.EFF(9,"Generate Address"),e.k0s()()()()),2&o&&(e.R7$(5),e.R50("ngModel",a.selectedAddressType),e.R7$(),e.Y8G("ngForOf",a.addressTypes))},dependencies:[y.Sq,g.BC,g.vS,$.$z,R.rl,R.nJ,b.DJ,b.sA,b.UI,O.VO,ae.wT],encapsulation:2}))}return t(),s})();var h2=S(2852);const d2=["form"],_2=["formSweepAll"],f2=["stepper"];function g2(t,s){if(1&t&&(e.j41(0,"div",16),e.nrm(1,"fa-icon",17),e.j41(2,"span",18)(3,"div"),e.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(5,"span",19)(6,"span"),e.EFF(7),e.k0s(),e.j41(8,"span"),e.EFF(9),e.k0s(),e.j41(10,"span"),e.EFF(11),e.k0s(),e.j41(12,"span"),e.EFF(13),e.k0s(),e.j41(14,"span"),e.EFF(15),e.k0s()()()()),2&t){const n=e.XpG();e.R7$(),e.Y8G("icon",n.faInfoCircle),e.R7$(6),e.SpI("- High: ",n.recommendedFee.fastestFee||"Unknown"),e.R7$(2),e.SpI("- Medium: ",n.recommendedFee.halfHourFee||"Unknown"),e.R7$(2),e.SpI("- Low: ",n.recommendedFee.hourFee||"Unknown"),e.R7$(2),e.SpI("- Economy: ",n.recommendedFee.economyFee||"Unknown"),e.R7$(2),e.SpI("- Minimum: ",n.recommendedFee.minimumFee||"Unknown")}}function C2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function y2(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.amountError)}}function b2(t,s){if(1&t&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n),e.R7$(),e.JRh(n)}}function F2(t,s){if(1&t&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function x2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function v2(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",40)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",41,4),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.transactionBlocks,o)||(a.transactionBlocks=o),r.Njj(o)}),e.k0s(),e.DNE(5,x2,2,0,"mat-error",23),e.k0s()}if(2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.transactionBlocks),e.R7$(2),e.Y8G("ngIf",!n.transactionBlocks)}}function T2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function k2(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-form-field",40)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",42,5),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.transactionFees,o)||(a.transactionFees=o),r.Njj(o)}),e.k0s(),e.DNE(5,T2,2,0,"mat-error",23),e.k0s()}if(2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",n.transactionFees),e.R7$(2),e.Y8G("ngIf",!n.transactionFees)}}function S2(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.sendFundError)}}function R2(t,s){if(1&t&&(e.j41(0,"div",43),e.nrm(1,"fa-icon",17),e.DNE(2,S2,2,1,"span",23),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.sendFundError)}}function E2(t,s){if(1&t){const n=e.RV6();e.j41(0,"form",20,1),e.bIt("submit",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSendFunds())})("reset",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.resetData())}),e.j41(2,"mat-form-field",21)(3,"mat-label"),e.EFF(4,"Bitcoin Address"),e.k0s(),e.j41(5,"input",22,2),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.transactionAddress,o)||(a.transactionAddress=o),r.Njj(o)}),e.k0s(),e.DNE(7,C2,2,0,"mat-error",23),e.k0s(),e.j41(8,"mat-form-field",24)(9,"mat-label"),e.EFF(10,"Amount"),e.k0s(),e.j41(11,"input",25,3),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.transactionAmount,o)||(a.transactionAmount=o),r.Njj(o)}),e.k0s(),e.j41(13,"span",26),e.EFF(14),e.k0s(),e.DNE(15,y2,2,1,"mat-error",23),e.k0s(),e.j41(16,"mat-form-field",27)(17,"mat-label"),e.EFF(18,"Amount Unit"),e.k0s(),e.j41(19,"mat-select",28),e.bIt("selectionChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.onAmountUnitChange(o))}),e.DNE(20,b2,2,2,"mat-option",29),e.k0s()(),e.j41(21,"div",30)(22,"mat-form-field",31)(23,"mat-label"),e.EFF(24,"Transaction Type"),e.k0s(),e.j41(25,"mat-select",32),e.mxI("valueChange",function(o){r.eBV(n);const a=e.XpG();return e.DH7(a.selTransType,o)||(a.selTransType=o),r.Njj(o)}),e.DNE(26,F2,2,2,"mat-option",29),e.k0s()(),e.DNE(27,v2,6,4,"mat-form-field",33)(28,k2,6,4,"mat-form-field",33),e.k0s(),e.nrm(29,"div",34),e.DNE(30,R2,3,2,"div",35),e.j41(31,"div",36)(32,"button",37),e.EFF(33,"Clear Fields"),e.k0s(),e.j41(34,"button",38),e.EFF(35,"Send Funds"),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(5),e.R50("ngModel",n.transactionAddress),e.R7$(2),e.Y8G("ngIf",!n.transactionAddress),e.R7$(4),e.Y8G("step",100)("min",0),e.R50("ngModel",n.transactionAmount),e.R7$(3),e.SpI("",n.selAmountUnit," "),e.R7$(),e.Y8G("ngIf",!n.transactionAmount),e.R7$(4),e.Y8G("value",n.selAmountUnit),e.R7$(),e.Y8G("ngForOf",n.amountUnits),e.R7$(5),e.R50("value",n.selTransType),e.R7$(),e.Y8G("ngForOf",n.transTypes),e.R7$(),e.Y8G("ngIf","1"===n.selTransType),e.R7$(),e.Y8G("ngIf","2"===n.selTransType),e.R7$(2),e.Y8G("ngIf",""!==n.sendFundError)}}function I2(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(3);e.JRh(n.passwordFormLabel)}}function w2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function L2(t,s){if(1&t){const n=e.RV6();e.j41(0,"mat-step",47)(1,"form",66),e.DNE(2,I2,1,1,"ng-template",60),e.j41(3,"div",7)(4,"mat-form-field",18)(5,"mat-label"),e.EFF(6,"Password"),e.k0s(),e.nrm(7,"input",67),e.DNE(8,w2,2,0,"mat-error",23),e.k0s()(),e.j41(9,"div",68)(10,"button",63),e.bIt("click",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.onAuthenticate())}),e.EFF(11,"Confirm"),e.k0s()()()()}if(2&t){const n=e.XpG(2);e.Y8G("stepControl",n.passwordFormGroup)("editable",n.flgEditable),e.R7$(),e.Y8G("formGroup",n.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==n.passwordFormGroup.controls.password.errors?null:n.passwordFormGroup.controls.password.errors.required)}}function j2(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(2);e.JRh(n.sendFundFormLabel)}}function G2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function D2(t,s){if(1&t&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&t){const n=s.$implicit;e.Y8G("value",n.id),e.R7$(),e.SpI(" ",n.name," ")}}function N2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function P2(t,s){if(1&t&&(e.j41(0,"mat-form-field",69)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.nrm(3,"input",70),e.DNE(4,N2,2,0,"mat-error",23),e.k0s()),2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==n.sendFundFormGroup.controls.transactionBlocks.errors?null:n.sendFundFormGroup.controls.transactionBlocks.errors.required)}}function B2(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function A2(t,s){if(1&t&&(e.j41(0,"mat-form-field",69)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.nrm(3,"input",71),e.DNE(4,B2,2,0,"mat-error",23),e.k0s()),2&t){const n=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==n.sendFundFormGroup.controls.transactionFees.errors?null:n.sendFundFormGroup.controls.transactionFees.errors.required)}}function $2(t,s){if(1&t&&e.EFF(0),2&t){const n=e.XpG(2);e.JRh(n.confirmFormLabel)}}function M2(t,s){if(1&t&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.JRh(n.sendFundError)}}function O2(t,s){if(1&t&&(e.j41(0,"div",43),e.nrm(1,"fa-icon",17),e.DNE(2,M2,2,1,"span",23),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("icon",n.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==n.sendFundError)}}function V2(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",44)(1,"mat-vertical-stepper",45,6),e.bIt("selectionChange",function(o){r.eBV(n);const a=e.XpG();return r.Njj(a.stepSelectionChanged(o))}),e.DNE(3,L2,12,4,"mat-step",46),e.j41(4,"mat-step",47)(5,"form",48),e.DNE(6,j2,1,1,"ng-template",49),e.j41(7,"div",50)(8,"mat-form-field",51)(9,"mat-label"),e.EFF(10,"Bitcoin Address"),e.k0s(),e.nrm(11,"input",52),e.DNE(12,G2,2,0,"mat-error",23),e.k0s(),e.j41(13,"mat-form-field",53)(14,"mat-label"),e.EFF(15,"Transaction Type"),e.k0s(),e.j41(16,"mat-select",54),e.DNE(17,D2,2,2,"mat-option",29),e.k0s()(),e.DNE(18,P2,5,3,"mat-form-field",55)(19,A2,5,3,"mat-form-field",55),e.k0s(),e.j41(20,"div",56)(21,"button",57),e.EFF(22,"Next"),e.k0s()()()(),e.j41(23,"mat-step",58)(24,"form",59),e.DNE(25,$2,1,1,"ng-template",60),e.j41(26,"div",44)(27,"div",61),e.nrm(28,"fa-icon",62),e.j41(29,"span"),e.EFF(30,"You are about to sweep all funds from RTL. Are you sure?"),e.k0s()(),e.DNE(31,O2,3,2,"div",35),e.j41(32,"div",56)(33,"button",63),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onSendFunds())}),e.EFF(34,"Sweep All Funds"),e.k0s()()()()()(),e.j41(35,"div",64)(36,"button",65),e.EFF(37),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("ngIf",!n.appConfig.SSO.rtlSSO),e.R7$(),e.Y8G("stepControl",n.sendFundFormGroup)("editable",n.flgEditable),e.R7$(),e.Y8G("formGroup",n.sendFundFormGroup),e.R7$(7),e.Y8G("ngIf",null==n.sendFundFormGroup.controls.transactionAddress.errors?null:n.sendFundFormGroup.controls.transactionAddress.errors.required),e.R7$(5),e.Y8G("ngForOf",n.transTypes),e.R7$(),e.Y8G("ngIf","1"===n.sendFundFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===n.sendFundFormGroup.controls.selTransType.value),e.R7$(4),e.Y8G("stepControl",n.confirmFormGroup),e.R7$(),e.Y8G("formGroup",n.confirmFormGroup),e.R7$(4),e.Y8G("icon",n.faExclamationTriangle),e.R7$(3),e.Y8G("ngIf",""!==n.sendFundError),e.R7$(5),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(n.flgValidated?"Close":"Cancel")}}let Y2=(()=>{var t;class s{constructor(i,o,a,l,h,f,P,w,M,BC,AC){this.dialogRef=i,this.data=o,this.logger=a,this.dataService=l,this.store=h,this.rtlEffects=f,this.commonService=P,this.decimalPipe=w,this.snackBar=M,this.actions=BC,this.formBuilder=AC,this.faExclamationTriangle=I.zpE,this.faInfoCircle=I.iW_,this.sweepAll=!1,this.addressTypes=[],this.selectedAddress={},this.blockchainBalance={},this.information={},this.newAddress="",this.transactionAddress="",this.transactionAmount=null,this.transactionFees=null,this.transactionBlocks=null,this.transTypes=[{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],this.selTransType="1",this.fiatConversion=!1,this.amountUnits=p.A0,this.selAmountUnit=p.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=p.k,this.sendFundError="",this.flgValidated=!1,this.flgEditable=!0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds",this.confirmFormLabel="Confirm sweep",this.amountError="Amount is Required.",this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B]}ngOnInit(){this.dataService.getRecommendedFeeRates().pipe((0,x.Q)(this.unSubs[0])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}}),this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[g.k0.required]],password:["",[g.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",g.k0.required],transactionBlocks:[null],transactionFees:[null],selTransType:["1",g.k0.required]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.selTransType.valueChanges.pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{"1"===i?(this.sendFundFormGroup.controls.transactionBlocks.setValidators([g.k0.required]),this.sendFundFormGroup.controls.transactionBlocks.setValue(null),this.sendFundFormGroup.controls.transactionFees.setValidators(null),this.sendFundFormGroup.controls.transactionFees.setValue(null)):(this.sendFundFormGroup.controls.transactionBlocks.setValidators(null),this.sendFundFormGroup.controls.transactionBlocks.setValue(null),this.sendFundFormGroup.controls.transactionFees.setValidators([g.k0.required]),this.sendFundFormGroup.controls.transactionFees.setValue(null))}),this.store.select(W.qv).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.appConfig=i}),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.fiatConversion=i.settings.fiatConversion,this.amountUnits=i.settings.currencyUnits,this.logger.info(i)}),this.actions.pipe((0,x.Q)(this.unSubs[4]),(0,L.p)(i=>i.type===p.QP.UPDATE_API_CALL_STATUS_LND||i.type===p.QP.SET_CHANNEL_TRANSACTION_RES_LND)).subscribe(i=>{i.type===p.QP.SET_CHANNEL_TRANSACTION_RES_LND&&(this.store.dispatch((0,Y.UI)({payload:this.sweepAll?"All Funds Sent Successfully!":"Fund Sent Successfully!"})),this.dialogRef.close()),i.type===p.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===p.wn.ERROR&&"SetChannelTransaction"===i.payload.action&&(this.sendFundError=i.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,Y.oz)({payload:h2(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,be.s)(1)).subscribe(i=>{"ERROR"!==i?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="";const i={amount:this.transactionAmount?this.transactionAmount:0,sendAll:this.sweepAll};this.sweepAll?(i.address=this.sendFundFormGroup.controls.transactionAddress.value,"1"===this.sendFundFormGroup.controls.selTransType.value&&(i.blocks=this.sendFundFormGroup.controls.transactionBlocks.value),"2"===this.sendFundFormGroup.controls.selTransType.value&&(i.fees=this.sendFundFormGroup.controls.transactionFees.value)):(i.address=this.transactionAddress,"1"===this.selTransType&&(i.blocks=this.transactionBlocks),"2"===this.selTransType&&(i.fees=this.transactionFees)),this.transactionAmount&&this.selAmountUnit!==p.BQ.SATS?this.commonService.convertCurrency(this.transactionAmount,this.selAmountUnit===this.amountUnits[2]?p.BQ.OTHER:this.selAmountUnit,p.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,x.Q)(this.unSubs[5])).subscribe({next:o=>{this.selAmountUnit=p.BQ.SATS,i.amount=+(this.decimalPipe.transform(o[this.amountUnits[0]],this.currencyUnitFormats[this.amountUnits[0]])?.replace(/,/g,"")||0),this.store.dispatch((0,N.aB)({payload:i}))},error:o=>{this.transactionAmount=null,this.selAmountUnit=p.BQ.SATS,this.amountError="Conversion Error: "+o}}):this.store.dispatch((0,N.aB)({payload:i}))}get invalidValues(){return this.sweepAll?!this.sendFundFormGroup.controls.transactionAddress.value||""===this.sendFundFormGroup.controls.transactionAddress.value||"1"===this.sendFundFormGroup.controls.selTransType.value&&(!this.sendFundFormGroup.controls.transactionBlocks.value||this.sendFundFormGroup.controls.transactionBlocks.value<=0)||"2"===this.sendFundFormGroup.controls.selTransType.value&&(!this.sendFundFormGroup.controls.transactionFees.value||this.sendFundFormGroup.controls.transactionFees.value<=0):!this.transactionAddress||""===this.transactionAddress||!this.transactionAmount||this.transactionAmount<=0||"1"===this.selTransType&&(!this.transactionBlocks||this.transactionBlocks<=0)||"2"===this.selTransType&&(!this.transactionFees||this.transactionFees<=0)}resetData(){this.sendFundError="",this.selTransType="1",this.transactionAddress="",this.transactionBlocks=null,this.transactionFees=null,this.sweepAll||(this.transactionAmount=null)}stepSelectionChanged(i){switch(this.sendFundError="",i.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds";break;case 1:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds";break;case 2:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds | Address: "+this.sendFundFormGroup.controls.transactionAddress.value+" | "+this.transTypes[this.sendFundFormGroup.controls.selTransType.value-1].name+("2"===this.sendFundFormGroup.controls.selTransType.value?" (Sats/vByte)":"")+": "+("1"===this.sendFundFormGroup.controls.selTransType.value?this.sendFundFormGroup.controls.transactionBlocks.value:this.sendFundFormGroup.controls.transactionFees.value)}i.selectedIndex{this.selAmountUnit=i.value,o.transactionAmount=+(o.decimalPipe.transform(f[l],o.currencyUnitFormats[l])?.replace(/,/g,"")||0)},error:f=>{o.transactionAmount=null,this.amountError="Conversion Error: "+f,this.selAmountUnit=a,l=a}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(ne.CP),e.rXU(ne.Vh),e.rXU(V.gP),e.rXU(Fe.u),e.rXU(G.il),e.rXU(Ve.H),e.rXU(z.h),e.rXU(y.QX),e.rXU(we.UG),e.rXU(ce.En),e.rXU(g.ze))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-send-modal"]],viewQuery:function(o,a){if(1&o&&(e.GBs(d2,7),e.GBs(_2,5),e.GBs(f2,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.form=l.first),e.mGM(l=e.lsd())&&(a.formSweepAll=l.first),e.mGM(l=e.lsd())&&(a.stepper=l.first)}},standalone:!1,decls:13,vars:5,consts:[["sweepAllBlock",""],["form","ngForm"],["address","ngModel"],["amnt","ngModel"],["blocks","ngModel"],["fees","ngModel"],["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column",1,"padding-gap-x-large"],["fxFlex","100","class","alert alert-info mb-2",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["fxFlex","100",1,"alert","alert-info","mb-2"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex.gt-sm","55"],["autoFocus","","matInput","","name","address","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","30"],["matInput","","name","amt","type","number","required","",3,"ngModelChange","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex.gt-sm","10","fxLayoutAlign","start end"],["required","","name","amountUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","60","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxLayout","column","fxFlex","48"],[3,"valueChange","value"],["fxFlex","48",4,"ngIf"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit"],[3,"value"],["fxFlex","48"],["matInput","","type","number","name","blcks","required","",3,"ngModelChange","step","min","ngModel"],["matInput","","type","number","name","chainFees","required","",3,"ngModelChange","step","min","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl","editable"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","98","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxLayout","column","fxFlex.gt-sm","45"],["matInput","","formControlName","transactionAddress","name","address","required",""],["fxLayout","column","fxFlex.gt-sm","25"],["formControlName","selTransType"],["fxFlex.gt-sm","25","fxLayoutAlign","start end",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","type","button","matStepperNext",""],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxFlex","100",1,"w-100","alert","alert-warn"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["mat-button","","color","primary","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["autoFocus","","matInput","","type","password","formControlName","password","required",""],["fxLayout","row",1,"mt-2"],["fxFlex.gt-sm","25","fxLayoutAlign","start end"],["matInput","","formControlName","transactionBlocks","type","number","name","blcks","required","",3,"step","min"],["matInput","","formControlName","transactionFees","type","number","name","chainFees","required","",3,"step","min"]],template:function(o,a){if(1&o&&(e.j41(0,"div",7)(1,"div",8)(2,"mat-card-header",9)(3,"div",10)(4,"span",11),e.EFF(5),e.k0s()(),e.j41(6,"button",12),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",13),e.DNE(9,g2,16,6,"div",14)(10,E2,36,14,"form",15),e.k0s()()(),e.DNE(11,V2,38,15,"ng-template",null,0,e.C5r)),2&o){const l=e.sdS(12);e.R7$(5),e.JRh(a.sweepAll?"Sweep All Funds":"Send Funds"),e.R7$(),e.Y8G("mat-dialog-close",!1),e.R7$(3),e.Y8G("ngIf",a.recommendedFee.minimumFee),e.R7$(),e.Y8G("ngIf",!a.sweepAll)("ngIfElse",l)}},dependencies:[y.Sq,y.bT,g.qT,g.me,g.Q0,g.BC,g.cb,g.YS,g.VZ,g.vS,g.cV,g.j4,g.JD,ee.aY,ne.tx,$.$z,B.m2,B.MM,Z.fg,R.rl,R.nJ,R.TL,R.yw,b.DJ,b.sA,b.UI,O.VO,ae.wT,de.V5,de.Ti,de.M6,de.F7,pe.N,ye.V],encapsulation:2}))}return t(),s})(),Bt=(()=>{var t;class s{constructor(i,o){this.store=i,this.activatedRoute=o,this.sweepAll=!1,this.unSubs=[new C.B,new C.B]}ngOnInit(){this.activatedRoute.data.pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.sweepAll=i.sweepAll})}openSendFundsModal(){this.store.dispatch((0,Y.xO)({payload:{data:{sweepAll:this.sweepAll,component:Y2}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(G.il),e.rXU(j.nX))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-on-chain-send"]],standalone:!1,decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return a.openSendFundsModal()}),e.EFF(3),e.k0s()()()),2&o&&(e.R7$(3),e.JRh(a.sweepAll?"Sweep All":"Send Funds"))},dependencies:[$.$z,b.DJ,b.sA,b.UI],encapsulation:2}))}return t(),s})();const U2=t=>({"mt-1":t}),At=t=>({"dashboard-card-content":!0,"error-border":t});function X2(t,s){1&t&&e.nrm(0,"mat-progress-bar",26)}function H2(t,s){if(1&t&&e.nrm(0,"rtl-node-info",27),2&t){const n=e.XpG(3);e.Y8G("information",n.information)("showColorFieldSeparately",!0)}}function q2(t,s){if(1&t&&e.nrm(0,"rtl-channel-status-info",28),2&t){const n=e.XpG(3);e.Y8G("channelsStatus",n.channelsStatus)("errorMessage",n.errorMessages[3]+" "+n.errorMessages[4])}}function z2(t,s){if(1&t&&e.nrm(0,"rtl-fee-info",29),2&t){const n=e.XpG(3);e.Y8G("fees",n.fees)("errorMessage",n.errorMessages[2])}}function J2(t,s){if(1&t&&(e.j41(0,"mat-grid-tile",13)(1,"div",14)(2,"div",15)(3,"div",16),e.nrm(4,"fa-icon",17),e.j41(5,"span"),e.EFF(6),e.k0s()()(),e.j41(7,"div",18)(8,"mat-card",19)(9,"mat-card-content",20),e.DNE(10,X2,1,0,"mat-progress-bar",21),e.j41(11,"div",22),e.DNE(12,H2,1,2,"rtl-node-info",23)(13,q2,1,2,"rtl-channel-status-info",24)(14,z2,1,2,"rtl-fee-info",25),e.k0s()()()()()()),2&t){const n=s.$implicit,i=e.XpG(2);e.Y8G("colspan",n.cols)("rowspan",n.rows),e.R7$(4),e.Y8G("icon",n.icon),e.R7$(2),e.JRh(n.title),e.R7$(3),e.Y8G("ngClass",e.eq3(10,At,"node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"status"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.ERROR)||"fee"===n.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf","node"===n.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"status"===n.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusPendingChannels.status===i.apiCallStatusEnum.INITIATED)||"fee"===n.id&&i.apiCallStatusFees.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",n.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","status"),e.R7$(),e.Y8G("ngSwitchCase","fee")}}function Q2(t,s){if(1&t&&(e.j41(0,"mat-grid-list",11),e.DNE(1,J2,15,12,"mat-grid-tile",12),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngForOf",n.nodeCards)}}function W2(t,s){1&t&&e.nrm(0,"mat-progress-bar",26)}function Z2(t,s){1&t&&e.eu8(0)}function K2(t,s){if(1&t&&(e.j41(0,"div",34),e.DNE(1,Z2,1,0,"ng-container",35),e.k0s()),2&t){const n=e.XpG(2),i=e.sdS(9),o=e.sdS(11);e.R7$(),e.Y8G("ngTemplateOutlet",n.apiCallStatusNetwork.status===n.apiCallStatusEnum.ERROR?i:o)}}function eg(t,s){1&t&&e.eu8(0)}function tg(t,s){if(1&t&&(e.j41(0,"div",34),e.DNE(1,eg,1,0,"ng-container",35),e.k0s()),2&t){const n=e.XpG(2),i=e.sdS(9),o=e.sdS(13);e.R7$(),e.Y8G("ngTemplateOutlet",n.apiCallStatusNetwork.status===n.apiCallStatusEnum.ERROR?i:o)}}function ng(t,s){1&t&&e.eu8(0)}function ig(t,s){if(1&t&&(e.j41(0,"div",34),e.DNE(1,ng,1,0,"ng-container",35),e.k0s()),2&t){const n=e.XpG(2),i=e.sdS(9),o=e.sdS(15);e.R7$(),e.Y8G("ngTemplateOutlet",n.apiCallStatusNetwork.status===n.apiCallStatusEnum.ERROR?i:o)}}function ag(t,s){if(1&t&&(e.j41(0,"mat-grid-tile",30)(1,"mat-card",31)(2,"mat-card-content",32),e.DNE(3,W2,1,0,"mat-progress-bar",21),e.j41(4,"div",22),e.DNE(5,K2,2,1,"div",33)(6,tg,2,1,"div",33)(7,ig,2,1,"div",33),e.k0s()()()()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("colspan",n.cols)("rowspan",n.rows),e.R7$(2),e.Y8G("ngClass",e.eq3(8,At,i.apiCallStatusNetwork.status===i.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf",i.apiCallStatusNetwork.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",n.id),e.R7$(),e.Y8G("ngSwitchCase","general"),e.R7$(),e.Y8G("ngSwitchCase","channels"),e.R7$(),e.Y8G("ngSwitchCase","degrees")}}function sg(t,s){if(1&t&&(e.j41(0,"div",36)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.JRh(n.errorMessages[1])}}function og(t,s){if(1&t&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Network Capacity"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Number of Nodes"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div")(14,"h4",38),e.EFF(15,"Number of Channels"),e.k0s(),e.j41(16,"span",39),e.EFF(17),e.nI1(18,"number"),e.k0s()()()),2&t){const n=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,3,n.networkInfo.total_network_capacity)," Sats"),e.R7$(6),e.JRh(e.bMT(12,5,n.networkInfo.num_nodes)),e.R7$(6),e.JRh(e.bMT(18,7,n.networkInfo.num_channels))}}function lg(t,s){if(1&t&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Max Channel Size"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Avg Channel Size"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div")(14,"h4",38),e.EFF(15,"Min Channel Size"),e.k0s(),e.j41(16,"span",39),e.EFF(17),e.nI1(18,"number"),e.k0s()()()),2&t){const n=e.XpG();e.R7$(5),e.JRh(e.bMT(6,3,n.networkInfo.max_channel_size)),e.R7$(6),e.JRh(e.bMT(12,5,n.networkInfo.avg_channel_size)),e.R7$(6),e.JRh(e.bMT(18,7,n.networkInfo.min_channel_size))}}function rg(t,s){if(1&t&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Max Out Degree"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Avg Out Degree"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div",40),e.nrm(14,"h4",38)(15,"span",39),e.k0s()()),2&t){const n=e.XpG();e.R7$(5),e.JRh(e.bMT(6,2,n.networkInfo.max_out_degree)),e.R7$(6),e.JRh(e.i5U(12,4,n.networkInfo.avg_out_degree,"1.0-2"))}}let cg=(()=>{var t;class s{constructor(i,o,a){this.logger=i,this.commonService=o,this.store=a,this.faProjectDiagram=I.qFF,this.faBolt=I.zm_,this.faServer=I.D6w,this.faNetworkWired=I.eGi,this.information={},this.channelsStatus={},this.networkInfo={},this.networkCards=[],this.nodeCards=[],this.screenSize="",this.screenSizeEnum=p.f7,this.userPersonaEnum=p.HW,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusNetwork=null,this.apiCallStatusFees=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===p.f7.XS?(this.networkCards=[{id:"general",cols:3,rows:1},{id:"channels",cols:3,rows:1},{id:"degrees",cols:3,rows:1}],this.nodeCards=[{id:"node",icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:3,rows:1},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:3,rows:1}]):(this.networkCards=[{id:"general",cols:1,rows:1},{id:"channels",cols:1,rows:1},{id:"degrees",cols:1,rows:1}],this.nodeCards=[{id:"node",icon:this.faServer,title:"Node Information",cols:1,rows:1},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:1,rows:1},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:1,rows:1}])}ngOnInit(){this.store.select(E.gj).pipe((0,x.Q)(this.unSubs[0]),(0,me.E)(this.store.select(W._c))).subscribe(([i,o])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=i.apiCallStatus,this.apiCallStatusNodeInfo.status===p.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=o,this.information=i.information}),this.store.select(E.tA).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessages[1]="",this.apiCallStatusNetwork=i.apiCallStatus,this.apiCallStatusNetwork.status===p.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusNetwork.message?JSON.stringify(this.apiCallStatusNetwork.message):this.apiCallStatusNetwork.message?this.apiCallStatusNetwork.message:""),this.networkInfo=i.networkInfo}),this.store.select(E.oR).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessages[2]="",this.apiCallStatusFees=i.apiCallStatus,this.apiCallStatusFees.status===p.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=i.fees}),this.store.select(E.Uv).pipe((0,x.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=i.apiCallStatus,this.apiCallStatusPendingChannels.status===p.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPendingChannels.message?JSON.stringify(this.apiCallStatusPendingChannels.message):this.apiCallStatusPendingChannels.message?this.apiCallStatusPendingChannels.message:""),this.channelsStatus.pending={num_channels:i.pendingChannelsSummary.open?.num_channels,capacity:i.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(i.pendingChannelsSummary.closing?.num_channels||0)+(i.pendingChannelsSummary.force_closing?.num_channels||0)+(i.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:i.pendingChannelsSummary.total_limbo_balance}}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[4])).subscribe(i=>{this.errorMessages[3]="",this.apiCallStatusChannels=i.apiCallStatus,this.apiCallStatusChannels.status===p.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active=i.channelsSummary.active,this.channelsStatus.inactive=i.channelsSummary.inactive,this.logger.info(i)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-network-info"]],standalone:!1,decls:16,vars:6,consts:[["errorBlock",""],["generalBlock",""],["channelsBlock",""],["degreesBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch",1,"mb-4"],["cols","3","rowHeight","330px",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container",3,"ngClass"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","3","rowHeight","250px"],["fxLayout","row",3,"colspan","rowspan",4,"ngFor","ngForOf"],["cols","3","rowHeight","330px"],["class","node-grid-tile",3,"colspan","rowspan",4,"ngFor","ngForOf"],[1,"node-grid-tile",3,"colspan","rowspan"],["fxLayout","column","fxLayoutAlign","stretch start","fxFlex","100",1,"h-100"],["fxLayout","row","fxLayoutAlign","start start",1,"w-100"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container"],[1,"mr-1",3,"icon"],["fxLayout","column","fxLayoutAlign","stretch center","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","center stretch",1,"w-100","h-93"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","w-96","h-93"],["fxLayout","column","fxFlex","100",1,"mt-2",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxLayout","row",3,"colspan","rowspan"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","h-93"],["fxLayout","column","fxFlex","100",3,"ngClass"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100"],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"]],template:function(o,a){1&o&&(e.j41(0,"div",4),e.DNE(1,Q2,2,1,"mat-grid-list",5),e.j41(2,"div",6),e.nrm(3,"fa-icon",7),e.j41(4,"span",8),e.EFF(5,"Network"),e.k0s()(),e.j41(6,"mat-grid-list",9),e.DNE(7,ag,8,10,"mat-grid-tile",10),e.k0s()(),e.DNE(8,sg,3,1,"ng-template",null,0,e.C5r)(10,og,19,9,"ng-template",null,1,e.C5r)(12,lg,19,9,"ng-template",null,2,e.C5r)(14,rg,16,7,"ng-template",null,3,e.C5r)),2&o&&(e.R7$(),e.Y8G("ngIf",a.selNode.settings.userPersona!==a.userPersonaEnum.OPERATOR),e.R7$(),e.Y8G("ngClass",e.eq3(4,U2,a.screenSize!==a.screenSizeEnum.XS)),e.R7$(),e.Y8G("icon",a.faProjectDiagram),e.R7$(4),e.Y8G("ngForOf",a.networkCards))},dependencies:[y.YU,y.Sq,y.bT,y.T3,y.ux,y.e1,ee.aY,B.RN,B.m2,Le.B_,Le.NS,D.HM,b.DJ,b.sA,b.UI,U.PW,bt,Ft,xt,y.QX],encapsulation:2}))}return t(),s})();function pg(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let mg=(()=>{var t;class s{constructor(i){this.router=i,this.faDownload=I.cbP,this.links=[{link:"bckup",name:"Backup"},{link:"restore",name:"Restore"}],this.activeLink=this.links[0].link,this.unSubs=[new C.B,new C.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-backup"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Channels Backup"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,pg,2,4,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&o){const l=e.sdS(10);e.R7$(),e.Y8G("icon",a.faDownload),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[y.Sq,ee.aY,B.RN,B.m2,b.DJ,b.sA,b.UI,J.Bu,J.hQ,J.Ql,j.n3,le.Wk],encapsulation:2}))}return t(),s})();const ug=t=>({"overflow-auto error-border":t,"overflow-auto":!0}),hg=()=>["no_channel"],dg=t=>({"max-width":t}),_g=t=>({"display-none":t});function fg(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",24)(1,"h4",25),e.EFF(2),e.k0s(),e.j41(3,"div",26)(4,"button",27),e.bIt("click",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onRestoreChannels({}))}),e.EFF(5,"Restore All"),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",n.selNode.settings.channelBackupPath,"/restore")}}function gg(t,s){if(1&t&&(e.j41(0,"div",28)(1,"h4",25),e.EFF(2),e.k0s(),e.j41(3,"h4",29),e.EFF(4,"All channel backup file not found! To perform channel restoration, channel backup file/s must be placed at the above location."),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",n.selNode.settings.channelBackupPath,"/restore")}}function Cg(t,s){if(1&t&&(e.j41(0,"div",28)(1,"h4",25),e.EFF(2),e.k0s()()),2&t){const n=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",n.selNode.settings.channelBackupPath,"/restore")}}function yg(t,s){1&t&&e.nrm(0,"mat-progress-bar",30)}function bg(t,s){1&t&&(e.j41(0,"th",31),e.EFF(1,"Channel Point"),e.k0s())}function Fg(t,s){if(1&t&&(e.j41(0,"td",32)(1,"div",33)(2,"span",34),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,dg,i.screenSize===i.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==n?null:n.channel_point)}}function xg(t,s){1&t&&(e.j41(0,"th",35)(1,"div",36),e.EFF(2,"Actions"),e.k0s()())}function vg(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",32)(1,"span",37)(2,"button",38),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onRestoreChannels(o))}),e.EFF(3,"Restore"),e.k0s()()()}}function Tg(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No singular channel backups available."),e.k0s())}function kg(t,s){if(1&t&&(e.j41(0,"td",39),e.DNE(1,Tg,2,0,"p",40),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",!n.channels||!n.channels.data||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)}}function Sg(t,s){if(1&t&&e.nrm(0,"tr",41),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,_g,n.channels&&n.channels.data&&(null==n.channels||null==n.channels.data?null:n.channels.data.length)>0))}}function Rg(t,s){1&t&&e.nrm(0,"tr",42)}function Eg(t,s){1&t&&e.nrm(0,"tr",43)}let Ig=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.store=o,this.lndEffects=a,this.commonService=l,this.pageSize=p.md,this.pageSizeOptions=p.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new _.I6([]),this.allRestoreExists=!1,this.flgLoading=[!0],this.selFilter="",this.screenSize="",this.screenSizeEnum=p.f7,this.unSubs=[new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,N.$J)()),this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.lndEffects.setRestoreChannelList.pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.allRestoreExists=i.all_restore_exists,this.channelsData=i.files,this.channelsData.length>0&&this.loadRestoreTable(this.channelsData),("error"!==this.flgLoading[0]||i&&i.files)&&(this.flgLoading[0]=!1),this.logger.info(i)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadRestoreTable(this.channelsData)}onRestoreChannels(i){this.store.dispatch((0,N.Lf)({payload:{channelPoint:i.channel_point?i.channel_point:"ALL"}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadRestoreTable(i){this.channels=new _.I6([...i]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(o,a)=>(o.channel_point?o.channel_point.toLowerCase():"").includes(a),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(Pe.L),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-restore-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:X.xX,useValue:(0,p.on)("Channels")}])],decls:28,vars:16,consts:[["table",""],["fxLayout","column",1,"mt-2"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between start","fxLayout.gt-md","row wrap",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["fxLayout","column","fxFlex","49"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["matColumnDef","channel_point"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","100"],["fxLayout","row",1,"mt-2"],["mat-flat-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxLayoutAlign","space-between start","fxLayout.gt-md","row wrap"],["fxFlex","100",1,"mt-1"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","1",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1),e.DNE(1,fg,6,1,"div",2)(2,gg,5,1,"div",3)(3,Cg,3,1,"div",3),e.j41(4,"div",4),e.nrm(5,"div",5),e.j41(6,"div",6),e.nrm(7,"div",7),e.j41(8,"mat-form-field",8)(9,"mat-label"),e.EFF(10,"Filter"),e.k0s(),e.j41(11,"input",9),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(12,"div",10),e.DNE(13,yg,1,0,"mat-progress-bar",11),e.j41(14,"table",12,0),e.qex(16,13),e.DNE(17,bg,2,0,"th",14)(18,Fg,4,4,"td",15),e.bVm(),e.qex(19,16),e.DNE(20,xg,3,0,"th",17)(21,vg,4,0,"td",15),e.bVm(),e.qex(22,18),e.DNE(23,kg,2,1,"td",19),e.bVm(),e.DNE(24,Sg,1,3,"tr",20)(25,Rg,1,0,"tr",21)(26,Eg,1,0,"tr",22),e.k0s()(),e.nrm(27,"mat-paginator",23),e.k0s()}2&o&&(e.R7$(),e.Y8G("ngIf",a.allRestoreExists),e.R7$(),e.Y8G("ngIf",!a.allRestoreExists&&(!a.channels||(null==a.channels||null==a.channels.data?null:a.channels.data.length)<=0)),e.R7$(),e.Y8G("ngIf",!a.allRestoreExists&&a.channels&&(null==a.channels||null==a.channels.data?null:a.channels.data.length)&&(null==a.channels||null==a.channels.data?null:a.channels.data.length)>0),e.R7$(8),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",!0===a.flgLoading[0]),e.R7$(),e.Y8G("dataSource",a.channels)("ngClass",e.eq3(13,ug,"error"===a.flgLoading[0])),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(15,hg)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.bT,y.B3,g.me,g.BC,g.vS,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.Ld],encapsulation:2}))}return t(),s})();const wg=t=>({"error-border":t}),Lg=()=>["no_channel"],jg=t=>({"max-width":t}),Gg=t=>({"display-none":t});function Dg(t,s){1&t&&e.nrm(0,"mat-progress-bar",33)}function Ng(t,s){1&t&&(e.j41(0,"th",34),e.EFF(1,"Channel Point"),e.k0s())}function Pg(t,s){if(1&t&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,jg,i.screenSize===i.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==n?null:n.channel_point)}}function Bg(t,s){1&t&&(e.j41(0,"th",38)(1,"div",39),e.EFF(2,"Actions"),e.k0s()())}function Ag(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",40)(1,"div",39)(2,"mat-select",41),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",42),e.bIt("click",function(o){const a=r.eBV(n).$implicit,l=e.XpG();return r.Njj(l.onChannelClick(a,o))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",42),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onBackupChannels(o))}),e.EFF(7,"Backup"),e.k0s(),e.j41(8,"mat-option",42),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onDownloadBackup(o))}),e.EFF(9,"Download Backup"),e.k0s(),e.j41(10,"mat-option",42),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.onVerifyChannels(o))}),e.EFF(11,"Verify"),e.k0s()()()()}}function $g(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function Mg(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function Og(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.JRh(n.errorMessage)}}function Vg(t,s){if(1&t&&(e.j41(0,"td",43),e.DNE(1,$g,2,0,"p",44)(2,Mg,2,0,"p",44)(3,Og,2,1,"p",44),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.channels&&n.channels.data)||(null==n.channels||null==n.channels.data?null:n.channels.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function Yg(t,s){if(1&t&&e.nrm(0,"tr",45),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(1,Gg,(null==n.channels?null:n.channels.data)&&(null==n.channels||null==n.channels.data?null:n.channels.data.length)>0))}}function Ug(t,s){1&t&&e.nrm(0,"tr",46)}function Xg(t,s){1&t&&e.nrm(0,"tr",47)}let Hg=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.store=o,this.actions=a,this.commonService=l,this.faInfoCircle=I.iW_,this.faExclamationTriangle=I.zpE,this.faArchive=I.Oh6,this.pageSize=p.md,this.pageSizeOptions=p.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new _.I6([]),this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(W._c).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=i.channels,this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadBackupTable(this.channelsData),this.logger.info(i)}),this.actions.pipe((0,x.Q)(this.unSubs[2]),(0,L.p)(i=>i.type===p.QP.SET_CHANNELS_LND||i.type===p.aU.SHOW_FILE)).subscribe(i=>{i.type===p.QP.SET_CHANNELS_LND&&(this.selectedChannel=null),i.type===p.aU.SHOW_FILE&&(this.commonService.downloadFile(i.payload,"channel-"+(this.selectedChannel?.channel_point?this.selectedChannel.channel_point:"all"),".bak",".bak"),this.selectedChannel=null)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadBackupTable(this.channelsData)}onBackupChannels(i){this.store.dispatch((0,N.H2)({payload:{uiMessage:p.MZ.BACKUP_CHANNEL,channelPoint:i.channel_point?i.channel_point:"ALL",showMessage:""}}))}onVerifyChannels(i){this.store.dispatch((0,N.L)({payload:{channelPoint:i.channel_point?i.channel_point:"ALL"}}))}onDownloadBackup(i){this.selectedChannel=i,this.store.dispatch((0,Y.t2)({payload:{channelPoint:i.channel_point?i.channel_point:"all"}}))}onChannelClick(i,o){this.store.dispatch((0,Y.xO)({payload:{data:{channel:i,showCopy:!1,component:rt}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadBackupTable(i){this.channels=new _.I6(i?[...i]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,a)=>o[a]&&isNaN(o[a])?o[a].toLocaleLowerCase():o[a]?+o[a]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(o,a)=>(o.channel_point?o.channel_point.toLowerCase():"").includes(a),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(G.il),e.rXU(ce.En),e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-channel-backup-table"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:O.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:X.xX,useValue:(0,p.on)("Channels")}])],decls:46,vars:17,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","1",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","2",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["fxLayout","column","fxFlex","49"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["matColumnDef","channel_point"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3),e.nrm(3,"fa-icon",4),e.j41(4,"span"),e.EFF(5,"Save your backup files in a redundant location."),e.k0s()(),e.j41(6,"div",5),e.nrm(7,"fa-icon",4),e.j41(8,"span")(9,"strong"),e.EFF(10,"Backup Folder Location: "),e.k0s(),e.EFF(11),e.k0s()(),e.j41(12,"div",6)(13,"button",7),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onVerifyChannels({}))}),e.EFF(14,"Verify All"),e.k0s(),e.j41(15,"button",8),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onBackupChannels({}))}),e.EFF(16,"Backup All"),e.k0s(),e.j41(17,"button",9),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onDownloadBackup({}))}),e.EFF(18,"Download Backup"),e.k0s()()(),e.j41(19,"div",10)(20,"div",11),e.nrm(21,"fa-icon",12),e.j41(22,"span",13),e.EFF(23,"Backups"),e.k0s()(),e.j41(24,"div",14),e.nrm(25,"div",15),e.j41(26,"mat-form-field",16)(27,"mat-label"),e.EFF(28,"Filter"),e.k0s(),e.j41(29,"input",17),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selFilter,f)||(a.selFilter=f),r.Njj(f)}),e.bIt("input",function(){return r.eBV(l),r.Njj(a.applyFilter())})("keyup",function(){return r.eBV(l),r.Njj(a.applyFilter())}),e.k0s()()()(),e.j41(30,"div",18),e.DNE(31,Dg,1,0,"mat-progress-bar",19),e.j41(32,"table",20,0),e.qex(34,21),e.DNE(35,Ng,2,0,"th",22)(36,Pg,4,4,"td",23),e.bVm(),e.qex(37,24),e.DNE(38,Bg,3,0,"th",25)(39,Ag,12,0,"td",26),e.bVm(),e.qex(40,27),e.DNE(41,Vg,4,3,"td",28),e.bVm(),e.DNE(42,Yg,1,3,"tr",29)(43,Ug,1,0,"tr",30)(44,Xg,1,0,"tr",31),e.k0s()(),e.nrm(45,"mat-paginator",32),e.k0s()}2&o&&(e.R7$(3),e.Y8G("icon",a.faExclamationTriangle),e.R7$(4),e.Y8G("icon",a.faInfoCircle),e.R7$(4),e.SpI("",a.selNode.settings.channelBackupPath,"."),e.R7$(10),e.Y8G("icon",a.faArchive),e.R7$(8),e.R50("ngModel",a.selFilter),e.R7$(2),e.Y8G("ngIf",a.apiCallStatus.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",a.channels)("ngClass",e.eq3(14,wg,""!==a.errorMessage)),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(16,Lg)),e.R7$(),e.Y8G("matHeaderRowDef",a.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",a.displayedColumns),e.R7$(),e.Y8G("pageSize",a.pageSize)("pageSizeOptions",a.pageSizeOptions)("showFirstLastButtons",a.screenSize!==a.screenSizeEnum.XS))},dependencies:[y.YU,y.bT,y.B3,g.me,g.BC,g.vS,ee.aY,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,O.$2,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.Ld],encapsulation:2}))}return t(),s})();function qg(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG();return r.Njj(a.activeLink=o.link)}),e.EFF(1),e.k0s()}if(2&t){const n=s.$implicit,i=e.XpG();e.Y8G("routerLink",e.mNQ(n.link))("active",i.activeLink===n.link),e.R7$(),e.JRh(n.name)}}let zg=(()=>{var t;class s{constructor(i){this.router=i,this.faUserCheck=I.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new C.B,new C.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(o=>o instanceof j.gx)).subscribe({next:o=>{const a=this.links.find(l=>o.urlAfterRedirects.includes(l.link));this.activeLink=a?a.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(j.Ix))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-sign-verify-message"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,a){if(1&o&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Sign/Verify Message"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,qg,2,4,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&o){const l=e.sdS(10);e.R7$(),e.Y8G("icon",a.faUserCheck),e.R7$(6),e.Y8G("tabPanel",l),e.R7$(),e.Y8G("ngForOf",a.links)}},dependencies:[y.Sq,ee.aY,B.RN,B.m2,b.DJ,b.sA,b.UI,J.Bu,J.hQ,J.Ql,j.n3,le.Wk],encapsulation:2}))}return t(),s})();function Jg(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}let Qg=(()=>{var t;class s{constructor(i,o,a){this.dataService=i,this.snackBar=o,this.logger=a,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new C.B,new C.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.signedMessage=this.message,this.signature=i.signature})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(i){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+i)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Fe.u),e.rXU(we.UG),e.rXU(V.gP))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-sign"]],standalone:!1,decls:22,vars:5,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"signature-box","bordered-box","read-only"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"copied","payload"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",1)(1,"form",2,0)(3,"mat-form-field",3)(4,"mat-label"),e.EFF(5,"Message to sign"),e.k0s(),e.j41(6,"textarea",4),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.message,f)||(a.message=f),r.Njj(f)}),e.bIt("keyup",function(){return r.eBV(l),r.Njj(a.onMessageChange())}),e.k0s(),e.DNE(7,Jg,2,0,"mat-error",5),e.k0s(),e.j41(8,"div",6)(9,"button",7),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(10,"Clear Field"),e.k0s(),e.j41(11,"button",8),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onSign())}),e.EFF(12,"Sign"),e.k0s()(),e.nrm(13,"mat-divider",9),e.j41(14,"div",10)(15,"p"),e.EFF(16,"Generated Signature"),e.k0s()(),e.j41(17,"div",11),e.EFF(18),e.k0s(),e.j41(19,"div",12)(20,"button",13),e.bIt("copied",function(f){return r.eBV(l),r.Njj(a.onCopyField(f))}),e.EFF(21,"Copy Signature"),e.k0s()()()()}2&o&&(e.R7$(6),e.R50("ngModel",a.message),e.R7$(),e.Y8G("ngIf",!a.message),e.R7$(6),e.Y8G("inset",!0),e.R7$(5),e.JRh(a.signature),e.R7$(2),e.Y8G("payload",a.signature))},dependencies:[y.bT,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,$.$z,Z.fg,R.rl,R.nJ,R.TL,Te.q,b.DJ,b.sA,b.UI,He.U,pe.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]}))}return t(),s})();function Wg(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}function Zg(t,s){1&t&&(e.j41(0,"mat-error"),e.EFF(1,"Signature is required."),e.k0s())}function Kg(t,s){1&t&&(e.j41(0,"p",13)(1,"mat-icon",14),e.EFF(2,"close"),e.k0s(),e.EFF(3,"Verification failed, please check message and signature"),e.k0s())}function e4(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Pubkey Used"),e.k0s())}function t4(t,s){if(1&t&&(e.j41(0,"div",20)(1,"p"),e.EFF(2),e.k0s()()),2&t){const n=e.XpG(2);e.R7$(2),e.JRh(null==n.verifyRes?null:n.verifyRes.pubkey)}}function n4(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("copied",function(o){r.eBV(n);const a=e.XpG(2);return r.Njj(a.onCopyField(o))}),e.EFF(2,"Copy Pubkey"),e.k0s()()}if(2&t){const n=e.XpG(2);e.R7$(),e.Y8G("payload",null==n.verifyRes?null:n.verifyRes.pubkey)}}function i4(t,s){if(1&t&&(e.j41(0,"div",15),e.nrm(1,"mat-divider",16),e.j41(2,"div",17),e.DNE(3,e4,2,0,"p",6),e.k0s(),e.DNE(4,t4,3,1,"div",18)(5,n4,3,1,"div",19),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(2),e.Y8G("ngIf",n.verifyRes.valid),e.R7$(),e.Y8G("ngIf",n.verifyRes.valid),e.R7$(),e.Y8G("ngIf",n.verifyRes.valid)}}let a4=(()=>{var t;class s{constructor(i,o,a){this.dataService=i,this.snackBar=o,this.logger=a,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null},this.unSubs=[new C.B,new C.B]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.verifyRes=i,this.showVerifyStatus=!0,this.verifiedMessage=this.message,this.verifiedSignature=this.signature})}onChange(){(this.verifiedMessage!==this.message||this.verifiedSignature!==this.signature)&&(this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null})}resetData(){this.message="",this.signature="",this.verifyRes=null,this.showVerifyStatus=!1}onCopyField(i){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+i)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Fe.u),e.rXU(we.UG),e.rXU(V.gP))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-verify"]],standalone:!1,decls:21,vars:6,consts:[["form","ngForm"],["sign","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","signature","tabindex","2","required","",3,"ngModelChange","keyup","ngModel"],["fxFlex","100","class","color-warn","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"copied","payload"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",2)(1,"form",3,0)(3,"mat-form-field",4)(4,"mat-label"),e.EFF(5,"Message to verify"),e.k0s(),e.j41(6,"textarea",5),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.message,f)||(a.message=f),r.Njj(f)}),e.bIt("keyup",function(){return r.eBV(l),r.Njj(a.onChange())}),e.k0s(),e.DNE(7,Wg,2,0,"mat-error",6),e.k0s(),e.j41(8,"mat-form-field",4)(9,"mat-label"),e.EFF(10,"Signature provided"),e.k0s(),e.j41(11,"input",7,1),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.signature,f)||(a.signature=f),r.Njj(f)}),e.bIt("keyup",function(){return r.eBV(l),r.Njj(a.onChange())}),e.k0s(),e.DNE(13,Zg,2,0,"mat-error",6),e.k0s(),e.DNE(14,Kg,4,0,"p",8),e.j41(15,"div",9)(16,"button",10),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(17,"Clear Fields"),e.k0s(),e.j41(18,"button",11),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onVerify())}),e.EFF(19,"Verify"),e.k0s()(),e.DNE(20,i4,6,4,"div",12),e.k0s()()}2&o&&(e.R7$(6),e.R50("ngModel",a.message),e.R7$(),e.Y8G("ngIf",!a.message),e.R7$(4),e.R50("ngModel",a.signature),e.R7$(2),e.Y8G("ngIf",!a.signature),e.R7$(),e.Y8G("ngIf",a.showVerifyStatus&&!a.verifyRes.valid),e.R7$(6),e.Y8G("ngIf",a.showVerifyStatus&&a.verifyRes.valid))},dependencies:[y.bT,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,$.$z,ke.An,Z.fg,R.rl,R.nJ,R.TL,Te.q,b.DJ,b.sA,b.UI,He.U,pe.N],encapsulation:2}))}return t(),s})();var s4=S(13),Q=S(7186);const o4=()=>["all"],l4=()=>["no_non_routing_event"],We=t=>({"max-width":t}),r4=t=>({"display-none":t});function c4(t,s){if(1&t&&(e.j41(0,"div",5),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.JRh(n.errorMessage)}}function p4(t,s){if(1&t&&(e.j41(0,"mat-option",17),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(3);e.Y8G("value",n),e.R7$(),e.JRh(i.getLabel(n))}}function m4(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",10)(1,"div",11),e.EFF(2,"Non Routing Peers"),e.k0s(),e.j41(3,"div",12)(4,"mat-form-field",13)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",14),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.selFilterBy,o)||(a.selFilterBy=o),r.Njj(o)}),e.bIt("selectionChange",function(){r.eBV(n);const o=e.XpG(2);return o.selFilter="",r.Njj(o.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,p4,2,2,"mat-option",15),e.k0s()()(),e.j41(10,"mat-form-field",13)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",16),e.mxI("ngModelChange",function(o){r.eBV(n);const a=e.XpG(2);return e.DH7(a.selFilter,o)||(a.selFilter=o),r.Njj(o)}),e.bIt("input",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.applyFilter())})("keyup",function(){r.eBV(n);const o=e.XpG(2);return r.Njj(o.applyFilter())}),e.k0s()()()()}if(2&t){const n=e.XpG(2);e.R7$(7),e.R50("ngModel",n.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,o4).concat(n.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",n.selFilter)}}function u4(t,s){1&t&&e.nrm(0,"mat-progress-bar",50)}function h4(t,s){1&t&&(e.j41(0,"th",51),e.EFF(1,"Channel ID"),e.k0s())}function d4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,We,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.chan_id)}}function _4(t,s){1&t&&(e.j41(0,"th",51),e.EFF(1,"Peer Alias"),e.k0s())}function f4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,We,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.remote_alias)}}function g4(t,s){1&t&&(e.j41(0,"th",51),e.EFF(1,"Peer Pubkey"),e.k0s())}function C4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,We,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.remote_pubkey)}}function y4(t,s){1&t&&(e.j41(0,"th",51),e.EFF(1,"Channel Point"),e.k0s())}function b4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&t){const n=s.$implicit,i=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,We,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),e.R7$(2),e.JRh(null==n?null:n.channel_point)}}function F4(t,s){if(1&t&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.SpI("Uptime (",n.timeUnit,")")}}function x4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",n.uptime_str," ")}}function v4(t,s){if(1&t&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.SpI("Lifetime (",n.timeUnit,")")}}function T4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",n.lifetime_str," ")}}function k4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function S4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.commit_fee)," ")}}function R4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Commit Weight"),e.k0s())}function E4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.commit_weight)," ")}}function I4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Fee/KW"),e.k0s())}function w4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.fee_per_kw)," ")}}function L4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Updates"),e.k0s())}function j4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.num_updates)," ")}}function G4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function D4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.unsettled_balance)," ")}}function N4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Capacity (Sats)"),e.k0s())}function P4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.capacity)," ")}}function B4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function A4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.local_chan_reserve_sat)," ")}}function $4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function M4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,n.remote_chan_reserve_sat)," ")}}function O4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Sats Sent"),e.k0s())}function V4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_satoshis_sent))}}function Y4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Sats Received"),e.k0s())}function U4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.total_satoshis_received))}}function X4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function H4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.local_balance))}}function q4(t,s){1&t&&(e.j41(0,"th",55),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function z4(t,s){if(1&t&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&t){const n=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,n.remote_balance))}}function J4(t,s){1&t&&(e.j41(0,"th",57)(1,"div",58),e.EFF(2,"Actions"),e.k0s()())}function Q4(t,s){if(1&t){const n=e.RV6();e.j41(0,"td",59)(1,"button",60),e.bIt("click",function(){const o=r.eBV(n).$implicit,a=e.XpG(3);return r.Njj(a.onManagePeer(o))}),e.EFF(2,"Manage"),e.k0s()()}}function W4(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"All peers are routing."),e.k0s())}function Z4(t,s){1&t&&(e.j41(0,"p"),e.EFF(1,"Getting non routing peers..."),e.k0s())}function K4(t,s){if(1&t&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&t){const n=e.XpG(4);e.R7$(),e.JRh(n.errorMessage)}}function eC(t,s){if(1&t&&(e.j41(0,"td",61),e.DNE(1,W4,2,0,"p",62)(2,Z4,2,0,"p",62)(3,K4,2,1,"p",62),e.k0s()),2&t){const n=e.XpG(3);e.R7$(),e.Y8G("ngIf",(!(null!=n.nonRoutingPeers&&n.nonRoutingPeers.data)||(null==n.nonRoutingPeers||null==n.nonRoutingPeers.data?null:n.nonRoutingPeers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=n.nonRoutingPeers&&n.nonRoutingPeers.data)||(null==n.nonRoutingPeers||null==n.nonRoutingPeers.data?null:n.nonRoutingPeers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=n.nonRoutingPeers&&n.nonRoutingPeers.data)||(null==n.nonRoutingPeers||null==n.nonRoutingPeers.data?null:n.nonRoutingPeers.data.length)<1)&&n.apiCallStatus.status===n.apiCallStatusEnum.ERROR)}}function tC(t,s){if(1&t&&e.nrm(0,"tr",63),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,r4,(null==n.nonRoutingPeers||null==n.nonRoutingPeers.data?null:n.nonRoutingPeers.data.length)>0))}}function nC(t,s){1&t&&e.nrm(0,"tr",64)}function iC(t,s){1&t&&e.nrm(0,"tr",65)}function aC(t,s){if(1&t&&(e.j41(0,"div",18),e.DNE(1,u4,1,0,"mat-progress-bar",19),e.j41(2,"table",20,1),e.qex(4,21),e.DNE(5,h4,2,0,"th",22)(6,d4,4,4,"td",23),e.bVm(),e.qex(7,24),e.DNE(8,_4,2,0,"th",22)(9,f4,4,4,"td",23),e.bVm(),e.qex(10,25),e.DNE(11,g4,2,0,"th",22)(12,C4,4,4,"td",23),e.bVm(),e.qex(13,26),e.DNE(14,y4,2,0,"th",22)(15,b4,4,4,"td",23),e.bVm(),e.qex(16,27),e.DNE(17,F4,2,1,"th",28)(18,x4,3,1,"td",23),e.bVm(),e.qex(19,29),e.DNE(20,v4,2,1,"th",28)(21,T4,3,1,"td",23),e.bVm(),e.qex(22,30),e.DNE(23,k4,2,0,"th",28)(24,S4,4,3,"td",23),e.bVm(),e.qex(25,31),e.DNE(26,R4,2,0,"th",28)(27,E4,4,3,"td",23),e.bVm(),e.qex(28,32),e.DNE(29,I4,2,0,"th",28)(30,w4,4,3,"td",23),e.bVm(),e.qex(31,33),e.DNE(32,L4,2,0,"th",28)(33,j4,4,3,"td",23),e.bVm(),e.qex(34,34),e.DNE(35,G4,2,0,"th",28)(36,D4,4,3,"td",23),e.bVm(),e.qex(37,35),e.DNE(38,N4,2,0,"th",28)(39,P4,4,3,"td",23),e.bVm(),e.qex(40,36),e.DNE(41,B4,2,0,"th",28)(42,A4,4,3,"td",23),e.bVm(),e.qex(43,37),e.DNE(44,$4,2,0,"th",28)(45,M4,4,3,"td",23),e.bVm(),e.qex(46,38),e.DNE(47,O4,2,0,"th",28)(48,V4,4,3,"td",23),e.bVm(),e.qex(49,39),e.DNE(50,Y4,2,0,"th",28)(51,U4,4,3,"td",23),e.bVm(),e.qex(52,40),e.DNE(53,X4,2,0,"th",28)(54,H4,4,3,"td",23),e.bVm(),e.qex(55,41),e.DNE(56,q4,2,0,"th",28)(57,z4,4,3,"td",23),e.bVm(),e.qex(58,42),e.DNE(59,J4,3,0,"th",43)(60,Q4,3,0,"td",44),e.bVm(),e.qex(61,45),e.DNE(62,eC,4,3,"td",46),e.bVm(),e.DNE(63,tC,1,3,"tr",47)(64,nC,1,0,"tr",48)(65,iC,1,0,"tr",49),e.k0s()()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("ngIf",n.apiCallStatus.status===n.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",n.tableSetting.sortBy)("matSortDirection",n.tableSetting.sortOrder)("dataSource",n.nonRoutingPeers),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(7,l4)),e.R7$(),e.Y8G("matHeaderRowDef",n.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",n.displayedColumns)}}function sC(t,s){if(1&t&&(e.j41(0,"div",6),e.DNE(1,m4,14,4,"div",7)(2,aC,66,8,"div",8),e.nrm(3,"mat-paginator",9,0),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.Y8G("ngIf",""===n.errorMessage),e.R7$(),e.Y8G("ngIf",""===n.errorMessage),e.R7$(),e.Y8G("pageSize",n.pageSize)("pageSizeOptions",n.pageSizeOptions)("showFirstLastButtons",n.screenSize!==n.screenSizeEnum.XS)}}let oC=(()=>{var t;class s{constructor(i,o,a,l,h,f,P){this.logger=i,this.commonService=o,this.store=a,this.router=l,this.activatedRoute=h,this.decimalPipe=f,this.camelCaseWithReplace=P,this.nodePageDefs=p._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"non_routing_peers",recordsPerPage:p.md,sortBy:"remote_alias",sortOrder:p.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.nonRoutingPeers=new _.I6([]),this.pageSize=p.md,this.pageSizeOptions=p.xp,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.selFilter="",this.activeChannels=[],this.timeUnit="mins:secs",this.apiCallStatus=null,this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B,new C.B,new C.B,new C.B,new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.$G).pipe((0,x.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||p.ZC.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===p.f7.XS||this.screenSize===p.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:p.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Ie).pipe((0,x.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,i.apiCallStatus?.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=i.forwardingHistory.forwarding_events?i.forwardingHistory.forwarding_events:[],this.routingPeersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData),this.logger.info(i.apiCallStatus),this.logger.info(i.forwardingHistory)}),this.store.select(E.BM).pipe((0,x.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===p.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=i.channels,this.logger.info(i)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData)}calculateUptime(i){let f=60,P=1,w=0;switch(i.forEach(M=>{M.uptime&&+M.uptime>w&&(w=+M.uptime)}),!0){case w<3600:this.timeUnit="Mins:Secs",f=60,P=1;break;case w>=3600&&w<86400:this.timeUnit="Hrs:Mins",f=3600,P=60;break;case w>=86400&&w<31536e3:this.timeUnit="Days:Hrs",f=86400,P=3600;break;case w>31536e3:this.timeUnit="Yrs:Days",f=31536e3,P=86400;break;default:this.timeUnit="Mins:Secs",f=60,P=1}return i.forEach(M=>{M.uptime_str=M.uptime?this.decimalPipe.transform(Math.floor(+M.uptime/f),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+M.uptime%f/P),"2.0-0"):"---",M.lifetime_str=M.lifetime?this.decimalPipe.transform(Math.floor(+M.lifetime/f),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+M.lifetime%f/P),"2.0-0"):"---"}),i}onManagePeer(i){this.router.navigate(["../../","connections","channels","open"],{relativeTo:this.activatedRoute,state:{filterValue:i.chan_id}})}applyFilter(){this.nonRoutingPeers.filter=this.selFilter.toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(a=>a.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.nonRoutingPeers.filterPredicate=(i,o)=>{let a="";return a="all"===this.selFilterBy?JSON.stringify(i).toLowerCase():typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString(),a.includes(o)}}loadNonRoutingPeersTable(i){if(i.length>0){const o=this.calculateUptime(this.activeChannels?.filter(a=>i.findIndex(l=>l.chan_id_in===a.chan_id||l.chan_id_out===a.chan_id)<0));this.nonRoutingPeers=new _.I6(o),this.nonRoutingPeers.sort=this.sort,this.nonRoutingPeers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.nonRoutingPeers)}else this.nonRoutingPeers=new _.I6([]);this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(j.Ix),e.rXU(j.nX),e.rXU(y.QX),e.rXU(ue.VD))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-non-routing-peers"]],viewQuery:function(o,a){if(1&o&&(e.GBs(A.B4,5),e.GBs(X.iy,5)),2&o){let l;e.mGM(l=e.lsd())&&(a.sort=l.first),e.mGM(l=e.lsd())&&(a.paginator=l.first)}},standalone:!1,features:[e.Jv_([{provide:X.xX,useValue:(0,p.on)("Non routing peers")}])],decls:3,vars:2,consts:[["paginator",""],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","chan_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_alias"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","uptime_str"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","lifetime_str"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","num_updates"],["matColumnDef","unsettled_balance"],["matColumnDef","capacity"],["matColumnDef","local_chan_reserve_sat"],["matColumnDef","remote_chan_reserve_sat"],["matColumnDef","total_satoshis_sent"],["matColumnDef","total_satoshis_received"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_non_routing_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,a){1&o&&(e.j41(0,"div",2),e.DNE(1,c4,2,1,"div",3)(2,sC,5,5,"div",4),e.k0s()),2&o&&(e.R7$(),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage))},dependencies:[y.YU,y.Sq,y.bT,y.B3,g.me,g.BC,g.vS,$.$z,Z.fg,R.rl,R.nJ,D.HM,b.DJ,b.sA,b.UI,U.PW,U.eI,O.VO,ae.wT,A.B4,A.aE,_.Zl,_.tL,_.ji,_.cC,_.YV,_.iL,_.Zq,_.xW,_.KS,_.$R,_.Qo,_.YZ,_.NB,_.iF,X.iy,K.ZF,K.Ld,y.QX],encapsulation:2}))}return t(),s})();var $t=S(3838);let lC=(()=>{var t;class s{constructor(i){this.dataService=i,this.paths="",this.unSubs=[new C.B,new C.B]}ngOnInit(){if(this.payment.htlcs&&this.payment.htlcs[0]&&this.payment.htlcs[0].route&&this.payment.htlcs[0].route.hops&&this.payment.htlcs[0].route.hops.length>0){const i=this.payment.htlcs[0].route.hops?.reduce((o,a)=>""===o&&a.pub_key?a.pub_key:o+","+a.pub_key,"");this.dataService.getAliasesFromPubkeys(i,!0).pipe((0,x.Q)(this.unSubs[0])).subscribe(o=>{this.paths=o?.reduce((a,l)=>""===a?l:a+"\n"+l,"")})}this.payment.payment_request&&""!==this.payment.payment_request.trim()&&this.dataService.decodePayment(this.payment.payment_request,!1).pipe((0,be.s)(1)).subscribe(i=>{i&&i.description&&""!==i.description&&(this.payment.description=i.description)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(Fe.u))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-payment-lookup"]],inputs:{payment:"payment"},standalone:!1,decls:66,vars:20,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["fxLayout","row"],["fxFlex","50"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"mat-card-content",1)(2,"div",2)(3,"h4",3),e.EFF(4,"Payment Hash"),e.k0s(),e.j41(5,"span",4),e.EFF(6),e.k0s()(),e.nrm(7,"mat-divider",5),e.j41(8,"div",2)(9,"h4",3),e.EFF(10,"Payment Preimage"),e.k0s(),e.j41(11,"span",4)(12,"div"),e.EFF(13),e.k0s()()(),e.nrm(14,"mat-divider",5),e.j41(15,"div",2)(16,"h4",3),e.EFF(17,"Payment Request"),e.k0s(),e.j41(18,"span",4)(19,"div"),e.EFF(20),e.k0s()()(),e.nrm(21,"mat-divider",5),e.j41(22,"div",2)(23,"h4",3),e.EFF(24,"Description"),e.k0s(),e.j41(25,"span",4)(26,"div"),e.EFF(27),e.k0s()()(),e.nrm(28,"mat-divider",5),e.j41(29,"div",6)(30,"div",7)(31,"h4",3),e.EFF(32,"Status"),e.k0s(),e.j41(33,"span",4)(34,"div"),e.EFF(35),e.k0s()()(),e.j41(36,"div",7)(37,"h4",3),e.EFF(38,"Creation Date"),e.k0s(),e.j41(39,"span",4)(40,"div"),e.EFF(41),e.k0s()()()(),e.nrm(42,"mat-divider",5),e.j41(43,"div",6)(44,"div",7)(45,"h4",3),e.EFF(46,"Value (mSats)"),e.k0s(),e.j41(47,"span",4)(48,"div"),e.EFF(49),e.nI1(50,"number"),e.k0s()()(),e.j41(51,"div",7)(52,"h4",3),e.EFF(53,"Fee (mSats)"),e.k0s(),e.j41(54,"span",4)(55,"div"),e.EFF(56),e.nI1(57,"number"),e.k0s()()()(),e.nrm(58,"mat-divider",5),e.j41(59,"div",2)(60,"h4",3),e.EFF(61,"Path"),e.k0s(),e.j41(62,"span",4)(63,"div"),e.EFF(64),e.k0s()()(),e.nrm(65,"mat-divider",5),e.k0s()()),2&o&&(e.R7$(6),e.JRh(null==a.payment?null:a.payment.payment_hash),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.payment?null:a.payment.payment_preimage),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.payment?null:a.payment.payment_request),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.payment?null:a.payment.description),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(null==a.payment?null:a.payment.status),e.R7$(6),e.JRh(null==a.payment?null:a.payment.creation_date),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(e.bMT(50,16,null==a.payment?null:a.payment.value_msat)),e.R7$(7),e.JRh(e.bMT(57,18,null==a.payment?null:a.payment.fee_msat)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(a.paths),e.R7$(),e.Y8G("inset",!0))},dependencies:[B.m2,Te.q,b.DJ,b.sA,b.UI,y.QX],encapsulation:2}))}return t(),s})();var rC=S(8288);const Mt=t=>({"display-none":t}),ft=t=>({"mr-0":t});function cC(t,s){if(1&t&&e.nrm(0,"qr-code",22),2&t){const n=e.XpG();e.Y8G("value",null==n.invoice?null:n.invoice.payment_request)("size",n.qrWidth)}}function pC(t,s){1&t&&(e.j41(0,"span",23),e.EFF(1,"N/A"),e.k0s())}function mC(t,s){if(1&t&&e.nrm(0,"qr-code",22),2&t){const n=e.XpG();e.Y8G("value",null==n.invoice?null:n.invoice.payment_request)("size",n.qrWidth)}}function uC(t,s){1&t&&(e.j41(0,"span",24),e.EFF(1,"QR Code Not Applicable"),e.k0s())}function hC(t,s){1&t&&e.nrm(0,"mat-divider",16),2&t&&e.Y8G("inset",!0)}function dC(t,s){1&t&&(e.qex(0),e.EFF(1," (zero amount) "),e.bVm())}function _C(t,s){if(1&t&&e.nrm(0,"span",38),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,ft,n.screenSize===n.screenSizeEnum.XS))}}function fC(t,s){if(1&t&&e.nrm(0,"span",39),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,ft,n.screenSize===n.screenSizeEnum.XS))}}function gC(t,s){if(1&t&&e.nrm(0,"span",40),2&t){const n=e.XpG(3);e.Y8G("ngClass",e.eq3(1,ft,n.screenSize===n.screenSizeEnum.XS))}}function CC(t,s){if(1&t&&(e.j41(0,"div",27)(1,"div",32)(2,"span",33),e.DNE(3,_C,1,3,"span",34)(4,fC,1,3,"span",35)(5,gC,1,3,"span",36),e.EFF(6),e.k0s(),e.j41(7,"span",37),e.EFF(8),e.nI1(9,"number"),e.k0s()(),e.nrm(10,"mat-divider",16),e.k0s()),2&t){const n=s.$implicit,i=e.XpG(2);e.R7$(3),e.Y8G("ngIf","SETTLED"===n.state),e.R7$(),e.Y8G("ngIf","ACCEPTED"===n.state),e.R7$(),e.Y8G("ngIf","CANCELED"===n.state),e.R7$(),e.SpI(" ",n.chan_id," "),e.R7$(2),e.JRh(e.i5U(9,6,+n.amt_msat/1e3||0,i.getDecimalFormat(n))),e.R7$(2),e.Y8G("inset",!0)}}function yC(t,s){if(1&t){const n=e.RV6();e.j41(0,"div",11)(1,"mat-expansion-panel",25),e.bIt("opened",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.flgOpened=!0)})("closed",function(){r.eBV(n);const o=e.XpG();return r.Njj(o.onExpansionClosed())}),e.j41(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",26),e.EFF(5,"HTLCs"),e.k0s()()(),e.j41(6,"div",27)(7,"div",28)(8,"span",29),e.EFF(9,"Channel ID"),e.k0s(),e.j41(10,"span",30),e.EFF(11,"Amount (Sats)"),e.k0s()(),e.nrm(12,"mat-divider",16),e.DNE(13,CC,11,9,"div",31),e.k0s()()()}if(2&t){const n=e.XpG();e.R7$(12),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngForOf",null==n.invoice?null:n.invoice.htlcs)}}function bC(t,s){1&t&&e.nrm(0,"mat-divider",16),2&t&&e.Y8G("inset",!0)}let FC=(()=>{var t;class s{constructor(i){this.commonService=i,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=p.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===p.f7.XS&&(this.qrWidth=220)}getDecimalFormat(i){return i.amt_msat<1e3?"1.0-4":"1.0-0"}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(z.h))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-invoice-lookup"]],inputs:{invoice:"invoice"},standalone:!1,decls:90,vars:45,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between stretch"],["fxFlex","20",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxLayout","column","fxFlex","80"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],[3,"perfectScrollbar"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"my-1",3,"inset"],["fxFlex","100"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","34"],["fxFlex","33"],["fxLayout","row",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],[1,"font-size-120"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"flat-expansion-panel",3,"opened","closed"],["fxLayoutAlign","start center","fxFlex","100",1,"font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100",1,"mt-minus-1"],["fxFlex","60",1,"foreground-secondary-text","font-bold-500"],["fxFlex","40",1,"foreground-secondary-text","font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100"],["fxFlex","60",1,"foreground-secondary-text"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Cancelled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["fxFlex","40",1,"foreground-secondary-text"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Cancelled","matTooltipPosition","right",1,"dot","red",3,"ngClass"]],template:function(o,a){1&o&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,cC,1,2,"qr-code",2)(3,pC,2,0,"span",3),e.k0s(),e.j41(4,"div",4)(5,"mat-card-content",5)(6,"div",6)(7,"div",7),e.DNE(8,mC,1,2,"qr-code",2)(9,uC,2,0,"span",8),e.k0s(),e.DNE(10,hC,1,1,"mat-divider",9),e.j41(11,"div",10)(12,"div",11)(13,"div",12)(14,"h4",13),e.EFF(15),e.k0s(),e.j41(16,"span",14),e.EFF(17),e.nI1(18,"number"),e.DNE(19,dC,2,0,"ng-container",15),e.k0s()(),e.j41(20,"div",12)(21,"h4",13),e.EFF(22,"Amount Settled"),e.k0s(),e.j41(23,"span",14)(24,"div"),e.EFF(25),e.nI1(26,"number"),e.k0s()()()(),e.nrm(27,"mat-divider",16),e.j41(28,"div",11)(29,"div",12)(30,"h4",13),e.EFF(31,"Date Created"),e.k0s(),e.j41(32,"span",14),e.EFF(33),e.nI1(34,"date"),e.k0s()(),e.j41(35,"div",12)(36,"h4",13),e.EFF(37,"Date Settled"),e.k0s(),e.j41(38,"span",14),e.EFF(39),e.nI1(40,"date"),e.k0s()()(),e.nrm(41,"mat-divider",16),e.j41(42,"div",11)(43,"div",17)(44,"h4",13),e.EFF(45,"Memo"),e.k0s(),e.j41(46,"span",14),e.EFF(47),e.k0s()()(),e.nrm(48,"mat-divider",16),e.j41(49,"div",11)(50,"div",17)(51,"h4",13),e.EFF(52,"Payment Request"),e.k0s(),e.j41(53,"span",18),e.EFF(54),e.k0s()()(),e.nrm(55,"mat-divider",16),e.j41(56,"div",11)(57,"div",17)(58,"h4",13),e.EFF(59,"Payment Hash"),e.k0s(),e.j41(60,"span",18),e.EFF(61),e.k0s()()(),e.j41(62,"div"),e.nrm(63,"mat-divider",16),e.j41(64,"div",11)(65,"div",17)(66,"h4",13),e.EFF(67,"Preimage"),e.k0s(),e.j41(68,"span",18),e.EFF(69),e.k0s()()(),e.nrm(70,"mat-divider",16),e.j41(71,"div",11)(72,"div",19)(73,"h4",13),e.EFF(74,"State"),e.k0s(),e.j41(75,"span",18),e.EFF(76),e.k0s()(),e.j41(77,"div",20)(78,"h4",13),e.EFF(79,"Expiry"),e.k0s(),e.j41(80,"span",18),e.EFF(81),e.k0s()(),e.j41(82,"div",20)(83,"h4",13),e.EFF(84,"Private Routing Hints"),e.k0s(),e.j41(85,"span",18),e.EFF(86),e.k0s()()(),e.nrm(87,"mat-divider",16),e.DNE(88,yC,14,2,"div",21)(89,bC,1,1,"mat-divider",9),e.k0s()()()()()()),2&o&&(e.R7$(),e.Y8G("fxLayoutAlign",null!=a.invoice&&a.invoice.payment_request&&""!==(null==a.invoice?null:a.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(41,Mt,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==a.invoice?null:a.invoice.payment_request)&&""!==(null==a.invoice?null:a.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=a.invoice&&a.invoice.payment_request)||""===(null==a.invoice?null:a.invoice.payment_request)),e.R7$(4),e.Y8G("fxLayoutAlign",null!=a.invoice&&a.invoice.payment_request&&""!==(null==a.invoice?null:a.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(43,Mt,a.screenSize!==a.screenSizeEnum.XS&&a.screenSize!==a.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==a.invoice?null:a.invoice.payment_request)&&""!==(null==a.invoice?null:a.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=a.invoice&&a.invoice.payment_request)||""===(null==a.invoice?null:a.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM),e.R7$(5),e.JRh(a.screenSize===a.screenSizeEnum.XS?"Amount":"Amount Requested"),e.R7$(2),e.SpI("",e.bMT(18,31,(null==a.invoice?null:a.invoice.value)||0)," Sats"),e.R7$(2),e.Y8G("ngIf",!(null!=a.invoice&&a.invoice.value)||"0"===(null==a.invoice?null:a.invoice.value)),e.R7$(6),e.SpI("",e.bMT(26,33,null==a.invoice?null:a.invoice.amt_paid_sat)," Sats"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(34,35,1e3*(null==a.invoice?null:a.invoice.creation_date),"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(0!=+(null==a.invoice?null:a.invoice.settle_date)?e.i5U(40,38,1e3*+(null==a.invoice?null:a.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.invoice?null:a.invoice.memo),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==a.invoice?null:a.invoice.payment_request)||"N/A"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==a.invoice?null:a.invoice.r_hash)||""),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==a.invoice?null:a.invoice.r_preimage)||"-"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==a.invoice?null:a.invoice.state),e.R7$(5),e.JRh(null==a.invoice?null:a.invoice.expiry),e.R7$(5),e.JRh(null!=a.invoice&&a.invoice.private?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",(null==a.invoice?null:a.invoice.htlcs)&&(null==a.invoice?null:a.invoice.htlcs.length)>0),e.R7$(),e.Y8G("ngIf",(null==a.invoice?null:a.invoice.htlcs)&&(null==a.invoice?null:a.invoice.htlcs.length)>0))},dependencies:[y.YU,y.Sq,y.bT,B.m2,he.GK,he.Z2,he.WN,Te.q,b.DJ,b.sA,b.UI,U.PW,fe.oV,rC.Um,K.Ld,y.QX,y.vh],encapsulation:2}))}return t(),s})();const xC=t=>({"mt-1":!0,"mt-2":t}),vC=t=>({"w-100 mt-2 p-2 error-border":t,"w-100 my-2 p-2":!0});function TC(t,s){if(1&t&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&t){const n=s.$implicit,i=e.XpG();e.Y8G("value",n.id)("checked",i.selectedFieldId===n.id),e.R7$(),e.SpI(" ",n.name," ")}}function kC(t,s){if(1&t&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&t){const n=e.XpG();e.R7$(),e.SpI("",null==n.lookupFields[n.selectedFieldId]?null:n.lookupFields[n.selectedFieldId].placeholder," is required.")}}function SC(t,s){1&t&&e.nrm(0,"mat-progress-bar",20)}function RC(t,s){if(1&t&&(e.j41(0,"div",18),e.DNE(1,SC,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&t){const n=e.XpG();e.Y8G("ngClass",e.eq3(3,vC,""!==n.errorMessage&&"Getting lookup details..."!==n.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===n.errorMessage),e.R7$(),e.SpI(" ",n.errorMessage," ")}}function EC(t,s){if(1&t&&(e.j41(0,"span",27),e.nrm(1,"rtl-payment-lookup",28),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("payment",n.lookupValue)}}function IC(t,s){if(1&t&&(e.j41(0,"span",27),e.nrm(1,"rtl-invoice-lookup",29),e.k0s()),2&t){const n=e.XpG(2);e.R7$(),e.Y8G("invoice",n.lookupValue)}}function wC(t,s){1&t&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function LC(t,s){if(1&t&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,EC,2,1,"span",25)(6,IC,2,1,"span",25)(7,wC,4,0,"span",26),e.k0s()()),2&t){const n=e.XpG();e.R7$(3),e.SpI("",n.lookupFields[n.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",n.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let jC=(()=>{var t;class s{constructor(i,o,a,l){this.logger=i,this.commonService=o,this.store=a,this.actions=l,this.lookupKey="",this.lookupValue={},this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Payment",placeholder:"Payment Hash"},{id:1,name:"Invoice",placeholder:"Payment Hash"}],this.faSearch=I.MjD,this.screenSize="",this.screenSizeEnum=p.f7,this.errorMessage="",this.apiCallStatusEnum=p.wn,this.unSubs=[new C.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,x.Q)(this.unSubs[0]),(0,L.p)(i=>i.type===p.QP.SET_LOOKUP_LND)).subscribe(i=>{this.flgSetLookupValue=!i.payload.error,this.lookupValue=JSON.parse(JSON.stringify(i.payload)),this.errorMessage=i.payload.error?this.commonService.extractErrorMessage(i.payload.error):"",this.logger.info(this.lookupValue)})}onLookup(){if(!this.lookupKey)return!0;switch(this.errorMessage="",this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,N.jk)({payload:$t.hp.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}));break;case 1:this.store.dispatch((0,N.Yi)({payload:{openSnackBar:!1,paymentHash:$t.hp.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}}onSelectChange(i){this.resetData(),this.selectedFieldId=i.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)(e.rXU(V.gP),e.rXU(z.h),e.rXU(G.il),e.rXU(ce.En))},this.\u0275cmp=e.VBU({type:s,selectors:[["rtl-lookup-transactions"]],standalone:!1,decls:21,vars:10,consts:[["form","ngForm"],["key",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["mode","indeterminate"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mb-2"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[3,"payment"],[3,"invoice"]],template:function(o,a){if(1&o){const l=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"mat-card-content",4)(3,"form",5,0)(5,"div",6)(6,"mat-radio-group",7),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.selectedFieldId,f)||(a.selectedFieldId=f),r.Njj(f)}),e.bIt("change",function(f){return r.eBV(l),r.Njj(a.onSelectChange(f))}),e.DNE(7,TC,2,3,"mat-radio-button",8),e.k0s()(),e.j41(8,"mat-form-field",9)(9,"mat-label"),e.EFF(10),e.k0s(),e.j41(11,"input",10,1),e.mxI("ngModelChange",function(f){return r.eBV(l),e.DH7(a.lookupKey,f)||(a.lookupKey=f),r.Njj(f)}),e.bIt("change",function(){return r.eBV(l),r.Njj(a.clearLookupValue())}),e.k0s(),e.DNE(13,kC,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return r.eBV(l),r.Njj(a.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return r.eBV(l),r.Njj(a.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,RC,3,5,"div",15)(20,LC,8,4,"div",16),e.k0s()()()}2&o&&(e.R7$(6),e.R50("ngModel",a.selectedFieldId),e.R7$(),e.Y8G("ngForOf",a.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,xC,a.screenSize===a.screenSizeEnum.XS||a.screenSize===a.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==a.lookupFields[a.selectedFieldId]?null:a.lookupFields[a.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",a.lookupKey),e.R7$(2),e.Y8G("ngIf",!a.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==a.errorMessage),e.R7$(),e.Y8G("ngIf",""===a.errorMessage&&a.lookupValue&&a.flgSetLookupValue))},dependencies:[y.YU,y.Sq,y.bT,y.ux,y.e1,y.fG,g.qT,g.me,g.BC,g.cb,g.YS,g.vS,g.cV,$.$z,B.m2,Z.fg,R.rl,R.nJ,R.TL,D.HM,Ae.VT,Ae._g,b.DJ,b.sA,b.UI,U.PW,lC,FC],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}))}return t(),s})();const GC=[{path:"",component:_e,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Hs,canActivate:[(0,Q.jn)()]},{path:"wallet",component:Lh,canActivate:[Q.q_]},{path:"onchain",component:c2,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:u2,canActivate:[(0,Q.jn)()]},{path:"send/:selTab",component:Bt,data:{sweepAll:!1},canActivate:[(0,Q.jn)()]},{path:"sweep/:selTab",component:Bt,data:{sweepAll:!0},canActivate:[(0,Q.jn)()]}]},{path:"connections",component:Js,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:Cl,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:Y1,canActivate:[(0,Q.jn)()]},{path:"pending",component:Sm,canActivate:[(0,Q.jn)()]},{path:"closed",component:du,canActivate:[(0,Q.jn)()]},{path:"activehtlcs",component:oh,canActivate:[(0,Q.jn)()]}]},{path:"peers",component:hl,data:{sweepAll:!1},canActivate:[(0,Q.jn)()]}]},{path:"transactions",component:Gh,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Ct,canActivate:[(0,Q.jn)()]},{path:"invoices",component:gt,canActivate:[(0,Q.jn)()]},{path:"lookuptransactions",component:jC,canActivate:[(0,Q.jn)()]}]},{path:"messages",component:zg,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:Qg,canActivate:[(0,Q.jn)()]},{path:"verify",component:a4,canActivate:[(0,Q.jn)()]}]},{path:"channelbackup",component:mg,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"bckup"},{path:"bckup",component:Hg,canActivate:[(0,Q.jn)()]},{path:"restore",component:Ig,canActivate:[(0,Q.jn)()]}]},{path:"routing",component:Md,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:jt,canActivate:[(0,Q.jn)()]},{path:"peers",component:m0,canActivate:[(0,Q.jn)()]},{path:"nonroutingprs",component:oC,canActivate:[(0,Q.jn)()]}]},{path:"reports",component:h0,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:x0,canActivate:[(0,Q.jn)()]},{path:"transactions",component:N0,canActivate:[(0,Q.jn)()]}]},{path:"graph",component:Nh,canActivate:[(0,Q.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:Lt,canActivate:[(0,Q.jn)()]},{path:"queryroutes",component:rd,canActivate:[(0,Q.jn)()]}]},{path:"lookups",component:Lt,canActivate:[(0,Q.jn)()]},{path:"network",component:cg,canActivate:[(0,Q.jn)()]},{path:"**",component:s4.X},{path:"rates",redirectTo:"network"}]}],DC=le.iI.forChild(GC);var NC=S(9029);let PC=(()=>{var t;class s{static#e=t=()=>(this.\u0275fac=function(o){return new(o||s)},this.\u0275mod=e.$C({type:s,bootstrap:[_e]}),this.\u0275inj=r.G2t({imports:[y.MD,NC.G,DC]}))}return t(),s})()},3981(Ze,xe){"use strict";xe.byteLength=function b(L){var q=D(L),p=q[1];return 3*(q[0]+p)/4-p},xe.toByteArray=function _e(L){var q,G,I=D(L),p=I[0],W=I[1],E=new le(function T(L,q,I){return 3*(q+I)/4-I}(0,p,W)),r=0,V=W>0?p-4:p;for(G=0;G>16&255,E[r++]=q>>8&255,E[r++]=255&q;return 2===W&&(q=y[L.charCodeAt(G)]<<2|y[L.charCodeAt(G+1)]>>4,E[r++]=255&q),1===W&&(q=y[L.charCodeAt(G)]<<10|y[L.charCodeAt(G+1)]<<4|y[L.charCodeAt(G+2)]>>2,E[r++]=q>>8&255,E[r++]=255&q),E},xe.fromByteArray=function me(L){for(var q,I=L.length,p=I%3,W=[],E=16383,r=0,V=I-p;rV?V:r+E));return 1===p?W.push(S[(q=L[I-1])>>2]+S[q<<4&63]+"=="):2===p&&W.push(S[(q=(L[I-2]<<8)+L[I-1])>>10]+S[q>>4&63]+S[q<<2&63]+"="),W.join("")};for(var S=[],y=[],le=typeof Uint8Array<"u"?Uint8Array:Array,j="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",re=0;re<64;++re)S[re]=j[re],y[j.charCodeAt(re)]=re;function D(L){var q=L.length;if(q%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var I=L.indexOf("=");return-1===I&&(I=q),[I,I===q?0:4-I%4]}function C(L){return S[L>>18&63]+S[L>>12&63]+S[L>>6&63]+S[63&L]}function x(L,q,I){for(var W=[],E=q;Ee)throw new RangeError('The value "'+u+'" is invalid for option "size"');const c=new Uint8Array(u);return Object.setPrototypeOf(c,T.prototype),c}function T(u,c,m){if("number"==typeof u){if("string"==typeof c)throw new TypeError('The "string" argument must be of type string. Received type number');return me(u)}return _e(u,c,m)}function _e(u,c,m){if("string"==typeof u)return function L(u,c){if(("string"!=typeof c||""===c)&&(c="utf8"),!T.isEncoding(c))throw new TypeError("Unknown encoding: "+c);const m=0|V(u,c);let d=b(m);const F=d.write(u,c);return F!==m&&(d=d.slice(0,F)),d}(u,c);if(ArrayBuffer.isView(u))return function I(u){if(ve(u,Uint8Array)){const c=new Uint8Array(u);return p(c.buffer,c.byteOffset,c.byteLength)}return q(u)}(u);if(null==u)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof u);if(ve(u,ArrayBuffer)||u&&ve(u.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(ve(u,SharedArrayBuffer)||u&&ve(u.buffer,SharedArrayBuffer)))return p(u,c,m);if("number"==typeof u)throw new TypeError('The "value" argument must not be of type number. Received type number');const d=u.valueOf&&u.valueOf();if(null!=d&&d!==u)return T.from(d,c,m);const F=function W(u){if(T.isBuffer(u)){const c=0|E(u.length),m=b(c);return 0===m.length||u.copy(m,0,0,c),m}return void 0!==u.length?"number"!=typeof u.length||Oe(u.length)?b(0):q(u):"Buffer"===u.type&&Array.isArray(u.data)?q(u.data):void 0}(u);if(F)return F;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof u[Symbol.toPrimitive])return T.from(u[Symbol.toPrimitive]("string"),c,m);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof u)}function C(u){if("number"!=typeof u)throw new TypeError('"size" argument must be of type number');if(u<0)throw new RangeError('The value "'+u+'" is invalid for option "size"')}function me(u){return C(u),b(u<0?0:0|E(u))}function q(u){const c=u.length<0?0:0|E(u.length),m=b(c);for(let d=0;d=e)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+e.toString(16)+" bytes");return 0|u}function V(u,c){if(T.isBuffer(u))return u.length;if(ArrayBuffer.isView(u)||ve(u,ArrayBuffer))return u.byteLength;if("string"!=typeof u)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof u);const m=u.length,d=arguments.length>2&&!0===arguments[2];if(!d&&0===m)return 0;let F=!1;for(;;)switch(c){case"ascii":case"latin1":case"binary":return m;case"utf8":case"utf-8":return Me(u).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*m;case"hex":return m>>>1;case"base64":return K(u).length;default:if(F)return d?-1:Me(u).length;c=(""+c).toLowerCase(),F=!0}}function G(u,c,m){let d=!1;if((void 0===c||c<0)&&(c=0),c>this.length||((void 0===m||m>this.length)&&(m=this.length),m<=0)||(m>>>=0)<=(c>>>=0))return"";for(u||(u="utf8");;)switch(u){case"hex":return ne(this,c,m);case"utf8":case"utf-8":return J(this,c,m);case"ascii":return _(this,c,m);case"latin1":case"binary":return O(this,c,m);case"base64":return U(this,c,m);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return N(this,c,m);default:if(d)throw new TypeError("Unknown encoding: "+u);u=(u+"").toLowerCase(),d=!0}}function ce(u,c,m){const d=u[c];u[c]=u[m],u[m]=d}function z(u,c,m,d,F){if(0===u.length)return-1;if("string"==typeof m?(d=m,m=0):m>2147483647?m=2147483647:m<-2147483648&&(m=-2147483648),Oe(m=+m)&&(m=F?0:u.length-1),m<0&&(m=u.length+m),m>=u.length){if(F)return-1;m=u.length-1}else if(m<0){if(!F)return-1;m=0}if("string"==typeof c&&(c=T.from(c,d)),T.isBuffer(c))return 0===c.length?-1:ee(u,c,m,d,F);if("number"==typeof c)return c&=255,"function"==typeof Uint8Array.prototype.indexOf?F?Uint8Array.prototype.indexOf.call(u,c,m):Uint8Array.prototype.lastIndexOf.call(u,c,m):ee(u,[c],m,d,F);throw new TypeError("val must be string, number or Buffer")}function ee(u,c,m,d,F){let ie,v=1,k=u.length,H=c.length;if(void 0!==d&&("ucs2"===(d=String(d).toLowerCase())||"ucs-2"===d||"utf16le"===d||"utf-16le"===d)){if(u.length<2||c.length<2)return-1;v=2,k/=2,H/=2,m/=2}function se(oe,te){return 1===v?oe[te]:oe.readUInt16BE(te*v)}if(F){let oe=-1;for(ie=m;iek&&(m=k-H),ie=m;ie>=0;ie--){let oe=!0;for(let te=0;teF&&(d=F):d=F;const v=c.length;let k;for(d>v/2&&(d=v/2),k=0;k>8,F=m%256,v.push(F),v.push(d);return v}(c,u.length-m),u,m,d)}function U(u,c,m){return le.fromByteArray(0===c&&m===u.length?u:u.slice(c,m))}function J(u,c,m){m=Math.min(u.length,m);const d=[];let F=c;for(;F239?4:v>223?3:v>191?2:1;if(F+H<=m){let se,ie,oe,te;switch(H){case 1:v<128&&(k=v);break;case 2:se=u[F+1],128==(192&se)&&(te=(31&v)<<6|63&se,te>127&&(k=te));break;case 3:se=u[F+1],ie=u[F+2],128==(192&se)&&128==(192&ie)&&(te=(15&v)<<12|(63&se)<<6|63&ie,te>2047&&(te<55296||te>57343)&&(k=te));break;case 4:se=u[F+1],ie=u[F+2],oe=u[F+3],128==(192&se)&&128==(192&ie)&&128==(192&oe)&&(te=(15&v)<<18|(63&se)<<12|(63&ie)<<6|63&oe,te>65535&&te<1114112&&(k=te))}}null===k?(k=65533,H=1):k>65535&&(k-=65536,d.push(k>>>10&1023|55296),k=56320|1023&k),d.push(k),F+=H}return function A(u){const c=u.length;if(c<=X)return String.fromCharCode.apply(String,u);let m="",d=0;for(;dF.length?(T.isBuffer(k)||(k=T.from(k)),k.copy(F,v)):Uint8Array.prototype.set.call(F,k,v);else{if(!T.isBuffer(k))throw new TypeError('"list" argument must be an Array of Buffers');k.copy(F,v)}v+=k.length}return F},T.byteLength=V,T.prototype._isBuffer=!0,T.prototype.swap16=function(){const c=this.length;if(c%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let m=0;mm&&(c+=" ... "),""},re&&(T.prototype[re]=T.prototype.inspect),T.prototype.compare=function(c,m,d,F,v){if(ve(c,Uint8Array)&&(c=T.from(c,c.offset,c.byteLength)),!T.isBuffer(c))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof c);if(void 0===m&&(m=0),void 0===d&&(d=c?c.length:0),void 0===F&&(F=0),void 0===v&&(v=this.length),m<0||d>c.length||F<0||v>this.length)throw new RangeError("out of range index");if(F>=v&&m>=d)return 0;if(F>=v)return-1;if(m>=d)return 1;if(this===c)return 0;let k=(v>>>=0)-(F>>>=0),H=(d>>>=0)-(m>>>=0);const se=Math.min(k,H),ie=this.slice(F,v),oe=c.slice(m,d);for(let te=0;te>>=0,isFinite(d)?(d>>>=0,void 0===F&&(F="utf8")):(F=d,d=void 0)}const v=this.length-m;if((void 0===d||d>v)&&(d=v),c.length>0&&(d<0||m<0)||m>this.length)throw new RangeError("Attempt to write outside buffer bounds");F||(F="utf8");let k=!1;for(;;)switch(F){case"hex":return Ke(this,c,m,d);case"utf8":case"utf-8":return B(this,c,m,d);case"ascii":case"latin1":case"binary":return Le(this,c,m,d);case"base64":return ke(this,c,m,d);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return $e(this,c,m,d);default:if(k)throw new TypeError("Unknown encoding: "+F);F=(""+F).toLowerCase(),k=!0}},T.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};const X=4096;function _(u,c,m){let d="";m=Math.min(u.length,m);for(let F=c;Fd)&&(m=d);let F="";for(let v=c;vm)throw new RangeError("Trying to access beyond buffer length")}function $(u,c,m,d,F,v){if(!T.isBuffer(u))throw new TypeError('"buffer" argument must be a Buffer instance');if(c>F||cu.length)throw new RangeError("Index out of range")}function Z(u,c,m,d,F){Xe(c,d,F,u,m,7);let v=Number(c&BigInt(4294967295));u[m++]=v,v>>=8,u[m++]=v,v>>=8,u[m++]=v,v>>=8,u[m++]=v;let k=Number(c>>BigInt(32)&BigInt(4294967295));return u[m++]=k,k>>=8,u[m++]=k,k>>=8,u[m++]=k,k>>=8,u[m++]=k,m}function R(u,c,m,d,F){Xe(c,d,F,u,m,7);let v=Number(c&BigInt(4294967295));u[m+7]=v,v>>=8,u[m+6]=v,v>>=8,u[m+5]=v,v>>=8,u[m+4]=v;let k=Number(c>>BigInt(32)&BigInt(4294967295));return u[m+3]=k,k>>=8,u[m+2]=k,k>>=8,u[m+1]=k,k>>=8,u[m]=k,m+8}function ae(u,c,m,d,F,v){if(m+d>u.length)throw new RangeError("Index out of range");if(m<0)throw new RangeError("Index out of range")}function Re(u,c,m,d,F){return c=+c,m>>>=0,F||ae(u,0,m,4),j.write(u,c,m,d,23,4),m+4}function fe(u,c,m,d,F){return c=+c,m>>>=0,F||ae(u,0,m,8),j.write(u,c,m,d,52,8),m+8}T.prototype.slice=function(c,m){const d=this.length;(c=~~c)<0?(c+=d)<0&&(c=0):c>d&&(c=d),(m=void 0===m?d:~~m)<0?(m+=d)<0&&(m=0):m>d&&(m=d),m>>=0,m>>>=0,d||g(c,m,this.length);let F=this[c],v=1,k=0;for(;++k>>=0,m>>>=0,d||g(c,m,this.length);let F=this[c+--m],v=1;for(;m>0&&(v*=256);)F+=this[c+--m]*v;return F},T.prototype.readUint8=T.prototype.readUInt8=function(c,m){return c>>>=0,m||g(c,1,this.length),this[c]},T.prototype.readUint16LE=T.prototype.readUInt16LE=function(c,m){return c>>>=0,m||g(c,2,this.length),this[c]|this[c+1]<<8},T.prototype.readUint16BE=T.prototype.readUInt16BE=function(c,m){return c>>>=0,m||g(c,2,this.length),this[c]<<8|this[c+1]},T.prototype.readUint32LE=T.prototype.readUInt32LE=function(c,m){return c>>>=0,m||g(c,4,this.length),(this[c]|this[c+1]<<8|this[c+2]<<16)+16777216*this[c+3]},T.prototype.readUint32BE=T.prototype.readUInt32BE=function(c,m){return c>>>=0,m||g(c,4,this.length),16777216*this[c]+(this[c+1]<<16|this[c+2]<<8|this[c+3])},T.prototype.readBigUInt64LE=ge(function(c){Ee(c>>>=0,"offset");const m=this[c],d=this[c+7];(void 0===m||void 0===d)&&Ie(c,this.length-8);const F=m+256*this[++c]+65536*this[++c]+this[++c]*2**24,v=this[++c]+256*this[++c]+65536*this[++c]+d*2**24;return BigInt(F)+(BigInt(v)<>>=0,"offset");const m=this[c],d=this[c+7];(void 0===m||void 0===d)&&Ie(c,this.length-8);const F=m*2**24+65536*this[++c]+256*this[++c]+this[++c],v=this[++c]*2**24+65536*this[++c]+256*this[++c]+d;return(BigInt(F)<>>=0,m>>>=0,d||g(c,m,this.length);let F=this[c],v=1,k=0;for(;++k=v&&(F-=Math.pow(2,8*m)),F},T.prototype.readIntBE=function(c,m,d){c>>>=0,m>>>=0,d||g(c,m,this.length);let F=m,v=1,k=this[c+--F];for(;F>0&&(v*=256);)k+=this[c+--F]*v;return v*=128,k>=v&&(k-=Math.pow(2,8*m)),k},T.prototype.readInt8=function(c,m){return c>>>=0,m||g(c,1,this.length),128&this[c]?-1*(255-this[c]+1):this[c]},T.prototype.readInt16LE=function(c,m){c>>>=0,m||g(c,2,this.length);const d=this[c]|this[c+1]<<8;return 32768&d?4294901760|d:d},T.prototype.readInt16BE=function(c,m){c>>>=0,m||g(c,2,this.length);const d=this[c+1]|this[c]<<8;return 32768&d?4294901760|d:d},T.prototype.readInt32LE=function(c,m){return c>>>=0,m||g(c,4,this.length),this[c]|this[c+1]<<8|this[c+2]<<16|this[c+3]<<24},T.prototype.readInt32BE=function(c,m){return c>>>=0,m||g(c,4,this.length),this[c]<<24|this[c+1]<<16|this[c+2]<<8|this[c+3]},T.prototype.readBigInt64LE=ge(function(c){Ee(c>>>=0,"offset");const m=this[c],d=this[c+7];return(void 0===m||void 0===d)&&Ie(c,this.length-8),(BigInt(this[c+4]+256*this[c+5]+65536*this[c+6]+(d<<24))<>>=0,"offset");const m=this[c],d=this[c+7];(void 0===m||void 0===d)&&Ie(c,this.length-8);const F=(m<<24)+65536*this[++c]+256*this[++c]+this[++c];return(BigInt(F)<>>=0,m||g(c,4,this.length),j.read(this,c,!0,23,4)},T.prototype.readFloatBE=function(c,m){return c>>>=0,m||g(c,4,this.length),j.read(this,c,!1,23,4)},T.prototype.readDoubleLE=function(c,m){return c>>>=0,m||g(c,8,this.length),j.read(this,c,!0,52,8)},T.prototype.readDoubleBE=function(c,m){return c>>>=0,m||g(c,8,this.length),j.read(this,c,!1,52,8)},T.prototype.writeUintLE=T.prototype.writeUIntLE=function(c,m,d,F){c=+c,m>>>=0,d>>>=0,F||$(this,c,m,d,Math.pow(2,8*d)-1,0);let v=1,k=0;for(this[m]=255&c;++k>>=0,d>>>=0,F||$(this,c,m,d,Math.pow(2,8*d)-1,0);let v=d-1,k=1;for(this[m+v]=255&c;--v>=0&&(k*=256);)this[m+v]=c/k&255;return m+d},T.prototype.writeUint8=T.prototype.writeUInt8=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,1,255,0),this[m]=255&c,m+1},T.prototype.writeUint16LE=T.prototype.writeUInt16LE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,2,65535,0),this[m]=255&c,this[m+1]=c>>>8,m+2},T.prototype.writeUint16BE=T.prototype.writeUInt16BE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,2,65535,0),this[m]=c>>>8,this[m+1]=255&c,m+2},T.prototype.writeUint32LE=T.prototype.writeUInt32LE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,4,4294967295,0),this[m+3]=c>>>24,this[m+2]=c>>>16,this[m+1]=c>>>8,this[m]=255&c,m+4},T.prototype.writeUint32BE=T.prototype.writeUInt32BE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,4,4294967295,0),this[m]=c>>>24,this[m+1]=c>>>16,this[m+2]=c>>>8,this[m+3]=255&c,m+4},T.prototype.writeBigUInt64LE=ge(function(c,m=0){return Z(this,c,m,BigInt(0),BigInt("0xffffffffffffffff"))}),T.prototype.writeBigUInt64BE=ge(function(c,m=0){return R(this,c,m,BigInt(0),BigInt("0xffffffffffffffff"))}),T.prototype.writeIntLE=function(c,m,d,F){if(c=+c,m>>>=0,!F){const se=Math.pow(2,8*d-1);$(this,c,m,d,se-1,-se)}let v=0,k=1,H=0;for(this[m]=255&c;++v>>=0,!F){const se=Math.pow(2,8*d-1);$(this,c,m,d,se-1,-se)}let v=d-1,k=1,H=0;for(this[m+v]=255&c;--v>=0&&(k*=256);)c<0&&0===H&&0!==this[m+v+1]&&(H=1),this[m+v]=(c/k|0)-H&255;return m+d},T.prototype.writeInt8=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,1,127,-128),c<0&&(c=255+c+1),this[m]=255&c,m+1},T.prototype.writeInt16LE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,2,32767,-32768),this[m]=255&c,this[m+1]=c>>>8,m+2},T.prototype.writeInt16BE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,2,32767,-32768),this[m]=c>>>8,this[m+1]=255&c,m+2},T.prototype.writeInt32LE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,4,2147483647,-2147483648),this[m]=255&c,this[m+1]=c>>>8,this[m+2]=c>>>16,this[m+3]=c>>>24,m+4},T.prototype.writeInt32BE=function(c,m,d){return c=+c,m>>>=0,d||$(this,c,m,4,2147483647,-2147483648),c<0&&(c=4294967295+c+1),this[m]=c>>>24,this[m+1]=c>>>16,this[m+2]=c>>>8,this[m+3]=255&c,m+4},T.prototype.writeBigInt64LE=ge(function(c,m=0){return Z(this,c,m,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),T.prototype.writeBigInt64BE=ge(function(c,m=0){return R(this,c,m,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),T.prototype.writeFloatLE=function(c,m,d){return Re(this,c,m,!0,d)},T.prototype.writeFloatBE=function(c,m,d){return Re(this,c,m,!1,d)},T.prototype.writeDoubleLE=function(c,m,d){return fe(this,c,m,!0,d)},T.prototype.writeDoubleBE=function(c,m,d){return fe(this,c,m,!1,d)},T.prototype.copy=function(c,m,d,F){if(!T.isBuffer(c))throw new TypeError("argument should be a Buffer");if(d||(d=0),!F&&0!==F&&(F=this.length),m>=c.length&&(m=c.length),m||(m=0),F>0&&F=this.length)throw new RangeError("Index out of range");if(F<0)throw new RangeError("sourceEnd out of bounds");F>this.length&&(F=this.length),c.length-m>>=0,d=void 0===d?this.length:d>>>0,c||(c=0),"number"==typeof c)for(v=m;v=d+4;m-=3)c=`_${u.slice(m-3,m)}${c}`;return`${u.slice(0,m)}${c}`}function Xe(u,c,m,d,F,v){if(u>m||u3?0===c||c===BigInt(0)?`>= 0${k} and < 2${k} ** ${8*(v+1)}${k}`:`>= -(2${k} ** ${8*(v+1)-1}${k}) and < 2 ** ${8*(v+1)-1}${k}`:`>= ${c}${k} and <= ${m}${k}`,new pe.ERR_OUT_OF_RANGE("value",H,u)}!function et(u,c,m){Ee(c,"offset"),(void 0===u[c]||void 0===u[c+m])&&Ie(c,u.length-(m+1))}(d,F,v)}function Ee(u,c){if("number"!=typeof u)throw new pe.ERR_INVALID_ARG_TYPE(c,"number",u)}function Ie(u,c,m){throw Math.floor(u)!==u?(Ee(u,m),new pe.ERR_OUT_OF_RANGE(m||"offset","an integer",u)):c<0?new pe.ERR_BUFFER_OUT_OF_BOUNDS:new pe.ERR_OUT_OF_RANGE(m||"offset",`>= ${m?1:0} and <= ${c}`,u)}ye("ERR_BUFFER_OUT_OF_BOUNDS",function(u){return u?`${u} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),ye("ERR_INVALID_ARG_TYPE",function(u,c){return`The "${u}" argument must be of type number. Received type ${typeof c}`},TypeError),ye("ERR_OUT_OF_RANGE",function(u,c,m){let d=`The value of "${u}" is out of range.`,F=m;return Number.isInteger(m)&&Math.abs(m)>2**32?F=Ue(String(m)):"bigint"==typeof m&&(F=String(m),(m>BigInt(2)**BigInt(32)||m<-(BigInt(2)**BigInt(32)))&&(F=Ue(F)),F+="n"),d+=` It must be ${c}. Received ${F}`,d},RangeError);const tt=/[^+/0-9A-Za-z-_]/g;function Me(u,c){let m;c=c||1/0;const d=u.length;let F=null;const v=[];for(let k=0;k55295&&m<57344){if(!F){if(m>56319){(c-=3)>-1&&v.push(239,191,189);continue}if(k+1===d){(c-=3)>-1&&v.push(239,191,189);continue}F=m;continue}if(m<56320){(c-=3)>-1&&v.push(239,191,189),F=m;continue}m=65536+(F-55296<<10|m-56320)}else F&&(c-=3)>-1&&v.push(239,191,189);if(F=null,m<128){if((c-=1)<0)break;v.push(m)}else if(m<2048){if((c-=2)<0)break;v.push(m>>6|192,63&m|128)}else if(m<65536){if((c-=3)<0)break;v.push(m>>12|224,m>>6&63|128,63&m|128)}else{if(!(m<1114112))throw new Error("Invalid code point");if((c-=4)<0)break;v.push(m>>18|240,m>>12&63|128,m>>6&63|128,63&m|128)}}return v}function K(u){return le.toByteArray(function nt(u){if((u=(u=u.split("=")[0]).trim().replace(tt,"")).length<2)return"";for(;u.length%4!=0;)u+="=";return u}(u))}function je(u,c,m,d){let F;for(F=0;F=c.length||F>=u.length);++F)c[F+m]=u[F];return F}function ve(u,c){return u instanceof c||null!=u&&null!=u.constructor&&null!=u.constructor.name&&u.constructor.name===c.name}function Oe(u){return u!=u}const Ge=function(){const u="0123456789abcdef",c=new Array(256);for(let m=0;m<16;++m){const d=16*m;for(let F=0;F<16;++F)c[d+F]=u[m]+u[F]}return c}();function ge(u){return typeof BigInt>"u"?it:u}function it(){throw new Error("BigInt not supported")}},2020(Ze,xe){xe.read=function(S,y,le,j,re){var e,D,b=8*re-j-1,T=(1<>1,C=-7,x=le?re-1:0,me=le?-1:1,L=S[y+x];for(x+=me,e=L&(1<<-C)-1,L>>=-C,C+=b;C>0;e=256*e+S[y+x],x+=me,C-=8);for(D=e&(1<<-C)-1,e>>=-C,C+=j;C>0;D=256*D+S[y+x],x+=me,C-=8);if(0===e)e=1-_e;else{if(e===T)return D?NaN:1/0*(L?-1:1);D+=Math.pow(2,j),e-=_e}return(L?-1:1)*D*Math.pow(2,e-j)},xe.write=function(S,y,le,j,re,e){var D,b,T,_e=8*e-re-1,C=(1<<_e)-1,x=C>>1,me=23===re?Math.pow(2,-24)-Math.pow(2,-77):0,L=j?0:e-1,q=j?1:-1,I=y<0||0===y&&1/y<0?1:0;for(y=Math.abs(y),isNaN(y)||y===1/0?(b=isNaN(y)?1:0,D=C):(D=Math.floor(Math.log(y)/Math.LN2),y*(T=Math.pow(2,-D))<1&&(D--,T*=2),(y+=D+x>=1?me/T:me*Math.pow(2,1-x))*T>=2&&(D++,T/=2),D+x>=C?(b=0,D=C):D+x>=1?(b=(y*T-1)*Math.pow(2,re),D+=x):(b=y*Math.pow(2,x-1)*Math.pow(2,re),D=0));re>=8;S[le+L]=255&b,L+=q,b/=256,re-=8);for(D=D<0;S[le+L]=255&D,L+=q,D/=256,_e-=8);S[le+L-q]|=128*I}}}]); \ No newline at end of file diff --git a/frontend/190.88ca997666a3998a.js b/frontend/190.88ca997666a3998a.js deleted file mode 100644 index 3e3501a7..00000000 --- a/frontend/190.88ca997666a3998a.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[190],{9190:(wC,$e,g)=>{g.r($e),g.d($e,{LNDModule:()=>IC});var d=g(177),x=g(1188),pt=g(9881),e=g(4438),h=g(2920),B=g(7575);function mt(n,s){1&n&&e.nrm(0,"mat-progress-bar",3)}let Ae=(()=>{class n{constructor(t){this.router=t,this.loading=!1,this.router.events.subscribe(a=>{switch(!0){case a instanceof x.Z:this.loading=!0;break;case a instanceof x.wF:case a instanceof x.j5:case a instanceof x.L6:this.loading=!1}})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lnd-root"]],decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(a,i){1&a&&(e.j41(0,"div",1),e.DNE(1,mt,1,0,"mat-progress-bar",2),e.nrm(2,"router-outlet",null,0),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",i.loading))},dependencies:[d.bT,h.DJ,h.sA,h.UI,B.HM,x.n3],data:{animation:[pt.E]}})}return n})();var u=g(1413),_=g(6977),de=g(3993),Y=g(5964),Me=g(614),b=g(5383),l=g(4416),X=g(9647),y=g(3536),j=g(8570),I=g(9640),W=g(4054),N=g(2571),M=g(60),L=g(6038),G=g(8834),T=g(5596),he=g(6195),ie=g(9213),ve=g(9115),P=g(6850),w=g(6695),k=g(2042),c=g(9159),R=g(2798),O=g(5351),v=g(190),m=g(9417),$=g(9631),f=g(6467),V=g(6600),_e=g(450),Q=g(4823),Z=g(9587),te=g(6114);function ut(n,s){1&n&&(e.j41(0,"span",32),e.EFF(1,"= "),e.k0s())}function dt(n,s){if(1&n&&(e.j41(0,"span",33),e.nrm(1,"fa-icon",34),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function ht(n,s){if(1&n&&e.nrm(0,"span",35),2&n){const t=e.XpG();e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function _t(n,s){if(1&n&&(e.j41(0,"mat-option",36),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh(e.bMT(2,2,t))}}function ft(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.invoiceError)}}function gt(n,s){if(1&n&&(e.j41(0,"div",37),e.nrm(1,"fa-icon",38),e.DNE(2,ft,2,1,"span",39),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.invoiceError)}}let Ct=(()=>{class n{constructor(t,a,i,o,r,p){this.dialogRef=t,this.data=a,this.store=i,this.decimalPipe=o,this.commonService=r,this.actions=p,this.faExclamationTriangle=b.zpE,this.convertedCurrency=null,this.memo="",this.isAmp=!1,this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=l.md,this.timeUnitEnum=l.F7,this.timeUnits=l.SY,this.selTimeUnit=l.F7.SECS,this.invoiceError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(t=>t.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&"SaveNewInvoice"===t.payload.action&&(this.invoiceError=t.payload.message,t.payload.status===l.wn.ERROR&&(this.invoiceError=t.payload.message),t.payload.status===l.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(t){this.invoiceError="";let a=0;a=this.expiry?this.selTimeUnit!==l.F7.SECS?this.commonService.convertTime(this.expiry,this.selTimeUnit,l.F7.SECS):this.expiry:l.It,this.store.dispatch((0,v.VK)({payload:{uiMessage:l.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:a,is_amp:this.isAmp,pageSize:this.pageSize,openModal:!0}}))}resetData(){this.memo="",this.invoiceValue=null,this.private=!1,this.isAmp=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=l.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[3])).subscribe({next:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onTimeUnitChange(t){this.expiry&&this.selTimeUnit!==t.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,t.value)),this.selTimeUnit=t.value}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(I.il),e.rXU(d.QX),e.rXU(N.h),e.rXU(W.En))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-create-invoices"]],decls:53,vars:20,consts:[["addInvoiceForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end start"],["matInput","","autoFocus","","tabindex","1","name","memo",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","2","name","invoiceValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","24","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","3","name","expiry",3,"ngModelChange","step","min","ngModel"],["tabindex","4","name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"ml-2"],["fxFlex","49","fxLayoutAlign","start start"],["tabindex","4","color","primary","name","private",3,"ngModelChange","ngModel"],["matTooltip","Include routing hints for private channels","matTooltipPosition","above",1,"info-icon"],["tabindex","5","color","primary","name","amp",3,"ngModelChange","ngModel"],["matTooltip","Atomic multipath payment invoice","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","6","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","7",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Create Invoice"),e.k0s()(),e.j41(6,"button",6),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),e.EFF(13,"Memo"),e.k0s(),e.j41(14,"input",10),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.memo,p)||(i.memo=p),e.Njj(p)}),e.k0s()(),e.j41(15,"mat-form-field",11)(16,"mat-label"),e.EFF(17,"Amount"),e.k0s(),e.j41(18,"input",12),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.invoiceValue,p)||(i.invoiceValue=p),e.Njj(p)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onInvoiceValueChange())}),e.k0s(),e.j41(19,"span",13),e.EFF(20,"Sats "),e.k0s(),e.j41(21,"mat-hint",14),e.DNE(22,ut,2,0,"span",15)(23,dt,2,1,"span",16)(24,ht,1,1,"span",17),e.EFF(25),e.k0s()(),e.j41(26,"mat-form-field",18)(27,"mat-label"),e.EFF(28,"Expiry"),e.k0s(),e.j41(29,"input",19),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.expiry,p)||(i.expiry=p),e.Njj(p)}),e.k0s(),e.j41(30,"span",13),e.EFF(31),e.nI1(32,"titlecase"),e.k0s()(),e.j41(33,"mat-form-field",18)(34,"mat-select",20),e.bIt("selectionChange",function(p){return e.eBV(o),e.Njj(i.onTimeUnitChange(p))}),e.DNE(35,_t,3,4,"mat-option",21),e.k0s()(),e.j41(36,"div",22)(37,"div",23)(38,"mat-slide-toggle",24),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.private,p)||(i.private=p),e.Njj(p)}),e.EFF(39,"Private Routing Hints"),e.k0s(),e.j41(40,"mat-icon",25),e.EFF(41,"info_outline"),e.k0s()(),e.j41(42,"div",23)(43,"mat-slide-toggle",26),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.isAmp,p)||(i.isAmp=p),e.Njj(p)}),e.EFF(44,"AMP Invoice"),e.k0s(),e.j41(45,"mat-icon",27),e.EFF(46,"info_outline"),e.k0s()()(),e.DNE(47,gt,3,2,"div",28),e.j41(48,"div",29)(49,"button",30),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(50,"Clear Field"),e.k0s(),e.j41(51,"button",31),e.bIt("click",function(){e.eBV(o);const p=e.sdS(10);return e.Njj(i.onAddInvoice(p))}),e.EFF(52,"Create Invoice"),e.k0s()()()()()()}2&a&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.R50("ngModel",i.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",i.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==i.invoiceValueHint),e.R7$(),e.Y8G("ngIf",i.convertedCurrency&&"FA"===i.convertedCurrency.iconType&&""!==i.invoiceValueHint),e.R7$(),e.Y8G("ngIf",i.convertedCurrency&&"SVG"===i.convertedCurrency.iconType&&""!==i.invoiceValueHint),e.R7$(),e.SpI(" ",i.invoiceValueHint," "),e.R7$(4),e.Y8G("step",i.selTimeUnit===i.timeUnitEnum.SECS?300:i.selTimeUnit===i.timeUnitEnum.MINS?10:i.selTimeUnit===i.timeUnitEnum.HOURS?2:1)("min",1),e.R50("ngModel",i.expiry),e.R7$(2),e.SpI("",e.bMT(32,18,i.selTimeUnit)," "),e.R7$(3),e.Y8G("value",i.selTimeUnit),e.R7$(),e.Y8G("ngForOf",i.timeUnits),e.R7$(3),e.R50("ngModel",i.private),e.R7$(5),e.R50("ngModel",i.isAmp),e.R7$(4),e.Y8G("ngIf",""!==i.invoiceError))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,ie.An,$.fg,f.rl,f.nJ,f.MV,f.yw,R.VO,V.wT,_e.sG,Q.oV,Z.N,te.V,d.PV]})}return n})();var yt=g(6391),E=g(1771),q=g(2929),A=g(497);const bt=()=>["all"],Ft=n=>({"error-border":n}),xt=()=>["no_invoice"],fe=n=>({"mr-0":n}),se=n=>({width:n}),vt=n=>({"display-none":n});function Tt(n,s){1&n&&(e.j41(0,"span",19),e.EFF(1,"= "),e.k0s())}function St(n,s){if(1&n&&(e.j41(0,"span",20),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function kt(n,s){if(1&n&&e.nrm(0,"span",22),2&n){const t=e.XpG(2);e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function Rt(n,s){if(1&n){const t=e.RV6();e.j41(0,"form",6,0)(2,"mat-form-field",7)(3,"mat-label"),e.EFF(4,"Memo"),e.k0s(),e.j41(5,"input",8),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.memo,i)||(o.memo=i),e.Njj(i)}),e.k0s()(),e.j41(6,"mat-form-field",9)(7,"mat-label"),e.EFF(8,"Amount"),e.k0s(),e.j41(9,"input",10),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.invoiceValue,i)||(o.invoiceValue=i),e.Njj(i)}),e.bIt("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onInvoiceValueChange())}),e.k0s(),e.j41(10,"span",11),e.EFF(11,"Sats "),e.k0s(),e.j41(12,"mat-hint",12),e.DNE(13,Tt,2,0,"span",13)(14,St,2,1,"span",14)(15,kt,1,1,"span",15),e.EFF(16),e.k0s()(),e.j41(17,"div",16)(18,"button",17),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(19,"Clear Field"),e.k0s(),e.j41(20,"button",18),e.bIt("click",function(){e.eBV(t);const i=e.sdS(1),o=e.XpG();return e.Njj(o.onAddInvoice(i))}),e.EFF(21,"Create Invoice"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(5),e.R50("ngModel",t.memo),e.R7$(4),e.Y8G("step",100)("min",1),e.R50("ngModel",t.invoiceValue),e.R7$(4),e.Y8G("ngIf",""!==t.invoiceValueHint),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),e.R7$(),e.SpI(" ",t.invoiceValueHint," ")}}function Et(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",23)(1,"button",24),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.openCreateInvoiceModal())}),e.EFF(2,"Create Invoice"),e.k0s()()}}function It(n,s){if(1&n&&(e.j41(0,"mat-option",72),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function Lt(n,s){1&n&&e.nrm(0,"mat-progress-bar",73)}function wt(n,s){1&n&&e.nrm(0,"th",74)}function jt(n,s){if(1&n&&e.nrm(0,"span",80),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Gt(n,s){if(1&n&&e.nrm(0,"span",81),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Dt(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Nt(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,fe,t.screenSize===t.screenSizeEnum.XS))}}function Pt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,jt,1,3,"span",76)(2,Gt,1,3,"span",77)(3,Dt,1,3,"span",78)(4,Nt,1,3,"span",79),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf","OPEN"===(null==t?null:t.state)),e.R7$(),e.Y8G("ngIf","SETTLED"===(null==t?null:t.state)),e.R7$(),e.Y8G("ngIf","ACCEPTED"===(null==t?null:t.state)),e.R7$(),e.Y8G("ngIf","CANCELED"===(null==t?null:t.state))}}function $t(n,s){1&n&&e.nrm(0,"th",84)}function At(n,s){if(1&n&&(e.j41(0,"span",87),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faEyeSlash)}}function Mt(n,s){if(1&n&&(e.j41(0,"span",88),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faEye)}}function Bt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,At,2,1,"span",85)(2,Mt,2,1,"span",86),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.private),e.R7$(),e.Y8G("ngIf",!t.private)}}function Ot(n,s){1&n&&e.nrm(0,"th",89)}function Vt(n,s){if(1&n&&(e.j41(0,"span",92),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faArrowsTurnToDots)}}function Yt(n,s){if(1&n&&(e.j41(0,"span",93),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faArrowsTurnRight)}}function Xt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,Vt,2,1,"span",90)(2,Yt,2,1,"span",91),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.is_keysend),e.R7$(),e.Y8G("ngIf",!t.is_keysend)}}function Ut(n,s){1&n&&e.nrm(0,"th",94)}function Ht(n,s){if(1&n&&(e.j41(0,"span",97),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faMoneyBill1)}}function qt(n,s){if(1&n&&(e.j41(0,"span",98),e.nrm(1,"fa-icon",21),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.faBurst)}}function zt(n,s){if(1&n&&(e.j41(0,"td",75),e.DNE(1,Ht,2,1,"span",95)(2,qt,2,1,"span",96),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",!t.is_amp),e.R7$(),e.Y8G("ngIf",t.is_amp)}}function Jt(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Date Created"),e.k0s())}function Wt(n,s){if(1&n&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm"),"")}}function Qt(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Date Settled"),e.k0s())}function Zt(n,s){if(1&n&&(e.j41(0,"td",75),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(0!=+(null==t?null:t.settle_date)?e.i5U(2,1,1e3*+(null==t?null:t.settle_date),"dd/MMM/y HH:mm"):"-")}}function Kt(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Memo"),e.k0s())}function en(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.memo)}}function tn(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Preimage"),e.k0s())}function nn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.r_preimage)}}function an(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Preimage Hash"),e.k0s())}function sn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.r_hash)}}function on(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Payment Address"),e.k0s())}function ln(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_addr)}}function rn(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Payment Request"),e.k0s())}function cn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_request)}}function pn(n,s){1&n&&(e.j41(0,"th",99),e.EFF(1,"Description Hash"),e.k0s())}function mn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"div",100)(2,"span",101),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,se,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description_hash)}}function un(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Expiry"),e.k0s())}function dn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.expiry)," ")}}function hn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"CLTV Expiry"),e.k0s())}function _n(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.cltv_expiry)," ")}}function fn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Add Index"),e.k0s())}function gn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.add_index)," ")}}function Cn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Settle Index"),e.k0s())}function yn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.settle_index)," ")}}function bn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Amount (Sats)"),e.k0s())}function Fn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.value)," ")}}function xn(n,s){1&n&&(e.j41(0,"th",102),e.EFF(1,"Amount Settled (Sats)"),e.k0s())}function vn(n,s){if(1&n&&(e.j41(0,"td",75)(1,"span",103),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.amt_paid_sat)," ")}}function Tn(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",104)(1,"div",105)(2,"mat-select",106),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",107),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Sn(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",108)(1,"div",105)(2,"mat-select",109),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",107),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onInvoiceClick(i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",107),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onRefreshInvoice(i))}),e.EFF(7,"Refresh"),e.k0s()()()()}}function kn(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No invoice available."),e.k0s())}function Rn(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting invoices..."),e.k0s())}function En(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function In(n,s){if(1&n&&(e.j41(0,"td",110),e.DNE(1,kn,2,0,"p",111)(2,Rn,2,0,"p",111)(3,En,2,1,"p",111),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Ln(n,s){if(1&n&&e.nrm(0,"tr",112),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,vt,(null==t.invoices?null:t.invoices.data)&&(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)>0))}}function wn(n,s){1&n&&e.nrm(0,"tr",113)}function jn(n,s){1&n&&e.nrm(0,"tr",114)}function Gn(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",25)(1,"div",26)(2,"div",27),e.nrm(3,"fa-icon",28),e.j41(4,"span",29),e.EFF(5,"Invoices History"),e.k0s()(),e.j41(6,"div",30)(7,"mat-form-field",31)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",32),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG();return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,It,2,2,"mat-option",33),e.k0s()()(),e.j41(13,"mat-form-field",31)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",34),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(17,"div",35),e.DNE(18,Lt,1,0,"mat-progress-bar",36),e.j41(19,"table",37,1),e.qex(21,38),e.DNE(22,wt,1,0,"th",39)(23,Pt,5,4,"td",40),e.bVm(),e.qex(24,41),e.DNE(25,$t,1,0,"th",42)(26,Bt,3,2,"td",40),e.bVm(),e.qex(27,43),e.DNE(28,Ot,1,0,"th",44)(29,Xt,3,2,"td",40),e.bVm(),e.qex(30,45),e.DNE(31,Ut,1,0,"th",46)(32,zt,3,2,"td",40),e.bVm(),e.qex(33,47),e.DNE(34,Jt,2,0,"th",48)(35,Wt,3,4,"td",40),e.bVm(),e.qex(36,49),e.DNE(37,Qt,2,0,"th",48)(38,Zt,3,4,"td",40),e.bVm(),e.qex(39,50),e.DNE(40,Kt,2,0,"th",48)(41,en,4,4,"td",40),e.bVm(),e.qex(42,51),e.DNE(43,tn,2,0,"th",48)(44,nn,4,4,"td",40),e.bVm(),e.qex(45,52),e.DNE(46,an,2,0,"th",48)(47,sn,4,4,"td",40),e.bVm(),e.qex(48,53),e.DNE(49,on,2,0,"th",48)(50,ln,4,4,"td",40),e.bVm(),e.qex(51,54),e.DNE(52,rn,2,0,"th",48)(53,cn,4,4,"td",40),e.bVm(),e.qex(54,55),e.DNE(55,pn,2,0,"th",48)(56,mn,4,4,"td",40),e.bVm(),e.qex(57,56),e.DNE(58,un,2,0,"th",57)(59,dn,4,3,"td",40),e.bVm(),e.qex(60,58),e.DNE(61,hn,2,0,"th",57)(62,_n,4,3,"td",40),e.bVm(),e.qex(63,59),e.DNE(64,fn,2,0,"th",57)(65,gn,4,3,"td",40),e.bVm(),e.qex(66,60),e.DNE(67,Cn,2,0,"th",57)(68,yn,4,3,"td",40),e.bVm(),e.qex(69,61),e.DNE(70,bn,2,0,"th",57)(71,Fn,4,3,"td",40),e.bVm(),e.qex(72,62),e.DNE(73,xn,2,0,"th",57)(74,vn,4,3,"td",40),e.bVm(),e.qex(75,63),e.DNE(76,Tn,6,0,"th",64)(77,Sn,8,0,"td",65),e.bVm(),e.qex(78,66),e.DNE(79,In,4,3,"td",67),e.bVm(),e.DNE(80,Ln,1,3,"tr",68)(81,wn,1,0,"tr",69)(82,jn,1,0,"tr",70),e.k0s(),e.j41(83,"mat-paginator",71),e.bIt("page",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onPageChange(i))}),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("icon",t.faHistory),e.R7$(7),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(16,bt).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter),e.R7$(2),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.invoices)("ngClass",e.eq3(17,Ft,""!==t.errorMessage)),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(19,xt)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("length",t.totalInvoices)("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Be=(()=>{class n{constructor(t,a,i,o,r,p,F){this.logger=t,this.store=a,this.decimalPipe=i,this.commonService=o,this.datePipe=r,this.actions=p,this.camelCaseWithReplace=F,this.calledFrom="transactions",this.faEye=b.pS3,this.faEyeSlash=b.k6j,this.faHistory=b.Int,this.faArrowsTurnToDots=b.If6,this.faArrowsTurnRight=b.peG,this.faBurst=b.M29,this.faMoneyBill1=b.Ccf,this.convertedCurrency=null,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:l.md,sortBy:"creation_date",sortOrder:l.oi.DESCENDING},this.newlyAddedInvoiceMemo=null,this.newlyAddedInvoiceValue=null,this.memo="",this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoicesData=[],this.invoices=new c.I6([]),this.information={},this.selFilter="",this.private=!1,this.expiryStep=100,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.firstOffset=-1,this.lastOffset=-1,this.totalInvoices=0,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("state"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.rN).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalInvoices=t.listInvoices.total_invoices||0,this.firstOffset=+(t.listInvoices.first_index_offset||-1),this.lastOffset=+(t.listInvoices.last_index_offset||-1),this.invoicesData=t.listInvoices.invoices||[],this.invoicesData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoicesData),this.logger.info(t)}),this.actions.pipe((0,_.Q)(this.unSubs[4]),(0,Y.p)(t=>t.type===l.QP.SET_LOOKUP_LND||t.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.QP.SET_LOOKUP_LND&&this.invoicesData&&this.sort&&this.paginator&&t.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(t.payload))),this.loadInvoicesTable(this.invoicesData))})}ngAfterViewInit(){this.invoicesData.length>0&&this.loadInvoicesTable(this.invoicesData)}onAddInvoice(t){const a=this.expiry?this.expiry:l.It;this.newlyAddedInvoiceMemo=this.memo,this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,v.VK)({payload:{uiMessage:l.MZ.ADD_INVOICE,memo:this.memo,value:this.invoiceValue,private:this.private,expiry:a,is_amp:!1,pageSize:this.pageSize,openModal:!0}})),this.resetData()}onInvoiceClick(t){this.store.dispatch((0,E.xO)({payload:{data:{invoice:t,newlyAdded:!1,component:yt.H}}}))}onRefreshInvoice(t){t&&t.r_hash&&this.store.dispatch((0,v.Yi)({payload:{openSnackBar:!0,paymentHash:Buffer.from(t.r_hash.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}updateInvoicesData(t){this.invoicesData=this.invoicesData?.map(a=>a.r_hash===t.r_hash?t:a)}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.invoices.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.creation_date?this.datePipe.transform(new Date(1e3*t.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+(t.settle_date?this.datePipe.transform(new Date(1e3*t.settle_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"creation_date":case"settle_date":i=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"private":i=t?.private?"private":"public";break;case"is_keysend":i=t?.is_keysend?"keysend invoices":"non keysend invoices";break;case"is_amp":i=t?.is_amp?"atomic multi path payment":"non atomic payment";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"is_keysend"===this.selFilterBy||"is_amp"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}loadInvoicesTable(t){this.invoices=new c.I6(t?[...t]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.invoices)}resetData(){this.memo="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}onPageChange(t){let a=!0,i=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(a=!0,i=0):t.previousPageIndex&&t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(a=!0,i=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(a=!1,i=0),this.store.dispatch((0,v.Do)({payload:{num_max_invoices:t.pageSize,index_offset:i,reversed:a}}))}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[5])).subscribe({next:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,l.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}openCreateInvoiceModal(){this.store.dispatch((0,E.xO)({payload:{data:{pageSize:this.pageSize,component:Ct}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(d.QX),e.rXU(N.h),e.rXU(d.vh),e.rXU(W.En),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lightning-invoices"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","end start"],["matInput","","tabindex","1","name","memo",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","2","name","invValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","5",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private",4,"matHeaderCellDef"],["matColumnDef","is_keysend"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Keysend",4,"matHeaderCellDef"],["matColumnDef","is_amp"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","AMP",4,"matHeaderCellDef"],["matColumnDef","creation_date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","settle_date"],["matColumnDef","memo"],["matColumnDef","r_preimage"],["matColumnDef","r_hash"],["matColumnDef","payment_addr"],["matColumnDef","payment_request"],["matColumnDef","description_hash"],["matColumnDef","expiry"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","cltv_expiry"],["matColumnDef","add_index"],["matColumnDef","settle_index"],["matColumnDef","value"],["matColumnDef","amt_paid_sat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","6",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"page","length","pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","State"],["mat-cell",""],["class","dot grey","matTooltip","Open","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Canceled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Open","matTooltipPosition","right",1,"dot","grey",3,"ngClass"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Canceled","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Keysend"],["class","mr-1","matTooltip","Keysend Invoices","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Non Keysend Invoices","matTooltipPosition","right",4,"ngIf"],["matTooltip","Keysend Invoices","matTooltipPosition","right",1,"mr-1"],["matTooltip","Non Keysend Invoices","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","AMP"],["class","mr-1","matTooltip","Non Atomic Payment","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Atomic Multi Path Payment","matTooltipPosition","right",4,"ngIf"],["matTooltip","Non Atomic Payment","matTooltipPosition","right",1,"mr-1"],["matTooltip","Atomic Multi Path Payment","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","6"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,i){1&a&&(e.j41(0,"div",2),e.DNE(1,Rt,22,8,"form",3)(2,Et,3,0,"div",4)(3,Gn,84,20,"div",5),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf","home"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.qT,m.me,m.Q0,m.BC,m.cb,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,f.MV,f.yw,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,te.V,d.QX,d.vh],styles:[".mat-column-state[_ngcontent-%COMP%], .mat-column-private[_ngcontent-%COMP%], .mat-column-is_keysend[_ngcontent-%COMP%], .mat-column-is_amp[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();var J=g(6697),K=g(1534),U=g(9454),oe=g(850);const Dn=["paymentReq"];function Nn(n,s){if(1&n&&(e.j41(0,"span",35),e.nrm(1,"fa-icon",36),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function Pn(n,s){if(1&n&&e.nrm(0,"span",37),2&n){const t=e.XpG(2);e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function $n(n,s){if(1&n&&(e.j41(0,"mat-hint",32),e.EFF(1),e.DNE(2,Nn,2,1,"span",33)(3,Pn,1,1,"span",34),e.EFF(4),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI(" ",t.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.SpI(" ",t.paymentDecodedHintPost," ")}}function An(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function Mn(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.paymentDecodedHint)}}function Bn(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Payment amount is required."),e.k0s())}function On(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",6)(1,"mat-label"),e.EFF(2,"Amount (Sats)"),e.k0s(),e.j41(3,"input",38,4),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.paymentAmount,i)||(o.paymentAmount=i),e.Njj(i)}),e.bIt("change",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onAmountChange(i))}),e.k0s(),e.j41(5,"mat-hint"),e.EFF(6,"It is a zero amount invoice, enter amount to be paid."),e.k0s(),e.DNE(7,Bn,2,0,"mat-error",16),e.k0s()}if(2&n){const t=e.XpG();e.R7$(3),e.R50("ngModel",t.paymentAmount),e.R7$(4),e.Y8G("ngIf",!t.paymentAmount)}}function Vn(n,s){if(1&n&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.SpI(" ",null==t?null:t.name," ")}}function Yn(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("",null==t.selFeeLimitType?null:t.selFeeLimitType.placeholder," is required.")}}function Xn(n,s){if(1&n&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh((null==t?null:t.remote_alias)||(null==t?null:t.chan_id))}}function Un(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Channel not found in the list."),e.k0s())}function Hn(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.paymentError)}}function qn(n,s){if(1&n&&(e.j41(0,"div",40),e.nrm(1,"fa-icon",41),e.DNE(2,Hn,2,1,"span",16),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.paymentError)}}let zn=(()=>{class n{constructor(t,a,i,o,r,p,F){this.dialogRef=t,this.store=a,this.logger=i,this.commonService=o,this.decimalPipe=r,this.actions=p,this.dataService=F,this.faExclamationTriangle=b.zpE,this.convertedCurrency=null,this.paymentDecoded={},this.zeroAmtInvoice=!1,this.paymentAmount=null,this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.showAdvanced=!1,this.activeChannels=[],this.filteredMinAmtActvChannels=[],this.selectedChannelCtrl=new m.hs,this.feeLimit=null,this.selFeeLimitType=l.nv[0],this.feeLimitTypes=l.nv,this.advancedTitle="Advanced Options",this.paymentError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1])).subscribe(i=>{this.activeChannels=i.channels&&i.channels.length?i.channels?.filter(o=>o.active):[],this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.logger.info(i)}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(i=>i.type===l.QP.UPDATE_API_CALL_STATUS_LND||i.type===l.QP.SEND_PAYMENT_STATUS_LND)).subscribe(i=>{i.type===l.QP.SEND_PAYMENT_STATUS_LND&&this.dialogRef.close(),i.type===l.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===l.wn.ERROR&&"SendPayment"===i.payload.action&&(delete this.paymentDecoded.num_satoshis,this.paymentError=i.payload.message)});let t="",a="";this.activeChannels=this.activeChannels.sort((i,o)=>(t=i.remote_alias?i.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"",a=o.remote_alias?o.remote_alias.toLowerCase():o.chan_id?o.chan_id.toLowerCase():"",ta?1:0)),this.selectedChannelCtrl.valueChanges.pipe((0,_.Q)(this.unSubs[3])).subscribe(i=>{"string"==typeof i&&(this.filteredMinAmtActvChannels=this.filterChannels())})}filterChannels(){return this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(t=>0===(t.remote_alias?t.remote_alias.toLowerCase():t.chan_id?t.chan_id.toLowerCase():"").indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")&&(t.local_balance||0)>=+(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)):[]}displayFn(t){return t&&t.remote_alias?t.remote_alias:t&&t.chan_id?t.chan_id:""}onSelectedChannelChanged(){if(this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.length>0&&"string"==typeof this.selectedChannelCtrl.value){const t=this.activeChannels&&this.activeChannels.length?this.activeChannels?.filter(a=>{const i=a.remote_alias?a.remote_alias.toLowerCase():a.chan_id?a.chan_id.toLowerCase():"";return i.length===this.selectedChannelCtrl.value.length&&0===i.indexOf(this.selectedChannelCtrl.value?this.selectedChannelCtrl.value.toLowerCase():"")}):[];t&&t.length>0?(this.selectedChannelCtrl.setValue(t[0]),this.selectedChannelCtrl.setErrors(null)):this.selectedChannelCtrl.setErrors({notfound:!0})}}onSendPayment(){if(this.selectedChannelCtrl.value&&"string"==typeof this.selectedChannelCtrl.value&&this.onSelectedChannelChanged(),!this.paymentRequest||this.zeroAmtInvoice&&(!this.paymentAmount||this.paymentAmount<=0)||"string"==typeof this.selectedChannelCtrl.value)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.onPaymentRequestEntry(this.paymentRequest)}sendPayment(){if(this.selFeeLimitType!==this.feeLimitTypes[0]&&!this.feeLimit)return!0;this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.zeroAmtInvoice=!1,this.store.dispatch((0,v.Fd)({payload:{uiMessage:l.MZ.SEND_PAYMENT,paymentReq:this.paymentRequest,outgoingChannel:this.selectedChannelCtrl.value,feeLimitType:this.selFeeLimitType.id,feeLimit:this.feeLimit,fromDialog:!0}}))):(this.zeroAmtInvoice=!0,this.paymentDecoded.num_satoshis=this.paymentAmount?.toString()||"",this.store.dispatch((0,v.Fd)({payload:{uiMessage:l.MZ.SEND_PAYMENT,paymentReq:this.paymentRequest,paymentAmount:this.paymentAmount||0,outgoingChannel:this.selectedChannelCtrl.value,feeLimitType:this.selFeeLimitType.id,feeLimit:this.feeLimit,fromDialog:!0}})))}onAmountChange(t){delete this.paymentDecoded.num_satoshis}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentAmount=null,this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentRequest&&this.paymentRequest.length>100&&(this.paymentReq.control.setErrors(null),this.zeroAmtInvoice=!1,this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,J.s)(1)).subscribe({next:a=>{this.paymentDecoded=a,this.selectedChannelCtrl.setValue(null),this.onAdvancedPanelToggle(!0,!0),this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.filteredMinAmtActvChannels=this.filterChannels(),this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"BTC",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[4])).subscribe({next:i=>{this.convertedCurrency=i,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(i.OTHER?i.OTHER:0,l.k.OTHER)+") | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")},error:i=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None")+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis)+" Sats | Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None"),this.paymentDecodedHintPost="")):(this.zeroAmtInvoice=!0,this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.paymentDecodedHintPre="Memo: "+(this.paymentDecoded.description?this.paymentDecoded.description:"None"),this.paymentDecodedHintPost="")},error:a=>{this.logger.error(a),this.paymentDecodedHintPre="ERROR: "+a.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})}}))}onAdvancedPanelToggle(t,a){if(t&&!a){const i=this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.remote_alias?this.selectedChannelCtrl.value.remote_alias:this.selectedChannelCtrl.value&&this.selectedChannelCtrl.value.chan_id?this.selectedChannelCtrl.value.chan_id:"";this.advancedTitle="Advanced Options | "+this.selFeeLimitType.name+("none"===this.selFeeLimitType.id?"":": "+this.feeLimit)+(""!==i?" | First Outgoing Channel: "+i:"")}else this.advancedTitle="Advanced Options"}resetData(){this.paymentDecoded={},this.paymentRequest="",this.selectedChannelCtrl.setValue(null),this.filteredMinAmtActvChannels=this.activeChannels,this.filteredMinAmtActvChannels.length&&this.filteredMinAmtActvChannels.length>0?this.selectedChannelCtrl.enable():this.selectedChannelCtrl.disable(),this.feeLimit=null,this.selFeeLimitType=l.nv[0],this.advancedTitle="Advanced Options",this.zeroAmtInvoice=!1,this.paymentReq.control.setErrors(null),this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(I.il),e.rXU(j.gP),e.rXU(N.h),e.rXU(d.QX),e.rXU(W.En),e.rXU(K.u))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lightning-send-payments"]],viewQuery:function(a,i){if(1&a&&e.GBs(Dn,5),2&a){let o;e.mGM(o=e.lsd())&&(i.paymentReq=o.first)}},decls:51,vars:21,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["fLmt","ngModel"],["auto","matAutocomplete"],["paymentAmt","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayoutAlign","space-between stretch","fxLayout","column"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","name","paymentRequest","rows","4","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxFlex","100","fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","27","fxLayoutAlign","start end"],["tabindex","5",3,"valueChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","33"],["matInput","","type","number","name","feeLmt","required","","tabindex","6",3,"ngModelChange","step","min","disabled","ngModel"],["fxLayout","column","fxFlex","37","fxLayoutAlign","start end"],["type","text","aria-label","First Outgoing Channel","matInput","","tabindex","7",3,"formControl","matAutocomplete"],[3,"optionSelected","displayWith"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-button","","id","sendBtn","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),e.EFF(5,"Send Payment"),e.k0s()(),e.j41(6,"button",10),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",11)(9,"form",12,0)(11,"mat-form-field",13)(12,"mat-label"),e.EFF(13,"Payment Request"),e.k0s(),e.j41(14,"textarea",14,1),e.bIt("ngModelChange",function(p){return e.eBV(o),e.Njj(i.onPaymentRequestEntry(p))})("matTextareaAutosize",function(){return e.eBV(o),e.Njj(!0)}),e.k0s(),e.DNE(16,$n,5,4,"mat-hint",15)(17,An,2,0,"mat-error",16)(18,Mn,2,1,"mat-error",16),e.k0s(),e.DNE(19,On,8,2,"mat-form-field",17),e.j41(20,"mat-expansion-panel",18),e.bIt("closed",function(){return e.eBV(o),e.Njj(i.onAdvancedPanelToggle(!0,!1))})("opened",function(){return e.eBV(o),e.Njj(i.onAdvancedPanelToggle(!1,!1))}),e.j41(21,"mat-expansion-panel-header")(22,"mat-panel-title")(23,"span"),e.EFF(24),e.k0s()()(),e.j41(25,"div",19)(26,"mat-form-field",20)(27,"mat-label"),e.EFF(28,"Fee Limits"),e.k0s(),e.j41(29,"mat-select",21),e.mxI("valueChange",function(p){return e.eBV(o),e.DH7(i.selFeeLimitType,p)||(i.selFeeLimitType=p),e.Njj(p)}),e.DNE(30,Vn,2,2,"mat-option",22),e.k0s()(),e.j41(31,"mat-form-field",23)(32,"mat-label"),e.EFF(33),e.k0s(),e.j41(34,"input",24,2),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.feeLimit,p)||(i.feeLimit=p),e.Njj(p)}),e.k0s(),e.DNE(36,Yn,2,1,"mat-error",16),e.k0s(),e.j41(37,"mat-form-field",25)(38,"mat-label"),e.EFF(39,"First Outgoing Channel"),e.k0s(),e.nrm(40,"input",26),e.j41(41,"mat-autocomplete",27,3),e.bIt("optionSelected",function(){return e.eBV(o),e.Njj(i.onSelectedChannelChanged())}),e.DNE(43,Xn,2,2,"mat-option",22),e.k0s(),e.DNE(44,Un,2,0,"mat-error",16),e.k0s()()(),e.DNE(45,qn,3,2,"div",28),e.j41(46,"div",29)(47,"button",30),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(48,"Clear Fields"),e.k0s(),e.j41(49,"button",31),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onSendPayment())}),e.EFF(50,"Send Payment"),e.k0s()()()()()()}if(2&a){const o=e.sdS(15),r=e.sdS(42);e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(8),e.Y8G("ngModel",i.paymentRequest),e.R7$(2),e.Y8G("ngIf",i.paymentRequest&&""!==i.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!i.paymentRequest),e.R7$(),e.Y8G("ngIf",null==o.errors?null:o.errors.decodeError),e.R7$(),e.Y8G("ngIf",i.zeroAmtInvoice),e.R7$(5),e.JRh(i.advancedTitle),e.R7$(5),e.R50("value",i.selFeeLimitType),e.R7$(),e.Y8G("ngForOf",i.feeLimitTypes),e.R7$(3),e.JRh(null==i.selFeeLimitType?null:i.selFeeLimitType.placeholder),e.R7$(),e.Y8G("step",1)("min",0)("disabled",i.selFeeLimitType===i.feeLimitTypes[0]),e.R50("ngModel",i.feeLimit),e.R7$(2),e.Y8G("ngIf",i.selFeeLimitType!==i.feeLimitTypes[0]&&!i.feeLimit),e.R7$(4),e.Y8G("formControl",i.selectedChannelCtrl)("matAutocomplete",r),e.R7$(),e.Y8G("displayWith",i.displayFn),e.R7$(2),e.Y8G("ngForOf",i.filteredMinAmtActvChannels),e.R7$(),e.Y8G("ngIf",null==i.selectedChannelCtrl.errors?null:i.selectedChannelCtrl.errors.notfound),e.R7$(),e.Y8G("ngIf",""!==i.paymentError)}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,m.l_,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,U.GK,U.Z2,U.WN,$.fg,f.rl,f.nJ,f.MV,f.TL,R.VO,V.wT,oe.$3,oe.pN,Z.N,te.V]})}return n})();var me=g(7541);const Jn=["sendPaymentForm"],Wn=()=>["all"],Qn=n=>({"error-border":n}),Zn=()=>["no_payment"],le=n=>({"mr-0":n}),ne=n=>({width:n}),Kn=n=>({"display-none":n});function ei(n,s){if(1&n&&(e.j41(0,"span",18),e.nrm(1,"fa-icon",19),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("icon",t.convertedCurrency.symbol)}}function ti(n,s){if(1&n&&e.nrm(0,"span",20),2&n){const t=e.XpG(3);e.Y8G("innerHTML",t.convertedCurrency.symbol,e.npT)}}function ni(n,s){if(1&n&&(e.j41(0,"mat-hint",15),e.EFF(1),e.DNE(2,ei,2,1,"span",16)(3,ti,1,1,"span",17),e.EFF(4),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI(" ",t.paymentDecodedHintPre," "),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),e.R7$(),e.SpI(" ",t.paymentDecodedHintPost," ")}}function ii(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Payment request is required."),e.k0s())}function ai(n,s){if(1&n){const t=e.RV6();e.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),e.EFF(4,"Payment Request"),e.k0s(),e.j41(5,"textarea",9,1),e.bIt("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onPaymentRequestEntry(i))})("matTextareaAutosize",function(){return e.eBV(t),e.Njj(!0)}),e.k0s(),e.DNE(7,ni,5,4,"mat-hint",10)(8,ii,2,0,"mat-error",11),e.k0s(),e.j41(9,"div",12)(10,"button",13),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",14),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSendPayment())}),e.EFF(13,"Send Payment"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(5),e.Y8G("ngModel",t.paymentRequest),e.R7$(2),e.Y8G("ngIf",t.paymentRequest&&""!==t.paymentDecodedHintPre),e.R7$(),e.Y8G("ngIf",!t.paymentRequest)}}function si(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.openSendPaymentModal())}),e.EFF(2,"Send Payment"),e.k0s()()}}function oi(n,s){if(1&n&&(e.j41(0,"mat-option",76),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function li(n,s){1&n&&e.nrm(0,"mat-progress-bar",77)}function ri(n,s){1&n&&e.nrm(0,"th",78)}function ci(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function pi(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function mi(n,s){if(1&n&&(e.j41(0,"td",79),e.DNE(1,ci,1,3,"span",80)(2,pi,1,3,"span",81),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===(null==t?null:t.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==t?null:t.status))}}function ui(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Creation Date"),e.k0s())}function di(n,s){if(1&n&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,1e3*(null==t?null:t.creation_date),"dd/MMM/y HH:mm")," ")}}function hi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Payment Hash"),e.k0s())}function _i(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_hash)}}function fi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Payment Request"),e.k0s())}function gi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_request)}}function Ci(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Payment Preimage"),e.k0s())}function yi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_preimage)}}function bi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Description"),e.k0s())}function Fi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description)}}function xi(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Description Hash"),e.k0s())}function vi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",85)(2,"span",86),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description_hash)}}function Ti(n,s){1&n&&(e.j41(0,"th",84),e.EFF(1,"Failure Reason"),e.k0s())}function Si(n,s){if(1&n&&(e.j41(0,"td",79),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.brH(2,1,null==t?null:t.failure_reason,"failure_reason","_")," ")}}function ki(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Payment Index"),e.k0s())}function Ri(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.payment_index))}}function Ei(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Fee (Sats)"),e.k0s())}function Ii(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.fee))}}function Li(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Value (Sats)"),e.k0s())}function wi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.value))}}function ji(n,s){1&n&&(e.j41(0,"th",87),e.EFF(1,"Hops"),e.k0s())}function Gi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",88),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh((null==t||null==t.htlcs[0]||null==t.htlcs[0].route||null==t.htlcs[0].route.hops?null:t.htlcs[0].route.hops.length)||0)}}function Di(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",89)(1,"div",90)(2,"mat-select",91),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",92),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Ni(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",93)(1,"button",94),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onPaymentClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function Pi(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No payment available."),e.k0s())}function $i(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting payments..."),e.k0s())}function Ai(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function Mi(n,s){if(1&n&&(e.j41(0,"td",95),e.DNE(1,Pi,2,0,"p",11)(2,$i,2,0,"p",11)(3,Ai,2,1,"p",11),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.payments&&t.payments.data)||(null==t.payments||null==t.payments.data?null:t.payments.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Bi(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Oi(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Vi(n,s){if(1&n&&e.nrm(0,"span",82),2&n){const t=e.XpG(5);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Yi(n,s){if(1&n&&e.nrm(0,"span",83),2&n){const t=e.XpG(5);e.Y8G("ngClass",e.eq3(1,le,t.screenSize===t.screenSizeEnum.XS))}}function Xi(n,s){if(1&n&&(e.j41(0,"span",96),e.DNE(1,Vi,1,3,"span",80)(2,Yi,1,3,"span",81),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf","SUCCEEDED"===t.status),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==t.status)}}function Ui(n,s){if(1&n&&(e.qex(0),e.DNE(1,Xi,3,2,"span",97),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Hi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",96),e.DNE(2,Bi,1,3,"span",80)(3,Oi,1,3,"span",81),e.k0s(),e.DNE(4,Ui,2,1,"ng-container",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.Y8G("ngIf","SUCCEEDED"===(null==t?null:t.status)),e.R7$(),e.Y8G("ngIf","SUCCEEDED"!==(null==t?null:t.status)),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function qi(n,s){if(1&n&&(e.j41(0,"span",96),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,t.attempt_time_ns/1e6,"dd/MMM/y HH:mm")," ")}}function zi(n,s){if(1&n&&(e.qex(0),e.DNE(1,qi,3,4,"span",97),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Ji(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",96),e.EFF(2),e.k0s(),e.DNE(3,zi,2,1,"ng-container",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" Total Attempts: ",null==t||null==t.htlcs?null:t.htlcs.length," "),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function Wi(n,s){if(1&n&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&n){const t=s.index;e.R7$(),e.SpI(" HTLC ",t+1," ")}}function Qi(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Wi,2,1,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Zi(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,Qi,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_hash),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function Ki(n,s){1&n&&e.nrm(0,"span",96)}function ea(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Ki,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function ta(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ea,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_request),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function na(n,s){if(1&n&&(e.j41(0,"span",96),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null==t?null:t.preimage," ")}}function ia(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,na,2,1,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function aa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ia,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.payment_preimage),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function sa(n,s){1&n&&e.nrm(0,"span",96)}function oa(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,sa,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function la(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,oa,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ra(n,s){1&n&&e.nrm(0,"span",96)}function ca(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ra,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function pa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",98)(2,"span",86),e.EFF(3),e.k0s()(),e.DNE(4,ca,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(3,ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.description_hash),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ma(n,s){1&n&&e.nrm(0,"span",96)}function ua(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ma,1,0,"span",97),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function da(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",96),e.EFF(2),e.nI1(3,"camelcaseWithReplace"),e.k0s(),e.DNE(4,ua,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" ",e.brH(3,2,null==t?null:t.failure_reason,"failure_reason","_")," "),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ha(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,t.attempt_id)," ")}}function _a(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ha,3,3,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function fa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,_a,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,2,null==t?null:t.payment_index)),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ga(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==t.route?null:t.route.total_fees,"1.0-0")," ")}}function Ca(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ga,3,4,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function ya(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,Ca,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==t?null:t.fee,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ba(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==t.route?null:t.route.total_amt,"1.0-0")," ")}}function Fa(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ba,3,4,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function xa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.DNE(4,Fa,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.i5U(3,2,null==t?null:t.value,"1.0-0")),e.R7$(2),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function va(n,s){if(1&n&&(e.j41(0,"span",99),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,(null==t.route||null==t.route.hops?null:t.route.hops.length)||0,"1.0-0")," ")}}function Ta(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,va,3,4,"span",100),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Sa(n,s){if(1&n&&(e.j41(0,"td",79)(1,"span",99),e.EFF(2,"-"),e.k0s(),e.DNE(3,Ta,2,1,"span",11),e.k0s()),2&n){const t=s.$implicit;e.R7$(3),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function ka(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",104)(1,"button",105),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2).$implicit,r=e.XpG(2);return e.Njj(r.onHTLCClick(i,o))}),e.EFF(2),e.k0s()()}if(2&n){const t=s.index;e.R7$(2),e.SpI("View ",t+1,"")}}function Ra(n,s){if(1&n&&(e.j41(0,"div"),e.DNE(1,ka,3,1,"div",103),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.htlcs)}}function Ea(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",79)(1,"span",101)(2,"button",102),e.bIt("click",function(){const i=e.eBV(t).$implicit;return e.Njj(i.is_expanded=!(null!=i&&i.is_expanded))}),e.EFF(3),e.k0s()(),e.DNE(4,Ra,2,1,"div",11),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(3),e.JRh(null!=t&&t.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",null==t?null:t.is_expanded)}}function Ia(n,s){1&n&&e.nrm(0,"tr",106)}function La(n,s){if(1&n&&e.nrm(0,"tr",107),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,Kn,(null==t.payments?null:t.payments.data)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)>0))}}function wa(n,s){1&n&&e.nrm(0,"tr",108)}function ja(n,s){1&n&&e.nrm(0,"tr",106)}function Ga(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",23)(1,"div",24)(2,"div",25),e.nrm(3,"fa-icon",26),e.j41(4,"span",27),e.EFF(5,"Payments History"),e.k0s()(),e.j41(6,"div",28)(7,"mat-form-field",29)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",30),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG();return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,oi,2,2,"mat-option",31),e.k0s()()(),e.j41(13,"mat-form-field",29)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",32),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(17,"div",33)(18,"div",34),e.DNE(19,li,1,0,"mat-progress-bar",35),e.j41(20,"table",36,2),e.qex(22,37),e.DNE(23,ri,1,0,"th",38)(24,mi,3,2,"td",39),e.bVm(),e.qex(25,40),e.DNE(26,ui,2,0,"th",41)(27,di,3,4,"td",39),e.bVm(),e.qex(28,42),e.DNE(29,hi,2,0,"th",41)(30,_i,4,4,"td",39),e.bVm(),e.qex(31,43),e.DNE(32,fi,2,0,"th",41)(33,gi,4,4,"td",39),e.bVm(),e.qex(34,44),e.DNE(35,Ci,2,0,"th",41)(36,yi,4,4,"td",39),e.bVm(),e.qex(37,45),e.DNE(38,bi,2,0,"th",41)(39,Fi,4,4,"td",39),e.bVm(),e.qex(40,46),e.DNE(41,xi,2,0,"th",41)(42,vi,4,4,"td",39),e.bVm(),e.qex(43,47),e.DNE(44,Ti,2,0,"th",41)(45,Si,3,5,"td",39),e.bVm(),e.qex(46,48),e.DNE(47,ki,2,0,"th",49)(48,Ri,4,3,"td",39),e.bVm(),e.qex(49,50),e.DNE(50,Ei,2,0,"th",49)(51,Ii,4,3,"td",39),e.bVm(),e.qex(52,51),e.DNE(53,Li,2,0,"th",49)(54,wi,4,3,"td",39),e.bVm(),e.qex(55,52),e.DNE(56,ji,2,0,"th",49)(57,Gi,3,1,"td",39),e.bVm(),e.qex(58,53),e.DNE(59,Di,6,0,"th",54)(60,Ni,3,0,"td",55),e.bVm(),e.qex(61,56),e.DNE(62,Mi,4,3,"td",57),e.bVm(),e.qex(63,58),e.DNE(64,Hi,5,3,"td",39),e.bVm(),e.qex(65,59),e.DNE(66,Ji,4,2,"td",39),e.bVm(),e.qex(67,60),e.DNE(68,Zi,5,5,"td",39),e.bVm(),e.qex(69,61),e.DNE(70,ta,5,5,"td",39),e.bVm(),e.qex(71,62),e.DNE(72,aa,5,5,"td",39),e.bVm(),e.qex(73,63),e.DNE(74,la,5,5,"td",39),e.bVm(),e.qex(75,64),e.DNE(76,pa,5,5,"td",39),e.bVm(),e.qex(77,65),e.DNE(78,da,5,6,"td",39),e.bVm(),e.qex(79,66),e.DNE(80,fa,5,4,"td",39),e.bVm(),e.qex(81,67),e.DNE(82,ya,5,5,"td",39),e.bVm(),e.qex(83,68),e.DNE(84,xa,5,5,"td",39),e.bVm(),e.qex(85,69),e.DNE(86,Sa,4,1,"td",39),e.bVm(),e.qex(87,70),e.DNE(88,Ea,5,2,"td",39),e.bVm(),e.DNE(89,Ia,1,0,"tr",71)(90,La,1,3,"tr",72)(91,wa,1,0,"tr",73)(92,ja,1,0,"tr",74),e.k0s(),e.j41(93,"mat-paginator",75),e.bIt("page",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onPageChange(i))}),e.k0s()()()()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("icon",t.faHistory),e.R7$(7),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(18,Wn).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter),e.R7$(3),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.payments)("ngClass",e.eq3(19,Qn,""!==t.errorMessage)),e.R7$(69),e.Y8G("matRowDefColumns",t.htlcColumns)("matRowDefWhen",t.is_group),e.R7$(),e.Y8G("matFooterRowDef",e.lJ4(21,Zn)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("length",t.totalPayments)("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Oe=(()=>{class n{constructor(t,a,i,o,r,p,F,C){this.logger=t,this.commonService=a,this.dataService=i,this.store=o,this.rtlEffects=r,this.decimalPipe=p,this.datePipe=F,this.camelCaseWithReplace=C,this.calledFrom="transactions",this.faHistory=b.Int,this.convertedCurrency=null,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:l.md,sortBy:"creation_date",sortOrder:l.oi.DESCENDING},this.newlyAddedPayment="",this.information={},this.peers=[],this.payments=new c.I6([]),this.totalPayments=100,this.paymentJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.firstOffset=-1,this.lastOffset=-1,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.peers=t.peers}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.htlcColumns=[],this.displayedColumns.map(a=>this.htlcColumns.push("group_"+a)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.KT).pipe((0,_.Q)(this.unSubs[5])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=t.listPayments.payments||[],this.totalPayments=this.paymentJSONArr.length,this.firstOffset=+(t.listPayments.first_index_offset||-1),this.lastOffset=+(t.listPayments.last_index_offset||-1),this.paymentJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr.slice(0,this.pageSize)),this.logger.info(t)})}ngAfterViewInit(){this.paymentJSONArr&&this.paymentJSONArr.length>0&&this.loadPaymentsTable(this.paymentJSONArr.slice(0,this.pageSize))}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.timestamp?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,J.s)(1)).subscribe(t=>{this.paymentDecoded=t,this.paymentDecoded.timestamp?(this.paymentDecoded.num_satoshis=this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis?(+this.paymentDecoded.num_msat/1e3).toString():"0",this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded.payment_hash||"",this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis&&""!==this.paymentDecoded.num_satoshis&&"0"!==this.paymentDecoded.num_satoshis?(this.store.dispatch((0,E.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"destination",value:this.paymentDecoded.destination,title:"Destination",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:50,type:l.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.num_satoshis,title:"Amount (Sats)",width:50,type:l.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:l.UN.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,J.s)(1)).subscribe(a=>{a&&(this.store.dispatch((0,v.Fd)({payload:{uiMessage:l.MZ.SEND_PAYMENT,paymentReq:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,E.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"destination",value:this.paymentDecoded.destination,title:"Destination",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"timestamp",value:this.paymentDecoded.timestamp,title:"Creation Date",width:40,type:l.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:l.UN.NUMBER},{key:"cltv_expiry",value:this.paymentDecoded.cltv_expiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,getInputs:[{placeholder:"Amount (Sats)",inputType:l.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,J.s)(1)).subscribe(i=>{i&&(this.paymentDecoded.num_satoshis=i[0].inputValue,this.store.dispatch((0,v.Fd)({payload:{uiMessage:l.MZ.SEND_PAYMENT,paymentReq:this.paymentRequest,paymentAmount:i[0].inputValue,fromDialog:!1}})),this.resetData())}))}openSendPaymentModal(){this.store.dispatch((0,E.xO)({payload:{data:{component:zn}}}))}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,J.s)(1)).subscribe(a=>{this.paymentDecoded=a,this.paymentDecoded.num_msat&&!this.paymentDecoded.num_satoshis&&(this.paymentDecoded.num_satoshis=(+this.paymentDecoded.num_msat/1e3).toString()),this.paymentDecoded.num_satoshis?this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(+this.paymentDecoded.num_satoshis,l.BQ.SATS,l.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,_.Q)(this.unSubs[6])).subscribe({next:i=>{this.convertedCurrency=i,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,l.k.OTHER)+") | Memo: "+this.paymentDecoded.description},error:i=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.num_satoshis?this.paymentDecoded.num_satoshis:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}onPageChange(t){let a=!0,i=this.lastOffset;this.pageSize=t.pageSize,0===t.pageIndex?(a=!0,i=0):t.pageIndext.previousPageIndex&&t.length>(t.pageIndex+1)*t.pageSize?(a=!0,i=this.firstOffset):t.length<=(t.pageIndex+1)*t.pageSize&&(a=!1,i=0);const o=t.pageIndex*this.pageSize;this.loadPaymentsTable(this.paymentJSONArr.slice(o,o+this.pageSize))}is_group(t,a){return a.htlcs&&a.htlcs.length>1}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}getHopDetails(t){const a=this;return new Promise((i,o)=>{const r=a.peers.find(p=>p.pub_key===t.pub_key);r&&r.alias?i("
Channel: "+r.alias.padEnd(20)+"			Amount (Sats): "+a.decimalPipe.transform(t.amt_to_forward)+"
"):a.dataService.getAliasesFromPubkeys(t.pub_key||"",!1).pipe((0,_.Q)(a.unSubs[7])).subscribe({next:p=>i("
Channel: "+(p.node&&p.node.alias?p.node.alias.padEnd(20):t.pub_key?.substring(0,17)+"...")+"			Amount (Sats): "+a.decimalPipe.transform(t.amt_to_forward)+"
"),error:p=>i("
Channel: "+(t.pub_key?t.pub_key?.substring(0,17)+"...":"")+"			Amount (Sats): "+a.decimalPipe.transform(t.amt_to_forward)+"
")})})}onHTLCClick(t,a){a.payment_request&&""!==a.payment_request.trim()?this.dataService.decodePayment(a.payment_request,!1).pipe((0,J.s)(1)).subscribe({next:i=>{setTimeout(()=>{this.showHTLCView(t,a,i)},0)},error:i=>{this.showHTLCView(t,a)}}):this.showHTLCView(t,a)}showHTLCView(t,a,i){t.route&&t.route.hops&&t.route.hops.length?Promise.all(t.route.hops.map(o=>this.getHopDetails(o))).then(o=>{this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(t,a,i,o),scrollable:t.route&&t.route.hops&&t.route.hops.length>1}}}))}):this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"HTLC Information",message:this.prepareData(t,a,i,[]),scrollable:t.route&&t.route.hops&&t.route.hops.length>1}}}))}prepareData(t,a,i,o){const r=[[{key:"payment_hash",value:a.payment_hash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"preimage",value:t.preimage,title:"Preimage",width:100,type:l.UN.STRING}],[{key:"payment_request",value:a.payment_request,title:"Payment Request",width:100,type:l.UN.STRING}],[{key:"status",value:t.status,title:"Status",width:33,type:l.UN.STRING},{key:"attempt_time_ns",value:+(t.attempt_time_ns||0)/1e9,title:"Attempt Time",width:33,type:l.UN.DATE_TIME},{key:"resolve_time_ns",value:+(t.resolve_time_ns||0)/1e9,title:"Resolve Time",width:34,type:l.UN.DATE_TIME}],[{key:"total_amt",value:t.route?.total_amt,title:"Amount (Sats)",width:33,type:l.UN.NUMBER},{key:"total_fees",value:t.route?.total_fees,title:"Fee (Sats)",width:33,type:l.UN.NUMBER},{key:"total_time_lock",value:t.route?.total_time_lock,title:"Total Time Lock",width:34,type:l.UN.NUMBER}],[{key:"hops",value:o,title:"Hops",width:100,type:l.UN.ARRAY}]];return i&&i.description&&""!==i.description&&r.splice(3,0,[{key:"description",value:i.description,title:"Description",width:100,type:l.UN.STRING}]),r}onPaymentClick(t){if(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>0){const a=t.htlcs[0].route.hops?.reduce((i,o)=>o.pub_key&&""===i?o.pub_key:i+","+o.pub_key,"");this.dataService.getAliasesFromPubkeys(a,!0).pipe((0,_.Q)(this.unSubs[8])).subscribe(i=>{this.showPaymentView(t,i?.reduce((o,r)=>""===o?r:o+"\n"+r,""))})}else this.showPaymentView(t,"")}showPaymentView(t,a){const i=[[{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:l.UN.STRING}],[{key:"payment_preimage",value:t.payment_preimage,title:"Payment Preimage",width:100,type:l.UN.STRING}],[{key:"payment_request",value:t.payment_request,title:"Payment Request",width:100,type:l.UN.STRING}],[{key:"status",value:t.status,title:"Status",width:50,type:l.UN.STRING},{key:"creation_date",value:t.creation_date,title:"Creation Date",width:50,type:l.UN.DATE_TIME}],[{key:"value_msat",value:t.value_msat,title:"Value (mSats)",width:50,type:l.UN.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:50,type:l.UN.NUMBER}],[{key:"path",value:a,title:"Path",width:100,type:l.UN.STRING}]];t.payment_request&&""!==t.payment_request.trim()?this.dataService.decodePayment(t.payment_request,!1).pipe((0,J.s)(1)).subscribe(o=>{o&&o.description&&""!==o.description&&i.splice(3,0,[{key:"description",value:o.description,title:"Description",width:100,type:l.UN.STRING}]),setTimeout(()=>{this.openPaymentAlert(i,!!(t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length>1))},0)}):this.openPaymentAlert(i,!1)}openPaymentAlert(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Payment Information",message:t,scrollable:a}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.payments.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.creation_date?this.datePipe.transform(new Date(1e3*t.creation_date),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"status":case"group_status":i="SUCCEEDED"===t?.status?"succeeded":"failed";break;case"creation_date":i=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"failure_reason":case"group_failure_reason":i=this.camelCaseWithReplace.transform(t.failure_reason||"","failure_reason","_").trim().toLowerCase();break;case"hops":i=t.htlcs&&t.htlcs[0]&&t.htlcs[0].route&&t.htlcs[0].route.hops&&t.htlcs[0].route.hops.length?t.htlcs[0].route.hops.length.toString():"0";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"failure_reason"===this.selFilterBy||"group_failure_reason"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}loadPaymentsTable(t){this.payments=new c.I6(t?[...t]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(a,i)=>"hops"===i?a.htlcs.length&&a.htlcs[0]&&a.htlcs[0].route&&a.htlcs[0].route.hops&&a.htlcs[0].route.hops.length?a.htlcs[0].route.hops.length:0:a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const t=JSON.parse(JSON.stringify(this.payments.data)),a=t?.reduce((i,o)=>(o.payment_request&&""!==o.payment_request.trim()&&(i=""===i?o.payment_request:i+","+o.payment_request),i),"");this.dataService.decodePayments(a).pipe((0,_.Q)(this.unSubs[9])).subscribe(i=>{let o=0;i.forEach((p,F)=>{if(p){for(;t[F+o].payment_hash!==p.payment_hash;)o+=1;t[F+o].description=p.description}});const r=t?.reduce((p,F)=>p.concat(F),[]);this.commonService.downloadFile(r,"Payments")})}}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(K.u),e.rXU(I.il),e.rXU(me.H),e.rXU(d.QX),e.rXU(d.vh),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lightning-payments"]],viewQuery:function(a,i){if(1&a&&(e.GBs(Jn,5),e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first),e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{calledFrom:"calledFrom"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayoutAlign","space-between stretch","fxLayout","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayoutAlign","space-between stretch","fxLayout","row wrap"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","4",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","creation_date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","payment_hash"],["matColumnDef","payment_request"],["matColumnDef","payment_preimage"],["matColumnDef","description"],["matColumnDef","description_hash"],["matColumnDef","failure_reason"],["matColumnDef","payment_index"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","fee"],["matColumnDef","value"],["matColumnDef","hops"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_status"],["matColumnDef","group_creation_date"],["matColumnDef","group_payment_hash"],["matColumnDef","group_payment_request"],["matColumnDef","group_payment_preimage"],["matColumnDef","group_description"],["matColumnDef","group_description_hash"],["matColumnDef","group_failure_reason"],["matColumnDef","group_payment_index"],["matColumnDef","group_fee"],["matColumnDef","group_value"],["matColumnDef","group_hops"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"page","length","pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Succeeded","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Failed","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Succeeded","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Failed","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayout","row",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(a,i){1&a&&(e.j41(0,"div",3),e.DNE(1,ai,14,3,"form",4)(2,si,3,0,"div",5)(3,Ga,94,22,"div",6),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf","home"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom),e.R7$(),e.Y8G("ngIf","transactions"===i.calledFrom))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,f.MV,f.TL,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,d.QX,d.vh,q.VD],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-group_actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_status[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type), .mat-column-group_creation_date[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.htlc-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.3rem;position:absolute}.mat-column-group_creation_date[_ngcontent-%COMP%]{min-width:11rem}"]})}return n})();const Ve=n=>({backgroundColor:n});function Da(n,s){if(1&n&&e.nrm(0,"span",8),2&n){const t=e.XpG();e.Y8G("ngStyle",e.eq3(1,Ve,null==t.information?null:t.information.color))}}function Na(n,s){if(1&n&&(e.j41(0,"div")(1,"h4",1),e.EFF(2,"Color"),e.k0s(),e.j41(3,"div",2),e.nrm(4,"span",9),e.EFF(5),e.nI1(6,"uppercase"),e.k0s()()),2&n){const t=e.XpG();e.R7$(4),e.Y8G("ngStyle",e.eq3(4,Ve,null==t.information?null:t.information.color)),e.R7$(),e.SpI(" ",e.bMT(6,2,null==t.information?null:t.information.color)," ")}}function Pa(n,s){1&n&&e.nrm(0,"span",10)}function $a(n,s){1&n&&e.nrm(0,"span",11)}function Aa(n,s){if(1&n&&(e.j41(0,"span",2),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}let Ye=(()=>{class n{constructor(t){this.commonService=t,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(t=>{this.chains.push(this.commonService.titleCase(t.chain)+" "+this.commonService.titleCase(t.network))}))}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},features:[e.OA$],decls:19,vars:7,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","dot green mr-1","matTooltip","Synced to Chain","matTooltipPosition","right",4,"ngIf"],["class","dot red mr-1","matTooltip","Not Synced to Chain","matTooltipPosition","right",4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"],["matTooltip","Synced to Chain","matTooltipPosition","right",1,"dot","green","mr-1"],["matTooltip","Not Synced to Chain","matTooltipPosition","right",1,"dot","red","mr-1"]],template:function(a,i){1&a&&(e.j41(0,"div",0)(1,"div")(2,"h4",1),e.EFF(3,"Alias"),e.k0s(),e.j41(4,"div",2),e.EFF(5),e.DNE(6,Da,1,3,"span",3),e.k0s()(),e.DNE(7,Na,7,6,"div",4),e.j41(8,"div")(9,"h4",1),e.EFF(10,"Implementation"),e.k0s(),e.j41(11,"div",2),e.EFF(12),e.k0s()(),e.j41(13,"div")(14,"h4",1),e.EFF(15,"Chain"),e.k0s(),e.DNE(16,Pa,1,0,"span",5)(17,$a,1,0,"span",6)(18,Aa,2,1,"span",7),e.k0s()()),2&a&&(e.R7$(5),e.SpI(" ",null==i.information?null:i.information.alias," "),e.R7$(),e.Y8G("ngIf",!i.showColorFieldSeparately),e.R7$(),e.Y8G("ngIf",i.showColorFieldSeparately),e.R7$(5),e.JRh(null!=i.information&&i.information.lnImplementation||null!=i.information&&i.information.version?(null==i.information?null:i.information.lnImplementation)+" "+(null==i.information?null:i.information.version):""),e.R7$(4),e.Y8G("ngIf",null==i.information?null:i.information.synced_to_chain),e.R7$(),e.Y8G("ngIf",!(null!=i.information&&i.information.synced_to_chain)),e.R7$(),e.Y8G("ngForOf",i.chains))},dependencies:[d.Sq,d.bT,d.B3,h.DJ,h.sA,h.UI,L.eI,Q.oV,d.Pc]})}return n})();function Ma(n,s){if(1&n&&(e.j41(0,"div",2)(1,"div")(2,"h4",3),e.EFF(3,"Lightning"),e.k0s(),e.j41(4,"div",4),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.nrm(7,"mat-progress-bar",5),e.k0s(),e.j41(8,"div")(9,"h4",3),e.EFF(10,"On-chain"),e.k0s(),e.j41(11,"div",4),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.nrm(14,"mat-progress-bar",5),e.k0s(),e.j41(15,"div")(16,"h4",3),e.EFF(17,"Total"),e.k0s(),e.j41(18,"div",4),e.EFF(19),e.nI1(20,"number"),e.k0s()()()),2&n){const t=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,5,null==t.balances?null:t.balances.lightning)," Sats"),e.R7$(2),e.FS9("value",(null==t.balances?null:t.balances.lightning)/(null==t.balances?null:t.balances.total)*100),e.R7$(5),e.SpI("",e.bMT(13,7,null==t.balances?null:t.balances.onchain)," Sats"),e.R7$(2),e.FS9("value",(null==t.balances?null:t.balances.onchain)/(null==t.balances?null:t.balances.total)*100),e.R7$(5),e.SpI("",e.bMT(20,9,null==t.balances?null:t.balances.total)," Sats")}}function Ba(n,s){if(1&n&&(e.j41(0,"div",6)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Oa=(()=>{class n{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,i){if(1&a&&e.DNE(0,Ma,21,11,"div",1)(1,Ba,3,1,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf"," "===i.errorMessage)("ngIfElse",o)}},dependencies:[d.bT,h.DJ,h.sA,h.UI,B.HM,d.QX]})}return n})();function Va(n,s){if(1&n&&(e.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e.EFF(4,"Daily"),e.k0s(),e.j41(5,"div",5),e.EFF(6),e.nI1(7,"number"),e.k0s()(),e.j41(8,"div")(9,"h4",4),e.EFF(10,"Weekly"),e.k0s(),e.j41(11,"div",5),e.EFF(12),e.nI1(13,"number"),e.k0s()(),e.j41(14,"div")(15,"h4",4),e.EFF(16,"Monthly"),e.k0s(),e.j41(17,"div",5),e.EFF(18),e.nI1(19,"number"),e.k0s()(),e.j41(20,"div",6),e.nrm(21,"h4",7)(22,"span",5),e.k0s()(),e.j41(23,"div",3)(24,"div")(25,"h4",4),e.EFF(26,"Transactions"),e.k0s(),e.j41(27,"div",5),e.EFF(28),e.nI1(29,"number"),e.k0s()(),e.j41(30,"div")(31,"h4",4),e.EFF(32,"Transactions"),e.k0s(),e.j41(33,"div",5),e.EFF(34),e.nI1(35,"number"),e.k0s()(),e.j41(36,"div")(37,"h4",4),e.EFF(38,"Transactions"),e.k0s(),e.j41(39,"div",5),e.EFF(40),e.nI1(41,"number"),e.k0s()(),e.j41(42,"div",6),e.nrm(43,"h4",7)(44,"span",5),e.k0s()()()),2&n){const t=e.XpG();e.R7$(6),e.SpI("",e.bMT(7,6,null==t.fees?null:t.fees.day_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(13,8,null==t.fees?null:t.fees.week_fee_sum)," Sats"),e.R7$(6),e.SpI("",e.bMT(19,10,null==t.fees?null:t.fees.month_fee_sum)," Sats"),e.R7$(10),e.JRh(e.bMT(29,12,null==t.fees?null:t.fees.daily_tx_count)),e.R7$(6),e.JRh(e.bMT(35,14,null==t.fees?null:t.fees.weekly_tx_count)),e.R7$(6),e.JRh(e.bMT(41,16,null==t.fees?null:t.fees.monthly_tx_count))}}function Ya(n,s){if(1&n&&(e.j41(0,"div",8)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Xe=(()=>{class n{constructor(){this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100}ngOnChanges(){if(this.fees.month_fee_sum){this.totalFees=[{name:"Monthly",value:this.fees.month_fee_sum},{name:"Weekly",value:this.fees.week_fee_sum||0},{name:"Daily ",value:this.fees.day_fee_sum||0}];const a=10**(Math.ceil(Math.log(this.fees.month_fee_sum+1)/Math.LN10)-1);this.maxFeeValue=Math.ceil(this.fees.month_fee_sum/a)*a/5||100,Object.assign(this,this.totalFees)}else this.totalFees=[{name:"Monthly",value:0},{name:"Weekly",value:0},{name:"Daily",value:0}],this.maxFeeValue=100,Object.assign(this,this.totalFees)}static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},features:[e.OA$],decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"],[1,"dashboard-info-title"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,i){if(1&a&&e.DNE(0,Va,45,18,"div",1)(1,Ya,3,1,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},dependencies:[d.bT,h.DJ,h.sA,h.UI,d.QX]})}return n})();function Xa(n,s){if(1&n&&(e.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),e.EFF(4,"Active"),e.k0s(),e.j41(5,"div",5),e.nrm(6,"span",6),e.EFF(7),e.nI1(8,"number"),e.k0s()(),e.j41(9,"div")(10,"h4",4),e.EFF(11,"Pending"),e.k0s(),e.j41(12,"div",5),e.nrm(13,"span",7),e.EFF(14),e.nI1(15,"number"),e.k0s()(),e.j41(16,"div")(17,"h4",4),e.EFF(18,"Inactive"),e.k0s(),e.j41(19,"div",5),e.nrm(20,"span",8),e.EFF(21),e.nI1(22,"number"),e.k0s()(),e.j41(23,"div")(24,"h4",4),e.EFF(25,"Closing"),e.k0s(),e.j41(26,"div",5),e.nrm(27,"span",9),e.EFF(28),e.nI1(29,"number"),e.k0s()()(),e.j41(30,"div",3)(31,"div")(32,"h4",4),e.EFF(33,"Capacity"),e.k0s(),e.j41(34,"div",5),e.EFF(35),e.nI1(36,"number"),e.k0s()(),e.j41(37,"div")(38,"h4",4),e.EFF(39,"Capacity"),e.k0s(),e.j41(40,"div",5),e.EFF(41),e.nI1(42,"number"),e.k0s()(),e.j41(43,"div")(44,"h4",4),e.EFF(45,"Capacity"),e.k0s(),e.j41(46,"div",5),e.EFF(47),e.nI1(48,"number"),e.k0s()(),e.j41(49,"div")(50,"h4",4),e.EFF(51,"Capacity"),e.k0s(),e.j41(52,"div",5),e.EFF(53),e.nI1(54,"number"),e.k0s()()()()),2&n){const t=e.XpG();e.R7$(7),e.JRh(e.bMT(8,8,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(15,10,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(22,12,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.num_channels)||0)),e.R7$(7),e.JRh(e.bMT(29,14,(null==t.channelsStatus||null==t.channelsStatus.closing?null:t.channelsStatus.closing.num_channels)||0)),e.R7$(7),e.SpI("",e.bMT(36,16,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(42,18,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(48,20,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.capacity)||0)," Sats"),e.R7$(6),e.SpI("",e.bMT(54,22,(null==t.channelsStatus||null==t.channelsStatus.closing?null:t.channelsStatus.closing.capacity)||0)," Sats")}}function Ua(n,s){if(1&n&&(e.j41(0,"div",10)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Ue=(()=>{class n{constructor(){this.channelsStatus={}}static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],[1,"dot","tiny-dot","red"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,i){if(1&a&&e.DNE(0,Xa,55,24,"div",1)(1,Ua,3,1,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf"," "===i.errorMessage)("ngIfElse",o)}},dependencies:[d.bT,h.DJ,h.sA,h.UI,d.QX]})}return n})();var ee=g(1997);const Ha=()=>["../connections/channels/open"],qa=(n,s)=>({filterColumn:n,filterValue:s});function za(n,s){if(1&n&&(e.j41(0,"div",19)(1,"a",20),e.EFF(2),e.nI1(3,"slice"),e.k0s(),e.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),e.EFF(7,"Local:"),e.k0s(),e.EFF(8),e.nI1(9,"number"),e.k0s(),e.j41(10,"mat-hint",22),e.nrm(11,"fa-icon",23),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.j41(14,"mat-hint",24)(15,"strong",8),e.EFF(16,"Remote:"),e.k0s(),e.EFF(17),e.nI1(18,"number"),e.k0s()(),e.nrm(19,"mat-progress-bar",25),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.FS9("matTooltip",t.remote_alias||t.remote_pubkey),e.FS9("matTooltipDisabled",(t.remote_alias||t.remote_pubkey).length<26),e.Y8G("routerLink",e.lJ4(21,Ha))("state",e.l_i(22,qa,t.remote_alias?"remote_alias":"remote_pubkey",t.remote_alias||t.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,11,t.remote_alias||t.remote_pubkey,0,24),"",(t.remote_alias||t.remote_pubkey).length>25?"...":""," "),e.R7$(6),e.SpI("",e.bMT(9,15,t.local_balance||0)," Sats"),e.R7$(3),e.Y8G("icon",a.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,17,t.balancedness||0),") "),e.R7$(5),e.SpI("",e.bMT(18,19,t.remote_balance||0)," Sats"),e.R7$(2),e.FS9("value",t.local_balance&&t.local_balance>0?+t.local_balance/(+t.local_balance+ +t.remote_balance)*100:0)}}function Ja(n,s){if(1&n&&(e.j41(0,"div",17),e.DNE(1,za,20,25,"div",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngForOf",t.allChannels)}}function Wa(n,s){if(1&n&&(e.j41(0,"div",3)(1,"div",4)(2,"span",5),e.EFF(3,"Total Capacity"),e.k0s(),e.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),e.EFF(7,"Local:"),e.k0s(),e.EFF(8),e.nI1(9,"number"),e.k0s(),e.j41(10,"mat-hint",9),e.nrm(11,"fa-icon",10),e.EFF(12),e.nI1(13,"number"),e.k0s(),e.j41(14,"mat-hint",11)(15,"strong",8),e.EFF(16,"Remote:"),e.k0s(),e.EFF(17),e.nI1(18,"number"),e.k0s()(),e.nrm(19,"mat-progress-bar",12),e.k0s(),e.j41(20,"div",13),e.nrm(21,"mat-divider",14),e.k0s(),e.j41(22,"div",15),e.DNE(23,Ja,2,1,"div",16),e.k0s()()),2&n){const t=e.XpG(),a=e.sdS(2);e.R7$(8),e.SpI("",e.bMT(9,7,(null==t.channelBalances?null:t.channelBalances.localBalance)||0)," Sats"),e.R7$(3),e.Y8G("icon",t.faBalanceScale),e.R7$(),e.SpI(" (",e.bMT(13,9,(null==t.channelBalances?null:t.channelBalances.balancedness)||0),") "),e.R7$(5),e.SpI("",e.bMT(18,11,(null==t.channelBalances?null:t.channelBalances.remoteBalance)||0)," Sats"),e.R7$(2),e.FS9("value",null!=t.channelBalances&&t.channelBalances.localBalance&&(null==t.channelBalances?null:t.channelBalances.localBalance)>0?+(null==t.channelBalances?null:t.channelBalances.localBalance)/(+(null==t.channelBalances?null:t.channelBalances.localBalance)+ +(null==t.channelBalances?null:t.channelBalances.remoteBalance))*100:0),e.R7$(4),e.Y8G("ngIf",t.allChannels&&t.allChannels.length>0)("ngIfElse",a)}}function Qa(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",26),e.EFF(1," No channels available. "),e.j41(2,"button",27),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.goToChannels())}),e.EFF(3,"Open Channel"),e.k0s()()}}function Za(n,s){if(1&n&&(e.j41(0,"div",28)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let Ka=(()=>{class n{constructor(t){this.router=t,this.faBalanceScale=b.GR4,this.faDumbbell=b.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/lnd/connections")}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",allChannels:"allChannels",sortBy:"sortBy",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,i){if(1&a&&e.DNE(0,Wa,24,13,"div",2)(1,Qa,4,0,"ng-template",null,0,e.C5r)(3,Za,3,1,"ng-template",null,1,e.C5r),2&a){const o=e.sdS(4);e.Y8G("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},dependencies:[d.Sq,d.bT,M.aY,h.DJ,h.sA,h.UI,G.$z,f.MV,ee.q,B.HM,Q.oV,A.Ld,x.Wk,d.P9,d.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}return n})();var He=g(8711),qe=g(4104);const es=(n,s,t)=>({"mb-4":n,"mb-2":s,"mb-1":t}),ts=()=>["../connections/channels/open"],ns=(n,s)=>({filterColumn:n,filterValue:s});function is(n,s){if(1&n&&(e.j41(0,"mat-hint",19)(1,"strong",20),e.EFF(2,"Capacity: "),e.k0s(),e.EFF(3),e.nI1(4,"number"),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(3),e.SpI("",e.bMT(4,1,t.remote_balance||0)," Sats")}}function as(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",24),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2).$implicit,o=e.XpG(3);return e.Njj(o.onLoopOut(i))}),e.EFF(1,"Loop Out"),e.k0s()}}function ss(n,s){if(1&n&&(e.j41(0,"div",21)(1,"mat-hint",22)(2,"strong",20),e.EFF(3,"Capacity: "),e.k0s(),e.EFF(4),e.nI1(5,"number"),e.k0s(),e.DNE(6,as,2,0,"button",23),e.k0s()),2&n){const t=e.XpG().$implicit,a=e.XpG(3);e.R7$(4),e.SpI("",e.bMT(5,2,t.local_balance||0)," Sats"),e.R7$(2),e.Y8G("ngIf",a.showLoop)}}function os(n,s){if(1&n&&e.nrm(0,"mat-progress-bar",25),2&n){const t=e.XpG().$implicit,a=e.XpG(3);e.FS9("value",a.totalLiquidity>0?(+t.remote_balance||0)/a.totalLiquidity*100:0)}}function ls(n,s){if(1&n&&e.nrm(0,"mat-progress-bar",25),2&n){const t=e.XpG().$implicit,a=e.XpG(3);e.FS9("value",a.totalLiquidity>0?(+t.local_balance||0)/a.totalLiquidity*100:0)}}function rs(n,s){if(1&n&&(e.j41(0,"div",13)(1,"a",14),e.EFF(2),e.nI1(3,"slice"),e.k0s(),e.j41(4,"div",15),e.DNE(5,is,5,3,"mat-hint",16)(6,ss,7,4,"div",17),e.k0s(),e.DNE(7,os,1,1,"mat-progress-bar",18)(8,ls,1,1,"mat-progress-bar",18),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.FS9("matTooltip",t.remote_alias||t.remote_pubkey),e.FS9("matTooltipDisabled",(t.remote_alias||t.remote_pubkey).length<26),e.Y8G("routerLink",e.lJ4(14,ts))("state",e.l_i(15,ns,t.remote_alias?"remote_alias":"remote_pubkey",t.remote_alias||t.remote_pubkey)),e.R7$(),e.Lme(" ",e.brH(3,10,t.remote_alias||t.remote_pubkey,0,24),"",(t.remote_alias||t.remote_pubkey).length>25?"...":""," "),e.R7$(3),e.Y8G("ngIf","In"===a.direction),e.R7$(),e.Y8G("ngIf","Out"===a.direction),e.R7$(),e.Y8G("ngIf","In"===a.direction),e.R7$(),e.Y8G("ngIf","Out"===a.direction)}}function cs(n,s){if(1&n&&(e.j41(0,"div",11),e.DNE(1,rs,9,18,"div",12),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngForOf",t.allChannels)}}function ps(n,s){if(1&n&&(e.j41(0,"div",3)(1,"div",4)(2,"span",5),e.EFF(3,"Total Capacity"),e.k0s(),e.j41(4,"mat-hint",6),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.nrm(7,"mat-progress-bar",7),e.k0s(),e.j41(8,"div",8),e.nrm(9,"mat-divider",9),e.k0s(),e.DNE(10,cs,2,1,"div",10),e.k0s()),2&n){const t=e.XpG(),a=e.sdS(2);e.Y8G("ngClass",e.sMw(6,es,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD,t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),e.R7$(5),e.SpI("",e.bMT(6,4,t.totalLiquidity)," Sats"),e.R7$(5),e.Y8G("ngIf",t.allChannels&&t.allChannels.length>0)("ngIfElse",a)}}function ms(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",28),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.goToChannels())}),e.EFF(1,"Open Channel"),e.k0s()}}function us(n,s){if(1&n&&(e.j41(0,"div",26),e.EFF(1," No channels available. "),e.DNE(2,ms,2,0,"button",27),e.k0s()),2&n){const t=e.XpG();e.R7$(2),e.Y8G("ngIf","Out"===t.direction)}}function ds(n,s){if(1&n&&(e.j41(0,"div",29)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessage)}}let hs=(()=>{class n{constructor(t,a,i,o){this.router=t,this.loopService=a,this.commonService=i,this.store=o,this.targetConf=6,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.showLoop=!(!t?.settings.swapServerUrl||""===t.settings.swapServerUrl.trim())})}goToChannels(){this.router.navigateByUrl("/lnd/connections")}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,_.Q)(this.unSubs[1])).subscribe(a=>{this.store.dispatch((0,E.xO)({payload:{minHeight:"56rem",data:{channel:t,minQuote:a[0],maxQuote:a[1],direction:l.C7.LOOP_OUT,component:He.D}}}))})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix),e.rXU(qe.Q),e.rXU(N.h),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",allChannels:"allChannels",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[3,"perfectScrollbar",4,"ngIf","ngIfElse"],[3,"perfectScrollbar"],["fxLayout","column",4,"ngFor","ngForOf"],["fxLayout","column"],[1,"dashboard-capacity-header","mt-2",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["class","font-size-90 color-primary",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],[1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxFlex","80","fxLayoutAlign","start start",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","end center","class","button-link-dashboard","color","primary","mat-button","","aria-label","Loop Out",3,"click",4,"ngIf"],["fxFlex","20","fxLayoutAlign","end center","color","primary","mat-button","","aria-label","Loop Out",1,"button-link-dashboard",3,"click"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(a,i){if(1&a&&e.DNE(0,ps,11,10,"div",2)(1,us,3,1,"ng-template",null,0,e.C5r)(3,ds,3,1,"ng-template",null,1,e.C5r),2&a){const o=e.sdS(4);e.Y8G("ngIf",""===(null==i.errorMessage?null:i.errorMessage.trim()))("ngIfElse",o)}},dependencies:[d.YU,d.Sq,d.bT,h.DJ,h.sA,h.UI,L.PW,G.$z,f.MV,ee.q,B.HM,Q.oV,A.Ld,x.Wk,d.P9,d.QX]})}return n})();const ze=n=>({"dashboard-card-content":!0,"error-border":n}),_s=n=>({"p-0":n});function fs(n,s){if(1&n&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&n){e.XpG();const t=e.sdS(11);e.Y8G("matMenuTriggerFor",t)}}function gs(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const i=e.eBV(t).index,o=e.XpG().$implicit,r=e.XpG(2);return e.Njj(r.onNavigateTo(o.links[i]))}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function Cs(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){e.eBV(t);const i=e.XpG(3);return e.Njj(i.onsortChannelsBy())}),e.EFF(1),e.k0s()}if(2&n){const t=e.XpG(3);e.R7$(),e.SpI("Sort By ","Balance Score"===t.sortField?"Capacity":"Balance Score","")}}function ys(n,s){1&n&&e.nrm(0,"mat-progress-bar",30)}function bs(n,s){if(1&n&&e.nrm(0,"rtl-node-info",31),2&n){const t=e.XpG(3);e.Y8G("information",t.information)("showColorFieldSeparately",!1)}}function Fs(n,s){if(1&n&&e.nrm(0,"rtl-balances-info",32),2&n){const t=e.XpG(3);e.Y8G("balances",t.balances)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[2])}}function xs(n,s){if(1&n&&e.nrm(0,"rtl-channel-capacity-info",33),2&n){const t=e.XpG(3);e.Y8G("sortBy",t.sortField)("channelBalances",t.channelBalances)("allChannels",t.allChannelsCapacity)("errorMessage",t.errorMessages[3])}}function vs(n,s){if(1&n&&e.nrm(0,"rtl-fee-info",34),2&n){const t=e.XpG(3);e.Y8G("fees",t.fees)("errorMessage",t.errorMessages[1])}}function Ts(n,s){if(1&n&&e.nrm(0,"rtl-channel-status-info",35),2&n){const t=e.XpG(3);e.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[4])}}function Ss(n,s){1&n&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function ks(n,s){if(1&n&&(e.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),e.nrm(5,"fa-icon",14),e.j41(6,"span"),e.EFF(7),e.k0s()(),e.j41(8,"div"),e.DNE(9,fs,3,1,"button",15),e.j41(10,"mat-menu",16,1),e.DNE(12,gs,2,1,"button",17)(13,Cs,2,1,"button",18),e.k0s()()()(),e.j41(14,"mat-card-content",19),e.DNE(15,ys,1,0,"mat-progress-bar",20),e.j41(16,"div",21),e.DNE(17,bs,1,2,"rtl-node-info",22)(18,Fs,1,2,"rtl-balances-info",23)(19,xs,1,4,"rtl-channel-capacity-info",24)(20,vs,1,2,"rtl-fee-info",25)(21,Ts,1,2,"rtl-channel-status-info",26)(22,Ss,2,0,"h3",27),e.k0s()()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(5),e.Y8G("icon",t.icon),e.R7$(2),e.JRh(t.title),e.R7$(2),e.Y8G("ngIf",t.links[0]),e.R7$(3),e.Y8G("ngForOf",t.goToOptions),e.R7$(),e.Y8G("ngIf","capacity"===t.id),e.R7$(),e.FS9("fxFlex","node"===t.id||"balance"===t.id?70:"fee"===t.id||"status"===t.id?78:90),e.Y8G("ngClass",e.eq3(16,ze,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.ERROR)||"capacity"===t.id&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.ERROR||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.ERROR))),e.R7$(),e.Y8G("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.INITIATED)||"capacity"===t.id&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.INITIATED||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.INITIATED)),e.R7$(),e.Y8G("ngSwitch",t.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","balance"),e.R7$(),e.Y8G("ngSwitchCase","capacity"),e.R7$(),e.Y8G("ngSwitchCase","fee"),e.R7$(),e.Y8G("ngSwitchCase","status")}}function Rs(n,s){if(1&n&&(e.j41(0,"div",5)(1,"div",6),e.nrm(2,"fa-icon",7),e.j41(3,"span",8),e.EFF(4),e.k0s()(),e.j41(5,"mat-grid-list",9),e.DNE(6,ks,23,18,"mat-grid-tile",10),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.Y8G("icon",t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.ERROR?t.faFrown:t.faSmile),e.R7$(2),e.JRh(t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.COMPLETED?"Welcome "+t.information.alias+"! Your node is up and running.":t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),e.R7$(),e.Y8G("rowHeight",t.operatorCardHeight),e.R7$(),e.Y8G("ngForOf",t.operatorCards)}}function Es(n,s){if(1&n&&(e.j41(0,"button",28)(1,"mat-icon"),e.EFF(2,"more_vert"),e.k0s()()),2&n){e.XpG();const t=e.sdS(9);e.Y8G("matMenuTriggerFor",t)}}function Is(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const i=e.eBV(t).index,o=e.XpG(2).$implicit,r=e.XpG(2);return e.Njj(r.onNavigateTo(o.links[i]))}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function Ls(n,s){if(1&n&&(e.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),e.nrm(3,"fa-icon",14),e.j41(4,"span"),e.EFF(5),e.k0s()(),e.j41(6,"div"),e.DNE(7,Es,3,1,"button",15),e.j41(8,"mat-menu",16,2),e.DNE(10,Is,2,1,"button",17),e.k0s()()()()),2&n){const t=e.XpG().$implicit;e.R7$(3),e.Y8G("icon",t.icon),e.R7$(2),e.JRh(t.title),e.R7$(2),e.Y8G("ngIf",t.links[0]),e.R7$(3),e.Y8G("ngForOf",t.goToOptions)}}function ws(n,s){1&n&&e.nrm(0,"mat-progress-bar",30)}function js(n,s){if(1&n&&e.nrm(0,"rtl-node-info",45),2&n){const t=e.XpG(3);e.Y8G("information",t.information)}}function Gs(n,s){if(1&n&&e.nrm(0,"rtl-balances-info",32),2&n){const t=e.XpG(3);e.Y8G("balances",t.balances)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[2])}}function Ds(n,s){if(1&n&&e.nrm(0,"rtl-channel-liquidity-info",46),2&n){const t=e.XpG(3);e.Y8G("direction","In")("totalLiquidity",t.totalInboundLiquidity)("allChannels",t.allInboundChannels)("errorMessage",t.errorMessages[3])}}function Ns(n,s){if(1&n&&e.nrm(0,"rtl-channel-liquidity-info",46),2&n){const t=e.XpG(3);e.Y8G("direction","Out")("totalLiquidity",t.totalOutboundLiquidity)("allChannels",t.allOutboundChannels)("errorMessage",t.errorMessages[3])}}function Ps(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",29),e.bIt("click",function(){const i=e.eBV(t).index,o=e.XpG(2).$implicit,r=e.XpG(2);return e.Njj(r.onNavigateTo(o.links[i]))}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function $s(n,s){if(1&n&&(e.j41(0,"span",47)(1,"mat-tab-group",48)(2,"mat-tab",49),e.nrm(3,"rtl-lightning-invoices",50),e.k0s(),e.j41(4,"mat-tab",51),e.nrm(5,"rtl-lightning-payments",50),e.k0s()(),e.j41(6,"div",52)(7,"button",28)(8,"mat-icon"),e.EFF(9,"more_vert"),e.k0s()(),e.j41(10,"mat-menu",16,3),e.DNE(12,Ps,2,1,"button",17),e.k0s()()()),2&n){const t=e.sdS(11),a=e.XpG().$implicit;e.R7$(3),e.Y8G("calledFrom","home"),e.R7$(2),e.Y8G("calledFrom","home"),e.R7$(2),e.Y8G("matMenuTriggerFor",t),e.R7$(5),e.Y8G("ngForOf",a.goToOptions)}}function As(n,s){1&n&&(e.j41(0,"h3"),e.EFF(1,"Error! Unable to find information!"),e.k0s())}function Ms(n,s){if(1&n&&(e.j41(0,"mat-grid-tile",11)(1,"mat-card",38),e.DNE(2,Ls,11,4,"mat-card-header",39),e.j41(3,"mat-card-content",40),e.DNE(4,ws,1,0,"mat-progress-bar",20),e.j41(5,"div",41),e.DNE(6,js,1,1,"rtl-node-info",42)(7,Gs,1,2,"rtl-balances-info",23)(8,Ds,1,4,"rtl-channel-liquidity-info",43)(9,Ns,1,4,"rtl-channel-liquidity-info",43)(10,$s,13,4,"span",44)(11,As,2,0,"h3",27),e.k0s()()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(),e.Y8G("ngClass",e.eq3(13,_s,"transactions"===t.id)),e.R7$(),e.Y8G("ngIf","transactions"!==t.id),e.R7$(),e.FS9("fxFlex","transactions"===t.id?100:"balance"===t.id?70:90),e.Y8G("ngClass",e.eq3(15,ze,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.ERROR)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"balance"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusBlockchainBalance.status===a.apiCallStatusEnum.INITIATED)||("inboundLiq"===t.id||"outboundLiq"===t.id)&&a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",t.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","balance"),e.R7$(),e.Y8G("ngSwitchCase","inboundLiq"),e.R7$(),e.Y8G("ngSwitchCase","outboundLiq"),e.R7$(),e.Y8G("ngSwitchCase","transactions")}}function Bs(n,s){if(1&n&&(e.j41(0,"div",36),e.nrm(1,"fa-icon",7),e.j41(2,"span",8),e.EFF(3),e.k0s()(),e.j41(4,"mat-grid-list",37),e.DNE(5,Ms,12,17,"mat-grid-tile",10),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faSmile),e.R7$(2),e.SpI("Welcome ",t.information.alias,"! Your node is up and running."),e.R7$(),e.Y8G("rowHeight",t.merchantCardHeight),e.R7$(),e.Y8G("ngForOf",t.merchantCards)}}let Os=(()=>{class n{constructor(t,a,i,o,r){switch(this.logger=t,this.store=a,this.actions=i,this.commonService=o,this.router=r,this.faSmile=Me.Qpm,this.faFrown=Me.wB1,this.faAngleDoubleDown=b.WxX,this.faAngleDoubleUp=b.$sC,this.faChartPie=b.W1p,this.faBolt=b.zm_,this.faServer=b.D6w,this.faNetworkWired=b.eGi,this.flgChildInfoUpdated=!1,this.userPersonaEnum=l.HW,this.activeChannels=0,this.inactiveChannels=0,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.information={},this.balances={onchain:-1,lightning:-1,total:0},this.allChannels=[],this.channelsStatus={},this.allChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.screenSizeEnum=l.f7,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusFees=null,this.apiCallStatusBlockchainBalance=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize){case l.f7.XS:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:6},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}];break;case l.f7.SM:case l.f7.MD:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}];break;default:this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","inactive"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}]}}ngOnInit(){this.store.select(y.gj).pipe((0,_.Q)(this.unSubs[0]),(0,de.E)(this.store.select(X._c))).subscribe(([t,a])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apiCallStatus,this.apiCallStatusNodeInfo.status===l.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=a,this.information=t.information}),this.store.select(y.oR).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===l.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=t.fees}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusBlockchainBalance=t.apiCallStatus,this.apiCallStatusBlockchainBalance.status===l.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusBlockchainBalance.message?JSON.stringify(this.apiCallStatusBlockchainBalance.message):this.apiCallStatusBlockchainBalance.message?this.apiCallStatusBlockchainBalance.message:""),this.balances.onchain=t.blockchainBalance.total_balance&&+t.blockchainBalance.total_balance>=0?+t.blockchainBalance.total_balance:0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances)}),this.store.select(y.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=t.apiCallStatus,this.apiCallStatusPendingChannels.status===l.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPendingChannels.message?JSON.stringify(this.apiCallStatusPendingChannels.message):this.apiCallStatusPendingChannels.message?this.apiCallStatusPendingChannels.message:""),this.channelsStatus.pending={num_channels:t.pendingChannelsSummary.open?.num_channels,capacity:t.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(t.pendingChannelsSummary.closing?.num_channels||0)+(t.pendingChannelsSummary.force_closing?.num_channels||0)+(t.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===l.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:"");const a=t.lightningBalance&&t.lightningBalance.local?+t.lightningBalance.local:0,i=t.lightningBalance&&t.lightningBalance.remote?+t.lightningBalance.remote:0;this.channelBalances={localBalance:a,remoteBalance:i,balancedness:+(1-Math.abs((a-i)/(a+i))).toFixed(3)},this.balances.lightning=t.lightningBalance.local||0,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances),this.activeChannels=t.channelsSummary.active?.num_channels||0,this.inactiveChannels=t.channelsSummary.inactive?.num_channels||0,this.channelsStatus.active=t.channelsSummary.active,this.channelsStatus.inactive=t.channelsSummary.inactive,this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.allChannels=t.channels?.filter(r=>!0===r.active),this.allChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels,"balancedness"))),this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(r=>r.remote_balance&&r.remote_balance>0),"remote_balance"))),this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.allChannels?.filter(r=>r.local_balance&&r.local_balance>0),"local_balance"))),this.allChannels.forEach(r=>{this.totalInboundLiquidity=this.totalInboundLiquidity+ +(r.remote_balance||0),this.totalOutboundLiquidity=this.totalOutboundLiquidity+ +(r.local_balance||0)}),this.flgChildInfoUpdated=!!(this.balances.lightning>=0&&this.balances.onchain>=0&&this.fees.month_fee_sum&&this.fees.month_fee_sum>=0),this.logger.info(t)}),this.actions.pipe((0,_.Q)(this.unSubs[5]),(0,Y.p)(t=>t.type===l.QP.FETCH_FEES_LND||t.type===l.QP.SET_FEES_LND)).subscribe(t=>{t.type===l.QP.FETCH_FEES_LND&&(this.flgChildInfoUpdated=!1),t.type===l.QP.SET_FEES_LND&&(this.flgChildInfoUpdated=!0)})}onNavigateTo(t){"inactive"===t?this.router.navigateByUrl("/lnd/connections",{state:{filterColumn:"active",filterValue:t}}):this.router.navigateByUrl("/lnd/"+t)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.allChannelsCapacity=this.allChannels.sort((t,a)=>{const i=+(t.local_balance||0)+ +(t.remote_balance||0),o=+(a.local_balance||0)+ +(a.remote_balance||0);return i>o?-1:i{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(W.En),e.rXU(N.h),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-home"]],decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","allChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",3,"ngSwitch"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","allChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],[3,"calledFrom"],["label","Pay"],[1,"underline"]],template:function(a,i){if(1&a&&e.DNE(0,Rs,7,4,"div",4)(1,Bs,6,4,"ng-template",null,0,e.C5r),2&a){const o=e.sdS(2);e.Y8G("ngIf",(null==i.selNode?null:i.selNode.settings.userPersona)===i.userPersonaEnum.OPERATOR)("ngIfElse",o)}},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,M.aY,h.DJ,h.sA,h.UI,L.PW,G.iY,T.RN,T.m2,T.MM,T.dh,he.B_,he.NS,ie.An,ve.kk,ve.fb,ve.Cp,B.HM,P.mq,P.T8,Be,Oe,Ye,Oa,Xe,Ue,Ka,hs]})}return n})();var Te=g(1975),Se=g(5837);function Vs(n,s){if(1&n&&(e.j41(0,"span",10),e.EFF(1,"Channels"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.activeChannels)}}function Ys(n,s){if(1&n&&(e.j41(0,"span",10),e.EFF(1,"Peers"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.activePeers)}}let Xs=(()=>{class n{constructor(t,a,i){this.store=t,this.logger=a,this.router=i,this.activePeers=0,this.activeChannels=0,this.faUsers=b.gdJ,this.faChartPie=b.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t instanceof x.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(a=>a.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.selNode=t}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.activePeers=t.peers&&t.peers.length?t.peers.length:0,this.logger.info(t)}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.activeChannels=t.channelsSummary.active?.num_channels||0,this.logger.info(t)}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.balances=[{title:"Total Balance",dataValue:t.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:t.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:t.blockchainBalance.unconfirmed_balance||0}],this.logger.info(t)})}onSelectedTabChange(t){this.router.navigateByUrl("/lnd/connections/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(j.gP),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-connections"]],decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(a,i){1&a&&(e.j41(0,"div",0),e.nrm(1,"fa-icon",1),e.j41(2,"span",2),e.EFF(3,"On-chain Balance"),e.k0s()(),e.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),e.nrm(7,"rtl-currency-unit-converter",5),e.k0s()()(),e.j41(8,"div",0),e.nrm(9,"fa-icon",1),e.j41(10,"span",2),e.EFF(11,"Connections"),e.k0s()(),e.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),e.mxI("selectedIndexChange",function(r){return e.DH7(i.activeLink,r)||(i.activeLink=r),r}),e.bIt("selectedTabChange",function(r){return i.onSelectedTabChange(r)}),e.j41(16,"mat-tab"),e.DNE(17,Vs,2,1,"ng-template",8),e.k0s(),e.j41(18,"mat-tab"),e.DNE(19,Ys,2,1,"ng-template",8),e.k0s()(),e.j41(20,"div",9),e.nrm(21,"router-outlet"),e.k0s()()()()),2&a&&(e.R7$(),e.Y8G("icon",i.faChartPie),e.R7$(6),e.Y8G("values",i.balances),e.R7$(2),e.Y8G("icon",i.faUsers),e.R7$(6),e.R50("selectedIndex",i.activeLink))},dependencies:[M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,Te.k,P.ES,P.mq,P.T8,Se.f,x.n3]})}return n})();var ke=g(9172),Je=g(6354),We=g(92);const Us=["form"];function Hs(n,s){if(1&n&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh(t.alias?t.alias:t.pub_key?t.pub_key:"")}}function qs(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Peer alias is required."),e.k0s())}function zs(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Peer not found in the list."),e.k0s())}function Js(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",38)(1,"mat-label"),e.EFF(2,"Peer Alias"),e.k0s(),e.nrm(3,"input",39),e.j41(4,"mat-autocomplete",40,4),e.bIt("optionSelected",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectedPeerChanged())}),e.DNE(6,Hs,2,2,"mat-option",28),e.nI1(7,"async"),e.k0s(),e.DNE(8,qs,2,0,"mat-error",20)(9,zs,2,0,"mat-error",20),e.k0s()}if(2&n){const t=e.sdS(5),a=e.XpG();e.R7$(3),e.Y8G("formControl",a.selectedPeer)("matAutocomplete",t),e.R7$(),e.Y8G("displayWith",a.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(7,6,a.filteredPeers)),e.R7$(2),e.Y8G("ngIf",null==a.selectedPeer.errors?null:a.selectedPeer.errors.required),e.R7$(),e.Y8G("ngIf",null==a.selectedPeer.errors?null:a.selectedPeer.errors.notfound)}}function Ws(n,s){1&n&&e.eu8(0)}function Qs(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function Zs(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Amount must be less than or equal to ",t.totalBalance,".")}}function Ks(n,s){if(1&n&&(e.j41(0,"div",42),e.nrm(1,"fa-icon",43),e.j41(2,"span",6)(3,"div"),e.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(5,"span",44)(6,"span"),e.EFF(7),e.k0s(),e.j41(8,"span"),e.EFF(9),e.k0s(),e.j41(10,"span"),e.EFF(11),e.k0s(),e.j41(12,"span"),e.EFF(13),e.k0s(),e.j41(14,"span"),e.EFF(15),e.k0s()()()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faInfoCircle),e.R7$(6),e.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),e.R7$(2),e.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),e.R7$(2),e.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),e.R7$(2),e.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),e.R7$(2),e.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function eo(n,s){if(1&n&&(e.j41(0,"mat-option",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function to(n,s){if(1&n&&(e.j41(0,"mat-hint"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Mempool Min: ",t.recommendedFee.minimumFee," (Sats/vByte)")}}function no(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Target Confirmation Blocks is required."),e.k0s())}function io(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fee is required."),e.k0s())}function ao(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Lower than min feerate ",t.recommendedFee.minimumFee," in the mempool.")}}function so(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",32)(1,"mat-slide-toggle",45),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.taprootChannel,i)||(o.taprootChannel=i),e.Njj(i)}),e.EFF(2,"Taproot Channel"),e.k0s()()}if(2&n){const t=e.XpG();e.R7$(),e.R50("ngModel",t.taprootChannel)}}function oo(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.channelConnectionError)}}function lo(n,s){if(1&n&&(e.j41(0,"div",46),e.nrm(1,"fa-icon",43),e.DNE(2,oo,2,1,"span",20),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.channelConnectionError)}}function ro(n,s){if(1&n&&(e.j41(0,"mat-expansion-panel",48)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),e.EFF(4,"Peer: \xa0"),e.k0s(),e.j41(5,"strong",49),e.EFF(6),e.k0s()()(),e.j41(7,"div",13)(8,"div",50)(9,"div",38)(10,"h4",51),e.EFF(11,"Pubkey"),e.k0s(),e.j41(12,"span",52),e.EFF(13),e.k0s()()(),e.nrm(14,"mat-divider",53),e.j41(15,"div",50)(16,"div",54)(17,"h4",51),e.EFF(18,"Address"),e.k0s(),e.j41(19,"span",55),e.EFF(20),e.k0s()(),e.j41(21,"div",54)(22,"h4",51),e.EFF(23,"Inbound"),e.k0s(),e.j41(24,"span",55),e.EFF(25),e.k0s()()()()()),2&n){const t=e.XpG(2);e.R7$(6),e.JRh((null==t.peer?null:t.peer.alias)||(null==t.peer?null:t.peer.address)),e.R7$(7),e.JRh(t.peer.pub_key),e.R7$(7),e.JRh(null==t.peer?null:t.peer.address),e.R7$(5),e.JRh(null!=t.peer&&t.peer.inbound?"True":"False")}}function co(n,s){if(1&n&&e.DNE(0,ro,26,4,"mat-expansion-panel",47),2&n){const t=e.XpG();e.Y8G("ngIf",t.peer)}}let Qe=(()=>{class n{constructor(t,a,i,o,r,p,F){this.logger=t,this.dialogRef=a,this.data=i,this.store=o,this.actions=r,this.commonService=p,this.dataService=F,this.selectedPeer=new m.hs,this.amount=new m.hs,this.faExclamationTriangle=b.zpE,this.faInfoCircle=b.iW_,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.selectedPubkey="",this.isPrivate=!1,this.selTransType="0",this.isTaprootAvailable=!1,this.taprootChannel=!1,this.spendUnconfirmed=!1,this.transTypeValue="",this.transTypes=l.XG,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[],this.isTaprootAvailable=this.commonService.isVersionCompatible(this.information.version,"0.17.0")):(this.information={},this.totalBalance=0,this.peer=null,this.peers=[],this.isTaprootAvailable=!1),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.isPrivate=!!i?.settings.unannouncedChannels}),this.actions.pipe((0,_.Q)(this.unSubs[1]),(0,Y.p)(i=>i.type===l.QP.UPDATE_API_CALL_STATUS_LND||i.type===l.QP.FETCH_CHANNELS_LND)).subscribe(i=>{i.type===l.QP.UPDATE_API_CALL_STATUS_LND&&i.payload.status===l.wn.ERROR&&"SaveNewChannel"===i.payload.action&&(this.channelConnectionError=i.payload.message),i.type===l.QP.FETCH_CHANNELS_LND&&this.dialogRef.close()});let t="",a="";this.sortedPeers=this.peers.sort((i,o)=>(t=i.alias?i.alias.toLowerCase():i.pub_key?i.pub_key.toLowerCase():"",a=o.alias?o.alias.toLowerCase():i.pub_key?i.pub_key.toLowerCase():"",ta?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,_.Q)(this.unSubs[2]),(0,ke.Z)(""),(0,Je.T)(i=>"string"==typeof i?i:i.alias?i.alias:i.pub_key),(0,Je.T)(i=>i?this.filterPeers(i):this.sortedPeers.slice()))}filterPeers(t){return this.sortedPeers?.filter(a=>0===a.alias?.toLowerCase().indexOf(t?t.toLowerCase():""))}displayFn(t){return t&&t.alias?t.alias:t&&t.pub_key?t.pub_key:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.pub_key?this.selectedPeer.value.pub_key:null,"string"==typeof this.selectedPeer.value){const t=this.peers?.filter(a=>a.alias?.length===this.selectedPeer.value.length&&0===a.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===t.length&&t[0].pub_key&&(this.selectedPubkey=t[0].pub_key)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!this.selNode?.settings.unannouncedChannels,this.taprootChannel=!1,this.spendUnconfirmed=!1,this.selTransType="0",this.transTypeValue="",this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||("1"===this.selTransType||"2"===this.selTransType)&&!this.transTypeValue||"2"===this.selTransType&&this.recommendedFee.minimumFee>+this.transTypeValue)return!0;this.store.dispatch((0,v.vL)({payload:{selectedPeerPubkey:this.peer&&this.peer.pub_key?this.peer.pub_key:this.selectedPubkey,fundingAmount:this.fundingAmount,private:this.isPrivate,transType:this.selTransType,transTypeValue:this.transTypeValue,spendUnconfirmed:this.spendUnconfirmed,commitmentType:this.taprootChannel?5:null}}))}onAdvancedPanelToggle(t){this.advancedTitle=t?"Advanced Options | "+("1"===this.selTransType?"Target Confirmation Blocks: ":"2"===this.selTransType?"Fee (Sats/vByte): ":"Default")+("1"===this.selTransType||"2"===this.selTransType?this.transTypeValue:"")+" | Taproot Channel: "+(this.taprootChannel?"Yes":"No")+" | Spend Unconfirmed Output: "+(this.spendUnconfirmed?"Yes":"No"):"Advanced Options"}onSelTransTypeChanged(t){this.transTypeValue="",t.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[3])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(O.CP),e.rXU(O.Vh),e.rXU(I.il),e.rXU(W.En),e.rXU(N.h),e.rXU(K.u))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-open-channel"]],viewQuery:function(a,i){if(1&a&&e.GBs(Us,7),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first)}},decls:64,vars:30,consts:[["form","ngForm"],["amt","ngModel"],["transTypeVal","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["fxLayout","row","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amnt",3,"ngModelChange","step","min","max","ngModel"],["matSuffix",""],[4,"ngIf"],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxFlex","49"],["tabindex","3",3,"valueChange","selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["matInput","","type","number","tabindex","4","name","transTpValue",3,"ngModelChange","required","disabled","step","min","ngModel"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-2"],["fxFlex","50","fxLayoutAlign","start center",4,"ngIf"],["fxFlex","50","fxLayoutAlign","start center"],["tabindex","7","color","primary","name","spendUnconfirmed",3,"ngModelChange","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","9"],["fxFlex","100"],["type","text","aria-label","Peers","matInput","","tabindex","1","required","",3,"formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["tabindex","6","color","primary","name","taprootChannel",3,"ngModelChange","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayout","row"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"mat-card-header",7)(3,"div",8)(4,"span",9),e.EFF(5),e.k0s()(),e.j41(6,"button",10),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",11)(9,"form",12,0),e.bIt("submit",function(){return e.eBV(o),e.Njj(i.onOpenChannel())})("reset",function(){return e.eBV(o),e.Njj(i.resetData())}),e.j41(11,"div",13),e.DNE(12,Js,10,8,"mat-form-field",14),e.k0s(),e.DNE(13,Ws,1,0,"ng-container",15),e.j41(14,"div",13)(15,"div",16)(16,"mat-form-field",17)(17,"mat-label"),e.EFF(18,"Amount"),e.k0s(),e.j41(19,"input",18,1),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.fundingAmount,p)||(i.fundingAmount=p),e.Njj(p)}),e.k0s(),e.j41(21,"mat-hint"),e.EFF(22),e.nI1(23,"number"),e.k0s(),e.j41(24,"span",19),e.EFF(25," Sats "),e.k0s(),e.DNE(26,Qs,2,0,"mat-error",20)(27,Zs,2,1,"mat-error",20),e.k0s(),e.j41(28,"div",21)(29,"mat-slide-toggle",22),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.isPrivate,p)||(i.isPrivate=p),e.Njj(p)}),e.EFF(30,"Private Channel"),e.k0s()()(),e.j41(31,"mat-expansion-panel",23),e.bIt("closed",function(){return e.eBV(o),e.Njj(i.onAdvancedPanelToggle(!0))})("opened",function(){return e.eBV(o),e.Njj(i.onAdvancedPanelToggle(!1))}),e.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),e.EFF(35),e.k0s()()(),e.j41(36,"div",24),e.DNE(37,Ks,16,6,"div",25),e.j41(38,"div",16)(39,"mat-form-field",26)(40,"mat-select",27),e.mxI("valueChange",function(p){return e.eBV(o),e.DH7(i.selTransType,p)||(i.selTransType=p),e.Njj(p)}),e.bIt("selectionChange",function(p){return e.eBV(o),e.Njj(i.onSelTransTypeChanged(p))}),e.DNE(41,eo,2,2,"mat-option",28),e.k0s()(),e.j41(42,"mat-form-field",26)(43,"mat-label"),e.EFF(44),e.k0s(),e.j41(45,"input",29,2),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.transTypeValue,p)||(i.transTypeValue=p),e.Njj(p)}),e.k0s(),e.DNE(47,to,2,1,"mat-hint",20)(48,no,2,0,"mat-error",20)(49,io,2,0,"mat-error",20)(50,ao,2,1,"mat-error",20),e.k0s()(),e.j41(51,"div",30),e.DNE(52,so,3,1,"div",31),e.j41(53,"div",32)(54,"mat-slide-toggle",33),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.spendUnconfirmed,p)||(i.spendUnconfirmed=p),e.Njj(p)}),e.EFF(55,"Spend Unconfirmed Output"),e.k0s()()()()()(),e.DNE(56,lo,3,2,"div",34),e.j41(57,"div",35)(58,"button",36),e.EFF(59,"Clear Fields"),e.k0s(),e.j41(60,"button",37),e.EFF(61,"Open Channel"),e.k0s()()()()()(),e.DNE(62,co,1,1,"ng-template",null,3,e.C5r)}if(2&a){const o=e.sdS(20),r=e.sdS(63);e.R7$(5),e.JRh(i.alertTitle),e.R7$(7),e.Y8G("ngIf",!i.peer&&i.peers&&i.peers.length>0),e.R7$(),e.Y8G("ngTemplateOutlet",r),e.R7$(6),e.Y8G("step",1e3)("min",1)("max",i.totalBalance),e.R50("ngModel",i.fundingAmount),e.R7$(3),e.SpI("(Remaining: ",e.bMT(23,28,i.totalBalance-(i.fundingAmount?i.fundingAmount:0)),")"),e.R7$(4),e.Y8G("ngIf",null==o.errors?null:o.errors.required),e.R7$(),e.Y8G("ngIf",null==o.errors?null:o.errors.max),e.R7$(2),e.R50("ngModel",i.isPrivate),e.R7$(6),e.JRh(i.advancedTitle),e.R7$(2),e.Y8G("ngIf",i.recommendedFee.minimumFee),e.R7$(3),e.R50("value",i.selTransType),e.R7$(),e.Y8G("ngForOf",i.transTypes),e.R7$(3),e.JRh("0"===i.selTransType?"Default":"1"===i.selTransType?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("required","0"!==i.selTransType)("disabled","0"===i.selTransType)("step",1)("min","2"===i.selTransType?i.recommendedFee.minimumFee:0),e.R50("ngModel",i.transTypeValue),e.R7$(2),e.Y8G("ngIf","2"===i.selTransType),e.R7$(),e.Y8G("ngIf","1"===i.selTransType&&!i.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===i.selTransType&&!i.transTypeValue),e.R7$(),e.Y8G("ngIf","2"===i.selTransType&&i.transTypeValue&&+i.transTypeValue{class n{constructor(t,a,i,o,r,p,F,C,S){this.dialogRef=t,this.data=a,this.store=i,this.lndEffects=o,this.formBuilder=r,this.actions=p,this.logger=F,this.commonService=C,this.dataService=S,this.faExclamationTriangle=b.zpE,this.faInfoCircle=b.iW_,this.peerAddress="",this.totalBalance=0,this.transTypes=l.XG,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.isTaprootAvailable=!1,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.totalBalance=this.data.message?.balance||0,this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[m.k0.required]],peerAddress:[this.data.message?.peer?.pub_key?this.data.message?.peer?.pub_key+(this.data.message?.peer?.address?"@"+this.data.message?.peer?.address:""):"",[m.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[m.k0.required,m.k0.min(1),m.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selTransType:[l.XG[0].id],transTypeValue:[{value:"",disabled:!0}],taprootChannel:[!1],spendUnconfirmed:[!1],hiddenAmount:["",[m.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(y.gj).pipe((0,_.Q)(this.unSubs[0]),(0,de.E)(this.store.select(X._c))).subscribe(([a,i])=>{this.selNode=i,this.channelFormGroup.controls.isPrivate.setValue(!!i?.settings.unannouncedChannels),this.isTaprootAvailable=this.commonService.isVersionCompatible(a.information.version,"0.17.0")}),this.channelFormGroup.controls.selTransType.valueChanges.pipe((0,_.Q)(this.unSubs[1])).subscribe(a=>{a===l.XG[0].id?(this.channelFormGroup.controls.transTypeValue.setValue(""),this.channelFormGroup.controls.transTypeValue.disable(),this.channelFormGroup.controls.transTypeValue.setValidators(null),this.channelFormGroup.controls.transTypeValue.setErrors(null)):(this.channelFormGroup.controls.transTypeValue.setValue(""),this.channelFormGroup.controls.transTypeValue.enable(),this.channelFormGroup.controls.transTypeValue.setValidators([m.k0.required]))}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(a=>a.type===l.QP.NEWLY_ADDED_PEER_LND||a.type===l.QP.FETCH_PENDING_CHANNELS_LND||a.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(a=>{a.type===l.QP.NEWLY_ADDED_PEER_LND&&(this.logger.info(a.payload),this.flgEditable=!1,this.newlyAddedPeer=a.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),a.type===l.QP.FETCH_PENDING_CHANNELS_LND&&this.dialogRef.close(),a.type===l.QP.UPDATE_API_CALL_STATUS_LND&&a.payload.status===l.wn.ERROR&&("SaveNewPeer"===a.payload.action||"FetchGraphNode"===a.payload.action?this.peerConnectionError=a.payload.message:"SaveNewChannel"===a.payload.action&&(this.channelConnectionError=a.payload.message))})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="";const t=this.peerFormGroup.controls.peerAddress.value.search("@");let a="",i="";t>-1?(a=this.peerFormGroup.controls.peerAddress.value.substring(0,t),i=this.peerFormGroup.controls.peerAddress.value.substring(t+1),this.connectPeerWithParams(a,i)):(this.store.dispatch((0,v.t0)({payload:{pubkey:this.peerFormGroup.controls.peerAddress.value}})),this.lndEffects.setGraphNode.pipe((0,J.s)(1)).subscribe(o=>{setTimeout(()=>{i=o.node.addresses&&o.node.addresses.length&&o.node.addresses.length>0&&o.node.addresses[0].addr?o.node.addresses[0].addr:"",this.connectPeerWithParams(this.peerFormGroup.controls.peerAddress.value,i)},0)}))}connectPeerWithParams(t,a){this.store.dispatch((0,v.sq)({payload:{pubkey:t,host:a,perm:!1}}))}onOpenChannel(){return"2"===this.channelFormGroup.controls.selTransType.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.transTypeValue.value?(this.channelFormGroup.controls.transTypeValue.setErrors({minimum:!0}),!0):!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||"1"===this.channelFormGroup.controls.selTransType.value&&!this.channelFormGroup.controls.transTypeValue.value||"2"===this.channelFormGroup.controls.selTransType.value&&!this.channelFormGroup.controls.transTypeValue.value||(this.channelConnectionError="",void this.store.dispatch((0,v.vL)({payload:{selectedPeerPubkey:this.newlyAddedPeer?.pub_key,fundingAmount:this.channelFormGroup.controls.fundingAmount.value,private:this.channelFormGroup.controls.isPrivate.value,transType:this.channelFormGroup.controls.selTransType.value,transTypeValue:this.channelFormGroup.controls.transTypeValue.value,spendUnconfirmed:this.channelFormGroup.controls.spendUnconfirmed.value,commitmentType:this.channelFormGroup.controls.taprootChannel.value?5:null}})))}onSelTransTypeChanged(t){this.channelFormGroup.controls.transTypeValue.setValue(""),t.value===this.transTypes[2].id&&this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[3])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(t){switch(t.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+this.newlyAddedPeer?.alias:"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+this.newlyAddedPeer?.alias:"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}t.selectedIndex{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(I.il),e.rXU(re.L),e.rXU(m.ze),e.rXU(W.En),e.rXU(j.gP),e.rXU(N.h),e.rXU(K.u))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-connect-peer"]],viewQuery:function(a,i){if(1&a&&(e.GBs(po,5),e.GBs(mo,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first),e.mGM(o=e.lsd())&&(i.stepper=o.first)}},decls:70,vars:31,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start end"],["matInput","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","35","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start end"],["tabindex","3","formControlName","selTransType",3,"selectionChange"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","50"],["matInput","","formControlName","transTypeValue","type","number","name","transTypeValue","tabindex","4",3,"step","min","required"],["fxFlex","50","fxLayoutAlign","start center",4,"ngIf"],["fxFlex","50","fxLayoutAlign","start center"],["tabindex","6","color","primary","formControlName","spendUnconfirmed","name","spendUnconfirmed"],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["tabindex","6","color","primary","formControlName","taprootChannel","name","taprootChannel",1,"ps-2"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Connect to a new peer"),e.k0s()(),e.j41(6,"button",6),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),e.bIt("selectionChange",function(p){return e.eBV(o),e.Njj(i.stepSelectionChanged(p))}),e.j41(12,"mat-step",10)(13,"form",11),e.DNE(14,uo,1,1,"ng-template",12),e.j41(15,"mat-form-field",13)(16,"mat-label"),e.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),e.k0s(),e.nrm(18,"input",14),e.DNE(19,ho,2,0,"mat-error",15),e.k0s(),e.DNE(20,_o,4,2,"div",16),e.j41(21,"div",17)(22,"button",18),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onConnectPeer())}),e.EFF(23),e.k0s()()()(),e.j41(24,"mat-step",10)(25,"form",19),e.DNE(26,fo,1,1,"ng-template",20),e.j41(27,"div",21),e.DNE(28,go,16,6,"div",22),e.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),e.EFF(32,"Amount"),e.k0s(),e.nrm(33,"input",25),e.j41(34,"mat-hint"),e.EFF(35),e.nI1(36,"number"),e.k0s(),e.j41(37,"span",26),e.EFF(38," Sats "),e.k0s(),e.DNE(39,Co,2,0,"mat-error",15)(40,yo,2,0,"mat-error",15)(41,bo,2,1,"mat-error",15),e.k0s(),e.j41(42,"div",27)(43,"mat-slide-toggle",28),e.EFF(44,"Private Channel"),e.k0s()()(),e.j41(45,"div",29)(46,"mat-form-field",30)(47,"mat-label"),e.EFF(48,"Transaction Type"),e.k0s(),e.j41(49,"mat-select",31),e.bIt("selectionChange",function(p){return e.eBV(o),e.Njj(i.onSelTransTypeChanged(p))}),e.DNE(50,Fo,2,2,"mat-option",32),e.k0s()(),e.j41(51,"mat-form-field",33)(52,"mat-label"),e.EFF(53),e.k0s(),e.nrm(54,"input",34),e.DNE(55,xo,2,1,"mat-hint",15)(56,vo,2,1,"mat-error",15)(57,To,2,1,"mat-error",15),e.k0s()(),e.j41(58,"div",29),e.DNE(59,So,3,0,"div",35),e.j41(60,"div",36)(61,"mat-slide-toggle",37),e.EFF(62,"Spend Unconfirmed Output"),e.k0s()()()(),e.DNE(63,ko,4,2,"div",16),e.j41(64,"div",17)(65,"button",38),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onOpenChannel())}),e.EFF(66),e.k0s()()()()(),e.j41(67,"div",39)(68,"button",40),e.EFF(69),e.k0s()()()()()()}2&a&&(e.R7$(10),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",i.peerFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.peerFormGroup),e.R7$(6),e.Y8G("ngIf",null==i.peerFormGroup.controls.peerAddress.errors?null:i.peerFormGroup.controls.peerAddress.errors.required),e.R7$(),e.Y8G("ngIf",""!==i.peerConnectionError),e.R7$(3),e.JRh(""!==i.peerConnectionError?"Retry":"Add Peer"),e.R7$(),e.Y8G("stepControl",i.channelFormGroup)("editable",i.flgEditable),e.R7$(),e.Y8G("formGroup",i.channelFormGroup),e.R7$(3),e.Y8G("ngIf",i.recommendedFee.minimumFee),e.R7$(5),e.Y8G("step",1e3),e.R7$(2),e.SpI("Remaining: ",e.bMT(36,29,i.totalBalance-(i.channelFormGroup.controls.fundingAmount.value?i.channelFormGroup.controls.fundingAmount.value:0)),""),e.R7$(4),e.Y8G("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==i.channelFormGroup.controls.fundingAmount.errors?null:i.channelFormGroup.controls.fundingAmount.errors.max),e.R7$(9),e.Y8G("ngForOf",i.transTypes),e.R7$(3),e.JRh("0"===i.channelFormGroup.controls.selTransType.value?"Default":"1"===i.channelFormGroup.controls.selTransType.value?"Target Confirmation Blocks":"Fee (Sats/vByte)"),e.R7$(),e.Y8G("step",1)("min","2"===i.channelFormGroup.controls.selTransType.value?i.recommendedFee.minimumFee:0)("required","0"!==i.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===i.channelFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf",null==i.channelFormGroup.controls.transTypeValue.errors?null:i.channelFormGroup.controls.transTypeValue.errors.required),e.R7$(),e.Y8G("ngIf",i.channelFormGroup.controls.transTypeValue.value&&(null==i.channelFormGroup.controls.transTypeValue.errors?null:i.channelFormGroup.controls.transTypeValue.errors.minimum)),e.R7$(2),e.Y8G("ngIf",i.isTaprootAvailable),e.R7$(4),e.Y8G("ngIf",""!==i.channelConnectionError),e.R7$(3),e.JRh(""!==i.channelConnectionError?"Retry":"Open Channel"),e.R7$(2),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(null!=i.newlyAddedPeer&&i.newlyAddedPeer.pub_key?"Do It Later":"Close"))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.j4,m.JD,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.MV,f.TL,f.yw,R.VO,V.wT,_e.sG,H.V5,H.Ti,H.M6,Z.N,te.V,d.QX]})}return n})();const Ro=()=>["all"],Eo=n=>({"error-border":n}),Io=()=>["no_peer"],Re=n=>({width:n}),Lo=n=>({"display-none":n});function wo(n,s){if(1&n&&(e.j41(0,"mat-option",39),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function jo(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function Go(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Alias"),e.k0s())}function Do(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Re,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias)}}function No(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Public Key"),e.k0s())}function Po(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Re,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.pub_key)}}function $o(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Address"),e.k0s())}function Ao(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Re,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.address)}}function Mo(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Sync Type"),e.k0s())}function Bo(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,null==t?null:t.sync_type,"sync","_"))}}function Oo(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Inbound"),e.k0s())}function Vo(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null!=t&&t.inbound?"Yes":"No")}}function Yo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Bytes Sent"),e.k0s())}function Xo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.bytes_sent)," ")}}function Uo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Bytes Received"),e.k0s())}function Ho(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.bytes_recv)," ")}}function qo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Sats Sent"),e.k0s())}function zo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.sat_sent)," ")}}function Jo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Sats Received"),e.k0s())}function Wo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.sat_recv)," ")}}function Qo(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Ping Time ("),e.j41(2,"span"),e.EFF(3,"\xb5"),e.k0s(),e.EFF(4,"s)"),e.k0s())}function Zo(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.ping_time)," ")}}function Ko(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",50),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function el(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",51)(1,"div",48)(2,"mat-select",49),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",50),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onPeerClick(o,i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",50),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onOpenChannel(i))}),e.EFF(7,"Open Channel"),e.k0s(),e.j41(8,"mat-option",50),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onPeerDetach(i))}),e.EFF(9,"Disconnect"),e.k0s()()()()}}function tl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No connected peer."),e.k0s())}function nl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting peers..."),e.k0s())}function il(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function al(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,tl,2,0,"p",53)(2,nl,2,0,"p",53)(3,il,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function sl(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,Lo,(null==t.peers?null:t.peers.data)&&(null==t.peers||null==t.peers.data?null:t.peers.data.length)>0))}}function ol(n,s){1&n&&e.nrm(0,"tr",55)}function ll(n,s){1&n&&e.nrm(0,"tr",56)}let rl=(()=>{class n{constructor(t,a,i,o,r){this.logger=t,this.store=a,this.rtlEffects=i,this.commonService=o,this.camelCaseWithReplace=r,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:l.md,sortBy:"alias",sortOrder:l.oi.DESCENDING},this.availableBalance=0,this.faUsers=b.gdJ,this.displayedColumns=[],this.peersData=[],this.peers=new c.I6([]),this.information={},this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.information=t}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.availableBalance=t.blockchainBalance.total_balance||0}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=t.peers,this.peersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(t)})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:t.pub_key,goToName:"Graph lookup",goToLink:"/lnd/graph/lookups",showQRName:"Public Key",showQRField:t.pub_key,message:[[{key:"pub_key",value:t.pub_key,title:"Public Key",width:100}],[{key:"address",value:t.address,title:"Address",width:100}],[{key:"alias",value:t.alias,title:"Alias",width:40},{key:"inbound",value:t.inbound?"True":"False",title:"Inbound",width:30},{key:"ping_time",value:t.ping_time,title:"Ping Time (\xb5s)",width:30,type:l.UN.NUMBER}],[{key:"sat_sent",value:t.sat_sent,title:"Satoshis Sent",width:50,type:l.UN.NUMBER},{key:"sat_recv",value:t.sat_recv,title:"Satoshis Received",width:50,type:l.UN.NUMBER}],[{key:"bytes_sent",value:t.bytes_sent,title:"Bytes Sent",width:50,type:l.UN.NUMBER},{key:"bytes_recv",value:t.bytes_recv,title:"Bytes Received",width:50,type:l.UN.NUMBER}]]}}}))}onConnectPeer(){this.store.dispatch((0,E.xO)({payload:{data:{message:{peer:null,information:this.information,balance:this.availableBalance},component:Ze}}}))}onOpenChannel(t){this.store.dispatch((0,E.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:t,information:this.information,balance:this.availableBalance},component:Qe}}}))}onPeerDetach(t){this.store.dispatch((0,E.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(t.alias?t.alias:t.pub_key),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,_.Q)(this.unSubs[4])).subscribe(i=>{i&&this.store.dispatch((0,v.ed)({payload:{pubkey:t.pub_key}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.peers.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=JSON.stringify(t).toLowerCase();break;case"sync_type":i=this.camelCaseWithReplace.transform(t.sync_type||"","sync","_").trim().toLowerCase();break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"sync_type"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}loadPeersTable(t){this.peers=new c.I6(t?[...t]:[]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(me.H),e.rXU(N.h),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-peers"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Peers")}])],decls:64,vars:19,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","pub_key"],["matColumnDef","address"],["matColumnDef","sync_type"],["matColumnDef","inbound"],["matColumnDef","bytes_sent"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","bytes_recv"],["matColumnDef","sat_sent"],["matColumnDef","sat_recv"],["matColumnDef","ping_time"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"button",3),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onConnectPeer())}),e.EFF(3,"Add Peer"),e.k0s()(),e.j41(4,"div",4)(5,"div",5)(6,"div",6),e.nrm(7,"fa-icon",7),e.j41(8,"span",8),e.EFF(9,"Connected Peers"),e.k0s()(),e.j41(10,"div",9)(11,"mat-form-field",10)(12,"mat-label"),e.EFF(13,"Filter By"),e.k0s(),e.j41(14,"mat-select",11),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(15,"perfect-scrollbar"),e.DNE(16,wo,2,2,"mat-option",12),e.k0s()()(),e.j41(17,"mat-form-field",10)(18,"mat-label"),e.EFF(19,"Filter"),e.k0s(),e.j41(20,"input",13),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(21,"div",14),e.DNE(22,jo,1,0,"mat-progress-bar",15),e.j41(23,"table",16,0),e.qex(25,17),e.DNE(26,Go,2,0,"th",18)(27,Do,4,4,"td",19),e.bVm(),e.qex(28,20),e.DNE(29,No,2,0,"th",18)(30,Po,4,4,"td",19),e.bVm(),e.qex(31,21),e.DNE(32,$o,2,0,"th",18)(33,Ao,4,4,"td",19),e.bVm(),e.qex(34,22),e.DNE(35,Mo,2,0,"th",18)(36,Bo,3,5,"td",19),e.bVm(),e.qex(37,23),e.DNE(38,Oo,2,0,"th",18)(39,Vo,2,1,"td",19),e.bVm(),e.qex(40,24),e.DNE(41,Yo,2,0,"th",25)(42,Xo,4,3,"td",19),e.bVm(),e.qex(43,26),e.DNE(44,Uo,2,0,"th",25)(45,Ho,4,3,"td",19),e.bVm(),e.qex(46,27),e.DNE(47,qo,2,0,"th",25)(48,zo,4,3,"td",19),e.bVm(),e.qex(49,28),e.DNE(50,Jo,2,0,"th",25)(51,Wo,4,3,"td",19),e.bVm(),e.qex(52,29),e.DNE(53,Qo,5,0,"th",25)(54,Zo,4,3,"td",19),e.bVm(),e.qex(55,30),e.DNE(56,Ko,6,0,"th",31)(57,el,10,0,"td",32),e.bVm(),e.qex(58,33),e.DNE(59,al,4,3,"td",34),e.bVm(),e.DNE(60,sl,1,3,"tr",35)(61,ol,1,0,"tr",36)(62,ll,1,0,"tr",37),e.k0s()(),e.nrm(63,"mat-paginator",38),e.k0s()()}2&a&&(e.R7$(7),e.Y8G("icon",i.faUsers),e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(15,Ro).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.peers)("ngClass",e.eq3(16,Eo,""!==i.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(18,Io)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX,q.VD]})}return n})();function cl(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Open"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numOpenChannels)}}function pl(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Pending"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numPendingChannels)}}function ml(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Closed"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numClosedChannels)}}function ul(n,s){if(1&n&&(e.j41(0,"span",7),e.EFF(1,"Active HTLCs"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numActiveHTLCs)}}let dl=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.router=i,this.numOpenChannels=0,this.numPendingChannels=0,this.numClosedChannels=0,this.numActiveHTLCs=0,this.peers=[],this.information={},this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending"},{link:"closed",name:"Closed"},{link:"activehtlcs",name:"Active HTLCs"}],this.activeLink=0,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t instanceof x.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(a=>a.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.numOpenChannels=t.channels&&t.channels.length?t.channels.length:0,this.numActiveHTLCs=t.channels?.reduce((a,i)=>a+(i.pending_htlcs&&i.pending_htlcs.length>0?i.pending_htlcs.length:0),0),this.logger.info(t)}),this.store.select(y.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.numPendingChannels=t.pendingChannelsSummary.total_channels?t.pendingChannelsSummary.total_channels:0}),this.store.select(y.Bw).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.numClosedChannels=t.closedChannels&&t.closedChannels.length?t.closedChannels.length:0}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[5])).subscribe(t=>{this.totalBalance=+(t.blockchainBalance.total_balance||0)}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[6])).subscribe(t=>{this.peers=t.peers,this.peers.forEach(a=>{(!a.alias||""===a.alias)&&(a.alias=a.pub_key?.substring(0,20))}),this.logger.info(t)})}onOpenChannel(){this.store.dispatch((0,E.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance},component:Qe}}}))}onSelectedTabChange(t){this.router.navigateByUrl("/lnd/connections/channels/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channels-tables"]],decls:16,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(a,i){1&a&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return i.onOpenChannel()}),e.EFF(3,"Open Channel"),e.k0s()(),e.j41(4,"div",3)(5,"mat-tab-group",4),e.mxI("selectedIndexChange",function(r){return e.DH7(i.activeLink,r)||(i.activeLink=r),r}),e.bIt("selectedTabChange",function(r){return i.onSelectedTabChange(r)}),e.j41(6,"mat-tab"),e.DNE(7,cl,2,1,"ng-template",5),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,pl,2,1,"ng-template",5),e.k0s(),e.j41(10,"mat-tab"),e.DNE(11,ml,2,1,"ng-template",5),e.k0s(),e.j41(12,"mat-tab"),e.DNE(13,ul,2,1,"ng-template",5),e.k0s()(),e.j41(14,"div",6),e.nrm(15,"router-outlet"),e.k0s()()()),2&a&&(e.R7$(5),e.R50("selectedIndex",i.activeLink))},dependencies:[h.DJ,h.sA,h.UI,G.$z,Te.k,P.ES,P.mq,P.T8,x.n3]})}return n})();var ae=g(5416),ge=g(9157);const hl=n=>({"xs-scroll-y":n});function _l(n,s){if(1&n&&(e.j41(0,"div")(1,"div",10)(2,"div",19)(3,"h4",12),e.EFF(4,"Commit Fee"),e.k0s(),e.j41(5,"span",20),e.EFF(6),e.nI1(7,"number"),e.k0s()(),e.j41(8,"div",19)(9,"h4",12),e.EFF(10,"Commit Weight"),e.k0s(),e.j41(11,"span",20),e.EFF(12),e.nI1(13,"number"),e.k0s()(),e.j41(14,"div",19)(15,"h4",12),e.EFF(16,"Fee/KW"),e.k0s(),e.j41(17,"span",20),e.EFF(18),e.nI1(19,"number"),e.k0s()(),e.j41(20,"div",19)(21,"h4",12),e.EFF(22,"Static Remote Key"),e.k0s(),e.j41(23,"span",20),e.EFF(24),e.k0s()()(),e.nrm(25,"mat-divider",15),e.j41(26,"div",10)(27,"div",19)(28,"h4",12),e.EFF(29),e.k0s(),e.j41(30,"span",20),e.EFF(31),e.nI1(32,"number"),e.k0s()(),e.j41(33,"div",19)(34,"h4",12),e.EFF(35),e.k0s(),e.j41(36,"span",20),e.EFF(37),e.nI1(38,"number"),e.k0s()(),e.j41(39,"div",19)(40,"h4",12),e.EFF(41,"Unsettled Balance"),e.k0s(),e.j41(42,"span",20),e.EFF(43),e.nI1(44,"number"),e.k0s()(),e.j41(45,"div",19)(46,"h4",12),e.EFF(47,"CSV Delay"),e.k0s(),e.j41(48,"span",20),e.EFF(49),e.nI1(50,"number"),e.k0s()()(),e.nrm(51,"mat-divider",15),e.j41(52,"div",10)(53,"div",19)(54,"h4",12),e.EFF(55,"Local Reserve (Sats)"),e.k0s(),e.j41(56,"span",20),e.EFF(57),e.nI1(58,"number"),e.k0s()(),e.j41(59,"div",19)(60,"h4",12),e.EFF(61,"Remote Reserve (Sats)"),e.k0s(),e.j41(62,"span",20),e.EFF(63),e.nI1(64,"number"),e.k0s()(),e.j41(65,"div",19)(66,"h4",12),e.EFF(67,"Lifetime (Seconds)"),e.k0s(),e.j41(68,"span",20),e.EFF(69),e.nI1(70,"number"),e.k0s()(),e.j41(71,"div",19)(72,"h4",12),e.EFF(73,"Pending HTLCs"),e.k0s(),e.j41(74,"span",20),e.EFF(75),e.nI1(76,"number"),e.k0s()()(),e.nrm(77,"mat-divider",15),e.k0s()),2&n){const t=e.XpG();e.R7$(6),e.JRh(e.bMT(7,17,t.channel.commit_fee)),e.R7$(6),e.JRh(e.bMT(13,19,t.channel.commit_weight)),e.R7$(6),e.JRh(e.bMT(19,21,t.channel.fee_per_kw)),e.R7$(6),e.JRh(t.channel.static_remote_key?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(4),e.JRh(t.screenSize===t.screenSizeEnum.XS?"Total Sats Sent":"Total Satoshis Sent"),e.R7$(2),e.JRh(e.bMT(32,23,t.channel.total_satoshis_sent)),e.R7$(4),e.JRh(t.screenSize===t.screenSizeEnum.XS?"Total Sats Recv":"Total Satoshis Received"),e.R7$(2),e.JRh(e.bMT(38,25,t.channel.total_satoshis_received)),e.R7$(6),e.JRh(e.bMT(44,27,t.channel.unsettled_balance)),e.R7$(6),e.JRh(e.bMT(50,29,t.channel.csv_delay)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(58,31,t.channel.local_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(64,33,t.channel.remote_chan_reserve_sat)),e.R7$(6),e.JRh(e.bMT(70,35,t.channel.lifetime)),e.R7$(6),e.JRh(e.bMT(76,37,null==t.channel||null==t.channel.pending_htlcs?null:t.channel.pending_htlcs.length)),e.R7$(2),e.Y8G("inset",!0)}}function fl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Show Advanced"),e.k0s())}function gl(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Hide Advanced"),e.k0s())}function Cl(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",27),e.bIt("copied",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onCopyChanID(i))}),e.EFF(1,"Copy Channel ID"),e.k0s()}if(2&n){const t=e.XpG();e.Y8G("payload",t.channel.chan_id)}}function yl(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",28),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onClose())}),e.EFF(1,"OK"),e.k0s()}}let Ee=(()=>{class n{constructor(t,a,i,o,r,p){this.dialogRef=t,this.data=a,this.logger=i,this.commonService=o,this.snackBar=r,this.router=p,this.faReceipt=b.Mf0,this.faUpRightFromSquare=b.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.selNode=this.data.selNode,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(t){this.snackBar.open("Channel ID "+t+" copied."),this.logger.info("Copied Text: "+t)}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.channel_point,"_blank")}onGoToLink(t,a){this.router.navigateByUrl("/lnd/graph/lookups",{state:{lookupType:t,lookupValue:a}}),this.onClose()}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(N.h),e.rXU(ae.UG),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-information"]],decls:95,vars:38,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],["tabindex","4","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["tabindex","5",1,"foreground-secondary-text"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["tabindex","6","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],["fxFlex","25"],[1,"overflow-wrap","foreground-secondary-text"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),e.nrm(4,"fa-icon",5),e.j41(5,"span",6),e.EFF(6,"Channel Information"),e.k0s()(),e.j41(7,"button",7),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onClose())}),e.EFF(8,"X"),e.k0s()(),e.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10)(12,"div",11)(13,"h4",12),e.EFF(14,"Channel ID"),e.k0s(),e.j41(15,"span",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onGoToLink("1",i.channel.chan_id))}),e.EFF(16),e.k0s()(),e.j41(17,"div",11)(18,"h4",12),e.EFF(19,"Peer Alias"),e.k0s(),e.j41(20,"span",14),e.EFF(21),e.k0s()()(),e.nrm(22,"mat-divider",15),e.j41(23,"div",10)(24,"div",2)(25,"h4",12),e.EFF(26,"Channel Point"),e.k0s(),e.j41(27,"span",16),e.EFF(28),e.j41(29,"fa-icon",17),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onExplorerClicked())}),e.k0s()()()(),e.nrm(30,"mat-divider",15),e.j41(31,"div",10)(32,"div",2)(33,"h4",12),e.EFF(34,"Peer Public Key"),e.k0s(),e.j41(35,"span",18),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onGoToLink("0",i.channel.remote_pubkey))}),e.EFF(36),e.k0s()()(),e.nrm(37,"mat-divider",15),e.j41(38,"div",10)(39,"div",19)(40,"h4",12),e.EFF(41,"Local Balance"),e.k0s(),e.j41(42,"span",20),e.EFF(43),e.nI1(44,"number"),e.k0s()(),e.j41(45,"div",19)(46,"h4",12),e.EFF(47,"Remote Balance"),e.k0s(),e.j41(48,"span",20),e.EFF(49),e.nI1(50,"number"),e.k0s()(),e.j41(51,"div",19)(52,"h4",12),e.EFF(53,"Capacity"),e.k0s(),e.j41(54,"span",20),e.EFF(55),e.nI1(56,"number"),e.k0s()(),e.j41(57,"div",19)(58,"h4",12),e.EFF(59,"Uptime (Seconds)"),e.k0s(),e.j41(60,"span",20),e.EFF(61),e.nI1(62,"number"),e.k0s()()(),e.nrm(63,"mat-divider",15),e.j41(64,"div",10)(65,"div",19)(66,"h4",12),e.EFF(67,"Active"),e.k0s(),e.j41(68,"span",20),e.EFF(69),e.k0s()(),e.j41(70,"div",19)(71,"h4",12),e.EFF(72,"Private"),e.k0s(),e.j41(73,"span",20),e.EFF(74),e.k0s()(),e.j41(75,"div",19)(76,"h4",12),e.EFF(77,"Initiator"),e.k0s(),e.j41(78,"span",20),e.EFF(79),e.k0s()(),e.j41(80,"div",19)(81,"h4",12),e.EFF(82,"Number of Updates"),e.k0s(),e.j41(83,"span",20),e.EFF(84),e.nI1(85,"number"),e.k0s()()(),e.nrm(86,"mat-divider",15),e.DNE(87,_l,78,39,"div",21),e.j41(88,"div",22)(89,"button",23),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onShowAdvanced())}),e.DNE(90,fl,2,0,"p",24)(91,gl,2,0,"ng-template",null,0,e.C5r),e.k0s(),e.DNE(93,Cl,2,1,"button",25)(94,yl,2,0,"button",26),e.k0s()()()()()}if(2&a){const o=e.sdS(92);e.R7$(4),e.Y8G("icon",i.faReceipt),e.R7$(5),e.Y8G("ngClass",e.eq3(36,hl,i.screenSize===i.screenSizeEnum.XS)),e.R7$(7),e.SpI(" ",i.channel.chan_id," "),e.R7$(5),e.JRh(i.channel.remote_alias),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",i.channel.channel_point," "),e.R7$(),e.FS9("matTooltip","Link to "+i.selNode.settings.blockExplorerUrl),e.Y8G("icon",i.faUpRightFromSquare),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.SpI(" ",i.channel.remote_pubkey," "),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(44,26,i.channel.local_balance)),e.R7$(6),e.JRh(e.bMT(50,28,i.channel.remote_balance)),e.R7$(6),e.JRh(e.bMT(56,30,i.channel.capacity)),e.R7$(6),e.JRh(e.bMT(62,32,i.channel.uptime)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(i.channel.active?"Yes":"No"),e.R7$(5),e.JRh(i.channel.private?"Yes":"No"),e.R7$(5),e.JRh(i.channel.initiator?"Yes":"No"),e.R7$(5),e.JRh(e.bMT(85,34,i.channel.num_updates)),e.R7$(2),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",i.showAdvanced),e.R7$(3),e.Y8G("ngIf",!i.showAdvanced)("ngIfElse",o),e.R7$(3),e.Y8G("ngIf",i.showCopy),e.R7$(),e.Y8G("ngIf",!i.showCopy)}},dependencies:[d.YU,d.bT,M.aY,h.DJ,h.sA,h.UI,L.PW,G.$z,T.m2,T.MM,ee.q,Q.oV,ge.U,Z.N,d.QX]})}return n})();var Ie=g(7673),Le=g(1001),bl=g(6949);const ue=(n,s)=>({"small-svg":n,"large-svg":s});function Fl(n,s){1&n&&e.eu8(0)}function xl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17)(12,"path",18)(13,"path",19)(14,"path",20)(15,"path",21)(16,"path",22)(17,"path",23)(18,"path",24)(19,"path",25)(20,"path",26)(21,"path",27)(22,"path",28)(23,"path",29)(24,"path",30)(25,"path",31)(26,"path",32)(27,"path",33)(28,"path",34)(29,"path",35)(30,"path",36)(31,"path",37)(32,"path",38)(33,"path",39)(34,"path",40)(35,"path",41)(36,"path",42)(37,"path",43)(38,"path",44)(39,"path",45)(40,"path",46),e.k0s(),e.joV(),e.j41(41,"div",47)(42,"mat-card-title"),e.EFF(43,"Circular rebalancing explained."),e.k0s()(),e.j41(44,"div",48)(45,"mat-card-subtitle",49),e.EFF(46," Circular payments are a completely off-chain rebalancing strategy where a node makes a payment to itself across a circular path of chained payment channels. "),e.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function vl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.qSk(),e.j41(1,"svg",51),e.nrm(2,"path",52)(3,"path",53)(4,"path",54)(5,"path",55)(6,"path",56)(7,"path",57)(8,"path",58)(9,"path",59)(10,"path",60)(11,"path",61)(12,"path",62)(13,"path",63)(14,"path",64)(15,"path",65)(16,"path",66)(17,"path",67)(18,"path",68)(19,"path",69)(20,"path",70)(21,"path",71)(22,"path",72)(23,"path",73)(24,"path",74)(25,"path",75)(26,"path",76)(27,"path",77)(28,"path",78)(29,"path",79)(30,"path",80)(31,"path",81)(32,"path",82)(33,"path",52)(34,"path",53)(35,"path",54)(36,"path",55)(37,"path",56)(38,"path",57)(39,"path",58)(40,"path",59)(41,"path",60)(42,"path",83)(43,"path",84)(44,"path",63)(45,"path",85)(46,"path",86)(47,"path",87)(48,"path",67)(49,"path",68)(50,"path",69)(51,"path",70)(52,"path",71)(53,"path",72)(54,"path",73)(55,"path",74)(56,"path",75)(57,"path",76)(58,"path",77)(59,"path",78)(60,"path",79)(61,"path",80)(62,"path",88)(63,"path",82)(64,"path",89),e.j41(65,"defs")(66,"linearGradient",90),e.nrm(67,"stop",91)(68,"stop",92)(69,"stop",93),e.k0s(),e.j41(70,"linearGradient",94),e.nrm(71,"stop",91)(72,"stop",92)(73,"stop",93),e.k0s(),e.j41(74,"linearGradient",95),e.nrm(75,"stop",91)(76,"stop",92)(77,"stop",93),e.k0s(),e.j41(78,"linearGradient",96),e.nrm(79,"stop",91)(80,"stop",92)(81,"stop",93),e.k0s(),e.j41(82,"linearGradient",97),e.nrm(83,"stop",91)(84,"stop",92)(85,"stop",93),e.k0s(),e.j41(86,"linearGradient",98),e.nrm(87,"stop",91)(88,"stop",92)(89,"stop",93),e.k0s()()(),e.joV(),e.j41(90,"div",47)(91,"mat-card-title"),e.EFF(92,"Step 1: Unbalanced channel"),e.k0s()(),e.j41(93,"div",48)(94,"mat-card-subtitle",49),e.EFF(95," It starts with an unbalanced channel, that needs to be rebalanced in order to continue to route payments. "),e.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function Tl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.qSk(),e.j41(1,"svg",99),e.nrm(2,"path",100)(3,"path",101)(4,"path",102)(5,"path",103)(6,"path",104)(7,"path",105)(8,"path",106)(9,"path",107)(10,"path",108)(11,"path",109)(12,"path",110)(13,"path",111)(14,"path",112)(15,"path",113)(16,"path",114)(17,"path",52)(18,"path",115)(19,"path",116)(20,"path",117)(21,"path",118)(22,"path",119)(23,"path",120)(24,"path",121)(25,"path",122)(26,"path",83)(27,"path",84)(28,"path",123)(29,"path",124)(30,"path",125)(31,"path",126)(32,"path",67)(33,"path",127)(34,"path",128)(35,"path",129)(36,"path",130)(37,"path",131)(38,"path",132)(39,"path",74)(40,"path",75)(41,"path",133)(42,"path",77)(43,"path",78)(44,"path",79)(45,"path",80)(46,"path",134)(47,"path",135)(48,"path",136),e.j41(49,"defs")(50,"linearGradient",137),e.nrm(51,"stop",91)(52,"stop",92)(53,"stop",93),e.k0s(),e.j41(54,"linearGradient",138),e.nrm(55,"stop",91)(56,"stop",92)(57,"stop",93),e.k0s(),e.j41(58,"linearGradient",139),e.nrm(59,"stop",91)(60,"stop",92)(61,"stop",93),e.k0s()()(),e.joV(),e.j41(62,"div",47)(63,"mat-card-title"),e.EFF(64,"Step 2: Invoice/Payment"),e.k0s()(),e.j41(65,"div",48)(66,"mat-card-subtitle",49),e.EFF(67," All you have to do is make a payment to yourself in a favorable direction by generating and paying an invoice. This is taken care automatically by your node. "),e.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function Sl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.qSk(),e.j41(1,"svg",140),e.nrm(2,"path",141)(3,"path",142)(4,"path",143)(5,"path",144)(6,"path",145)(7,"path",146)(8,"path",147)(9,"path",148)(10,"path",149)(11,"path",150)(12,"path",151)(13,"path",152)(14,"path",153)(15,"path",154)(16,"path",155)(17,"path",156)(18,"path",157)(19,"path",158)(20,"path",159)(21,"path",160)(22,"path",161)(23,"path",162)(24,"path",163)(25,"path",164)(26,"path",163)(27,"path",165)(28,"path",166)(29,"path",167)(30,"path",168)(31,"path",169)(32,"path",170)(33,"path",171)(34,"path",172)(35,"path",173)(36,"path",174)(37,"path",175)(38,"path",176)(39,"path",177)(40,"path",178)(41,"path",179),e.j41(42,"defs")(43,"linearGradient",180),e.nrm(44,"stop",91)(45,"stop",92)(46,"stop",93),e.k0s()()(),e.joV(),e.j41(47,"div",47)(48,"mat-card-title"),e.EFF(49,"Step 3: Rebalance amount"),e.k0s()(),e.j41(50,"div",48)(51,"mat-card-subtitle",49),e.EFF(52," You will be moving part or all of the local balance to the remote side. For the route to be circular, there should be at least 3 nodes involved. "),e.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}function kl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",50),e.bIt("swipe",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSwipe(i))}),e.qSk(),e.j41(1,"svg",140),e.nrm(2,"path",181)(3,"path",143)(4,"path",182)(5,"path",145)(6,"path",146)(7,"path",183)(8,"path",148)(9,"path",184)(10,"path",185)(11,"path",186)(12,"path",187)(13,"path",188)(14,"path",189)(15,"path",190)(16,"path",191)(17,"path",192)(18,"path",158)(19,"path",193)(20,"path",194)(21,"path",179)(22,"path",160)(23,"path",161)(24,"path",195)(25,"path",163)(26,"path",164)(27,"path",163)(28,"path",165)(29,"path",166)(30,"path",167)(31,"path",168)(32,"path",196)(33,"path",170)(34,"path",197)(35,"path",172)(36,"path",173)(37,"path",174)(38,"path",175)(39,"path",176)(40,"path",198),e.j41(41,"defs")(42,"linearGradient",199),e.nrm(43,"stop",91)(44,"stop",92)(45,"stop",93),e.k0s()()(),e.joV(),e.j41(46,"div",47)(47,"mat-card-title"),e.EFF(48,"Rebalance successful!"),e.k0s()(),e.j41(49,"div",48)(50,"mat-card-subtitle",49),e.EFF(51," Your channel is successfully rebalanced and is able to continue to route payments. "),e.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@sliderAnimation",t.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,ue,t.screenSize===t.screenSizeEnum.XS,t.screenSize!==t.screenSizeEnum.XS))}}let Rl=(()=>{class n{constructor(t){this.commonService=t,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.bkB,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(t){2===t.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===t.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-rebalance-infographics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[["infoStepBlock1",""],["infoStepBlock2",""],["infoStepBlock3",""],["infoStepBlock4",""],["infoStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between starts",3,"swipe"],["fxFlex","30","viewBox","0 0 246 154","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M187.8 136C203.043 136 215.4 133.493 215.4 130.4C215.4 127.307 203.043 124.8 187.8 124.8C172.557 124.8 160.2 127.307 160.2 130.4C160.2 133.493 172.557 136 187.8 136Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M128.6 148.8C143.843 148.8 156.2 146.293 156.2 143.2C156.2 140.107 143.843 137.6 128.6 137.6C113.357 137.6 101 140.107 101 143.2C101 146.293 113.357 148.8 128.6 148.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["opacity","0.1","d","M100.2 117.421C100.2 117.421 99.0633 117.494 99.4998 117.722C99.9363 117.95 100.2 117.421 100.2 117.421Z","fill","black"],["opacity","0.1","d","M101 118.4C100.986 118.471 98.1102 119.483 98.673 119.933C99.2358 120.384 101 118.4 101 118.4Z","fill","black"],["opacity","0.1","d","M97.8 128.98C98.0492 128.966 100.509 128.241 101 128.89L97.8 128.98Z","fill","black"],["opacity","0.1","d","M100.2 129.709C100.2 129.709 100.563 129.362 100.926 129.543C101.289 129.725 100.2 129.709 100.2 129.709Z","fill","black"],["opacity","0.1","d","M101.8 132C101.8 132 101.641 133.198 101 133.6L101.8 132Z","fill","black"],["d","M119.223 21.4239L123.102 22.0818L118.209 50.9111L114.33 50.2532L119.223 21.4239Z",1,"fill-color-primary-darker"],["d","M127.4 137.844L128.262 144L129 137.6L127.4 137.844Z",1,"fill-color-29"],["d","M100.2 134.349V138.226L101 141.6H101.571L102.258 137.976L102.6 133.6L100.2 134.349Z",1,"fill-color-28"],["d","M110.75 50.4L104.806 87.6521C104.806 87.6521 96.0162 127.358 99.3581 135.2H103.57L116.2 58.9791L110.75 50.4Z",1,"fill-color-29"],["d","M125.308 45.6L129.979 83.02C129.979 83.02 133.381 130.691 129.656 138.4H125.976L119.4 53.9698L125.308 45.6Z",1,"fill-color-29"],["d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M110.017 36.2213C110.634 34.1443 112.565 32.7417 114.724 32.8019C118.318 32.893 123.873 33.5496 126.77 36.5268C131.261 41.1521 123.736 56.731 123.736 56.731C123.736 56.731 116.69 69.7545 110.267 53.2022C110.258 53.2159 107.595 44.3527 110.017 36.2213Z","fill","black"],["d","M112.922 39.2661C113.364 37.7699 114.731 36.7605 116.259 36.8012C118.804 36.8682 122.74 37.3423 124.787 39.4927C127.969 42.8316 122.638 54.0832 122.638 54.0832C122.638 54.0832 117.661 63.4872 113.092 51.5396C113.092 51.5327 111.203 45.1393 112.922 39.2661Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M131.383 131.52C131.69 131.628 131.968 131.791 132.2 132C131.813 131.613 130.708 131.42 130.166 131.24C129.495 131.019 128.764 130.793 128.2 130.4C129.29 130.705 130.354 131.079 131.383 131.52Z","fill","black"],["opacity","0.1","d","M94.2 24.8C96.1882 24.8 97.8 23.1882 97.8 21.2C97.8 19.2118 96.1882 17.6 94.2 17.6C92.2117 17.6 90.6 19.2118 90.6 21.2C90.6 23.1882 92.2117 24.8 94.2 24.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M107 12C110.314 12 113 9.31371 113 6C113 2.68629 110.314 0 107 0C103.686 0 101 2.68629 101 6C101 9.31371 103.686 12 107 12Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M99 40.8C102.314 40.8 105 38.1137 105 34.8C105 31.4863 102.314 28.8 99 28.8C95.6863 28.8 93 31.4863 93 34.8C93 38.1137 95.6863 40.8 99 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M223 67.2C224.988 67.2 226.6 65.5882 226.6 63.6C226.6 61.6118 224.988 60 223 60C221.012 60 219.4 61.6118 219.4 63.6C219.4 65.5882 221.012 67.2 223 67.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M210.2 54.4C213.514 54.4 216.2 51.7137 216.2 48.4C216.2 45.0863 213.514 42.4 210.2 42.4C206.886 42.4 204.2 45.0863 204.2 48.4C204.2 51.7137 206.886 54.4 210.2 54.4Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M218.2 83.2C221.514 83.2 224.2 80.5137 224.2 77.2C224.2 73.8863 221.514 71.2 218.2 71.2C214.886 71.2 212.2 73.8863 212.2 77.2C212.2 80.5137 214.886 83.2 218.2 83.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M23.8 72C24.9046 72 25.8 71.1046 25.8 70C25.8 68.8954 24.9046 68 23.8 68C22.6954 68 21.8 68.8954 21.8 70C21.8 71.1046 22.6954 72 23.8 72Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M33 65.6C34.7673 65.6 36.2 64.1673 36.2 62.4C36.2 60.6327 34.7673 59.2 33 59.2C31.2327 59.2 29.8 60.6327 29.8 62.4C29.8 64.1673 31.2327 65.6 33 65.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M17 71.2C18.7673 71.2 20.2 69.7673 20.2 68C20.2 66.2327 18.7673 64.8 17 64.8C15.2327 64.8 13.8 66.2327 13.8 68C13.8 69.7673 15.2327 71.2 17 71.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M171.8 60C172.905 60 173.8 59.1046 173.8 58C173.8 56.8954 172.905 56 171.8 56C170.695 56 169.8 56.8954 169.8 58C169.8 59.1046 170.695 60 171.8 60Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M180.2 53.6C181.967 53.6 183.4 52.1673 183.4 50.4C183.4 48.6327 181.967 47.2 180.2 47.2C178.433 47.2 177 48.6327 177 50.4C177 52.1673 178.433 53.6 180.2 53.6Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M164.2 59.2C165.967 59.2 167.4 57.7673 167.4 56C167.4 54.2327 165.967 52.8 164.2 52.8C162.433 52.8 161 54.2327 161 56C161 57.7673 162.433 59.2 164.2 59.2Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M51 40.8C55.6392 40.8 59.4 37.0392 59.4 32.4C59.4 27.7608 55.6392 24 51 24C46.3608 24 42.6 27.7608 42.6 32.4C42.6 37.0392 46.3608 40.8 51 40.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M98.6 64.8C101.251 64.8 103.4 62.651 103.4 60C103.4 57.349 101.251 55.2 98.6 55.2C95.949 55.2 93.8 57.349 93.8 60C93.8 62.651 95.949 64.8 98.6 64.8Z",1,"fill-color-primary-darker"],["opacity","0.1","d","M145.8 96.8C148.451 96.8 150.6 94.651 150.6 92C150.6 89.349 148.451 87.2 145.8 87.2C143.149 87.2 141 89.349 141 92C141 94.651 143.149 96.8 145.8 96.8Z",1,"fill-color-primary-darker"],["fill-rule","evenodd","clip-rule","evenodd","d","M59.8 136.8C75.0431 136.8 87.4 134.293 87.4 131.2C87.4 128.107 75.0431 125.6 59.8 125.6C44.557 125.6 32.2 128.107 32.2 131.2C32.2 134.293 44.557 136.8 59.8 136.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M217.4 152.8C232.643 152.8 245 150.293 245 147.2C245 144.107 232.643 141.6 217.4 141.6C202.157 141.6 189.8 144.107 189.8 147.2C189.8 150.293 202.157 152.8 217.4 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["fill-rule","evenodd","clip-rule","evenodd","d","M28.6 152.8C43.8431 152.8 56.2 150.293 56.2 147.2C56.2 144.107 43.8431 141.6 28.6 141.6C13.3569 141.6 1 144.107 1 147.2C1 150.293 13.3569 152.8 28.6 152.8Z","stroke-width","0.8","stroke-dasharray","4 4",1,"fill-color-1","stroke-color-primary"],["d","M122.425 44.7H119.162L120.372 41.0719C120.484 40.6219 120.147 40.2 119.725 40.2H115.675C115.337 40.2 115.028 40.4531 115 40.7906L114.1 47.5406C114.044 47.9625 114.353 48.3 114.775 48.3H118.094L116.8 53.7844C116.716 54.2063 117.025 54.6 117.447 54.6C117.7 54.6 117.925 54.4875 118.037 54.2625L122.987 45.7125C123.269 45.2906 122.931 44.7 122.425 44.7Z","fill","white"],["d","M23.5204 123.2C23.0498 123.2 22.6141 123.375 22.2807 123.669C21.9491 123.96 21.7189 124.369 21.6565 124.837L20.2164 135.712C20.1423 136.278 20.3237 136.811 20.6643 137.203C21.0076 137.598 21.5119 137.85 22.0804 137.85H26.4117L24.5687 145.68C24.4289 146.274 24.5836 146.851 24.9204 147.28C25.2626 147.716 25.7931 148 26.3959 148C26.7289 148 27.0539 147.911 27.3385 147.746C27.616 147.585 27.8553 147.351 28.0254 147.055L35.9453 133.28C36.3068 132.658 36.2644 131.95 35.9495 131.398C35.7868 131.113 35.551 130.871 35.2622 130.703C34.9905 130.544 34.6717 130.45 34.3203 130.45H30.1609L31.7043 124.49C31.5476 124.305 31.4051 124.176 31.278 124.085C31.004 123.89 30.5348 123.687 29.7238 123.539C28.6009 123.335 26.6977 123.2 23.5204 123.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M185.5 109.6C185.075 109.6 184.682 109.757 184.381 110.02C184.08 110.284 183.872 110.652 183.815 111.073L182.615 120.074C182.548 120.585 182.712 121.066 183.021 121.419C183.331 121.774 183.787 122 184.3 122H187.74L186.244 128.309C186.117 128.846 186.258 129.366 186.564 129.753C186.873 130.145 187.352 130.4 187.897 130.4C188.505 130.4 189.084 130.074 189.391 129.512L195.745 115.6H191.208L192.467 110.771C192.308 110.576 192.165 110.445 192.04 110.357C191.803 110.189 191.397 110.01 190.693 109.883C189.753 109.713 188.16 109.6 185.5 109.6Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M215.1 128C214.675 128 214.282 128.157 213.981 128.42C213.68 128.683 213.472 129.052 213.415 129.473L212.215 138.474C212.148 138.985 212.312 139.466 212.621 139.819C212.931 140.174 213.387 140.4 213.9 140.4H217.34L215.844 146.709C215.717 147.246 215.858 147.766 216.164 148.153C216.473 148.545 216.952 148.8 217.497 148.8C218.105 148.8 218.684 148.474 218.991 147.912L225.345 134H220.808L222.067 129.171C221.908 128.976 221.765 128.845 221.64 128.757C221.403 128.589 220.997 128.41 220.293 128.283C219.353 128.113 217.76 128 215.1 128Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["d","M55.9003 111.2C55.4754 111.2 55.0822 111.357 54.7812 111.62C54.4802 111.883 54.2716 112.252 54.215 112.673L53.0149 121.674C52.9475 122.185 53.112 122.666 53.4214 123.019C53.7314 123.374 54.1868 123.6 54.7004 123.6H58.1398L56.6444 129.909C56.5174 130.446 56.6576 130.966 56.9637 131.353C57.2728 131.745 57.7518 132 58.2966 132C58.9052 132 59.4843 131.674 59.7907 131.112L66.1452 117.2H61.6081L62.8674 112.371C62.7082 112.176 62.5651 112.045 62.4402 111.957C62.2025 111.789 61.7969 111.61 61.0927 111.483C60.1529 111.313 58.5599 111.2 55.9003 111.2Z","stroke-width","1.6",1,"stroke-color-primary","fill-color-17"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 210 124","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M90.1491 0H0V100.616H90.1491V0Z",1,"fill-color-10"],["d","M88.6575 67.1775H1.48926V98.4248H88.6575V67.1775Z","fill","white"],["d","M59.844 74.5891H8.64404V90.6009H59.844V74.5891Z",1,"fill-color-primary-darker"],["d","M76.3172 90.6426C80.8187 90.6426 84.4679 86.9934 84.4679 82.4919C84.4679 77.9904 80.8187 74.3412 76.3172 74.3412C71.8157 74.3412 68.1665 77.9904 68.1665 82.4919C68.1665 86.9934 71.8157 90.6426 76.3172 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6575 34.7129H1.48926V65.9602H88.6575V34.7129Z","fill","white"],["d","M59.844 42.1244H8.64404V58.1363H59.844V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3172 58.1801C80.8187 58.1801 84.4679 54.5309 84.4679 50.0294C84.4679 45.5279 80.8187 41.8787 76.3172 41.8787C71.8157 41.8787 68.1665 45.5279 68.1665 50.0294C68.1665 54.5309 71.8157 58.1801 76.3172 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6575 2.24823H1.48926V33.4955H88.6575V2.24823Z","fill","white"],["d","M59.844 9.66199H8.64404V25.6739H59.844V9.66199Z",1,"fill-color-primary-darker"],["d","M32.644 74.5891H8.64404V90.6009H32.644V74.5891Z",1,"fill-color-17"],["d","M45.444 42.1244H8.64404V58.1363H45.444V42.1244Z",1,"fill-color-17"],["d","M59.644 9.66199H8.64404V25.662H59.644V9.66199Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint0_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint2_linear)"],["d","M76.1507 25.3014C80.6522 25.3014 84.3014 21.6522 84.3014 17.1507C84.3014 12.6492 80.6522 9 76.1507 9C71.6492 9 68 12.6492 68 17.1507C68 21.6522 71.6492 25.3014 76.1507 25.3014Z",1,"fill-color-17"],["d","M193.435 36.7899H142.709V35.7444H119.709V36.7899H68.7744C67.8644 36.7899 66.9917 37.1514 66.3482 37.7949C65.7048 38.4384 65.3433 39.3111 65.3433 40.2211V109.679C65.3433 110.589 65.7048 111.462 66.3482 112.106C66.9917 112.749 67.8644 113.111 68.7744 113.111H193.435C195.33 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.345 36.7899 193.435 36.7899Z",1,"fill-color-19"],["d","M192.266 42.8538H69.9434V111.856H192.266V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.284 111.856H69.9434V42.8538L157.284 111.856Z","fill","black"],["d","M89.0832 106.693C95.577 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.577 83.1766 89.0832 83.1766C82.5894 83.1766 77.3252 88.4408 77.3252 94.9346C77.3252 101.428 82.5894 106.693 89.0832 106.693Z",1,"fill-color-25"],["d","M91.7005 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7005 103.772ZM91.7005 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7005 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7005 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0673H159.541V82.4548H170.967V80.0673Z",1,"fill-color-19"],["d","M184.781 61.4783H145.727V62.5015H184.781V61.4783Z",1,"fill-color-19"],["d","M184.781 64.7186H145.727V65.7418H184.781V64.7186Z",1,"fill-color-19"],["d","M184.781 67.9589H145.727V68.9821H184.781V67.9589Z",1,"fill-color-19"],["d","M184.781 71.1991H145.727V72.2224H184.781V71.1991Z",1,"fill-color-19"],["d","M184.781 74.4394H145.727V75.4626H184.781V74.4394Z",1,"fill-color-19"],["d","M184.781 44.2537H180.006V49.0288H184.781V44.2537Z",1,"fill-color-25"],["d","M186.998 51.2458H181.2V45.4474H186.998V51.2458ZM181.452 50.9937H186.746V45.6996H181.452V50.9937Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.115C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.261 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.042 109.589 156.01 109.621C155.978 109.653 155.96 109.696 155.96 109.741V110.601H153.402V109.741C153.402 109.696 153.384 109.653 153.352 109.621C153.32 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.089 109.589 114.057 109.621C114.025 109.653 114.007 109.696 114.007 109.741V110.601H111.449V109.741C111.449 109.696 111.431 109.653 111.399 109.621C111.367 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.148 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.4642V109.741C97.4642 109.696 97.4462 109.653 97.4142 109.621C97.3822 109.589 97.3388 109.571 97.2936 109.571H93.2006C93.1554 109.571 93.112 109.589 93.08 109.621C93.048 109.653 93.0301 109.696 93.0301 109.741V110.601H90.472V109.741C90.472 109.696 90.454 109.653 90.422 109.621C90.39 109.589 90.3467 109.571 90.3014 109.571H86.2085C86.1632 109.571 86.1198 109.589 86.0879 109.621C86.0559 109.653 86.0379 109.696 86.0379 109.741V110.601H83.4798V109.741C83.4798 109.696 83.4618 109.653 83.4299 109.621C83.3979 109.589 83.3545 109.571 83.3093 109.571H79.2163C79.171 109.571 79.1277 109.589 79.0957 109.621C79.0637 109.653 79.0457 109.696 79.0457 109.741V110.601H76.4876V109.741C76.4876 109.696 76.4697 109.653 76.4377 109.621C76.4057 109.589 76.3623 109.571 76.3171 109.571H72.2241C72.1789 109.571 72.1355 109.589 72.1035 109.621C72.0715 109.653 72.0536 109.696 72.0536 109.741V110.601H64.2087C61.9482 110.601 60.1157 112.434 60.1157 114.694V116.545C60.1157 118.806 61.9482 120.638 64.2087 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8456 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9773 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1718L88.0762 87.0663C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5347 96.5996L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M42 75H9V91H42V75Z",1,"fill-color-17"],["d","M42 42H9V58H42V42Z",1,"fill-color-17"],["d","M76.3176 26.3516C81.1704 26.3516 85.1044 22.4176 85.1044 17.5648C85.1044 12.712 81.1704 8.77802 76.3176 8.77802C71.4648 8.77802 67.5308 12.712 67.5308 17.5648C67.5308 22.4176 71.4648 26.3516 76.3176 26.3516Z","fill","url(#paint3_linear)"],["d","M76.3176 59.0334C81.1704 59.0334 85.1044 55.0994 85.1044 50.2466C85.1044 45.3938 81.1704 41.4598 76.3176 41.4598C71.4648 41.4598 67.5308 45.3938 67.5308 50.2466C67.5308 55.0994 71.4648 59.0334 76.3176 59.0334Z","fill","url(#paint4_linear)"],["d","M76.3176 91.4958C81.1704 91.4958 85.1044 87.5618 85.1044 82.709C85.1044 77.8562 81.1704 73.9222 76.3176 73.9222C71.4648 73.9222 67.5308 77.8562 67.5308 82.709C67.5308 87.5618 71.4648 91.4958 76.3176 91.4958Z","fill","url(#paint5_linear)"],["d","M205.185 113.031H193.247V112.171C193.247 112.125 193.229 112.082 193.197 112.05C193.165 112.018 193.121 112 193.076 112H188.983C188.938 112 188.895 112.018 188.863 112.05C188.831 112.082 188.813 112.125 188.813 112.171V113.031H186.254V112.171C186.254 112.125 186.237 112.082 186.205 112.05C186.173 112.018 186.129 112 186.084 112H181.991C181.946 112 181.902 112.018 181.87 112.05C181.838 112.082 181.82 112.125 181.82 112.171V113.031H179.262V112.171C179.262 112.125 179.244 112.082 179.212 112.05C179.18 112.018 179.137 112 179.092 112H174.999C174.954 112 174.91 112.018 174.878 112.05C174.846 112.082 174.828 112.125 174.828 112.171V113.031H172.27V112.171C172.27 112.125 172.252 112.082 172.22 112.05C172.188 112.018 172.145 112 172.1 112H168.007C167.961 112 167.918 112.018 167.886 112.05C167.854 112.082 167.836 112.125 167.836 112.171V113.031H165.278V112.171C165.278 112.125 165.26 112.082 165.228 112.05C165.196 112.018 165.153 112 165.107 112H161.014C160.969 112 160.926 112.018 160.894 112.05C160.862 112.082 160.844 112.125 160.844 112.171V113.031H158.286V112.171C158.286 112.125 158.268 112.082 158.236 112.05C158.204 112.018 158.16 112 158.115 112H154.022C153.977 112 153.934 112.018 153.902 112.05C153.87 112.082 153.852 112.125 153.852 112.171V113.031H151.294V112.171C151.294 112.125 151.276 112.082 151.244 112.05C151.212 112.018 151.168 112 151.123 112H119.061C119.016 112 118.973 112.018 118.941 112.05C118.909 112.082 118.891 112.125 118.891 112.171V113.031H116.333V112.171C116.333 112.125 116.315 112.082 116.283 112.05C116.251 112.018 116.207 112 116.162 112H112.069C112.024 112 111.981 112.018 111.949 112.05C111.917 112.082 111.899 112.125 111.899 112.171V113.031H109.341V112.171C109.341 112.125 109.323 112.082 109.291 112.05C109.259 112.018 109.215 112 109.17 112H105.077C105.032 112 104.988 112.018 104.956 112.05C104.924 112.082 104.907 112.125 104.907 112.171V113.031H102.348V112.171C102.348 112.125 102.33 112.082 102.298 112.05C102.266 112.018 102.223 112 102.178 112H98.0849C98.0397 112 97.9963 112.018 97.9643 112.05C97.9323 112.082 97.9144 112.125 97.9144 112.171V113.031H95.3563V112.171C95.3563 112.125 95.3383 112.082 95.3063 112.05C95.2743 112.018 95.2309 112 95.1857 112H91.0927C91.0475 112 91.0041 112.018 90.9721 112.05C90.9402 112.082 90.9222 112.125 90.9222 112.171V113.031H88.3641V112.171C88.3641 112.125 88.3461 112.082 88.3141 112.05C88.2822 112.018 88.2388 112 88.1935 112H84.1006C84.0553 112 84.0119 112.018 83.98 112.05C83.948 112.082 83.93 112.125 83.93 112.171V113.031H81.3719V112.171C81.3719 112.125 81.3539 112.082 81.322 112.05C81.29 112.018 81.2466 112 81.2014 112H77.1084C77.0632 112 77.0198 112.018 76.9878 112.05C76.9558 112.082 76.9378 112.125 76.9379 112.171V113.031H69.093C66.8325 113.031 65 114.863 65 117.124V118.974C65 121.235 66.8325 123.067 69.093 123.067H205.185C207.445 123.067 209.277 121.235 209.277 118.974V117.124C209.277 114.863 207.445 113.031 205.185 113.031Z",1,"fill-color-19"],["d","M78.375 20.625C78.375 19.5938 77.5312 18.75 76.5 18.75C75.4453 18.75 74.625 19.5938 74.625 20.625C74.625 21.6797 75.4453 22.5 76.5 22.5C77.5312 22.5 78.375 21.6797 78.375 20.625ZM74.8359 11.1094L75.1406 17.4844C75.1641 17.7656 75.4219 18 75.7031 18H77.2734C77.5547 18 77.8125 17.7656 77.8359 17.4844L78.1406 11.1094C78.1641 10.7812 77.9062 10.5 77.5781 10.5H75.3984C75.0703 10.5 74.8125 10.7812 74.8359 11.1094Z","fill","white"],["id","paint0_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["stop-color","#808080","stop-opacity","0.25"],["offset","0.54","stop-color","#808080","stop-opacity","0.12"],["offset","1","stop-color","#808080","stop-opacity","0.1"],["id","paint1_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["id","paint3_linear","x1","76.3176","y1","26.3516","x2","76.3176","y2","8.77802","gradientUnits","userSpaceOnUse"],["id","paint4_linear","x1","76.3176","y1","59.0334","x2","76.3176","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint5_linear","x1","76.3176","y1","91.4958","x2","76.3176","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 370 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["d","M327.488 99.9755C350.953 99.9755 369.975 80.9531 369.975 57.4877C369.975 34.0224 350.953 15 327.488 15C304.022 15 285 34.0224 285 57.4877C285 80.9531 304.022 99.9755 327.488 99.9755Z",1,"fill-color-25"],["d","M115.068 85.6077H349.8V86.5722H113L115.068 85.6077Z",1,"fill-color-19"],["d","M236.776 84.376H226.024V91.544H236.776V84.376Z",1,"fill-color-primary-lighter"],["d","M218.856 87.96H233.192V79H218.856V87.96ZM232.569 87.5704H219.479V79.3896H232.569V87.5704Z",1,"fill-color-19"],["d","M265 57.3624H357.392V120.307H265V57.3624Z",1,"fill-color-22"],["d","M362.545 50H271.626C271.016 50.0009 270.521 50.495 270.521 51.1048V112.577C270.521 112.87 270.638 113.151 270.845 113.358C271.052 113.565 271.333 113.681 271.626 113.681H362.545C362.838 113.681 363.119 113.565 363.326 113.358C363.533 113.151 363.65 112.87 363.65 112.577V51.1048C363.65 50.495 363.155 50.0009 362.545 50ZM362.913 112.577C362.913 112.674 362.875 112.768 362.806 112.837C362.736 112.907 362.643 112.945 362.545 112.945H271.626C271.528 112.945 271.434 112.907 271.365 112.837C271.296 112.768 271.258 112.674 271.258 112.577V51.1048C271.258 50.9015 271.423 50.7365 271.626 50.7365H362.545C362.748 50.7365 362.913 50.9015 362.913 51.1048V112.577Z",1,"fill-color-19"],["d","M316.364 93.4359H275.844C275.547 93.4359 275.307 93.6766 275.307 93.9735V97.6835C275.307 97.9804 275.547 98.2211 275.844 98.2211H316.364C316.661 98.2211 316.901 97.9804 316.901 97.6835V93.9735C316.901 93.6766 316.661 93.4359 316.364 93.4359Z",1,"fill-color-19"],["d","M354.814 89.3873H341.565C341.272 89.3873 340.991 89.5036 340.784 89.7108C340.577 89.918 340.46 90.199 340.46 90.492V100.798C340.46 101.091 340.577 101.372 340.784 101.579C340.991 101.786 341.272 101.903 341.565 101.903H354.814C355.107 101.903 355.388 101.786 355.595 101.579C355.803 101.372 355.919 101.091 355.919 100.798V90.492C355.919 90.199 355.803 89.918 355.595 89.7108C355.388 89.5036 355.107 89.3873 354.814 89.3873ZM355.182 100.798C355.182 101.001 355.017 101.166 354.814 101.166H341.565C341.362 101.166 341.197 101.001 341.197 100.798V90.492C341.196 90.3943 341.235 90.3004 341.304 90.2313C341.373 90.1622 341.467 90.1235 341.565 90.1238H354.814C354.912 90.1235 355.006 90.1622 355.075 90.2313C355.144 90.3004 355.183 90.3943 355.182 90.492V100.798Z",1,"fill-color-19"],["d","M352.168 91.7653H344.211C343.914 91.7653 343.673 92.006 343.673 92.3029V93.0965C343.673 93.3934 343.914 93.6341 344.211 93.6341H352.168C352.465 93.6341 352.706 93.3934 352.706 93.0965V92.3029C352.706 92.006 352.465 91.7653 352.168 91.7653Z",1,"fill-color-19"],["d","M352.168 94.71H344.211C343.914 94.71 343.673 94.9507 343.673 95.2476V96.0412C343.673 96.3381 343.914 96.5788 344.211 96.5788H352.168C352.465 96.5788 352.706 96.3381 352.706 96.0412V95.2476C352.706 94.9507 352.465 94.71 352.168 94.71Z",1,"fill-color-19"],["d","M352.168 97.6548H344.211C343.914 97.6548 343.673 97.8955 343.673 98.1924V98.986C343.673 99.2829 343.914 99.5236 344.211 99.5236H352.168C352.465 99.5236 352.706 99.2829 352.706 98.986V98.1924C352.706 97.8955 352.465 97.6548 352.168 97.6548Z",1,"fill-color-19"],["d","M295.014 54.4177H276.949C276.652 54.4177 276.411 54.6584 276.411 54.9553V61.9782C276.411 62.2752 276.652 62.5158 276.949 62.5158H295.014C295.311 62.5158 295.552 62.2752 295.552 61.9782V54.9553C295.552 54.6584 295.311 54.4177 295.014 54.4177Z",1,"fill-color-19"],["d","M312.293 105.198C319.455 105.198 325.261 99.3917 325.261 92.2295C325.261 85.0672 319.455 79.2611 312.293 79.2611C305.131 79.2611 299.325 85.0672 299.325 92.2295C299.325 99.3917 305.131 105.198 312.293 105.198Z",1,"fill-color-25"],["d","M315.18 101.976C308.655 101.976 302.773 98.0462 300.276 92.0183C297.78 85.9904 299.16 79.052 303.773 74.4384C308.387 69.8249 315.325 68.4448 321.353 70.9416C327.381 73.4384 331.311 79.3205 331.311 85.8451C331.301 94.75 324.085 101.966 315.18 101.976ZM315.18 69.9245C306.387 69.9245 299.259 77.0524 299.259 85.8451C299.259 94.6377 306.387 101.766 315.18 101.766C323.973 101.766 331.1 94.6377 331.1 85.8451C331.09 77.0565 323.968 69.9345 315.18 69.9245Z",1,"fill-color-19"],["d","M309.677 100.883C309.936 100.948 310.216 100.873 310.41 100.673L318.163 92.664C318.571 92.2458 318.371 91.5387 317.802 91.3966L314.249 90.5107L316.557 86.8411C316.797 86.4038 316.558 85.8537 316.074 85.7332L311.64 84.6277C311.271 84.5355 310.888 84.7313 310.748 85.0854L307.92 92.2295C307.751 92.6583 307.998 93.1384 308.444 93.2497L312.099 94.161L309.186 99.7958C308.959 100.236 309.206 100.766 309.677 100.883Z",1,"fill-color-21"],["d","M88.6576 67.1775H1.48938V98.4248H88.6576V67.1775Z","fill","white"],["d","M59.8442 74.589H8.64417V90.6009H59.8442V74.589Z",1,"fill-color-primary-darker"],["d","M76.3175 90.6426C80.819 90.6426 84.4682 86.9934 84.4682 82.4919C84.4682 77.9904 80.819 74.3412 76.3175 74.3412C71.8159 74.3412 68.1667 77.9904 68.1667 82.4919C68.1667 86.9934 71.8159 90.6426 76.3175 90.6426Z",1,"fill-color-primary-darker"],["d","M88.6576 34.7129H1.48938V65.9602H88.6576V34.7129Z","fill","white"],["d","M59.8442 42.1244H8.64417V58.1363H59.8442V42.1244Z",1,"fill-color-primary-darker"],["d","M76.3175 58.1801C80.819 58.1801 84.4682 54.531 84.4682 50.0294C84.4682 45.5279 80.819 41.8787 76.3175 41.8787C71.8159 41.8787 68.1667 45.5279 68.1667 50.0294C68.1667 54.531 71.8159 58.1801 76.3175 58.1801Z",1,"fill-color-primary-darker"],["d","M88.6576 2.24824H1.48938V33.4955H88.6576V2.24824Z","fill","white"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-primary-darker"],["d","M59.8442 9.66196H8.64417V25.6738H59.8442V9.66196Z",1,"fill-color-17"],["d","M76.7868 26.5736C81.6396 26.5736 85.5736 22.6396 85.5736 17.7868C85.5736 12.934 81.6396 9 76.7868 9C71.934 9 68 12.934 68 17.7868C68 22.6396 71.934 26.5736 76.7868 26.5736Z","fill","url(#paint0_linear)"],["d","M76.3174 59.0334C81.1702 59.0334 85.1042 55.0994 85.1042 50.2466C85.1042 45.3938 81.1702 41.4598 76.3174 41.4598C71.4646 41.4598 67.5306 45.3938 67.5306 50.2466C67.5306 55.0994 71.4646 59.0334 76.3174 59.0334Z","fill","url(#paint1_linear)"],["d","M76.3174 91.4958C81.1702 91.4958 85.1042 87.5618 85.1042 82.709C85.1042 77.8562 81.1702 73.9222 76.3174 73.9222C71.4646 73.9222 67.5306 77.8562 67.5306 82.709C67.5306 87.5618 71.4646 91.4958 76.3174 91.4958Z","fill","url(#paint2_linear)"],["d","M193.434 36.7899H142.709V35.7444H119.708V36.7899H68.7742C67.8642 36.7899 66.9915 37.1514 66.348 37.7949C65.7045 38.4384 65.343 39.3111 65.343 40.2211V109.679C65.343 110.589 65.7045 111.462 66.348 112.106C66.9915 112.749 67.8642 113.111 68.7742 113.111H193.434C195.329 113.111 196.866 111.574 196.866 109.679V40.2211C196.866 39.3111 196.504 38.4384 195.861 37.7949C195.217 37.1514 194.344 36.7899 193.434 36.7899Z",1,"fill-color-19"],["d","M192.265 42.8538H69.9432V111.856H192.265V42.8538Z",1,"fill-color-22"],["opacity","0.1","d","M157.283 111.856H69.9432V42.8538L157.283 111.856Z","fill","black"],["d","M89.0829 106.693C95.5767 106.693 100.841 101.428 100.841 94.9346C100.841 88.4408 95.5767 83.1766 89.0829 83.1766C82.5892 83.1766 77.325 88.4408 77.325 94.9346C77.325 101.428 82.5892 106.693 89.0829 106.693Z",1,"fill-color-25"],["d","M91.7004 103.772C85.7849 103.772 80.4518 100.208 78.188 94.7431C75.9242 89.2778 77.1755 82.987 81.3584 78.8041C85.5414 74.6211 91.8322 73.3698 97.2975 75.6336C102.763 77.8974 106.326 83.2305 106.326 89.1461C106.317 97.2199 99.7743 103.763 91.7004 103.772ZM91.7004 74.7115C83.7284 74.7115 77.2658 81.174 77.2658 89.1461C77.2658 97.1181 83.7284 103.581 91.7004 103.581C99.6725 103.581 106.135 97.1181 106.135 89.1461C106.126 81.1778 99.6687 74.7205 91.7004 74.7115Z",1,"fill-color-28"],["d","M170.967 80.0672H159.541V82.4548H170.967V80.0672Z",1,"fill-color-19"],["d","M184.781 67.9588H145.727V68.9821H184.781V67.9588Z",1,"fill-color-19"],["d","M200.3 110.601H188.362V109.741C188.362 109.696 188.344 109.653 188.312 109.621C188.28 109.589 188.237 109.571 188.192 109.571H184.099C184.054 109.571 184.01 109.589 183.978 109.621C183.946 109.653 183.928 109.696 183.928 109.741V110.601H181.37V109.741C181.37 109.696 181.352 109.653 181.32 109.621C181.288 109.589 181.245 109.571 181.2 109.571H177.107C177.061 109.571 177.018 109.589 176.986 109.621C176.954 109.653 176.936 109.696 176.936 109.741V110.601H174.378V109.741C174.378 109.696 174.36 109.653 174.328 109.621C174.296 109.589 174.253 109.571 174.207 109.571H170.114C170.069 109.571 170.026 109.589 169.994 109.621C169.962 109.653 169.944 109.696 169.944 109.741V110.601H167.386V109.741C167.386 109.696 167.368 109.653 167.336 109.621C167.304 109.589 167.26 109.571 167.215 109.571H163.122C163.077 109.571 163.034 109.589 163.002 109.621C162.97 109.653 162.952 109.696 162.952 109.741V110.601H160.394V109.741C160.394 109.696 160.376 109.653 160.344 109.621C160.312 109.589 160.268 109.571 160.223 109.571H156.13C156.085 109.571 156.041 109.589 156.009 109.621C155.977 109.653 155.96 109.696 155.96 109.741V110.601H153.401V109.741C153.401 109.696 153.383 109.653 153.351 109.621C153.319 109.589 153.276 109.571 153.231 109.571H149.138C149.093 109.571 149.049 109.589 149.017 109.621C148.985 109.653 148.967 109.696 148.967 109.741V110.601H146.409V109.741C146.409 109.696 146.391 109.653 146.359 109.621C146.327 109.589 146.284 109.571 146.239 109.571H114.177C114.132 109.571 114.088 109.589 114.056 109.621C114.024 109.653 114.006 109.696 114.006 109.741V110.601H111.448V109.741C111.448 109.696 111.43 109.653 111.398 109.621C111.366 109.589 111.323 109.571 111.278 109.571H107.185C107.14 109.571 107.096 109.589 107.064 109.621C107.032 109.653 107.014 109.696 107.014 109.741V110.601H104.456V109.741C104.456 109.696 104.438 109.653 104.406 109.621C104.374 109.589 104.331 109.571 104.286 109.571H100.193C100.147 109.571 100.104 109.589 100.072 109.621C100.04 109.653 100.022 109.696 100.022 109.741V110.601H97.464V109.741C97.464 109.696 97.4461 109.653 97.4141 109.621C97.3821 109.589 97.3387 109.571 97.2935 109.571H93.2005C93.1553 109.571 93.1119 109.589 93.0799 109.621C93.0479 109.653 93.03 109.696 93.03 109.741V110.601H90.4719V109.741C90.4719 109.696 90.4539 109.653 90.4219 109.621C90.3899 109.589 90.3465 109.571 90.3013 109.571H86.2083C86.1631 109.571 86.1197 109.589 86.0877 109.621C86.0558 109.653 86.0378 109.696 86.0378 109.741V110.601H83.4797V109.741C83.4797 109.696 83.4617 109.653 83.4297 109.621C83.3978 109.589 83.3544 109.571 83.3091 109.571H79.2162C79.1709 109.571 79.1276 109.589 79.0956 109.621C79.0636 109.653 79.0456 109.696 79.0456 109.741V110.601H76.4875V109.741C76.4875 109.696 76.4695 109.653 76.4376 109.621C76.4056 109.589 76.3622 109.571 76.317 109.571H72.224C72.1788 109.571 72.1354 109.589 72.1034 109.621C72.0714 109.653 72.0535 109.696 72.0535 109.741V110.601H64.2086C61.9481 110.601 60.1156 112.434 60.1156 114.694V116.545C60.1156 118.806 61.9481 120.638 64.2086 120.638H200.3C202.561 120.638 204.393 118.806 204.393 116.545V114.694C204.393 112.434 202.561 110.601 200.3 110.601Z",1,"fill-color-19"],["d","M86.1131 103.322C86.3717 103.386 86.6518 103.312 86.8457 103.112L94.5986 95.1027C95.007 94.6845 94.8072 93.9774 94.2376 93.8353L90.6843 92.9494L92.9925 89.2798C93.2324 88.8425 92.9934 88.2924 92.51 88.1719L88.0762 87.0664C87.7067 86.9742 87.3243 87.17 87.1837 87.5241L84.3559 94.6682C84.1868 95.097 84.4334 95.5771 84.8799 95.6884L88.5348 96.5997L85.6221 102.235C85.3946 102.675 85.642 103.204 86.1131 103.322Z",1,"fill-color-21"],["d","M78.125 21.625C78.125 20.5938 77.2812 19.75 76.25 19.75C75.1953 19.75 74.375 20.5938 74.375 21.625C74.375 22.6797 75.1953 23.5 76.25 23.5C77.2812 23.5 78.125 22.6797 78.125 21.625ZM74.5859 12.1094L74.8906 18.4844C74.9141 18.7656 75.1719 19 75.4531 19H77.0234C77.3047 19 77.5625 18.7656 77.5859 18.4844L77.8906 12.1094C77.9141 11.7812 77.6562 11.5 77.3281 11.5H75.1484C74.8203 11.5 74.5625 11.7812 74.5859 12.1094Z","fill","white"],["id","paint0_linear","x1","76.7868","y1","26.5736","x2","76.7868","y2","9","gradientUnits","userSpaceOnUse"],["id","paint1_linear","x1","76.3174","y1","59.0334","x2","76.3174","y2","41.4598","gradientUnits","userSpaceOnUse"],["id","paint2_linear","x1","76.3174","y1","91.4958","x2","76.3174","y2","73.9222","gradientUnits","userSpaceOnUse"],["fxFlex","30","viewBox","0 0 153 200","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/2000/svg",3,"ngClass"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary-lighter"],["d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M122.399 37H32.25V137.616H122.399V37Z",1,"fill-color-10"],["d","M120.908 104.178H33.7394V135.425H120.908V104.178Z","fill","white"],["d","M92.0943 111.589H40.8943V127.601H92.0943V111.589Z",1,"fill-color-primary-darker"],["d","M108.567 127.643C113.069 127.643 116.718 123.993 116.718 119.492C116.718 114.99 113.069 111.341 108.567 111.341C104.066 111.341 100.417 114.99 100.417 119.492C100.417 123.993 104.066 127.643 108.567 127.643Z",1,"fill-color-primary-darker"],["d","M120.908 71.7129H33.7394V102.96H120.908V71.7129Z","fill","white"],["d","M92.0943 79.1244H40.8943V95.1363H92.0943V79.1244Z",1,"fill-color-primary-darker"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.531 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.531 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7394V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6738H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M74.5 112H40.5V128H74.5V112Z",1,"fill-color-17"],["d","M74.5 79H40.5V95H74.5V79Z",1,"fill-color-17"],["d","M91.8943 46.662H40.8943V62.662H91.8943V46.662Z",1,"fill-color-17"],["d","M108.567 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.567 45.778C103.715 45.778 99.7806 49.712 99.7806 54.5648C99.7806 59.4176 103.715 63.3516 108.567 63.3516Z","fill","url(#paint0_linear)"],["d","M108.567 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.567 78.4598C103.715 78.4598 99.7806 82.3938 99.7806 87.2466C99.7806 92.0994 103.715 96.0334 108.567 96.0334Z",1,"fill-color-17"],["d","M108.567 128.496C113.42 128.496 117.354 124.562 117.354 119.709C117.354 114.856 113.42 110.922 108.567 110.922C103.715 110.922 99.7806 114.856 99.7806 119.709C99.7806 124.562 103.715 128.496 108.567 128.496Z",1,"fill-color-17"],["d","M108.401 62.3014C112.902 62.3014 116.551 58.6522 116.551 54.1507C116.551 49.6492 112.902 46 108.401 46C103.899 46 100.25 49.6492 100.25 54.1507C100.25 58.6522 103.899 62.3014 108.401 62.3014Z",1,"fill-color-17"],["d","M110.625 57.625C110.625 56.5938 109.781 55.75 108.75 55.75C107.695 55.75 106.875 56.5938 106.875 57.625C106.875 58.6797 107.695 59.5 108.75 59.5C109.781 59.5 110.625 58.6797 110.625 57.625ZM107.086 48.1094L107.391 54.4844C107.414 54.7656 107.672 55 107.953 55H109.523C109.805 55 110.062 54.7656 110.086 54.4844L110.391 48.1094C110.414 47.7812 110.156 47.5 109.828 47.5H107.648C107.32 47.5 107.062 47.7812 107.086 48.1094Z","fill","white"],["d","M141.711 111C141.008 111 140.656 111.859 141.164 112.367L146.164 117.367C146.477 117.68 146.984 117.68 147.297 117.367L152.297 112.367C152.805 111.859 152.453 111 151.75 111H141.711Z",1,"fill-color-17"],["d","M84.25 185.461C84.25 184.758 83.3906 184.406 82.8828 184.914L77.8828 189.914C77.5703 190.227 77.5703 190.734 77.8828 191.047L82.8828 196.047C83.3906 196.555 84.25 196.203 84.25 195.5V185.461Z",1,"fill-color-primary-darker"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-primary-darker"],["d","M133.75 174C142.31 174 149.25 167.06 149.25 158.5C149.25 149.94 142.31 143 133.75 143C125.19 143 118.25 149.94 118.25 158.5C118.25 167.06 125.19 174 133.75 174Z",1,"fill-color-25"],["d","M129.872 169.64C130.214 169.726 130.584 169.628 130.84 169.363L141.093 158.771C141.633 158.218 141.369 157.283 140.616 157.095L135.917 155.924L138.969 151.071C139.286 150.493 138.97 149.765 138.331 149.606L132.468 148.144C131.979 148.022 131.473 148.281 131.287 148.749L127.548 158.197C127.324 158.764 127.65 159.399 128.241 159.546L133.074 160.751L129.222 168.203C128.921 168.785 129.249 169.485 129.872 169.64Z",1,"fill-color-21"],["d","M19.75 174C28.3104 174 35.25 167.06 35.25 158.5C35.25 149.94 28.3104 143 19.75 143C11.1896 143 4.25 149.94 4.25 158.5C4.25 167.06 11.1896 174 19.75 174Z",1,"fill-color-25"],["d","M19.3208 167.769C23.2973 167.769 26.5208 164.545 26.5208 160.569C26.5208 156.592 23.2973 153.369 19.3208 153.369C15.3444 153.369 12.1208 156.592 12.1208 160.569C12.1208 164.545 15.3444 167.769 19.3208 167.769Z",1,"fill-color-22"],["d","M13.7656 153.188L12.4676 152.716C12.4676 152.716 15.1815 150.002 18.9572 150.238L17.8953 149.177C17.8953 149.177 20.4911 148.233 22.851 150.71C24.0915 152.013 25.5268 153.544 26.4216 155.269H27.8116L27.2314 156.429L29.2619 157.589L27.1778 157.381C27.3752 158.383 27.3073 159.418 26.9807 160.386L26.5087 161.684C26.5087 161.684 24.6208 157.908 24.6208 157.436V158.616C24.6208 158.616 23.3229 157.554 23.3229 156.846L22.615 157.672L22.261 156.374L17.8953 157.672L18.6032 156.61L15.8894 156.964L16.9514 155.666C16.9514 155.666 13.8836 157.2 13.7656 158.498C13.6476 159.796 12.1137 161.448 12.1137 161.448L11.4058 160.268C11.4058 160.268 10.3438 154.958 13.7656 153.188Z",1,"fill-color-21"],["d","M76.75 31C68.1896 31 61.25 24.0604 61.25 15.5C61.25 6.93959 68.1896 0 76.75 0C85.3104 0 92.25 6.93959 92.25 15.5C92.25 24.0604 85.3104 31 76.75 31Z",1,"fill-color-25"],["d","M77.1792 24.7687C73.2027 24.7687 69.9792 21.5452 69.9792 17.5687C69.9792 13.5923 73.2027 10.3687 77.1792 10.3687C81.1556 10.3687 84.3792 13.5923 84.3792 17.5687C84.3792 21.5452 81.1556 24.7687 77.1792 24.7687Z",1,"fill-color-22"],["d","M82.7344 10.1883L84.0324 9.71628C84.0324 9.71628 81.3185 7.00246 77.5428 7.23845L78.6047 6.17651C78.6047 6.17651 76.0089 5.23258 73.649 7.71041C72.4085 9.01295 70.9732 10.544 70.0784 12.2687H68.6884L69.2686 13.429L67.2381 14.5893L69.3222 14.3808C69.1248 15.3825 69.1927 16.4184 69.5193 17.3858L69.9913 18.6837C69.9913 18.6837 71.8792 14.9079 71.8792 14.4359V15.6159C71.8792 15.6159 73.1771 14.5539 73.1771 13.846L73.885 14.6719L74.239 13.374L78.6047 14.6719L77.8968 13.61L80.6106 13.964L79.5486 12.6661C79.5486 12.6661 82.6164 14.2 82.7344 15.4979C82.8524 16.7958 84.3863 18.4477 84.3863 18.4477L85.0942 17.2678C85.0942 17.2678 86.1562 11.9581 82.7344 10.1883Z",1,"fill-color-21"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.786 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.542 141.365 153.936Z",1,"fill-color-21"],["d","M140.968 160.376C141.521 160.376 141.968 159.928 141.968 159.376C141.968 158.823 141.521 158.376 140.968 158.376C140.416 158.376 139.968 158.823 139.968 159.376C139.968 159.928 140.416 160.376 140.968 160.376Z",1,"fill-color-22"],["d","M129.168 160.376C129.721 160.376 130.168 159.928 130.168 159.376C130.168 158.823 129.721 158.376 129.168 158.376C128.616 158.376 128.168 158.823 128.168 159.376C128.168 159.928 128.616 160.376 129.168 160.376Z",1,"fill-color-22"],["d","M135.068 165.276C138.272 165.276 140.868 162.679 140.868 159.476C140.868 156.272 138.272 153.676 135.068 153.676C131.865 153.676 129.268 156.272 129.268 159.476C129.268 162.679 131.865 165.276 135.068 165.276Z",1,"fill-color-22"],["d","M140.384 153.575L136.049 151.304L130.062 152.233L128.824 157.704L131.907 157.585L132.768 155.576V157.552L134.191 157.498L135.017 154.298L135.533 157.704L140.591 157.601L140.384 153.575Z",1,"fill-color-21"],["d","M79.4007 199.301C83.9022 199.301 87.5514 195.652 87.5514 191.151C87.5514 186.649 83.9022 183 79.4007 183C74.8992 183 71.25 186.649 71.25 191.151C71.25 195.652 74.8992 199.301 79.4007 199.301Z",1,"fill-color-17"],["d","M82.9375 189.25H80.2188L81.2266 186.227C81.3203 185.852 81.0391 185.5 80.6875 185.5H77.3125C77.0313 185.5 76.7735 185.711 76.75 185.992L76 191.617C75.9531 191.969 76.211 192.25 76.5625 192.25H79.3281L78.25 196.82C78.1797 197.172 78.4375 197.5 78.7891 197.5C79 197.5 79.1875 197.406 79.2813 197.219L83.4063 190.094C83.6406 189.742 83.3594 189.25 82.9375 189.25Z","fill","white"],["d","M106.555 91.8125C106.789 92.0469 107.188 92.0469 107.422 91.8125L114.312 84.9219C114.547 84.6875 114.547 84.2891 114.312 84.0547L113.469 83.2109C113.234 82.9766 112.859 82.9766 112.625 83.2109L107 88.8359L104.352 86.2109C104.117 85.9766 103.742 85.9766 103.508 86.2109L102.664 87.0547C102.43 87.2891 102.43 87.6875 102.664 87.9219L106.555 91.8125Z","fill","white"],["d","M106.555 124.812C106.789 125.047 107.188 125.047 107.422 124.812L114.312 117.922C114.547 117.688 114.547 117.289 114.312 117.055L113.469 116.211C113.234 115.977 112.859 115.977 112.625 116.211L107 121.836L104.352 119.211C104.117 118.977 103.742 118.977 103.508 119.211L102.664 120.055C102.43 120.289 102.43 120.688 102.664 120.922L106.555 124.812Z","fill","white"],["id","paint0_linear","x1","108.567","y1","63.3516","x2","108.567","y2","45.778","gradientUnits","userSpaceOnUse"],["fill-rule","evenodd","clip-rule","evenodd","d","M76.25 191C114.91 191 146.25 158.541 146.25 118.5C146.25 78.4594 114.91 46 76.25 46C37.5901 46 6.25 78.4594 6.25 118.5C6.25 158.541 37.5901 191 76.25 191Z","stroke-width","2","stroke-linecap","round","stroke-dasharray","7 7",1,"fill-color-0","stroke-color-primary"],["d","M120.908 104.177H33.7393V135.425H120.908V104.177Z","fill","white"],["d","M120.908 71.7129H33.7393V102.96H120.908V71.7129Z","fill","white"],["d","M108.567 95.1801C113.069 95.1801 116.718 91.5309 116.718 87.0294C116.718 82.5279 113.069 78.8787 108.567 78.8787C104.066 78.8787 100.417 82.5279 100.417 87.0294C100.417 91.5309 104.066 95.1801 108.567 95.1801Z",1,"fill-color-primary-darker"],["d","M120.908 39.2482H33.7393V70.4955H120.908V39.2482Z","fill","white"],["d","M92.0943 46.662H40.8943V62.6739H92.0943V46.662Z",1,"fill-color-primary-darker"],["d","M76 112H41V128H76V112Z",1,"fill-color-17"],["d","M70 79H41V95H70V79Z",1,"fill-color-17"],["d","M70 47H41V63H70V47Z",1,"fill-color-17"],["d","M108.568 63.3516C113.42 63.3516 117.354 59.4176 117.354 54.5648C117.354 49.712 113.42 45.778 108.568 45.778C103.715 45.778 99.7808 49.712 99.7808 54.5648C99.7808 59.4176 103.715 63.3516 108.568 63.3516Z","fill","url(#paint0_linear)"],["d","M108.568 96.0334C113.42 96.0334 117.354 92.0994 117.354 87.2466C117.354 82.3938 113.42 78.4598 108.568 78.4598C103.715 78.4598 99.7808 82.3938 99.7808 87.2466C99.7808 92.0994 103.715 96.0334 108.568 96.0334Z",1,"fill-color-17"],["d","M108.568 129.496C113.42 129.496 117.354 125.562 117.354 120.709C117.354 115.856 113.42 111.922 108.568 111.922C103.715 111.922 99.7808 115.856 99.7808 120.709C99.7808 125.562 103.715 129.496 108.568 129.496Z",1,"fill-color-17"],["d","M106.805 91.8125C107.039 92.0469 107.438 92.0469 107.672 91.8125L114.562 84.9219C114.797 84.6875 114.797 84.2891 114.562 84.0547L113.719 83.2109C113.484 82.9766 113.109 82.9766 112.875 83.2109L107.25 88.8359L104.602 86.2109C104.367 85.9766 103.992 85.9766 103.758 86.2109L102.914 87.0547C102.68 87.2891 102.68 87.6875 102.914 87.9219L106.805 91.8125Z","fill","white"],["d","M106.805 58.8125C107.039 59.0469 107.438 59.0469 107.672 58.8125L114.562 51.9219C114.797 51.6875 114.797 51.2891 114.562 51.0547L113.719 50.2109C113.484 49.9766 113.109 49.9766 112.875 50.2109L107.25 55.8359L104.602 53.2109C104.367 52.9766 103.992 52.9766 103.758 53.2109L102.914 54.0547C102.68 54.2891 102.68 54.6875 102.914 54.9219L106.805 58.8125Z","fill","white"],["d","M11.7891 120C12.4922 120 12.8437 119.141 12.3359 118.633L7.33593 113.633C7.02343 113.32 6.51562 113.32 6.20312 113.633L1.20312 118.633C0.695303 119.141 1.04687 120 1.74999 120H11.7891Z",1,"fill-color-17"],["d","M77.1792 24.7688C73.2027 24.7688 69.9792 21.5452 69.9792 17.5688C69.9792 13.5923 73.2027 10.3688 77.1792 10.3688C81.1556 10.3688 84.3792 13.5923 84.3792 17.5688C84.3792 21.5452 81.1556 24.7688 77.1792 24.7688Z",1,"fill-color-22"],["d","M141.365 153.936C139.147 150.189 134.759 150.014 134.759 150.014C134.759 150.014 130.483 149.467 127.74 155.175C125.183 160.495 121.655 165.632 127.172 166.877L128.168 163.776L128.785 167.108C129.571 167.165 130.359 167.178 131.146 167.149C137.055 166.958 142.681 167.204 142.5 165.084C142.259 162.266 143.499 157.543 141.365 153.936Z",1,"fill-color-21"],["d","M82.9374 189.25H80.2186L81.2265 186.227C81.3202 185.852 81.039 185.5 80.6874 185.5H77.3124C77.0311 185.5 76.7733 185.711 76.7499 185.992L75.9999 191.617C75.953 191.969 76.2108 192.25 76.5624 192.25H79.328L78.2499 196.82C78.1796 197.172 78.4374 197.5 78.789 197.5C78.9999 197.5 79.1874 197.406 79.2811 197.219L83.4061 190.094C83.6405 189.742 83.3593 189.25 82.9374 189.25Z","fill","white"],["id","paint0_linear","x1","108.568","y1","63.3516","x2","108.568","y2","45.778","gradientUnits","userSpaceOnUse"]],template:function(a,i){if(1&a&&e.DNE(0,Fl,1,0,"ng-container",5)(1,xl,47,5,"ng-template",null,0,e.C5r)(3,vl,96,5,"ng-template",null,1,e.C5r)(5,Tl,68,5,"ng-template",null,2,e.C5r)(7,Sl,53,5,"ng-template",null,3,e.C5r)(9,kl,52,5,"ng-template",null,4,e.C5r),2&a){const o=e.sdS(2),r=e.sdS(4),p=e.sdS(6),F=e.sdS(8),C=e.sdS(10);e.Y8G("ngTemplateOutlet",1===i.stepNumber?o:2===i.stepNumber?r:3===i.stepNumber?p:4===i.stepNumber?F:C)}},dependencies:[d.YU,d.T3,h.DJ,h.sA,h.UI,L.PW,T.Lc,T.dh],styles:["svg.small-svg[_ngcontent-%COMP%]{height:10%;min-height:10%;max-width:50%;margin:auto}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:50%;margin:auto}"],data:{animation:[bl.k]}})}return n})();const El=["stepper"],Il=()=>[1,2,3,4,5],Ll=(n,s)=>({"dot-primary":n,"dot-primary-lighter":s});function wl(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.inputFormLabel)}}function jl(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function Gl(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount must be a positive number."),e.k0s())}function Dl(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI("Amount must be less than or equal to ",null==t.selChannel?null:t.selChannel.local_balance,".")}}function Nl(n,s){if(1&n&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.Lme("",t.remote_alias," - ",t.chan_id,"")}}function Pl(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer is required."),e.k0s())}function $l(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Receive from Peer not found in the list."),e.k0s())}function Al(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.feeFormLabel)}}function Ml(n,s){if(1&n&&(e.j41(0,"mat-option",54),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.SpI(" ",t.name," ")}}function Bl(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI("",t.feeFormGroup.controls.selFeeLimitType.value?t.feeFormGroup.controls.selFeeLimitType.value.placeholder:t.feeLimitTypes[0].placeholder," is required.")}}function Ol(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.SpI("",t.feeFormGroup.controls.selFeeLimitType.value?t.feeFormGroup.controls.selFeeLimitType.value.placeholder:t.feeLimitTypes[0].placeholder," must be a positive number.")}}function Vl(n,s){1&n&&e.EFF(0,"Invoice/Payment")}function Yl(n,s){1&n&&(e.j41(0,"mat-icon",55),e.EFF(1,"check"),e.k0s())}function Xl(n,s){1&n&&e.nrm(0,"mat-progress-bar",56)}function Ul(n,s){if(1&n&&(e.j41(0,"mat-icon",55),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(null!=t.paymentStatus&&t.paymentStatus.error?"close":"check")}}function Hl(n,s){1&n&&e.nrm(0,"div",7)}function ql(n,s){1&n&&e.nrm(0,"mat-progress-bar",56)}function zl(n,s){if(1&n&&(e.j41(0,"h4",57),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.paymentStatus&&t.paymentStatus.payment_hash?"Rebalance Successful.":"Rebalance Failed.")}}function Jl(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",58),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onRestart())}),e.EFF(1,"Start Again"),e.k0s()}}function Wl(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",7)(1,"mat-card-header",8)(2,"div",9)(3,"div",10)(4,"span",11),e.EFF(5,"Channel Rebalance"),e.k0s()(),e.j41(6,"div",12)(7,"button",13),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.showInfo())}),e.EFF(8,"?"),e.k0s(),e.j41(9,"button",14),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onClose())}),e.EFF(10,"X"),e.k0s()()()(),e.j41(11,"mat-card-content",15)(12,"div",7)(13,"div",16)(14,"div",17),e.nrm(15,"fa-icon",18),e.j41(16,"span"),e.EFF(17,"Circular Rebalance is a payment you make to *yourself* to affect a relative change in the balances of two channels. This is accomplished by sending payment out from the selected channel and receiving it back on the channel with the selected peer. Please note, you will be paying routing fee to balance the channels in this manner."),e.k0s()()(),e.j41(18,"div",19)(19,"p",20)(20,"strong"),e.EFF(21,"Channel Peer:\xa0"),e.k0s(),e.EFF(22),e.nI1(23,"titlecase"),e.k0s(),e.j41(24,"p",20)(25,"strong"),e.EFF(26,"Channel ID:\xa0"),e.k0s(),e.EFF(27),e.k0s()(),e.j41(28,"mat-vertical-stepper",21,3),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.stepSelectionChanged(i))}),e.j41(30,"mat-step",22)(31,"form",23),e.DNE(32,wl,1,1,"ng-template",24),e.j41(33,"div",25)(34,"mat-form-field",26)(35,"mat-label"),e.EFF(36,"Amount"),e.k0s(),e.nrm(37,"input",27),e.j41(38,"mat-hint"),e.EFF(39),e.k0s(),e.j41(40,"span",28),e.EFF(41,"Sats"),e.k0s(),e.DNE(42,jl,2,0,"mat-error",29)(43,Gl,2,0,"mat-error",29)(44,Dl,2,1,"mat-error",29),e.k0s(),e.j41(45,"mat-form-field",30)(46,"mat-label"),e.EFF(47,"Receive from Peer"),e.k0s(),e.j41(48,"input",31),e.bIt("change",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectedPeerChanged())}),e.k0s(),e.j41(49,"mat-autocomplete",32,4),e.bIt("optionSelected",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectedPeerChanged())}),e.DNE(51,Nl,2,3,"mat-option",33),e.nI1(52,"async"),e.k0s(),e.DNE(53,Pl,2,0,"mat-error",29)(54,$l,2,0,"mat-error",29),e.k0s()(),e.j41(55,"div",34)(56,"button",35),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSelectFee())}),e.EFF(57,"Select Fee"),e.k0s()()()(),e.j41(58,"mat-step",22)(59,"form",23),e.DNE(60,Al,1,1,"ng-template",36),e.j41(61,"div",25)(62,"div",25)(63,"mat-form-field",30)(64,"mat-label"),e.EFF(65,"Fee Limits"),e.k0s(),e.j41(66,"mat-select",37),e.DNE(67,Ml,2,2,"mat-option",33),e.k0s()(),e.j41(68,"mat-form-field",26)(69,"mat-label"),e.EFF(70),e.k0s(),e.nrm(71,"input",38),e.DNE(72,Bl,2,1,"mat-error",29)(73,Ol,2,1,"mat-error",29),e.k0s()()(),e.j41(74,"div",34)(75,"button",39),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onRebalance())}),e.EFF(76,"Rebalance"),e.k0s()()()(),e.j41(77,"mat-step",40)(78,"form",23),e.DNE(79,Vl,1,0,"ng-template",24),e.j41(80,"div",41)(81,"mat-expansion-panel",42)(82,"mat-expansion-panel-header")(83,"mat-panel-title")(84,"span",43),e.EFF(85),e.DNE(86,Yl,2,0,"mat-icon",44),e.k0s()()(),e.j41(87,"div",7)(88,"span",45),e.EFF(89),e.k0s()()(),e.DNE(90,Xl,1,0,"mat-progress-bar",46),e.j41(91,"mat-expansion-panel",47)(92,"mat-expansion-panel-header")(93,"mat-panel-title")(94,"span",43),e.EFF(95),e.DNE(96,Ul,2,1,"mat-icon",44),e.k0s()()(),e.DNE(97,Hl,1,0,"div",48),e.k0s(),e.DNE(98,ql,1,0,"mat-progress-bar",46),e.k0s(),e.DNE(99,zl,2,1,"h4",49),e.j41(100,"div",50),e.DNE(101,Jl,2,0,"button",51),e.k0s()()()(),e.j41(102,"div",52)(103,"button",53),e.EFF(104,"Close"),e.k0s()()()()()}if(2&n){const t=e.sdS(50),a=e.XpG(),i=e.sdS(2);e.Y8G("@opacityAnimation",void 0),e.R7$(15),e.Y8G("icon",a.faInfoCircle),e.R7$(7),e.JRh(e.bMT(23,42,a.selChannel.remote_alias)),e.R7$(5),e.JRh(a.selChannel.chan_id),e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",a.inputFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.inputFormGroup),e.R7$(6),e.Y8G("step",100),e.R7$(2),e.Lme("(Local Bal: ",null==a.selChannel?null:a.selChannel.local_balance,", Remaining: ",(null==a.selChannel?null:a.selChannel.local_balance)-(a.inputFormGroup.controls.rebalanceAmount.value?a.inputFormGroup.controls.rebalanceAmount.value:0),")"),e.R7$(3),e.Y8G("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.required),e.R7$(),e.Y8G("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.min),e.R7$(),e.Y8G("ngIf",null==a.inputFormGroup.controls.rebalanceAmount.errors?null:a.inputFormGroup.controls.rebalanceAmount.errors.max),e.R7$(4),e.Y8G("matAutocomplete",t),e.R7$(),e.Y8G("displayWith",a.displayFn),e.R7$(2),e.Y8G("ngForOf",e.bMT(52,44,a.filteredActiveChannels)),e.R7$(2),e.Y8G("ngIf",null==a.inputFormGroup.controls.selRebalancePeer.errors?null:a.inputFormGroup.controls.selRebalancePeer.errors.required),e.R7$(),e.Y8G("ngIf",null==a.inputFormGroup.controls.selRebalancePeer.errors?null:a.inputFormGroup.controls.selRebalancePeer.errors.notfound),e.R7$(4),e.Y8G("stepControl",a.feeFormGroup)("editable",a.flgEditable),e.R7$(),e.Y8G("formGroup",a.feeFormGroup),e.R7$(8),e.Y8G("ngForOf",a.feeLimitTypes),e.R7$(3),e.JRh(a.feeFormGroup.controls.selFeeLimitType.value?a.feeFormGroup.controls.selFeeLimitType.value.placeholder:a.feeLimitTypes[0].placeholder),e.R7$(),e.Y8G("step",1),e.R7$(),e.Y8G("ngIf",null==a.feeFormGroup.controls.feeLimit.errors?null:a.feeFormGroup.controls.feeLimit.errors.required),e.R7$(),e.Y8G("ngIf",null==a.feeFormGroup.controls.feeLimit.errors?null:a.feeFormGroup.controls.feeLimit.errors.min),e.R7$(4),e.Y8G("stepControl",a.statusFormGroup),e.R7$(),e.Y8G("formGroup",a.statusFormGroup),e.R7$(7),e.JRh(a.flgInvoiceGenerated?a.flgReusingInvoice?"Invoice re-used":"Invoice generated":"Generating invoice..."),e.R7$(),e.Y8G("ngIf",a.flgInvoiceGenerated),e.R7$(3),e.JRh(a.paymentRequest),e.R7$(),e.Y8G("ngIf",!a.flgInvoiceGenerated),e.R7$(),e.Y8G("expanded",(a.flgInvoiceGenerated||a.flgReusingInvoice)&&a.flgPaymentSent),e.R7$(4),e.JRh(a.flgInvoiceGenerated||a.flgPaymentSent?a.flgPaymentSent?null!=a.paymentStatus&&a.paymentStatus.error?"Payment failed":"Payment successful":"Processing payment...":"Payment waiting for Invoice"),e.R7$(),e.Y8G("ngIf",a.flgPaymentSent),e.R7$(),e.Y8G("ngIf",!a.paymentStatus)("ngIfElse",i),e.R7$(),e.Y8G("ngIf",a.flgInvoiceGenerated&&!a.flgPaymentSent),e.R7$(),e.Y8G("ngIf",a.flgInvoiceGenerated&&a.flgPaymentSent),e.R7$(2),e.Y8G("ngIf",a.paymentStatus&&a.paymentStatus.error),e.R7$(2),e.Y8G("mat-dialog-close",!1)}}function Ql(n,s){1&n&&e.eu8(0)}function Zl(n,s){if(1&n&&e.DNE(0,Ql,1,0,"ng-container",59),2&n){const t=e.XpG(),a=e.sdS(4),i=e.sdS(6);e.Y8G("ngTemplateOutlet",t.paymentStatus.error?a:i)}}function Kl(n,s){if(1&n&&(e.j41(0,"div",7)(1,"span",45),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.SpI("Error: ",t.paymentStatus.error,"")}}function er(n,s){if(1&n&&(e.j41(0,"div",7)(1,"div",60)(2,"div",61)(3,"h4",62),e.EFF(4,"Payment Hash"),e.k0s(),e.j41(5,"span",45),e.EFF(6),e.k0s()()(),e.nrm(7,"mat-divider",63),e.j41(8,"div",60)(9,"div",64)(10,"h4",62),e.EFF(11),e.k0s(),e.j41(12,"span",45),e.EFF(13),e.k0s()(),e.j41(14,"div",64)(15,"h4",62),e.EFF(16,"Number of Hops"),e.k0s(),e.j41(17,"span",45),e.EFF(18),e.k0s()()()()),2&n){const t=e.XpG();e.R7$(6),e.JRh(t.paymentStatus.payment_hash),e.R7$(5),e.SpI("Total Fees (",t.paymentStatus.payment_route.total_fees_msat?"mSats":"Sats",")"),e.R7$(2),e.JRh(t.paymentStatus.payment_route.total_fees_msat?t.paymentStatus.payment_route.total_fees_msat:t.paymentStatus.payment_route.total_fees?t.paymentStatus.payment_route.total_fees:0),e.R7$(5),e.JRh(t.paymentStatus&&t.paymentStatus.payment_route&&t.paymentStatus.payment_route.hops&&t.paymentStatus.payment_route.hops.length?t.paymentStatus.payment_route.hops.length:0)}}function tr(n,s){if(1&n){const t=e.RV6();e.j41(0,"span",80),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onStepChanged(i))}),e.nrm(1,"p",81),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngClass",e.l_i(1,Ll,a.stepNumber===t,a.stepNumber!==t))}}function nr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",82),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onStepChanged(4))}),e.EFF(1,"Back"),e.k0s()}}function ir(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",83),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return i.flgShowInfo=!1,e.Njj(i.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function ar(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",84),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return i.flgShowInfo=!1,e.Njj(i.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function sr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",85),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onStepChanged(i.stepNumber-1))}),e.EFF(1,"Back"),e.k0s()}}function or(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",86),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onStepChanged(i.stepNumber+1))}),e.EFF(1,"Next"),e.k0s()}}function lr(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",65)(1,"div",66)(2,"mat-card-header",67)(3,"div",68),e.nrm(4,"span",11),e.k0s(),e.j41(5,"div",69)(6,"button",14),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return i.flgShowInfo=!1,e.Njj(i.stepNumber=1)}),e.EFF(7,"X"),e.k0s()()(),e.j41(8,"mat-card-content",70)(9,"rtl-channel-rebalance-infographics",71),e.mxI("stepNumberChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.stepNumber,i)||(o.stepNumber=i),e.Njj(i)}),e.k0s()(),e.j41(10,"div",72),e.DNE(11,tr,2,4,"span",73),e.k0s(),e.j41(12,"div",74),e.DNE(13,nr,2,0,"button",75)(14,ir,2,0,"button",76)(15,ar,2,0,"button",77)(16,sr,2,0,"button",78)(17,or,2,0,"button",79),e.k0s()()()}if(2&n){const t=e.XpG();e.Y8G("@opacityAnimation",void 0),e.R7$(9),e.Y8G("animationDirection",t.animationDirection),e.R50("stepNumber",t.stepNumber),e.R7$(2),e.Y8G("ngForOf",e.lJ4(9,Il)),e.R7$(2),e.Y8G("ngIf",5===t.stepNumber),e.R7$(),e.Y8G("ngIf",5===t.stepNumber),e.R7$(),e.Y8G("ngIf",t.stepNumber<5),e.R7$(),e.Y8G("ngIf",t.stepNumber>1&&t.stepNumber<5),e.R7$(),e.Y8G("ngIf",t.stepNumber<5)}}let rr=(()=>{class n{constructor(t,a,i,o,r,p,F,C){this.dialogRef=t,this.data=a,this.logger=i,this.store=o,this.actions=r,this.formBuilder=p,this.decimalPipe=F,this.commonService=C,this.faInfoCircle=b.iW_,this.invoices={},this.selChannel={},this.activeChannels=[],this.feeLimitTypes=[],this.queryRoute={},this.paymentRequest="",this.paymentStatus=null,this.flgReusingInvoice=!1,this.flgInvoiceGenerated=!1,this.flgPaymentSent=!1,this.inputFormLabel="Amount to rebalance",this.feeFormLabel="Select rebalance fee",this.flgEditable=!0,this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=l.f7,this.animationDirection="forward",this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize();let t="",a="";this.selChannel=this.data.message?.selChannel||{},this.activeChannels=this.data.message?.channels?.filter(i=>i.active&&i.chan_id!==this.selChannel.chan_id&&i.remote_balance&&i.remote_balance>0)||[],this.activeChannels=this.activeChannels.sort((i,o)=>(t=i.remote_alias?i.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"",a=o.remote_alias?o.remote_alias.toLowerCase():i.chan_id?i.chan_id.toLowerCase():"",ta?1:0)),l.nv.forEach((i,o)=>{o>0&&this.feeLimitTypes.push(i)}),this.inputFormGroup=this.formBuilder.group({hiddenAmount:["",[m.k0.required]],rebalanceAmount:["",[m.k0.required,m.k0.min(1),m.k0.max(this.selChannel.local_balance||0)]],selRebalancePeer:[null,m.k0.required]}),this.feeFormGroup=this.formBuilder.group({selFeeLimitType:[this.feeLimitTypes[0],m.k0.required],feeLimit:["",[m.k0.required,m.k0.min(0)]],hiddenFeeLimit:["",[m.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(y.rN).pipe((0,_.Q)(this.unSubs[0])).subscribe(i=>{this.invoices=i.listInvoices,this.logger.info(i)}),this.actions.pipe((0,_.Q)(this.unSubs[1]),(0,Y.p)(i=>i.type===l.QP.SET_QUERY_ROUTES_LND||i.type===l.QP.SEND_PAYMENT_STATUS_LND||i.type===l.QP.NEWLY_SAVED_INVOICE_LND)).subscribe(i=>{i.type===l.QP.SET_QUERY_ROUTES_LND&&(this.queryRoute=i.payload),i.type===l.QP.SEND_PAYMENT_STATUS_LND&&(this.logger.info(i.payload),this.flgPaymentSent=!0,this.paymentStatus=i.payload,this.flgEditable=!0),i.type===l.QP.NEWLY_SAVED_INVOICE_LND&&(this.logger.info(i.payload),this.flgInvoiceGenerated=!0,this.sendPayment(i.payload.paymentRequest))}),this.inputFormGroup.get("rebalanceAmount")?.valueChanges.pipe((0,_.Q)(this.unSubs[2]),(0,ke.Z)(0)).subscribe(i=>{this.inputFormGroup.controls.selRebalancePeer.setValue(""),this.inputFormGroup.controls.selRebalancePeer.setErrors(null),this.filteredActiveChannels=(0,Ie.of)(i?this.filterActiveChannels():this.activeChannels.slice())}),this.inputFormGroup.get("selRebalancePeer")?.valueChanges.pipe((0,_.Q)(this.unSubs[3]),(0,ke.Z)("")).subscribe(i=>{"string"==typeof i&&(this.filteredActiveChannels=(0,Ie.of)(this.filterActiveChannels()))})}onSelectFee(){return this.inputFormGroup.controls.selRebalancePeer.value&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value&&this.onSelectedPeerChanged(),this.inputFormGroup.controls.selRebalancePeer.value&&"string"!=typeof this.inputFormGroup.controls.selRebalancePeer.value?!this.inputFormGroup.controls.rebalanceAmount.value||(0===this.stepper.selectedIndex&&(this.inputFormGroup.controls.hiddenAmount.setValue(this.inputFormGroup.controls.rebalanceAmount.value),this.stepper.next()),this.queryRoute=null,this.feeFormGroup.reset(),void this.feeFormGroup.controls.selFeeLimitType.setValue(this.feeLimitTypes[0])):(this.inputFormGroup.controls.selRebalancePeer.setErrors({required:!0}),!0)}stepSelectionChanged(t){switch(t.selectedIndex){case 0:default:this.inputFormLabel="Amount to rebalance",this.feeFormLabel="Select rebalance fee";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?this.inputFormGroup.controls.selRebalancePeer.value.remote_alias:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0,15)+"..."):"Amount to rebalance",this.feeFormLabel="Select rebalance fee";break;case 2:this.inputFormLabel=this.inputFormGroup.controls.rebalanceAmount.value||this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?"Rebalancing Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.rebalanceAmount.value?this.inputFormGroup.controls.rebalanceAmount.value:0)+" Sats | Peer: "+(this.inputFormGroup.controls.selRebalancePeer.value.remote_alias?this.inputFormGroup.controls.selRebalancePeer.value.remote_alias:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey.substring(0,15)+"..."):"Amount to rebalance",this.feeFormLabel=this.queryRoute&&this.queryRoute.routes&&this.queryRoute.routes.length>0&&(this.queryRoute.routes[0].total_fees_msat||this.queryRoute.routes[0].hops&&this.queryRoute.routes[0].hops.length)?this.feeFormGroup.controls.selFeeLimitType.value.placeholder+": "+this.decimalPipe.transform(this.feeFormGroup.controls.feeLimit.value?this.feeFormGroup.controls.feeLimit.value:0)+" | Hops: "+this.queryRoute.routes[0].hops?.length:"Select rebalance fee"}t.selectedIndex+this.selChannel.local_balance||!this.feeFormGroup.controls.feeLimit.value||this.feeFormGroup.controls.feeLimit.value<0||!this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey)return!0;this.feeFormGroup.controls.hiddenFeeLimit.setValue(this.feeFormGroup.controls.feeLimit.value),this.stepper.next(),this.flgEditable=!1,this.paymentRequest="",this.paymentStatus=null,this.flgReusingInvoice=!1,this.flgInvoiceGenerated=!1,this.flgPaymentSent=!1;const t=this.findUnsettledInvoice();t?(this.flgReusingInvoice=!0,this.sendPayment(t.payment_request||"")):this.store.dispatch((0,v.VK)({payload:{uiMessage:l.MZ.NO_SPINNER,memo:"Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats",value:this.inputFormGroup.controls.rebalanceAmount.value,private:!1,expiry:l.It,is_amp:!1,pageSize:l.md,openModal:!1}}))}findUnsettledInvoice(){return this.invoices.invoices?.find(t=>(!t.settle_date||0==+t.settle_date)&&t.memo==="Local-Rebalance-"+this.inputFormGroup.controls.rebalanceAmount.value+"-Sats"&&"CANCELED"!==t.state)}sendPayment(t){this.flgInvoiceGenerated=!0,this.paymentRequest=t,this.store.dispatch((0,v.Fd)("percent"===this.feeFormGroup.controls.selFeeLimitType.value.id&&+this.feeFormGroup.controls.feeLimit.value%1!=0?{payload:{uiMessage:l.MZ.NO_SPINNER,paymentReq:t,outgoingChannel:this.selChannel,feeLimitType:"fixed",feeLimit:Math.ceil(+this.feeFormGroup.controls.feeLimit.value*+this.inputFormGroup.controls.rebalanceAmount.value/100),allowSelfPayment:!0,lastHopPubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0}}:{payload:{uiMessage:l.MZ.NO_SPINNER,paymentReq:t,outgoingChannel:this.selChannel,feeLimitType:this.feeFormGroup.controls.selFeeLimitType.value.id,feeLimit:this.feeFormGroup.controls.feeLimit.value,allowSelfPayment:!0,lastHopPubkey:this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey,fromDialog:!0}}))}filterActiveChannels(){return this.activeChannels?.filter(t=>t.remote_balance&&t.remote_balance>=this.inputFormGroup.controls.rebalanceAmount.value&&t.chan_id!==this.selChannel.chan_id&&(0===t.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")||0===t.chan_id?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():"")))}onSelectedPeerChanged(){if(this.inputFormGroup.controls.selRebalancePeer.value&&this.inputFormGroup.controls.selRebalancePeer.value.length>0&&"string"==typeof this.inputFormGroup.controls.selRebalancePeer.value){const t=this.activeChannels?.filter(a=>a.remote_alias?.length===this.inputFormGroup.controls.selRebalancePeer.value.length&&0===a.remote_alias?.toLowerCase().indexOf(this.inputFormGroup.controls.selRebalancePeer.value?this.inputFormGroup.controls.selRebalancePeer.value.toLowerCase():""));t&&t.length>0?(this.inputFormGroup.controls.selRebalancePeer.setValue(t[0]),this.inputFormGroup.controls.selRebalancePeer.setErrors(null)):this.inputFormGroup.controls.selRebalancePeer.setErrors({notfound:!0})}}displayFn(t){return t&&t.remote_alias?t.remote_alias:t&&t.chan_id?t.chan_id:""}showInfo(){this.flgShowInfo=!0}onStepChanged(t){this.animationDirection=t{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(I.il),e.rXU(W.En),e.rXU(m.ze),e.rXU(d.QX),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-rebalance"]],viewQuery:function(a,i){if(1&a&&e.GBs(El,5),2&a){let o;e.mGM(o=e.lsd())&&(i.stepper=o.first)}},decls:8,vars:2,consts:[["paymentStatusBlock",""],["paymentFailedBlock",""],["paymentSuccessfulBlock",""],["stepper",""],["auto","matAutocomplete"],["fxLayout","column",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column"],[1,"modal-info-header"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayoutAlign","start center"],[1,"page-title"],["fxLayoutAlign","end center"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","46"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","rebalanceAmount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start end"],["type","text","aria-label","Receive from Peer","matInput","","formControlName","selRebalancePeer","tabindex","2","required","",3,"change","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","submit",3,"click"],["matStepLabel","","disabled","true"],["tabindex","6","formControlName","selFeeLimitType","required",""],["matInput","","formControlName","feeLimit","type","number","tabindex","7","required","",3,"step"],["mat-button","","color","primary","tabindex","8","type","submit",3,"click"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel","mb-2"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[1,"foreground-secondary-text"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayoutAlign","start","class","font-bold-500 mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],[3,"value"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-1"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[4,"ngTemplateOutlet"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],["fxFlex","50"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(a,i){1&a&&e.DNE(0,Wl,105,46,"div",5)(1,Zl,1,1,"ng-template",null,0,e.C5r)(3,Kl,3,1,"ng-template",null,1,e.C5r)(5,er,19,4,"ng-template",null,2,e.C5r)(7,lr,18,10,"div",6),2&a&&(e.Y8G("ngIf",!i.flgShowInfo),e.R7$(7),e.Y8G("ngIf",i.flgShowInfo))},dependencies:[d.YU,d.Sq,d.bT,d.T3,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.j4,m.JD,M.aY,h.DJ,h.sA,h.UI,L.PW,O.tx,G.$z,T.m2,T.MM,U.GK,U.Z2,U.WN,ie.An,$.fg,f.rl,f.nJ,f.MV,f.TL,f.yw,ee.q,B.HM,R.VO,V.wT,H.V5,H.Ti,H.M6,oe.$3,oe.pN,Z.N,Rl,d.Jj,d.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[Le.C]}})}return n})();function cr(n,s){if(1&n&&(e.j41(0,"div",18)(1,"p",19)(2,"mat-icon",20),e.EFF(3,"close"),e.k0s(),e.EFF(4),e.k0s()()),2&n){const t=e.XpG();e.R7$(4),e.JRh(t.errorMsg)}}function pr(n,s){if(1&n&&(e.j41(0,"div",29),e.nrm(1,"fa-icon",30),e.j41(2,"span"),e.EFF(3,"Priority/Fee for force closing inactive channels cannot be modified."),e.k0s()()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faInfoCircle)}}function mr(n,s){if(1&n&&(e.j41(0,"div",29),e.nrm(1,"fa-icon",30),e.j41(2,"span",31)(3,"div"),e.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(5,"span",32)(6,"span"),e.EFF(7),e.k0s(),e.j41(8,"span"),e.EFF(9),e.k0s(),e.j41(10,"span"),e.EFF(11),e.k0s(),e.j41(12,"span"),e.EFF(13),e.k0s(),e.j41(14,"span"),e.EFF(15),e.k0s()()()()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faInfoCircle),e.R7$(6),e.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),e.R7$(2),e.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),e.R7$(2),e.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),e.R7$(2),e.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),e.R7$(2),e.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function ur(n,s){if(1&n&&(e.j41(0,"mat-option",33),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function dr(n,s){1&n&&(e.j41(0,"mat-form-field",34)(1,"mat-label"),e.EFF(2,"Default"),e.k0s(),e.nrm(3,"input",35),e.k0s())}function hr(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function _r(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",36)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",37,0),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.blocks,i)||(o.blocks=i),e.Njj(i)}),e.k0s(),e.DNE(5,hr,2,0,"mat-error",38),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.blocks),e.R7$(2),e.Y8G("ngIf",!t.blocks)}}function fr(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function gr(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",36)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",39,1),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.fees,i)||(o.fees=i),e.Njj(i)}),e.k0s(),e.DNE(5,fr,2,0,"mat-error",38),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.fees),e.R7$(2),e.Y8G("ngIf",!t.fees)}}function Cr(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",21),e.DNE(1,pr,4,1,"div",22)(2,mr,16,6,"div",22),e.j41(3,"div",23)(4,"mat-form-field",24)(5,"mat-select",25),e.mxI("valueChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selTransType,i)||(o.selTransType=i),e.Njj(i)}),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onSelTransTypeChanged(i))}),e.DNE(6,ur,2,2,"mat-option",26),e.k0s()(),e.DNE(7,dr,4,0,"mat-form-field",27)(8,_r,6,4,"mat-form-field",28)(9,gr,6,4,"mat-form-field",28),e.k0s()()}if(2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",!t.channelToClose.active),e.R7$(),e.Y8G("ngIf",t.recommendedFee.minimumFee),e.R7$(3),e.Y8G("disabled",!t.channelToClose.active),e.R50("value",t.selTransType),e.R7$(),e.Y8G("ngForOf",t.transTypes),e.R7$(),e.Y8G("ngIf","0"===t.selTransType),e.R7$(),e.Y8G("ngIf","1"===t.selTransType),e.R7$(),e.Y8G("ngIf","2"===t.selTransType)}}function yr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",40),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(1,"Clear"),e.k0s()}}function br(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",41),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onCloseChannel())}),e.EFF(1),e.k0s()}if(2&n){const t=e.XpG();e.R7$(),e.JRh(t.channelToClose.active?"Close Channel":"Force Close")}}function Fr(n,s){if(1&n){const t=e.RV6();e.j41(0,"button",42),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onClose())}),e.EFF(1,"Ok"),e.k0s()}}let xr=(()=>{class n{constructor(t,a,i,o,r,p){this.dialogRef=t,this.data=a,this.dataService=i,this.store=o,this.actions=r,this.logger=p,this.transTypes=l.XG,this.selTransType="0",this.blocks=null,this.fees=null,this.faExclamationTriangle=b.zpE,this.faInfoCircle=b.iW_,this.flgPendingHtlcs=!1,this.errorMsg="Please wait for pending HTLCs to settle before attempting channel closure.",this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B]}ngOnInit(){this.channelToClose=this.data.channel,this.actions.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t.type===l.QP.UPDATE_API_CALL_STATUS_LND||t.type===l.QP.SET_CHANNELS_LND)).subscribe(t=>{if(t.type===l.QP.SET_CHANNELS_LND){const a=t.payload.find(i=>i.chan_id===this.data.channel.chan_id);a&&a.pending_htlcs&&a.pending_htlcs.length&&a.pending_htlcs.length>0&&(this.flgPendingHtlcs=!0)}t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&t.payload.status===l.wn.ERROR&&"FetchAllChannels"===t.payload.action&&this.logger.error("Fetching latest channel information failed!\n"+t.payload.message)})}onCloseChannel(){if("1"===this.selTransType&&(!this.blocks||0===this.blocks)||"2"===this.selTransType&&(!this.fees||0===this.fees))return!0;const t={channelPoint:this.channelToClose.channel_point,forcibly:!this.channelToClose.active};this.blocks&&(t.targetConf=this.blocks),this.fees&&(t.satPerByte=this.fees),this.store.dispatch((0,v.w0)({payload:t})),this.dialogRef.close(!1)}resetData(){this.selTransType="0",this.blocks=null,this.fees=null}onSelTransTypeChanged(t){"2"===t.value&&this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[1])).subscribe({next:a=>{this.recommendedFee=a},error:a=>{this.logger.error(a)}})}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(K.u),e.rXU(I.il),e.rXU(W.En),e.rXU(j.gP))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-close-channel"]],decls:19,vars:7,consts:[["blcks","ngModel"],["clchfee","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],["fxLayoutAlign","start center",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","class","mr-1","tabindex","3","default","",3,"click",4,"ngIf"],["mat-button","","color","primary","type","submit","tabindex","4",3,"click",4,"ngIf"],["mat-button","","color","primary","type","submit","tabindex","5",3,"click",4,"ngIf"],["fxLayoutAlign","start center"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","column","fxFlex.gt-sm","48"],["tabindex","1",3,"valueChange","selectionChange","disabled","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","48",4,"ngIf"],["fxFlex.gt-sm","48","fxLayoutAlign","start end",4,"ngIf"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["fxFlex","48"],["matInput","","disabled",""],["fxFlex.gt-sm","48","fxLayoutAlign","start end"],["matInput","","type","number","name","blocks","required","","tabindex","2",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["matInput","","type","number","name","ccfees","required","","tabindex","3",3,"ngModelChange","step","min","ngModel"],["mat-button","","color","primary","type","reset","tabindex","3","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit","tabindex","4",3,"click"],["mat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(a,i){1&a&&(e.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),e.EFF(5),e.k0s()(),e.j41(6,"button",7),e.bIt("click",function(){return i.onClose()}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",8)(9,"form",9)(10,"div",10)(11,"p",11),e.EFF(12),e.k0s(),e.DNE(13,cr,5,1,"div",12)(14,Cr,10,8,"div",13),e.k0s(),e.j41(15,"div",14),e.DNE(16,yr,2,0,"button",15)(17,br,2,1,"button",16)(18,Fr,2,0,"button",17),e.k0s()()()()()),2&a&&(e.R7$(5),e.JRh(i.channelToClose.active?"Close Channel":"Force Close Channel"),e.R7$(7),e.SpI("",i.channelToClose.active?"Closing channel: "+(i.channelToClose.remote_alias||i.channelToClose.chan_id?i.channelToClose.remote_alias&&i.channelToClose.chan_id?i.channelToClose.remote_alias+" ("+i.channelToClose.chan_id+")":i.channelToClose.remote_alias?i.channelToClose.remote_alias:i.channelToClose.chan_id:i.channelToClose.channel_point):"Force closing channel: "+(i.channelToClose.remote_alias||i.channelToClose.chan_id?i.channelToClose.remote_alias&&i.channelToClose.chan_id?i.channelToClose.remote_alias+" ("+i.channelToClose.chan_id+")":i.channelToClose.remote_alias?i.channelToClose.remote_alias:i.channelToClose.chan_id:i.channelToClose.channel_point)," "),e.R7$(),e.Y8G("ngIf",i.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!i.flgPendingHtlcs),e.R7$(2),e.Y8G("ngIf",i.channelToClose.active&&!i.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",!i.flgPendingHtlcs),e.R7$(),e.Y8G("ngIf",i.flgPendingHtlcs))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,G.$z,T.m2,T.MM,ie.An,$.fg,f.rl,f.nJ,f.TL,R.VO,V.wT,te.V]})}return n})();const vr=()=>["all"],Tr=n=>({"error-border":n}),Sr=()=>["no_channel"],Ce=n=>({width:n}),kr=n=>({"display-none":n});function Rr(n,s){if(1&n&&(e.j41(0,"mat-option",49),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function Er(n,s){1&n&&e.nrm(0,"mat-progress-bar",50)}function Ir(n,s){1&n&&e.nrm(0,"th",51)}function Lr(n,s){1&n&&e.nrm(0,"span",55)}function wr(n,s){1&n&&e.nrm(0,"span",56)}function jr(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,Lr,1,0,"span",53)(2,wr,1,0,"span",54),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.active),e.R7$(),e.Y8G("ngIf",!t.active)}}function Gr(n,s){1&n&&e.nrm(0,"th",57)}function Dr(n,s){if(1&n&&(e.j41(0,"span",60),e.nrm(1,"fa-icon",61),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faEyeSlash)}}function Nr(n,s){if(1&n&&(e.j41(0,"span",62),e.nrm(1,"fa-icon",61),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faEye)}}function Pr(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,Dr,2,1,"span",58)(2,Nr,2,1,"span",59),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.private),e.R7$(),e.Y8G("ngIf",!t.private)}}function $r(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Peer"),e.k0s())}function Ar(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.remote_alias)}}function Mr(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Pubkey"),e.k0s())}function Br(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.remote_pubkey)}}function Or(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Channel Point"),e.k0s())}function Vr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel_point)}}function Yr(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Channel ID"),e.k0s())}function Xr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",64)(2,"span",65),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.chan_id)}}function Ur(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Initiator"),e.k0s())}function Hr(n,s){if(1&n&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t.initiator?"Yes":"No")}}function qr(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Static Remote Key"),e.k0s())}function zr(n,s){if(1&n&&(e.j41(0,"td",52),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t.static_remote_key?"Yes":"No")}}function Jr(n,s){if(1&n&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Uptime (",t.timeUnit,")")}}function Wr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.uptime_str," ")}}function Qr(n,s){if(1&n&&(e.j41(0,"th",66),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("Lifetime (",t.timeUnit,")")}}function Zr(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.lifetime_str," ")}}function Kr(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function e1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_fee)," ")}}function t1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Commit Weight"),e.k0s())}function n1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_weight)," ")}}function i1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Fee/KW"),e.k0s())}function a1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.fee_per_kw)," ")}}function s1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Updates"),e.k0s())}function o1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.num_updates)," ")}}function l1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function r1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.unsettled_balance)," ")}}function c1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Capacity (Sats)"),e.k0s())}function p1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.capacity)," ")}}function m1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function u1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.local_chan_reserve_sat)," ")}}function d1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function h1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.remote_chan_reserve_sat)," ")}}function _1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Sats Sent"),e.k0s())}function f1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.total_satoshis_sent)," ")}}function g1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Sats Received"),e.k0s())}function C1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.total_satoshis_received)," ")}}function y1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function b1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.local_balance)," ")}}function F1(n,s){1&n&&(e.j41(0,"th",66),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function x1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",67),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.remote_balance)," ")}}function v1(n,s){1&n&&(e.j41(0,"th",63),e.EFF(1,"Balance Score"),e.k0s())}function T1(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",68)(2,"mat-hint",69),e.EFF(3),e.nI1(4,"number"),e.k0s()(),e.nrm(5,"mat-progress-bar",70),e.k0s()),2&n){const t=s.$implicit;e.R7$(3),e.JRh(e.bMT(4,2,t.balancedness||0)),e.R7$(2),e.FS9("value",t.local_balance&&t.local_balance>0?+t.local_balance/(+t.local_balance+ +t.remote_balance)*100:0)}}function S1(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",71)(1,"div",72)(2,"mat-select",73),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onChannelUpdate("all"))}),e.EFF(5,"Update Fee Policy"),e.k0s(),e.j41(6,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(7,"Download CSV"),e.k0s()()()()}}function k1(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG().$implicit,o=e.XpG();return e.Njj(o.onCircularRebalance(i))}),e.EFF(1,"Circular Rebalance"),e.k0s()}}function R1(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-option",74),e.bIt("click",function(){e.eBV(t);const i=e.XpG().$implicit,o=e.XpG();return e.Njj(o.onLoopOut(i))}),e.EFF(1,"Loop Out"),e.k0s()}}function E1(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",75)(1,"div",72)(2,"mat-select",76),e.nrm(3,"mat-select-trigger"),e.j41(4,"perfect-scrollbar")(5,"mat-option",74),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onChannelClick(o,i))}),e.EFF(6,"View Info"),e.k0s(),e.j41(7,"mat-option",74),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onViewRemotePolicy(i))}),e.EFF(8,"View Remote Fee "),e.k0s(),e.j41(9,"mat-option",74),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onChannelUpdate(i))}),e.EFF(10,"Update Fee Policy"),e.k0s(),e.DNE(11,k1,2,0,"mat-option",77)(12,R1,2,0,"mat-option",77),e.j41(13,"mat-option",74),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onChannelClose(i))}),e.EFF(14,"Close Channel"),e.k0s()()()()()}if(2&n){const t=e.XpG();e.R7$(11),e.Y8G("ngIf",+t.versionsArr[0]>0||+t.versionsArr[1]>=9),e.R7$(),e.Y8G("ngIf",t.selNode.swapServerUrl)}}function I1(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No peers connected. Add a peer in order to open a channel."),e.k0s())}function L1(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function w1(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function j1(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function G1(n,s){if(1&n&&(e.j41(0,"td",78),e.DNE(1,I1,2,0,"p",79)(2,L1,2,0,"p",79)(3,w1,2,0,"p",79)(4,j1,2,1,"p",79),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",t.numPeers<1&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",t.numPeers>0&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function D1(n,s){if(1&n&&e.nrm(0,"tr",80),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,kr,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function N1(n,s){1&n&&e.nrm(0,"tr",81)}function P1(n,s){1&n&&e.nrm(0,"tr",82)}let $1=(()=>{class n{constructor(t,a,i,o,r,p,F,C){this.logger=t,this.store=a,this.lndEffects=i,this.commonService=o,this.rtlEffects=r,this.decimalPipe=p,this.loopService=F,this.camelCaseWithReplace=C,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open",recordsPerPage:l.md,sortBy:"balancedness",sortOrder:l.oi.DESCENDING},this.timeUnit="mins:secs",this.userPersonaEnum=l.HW,this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new c.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.selFilter="",this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.versionsArr=[],this.faEye=b.pS3,this.faEyeSlash=b.k6j,this.targetConf=6,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t,this.information&&this.information.version&&(this.versionsArr=this.information.version.split("."))}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.unshift("active"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.os).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.numPeers=t.peers&&t.peers.length?t.peers.length:0}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.totalBalance=t.blockchainBalance?.total_balance?+t.blockchainBalance?.total_balance:0}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[5])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=this.calculateUptime(t.channels),this.channelsData.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(t){this.store.dispatch((0,v.ij)({payload:{uiMessage:l.MZ.GET_REMOTE_POLICY,channelID:t.chan_id?.toString()+"/"+this.information.identity_pubkey}})),this.lndEffects.setLookup.pipe((0,J.s)(1)).subscribe(a=>{if(!a.fee_base_msat&&!a.fee_rate_milli_msat&&!a.time_lock_delta)return!1;const i=[[{key:"fee_base_msat",value:a.fee_base_msat,title:"Base Fees (mSats)",width:25,type:l.UN.NUMBER},{key:"fee_rate_milli_msat",value:a.fee_rate_milli_msat,title:"Fee Rate (milli mSats)",width:25,type:l.UN.NUMBER},{key:"fee_rate_milli_msat",value:a.fee_rate_milli_msat/1e4,title:"Fee Rate (%)",width:25,type:l.UN.NUMBER,digitsInfo:"1.0-8"},{key:"time_lock_delta",value:a.time_lock_delta,title:"Time Lock Delta",width:25,type:l.UN.NUMBER}]],o="Remote policy for Channel: "+(t.remote_alias||t.chan_id?t.remote_alias&&t.chan_id?t.remote_alias+" ("+t.chan_id+")":t.remote_alias?t.remote_alias:t.chan_id:t.channel_point);setTimeout(()=>{this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:o,message:i}}}))},0)})}onCircularRebalance(t){this.store.dispatch((0,E.xO)({payload:{data:{message:{channels:this.channelsData,selChannel:t},component:rr}}}))}onChannelUpdate(t){"all"===t?(this.store.dispatch((0,E.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update All Channels",message:[],titleMessage:"Update fee policy for all channels",flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:l.UN.NUMBER,inputValue:1e3,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:l.UN.NUMBER,inputValue:1,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:l.UN.NUMBER,inputValue:40,width:32}]}}})),this.rtlEffects.closeConfirm.pipe((0,_.Q)(this.unSubs[6])).subscribe(i=>{i&&this.store.dispatch((0,v.fy)({payload:{baseFeeMsat:i[0].inputValue,feeRate:i[1].inputValue,timeLockDelta:i[2].inputValue,chanPoint:"all"}}))})):(this.myChanPolicy={fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0,min_htlc_msat:0,max_htlc_msat:0},this.store.dispatch((0,v.ij)({payload:{uiMessage:l.MZ.GET_CHAN_POLICY,channelID:t.chan_id.toString()}})),this.lndEffects.setLookup.pipe((0,J.s)(1)).subscribe(a=>{this.myChanPolicy=a.node1_pub===this.information.identity_pubkey?a.node1_policy:a.node2_pub===this.information.identity_pubkey?a.node2_policy:{fee_base_msat:0,fee_rate_milli_msat:0,time_lock_delta:0},this.logger.info(this.myChanPolicy);const i="Update fee policy for Channel: "+(t.remote_alias||t.chan_id?t.remote_alias&&t.chan_id?t.remote_alias+" ("+t.chan_id+")":t.remote_alias?t.remote_alias:t.chan_id:t.channel_point),o=[];setTimeout(()=>{this.store.dispatch((0,E.I1)({payload:{data:{type:l.A$.CONFIRM,alertTitle:"Update Fee Policy",titleMessage:i,noBtnText:"Cancel",yesBtnText:"Update Channel",message:o,flgShowInput:!0,hasAdvanced:!0,getInputs:[{placeholder:"Base Fee (mSat)",inputType:l.UN.NUMBER,inputValue:""===this.myChanPolicy.fee_base_msat?0:this.myChanPolicy.fee_base_msat,step:100,width:32},{placeholder:"Fee Rate (mili mSat)",inputType:l.UN.NUMBER,inputValue:this.myChanPolicy.fee_rate_milli_msat,min:1,width:32,hintFunction:this.percentHintFunction},{placeholder:"Time Lock Delta",inputType:l.UN.NUMBER,inputValue:this.myChanPolicy.time_lock_delta,width:32},{placeholder:"Minimum HTLC (mSat)",inputType:l.UN.NUMBER,inputValue:""===this.myChanPolicy.min_htlc?0:this.myChanPolicy.min_htlc,width:49,advancedField:!0},{placeholder:"Maximum HTLC (mSat)",inputType:l.UN.NUMBER,inputValue:""===this.myChanPolicy.max_htlc_msat?0:this.myChanPolicy.max_htlc_msat,width:49,advancedField:!0}]}}}))},0)}),this.rtlEffects.closeConfirm.pipe((0,_.Q)(this.unSubs[7])).subscribe(a=>{if(a){const i={baseFeeMsat:a[0].inputValue,feeRate:a[1].inputValue,timeLockDelta:a[2].inputValue,chanPoint:t.channel_point};a.length>3&&a[3]&&a[4]&&(i.minHtlcMsat=a[3].inputValue,i.maxHtlcMsat=a[4].inputValue),this.store.dispatch((0,v.fy)({payload:i}))}})),this.applyFilter()}onChannelClose(t){t.active&&this.store.dispatch((0,v.$Q)()),this.store.dispatch((0,E.xO)({payload:{data:{channel:t,component:xr}}}))}onChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{channel:t,selNode:this.selNode,showCopy:!0,component:Ee}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.active?"active":"inactive")+(t.chan_id?t.chan_id.toLowerCase():"")+(t.remote_pubkey?t.remote_pubkey.toLowerCase():"")+(t.remote_alias?t.remote_alias.toLowerCase():"")+(t.capacity?t.capacity:"")+(t.local_balance?t.local_balance:"")+(t.remote_balance?t.remote_balance:"")+(t.total_satoshis_sent?t.total_satoshis_sent:"")+(t.total_satoshis_received?t.total_satoshis_received:"")+(t.commit_fee?t.commit_fee:"")+(t.private?"private":"public");break;case"active":i=t?.active?"active":"inactive";break;case"private":i=t?.private?"private":"public";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"active"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}loadChannelsTable(t){this.channels=new c.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}calculateUptime(t){let p=60,F=1,C=0;switch(t.forEach(S=>{S.uptime&&+S.uptime>C&&(C=+S.uptime)}),!0){case C<3600:this.timeUnit="Mins:Secs",p=60,F=1;break;case C>=3600&&C<86400:this.timeUnit="Hrs:Mins",p=3600,F=60;break;case C>=86400&&C<31536e3:this.timeUnit="Days:Hrs",p=86400,F=3600;break;case C>31536e3:this.timeUnit="Yrs:Days",p=31536e3,F=86400;break;default:this.timeUnit="Mins:Secs",p=60,F=1}return t.forEach(S=>{S.uptime_str=S.uptime?this.decimalPipe.transform(Math.floor(+S.uptime/p),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.uptime%p/F),"2.0-0"):"---",S.lifetime_str=S.lifetime?this.decimalPipe.transform(Math.floor(+S.lifetime/p),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.lifetime%p/F),"2.0-0"):"---"}),t}onLoopOut(t){this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,_.Q)(this.unSubs[8])).subscribe(a=>{this.store.dispatch((0,E.xO)({payload:{minHeight:"56rem",data:{channel:t,minQuote:a[0],maxQuote:a[1],direction:l.C7.LOOP_OUT,component:He.D}}}))})}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}percentHintFunction(t){return(t/1e4).toString()+"%"}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(re.L),e.rXU(N.h),e.rXU(me.H),e.rXU(d.QX),e.rXU(qe.Q),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-open-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Channels")}])],decls:96,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","active"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private",4,"matHeaderCellDef"],["matColumnDef","remote_alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","chan_id"],["matColumnDef","initiator"],["matColumnDef","static_remote_key"],["matColumnDef","uptime_str"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","lifetime_str"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","num_updates"],["matColumnDef","unsettled_balance"],["matColumnDef","capacity"],["matColumnDef","local_chan_reserve_sat"],["matColumnDef","remote_chan_reserve_sat"],["matColumnDef","total_satoshis_sent"],["matColumnDef","total_satoshis_received"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active"],["mat-cell",""],["class","dot green","matTooltip","Active","matTooltipPosition","right",4,"ngIf"],["class","dot grey","matTooltip","Inactive","matTooltipPosition","right",4,"ngIf"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","grey"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Private"],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,Rr,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,Er,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Ir,1,0,"th",13)(20,jr,3,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Gr,1,0,"th",16)(23,Pr,3,2,"td",14),e.bVm(),e.qex(24,17),e.DNE(25,$r,2,0,"th",18)(26,Ar,4,4,"td",14),e.bVm(),e.qex(27,19),e.DNE(28,Mr,2,0,"th",18)(29,Br,4,4,"td",14),e.bVm(),e.qex(30,20),e.DNE(31,Or,2,0,"th",18)(32,Vr,4,4,"td",14),e.bVm(),e.qex(33,21),e.DNE(34,Yr,2,0,"th",18)(35,Xr,4,4,"td",14),e.bVm(),e.qex(36,22),e.DNE(37,Ur,2,0,"th",18)(38,Hr,2,1,"td",14),e.bVm(),e.qex(39,23),e.DNE(40,qr,2,0,"th",18)(41,zr,2,1,"td",14),e.bVm(),e.qex(42,24),e.DNE(43,Jr,2,1,"th",25)(44,Wr,3,1,"td",14),e.bVm(),e.qex(45,26),e.DNE(46,Qr,2,1,"th",25)(47,Zr,3,1,"td",14),e.bVm(),e.qex(48,27),e.DNE(49,Kr,2,0,"th",25)(50,e1,4,3,"td",14),e.bVm(),e.qex(51,28),e.DNE(52,t1,2,0,"th",25)(53,n1,4,3,"td",14),e.bVm(),e.qex(54,29),e.DNE(55,i1,2,0,"th",25)(56,a1,4,3,"td",14),e.bVm(),e.qex(57,30),e.DNE(58,s1,2,0,"th",25)(59,o1,4,3,"td",14),e.bVm(),e.qex(60,31),e.DNE(61,l1,2,0,"th",25)(62,r1,4,3,"td",14),e.bVm(),e.qex(63,32),e.DNE(64,c1,2,0,"th",25)(65,p1,4,3,"td",14),e.bVm(),e.qex(66,33),e.DNE(67,m1,2,0,"th",25)(68,u1,4,3,"td",14),e.bVm(),e.qex(69,34),e.DNE(70,d1,2,0,"th",25)(71,h1,4,3,"td",14),e.bVm(),e.qex(72,35),e.DNE(73,_1,2,0,"th",25)(74,f1,4,3,"td",14),e.bVm(),e.qex(75,36),e.DNE(76,g1,2,0,"th",25)(77,C1,4,3,"td",14),e.bVm(),e.qex(78,37),e.DNE(79,y1,2,0,"th",25)(80,b1,4,3,"td",14),e.bVm(),e.qex(81,38),e.DNE(82,F1,2,0,"th",25)(83,x1,4,3,"td",14),e.bVm(),e.qex(84,39),e.DNE(85,v1,2,0,"th",18)(86,T1,6,4,"td",14),e.bVm(),e.qex(87,40),e.DNE(88,S1,8,0,"th",41)(89,E1,15,2,"td",42),e.bVm(),e.qex(90,43),e.DNE(91,G1,5,4,"td",44),e.bVm(),e.DNE(92,D1,1,3,"tr",45)(93,N1,1,0,"tr",46)(94,P1,1,0,"tr",47),e.k0s()(),e.nrm(95,"mat-paginator",48),e.k0s()}2&a&&(e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,vr).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",(null==i.apiCallStatus?null:i.apiCallStatus.status)===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.channels)("ngClass",e.eq3(15,Tr,""!==i.errorMessage)),e.R7$(76),e.Y8G("matFooterRowDef",e.lJ4(17,Sr)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,$.fg,f.rl,f.nJ,f.MV,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,d.QX],styles:[".mat-column-active[_ngcontent-%COMP%], .mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]})}return n})();const A1=["outputIdx"];function M1(n,s){if(1&n&&(e.j41(0,"div",31),e.nrm(1,"fa-icon",16),e.j41(2,"span"),e.EFF(3,"Change output balance "),e.j41(4,"strong"),e.EFF(5),e.nI1(6,"number"),e.k0s(),e.EFF(7," (Sats) may be insufficient for fee bumping, depending on the prevailing fee rates."),e.k0s()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(4),e.JRh(e.bMT(6,2,t.dustOutputValue))}}function B1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Index for change output is required."),e.k0s())}function O1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid index value."),e.k0s())}function V1(n,s){if(1&n&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function Y1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function X1(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",20)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",33,1),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.blocks,i)||(o.blocks=i),e.Njj(i)}),e.k0s(),e.DNE(5,Y1,2,0,"mat-error",22),e.k0s()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.blocks),e.R7$(2),e.Y8G("ngIf",!t.blocks)}}function U1(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function H1(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",20)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",34,2),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.fees,i)||(o.fees=i),e.Njj(i)}),e.k0s(),e.DNE(5,U1,2,0,"mat-error",22),e.k0s()}if(2&n){const t=e.XpG();e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.fees),e.R7$(2),e.Y8G("ngIf",!t.fees)}}function q1(n,s){if(1&n&&(e.j41(0,"div",35),e.nrm(1,"fa-icon",16),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(2),e.JRh(t.bumpFeeError)}}let Ke=(()=>{class n{set outputIndx(t){t&&(this.outputIdx=t)}constructor(t,a,i,o,r){this.dialogRef=t,this.data=a,this.logger=i,this.dataService=o,this.store=r,this.faUpRightFromSquare=b.k02,this.txid="",this.outputIndex=null,this.transTypes=[...l.XG],this.selTransType="2",this.blocks=null,this.fees=null,this.faCopy=b.jPR,this.faInfoCircle=b.iW_,this.faExclamationTriangle=b.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){if(this.transTypes=this.transTypes.splice(1),this.data.pendingChannel&&this.data.pendingChannel.channel){const t=this.data.pendingChannel.channel?.channel_point?.split(":")||[];this.txid=t[0]||(this.data.pendingChannel.channel&&this.data.pendingChannel.channel.channel_point?this.data.pendingChannel.channel.channel_point:""),this.outputIndex=t[1]&&""!==t[1]&&0==+t[1]?1:0}else this.data.selUTXO&&this.data.selUTXO.outpoint&&(this.txid=this.data.selUTXO.outpoint.txid_str||"",this.outputIndex=this.data.selUTXO.outpoint.output_index||0);this.logger.info(this.txid,this.outputIndex),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,_.Q)(this.unSubs[1])).subscribe({next:t=>{this.recommendedFee=t},error:t=>{this.logger.error(t)}}),this.dataService.getBlockExplorerTransaction(this.txid).pipe((0,_.Q)(this.unSubs[2])).subscribe({next:t=>{this.dustOutputValue=t.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:t=>{this.logger.error(t)}})}onBumpFee(){if(this.data.pendingChannel&&this.data.pendingChannel.channel){const t=this.data.pendingChannel.channel?.channel_point?.split(":")||[],a=t.length>1&&t[1]&&""!==t[1]?+t[1]:null;if(a&&this.outputIndex===a)return this.outputIdx.control.setErrors({pendingChannelOutputIndex:!0}),!0}if(!this.outputIndex&&0!==this.outputIndex||"1"===this.selTransType&&(!this.blocks||0===this.blocks)||"2"===this.selTransType&&(!this.fees||0===this.fees))return!0;this.dataService.bumpFee(this.txid,this.outputIndex,this.blocks||null,this.fees||null).pipe((0,_.Q)(this.unSubs[3])).subscribe({next:t=>{this.dialogRef.close(!1)},error:t=>{this.logger.error(t),this.bumpFeeError=t.message?t.message:t}})}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.txid,"_blank")}resetData(){this.bumpFeeError="",this.selTransType="2",this.blocks=null,this.fees=null,this.outputIdx.control.setErrors(null)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(K.u),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-bump-fee"]],viewQuery:function(a,i){if(1&a&&e.GBs(A1,5),2&a){let o;e.mGM(o=e.lsd())&&(i.outputIndx=o.first)}},decls:46,vars:19,consts:[["outputIndx","ngModel"],["blcks","ngModel"],["fee","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","column","fxFlex.gt-sm","32","fxLayoutAlign","start end"],["autoFocus","","matInput","","type","number","tabindex","1","required","","name","outputIndx",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","32"],["tabindex","2",3,"valueChange","selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex.gt-sm","32","fxLayoutAlign","start end",4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","5","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit","tabindex","6",3,"click"],["fxFlex","100",1,"alert","alert-warn"],[3,"value"],["matInput","","type","number","name","blocks","required","","tabindex","3",3,"ngModelChange","step","min","ngModel"],["matInput","","type","number","name","fees","required","","tabindex","4",3,"ngModelChange","step","min","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",3)(1,"div",4)(2,"mat-card-header",5)(3,"div",6)(4,"span",7),e.EFF(5,"Bump Fee"),e.k0s()(),e.j41(6,"button",8),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",9)(9,"form",10)(10,"div",11)(11,"p",12),e.EFF(12),e.j41(13,"fa-icon",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onExplorerClicked())}),e.k0s()(),e.j41(14,"div",14)(15,"div",15),e.nrm(16,"fa-icon",16),e.j41(17,"span",17)(18,"div"),e.EFF(19,"Fee rates recommended by mempool (sat/vByte):"),e.k0s(),e.j41(20,"div"),e.EFF(21),e.k0s(),e.j41(22,"div"),e.EFF(23),e.k0s(),e.j41(24,"div"),e.EFF(25),e.k0s()()(),e.DNE(26,M1,8,4,"div",18),e.j41(27,"div",19)(28,"mat-form-field",20)(29,"mat-label"),e.EFF(30,"Index for Change Output"),e.k0s(),e.j41(31,"input",21,0),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.outputIndex,p)||(i.outputIndex=p),e.Njj(p)}),e.k0s(),e.DNE(33,B1,2,0,"mat-error",22)(34,O1,2,0,"mat-error",22),e.k0s(),e.j41(35,"mat-form-field",23)(36,"mat-select",24),e.mxI("valueChange",function(p){return e.eBV(o),e.DH7(i.selTransType,p)||(i.selTransType=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.blocks=null,e.Njj(i.fees=null)}),e.DNE(37,V1,2,2,"mat-option",25),e.k0s()(),e.DNE(38,X1,6,4,"mat-form-field",26)(39,H1,6,4,"mat-form-field",26),e.k0s(),e.DNE(40,q1,4,2,"div",27),e.k0s()(),e.j41(41,"div",28)(42,"button",29),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(43,"Clear"),e.k0s(),e.j41(44,"button",30),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onBumpFee())}),e.EFF(45),e.k0s()()()()()()}if(2&a){const o=e.sdS(32);e.R7$(12),e.SpI(" ",i.txid?"Bump fee for transaction ID: "+i.txid:"Bump fee: "," "),e.R7$(),e.FS9("matTooltip","Link to "+i.selNode.settings.blockExplorerUrl),e.Y8G("icon",i.faUpRightFromSquare),e.R7$(3),e.Y8G("icon",i.faInfoCircle),e.R7$(5),e.SpI("- High: ",i.recommendedFee.fastestFee||"Unknown",""),e.R7$(2),e.SpI("- Medium: ",i.recommendedFee.halfHourFee||"Unknown",""),e.R7$(2),e.SpI("- Low: ",i.recommendedFee.hourFee||"Unknown",""),e.R7$(),e.Y8G("ngIf",i.flgShowDustWarning),e.R7$(5),e.Y8G("step",1)("min",0),e.R50("ngModel",i.outputIndex),e.R7$(2),e.Y8G("ngIf",null==o.errors?null:o.errors.required),e.R7$(),e.Y8G("ngIf",null==o.errors?null:o.errors.OutputIndexError),e.R7$(2),e.R50("value",i.selTransType),e.R7$(),e.Y8G("ngForOf",i.transTypes),e.R7$(),e.Y8G("ngIf","1"===i.selTransType),e.R7$(),e.Y8G("ngIf","2"===i.selTransType),e.R7$(),e.Y8G("ngIf",""!==i.bumpFeeError),e.R7$(5),e.JRh(""!==i.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.TL,R.VO,V.wT,Q.oV,Z.N,te.V,d.QX]})}return n})();const ye=n=>({"error-border bordered-box":n,"bordered-box":!0}),z1=()=>["no_pending_open"],J1=()=>["no_pending_force_closing"],W1=()=>["no_pending_closing"],Q1=()=>["no_pending_wait_closing"],z=n=>({width:n}),we=n=>({"display-none":n}),Z1=n=>({"py-0":!0,"display-none":n});function K1(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function ec(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function tc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function nc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function ic(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function ac(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function sc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function oc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function lc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function rc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function cc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function pc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function mc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Confirmation Height"),e.k0s())}function uc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.confirmation_height))}}function dc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function hc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.commit_fee))}}function _c(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Commit Weight"),e.k0s())}function fc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.commit_weight))}}function gc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Fee/KW"),e.k0s())}function Cc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.fee_per_kw))}}function yc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function bc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function Fc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function xc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function vc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function Tc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function Sc(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function kc(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"div",48)(2,"mat-select",50),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",51),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onOpenClick(i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",51),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onBumpFee(i))}),e.EFF(7,"Bump Fee"),e.k0s()()()()}}function Rc(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Ec(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Ic(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Lc(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,Rc,2,0,"p",53)(2,Ec,2,0,"p",53)(3,Ic,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!t.pendingOpenChannels||!(null!=t.pendingOpenChannels&&t.pendingOpenChannels.data)||(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function wc(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,we,t.pendingOpenChannels&&(null==t.pendingOpenChannels?null:t.pendingOpenChannels.data)&&(null==t.pendingOpenChannels||null==t.pendingOpenChannels.data?null:t.pendingOpenChannels.data.length)>0))}}function jc(n,s){1&n&&e.nrm(0,"tr",55)}function Gc(n,s){1&n&&e.nrm(0,"tr",56)}function Dc(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function Nc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Pc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.closing_txid)}}function $c(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function Ac(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function Mc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Bc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function Oc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Vc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function Yc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function Xc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function Uc(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function Hc(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function qc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function zc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.limbo_balance))}}function Jc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Maturity Height"),e.k0s())}function Wc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.maturity_height))}}function Qc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Blocks till Maturity"),e.k0s())}function Zc(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.blocks_til_maturity))}}function Kc(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Recovered Balance (Sats)"),e.k0s())}function ep(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.recovered_balance))}}function tp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function np(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function ip(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function ap(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function sp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function op(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function lp(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function rp(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"button",57),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onForceClosingClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function cp(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function pp(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function mp(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function up(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,cp,2,0,"p",53)(2,pp,2,0,"p",53)(3,mp,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!t.pendingForceClosingChannels||!(null!=t.pendingForceClosingChannels&&t.pendingForceClosingChannels.data)||(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function dp(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,we,t.pendingForceClosingChannels&&(null==t.pendingForceClosingChannels?null:t.pendingForceClosingChannels.data)&&(null==t.pendingForceClosingChannels||null==t.pendingForceClosingChannels.data?null:t.pendingForceClosingChannels.data.length)>0))}}function hp(n,s){1&n&&e.nrm(0,"tr",55)}function _p(n,s){1&n&&e.nrm(0,"tr",56)}function fp(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function gp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Cp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.closing_txid)}}function yp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function bp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function Fp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function xp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function vp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Tp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function Sp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function kp(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function Rp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function Ep(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function Ip(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function Lp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function wp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function jp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function Gp(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function Dp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function Np(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function Pp(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"button",58),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onClosingClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function $p(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function Ap(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function Mp(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Bp(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,$p,2,0,"p",53)(2,Ap,2,0,"p",53)(3,Mp,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!t.pendingClosingChannels||!(null!=t.pendingClosingChannels&&t.pendingClosingChannels.data)||(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Op(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,we,t.pendingClosingChannels&&(null==t.pendingClosingChannels?null:t.pendingClosingChannels.data)&&(null==t.pendingClosingChannels||null==t.pendingClosingChannels.data?null:t.pendingClosingChannels.data.length)>0))}}function Vp(n,s){1&n&&e.nrm(0,"tr",55)}function Yp(n,s){1&n&&e.nrm(0,"tr",56)}function Xp(n,s){1&n&&e.nrm(0,"mat-progress-bar",40)}function Up(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Closing Tx ID"),e.k0s())}function Hp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.closing_txid)}}function qp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Peer"),e.k0s())}function zp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_alias)}}function Jp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Pubkey"),e.k0s())}function Wp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.remote_node_pub)}}function Qp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Channel Point"),e.k0s())}function Zp(n,s){if(1&n&&(e.j41(0,"td",42)(1,"div",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,z,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(t.channel.channel_point)}}function Kp(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Initiator"),e.k0s())}function em(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.channel.initiator,"initiator_"))}}function tm(n,s){1&n&&(e.j41(0,"th",41),e.EFF(1,"Commitment Type"),e.k0s())}function nm(n,s){if(1&n&&(e.j41(0,"td",42),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.brH(2,1,t.channel.commitment_type,"commitment_type","_"))}}function im(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Limbo Balance (Sats)"),e.k0s())}function am(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.limbo_balance))}}function sm(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Capacity (Sats)"),e.k0s())}function om(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.capacity))}}function lm(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function rm(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.local_balance))}}function cm(n,s){1&n&&(e.j41(0,"th",45),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function pm(n,s){if(1&n&&(e.j41(0,"td",42)(1,"span",46),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.channel.remote_balance))}}function mm(n,s){1&n&&(e.j41(0,"th",47)(1,"div",48),e.EFF(2,"Actions"),e.k0s()())}function um(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"button",59),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onWaitClosingClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function dm(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No pending channel."),e.k0s())}function hm(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting pending channels..."),e.k0s())}function _m(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function fm(n,s){if(1&n&&(e.j41(0,"td",52),e.DNE(1,dm,2,0,"p",53)(2,hm,2,0,"p",53)(3,_m,2,1,"p",53),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!t.pendingWaitClosingChannels||!(null!=t.pendingWaitClosingChannels&&t.pendingWaitClosingChannels.data)||(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function gm(n,s){if(1&n&&e.nrm(0,"tr",54),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,Z1,t.pendingWaitClosingChannels&&(null==t.pendingWaitClosingChannels?null:t.pendingWaitClosingChannels.data)&&(null==t.pendingWaitClosingChannels||null==t.pendingWaitClosingChannels.data?null:t.pendingWaitClosingChannels.data.length)>0))}}function Cm(n,s){1&n&&e.nrm(0,"tr",55)}function ym(n,s){1&n&&e.nrm(0,"tr",56)}let bm=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.commonService=i,this.PAGE_ID="peers_channels",this.openTableSetting={tableId:"pending_open",recordsPerPage:l.md,sortBy:"capacity",sortOrder:l.oi.DESCENDING},this.forceClosingTableSetting={tableId:"pending_force_closing",recordsPerPage:l.md,sortBy:"limbo_balance",sortOrder:l.oi.DESCENDING},this.closingTableSetting={tableId:"pending_closing",recordsPerPage:l.md,sortBy:"capacity",sortOrder:l.oi.DESCENDING},this.waitingCloseTableSetting={tableId:"pending_waiting_close",recordsPerPage:l.md,sortBy:"limbo_balance",sortOrder:l.oi.DESCENDING},this.information={},this.pendingChannels={},this.displayedOpenColumns=[],this.pendingOpenChannelsLength=0,this.pendingOpenChannels=new c.I6([]),this.displayedForceClosingColumns=[],this.pendingForceClosingChannelsLength=0,this.pendingForceClosingChannels=new c.I6([]),this.displayedClosingColumns=[],this.pendingClosingChannelsLength=0,this.pendingClosingChannels=new c.I6([]),this.displayedWaitClosingColumns=[],this.pendingWaitClosingChannelsLength=0,this.pendingWaitClosingChannels=new c.I6([]),this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.openTableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.openTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.openTableSetting.tableId),this.displayedOpenColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.openTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.openTableSetting.columnSelection)),this.displayedOpenColumns.push("actions"),this.logger.info(this.displayedOpenColumns),this.forceClosingTableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.forceClosingTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.forceClosingTableSetting.tableId),this.displayedForceClosingColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.forceClosingTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.forceClosingTableSetting.columnSelection)),this.displayedForceClosingColumns.push("actions"),this.logger.info(this.displayedForceClosingColumns),this.closingTableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.closingTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.closingTableSetting.tableId),this.displayedClosingColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.closingTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.closingTableSetting.columnSelection)),this.displayedClosingColumns.push("actions"),this.logger.info(this.displayedClosingColumns),this.waitingCloseTableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.waitingCloseTableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.waitingCloseTableSetting.tableId),this.displayedWaitClosingColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.waitingCloseTableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.waitingCloseTableSetting.columnSelection)),this.displayedWaitClosingColumns.push("actions"),this.logger.info(this.displayedWaitClosingColumns)}),this.store.select(y.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.pendingChannels=t.pendingChannels,this.pendingChannels.pending_open_channels&&this.pendingChannels.pending_open_channels.length&&this.pendingChannels.pending_open_channels.length>0&&this.loadOpenChannelsTable(this.pendingChannels.pending_open_channels),this.pendingChannels.pending_force_closing_channels&&this.pendingChannels.pending_force_closing_channels.length&&this.pendingChannels.pending_force_closing_channels.length>0&&this.loadForceClosingChannelsTable(this.pendingChannels.pending_force_closing_channels),this.pendingChannels.pending_closing_channels&&this.pendingChannels.pending_closing_channels.length&&this.pendingChannels.pending_closing_channels.length>0&&this.loadClosingChannelsTable(this.pendingChannels.pending_closing_channels),this.pendingChannels.waiting_close_channels&&this.pendingChannels.waiting_close_channels.length&&this.pendingChannels.waiting_close_channels.length>0&&this.loadWaitClosingChannelsTable(this.pendingChannels.waiting_close_channels),this.logger.info(t)})}ngAfterViewInit(){this.pendingChannels.pending_open_channels&&this.pendingChannels.pending_open_channels.length&&this.pendingChannels.pending_open_channels.length>0&&this.loadOpenChannelsTable(this.pendingChannels.pending_open_channels),this.pendingChannels.pending_force_closing_channels&&this.pendingChannels.pending_force_closing_channels.length&&this.pendingChannels.pending_force_closing_channels.length>0&&this.loadForceClosingChannelsTable(this.pendingChannels.pending_force_closing_channels),this.pendingChannels.pending_closing_channels&&this.pendingChannels.pending_closing_channels.length&&this.pendingChannels.pending_closing_channels.length>0&&this.loadClosingChannelsTable(this.pendingChannels.pending_closing_channels),this.pendingChannels.waiting_close_channels&&this.pendingChannels.waiting_close_channels.length&&this.pendingChannels.waiting_close_channels.length>0&&this.loadWaitClosingChannelsTable(this.pendingChannels.waiting_close_channels)}onOpenClick(t){const a=JSON.parse(JSON.stringify(t,["commit_weight","confirmation_height","fee_per_kw","commit_fee"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o={};Object.assign(o,a,i),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Opening Channel Information",message:[[{key:"channel_point",value:o.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_node_pub",value:o.remote_node_pub,title:"Peer Node Pubkey",width:100,type:l.UN.STRING}],[{key:"remote_alias",value:o.remote_alias,title:"Peer Alias",width:100,type:l.UN.STRING}],[{key:"capacity",value:o.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"confirmation_height",value:o.confirmation_height,title:"Confirmation Height",width:25,type:l.UN.NUMBER},{key:"local_balance",value:o.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:o.remote_balance,title:"Remote Balance",width:25,type:l.UN.NUMBER}],[{key:"fee_per_kw",value:o.fee_per_kw,title:"Fee/KW",width:25,type:l.UN.NUMBER},{key:"commit_weight",value:o.commit_weight,title:"Commit Weight",width:25,type:l.UN.NUMBER},{key:"commit_fee",value:o.commit_fee,title:"Commit Fee",width:50,type:l.UN.NUMBER}]]}}}))}onBumpFee(t){this.store.dispatch((0,E.xO)({payload:{data:{pendingChannel:t,component:Ke}}}))}onForceClosingClick(t){const a=JSON.parse(JSON.stringify(t,["closing_txid","limbo_balance","maturity_height","blocks_til_maturity","recovered_balance"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o={};Object.assign(o,a,i),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Force Closing Channel Information",message:[[{key:"closing_txid",value:o.closing_txid,title:"Closing Transaction ID",width:100,type:l.UN.STRING}],[{key:"channel_point",value:o.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:o.remote_alias,title:"Peer Alias",width:25,type:l.UN.STRING},{key:"remote_node_pub",value:o.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.UN.STRING}],[{key:"capacity",value:o.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"limbo_balance",value:o.limbo_balance,title:"Limbo Balance",width:25,type:l.UN.NUMBER},{key:"local_balance",value:o.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:o.remote_balance,title:"Remote Balance",width:25,type:l.UN.NUMBER}],[{key:"maturity_height",value:o.maturity_height,title:"Maturity Height",width:25,type:l.UN.NUMBER},{key:"blocks_til_maturity",value:o.blocks_til_maturity,title:"Blocks Till Maturity",width:25,type:l.UN.NUMBER},{key:"recovered_balance",value:o.recovered_balance,title:"Recovered Balance",width:50,type:l.UN.NUMBER}]]}}}))}onClosingClick(t){const a=JSON.parse(JSON.stringify(t,["closing_txid"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o={};Object.assign(o,a,i),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Closing Channel Information",message:[[{key:"closing_txid",value:o.closing_txid,title:"Closing Transaction ID",width:50,type:l.UN.STRING}],[{key:"channel_point",value:o.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:o.remote_alias,title:"Peer Alias",width:25,type:l.UN.STRING},{key:"remote_node_pub",value:o.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.UN.STRING}],[{key:"capacity",value:o.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"local_balance",value:o.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:o.remote_balance,title:"Remote Balance",width:50,type:l.UN.NUMBER}]]}}}))}onWaitClosingClick(t){const a=JSON.parse(JSON.stringify(t,["limbo_balance"],2)),i=JSON.parse(JSON.stringify(t.channel,["remote_alias","channel_point","remote_balance","local_balance","remote_node_pub","capacity"],2)),o=JSON.parse(JSON.stringify(t.commitments,["local_txid"],2)),r={};Object.assign(r,a,i,o),this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Wait Closing Channel Information",message:[[{key:"local_txid",value:r.local_txid,title:"Transaction ID",width:100,type:l.UN.STRING}],[{key:"channel_point",value:r.channel_point,title:"Channel Point",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"remote_alias",value:r.remote_alias,title:"Peer Alias",width:25,type:l.UN.STRING},{key:"remote_node_pub",value:r.remote_node_pub,title:"Peer Node Pubkey",width:75,type:l.UN.STRING}],[{key:"capacity",value:r.capacity,title:"Capacity",width:25,type:l.UN.NUMBER},{key:"limbo_balance",value:r.limbo_balance,title:"Limbo Balance",width:25,type:l.UN.NUMBER},{key:"local_balance",value:r.local_balance,title:"Local Balance",width:25,type:l.UN.NUMBER},{key:"remote_balance",value:r.remote_balance,title:"Remote Balance",width:25,type:l.UN.NUMBER}]]}}}))}loadOpenChannelsTable(t){this.pendingOpenChannelsLength=t.length?t.length:0,this.pendingOpenChannels=new c.I6([...t]),this.pendingOpenChannels.sort=this.sort,this.pendingOpenChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingOpenChannels)}loadForceClosingChannelsTable(t){this.pendingForceClosingChannelsLength=t.length?t.length:0,this.pendingForceClosingChannels=new c.I6([...t]),this.pendingForceClosingChannels.sort=this.sort,this.pendingForceClosingChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingForceClosingChannels)}loadClosingChannelsTable(t){this.pendingClosingChannelsLength=t.length?t.length:0,this.pendingClosingChannels=new c.I6([...t]),this.pendingClosingChannels.sort=this.sort,this.pendingClosingChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingClosingChannels)}loadWaitClosingChannelsTable(t){this.pendingWaitClosingChannelsLength=t.length?t.length:0,this.pendingWaitClosingChannels=new c.I6([...t]),this.pendingWaitClosingChannels.sort=this.sort,this.pendingWaitClosingChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.logger.info(this.pendingWaitClosingChannels)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-pending-table"]],viewQuery:function(a,i){if(1&a&&e.GBs(k.B4,5),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Channels")}])],decls:202,vars:52,consts:[["table",""],["fxLayout","column",1,"mb-2"],[1,"page-title"],["displayMode","flat",1,"mt-1"],["mode","indeterminate",4,"ngIf"],["fxLayout","column",1,"flat-expansion-panel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","remote_alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_node_pub"],["matColumnDef","channel_point"],["matColumnDef","initiator"],["matColumnDef","commitment_type"],["matColumnDef","confirmation_height"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","capacity"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_pending_open"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","","fxLayoutAlign","start center",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","closing_txid"],["matColumnDef","limbo_balance"],["matColumnDef","maturity_height"],["matColumnDef","blocks_til_maturity"],["matColumnDef","recovered_balance"],["matColumnDef","no_pending_force_closing"],["matColumnDef","no_pending_closing"],["matColumnDef","no_pending_wait_closing"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","","fxLayoutAlign","start center",3,"ngClass"],["mat-header-row",""],["mat-row",""],["mat-stroked-button","","color","primary","type","button","tabindex","2",1,"table-actions-button",3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","3",1,"table-actions-button",3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"]],template:function(a,i){1&a&&(e.j41(0,"div",1)(1,"span",2),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.j41(4,"mat-accordion",3),e.DNE(5,K1,1,0,"mat-progress-bar",4),e.j41(6,"mat-expansion-panel",5)(7,"mat-expansion-panel-header")(8,"mat-panel-title"),e.EFF(9),e.k0s()(),e.j41(10,"div",6),e.DNE(11,ec,1,0,"mat-progress-bar",4),e.j41(12,"table",7,0),e.qex(14,8),e.DNE(15,tc,2,0,"th",9)(16,nc,4,4,"td",10),e.bVm(),e.qex(17,11),e.DNE(18,ic,2,0,"th",9)(19,ac,4,4,"td",10),e.bVm(),e.qex(20,12),e.DNE(21,sc,2,0,"th",9)(22,oc,4,4,"td",10),e.bVm(),e.qex(23,13),e.DNE(24,lc,2,0,"th",9)(25,rc,3,4,"td",10),e.bVm(),e.qex(26,14),e.DNE(27,cc,2,0,"th",9)(28,pc,3,5,"td",10),e.bVm(),e.qex(29,15),e.DNE(30,mc,2,0,"th",16)(31,uc,4,3,"td",10),e.bVm(),e.qex(32,17),e.DNE(33,dc,2,0,"th",16)(34,hc,4,3,"td",10),e.bVm(),e.qex(35,18),e.DNE(36,_c,2,0,"th",16)(37,fc,4,3,"td",10),e.bVm(),e.qex(38,19),e.DNE(39,gc,2,0,"th",16)(40,Cc,4,3,"td",10),e.bVm(),e.qex(41,20),e.DNE(42,yc,2,0,"th",16)(43,bc,4,3,"td",10),e.bVm(),e.qex(44,21),e.DNE(45,Fc,2,0,"th",16)(46,xc,4,3,"td",10),e.bVm(),e.qex(47,22),e.DNE(48,vc,2,0,"th",16)(49,Tc,4,3,"td",10),e.bVm(),e.qex(50,23),e.DNE(51,Sc,3,0,"th",24)(52,kc,8,0,"td",25),e.bVm(),e.qex(53,26),e.DNE(54,Lc,4,3,"td",27),e.bVm(),e.DNE(55,wc,1,3,"tr",28)(56,jc,1,0,"tr",29)(57,Gc,1,0,"tr",30),e.k0s()()(),e.DNE(58,Dc,1,0,"mat-progress-bar",4),e.j41(59,"mat-expansion-panel",5)(60,"mat-expansion-panel-header")(61,"mat-panel-title"),e.EFF(62),e.k0s()(),e.j41(63,"div",6)(64,"table",31,0),e.qex(66,32),e.DNE(67,Nc,2,0,"th",9)(68,Pc,4,4,"td",10),e.bVm(),e.qex(69,8),e.DNE(70,$c,2,0,"th",9)(71,Ac,4,4,"td",10),e.bVm(),e.qex(72,11),e.DNE(73,Mc,2,0,"th",9)(74,Bc,4,4,"td",10),e.bVm(),e.qex(75,12),e.DNE(76,Oc,2,0,"th",9)(77,Vc,4,4,"td",10),e.bVm(),e.qex(78,13),e.DNE(79,Yc,2,0,"th",9)(80,Xc,3,4,"td",10),e.bVm(),e.qex(81,14),e.DNE(82,Uc,2,0,"th",9)(83,Hc,3,5,"td",10),e.bVm(),e.qex(84,33),e.DNE(85,qc,2,0,"th",16)(86,zc,4,3,"td",10),e.bVm(),e.qex(87,34),e.DNE(88,Jc,2,0,"th",16)(89,Wc,4,3,"td",10),e.bVm(),e.qex(90,35),e.DNE(91,Qc,2,0,"th",16)(92,Zc,4,3,"td",10),e.bVm(),e.qex(93,36),e.DNE(94,Kc,2,0,"th",16)(95,ep,4,3,"td",10),e.bVm(),e.qex(96,20),e.DNE(97,tp,2,0,"th",16)(98,np,4,3,"td",10),e.bVm(),e.qex(99,21),e.DNE(100,ip,2,0,"th",16)(101,ap,4,3,"td",10),e.bVm(),e.qex(102,22),e.DNE(103,sp,2,0,"th",16)(104,op,4,3,"td",10),e.bVm(),e.qex(105,23),e.DNE(106,lp,3,0,"th",24)(107,rp,3,0,"td",25),e.bVm(),e.qex(108,37),e.DNE(109,up,4,3,"td",27),e.bVm(),e.DNE(110,dp,1,3,"tr",28)(111,hp,1,0,"tr",29)(112,_p,1,0,"tr",30),e.k0s()()(),e.DNE(113,fp,1,0,"mat-progress-bar",4),e.j41(114,"mat-expansion-panel",5)(115,"mat-expansion-panel-header")(116,"mat-panel-title"),e.EFF(117),e.k0s()(),e.j41(118,"div",6)(119,"table",31,0),e.qex(121,32),e.DNE(122,gp,2,0,"th",9)(123,Cp,4,4,"td",10),e.bVm(),e.qex(124,8),e.DNE(125,yp,2,0,"th",9)(126,bp,4,4,"td",10),e.bVm(),e.qex(127,11),e.DNE(128,Fp,2,0,"th",9)(129,xp,4,4,"td",10),e.bVm(),e.qex(130,12),e.DNE(131,vp,2,0,"th",9)(132,Tp,4,4,"td",10),e.bVm(),e.qex(133,13),e.DNE(134,Sp,2,0,"th",9)(135,kp,3,4,"td",10),e.bVm(),e.qex(136,14),e.DNE(137,Rp,2,0,"th",9)(138,Ep,3,5,"td",10),e.bVm(),e.qex(139,20),e.DNE(140,Ip,2,0,"th",16)(141,Lp,4,3,"td",10),e.bVm(),e.qex(142,21),e.DNE(143,wp,2,0,"th",16)(144,jp,4,3,"td",10),e.bVm(),e.qex(145,22),e.DNE(146,Gp,2,0,"th",16)(147,Dp,4,3,"td",10),e.bVm(),e.qex(148,23),e.DNE(149,Np,3,0,"th",24)(150,Pp,3,0,"td",25),e.bVm(),e.qex(151,38),e.DNE(152,Bp,4,3,"td",27),e.bVm(),e.DNE(153,Op,1,3,"tr",28)(154,Vp,1,0,"tr",29)(155,Yp,1,0,"tr",30),e.k0s()()(),e.DNE(156,Xp,1,0,"mat-progress-bar",4),e.j41(157,"mat-expansion-panel",5)(158,"mat-expansion-panel-header")(159,"mat-panel-title"),e.EFF(160),e.k0s()(),e.j41(161,"div",6)(162,"table",31,0),e.qex(164,32),e.DNE(165,Up,2,0,"th",9)(166,Hp,4,4,"td",10),e.bVm(),e.qex(167,8),e.DNE(168,qp,2,0,"th",9)(169,zp,4,4,"td",10),e.bVm(),e.qex(170,11),e.DNE(171,Jp,2,0,"th",9)(172,Wp,4,4,"td",10),e.bVm(),e.qex(173,12),e.DNE(174,Qp,2,0,"th",9)(175,Zp,4,4,"td",10),e.bVm(),e.qex(176,13),e.DNE(177,Kp,2,0,"th",9)(178,em,3,4,"td",10),e.bVm(),e.qex(179,14),e.DNE(180,tm,2,0,"th",9)(181,nm,3,5,"td",10),e.bVm(),e.qex(182,33),e.DNE(183,im,2,0,"th",16)(184,am,4,3,"td",10),e.bVm(),e.qex(185,20),e.DNE(186,sm,2,0,"th",16)(187,om,4,3,"td",10),e.bVm(),e.qex(188,21),e.DNE(189,lm,2,0,"th",16)(190,rm,4,3,"td",10),e.bVm(),e.qex(191,22),e.DNE(192,cm,2,0,"th",16)(193,pm,4,3,"td",10),e.bVm(),e.qex(194,23),e.DNE(195,mm,3,0,"th",24)(196,um,3,0,"td",25),e.bVm(),e.qex(197,39),e.DNE(198,fm,4,3,"td",27),e.bVm(),e.DNE(199,gm,1,3,"tr",28)(200,Cm,1,0,"tr",29)(201,ym,1,0,"tr",30),e.k0s()()()()()),2&a&&(e.R7$(2),e.SpI("Total Limbo Balance: ",e.bMT(3,38,i.pendingChannels.total_limbo_balance)," Sats"),e.R7$(3),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Open (",i.pendingOpenChannelsLength,")"),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.openTableSetting.sortBy)("matSortDirection",i.openTableSetting.sortOrder)("dataSource",i.pendingOpenChannels)("ngClass",e.eq3(40,ye,""!==i.errorMessage)),e.R7$(43),e.Y8G("matFooterRowDef",e.lJ4(42,z1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedOpenColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedOpenColumns),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Force Closing (",i.pendingForceClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",i.forceClosingTableSetting.sortBy)("matSortDirection",i.forceClosingTableSetting.sortOrder)("dataSource",i.pendingForceClosingChannels)("ngClass",e.eq3(43,ye,""!==i.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(45,J1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedForceClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedForceClosingColumns),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Pending Closing (",i.pendingClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",i.closingTableSetting.sortBy)("matSortDirection",i.closingTableSetting.sortOrder)("dataSource",i.pendingClosingChannels)("ngClass",e.eq3(46,ye,""!==i.errorMessage)),e.R7$(34),e.Y8G("matFooterRowDef",e.lJ4(48,W1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedClosingColumns),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(4),e.SpI("Waiting Close (",i.pendingWaitClosingChannelsLength,")"),e.R7$(2),e.Y8G("matSortActive",i.waitingCloseTableSetting.sortBy)("matSortDirection",i.waitingCloseTableSetting.sortOrder)("dataSource",i.pendingWaitClosingChannels)("ngClass",e.eq3(49,ye,""!==i.errorMessage)),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(51,Q1)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedWaitClosingColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedWaitClosingColumns))},dependencies:[d.YU,d.bT,d.B3,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,U.BS,U.GK,U.Z2,U.WN,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,A.Ld,d.QX,q.VD],styles:["tr.mat-footer-row[_ngcontent-%COMP%] td.mat-footer-cell[_ngcontent-%COMP%]{border-bottom:none}"]})}return n})();const Fm=()=>["all"],xm=n=>({"error-border":n,"overflow-auto":!0}),vm=()=>["no_closed_channel"],ce=n=>({width:n}),Tm=n=>({"display-none":n});function Sm(n,s){if(1&n&&(e.j41(0,"mat-option",36),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function km(n,s){1&n&&e.nrm(0,"mat-progress-bar",37)}function Rm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Close Type"),e.k0s())}function Em(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"mat-icon",41),e.EFF(3,"info_outline"),e.k0s(),e.EFF(4),e.k0s()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(2),e.Y8G("matTooltip",a.channelClosureType[t.close_type].tooltip),e.R7$(2),e.SpI(" ",a.channelClosureType[t.close_type].name," ")}}function Im(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Peer"),e.k0s())}function Lm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_alias)}}function wm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Pubkey"),e.k0s())}function jm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_pubkey)}}function Gm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Channel Point"),e.k0s())}function Dm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function Nm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Channel ID"),e.k0s())}function Pm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function $m(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Closing Tx Hash"),e.k0s())}function Am(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.closing_tx_hash)}}function Mm(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Chain Hash"),e.k0s())}function Bm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ce,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chain_hash)}}function Om(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Open Initiator"),e.k0s())}function Vm(n,s){if(1&n&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.open_initiator,"initiator_"))}}function Ym(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Close Initiator"),e.k0s())}function Xm(n,s){if(1&n&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"camelcaseWithReplace"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,t.close_initiator,"initiator_"))}}function Um(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Timelocked Balance (Sats)"),e.k0s())}function Hm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.time_locked_balance)," ")}}function qm(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function zm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.capacity)," ")}}function Jm(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Close Height"),e.k0s())}function Wm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.close_height)," ")}}function Qm(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Settled Balance (Sats)"),e.k0s())}function Zm(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.settled_balance)," ")}}function Km(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",46)(1,"div",47)(2,"mat-select",48),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",49),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function eu(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",39)(1,"span",45)(2,"button",50),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onClosedChannelClick(o,i))}),e.EFF(3,"View Info"),e.k0s()()()}}function tu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No closed channel available."),e.k0s())}function nu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting closed channels..."),e.k0s())}function iu(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function au(n,s){if(1&n&&(e.j41(0,"td",51),e.DNE(1,tu,2,0,"p",52)(2,nu,2,0,"p",52)(3,iu,2,1,"p",52),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.closedChannels&&t.closedChannels.data)||(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function su(n,s){if(1&n&&e.nrm(0,"tr",53),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,Tm,(null==t.closedChannels?null:t.closedChannels.data)&&(null==t.closedChannels||null==t.closedChannels.data?null:t.closedChannels.data.length)>0))}}function ou(n,s){1&n&&e.nrm(0,"tr",54)}function lu(n,s){1&n&&e.nrm(0,"tr",55)}let ru=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.commonService=i,this.camelCaseWithReplace=o,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"closed",recordsPerPage:l.md,sortBy:"close_type",sortOrder:l.oi.DESCENDING},this.channelClosureType=l.tj,this.faHistory=b.Int,this.displayedColumns=[],this.closedChannelsData=[],this.closedChannels=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Bw).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.closedChannelsData=t.closedChannels,this.closedChannelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadClosedChannelsTable(this.closedChannelsData),this.logger.info(t)})}ngAfterViewInit(){this.closedChannelsData.length>0&&this.loadClosedChannelsTable(this.closedChannelsData)}applyFilter(){this.closedChannels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.closedChannels.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=JSON.stringify(t).toLowerCase();break;case"close_type":i=t.close_type&&this.channelClosureType[t.close_type]&&this.channelClosureType[t.close_type].name?this.channelClosureType[t.close_type].name.toLowerCase():"";break;case"open_initiator":case"close_initiator":i=this.camelCaseWithReplace.transform(t[this.selFilterBy]||"","initiator_").trim().toLowerCase();break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"close_type"===this.selFilterBy||"open_initiator"===this.selFilterBy||"close_initiator"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}onClosedChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Closed Channel Information",message:[[{key:"close_type",value:this.channelClosureType[t.close_type].name,title:"Close Type",width:30,type:l.UN.STRING},{key:"settled_balance",value:t.settled_balance,title:"Settled Balance",width:30,type:l.UN.NUMBER},{key:"time_locked_balance",value:t.time_locked_balance,title:"Time Locked Balance",width:40,type:l.UN.NUMBER}],[{key:"chan_id",value:t.chan_id,title:"Channel ID",width:30},{key:"capacity",value:t.capacity,title:"Capacity",width:30,type:l.UN.NUMBER},{key:"close_height",value:t.close_height,title:"Close Height",width:40,type:l.UN.NUMBER}],[{key:"remote_alias",value:t.remote_alias,title:"Peer Alias",width:30},{key:"remote_pubkey",value:t.remote_pubkey,title:"Peer Public Key",width:70}],[{key:"channel_point",value:t.channel_point,title:"Channel Point",width:100}],[{key:"closing_tx_hash",value:t.closing_tx_hash,title:"Closing Transaction Hash",width:100,type:l.UN.STRING}]]}}}))}loadClosedChannelsTable(t){this.closedChannels=new c.I6([...t]),this.closedChannels.sort=this.sort,this.closedChannels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.closedChannels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.closedChannels)}onDownloadCSV(){this.closedChannels.data&&this.closedChannels.data.length>0&&this.commonService.downloadFile(this.closedChannels.data,"Closed-channels")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(N.h),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-closed-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Channels")}])],decls:66,vars:18,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","close_type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_alias"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","chan_id"],["matColumnDef","closing_tx_hash"],["matColumnDef","chain_hash"],["matColumnDef","open_initiator"],["matColumnDef","close_initiator"],["matColumnDef","time_locked_balance"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","capacity"],["matColumnDef","close_height"],["matColumnDef","settled_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","no_closed_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout","row","fxLayoutAlign","start center"],[1,"info-icon","info-icon-text",3,"matTooltip"],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,Sm,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,km,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,Rm,2,0,"th",13)(20,Em,5,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Im,2,0,"th",13)(23,Lm,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,wm,2,0,"th",13)(26,jm,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,Gm,2,0,"th",13)(29,Dm,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,Nm,2,0,"th",13)(32,Pm,4,4,"td",14),e.bVm(),e.qex(33,19),e.DNE(34,$m,2,0,"th",13)(35,Am,4,4,"td",14),e.bVm(),e.qex(36,20),e.DNE(37,Mm,2,0,"th",13)(38,Bm,4,4,"td",14),e.bVm(),e.qex(39,21),e.DNE(40,Om,2,0,"th",13)(41,Vm,3,4,"td",14),e.bVm(),e.qex(42,22),e.DNE(43,Ym,2,0,"th",13)(44,Xm,3,4,"td",14),e.bVm(),e.qex(45,23),e.DNE(46,Um,2,0,"th",24)(47,Hm,4,3,"td",14),e.bVm(),e.qex(48,25),e.DNE(49,qm,2,0,"th",24)(50,zm,4,3,"td",14),e.bVm(),e.qex(51,26),e.DNE(52,Jm,2,0,"th",24)(53,Wm,4,3,"td",14),e.bVm(),e.qex(54,27),e.DNE(55,Qm,2,0,"th",24)(56,Zm,4,3,"td",14),e.bVm(),e.qex(57,28),e.DNE(58,Km,6,0,"th",29)(59,eu,4,0,"td",14),e.bVm(),e.qex(60,30),e.DNE(61,au,4,3,"td",31),e.bVm(),e.DNE(62,su,1,3,"tr",32)(63,ou,1,0,"tr",33)(64,lu,1,0,"tr",34),e.k0s()(),e.nrm(65,"mat-paginator",35),e.k0s()}2&a&&(e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,Fm).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.closedChannels)("ngClass",e.eq3(15,xm,""!==i.errorMessage)),e.R7$(46),e.Y8G("matFooterRowDef",e.lJ4(17,vm)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,ie.An,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,d.QX,q.VD]})}return n})();const cu=()=>["all"],pu=n=>({"error-border":n}),mu=()=>["no_channel"],uu=n=>({"display-none":n});function du(n,s){if(1&n&&(e.j41(0,"mat-option",33),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function hu(n,s){1&n&&e.nrm(0,"mat-progress-bar",34)}function _u(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Amount (Sats)"),e.k0s())}function fu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==t?null:t.amount)," ")}}function gu(n,s){if(1&n&&(e.qex(0),e.DNE(1,fu,3,3,"span",39),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Cu(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,gu,2,1,"ng-container",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" Active HTLCs: ",null==t||null==t.pending_htlcs?null:t.pending_htlcs.length," "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function yu(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Alias/Incoming"),e.k0s())}function bu(n,s){if(1&n&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null!=t&&t.incoming?"Yes":"No"," ")}}function Fu(n,s){if(1&n&&(e.qex(0),e.DNE(1,bu,2,1,"span",41),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function xu(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,Fu,2,1,"ng-container",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(null==t?null:t.remote_alias),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function vu(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Forwarding Channel"),e.k0s())}function Tu(n,s){if(1&n&&(e.j41(0,"span",37),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null==t?null:t.forwarding_channel," ")}}function Su(n,s){if(1&n&&(e.qex(0),e.DNE(1,Tu,2,1,"span",41),e.bVm()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function ku(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",37),e.EFF(2),e.k0s(),e.DNE(3,Su,2,1,"ng-container",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Ru(n,s){1&n&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"HTLC Index"),e.k0s()())}function Eu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==t?null:t.htlc_index)," ")}}function Iu(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Eu,3,3,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Lu(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Iu,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function wu(n,s){1&n&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Forwarding HTLC Index"),e.k0s()())}function ju(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.bMT(2,1,null==t?null:t.forwarding_htlc_index)," ")}}function Gu(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,ju,3,3,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Du(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Gu,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Nu(n,s){1&n&&(e.j41(0,"th",42)(1,"span",40),e.EFF(2,"Expiration Height"),e.k0s()())}function Pu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,null==t?null:t.expiration_height,"1.0-0")," ")}}function $u(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Pu,3,4,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Au(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,$u,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Mu(n,s){1&n&&(e.j41(0,"th",43)(1,"span",40),e.EFF(2,"Hash Lock"),e.k0s()())}function Bu(n,s){if(1&n&&(e.j41(0,"span",40),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.SpI(" ",null==t?null:t.hash_lock," ")}}function Ou(n,s){if(1&n&&(e.j41(0,"span"),e.DNE(1,Bu,2,1,"span",39),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Vu(n,s){if(1&n&&(e.j41(0,"td",44)(1,"span",40),e.EFF(2),e.k0s(),e.DNE(3,Ou,2,1,"span",38),e.k0s()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(" "),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function Yu(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",48),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Xu(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",53)(1,"button",54),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2).$implicit,r=e.XpG();return e.Njj(r.onHTLCClick(i,o))}),e.EFF(2),e.k0s()()}if(2&n){const t=s.index;e.R7$(2),e.SpI("View ",t+1,"")}}function Uu(n,s){if(1&n&&(e.j41(0,"div"),e.DNE(1,Xu,3,1,"div",52),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.Y8G("ngForOf",null==t?null:t.pending_htlcs)}}function Hu(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",49)(1,"span",50)(2,"button",51),e.bIt("click",function(){const i=e.eBV(t).$implicit;return e.Njj(i.is_expanded=!i.is_expanded)}),e.EFF(3),e.k0s()(),e.DNE(4,Uu,2,1,"div",38),e.k0s()}if(2&n){const t=s.$implicit;e.R7$(3),e.JRh(t.is_expanded?"Hide":"Show"),e.R7$(),e.Y8G("ngIf",t.is_expanded)}}function qu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No active htlc available."),e.k0s())}function zu(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting active htlcs..."),e.k0s())}function Ju(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Wu(n,s){if(1&n&&(e.j41(0,"td",55),e.DNE(1,qu,2,0,"p",38)(2,zu,2,0,"p",38)(3,Ju,2,1,"p",38),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Qu(n,s){if(1&n&&e.nrm(0,"tr",56),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,uu,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Zu(n,s){1&n&&e.nrm(0,"tr",57)}function Ku(n,s){1&n&&e.nrm(0,"tr",58)}let ed=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.camelCaseWithReplace=o,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:l.md,sortBy:"expiration_height",sortOrder:l.oi.DESCENDING},this.channels=new c.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsJSONArr=t.channels?.filter(a=>a.pending_htlcs&&a.pending_htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"HTLC Information",message:[[{key:"remote_alias",value:a.remote_alias,title:"Alias",width:100,type:l.UN.STRING}],[{key:"amount",value:t.amount,title:"Amount (Sats)",width:50,type:l.UN.NUMBER},{key:"incoming",value:t.incoming?"Yes":"No",title:"Incoming",width:50,type:l.UN.STRING}],[{key:"expiration_height",value:t.expiration_height,title:"Expiration Height",width:50,type:l.UN.NUMBER},{key:"hash_lock",value:t.hash_lock,title:"Hash Lock",width:50,type:l.UN.STRING}]]}}}))}onChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{channel:t,showCopy:!0,component:Ee}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,a)=>{let i="";return i="all"===this.selFilterBy?(t.remote_alias?t.remote_alias.toLowerCase():"")+t.pending_htlcs?.map(o=>JSON.stringify(o)+(o.incoming?"yes":"no")):typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString(),i.includes(a)}}loadHTLCsTable(t){this.channels=new c.I6(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>{switch(i){case"amount":return this.commonService.sortByKey(a.pending_htlcs,i,"number",this.sort?.direction),a.pending_htlcs&&a.pending_htlcs.length?a.pending_htlcs.length:null;case"incoming":return this.commonService.sortByKey(a.pending_htlcs,i,"boolean",this.sort?.direction),a.remote_alias?a.remote_alias:a.remote_pubkey?a.remote_pubkey:null;case"expiration_height":case"hash_lock":return this.commonService.sortByKey(a.pending_htlcs,i,"number",this.sort?.direction),a;default:return a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.flattenHTLCs(),"ActiveHTLCs")}flattenHTLCs(){return JSON.parse(JSON.stringify(this.channels.data))?.reduce((i,o)=>i.concat(o.pending_htlcs?o.pending_htlcs:o),[])}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-active-htlcs-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("HTLCs")}])],decls:48,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","incoming"],["matColumnDef","forwarding_channel"],["matColumnDef","htlc_index"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","forwarding_htlc_index"],["matColumnDef","expiration_height"],["matColumnDef","hash_lock"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pl-3 htlc-row-span",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","","class","px-2",4,"matHeaderCellDef"],["mat-cell","","class","px-2","fxLayout","column","fxLayoutAlign","center end",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayoutAlign","start center",1,"htlc-row-span"],[4,"ngIf"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"pl-3","htlc-row-span"],["mat-cell","",1,"pl-3"],["mat-header-cell","",1,"px-2"],["fxLayoutAlign","end center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayout","column","fxLayoutAlign","center end",1,"px-2"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2),e.nrm(2,"div",3),e.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",6),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,du,2,2,"mat-option",7),e.k0s()()(),e.j41(10,"mat-form-field",5)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(14,"div",9),e.DNE(15,hu,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,_u,2,0,"th",13)(20,Cu,4,2,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,yu,2,0,"th",13)(23,xu,4,2,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,vu,2,0,"th",13)(26,ku,4,2,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,Ru,3,0,"th",18)(29,Lu,4,2,"td",14),e.bVm(),e.qex(30,19),e.DNE(31,wu,3,0,"th",18)(32,Du,4,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Nu,3,0,"th",18)(35,Au,4,2,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,Mu,3,0,"th",22)(38,Vu,4,2,"td",23),e.bVm(),e.qex(39,24),e.DNE(40,Yu,6,0,"th",25)(41,Hu,5,2,"td",26),e.bVm(),e.qex(42,27),e.DNE(43,Wu,4,3,"td",28),e.bVm(),e.DNE(44,Qu,1,3,"tr",29)(45,Zu,1,0,"tr",30)(46,Ku,1,0,"tr",31),e.k0s()(),e.nrm(47,"mat-paginator",32),e.k0s()}2&a&&(e.R7$(7),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,cu).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.channels)("ngClass",e.eq3(15,pu,""!==i.errorMessage)),e.R7$(28),e.Y8G("matFooterRowDef",e.lJ4(17,mu)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX],styles:[".mat-column-amount[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem;padding-right:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mat-column-actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_creation_date[_ngcontent-%COMP%]{min-width:7rem}"]})}return n})();function td(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Wallet password is required."),e.k0s())}let nd=(()=>{class n{constructor(t){this.store=t,this.walletPassword=""}ngOnInit(){this.walletPassword=""}onUnlockWallet(){if(!this.walletPassword)return!0;this.store.dispatch((0,v.WE)({payload:{pwd:window.btoa(this.walletPassword)}}))}resetData(){this.walletPassword=""}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-unlock-wallet"]],decls:14,vars:2,consts:[["fxLayout","column",1,"padding-gap","mb-2"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start"],["autoFocus","","matInput","","type","password","name","walletPassword","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","3",3,"click"]],template:function(a,i){1&a&&(e.j41(0,"div",0)(1,"form",1)(2,"mat-form-field",2)(3,"mat-label"),e.EFF(4,"Password"),e.k0s(),e.j41(5,"input",3),e.mxI("ngModelChange",function(r){return e.DH7(i.walletPassword,r)||(i.walletPassword=r),r}),e.k0s(),e.j41(6,"mat-hint"),e.EFF(7,"Enter Wallet Password"),e.k0s(),e.DNE(8,td,2,0,"mat-error",4),e.k0s(),e.j41(9,"div",5)(10,"button",6),e.bIt("click",function(){return i.resetData()}),e.EFF(11,"Clear Field"),e.k0s(),e.j41(12,"button",7),e.bIt("click",function(){return i.onUnlockWallet()}),e.EFF(13,"Unlock Wallet"),e.k0s()()()()),2&a&&(e.R7$(5),e.R50("ngModel",i.walletPassword),e.R7$(3),e.Y8G("ngIf",!i.walletPassword))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,G.$z,$.fg,f.rl,f.nJ,f.MV,f.TL,Z.N]})}return n})();var id=g(7768);function ad(n,s){if(1&n){const t=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",6),e.EFF(3,"Warning: Your connection is unsecure, it's not safe to generate private keys over this connection.Are you sure you want to proceed?"),e.k0s(),e.j41(4,"div",7)(5,"button",8),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return i.proceed=!1,e.Njj(i.warnRes=!0)}),e.EFF(6,"Do Not Proceed"),e.k0s(),e.j41(7,"button",9),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return i.proceed=!0,e.Njj(i.warnRes=!0)}),e.EFF(8,"Proceed"),e.k0s()()()()}}function sd(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",10)(1,"div",11),e.EFF(2,"Please re-configure & re-start RTL after securing your LND connction. You can close this window now."),e.k0s(),e.j41(3,"div",7)(4,"button",12),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.warnRes=!1)}),e.EFF(5,"Go Back"),e.k0s()()()}}function od(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function ld(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Password must be at least 8 characters in length."),e.k0s())}function rd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password is required."),e.k0s())}function cd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Confirm password must be at least 8 characters in length."),e.k0s())}function pd(n,s){1&n&&(e.j41(0,"div",41)(1,"mat-icon",42),e.EFF(2,"cancel"),e.k0s(),e.EFF(3,"Passwords do not match. "),e.k0s())}function md(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Cipher seed is required."),e.k0s())}function ud(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid Cipher. Enter comma separated 24 words cipher seed."),e.k0s())}function dd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Passphrase is required."),e.k0s())}function hd(n,s){1&n&&(e.j41(0,"mat-icon"),e.EFF(1,"vpn_key"),e.k0s())}function _d(n,s){1&n&&(e.j41(0,"mat-icon"),e.EFF(1,"swap_calls"),e.k0s())}function fd(n,s){1&n&&(e.j41(0,"mat-icon"),e.EFF(1,"fingerprint"),e.k0s())}function gd(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-vertical-stepper",13,0)(2,"mat-step",14)(3,"form",15)(4,"mat-form-field",16)(5,"mat-label"),e.EFF(6,"Password"),e.k0s(),e.nrm(7,"input",17),e.j41(8,"mat-hint"),e.EFF(9,"Enter Wallet Password"),e.k0s(),e.DNE(10,od,2,0,"mat-error",2)(11,ld,2,0,"mat-error",2),e.k0s(),e.j41(12,"mat-form-field",16)(13,"mat-label"),e.EFF(14,"Confirm Password"),e.k0s(),e.nrm(15,"input",18),e.j41(16,"mat-hint"),e.EFF(17,"Confirm Wallet Password"),e.k0s(),e.DNE(18,rd,2,0,"mat-error",2)(19,cd,2,0,"mat-error",2),e.k0s(),e.DNE(20,pd,4,0,"div",19),e.j41(21,"div",20)(22,"button",21),e.EFF(23,"Next"),e.k0s()()()(),e.j41(24,"mat-step",22)(25,"form",23)(26,"div",24)(27,"mat-slide-toggle",25),e.EFF(28,"Existing Cipher"),e.k0s(),e.j41(29,"mat-form-field",26)(30,"mat-label"),e.EFF(31,"Comma separated array of 24 words cipher seed"),e.k0s(),e.nrm(32,"input",27),e.j41(33,"mat-hint"),e.EFF(34,"Cipher Seed"),e.k0s(),e.DNE(35,md,2,0,"mat-error",2)(36,ud,2,0,"mat-error",2),e.k0s()(),e.j41(37,"div",28)(38,"button",29),e.EFF(39,"Back"),e.k0s(),e.j41(40,"button",30),e.EFF(41,"Next"),e.k0s()()()(),e.j41(42,"mat-step",31)(43,"form",23)(44,"div",24)(45,"mat-slide-toggle",32),e.EFF(46,"Existing Passphrase"),e.k0s(),e.j41(47,"mat-form-field",33)(48,"mat-label"),e.EFF(49,"Passphrase"),e.k0s(),e.nrm(50,"input",34),e.j41(51,"mat-hint"),e.EFF(52,"Enter Passphrase"),e.k0s(),e.DNE(53,dd,2,0,"mat-error",2),e.k0s()(),e.j41(54,"div",28)(55,"button",35),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(56,"Clear"),e.k0s(),e.j41(57,"button",36),e.EFF(58,"Back"),e.k0s(),e.j41(59,"button",37),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onInitWallet())}),e.EFF(60,"Initialize Wallet"),e.k0s()()()(),e.DNE(61,hd,2,0,"ng-template",38)(62,_d,2,0,"ng-template",39)(63,fd,2,0,"ng-template",40),e.k0s()}if(2&n){const t=e.XpG();e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",t.passwordFormGroup),e.R7$(),e.Y8G("formGroup",t.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletPassword.errors?null:t.passwordFormGroup.controls.initWalletPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletPassword.errors?null:t.passwordFormGroup.controls.initWalletPassword.errors.minlength),e.R7$(7),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:t.passwordFormGroup.controls.initWalletConfirmPassword.errors.required),e.R7$(),e.Y8G("ngIf",null==t.passwordFormGroup.controls.initWalletConfirmPassword.errors?null:t.passwordFormGroup.controls.initWalletConfirmPassword.errors.minlength),e.R7$(),e.Y8G("ngIf",(null==t.passwordFormGroup.errors?null:t.passwordFormGroup.errors.unmatchedPasswords)&&(t.passwordFormGroup.controls.initWalletPassword.touched||t.passwordFormGroup.controls.initWalletPassword.dirty)&&(t.passwordFormGroup.controls.initWalletConfirmPassword.touched||t.passwordFormGroup.controls.initWalletConfirmPassword.dirty)),e.R7$(4),e.Y8G("stepControl",t.cipherFormGroup),e.R7$(),e.Y8G("formGroup",t.cipherFormGroup),e.R7$(2),e.Y8G("labelPosition","before"),e.R7$(8),e.Y8G("ngIf",null==t.cipherFormGroup.controls.cipherSeed.errors?null:t.cipherFormGroup.controls.cipherSeed.errors.required),e.R7$(),e.Y8G("ngIf",!(null!=t.cipherFormGroup.controls.cipherSeed.errors&&t.cipherFormGroup.controls.cipherSeed.errors.required)&&(null==t.cipherFormGroup.controls.cipherSeed.errors?null:t.cipherFormGroup.controls.cipherSeed.errors.invalidCipher)),e.R7$(6),e.Y8G("stepControl",t.passphraseFormGroup),e.R7$(),e.Y8G("formGroup",t.passphraseFormGroup),e.R7$(2),e.Y8G("labelPosition","before"),e.R7$(8),e.Y8G("ngIf",null==t.passphraseFormGroup.controls.passphrase.errors?null:t.passphraseFormGroup.controls.passphrase.errors.required)}}function Cd(n,s){if(1&n&&(e.j41(0,"span",48),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(t)}}function yd(n,s){if(1&n){const t=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",43),e.EFF(3,"YOU MUST WRITE DOWN THIS SEED TO BE ABLE TO RESTORE THE WALLET!"),e.k0s(),e.j41(4,"div",44),e.DNE(5,Cd,2,1,"span",45),e.k0s(),e.j41(6,"div",46),e.EFF(7,"Wallet initialization is done."),e.k0s(),e.j41(8,"div",46),e.EFF(9,"The node will be usable only after LND has synced completely with the network."),e.k0s(),e.j41(10,"div",46),e.EFF(11,"Click continue only after writing down the seed."),e.k0s(),e.j41(12,"div",7)(13,"button",47),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onGoToHome())}),e.EFF(14,"Go To Home"),e.k0s()()()()}if(2&n){const t=e.XpG();e.R7$(5),e.Y8G("ngForOf",t.genSeedResponse)}}function bd(n,s){if(1&n){const t=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",46),e.EFF(3,"Something went wrong! Unable to initialize wallet!"),e.k0s(),e.j41(4,"div",7)(5,"button",49),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.EFF(6,"Restart"),e.k0s()()()()}}function Fd(n,s){if(1&n){const t=e.RV6();e.j41(0,"div")(1,"form",5)(2,"div",46),e.EFF(3,"Wallet recovery is done."),e.k0s(),e.j41(4,"div",46),e.EFF(5,"The node will be usable only after LND has synced completely with the network."),e.k0s(),e.j41(6,"div",7)(7,"button",50),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onGoToHome())}),e.EFF(8,"Go To Home"),e.k0s()()()()}}function xd(n){const s=n.get("initWalletPassword"),t=n.get("initWalletConfirmPassword");return s&&t&&s.value!==t.value?{unmatchedPasswords:!0}:null}function vd(n){const s=n.value.toString().trim().split(",")||[];return s&&24!==s.length?{invalidCipher:!0}:null}let Td=(()=>{class n{constructor(t,a,i){this.store=t,this.formBuilder=a,this.lndEffects=i,this.insecureLND=!1,this.genSeedResponse=[],this.initWalletResponse="",this.proceed=!0,this.warnRes=!1,this.unsubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.passwordFormGroup=this.formBuilder.group({initWalletPassword:["",[m.k0.required,m.k0.minLength(8)]],initWalletConfirmPassword:["",[m.k0.required,m.k0.minLength(8)]]},{validators:xd}),this.cipherFormGroup=this.formBuilder.group({existingCipher:[!1],cipherSeed:[{value:"",disabled:!0},[vd]]}),this.passphraseFormGroup=this.formBuilder.group({enterPassphrase:[!1],passphrase:[{value:"",disabled:!0}]}),this.cipherFormGroup.controls.existingCipher.valueChanges.pipe((0,_.Q)(this.unsubs[0])).subscribe(t=>{t?(this.cipherFormGroup.controls.cipherSeed.setValue(""),this.cipherFormGroup.controls.cipherSeed.enable()):(this.cipherFormGroup.controls.cipherSeed.setValue(""),this.cipherFormGroup.controls.cipherSeed.disable())}),this.passphraseFormGroup.controls.enterPassphrase.valueChanges.pipe((0,_.Q)(this.unsubs[1])).subscribe(t=>{t?(this.passphraseFormGroup.controls.passphrase.setValue(""),this.passphraseFormGroup.controls.passphrase.enable()):(this.passphraseFormGroup.controls.passphrase.setValue(""),this.passphraseFormGroup.controls.passphrase.disable())}),this.insecureLND=!window.location.protocol.includes("https:"),this.lndEffects.initWalletRes.pipe((0,_.Q)(this.unsubs[2])).subscribe(t=>{this.initWalletResponse=t}),this.lndEffects.genSeedResponse.pipe((0,_.Q)(this.unsubs[3])).subscribe(t=>{this.genSeedResponse=t,this.store.dispatch((0,v.GZ)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:this.genSeedResponse,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:this.genSeedResponse}}))})}onInitWallet(){if(this.passwordFormGroup.invalid||this.cipherFormGroup.invalid||this.passphraseFormGroup.invalid)return!0;if(this.cipherFormGroup.controls.existingCipher.value){const t=this.cipherFormGroup.controls.cipherSeed.value.toString().trim().split(",");this.store.dispatch((0,v.GZ)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:t,passphrase:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}}:{payload:{pwd:window.btoa(this.passwordFormGroup.controls.initWalletPassword.value),cipher:t}}))}else this.store.dispatch((0,v.oX)(this.passphraseFormGroup.controls.enterPassphrase.value?{payload:window.btoa(this.passphraseFormGroup.controls.passphrase.value)}:{payload:""}))}onGoToHome(){setTimeout(()=>{this.store.dispatch((0,v.X9)()),this.store.dispatch((0,v.Br)({payload:{loadPage:"HOME"}}))},1e3)}resetData(){this.genSeedResponse=[],this.initWalletResponse=""}ngOnDestroy(){this.unsubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(m.ze),e.rXU(re.L))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-initialize-wallet"]],viewQuery:function(a,i){if(1&a&&e.GBs(H.M6,5),2&a){let o;e.mGM(o=e.lsd())&&(i.stepper=o.first)}},features:[e.Jv_([{provide:id.x8,useValue:{displayDefaultIndicatorType:!1}}])],decls:7,vars:6,consts:[["stepper",""],["fxLayout","column",1,"padding-gap","mb-4"],[4,"ngIf"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","stretch stretch",4,"ngIf"],[3,"linear",4,"ngIf"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mt-2"],["fxFlex","100","fxLayoutAlign","start"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","1","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","2",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","stretch stretch"],["fxFlex","100",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",3,"click"],[3,"linear"],["label","Wallet Password","state","password",3,"stepControl"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mt-1",3,"formGroup"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start"],["matInput","","type","password","name","initWalletPassword","formControlName","initWalletPassword","tabindex","5","required",""],["matInput","","type","password","name","initWalletConfirmPassword","formControlName","initWalletConfirmPassword","tabindex","6","required",""],["class","validation-error-message",4,"ngIf"],["fxLayout","row",1,"my-2"],["mat-flat-button","","color","primary","tabindex","7","type","submit","matStepperNext",""],["label","Cipher","state","cipher",3,"stepControl"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start",1,"mt-1",3,"formGroup"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch"],["fxFlex","20","tabindex","8","color","primary","formControlName","existingCipher","name","existingCipher",1,"chkbox-wallet",3,"labelPosition"],["fxLayout","column","fxFlex","75","fxLayoutAlign","start",1,"my-1"],["autofocus","","matInput","","type","input","name","cipherSeed","formControlName","cipherSeed","tabindex","9","required",""],["fxLayout","row",1,"mb-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","10","matStepperPrevious","",1,"mr-1","mt-1"],["mat-flat-button","","color","primary","tabindex","11","type","submit","matStepperNext","",1,"mt-1"],["label","Passphrase","state","passphrase",3,"stepControl"],["fxFlex","20","tabindex","10","color","primary","formControlName","enterPassphrase","name","enterPassphrase",1,"chkbox-wallet",3,"labelPosition"],["fxLayout","column","fxFlex","75","fxLayoutAlign","start"],["matInput","","type","password","name","passphrase","formControlName","passphrase","tabindex","12","required",""],["mat-stroked-button","","color","warn","tabindex","13","type","reset",1,"mr-1","mt-1",3,"click"],["mat-stroked-button","","tabindex","14","color","primary","type","button","matStepperPrevious","",1,"mr-1","mt-1"],["mat-flat-button","","color","primary","tabindex","15","type","submit",1,"mt-1",3,"click"],["matStepperIcon","password"],["matStepperIcon","cipher"],["matStepperIcon","passphrase"],[1,"validation-error-message"],[1,"validation-error-icon","red"],["fxFlex","100","fxLayoutAlign","start",1,"blinker"],["fxFlex","40","fxLayout","row wrap",1,"mt-2"],["fxFlex","25","fxLayoutAlign","start","class","genseed-message",4,"ngFor","ngForOf"],["fxFlex","100","fxLayoutAlign","start",1,"mt-2"],["mat-flat-button","","color","primary","type","submit","tabindex","16",3,"click"],["fxFlex","25","fxLayoutAlign","start",1,"genseed-message"],["mat-stroked-button","","color","primary","tabindex","17","type","reset",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","18",3,"click"]],template:function(a,i){1&a&&(e.j41(0,"div",1),e.DNE(1,ad,9,0,"div",2)(2,sd,6,0,"div",3)(3,gd,64,17,"mat-vertical-stepper",4)(4,yd,15,1,"div",2)(5,bd,7,0,"div",2)(6,Fd,9,0,"div",2),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",i.insecureLND&&!i.warnRes),e.R7$(),e.Y8G("ngIf",i.warnRes&&!i.proceed),e.R7$(),e.Y8G("ngIf",(!i.insecureLND||i.warnRes&&i.proceed)&&i.genSeedResponse.length<=0&&""===i.initWalletResponse),e.R7$(),e.Y8G("ngIf",i.genSeedResponse.length>0&&""!==i.initWalletResponse),e.R7$(),e.Y8G("ngIf",i.genSeedResponse.length>0&&""===i.initWalletResponse),e.R7$(),e.Y8G("ngIf",i.genSeedResponse.length<=0&&""!==i.initWalletResponse))},dependencies:[d.Sq,d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.cV,m.j4,m.JD,h.DJ,h.sA,h.UI,G.$z,ie.An,$.fg,f.rl,f.nJ,f.MV,f.TL,_e.sG,H.V5,H.M6,H.F7,H.FR,H.xJ]})}return n})(),Sd=(()=>{class n{constructor(){this.faWallet=b.BA1}static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-wallet"]],decls:12,vars:1,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-stretch-tabs","false","mat-align-tabs","start"],["label","Unlock"],["label","Initialize"]],template:function(a,i){1&a&&(e.j41(0,"div",0),e.nrm(1,"fa-icon",1),e.j41(2,"span",2),e.EFF(3,"Wallet"),e.k0s()(),e.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"mat-tab-group",5)(8,"mat-tab",6),e.nrm(9,"rtl-unlock-wallet"),e.k0s(),e.j41(10,"mat-tab",7),e.nrm(11,"rtl-initialize-wallet"),e.k0s()()()()()),2&a&&(e.R7$(),e.Y8G("icon",i.faWallet))},dependencies:[M.aY,h.DJ,h.sA,T.RN,T.m2,P.mq,P.T8,nd,Td]})}return n})();function kd(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",12),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Rd=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.router=i,this.faExchangeAlt=b._qq,this.faChartPie=b.W1p,this.currencyUnits=[],this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"},{link:"lookuptransactions",name:"Lookup"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1]),(0,de.E)(this.store.select(X._c))).subscribe(([a,i])=>{this.currencyUnits=i?.settings.currencyUnits||[],this.balances=i?.settings.userPersona===l.HW.OPERATOR?[{title:"Local Capacity",dataValue:a.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:a.lightningBalance.remote||0,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:a.lightningBalance.local||0,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:a.lightningBalance.remote||0,tooltip:"Amount you can receive"}],this.logger.info(a)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-transactions"]],decls:21,vars:5,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Lightning Balance"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),e.nrm(7,"rtl-currency-unit-converter",6),e.k0s()()(),e.j41(8,"div",7),e.nrm(9,"fa-icon",2),e.j41(10,"span",3),e.EFF(11,"Lightning Transactions"),e.k0s()(),e.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),e.DNE(16,kd,2,3,"div",10),e.k0s(),e.nrm(17,"mat-tab-nav-panel",null,0),e.j41(19,"div",11),e.nrm(20,"router-outlet"),e.k0s()()()()),2&a){const o=e.sdS(18);e.R7$(),e.Y8G("icon",i.faChartPie),e.R7$(6),e.Y8G("values",i.balances),e.R7$(2),e.Y8G("icon",i.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,Se.f,x.n3,x.Wk]})}return n})();function Ed(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Id=(()=>{class n{constructor(t){this.router=t,this.faSearch=b.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-graph"]],decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Graph Lookups"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,Ed,2,3,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faSearch),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}return n})();const Ld=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),je=n=>({width:n});function wd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Destination pubkey is required."),e.k0s())}function jd(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function Gd(n,s){1&n&&e.nrm(0,"mat-progress-bar",39)}function Dd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Hop"),e.k0s())}function Nd(n,s){if(1&n&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null==t?null:t.hop_sequence)}}function Pd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Peer"),e.k0s())}function $d(n,s){if(1&n&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,je,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.pubkey_alias)}}function Ad(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Peer Pubkey"),e.k0s())}function Md(n,s){if(1&n&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,je,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.pub_key)}}function Bd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"Channel ID"),e.k0s())}function Od(n,s){if(1&n&&(e.j41(0,"td",41)(1,"div",42)(2,"span",43),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,je,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function Vd(n,s){1&n&&(e.j41(0,"th",40),e.EFF(1,"TLV Payload"),e.k0s())}function Yd(n,s){if(1&n&&(e.j41(0,"td",41),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null!=t&&t.tlv_payload?"Yes":"No")}}function Xd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Expiry"),e.k0s())}function Ud(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.expiry))}}function Hd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Capacity (Sats)"),e.k0s())}function qd(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==t?null:t.chan_capacity))}}function zd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Amount To Fwd (Sats)"),e.k0s())}function Jd(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.amt_to_forward)," ")}}function Wd(n,s){1&n&&(e.j41(0,"th",44),e.EFF(1,"Fee (mSats)"),e.k0s())}function Qd(n,s){if(1&n&&(e.j41(0,"td",41)(1,"span",45),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,null==t?null:t.fee_msat)," ")}}function Zd(n,s){1&n&&(e.j41(0,"th",46)(1,"div",47),e.EFF(2,"Actions"),e.k0s()())}function Kd(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onHopClick(o,i))}),e.EFF(2,"View Info"),e.k0s()()}}function eh(n,s){1&n&&e.nrm(0,"tr",50)}function th(n,s){1&n&&e.nrm(0,"tr",51)}let nh=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.lndEffects=i,this.commonService=o,this.colWidth="20rem",this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:l.md,sortBy:"hop_sequence",sortOrder:l.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new c.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=b.TBz,this.faExclamationTriangle=b.zpE,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.lndEffects.setQueryRoutes.pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.qrHops=new c.I6([]),t.routes&&t.routes.length&&t.routes.length>0&&t.routes[0].hops?(this.flgLoading[0]=!1,this.qrHops=new c.I6([...t.routes[0].hops]),this.qrHops.data=t.routes[0].hops):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.qrHops=new c.I6([]),this.flgLoading[0]=!0,this.store.dispatch((0,v.T4)({payload:{destPubkey:this.destinationPubkey,amount:this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1}onHopClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"hop_sequence",value:t.hop_sequence,title:"Sequence",width:33,type:l.UN.NUMBER},{key:"amt_to_forward",value:t.amt_to_forward,title:"Amount To Forward (Sats)",width:33,type:l.UN.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:34,type:l.UN.NUMBER}],[{key:"chan_capacity",value:t.chan_capacity,title:"Channel Capacity (Sats)",width:50,type:l.UN.NUMBER},{key:"expiry",value:t.expiry,title:"Expiry",width:50,type:l.UN.NUMBER}],[{key:"pubkey_alias",value:t.pubkey_alias,title:"Peer Alias",width:50,type:l.UN.STRING},{key:"chan_id",value:t.chan_id,title:"Channel ID",width:50,type:l.UN.STRING}],[{key:"pub_key",value:t.pub_key,title:"Peer Pubkey",width:100,type:l.UN.STRING}]]}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(re.L),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-query-routes"]],viewQuery:function(a,i){if(1&a&&e.GBs(k.B4,5),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first)}},decls:64,vars:17,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table",""],["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","destinationPubkey","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-3","mb-1"],["fxFlex","70","fxLayoutAlign","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"table-container","mb-6",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","hop_sequence"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","pubkey_alias"],["matColumnDef","pub_key"],["matColumnDef","chan_id"],["matColumnDef","tlv_payload"],["matColumnDef","expiry"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","chan_capacity"],["matColumnDef","amt_to_forward_msat"],["matColumnDef","fee_msat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",3)(1,"form",4,0),e.bIt("ngSubmit",function(){e.eBV(o);const p=e.sdS(2);return e.Njj(p.form.valid&&i.onQueryRoutes())}),e.j41(3,"div",5),e.nrm(4,"fa-icon",6),e.j41(5,"span"),e.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),e.k0s()(),e.j41(7,"mat-form-field",7)(8,"mat-label"),e.EFF(9,"Destination Pubkey"),e.k0s(),e.j41(10,"input",8,1),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.destinationPubkey,p)||(i.destinationPubkey=p),e.Njj(p)}),e.k0s(),e.DNE(12,wd,2,0,"mat-error",9),e.k0s(),e.j41(13,"mat-form-field",10)(14,"mat-label"),e.EFF(15,"Amount (Sats)"),e.k0s(),e.j41(16,"input",11),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.amount,p)||(i.amount=p),e.Njj(p)}),e.k0s(),e.DNE(17,jd,2,0,"mat-error",9),e.k0s(),e.j41(18,"div",12)(19,"button",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(20,"Clear"),e.k0s(),e.j41(21,"button",14),e.EFF(22,"Query Route"),e.k0s()()(),e.j41(23,"div",15)(24,"div",16),e.nrm(25,"fa-icon",17),e.j41(26,"span",18),e.EFF(27,"Transaction Route"),e.k0s()()(),e.j41(28,"div",19),e.DNE(29,Gd,1,0,"mat-progress-bar",20),e.j41(30,"table",21,2),e.qex(32,22),e.DNE(33,Dd,2,0,"th",23)(34,Nd,2,1,"td",24),e.bVm(),e.qex(35,25),e.DNE(36,Pd,2,0,"th",23)(37,$d,4,4,"td",24),e.bVm(),e.qex(38,26),e.DNE(39,Ad,2,0,"th",23)(40,Md,4,4,"td",24),e.bVm(),e.qex(41,27),e.DNE(42,Bd,2,0,"th",23)(43,Od,4,4,"td",24),e.bVm(),e.qex(44,28),e.DNE(45,Vd,2,0,"th",23)(46,Yd,2,1,"td",24),e.bVm(),e.qex(47,29),e.DNE(48,Xd,2,0,"th",30)(49,Ud,4,3,"td",24),e.bVm(),e.qex(50,31),e.DNE(51,Hd,2,0,"th",30)(52,qd,4,3,"td",24),e.bVm(),e.qex(53,32),e.DNE(54,zd,2,0,"th",30)(55,Jd,4,3,"td",24),e.bVm(),e.qex(56,33),e.DNE(57,Wd,2,0,"th",30)(58,Qd,4,3,"td",24),e.bVm(),e.qex(59,34),e.DNE(60,Zd,3,0,"th",35)(61,Kd,3,0,"td",36),e.bVm(),e.DNE(62,eh,1,0,"tr",37)(63,th,1,0,"tr",38),e.k0s()()()}2&a&&(e.R7$(4),e.Y8G("icon",i.faExclamationTriangle),e.R7$(6),e.R50("ngModel",i.destinationPubkey),e.R7$(2),e.Y8G("ngIf",!i.destinationPubkey),e.R7$(4),e.Y8G("step",1e3)("min",0),e.R50("ngModel",i.amount),e.R7$(),e.Y8G("ngIf",!i.amount),e.R7$(8),e.Y8G("icon",i.faRoute),e.R7$(4),e.Y8G("ngIf",!0===i.flgLoading[0]),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.qrHops)("ngClass",e.eq3(15,Ld,"error"===i.flgLoading[0])),e.R7$(32),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns))},dependencies:[d.YU,d.bT,d.B3,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,f.TL,B.HM,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,te.V,d.QX]})}return n})();var pe=g(5951);function ih(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 1"),e.k0s())}function ah(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 1 (Your Node)"),e.k0s())}function sh(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 2"),e.k0s())}function oh(n,s){1&n&&(e.j41(0,"h3",15),e.EFF(1,"Node 2 (Your Node)"),e.k0s())}function lh(n,s){if(1&n&&(e.j41(0,"div",1),e.nrm(1,"mat-divider",2),e.j41(2,"div",3)(3,"div",4)(4,"h4",5),e.EFF(5,"Channel ID"),e.k0s(),e.j41(6,"span",6),e.EFF(7),e.k0s()(),e.j41(8,"div",7)(9,"h4",5),e.EFF(10,"Channel Point"),e.k0s(),e.j41(11,"span",6),e.EFF(12),e.k0s()()(),e.nrm(13,"mat-divider",8),e.j41(14,"div",3)(15,"div",4)(16,"h4",5),e.EFF(17,"Last Update"),e.k0s(),e.j41(18,"span",6),e.EFF(19),e.nI1(20,"date"),e.k0s()(),e.j41(21,"div",7)(22,"h4",5),e.EFF(23,"Capacity (Sats)"),e.k0s(),e.j41(24,"span",6),e.EFF(25),e.nI1(26,"number"),e.k0s()()(),e.nrm(27,"mat-divider",8),e.j41(28,"div",9)(29,"div",10)(30,"div",11),e.DNE(31,ih,2,0,"h3",12)(32,ah,2,0,"h3",12),e.k0s(),e.nrm(33,"mat-divider",8),e.j41(34,"div",13)(35,"h4",5),e.EFF(36,"Pubkey"),e.k0s(),e.j41(37,"span",6),e.EFF(38),e.k0s()(),e.nrm(39,"mat-divider",8),e.j41(40,"div",14)(41,"h4",5),e.EFF(42,"Time Lock Delta"),e.k0s(),e.j41(43,"span",6),e.EFF(44),e.k0s()(),e.nrm(45,"mat-divider",8),e.j41(46,"div",14)(47,"h4",5),e.EFF(48,"Min HTLC"),e.k0s(),e.j41(49,"span",6),e.EFF(50),e.k0s()(),e.nrm(51,"mat-divider",8),e.j41(52,"div",14)(53,"h4",5),e.EFF(54,"Max HTLC"),e.k0s(),e.j41(55,"span",6),e.EFF(56),e.k0s()(),e.nrm(57,"mat-divider",8),e.j41(58,"div",14)(59,"h4",5),e.EFF(60,"Fee Base Msat"),e.k0s(),e.j41(61,"span",6),e.EFF(62),e.k0s()(),e.nrm(63,"mat-divider",8),e.j41(64,"div",14)(65,"h4",5),e.EFF(66,"Fee Rate Milli Msat"),e.k0s(),e.j41(67,"span",6),e.EFF(68),e.k0s()(),e.nrm(69,"mat-divider",8),e.j41(70,"div",14)(71,"h4",5),e.EFF(72,"Disabled"),e.k0s(),e.j41(73,"span",6),e.EFF(74),e.k0s()()(),e.j41(75,"div",10)(76,"div"),e.DNE(77,sh,2,0,"h3",12)(78,oh,2,0,"h3",12),e.k0s(),e.nrm(79,"mat-divider",8),e.j41(80,"div",13)(81,"h4",5),e.EFF(82,"Pubkey"),e.k0s(),e.j41(83,"span",6),e.EFF(84),e.k0s()(),e.nrm(85,"mat-divider",8),e.j41(86,"div",14)(87,"h4",5),e.EFF(88,"Time Lock Delta"),e.k0s(),e.j41(89,"span",6),e.EFF(90),e.k0s()(),e.nrm(91,"mat-divider",8),e.j41(92,"div",14)(93,"h4",5),e.EFF(94,"Min HTLC"),e.k0s(),e.j41(95,"span",6),e.EFF(96),e.k0s()(),e.nrm(97,"mat-divider",8),e.j41(98,"div",14)(99,"h4",5),e.EFF(100,"Max HTLC"),e.k0s(),e.j41(101,"span",6),e.EFF(102),e.k0s()(),e.nrm(103,"mat-divider",8),e.j41(104,"div",14)(105,"h4",5),e.EFF(106,"Fee Base Msat"),e.k0s(),e.j41(107,"span",6),e.EFF(108),e.k0s()(),e.nrm(109,"mat-divider",8),e.j41(110,"div",14)(111,"h4",5),e.EFF(112,"Fee Rate Milli Msat"),e.k0s(),e.j41(113,"span",6),e.EFF(114),e.k0s()(),e.nrm(115,"mat-divider",8),e.j41(116,"div",14)(117,"h4",5),e.EFF(118,"Disabled"),e.k0s(),e.j41(119,"span",6),e.EFF(120),e.k0s()()()()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(t.lookupResult.channel_id),e.R7$(5),e.JRh(t.lookupResult.chan_point),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(20,39,1e3*t.lookupResult.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(26,42,t.lookupResult.capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(4),e.Y8G("ngIf",!t.node1_match),e.R7$(),e.Y8G("ngIf",t.node1_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(t.lookupResult.node1_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node1_policy?null:t.lookupResult.node1_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=t.lookupResult.node1_policy&&t.lookupResult.node1_policy.disabled?"Yes":"No"),e.R7$(3),e.Y8G("ngIf",!t.node2_match),e.R7$(),e.Y8G("ngIf",t.node2_match),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(t.lookupResult.node2_pub),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.time_lock_delta),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.min_htlc),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.max_htlc_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.fee_base_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null==t.lookupResult.node2_policy?null:t.lookupResult.node2_policy.fee_rate_milli_msat),e.R7$(),e.Y8G("inset",!0),e.R7$(5),e.JRh(null!=t.lookupResult.node2_policy&&t.lookupResult.node2_policy.disabled?"Yes":"No")}}let rh=(()=>{class n{constructor(t){this.store=t,this.node1_match=!1,this.node2_match=!1,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.lookupResult.node1_pub===t.identity_pubkey&&(this.node1_match=!0),this.lookupResult.node2_pub===t.identity_pubkey&&(this.node2_match=!0)})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-lookup"]],inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1",3,"inset"],["fxLayout","row"],["fxLayout","column","fxFlex","30","fxLayoutAlign","end start"],[1,"font-bold-500"],[1,"foreground-secondary-text"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end start"],[1,"my-1",3,"inset"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],["fxLayout","column","fxFlex","20"],["fxLayout","column","fxFlex","10"],[1,"page-title","font-bold-500"]],template:function(a,i){1&a&&e.DNE(0,lh,121,44,"div",0),2&a&&e.Y8G("ngIf",i.lookupResult)},dependencies:[d.bT,h.DJ,h.sA,h.UI,ee.q,d.QX,d.vh],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]})}return n})();const ch=n=>({"background-color":n});function ph(n,s){if(1&n&&(e.j41(0,"span",10),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Lme("",a.nodeFeaturesEnum[t.value.name]||t.value.name,": ",t.value.is_required?"Mandatory":"Optional","")}}function mh(n,s){1&n&&(e.j41(0,"th",27),e.EFF(1,"Network"),e.k0s())}function uh(n,s){if(1&n&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null==t?null:t.network)}}function dh(n,s){1&n&&(e.j41(0,"th",27),e.EFF(1,"Address"),e.k0s())}function hh(n,s){if(1&n&&(e.j41(0,"td",28),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(null==t?null:t.addr)}}function _h(n,s){1&n&&(e.j41(0,"th",29)(1,"div",30),e.EFF(2,"Actions"),e.k0s()())}function fh(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",31)(1,"div",32)(2,"mat-select",33),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",34),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onConnectNode(i))}),e.EFF(5,"Connect"),e.k0s(),e.j41(6,"mat-option",35),e.bIt("copied",function(){const i=e.eBV(t).$implicit,o=e.XpG(2);return e.Njj(o.onCopyNodeURI(i))}),e.EFF(7,"Copy URI"),e.k0s()()()()}if(2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(6),e.Y8G("payload",a.lookupResult.node.pub_key+"@"+t.addr)}}function gh(n,s){1&n&&e.nrm(0,"tr",36)}function Ch(n,s){1&n&&e.nrm(0,"tr",37)}function yh(n,s){if(1&n&&(e.j41(0,"div",2),e.nrm(1,"mat-divider",3),e.j41(2,"div",4)(3,"div",5)(4,"h4",6),e.EFF(5,"Alias"),e.k0s(),e.j41(6,"span",7),e.EFF(7),e.j41(8,"span",8),e.EFF(9),e.k0s()()(),e.j41(10,"div",9)(11,"h4",6),e.EFF(12,"Pub Key"),e.k0s(),e.j41(13,"span",10),e.EFF(14),e.k0s()()(),e.nrm(15,"mat-divider",11),e.j41(16,"div",4)(17,"div",5)(18,"h4",6),e.EFF(19,"Last Update"),e.k0s(),e.j41(20,"span",7),e.EFF(21),e.nI1(22,"date"),e.k0s()(),e.j41(23,"div",9)(24,"h4",6),e.EFF(25,"Total Capacity (Sats)"),e.k0s(),e.j41(26,"span",7),e.EFF(27),e.nI1(28,"number"),e.k0s()()(),e.nrm(29,"mat-divider",11),e.j41(30,"div",4)(31,"div",5)(32,"h4",6),e.EFF(33,"Number of Channels"),e.k0s(),e.j41(34,"span",7),e.EFF(35),e.nI1(36,"number"),e.k0s()(),e.j41(37,"div",12)(38,"h4",6),e.EFF(39,"Features"),e.k0s(),e.DNE(40,ph,2,2,"span",13),e.nI1(41,"keyvalue"),e.k0s()(),e.nrm(42,"mat-divider",11),e.j41(43,"div",14)(44,"h4",15),e.EFF(45,"Addresses"),e.k0s(),e.j41(46,"div",16)(47,"table",17,0),e.qex(49,18),e.DNE(50,mh,2,0,"th",19)(51,uh,2,1,"td",20),e.bVm(),e.qex(52,21),e.DNE(53,dh,2,0,"th",19)(54,hh,2,1,"td",20),e.bVm(),e.qex(55,22),e.DNE(56,_h,3,0,"th",23)(57,fh,8,1,"td",24),e.bVm(),e.DNE(58,gh,1,0,"tr",25)(59,Ch,1,0,"tr",26),e.k0s()()()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(t.lookupResult.node.alias),e.R7$(),e.Y8G("ngStyle",e.eq3(24,ch,null==t.lookupResult.node?null:t.lookupResult.node.color)),e.R7$(),e.JRh(null==t.lookupResult.node?null:t.lookupResult.node.color),e.R7$(5),e.JRh(t.lookupResult.node.pub_key),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(22,15,1e3*t.lookupResult.node.last_update,"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(e.bMT(28,18,t.lookupResult.total_capacity)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.bMT(36,20,t.lookupResult.num_channels)),e.R7$(5),e.Y8G("ngForOf",e.bMT(41,22,t.lookupResult.node.features)),e.R7$(2),e.Y8G("inset",!0),e.R7$(5),e.Y8G("dataSource",t.lookupResult.node.addresses),e.R7$(11),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns)}}let bh=(()=>{class n{constructor(t,a,i){this.logger=t,this.snackBar=a,this.store=i,this.nodeFeaturesEnum=l._U,this.displayedColumns=["network","addr","actions"],this.information={},this.availableBalance=0,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.information=t}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.availableBalance=t.blockchainBalance.total_balance||0})}onCopyNodeURI(t){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+t)}onConnectNode(t){this.store.dispatch((0,E.xO)({payload:{data:{message:{peer:{pub_key:this.lookupResult.node?.pub_key,address:t.addr},information:this.information,balance:this.availableBalance},component:Ze}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(ae.UG),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-node-lookup"]],inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["table",""],["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1",3,"inset"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],[1,"my-1",3,"inset"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end start",1,"my-1"],["class","foreground-secondary-text w-100",4,"ngFor","ngForOf"],["fxLayout","column"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource"],["matColumnDef","network"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","addr"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(a,i){1&a&&e.DNE(0,yh,60,26,"div",1),2&a&&e.Y8G("ngIf",i.lookupResult)},dependencies:[d.Sq,d.bT,d.B3,h.DJ,h.sA,h.UI,L.eI,ee.q,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.KS,c.$R,c.YZ,c.NB,A.Ld,ge.U,d.QX,d.vh,d.lG]})}return n})();const Fh=n=>({"mt-1":!0,"mt-2":n}),xh=n=>({"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0});function vh(n,s){if(1&n&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t.id)("checked",a.selectedFieldId===t.id),e.R7$(),e.SpI(" ",t.name," ")}}function Th(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function Sh(n,s){1&n&&e.nrm(0,"mat-progress-bar",20)}function kh(n,s){if(1&n&&(e.j41(0,"div",18),e.DNE(1,Sh,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(3,xh,""!==t.errorMessage&&"Getting lookup details..."!==t.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===t.errorMessage),e.R7$(),e.SpI(" ",t.errorMessage," ")}}function Rh(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-node-lookup",28),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("lookupResult",t.lookupValue)}}function Eh(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-channel-lookup",28),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("lookupResult",t.lookupValue)}}function Ih(n,s){1&n&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function Lh(n,s){if(1&n&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,Rh,2,1,"span",25)(6,Eh,2,1,"span",25)(7,Ih,4,0,"span",26),e.k0s()()),2&n){const t=e.XpG();e.R7$(3),e.SpI("",t.lookupFields[t.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",t.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let et=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.actions=o,this.lookupKey="",this.lookupValue={},this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Pubkey"},{id:1,name:"Channel",placeholder:"Channel ID"}],this.faSearch=b.MjD,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKey=window.history.state.lookupValue||""),this.actions.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t.type===l.QP.SET_LOOKUP_LND||t.type===l.QP.UPDATE_API_CALL_STATUS_LND)).subscribe(t=>{t.type===l.QP.SET_LOOKUP_LND&&(this.errorMessage=0===this.selectedFieldId&&t.payload.hasOwnProperty("node")||1===this.selectedFieldId&&t.payload.hasOwnProperty("channel_id")?"":this.errorMessage,this.lookupValue=JSON.parse(JSON.stringify(t.payload)),this.flgSetLookupValue=!(0!==this.selectedFieldId||!t.payload.hasOwnProperty("node"))||!(1!==this.selectedFieldId||!t.payload.hasOwnProperty("channel_id")),this.logger.info(this.lookupValue)),t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&"Lookup"===t.payload.action&&(this.errorMessage="",t.payload.status===l.wn.ERROR&&(this.errorMessage="object"==typeof t.payload.message?JSON.stringify(t.payload.message):t.payload.message),t.payload.status===l.wn.INITIATED&&(this.errorMessage=l.MZ.GET_LOOKUP_DETAILS))})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,v.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,v.ij)({payload:{uiMessage:l.MZ.SEARCHING_CHANNEL,channelID:this.lookupKey.trim()}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(W.En))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lookups"]],decls:21,vars:10,consts:[["form","ngForm"],["key",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["mode","indeterminate"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[3,"lookupResult"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"mat-card-content",4)(3,"form",5,0)(5,"div",6)(6,"mat-radio-group",7),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selectedFieldId,p)||(i.selectedFieldId=p),e.Njj(p)}),e.bIt("change",function(p){return e.eBV(o),e.Njj(i.onSelectChange(p))}),e.DNE(7,vh,2,3,"mat-radio-button",8),e.k0s()(),e.j41(8,"mat-form-field",9)(9,"mat-label"),e.EFF(10),e.k0s(),e.j41(11,"input",10,1),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.lookupKey,p)||(i.lookupKey=p),e.Njj(p)}),e.bIt("change",function(){return e.eBV(o),e.Njj(i.clearLookupValue())}),e.k0s(),e.DNE(13,Th,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,kh,3,5,"div",15)(20,Lh,8,4,"div",16),e.k0s()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.selectedFieldId),e.R7$(),e.Y8G("ngForOf",i.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,Fh,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==i.lookupFields[i.selectedFieldId]?null:i.lookupFields[i.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",i.lookupKey),e.R7$(2),e.Y8G("ngIf",!i.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage&&i.lookupValue&&i.flgSetLookupValue))},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,L.PW,G.$z,T.m2,$.fg,f.rl,f.nJ,f.TL,B.HM,pe.VT,pe._g,rh,bh],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]})}return n})();var Ge=g(5084);function wh(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function jh(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Invalid date format."),e.k0s())}function Gh(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",28),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Dh=(()=>{class n{constructor(t,a,i){this.logger=t,this.store=a,this.router=i,this.faMapSigns=b.knH,this.today=new Date(Date.now()),this.lastMonthDay=new Date(this.today.getFullYear(),this.today.getMonth()-1,this.today.getDate()+1,0,0,0),this.yesterday=new Date(this.today.getFullYear(),this.today.getMonth(),this.today.getDate()-1,0,0,0),this.endDate=this.today,this.startDate=this.lastMonthDay,this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"peers",name:"Routing Peers"},{link:"nonroutingprs",name:"Non Routing Peers"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.onEventsFetch();const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}onEventsFetch(){this.store.dispatch((0,v.kv)({payload:{forwarding_events:[]}})),this.endDate||(this.endDate=this.today),this.startDate||(this.startDate=new Date(this.endDate.getFullYear(),this.endDate.getMonth()-1,this.endDate.getDate()+1,0,0,0)),this.store.dispatch((0,v.uK)({payload:{end_time:Math.round(this.endDate.getTime()/1e3).toString(),start_time:Math.round(this.startDate.getTime()/1e3).toString()}}))}resetData(){this.endDate=this.today,this.startDate=this.lastMonthDay}ngOnDestroy(){this.resetData(),this.store.dispatch((0,v.kv)({payload:{forwarding_events:[]}})),this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-routing"]],decls:41,vars:16,consts:[["routingForm","ngForm"],["strtDate","ngModel"],["startDatepicker",""],["enDate","ngModel"],["endDatepicker",""],["tabPanel",""],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"card-content-gap","mt-1"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mb-1",3,"ngSubmit"],["fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start"],["matInput","","name","startDate","tabindex","1",3,"ngModelChange","matDatepicker","max","ngModel"],["matSuffix","",3,"for"],[3,"startAt"],[4,"ngIf"],["matInput","","name","endDate","tabindex","2",3,"ngModelChange","matDatepicker","min","max","ngModel"],["fxLayout","row",1,""],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","5","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["tabindex","5","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",6)(1,"div",7),e.nrm(2,"fa-icon",8),e.j41(3,"span",9),e.EFF(4,"Routing"),e.k0s()(),e.j41(5,"div",10)(6,"mat-card",11)(7,"mat-card-content",12)(8,"form",13,0),e.bIt("ngSubmit",function(){return e.eBV(o),e.Njj(i.onEventsFetch())}),e.j41(10,"div",14)(11,"mat-form-field",15)(12,"mat-label"),e.EFF(13,"Start Date"),e.k0s(),e.j41(14,"input",16,1),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.startDate,p)||(i.startDate=p),e.Njj(p)}),e.k0s(),e.nrm(16,"mat-datepicker-toggle",17)(17,"mat-datepicker",18,2),e.DNE(19,wh,2,0,"mat-error",19),e.k0s(),e.j41(20,"mat-form-field",15)(21,"mat-label"),e.EFF(22,"End Date"),e.k0s(),e.j41(23,"input",20,3),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.endDate,p)||(i.endDate=p),e.Njj(p)}),e.k0s(),e.nrm(25,"mat-datepicker-toggle",17)(26,"mat-datepicker",18,4),e.DNE(28,jh,2,0,"mat-error",19),e.k0s()(),e.j41(29,"div",21)(30,"button",22),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(31,"Clear"),e.k0s(),e.j41(32,"button",23),e.EFF(33,"Fetch Events"),e.k0s()()(),e.j41(34,"div",24)(35,"nav",25),e.DNE(36,Gh,2,3,"div",26),e.k0s(),e.nrm(37,"mat-tab-nav-panel",null,5),e.k0s(),e.j41(39,"div",27),e.nrm(40,"router-outlet"),e.k0s()()()()()}if(2&a){const o=e.sdS(15),r=e.sdS(18),p=e.sdS(24),F=e.sdS(27),C=e.sdS(38);e.R7$(2),e.Y8G("icon",i.faMapSigns),e.R7$(12),e.Y8G("matDatepicker",r)("max",i.today),e.R50("ngModel",i.startDate),e.R7$(2),e.Y8G("for",r),e.R7$(),e.Y8G("startAt",i.startDate),e.R7$(2),e.Y8G("ngIf",o.errors),e.R7$(4),e.Y8G("matDatepicker",F)("min",i.startDate)("max",i.today),e.R50("ngModel",i.endDate),e.R7$(2),e.Y8G("for",F),e.R7$(),e.Y8G("startAt",i.endDate),e.R7$(2),e.Y8G("ngIf",p.errors),e.R7$(7),e.Y8G("tabPanel",C),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.BC,m.cb,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,G.$z,T.RN,T.m2,Ge.Vh,Ge.bZ,Ge.bU,$.fg,f.rl,f.nJ,f.TL,f.yw,P.Bu,P.hQ,P.Ql,We.z,te.V,x.n3,x.Wk]})}return n})();const Nh=()=>["all"],Ph=()=>["no_event"],be=n=>({width:n}),$h=n=>({"display-none":n});function Ah(n,s){if(1&n&&(e.j41(0,"div",6),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function Mh(n,s){if(1&n&&(e.j41(0,"mat-option",14),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function Bh(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",7),e.nrm(1,"div",8),e.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",11),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG();return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Mh,2,2,"mat-option",12),e.k0s()()(),e.j41(9,"mat-form-field",10)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",13),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.applyFilter())}),e.k0s()()()()}if(2&n){const t=e.XpG();e.R7$(6),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,Nh).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter)}}function Oh(n,s){1&n&&e.nrm(0,"mat-progress-bar",37)}function Vh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Timestamp"),e.k0s())}function Yh(n,s){if(1&n&&(e.j41(0,"td",39),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*t.timestamp,"dd/MMM/y HH:mm"))}}function Xh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Inbound Alias"),e.k0s())}function Uh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias_in)}}function Hh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Inbound Channel"),e.k0s())}function qh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id_in)}}function zh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Outbound Alias"),e.k0s())}function Jh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias_out)}}function Wh(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Outbound Channel"),e.k0s())}function Qh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"div",40)(2,"span",41),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,be,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id_out)}}function Zh(n,s){1&n&&(e.j41(0,"th",42),e.EFF(1,"Inbound Amount (Sats)"),e.k0s())}function Kh(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.amt_in))}}function e_(n,s){1&n&&(e.j41(0,"th",42),e.EFF(1,"Outbound Amount (Sats)"),e.k0s())}function t_(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.amt_out))}}function n_(n,s){1&n&&(e.j41(0,"th",42),e.EFF(1,"Fee (mSats)"),e.k0s())}function i_(n,s){if(1&n&&(e.j41(0,"td",39)(1,"span",43),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.fee_msat))}}function a_(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",44)(1,"div",45)(2,"mat-select",46),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",47),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function s_(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",48)(1,"button",49),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG(2);return e.Njj(r.onForwardingEventClick(o,i))}),e.EFF(2,"View Info"),e.k0s()()}}function o_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No forwarding history available."),e.k0s())}function l_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting forwarding history..."),e.k0s())}function r_(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function c_(n,s){if(1&n&&(e.j41(0,"td",50),e.DNE(1,o_,2,0,"p",51)(2,l_,2,0,"p",51)(3,r_,2,1,"p",51),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function p_(n,s){if(1&n&&e.nrm(0,"tr",52),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,$h,(null==t.forwardingHistoryEvents?null:t.forwardingHistoryEvents.data)&&(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)>0))}}function m_(n,s){1&n&&e.nrm(0,"tr",53)}function u_(n,s){1&n&&e.nrm(0,"tr",54)}function d_(n,s){if(1&n&&(e.j41(0,"div",15),e.DNE(1,Oh,1,0,"mat-progress-bar",16),e.j41(2,"table",17,0),e.qex(4,18),e.DNE(5,Vh,2,0,"th",19)(6,Yh,3,4,"td",20),e.bVm(),e.qex(7,21),e.DNE(8,Xh,2,0,"th",19)(9,Uh,4,4,"td",20),e.bVm(),e.qex(10,22),e.DNE(11,Hh,2,0,"th",19)(12,qh,4,4,"td",20),e.bVm(),e.qex(13,23),e.DNE(14,zh,2,0,"th",19)(15,Jh,4,4,"td",20),e.bVm(),e.qex(16,24),e.DNE(17,Wh,2,0,"th",19)(18,Qh,4,4,"td",20),e.bVm(),e.qex(19,25),e.DNE(20,Zh,2,0,"th",26)(21,Kh,4,3,"td",20),e.bVm(),e.qex(22,27),e.DNE(23,e_,2,0,"th",26)(24,t_,4,3,"td",20),e.bVm(),e.qex(25,28),e.DNE(26,n_,2,0,"th",26)(27,i_,4,3,"td",20),e.bVm(),e.qex(28,29),e.DNE(29,a_,6,0,"th",30)(30,s_,3,0,"td",31),e.bVm(),e.qex(31,32),e.DNE(32,c_,4,3,"td",33),e.bVm(),e.DNE(33,p_,1,3,"tr",34)(34,m_,1,0,"tr",35)(35,u_,1,0,"tr",36),e.k0s()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.forwardingHistoryEvents),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(7,Ph)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns)}}function h_(n,s){if(1&n&&e.nrm(0,"mat-paginator",55),2&n){const t=e.XpG();e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let tt=(()=>{class n{constructor(t,a,i,o,r){this.logger=t,this.commonService=a,this.store=i,this.datePipe=o,this.camelCaseWithReplace=r,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:l.md,sortBy:"timestamp",sortOrder:l.oi.DESCENDING},this.forwardingHistoryData=[],this.displayedColumns=[],this.forwardingHistoryEvents=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:l.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.forwardingHistoryData=this.eventsData,t.eventsData.firstChange||this.loadForwardingEventsTable(this.forwardingHistoryData)),t.selFilter&&!t.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=t.pageSettings.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.pageId)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Ie).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.apiCallStatus?.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.forwardingHistoryData=t.forwardingHistory.forwarding_events||[],this.forwardingHistoryData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory))})}ngAfterViewInit(){setTimeout(()=>{this.forwardingHistoryData.length>0&&this.loadForwardingEventsTable(this.forwardingHistoryData)},0)}onForwardingEventClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Event Information",message:[[{key:"timestamp",value:t.timestamp,title:"Timestamp",width:25,type:l.UN.DATE_TIME},{key:"amt_in",value:t.amt_in,title:"Inbound Amount (Sats)",width:25,type:l.UN.NUMBER},{key:"amt_out",value:t.amt_out,title:"Outbound Amount (Sats)",width:25,type:l.UN.NUMBER},{key:"fee_msat",value:t.fee_msat,title:"Fee (mSats)",width:25,type:l.UN.NUMBER}],[{key:"alias_in",value:t.alias_in,title:"Inbound Peer Alias",width:25,type:l.UN.STRING},{key:"chan_id_in",value:t.chan_id_in,title:"Inbound Channel ID",width:25,type:l.UN.STRING},{key:"alias_out",value:t.alias_out,title:"Outbound Peer Alias",width:25,type:l.UN.STRING},{key:"chan_id_out",value:t.chan_id_out,title:"Outbound Channel ID",width:25,type:l.UN.STRING}]]}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(t){const a=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.timestamp?this.datePipe.transform(new Date(1e3*t.timestamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"timestamp":i=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return i.includes(a)}}loadForwardingEventsTable(t){this.forwardingHistoryEvents=new c.I6(t?[...t]:[]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(d.vh),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-forwarding-history"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Events")}]),e.OA$],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","timestamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias_in"],["matColumnDef","chan_id_in"],["matColumnDef","alias_out"],["matColumnDef","chan_id_out"],["matColumnDef","amt_in"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","amt_out"],["matColumnDef","fee_msat"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(a,i){1&a&&(e.j41(0,"div",1),e.DNE(1,Ah,2,1,"div",2)(2,Bh,13,4,"div",3)(3,d_,36,8,"div",4)(4,h_,1,3,"mat-paginator",5),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX,d.vh]})}return n})();const __=["tableIn"],f_=["tableOut"],g_=["paginatorIn"],C_=["paginatorOut"],y_=(n,s)=>({"mt-2":n,"mt-1":s}),b_=()=>["no_incoming_event"],F_=n=>({"mt-2":n}),x_=()=>["no_outgoing_event"],Fe=n=>({width:n}),nt=n=>({"display-none":n});function v_(n,s){if(1&n&&(e.j41(0,"div",7),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function T_(n,s){1&n&&e.nrm(0,"mat-progress-bar",34)}function S_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function k_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function R_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function E_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias)}}function I_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function L_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.events))}}function w_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function j_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_amount))}}function G_(n,s){1&n&&(e.j41(0,"th",41)(1,"div",42),e.EFF(2,"Actions"),e.k0s()())}function D_(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",43)(1,"button",44),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG(2);return e.Njj(r.onRoutingPeerClick(o,i,"in"))}),e.EFF(2,"View Info"),e.k0s()()}}function N_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No incoming routing peer available."),e.k0s())}function P_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting incoming routing peers..."),e.k0s())}function $_(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function A_(n,s){if(1&n&&(e.j41(0,"td",45),e.DNE(1,N_,2,0,"p",46)(2,P_,2,0,"p",46)(3,$_,2,1,"p",46),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function M_(n,s){if(1&n&&e.nrm(0,"tr",47),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,nt,(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)>0))}}function B_(n,s){1&n&&e.nrm(0,"tr",48)}function O_(n,s){1&n&&e.nrm(0,"tr",49)}function V_(n,s){1&n&&e.nrm(0,"mat-progress-bar",34)}function Y_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Channel ID"),e.k0s())}function X_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function U_(n,s){1&n&&(e.j41(0,"th",35),e.EFF(1,"Peer Alias"),e.k0s())}function H_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"div",37)(2,"span",38),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(),e.Y8G("ngStyle",e.eq3(2,Fe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.alias)}}function q_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Events"),e.k0s())}function z_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.events))}}function J_(n,s){1&n&&(e.j41(0,"th",39),e.EFF(1,"Total Amount (Sats)"),e.k0s())}function W_(n,s){if(1&n&&(e.j41(0,"td",36)(1,"span",40),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_amount))}}function Q_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No outgoing routing peer available."),e.k0s())}function Z_(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting outgoing routing peers..."),e.k0s())}function K_(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.errorMessage)}}function e0(n,s){if(1&n&&(e.j41(0,"td",45),e.DNE(1,Q_,2,0,"p",46)(2,Z_,2,0,"p",46)(3,K_,2,1,"p",46),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function t0(n,s){if(1&n&&e.nrm(0,"tr",47),2&n){const t=e.XpG(2);e.Y8G("ngClass",e.eq3(1,nt,(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)>0))}}function n0(n,s){1&n&&e.nrm(0,"tr",48)}function i0(n,s){1&n&&e.nrm(0,"tr",49)}function a0(n,s){if(1&n&&(e.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),e.EFF(4,"Incoming"),e.k0s(),e.nrm(5,"div",12),e.k0s(),e.j41(6,"div",13),e.DNE(7,T_,1,0,"mat-progress-bar",14),e.j41(8,"table",15,0),e.qex(10,16),e.DNE(11,S_,2,0,"th",17)(12,k_,4,4,"td",18),e.bVm(),e.qex(13,19),e.DNE(14,R_,2,0,"th",17)(15,E_,4,4,"td",18),e.bVm(),e.qex(16,20),e.DNE(17,I_,2,0,"th",21)(18,L_,4,3,"td",18),e.bVm(),e.qex(19,22),e.DNE(20,w_,2,0,"th",21)(21,j_,4,3,"td",18),e.bVm(),e.qex(22,23),e.DNE(23,G_,3,0,"th",24)(24,D_,3,0,"td",25),e.bVm(),e.qex(25,26),e.DNE(26,A_,4,3,"td",27),e.bVm(),e.DNE(27,M_,1,3,"tr",28)(28,B_,1,0,"tr",29)(29,O_,1,0,"tr",30),e.k0s()(),e.nrm(30,"mat-paginator",31,1),e.k0s(),e.j41(32,"div",9)(33,"div",10)(34,"div",11),e.EFF(35,"Outgoing"),e.k0s(),e.nrm(36,"div",12),e.k0s(),e.j41(37,"div",13),e.DNE(38,V_,1,0,"mat-progress-bar",14),e.j41(39,"table",32,2),e.qex(41,16),e.DNE(42,Y_,2,0,"th",17)(43,X_,4,4,"td",18),e.bVm(),e.qex(44,19),e.DNE(45,U_,2,0,"th",17)(46,H_,4,4,"td",18),e.bVm(),e.qex(47,20),e.DNE(48,q_,2,0,"th",21)(49,z_,4,3,"td",18),e.bVm(),e.qex(50,22),e.DNE(51,J_,2,0,"th",21)(52,W_,4,3,"td",18),e.bVm(),e.qex(53,33),e.DNE(54,e0,4,3,"td",27),e.bVm(),e.DNE(55,t0,1,3,"tr",28)(56,n0,1,0,"tr",29)(57,i0,1,0,"tr",30),e.k0s()(),e.nrm(58,"mat-paginator",31,3),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.Y8G("ngClass",e.l_i(18,y_,t.screenSize===t.screenSizeEnum.XS,t.screenSize===t.screenSizeEnum.SM)),e.R7$(5),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",t.routingPeersIncoming),e.R7$(19),e.Y8G("matFooterRowDef",e.lJ4(21,b_)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS),e.R7$(3),e.Y8G("ngClass",e.eq3(22,F_,t.screenSize!==t.screenSizeEnum.LG)),e.R7$(5),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",t.routingPeersOutgoing),e.R7$(16),e.Y8G("matFooterRowDef",e.lJ4(24,x_)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns),e.R7$(),e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let s0=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.camelCaseWithReplace=o,this.nodePageDefs=l._1,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:l.md,sortBy:"total_amount",sortOrder:l.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Ie).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.apiCallStatus?.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=t.forwardingHistory.forwarding_events?t.forwardingHistory.forwarding_events:[],this.routingPeersData.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.routingPeersData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadRoutingPeersTable(this.routingPeersData)}onRoutingPeerClick(t,a,i){let o=" Routing Information";o="in"===i?"Incoming"+o:"Outgoing"+o,this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:o,message:[[{key:"chan_id",value:t.chan_id,title:"Channel ID",width:50,type:l.UN.STRING},{key:"alias",value:t.alias,title:"Peer Alias",width:50,type:l.UN.STRING}],[{key:"events",value:t.events,title:"Events",width:50,type:l.UN.NUMBER},{key:"total_amount",value:t.total_amount,title:"Total Amount (Sats)",width:50,type:l.UN.NUMBER}]]}}}))}applyFilterIncoming(){this.routingPeersIncoming.filter=this.filterIn.trim().toLowerCase()}applyFilterOutgoing(){this.routingPeersOutgoing.filter=this.filterOut.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(t,a)=>{let i="";return i="all"===this.selFilterByIn?JSON.stringify(t).toLowerCase():"string"==typeof t[this.selFilterByIn]?t[this.selFilterByIn].toLowerCase():"boolean"==typeof t[this.selFilterByIn]?t[this.selFilterByIn]?"yes":"no":t[this.selFilterByIn].toString(),i.includes(a)},this.routingPeersOutgoing.filterPredicate=(t,a)=>{let i="";switch(this.selFilterByOut){case"all":i=JSON.stringify(t).toLowerCase();break;case"total_amount":case"total_fee":i=(+(t[this.selFilterByOut]||0)/1e3).toString()||"";break;default:i="string"==typeof t[this.selFilterByOut]?t[this.selFilterByOut].toLowerCase():"boolean"==typeof t[this.selFilterByOut]?t[this.selFilterByOut]?"yes":"no":t[this.selFilterByOut].toString()}return i.includes(a)}}loadRoutingPeersTable(t){if(t.length>0){const a=this.groupRoutingPeers(t);this.routingPeersIncoming=new c.I6(a[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||l.oi.DESCENDING,disableClear:!0}),this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new c.I6(a[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.sort.sort({id:this.tableSetting.sortBy||"total_amount",start:this.tableSetting.sortOrder||l.oi.DESCENDING,disableClear:!0}),this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new c.I6([]),this.routingPeersOutgoing=new c.I6([]);this.setFilterPredicate(),this.applyFilterIncoming(),this.applyFilterOutgoing()}groupRoutingPeers(t){const a=[],i=[];return t.forEach(o=>{const r=a.find(F=>F.chan_id===o.chan_id_in),p=i.find(F=>F.chan_id===o.chan_id_out);r?(r.events++,r.total_amount=+r.total_amount+ +(o.amt_in||0)):a.push({chan_id:o.chan_id_in,alias:o.alias_in,events:1,total_amount:+(o.amt_in||0)}),p?(p.events++,p.total_amount=+p.total_amount+ +(o.amt_out||0)):i.push({chan_id:o.chan_id_out,alias:o.alias_out,events:1,total_amount:+(o.amt_out||0)})}),[this.commonService.sortDescByKey(a,"total_amount"),this.commonService.sortDescByKey(i,"total_amount")]}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-routing-peers"]],viewQuery:function(a,i){if(1&a&&(e.GBs(__,5,k.B4),e.GBs(f_,5,k.B4),e.GBs(g_,5),e.GBs(C_,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sortIn=o.first),e.mGM(o=e.lsd())&&(i.sortOut=o.first),e.mGM(o=e.lsd())&&(i.paginatorIn=o.first),e.mGM(o=e.lsd())&&(i.paginatorOut=o.first)}},features:[e.Jv_([{provide:w.xX,useValue:(0,l.on)("Routing peers")}])],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between start","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between start",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mb-4"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"dataSource"],["matColumnDef","chan_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_amount"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"dataSource"],["matColumnDef","no_outgoing_event"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,i){1&a&&(e.j41(0,"div",4),e.DNE(1,v_,2,1,"div",5)(2,a0,60,25,"div",6),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage))},dependencies:[d.YU,d.bT,d.B3,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,B.HM,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.Ld,d.QX]})}return n})();function o0(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",8),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let l0=(()=>{class n{constructor(t){this.router=t,this.faChartBar=b.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-reports"]],decls:12,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Reports"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,o0,2,3,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),e.k0s()()()),2&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faChartBar),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}return n})();var it=g(6064),at=g(4655);const r0=n=>({"error-border":n});function c0(n,s){1&n&&e.nrm(0,"mat-progress-bar",17)}function p0(n,s){if(1&n&&(e.j41(0,"div",18),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=e.XpG();e.Y8G("@fadeIn",t.events.total_fee_msat),e.R7$(),e.Lme("",e.i5U(2,3,t.events.total_fee_msat/1e3||0,"1.0-2")," Sats/",e.bMT(3,6,(null==t.events||null==t.events.forwarding_events?null:t.events.forwarding_events.length)||0)," Events")}}function m0(n,s){1&n&&(e.j41(0,"div",19),e.EFF(1,"No routing report for the selected period"),e.k0s())}function u0(n,s){if(1&n&&(e.j41(0,"div",20),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(2,r0,"Getting Forwarding History..."!==t.errorMessage&&""!==t.errorMessage)),e.R7$(),e.JRh(t.errorMessage)}}function d0(n,s){if(1&n&&(e.j41(0,"span")(1,"span",22),e.EFF(2),e.nI1(3,"number"),e.k0s(),e.j41(4,"span",22),e.EFF(5),e.nI1(6,"number"),e.k0s()()),2&n){const t=s.model,a=e.XpG(2);e.R7$(2),e.SpI("Events: ",e.bMT(3,2,(a.selReportBy===a.reportBy.EVENTS?t.value:t.extra.totalEvents)||0),""),e.R7$(3),e.SpI("Fee: ",e.i5U(6,4,(a.selReportBy===a.reportBy.EVENTS?t.extra.totalFees:t.value)||0,"1.0-2"),"")}}function h0(n,s){if(1&n){const t=e.RV6();e.j41(0,"ngx-charts-bar-vertical",21),e.bIt("select",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onChartBarSelected(i))})("mouseup",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onChartMouseUp(i))}),e.DNE(1,d0,7,7,"ng-template",null,0,e.C5r),e.k0s()}if(2&n){const t=e.XpG();e.Y8G("view",t.view)("results",t.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function _0(n,s){if(1&n&&e.nrm(0,"rtl-forwarding-history",23),2&n){const t=e.XpG();e.Y8G("pageId","reports")("tableId","routing")("eventsData",null==t.events?null:t.events.forwarding_events)("selFilter",t.eventFilterValue)}}let f0=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.dataService=a,this.commonService=i,this.store=o,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.events={},this.eventFilterValue="",this.reportBy=l.aR,this.selReportBy=l.aR.FEES,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{t.identity_pubkey&&setTimeout(()=>{this.fetchEvents(this.startDate,this.endDate)},10)}),this.commonService.containerSizeUpdated.pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=t.width/10;break;case l.f7.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}fetchEvents(t,a){this.errorMessage=l.MZ.GET_FORWARDING_HISTORY;const i=Math.round(t.getTime()/1e3).toString(),o=Math.round(a.getTime()/1e3).toString();this.dataService.getForwardingHistory("LND",i,o).pipe((0,_.Q)(this.unSubs[2])).subscribe({next:r=>{this.errorMessage="",r.forwarding_events&&r.forwarding_events.length?(r.forwarding_events=r.forwarding_events.reverse(),this.events=r,this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(t):this.prepareFeeReport(t)):(this.events={forwarding_events:[],total_fee_msat:0},this.routingReportData=[])},error:r=>{this.errorMessage=r}})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(t){this.eventFilterValue=this.reportPeriod===l.rs[1]?t.name+"/"+this.startDate.getFullYear():t.name.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(t){const a=Math.round(t.getTime()/1e3),i=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.rs[1]){for(let o=0;o<12;o++)i.push({name:l.KR[o].name,value:0,extra:{totalEvents:0}});this.events.forwarding_events?.map(o=>{const r=new Date(1e3*+(o.timestamp||0)).getMonth();return i[r].value=i[r].value+ +(o.fee_msat||0)/1e3,i[r].extra.totalEvents=i[r].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}else{for(let o=0;o{const r=Math.floor((+(o.timestamp||0)-a)/this.secondsInADay);return i[r].value=i[r].value+ +(o.fee_msat||0)/1e3,i[r].extra.totalEvents=i[r].extra.totalEvents+1,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}return i}prepareEventsReport(t){const a=Math.round(t.getTime()/1e3),i=[];if(this.events.total_fee_msat=0,this.reportPeriod===l.rs[1]){for(let o=0;o<12;o++)i.push({name:l.KR[o].name,value:0,extra:{totalFees:0}});this.events.forwarding_events?.map(o=>{const r=new Date(1e3*+(o.timestamp||0)).getMonth();return i[r].value=i[r].value+1,i[r].extra.totalFees=i[r].extra.totalFees+ +(o.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}else{for(let o=0;o{const r=Math.floor((+(o.timestamp||0)-a)/this.secondsInADay);return i[r].value=i[r].value+1,i[r].extra.totalFees=i[r].extra.totalFees+ +(o.fee_msat||0)/1e3,this.events.total_fee_msat=(this.events.total_fee_msat?this.events.total_fee_msat:0)+ +(o.fee_msat||0),this.events})}return i}onSelectionChange(t){const a=t.selDate.getMonth(),i=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.rs[1]?(this.startDate=new Date(i,0,1,0,0,0),this.endDate=new Date(i,11,31,23,59,59)):(this.startDate=new Date(i,a,1,0,0,0),this.endDate=new Date(i,a,this.getMonthDays(a,i),23,59,59)),this.fetchEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(t,a){return 1===t&&a%4==0?l.KR[t].days+1:l.KR[t].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(K.u),e.rXU(N.h),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-routing-report"]],hostBindings:function(a,i){1&a&&e.bIt("mouseup",function(r){return i.onChartMouseUp(r)})},decls:20,vars:9,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start center",1,"my-1",3,"ngModelChange","change","ngModel"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["mode","indeterminate","class","mt-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x","my-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",3,"ngClass",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],[3,"pageId","tableId","eventsData","selFilter",4,"ngIf"],["mode","indeterminate",1,"mt-2"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1",3,"ngClass"],[1,"one-color",3,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(a,i){1&a&&(e.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),e.bIt("stepChanged",function(r){return i.onSelectionChange(r)}),e.k0s(),e.j41(2,"div",3)(3,"mat-radio-group",4),e.mxI("ngModelChange",function(r){return e.DH7(i.selReportBy,r)||(i.selReportBy=r),r}),e.bIt("change",function(){return i.onSelReportByChange()}),e.j41(4,"span",5),e.EFF(5,"Report By: "),e.k0s(),e.j41(6,"mat-radio-button",6),e.EFF(7,"Fees"),e.k0s(),e.j41(8,"mat-radio-button",7),e.EFF(9,"Events"),e.k0s()()(),e.DNE(10,c0,1,0,"mat-progress-bar",8),e.j41(11,"div",9),e.DNE(12,p0,4,8,"div",10)(13,m0,2,0,"div",11)(14,u0,2,4,"div",12),e.j41(15,"div",13),e.DNE(16,h0,3,11,"ngx-charts-bar-vertical",14),e.k0s()(),e.j41(17,"div",15)(18,"div",13),e.DNE(19,_0,1,4,"rtl-forwarding-history",16),e.k0s()()()),2&a&&(e.R7$(3),e.R50("ngModel",i.selReportBy),e.R7$(3),e.FS9("value",i.reportBy.FEES),e.R7$(2),e.FS9("value",i.reportBy.EVENTS),e.R7$(2),e.Y8G("ngIf","Getting Forwarding History..."===i.errorMessage),e.R7$(2),e.Y8G("ngIf",i.routingReportData.length>0&&i.events.forwarding_events&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0),e.R7$(),e.Y8G("ngIf",(i.routingReportData.length<=0||i.events.forwarding_events.length<=0)&&""===i.errorMessage),e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(2),e.Y8G("ngIf",i.routingReportData.length>0&&i.events.forwarding_events&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0),e.R7$(3),e.Y8G("ngIf",i.events&&(null==i.events?null:i.events.forwarding_events)&&i.events.forwarding_events.length&&i.events.forwarding_events.length>0))},dependencies:[d.YU,d.bT,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,B.HM,pe.VT,pe._g,it.L8,at.m,tt,d.QX],data:{animation:[Le.q]}})}return n})();var g0=g(9584),C0=g(5085);function y0(n,s){1&n&&(e.j41(0,"div",12),e.nrm(1,"mat-progress-bar",13),e.j41(2,"span"),e.EFF(3,"Getting transactions data..."),e.k0s()())}function b0(n,s){if(1&n&&(e.j41(0,"div",14),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function F0(n,s){if(1&n&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Lme(" Paid ",e.i5U(2,2,t.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,t.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function x0(n,s){if(1&n&&(e.j41(0,"div",17),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Lme(" Received ",e.i5U(2,2,t.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",e.bMT(3,5,t.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function v0(n,s){if(1&n&&(e.j41(0,"div",15),e.DNE(1,F0,4,7,"div",16)(2,x0,4,7,"div",16),e.k0s()),2&n){const t=e.XpG();e.Y8G("@fadeIn",t.transactionsReportSummary),e.R7$(),e.Y8G("ngIf",t.transactionsReportSummary.paymentsSelectedPeriod>0),e.R7$(),e.Y8G("ngIf",t.transactionsReportSummary.invoicesSelectedPeriod)}}function T0(n,s){1&n&&(e.j41(0,"div",18),e.EFF(1,"No transactions report for the selected period"),e.k0s())}function S0(n,s){if(1&n&&(e.j41(0,"span",21),e.EFF(1),e.nI1(2,"number"),e.nI1(3,"number"),e.k0s()),2&n){const t=s.model;e.R7$(),e.LHq("",t.name,": ",e.i5U(2,4,t.value||0,"1.0-2"),"/# ","Paid"===t.name?"Payments":"Invoices",": ",e.bMT(3,7,(null==t.extra?null:t.extra.total)||0),"")}}function k0(n,s){if(1&n){const t=e.RV6();e.j41(0,"ngx-charts-bar-vertical-2d",20),e.bIt("select",function(i){e.eBV(t);const o=e.XpG(2);return e.Njj(o.onChartBarSelected(i))})("mouseup",function(i){e.eBV(t);const o=e.XpG(2);return e.Njj(o.onChartMouseUp(i))}),e.DNE(1,S0,4,9,"ng-template",null,0,e.C5r),e.k0s()}if(2&n){const t=e.XpG(2);e.Y8G("view",t.view)("results",t.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",t.reportPeriod===t.scrollRanges[0]?2:8)}}function R0(n,s){if(1&n&&(e.j41(0,"div",10),e.DNE(1,k0,3,13,"ngx-charts-bar-vertical-2d",19),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",t.transactionsReportData.length>0&&t.transactionsNonZeroReportData.length>0)}}function E0(n,s){if(1&n&&e.nrm(0,"rtl-transactions-report-table",22),2&n){const t=e.XpG();e.Y8G("displayedColumns",t.displayedColumns)("tableSetting",t.tableSetting)("dataList",t.transactionsNonZeroReportData)("dataRange",t.reportPeriod)("selFilter",t.transactionFilterValue)}}let I0=(()=>{class n{constructor(t,a,i){this.logger=t,this.commonService=a,this.store=i,this.scrollRanges=l.rs,this.reportPeriod=l.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"date",sortOrder:l.oi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[{date:"",name:"1",series:[{extra:{total:0},name:"Paid",value:0},{extra:{total:0},name:"Received",value:0}]}],this.transactionsNonZeroReportData=[{amount_paid:0,amount_received:0,date:"",num_invoices:0,num_payments:0}],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===l.f7.XS||this.screenSize===l.f7.SM),this.store.select(g0.av).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.n_).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{t.apiCallStatus.status===l.wn.UN_INITIATED&&this.store.dispatch((0,v.tG)()),this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.payments=t.allLightningTransactions.listPaymentsAll.payments||[],this.invoices=t.allLightningTransactions.listInvoicesAll.invoices||[],(this.payments.length>0||this.invoices.length>0)&&(this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()),this.logger.info(t)}),this.commonService.containerSizeUpdated.pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{switch(this.screenSize){case l.f7.MD:this.screenPaddingX=t.width/10;break;case l.f7.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(t){this.transactionFilterValue=this.reportPeriod===l.rs[1]?t.series+"/"+this.startDate.getFullYear():t.series.toString().padStart(2,"0")+"/"+l.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(t,a){const i=Math.round(t.getTime()/1e3),o=Math.round(a.getTime()/1e3),r=[];this.transactionsNonZeroReportData=[],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const p=this.payments?.filter(C=>"SUCCEEDED"===C.status&&C.creation_date&&C.creation_date>=i&&C.creation_dateC.settled&&C.creation_date&&+C.creation_date>=i&&+C.creation_date{const S=new Date(1e3*+(C.creation_date||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(C.value_msat||0)+ +(C.fee_msat||0),r[S].series[0].value=r[S].series[0].value+(+(C.value_msat||0)+ +(C.fee_msat||0))/1e3,r[S].series[0].extra.total=r[S].series[0].extra.total+1,this.transactionsReportSummary}),F?.map(C=>{const S=new Date(1e3*+(C.creation_date||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(C.amt_paid_msat||0),r[S].series[1].value=r[S].series[1].value+ +(C.amt_paid_msat||0)/1e3,r[S].series[1].extra.total=r[S].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let C=0;C{const S=Math.floor((+(C.creation_date||0)-i)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+ +(C.value_msat||0)+ +(C.fee_msat||0),r[S].series[0].value=r[S].series[0].value+(+(C.value_msat||0)+ +(C.fee_msat||0))/1e3,r[S].series[0].extra.total=r[S].series[0].extra.total+1,this.transactionsReportSummary}),F?.map(C=>{const S=Math.floor((+(C.creation_date||0)-i)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+ +(C.amt_paid_msat||0),r[S].series[1].value=r[S].series[1].value+ +(C.amt_paid_msat||0)/1e3,r[S].series[1].extra.total=r[S].series[1].extra.total+1,this.transactionsReportSummary})}return r}prepareTableData(){return this.transactionsReportData?.reduce((t,a)=>a.series[0].extra.total>0||a.series[1].extra.total>0?t.concat({date:a.date,amount_paid:a.series[0].value,num_payments:a.series[0].extra.total,amount_received:a.series[1].value,num_invoices:a.series[1].extra.total}):t,[])}onSelectionChange(t){const a=t.selDate.getMonth(),i=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===l.rs[1]?(this.startDate=new Date(i,0,1,0,0,0),this.endDate=new Date(i,11,31,23,59,59)):(this.startDate=new Date(i,a,1,0,0,0),this.endDate=new Date(i,a,this.getMonthDays(a,i),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(t,a){return 1===t&&a%4==0?l.KR[t].days+1:l.KR[t].days}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-transactions-report"]],hostBindings:function(a,i){1&a&&e.bIt("mouseup",function(r){return i.onChartMouseUp(r)})},decls:11,vars:6,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],[3,"stepChanged"],["class","p-2",4,"ngIf"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["class","mt-1",4,"ngIf"],[1,"mt-1"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],[1,"p-2"],["mode","indeterminate"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[1,"two-color",3,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(a,i){1&a&&(e.j41(0,"div",1)(1,"div",2)(2,"div",3)(3,"rtl-horizontal-scroller",4),e.bIt("stepChanged",function(r){return i.onSelectionChange(r)}),e.k0s(),e.DNE(4,y0,4,0,"div",5)(5,b0,2,1,"div",6)(6,v0,3,3,"div",7)(7,T0,2,0,"div",8)(8,R0,2,1,"div",9),e.j41(9,"div",10),e.DNE(10,E0,1,5,"rtl-transactions-report-table",11),e.k0s()()()()),2&a&&(e.R7$(4),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.ERROR),e.R7$(),e.Y8G("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",i.transactionsNonZeroReportData.length<=0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED),e.R7$(2),e.Y8G("ngIf",i.transactionsNonZeroReportData.length>0&&i.apiCallStatus.status===i.apiCallStatusEnum.COMPLETED))},dependencies:[d.bT,h.DJ,h.sA,h.UI,B.HM,it.Dl,at.m,C0.T,d.QX],data:{animation:[Le.q]}})}return n})();const L0=["form"];function w0(n,s){if(1&n&&(e.j41(0,"div",17),e.nrm(1,"fa-icon",18),e.j41(2,"span"),e.EFF(3,'Bump fee option will be disabled for unconfirmed UTXOs where label text includes "sweep" in its value.'),e.k0s()()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle)}}function j0(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"UTXO Label is required."),e.k0s())}function G0(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.labelError)}}function D0(n,s){if(1&n&&(e.j41(0,"div",19),e.nrm(1,"fa-icon",18),e.DNE(2,G0,2,1,"span",12),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.labelError)}}let N0=(()=>{class n{constructor(t,a,i,o,r,p){this.dialogRef=t,this.data=a,this.dataService=i,this.store=o,this.snackBar=r,this.commonService=p,this.faExclamationTriangle=b.zpE,this.utxo=null,this.label="",this.labelError="",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.utxo=this.data.utxo,this.label=this.utxo.label||""}onLabelUTXO(){if(!this.label||""===this.label)return!0;this.labelError="",this.dataService.labelUTXO(this.utxo&&this.utxo.outpoint&&this.utxo.outpoint.txid_bytes?this.utxo.outpoint.txid_bytes:"",this.label,!0).pipe((0,_.Q)(this.unSubs[0])).subscribe({next:t=>{this.store.dispatch((0,v.mh)()),this.store.dispatch((0,v.SM)()),this.snackBar.open("Successfully labelled the UTXO."),this.dialogRef.close()},error:t=>{this.labelError=t}})}resetData(){this.labelError="",this.label=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(K.u),e.rXU(I.il),e.rXU(ae.UG),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-lebel-modal"]],viewQuery:function(a,i){if(1&a&&e.GBs(L0,7),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first)}},decls:23,vars:5,consts:[["form","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","100"],["autoFocus","","matInput","","name","label","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Label UTXO"),e.k0s()(),e.j41(6,"button",6),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"form",8,0),e.bIt("submit",function(){return e.eBV(o),e.Njj(i.onLabelUTXO())})("reset",function(){return e.eBV(o),e.Njj(i.resetData())}),e.DNE(11,w0,4,1,"div",9),e.j41(12,"mat-form-field",10)(13,"mat-label"),e.EFF(14,"UTXO Label"),e.k0s(),e.j41(15,"input",11),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.label,p)||(i.label=p),e.Njj(p)}),e.k0s(),e.DNE(16,j0,2,0,"mat-error",12),e.k0s(),e.DNE(17,D0,3,2,"div",13),e.j41(18,"div",14)(19,"button",15),e.EFF(20,"Clear"),e.k0s(),e.j41(21,"button",16),e.EFF(22,"Label UTXO"),e.k0s()()()()()()}2&a&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(5),e.Y8G("ngIf",i.label.toLowerCase().includes("sweep")&&"0"===i.utxo.confirmations),e.R7$(4),e.R50("ngModel",i.label),e.R7$(),e.Y8G("ngIf",!i.label),e.R7$(),e.Y8G("ngIf",""!==i.labelError))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.TL,Z.N]})}return n})();const st=()=>["all"],P0=n=>({"error-border":n}),$0=()=>["no_utxo"],De=n=>({width:n}),A0=n=>({"display-none":n});function M0(n,s){if(1&n&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function B0(n,s){1&n&&e.nrm(0,"mat-progress-bar",35)}function O0(n,s){1&n&&e.nrm(0,"th",36)}function V0(n,s){1&n&&(e.j41(0,"span",39)(1,"mat-icon",40),e.EFF(2,"warning"),e.k0s()())}function Y0(n,s){if(1&n&&(e.j41(0,"td",37),e.DNE(1,V0,3,0,"span",38),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(),i=e.sdS(52);e.R7$(),e.Y8G("ngIf",t.amount_sat0))}}function df(n,s){1&n&&e.nrm(0,"tr",57)}function hf(n,s){1&n&&e.nrm(0,"tr",58)}function _f(n,s){1&n&&e.nrm(0,"mat-icon",40)}let ff=(()=>{class n{constructor(t,a,i,o,r,p,F,C){this.logger=t,this.commonService=a,this.dataService=i,this.store=o,this.rtlEffects=r,this.decimalPipe=p,this.camelCaseWithReplace=F,this.snackBar=C,this.isDustUTXO=!1,this.dustAmount=1e3,this.faMoneyBillWave=b.ymQ,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:l.md,sortBy:"tx_id",sortOrder:l.oi.DESCENDING},this.addressType=l.aG,this.displayedColumns=[],this.listUTXOs=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(){!this.isDustUTXO&&this.utxos&&this.utxos.length>0&&this.loadUTXOsTable(this.utxos),this.isDustUTXO&&this.dustUtxos&&this.dustUtxos.length>0&&this.loadUTXOsTable(this.dustUtxos)}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.ah).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),t.utxos&&t.utxos.length>0&&(this.dustUtxos=t.utxos?.filter(a=>+(a.amount_sat||0)0&&this.dustUtxos.length>0&&!this.isDustUTXO&&this.displayedColumns.unshift("is_dust"),this.loadUTXOsTable(this.isDustUTXO?this.dustUtxos:this.utxos)),this.logger.info(t)})}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):"is_dust"===t?"Dust":this.commonService.titleCase(t)}setFilterPredicate(){this.listUTXOs.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.label?t.label.toLowerCase():"")+(t.outpoint?.txid_str?t.outpoint.txid_str.toLowerCase():"")+(t.outpoint?.output_index?t.outpoint?.output_index:"")+(t.outpoint?.txid_bytes?t.outpoint?.txid_bytes.toLowerCase():"")+(t.address?t.address.toLowerCase():"")+(t.address_type?this.addressType[t.address_type].name.toLowerCase():"")+(t.amount_sat?t.amount_sat:"")+(t.confirmations?t.confirmations:"");break;case"is_dust":i=+(t?.amount_sat||0)"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"is_dust"===this.selFilterBy||"address_type"===this.selFilterBy?0===i.indexOf(a):i.includes(a)}}onUTXOClick(t){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"UTXO Information",message:[[{key:"txid",value:t.outpoint?.txid_str,title:"Transaction ID",width:100,type:l.UN.STRING,explorerLink:"tx"}],[{key:"label",value:t.label,title:"Label",width:100,type:l.UN.STRING}],[{key:"output_index",value:t.outpoint?.output_index,title:"Output Index",width:34,type:l.UN.NUMBER},{key:"amount_sat",value:t.amount_sat,title:"Amount (Sats)",width:33,type:l.UN.NUMBER},{key:"confirmations",value:t.confirmations,title:"Confirmations",width:33,type:l.UN.NUMBER}],[{key:"address_type",value:t.address_type?this.addressType[t.address_type].name:"",title:"Address Type",width:34},{key:"address",value:t.address,title:"Address",width:66}],[{key:"pk_script",value:t.pk_script,title:"PK Script",width:100,type:l.UN.STRING}]]}}}))}loadUTXOsTable(t){this.listUTXOs=new c.I6([...t]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(a,i)=>{switch(i){case"is_dust":return+(a.amount_sat||0){i&&this.dataService.leaseUTXO(t.outpoint?.txid_bytes||"",t.outpoint?.output_index||0).pipe((0,_.Q)(this.unSubs[0])).subscribe({next:o=>{this.snackBar.open("The UTXO has been leased till "+new Date(o).toString().substring(4,21).replace(" ","/").replace(" ","/").toUpperCase()+".")},error:o=>{this.snackBar.open(o+" UTXO not leased.","",{panelClass:"rtl-warn-snack-bar"})}})})}onBumpFee(t){this.store.dispatch((0,E.xO)({payload:{data:{selUTXO:t,component:Ke}}}))}onDownloadCSV(){this.listUTXOs.data&&this.listUTXOs.data.length>0&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(K.u),e.rXU(I.il),e.rXU(me.H),e.rXU(d.QX),e.rXU(q.VD),e.rXU(ae.UG))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-utxos"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},inputs:{isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("UTXOs")}]),e.OA$],decls:53,vars:19,consts:[["table",""],["emptySpace",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","end stretch","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","is_dust"],["mat-header-cell","","mat-sort-header","","matTooltip","Dust/Nondust",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","tx_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","output"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","label"],["matColumnDef","address_type"],["matColumnDef","address"],["matColumnDef","amount_sat"],["matColumnDef","confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_utxo"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Dust/Nondust"],["mat-cell",""],["matTooltip","Risk of dust attack","matTooltipPosition","right",4,"ngIf","ngIfElse"],["matTooltip","Risk of dust attack","matTooltipPosition","right"],["fxLayoutAlign","start center","color","warn",1,"small-icon"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row","fxLayoutAlign","start center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"div",4)(3,"mat-form-field",5)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",6),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,M0,2,2,"mat-option",7),e.k0s()()(),e.j41(9,"mat-form-field",5)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",8),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(13,"div",9)(14,"div",10),e.DNE(15,B0,1,0,"mat-progress-bar",11),e.j41(16,"table",12,0),e.qex(18,13),e.DNE(19,O0,1,0,"th",14)(20,Y0,2,2,"td",15),e.bVm(),e.qex(21,16),e.DNE(22,X0,2,0,"th",17)(23,U0,4,4,"td",15),e.bVm(),e.qex(24,18),e.DNE(25,H0,2,0,"th",19)(26,q0,3,1,"td",15),e.bVm(),e.qex(27,20),e.DNE(28,z0,2,0,"th",17)(29,J0,4,4,"td",15),e.bVm(),e.qex(30,21),e.DNE(31,W0,2,0,"th",17)(32,Q0,3,1,"td",15),e.bVm(),e.qex(33,22),e.DNE(34,Z0,2,0,"th",17)(35,K0,4,4,"td",15),e.bVm(),e.qex(36,23),e.DNE(37,ef,2,0,"th",19)(38,tf,4,3,"td",15),e.bVm(),e.qex(39,24),e.DNE(40,nf,2,0,"th",19)(41,af,4,3,"td",15),e.bVm(),e.qex(42,25),e.DNE(43,sf,6,0,"th",26)(44,lf,11,1,"td",27),e.bVm(),e.qex(45,28),e.DNE(46,mf,4,3,"td",29),e.bVm(),e.DNE(47,uf,1,3,"tr",30)(48,df,1,0,"tr",31)(49,hf,1,0,"tr",32),e.k0s(),e.nrm(50,"mat-paginator",33),e.k0s()()(),e.DNE(51,_f,1,0,"ng-template",null,1,e.C5r)}2&a&&(e.R7$(6),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",i.utxos&&i.utxos.length>0&&i.dustUtxos&&i.dustUtxos.length>0&&!i.isDustUTXO?e.lJ4(14,st).concat(i.displayedColumns.slice(0,-1)):e.lJ4(15,st).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(3),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.listUTXOs)("ngClass",e.eq3(16,P0,""!==i.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(18,$0)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,ie.An,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,Q.oV,w.iy,A.ZF,A.Ld,d.QX],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return n})();const gf=()=>["all"],Cf=n=>({"error-border":n}),yf=()=>["no_transaction"],Ne=n=>({width:n}),bf=n=>({"display-none":n});function Ff(n,s){if(1&n&&(e.j41(0,"mat-option",32),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function xf(n,s){1&n&&e.nrm(0,"mat-progress-bar",33)}function vf(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Date/Time"),e.k0s())}function Tf(n,s){if(1&n&&(e.j41(0,"td",35),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*t.time_stamp,"dd/MMM/y HH:mm"))}}function Sf(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Label"),e.k0s())}function kf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.label)}}function Rf(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Block Hash"),e.k0s())}function Ef(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.block_hash)}}function If(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Transaction Hash"),e.k0s())}function Lf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Ne,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.tx_hash)}}function wf(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Amount (Sats)"),e.k0s())}function jf(n,s){if(1&n&&(e.j41(0,"span",41),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.JRh(e.bMT(2,1,t.amount))}}function Gf(n,s){if(1&n&&(e.j41(0,"span",42),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&n){const t=e.XpG().$implicit;e.R7$(),e.SpI("(",e.bMT(2,1,-1*t.amount),")")}}function Df(n,s){if(1&n&&(e.j41(0,"td",35),e.DNE(1,jf,3,3,"span",39)(2,Gf,3,3,"span",40),e.k0s()),2&n){const t=s.$implicit;e.R7$(),e.Y8G("ngIf",t.amount>0||0===t.amount),e.R7$(),e.Y8G("ngIf",t.amount<0)}}function Nf(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Fees (Sats)"),e.k0s())}function Pf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_fees))}}function $f(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Block Height"),e.k0s())}function Af(n,s){if(1&n&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.block_height))}}function Mf(n,s){1&n&&(e.j41(0,"th",38),e.EFF(1,"Confirmations"),e.k0s())}function Bf(n,s){if(1&n&&(e.j41(0,"td",35)(1,"span",41),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI(" ",e.bMT(3,1,null==t?null:t.num_confirmations)," ")}}function Of(n,s){if(1&n){const t=e.RV6();e.j41(0,"th",43)(1,"div",44)(2,"mat-select",45),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",46),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Vf(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",47)(1,"button",48),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onTransactionClick(i))}),e.EFF(2,"View Info"),e.k0s()()}}function Yf(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No transaction available."),e.k0s())}function Xf(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting transactions..."),e.k0s())}function Uf(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Hf(n,s){if(1&n&&(e.j41(0,"td",49),e.DNE(1,Yf,2,0,"p",50)(2,Xf,2,0,"p",50)(3,Uf,2,1,"p",50),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.listTransactions&&t.listTransactions.data)||(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function qf(n,s){if(1&n&&e.nrm(0,"tr",51),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,bf,(null==t.listTransactions?null:t.listTransactions.data)&&(null==t.listTransactions||null==t.listTransactions.data?null:t.listTransactions.data.length)>0))}}function zf(n,s){1&n&&e.nrm(0,"tr",52)}function Jf(n,s){1&n&&e.nrm(0,"tr",53)}let Wf=(()=>{class n{constructor(t,a,i,o,r){this.logger=t,this.commonService=a,this.store=i,this.datePipe=o,this.camelCaseWithReplace=r,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"time_stamp",sortOrder:l.oi.DESCENDING},this.faHistory=b.Int,this.displayedColumns=[],this.listTransactions=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(){this.transactions&&this.transactions.length>0&&this.loadTransactionsTable(this.transactions)}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.gN).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),t.transactions&&t.transactions.length>0&&(this.transactions=t.transactions,this.loadTransactionsTable(this.transactions)),this.logger.info(t)})}onTransactionClick(t){this.store.dispatch((0,E.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Transaction Information",message:[[{key:"block_hash",value:t.block_hash,title:"Block Hash",width:100,explorerLink:"block"}],[{key:"tx_hash",value:t.tx_hash,title:"Transaction Hash",width:100,explorerLink:"tx"}],[{key:"label",value:t.label,title:"Label",width:100,type:l.UN.STRING}],[{key:"time_stamp",value:t.time_stamp,title:"Date/Time",width:50,type:l.UN.DATE_TIME},{key:"block_height",value:t.block_height,title:"Block Height",width:50,type:l.UN.NUMBER}],[{key:"num_confirmations",value:t.num_confirmations,title:"Number of Confirmations",width:34,type:l.UN.NUMBER},{key:"total_fees",value:t.total_fees,title:"Total Fees (Sats)",width:33,type:l.UN.NUMBER},{key:"amount",value:t.amount,title:"Amount (Sats)",width:33,type:l.UN.NUMBER}],[{key:"dest_addresses",value:t.dest_addresses,title:"Destination Addresses",width:100,type:l.UN.ARRAY}]],scrollable:t.dest_addresses&&t.dest_addresses.length>5}}}))}applyFilter(){this.listTransactions.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.listTransactions.filterPredicate=(t,a)=>{let i="";switch(this.selFilterBy){case"all":i=(t.time_stamp?this.datePipe.transform(new Date(1e3*t.time_stamp),"dd/MMM/y HH:mm")?.toLowerCase():"")+JSON.stringify(t).toLowerCase();break;case"time_stamp":i=this.datePipe.transform(new Date(1e3*(t?.time_stamp||0)),"dd/MMM/YYYY HH:mm")?.toLowerCase()||"";break;default:i=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return i.includes(a)}}loadTransactionsTable(t){this.listTransactions=new c.I6([...t]),this.listTransactions.sort=this.sort,this.listTransactions.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.listTransactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listTransactions)}onDownloadCSV(){this.listTransactions.data&&this.listTransactions.data.length>0&&this.commonService.downloadFile(this.listTransactions.data,"Transactions")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(d.vh),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-transaction-history"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Transactions")}]),e.OA$],decls:51,vars:18,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-xs","row wrap","fxLayoutAlign.gt-xs","end stretch","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","time_stamp"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","label"],["matColumnDef","block_hash"],["matColumnDef","tx_hash"],["matColumnDef","amount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_fees"],["matColumnDef","block_height"],["matColumnDef","num_confirmations"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3)(3,"mat-form-field",4)(4,"mat-label"),e.EFF(5,"Filter By"),e.k0s(),e.j41(6,"mat-select",5),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilterBy,p)||(i.selFilterBy=p),e.Njj(p)}),e.bIt("selectionChange",function(){return e.eBV(o),i.selFilter="",e.Njj(i.applyFilter())}),e.j41(7,"perfect-scrollbar"),e.DNE(8,Ff,2,2,"mat-option",6),e.k0s()()(),e.j41(9,"mat-form-field",4)(10,"mat-label"),e.EFF(11,"Filter"),e.k0s(),e.j41(12,"input",7),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(13,"div",8)(14,"div",9),e.DNE(15,xf,1,0,"mat-progress-bar",10),e.j41(16,"table",11,0),e.qex(18,12),e.DNE(19,vf,2,0,"th",13)(20,Tf,3,4,"td",14),e.bVm(),e.qex(21,15),e.DNE(22,Sf,2,0,"th",13)(23,kf,4,4,"td",14),e.bVm(),e.qex(24,16),e.DNE(25,Rf,2,0,"th",13)(26,Ef,4,4,"td",14),e.bVm(),e.qex(27,17),e.DNE(28,If,2,0,"th",13)(29,Lf,4,4,"td",14),e.bVm(),e.qex(30,18),e.DNE(31,wf,2,0,"th",19)(32,Df,3,2,"td",14),e.bVm(),e.qex(33,20),e.DNE(34,Nf,2,0,"th",19)(35,Pf,4,3,"td",14),e.bVm(),e.qex(36,21),e.DNE(37,$f,2,0,"th",19)(38,Af,4,3,"td",14),e.bVm(),e.qex(39,22),e.DNE(40,Mf,2,0,"th",19)(41,Bf,4,3,"td",14),e.bVm(),e.qex(42,23),e.DNE(43,Of,6,0,"th",24)(44,Vf,3,0,"td",25),e.bVm(),e.qex(45,26),e.DNE(46,Hf,4,3,"td",27),e.bVm(),e.DNE(47,qf,1,3,"tr",28)(48,zf,1,0,"tr",29)(49,Jf,1,0,"tr",30),e.k0s(),e.nrm(50,"mat-paginator",31),e.k0s()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(14,gf).concat(i.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",i.selFilter),e.R7$(3),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",i.tableSetting.sortBy)("matSortDirection",i.tableSetting.sortOrder)("dataSource",i.listTransactions)("ngClass",e.eq3(15,Cf,""!==i.errorMessage)),e.R7$(31),e.Y8G("matFooterRowDef",e.lJ4(17,yf)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX,d.vh]})}return n})();function Qf(n,s){if(1&n&&(e.j41(0,"span",5),e.EFF(1,"UTXOs"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numUtxos)}}function Zf(n,s){if(1&n&&(e.j41(0,"span",5),e.EFF(1,"Transactions"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numTransactions)}}function Kf(n,s){if(1&n&&(e.j41(0,"span",5),e.EFF(1,"Dust UTXOs"),e.k0s()),2&n){const t=e.XpG();e.FS9("matBadge",t.numDustUtxos)}}let e2=(()=>{class n{constructor(t,a){this.logger=t,this.store=a,this.selectedTableIndex=0,this.selectedTableIndexChange=new e.bkB,this.DUST_AMOUNT=1e3,this.numTransactions=0,this.numUtxos=0,this.numDustUtxos=0,this.unSubs=[new u.B,new u.B,new u.B]}ngOnInit(){this.store.dispatch((0,v.mh)()),this.store.dispatch((0,v.SM)()),this.store.select(y.ah).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{t.utxos&&t.utxos.length>0&&(this.numUtxos=t.utxos.length,this.numDustUtxos=t.utxos?.filter(a=>a.amount_sat&&+a.amount_sat{t.transactions&&t.transactions.length>0&&(this.numTransactions=t.transactions.length),this.logger.info(t)})}onSelectedIndexChanged(t){this.selectedTableIndexChange.emit(t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},decls:11,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedIndex"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"isDustUTXO","dustAmount"],["fxLayout","row","fxFlex","100"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(a,i){1&a&&(e.j41(0,"div",0)(1,"mat-tab-group",1),e.bIt("selectedIndexChange",function(r){return i.onSelectedIndexChanged(r)}),e.j41(2,"mat-tab"),e.DNE(3,Qf,2,1,"ng-template",2),e.nrm(4,"rtl-on-chain-utxos",3),e.k0s(),e.j41(5,"mat-tab"),e.DNE(6,Zf,2,1,"ng-template",2),e.nrm(7,"rtl-on-chain-transaction-history",4),e.k0s(),e.j41(8,"mat-tab"),e.DNE(9,Kf,2,1,"ng-template",2),e.nrm(10,"rtl-on-chain-utxos",3),e.k0s()()()),2&a&&(e.R7$(),e.Y8G("selectedIndex",i.selectedTableIndex),e.R7$(3),e.Y8G("isDustUTXO",!1)("dustAmount",i.DUST_AMOUNT),e.R7$(6),e.Y8G("isDustUTXO",!0)("dustAmount",i.DUST_AMOUNT))},dependencies:[h.DJ,h.sA,h.UI,Te.k,P.ES,P.mq,P.T8,ff,Wf]})}return n})();const t2=(n,s)=>[n,s];function n2(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",13),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=null==i?null:i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.Y8G("active",a.activeLink===(null==t?null:t.link))("routerLink",e.l_i(3,t2,null==t?null:t.link,null==a.selectedTable?null:a.selectedTable.name)),e.R7$(),e.JRh(null==t?null:t.name)}}let i2=(()=>{class n{constructor(t,a,i){this.store=t,this.router=a,this.activatedRoute=i,this.faExchangeAlt=b._qq,this.faChartPie=b.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"},{link:"sweep",name:"Sweep All"}],this.activeLink=this.links[0].link,this.tables=[{id:0,name:"utxos"},{id:1,name:"trans"},{id:2,name:"dustUtxos"}],this.selectedTable=this.tables[0],this.unSubs=[new u.B,new u.B,new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.selectedTable=this.tables.find(a=>a.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.selectedTable=this.tables.find(o=>o.name===a.urlAfterRedirects.substring(a.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[1])).subscribe(a=>{this.selNode=a}),this.store.select(y.$7).pipe((0,_.Q)(this.unSubs[2])).subscribe(a=>{this.balances=[{title:"Total Balance",dataValue:a.blockchainBalance.total_balance||0},{title:"Confirmed",dataValue:a.blockchainBalance.confirmed_balance||0},{title:"Unconfirmed",dataValue:a.blockchainBalance.unconfirmed_balance||0}]})}onSelectedTableIndexChanged(t){this.selectedTable=this.tables.find(a=>a.id===t)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(x.Ix),e.rXU(x.nX))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain"]],decls:23,vars:6,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100",3,"selectedTableIndexChange","selectedTableIndex"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"On-chain Balance"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),e.nrm(7,"rtl-currency-unit-converter",6),e.k0s()()(),e.j41(8,"div",1),e.nrm(9,"fa-icon",2),e.j41(10,"span",3),e.EFF(11,"On-chain Transactions"),e.k0s()(),e.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),e.DNE(16,n2,2,6,"div",9),e.k0s(),e.nrm(17,"mat-tab-nav-panel",null,0),e.j41(19,"div",10),e.nrm(20,"router-outlet"),e.k0s(),e.j41(21,"div",11)(22,"rtl-utxo-tables",12),e.bIt("selectedTableIndexChange",function(p){return e.eBV(o),e.Njj(i.onSelectedTableIndexChanged(p))}),e.k0s()()()()()}if(2&a){const o=e.sdS(18);e.R7$(),e.Y8G("icon",i.faChartPie),e.R7$(6),e.Y8G("values",i.balances),e.R7$(2),e.Y8G("icon",i.faExchangeAlt),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links),e.R7$(6),e.Y8G("selectedTableIndex",null==i.selectedTable?null:i.selectedTable.id)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,Se.f,x.n3,x.Wk,e2]})}return n})();var a2=g(396);function s2(n,s){if(1&n&&(e.j41(0,"mat-option",6),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.SpI(" ",t.addressTp," ")}}let o2=(()=>{class n{constructor(t,a,i){this.store=t,this.lndEffects=a,this.commonService=i,this.addressTypes=[],this.selectedAddressType=l.Ld[2],this.newAddress="",this.flgVersionCompatible=!0,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.store.select(y.pI).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(t.version,"0.15.0"),this.addressTypes=this.flgVersionCompatible?l.Ld:l.Ld.filter(a=>"4"!==a.addressId)})}onGenerateAddress(){this.store.dispatch((0,v.XT)({payload:this.selectedAddressType})),this.lndEffects.setNewAddress.pipe((0,J.s)(1)).subscribe(t=>{this.newAddress=t,setTimeout(()=>{this.store.dispatch((0,E.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:a2.f}}}))},0)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(re.L),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-receive"]],decls:10,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","space-between center","fxLayoutAlign.gt-sm","start center"],["fxLayout","column","fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["name","address_type","tabindex","1",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","tabindex","2",3,"click"],[3,"value"]],template:function(a,i){1&a&&(e.j41(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-label"),e.EFF(4,"Address Type"),e.k0s(),e.j41(5,"mat-select",3),e.mxI("ngModelChange",function(r){return e.DH7(i.selectedAddressType,r)||(i.selectedAddressType=r),r}),e.DNE(6,s2,2,2,"mat-option",4),e.k0s()(),e.j41(7,"div")(8,"button",5),e.bIt("click",function(){return i.onGenerateAddress()}),e.EFF(9,"Generate Address"),e.k0s()()()()),2&a&&(e.R7$(5),e.R50("ngModel",i.selectedAddressType),e.R7$(),e.Y8G("ngForOf",i.addressTypes))},dependencies:[d.Sq,m.BC,m.vS,h.DJ,h.sA,h.UI,G.$z,f.rl,f.nJ,R.VO,V.wT]})}return n})();var l2=g(2852);const r2=["form"],c2=["formSweepAll"],p2=["stepper"];function m2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function u2(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.amountError)}}function d2(n,s){if(1&n&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t),e.R7$(),e.JRh(t)}}function h2(n,s){if(1&n&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function _2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function f2(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",35)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.j41(3,"input",36,4),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.transactionBlocks,i)||(o.transactionBlocks=i),e.Njj(i)}),e.k0s(),e.DNE(5,_2,2,0,"mat-error",18),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.transactionBlocks),e.R7$(2),e.Y8G("ngIf",!t.transactionBlocks)}}function g2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function C2(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-form-field",35)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.j41(3,"input",37,5),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.transactionFees,i)||(o.transactionFees=i),e.Njj(i)}),e.k0s(),e.DNE(5,g2,2,0,"mat-error",18),e.k0s()}if(2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R50("ngModel",t.transactionFees),e.R7$(2),e.Y8G("ngIf",!t.transactionFees)}}function y2(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.sendFundError)}}function b2(n,s){if(1&n&&(e.j41(0,"div",38),e.nrm(1,"fa-icon",39),e.DNE(2,y2,2,1,"span",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.sendFundError)}}function F2(n,s){if(1&n){const t=e.RV6();e.j41(0,"form",15,1),e.bIt("submit",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSendFunds())})("reset",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.resetData())}),e.j41(2,"mat-form-field",16)(3,"mat-label"),e.EFF(4,"Bitcoin Address"),e.k0s(),e.j41(5,"input",17,2),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.transactionAddress,i)||(o.transactionAddress=i),e.Njj(i)}),e.k0s(),e.DNE(7,m2,2,0,"mat-error",18),e.k0s(),e.j41(8,"mat-form-field",19)(9,"mat-label"),e.EFF(10,"Amount"),e.k0s(),e.j41(11,"input",20,3),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.transactionAmount,i)||(o.transactionAmount=i),e.Njj(i)}),e.k0s(),e.j41(13,"span",21),e.EFF(14),e.k0s(),e.DNE(15,u2,2,1,"mat-error",18),e.k0s(),e.j41(16,"mat-form-field",22)(17,"mat-select",23),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.onAmountUnitChange(i))}),e.DNE(18,d2,2,2,"mat-option",24),e.k0s()(),e.j41(19,"div",25)(20,"mat-form-field",26)(21,"mat-select",27),e.mxI("valueChange",function(i){e.eBV(t);const o=e.XpG();return e.DH7(o.selTransType,i)||(o.selTransType=i),e.Njj(i)}),e.DNE(22,h2,2,2,"mat-option",24),e.k0s()(),e.DNE(23,f2,6,4,"mat-form-field",28)(24,C2,6,4,"mat-form-field",28),e.k0s(),e.nrm(25,"div",29),e.DNE(26,b2,3,2,"div",30),e.j41(27,"div",31)(28,"button",32),e.EFF(29,"Clear Fields"),e.k0s(),e.j41(30,"button",33),e.EFF(31,"Send Funds"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(5),e.R50("ngModel",t.transactionAddress),e.R7$(2),e.Y8G("ngIf",!t.transactionAddress),e.R7$(4),e.Y8G("step",100)("min",0),e.R50("ngModel",t.transactionAmount),e.R7$(3),e.SpI("",t.selAmountUnit," "),e.R7$(),e.Y8G("ngIf",!t.transactionAmount),e.R7$(2),e.Y8G("value",t.selAmountUnit),e.R7$(),e.Y8G("ngForOf",t.amountUnits),e.R7$(3),e.R50("value",t.selTransType),e.R7$(),e.Y8G("ngForOf",t.transTypes),e.R7$(),e.Y8G("ngIf","1"===t.selTransType),e.R7$(),e.Y8G("ngIf","2"===t.selTransType),e.R7$(2),e.Y8G("ngIf",""!==t.sendFundError)}}function x2(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(3);e.JRh(t.passwordFormLabel)}}function v2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function T2(n,s){if(1&n){const t=e.RV6();e.j41(0,"mat-step",43)(1,"form",62),e.DNE(2,x2,1,1,"ng-template",56),e.j41(3,"div",7)(4,"mat-form-field",63)(5,"mat-label"),e.EFF(6,"Password"),e.k0s(),e.nrm(7,"input",64),e.DNE(8,v2,2,0,"mat-error",18),e.k0s()(),e.j41(9,"div",65)(10,"button",66),e.bIt("click",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.onAuthenticate())}),e.EFF(11,"Confirm"),e.k0s()()()()}if(2&n){const t=e.XpG(2);e.Y8G("stepControl",t.passwordFormGroup)("editable",t.flgEditable),e.R7$(),e.Y8G("formGroup",t.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==t.passwordFormGroup.controls.password.errors?null:t.passwordFormGroup.controls.password.errors.required)}}function S2(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.sendFundFormLabel)}}function k2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Bitcoin address is required."),e.k0s())}function R2(n,s){if(1&n&&(e.j41(0,"mat-option",34),e.EFF(1),e.k0s()),2&n){const t=s.$implicit;e.Y8G("value",t.id),e.R7$(),e.SpI(" ",t.name," ")}}function E2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Number of blocks is required."),e.k0s())}function I2(n,s){if(1&n&&(e.j41(0,"mat-form-field",67)(1,"mat-label"),e.EFF(2,"Number of Blocks"),e.k0s(),e.nrm(3,"input",68),e.DNE(4,E2,2,0,"mat-error",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionBlocks.errors?null:t.sendFundFormGroup.controls.transactionBlocks.errors.required)}}function L2(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Fees is required."),e.k0s())}function w2(n,s){if(1&n&&(e.j41(0,"mat-form-field",67)(1,"mat-label"),e.EFF(2,"Fees (Sats/vByte)"),e.k0s(),e.nrm(3,"input",69),e.DNE(4,L2,2,0,"mat-error",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(3),e.Y8G("step",1)("min",0),e.R7$(),e.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionFees.errors?null:t.sendFundFormGroup.controls.transactionFees.errors.required)}}function j2(n,s){if(1&n&&e.EFF(0),2&n){const t=e.XpG(2);e.JRh(t.confirmFormLabel)}}function G2(n,s){if(1&n&&(e.j41(0,"span"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.JRh(t.sendFundError)}}function D2(n,s){if(1&n&&(e.j41(0,"div",38),e.nrm(1,"fa-icon",39),e.DNE(2,G2,2,1,"span",18),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("icon",t.faExclamationTriangle),e.R7$(),e.Y8G("ngIf",""!==t.sendFundError)}}function N2(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",40)(1,"mat-vertical-stepper",41,6),e.bIt("selectionChange",function(i){e.eBV(t);const o=e.XpG();return e.Njj(o.stepSelectionChanged(i))}),e.DNE(3,T2,12,4,"mat-step",42),e.j41(4,"mat-step",43)(5,"form",44),e.DNE(6,S2,1,1,"ng-template",45),e.j41(7,"div",46)(8,"mat-form-field",47)(9,"mat-label"),e.EFF(10,"Bitcoin Address"),e.k0s(),e.nrm(11,"input",48),e.DNE(12,k2,2,0,"mat-error",18),e.k0s(),e.j41(13,"mat-form-field",49)(14,"mat-select",50),e.DNE(15,R2,2,2,"mat-option",24),e.k0s()(),e.DNE(16,I2,5,3,"mat-form-field",51)(17,w2,5,3,"mat-form-field",51),e.k0s(),e.j41(18,"div",52)(19,"button",53),e.EFF(20,"Next"),e.k0s()()()(),e.j41(21,"mat-step",54)(22,"form",55),e.DNE(23,j2,1,1,"ng-template",56),e.j41(24,"div",40)(25,"div",57),e.nrm(26,"fa-icon",58),e.j41(27,"span"),e.EFF(28,"You are about to sweep all funds from RTL. Are you sure?"),e.k0s()(),e.DNE(29,D2,3,2,"div",30),e.j41(30,"div",52)(31,"button",59),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onSendFunds())}),e.EFF(32,"Sweep All Funds"),e.k0s()()()()()(),e.j41(33,"div",60)(34,"button",61),e.EFF(35),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(),e.Y8G("linear",!0),e.R7$(2),e.Y8G("ngIf",!t.appConfig.SSO.rtlSSO),e.R7$(),e.Y8G("stepControl",t.sendFundFormGroup)("editable",t.flgEditable),e.R7$(),e.Y8G("formGroup",t.sendFundFormGroup),e.R7$(7),e.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionAddress.errors?null:t.sendFundFormGroup.controls.transactionAddress.errors.required),e.R7$(3),e.Y8G("ngForOf",t.transTypes),e.R7$(),e.Y8G("ngIf","1"===t.sendFundFormGroup.controls.selTransType.value),e.R7$(),e.Y8G("ngIf","2"===t.sendFundFormGroup.controls.selTransType.value),e.R7$(4),e.Y8G("stepControl",t.confirmFormGroup),e.R7$(),e.Y8G("formGroup",t.confirmFormGroup),e.R7$(4),e.Y8G("icon",t.faExclamationTriangle),e.R7$(3),e.Y8G("ngIf",""!==t.sendFundError),e.R7$(5),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(t.flgValidated?"Close":"Cancel")}}let P2=(()=>{class n{constructor(t,a,i,o,r,p,F,C,S,LC){this.dialogRef=t,this.data=a,this.logger=i,this.store=o,this.rtlEffects=r,this.commonService=p,this.decimalPipe=F,this.snackBar=C,this.actions=S,this.formBuilder=LC,this.faExclamationTriangle=b.zpE,this.sweepAll=!1,this.addressTypes=[],this.selectedAddress={},this.blockchainBalance={},this.information={},this.newAddress="",this.transactionAddress="",this.transactionAmount=null,this.transactionFees=null,this.transactionBlocks=null,this.transTypes=[{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],this.selTransType="1",this.fiatConversion=!1,this.amountUnits=l.A0,this.selAmountUnit=l.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=l.k,this.sendFundError="",this.flgValidated=!1,this.flgEditable=!0,this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds",this.confirmFormLabel="Confirm sweep",this.amountError="Amount is Required.",this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B]}ngOnInit(){this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[m.k0.required]],password:["",[m.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",m.k0.required],transactionBlocks:[null],transactionFees:[null],selTransType:["1",m.k0.required]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.selTransType.valueChanges.pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{"1"===t?(this.sendFundFormGroup.controls.transactionBlocks.setValidators([m.k0.required]),this.sendFundFormGroup.controls.transactionBlocks.setValue(null),this.sendFundFormGroup.controls.transactionFees.setValidators(null),this.sendFundFormGroup.controls.transactionFees.setValue(null)):(this.sendFundFormGroup.controls.transactionBlocks.setValidators(null),this.sendFundFormGroup.controls.transactionBlocks.setValue(null),this.sendFundFormGroup.controls.transactionFees.setValidators([m.k0.required]),this.sendFundFormGroup.controls.transactionFees.setValue(null))}),this.store.select(X.qv).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.appConfig=t}),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.fiatConversion=t.settings.fiatConversion,this.amountUnits=t.settings.currencyUnits,this.logger.info(t)}),this.actions.pipe((0,_.Q)(this.unSubs[3]),(0,Y.p)(t=>t.type===l.QP.UPDATE_API_CALL_STATUS_LND||t.type===l.QP.SET_CHANNEL_TRANSACTION_RES_LND)).subscribe(t=>{t.type===l.QP.SET_CHANNEL_TRANSACTION_RES_LND&&(this.store.dispatch((0,E.UI)({payload:this.sweepAll?"All Funds Sent Successfully!":"Fund Sent Successfully!"})),this.dialogRef.close()),t.type===l.QP.UPDATE_API_CALL_STATUS_LND&&t.payload.status===l.wn.ERROR&&"SetChannelTransaction"===t.payload.action&&(this.sendFundError=t.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,E.oz)({payload:l2(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,J.s)(1)).subscribe(t=>{"ERROR"!==t?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onSendFunds(){if(this.invalidValues)return!0;this.sendFundError="";const t={amount:this.transactionAmount?this.transactionAmount:0,sendAll:this.sweepAll};this.sweepAll?(t.address=this.sendFundFormGroup.controls.transactionAddress.value,"1"===this.sendFundFormGroup.controls.selTransType.value&&(t.blocks=this.sendFundFormGroup.controls.transactionBlocks.value),"2"===this.sendFundFormGroup.controls.selTransType.value&&(t.fees=this.sendFundFormGroup.controls.transactionFees.value)):(t.address=this.transactionAddress,"1"===this.selTransType&&(t.blocks=this.transactionBlocks),"2"===this.selTransType&&(t.fees=this.transactionFees)),this.transactionAmount&&this.selAmountUnit!==l.BQ.SATS?this.commonService.convertCurrency(this.transactionAmount,this.selAmountUnit===this.amountUnits[2]?l.BQ.OTHER:this.selAmountUnit,l.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,_.Q)(this.unSubs[4])).subscribe({next:a=>{this.selAmountUnit=l.BQ.SATS,t.amount=+(this.decimalPipe.transform(a[this.amountUnits[0]],this.currencyUnitFormats[this.amountUnits[0]])?.replace(/,/g,"")||0),this.store.dispatch((0,v.aB)({payload:t}))},error:a=>{this.transactionAmount=null,this.selAmountUnit=l.BQ.SATS,this.amountError="Conversion Error: "+a}}):this.store.dispatch((0,v.aB)({payload:t}))}get invalidValues(){return this.sweepAll?!this.sendFundFormGroup.controls.transactionAddress.value||""===this.sendFundFormGroup.controls.transactionAddress.value||"1"===this.sendFundFormGroup.controls.selTransType.value&&(!this.sendFundFormGroup.controls.transactionBlocks.value||this.sendFundFormGroup.controls.transactionBlocks.value<=0)||"2"===this.sendFundFormGroup.controls.selTransType.value&&(!this.sendFundFormGroup.controls.transactionFees.value||this.sendFundFormGroup.controls.transactionFees.value<=0):!this.transactionAddress||""===this.transactionAddress||!this.transactionAmount||this.transactionAmount<=0||"1"===this.selTransType&&(!this.transactionBlocks||this.transactionBlocks<=0)||"2"===this.selTransType&&(!this.transactionFees||this.transactionFees<=0)}resetData(){this.sendFundError="",this.selTransType="1",this.transactionAddress="",this.transactionBlocks=null,this.transactionFees=null,this.sweepAll||(this.transactionAmount=null)}stepSelectionChanged(t){switch(this.sendFundError="",t.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds";break;case 1:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds";break;case 2:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds | Address: "+this.sendFundFormGroup.controls.transactionAddress.value+" | "+this.transTypes[this.sendFundFormGroup.controls.selTransType.value-1].name+("2"===this.sendFundFormGroup.controls.selTransType.value?" (Sats/vByte)":"")+": "+("1"===this.sendFundFormGroup.controls.selTransType.value?this.sendFundFormGroup.controls.transactionBlocks.value:this.sendFundFormGroup.controls.transactionFees.value)}t.selectedIndex{this.selAmountUnit=t.value,a.transactionAmount=+(a.decimalPipe.transform(p[o],a.currencyUnitFormats[o])?.replace(/,/g,"")||0)},error:p=>{a.transactionAmount=null,this.amountError="Conversion Error: "+p,this.selAmountUnit=i,o=i}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(O.CP),e.rXU(O.Vh),e.rXU(j.gP),e.rXU(I.il),e.rXU(me.H),e.rXU(N.h),e.rXU(d.QX),e.rXU(ae.UG),e.rXU(W.En),e.rXU(m.ze))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-send-modal"]],viewQuery:function(a,i){if(1&a&&(e.GBs(r2,7),e.GBs(c2,5),e.GBs(p2,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.form=o.first),e.mGM(o=e.lsd())&&(i.formSweepAll=o.first),e.mGM(o=e.lsd())&&(i.stepper=o.first)}},decls:12,vars:4,consts:[["sweepAllBlock",""],["form","ngForm"],["address","ngModel"],["amnt","ngModel"],["blocks","ngModel"],["fees","ngModel"],["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex.gt-sm","55"],["autoFocus","","matInput","","tabindex","1","name","address","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex.gt-sm","30"],["matInput","","name","amt","type","number","tabindex","2","required","",3,"ngModelChange","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex.gt-sm","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","60","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxLayout","column","fxFlex","48"],["tabindex","4",3,"valueChange","value"],["fxFlex","48",4,"ngIf"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],[3,"value"],["fxFlex","48"],["matInput","","type","number","name","blcks","required","","tabindex","5",3,"ngModelChange","step","min","ngModel"],["matInput","","type","number","name","chainFees","required","","tabindex","6",3,"ngModelChange","step","min","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl","editable"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","98","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between start"],["fxLayout","column","fxFlex.gt-sm","45"],["matInput","","formControlName","transactionAddress","tabindex","4","name","address","required",""],["fxLayout","column","fxFlex.gt-sm","25"],["formControlName","selTransType","tabindex","5"],["fxFlex.gt-sm","25","fxLayoutAlign","start end",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","8","type","button","matStepperNext",""],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxFlex","100",1,"w-100","alert","alert-warn"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["mat-button","","color","primary","tabindex","9","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","type","password","tabindex","1","formControlName","password","required",""],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxFlex.gt-sm","25","fxLayoutAlign","start end"],["matInput","","formControlName","transactionBlocks","type","number","name","blcks","required","","tabindex","6",3,"step","min"],["matInput","","formControlName","transactionFees","type","number","name","chainFees","required","","tabindex","7",3,"step","min"]],template:function(a,i){if(1&a&&(e.j41(0,"div",7)(1,"div",8)(2,"mat-card-header",9)(3,"div",10)(4,"span",11),e.EFF(5),e.k0s()(),e.j41(6,"button",12),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",13),e.DNE(9,F2,32,14,"form",14),e.k0s()()(),e.DNE(10,N2,36,15,"ng-template",null,0,e.C5r)),2&a){const o=e.sdS(11);e.R7$(5),e.JRh(i.sweepAll?"Sweep All Funds":"Send Funds"),e.R7$(),e.Y8G("mat-dialog-close",!1),e.R7$(3),e.Y8G("ngIf",!i.sweepAll)("ngIfElse",o)}},dependencies:[d.Sq,d.bT,m.qT,m.me,m.Q0,m.BC,m.cb,m.YS,m.VZ,m.vS,m.cV,m.j4,m.JD,M.aY,h.DJ,h.sA,h.UI,O.tx,G.$z,T.m2,T.MM,$.fg,f.rl,f.nJ,f.TL,f.yw,R.VO,V.wT,H.V5,H.Ti,H.M6,H.F7,Z.N,te.V]})}return n})(),ot=(()=>{class n{constructor(t,a){this.store=t,this.activatedRoute=a,this.sweepAll=!1,this.unSubs=[new u.B,new u.B]}ngOnInit(){this.activatedRoute.data.pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.sweepAll=t.sweepAll})}openSendFundsModal(){this.store.dispatch((0,E.xO)({payload:{data:{sweepAll:this.sweepAll,component:P2}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(I.il),e.rXU(x.nX))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-on-chain-send"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(a,i){1&a&&(e.j41(0,"div",0)(1,"div",1)(2,"button",2),e.bIt("click",function(){return i.openSendFundsModal()}),e.EFF(3),e.k0s()()()),2&a&&(e.R7$(3),e.JRh(i.sweepAll?"Sweep All":"Send Funds"))},dependencies:[h.DJ,h.sA,h.UI,G.$z]})}return n})();const $2=n=>({"mt-1":n}),lt=n=>({"dashboard-card-content":!0,"error-border":n});function A2(n,s){1&n&&e.nrm(0,"mat-progress-bar",26)}function M2(n,s){if(1&n&&e.nrm(0,"rtl-node-info",27),2&n){const t=e.XpG(3);e.Y8G("information",t.information)("showColorFieldSeparately",!0)}}function B2(n,s){if(1&n&&e.nrm(0,"rtl-channel-status-info",28),2&n){const t=e.XpG(3);e.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[3]+" "+t.errorMessages[4])}}function O2(n,s){if(1&n&&e.nrm(0,"rtl-fee-info",29),2&n){const t=e.XpG(3);e.Y8G("fees",t.fees)("errorMessage",t.errorMessages[2])}}function V2(n,s){if(1&n&&(e.j41(0,"mat-grid-tile",13)(1,"div",14)(2,"div",15)(3,"div",16),e.nrm(4,"fa-icon",17),e.j41(5,"span"),e.EFF(6),e.k0s()()(),e.j41(7,"div",18)(8,"mat-card",19)(9,"mat-card-content",20),e.DNE(10,A2,1,0,"mat-progress-bar",21),e.j41(11,"div",22),e.DNE(12,M2,1,2,"rtl-node-info",23)(13,B2,1,2,"rtl-channel-status-info",24)(14,O2,1,2,"rtl-fee-info",25),e.k0s()()()()()()),2&n){const t=s.$implicit,a=e.XpG(2);e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(4),e.Y8G("icon",t.icon),e.R7$(2),e.JRh(t.title),e.R7$(3),e.Y8G("ngClass",e.eq3(10,lt,"node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.ERROR||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.ERROR||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.ERROR)||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf","node"===t.id&&a.apiCallStatusNodeInfo.status===a.apiCallStatusEnum.INITIATED||"status"===t.id&&(a.apiCallStatusChannels.status===a.apiCallStatusEnum.INITIATED||a.apiCallStatusPendingChannels.status===a.apiCallStatusEnum.INITIATED)||"fee"===t.id&&a.apiCallStatusFees.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",t.id),e.R7$(),e.Y8G("ngSwitchCase","node"),e.R7$(),e.Y8G("ngSwitchCase","status"),e.R7$(),e.Y8G("ngSwitchCase","fee")}}function Y2(n,s){if(1&n&&(e.j41(0,"mat-grid-list",11),e.DNE(1,V2,15,12,"mat-grid-tile",12),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngForOf",t.nodeCards)}}function X2(n,s){1&n&&e.nrm(0,"mat-progress-bar",26)}function U2(n,s){1&n&&e.eu8(0)}function H2(n,s){if(1&n&&(e.j41(0,"div",34),e.DNE(1,U2,1,0,"ng-container",35),e.k0s()),2&n){const t=e.XpG(2),a=e.sdS(9),i=e.sdS(11);e.R7$(),e.Y8G("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:i)}}function q2(n,s){1&n&&e.eu8(0)}function z2(n,s){if(1&n&&(e.j41(0,"div",34),e.DNE(1,q2,1,0,"ng-container",35),e.k0s()),2&n){const t=e.XpG(2),a=e.sdS(9),i=e.sdS(13);e.R7$(),e.Y8G("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:i)}}function J2(n,s){1&n&&e.eu8(0)}function W2(n,s){if(1&n&&(e.j41(0,"div",34),e.DNE(1,J2,1,0,"ng-container",35),e.k0s()),2&n){const t=e.XpG(2),a=e.sdS(9),i=e.sdS(15);e.R7$(),e.Y8G("ngTemplateOutlet",t.apiCallStatusNetwork.status===t.apiCallStatusEnum.ERROR?a:i)}}function Q2(n,s){if(1&n&&(e.j41(0,"mat-grid-tile",30)(1,"mat-card",31)(2,"mat-card-content",32),e.DNE(3,X2,1,0,"mat-progress-bar",21),e.j41(4,"div",22),e.DNE(5,H2,2,1,"div",33)(6,z2,2,1,"div",33)(7,W2,2,1,"div",33),e.k0s()()()()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("colspan",t.cols)("rowspan",t.rows),e.R7$(2),e.Y8G("ngClass",e.eq3(8,lt,a.apiCallStatusNetwork.status===a.apiCallStatusEnum.ERROR)),e.R7$(),e.Y8G("ngIf",a.apiCallStatusNetwork.status===a.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngSwitch",t.id),e.R7$(),e.Y8G("ngSwitchCase","general"),e.R7$(),e.Y8G("ngSwitchCase","channels"),e.R7$(),e.Y8G("ngSwitchCase","degrees")}}function Z2(n,s){if(1&n&&(e.j41(0,"div",36)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.JRh(t.errorMessages[1])}}function K2(n,s){if(1&n&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Network Capacity"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Number of Nodes"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div")(14,"h4",38),e.EFF(15,"Number of Channels"),e.k0s(),e.j41(16,"span",39),e.EFF(17),e.nI1(18,"number"),e.k0s()()()),2&n){const t=e.XpG();e.R7$(5),e.SpI("",e.bMT(6,3,t.networkInfo.total_network_capacity)," Sats"),e.R7$(6),e.JRh(e.bMT(12,5,t.networkInfo.num_nodes)),e.R7$(6),e.JRh(e.bMT(18,7,t.networkInfo.num_channels))}}function eg(n,s){if(1&n&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Max Channel Size"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Avg Channel Size"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div")(14,"h4",38),e.EFF(15,"Min Channel Size"),e.k0s(),e.j41(16,"span",39),e.EFF(17),e.nI1(18,"number"),e.k0s()()()),2&n){const t=e.XpG();e.R7$(5),e.JRh(e.bMT(6,3,t.networkInfo.max_channel_size)),e.R7$(6),e.JRh(e.bMT(12,5,t.networkInfo.avg_channel_size)),e.R7$(6),e.JRh(e.bMT(18,7,t.networkInfo.min_channel_size))}}function tg(n,s){if(1&n&&(e.j41(0,"div",37)(1,"div")(2,"h4",38),e.EFF(3,"Max Out Degree"),e.k0s(),e.j41(4,"div",39),e.EFF(5),e.nI1(6,"number"),e.k0s()(),e.j41(7,"div")(8,"h4",38),e.EFF(9,"Avg Out Degree"),e.k0s(),e.j41(10,"div",39),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div",40),e.nrm(14,"h4",38)(15,"span",39),e.k0s()()),2&n){const t=e.XpG();e.R7$(5),e.JRh(e.bMT(6,2,t.networkInfo.max_out_degree)),e.R7$(6),e.JRh(e.i5U(12,4,t.networkInfo.avg_out_degree,"1.0-2"))}}let ng=(()=>{class n{constructor(t,a,i){this.logger=t,this.commonService=a,this.store=i,this.faProjectDiagram=b.qFF,this.faBolt=b.zm_,this.faServer=b.D6w,this.faNetworkWired=b.eGi,this.information={},this.channelsStatus={},this.networkInfo={},this.networkCards=[],this.nodeCards=[],this.screenSize="",this.screenSizeEnum=l.f7,this.userPersonaEnum=l.HW,this.errorMessages=["","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusNetwork=null,this.apiCallStatusFees=null,this.apiCallStatusChannels=null,this.apiCallStatusPendingChannels=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS?(this.networkCards=[{id:"general",cols:3,rows:1},{id:"channels",cols:3,rows:1},{id:"degrees",cols:3,rows:1}],this.nodeCards=[{id:"node",icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:3,rows:1},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:3,rows:1}]):(this.networkCards=[{id:"general",cols:1,rows:1},{id:"channels",cols:1,rows:1},{id:"degrees",cols:1,rows:1}],this.nodeCards=[{id:"node",icon:this.faServer,title:"Node Information",cols:1,rows:1},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:1,rows:1},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:1,rows:1}])}ngOnInit(){this.store.select(y.gj).pipe((0,_.Q)(this.unSubs[0]),(0,de.E)(this.store.select(X._c))).subscribe(([t,a])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apiCallStatus,this.apiCallStatusNodeInfo.status===l.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=a,this.information=t.information}),this.store.select(y.tA).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusNetwork=t.apiCallStatus,this.apiCallStatusNetwork.status===l.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusNetwork.message?JSON.stringify(this.apiCallStatusNetwork.message):this.apiCallStatusNetwork.message?this.apiCallStatusNetwork.message:""),this.networkInfo=t.networkInfo}),this.store.select(y.oR).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusFees=t.apiCallStatus,this.apiCallStatusFees.status===l.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusFees.message?JSON.stringify(this.apiCallStatusFees.message):this.apiCallStatusFees.message?this.apiCallStatusFees.message:""),this.fees=t.fees}),this.store.select(y.Uv).pipe((0,_.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusPendingChannels=t.apiCallStatus,this.apiCallStatusPendingChannels.status===l.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPendingChannels.message?JSON.stringify(this.apiCallStatusPendingChannels.message):this.apiCallStatusPendingChannels.message?this.apiCallStatusPendingChannels.message:""),this.channelsStatus.pending={num_channels:t.pendingChannelsSummary.open?.num_channels,capacity:t.pendingChannelsSummary.open?.limbo_balance},this.channelsStatus.closing={num_channels:(t.pendingChannelsSummary.closing?.num_channels||0)+(t.pendingChannelsSummary.force_closing?.num_channels||0)+(t.pendingChannelsSummary.waiting_close?.num_channels||0),capacity:t.pendingChannelsSummary.total_limbo_balance}}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[4])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===l.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active=t.channelsSummary.active,this.channelsStatus.inactive=t.channelsSummary.inactive,this.logger.info(t)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-network-info"]],decls:16,vars:6,consts:[["errorBlock",""],["generalBlock",""],["channelsBlock",""],["degreesBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch",1,"mb-4"],["cols","3","rowHeight","330px",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container",3,"ngClass"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","3","rowHeight","250px"],["fxLayout","row",3,"colspan","rowspan",4,"ngFor","ngForOf"],["cols","3","rowHeight","330px"],["class","node-grid-tile",3,"colspan","rowspan",4,"ngFor","ngForOf"],[1,"node-grid-tile",3,"colspan","rowspan"],["fxLayout","column","fxLayoutAlign","stretch start","fxFlex","100",1,"h-100"],["fxLayout","row","fxLayoutAlign","start start",1,"w-100"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container"],[1,"mr-1",3,"icon"],["fxLayout","column","fxLayoutAlign","stretch center","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","center stretch",1,"w-100","h-93"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","w-96","h-93"],["fxLayout","column","fxFlex","100",1,"mt-2",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxLayout","row",3,"colspan","rowspan"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","h-93"],["fxLayout","column","fxFlex","100",3,"ngClass"],["fxFlex","100",4,"ngSwitchCase"],["fxFlex","100"],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxFlex","20"]],template:function(a,i){1&a&&(e.j41(0,"div",4),e.DNE(1,Y2,2,1,"mat-grid-list",5),e.j41(2,"div",6),e.nrm(3,"fa-icon",7),e.j41(4,"span",8),e.EFF(5,"Network"),e.k0s()(),e.j41(6,"mat-grid-list",9),e.DNE(7,Q2,8,10,"mat-grid-tile",10),e.k0s()(),e.DNE(8,Z2,3,1,"ng-template",null,0,e.C5r)(10,K2,19,9,"ng-template",null,1,e.C5r)(12,eg,19,9,"ng-template",null,2,e.C5r)(14,tg,16,7,"ng-template",null,3,e.C5r)),2&a&&(e.R7$(),e.Y8G("ngIf",i.selNode.settings.userPersona!==i.userPersonaEnum.OPERATOR),e.R7$(),e.Y8G("ngClass",e.eq3(4,$2,i.screenSize!==i.screenSizeEnum.XS)),e.R7$(),e.Y8G("icon",i.faProjectDiagram),e.R7$(4),e.Y8G("ngForOf",i.networkCards))},dependencies:[d.YU,d.Sq,d.bT,d.T3,d.ux,d.e1,M.aY,h.DJ,h.sA,h.UI,L.PW,T.RN,T.m2,he.B_,he.NS,B.HM,Ye,Xe,Ue,d.QX]})}return n})();function ig(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let ag=(()=>{class n{constructor(t){this.router=t,this.faDownload=b.cbP,this.links=[{link:"bckup",name:"Backup"},{link:"restore",name:"Restore"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-backup"]],decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Channels Backup"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,ig,2,3,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faDownload),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}return n})();const sg=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),og=()=>["no_channel"],lg=n=>({"max-width":n}),rg=n=>({"display-none":n});function cg(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",24)(1,"h4",25),e.EFF(2),e.k0s(),e.j41(3,"div",26)(4,"button",27),e.bIt("click",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onRestoreChannels({}))}),e.EFF(5,"Restore All"),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",t.selNode.settings.channelBackupPath,"/restore")}}function pg(n,s){if(1&n&&(e.j41(0,"div",28)(1,"h4",25),e.EFF(2),e.k0s(),e.j41(3,"h4",29),e.EFF(4,"All channel backup file not found! To perform channel restoration, channel backup file/s must be placed at the above location."),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",t.selNode.settings.channelBackupPath,"/restore")}}function mg(n,s){if(1&n&&(e.j41(0,"div",28)(1,"h4",25),e.EFF(2),e.k0s()()),2&n){const t=e.XpG();e.R7$(2),e.SpI("Restore folder location: ",t.selNode.settings.channelBackupPath,"/restore")}}function ug(n,s){1&n&&e.nrm(0,"mat-progress-bar",30)}function dg(n,s){1&n&&(e.j41(0,"th",31),e.EFF(1,"Channel Point"),e.k0s())}function hg(n,s){if(1&n&&(e.j41(0,"td",32)(1,"div",33)(2,"span",34),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,lg,a.screenSize===a.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function _g(n,s){1&n&&(e.j41(0,"th",35)(1,"div",36),e.EFF(2,"Actions"),e.k0s()())}function fg(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",32)(1,"span",37)(2,"button",38),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onRestoreChannels(i))}),e.EFF(3,"Restore"),e.k0s()()()}}function gg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No singular channel backups available."),e.k0s())}function Cg(n,s){if(1&n&&(e.j41(0,"td",39),e.DNE(1,gg,2,0,"p",40),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",!t.channels||!t.channels.data||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)}}function yg(n,s){if(1&n&&e.nrm(0,"tr",41),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,rg,t.channels&&t.channels.data&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function bg(n,s){1&n&&e.nrm(0,"tr",42)}function Fg(n,s){1&n&&e.nrm(0,"tr",43)}let xg=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.lndEffects=i,this.commonService=o,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new c.I6([]),this.allRestoreExists=!1,this.flgLoading=[!0],this.selFilter="",this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,v.$J)()),this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.lndEffects.setRestoreChannelList.pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.allRestoreExists=t.all_restore_exists,this.channelsData=t.files,this.channelsData.length>0&&this.loadRestoreTable(this.channelsData),("error"!==this.flgLoading[0]||t&&t.files)&&(this.flgLoading[0]=!1),this.logger.info(t)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadRestoreTable(this.channelsData)}onRestoreChannels(t){this.store.dispatch((0,v.Lf)({payload:{channelPoint:t.channel_point?t.channel_point:"ALL"}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadRestoreTable(t){this.channels=new c.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(a,i)=>(a.channel_point?a.channel_point.toLowerCase():"").includes(i),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(re.L),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-restore-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:w.xX,useValue:(0,l.on)("Channels")}])],decls:28,vars:16,consts:[["table",""],["fxLayout","column",1,"mt-2"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between start","fxLayout.gt-md","row wrap",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["fxLayout","column","fxFlex","49"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"dataSource","ngClass"],["matColumnDef","channel_point"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","100"],["fxLayout","row",1,"mt-2"],["mat-flat-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxLayoutAlign","space-between start","fxLayout.gt-md","row wrap"],["fxFlex","100",1,"mt-1"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","1",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1),e.DNE(1,cg,6,1,"div",2)(2,pg,5,1,"div",3)(3,mg,3,1,"div",3),e.j41(4,"div",4),e.nrm(5,"div",5),e.j41(6,"div",6),e.nrm(7,"div",7),e.j41(8,"mat-form-field",8)(9,"mat-label"),e.EFF(10,"Filter"),e.k0s(),e.j41(11,"input",9),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(12,"div",10),e.DNE(13,ug,1,0,"mat-progress-bar",11),e.j41(14,"table",12,0),e.qex(16,13),e.DNE(17,dg,2,0,"th",14)(18,hg,4,4,"td",15),e.bVm(),e.qex(19,16),e.DNE(20,_g,3,0,"th",17)(21,fg,4,0,"td",15),e.bVm(),e.qex(22,18),e.DNE(23,Cg,2,1,"td",19),e.bVm(),e.DNE(24,yg,1,3,"tr",20)(25,bg,1,0,"tr",21)(26,Fg,1,0,"tr",22),e.k0s()(),e.nrm(27,"mat-paginator",23),e.k0s()}2&a&&(e.R7$(),e.Y8G("ngIf",i.allRestoreExists),e.R7$(),e.Y8G("ngIf",!i.allRestoreExists&&(!i.channels||(null==i.channels||null==i.channels.data?null:i.channels.data.length)<=0)),e.R7$(),e.Y8G("ngIf",!i.allRestoreExists&&i.channels&&(null==i.channels||null==i.channels.data?null:i.channels.data.length)&&(null==i.channels||null==i.channels.data?null:i.channels.data.length)>0),e.R7$(8),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",!0===i.flgLoading[0]),e.R7$(),e.Y8G("dataSource",i.channels)("ngClass",e.eq3(13,sg,"error"===i.flgLoading[0])),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(15,og)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.Ld]})}return n})();const vg=n=>({"error-border":n}),Tg=()=>["no_channel"],Sg=n=>({"max-width":n}),kg=n=>({"display-none":n});function Rg(n,s){1&n&&e.nrm(0,"mat-progress-bar",33)}function Eg(n,s){1&n&&(e.j41(0,"th",34),e.EFF(1,"Channel Point"),e.k0s())}function Ig(n,s){if(1&n&&(e.j41(0,"td",35)(1,"div",36)(2,"span",37),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,Sg,a.screenSize===a.screenSizeEnum.XS?"25rem":"60rem")),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function Lg(n,s){1&n&&(e.j41(0,"th",38)(1,"div",39),e.EFF(2,"Actions"),e.k0s()())}function wg(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",40)(1,"div",39)(2,"mat-select",41),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",42),e.bIt("click",function(i){const o=e.eBV(t).$implicit,r=e.XpG();return e.Njj(r.onChannelClick(o,i))}),e.EFF(5,"View Info"),e.k0s(),e.j41(6,"mat-option",42),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onBackupChannels(i))}),e.EFF(7,"Backup"),e.k0s(),e.j41(8,"mat-option",42),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onDownloadBackup(i))}),e.EFF(9,"Download Backup"),e.k0s(),e.j41(10,"mat-option",42),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.onVerifyChannels(i))}),e.EFF(11,"Verify"),e.k0s()()()()}}function jg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"No channel available."),e.k0s())}function Gg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting channels..."),e.k0s())}function Dg(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.JRh(t.errorMessage)}}function Ng(n,s){if(1&n&&(e.j41(0,"td",43),e.DNE(1,jg,2,0,"p",44)(2,Gg,2,0,"p",44)(3,Dg,2,1,"p",44),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Pg(n,s){if(1&n&&e.nrm(0,"tr",45),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(1,kg,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function $g(n,s){1&n&&e.nrm(0,"tr",46)}function Ag(n,s){1&n&&e.nrm(0,"tr",47)}let Mg=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.store=a,this.actions=i,this.commonService=o,this.faInfoCircle=b.iW_,this.faExclamationTriangle=b.zpE,this.faArchive=b.Oh6,this.pageSize=l.md,this.pageSizeOptions=l.xp,this.displayedColumns=["channel_point","actions"],this.channelsData=[],this.channels=new c.I6([]),this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(X._c).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=t.channels,this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadBackupTable(this.channelsData),this.logger.info(t)}),this.actions.pipe((0,_.Q)(this.unSubs[2]),(0,Y.p)(t=>t.type===l.QP.SET_CHANNELS_LND||t.type===l.aU.SHOW_FILE)).subscribe(t=>{t.type===l.QP.SET_CHANNELS_LND&&(this.selectedChannel=null),t.type===l.aU.SHOW_FILE&&(this.commonService.downloadFile(t.payload,"channel-"+(this.selectedChannel?.channel_point?this.selectedChannel.channel_point:"all"),".bak",".bak"),this.selectedChannel=null)})}ngAfterViewInit(){this.channelsData.length>0&&this.loadBackupTable(this.channelsData)}onBackupChannels(t){this.store.dispatch((0,v.H2)({payload:{uiMessage:l.MZ.BACKUP_CHANNEL,channelPoint:t.channel_point?t.channel_point:"ALL",showMessage:""}}))}onVerifyChannels(t){this.store.dispatch((0,v.L)({payload:{channelPoint:t.channel_point?t.channel_point:"ALL"}}))}onDownloadBackup(t){this.selectedChannel=t,this.store.dispatch((0,E.t2)({payload:{channelPoint:t.channel_point?t.channel_point:"all"}}))}onChannelClick(t,a){this.store.dispatch((0,E.xO)({payload:{data:{channel:t,showCopy:!1,component:Ee}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}loadBackupTable(t){this.channels=new c.I6(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(a,i)=>a[i]&&isNaN(a[i])?a[i].toLocaleLowerCase():a[i]?+a[i]:null,this.channels.paginator=this.paginator,this.channels.filterPredicate=(a,i)=>(a.channel_point?a.channel_point.toLowerCase():"").includes(i),this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(I.il),e.rXU(W.En),e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-channel-backup-table"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:R.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:w.xX,useValue:(0,l.on)("Channels")}])],decls:46,vars:17,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","1",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","2",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxFlex","49"],["fxLayout","column","fxFlex","49"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"dataSource","ngClass"],["matColumnDef","channel_point"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3),e.nrm(3,"fa-icon",4),e.j41(4,"span"),e.EFF(5,"Save your backup files in a redundant location."),e.k0s()(),e.j41(6,"div",5),e.nrm(7,"fa-icon",4),e.j41(8,"span")(9,"strong"),e.EFF(10,"Backup Folder Location: "),e.k0s(),e.EFF(11),e.k0s()(),e.j41(12,"div",6)(13,"button",7),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onVerifyChannels({}))}),e.EFF(14,"Verify All"),e.k0s(),e.j41(15,"button",8),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onBackupChannels({}))}),e.EFF(16,"Backup All"),e.k0s(),e.j41(17,"button",9),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onDownloadBackup({}))}),e.EFF(18,"Download Backup"),e.k0s()()(),e.j41(19,"div",10)(20,"div",11),e.nrm(21,"fa-icon",12),e.j41(22,"span",13),e.EFF(23,"Backups"),e.k0s()(),e.j41(24,"div",14),e.nrm(25,"div",15),e.j41(26,"mat-form-field",16)(27,"mat-label"),e.EFF(28,"Filter"),e.k0s(),e.j41(29,"input",17),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selFilter,p)||(i.selFilter=p),e.Njj(p)}),e.bIt("input",function(){return e.eBV(o),e.Njj(i.applyFilter())})("keyup",function(){return e.eBV(o),e.Njj(i.applyFilter())}),e.k0s()()()(),e.j41(30,"div",18),e.DNE(31,Rg,1,0,"mat-progress-bar",19),e.j41(32,"table",20,0),e.qex(34,21),e.DNE(35,Eg,2,0,"th",22)(36,Ig,4,4,"td",23),e.bVm(),e.qex(37,24),e.DNE(38,Lg,3,0,"th",25)(39,wg,12,0,"td",26),e.bVm(),e.qex(40,27),e.DNE(41,Ng,4,3,"td",28),e.bVm(),e.DNE(42,Pg,1,3,"tr",29)(43,$g,1,0,"tr",30)(44,Ag,1,0,"tr",31),e.k0s()(),e.nrm(45,"mat-paginator",32),e.k0s()}2&a&&(e.R7$(3),e.Y8G("icon",i.faExclamationTriangle),e.R7$(4),e.Y8G("icon",i.faInfoCircle),e.R7$(4),e.SpI("",i.selNode.settings.channelBackupPath,"."),e.R7$(10),e.Y8G("icon",i.faArchive),e.R7$(8),e.R50("ngModel",i.selFilter),e.R7$(2),e.Y8G("ngIf",i.apiCallStatus.status===i.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("dataSource",i.channels)("ngClass",e.eq3(14,vg,""!==i.errorMessage)),e.R7$(10),e.Y8G("matFooterRowDef",e.lJ4(16,Tg)),e.R7$(),e.Y8G("matHeaderRowDef",i.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",i.displayedColumns),e.R7$(),e.Y8G("pageSize",i.pageSize)("pageSizeOptions",i.pageSizeOptions)("showFirstLastButtons",i.screenSize!==i.screenSizeEnum.XS))},dependencies:[d.YU,d.bT,d.B3,m.me,m.BC,m.vS,M.aY,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,R.$2,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.Ld]})}return n})();function Bg(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",9),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG();return e.Njj(o.activeLink=i.link)}),e.EFF(1),e.k0s()}if(2&n){const t=s.$implicit,a=e.XpG();e.FS9("routerLink",t.link),e.Y8G("active",a.activeLink===t.link),e.R7$(),e.JRh(t.name)}}let Og=(()=>{class n{constructor(t){this.router=t,this.faUserCheck=b.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new u.B,new u.B]}ngOnInit(){const t=this.links.find(a=>this.router.url.includes(a.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(a=>a instanceof x.gx)).subscribe({next:a=>{const i=this.links.find(o=>a.urlAfterRedirects.includes(o.link));this.activeLink=i?i.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(x.Ix))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-sign-verify-message"]],decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(a,i){if(1&a&&(e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Sign/Verify Message"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,Bg,2,3,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8),e.nrm(12,"router-outlet"),e.k0s()()()()),2&a){const o=e.sdS(10);e.R7$(),e.Y8G("icon",i.faUserCheck),e.R7$(6),e.Y8G("tabPanel",o),e.R7$(),e.Y8G("ngForOf",i.links)}},dependencies:[d.Sq,M.aY,h.DJ,h.sA,h.UI,T.RN,T.m2,P.Bu,P.hQ,P.Ql,x.n3,x.Wk]})}return n})();function Vg(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}let Yg=(()=>{class n{constructor(t,a,i){this.dataService=t,this.snackBar=a,this.logger=i,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new u.B,new u.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.signedMessage=this.message,this.signature=t.signature})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(t){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+t)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(K.u),e.rXU(ae.UG),e.rXU(j.gP))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-sign"]],decls:22,vars:5,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"signature-box","bordered-box","read-only"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"copied","payload"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",1)(1,"form",2,0)(3,"mat-form-field",3)(4,"mat-label"),e.EFF(5,"Message to sign"),e.k0s(),e.j41(6,"textarea",4),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.message,p)||(i.message=p),e.Njj(p)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onMessageChange())}),e.k0s(),e.DNE(7,Vg,2,0,"mat-error",5),e.k0s(),e.j41(8,"div",6)(9,"button",7),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(10,"Clear Field"),e.k0s(),e.j41(11,"button",8),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onSign())}),e.EFF(12,"Sign"),e.k0s()(),e.nrm(13,"mat-divider",9),e.j41(14,"div",10)(15,"p"),e.EFF(16,"Generated Signature"),e.k0s()(),e.j41(17,"div",11),e.EFF(18),e.k0s(),e.j41(19,"div",12)(20,"button",13),e.bIt("copied",function(p){return e.eBV(o),e.Njj(i.onCopyField(p))}),e.EFF(21,"Copy Signature"),e.k0s()()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.message),e.R7$(),e.Y8G("ngIf",!i.message),e.R7$(6),e.Y8G("inset",!0),e.R7$(5),e.JRh(i.signature),e.R7$(2),e.Y8G("payload",i.signature))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,G.$z,$.fg,f.rl,f.nJ,f.TL,ee.q,ge.U,Z.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]})}return n})();function Xg(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Message is required."),e.k0s())}function Ug(n,s){1&n&&(e.j41(0,"mat-error"),e.EFF(1,"Signature is required."),e.k0s())}function Hg(n,s){1&n&&(e.j41(0,"p",13)(1,"mat-icon",14),e.EFF(2,"close"),e.k0s(),e.EFF(3,"Verification failed, please check message and signature"),e.k0s())}function qg(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Pubkey Used"),e.k0s())}function zg(n,s){if(1&n&&(e.j41(0,"div",20)(1,"p"),e.EFF(2),e.k0s()()),2&n){const t=e.XpG(2);e.R7$(2),e.JRh(null==t.verifyRes?null:t.verifyRes.pubkey)}}function Jg(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",21)(1,"button",22),e.bIt("copied",function(i){e.eBV(t);const o=e.XpG(2);return e.Njj(o.onCopyField(i))}),e.EFF(2,"Copy Pubkey"),e.k0s()()}if(2&n){const t=e.XpG(2);e.R7$(),e.Y8G("payload",null==t.verifyRes?null:t.verifyRes.pubkey)}}function Wg(n,s){if(1&n&&(e.j41(0,"div",15),e.nrm(1,"mat-divider",16),e.j41(2,"div",17),e.DNE(3,qg,2,0,"p",6),e.k0s(),e.DNE(4,zg,3,1,"div",18)(5,Jg,3,1,"div",19),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("inset",!0),e.R7$(2),e.Y8G("ngIf",t.verifyRes.valid),e.R7$(),e.Y8G("ngIf",t.verifyRes.valid),e.R7$(),e.Y8G("ngIf",t.verifyRes.valid)}}let Qg=(()=>{class n{constructor(t,a,i){this.dataService=t,this.snackBar=a,this.logger=i,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null},this.unSubs=[new u.B,new u.B]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.verifyRes=t,this.showVerifyStatus=!0,this.verifiedMessage=this.message,this.verifiedSignature=this.signature})}onChange(){(this.verifiedMessage!==this.message||this.verifiedSignature!==this.signature)&&(this.showVerifyStatus=!1,this.verifyRes={pubkey:"",valid:null})}resetData(){this.message="",this.signature="",this.verifyRes=null,this.showVerifyStatus=!1}onCopyField(t){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(K.u),e.rXU(ae.UG),e.rXU(j.gP))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-verify"]],decls:21,vars:6,consts:[["form","ngForm"],["sign","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","signature","tabindex","2","required","",3,"ngModelChange","keyup","ngModel"],["fxFlex","100","class","color-warn","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],[1,"my-2",3,"inset"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"copied","payload"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",2)(1,"form",3,0)(3,"mat-form-field",4)(4,"mat-label"),e.EFF(5,"Message to verify"),e.k0s(),e.j41(6,"textarea",5),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.message,p)||(i.message=p),e.Njj(p)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onChange())}),e.k0s(),e.DNE(7,Xg,2,0,"mat-error",6),e.k0s(),e.j41(8,"mat-form-field",4)(9,"mat-label"),e.EFF(10,"Signature provided"),e.k0s(),e.j41(11,"input",7,1),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.signature,p)||(i.signature=p),e.Njj(p)}),e.bIt("keyup",function(){return e.eBV(o),e.Njj(i.onChange())}),e.k0s(),e.DNE(13,Ug,2,0,"mat-error",6),e.k0s(),e.DNE(14,Hg,4,0,"p",8),e.j41(15,"div",9)(16,"button",10),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(17,"Clear Fields"),e.k0s(),e.j41(18,"button",11),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onVerify())}),e.EFF(19,"Verify"),e.k0s()(),e.DNE(20,Wg,6,4,"div",12),e.k0s()()}2&a&&(e.R7$(6),e.R50("ngModel",i.message),e.R7$(),e.Y8G("ngIf",!i.message),e.R7$(4),e.R50("ngModel",i.signature),e.R7$(2),e.Y8G("ngIf",!i.signature),e.R7$(),e.Y8G("ngIf",i.showVerifyStatus&&!i.verifyRes.valid),e.R7$(6),e.Y8G("ngIf",i.showVerifyStatus&&i.verifyRes.valid))},dependencies:[d.bT,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,G.$z,ie.An,$.fg,f.rl,f.nJ,f.TL,ee.q,ge.U,Z.N]})}return n})();var Zg=g(13),D=g(7186);const Kg=()=>["all"],e4=()=>["no_non_routing_event"],xe=n=>({"max-width":n}),t4=n=>({"display-none":n});function n4(n,s){if(1&n&&(e.j41(0,"div",5),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.JRh(t.errorMessage)}}function i4(n,s){if(1&n&&(e.j41(0,"mat-option",17),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(3);e.Y8G("value",t),e.R7$(),e.JRh(a.getLabel(t))}}function a4(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",10)(1,"div",11),e.EFF(2,"Non Routing Peers"),e.k0s(),e.j41(3,"div",12)(4,"mat-form-field",13)(5,"mat-label"),e.EFF(6,"Filter By"),e.k0s(),e.j41(7,"mat-select",14),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.selFilterBy,i)||(o.selFilterBy=i),e.Njj(i)}),e.bIt("selectionChange",function(){e.eBV(t);const i=e.XpG(2);return i.selFilter="",e.Njj(i.applyFilter())}),e.j41(8,"perfect-scrollbar"),e.DNE(9,i4,2,2,"mat-option",15),e.k0s()()(),e.j41(10,"mat-form-field",13)(11,"mat-label"),e.EFF(12,"Filter"),e.k0s(),e.j41(13,"input",16),e.mxI("ngModelChange",function(i){e.eBV(t);const o=e.XpG(2);return e.DH7(o.selFilter,i)||(o.selFilter=i),e.Njj(i)}),e.bIt("input",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.applyFilter())})("keyup",function(){e.eBV(t);const i=e.XpG(2);return e.Njj(i.applyFilter())}),e.k0s()()()()}if(2&n){const t=e.XpG(2);e.R7$(7),e.R50("ngModel",t.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(3,Kg).concat(t.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",t.selFilter)}}function s4(n,s){1&n&&e.nrm(0,"mat-progress-bar",50)}function o4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Channel ID"),e.k0s())}function l4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.chan_id)}}function r4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Peer Alias"),e.k0s())}function c4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_alias)}}function p4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Peer Pubkey"),e.k0s())}function m4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.remote_pubkey)}}function u4(n,s){1&n&&(e.j41(0,"th",51),e.EFF(1,"Channel Point"),e.k0s())}function d4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"div",53)(2,"span",54),e.EFF(3),e.k0s()()()),2&n){const t=s.$implicit,a=e.XpG(3);e.R7$(),e.Y8G("ngStyle",e.eq3(2,xe,a.screenSize===a.screenSizeEnum.XS?"6rem":a.colWidth)),e.R7$(2),e.JRh(null==t?null:t.channel_point)}}function h4(n,s){if(1&n&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.SpI("Uptime (",t.timeUnit,")")}}function _4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.uptime_str," ")}}function f4(n,s){if(1&n&&(e.j41(0,"th",55),e.EFF(1),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.SpI("Lifetime (",t.timeUnit,")")}}function g4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",t.lifetime_str," ")}}function C4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Commit Fee (Sats)"),e.k0s())}function y4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_fee)," ")}}function b4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Commit Weight"),e.k0s())}function F4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.commit_weight)," ")}}function x4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Fee/KW"),e.k0s())}function v4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.fee_per_kw)," ")}}function T4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Updates"),e.k0s())}function S4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.num_updates)," ")}}function k4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Unsettled Balance (Sats)"),e.k0s())}function R4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.unsettled_balance)," ")}}function E4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Capacity (Sats)"),e.k0s())}function I4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.capacity)," ")}}function L4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Local Reserve (Sats)"),e.k0s())}function w4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.local_chan_reserve_sat)," ")}}function j4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Remote Reserve (Sats)"),e.k0s())}function G4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.SpI("",e.bMT(3,1,t.remote_chan_reserve_sat)," ")}}function D4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Sats Sent"),e.k0s())}function N4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_satoshis_sent))}}function P4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Sats Received"),e.k0s())}function $4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.total_satoshis_received))}}function A4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Local Balance (Sats)"),e.k0s())}function M4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.local_balance))}}function B4(n,s){1&n&&(e.j41(0,"th",55),e.EFF(1,"Remote Balance (Sats)"),e.k0s())}function O4(n,s){if(1&n&&(e.j41(0,"td",52)(1,"span",56),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&n){const t=s.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,t.remote_balance))}}function V4(n,s){1&n&&(e.j41(0,"th",57)(1,"div",58),e.EFF(2,"Actions"),e.k0s()())}function Y4(n,s){if(1&n){const t=e.RV6();e.j41(0,"td",59)(1,"button",60),e.bIt("click",function(){const i=e.eBV(t).$implicit,o=e.XpG(3);return e.Njj(o.onManagePeer(i))}),e.EFF(2,"Manage"),e.k0s()()}}function X4(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"All peers are routing."),e.k0s())}function U4(n,s){1&n&&(e.j41(0,"p"),e.EFF(1,"Getting non routing peers..."),e.k0s())}function H4(n,s){if(1&n&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&n){const t=e.XpG(4);e.R7$(),e.JRh(t.errorMessage)}}function q4(n,s){if(1&n&&(e.j41(0,"td",61),e.DNE(1,X4,2,0,"p",62)(2,U4,2,0,"p",62)(3,H4,2,1,"p",62),e.k0s()),2&n){const t=e.XpG(3);e.R7$(),e.Y8G("ngIf",(!(null!=t.nonRoutingPeers&&t.nonRoutingPeers.data)||(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),e.R7$(),e.Y8G("ngIf",(!(null!=t.nonRoutingPeers&&t.nonRoutingPeers.data)||(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("ngIf",(!(null!=t.nonRoutingPeers&&t.nonRoutingPeers.data)||(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function z4(n,s){if(1&n&&e.nrm(0,"tr",63),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,t4,(null==t.nonRoutingPeers||null==t.nonRoutingPeers.data?null:t.nonRoutingPeers.data.length)>0))}}function J4(n,s){1&n&&e.nrm(0,"tr",64)}function W4(n,s){1&n&&e.nrm(0,"tr",65)}function Q4(n,s){if(1&n&&(e.j41(0,"div",18),e.DNE(1,s4,1,0,"mat-progress-bar",19),e.j41(2,"table",20,1),e.qex(4,21),e.DNE(5,o4,2,0,"th",22)(6,l4,4,4,"td",23),e.bVm(),e.qex(7,24),e.DNE(8,r4,2,0,"th",22)(9,c4,4,4,"td",23),e.bVm(),e.qex(10,25),e.DNE(11,p4,2,0,"th",22)(12,m4,4,4,"td",23),e.bVm(),e.qex(13,26),e.DNE(14,u4,2,0,"th",22)(15,d4,4,4,"td",23),e.bVm(),e.qex(16,27),e.DNE(17,h4,2,1,"th",28)(18,_4,3,1,"td",23),e.bVm(),e.qex(19,29),e.DNE(20,f4,2,1,"th",28)(21,g4,3,1,"td",23),e.bVm(),e.qex(22,30),e.DNE(23,C4,2,0,"th",28)(24,y4,4,3,"td",23),e.bVm(),e.qex(25,31),e.DNE(26,b4,2,0,"th",28)(27,F4,4,3,"td",23),e.bVm(),e.qex(28,32),e.DNE(29,x4,2,0,"th",28)(30,v4,4,3,"td",23),e.bVm(),e.qex(31,33),e.DNE(32,T4,2,0,"th",28)(33,S4,4,3,"td",23),e.bVm(),e.qex(34,34),e.DNE(35,k4,2,0,"th",28)(36,R4,4,3,"td",23),e.bVm(),e.qex(37,35),e.DNE(38,E4,2,0,"th",28)(39,I4,4,3,"td",23),e.bVm(),e.qex(40,36),e.DNE(41,L4,2,0,"th",28)(42,w4,4,3,"td",23),e.bVm(),e.qex(43,37),e.DNE(44,j4,2,0,"th",28)(45,G4,4,3,"td",23),e.bVm(),e.qex(46,38),e.DNE(47,D4,2,0,"th",28)(48,N4,4,3,"td",23),e.bVm(),e.qex(49,39),e.DNE(50,P4,2,0,"th",28)(51,$4,4,3,"td",23),e.bVm(),e.qex(52,40),e.DNE(53,A4,2,0,"th",28)(54,M4,4,3,"td",23),e.bVm(),e.qex(55,41),e.DNE(56,B4,2,0,"th",28)(57,O4,4,3,"td",23),e.bVm(),e.qex(58,42),e.DNE(59,V4,3,0,"th",43)(60,Y4,3,0,"td",44),e.bVm(),e.qex(61,45),e.DNE(62,q4,4,3,"td",46),e.bVm(),e.DNE(63,z4,1,3,"tr",47)(64,J4,1,0,"tr",48)(65,W4,1,0,"tr",49),e.k0s()()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("ngIf",t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),e.R7$(),e.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.nonRoutingPeers),e.R7$(61),e.Y8G("matFooterRowDef",e.lJ4(7,e4)),e.R7$(),e.Y8G("matHeaderRowDef",t.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",t.displayedColumns)}}function Z4(n,s){if(1&n&&(e.j41(0,"div",6),e.DNE(1,a4,14,4,"div",7)(2,Q4,66,8,"div",8),e.nrm(3,"mat-paginator",9,0),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.Y8G("ngIf",""===t.errorMessage),e.R7$(),e.Y8G("ngIf",""===t.errorMessage),e.R7$(),e.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let K4=(()=>{class n{constructor(t,a,i,o,r,p,F){this.logger=t,this.commonService=a,this.store=i,this.router=o,this.activatedRoute=r,this.decimalPipe=p,this.camelCaseWithReplace=F,this.nodePageDefs=l._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"non_routing_peers",recordsPerPage:l.md,sortBy:"remote_alias",sortOrder:l.oi.DESCENDING},this.routingPeersData=[],this.displayedColumns=[],this.nonRoutingPeers=new c.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.selFilter="",this.activeChannels=[],this.timeUnit="mins:secs",this.apiCallStatus=null,this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B,new u.B,new u.B,new u.B,new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(y.$G).pipe((0,_.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId)||l.ZC.find(a=>a.pageId===this.PAGE_ID)?.tables.find(a=>a.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===l.f7.XS||this.screenSize===l.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(y.Ie).pipe((0,_.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,t.apiCallStatus?.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.routingPeersData=t.forwardingHistory.forwarding_events?t.forwardingHistory.forwarding_events:[],this.routingPeersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData),this.logger.info(t.apiCallStatus),this.logger.info(t.forwardingHistory)}),this.store.select(y.BM).pipe((0,_.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===l.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.activeChannels=t.channels,this.logger.info(t)})}ngAfterViewInit(){this.routingPeersData.length>0&&this.loadNonRoutingPeersTable(this.routingPeersData)}calculateUptime(t){let p=60,F=1,C=0;switch(t.forEach(S=>{S.uptime&&+S.uptime>C&&(C=+S.uptime)}),!0){case C<3600:this.timeUnit="Mins:Secs",p=60,F=1;break;case C>=3600&&C<86400:this.timeUnit="Hrs:Mins",p=3600,F=60;break;case C>=86400&&C<31536e3:this.timeUnit="Days:Hrs",p=86400,F=3600;break;case C>31536e3:this.timeUnit="Yrs:Days",p=31536e3,F=86400;break;default:this.timeUnit="Mins:Secs",p=60,F=1}return t.forEach(S=>{S.uptime_str=S.uptime?this.decimalPipe.transform(Math.floor(+S.uptime/p),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.uptime%p/F),"2.0-0"):"---",S.lifetime_str=S.lifetime?this.decimalPipe.transform(Math.floor(+S.lifetime/p),"2.0-0")+":"+this.decimalPipe.transform(Math.round(+S.lifetime%p/F),"2.0-0"):"---"}),t}onManagePeer(t){this.router.navigate(["../../","connections","channels","open"],{relativeTo:this.activatedRoute,state:{filterValue:t.chan_id}})}applyFilter(){this.nonRoutingPeers.filter=this.selFilter.toLowerCase()}getLabel(t){const a=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(i=>i.column===t);return a?a.label?a.label:this.camelCaseWithReplace.transform(a.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.nonRoutingPeers.filterPredicate=(t,a)=>{let i="";return i="all"===this.selFilterBy?JSON.stringify(t).toLowerCase():typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString(),i.includes(a)}}loadNonRoutingPeersTable(t){if(t.length>0){const a=this.calculateUptime(this.activeChannels?.filter(i=>t.findIndex(o=>o.chan_id_in===i.chan_id||o.chan_id_out===i.chan_id)<0));this.nonRoutingPeers=new c.I6(a),this.nonRoutingPeers.sort=this.sort,this.nonRoutingPeers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.nonRoutingPeers)}else this.nonRoutingPeers=new c.I6([]);this.applyFilter()}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(x.Ix),e.rXU(x.nX),e.rXU(d.QX),e.rXU(q.VD))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-non-routing-peers"]],viewQuery:function(a,i){if(1&a&&(e.GBs(k.B4,5),e.GBs(w.iy,5)),2&a){let o;e.mGM(o=e.lsd())&&(i.sort=o.first),e.mGM(o=e.lsd())&&(i.paginator=o.first)}},features:[e.Jv_([{provide:w.xX,useValue:(0,l.on)("Non routing peers")}])],decls:3,vars:2,consts:[["paginator",""],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","chan_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","remote_alias"],["matColumnDef","remote_pubkey"],["matColumnDef","channel_point"],["matColumnDef","uptime_str"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","lifetime_str"],["matColumnDef","commit_fee"],["matColumnDef","commit_weight"],["matColumnDef","fee_per_kw"],["matColumnDef","num_updates"],["matColumnDef","unsettled_balance"],["matColumnDef","capacity"],["matColumnDef","local_chan_reserve_sat"],["matColumnDef","remote_chan_reserve_sat"],["matColumnDef","total_satoshis_sent"],["matColumnDef","total_satoshis_received"],["matColumnDef","local_balance"],["matColumnDef","remote_balance"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_non_routing_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(a,i){1&a&&(e.j41(0,"div",2),e.DNE(1,n4,2,1,"div",3)(2,Z4,5,5,"div",4),e.k0s()),2&a&&(e.R7$(),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage))},dependencies:[d.YU,d.Sq,d.bT,d.B3,m.me,m.BC,m.vS,h.DJ,h.sA,h.UI,L.PW,L.eI,G.$z,$.fg,f.rl,f.nJ,B.HM,R.VO,V.wT,k.B4,k.aE,c.Zl,c.tL,c.ji,c.cC,c.YV,c.iL,c.Zq,c.xW,c.KS,c.$R,c.Qo,c.YZ,c.NB,c.iF,w.iy,A.ZF,A.Ld,d.QX]})}return n})();var rt=g(3838);let eC=(()=>{class n{constructor(t){this.dataService=t,this.paths="",this.unSubs=[new u.B,new u.B]}ngOnInit(){if(this.payment.htlcs&&this.payment.htlcs[0]&&this.payment.htlcs[0].route&&this.payment.htlcs[0].route.hops&&this.payment.htlcs[0].route.hops.length>0){const t=this.payment.htlcs[0].route.hops?.reduce((a,i)=>""===a&&i.pub_key?i.pub_key:a+","+i.pub_key,"");this.dataService.getAliasesFromPubkeys(t,!0).pipe((0,_.Q)(this.unSubs[0])).subscribe(a=>{this.paths=a?.reduce((i,o)=>""===i?o:i+"\n"+o,"")})}this.payment.payment_request&&""!==this.payment.payment_request.trim()&&this.dataService.decodePayment(this.payment.payment_request,!1).pipe((0,J.s)(1)).subscribe(t=>{t&&t.description&&""!==t.description&&(this.payment.description=t.description)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(K.u))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-payment-lookup"]],inputs:{payment:"payment"},decls:66,vars:20,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"my-1",3,"inset"],["fxLayout","row"],["fxFlex","50"]],template:function(a,i){1&a&&(e.j41(0,"div",0)(1,"mat-card-content",1)(2,"div",2)(3,"h4",3),e.EFF(4,"Payment Hash"),e.k0s(),e.j41(5,"span",4),e.EFF(6),e.k0s()(),e.nrm(7,"mat-divider",5),e.j41(8,"div",2)(9,"h4",3),e.EFF(10,"Payment Preimage"),e.k0s(),e.j41(11,"span",4)(12,"div"),e.EFF(13),e.k0s()()(),e.nrm(14,"mat-divider",5),e.j41(15,"div",2)(16,"h4",3),e.EFF(17,"Payment Request"),e.k0s(),e.j41(18,"span",4)(19,"div"),e.EFF(20),e.k0s()()(),e.nrm(21,"mat-divider",5),e.j41(22,"div",2)(23,"h4",3),e.EFF(24,"Description"),e.k0s(),e.j41(25,"span",4)(26,"div"),e.EFF(27),e.k0s()()(),e.nrm(28,"mat-divider",5),e.j41(29,"div",6)(30,"div",7)(31,"h4",3),e.EFF(32,"Status"),e.k0s(),e.j41(33,"span",4)(34,"div"),e.EFF(35),e.k0s()()(),e.j41(36,"div",7)(37,"h4",3),e.EFF(38,"Creation Date"),e.k0s(),e.j41(39,"span",4)(40,"div"),e.EFF(41),e.k0s()()()(),e.nrm(42,"mat-divider",5),e.j41(43,"div",6)(44,"div",7)(45,"h4",3),e.EFF(46,"Value (mSats)"),e.k0s(),e.j41(47,"span",4)(48,"div"),e.EFF(49),e.nI1(50,"number"),e.k0s()()(),e.j41(51,"div",7)(52,"h4",3),e.EFF(53,"Fee (mSats)"),e.k0s(),e.j41(54,"span",4)(55,"div"),e.EFF(56),e.nI1(57,"number"),e.k0s()()()(),e.nrm(58,"mat-divider",5),e.j41(59,"div",2)(60,"h4",3),e.EFF(61,"Path"),e.k0s(),e.j41(62,"span",4)(63,"div"),e.EFF(64),e.k0s()()(),e.nrm(65,"mat-divider",5),e.k0s()()),2&a&&(e.R7$(6),e.JRh(null==i.payment?null:i.payment.payment_hash),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.payment?null:i.payment.payment_preimage),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.payment?null:i.payment.payment_request),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.payment?null:i.payment.description),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(null==i.payment?null:i.payment.status),e.R7$(6),e.JRh(null==i.payment?null:i.payment.creation_date),e.R7$(),e.Y8G("inset",!0),e.R7$(7),e.JRh(e.bMT(50,16,null==i.payment?null:i.payment.value_msat)),e.R7$(7),e.JRh(e.bMT(57,18,null==i.payment?null:i.payment.fee_msat)),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(i.paths),e.R7$(),e.Y8G("inset",!0))},dependencies:[h.DJ,h.sA,h.UI,T.m2,ee.q,d.QX]})}return n})();var tC=g(8288);const ct=n=>({"display-none":n}),Pe=n=>({"mr-0":n});function nC(n,s){if(1&n&&e.nrm(0,"qr-code",22),2&n){const t=e.XpG();e.Y8G("value",null==t.invoice?null:t.invoice.payment_request)("size",t.qrWidth)("errorCorrectionLevel","L")}}function iC(n,s){1&n&&(e.j41(0,"span",23),e.EFF(1,"N/A"),e.k0s())}function aC(n,s){if(1&n&&e.nrm(0,"qr-code",22),2&n){const t=e.XpG();e.Y8G("value",null==t.invoice?null:t.invoice.payment_request)("size",t.qrWidth)("errorCorrectionLevel","L")}}function sC(n,s){1&n&&(e.j41(0,"span",24),e.EFF(1,"QR Code Not Applicable"),e.k0s())}function oC(n,s){1&n&&e.nrm(0,"mat-divider",16),2&n&&e.Y8G("inset",!0)}function lC(n,s){1&n&&(e.qex(0),e.EFF(1," (zero amount) "),e.bVm())}function rC(n,s){if(1&n&&e.nrm(0,"span",38),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function cC(n,s){if(1&n&&e.nrm(0,"span",39),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function pC(n,s){if(1&n&&e.nrm(0,"span",40),2&n){const t=e.XpG(3);e.Y8G("ngClass",e.eq3(1,Pe,t.screenSize===t.screenSizeEnum.XS))}}function mC(n,s){if(1&n&&(e.j41(0,"div",27)(1,"div",32)(2,"span",33),e.DNE(3,rC,1,3,"span",34)(4,cC,1,3,"span",35)(5,pC,1,3,"span",36),e.EFF(6),e.k0s(),e.j41(7,"span",37),e.EFF(8),e.nI1(9,"number"),e.k0s()(),e.nrm(10,"mat-divider",16),e.k0s()),2&n){const t=s.$implicit,a=e.XpG(2);e.R7$(3),e.Y8G("ngIf","SETTLED"===t.state),e.R7$(),e.Y8G("ngIf","ACCEPTED"===t.state),e.R7$(),e.Y8G("ngIf","CANCELED"===t.state),e.R7$(),e.SpI(" ",t.chan_id," "),e.R7$(2),e.JRh(e.i5U(9,6,+t.amt_msat/1e3||0,a.getDecimalFormat(t))),e.R7$(2),e.Y8G("inset",!0)}}function uC(n,s){if(1&n){const t=e.RV6();e.j41(0,"div",11)(1,"mat-expansion-panel",25),e.bIt("opened",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.flgOpened=!0)})("closed",function(){e.eBV(t);const i=e.XpG();return e.Njj(i.onExpansionClosed())}),e.j41(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",26),e.EFF(5,"HTLCs"),e.k0s()()(),e.j41(6,"div",27)(7,"div",28)(8,"span",29),e.EFF(9,"Channel ID"),e.k0s(),e.j41(10,"span",30),e.EFF(11,"Amount (Sats)"),e.k0s()(),e.nrm(12,"mat-divider",16),e.DNE(13,mC,11,9,"div",31),e.k0s()()()}if(2&n){const t=e.XpG();e.R7$(12),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngForOf",null==t.invoice?null:t.invoice.htlcs)}}function dC(n,s){1&n&&e.nrm(0,"mat-divider",16),2&n&&e.Y8G("inset",!0)}let hC=(()=>{class n{constructor(t){this.commonService=t,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220)}getDecimalFormat(t){return t.amt_msat<1e3?"1.0-4":"1.0-0"}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(N.h))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-invoice-lookup"]],inputs:{invoice:"invoice"},decls:90,vars:45,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between stretch"],["fxFlex","20",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxLayout","column","fxFlex","80"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],[3,"perfectScrollbar"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"my-1",3,"inset"],["fxFlex","100"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","34"],["fxFlex","33"],["fxLayout","row",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],[1,"font-size-120"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"flat-expansion-panel",3,"opened","closed"],["fxLayoutAlign","start center","fxFlex","100",1,"font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100",1,"mt-minus-1"],["fxFlex","60",1,"foreground-secondary-text","font-bold-500"],["fxFlex","40",1,"foreground-secondary-text","font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100"],["fxFlex","60",1,"foreground-secondary-text"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Cancelled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["fxFlex","40",1,"foreground-secondary-text"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Cancelled","matTooltipPosition","right",1,"dot","red",3,"ngClass"]],template:function(a,i){1&a&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,nC,1,3,"qr-code",2)(3,iC,2,0,"span",3),e.k0s(),e.j41(4,"div",4)(5,"mat-card-content",5)(6,"div",6)(7,"div",7),e.DNE(8,aC,1,3,"qr-code",2)(9,sC,2,0,"span",8),e.k0s(),e.DNE(10,oC,1,1,"mat-divider",9),e.j41(11,"div",10)(12,"div",11)(13,"div",12)(14,"h4",13),e.EFF(15),e.k0s(),e.j41(16,"span",14),e.EFF(17),e.nI1(18,"number"),e.DNE(19,lC,2,0,"ng-container",15),e.k0s()(),e.j41(20,"div",12)(21,"h4",13),e.EFF(22,"Amount Settled"),e.k0s(),e.j41(23,"span",14)(24,"div"),e.EFF(25),e.nI1(26,"number"),e.k0s()()()(),e.nrm(27,"mat-divider",16),e.j41(28,"div",11)(29,"div",12)(30,"h4",13),e.EFF(31,"Date Created"),e.k0s(),e.j41(32,"span",14),e.EFF(33),e.nI1(34,"date"),e.k0s()(),e.j41(35,"div",12)(36,"h4",13),e.EFF(37,"Date Settled"),e.k0s(),e.j41(38,"span",14),e.EFF(39),e.nI1(40,"date"),e.k0s()()(),e.nrm(41,"mat-divider",16),e.j41(42,"div",11)(43,"div",17)(44,"h4",13),e.EFF(45,"Memo"),e.k0s(),e.j41(46,"span",14),e.EFF(47),e.k0s()()(),e.nrm(48,"mat-divider",16),e.j41(49,"div",11)(50,"div",17)(51,"h4",13),e.EFF(52,"Payment Request"),e.k0s(),e.j41(53,"span",18),e.EFF(54),e.k0s()()(),e.nrm(55,"mat-divider",16),e.j41(56,"div",11)(57,"div",17)(58,"h4",13),e.EFF(59,"Payment Hash"),e.k0s(),e.j41(60,"span",18),e.EFF(61),e.k0s()()(),e.j41(62,"div"),e.nrm(63,"mat-divider",16),e.j41(64,"div",11)(65,"div",17)(66,"h4",13),e.EFF(67,"Preimage"),e.k0s(),e.j41(68,"span",18),e.EFF(69),e.k0s()()(),e.nrm(70,"mat-divider",16),e.j41(71,"div",11)(72,"div",19)(73,"h4",13),e.EFF(74,"State"),e.k0s(),e.j41(75,"span",18),e.EFF(76),e.k0s()(),e.j41(77,"div",20)(78,"h4",13),e.EFF(79,"Expiry"),e.k0s(),e.j41(80,"span",18),e.EFF(81),e.k0s()(),e.j41(82,"div",20)(83,"h4",13),e.EFF(84,"Private Routing Hints"),e.k0s(),e.j41(85,"span",18),e.EFF(86),e.k0s()()(),e.nrm(87,"mat-divider",16),e.DNE(88,uC,14,2,"div",21)(89,dC,1,1,"mat-divider",9),e.k0s()()()()()()),2&a&&(e.R7$(),e.Y8G("fxLayoutAlign",null!=i.invoice&&i.invoice.payment_request&&""!==(null==i.invoice?null:i.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(41,ct,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.payment_request)&&""!==(null==i.invoice?null:i.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=i.invoice&&i.invoice.payment_request)||""===(null==i.invoice?null:i.invoice.payment_request)),e.R7$(4),e.Y8G("fxLayoutAlign",null!=i.invoice&&i.invoice.payment_request&&""!==(null==i.invoice?null:i.invoice.payment_request)?"center start":"center center")("ngClass",e.eq3(43,ct,i.screenSize!==i.screenSizeEnum.XS&&i.screenSize!==i.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.payment_request)&&""!==(null==i.invoice?null:i.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",!(null!=i.invoice&&i.invoice.payment_request)||""===(null==i.invoice?null:i.invoice.payment_request)),e.R7$(),e.Y8G("ngIf",i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM),e.R7$(5),e.JRh(i.screenSize===i.screenSizeEnum.XS?"Amount":"Amount Requested"),e.R7$(2),e.SpI("",e.bMT(18,31,(null==i.invoice?null:i.invoice.value)||0)," Sats"),e.R7$(2),e.Y8G("ngIf",!(null!=i.invoice&&i.invoice.value)||"0"===(null==i.invoice?null:i.invoice.value)),e.R7$(6),e.SpI("",e.bMT(26,33,null==i.invoice?null:i.invoice.amt_paid_sat)," Sats"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(e.i5U(34,35,1e3*(null==i.invoice?null:i.invoice.creation_date),"dd/MMM/y HH:mm")),e.R7$(6),e.JRh(0!=+(null==i.invoice?null:i.invoice.settle_date)?e.i5U(40,38,1e3*+(null==i.invoice?null:i.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.invoice?null:i.invoice.memo),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==i.invoice?null:i.invoice.payment_request)||"N/A"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==i.invoice?null:i.invoice.r_hash)||""),e.R7$(2),e.Y8G("inset",!0),e.R7$(6),e.JRh((null==i.invoice?null:i.invoice.r_preimage)||"-"),e.R7$(),e.Y8G("inset",!0),e.R7$(6),e.JRh(null==i.invoice?null:i.invoice.state),e.R7$(5),e.JRh(null==i.invoice?null:i.invoice.expiry),e.R7$(5),e.JRh(null!=i.invoice&&i.invoice.private?"Yes":"No"),e.R7$(),e.Y8G("inset",!0),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.htlcs)&&(null==i.invoice?null:i.invoice.htlcs.length)>0),e.R7$(),e.Y8G("ngIf",(null==i.invoice?null:i.invoice.htlcs)&&(null==i.invoice?null:i.invoice.htlcs.length)>0))},dependencies:[d.YU,d.Sq,d.bT,h.DJ,h.sA,h.UI,L.PW,T.m2,U.GK,U.Z2,U.WN,ee.q,Q.oV,tC.Um,A.Ld,d.QX,d.vh]})}return n})();const _C=n=>({"mt-1":!0,"mt-2":n}),fC=n=>({"w-100 mt-2 p-2 error-border":n,"w-100 my-2 p-2":!0});function gC(n,s){if(1&n&&(e.j41(0,"mat-radio-button",17),e.EFF(1),e.k0s()),2&n){const t=s.$implicit,a=e.XpG();e.Y8G("value",t.id)("checked",a.selectedFieldId===t.id),e.R7$(),e.SpI(" ",t.name," ")}}function CC(n,s){if(1&n&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&n){const t=e.XpG();e.R7$(),e.SpI("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function yC(n,s){1&n&&e.nrm(0,"mat-progress-bar",20)}function bC(n,s){if(1&n&&(e.j41(0,"div",18),e.DNE(1,yC,1,0,"mat-progress-bar",19),e.EFF(2),e.k0s()),2&n){const t=e.XpG();e.Y8G("ngClass",e.eq3(3,fC,""!==t.errorMessage&&"Getting lookup details..."!==t.errorMessage)),e.R7$(),e.Y8G("ngIf","Getting lookup details..."===t.errorMessage),e.R7$(),e.SpI(" ",t.errorMessage," ")}}function FC(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-payment-lookup",28),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("payment",t.lookupValue)}}function xC(n,s){if(1&n&&(e.j41(0,"span",27),e.nrm(1,"rtl-invoice-lookup",29),e.k0s()),2&n){const t=e.XpG(2);e.R7$(),e.Y8G("invoice",t.lookupValue)}}function vC(n,s){1&n&&(e.j41(0,"span"),e.EFF(1,' fxFlex="100"'),e.j41(2,"h3"),e.EFF(3,"Error! Unable to find details!"),e.k0s()())}function TC(n,s){if(1&n&&(e.j41(0,"div",21)(1,"div",22)(2,"span",23),e.EFF(3),e.k0s()(),e.j41(4,"div",24),e.DNE(5,FC,2,1,"span",25)(6,xC,2,1,"span",25)(7,vC,4,0,"span",26),e.k0s()()),2&n){const t=e.XpG();e.R7$(3),e.SpI("",t.lookupFields[t.selectedFieldId].name," Details"),e.R7$(),e.Y8G("ngSwitch",t.selectedFieldId),e.R7$(),e.Y8G("ngSwitchCase",0),e.R7$(),e.Y8G("ngSwitchCase",1)}}let SC=(()=>{class n{constructor(t,a,i,o){this.logger=t,this.commonService=a,this.store=i,this.actions=o,this.lookupKey="",this.lookupValue={},this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Payment",placeholder:"Payment Hash"},{id:1,name:"Invoice",placeholder:"Payment Hash"}],this.faSearch=b.MjD,this.screenSize="",this.screenSizeEnum=l.f7,this.errorMessage="",this.apiCallStatusEnum=l.wn,this.unSubs=[new u.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.actions.pipe((0,_.Q)(this.unSubs[0]),(0,Y.p)(t=>t.type===l.QP.SET_LOOKUP_LND)).subscribe(t=>{this.flgSetLookupValue=!t.payload.error,this.lookupValue=JSON.parse(JSON.stringify(t.payload)),this.errorMessage=t.payload.error?this.commonService.extractErrorMessage(t.payload.error):"",this.logger.info(this.lookupValue)})}onLookup(){if(!this.lookupKey)return!0;switch(this.errorMessage="",this.flgSetLookupValue=!1,this.lookupValue={},this.selectedFieldId){case 0:this.store.dispatch((0,v.jk)({payload:rt.Buffer.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}));break;case 1:this.store.dispatch((0,v.Yi)({payload:{openSnackBar:!1,paymentHash:rt.Buffer.from(this.lookupKey.trim(),"hex").toString("base64")?.replace(/\+/g,"-")?.replace(/[/]/g,"_")}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.lookupKey="",this.lookupValue={},this.errorMessage=""}clearLookupValue(){this.lookupValue={},this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#e=this.\u0275fac=function(a){return new(a||n)(e.rXU(j.gP),e.rXU(N.h),e.rXU(I.il),e.rXU(W.En))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["rtl-lookup-transactions"]],decls:21,vars:10,consts:[["form","ngForm"],["key",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass",4,"ngIf"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","row wrap","fxLayoutAlign","space-between center",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["mode","indeterminate"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mb-2"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[3,"payment"],[3,"invoice"]],template:function(a,i){if(1&a){const o=e.RV6();e.j41(0,"div",2)(1,"div",3)(2,"mat-card-content",4)(3,"form",5,0)(5,"div",6)(6,"mat-radio-group",7),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.selectedFieldId,p)||(i.selectedFieldId=p),e.Njj(p)}),e.bIt("change",function(p){return e.eBV(o),e.Njj(i.onSelectChange(p))}),e.DNE(7,gC,2,3,"mat-radio-button",8),e.k0s()(),e.j41(8,"mat-form-field",9)(9,"mat-label"),e.EFF(10),e.k0s(),e.j41(11,"input",10,1),e.mxI("ngModelChange",function(p){return e.eBV(o),e.DH7(i.lookupKey,p)||(i.lookupKey=p),e.Njj(p)}),e.bIt("change",function(){return e.eBV(o),e.Njj(i.clearLookupValue())}),e.k0s(),e.DNE(13,CC,2,1,"mat-error",11),e.k0s(),e.j41(14,"div",12)(15,"button",13),e.bIt("click",function(){return e.eBV(o),e.Njj(i.resetData())}),e.EFF(16,"Clear"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){return e.eBV(o),e.Njj(i.onLookup())}),e.EFF(18,"Lookup"),e.k0s()()(),e.DNE(19,bC,3,5,"div",15)(20,TC,8,4,"div",16),e.k0s()()()}2&a&&(e.R7$(6),e.R50("ngModel",i.selectedFieldId),e.R7$(),e.Y8G("ngForOf",i.lookupFields),e.R7$(),e.Y8G("ngClass",e.eq3(8,_C,i.screenSize===i.screenSizeEnum.XS||i.screenSize===i.screenSizeEnum.SM)),e.R7$(2),e.JRh((null==i.lookupFields[i.selectedFieldId]?null:i.lookupFields[i.selectedFieldId].placeholder)||"Lookup Key"),e.R7$(),e.R50("ngModel",i.lookupKey),e.R7$(2),e.Y8G("ngIf",!i.lookupKey),e.R7$(6),e.Y8G("ngIf",""!==i.errorMessage),e.R7$(),e.Y8G("ngIf",""===i.errorMessage&&i.lookupValue&&i.flgSetLookupValue))},dependencies:[d.YU,d.Sq,d.bT,d.ux,d.e1,d.fG,m.qT,m.me,m.BC,m.cb,m.YS,m.vS,m.cV,h.DJ,h.sA,h.UI,L.PW,G.$z,T.m2,$.fg,f.rl,f.nJ,f.TL,B.HM,pe.VT,pe._g,eC,hC],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]})}return n})();const kC=[{path:"",component:Ae,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Os,canActivate:[(0,D.jn)()]},{path:"wallet",component:Sd,canActivate:[D.q_]},{path:"onchain",component:i2,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:o2,canActivate:[(0,D.jn)()]},{path:"send/:selTab",component:ot,data:{sweepAll:!1},canActivate:[(0,D.jn)()]},{path:"sweep/:selTab",component:ot,data:{sweepAll:!0},canActivate:[(0,D.jn)()]}]},{path:"connections",component:Xs,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:dl,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:$1,canActivate:[(0,D.jn)()]},{path:"pending",component:bm,canActivate:[(0,D.jn)()]},{path:"closed",component:ru,canActivate:[(0,D.jn)()]},{path:"activehtlcs",component:ed,canActivate:[(0,D.jn)()]}]},{path:"peers",component:rl,data:{sweepAll:!1},canActivate:[(0,D.jn)()]}]},{path:"transactions",component:Rd,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Oe,canActivate:[(0,D.jn)()]},{path:"invoices",component:Be,canActivate:[(0,D.jn)()]},{path:"lookuptransactions",component:SC,canActivate:[(0,D.jn)()]}]},{path:"messages",component:Og,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:Yg,canActivate:[(0,D.jn)()]},{path:"verify",component:Qg,canActivate:[(0,D.jn)()]}]},{path:"channelbackup",component:ag,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"bckup"},{path:"bckup",component:Mg,canActivate:[(0,D.jn)()]},{path:"restore",component:xg,canActivate:[(0,D.jn)()]}]},{path:"routing",component:Dh,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:tt,canActivate:[(0,D.jn)()]},{path:"peers",component:s0,canActivate:[(0,D.jn)()]},{path:"nonroutingprs",component:K4,canActivate:[(0,D.jn)()]}]},{path:"reports",component:l0,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:f0,canActivate:[(0,D.jn)()]},{path:"transactions",component:I0,canActivate:[(0,D.jn)()]}]},{path:"graph",component:Id,canActivate:[(0,D.jn)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:et,canActivate:[(0,D.jn)()]},{path:"queryroutes",component:nh,canActivate:[(0,D.jn)()]}]},{path:"lookups",component:et,canActivate:[(0,D.jn)()]},{path:"network",component:ng,canActivate:[(0,D.jn)()]},{path:"**",component:Zg.X},{path:"rates",redirectTo:"network"}]}],RC=x.iI.forChild(kC);var EC=g(9029);let IC=(()=>{class n{static#e=this.\u0275fac=function(a){return new(a||n)};static#t=this.\u0275mod=e.$C({type:n,bootstrap:[Ae]});static#n=this.\u0275inj=e.G2t({imports:[d.MD,EC.G,RC]})}return n})()}}]); \ No newline at end of file diff --git a/frontend/193.5eec0042e2c6f1a7.js b/frontend/193.5eec0042e2c6f1a7.js new file mode 100644 index 00000000..2beeb400 --- /dev/null +++ b/frontend/193.5eec0042e2c6f1a7.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[193],{5837(c1,j,t){t.d(j,{f:()=>U});var e=t(1413),T=t(6977),f=t(4416),c=t(9647),l=t(3664),B=t(2571),b=t(9640),P=t(2200),w=t(2629),S=t(2920),a=t(455),N=t(6850);function k(C,x){if(1&C&&(l.j41(0,"mat-icon",10),l.EFF(1,"info_outline"),l.k0s()),2&C){const v=l.XpG().$implicit;l.Y8G("matTooltip",v.tooltip)}}function R(C,x){if(1&C&&(l.j41(0,"span",11),l.EFF(1),l.nI1(2,"number"),l.k0s()),2&C){const v=l.XpG().$implicit;l.R7$(),l.SpI(" ",l.i5U(2,1,v.dataValue,"1.0-0")," ")}}function V(C,x){if(1&C&&(l.j41(0,"span",11),l.EFF(1),l.nI1(2,"number"),l.k0s()),2&C){const v=l.XpG().$implicit,n=l.XpG(2);l.R7$(),l.SpI(" ",l.i5U(2,1,v[n.currencyUnitEnum.BTC],n.currencyUnitFormats.BTC)," ")}}function O(C,x){if(1&C&&(l.j41(0,"span",11),l.EFF(1),l.nI1(2,"number"),l.k0s()),2&C){const v=l.XpG().$implicit,n=l.XpG(2);l.R7$(),l.SpI(" ",l.i5U(2,1,v[n.currencyUnitEnum.OTHER],n.currencyUnitFormats.OTHER)," ")}}function A(C,x){if(1&C&&(l.j41(0,"div",6)(1,"div",7),l.EFF(2),l.DNE(3,k,2,1,"mat-icon",8),l.k0s(),l.DNE(4,R,3,4,"span",9)(5,V,3,4,"span",9)(6,O,3,4,"span",9),l.k0s()),2&C){const v=x.$implicit,n=l.XpG().$implicit,z=l.XpG();l.R7$(2),l.SpI(" ",v.title," "),l.R7$(),l.Y8G("ngIf",v.tooltip),l.R7$(),l.Y8G("ngIf",n===z.currencyUnitEnum.SATS),l.R7$(),l.Y8G("ngIf",n===z.currencyUnitEnum.BTC),l.R7$(),l.Y8G("ngIf",z.fiatConversion&&n!==z.currencyUnitEnum.SATS&&n!==z.currencyUnitEnum.BTC&&""===z.conversionErrorMsg)}}function G(C,x){if(1&C&&(l.j41(0,"div",12)(1,"div",13),l.EFF(2),l.k0s()()),2&C){const v=l.XpG(2);l.R7$(2),l.JRh(v.conversionErrorMsg)}}function H(C,x){if(1&C&&(l.j41(0,"mat-tab",2)(1,"div",3),l.DNE(2,A,7,5,"div",4),l.k0s(),l.DNE(3,G,3,1,"div",5),l.k0s()),2&C){const v=x.$implicit,n=l.XpG();l.Y8G("label",l.mNQ(v)),l.R7$(2),l.Y8G("ngForOf",n.values),l.R7$(),l.Y8G("ngIf",n.fiatConversion&&v!==n.currencyUnitEnum.SATS&&v!==n.currencyUnitEnum.BTC&&""!==n.conversionErrorMsg)}}let U=(()=>{var C;class x{constructor(n,z){this.commonService=n,this.store=z,this.values=[],this.currencyUnitEnum=f.BQ,this.currencyUnitFormats=f.k,this.currencyUnits=[],this.fiatConversion=!1,this.conversionErrorMsg="",this.unSubs=[new e.B,new e.B,new e.B,new e.B,new e.B]}ngOnChanges(){this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues()}ngOnInit(){this.store.select(c._c).pipe((0,T.Q)(this.unSubs[0])).subscribe(n=>{this.fiatConversion=n.settings.fiatConversion,this.currencyUnits=n.settings.currencyUnits,this.fiatConversion||this.currencyUnits.splice(2,1),this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues()})}getCurrencyValues(){this.commonService.convertCurrency(this.values[0].dataValue,f.BQ.SATS,f.BQ.BTC,"",!0).pipe((0,T.Q)(this.unSubs[1])).subscribe(n=>{this.values[0][f.BQ.BTC]=n.BTC}),this.commonService.convertCurrency(this.values[0].dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,T.Q)(this.unSubs[2])).subscribe({next:n=>{if(this.values[0][f.BQ.OTHER]=n.OTHER,n.unit&&""!==n.unit)for(let z=1;z{this.values[z][f.BQ.BTC]=F.BTC}),this.commonService.convertCurrency(g.dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,T.Q)(this.unSubs[4])).subscribe({next:F=>{this.values[z][f.BQ.OTHER]=F.OTHER},error:F=>{this.conversionErrorMsg="Conversion Error: "+F}})}},error:n=>{this.conversionErrorMsg="Conversion Error: "+n}})}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#a=C=()=>(this.\u0275fac=function(z){return new(z||x)(l.rXU(B.h),l.rXU(b.il))},this.\u0275cmp=l.VBU({type:x,selectors:[["rtl-currency-unit-converter"]],inputs:{values:"values"},standalone:!1,features:[l.OA$],decls:2,vars:1,consts:[["mat-stretch-tabs","false","mat-align-tabs","start"],[3,"label",4,"ngFor","ngForOf"],[3,"label"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","center start","class","cc-data-block",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","class","p-1 error-border mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center start",1,"cc-data-block"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"cc-data-title"],["matTooltipPosition","below","class","info-icon",3,"matTooltip",4,"ngIf"],["class","cc-data-value",4,"ngIf"],["matTooltipPosition","below",1,"info-icon",3,"matTooltip"],[1,"cc-data-value"],["fxLayout","row","fxFlex","100",1,"p-1","error-border","mt-1"],[1,"cc-data-block"]],template:function(z,g){1&z&&(l.j41(0,"mat-tab-group",0),l.DNE(1,H,4,4,"mat-tab",1),l.k0s()),2&z&&(l.R7$(),l.Y8G("ngForOf",g.currencyUnits))},dependencies:[P.Sq,P.bT,w.An,S.DJ,S.sA,S.UI,a.oV,N.mq,N.T8,P.QX],encapsulation:2}))}return C(),x})()},396(c1,j,t){t.d(j,{f:()=>v});var e=t(1585),T=t(5383),f=t(4416),c=t(3664),l=t(8570),B=t(2571),b=t(5416),P=t(2200),w=t(60),S=t(8834),a=t(5596),N=t(1997),k=t(2920),R=t(6038),V=t(8288),O=t(9157),A=t(9587);const G=n=>({"display-none":n});function H(n,z){if(1&n&&(c.j41(0,"div",20),c.nrm(1,"qr-code",21),c.k0s()),2&n){const g=c.XpG();c.Y8G("ngClass",c.eq3(3,G,g.screenSize===g.screenSizeEnum.XS||g.screenSize===g.screenSizeEnum.SM)),c.R7$(),c.Y8G("value",g.address)("size",g.qrWidth)}}function U(n,z){if(1&n&&(c.j41(0,"div",22),c.nrm(1,"qr-code",21),c.k0s()),2&n){const g=c.XpG();c.Y8G("ngClass",c.eq3(3,G,g.screenSize!==g.screenSizeEnum.XS&&g.screenSize!==g.screenSizeEnum.SM)),c.R7$(),c.Y8G("value",g.address)("size",g.qrWidth)}}function C(n,z){if(1&n&&(c.j41(0,"div",13)(1,"div",14)(2,"h4",15),c.EFF(3,"Address Type"),c.k0s(),c.j41(4,"span",23),c.EFF(5),c.k0s()()()),2&n){const g=c.XpG();c.R7$(5),c.JRh(g.addressType)}}function x(n,z){1&n&&c.nrm(0,"mat-divider",17)}let v=(()=>{var n;class z{constructor(F,I,y,W,Y){this.dialogRef=F,this.data=I,this.logger=y,this.commonService=W,this.snackBar=Y,this.faReceipt=T.Mf0,this.address="",this.addressType="",this.qrWidth=230,this.screenSize="",this.screenSizeEnum=f.f7}ngOnInit(){this.address=this.data.address,this.addressType=this.data.addressType,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyAddress(F){this.snackBar.open("Generated address copied."),this.logger.info("Copied Text: "+F)}static#a=n=()=>(this.\u0275fac=function(I){return new(I||z)(c.rXU(e.CP),c.rXU(e.Vh),c.rXU(l.gP),c.rXU(B.h),c.rXU(b.UG))},this.\u0275cmp=c.VBU({type:z,selectors:[["rtl-on-chain-generated-address"]],standalone:!1,decls:25,vars:8,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35","fxLayoutAlign","center start","class","modal-qr-code-container padding-gap-large",3,"ngClass",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","2","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start","class","modal-qr-code-container padding-gap-large",3,"ngClass",4,"ngIf"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"overflow-wrap","foreground-secondary-text"],[1,"w-100","my-1"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-1"],["autoFocus","","mat-button","","color","primary","tabindex","1","type","submit","rtlClipboard","",3,"copied","payload"],["fxFlex","35","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],["errorCorrectionLevel","L",3,"value","size"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[1,"foreground-secondary-text"]],template:function(I,y){1&I&&(c.j41(0,"div",0),c.DNE(1,H,2,5,"div",1),c.j41(2,"div",2)(3,"mat-card-header",3)(4,"div",4),c.nrm(5,"fa-icon",5),c.j41(6,"span",6),c.EFF(7),c.k0s()(),c.j41(8,"button",7),c.bIt("click",function(){return y.onClose()}),c.EFF(9,"X"),c.k0s()(),c.j41(10,"mat-card-content",8)(11,"div",9),c.DNE(12,U,2,5,"div",10)(13,C,6,1,"div",11)(14,x,1,0,"mat-divider",12),c.j41(15,"div",13)(16,"div",14)(17,"h4",15),c.EFF(18,"Address"),c.k0s(),c.j41(19,"span",16),c.EFF(20),c.k0s()()(),c.nrm(21,"mat-divider",17),c.j41(22,"div",18)(23,"button",19),c.bIt("copied",function(Y){return y.onCopyAddress(Y)}),c.EFF(24,"Copy Address"),c.k0s()()()()()()),2&I&&(c.R7$(),c.Y8G("ngIf",y.address),c.R7$(4),c.Y8G("icon",y.faReceipt),c.R7$(2),c.JRh(y.screenSize===y.screenSizeEnum.XS?"Address":"Generated Address"),c.R7$(5),c.Y8G("ngIf",y.address),c.R7$(),c.Y8G("ngIf",""!==y.addressType),c.R7$(),c.Y8G("ngIf",""!==y.addressType),c.R7$(6),c.JRh(y.address),c.R7$(3),c.Y8G("payload",y.address))},dependencies:[P.YU,P.bT,w.aY,S.$z,a.m2,a.MM,N.q,k.DJ,k.sA,k.UI,R.PW,V.Um,O.U,A.N],encapsulation:2}))}return n(),z})()},4655(c1,j,t){t.d(j,{m:()=>J});var e=t(3664),T=t(6949),f=t(4416),c=t(2615),l=t(8570),B=t(2200),b=t(9417),P=t(2598),w=t(5084),S=t(2629),a=t(3746),N=t(9588),k=t(2920),R=t(6183),V=t(3029),O=t(3),A=t(9945);let G=(()=>{var p;class _ extends O.xW{constructor(i){super(i)}format(i,o){return"MMM YYYY"===o?f.KR[i.getMonth()].name+", "+i.getFullYear():"YYYY"===o?i.getFullYear().toString():i.getDate()+"/"+f.KR[i.getMonth()].name+"/"+i.getFullYear()}static#a=p=()=>(this.\u0275fac=function(o){return new(o||_)(c.KVO(A.Ju,8))},this.\u0275prov=c.jDH({token:_,factory:_.\u0275fac}))}return p(),_})();const H={parse:{dateInput:"LL"},display:{dateInput:"MMM YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}},U={parse:{dateInput:"LL"},display:{dateInput:"YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}};let C=(()=>{var p;class _{static#a=p=()=>(this.\u0275fac=function(o){return new(o||_)},this.\u0275dir=e.FsC({type:_,selectors:[["","monthlyDate",""]],standalone:!1,features:[e.Jv_([{provide:A.MJ,useClass:G},{provide:A.de,useValue:H}])]}))}return p(),_})(),x=(()=>{var p;class _{static#a=p=()=>(this.\u0275fac=function(o){return new(o||_)},this.\u0275dir=e.FsC({type:_,selectors:[["","yearlyDate",""]],standalone:!1,features:[e.Jv_([{provide:A.MJ,useClass:G},{provide:A.de,useValue:U}])]}))}return p(),_})();var v=t(92),n=t(6114);const z=["monthlyDatepicker"],g=["yearlyDatepicker"],F=()=>({animationDirection:"forward"}),I=()=>({animationDirection:"backward"}),y=()=>({animationDirection:""});function W(p,_){if(1&p&&e.eu8(0,13),2&p){e.XpG();const m=e.sdS(19);e.Y8G("ngTemplateOutlet",m)("ngTemplateOutletContext",e.lJ4(2,F))}}function Y(p,_){if(1&p&&e.eu8(0,13),2&p){e.XpG();const m=e.sdS(19);e.Y8G("ngTemplateOutlet",m)("ngTemplateOutletContext",e.lJ4(2,I))}}function Z(p,_){if(1&p&&e.eu8(0,13),2&p){e.XpG();const m=e.sdS(19);e.Y8G("ngTemplateOutlet",m)("ngTemplateOutletContext",e.lJ4(2,y))}}function q(p,_){if(1&p&&(e.j41(0,"mat-option",22),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&p){const m=_.$implicit;e.Y8G("value",m),e.R7$(),e.SpI(" ",e.bMT(2,2,m)," ")}}function a1(p,_){if(1&p){const m=e.RV6();e.j41(0,"mat-form-field",23)(1,"mat-label"),e.EFF(2,"Monthly Date"),e.k0s(),e.j41(3,"input",24,1),e.mxI("ngModelChange",function(o){c.eBV(m);const d=e.XpG(2);return e.DH7(d.selectedValue,o)||(d.selectedValue=o),c.Njj(o)}),e.k0s(),e.nrm(5,"mat-datepicker-toggle",25),e.j41(6,"mat-datepicker",26,2),e.bIt("monthSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onMonthSelected(o))})("dateSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onMonthSelected(o))}),e.k0s()()}if(2&p){const m=e.sdS(7),i=e.XpG(2);e.R7$(3),e.Y8G("matDatepicker",m)("min",i.first)("max",i.last),e.R50("ngModel",i.selectedValue),e.R7$(2),e.Y8G("for",m),e.R7$(),e.Y8G("startAt",i.selectedValue)}}function Q(p,_){if(1&p){const m=e.RV6();e.j41(0,"mat-form-field",27)(1,"mat-label"),e.EFF(2,"Yearly Date"),e.k0s(),e.j41(3,"input",28,3),e.mxI("ngModelChange",function(o){c.eBV(m);const d=e.XpG(2);return e.DH7(d.selectedValue,o)||(d.selectedValue=o),c.Njj(o)}),e.k0s(),e.nrm(5,"mat-datepicker-toggle",25),e.j41(6,"mat-datepicker",29,4),e.bIt("yearSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onYearSelected(o))})("monthSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onYearSelected(o))})("dateSelected",function(o){c.eBV(m);const d=e.XpG(2);return c.Njj(d.onYearSelected(o))}),e.k0s()()}if(2&p){const m=e.sdS(7),i=e.XpG(2);e.R7$(3),e.Y8G("matDatepicker",m)("min",i.first)("max",i.last),e.R50("ngModel",i.selectedValue),e.R7$(2),e.Y8G("for",m),e.R7$(),e.Y8G("startAt",i.selectedValue)}}function e1(p,_){if(1&p){const m=e.RV6();e.j41(0,"div",14)(1,"div",15)(2,"mat-form-field",16)(3,"mat-label"),e.EFF(4,"Scroll Range"),e.k0s(),e.j41(5,"mat-select",17),e.mxI("ngModelChange",function(o){c.eBV(m);const d=e.XpG();return e.DH7(d.selScrollRange,o)||(d.selScrollRange=o),c.Njj(o)}),e.bIt("selectionChange",function(o){c.eBV(m);const d=e.XpG();return c.Njj(d.onRangeChanged(o))}),e.DNE(6,q,3,4,"mat-option",18),e.k0s()()(),e.j41(7,"div",19),e.DNE(8,a1,8,6,"mat-form-field",20)(9,Q,8,6,"mat-form-field",21),e.k0s()()}if(2&p){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(5),e.R50("ngModel",m.selScrollRange),e.R7$(),e.Y8G("ngForOf",m.scrollRanges),e.R7$(2),e.Y8G("ngIf",m.selScrollRange===m.scrollRanges[0]),e.R7$(),e.Y8G("ngIf",m.selScrollRange===m.scrollRanges[1])}}let J=(()=>{var p;class _{constructor(i){this.logger=i,this.scrollRanges=f.rs,this.selScrollRange=this.scrollRanges[0],this.today=new Date(Date.now()),this.first=new Date(2018,0,1,0,0,0),this.last=new Date(this.today.getFullYear(),this.today.getMonth(),this.today.getDate(),0,0,0),this.disablePrev=!1,this.disableNext=!0,this.animationDirection="",this.selectedValue=this.last,this.stepChanged=new e.bkB}onRangeChanged(i){this.selScrollRange=i.value,this.onStepChange("LAST")}onMonthSelected(i){this.selectedValue=i,this.onStepChange("SELECTED"),this.monthlyDatepicker.close()}onYearSelected(i){this.selectedValue=i,this.onStepChange("SELECTED"),this.yearlyDatepicker.close()}onStepChange(i){switch(this.logger.info(i),i){case"FIRST":this.animationDirection="backward",this.selectedValue!==this.first&&(this.selectedValue=this.first,this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange}));break;case"PREVIOUS":this.selectedValue=this.selScrollRange===f.rs[1]?new Date(this.selectedValue.getFullYear()-1,0,1,0,0,0):new Date(this.selectedValue.getFullYear(),this.selectedValue.getMonth()-1,1,0,0,0),this.animationDirection="backward",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;case"NEXT":this.selectedValue=this.selScrollRange===f.rs[1]?new Date(this.selectedValue.getFullYear()+1,0,1,0,0,0):new Date(this.selectedValue.getFullYear(),this.selectedValue.getMonth()+1,1,0,0,0),this.animationDirection="forward",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;case"LAST":this.animationDirection="forward",this.selectedValue=this.last,this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;default:this.animationDirection="",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange})}this.disablePrev=this.selScrollRange===f.rs[1]?this.selectedValue.getFullYear()<=this.first.getFullYear():this.selectedValue.getFullYear()<=this.first.getFullYear()&&this.selectedValue.getMonth()<=this.first.getMonth(),this.disableNext=this.selScrollRange===f.rs[1]?this.selectedValue.getFullYear()>=this.last.getFullYear():this.selectedValue.getFullYear()>=this.last.getFullYear()&&this.selectedValue.getMonth()>=this.last.getMonth(),this.logger.info(this.disablePrev),this.logger.info(this.disableNext),setTimeout(()=>{this.animationDirection=""},800)}onChartMouseUp(i){"monthlyDate"===i.srcElement.name?this.monthlyDatepicker.open():"yearlyDate"===i.srcElement.name&&this.yearlyDatepicker.open()}static#a=p=()=>(this.\u0275fac=function(o){return new(o||_)(e.rXU(l.gP))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-horizontal-scroller"]],viewQuery:function(o,d){if(1&o&&(e.GBs(z,5),e.GBs(g,5)),2&o){let E;e.mGM(E=e.lsd())&&(d.monthlyDatepicker=E.first),e.mGM(E=e.lsd())&&(d.yearlyDatepicker=E.first)}},hostBindings:function(o,d){1&o&&e.bIt("click",function(K){return d.onChartMouseUp(K)})},outputs:{stepChanged:"stepChanged"},standalone:!1,decls:20,vars:5,consts:[["controlsPanel",""],["monthlyDt","ngModel"],["monthlyDatepicker",""],["yearlyDt","ngModel"],["yearlyDatepicker",""],["fxLayout","row","fxLayoutAlign","space-between stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","20"],["mat-icon-button","","color","primary","type","button",1,"pr-4",3,"click"],["mat-icon-button","","color","primary","type","button",3,"click","disabled"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","20"],["mat-icon-button","","color","primary","type","button",1,"pr-4",3,"click","disabled"],["mat-icon-button","","color","primary","type","button",3,"click"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["fxLayout","row","fxLayoutAlign","center center","fxFlex","58"],["fxFlex","50","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","end center",1,"font-bold-700"],["subscriptSizing","dynamic","fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayoutAlign","center end"],["name","selScrlRange",1,"font-bold-700",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayout","row","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","start center"],["monthlyDate","","fxLayoutAlign","center center",4,"ngIf"],["yearlyDate","","fxLayoutAlign","center center",4,"ngIf"],[3,"value"],["monthlyDate","","fxLayoutAlign","center center"],["matInput","","name","monthlyDate","readonly","",3,"ngModelChange","matDatepicker","min","max","ngModel"],["matSuffix","",3,"for"],["startView","year",3,"monthSelected","dateSelected","startAt"],["yearlyDate","","fxLayoutAlign","center center"],["matInput","","name","yearlyDate","readonly","",3,"ngModelChange","matDatepicker","min","max","ngModel"],["startView","multi-year",3,"yearSelected","monthSelected","dateSelected","startAt"]],template:function(o,d){if(1&o){const E=e.RV6();e.j41(0,"div",5)(1,"div",6)(2,"button",7),e.bIt("click",function(){return c.eBV(E),c.Njj(d.onStepChange("FIRST"))}),e.j41(3,"mat-icon"),e.EFF(4,"skip_previous"),e.k0s()(),e.j41(5,"button",8),e.bIt("click",function(){return c.eBV(E),c.Njj(d.onStepChange("PREVIOUS"))}),e.j41(6,"mat-icon"),e.EFF(7,"navigate_before"),e.k0s()()(),e.DNE(8,W,1,3,"ng-container",9)(9,Y,1,3,"ng-container",9)(10,Z,1,3,"ng-container",9),e.j41(11,"div",10)(12,"button",11),e.bIt("click",function(){return c.eBV(E),c.Njj(d.onStepChange("NEXT"))}),e.j41(13,"mat-icon"),e.EFF(14,"navigate_next"),e.k0s()(),e.j41(15,"button",12),e.bIt("click",function(){return c.eBV(E),c.Njj(d.onStepChange("LAST"))}),e.j41(16,"mat-icon"),e.EFF(17,"skip_next"),e.k0s()()()(),e.DNE(18,e1,10,5,"ng-template",null,0,e.C5r)}2&o&&(e.R7$(5),e.Y8G("disabled",d.disablePrev),e.R7$(3),e.Y8G("ngIf","forward"===d.animationDirection),e.R7$(),e.Y8G("ngIf","backward"===d.animationDirection),e.R7$(),e.Y8G("ngIf",""===d.animationDirection),e.R7$(2),e.Y8G("disabled",d.disableNext))},dependencies:[B.Sq,B.bT,B.T3,b.me,b.BC,b.vS,P.iY,w.Vh,w.bZ,w.bU,S.An,a.fg,N.rl,N.nJ,N.yw,k.DJ,k.sA,k.UI,R.VO,V.wT,C,x,v.z,n.V,B.PV],encapsulation:2,data:{animation:[T.k]}}))}return p(),_})()},5085(c1,j,t){t.d(j,{T:()=>K});var e=t(6695),T=t(2042),f=t(1676),c=t(6183),l=t(4416),B=t(1771),b=t(1413),P=t(6977),w=t(9647),S=t(2615),a=t(3664),N=t(2571),k=t(9640),R=t(2200),V=t(2929),O=t(9417),A=t(8834),G=t(3746),H=t(9588),U=t(2920),C=t(6038),x=t(3029),v=t(497);const n=()=>["all"],z=()=>["no_transaction"],g=s=>({"display-none":s});function F(s,L){if(1&s&&(a.j41(0,"mat-option",30),a.EFF(1),a.k0s()),2&s){const M=L.$implicit,r=a.XpG();a.Y8G("value",M),a.R7$(),a.JRh(r.getLabel(M))}}function I(s,L){1&s&&(a.j41(0,"th",31),a.EFF(1,"Date"),a.k0s())}function y(s,L){if(1&s&&(a.j41(0,"td",32),a.EFF(1),a.nI1(2,"date"),a.k0s()),2&s){const M=L.$implicit,r=a.XpG();a.R7$(),a.JRh(a.i5U(2,1,null==M?null:M.date,r.dataRange===r.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy"))}}function W(s,L){1&s&&(a.j41(0,"th",33),a.EFF(1,"Amount Paid (Sats)"),a.k0s())}function Y(s,L){if(1&s&&(a.j41(0,"td",32)(1,"span",34),a.EFF(2),a.nI1(3,"number"),a.k0s()()),2&s){const M=L.$implicit;a.R7$(2),a.JRh(a.i5U(3,1,null==M?null:M.amount_paid,"1.0-2"))}}function Z(s,L){1&s&&(a.j41(0,"th",33),a.EFF(1,"# Payments"),a.k0s())}function q(s,L){if(1&s&&(a.j41(0,"td",32)(1,"span",34),a.EFF(2),a.nI1(3,"number"),a.k0s()()),2&s){const M=L.$implicit;a.R7$(2),a.JRh(a.bMT(3,1,null==M?null:M.num_payments))}}function a1(s,L){1&s&&(a.j41(0,"th",33),a.EFF(1,"Amount Received (Sats)"),a.k0s())}function Q(s,L){if(1&s&&(a.j41(0,"td",32)(1,"span",34),a.EFF(2),a.nI1(3,"number"),a.k0s()()),2&s){const M=L.$implicit;a.R7$(2),a.JRh(a.i5U(3,1,null==M?null:M.amount_received,"1.0-2"))}}function e1(s,L){1&s&&(a.j41(0,"th",33),a.EFF(1,"# Invoices"),a.k0s())}function J(s,L){if(1&s&&(a.j41(0,"td",32)(1,"span",34),a.EFF(2),a.nI1(3,"number"),a.k0s()()),2&s){const M=L.$implicit;a.R7$(2),a.JRh(a.bMT(3,1,null==M?null:M.num_invoices))}}function p(s,L){if(1&s){const M=a.RV6();a.j41(0,"th",35)(1,"div",36)(2,"mat-select",37),a.nrm(3,"mat-select-trigger"),a.j41(4,"mat-option",38),a.bIt("click",function(){S.eBV(M);const h=a.XpG();return S.Njj(h.onDownloadCSV())}),a.EFF(5,"Download CSV"),a.k0s()()()()}}function _(s,L){if(1&s){const M=a.RV6();a.j41(0,"td",39)(1,"button",40),a.bIt("click",function(){const h=S.eBV(M).$implicit,u=a.XpG();return S.Njj(u.onTransactionClick(h))}),a.EFF(2,"View Info"),a.k0s()()}}function m(s,L){1&s&&(a.j41(0,"p"),a.EFF(1,"No transaction available."),a.k0s())}function i(s,L){if(1&s&&(a.j41(0,"td",41),a.DNE(1,m,2,0,"p",42),a.k0s()),2&s){const M=a.XpG();a.R7$(),a.Y8G("ngIf",!(null!=M.transactions&&M.transactions.data)||(null==M.transactions||null==M.transactions.data?null:M.transactions.data.length)<1)}}function o(s,L){if(1&s&&a.nrm(0,"tr",43),2&s){const M=a.XpG();a.Y8G("ngClass",a.eq3(1,g,(null==M.transactions?null:M.transactions.data)&&(null==M.transactions||null==M.transactions.data?null:M.transactions.data.length)>0))}}function d(s,L){1&s&&a.nrm(0,"tr",44)}function E(s,L){1&s&&a.nrm(0,"tr",45)}let K=(()=>{var s;class L{constructor(r,h,u,D){this.commonService=r,this.store=h,this.datePipe=u,this.camelCaseWithReplace=D,this.dataRange=l.rs[0],this.dataList=[],this.selFilter="",this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.tableSetting={tableId:"transactions",recordsPerPage:l.md,sortBy:"date",sortOrder:l.oi.DESCENDING},this.nodePageDefs=l._1,this.selFilterBy="all",this.timezoneOffset=60*new Date(Date.now()).getTimezoneOffset(),this.scrollRanges=l.rs,this.transactions=new f.I6([]),this.pageSize=l.md,this.pageSizeOptions=l.xp,this.screenSize="",this.screenSizeEnum=l.f7,this.unSubs=[new b.B,new b.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(r){r.dataList&&!r.dataList.firstChange&&(this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.loadTransactionsTable(this.dataList)),r.selFilter&&!r.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(w._c).pipe((0,P.Q)(this.unSubs[0])).subscribe(r=>{this.nodePageDefs="CLN"===r.lnImplementation?l.Jd:"ECL"===r.lnImplementation?l.WW:l._1}),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:l.md,this.dataList&&this.dataList.length>0&&this.loadTransactionsTable(this.dataList)}ngAfterViewInit(){setTimeout(()=>{this.setTableWidgets()},0)}onTransactionClick(r){const h=[[{key:"date",value:this.datePipe.transform(r.date,this.dataRange===l.rs[1]?"MMM/yyyy":"dd/MMM/yyyy"),title:"Date",width:100,type:l.UN.DATE}],[{key:"amount_paid",value:Math.round(r.amount_paid),title:"Amount Paid (Sats)",width:50,type:l.UN.NUMBER},{key:"num_payments",value:r.num_payments,title:"# Payments",width:50,type:l.UN.NUMBER}],[{key:"amount_received",value:Math.round(r.amount_received),title:"Amount Received (Sats)",width:50,type:l.UN.NUMBER},{key:"num_invoices",value:r.num_invoices,title:"# Invoices",width:50,type:l.UN.NUMBER}]];this.store.dispatch((0,B.xO)({payload:{data:{type:l.A$.INFORMATION,alertTitle:"Transaction Summary",message:h}}}))}applyFilter(){this.transactions&&(this.transactions.filter=this.selFilter.trim().toLowerCase())}getLabel(r){const h=this.nodePageDefs.reports[this.tableSetting.tableId].allowedColumns.find(u=>u.column===r);return h?h.label?h.label:this.camelCaseWithReplace.transform(h.column,"_"):this.commonService.titleCase(r)}setFilterPredicate(){this.transactions.filterPredicate=(r,h)=>{let u="";switch(this.selFilterBy){case"all":u=(r.date?(this.datePipe.transform(r.date,"dd/MMM")+"/"+r.date.getFullYear()).toLowerCase():"")+JSON.stringify(r).toLowerCase();break;case"date":u=this.datePipe.transform(new Date(r[this.selFilterBy]||0),this.dataRange===this.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy")?.toLowerCase()||"";break;default:u=typeof r[this.selFilterBy]>"u"?"":"string"==typeof r[this.selFilterBy]?r[this.selFilterBy].toLowerCase():"boolean"==typeof r[this.selFilterBy]?r[this.selFilterBy]?"yes":"no":r[this.selFilterBy].toString()}return u.includes(h)}}loadTransactionsTable(r){this.transactions=new f.I6(r?[...r]:[]),this.setTableWidgets()}setTableWidgets(){this.transactions&&this.transactions.data&&this.transactions.data.length>0&&(this.transactions.sort=this.sort,this.transactions.sortingDataAccessor=(r,h)=>r[h]&&isNaN(r[h])?r[h].toLocaleLowerCase():r[h]?+r[h]:null,this.transactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter())}onDownloadCSV(){this.transactions.data&&this.transactions.data.length>0&&this.commonService.downloadFile(this.dataList,"Transactions-report-"+this.dataRange.toLowerCase())}ngOnDestroy(){this.unSubs.forEach(r=>{r.next(),r.complete()})}static#a=s=()=>(this.\u0275fac=function(h){return new(h||L)(a.rXU(N.h),a.rXU(k.il),a.rXU(R.vh),a.rXU(V.VD))},this.\u0275cmp=a.VBU({type:L,selectors:[["rtl-transactions-report-table"]],viewQuery:function(h,u){if(1&h&&(a.GBs(T.B4,5),a.GBs(e.iy,5)),2&h){let D;a.mGM(D=a.lsd())&&(u.sort=D.first),a.mGM(D=a.lsd())&&(u.paginator=D.first)}},inputs:{dataRange:"dataRange",dataList:"dataList",selFilter:"selFilter",displayedColumns:"displayedColumns",tableSetting:"tableSetting"},standalone:!1,features:[a.Jv_([{provide:c.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:e.xX,useValue:(0,l.on)("Transactions")}]),a.OA$],decls:43,vars:14,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","amount_paid"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","num_payments"],["matColumnDef","amount_received"],["matColumnDef","num_invoices"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(h,u){if(1&h){const D=a.RV6();a.j41(0,"div",1)(1,"div",2)(2,"div",3),a.nrm(3,"div",4),a.j41(4,"div",5)(5,"mat-form-field",6)(6,"mat-label"),a.EFF(7,"Filter By"),a.k0s(),a.j41(8,"mat-select",7),a.mxI("ngModelChange",function($){return S.eBV(D),a.DH7(u.selFilterBy,$)||(u.selFilterBy=$),S.Njj($)}),a.bIt("selectionChange",function(){return S.eBV(D),u.selFilter="",S.Njj(u.applyFilter())}),a.j41(9,"perfect-scrollbar"),a.DNE(10,F,2,2,"mat-option",8),a.k0s()()(),a.j41(11,"mat-form-field",6)(12,"mat-label"),a.EFF(13,"Filter"),a.k0s(),a.j41(14,"input",9),a.mxI("ngModelChange",function($){return S.eBV(D),a.DH7(u.selFilter,$)||(u.selFilter=$),S.Njj($)}),a.bIt("input",function(){return S.eBV(D),S.Njj(u.applyFilter())})("keyup",function(){return S.eBV(D),S.Njj(u.applyFilter())}),a.k0s()()()(),a.j41(15,"div",10)(16,"div",11)(17,"table",12,0),a.qex(19,13),a.DNE(20,I,2,0,"th",14)(21,y,3,4,"td",15),a.bVm(),a.qex(22,16),a.DNE(23,W,2,0,"th",17)(24,Y,4,4,"td",15),a.bVm(),a.qex(25,18),a.DNE(26,Z,2,0,"th",17)(27,q,4,3,"td",15),a.bVm(),a.qex(28,19),a.DNE(29,a1,2,0,"th",17)(30,Q,4,4,"td",15),a.bVm(),a.qex(31,20),a.DNE(32,e1,2,0,"th",17)(33,J,4,3,"td",15),a.bVm(),a.qex(34,21),a.DNE(35,p,6,0,"th",22)(36,_,3,0,"td",23),a.bVm(),a.qex(37,24),a.DNE(38,i,2,1,"td",25),a.bVm(),a.DNE(39,o,1,3,"tr",26)(40,d,1,0,"tr",27)(41,E,1,0,"tr",28),a.k0s(),a.nrm(42,"mat-paginator",29),a.k0s()()()()}2&h&&(a.R7$(8),a.R50("ngModel",u.selFilterBy),a.R7$(2),a.Y8G("ngForOf",a.lJ4(12,n).concat(u.displayedColumns.slice(0,-1))),a.R7$(4),a.R50("ngModel",u.selFilter),a.R7$(3),a.Y8G("matSortActive",u.tableSetting.sortBy)("matSortDirection",u.tableSetting.sortOrder)("dataSource",u.transactions),a.R7$(22),a.Y8G("matFooterRowDef",a.lJ4(13,z)),a.R7$(),a.Y8G("matHeaderRowDef",u.displayedColumns),a.R7$(),a.Y8G("matRowDefColumns",u.displayedColumns),a.R7$(),a.Y8G("pageSize",u.pageSize)("pageSizeOptions",u.pageSizeOptions)("showFirstLastButtons",u.screenSize!==u.screenSizeEnum.XS))},dependencies:[R.YU,R.Sq,R.bT,O.me,O.BC,O.vS,A.$z,G.fg,H.rl,H.nJ,U.DJ,U.sA,U.UI,C.PW,c.VO,c.$2,x.wT,T.B4,T.aE,f.Zl,f.tL,f.ji,f.cC,f.YV,f.iL,f.Zq,f.xW,f.KS,f.$R,f.Qo,f.YZ,f.NB,f.iF,e.iy,v.ZF,v.Ld,R.QX,R.vh],encapsulation:2}))}return s(),L})()},614(c1,j,t){t.d(j,{Qpm:()=>u2,wB1:()=>G1});var G1={prefix:"far",iconName:"face-frown",icon:[512,512,[9785,"frown"],"f119","M464 256a208 208 0 1 0 -416 0 208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0 256 256 0 1 1 -512 0zM334.7 384.6C319.7 369 293.6 352 256 352s-63.7 17-78.7 32.6c-9.2 9.6-24.4 9.9-33.9 .7s-9.9-24.4-.7-33.9c22.1-23 60-47.4 113.3-47.4s91.2 24.4 113.3 47.4c9.2 9.6 8.9 24.8-.7 33.9s-24.8 8.9-33.9-.7zM144 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},u2={prefix:"far",iconName:"face-smile",icon:[512,512,[128578,"smile"],"f118","M464 256a208 208 0 1 0 -416 0 208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0 256 256 0 1 1 -512 0zm177.3 63.4C192.3 335 218.4 352 256 352s63.7-17 78.7-32.6c9.2-9.6 24.4-9.9 33.9-.7s9.9 24.4 .7 33.9c-22.1 23-60 47.4-113.3 47.4s-91.2-24.4-113.3-47.4c-9.2-9.6-8.9-24.8 .7-33.9s24.8-8.9 33.9 .7zM144 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]}}}]); \ No newline at end of file diff --git a/frontend/193.b1206fbf24aa1327.js b/frontend/193.b1206fbf24aa1327.js deleted file mode 100644 index 795a130a..00000000 --- a/frontend/193.b1206fbf24aa1327.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[193],{5837:(J,G,r)=>{r.d(G,{f:()=>P});var a=r(1413),L=r(6977),f=r(4416),t=r(9647),e=r(4438),F=r(2571),A=r(9640),E=r(177),S=r(2920),c=r(9213),I=r(4823),R=r(6850);function y(z,V){if(1&z&&(e.j41(0,"mat-icon",10),e.EFF(1,"info_outline"),e.k0s()),2&z){const m=e.XpG().$implicit;e.Y8G("matTooltip",m.tooltip)}}function x(z,V){if(1&z&&(e.j41(0,"span",11),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&z){const m=e.XpG().$implicit;e.R7$(),e.SpI(" ",e.i5U(2,1,m.dataValue,"1.0-0")," ")}}function b(z,V){if(1&z&&(e.j41(0,"span",11),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&z){const m=e.XpG().$implicit,s=e.XpG(2);e.R7$(),e.SpI(" ",e.i5U(2,1,m[s.currencyUnitEnum.BTC],s.currencyUnitFormats.BTC)," ")}}function D(z,V){if(1&z&&(e.j41(0,"span",11),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&z){const m=e.XpG().$implicit,s=e.XpG(2);e.R7$(),e.SpI(" ",e.i5U(2,1,m[s.currencyUnitEnum.OTHER],s.currencyUnitFormats.OTHER)," ")}}function U(z,V){if(1&z&&(e.j41(0,"div",6)(1,"div",7),e.EFF(2),e.DNE(3,y,2,1,"mat-icon",8),e.k0s(),e.DNE(4,x,3,4,"span",9)(5,b,3,4,"span",9)(6,D,3,4,"span",9),e.k0s()),2&z){const m=V.$implicit,s=e.XpG().$implicit,_=e.XpG();e.R7$(2),e.SpI(" ",m.title," "),e.R7$(),e.Y8G("ngIf",m.tooltip),e.R7$(),e.Y8G("ngIf",s===_.currencyUnitEnum.SATS),e.R7$(),e.Y8G("ngIf",s===_.currencyUnitEnum.BTC),e.R7$(),e.Y8G("ngIf",_.fiatConversion&&s!==_.currencyUnitEnum.SATS&&s!==_.currencyUnitEnum.BTC&&""===_.conversionErrorMsg)}}function k(z,V){if(1&z&&(e.j41(0,"div",12)(1,"div",13),e.EFF(2),e.k0s()()),2&z){const m=e.XpG(2);e.R7$(2),e.JRh(m.conversionErrorMsg)}}function B(z,V){if(1&z&&(e.j41(0,"mat-tab",2)(1,"div",3),e.DNE(2,U,7,5,"div",4),e.k0s(),e.DNE(3,k,3,1,"div",5),e.k0s()),2&z){const m=V.$implicit,s=e.XpG();e.FS9("label",m),e.R7$(2),e.Y8G("ngForOf",s.values),e.R7$(),e.Y8G("ngIf",s.fiatConversion&&m!==s.currencyUnitEnum.SATS&&m!==s.currencyUnitEnum.BTC&&""!==s.conversionErrorMsg)}}let P=(()=>{class z{constructor(m,s){this.commonService=m,this.store=s,this.values=[],this.currencyUnitEnum=f.BQ,this.currencyUnitFormats=f.k,this.currencyUnits=[],this.fiatConversion=!1,this.conversionErrorMsg="",this.unSubs=[new a.B,new a.B,new a.B,new a.B,new a.B]}ngOnChanges(){this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues()}ngOnInit(){this.store.select(t._c).pipe((0,L.Q)(this.unSubs[0])).subscribe(m=>{this.fiatConversion=m.settings.fiatConversion,this.currencyUnits=m.settings.currencyUnits,this.fiatConversion||this.currencyUnits.splice(2,1),this.currencyUnits.length>1&&this.values[0]&&this.values[0].dataValue>=0&&this.getCurrencyValues()})}getCurrencyValues(){this.commonService.convertCurrency(this.values[0].dataValue,f.BQ.SATS,f.BQ.BTC,"",!0).pipe((0,L.Q)(this.unSubs[1])).subscribe(m=>{this.values[0][f.BQ.BTC]=m.BTC}),this.commonService.convertCurrency(this.values[0].dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,L.Q)(this.unSubs[2])).subscribe({next:m=>{if(this.values[0][f.BQ.OTHER]=m.OTHER,m.unit&&""!==m.unit)for(let s=1;s{this.values[s][f.BQ.BTC]=C.BTC}),this.commonService.convertCurrency(_.dataValue,f.BQ.SATS,f.BQ.OTHER,this.currencyUnits[2],this.fiatConversion).pipe((0,L.Q)(this.unSubs[4])).subscribe({next:C=>{this.values[s][f.BQ.OTHER]=C.OTHER},error:C=>{this.conversionErrorMsg="Conversion Error: "+C}})}},error:m=>{this.conversionErrorMsg="Conversion Error: "+m}})}ngOnDestroy(){this.unSubs.forEach(m=>{m.next(null),m.complete()})}static#c=this.\u0275fac=function(s){return new(s||z)(e.rXU(F.h),e.rXU(A.il))};static#a=this.\u0275cmp=e.VBU({type:z,selectors:[["rtl-currency-unit-converter"]],inputs:{values:"values"},features:[e.OA$],decls:2,vars:1,consts:[["mat-stretch-tabs","false","mat-align-tabs","start"],[3,"label",4,"ngFor","ngForOf"],[3,"label"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","center start","class","cc-data-block",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","100","class","p-1 error-border mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center start",1,"cc-data-block"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"cc-data-title"],["matTooltipPosition","below","class","info-icon",3,"matTooltip",4,"ngIf"],["class","cc-data-value",4,"ngIf"],["matTooltipPosition","below",1,"info-icon",3,"matTooltip"],[1,"cc-data-value"],["fxLayout","row","fxFlex","100",1,"p-1","error-border","mt-1"],[1,"cc-data-block"]],template:function(s,_){1&s&&(e.j41(0,"mat-tab-group",0),e.DNE(1,B,4,3,"mat-tab",1),e.k0s()),2&s&&(e.R7$(),e.Y8G("ngForOf",_.currencyUnits))},dependencies:[E.Sq,E.bT,S.DJ,S.sA,S.UI,c.An,I.oV,R.mq,R.T8,E.QX]})}return z})()},396:(J,G,r)=>{r.d(G,{f:()=>m});var a=r(5351),L=r(5383),f=r(4416),t=r(4438),e=r(8570),F=r(2571),A=r(5416),E=r(177),S=r(60),c=r(2920),I=r(6038),R=r(8834),y=r(5596),x=r(1997),b=r(8288),D=r(9157),U=r(9587);const k=s=>({"display-none":s});function B(s,_){if(1&s&&(t.j41(0,"div",20),t.nrm(1,"qr-code",21),t.k0s()),2&s){const C=t.XpG();t.Y8G("ngClass",t.eq3(4,k,C.screenSize===C.screenSizeEnum.XS||C.screenSize===C.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",C.address)("size",C.qrWidth)("errorCorrectionLevel","L")}}function P(s,_){if(1&s&&(t.j41(0,"div",22),t.nrm(1,"qr-code",21),t.k0s()),2&s){const C=t.XpG();t.Y8G("ngClass",t.eq3(4,k,C.screenSize!==C.screenSizeEnum.XS&&C.screenSize!==C.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",C.address)("size",C.qrWidth)("errorCorrectionLevel","L")}}function z(s,_){if(1&s&&(t.j41(0,"div",13)(1,"div",14)(2,"h4",15),t.EFF(3,"Address Type"),t.k0s(),t.j41(4,"span",23),t.EFF(5),t.k0s()()()),2&s){const C=t.XpG();t.R7$(5),t.JRh(C.addressType)}}function V(s,_){1&s&&t.nrm(0,"mat-divider",17)}let m=(()=>{class s{constructor(C,T,H,w,O){this.dialogRef=C,this.data=T,this.logger=H,this.commonService=w,this.snackBar=O,this.faReceipt=L.Mf0,this.address="",this.addressType="",this.qrWidth=230,this.screenSize="",this.screenSizeEnum=f.f7}ngOnInit(){this.address=this.data.address,this.addressType=this.data.addressType,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyAddress(C){this.snackBar.open("Generated address copied."),this.logger.info("Copied Text: "+C)}static#c=this.\u0275fac=function(T){return new(T||s)(t.rXU(a.CP),t.rXU(a.Vh),t.rXU(e.gP),t.rXU(F.h),t.rXU(A.UG))};static#a=this.\u0275cmp=t.VBU({type:s,selectors:[["rtl-on-chain-generated-address"]],decls:25,vars:8,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35","fxLayoutAlign","center start","class","modal-qr-code-container padding-gap-large",3,"ngClass",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","2","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start","class","modal-qr-code-container padding-gap-large",3,"ngClass",4,"ngIf"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"overflow-wrap","foreground-secondary-text"],[1,"w-100","my-1"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-1"],["autoFocus","","mat-button","","color","primary","tabindex","1","type","submit","rtlClipboard","",3,"copied","payload"],["fxFlex","35","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[3,"value","size","errorCorrectionLevel"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[1,"foreground-secondary-text"]],template:function(T,H){1&T&&(t.j41(0,"div",0),t.DNE(1,B,2,6,"div",1),t.j41(2,"div",2)(3,"mat-card-header",3)(4,"div",4),t.nrm(5,"fa-icon",5),t.j41(6,"span",6),t.EFF(7),t.k0s()(),t.j41(8,"button",7),t.bIt("click",function(){return H.onClose()}),t.EFF(9,"X"),t.k0s()(),t.j41(10,"mat-card-content",8)(11,"div",9),t.DNE(12,P,2,6,"div",10)(13,z,6,1,"div",11)(14,V,1,0,"mat-divider",12),t.j41(15,"div",13)(16,"div",14)(17,"h4",15),t.EFF(18,"Address"),t.k0s(),t.j41(19,"span",16),t.EFF(20),t.k0s()()(),t.nrm(21,"mat-divider",17),t.j41(22,"div",18)(23,"button",19),t.bIt("copied",function(O){return H.onCopyAddress(O)}),t.EFF(24,"Copy Address"),t.k0s()()()()()()),2&T&&(t.R7$(),t.Y8G("ngIf",H.address),t.R7$(4),t.Y8G("icon",H.faReceipt),t.R7$(2),t.JRh(H.screenSize===H.screenSizeEnum.XS?"Address":"Generated Address"),t.R7$(5),t.Y8G("ngIf",H.address),t.R7$(),t.Y8G("ngIf",""!==H.addressType),t.R7$(),t.Y8G("ngIf",""!==H.addressType),t.R7$(6),t.JRh(H.address),t.R7$(3),t.Y8G("payload",H.address))},dependencies:[E.YU,E.bT,S.aY,c.DJ,c.sA,c.UI,I.PW,R.$z,y.m2,y.MM,x.q,b.Um,D.U,U.N]})}return s})()},4655:(J,G,r)=>{r.d(G,{m:()=>q});var a=r(4438),L=r(6949),f=r(4416),t=r(8570),e=r(177),F=r(9417),A=r(2920),E=r(8834),S=r(5084),c=r(9213),I=r(9631),R=r(6467),y=r(2798),x=r(6600);let b=(()=>{class o extends x.xW{constructor(i){super(i)}format(i,d){return"MMM YYYY"===d?f.KR[i.getMonth()].name+", "+i.getFullYear():"YYYY"===d?i.getFullYear().toString():i.getDate()+"/"+f.KR[i.getMonth()].name+"/"+i.getFullYear()}static#c=this.\u0275fac=function(d){return new(d||o)(a.KVO(x.Ju,8))};static#a=this.\u0275prov=a.jDH({token:o,factory:o.\u0275fac})}return o})();const D={parse:{dateInput:"LL"},display:{dateInput:"MMM YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}},U={parse:{dateInput:"LL"},display:{dateInput:"YYYY",monthYearLabel:"YYYY",dateA11yLabel:"LL",monthYearA11yLabel:"YYYY"}};let k=(()=>{class o{static#c=this.\u0275fac=function(d){return new(d||o)};static#a=this.\u0275dir=a.FsC({type:o,selectors:[["","monthlyDate",""]],features:[a.Jv_([{provide:x.MJ,useClass:b},{provide:x.de,useValue:D}])]})}return o})(),B=(()=>{class o{static#c=this.\u0275fac=function(d){return new(d||o)};static#a=this.\u0275dir=a.FsC({type:o,selectors:[["","yearlyDate",""]],features:[a.Jv_([{provide:x.MJ,useClass:b},{provide:x.de,useValue:U}])]})}return o})();var P=r(92),z=r(6114);const V=["monthlyDatepicker"],m=["yearlyDatepicker"],s=()=>({animationDirection:"forward"}),_=()=>({animationDirection:"backward"}),C=()=>({animationDirection:""});function T(o,N){if(1&o&&a.eu8(0,13),2&o){a.XpG();const i=a.sdS(19);a.Y8G("ngTemplateOutlet",i)("ngTemplateOutletContext",a.lJ4(2,s))}}function H(o,N){if(1&o&&a.eu8(0,13),2&o){a.XpG();const i=a.sdS(19);a.Y8G("ngTemplateOutlet",i)("ngTemplateOutletContext",a.lJ4(2,_))}}function w(o,N){if(1&o&&a.eu8(0,13),2&o){a.XpG();const i=a.sdS(19);a.Y8G("ngTemplateOutlet",i)("ngTemplateOutletContext",a.lJ4(2,C))}}function O(o,N){if(1&o&&(a.j41(0,"mat-option",21),a.EFF(1),a.nI1(2,"titlecase"),a.k0s()),2&o){const i=N.$implicit;a.Y8G("value",i),a.R7$(),a.SpI(" ",a.bMT(2,2,i)," ")}}function $(o,N){if(1&o){const i=a.RV6();a.j41(0,"mat-form-field",22)(1,"input",23,1),a.mxI("ngModelChange",function(h){a.eBV(i);const p=a.XpG(2);return a.DH7(p.selectedValue,h)||(p.selectedValue=h),a.Njj(h)}),a.k0s(),a.nrm(3,"mat-datepicker-toggle",24),a.j41(4,"mat-datepicker",25,2),a.bIt("monthSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onMonthSelected(h))})("dateSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onMonthSelected(h))}),a.k0s()()}if(2&o){const i=a.sdS(5),d=a.XpG(2);a.R7$(),a.Y8G("matDatepicker",i)("min",d.first)("max",d.last),a.R50("ngModel",d.selectedValue),a.R7$(2),a.Y8G("for",i),a.R7$(),a.Y8G("startAt",d.selectedValue)}}function W(o,N){if(1&o){const i=a.RV6();a.j41(0,"mat-form-field",26)(1,"input",27,3),a.mxI("ngModelChange",function(h){a.eBV(i);const p=a.XpG(2);return a.DH7(p.selectedValue,h)||(p.selectedValue=h),a.Njj(h)}),a.k0s(),a.nrm(3,"mat-datepicker-toggle",24),a.j41(4,"mat-datepicker",28,4),a.bIt("yearSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onYearSelected(h))})("monthSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onYearSelected(h))})("dateSelected",function(h){a.eBV(i);const p=a.XpG(2);return a.Njj(p.onYearSelected(h))}),a.k0s()()}if(2&o){const i=a.sdS(5),d=a.XpG(2);a.R7$(),a.Y8G("matDatepicker",i)("min",d.first)("max",d.last),a.R50("ngModel",d.selectedValue),a.R7$(2),a.Y8G("for",i),a.R7$(),a.Y8G("startAt",d.selectedValue)}}function X(o,N){if(1&o){const i=a.RV6();a.j41(0,"div",14)(1,"div",15)(2,"mat-select",16),a.mxI("ngModelChange",function(h){a.eBV(i);const p=a.XpG();return a.DH7(p.selScrollRange,h)||(p.selScrollRange=h),a.Njj(h)}),a.bIt("selectionChange",function(h){a.eBV(i);const p=a.XpG();return a.Njj(p.onRangeChanged(h))}),a.DNE(3,O,3,4,"mat-option",17),a.k0s()(),a.j41(4,"div",18),a.DNE(5,$,6,6,"mat-form-field",19)(6,W,6,6,"mat-form-field",20),a.k0s()()}if(2&o){const i=a.XpG();a.Y8G("@sliderAnimation",i.animationDirection),a.R7$(2),a.R50("ngModel",i.selScrollRange),a.R7$(),a.Y8G("ngForOf",i.scrollRanges),a.R7$(2),a.Y8G("ngIf",i.selScrollRange===i.scrollRanges[0]),a.R7$(),a.Y8G("ngIf",i.selScrollRange===i.scrollRanges[1])}}let q=(()=>{class o{constructor(i){this.logger=i,this.scrollRanges=f.rs,this.selScrollRange=this.scrollRanges[0],this.today=new Date(Date.now()),this.first=new Date(2018,0,1,0,0,0),this.last=new Date(this.today.getFullYear(),this.today.getMonth(),this.today.getDate(),0,0,0),this.disablePrev=!1,this.disableNext=!0,this.animationDirection="",this.selectedValue=this.last,this.stepChanged=new a.bkB}onRangeChanged(i){this.selScrollRange=i.value,this.onStepChange("LAST")}onMonthSelected(i){this.selectedValue=i,this.onStepChange("SELECTED"),this.monthlyDatepicker.close()}onYearSelected(i){this.selectedValue=i,this.onStepChange("SELECTED"),this.yearlyDatepicker.close()}onStepChange(i){switch(this.logger.info(i),i){case"FIRST":this.animationDirection="backward",this.selectedValue!==this.first&&(this.selectedValue=this.first,this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange}));break;case"PREVIOUS":this.selectedValue=this.selScrollRange===f.rs[1]?new Date(this.selectedValue.getFullYear()-1,0,1,0,0,0):new Date(this.selectedValue.getFullYear(),this.selectedValue.getMonth()-1,1,0,0,0),this.animationDirection="backward",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;case"NEXT":this.selectedValue=this.selScrollRange===f.rs[1]?new Date(this.selectedValue.getFullYear()+1,0,1,0,0,0):new Date(this.selectedValue.getFullYear(),this.selectedValue.getMonth()+1,1,0,0,0),this.animationDirection="forward",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;case"LAST":this.animationDirection="forward",this.selectedValue=this.last,this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange});break;default:this.animationDirection="",this.stepChanged.emit({selDate:this.selectedValue,selScrollRange:this.selScrollRange})}this.disablePrev=this.selScrollRange===f.rs[1]?this.selectedValue.getFullYear()<=this.first.getFullYear():this.selectedValue.getFullYear()<=this.first.getFullYear()&&this.selectedValue.getMonth()<=this.first.getMonth(),this.disableNext=this.selScrollRange===f.rs[1]?this.selectedValue.getFullYear()>=this.last.getFullYear():this.selectedValue.getFullYear()>=this.last.getFullYear()&&this.selectedValue.getMonth()>=this.last.getMonth(),this.logger.info(this.disablePrev),this.logger.info(this.disableNext),setTimeout(()=>{this.animationDirection=""},800)}onChartMouseUp(i){"monthlyDate"===i.srcElement.name?this.monthlyDatepicker.open():"yearlyDate"===i.srcElement.name&&this.yearlyDatepicker.open()}static#c=this.\u0275fac=function(d){return new(d||o)(a.rXU(t.gP))};static#a=this.\u0275cmp=a.VBU({type:o,selectors:[["rtl-horizontal-scroller"]],viewQuery:function(d,h){if(1&d&&(a.GBs(V,5),a.GBs(m,5)),2&d){let p;a.mGM(p=a.lsd())&&(h.monthlyDatepicker=p.first),a.mGM(p=a.lsd())&&(h.yearlyDatepicker=p.first)}},hostBindings:function(d,h){1&d&&a.bIt("click",function(Y){return h.onChartMouseUp(Y)})},outputs:{stepChanged:"stepChanged"},decls:20,vars:5,consts:[["controlsPanel",""],["monthlyDt","ngModel"],["monthlyDatepicker",""],["yearlyDt","ngModel"],["yearlyDatepicker",""],["fxLayout","row","fxLayoutAlign","space-between stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","20"],["mat-icon-button","","color","primary","type","button","tabindex","1",1,"pr-4",3,"click"],["mat-icon-button","","color","primary","type","button","tabindex","2",3,"click","disabled"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","20"],["mat-icon-button","","color","primary","type","button","tabindex","5",1,"pr-4",3,"click","disabled"],["mat-icon-button","","color","primary","type","button","tabindex","6",3,"click"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["fxLayout","row","fxLayoutAlign","center center","fxFlex","58"],["fxFlex","50","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","end center",1,"font-bold-700"],["fxFlex","60","fxFlex.gt-md","30","name","selScrlRange","tabindex","3",1,"font-bold-700",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayout","row","fxLayoutAlign","center center","fxLayoutAlign.gt-xs","start center"],["monthlyDate","","fxLayoutAlign","center center",4,"ngIf"],["yearlyDate","","fxLayoutAlign","center center",4,"ngIf"],[3,"value"],["monthlyDate","","fxLayoutAlign","center center"],["matInput","","name","monthlyDate","tabindex","4","readonly","",3,"ngModelChange","matDatepicker","min","max","ngModel"],["matSuffix","",3,"for"],["startView","year",3,"monthSelected","dateSelected","startAt"],["yearlyDate","","fxLayoutAlign","center center"],["matInput","","name","yearlyDate","tabindex","4","readonly","",3,"ngModelChange","matDatepicker","min","max","ngModel"],["startView","multi-year",3,"yearSelected","monthSelected","dateSelected","startAt"]],template:function(d,h){if(1&d){const p=a.RV6();a.j41(0,"div",5)(1,"div",6)(2,"button",7),a.bIt("click",function(){return a.eBV(p),a.Njj(h.onStepChange("FIRST"))}),a.j41(3,"mat-icon"),a.EFF(4,"skip_previous"),a.k0s()(),a.j41(5,"button",8),a.bIt("click",function(){return a.eBV(p),a.Njj(h.onStepChange("PREVIOUS"))}),a.j41(6,"mat-icon"),a.EFF(7,"navigate_before"),a.k0s()()(),a.DNE(8,T,1,3,"ng-container",9)(9,H,1,3,"ng-container",9)(10,w,1,3,"ng-container",9),a.j41(11,"div",10)(12,"button",11),a.bIt("click",function(){return a.eBV(p),a.Njj(h.onStepChange("NEXT"))}),a.j41(13,"mat-icon"),a.EFF(14,"navigate_next"),a.k0s()(),a.j41(15,"button",12),a.bIt("click",function(){return a.eBV(p),a.Njj(h.onStepChange("LAST"))}),a.j41(16,"mat-icon"),a.EFF(17,"skip_next"),a.k0s()()()(),a.DNE(18,X,7,5,"ng-template",null,0,a.C5r)}2&d&&(a.R7$(5),a.Y8G("disabled",h.disablePrev),a.R7$(3),a.Y8G("ngIf","forward"===h.animationDirection),a.R7$(),a.Y8G("ngIf","backward"===h.animationDirection),a.R7$(),a.Y8G("ngIf",""===h.animationDirection),a.R7$(2),a.Y8G("disabled",h.disableNext))},dependencies:[e.Sq,e.bT,e.T3,F.me,F.BC,F.vS,A.DJ,A.sA,A.UI,E.iY,S.Vh,S.bZ,S.bU,c.An,I.fg,R.rl,R.yw,y.VO,x.wT,k,B,P.z,z.V,e.PV],data:{animation:[L.k]}})}return o})()},5085:(J,G,r)=>{r.d(G,{T:()=>a2});var a=r(6695),L=r(2042),f=r(9159),t=r(2798),e=r(4416),F=r(1771),A=r(1413),E=r(6977),S=r(9647),c=r(4438),I=r(2571),R=r(9640),y=r(177),x=r(2929),b=r(9417),D=r(2920),U=r(6038),k=r(8834),B=r(9631),P=r(6467),z=r(6600),V=r(497);const m=()=>["all"],s=()=>["no_transaction"],_=l=>({"display-none":l});function C(l,M){if(1&l&&(c.j41(0,"mat-option",30),c.EFF(1),c.k0s()),2&l){const n=M.$implicit,v=c.XpG();c.Y8G("value",n),c.R7$(),c.JRh(v.getLabel(n))}}function T(l,M){1&l&&(c.j41(0,"th",31),c.EFF(1,"Date"),c.k0s())}function H(l,M){if(1&l&&(c.j41(0,"td",32),c.EFF(1),c.nI1(2,"date"),c.k0s()),2&l){const n=M.$implicit,v=c.XpG();c.R7$(),c.JRh(c.i5U(2,1,null==n?null:n.date,v.dataRange===v.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy"))}}function w(l,M){1&l&&(c.j41(0,"th",33),c.EFF(1,"Amount Paid (Sats)"),c.k0s())}function O(l,M){if(1&l&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&l){const n=M.$implicit;c.R7$(2),c.JRh(c.i5U(3,1,null==n?null:n.amount_paid,"1.0-2"))}}function $(l,M){1&l&&(c.j41(0,"th",33),c.EFF(1,"# Payments"),c.k0s())}function W(l,M){if(1&l&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&l){const n=M.$implicit;c.R7$(2),c.JRh(c.bMT(3,1,null==n?null:n.num_payments))}}function X(l,M){1&l&&(c.j41(0,"th",33),c.EFF(1,"Amount Received (Sats)"),c.k0s())}function q(l,M){if(1&l&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&l){const n=M.$implicit;c.R7$(2),c.JRh(c.i5U(3,1,null==n?null:n.amount_received,"1.0-2"))}}function o(l,M){1&l&&(c.j41(0,"th",33),c.EFF(1,"# Invoices"),c.k0s())}function N(l,M){if(1&l&&(c.j41(0,"td",32)(1,"span",34),c.EFF(2),c.nI1(3,"number"),c.k0s()()),2&l){const n=M.$implicit;c.R7$(2),c.JRh(c.bMT(3,1,null==n?null:n.num_invoices))}}function i(l,M){if(1&l){const n=c.RV6();c.j41(0,"th",35)(1,"div",36)(2,"mat-select",37),c.nrm(3,"mat-select-trigger"),c.j41(4,"mat-option",38),c.bIt("click",function(){c.eBV(n);const u=c.XpG();return c.Njj(u.onDownloadCSV())}),c.EFF(5,"Download CSV"),c.k0s()()()()}}function d(l,M){if(1&l){const n=c.RV6();c.j41(0,"td",39)(1,"button",40),c.bIt("click",function(){const u=c.eBV(n).$implicit,g=c.XpG();return c.Njj(g.onTransactionClick(u))}),c.EFF(2,"View Info"),c.k0s()()}}function h(l,M){1&l&&(c.j41(0,"p"),c.EFF(1,"No transaction available."),c.k0s())}function p(l,M){if(1&l&&(c.j41(0,"td",41),c.DNE(1,h,2,0,"p",42),c.k0s()),2&l){const n=c.XpG();c.R7$(),c.Y8G("ngIf",!(null!=n.transactions&&n.transactions.data)||(null==n.transactions||null==n.transactions.data?null:n.transactions.data.length)<1)}}function Y(l,M){if(1&l&&c.nrm(0,"tr",43),2&l){const n=c.XpG();c.Y8G("ngClass",c.eq3(1,_,(null==n.transactions?null:n.transactions.data)&&(null==n.transactions||null==n.transactions.data?null:n.transactions.data.length)>0))}}function Q(l,M){1&l&&c.nrm(0,"tr",44)}function c2(l,M){1&l&&c.nrm(0,"tr",45)}let a2=(()=>{class l{constructor(n,v,u,g){this.commonService=n,this.store=v,this.datePipe=u,this.camelCaseWithReplace=g,this.dataRange=e.rs[0],this.dataList=[],this.selFilter="",this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.tableSetting={tableId:"transactions",recordsPerPage:e.md,sortBy:"date",sortOrder:e.oi.DESCENDING},this.nodePageDefs=e._1,this.selFilterBy="all",this.timezoneOffset=60*new Date(Date.now()).getTimezoneOffset(),this.scrollRanges=e.rs,this.transactions=new f.I6([]),this.pageSize=e.md,this.pageSizeOptions=e.xp,this.screenSize="",this.screenSizeEnum=e.f7,this.unSubs=[new A.B,new A.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(n){n.dataList&&!n.dataList.firstChange&&(this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:e.md,this.loadTransactionsTable(this.dataList)),n.selFilter&&!n.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(S._c).pipe((0,E.Q)(this.unSubs[0])).subscribe(n=>{this.nodePageDefs="CLN"===n.lnImplementation?e.Jd:"ECL"===n.lnImplementation?e.WW:e._1}),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:e.md,this.dataList&&this.dataList.length>0&&this.loadTransactionsTable(this.dataList)}ngAfterViewInit(){setTimeout(()=>{this.setTableWidgets()},0)}onTransactionClick(n){const v=[[{key:"date",value:this.datePipe.transform(n.date,this.dataRange===e.rs[1]?"MMM/yyyy":"dd/MMM/yyyy"),title:"Date",width:100,type:e.UN.DATE}],[{key:"amount_paid",value:Math.round(n.amount_paid),title:"Amount Paid (Sats)",width:50,type:e.UN.NUMBER},{key:"num_payments",value:n.num_payments,title:"# Payments",width:50,type:e.UN.NUMBER}],[{key:"amount_received",value:Math.round(n.amount_received),title:"Amount Received (Sats)",width:50,type:e.UN.NUMBER},{key:"num_invoices",value:n.num_invoices,title:"# Invoices",width:50,type:e.UN.NUMBER}]];this.store.dispatch((0,F.xO)({payload:{data:{type:e.A$.INFORMATION,alertTitle:"Transaction Summary",message:v}}}))}applyFilter(){this.transactions&&(this.transactions.filter=this.selFilter.trim().toLowerCase())}getLabel(n){const v=this.nodePageDefs.reports[this.tableSetting.tableId].allowedColumns.find(u=>u.column===n);return v?v.label?v.label:this.camelCaseWithReplace.transform(v.column,"_"):this.commonService.titleCase(n)}setFilterPredicate(){this.transactions.filterPredicate=(n,v)=>{let u="";switch(this.selFilterBy){case"all":u=(n.date?(this.datePipe.transform(n.date,"dd/MMM")+"/"+n.date.getFullYear()).toLowerCase():"")+JSON.stringify(n).toLowerCase();break;case"date":u=this.datePipe.transform(new Date(n[this.selFilterBy]||0),this.dataRange===this.scrollRanges[1]?"MMM/yyyy":"dd/MMM/yyyy")?.toLowerCase()||"";break;default:u=typeof n[this.selFilterBy]>"u"?"":"string"==typeof n[this.selFilterBy]?n[this.selFilterBy].toLowerCase():"boolean"==typeof n[this.selFilterBy]?n[this.selFilterBy]?"yes":"no":n[this.selFilterBy].toString()}return u.includes(v)}}loadTransactionsTable(n){this.transactions=new f.I6(n?[...n]:[]),this.setTableWidgets()}setTableWidgets(){this.transactions&&this.transactions.data&&this.transactions.data.length>0&&(this.transactions.sort=this.sort,this.transactions.sortingDataAccessor=(n,v)=>n[v]&&isNaN(n[v])?n[v].toLocaleLowerCase():n[v]?+n[v]:null,this.transactions.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter())}onDownloadCSV(){this.transactions.data&&this.transactions.data.length>0&&this.commonService.downloadFile(this.dataList,"Transactions-report-"+this.dataRange.toLowerCase())}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(),n.complete()})}static#c=this.\u0275fac=function(v){return new(v||l)(c.rXU(I.h),c.rXU(R.il),c.rXU(y.vh),c.rXU(x.VD))};static#a=this.\u0275cmp=c.VBU({type:l,selectors:[["rtl-transactions-report-table"]],viewQuery:function(v,u){if(1&v&&(c.GBs(L.B4,5),c.GBs(a.iy,5)),2&v){let g;c.mGM(g=c.lsd())&&(u.sort=g.first),c.mGM(g=c.lsd())&&(u.paginator=g.first)}},inputs:{dataRange:"dataRange",dataList:"dataList",selFilter:"selFilter",displayedColumns:"displayedColumns",tableSetting:"tableSetting"},features:[c.Jv_([{provide:t.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:a.xX,useValue:(0,e.on)("Transactions")}]),c.OA$],decls:43,vars:14,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","date"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","amount_paid"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","num_payments"],["matColumnDef","amount_received"],["matColumnDef","num_invoices"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_transaction"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(v,u){if(1&v){const g=c.RV6();c.j41(0,"div",1)(1,"div",2)(2,"div",3),c.nrm(3,"div",4),c.j41(4,"div",5)(5,"mat-form-field",6)(6,"mat-label"),c.EFF(7,"Filter By"),c.k0s(),c.j41(8,"mat-select",7),c.mxI("ngModelChange",function(j){return c.eBV(g),c.DH7(u.selFilterBy,j)||(u.selFilterBy=j),c.Njj(j)}),c.bIt("selectionChange",function(){return c.eBV(g),u.selFilter="",c.Njj(u.applyFilter())}),c.j41(9,"perfect-scrollbar"),c.DNE(10,C,2,2,"mat-option",8),c.k0s()()(),c.j41(11,"mat-form-field",6)(12,"mat-label"),c.EFF(13,"Filter"),c.k0s(),c.j41(14,"input",9),c.mxI("ngModelChange",function(j){return c.eBV(g),c.DH7(u.selFilter,j)||(u.selFilter=j),c.Njj(j)}),c.bIt("input",function(){return c.eBV(g),c.Njj(u.applyFilter())})("keyup",function(){return c.eBV(g),c.Njj(u.applyFilter())}),c.k0s()()()(),c.j41(15,"div",10)(16,"div",11)(17,"table",12,0),c.qex(19,13),c.DNE(20,T,2,0,"th",14)(21,H,3,4,"td",15),c.bVm(),c.qex(22,16),c.DNE(23,w,2,0,"th",17)(24,O,4,4,"td",15),c.bVm(),c.qex(25,18),c.DNE(26,$,2,0,"th",17)(27,W,4,3,"td",15),c.bVm(),c.qex(28,19),c.DNE(29,X,2,0,"th",17)(30,q,4,4,"td",15),c.bVm(),c.qex(31,20),c.DNE(32,o,2,0,"th",17)(33,N,4,3,"td",15),c.bVm(),c.qex(34,21),c.DNE(35,i,6,0,"th",22)(36,d,3,0,"td",23),c.bVm(),c.qex(37,24),c.DNE(38,p,2,1,"td",25),c.bVm(),c.DNE(39,Y,1,3,"tr",26)(40,Q,1,0,"tr",27)(41,c2,1,0,"tr",28),c.k0s(),c.nrm(42,"mat-paginator",29),c.k0s()()()()}2&v&&(c.R7$(8),c.R50("ngModel",u.selFilterBy),c.R7$(2),c.Y8G("ngForOf",c.lJ4(12,m).concat(u.displayedColumns.slice(0,-1))),c.R7$(4),c.R50("ngModel",u.selFilter),c.R7$(3),c.Y8G("matSortActive",u.tableSetting.sortBy)("matSortDirection",u.tableSetting.sortOrder)("dataSource",u.transactions),c.R7$(22),c.Y8G("matFooterRowDef",c.lJ4(13,s)),c.R7$(),c.Y8G("matHeaderRowDef",u.displayedColumns),c.R7$(),c.Y8G("matRowDefColumns",u.displayedColumns),c.R7$(),c.Y8G("pageSize",u.pageSize)("pageSizeOptions",u.pageSizeOptions)("showFirstLastButtons",u.screenSize!==u.screenSizeEnum.XS))},dependencies:[y.YU,y.Sq,y.bT,b.me,b.BC,b.vS,D.DJ,D.sA,D.UI,U.PW,k.$z,B.fg,P.rl,P.nJ,t.VO,t.$2,z.wT,L.B4,L.aE,f.Zl,f.tL,f.ji,f.cC,f.YV,f.iL,f.Zq,f.xW,f.KS,f.$R,f.Qo,f.YZ,f.NB,f.iF,a.iy,V.ZF,V.Ld,y.QX,y.vh]})}return l})()},614:(J,G,r)=>{r.d(G,{Qpm:()=>i1,wB1:()=>P2});var P2={prefix:"far",iconName:"face-frown",icon:[512,512,[9785,"frown"],"f119","M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM174.6 384.1c-4.5 12.5-18.2 18.9-30.7 14.4s-18.9-18.2-14.4-30.7C146.9 319.4 198.9 288 256 288s109.1 31.4 126.6 79.9c4.5 12.5-2 26.2-14.4 30.7s-26.2-2-30.7-14.4C328.2 358.5 297.2 336 256 336s-72.2 22.5-81.4 48.1zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},i1={prefix:"far",iconName:"face-smile",icon:[512,512,[128578,"smile"],"f118","M464 256A208 208 0 1 0 48 256a208 208 0 1 0 416 0zM0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zm177.6 62.1C192.8 334.5 218.8 352 256 352s63.2-17.5 78.4-33.9c9-9.7 24.2-10.4 33.9-1.4s10.4 24.2 1.4 33.9c-22 23.8-60 49.4-113.6 49.4s-91.7-25.5-113.6-49.4c-9-9.7-8.4-24.9 1.4-33.9s24.9-8.4 33.9 1.4zM144.4 208a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm192-32a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]}}}]); \ No newline at end of file diff --git a/frontend/3rdpartylicenses.txt b/frontend/3rdpartylicenses.txt index b73ca59b..d4e492ea 100644 --- a/frontend/3rdpartylicenses.txt +++ b/frontend/3rdpartylicenses.txt @@ -1,11 +1,33 @@ @angular/animations MIT +The MIT License + +Copyright (c) 2010-2025 Google LLC. https://angular.dev/license + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + @angular/cdk MIT The MIT License -Copyright (c) 2024 Google LLC. +Copyright (c) 2025 Google LLC. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -28,21 +50,87 @@ THE SOFTWARE. @angular/common MIT +The MIT License + +Copyright (c) 2010-2025 Google LLC. https://angular.dev/license + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + @angular/core MIT +The MIT License + +Copyright (c) 2010-2025 Google LLC. https://angular.dev/license + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + @angular/flex-layout MIT @angular/forms MIT +The MIT License + +Copyright (c) 2010-2025 Google LLC. https://angular.dev/license + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + @angular/material MIT The MIT License -Copyright (c) 2024 Google LLC. +Copyright (c) 2025 Google LLC. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -65,9 +153,53 @@ THE SOFTWARE. @angular/platform-browser MIT +The MIT License + +Copyright (c) 2010-2025 Google LLC. https://angular.dev/license + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + @angular/router MIT +The MIT License + +Copyright (c) 2010-2025 Google LLC. https://angular.dev/license + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + @babel/runtime MIT @@ -147,7 +279,7 @@ as SVG and JS file types. In the Font Awesome Free download, the SIL OFL license applies to all icons packaged as web and desktop font files. -Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com) +Copyright (c) 2025 Fonticons, Inc. (https://fontawesome.com) with Reserved Font Name: "Font Awesome". This Font Software is licensed under the SIL Open Font License, Version 1.1. @@ -247,7 +379,7 @@ OTHER DEALINGS IN THE FONT SOFTWARE. In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. -Copyright 2024 Fonticons, Inc. +Copyright 2025 Fonticons, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the @@ -316,7 +448,7 @@ as SVG and JS file types. In the Font Awesome Free download, the SIL OFL license applies to all icons packaged as web and desktop font files. -Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com) +Copyright (c) 2025 Fonticons, Inc. (https://fontawesome.com) with Reserved Font Name: "Font Awesome". This Font Software is licensed under the SIL Open Font License, Version 1.1. @@ -416,7 +548,7 @@ OTHER DEALINGS IN THE FONT SOFTWARE. In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. -Copyright 2024 Fonticons, Inc. +Copyright 2025 Fonticons, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the @@ -485,7 +617,7 @@ as SVG and JS file types. In the Font Awesome Free download, the SIL OFL license applies to all icons packaged as web and desktop font files. -Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com) +Copyright (c) 2025 Fonticons, Inc. (https://fontawesome.com) with Reserved Font Name: "Font Awesome". This Font Software is licensed under the SIL Open Font License, Version 1.1. @@ -585,7 +717,7 @@ OTHER DEALINGS IN THE FONT SOFTWARE. In the Font Awesome Free download, the MIT license applies to all non-font and non-icon files. -Copyright 2024 Fonticons, Inc. +Copyright 2025 Fonticons, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the @@ -656,35 +788,6 @@ https://github.com/cartant/rxjs-etc by Nicholas Jamieson, MIT licensed. See the file header for details. -@ngrx/operators -MIT -The MIT License (MIT) - -Copyright (c) 2017-2023 Brandon Roberts, Mike Ryan, Victor Savkin, Rob Wormald - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -This repository includes a file "debounceSync.ts" originially copied from -https://github.com/cartant/rxjs-etc by Nicholas Jamieson, MIT licensed. See the -file header for details. - - @ngrx/store MIT The MIT License (MIT) @@ -743,137 +846,12 @@ https://github.com/cartant/rxjs-etc by Nicholas Jamieson, MIT licensed. See the file header for details. -@otplib/core -MIT -The MIT License (MIT) - -Copyright (c) 2014 Gerald Yeo - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -@otplib/plugin-crypto -MIT -The MIT License (MIT) - -Copyright (c) 2014 Gerald Yeo - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -@otplib/plugin-thirty-two -MIT -The MIT License (MIT) - -Copyright (c) 2014 Gerald Yeo - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -@otplib/preset-default -MIT -The MIT License (MIT) - -Copyright (c) 2014 Gerald Yeo - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - @swimlane/ngx-charts MIT -MIT License - -Copyright (c) 2017 Swimlane - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - angular-user-idle MIT -asn1.js -MIT - base64-js MIT The MIT License (MIT) @@ -899,149 +877,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -bn.js -MIT -Copyright Fedor Indutny, 2015. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -brorand -MIT - -browserify-aes -MIT -The MIT License (MIT) - -Copyright (c) 2014-2017 browserify-aes contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -browserify-cipher -MIT -The MIT License (MIT) - -Copyright (c) 2014-2017 Calvin Metcalf & contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -browserify-des -MIT -The MIT License (MIT) - -Copyright (c) 2014-2017 Calvin Metcalf, Fedor Indutny & contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -browserify-rsa -MIT -The MIT License (MIT) - -Copyright (c) 2014-2016 Calvin Metcalf & contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -browserify-sign -ISC -Copyright (c) 2014-2015 Calvin Metcalf and browserify-sign contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - buffer MIT The MIT License (MIT) @@ -1067,185 +902,10 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -buffer-xor -MIT -The MIT License (MIT) - -Copyright (c) 2015 Daniel Cousens - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -cipher-base -MIT -The MIT License (MIT) - -Copyright (c) 2017 crypto-browserify contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - convert-hex convert-string -core-util-is -MIT -Copyright Node.js contributors. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - - -create-ecdh -MIT -The MIT License (MIT) - -Copyright (c) 2014-2017 createECDH contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -create-hash -MIT -The MIT License (MIT) - -Copyright (c) 2017 crypto-browserify contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -create-hmac -MIT -The MIT License (MIT) - -Copyright (c) 2017 crypto-browserify contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -crypto-browserify -MIT -The MIT License - -Copyright (c) 2013 Dominic Tarr - -Permission is hereby granted, free of charge, -to any person obtaining a copy of this software and -associated documentation files (the "Software"), to -deal in the Software without restriction, including -without limitation the rights to use, copy, modify, -merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom -the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice -shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR -ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - d3-array ISC Copyright 2010-2023 Mike Bostock @@ -1365,7 +1025,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. d3-format ISC -Copyright 2010-2021 Mike Bostock +Copyright 2010-2026 Mike Bostock Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice @@ -1449,34 +1109,20 @@ THIS SOFTWARE. d3-time-format -BSD-3-Clause -Copyright 2010-2017 Mike Bostock -All rights reserved. +ISC +Copyright 2010-2021 Mike Bostock -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: +Permission to use, copy, modify, and/or distribute this software for any purpose +with or without fee is hereby granted, provided that the above copyright notice +and this permission notice appear in all copies. -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - -* Neither the name of the author nor the names of contributors may be used to - endorse or promote products derived from this software without specific prior - written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS +OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER +TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF +THIS SOFTWARE. d3-timer @@ -1513,32 +1159,6 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -des.js -MIT - -diffie-hellman -MIT -Copyright (c) 2017 Calvin Metcalf - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - dijkstrajs MIT ``` @@ -1562,94 +1182,6 @@ THE SOFTWARE. ``` -elliptic -MIT - -encode-utf8 -MIT - -events -MIT -MIT - -Copyright Joyent, Inc. and other Node contributors. - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to permit -persons to whom the Software is furnished to do so, subject to the -following conditions: - -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -USE OR OTHER DEALINGS IN THE SOFTWARE. - - -evp_bytestokey -MIT -The MIT License (MIT) - -Copyright (c) 2017 crypto-browserify contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -hash-base -MIT -The MIT License (MIT) - -Copyright (c) 2016 Kirill Fomichev - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -hash.js -MIT - -hmac-drbg -MIT - ieee754 BSD-3-Clause Copyright 2008 Fair Oaks Labs, Inc. @@ -1665,26 +1197,6 @@ Redistribution and use in source and binary forms, with or without modification, THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -inherits -ISC -The ISC License - -Copyright (c) Isaac Z. Schlueter - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - - - internmap ISC Copyright 2021 Mike Bostock @@ -1702,9 +1214,6 @@ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -isarray -MIT - material-icons Apache-2.0 @@ -1911,53 +1420,6 @@ Apache-2.0 limitations under the License. -md5.js -MIT -The MIT License (MIT) - -Copyright (c) 2016 Kirill Fomichev - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -miller-rabin -MIT - -minimalistic-assert -ISC -Copyright 2015 Calvin Metcalf - -Permission to use, copy, modify, and/or distribute this software for any purpose -with or without fee is hereby granted, provided that the above copyright notice -and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - -minimalistic-crypto-utils -MIT - ng-qrcode MIT MIT License @@ -1986,79 +1448,12 @@ SOFTWARE. ngx-perfect-scrollbar-next MIT -otplib -MIT -The MIT License (MIT) - -Copyright (c) 2014 Gerald Yeo - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -parse-asn1 -ISC -Copyright (c) 2017, crypto-browserify contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - - -pbkdf2 -MIT -The MIT License (MIT) - -Copyright (c) 2014 Daniel Cousens - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - pdfmake MIT The MIT License (MIT) Copyright (c) 2014-2015 bpampuch - 2016-2024 liborm85 + 2016-2026 liborm85 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in @@ -2129,52 +1524,6 @@ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -process-nextick-args -MIT -# Copyright (c) 2015 Calvin Metcalf - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -**THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE.** - - -public-encrypt -MIT -Copyright (c) 2017 Calvin Metcalf - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - qrcode MIT The MIT License (MIT) @@ -2189,107 +1538,6 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI -randombytes -MIT -MIT License - -Copyright (c) 2017 crypto-browserify - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -randomfill -MIT -MIT License - -Copyright (c) 2017 crypto-browserify - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -readable-stream -MIT -Node.js is licensed for use as follows: - -""" -Copyright Node.js contributors. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -""" - -This license applies to parts of Node.js originating from the -https://github.com/joyent/node repository: - -""" -Copyright Joyent, Inc. and other Node contributors. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -""" - - resize-observer-polyfill MIT The MIT License (MIT) @@ -2315,50 +1563,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -rfdc -MIT -Copyright 2019 "David Mark Clements " - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and -to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions -of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED -TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF -CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - - -ripemd160 -MIT -The MIT License (MIT) - -Copyright (c) 2016 crypto-browserify - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - roboto-fontface Apache-2.0 Apache License @@ -2770,183 +1974,8 @@ Apache-2.0 -safe-buffer -MIT -The MIT License (MIT) - -Copyright (c) Feross Aboukhadijeh - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - -sha.js -(MIT AND BSD-3-Clause) -Copyright (c) 2013-2018 sha.js contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - -Copyright (c) 1998 - 2009, Paul Johnston & Contributors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - -Redistributions of source code must retain the above copyright notice, this -list of conditions and the following disclaimer. - -Redistributions in binary form must reproduce the above copyright notice, this -list of conditions and the following disclaimer in the documentation and/or -other materials provided with the distribution. - -Neither the name of the author nor the names of its contributors may be used to -endorse or promote products derived from this software without specific prior -written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - - sha256 -stream-browserify -MIT -MIT License - -Copyright (c) James Halliday - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - -string_decoder -MIT -Node.js is licensed for use as follows: - -""" -Copyright Node.js contributors. All rights reserved. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -""" - -This license applies to parts of Node.js originating from the -https://github.com/joyent/node repository: - -""" -Copyright Joyent, Inc. and other Node contributors. All rights reserved. -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. -""" - - - -thirty-two -Copyright (c) 2011, Chris Umbel - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - tslib 0BSD Copyright (c) Microsoft Corporation. @@ -2962,61 +1991,11 @@ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -util-deprecate -MIT -(The MIT License) - -Copyright (c) 2014 Nathan Rajlich - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the "Software"), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - - -vm-browserify -MIT -MIT License - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - - zone.js MIT The MIT License -Copyright (c) 2010-2024 Google LLC. https://angular.io/license +Copyright (c) 2010-2025 Google LLC. https://angular.dev/license Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/frontend/853.c4ce8a9a0bef2bb7.js b/frontend/853.c4ce8a9a0bef2bb7.js deleted file mode 100644 index ec9472c8..00000000 --- a/frontend/853.c4ce8a9a0bef2bb7.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[853],{4853:(Gl,br,Pt)=>{"use strict";Pt.r(br),Pt.d(br,{CLNModule:()=>TC});var st=Pt(177),le=Pt(1188),b=Pt(9881),A=Pt(4438),n=Pt(2920),B=Pt(7575);function a(i,D){1&i&&A.nrm(0,"mat-progress-bar",3)}let s=(()=>{class i{constructor(t){this.router=t,this.loading=!1,this.router.events.subscribe(l=>{switch(!0){case l instanceof le.Z:this.loading=!0;break;case l instanceof le.wF:case l instanceof le.j5:case l instanceof le.L6:this.loading=!1}})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-root"]],decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(l,c){1&l&&(A.j41(0,"div",1),A.DNE(1,a,1,0,"mat-progress-bar",2),A.nrm(2,"router-outlet",null,0),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",c.loading))},dependencies:[st.bT,n.DJ,n.sA,n.UI,B.HM,le.n3],data:{animation:[b.E]}})}return i})();var o=Pt(1413),g=Pt(6977),f=Pt(3993),w=Pt(614),u=Pt(5383),r=Pt(4416),d=Pt(9647),E=Pt(9584),C=Pt(8570),e=Pt(9640),h=Pt(2571),Q=Pt(60),I=Pt(6038),R=Pt(8834),p=Pt(5596),m=Pt(6195),y=Pt(9213),x=Pt(9115),Y=Pt(6850),v=Pt(5964),S=Pt(6695),z=Pt(2042),F=Pt(9159),$=Pt(2798),gA=Pt(5351),_=Pt(8430),fA=Pt(4054),iA=Pt(9417),wA=Pt(9631),IA=Pt(6467),FA=Pt(6600),YA=Pt(450),HA=Pt(4823),J=Pt(9587),BA=Pt(6114);function aA(i,D){1&i&&(A.j41(0,"span",31),A.EFF(1,"= "),A.k0s())}function eA(i,D){if(1&i&&(A.j41(0,"span",32),A.nrm(1,"fa-icon",33),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function EA(i,D){if(1&i&&A.nrm(0,"span",34),2&i){const t=A.XpG();A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function xA(i,D){if(1&i&&(A.j41(0,"mat-option",35),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.JRh(A.bMT(2,2,t))}}function OA(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.invoiceError)}}function W(i,D){if(1&i&&(A.j41(0,"div",36),A.nrm(1,"fa-icon",37),A.DNE(2,OA,2,1,"span",38),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.invoiceError)}}let L=(()=>{class i{constructor(t,l,c,j,PA,WA){this.dialogRef=t,this.data=l,this.store=c,this.decimalPipe=j,this.commonService=PA,this.actions=WA,this.faExclamationTriangle=u.zpE,this.convertedCurrency=null,this.description="",this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=r.md,this.timeUnitEnum=r.F7,this.timeUnits=r.SY,this.selTimeUnit=r.F7.SECS,this.invoiceError="",this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewInvoice"===t.payload.action&&(t.payload.status===r.wn.ERROR&&(this.invoiceError=t.payload.message),t.payload.status===r.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(t){this.invoiceError="",this.invoiceValue||(this.invoiceValue=0);let l=this.expiry?this.expiry:r.It;this.selTimeUnit!==r.F7.SECS&&this.expiry&&(l=this.commonService.convertTime(this.expiry,this.selTimeUnit,r.F7.SECS)),this.store.dispatch((0,_.VK)({payload:{label:"ulbl"+Math.random().toString(36).slice(2)+Date.now(),amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:l,exposeprivatechannels:this.private}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=r.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&(this.invoiceValueHint="",this.invoiceValue&&this.invoiceValue>99&&this.commonService.convertCurrency(this.invoiceValue,r.BQ.SATS,r.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,r.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onTimeUnitChange(t){this.expiry&&this.selTimeUnit!==t.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,t.value)),this.selTimeUnit=t.value}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(st.QX),A.rXU(h.h),A.rXU(fA.En))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-create-invoices"]],decls:48,vars:19,consts:[["addInvoiceForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","2","name","description",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","3","name","invoiceValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","expiry","type","number","tabindex","4",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","26"],["tabindex","5","name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayoutAlign","start center",1,"ml-2"],["tabindex","6","color","primary","name","private",3,"ngModelChange","ngModel"],["matTooltip","Include routing hints for private channels","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","8",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Create Invoice"),A.k0s()(),A.j41(6,"button",6),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),A.EFF(13,"Description"),A.k0s(),A.j41(14,"input",10),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.description,WA)||(c.description=WA),A.Njj(WA)}),A.k0s()(),A.j41(15,"div",11)(16,"mat-form-field",12)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",13),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.invoiceValue,WA)||(c.invoiceValue=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onInvoiceValueChange())}),A.k0s(),A.j41(20,"span",14),A.EFF(21,"Sats "),A.k0s(),A.j41(22,"mat-hint",15),A.DNE(23,aA,2,0,"span",16)(24,eA,2,1,"span",17)(25,EA,1,1,"span",18),A.EFF(26),A.k0s()(),A.j41(27,"mat-form-field",19)(28,"mat-label"),A.EFF(29,"Expiry"),A.k0s(),A.j41(30,"input",20),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.expiry,WA)||(c.expiry=WA),A.Njj(WA)}),A.k0s(),A.j41(31,"span",14),A.EFF(32),A.nI1(33,"titlecase"),A.k0s()(),A.j41(34,"mat-form-field",21)(35,"mat-select",22),A.bIt("selectionChange",function(WA){return A.eBV(j),A.Njj(c.onTimeUnitChange(WA))}),A.DNE(36,xA,3,4,"mat-option",23),A.k0s()()(),A.j41(37,"div",24)(38,"mat-slide-toggle",25),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.private,WA)||(c.private=WA),A.Njj(WA)}),A.EFF(39,"Private Routing Hints"),A.k0s(),A.j41(40,"mat-icon",26),A.EFF(41,"info_outline"),A.k0s()(),A.DNE(42,W,3,2,"div",27),A.j41(43,"div",28)(44,"button",29),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(45,"Clear Field"),A.k0s(),A.j41(46,"button",30),A.bIt("click",function(){A.eBV(j);const WA=A.sdS(10);return A.Njj(c.onAddInvoice(WA))}),A.EFF(47,"Create Invoice"),A.k0s()()()()()()}2&l&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",c.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",c.invoiceValue),A.R7$(4),A.Y8G("ngIf",""!==c.invoiceValueHint),A.R7$(),A.Y8G("ngIf",c.convertedCurrency&&"FA"===c.convertedCurrency.iconType&&""!==c.invoiceValueHint),A.R7$(),A.Y8G("ngIf",c.convertedCurrency&&"SVG"===c.convertedCurrency.iconType&&""!==c.invoiceValueHint),A.R7$(),A.SpI(" ",c.invoiceValueHint," "),A.R7$(4),A.Y8G("step",c.selTimeUnit===c.timeUnitEnum.SECS?300:c.selTimeUnit===c.timeUnitEnum.MINS?10:c.selTimeUnit===c.timeUnitEnum.HOURS?2:1)("min",1),A.R50("ngModel",c.expiry),A.R7$(2),A.SpI("",A.bMT(33,17,c.selTimeUnit)," "),A.R7$(3),A.Y8G("value",c.selTimeUnit),A.R7$(),A.Y8G("ngForOf",c.timeUnits),A.R7$(2),A.R50("ngModel",c.private),A.R7$(4),A.Y8G("ngIf",""!==c.invoiceError))},dependencies:[st.Sq,st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,gA.tx,R.$z,p.m2,p.MM,y.An,wA.fg,IA.rl,IA.nJ,IA.MV,IA.yw,$.VO,FA.wT,YA.sG,HA.oV,J.N,BA.V,st.PV]})}return i})();var rA=Pt(8321),AA=Pt(1771),QA=Pt(7541),yA=Pt(2929),cA=Pt(497);const CA=()=>["all"],DA=i=>({"error-border":i}),NA=()=>["no_invoice"],zA=i=>({"mr-0":i}),pA=i=>({width:i}),JA=i=>({"display-none":i});function ft(i,D){1&i&&(A.j41(0,"span",19),A.EFF(1,"= "),A.k0s())}function wt(i,D){if(1&i&&(A.j41(0,"span",20),A.nrm(1,"fa-icon",21),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function gt(i,D){if(1&i&&A.nrm(0,"span",22),2&i){const t=A.XpG(2);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function pt(i,D){if(1&i){const t=A.RV6();A.j41(0,"form",6,0)(2,"mat-form-field",7)(3,"mat-label"),A.EFF(4,"Description"),A.k0s(),A.j41(5,"input",8),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.description,c)||(j.description=c),A.Njj(c)}),A.k0s()(),A.j41(6,"mat-form-field",9)(7,"mat-label"),A.EFF(8,"Amount"),A.k0s(),A.j41(9,"input",10),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.invoiceValue,c)||(j.invoiceValue=c),A.Njj(c)}),A.bIt("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onInvoiceValueChange())}),A.k0s(),A.j41(10,"span",11),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",12),A.DNE(13,ft,2,0,"span",13)(14,wt,2,1,"span",14)(15,gt,1,1,"span",15),A.EFF(16),A.k0s()(),A.j41(17,"div",16)(18,"button",17),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.resetData())}),A.EFF(19,"Clear Field"),A.k0s(),A.j41(20,"button",18),A.bIt("click",function(){A.eBV(t);const c=A.sdS(1),j=A.XpG();return A.Njj(j.onAddInvoice(c))}),A.EFF(21,"Create Invoice"),A.k0s()()()}if(2&i){const t=A.XpG();A.R7$(5),A.R50("ngModel",t.description),A.R7$(4),A.Y8G("step",100)("min",1),A.R50("ngModel",t.invoiceValue),A.R7$(4),A.Y8G("ngIf",""!==t.invoiceValueHint),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.invoiceValueHint),A.R7$(),A.SpI(" ",t.invoiceValueHint," ")}}function Yt(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",23)(1,"button",24),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDeleteExpiredInvoices())}),A.EFF(2,"Delete Expired"),A.k0s(),A.j41(3,"button",25),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.openCreateInvoiceModal())}),A.EFF(4,"Create Invoice"),A.k0s()()}}function VA(i,D){if(1&i&&(A.j41(0,"mat-option",62),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function _A(i,D){1&i&&A.nrm(0,"mat-progress-bar",63)}function Qt(i,D){1&i&&A.nrm(0,"th",64)}function ht(i,D){if(1&i&&A.nrm(0,"span",69),2&i){const t=A.XpG(3);A.Y8G("ngClass",A.eq3(1,zA,t.screenSize===t.screenSizeEnum.XS))}}function vt(i,D){if(1&i&&A.nrm(0,"span",70),2&i){const t=A.XpG(3);A.Y8G("ngClass",A.eq3(1,zA,t.screenSize===t.screenSizeEnum.XS))}}function Nt(i,D){if(1&i&&A.nrm(0,"span",71),2&i){const t=A.XpG(3);A.Y8G("ngClass",A.eq3(1,zA,t.screenSize===t.screenSizeEnum.XS))}}function vA(i,D){if(1&i&&(A.j41(0,"td",65),A.DNE(1,ht,1,3,"span",66)(2,vt,1,3,"span",67)(3,Nt,1,3,"span",68),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf","paid"===(null==t?null:t.status)),A.R7$(),A.Y8G("ngIf","unpaid"===(null==t?null:t.status)),A.R7$(),A.Y8G("ngIf","expired"===(null==t?null:t.status))}}function Bt(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Expiry Date"),A.k0s())}function Z(i,D){if(1&i&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==t?null:t.expires_at),"dd/MMM/y HH:mm")," ")}}function k(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Date Settled"),A.k0s())}function U(i,D){if(1&i&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.paid_at),"dd/MMM/y HH:mm")||"-")}}function hA(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Type"),A.k0s())}function q(i,D){if(1&i&&(A.j41(0,"td",65),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11&&t.label.includes("keysend-")?"Keysend":"Bolt11")}}function GA(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Description"),A.k0s())}function At(i,D){if(1&i&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,pA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.description)}}function O(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Label"),A.k0s())}function qA(i,D){if(1&i&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,pA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.label)}}function nt(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Payment Hash"),A.k0s())}function MA(i,D){if(1&i&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,pA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash)}}function jA(i,D){1&i&&(A.j41(0,"th",72),A.EFF(1,"Invoice"),A.k0s())}function ot(i,D){if(1&i&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,pA,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.bolt11)}}function Tt(i,D){1&i&&(A.j41(0,"th",75),A.EFF(1,"Amount (Sats)"),A.k0s())}function yt(i,D){if(1&i&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.amount_msat)/1e3,(null==t?null:t.amount_msat)<1e3?"1.0-4":"1.0-0"))}}function Ut(i,D){1&i&&(A.j41(0,"th",75),A.EFF(1,"Amount Settled (Sats)"),A.k0s())}function Lt(i,D){if(1&i&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.amount_received_msat)/1e3,(null==t?null:t.amount_received_msat)<1e3?"1.0-4":"1.0-0"))}}function sn(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",77)(1,"div",78)(2,"mat-select",79),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",80),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function $t(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",81)(1,"div",78)(2,"mat-select",82),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",80),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onInvoiceClick(c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",80),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onRefreshInvoice(c))}),A.EFF(7,"Refresh"),A.k0s()()()()}}function Kt(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No invoice available."),A.k0s())}function Me(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting invoices..."),A.k0s())}function ze(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function Re(i,D){if(1&i&&(A.j41(0,"td",83),A.DNE(1,Kt,2,0,"p",84)(2,Me,2,0,"p",84)(3,ze,2,1,"p",84),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.invoices&&t.invoices.data)||(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function yn(i,D){if(1&i&&A.nrm(0,"tr",85),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,JA,(null==t.invoices?null:t.invoices.data)&&(null==t.invoices||null==t.invoices.data?null:t.invoices.data.length)>0))}}function Mn(i,D){1&i&&A.nrm(0,"tr",86)}function ee(i,D){1&i&&A.nrm(0,"tr",87)}function An(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",26)(1,"div",27)(2,"div",28),A.nrm(3,"fa-icon",29),A.j41(4,"span",30),A.EFF(5,"Invoices History"),A.k0s()(),A.j41(6,"div",31)(7,"mat-form-field",32)(8,"mat-label"),A.EFF(9,"Filter By"),A.k0s(),A.j41(10,"mat-select",33),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,VA,2,2,"mat-option",34),A.k0s()()(),A.j41(13,"mat-form-field",32)(14,"mat-label"),A.EFF(15,"Filter"),A.k0s(),A.j41(16,"input",35),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(17,"div",36),A.DNE(18,_A,1,0,"mat-progress-bar",37),A.j41(19,"table",38,1),A.qex(21,39),A.DNE(22,Qt,1,0,"th",40)(23,vA,4,3,"td",41),A.bVm(),A.qex(24,42),A.DNE(25,Bt,2,0,"th",43)(26,Z,3,4,"td",41),A.bVm(),A.qex(27,44),A.DNE(28,k,2,0,"th",43)(29,U,3,4,"td",41),A.bVm(),A.qex(30,45),A.DNE(31,hA,2,0,"th",43)(32,q,2,1,"td",41),A.bVm(),A.qex(33,46),A.DNE(34,GA,2,0,"th",43)(35,At,4,4,"td",41),A.bVm(),A.qex(36,47),A.DNE(37,O,2,0,"th",43)(38,qA,4,4,"td",41),A.bVm(),A.qex(39,48),A.DNE(40,nt,2,0,"th",43)(41,MA,4,4,"td",41),A.bVm(),A.qex(42,49),A.DNE(43,jA,2,0,"th",43)(44,ot,4,4,"td",41),A.bVm(),A.qex(45,50),A.DNE(46,Tt,2,0,"th",51)(47,yt,4,4,"td",41),A.bVm(),A.qex(48,52),A.DNE(49,Ut,2,0,"th",51)(50,Lt,4,4,"td",41),A.bVm(),A.qex(51,53),A.DNE(52,sn,6,0,"th",54)(53,$t,8,0,"td",55),A.bVm(),A.qex(54,56),A.DNE(55,Re,4,3,"td",57),A.bVm(),A.DNE(56,yn,1,3,"tr",58)(57,Mn,1,0,"tr",59)(58,ee,1,0,"tr",60),A.k0s()(),A.nrm(59,"mat-paginator",61),A.k0s()}if(2&i){const t=A.XpG();A.R7$(3),A.Y8G("icon",t.faHistory),A.R7$(7),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,CA).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter),A.R7$(2),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.invoices)("ngClass",A.eq3(16,DA,""!==t.errorMessage)),A.R7$(37),A.Y8G("matFooterRowDef",A.lJ4(18,NA)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns),A.R7$(),A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Te=(()=>{class i{constructor(t,l,c,j,PA,WA,an,fe){this.logger=t,this.store=l,this.decimalPipe=c,this.commonService=j,this.rtlEffects=PA,this.datePipe=WA,this.actions=an,this.camelCaseWithReplace=fe,this.calledFrom="transactions",this.faHistory=u.Int,this.nodePageDefs=r.Jd,this.convertedCurrency=null,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:r.md,sortBy:"expires_at",sortOrder:r.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new F.I6([]),this.invoiceJSONArr=[],this.information={},this.private=!1,this.expiryStep=100,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Pj).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=t.listInvoices.invoices||[],this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(t)}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,v.p)(t=>t.type===r.TC.SET_LOOKUP_CLN||t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.TC.SET_LOOKUP_CLN&&this.invoiceJSONArr&&this.sort&&this.paginator&&t.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(t.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,AA.xO)({payload:{data:{pageSize:this.pageSize,component:L}}}))}onAddInvoice(t){this.invoiceValue||(this.invoiceValue=0);const l=this.expiry?this.expiry:r.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,_.VK)({payload:{label:this.newlyAddedInvoiceMemo,amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:l,exposeprivatechannels:this.private}})),this.resetData()}onDeleteExpiredInvoices(){this.store.dispatch((0,AA.I1)({payload:{data:{type:"CONFIRM",titleMessage:"Delete Expired Invoices",noBtnText:"Cancel",yesBtnText:"Delete Invoices"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(t=>{t&&this.store.dispatch((0,_.a5)({payload:null}))})}onInvoiceClick(t){this.store.dispatch((0,AA.xO)({payload:{data:{invoice:{amount_msat:t.amount_msat,label:t.label,expires_at:t.expires_at,paid_at:t.paid_at,bolt11:t.bolt11,payment_hash:t.payment_hash,description:t.description,status:t.status,amount_received_msat:t.amount_received_msat},newlyAdded:!1,component:rA.y}}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.invoices.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=this.datePipe.transform(new Date(1e3*(t.paid_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+this.datePipe.transform(new Date(1e3*(t.expires_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+(t.bolt12?"bolt12":t.bolt11?"bolt11":"keysend")+JSON.stringify(t).toLowerCase();break;case"status":c="paid"===t?.status?"paid":"unpaid"===t?.status?"unpaid":"expired";break;case"expires_at":case"paid_at":c=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"type":c=t?.bolt12?"bolt12":t?.bolt11&&t?.label?.includes("keysend-")?"keysend":"bolt11";break;case"msatoshi":c=((t.amount_msat||0)/1e3).toString()||"";break;case"msatoshi_received":c=((t.amount_received_msat||0)/1e3).toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"status"===this.selFilterBy||"type"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,r.BQ.SATS,r.BQ.OTHER,this.selNode?.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[6])).subscribe({next:t=>{this.convertedCurrency=t,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,r.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.invoiceValueHint="Conversion Error: "+t}}))}onRefreshInvoice(t){this.store.dispatch((0,_.Yi)({payload:t.label}))}updateInvoicesData(t){this.invoiceJSONArr=this.invoiceJSONArr?.map(l=>l.label===t.label?t:l)}loadInvoicesTable(t){this.invoices=new F.I6(t?[...t]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(l,c)=>{switch(c){case"msatoshi":return l.amount_msat;case"msatoshi_received":return l.amount_received_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},this.invoices.paginator=this.paginator,this.applyFilter(),this.setFilterPredicate()}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(st.QX),A.rXU(h.h),A.rXU(QA.H),A.rXU(st.vh),A.rXU(fA.En),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-lightning-invoices-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},inputs:{calledFrom:"calledFrom"},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["table",""],["fxLayout","column","fxFlex","110","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","tabindex","2","name","description",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","name","invoiceValue","type","number","tabindex","3",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-stroked-button","","color","warn","tabindex","7","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","expires_at"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","paid_at"],["matColumnDef","type"],["matColumnDef","description"],["matColumnDef","label"],["matColumnDef","payment_hash"],["matColumnDef","bolt11"],["matColumnDef","msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi_received"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Paid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Expired","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Paid","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Expired","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(l,c){1&l&&(A.j41(0,"div",2),A.DNE(1,pt,22,8,"form",3)(2,Yt,5,0,"div",4)(3,An,60,19,"div",5),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf","home"===c.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===c.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===c.calledFrom))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,IA.MV,IA.yw,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld,BA.V,st.QX,st.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();var Fe=Pt(6697),Qe=Pt(1534),In=Pt(2765),wn=Pt(5951);const kt=["sendPaymentForm"],zt=["paymentAmt"],Wt=["offerAmt"],ae=["paymentReq"],mn=["offerReq"];function dn(i,D){if(1&i&&(A.j41(0,"mat-radio-button",26),A.EFF(1,"Offer"),A.k0s()),2&i){const t=A.XpG();A.FS9("value",t.paymentTypes.OFFER)}}function Tn(i,D){1&i&&A.eu8(0)}function Wn(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.paymentError)}}function ti(i,D){if(1&i&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,Wn,2,1,"span",29),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.paymentError)}}function xn(i,D){if(1&i&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function ZA(i,D){if(1&i&&A.nrm(0,"span",39),2&i){const t=A.XpG(3);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function SA(i,D){if(1&i&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,xn,2,1,"span",35)(3,ZA,1,1,"span",36),A.EFF(4),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI(" ",t.paymentDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),A.R7$(),A.SpI(" ",t.paymentDecodedHintPost," ")}}function it(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function RA(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.paymentDecodedHint)}}function TA(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Payment amount is required."),A.k0s())}function UA(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",10)(1,"mat-label"),A.EFF(2,"Amount (Sats)"),A.k0s(),A.j41(3,"input",40,5),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG(2);return A.DH7(j.paymentAmount,c)||(j.paymentAmount=c),A.Njj(c)}),A.bIt("change",function(c){A.eBV(t);const j=A.XpG(2);return A.Njj(j.onAmountChange(c))}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6,"It is a zero amount invoice, enter amount to be paid."),A.k0s(),A.DNE(7,TA,2,0,"mat-error",29),A.k0s()}if(2&i){const t=A.XpG(2);A.R7$(3),A.R50("ngModel",t.paymentAmount),A.R7$(4),A.Y8G("ngIf",!t.paymentAmount)}}function kA(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Payment Request"),A.k0s(),A.j41(3,"textarea",31,4),A.bIt("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onPaymentRequestEntry(c))})("matTextareaAutosize",function(){return A.eBV(t),A.Njj(!0)}),A.k0s(),A.DNE(5,SA,5,4,"mat-hint",32)(6,it,2,0,"mat-error",29)(7,RA,2,1,"mat-error",29),A.k0s(),A.DNE(8,UA,8,2,"mat-form-field",33)}if(2&i){const t=A.sdS(4),l=A.XpG();A.R7$(3),A.Y8G("ngModel",l.paymentRequest),A.R7$(2),A.Y8G("ngIf",l.paymentRequest&&""!==l.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",!l.paymentRequest),A.R7$(),A.Y8G("ngIf",null==t.errors?null:t.errors.decodeError),A.R7$(),A.Y8G("ngIf",l.zeroAmtInvoice)}}function et(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Pubkey is required."),A.k0s())}function LA(i,D){1&i&&(A.j41(0,"span",45),A.EFF(1,"= "),A.k0s())}function at(i,D){if(1&i&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function XA(i,D){if(1&i&&A.nrm(0,"span",39),2&i){const t=A.XpG(2);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function dt(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Keysend amount is required."),A.k0s())}function xt(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Pubkey"),A.k0s(),A.j41(3,"input",41),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.pubkey,c)||(j.pubkey=c),A.Njj(c)}),A.k0s(),A.DNE(4,et,2,0,"mat-error",29),A.k0s(),A.j41(5,"mat-form-field",30)(6,"mat-label"),A.EFF(7,"Amount"),A.k0s(),A.j41(8,"input",42,6),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.keysendAmount,c)||(j.keysendAmount=c),A.Njj(c)}),A.bIt("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onKeysendAmountChange())}),A.k0s(),A.j41(10,"span",43),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",34),A.DNE(13,LA,2,0,"span",44)(14,at,2,1,"span",35)(15,XA,1,1,"span",36),A.EFF(16),A.k0s(),A.DNE(17,dt,2,0,"mat-error",29),A.k0s()}if(2&i){const t=A.XpG();A.R7$(3),A.R50("ngModel",t.pubkey),A.R7$(),A.Y8G("ngIf",!t.pubkey),A.R7$(4),A.R50("ngModel",t.keysendAmount),A.R7$(5),A.Y8G("ngIf",""!==t.keysendValueHint),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.keysendValueHint),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.keysendValueHint),A.R7$(),A.SpI(" ",t.keysendValueHint," "),A.R7$(),A.Y8G("ngIf",!t.keysendAmount)}}function St(i,D){if(1&i&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function jt(i,D){if(1&i&&A.nrm(0,"span",39),2&i){const t=A.XpG(3);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function Xt(i,D){if(1&i&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,St,2,1,"span",35)(3,jt,1,1,"span",36),A.EFF(4),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI(" ",t.offerDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.offerDecodedHintPre),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.offerDecodedHintPre),A.R7$(),A.SpI(" ",t.offerDecodedHintPost," ")}}function ne(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Offer request is required."),A.k0s())}function Et(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.offerDecodedHint)}}function Rt(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Offer amount is required."),A.k0s())}function Zt(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",10)(1,"mat-label"),A.EFF(2,"Amount (Sats)"),A.k0s(),A.j41(3,"input",51,8),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG(2);return A.DH7(j.offerAmount,c)||(j.offerAmount=c),A.Njj(c)}),A.bIt("change",function(c){A.eBV(t);const j=A.XpG(2);return A.Njj(j.onAmountChange(c))}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6,"It is a zero amount offer, enter amount to be paid."),A.k0s(),A.DNE(7,Rt,2,0,"mat-error",29),A.k0s()}if(2&i){const t=A.XpG(2);A.R7$(3),A.R50("ngModel",t.offerAmount),A.R7$(4),A.Y8G("ngIf",!t.offerAmount)}}function Ht(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",52)(1,"mat-label"),A.EFF(2,"Title to Save"),A.k0s(),A.j41(3,"input",53),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG(2);return A.DH7(j.offerTitle,c)||(j.offerTitle=c),A.Njj(c)}),A.k0s()()}if(2&i){const t=A.XpG(2);A.R7$(3),A.R50("ngModel",t.offerTitle)}}function ie(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Offer Request"),A.k0s(),A.j41(3,"textarea",46,7),A.bIt("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onPaymentRequestEntry(c))})("matTextareaAutosize",function(){return A.eBV(t),A.Njj(!0)}),A.k0s(),A.DNE(5,Xt,5,4,"mat-hint",32)(6,ne,2,0,"mat-error",29)(7,Et,2,1,"mat-error",29),A.k0s(),A.DNE(8,Zt,8,2,"mat-form-field",33),A.j41(9,"div",47)(10,"mat-checkbox",48),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.flgSaveToDB,c)||(j.flgSaveToDB=c),A.Njj(c)}),A.EFF(11,"Bookmark Offer"),A.k0s(),A.j41(12,"mat-icon",49),A.EFF(13,"info_outline"),A.k0s()(),A.DNE(14,Ht,4,1,"mat-form-field",50)}if(2&i){const t=A.sdS(4),l=A.XpG();A.R7$(3),A.Y8G("ngModel",l.offerRequest),A.R7$(2),A.Y8G("ngIf",l.offerRequest&&""!==l.offerDecodedHintPre),A.R7$(),A.Y8G("ngIf",!l.offerRequest),A.R7$(),A.Y8G("ngIf",null==t.errors?null:t.errors.decodeError),A.R7$(),A.Y8G("ngIf",l.zeroAmtOffer),A.R7$(2),A.R50("ngModel",l.flgSaveToDB),A.R7$(4),A.Y8G("ngIf",l.flgSaveToDB||""!==l.offerTitle)}}let Jt=(()=>{class i{set payReq(t){t&&(this.paymentReq=t)}set offrReq(t){t&&(this.offerReq=t)}constructor(t,l,c,j,PA,WA,an,fe){this.dialogRef=t,this.data=l,this.store=c,this.logger=j,this.commonService=PA,this.decimalPipe=WA,this.actions=an,this.dataService=fe,this.faExclamationTriangle=u.zpE,this.convertedCurrency=null,this.paymentTypes=r.Y0,this.paymentType=r.Y0.INVOICE,this.offerDecoded={},this.offerRequest="",this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.offerDescription="",this.offerIssuer="",this.offerTitle="",this.zeroAmtOffer=!1,this.offerInvoice=null,this.offerAmount=null,this.flgSaveToDB=!1,this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentAmount=null,this.pubkey="",this.keysendAmount=null,this.keysendValueHint="",this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=r.nv[0],this.feeLimitTypes=r.nv,this.paymentError="",this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){if(this.data&&this.data.paymentType)switch(this.paymentType=this.data.paymentType,this.paymentType){case r.Y0.INVOICE:this.paymentRequest=this.data.invoiceBolt11;break;case r.Y0.KEYSEND:this.pubkey=this.data.pubkeyKeysend;break;case r.Y0.OFFER:this.onPaymentRequestEntry(this.data.bolt12),this.offerTitle=this.data.offerTitle,this.flgSaveToDB=!1}this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.activeChannels=t.activeChannels,this.logger.info(t)}),this.actions.pipe((0,g.Q)(this.unSubs[3]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN||t.type===r.TC.SEND_PAYMENT_STATUS_CLN||t.type===r.TC.SET_OFFER_INVOICE_CLN)).subscribe(t=>{t.type===r.TC.SEND_PAYMENT_STATUS_CLN&&this.dialogRef.close(),t.type===r.TC.SET_OFFER_INVOICE_CLN&&(this.offerInvoice=t.payload,this.sendPayment()),t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.ERROR&&("SendPayment"===t.payload.action&&(delete this.paymentDecoded.amount_msat,this.paymentError=t.payload.message),"DecodePayment"===t.payload.action&&(this.paymentType===r.Y0.INVOICE&&(this.paymentDecodedHintPre="ERROR: "+t.payload.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})),this.paymentType===r.Y0.OFFER&&(this.offerDecodedHintPre="ERROR: "+t.payload.message,this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})),this.paymentType===r.Y0.KEYSEND&&(this.keysendValueHint="ERROR: "+t.payload.message)),"FetchOfferInvoice"===t.payload.action&&this.paymentType===r.Y0.OFFER&&(this.paymentError=t.payload.message))})}onSendPayment(){switch(this.paymentType){case r.Y0.KEYSEND:if(!this.pubkey||""===this.pubkey.trim()||!this.keysendAmount||this.keysendAmount<=0)return!0;this.keysendPayment();break;case r.Y0.INVOICE:if(!this.paymentRequest||this.zeroAmtInvoice&&(0===this.paymentAmount||!this.paymentAmount))return this.paymentReq.control.markAsTouched(),this.paymentAmt.control.markAsTouched(),!0;this.paymentDecoded.created_at?this.sendPayment():(this.resetInvoiceDetails(),this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,g.Q)(this.unSubs[4])).subscribe(t=>{"bolt12 offer"===t.type&&t.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=t,this.setPaymentDecodedDetails())}));break;case r.Y0.OFFER:if(!this.offerRequest||this.zeroAmtOffer&&(0===this.offerAmount||!this.offerAmount))return this.offerReq.control.markAsTouched(),this.offerAmt.control.markAsTouched(),!0;this.offerDecoded.offer_id?this.sendPayment():(this.resetOfferDetails(),this.dataService.decodePayment(this.offerRequest,!0).pipe((0,g.Q)(this.unSubs[5])).subscribe(t=>{"bolt11 invoice"===t.type&&t.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=t,this.setOfferDecodedDetails())}))}}keysendPayment(){this.keysendAmount&&this.store.dispatch((0,_.Fd)({payload:{uiMessage:r.MZ.SEND_KEYSEND,paymentType:r.Y0.KEYSEND,destination:this.pubkey,amount_msat:1e3*this.keysendAmount,fromDialog:!0}}))}sendPayment(){this.paymentError="",this.paymentType===r.Y0.INVOICE?this.store.dispatch((0,_.Fd)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!0}})):this.paymentType===r.Y0.OFFER&&(this.offerInvoice?this.offerAmount&&this.store.dispatch((0,_.Fd)({payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.OFFER,bolt11:this.offerInvoice.invoice,saveToDB:this.flgSaveToDB,bolt12:this.offerRequest,amount_msat:1e3*this.offerAmount,zeroAmtOffer:this.zeroAmtOffer,title:this.offerTitle,issuer:this.offerIssuer,description:this.offerDescription,fromDialog:!0}})):this.store.dispatch((0,_.Ew)(this.zeroAmtOffer&&this.offerAmount?{payload:{offer:this.offerRequest,amount_msat:1e3*this.offerAmount}}:{payload:{offer:this.offerRequest}})))}onPaymentRequestEntry(t){this.paymentType===r.Y0.INVOICE?(this.paymentRequest=t,this.resetInvoiceDetails()):this.paymentType===r.Y0.OFFER&&(this.offerRequest=t,this.resetOfferDetails()),t.length>100&&this.dataService.decodePayment(t,!0).pipe((0,g.Q)(this.unSubs[6])).subscribe(l=>{this.paymentType===r.Y0.INVOICE?"bolt12 offer"===l.type&&l.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=l,this.setPaymentDecodedDetails()):this.paymentType===r.Y0.OFFER&&("bolt11 invoice"===l.type&&l.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=l,this.setOfferDecodedDetails()))})}resetOfferDetails(){this.offerInvoice=null,this.offerAmount=null,this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.zeroAmtOffer=!1,this.paymentError="",this.offerReq&&this.offerReq.control.setErrors(null)}resetInvoiceDetails(){this.paymentAmount=null,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentError="",this.paymentReq&&this.paymentReq.control.setErrors(null)}onAmountChange(t){this.paymentType===r.Y0.INVOICE&&(delete this.paymentDecoded.amount_msat,this.paymentDecoded.amount_msat=+t.target.value),this.paymentType===r.Y0.OFFER&&(delete this.offerDecoded.offer_amount_msat,this.offerDecoded.offer_amount_msat=t.target.value)}onPaymentTypeChange(){this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.offerInvoice=null}setOfferDecodedDetails(){this.offerDecoded.offer_id&&!this.offerDecoded.offer_amount_msat?(this.offerDecoded.offer_amount_msat=0,this.zeroAmtOffer=!0,this.offerDescription=this.offerDecoded.offer_description||"",this.offerIssuer=this.offerDecoded.offer_issuer?this.offerDecoded.offer_issuer:"",this.offerDecodedHintPre="Zero Amount Offer | Description: "+this.offerDecoded.offer_description,this.offerDecodedHintPost=""):(this.zeroAmtOffer=!1,this.offerAmount=this.offerDecoded.offer_amount_msat?this.offerDecoded.offer_amount_msat/1e3:0,this.offerDescription=this.offerDecoded.offer_description||"",this.offerIssuer=this.offerDecoded.offer_issuer?this.offerDecoded.offer_issuer:"",this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(this.offerAmount,r.BQ.SATS,r.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[7])).subscribe({next:t=>{this.convertedCurrency=t,this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats (",this.offerDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,r.k.OTHER)+" "+this.convertedCurrency.unit+") | Description: "+this.offerDecoded.offer_description},error:t=>{this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.offer_description+". Unable to convert currency.",this.offerDecodedHintPost=""}}):(this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.offer_description,this.offerDecodedHintPost=""))}setPaymentDecodedDetails(){this.paymentDecoded.created_at&&!this.paymentDecoded.amount_msat?(this.paymentDecoded.amount_msat=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0,r.BQ.SATS,r.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[8])).subscribe({next:t=>{this.convertedCurrency=t,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,r.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:t=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))}resetData(){switch(this.paymentType){case r.Y0.KEYSEND:this.pubkey="",this.keysendValueHint="",this.keysendAmount=null;break;case r.Y0.INVOICE:this.paymentRequest="",this.paymentDecoded={},this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=r.nv[0],this.resetInvoiceDetails();break;case r.Y0.OFFER:this.offerRequest="",this.offerDecoded={},this.flgSaveToDB=!1,this.resetOfferDetails()}this.paymentError=""}onKeysendAmountChange(){this.selNode&&this.selNode.settings.fiatConversion&&(this.keysendValueHint="",this.keysendAmount&&this.keysendAmount>99&&this.commonService.convertCurrency(this.keysendAmount,r.BQ.SATS,r.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:t=>{this.convertedCurrency=t,this.keysendValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,r.k.OTHER)+" "+this.convertedCurrency.unit},error:t=>{this.keysendValueHint="Conversion Error: "+t}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(C.gP),A.rXU(h.h),A.rXU(st.QX),A.rXU(fA.En),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-lightning-send-payments"]],viewQuery:function(l,c){if(1&l&&(A.GBs(kt,5),A.GBs(zt,5),A.GBs(Wt,5),A.GBs(ae,5),A.GBs(mn,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first),A.mGM(j=A.lsd())&&(c.paymentAmt=j.first),A.mGM(j=A.lsd())&&(c.offerAmt=j.first),A.mGM(j=A.lsd())&&(c.payReq=j.first),A.mGM(j=A.lsd())&&(c.offrReq=j.first)}},decls:30,vars:7,consts:[["sendPaymentForm","ngForm"],["invoiceBlock",""],["keysendBlock",""],["offerBlock",""],["paymentReq","ngModel"],["paymentAmt","ngModel"],["keysendAmt","ngModel"],["offerReq","ngModel"],["offerAmt","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","12","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["color","primary","name","paymentType","fxFlex","100","fxLayoutAlign","start start",1,"my-1",3,"ngModelChange","change","ngModel"],["fxFlex","20","tabindex","1",3,"value"],["fxFlex","20","tabindex","2",3,"value"],["fxFlex","20","tabindex","3",3,"value",4,"ngIf"],["fxLayoutAlign","space-between stretch","fxLayout","column",3,"submit","reset"],[4,"ngTemplateOutlet"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],["fxFlex","20","tabindex","3",3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","rows","4","name","paymentRequest","tabindex","4","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","5","required","",3,"ngModelChange","change","ngModel"],["autoFocus","","matInput","","name","pubkey","tabindex","4","required","",3,"ngModelChange","ngModel"],["matInput","","name","keysendAmount","tabindex","5","required","",3,"ngModelChange","keyup","ngModel"],["matSuffix",""],["class","mr-3px",4,"ngIf"],[1,"mr-3px"],["autoFocus","","matInput","","rows","4","name","offerRequest","tabindex","4","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["fxFlex","none","tabindex","6","color","primary",3,"ngModelChange","ngModel"],["matTooltip","Save offer in database for future payments","matTooltipPosition","below","fxFlex","none",1,"info-icon"],["fxFlex","100","class","mt-1",4,"ngIf"],["matInput","","name","amountoffer","tabindex","5","required","",3,"ngModelChange","change","ngModel"],["fxFlex","100",1,"mt-1"],["matInput","","tabindex","7",3,"ngModelChange","ngModel"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",9)(1,"div",10)(2,"mat-card-header",11)(3,"div",12)(4,"span",13),A.EFF(5,"Send Payment"),A.k0s()(),A.j41(6,"button",14),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",15)(9,"mat-radio-group",16),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.paymentType,WA)||(c.paymentType=WA),A.Njj(WA)}),A.bIt("change",function(){return A.eBV(j),A.Njj(c.onPaymentTypeChange())}),A.j41(10,"mat-radio-button",17),A.EFF(11,"Invoice"),A.k0s(),A.j41(12,"mat-radio-button",18),A.EFF(13,"Keysend"),A.k0s(),A.DNE(14,dn,2,1,"mat-radio-button",19),A.k0s(),A.j41(15,"form",20,0),A.bIt("submit",function(){return A.eBV(j),A.Njj(c.onSendPayment())})("reset",function(){return A.eBV(j),A.Njj(c.resetData())}),A.DNE(17,Tn,1,0,"ng-container",21)(18,ti,3,2,"div",22),A.j41(19,"div",23)(20,"button",24),A.EFF(21,"Clear Fields"),A.k0s(),A.j41(22,"button",25),A.EFF(23,"Send Payment"),A.k0s()()()()()(),A.DNE(24,kA,9,5,"ng-template",null,1,A.C5r)(26,xt,18,8,"ng-template",null,2,A.C5r)(28,ie,15,7,"ng-template",null,3,A.C5r)}if(2&l){const j=A.sdS(25),PA=A.sdS(27),WA=A.sdS(29);A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.R50("ngModel",c.paymentType),A.R7$(),A.FS9("value",c.paymentTypes.INVOICE),A.R7$(2),A.FS9("value",c.paymentTypes.KEYSEND),A.R7$(2),A.Y8G("ngIf",c.selNode.settings.enableOffers),A.R7$(3),A.Y8G("ngTemplateOutlet",c.paymentType===c.paymentTypes.KEYSEND?PA:c.paymentType===c.paymentTypes.OFFER?WA:j),A.R7$(),A.Y8G("ngIf",""!==c.paymentError)}},dependencies:[st.bT,st.T3,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,gA.tx,R.$z,p.m2,p.MM,In.So,y.An,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,wn.VT,wn._g,HA.oV,J.N]})}return i})();const ue=["sendPaymentForm"],se=()=>["all"],ve=i=>({"error-border":i}),Oe=()=>["no_payment"],ge=i=>({width:i}),xe=i=>({"display-none":i});function Ne(i,D){if(1&i&&(A.j41(0,"span",18),A.nrm(1,"fa-icon",19),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("icon",t.convertedCurrency.symbol)}}function qe(i,D){if(1&i&&A.nrm(0,"span",20),2&i){const t=A.XpG(3);A.Y8G("innerHTML",t.convertedCurrency.symbol,A.npT)}}function Dn(i,D){if(1&i&&(A.j41(0,"mat-hint",15),A.EFF(1),A.DNE(2,Ne,2,1,"span",16)(3,qe,1,1,"span",17),A.EFF(4),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI(" ",t.paymentDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"FA"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",t.convertedCurrency&&"SVG"===t.convertedCurrency.iconType&&""!==t.paymentDecodedHintPre),A.R7$(),A.SpI(" ",t.paymentDecodedHintPost," ")}}function tn(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function Qn(i,D){if(1&i){const t=A.RV6();A.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),A.EFF(4,"Payment Request"),A.k0s(),A.j41(5,"textarea",9,1),A.bIt("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onPaymentRequestEntry(c))})("matTextareaAutosize",function(){return A.eBV(t),A.Njj(!0)}),A.k0s(),A.DNE(7,Dn,5,4,"mat-hint",10)(8,tn,2,0,"mat-error",11),A.k0s(),A.j41(9,"div",12)(10,"button",13),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.resetData())}),A.EFF(11,"Clear Field"),A.k0s(),A.j41(12,"button",14),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSendPayment())}),A.EFF(13,"Send Payment"),A.k0s()()()}if(2&i){const t=A.XpG();A.R7$(5),A.Y8G("ngModel",t.paymentRequest),A.R7$(2),A.Y8G("ngIf",t.paymentRequest&&""!==t.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",!t.paymentRequest)}}function Yn(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",21)(1,"button",14),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.openSendPaymentModal())}),A.EFF(2,"Send Payment"),A.k0s()()}}function en(i,D){if(1&i&&(A.j41(0,"mat-option",70),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function gn(i,D){1&i&&A.nrm(0,"mat-progress-bar",71)}function on(i,D){1&i&&A.nrm(0,"th",72)}function Mi(i,D){1&i&&A.nrm(0,"span",76)}function Ii(i,D){1&i&&A.nrm(0,"span",77)}function Kn(i,D){if(1&i&&(A.j41(0,"td",73),A.DNE(1,Mi,1,0,"span",74)(2,Ii,1,0,"span",75),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf","complete"===t.status),A.R7$(),A.Y8G("ngIf","complete"!==t.status)}}function Di(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Created At"),A.k0s())}function vi(i,D){if(1&i&&(A.j41(0,"td",73),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==t?null:t.created_at),"dd/MMM/y HH:mm")," ")}}function jn(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Type"),A.k0s())}function Ci(i,D){if(1&i&&(A.j41(0,"td",73),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11?"Bolt11":"Keysend")}}function ei(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Payment Hash"),A.k0s())}function Sn(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash)}}function sa(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Invoice"),A.k0s())}function dA(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.bolt11)}}function H(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Label"),A.k0s())}function T(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.label)}}function X(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Destination"),A.k0s())}function V(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.destination)}}function uA(i,D){1&i&&(A.j41(0,"th",78),A.EFF(1,"Memo"),A.k0s())}function mA(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.memo)}}function tt(i,D){1&i&&(A.j41(0,"th",81),A.EFF(1,"Sats Sent"),A.k0s())}function rt(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.amount_sent_msat)/1e3,"1.0-4"))}}function ut(i,D){1&i&&(A.j41(0,"th",81),A.EFF(1,"Sats Received"),A.k0s())}function Ct(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.amount_msat)/1e3,"1.0-4"))}}function Mt(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",83)(1,"div",84)(2,"mat-select",85),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",86),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Dt(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",87)(1,"button",88),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onPaymentClick(c))}),A.EFF(2,"View Info"),A.k0s()()}}function Ft(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No payment available."),A.k0s())}function Ot(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting payments..."),A.k0s())}function Vt(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function Ae(i,D){if(1&i&&(A.j41(0,"td",89),A.DNE(1,Ft,2,0,"p",11)(2,Ot,2,0,"p",11)(3,Vt,2,1,"p",11),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",!(null!=t.payments&&t.payments.data&&null!=t.payments&&null!=t.payments.data&&t.payments.data.length||(null==t.apiCallStatus?null:t.apiCallStatus.status)!==t.apiCallStatusEnum.COMPLETED)),A.R7$(),A.Y8G("ngIf",!(null!=t.payments&&t.payments.data&&null!=t.payments&&null!=t.payments.data&&t.payments.data.length||(null==t.apiCallStatus?null:t.apiCallStatus.status)!==t.apiCallStatusEnum.INITIATED)),A.R7$(),A.Y8G("ngIf",!(null!=t.payments&&t.payments.data&&null!=t.payments&&null!=t.payments.data&&t.payments.data.length||(null==t.apiCallStatus?null:t.apiCallStatus.status)!==t.apiCallStatusEnum.ERROR))}}function Be(i,D){1&i&&A.nrm(0,"span",76)}function Ye(i,D){1&i&&A.nrm(0,"span",77)}function Ze(i,D){1&i&&A.nrm(0,"span",76)}function me(i,D){1&i&&A.nrm(0,"span",77)}function Ve(i,D){if(1&i&&(A.j41(0,"span",90),A.DNE(1,Ze,1,0,"span",74)(2,me,1,0,"span",75),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf","complete"===t.status),A.R7$(),A.Y8G("ngIf","complete"!==t.status)}}function hn(i,D){if(1&i&&(A.qex(0),A.DNE(1,Ve,3,2,"span",91),A.bVm()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function We(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",90),A.DNE(2,Be,1,0,"span",74)(3,Ye,1,0,"span",75),A.k0s(),A.DNE(4,hn,2,1,"ng-container",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.Y8G("ngIf","complete"===t.status),A.R7$(),A.Y8G("ngIf","complete"!==t.status),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function En(i,D){if(1&i&&(A.j41(0,"span",90),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*t.created_at,"dd/MMM/y HH:mm")," ")}}function vn(i,D){if(1&i&&(A.qex(0),A.DNE(1,En,3,4,"span",91),A.bVm()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Xn(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,vn,2,1,"ng-container",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" Total Attempts: ",null==t?null:t.total_parts," "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function On(i,D){1&i&&A.nrm(0,"span",90)}function bi(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,On,1,0,"span",91),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Jn(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,bi,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(null!=t&&t.bolt12?"Bolt12":null!=t&&t.bolt11?"Bolt11":"Keysend"),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function ni(i,D){if(1&i&&(A.j41(0,"span",90),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" Part ID ",t.partid?t.partid:0," ")}}function Zn(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,ni,2,1,"span",91),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function qn(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Zn,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Hn(i,D){if(1&i&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&i){const t=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,ge,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function Ri(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Hn,2,3,"span",93),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Ti(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Ri,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.bolt11),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Ui(i,D){if(1&i&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&i){const t=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,ge,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function Fi(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Ui,2,3,"span",93),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Li(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Fi,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.label),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Pi(i,D){if(1&i&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&i){const t=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,ge,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function ir(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Pi,2,3,"span",93),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function zi(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,ir,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.destination),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Vn(i,D){if(1&i&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&i){const t=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,ge,t.screenSize===t.screenSizeEnum.XS?"6rem":t.colWidth))}}function Gi(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Vn,2,3,"span",93),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function ii(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Gi,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,ge,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.memo),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Rr(i,D){if(1&i&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,t.amount_sent_msat/1e3,t.amount_sent_msat<1e3?"1.0-4":"1.0-0")," ")}}function Tr(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Rr,3,4,"span",96),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Bs(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,Tr,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,2,(null==t?null:t.amount_sent_msat)/1e3,(null==t?null:t.amount_sent_msat)<1e3?"1.0-4":"1.0-0")),A.R7$(2),A.Y8G("ngIf",t.is_expanded)}}function us(i,D){if(1&i&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,t.amount_msat/1e3,t.amount_msat<1e3?"1.0-4":"1.0-0")," ")}}function fs(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,us,3,4,"span",96),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function hs(i,D){if(1&i&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,fs,2,1,"span",11),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,2,(null==t?null:t.amount_msat)/1e3,(null==t?null:t.amount_msat)<1e3?"1.0-4":"1.0-0")),A.R7$(2),A.Y8G("ngIf",t.is_expanded)}}function Es(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",100)(1,"button",101),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(4);return A.Njj(j.onPaymentClick(c))}),A.EFF(2),A.k0s()()}if(2&i){const t=D.$implicit;A.R7$(2),A.SpI("View ",t.partid?t.partid:0,"")}}function oa(i,D){if(1&i&&(A.j41(0,"div"),A.DNE(1,Es,3,1,"div",99),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.mpps)}}function Cs(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",73)(1,"span",97)(2,"button",98),A.bIt("click",function(){const c=A.eBV(t).$implicit;return A.Njj(c.is_expanded=!c.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,oa,2,1,"div",11),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(3),A.JRh(t.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function la(i,D){1&i&&A.nrm(0,"tr",102)}function ca(i,D){if(1&i&&A.nrm(0,"tr",103),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,xe,(null==t.payments?null:t.payments.data)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)&&(null==t.payments||null==t.payments.data?null:t.payments.data.length)>0))}}function ws(i,D){1&i&&A.nrm(0,"tr",104)}function ds(i,D){1&i&&A.nrm(0,"tr",102)}function Qs(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",22)(1,"div",23)(2,"div",24),A.nrm(3,"fa-icon",25),A.j41(4,"span",26),A.EFF(5,"Payments History"),A.k0s()(),A.j41(6,"div",27)(7,"mat-form-field",28)(8,"mat-label"),A.EFF(9,"Filter By"),A.k0s(),A.j41(10,"mat-select",29),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,en,2,2,"mat-option",30),A.k0s()()(),A.j41(13,"mat-form-field",28)(14,"mat-label"),A.EFF(15,"Filter"),A.k0s(),A.j41(16,"input",31),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(17,"div",32)(18,"div",33),A.DNE(19,gn,1,0,"mat-progress-bar",34),A.j41(20,"table",35,2),A.qex(22,36),A.DNE(23,on,1,0,"th",37)(24,Kn,3,2,"td",38),A.bVm(),A.qex(25,39),A.DNE(26,Di,2,0,"th",40)(27,vi,3,4,"td",38),A.bVm(),A.qex(28,41),A.DNE(29,jn,2,0,"th",40)(30,Ci,2,1,"td",38),A.bVm(),A.qex(31,42),A.DNE(32,ei,2,0,"th",40)(33,Sn,4,4,"td",38),A.bVm(),A.qex(34,43),A.DNE(35,sa,2,0,"th",40)(36,dA,4,4,"td",38),A.bVm(),A.qex(37,44),A.DNE(38,H,2,0,"th",40)(39,T,4,4,"td",38),A.bVm(),A.qex(40,45),A.DNE(41,X,2,0,"th",40)(42,V,4,4,"td",38),A.bVm(),A.qex(43,46),A.DNE(44,uA,2,0,"th",40)(45,mA,4,4,"td",38),A.bVm(),A.qex(46,47),A.DNE(47,tt,2,0,"th",48)(48,rt,4,4,"td",38),A.bVm(),A.qex(49,49),A.DNE(50,ut,2,0,"th",48)(51,Ct,4,4,"td",38),A.bVm(),A.qex(52,50),A.DNE(53,Mt,6,0,"th",51)(54,Dt,3,0,"td",52),A.bVm(),A.qex(55,53),A.DNE(56,Ae,4,3,"td",54),A.bVm(),A.qex(57,55),A.DNE(58,We,5,3,"td",38),A.bVm(),A.qex(59,56),A.DNE(60,Xn,4,2,"td",38),A.bVm(),A.qex(61,57),A.DNE(62,Jn,4,2,"td",38),A.bVm(),A.qex(63,58),A.DNE(64,qn,5,5,"td",38),A.bVm(),A.qex(65,59),A.DNE(66,Ti,5,5,"td",38),A.bVm(),A.qex(67,60),A.DNE(68,Li,5,5,"td",38),A.bVm(),A.qex(69,61),A.DNE(70,zi,5,5,"td",38),A.bVm(),A.qex(71,62),A.DNE(72,ii,5,5,"td",38),A.bVm(),A.qex(73,63),A.DNE(74,Bs,5,5,"td",38),A.bVm(),A.qex(75,64),A.DNE(76,hs,5,5,"td",38),A.bVm(),A.qex(77,65),A.DNE(78,Cs,5,2,"td",38),A.bVm(),A.DNE(79,la,1,0,"tr",66)(80,ca,1,3,"tr",67)(81,ws,1,0,"tr",68)(82,ds,1,0,"tr",66),A.k0s()()(),A.nrm(83,"mat-paginator",69),A.k0s()}if(2&i){const t=A.XpG();A.R7$(3),A.Y8G("icon",t.faHistory),A.R7$(7),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(18,se).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter),A.R7$(3),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.payments)("ngClass",A.eq3(19,ve,""!==t.errorMessage)),A.R7$(59),A.Y8G("matRowDefColumns",t.mppColumns)("matRowDefWhen",t.is_group),A.R7$(),A.Y8G("matFooterRowDef",A.lJ4(21,Oe)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)("matRowDefWhen",!t.is_group),A.R7$(),A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let ga=(()=>{class i{constructor(t,l,c,j,PA,WA,an,fe,cn){this.logger=t,this.commonService=l,this.store=c,this.rtlEffects=j,this.decimalPipe=PA,this.titleCasePipe=WA,this.datePipe=an,this.dataService=fe,this.camelCaseWithReplace=cn,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:r.md,sortBy:"created_at",sortOrder:r.oi.DESCENDING},this.faHistory=u.Int,this.newlyAddedPayment="",this.information={},this.payments=new F.I6([]),this.paymentJSONArr=[],this.displayedColumns=[],this.mppColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.mppColumns=[],this.displayedColumns.map(l=>this.mppColumns.push("group_"+l)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns),this.logger.info(this.mppColumns)}),this.store.select(E.KT).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=t.payments||[],this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}is_group(t,l){return l.is_group||!1}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.created_at?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,g.Q)(this.unSubs[4])).subscribe(t=>{this.paymentDecoded=t,this.paymentDecoded.created_at?(this.paymentDecoded.amount_msat||(this.paymentDecoded.amount_msat=0),this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded?.payment_hash||"",this.paymentDecoded.amount_msat&&0!==this.paymentDecoded.amount_msat?(this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"payee",value:this.paymentDecoded.payee,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"created_at",value:this.paymentDecoded.created_at,title:"Creation Date",width:50,type:r.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.amount_msat/1e3,title:"Amount (Sats)",width:50,type:r.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:r.UN.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,Fe.s)(1)).subscribe(l=>{l&&(this.store.dispatch((0,_.Fd)({payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"payee",value:this.paymentDecoded.payee,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"created_at",value:this.paymentDecoded.created_at,title:"Creation Date",width:40,type:r.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:r.UN.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",getInputs:[{placeholder:"Amount (Sats)",inputType:r.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,Fe.s)(1)).subscribe(c=>{c&&(this.paymentDecoded.amount_msat=c[0].inputValue,this.store.dispatch((0,_.Fd)({payload:{uiMessage:r.MZ.SEND_PAYMENT,paymentType:r.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*c[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(t){this.paymentRequest=t,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,g.Q)(this.unSubs[5])).subscribe(l=>{this.paymentDecoded=l,this.paymentDecoded.amount_msat?this.selNode?.settings.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.amount_msat/1e3||0,r.BQ.SATS,r.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[6])).subscribe({next:c=>{this.convertedCurrency=c,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,r.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:c=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}openSendPaymentModal(){this.store.dispatch((0,AA.xO)({payload:{data:{component:Jt}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}onPaymentClick(t){const l=[[{key:"payment_preimage",value:t.payment_preimage,title:"Payment Preimage",width:100,type:r.UN.STRING}],[{key:"id",value:t.id,title:"ID",width:20,type:r.UN.STRING},{key:"destination",value:t.destination,title:"Destination",width:80,type:r.UN.STRING}],[{key:"created_at",value:t.created_at,title:"Creation Date",width:50,type:r.UN.DATE_TIME},{key:"status",value:this.titleCasePipe.transform(t.status),title:"Status",width:50,type:r.UN.STRING}],[{key:"amount_msat",value:t.amount_msat,title:"Amount (mSats)",width:50,type:r.UN.NUMBER},{key:"amount_sent_msat",value:t.amount_sent_msat,title:"Amount Sent (mSats)",width:50,type:r.UN.NUMBER}]];t.bolt11&&""!==t.bolt11&&l?.unshift([{key:"bolt11",value:t.bolt11,title:"Bolt 11",width:100,type:r.UN.STRING}]),t.bolt12&&""!==t.bolt12&&l?.unshift([{key:"bolt12",value:t.bolt12,title:"Bolt 12",width:100,type:r.UN.STRING}]),t.memo&&""!==t.memo&&l?.splice(2,0,[{key:"memo",value:t.memo,title:"Memo",width:100,type:r.UN.STRING}]),t.hasOwnProperty("partid")?l?.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:80,type:r.UN.STRING},{key:"partid",value:t.partid,title:"Part ID",width:20,type:r.UN.STRING}]):l?.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.UN.STRING}]),this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Payment Information",message:l}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.payments.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.created_at?this.datePipe.transform(new Date(1e3*t.created_at),"dd/MMM/y HH:mm")?.toLowerCase():"")+(t.bolt12?"bolt12":t.bolt11?"bolt11":"keysend")+JSON.stringify(t).toLowerCase();break;case"status":c="complete"===t?.status?"completed":"incomplete/failed";break;case"created_at":c=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"msatoshi_sent":c=((t.amount_sent_msat||0)/1e3).toString()||"";break;case"msatoshi":c=((t.amount_msat||0)/1e3).toString()||"";break;case"type":c=t?.bolt12?"bolt12":t?.bolt11?"bolt11":"keysend";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"status"===this.selFilterBy||"type"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadPaymentsTable(t){this.payments=new F.I6(t?[...t]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(l,c)=>{switch(c){case"msatoshi_sent":return l.amount_sent_msat;case"msatoshi":return l.amount_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const l=JSON.parse(JSON.stringify(this.payments.data))?.reduce((c,j)=>j.mpps?c.concat(j.mpps):(delete j.is_group,delete j.is_expanded,delete j.total_parts,c.concat(j)),[]);this.commonService.downloadFile(l,"Payments")}}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(QA.H),A.rXU(st.QX),A.rXU(st.PV),A.rXU(st.vh),A.rXU(Qe.u),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-lightning-payments"]],viewQuery:function(l,c){if(1&l&&(A.GBs(ue,5),A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first),A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},inputs:{calledFrom:"calledFrom"},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["fxLayout","column","fxFlex","110","fxLayoutAlign","space-between stretch",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxLayout","row",1,"mt-3"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","created_at"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","type"],["matColumnDef","payment_hash"],["matColumnDef","bolt11"],["matColumnDef","label"],["matColumnDef","destination"],["matColumnDef","memo"],["matColumnDef","msatoshi_sent"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_status"],["matColumnDef","group_created_at"],["matColumnDef","group_type"],["matColumnDef","group_payment_hash"],["matColumnDef","group_bolt11"],["matColumnDef","group_label"],["matColumnDef","group_destination"],["matColumnDef","group_memo"],["matColumnDef","group_msatoshi_sent"],["matColumnDef","group_msatoshi"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Completed","matTooltipPosition","right",4,"ngIf"],["class","dot yellow","matTooltip","Incomplete/Failed","matTooltipPosition","right",4,"ngIf"],["matTooltip","Completed","matTooltipPosition","right",1,"dot","green"],["matTooltip","Incomplete/Failed","matTooltipPosition","right",1,"dot","yellow"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"mpp-row-span"],["fxLayoutAlign","start center","class","mpp-row-span",4,"ngFor","ngForOf"],["fxLayout","row",1,"ellipsis-parent","mpp-row-span",3,"ngStyle"],["fxLayoutAlign","start center","class","ellipsis-parent mpp-row-span",3,"ngStyle",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","mpp-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"mpp-row-span"],["fxLayoutAlign","end center","class","mpp-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"mpp-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-mpp-expand",3,"click"],["class","mpp-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"mpp-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-mpp-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(l,c){1&l&&(A.j41(0,"div",3),A.DNE(1,Qn,14,3,"form",4)(2,Yn,3,0,"div",5)(3,Qs,84,22,"div",6),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf","home"===c.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===c.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===c.calledFrom))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld,st.QX,st.vh],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-group_actions[_ngcontent-%COMP%] .mpp-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .mpp-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_status[_ngcontent-%COMP%] .mpp-row-span[_ngcontent-%COMP%]:not(:first-of-type), .mat-column-group_created_at[_ngcontent-%COMP%] .mpp-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.mpp-row-span[_ngcontent-%COMP%]{min-height:3rem}.mpp-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mpp-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.3rem;position:absolute}.mat-column-group_created_at[_ngcontent-%COMP%]{min-width:11rem}"]})}return i})();const Ba=i=>({backgroundColor:i});function ms(i,D){if(1&i&&A.nrm(0,"span",6),2&i){const t=A.XpG();A.Y8G("ngStyle",A.eq3(1,Ba,"#"+(null==t.information?null:t.information.color)))}}function ps(i,D){if(1&i&&(A.j41(0,"div")(1,"h4",1),A.EFF(2,"Color"),A.k0s(),A.j41(3,"div",2),A.nrm(4,"span",7),A.EFF(5),A.nI1(6,"uppercase"),A.k0s()()),2&i){const t=A.XpG();A.R7$(4),A.Y8G("ngStyle",A.eq3(4,Ba,"#"+(null==t.information?null:t.information.color))),A.R7$(),A.SpI(" ",A.bMT(6,2,null==t.information?null:t.information.color)," ")}}function Ms(i,D){if(1&i&&(A.j41(0,"span",2),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}let ua=(()=>{class i{constructor(t){this.commonService=t,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(t=>{this.chains.push(this.commonService.titleCase(t.chain||"")+" "+this.commonService.titleCase(t.network||""))}))}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(h.h))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},features:[A.OA$],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"]],template:function(l,c){1&l&&(A.j41(0,"div",0)(1,"div")(2,"h4",1),A.EFF(3,"Alias"),A.k0s(),A.j41(4,"div",2),A.EFF(5),A.DNE(6,ms,1,3,"span",3),A.k0s()(),A.DNE(7,ps,7,6,"div",4),A.j41(8,"div")(9,"h4",1),A.EFF(10,"Implementation"),A.k0s(),A.j41(11,"div",2),A.EFF(12),A.k0s()(),A.j41(13,"div")(14,"h4",1),A.EFF(15,"Chain"),A.k0s(),A.DNE(16,Ms,2,1,"span",5),A.k0s()()),2&l&&(A.R7$(5),A.SpI(" ",null==c.information?null:c.information.alias," "),A.R7$(),A.Y8G("ngIf",!c.showColorFieldSeparately),A.R7$(),A.Y8G("ngIf",c.showColorFieldSeparately),A.R7$(5),A.JRh(null!=c.information&&c.information.lnImplementation||null!=c.information&&c.information.version?(null==c.information?null:c.information.lnImplementation)+" "+(null==c.information?null:c.information.version):""),A.R7$(4),A.Y8G("ngForOf",c.chains))},dependencies:[st.Sq,st.bT,st.B3,n.DJ,n.sA,n.UI,I.eI,st.Pc]})}return i})();function Is(i,D){if(1&i&&(A.j41(0,"div",2)(1,"div")(2,"h4",3),A.EFF(3,"Lightning"),A.k0s(),A.j41(4,"div",4),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.nrm(7,"mat-progress-bar",5),A.k0s(),A.j41(8,"div")(9,"h4",3),A.EFF(10,"On-chain"),A.k0s(),A.j41(11,"div",4),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.nrm(14,"mat-progress-bar",5),A.k0s(),A.j41(15,"div")(16,"h4",3),A.EFF(17,"Total"),A.k0s(),A.j41(18,"div",4),A.EFF(19),A.nI1(20,"number"),A.k0s()()()),2&i){const t=A.XpG();A.R7$(5),A.SpI("",A.i5U(6,5,t.balances.lightning,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",t.balances.lightning/t.balances.total*100),A.R7$(5),A.SpI("",A.i5U(13,8,t.balances.onchain,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",t.balances.onchain/t.balances.total*100),A.R7$(5),A.SpI("",A.i5U(20,11,t.balances.total,"1.0-0")," Sats")}}function fa(i,D){if(1&i&&(A.j41(0,"div",6)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let Ds=(()=>{class i{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["class","mt-1","fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(l,c){if(1&l&&A.DNE(0,Is,21,14,"div",1)(1,fa,3,1,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,B.HM,st.QX]})}return i})();const vs=()=>["../routing"];function Fs(i,D){if(1&i&&(A.j41(0,"div")(1,"h4",4),A.EFF(2,"Transactions"),A.k0s(),A.j41(3,"div",5),A.EFF(4),A.nI1(5,"number"),A.k0s()()),2&i){const t=A.XpG(2);A.R7$(4),A.JRh(A.bMT(5,1,null==t.fees?null:t.fees.totalTxCount))}}function ys(i,D){1&i&&(A.j41(0,"div")(1,"h4",4),A.EFF(2,"Transactions"),A.k0s(),A.j41(3,"a",8),A.EFF(4," Go to Routing "),A.k0s()()),2&i&&(A.R7$(3),A.Y8G("routerLink",A.lJ4(1,vs)))}function _n(i,D){if(1&i&&(A.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A.EFF(4,"Total"),A.k0s(),A.j41(5,"div",5),A.EFF(6),A.nI1(7,"number"),A.k0s()()(),A.j41(8,"div",6),A.DNE(9,Fs,6,3,"div",7)(10,ys,5,2,"div",7),A.k0s()()),2&i){const t=A.XpG();A.R7$(6),A.SpI("",A.bMT(7,3,(null==t.fees?null:t.fees.feeCollected)/1e3)," Sats"),A.R7$(3),A.Y8G("ngIf",null==t.fees?null:t.fees.totalTxCount),A.R7$(),A.Y8G("ngIf",!(null!=t.fees&&t.fees.totalTxCount))}}function gi(i,D){if(1&i&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let Hi=(()=>{class i{constructor(){this.totalFees=[{name:"Total",value:0}]}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["class","mt-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],[4,"ngIf"],[1,"overflow-wrap","dashboard-info-value",3,"routerLink"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(l,c){if(1&l&&A.DNE(0,_n,11,5,"div",1)(1,gi,3,1,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,le.Wk,st.QX]})}return i})();function xs(i,D){if(1&i&&(A.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A.EFF(4,"Active"),A.k0s(),A.j41(5,"div",5),A.nrm(6,"span",6),A.EFF(7),A.nI1(8,"number"),A.k0s()(),A.j41(9,"div")(10,"h4",4),A.EFF(11,"Pending"),A.k0s(),A.j41(12,"div",5),A.nrm(13,"span",7),A.EFF(14),A.nI1(15,"number"),A.k0s()(),A.j41(16,"div")(17,"h4",4),A.EFF(18,"Inactive"),A.k0s(),A.j41(19,"div",5),A.nrm(20,"span",8),A.EFF(21),A.nI1(22,"number"),A.k0s()()(),A.j41(23,"div",3)(24,"div")(25,"h4",4),A.EFF(26,"Capacity"),A.k0s(),A.j41(27,"div",5),A.EFF(28),A.nI1(29,"number"),A.k0s()(),A.j41(30,"div")(31,"h4",4),A.EFF(32,"Capacity"),A.k0s(),A.j41(33,"div",5),A.EFF(34),A.nI1(35,"number"),A.k0s()(),A.j41(36,"div")(37,"h4",4),A.EFF(38,"Capacity"),A.k0s(),A.j41(39,"div",5),A.EFF(40),A.nI1(41,"number"),A.k0s()()()()),2&i){const t=A.XpG();A.R7$(7),A.JRh(A.bMT(8,6,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.channels)||0)),A.R7$(7),A.JRh(A.bMT(15,8,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.channels)||0)),A.R7$(7),A.JRh(A.bMT(22,10,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.channels)||0)),A.R7$(7),A.SpI("",A.i5U(29,12,(null==t.channelsStatus||null==t.channelsStatus.active?null:t.channelsStatus.active.capacity)||0,"1.0-0")," Sats"),A.R7$(6),A.SpI("",A.i5U(35,15,(null==t.channelsStatus||null==t.channelsStatus.pending?null:t.channelsStatus.pending.capacity)||0,"1.0-0")," Sats"),A.R7$(6),A.SpI("",A.i5U(41,18,(null==t.channelsStatus||null==t.channelsStatus.inactive?null:t.channelsStatus.inactive.capacity)||0,"1.0-0")," Sats")}}function Ys(i,D){if(1&i&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let ha=(()=>{class i{constructor(){this.channelsStatus={active:{},pending:{},inactive:{}}}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["class","mt-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-2"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(l,c){if(1&l&&A.DNE(0,xs,42,21,"div",1)(1,Ys,3,1,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,st.QX]})}return i})();var ri=Pt(1997);const Ss=()=>["../connections/channels/open"],Ns=(i,D)=>({filterColumn:i,filterValue:D});function bs(i,D){if(1&i&&(A.j41(0,"div",19)(1,"a",20),A.EFF(2),A.nI1(3,"slice"),A.k0s(),A.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),A.EFF(7,"Local:"),A.k0s(),A.EFF(8),A.nI1(9,"number"),A.k0s(),A.j41(10,"mat-hint",22),A.nrm(11,"fa-icon",23),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.j41(14,"mat-hint",24)(15,"strong",8),A.EFF(16,"Remote:"),A.k0s(),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.nrm(19,"mat-progress-bar",25),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(3);A.R7$(),A.FS9("matTooltip",t.alias||t.peer_id),A.FS9("matTooltipDisabled",(t.alias||t.peer_id).length<26),A.Y8G("routerLink",A.lJ4(23,Ss))("state",A.l_i(24,Ns,t.alias?"alias":"peer_id",t.alias||t.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,11,t.alias||t.peer_id,0,24),"",(t.alias||t.peer_id).length>25?"...":""," "),A.R7$(6),A.SpI("",A.i5U(9,15,t.to_us_msat/1e3||0,"1.0-0")," Sats"),A.R7$(3),A.Y8G("icon",l.faBalanceScale),A.R7$(),A.SpI(" (",A.bMT(13,18,t.balancedness||0),") "),A.R7$(5),A.SpI("",A.i5U(18,20,t.to_them_msat/1e3||0,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",t.to_us_msat&&t.to_us_msat>0?t.to_us_msat/(t.to_us_msat+t.to_them_msat)*100:0)}}function Rs(i,D){if(1&i&&(A.j41(0,"div",17),A.DNE(1,bs,20,27,"div",18),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngForOf",t.activeChannels)}}function Ts(i,D){if(1&i&&(A.j41(0,"div",3)(1,"div",4)(2,"span",5),A.EFF(3,"Total Capacity"),A.k0s(),A.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),A.EFF(7,"Local:"),A.k0s(),A.EFF(8),A.nI1(9,"number"),A.k0s(),A.j41(10,"mat-hint",9),A.nrm(11,"fa-icon",10),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.j41(14,"mat-hint",11)(15,"strong",8),A.EFF(16,"Remote:"),A.k0s(),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.nrm(19,"mat-progress-bar",12),A.k0s(),A.j41(20,"div",13),A.nrm(21,"mat-divider",14),A.k0s(),A.j41(22,"div",15),A.DNE(23,Rs,2,1,"div",16),A.k0s()()),2&i){const t=A.XpG(),l=A.sdS(2);A.R7$(8),A.SpI("",A.i5U(9,7,(null==t.channelBalances?null:t.channelBalances.localBalance)||0,"1.0-0")," Sats"),A.R7$(3),A.Y8G("icon",t.faBalanceScale),A.R7$(),A.SpI(" (",A.bMT(13,10,(null==t.channelBalances?null:t.channelBalances.balancedness)||0),") "),A.R7$(5),A.SpI("",A.i5U(18,12,(null==t.channelBalances?null:t.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),A.R7$(2),A.FS9("value",null!=t.channelBalances&&t.channelBalances.localBalance&&(null==t.channelBalances?null:t.channelBalances.localBalance)>0?+(null==t.channelBalances?null:t.channelBalances.localBalance)/(+(null==t.channelBalances?null:t.channelBalances.localBalance)+ +(null==t.channelBalances?null:t.channelBalances.remoteBalance))*100:0),A.R7$(4),A.Y8G("ngIf",t.activeChannels&&t.activeChannels.length>0)("ngIfElse",l)}}function Us(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",26),A.EFF(1," No channels available. "),A.j41(2,"button",27),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.goToChannels())}),A.EFF(3,"Open Channel"),A.k0s()()}}function Ls(i,D){if(1&i&&(A.j41(0,"div",28)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let Ps=(()=>{class i{constructor(t){this.router=t,this.faBalanceScale=u.GR4,this.faDumbbell=u.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",activeChannels:"activeChannels",sortBy:"sortBy",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(l,c){if(1&l&&A.DNE(0,Ts,24,15,"div",2)(1,Us,4,0,"ng-template",null,0,A.C5r)(3,Ls,3,1,"ng-template",null,1,A.C5r),2&l){const j=A.sdS(4);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.Sq,st.bT,Q.aY,n.DJ,n.sA,n.UI,R.$z,IA.MV,ri.q,B.HM,HA.oV,cA.Ld,le.Wk,st.P9,st.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]})}return i})();const zs=(i,D,t)=>({"mb-4":i,"mb-2":D,"mb-1":t}),Gs=()=>["../connections/channels/open"],Hs=(i,D)=>({filterColumn:i,filterValue:D});function ks(i,D){if(1&i&&(A.j41(0,"mat-hint",19)(1,"strong",20),A.EFF(2,"Capacity: "),A.k0s(),A.EFF(3),A.nI1(4,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(3),A.SpI("",A.i5U(4,1,t.to_them_msat/1e3||0,"1.0-0")," Sats")}}function js(i,D){if(1&i&&(A.j41(0,"mat-hint",19)(1,"strong",20),A.EFF(2,"Capacity: "),A.k0s(),A.EFF(3),A.nI1(4,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(3),A.SpI("",A.i5U(4,1,t.to_us_msat/1e3||0,"1.0-0")," Sats")}}function Os(i,D){if(1&i&&A.nrm(0,"mat-progress-bar",21),2&i){const t=A.XpG().$implicit,l=A.XpG(3);A.FS9("value",l.totalLiquidity>0?(t.to_them_msat/1e3||0)/l.totalLiquidity*100:0)}}function Js(i,D){if(1&i&&A.nrm(0,"mat-progress-bar",21),2&i){const t=A.XpG().$implicit,l=A.XpG(3);A.FS9("value",l.totalLiquidity>0?(t.to_us_msat/1e3||0)/l.totalLiquidity*100:0)}}function Ea(i,D){if(1&i&&(A.j41(0,"div",14)(1,"a",15),A.EFF(2),A.nI1(3,"slice"),A.k0s(),A.j41(4,"div",16),A.DNE(5,ks,5,4,"mat-hint",17)(6,js,5,4,"mat-hint",17),A.k0s(),A.DNE(7,Os,1,1,"mat-progress-bar",18)(8,Js,1,1,"mat-progress-bar",18),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(3);A.R7$(),A.FS9("matTooltip",t.alias||t.peer_id),A.FS9("matTooltipDisabled",(t.alias||t.peer_id).length<26),A.Y8G("routerLink",A.lJ4(14,Gs))("state",A.l_i(15,Hs,t.alias?"alias":"peer_id",t.alias||t.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,10,t.alias||t.peer_id,0,24),"",(t.alias||t.peer_id).length>25?"...":""," "),A.R7$(3),A.Y8G("ngIf","In"===l.direction),A.R7$(),A.Y8G("ngIf","Out"===l.direction),A.R7$(),A.Y8G("ngIf","In"===l.direction),A.R7$(),A.Y8G("ngIf","Out"===l.direction)}}function Vs(i,D){if(1&i&&(A.j41(0,"div",12),A.DNE(1,Ea,9,18,"div",13),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngForOf",t.activeChannels)}}function Ws(i,D){if(1&i&&(A.j41(0,"div",3)(1,"div",4)(2,"span",5),A.EFF(3,"Total Capacity"),A.k0s(),A.j41(4,"mat-hint",6),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.nrm(7,"mat-progress-bar",7),A.k0s(),A.j41(8,"div",8),A.nrm(9,"mat-divider",9),A.k0s(),A.j41(10,"div",10),A.DNE(11,Vs,2,1,"div",11),A.k0s()()),2&i){const t=A.XpG(),l=A.sdS(2);A.Y8G("ngClass",A.sMw(7,zs,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD,t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),A.R7$(5),A.SpI("",A.i5U(6,4,t.totalLiquidity,"1.0-0")," Sats"),A.R7$(6),A.Y8G("ngIf",t.activeChannels&&t.activeChannels.length>0)("ngIfElse",l)}}function Ks(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",25),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.goToChannels())}),A.EFF(1,"Open Channel"),A.k0s()}}function Xs(i,D){if(1&i&&(A.j41(0,"div",22)(1,"div",23)(2,"div"),A.EFF(3,"No channels available."),A.k0s(),A.DNE(4,Ks,2,0,"button",24),A.k0s()()),2&i){const t=A.XpG();A.R7$(4),A.Y8G("ngIf","Out"===t.direction)}}function Zs(i,D){if(1&i&&(A.j41(0,"div",26)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let qs=(()=>{class i{constructor(t,l){this.router=t,this.commonService=l,this.screenSize="",this.screenSizeEnum=r.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix),A.rXU(h.h))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",activeChannels:"activeChannels",errorMessage:"errorMessage"},decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],["fxLayout","column","fxFlex.gt-sm","88","fxFlex","84","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","class","w-100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100",1,"w-100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"routerLink","state","matTooltip","matTooltipDisabled"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","100","fxLayoutAlign","start center","class","font-size-90 color-primary",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"w-100","mt-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(l,c){if(1&l&&A.DNE(0,Ws,12,11,"div",2)(1,Xs,5,1,"ng-template",null,0,A.C5r)(3,Zs,3,1,"ng-template",null,1,A.C5r),2&l){const j=A.sdS(4);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.YU,st.Sq,st.bT,n.DJ,n.sA,n.UI,I.PW,R.$z,IA.MV,ri.q,B.HM,HA.oV,cA.Ld,le.Wk,st.P9,st.QX]})}return i})();const Ca=i=>({"dashboard-card-content":!0,"error-border":i}),_s=i=>({"p-0":i});function $s(i,D){if(1&i&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&i){A.XpG();const t=A.sdS(11);A.Y8G("matMenuTriggerFor",t)}}function Ao(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const c=A.eBV(t).index,j=A.XpG().$implicit,PA=A.XpG(2);return A.Njj(PA.onNavigateTo(j.links[c]))}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}function to(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){A.eBV(t);const c=A.XpG(3);return A.Njj(c.onsortChannelsBy())}),A.EFF(1),A.k0s()}if(2&i){const t=A.XpG(3);A.R7$(),A.SpI("Sort By ","Balance Score"===t.sortField?"Capacity":"Balance Score","")}}function eo(i,D){1&i&&A.nrm(0,"mat-progress-bar",30)}function oe(i,D){if(1&i&&A.nrm(0,"rtl-cln-node-info",31),2&i){const t=A.XpG(3);A.Y8G("information",t.information)("showColorFieldSeparately",!1)}}function no(i,D){if(1&i&&A.nrm(0,"rtl-cln-balances-info",32),2&i){const t=A.XpG(3);A.Y8G("balances",t.balances)("errorMessage",t.errorMessages[1])}}function rr(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-capacity-info",33),2&i){const t=A.XpG(3);A.Y8G("sortBy",t.sortField)("channelBalances",t.channelBalances)("activeChannels",t.activeChannelsCapacity)("errorMessage",t.errorMessages[2]+" "+t.errorMessages[1])}}function ar(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-info",34),2&i){const t=A.XpG(3);A.Y8G("fees",t.fees)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[2]+" "+t.errorMessages[3])}}function yi(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-status-info",35),2&i){const t=A.XpG(3);A.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[1]+" "+t.errorMessages[2])}}function Bi(i,D){1&i&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function Ur(i,D){if(1&i&&(A.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),A.nrm(5,"fa-icon",14),A.j41(6,"span"),A.EFF(7),A.k0s()(),A.j41(8,"div"),A.DNE(9,$s,3,1,"button",15),A.j41(10,"mat-menu",16,1),A.DNE(12,Ao,2,1,"button",17)(13,to,2,1,"button",18),A.k0s()()()(),A.j41(14,"mat-card-content",19),A.DNE(15,eo,1,0,"mat-progress-bar",20),A.j41(16,"div",21),A.DNE(17,oe,1,2,"rtl-cln-node-info",22)(18,no,1,2,"rtl-cln-balances-info",23)(19,rr,1,4,"rtl-cln-channel-capacity-info",24)(20,ar,1,2,"rtl-cln-fee-info",25)(21,yi,1,2,"rtl-cln-channel-status-info",26)(22,Bi,2,0,"h3",27),A.k0s()()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("colspan",t.cols)("rowspan",t.rows),A.R7$(5),A.Y8G("icon",t.icon),A.R7$(2),A.JRh(t.title),A.R7$(2),A.Y8G("ngIf",t.links[0]),A.R7$(3),A.Y8G("ngForOf",t.goToOptions),A.R7$(),A.Y8G("ngIf","capacity"===t.id),A.R7$(),A.FS9("fxFlex","capacity"===t.id?90:70),A.Y8G("ngClass",A.eq3(16,Ca,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR||"capacity"===t.id&&(l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.ERROR)||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR))),A.R7$(),A.Y8G("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED||"capacity"===t.id&&(l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.INITIATED)||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED)),A.R7$(),A.Y8G("ngSwitch",t.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","balance"),A.R7$(),A.Y8G("ngSwitchCase","capacity"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","status")}}function io(i,D){if(1&i&&(A.j41(0,"div",5)(1,"div",6),A.nrm(2,"fa-icon",7),A.j41(3,"span",8),A.EFF(4),A.k0s()(),A.j41(5,"mat-grid-list",9),A.DNE(6,Ur,23,18,"mat-grid-tile",10),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.Y8G("icon",t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.ERROR?t.faFrown:t.faSmile),A.R7$(2),A.JRh(t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.COMPLETED?"Welcome "+t.information.alias+"! Your node is up and running.":t.apiCallStatusNodeInfo.status===t.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),A.R7$(),A.Y8G("rowHeight",t.operatorCardHeight),A.R7$(),A.Y8G("ngForOf",t.operatorCards)}}function ro(i,D){if(1&i&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&i){A.XpG();const t=A.sdS(9);A.Y8G("matMenuTriggerFor",t)}}function ao(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const c=A.eBV(t).index,j=A.XpG(2).$implicit,PA=A.XpG(2);return A.Njj(PA.onNavigateTo(j.links[c]))}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}function xi(i,D){if(1&i&&(A.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),A.nrm(3,"fa-icon",14),A.j41(4,"span"),A.EFF(5),A.k0s()(),A.j41(6,"div"),A.DNE(7,ro,3,1,"button",15),A.j41(8,"mat-menu",16,2),A.DNE(10,ao,2,1,"button",17),A.k0s()()()()),2&i){const t=A.XpG().$implicit;A.R7$(3),A.Y8G("icon",t.icon),A.R7$(2),A.JRh(t.title),A.R7$(2),A.Y8G("ngIf",t.links[0]),A.R7$(3),A.Y8G("ngForOf",t.goToOptions)}}function Yi(i,D){1&i&&A.nrm(0,"mat-progress-bar",30)}function Lr(i,D){if(1&i&&A.nrm(0,"rtl-cln-node-info",44),2&i){const t=A.XpG(3);A.Y8G("information",t.information)}}function Pr(i,D){if(1&i&&A.nrm(0,"rtl-cln-balances-info",32),2&i){const t=A.XpG(3);A.Y8G("balances",t.balances)("errorMessage",t.errorMessages[1])}}function zr(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-liquidity-info",45),2&i){const t=A.XpG(3);A.Y8G("direction","In")("totalLiquidity",t.totalInboundLiquidity)("activeChannels",t.allInboundChannels)("errorMessage",t.errorMessages[2])}}function so(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-liquidity-info",45),2&i){const t=A.XpG(3);A.Y8G("direction","Out")("totalLiquidity",t.totalOutboundLiquidity)("activeChannels",t.allOutboundChannels)("errorMessage",t.errorMessages[2])}}function wa(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const c=A.eBV(t).index,j=A.XpG(2).$implicit,PA=A.XpG(2);return A.Njj(PA.onNavigateTo(j.links[c]))}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}function oo(i,D){if(1&i&&(A.j41(0,"span",46)(1,"mat-tab-group",47)(2,"mat-tab",48),A.nrm(3,"rtl-cln-lightning-invoices-table",49),A.k0s(),A.j41(4,"mat-tab",50),A.nrm(5,"rtl-cln-lightning-payments",51),A.k0s()(),A.j41(6,"div",52)(7,"button",28)(8,"mat-icon"),A.EFF(9,"more_vert"),A.k0s()(),A.j41(10,"mat-menu",16,3),A.DNE(12,wa,2,1,"button",17),A.k0s()()()),2&i){const t=A.sdS(11),l=A.XpG().$implicit;A.R7$(3),A.Y8G("calledFrom","home"),A.R7$(2),A.Y8G("calledFrom","home"),A.R7$(2),A.Y8G("matMenuTriggerFor",t),A.R7$(5),A.Y8G("ngForOf",l.goToOptions)}}function lo(i,D){1&i&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function co(i,D){if(1&i&&(A.j41(0,"mat-grid-tile",11)(1,"mat-card",38),A.DNE(2,xi,11,4,"mat-card-header",39),A.j41(3,"mat-card-content",40),A.DNE(4,Yi,1,0,"mat-progress-bar",20),A.j41(5,"div",21),A.DNE(6,Lr,1,1,"rtl-cln-node-info",41)(7,Pr,1,2,"rtl-cln-balances-info",23)(8,zr,1,4,"rtl-cln-channel-liquidity-info",42)(9,so,1,4,"rtl-cln-channel-liquidity-info",42)(10,oo,13,4,"span",43)(11,lo,2,0,"h3",27),A.k0s()()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("colspan",t.cols)("rowspan",t.rows),A.R7$(),A.Y8G("ngClass",A.eq3(13,_s,"transactions"===t.id)),A.R7$(),A.Y8G("ngIf","transactions"!==t.id),A.R7$(),A.FS9("fxFlex","transactions"===t.id?100:"balance"===t.id?70:90),A.Y8G("ngClass",A.eq3(15,Ca,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.ERROR||("inboundLiq"===t.id||"outboundLiq"===t.id)&&l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"balance"===t.id&&l.apiCallStatusBalances.status===l.apiCallStatusEnum.INITIATED||("inboundLiq"===t.id||"outboundLiq"===t.id)&&l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",t.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","balance"),A.R7$(),A.Y8G("ngSwitchCase","inboundLiq"),A.R7$(),A.Y8G("ngSwitchCase","outboundLiq"),A.R7$(),A.Y8G("ngSwitchCase","transactions")}}function go(i,D){if(1&i&&(A.j41(0,"div",36),A.nrm(1,"fa-icon",7),A.j41(2,"span",8),A.EFF(3),A.k0s()(),A.j41(4,"mat-grid-list",37),A.DNE(5,co,12,17,"mat-grid-tile",10),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faSmile),A.R7$(2),A.SpI("Welcome ",t.information.alias,"! Your node is up and running."),A.R7$(),A.Y8G("rowHeight",t.merchantCardHeight),A.R7$(),A.Y8G("ngForOf",t.merchantCards)}}let Bo=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.store=l,this.commonService=c,this.router=j,this.faSmile=w.Qpm,this.faFrown=w.wB1,this.faAngleDoubleDown=u.WxX,this.faAngleDoubleUp=u.$sC,this.faChartPie=u.W1p,this.faBolt=u.zm_,this.faServer=u.D6w,this.faNetworkWired=u.eGi,this.userPersonaEnum=r.HW,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.information={},this.totalBalance={},this.balances={onchain:-1,lightning:-1,total:0},this.activeChannels=[],this.channelsStatus={active:{},pending:{},inactive:{}},this.activeChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.errorMessages=["","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusBalances=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===r.f7.XS?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}]):this.screenSize===r.f7.SM||this.screenSize===r.f7.MD?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}]):(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}])}ngOnInit(){this.store.select(E.RQ).pipe((0,g.Q)(this.unSubs[0]),(0,f.E)(this.store.select(d._c))).subscribe(([t,l])=>{this.errorMessages[0]="",this.errorMessages[3]="",this.apiCallStatusNodeInfo=t.apisCallStatus[0],this.apiCallStatusFHistory=t.apisCallStatus[1],this.apiCallStatusNodeInfo.status===r.wn.ERROR&&(this.errorMessages[0]=this.apiCallStatusNodeInfo.message?"object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message:""),this.apiCallStatusFHistory.status===r.wn.ERROR&&(this.errorMessages[3]=this.apiCallStatusFHistory.message?"object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message:""),this.selNode=l,this.information=t.information,this.fees=t.fees}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessages[2]="",this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusChannels.status===r.wn.ERROR&&(this.errorMessages[2]=this.apiCallStatusChannels.message?"object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message:""),this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.activeChannels=t.activeChannels,this.activeChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels,"balancedness")))||[],this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels?.filter(l=>!!l.to_them_msat&&l.to_them_msat>0),"to_them_msat")))||[],this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels?.filter(l=>!!l.to_us_msat&&l.to_us_msat>0),"to_us_msat")))||[],this.activeChannels.forEach(l=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil((l.to_them_msat||0)/1e3),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor((l.to_us_msat||0)/1e3)}),this.channelsStatus.active.channels=t.activeChannels.length||0,this.channelsStatus.pending.channels=t.pendingChannels.length||0,this.channelsStatus.inactive.channels=t.inactiveChannels.length||0,this.logger.info(t)}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[1]="",this.apiCallStatusBalances=t.apiCallStatus,this.apiCallStatusBalances.status===r.wn.ERROR&&(this.errorMessages[1]=this.apiCallStatusBalances.message?"object"==typeof this.apiCallStatusBalances.message?JSON.stringify(this.apiCallStatusBalances.message):this.apiCallStatusBalances.message:""),this.totalBalance=t.balance,this.balances.onchain=t.balance.totalBalance||0,this.balances.lightning=t.localRemoteBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const l=t.localRemoteBalance.localBalance?+t.localRemoteBalance.localBalance:0,c=t.localRemoteBalance.remoteBalance?+t.localRemoteBalance.remoteBalance:0;this.channelBalances={localBalance:l,remoteBalance:c,balancedness:+(1-Math.abs((l-c)/(l+c))).toFixed(3)},this.channelsStatus.active.capacity=t.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=t.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=t.localRemoteBalance.inactiveBalance||0,this.logger.info(t)})}onNavigateTo(t){this.router.navigateByUrl("/cln/"+t)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.activeChannelsCapacity=this.activeChannels.sort((t,l)=>{const c=(t.to_us_msat?+t.to_us_msat:0)+(t.to_them_msat?+t.to_them_msat:0),j=(l.to_them_msat?+l.to_them_msat:0)+(l.to_them_msat?+l.to_them_msat:0);return c>j?-1:c{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-home"]],decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","activeChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","activeChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100",3,"direction","totalLiquidity","activeChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100",3,"direction","totalLiquidity","activeChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],[1,"h-100",3,"calledFrom"],["label","Pay"],[3,"calledFrom"],[1,"underline"]],template:function(l,c){if(1&l&&A.DNE(0,io,7,4,"div",4)(1,go,6,4,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",(null==c.selNode?null:c.selNode.settings.userPersona)===c.userPersonaEnum.OPERATOR)("ngIfElse",j)}},dependencies:[st.YU,st.Sq,st.bT,st.ux,st.e1,st.fG,Q.aY,n.DJ,n.sA,n.UI,I.PW,R.iY,p.RN,p.m2,p.MM,p.dh,m.B_,m.NS,y.An,x.kk,x.fb,x.Cp,B.HM,Y.mq,Y.T8,Te,ga,ua,Ds,Hi,ha,Ps,qs]})}return i})();var Gr=Pt(4572),uo=Pt(2852),ki=Pt(5416),Nn=Pt(9454),bt=Pt(6013);const sr=["form"],or=["formSweepAll"],wi=["stepper"],Hr=(i,D)=>({"mr-6":i,"mr-2":D});function lr(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function fo(i,D){1&i&&(A.j41(0,"mat-hint"),A.EFF(1,"Amount replaced by UTXO balance"),A.k0s())}function da(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.amountError)}}function ho(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.JRh(t)}}function ji(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t.feeRateId),A.R7$(),A.SpI(" ",t.feeRateType," ")}}function cr(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Eo(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",47)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.j41(3,"input",48,5),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG(2);return A.DH7(j.customFeeRate,c)||(j.customFeeRate=c),A.Njj(c)}),A.k0s(),A.DNE(5,cr,2,0,"mat-error",18),A.k0s()}if(2&i){const t=A.XpG(2);A.R7$(3),A.Y8G("step",1)("min",0)("required","customperkb"===t.selFeeRate&&!t.flgMinConf),A.R50("ngModel",t.customFeeRate),A.R7$(2),A.Y8G("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&!t.customFeeRate)}}function Qa(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function ma(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.SpI("",A.i5U(2,2,t.amount_msat/1e3,"1.0-0")," Sats")}}function pa(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.sendFundError)}}function Co(i,D){if(1&i&&(A.j41(0,"div",49),A.nrm(1,"fa-icon",50),A.DNE(2,pa,2,1,"span",18),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.sendFundError)}}function wo(i,D){if(1&i){const t=A.RV6();A.j41(0,"form",15,1),A.bIt("submit",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSendFunds())})("reset",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.resetData())}),A.j41(2,"mat-form-field",16)(3,"mat-label"),A.EFF(4,"Bitcoin Address"),A.k0s(),A.j41(5,"input",17,2),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.transaction.destination,c)||(j.transaction.destination=c),A.Njj(c)}),A.k0s(),A.DNE(7,lr,2,0,"mat-error",18),A.k0s(),A.j41(8,"mat-form-field",19)(9,"mat-label"),A.EFF(10,"Amount"),A.k0s(),A.j41(11,"input",20,3),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.transaction.satoshi,c)||(j.transaction.satoshi=c),A.Njj(c)}),A.k0s(),A.DNE(13,fo,2,0,"mat-hint",18),A.j41(14,"span",21),A.EFF(15),A.k0s(),A.DNE(16,da,2,1,"mat-error",18),A.k0s(),A.j41(17,"mat-form-field",22)(18,"mat-select",23),A.bIt("selectionChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onAmountUnitChange(c))}),A.DNE(19,ho,2,2,"mat-option",24),A.k0s()(),A.j41(20,"div",25)(21,"div",26)(22,"div",27)(23,"mat-form-field",28)(24,"mat-label"),A.EFF(25,"Fee Rate"),A.k0s(),A.j41(26,"mat-select",29),A.mxI("valueChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFeeRate,c)||(j.selFeeRate=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.customFeeRate=null)}),A.DNE(27,ji,2,2,"mat-option",24),A.k0s()(),A.DNE(28,Eo,6,5,"mat-form-field",30),A.k0s(),A.j41(29,"div",31)(30,"mat-checkbox",32),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.flgMinConf,c)||(j.flgMinConf=c),A.Njj(c)}),A.bIt("change",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.flgMinConf?c.selFeeRate=null:c.minConfValue=null)}),A.k0s(),A.j41(31,"mat-form-field",33)(32,"mat-label"),A.EFF(33,"Min Confirmation Blocks"),A.k0s(),A.j41(34,"input",34,4),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.minConfValue,c)||(j.minConfValue=c),A.Njj(c)}),A.k0s(),A.DNE(36,Qa,2,0,"mat-error",18),A.k0s()()(),A.j41(37,"mat-expansion-panel",35),A.bIt("closed",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onAdvancedPanelToggle(!0))})("opened",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onAdvancedPanelToggle(!1))}),A.j41(38,"mat-expansion-panel-header")(39,"mat-panel-title")(40,"span"),A.EFF(41),A.k0s()()(),A.j41(42,"div",25)(43,"div",36)(44,"mat-form-field",37)(45,"mat-label"),A.EFF(46,"Coin Selection"),A.k0s(),A.j41(47,"mat-select",38),A.mxI("valueChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selUTXOs,c)||(j.selUTXOs=c),A.Njj(c)}),A.bIt("selectionChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onUTXOSelectionChange(c))}),A.j41(48,"mat-select-trigger"),A.EFF(49),A.nI1(50,"number"),A.k0s(),A.DNE(51,ma,3,5,"mat-option",24),A.k0s()(),A.j41(52,"div",39)(53,"mat-slide-toggle",40),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.flgUseAllBalance,c)||(j.flgUseAllBalance=c),A.Njj(c)}),A.bIt("change",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onUTXOAllBalanceChange())}),A.EFF(54," Use selected UTXOs balance "),A.k0s(),A.j41(55,"mat-icon",41),A.EFF(56,"info_outline"),A.k0s()()()()(),A.nrm(57,"div",25),A.DNE(58,Co,3,2,"div",42),A.j41(59,"div",43)(60,"button",44),A.EFF(61,"Clear Fields"),A.k0s(),A.j41(62,"button",45),A.EFF(63,"Send Funds"),A.k0s()()()()}if(2&i){const t=A.XpG();A.R7$(5),A.R50("ngModel",t.transaction.destination),A.R7$(2),A.Y8G("ngIf",!t.transaction.destination),A.R7$(4),A.Y8G("type",t.flgUseAllBalance?"text":"number")("step",100)("min",0)("disabled",t.flgUseAllBalance),A.R50("ngModel",t.transaction.satoshi),A.R7$(2),A.Y8G("ngIf",t.flgUseAllBalance),A.R7$(2),A.SpI("",t.selAmountUnit," "),A.R7$(),A.Y8G("ngIf",!t.transaction.satoshi),A.R7$(2),A.Y8G("value",t.selAmountUnit)("disabled",t.flgUseAllBalance),A.R7$(),A.Y8G("ngForOf",t.amountUnits),A.R7$(4),A.Y8G("fxFlex","customperkb"!==t.selFeeRate||t.flgMinConf?"100":"48"),A.R7$(3),A.Y8G("disabled",t.flgMinConf),A.R50("value",t.selFeeRate),A.R7$(),A.Y8G("ngForOf",t.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf),A.R7$(2),A.Y8G("ngClass",A.l_i(36,Hr,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD||t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),A.R50("ngModel",t.flgMinConf),A.R7$(4),A.Y8G("step",1)("min",0)("required",t.flgMinConf)("disabled",!t.flgMinConf),A.R50("ngModel",t.minConfValue),A.R7$(2),A.Y8G("ngIf",t.flgMinConf&&!t.minConfValue),A.R7$(5),A.JRh(t.advancedTitle),A.R7$(6),A.R50("value",t.selUTXOs),A.R7$(2),A.Lme("",A.bMT(50,34,t.totalSelectedUTXOAmount)," Sats (",t.selUTXOs.length>1?t.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.R7$(2),A.Y8G("ngForOf",t.utxos),A.R7$(2),A.Y8G("disabled",t.selUTXOs.length<1),A.R50("ngModel",t.flgUseAllBalance),A.R7$(5),A.Y8G("ngIf",""!==t.sendFundError)}}function Oi(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG(3);A.JRh(t.passwordFormLabel)}}function Qo(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Password is required."),A.k0s())}function mo(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-step",54)(1,"form",73),A.DNE(2,Oi,1,1,"ng-template",67),A.j41(3,"div",7)(4,"mat-form-field",57)(5,"mat-label"),A.EFF(6,"Password"),A.k0s(),A.nrm(7,"input",74),A.DNE(8,Qo,2,0,"mat-error",18),A.k0s()(),A.j41(9,"div",75)(10,"button",76),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onAuthenticate())}),A.EFF(11,"Confirm"),A.k0s()()()()}if(2&i){const t=A.XpG(2);A.Y8G("stepControl",t.passwordFormGroup)("editable",t.flgEditable),A.R7$(),A.Y8G("formGroup",t.passwordFormGroup),A.R7$(7),A.Y8G("ngIf",null==t.passwordFormGroup.controls.password.errors?null:t.passwordFormGroup.controls.password.errors.required)}}function po(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG(2);A.JRh(t.sendFundFormLabel)}}function Ma(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function Mo(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t.feeRateId),A.R7$(),A.SpI(" ",t.feeRateType," ")}}function Io(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Do(i,D){if(1&i&&(A.j41(0,"mat-form-field",47)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.nrm(3,"input",77),A.DNE(4,Io,2,0,"mat-error",18),A.k0s()),2&i){const t=A.XpG(2);A.R7$(3),A.Y8G("step",1)("min",0),A.R7$(),A.Y8G("ngIf","customperkb"===t.sendFundFormGroup.controls.selFeeRate.value&&!t.sendFundFormGroup.controls.flgMinConf.value&&!t.sendFundFormGroup.controls.customFeeRate.value)}}function vo(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function Fo(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG(2);A.JRh(t.confirmFormLabel)}}function Ia(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.sendFundError)}}function yo(i,D){if(1&i&&(A.j41(0,"div",49),A.nrm(1,"fa-icon",50),A.DNE(2,Ia,2,1,"span",18),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.sendFundError)}}function xo(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",51)(1,"mat-vertical-stepper",52,6),A.bIt("selectionChange",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.stepSelectionChanged(c))}),A.DNE(3,mo,12,4,"mat-step",53),A.j41(4,"mat-step",54)(5,"form",55),A.DNE(6,po,1,1,"ng-template",56),A.j41(7,"div",25)(8,"mat-form-field",57)(9,"mat-label"),A.EFF(10,"Bitcoin Address"),A.k0s(),A.nrm(11,"input",58),A.DNE(12,Ma,2,0,"mat-error",18),A.k0s(),A.j41(13,"div",59)(14,"div",27)(15,"mat-form-field",28)(16,"mat-label"),A.EFF(17,"Fee Rate"),A.k0s(),A.j41(18,"mat-select",60),A.DNE(19,Mo,2,2,"mat-option",24),A.k0s()(),A.DNE(20,Do,5,3,"mat-form-field",30),A.k0s(),A.j41(21,"div",31),A.nrm(22,"mat-checkbox",61),A.j41(23,"mat-form-field",33)(24,"mat-label"),A.EFF(25,"Min Confirmation Blocks"),A.k0s(),A.nrm(26,"input",62),A.DNE(27,vo,2,0,"mat-error",18),A.k0s()()()(),A.j41(28,"div",63)(29,"button",64),A.EFF(30,"Next"),A.k0s()()()(),A.j41(31,"mat-step",65)(32,"form",66),A.DNE(33,Fo,1,1,"ng-template",67),A.j41(34,"div",51)(35,"div",68),A.nrm(36,"fa-icon",69),A.j41(37,"span"),A.EFF(38,"You are about to sweep all funds from RTL. Are you sure?"),A.k0s()(),A.DNE(39,yo,3,2,"div",42),A.j41(40,"div",63)(41,"button",70),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSendFunds())}),A.EFF(42,"Sweep All Funds"),A.k0s()()()()()(),A.j41(43,"div",71)(44,"button",72),A.EFF(45),A.k0s()()()}if(2&i){const t=A.XpG();A.R7$(),A.Y8G("linear",!0),A.R7$(2),A.Y8G("ngIf",!t.appConfig.SSO.rtlSSO),A.R7$(),A.Y8G("stepControl",t.sendFundFormGroup)("editable",t.flgEditable),A.R7$(),A.Y8G("formGroup",t.sendFundFormGroup),A.R7$(7),A.Y8G("ngIf",null==t.sendFundFormGroup.controls.transactionAddress.errors?null:t.sendFundFormGroup.controls.transactionAddress.errors.required),A.R7$(3),A.Y8G("fxFlex","customperkb"!==t.sendFundFormGroup.controls.selFeeRate.value||t.sendFundFormGroup.controls.flgMinConf.value?"100":"48"),A.R7$(4),A.Y8G("ngForOf",t.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===t.sendFundFormGroup.controls.selFeeRate.value&&!t.sendFundFormGroup.controls.flgMinConf.value),A.R7$(2),A.Y8G("ngClass",A.l_i(20,Hr,t.screenSize===t.screenSizeEnum.XS||t.screenSize===t.screenSizeEnum.SM,t.screenSize===t.screenSizeEnum.MD||t.screenSize===t.screenSizeEnum.LG||t.screenSize===t.screenSizeEnum.XL)),A.R7$(4),A.Y8G("step",1)("min",0)("required",t.sendFundFormGroup.controls.flgMinConf.value),A.R7$(),A.Y8G("ngIf",t.sendFundFormGroup.controls.flgMinConf.value&&!t.sendFundFormGroup.controls.minConfValue.value),A.R7$(4),A.Y8G("stepControl",t.confirmFormGroup),A.R7$(),A.Y8G("formGroup",t.confirmFormGroup),A.R7$(4),A.Y8G("icon",t.faExclamationTriangle),A.R7$(3),A.Y8G("ngIf",""!==t.sendFundError),A.R7$(5),A.Y8G("mat-dialog-close",!1),A.R7$(),A.JRh(t.flgValidated?"Close":"Cancel")}}let Da=(()=>{class i{constructor(t,l,c,j,PA,WA,an,fe,cn,UC){this.dialogRef=t,this.data=l,this.logger=c,this.store=j,this.commonService=PA,this.decimalPipe=WA,this.actions=an,this.formBuilder=fe,this.rtlEffects=cn,this.snackBar=UC,this.faExclamationTriangle=u.zpE,this.sweepAll=!1,this.addressTypes=[],this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=null,this.selectedAddress=r.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.feeRateTypes=r.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.sendFundError="",this.fiatConversion=!1,this.amountUnits=r.A0,this.selAmountUnit=r.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=r.k,this.advancedTitle="Advanced Options",this.flgValidated=!1,this.flgEditable=!0,this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds",this.confirmFormLabel="Confirm sweep",this.amountError="Amount is Required.",this.screenSize="",this.screenSizeEnum=r.f7,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[iA.k0.required]],password:["",[iA.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",iA.k0.required],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.flgMinConf.valueChanges.pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{t?(this.sendFundFormGroup.controls.selFeeRate.disable(),this.sendFundFormGroup.controls.selFeeRate.setValue(null),this.sendFundFormGroup.controls.minConfValue.reset(),this.sendFundFormGroup.controls.minConfValue.enable(),this.sendFundFormGroup.controls.minConfValue.setValidators([iA.k0.required]),this.sendFundFormGroup.controls.minConfValue.setValue(null)):(this.sendFundFormGroup.controls.selFeeRate.enable(),this.sendFundFormGroup.controls.selFeeRate.setValue(null),this.sendFundFormGroup.controls.minConfValue.setValue(null),this.sendFundFormGroup.controls.minConfValue.disable(),this.sendFundFormGroup.controls.minConfValue.setValidators(null),this.sendFundFormGroup.controls.minConfValue.setErrors(null))}),this.sendFundFormGroup.controls.selFeeRate.valueChanges.pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.sendFundFormGroup.controls.customFeeRate.setValue(null),this.sendFundFormGroup.controls.customFeeRate.reset(),this.sendFundFormGroup.controls.customFeeRate.setValidators("customperkb"!==t||this.sendFundFormGroup.controls.flgMinConf.value?null:[iA.k0.required])}),(0,Gr.z)([this.store.select(d._c),this.store.select(d.qv)]).pipe((0,g.Q)(this.unSubs[1])).subscribe(([t,l])=>{this.fiatConversion=t.settings.fiatConversion,this.amountUnits=t.settings.currencyUnits,this.appConfig=l}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.information=t}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.utxos=this.commonService.sortAscByKey(t.utxos?.filter(l=>"confirmed"===l.status),"value"),this.logger.info(t)}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN||t.type===r.TC.SET_CHANNEL_TRANSACTION_RES_CLN)).subscribe(t=>{t.type===r.TC.SET_CHANNEL_TRANSACTION_RES_CLN&&(this.store.dispatch((0,AA.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.ERROR&&"SetChannelTransaction"===t.payload.action&&(this.sendFundError=t.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,AA.oz)({payload:uo(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,Fe.s)(1)).subscribe(t=>{"ERROR"!==t?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onSendFunds(){if(this.sendFundError="",this.flgUseAllBalance&&(this.transaction.satoshi="all"),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.transaction.utxos=[],this.selUTXOs.forEach(t=>this.transaction.utxos?.push(t.txid+":"+t.output))),this.sweepAll){if(!this.sendFundFormGroup.controls.transactionAddress.value||""===this.sendFundFormGroup.controls.transactionAddress.value||this.sendFundFormGroup.controls.flgMinConf.value&&(!this.sendFundFormGroup.controls.minConfValue.value||this.sendFundFormGroup.controls.minConfValue.value<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshi="all",this.transaction.destination=this.sendFundFormGroup.controls.transactionAddress.value,this.sendFundFormGroup.controls.flgMinConf.value?(delete this.transaction.feerate,this.transaction.minconf=this.sendFundFormGroup.controls.flgMinConf.value?this.sendFundFormGroup.controls.minConfValue.value:null):(delete this.transaction.minconf,this.transaction.feerate="customperkb"===this.sendFundFormGroup.controls.selFeeRate.value&&!this.sendFundFormGroup.controls.flgMinConf.value&&this.sendFundFormGroup.controls.customFeeRate.value?1e3*this.sendFundFormGroup.controls.customFeeRate.value+"perkb":this.sendFundFormGroup.controls.selFeeRate.value),delete this.transaction.utxos,this.store.dispatch((0,_.aB)({payload:this.transaction}))}else{if(this.transaction.minconf=this.flgMinConf?this.minConfValue:null,this.transaction.feerate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":""!==this.selFeeRate?this.selFeeRate:null,!this.transaction.destination||""===this.transaction.destination||!this.transaction.satoshi||+this.transaction.satoshi<=0||this.flgMinConf&&(!this.transaction.minconf||this.transaction.minconf<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshi&&"all"!==this.transaction.satoshi&&this.selAmountUnit!==r.BQ.SATS?this.commonService.convertCurrency(+this.transaction.satoshi,this.selAmountUnit===this.amountUnits[2]?r.BQ.OTHER:this.selAmountUnit,r.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,g.Q)(this.unSubs[5])).subscribe({next:t=>{this.transaction.satoshi=t[r.BQ.SATS],this.selAmountUnit=r.BQ.SATS,this.store.dispatch((0,_.aB)({payload:this.transaction}))},error:t=>{this.transaction.satoshi=null,this.selAmountUnit=r.BQ.SATS,this.amountError="Conversion Error: "+t}}):this.store.dispatch((0,_.aB)({payload:this.transaction}))}}resetData(){this.sendFundError="",this.transaction={},this.flgMinConf=!1,this.totalSelectedUTXOAmount=null,this.selUTXOs=[],this.flgUseAllBalance=!1,this.selAmountUnit=r.A0[0]}stepSelectionChanged(t){switch(this.sendFundError="",t.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds";break;case 1:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds";break;case 2:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds | Address: "+this.sendFundFormGroup.controls.transactionAddress.value+(this.sendFundFormGroup.controls.flgMinConf.value?" | Min Confirmation Blocks: "+this.sendFundFormGroup.controls.minConfValue.value:this.sendFundFormGroup.controls.selFeeRate.value?" | Fee Rate: "+this.feeRateTypes.find(l=>l.feeRateId===this.sendFundFormGroup.controls.selFeeRate.value)?.feeRateType:"")}t.selectedIndex0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((l,c)=>l+(c.amount_msat||0)/1e3,0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=null,this.transaction.satoshi=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.flgUseAllBalance?(this.transaction.satoshi=this.totalSelectedUTXOAmount,this.selAmountUnit=r.A0[0]):this.transaction.satoshi=null}onAmountUnitChange(t){const l=this,c=this.selAmountUnit===this.amountUnits[2]?r.BQ.OTHER:this.selAmountUnit;let j=t.value===this.amountUnits[2]?r.BQ.OTHER:t.value;this.transaction.satoshi&&this.selAmountUnit!==t.value&&this.commonService.convertCurrency(+this.transaction.satoshi,c,j,this.amountUnits[2],this.fiatConversion).pipe((0,g.Q)(this.unSubs[6])).subscribe({next:PA=>{this.selAmountUnit=t.value,l.transaction.satoshi=l.decimalPipe.transform(PA[j],l.currencyUnitFormats[j])?.replace(/,/g,"")},error:PA=>{l.transaction.satoshi=null,this.amountError="Conversion Error: "+PA,this.selAmountUnit=c,j=c}})}onAdvancedPanelToggle(t){this.advancedTitle=t&&this.selUTXOs.length&&this.selUTXOs.length>0?"Advanced Options | Selected UTXOs: "+this.selUTXOs.length+" | Selected UTXO Amount: "+this.decimalPipe.transform(this.totalSelectedUTXOAmount)+" Sats":"Advanced Options"}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(st.QX),A.rXU(fA.En),A.rXU(iA.ze),A.rXU(QA.H),A.rXU(ki.UG))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain-send-modal"]],viewQuery:function(l,c){if(1&l&&(A.GBs(sr,7),A.GBs(or,5),A.GBs(wi,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first),A.mGM(j=A.lsd())&&(c.formSweepAll=j.first),A.mGM(j=A.lsd())&&(c.stepper=j.first)}},decls:12,vars:4,consts:[["sweepAllBlock",""],["form","ngForm"],["address","ngModel"],["amount","ngModel"],["blocks","ngModel"],["custFeeRate","ngModel"],["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex","55"],["matInput","","autoFocus","","tabindex","1","name","address","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","amount","tabindex","2","required","",3,"ngModelChange","type","step","min","disabled","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","10","fxLayoutAlign","start end"],["tabindex","3","required","","name","amountUnit",3,"selectionChange","value","disabled"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","48","fxLayoutAlign","space-between start"],["fxLayout","column","fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4",3,"valueChange","selectionChange","disabled","value"],["fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","48","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModelChange","change","ngClass","ngModel"],["fxLayout","column","fxFlex","93"],["matInput","","type","number","name","blocks","tabindex","8",3,"ngModelChange","step","min","required","disabled","ngModel"],["fxLayout","column","fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","35","fxLayoutAlign","start end"],["tabindex","8","multiple","",3,"valueChange","selectionChange","value"],["fxFlex","60","fxLayout","row","fxLayoutAlign","start center"],["tabindex","9","color","primary","name","flgUseAllBalance",3,"ngModelChange","change","disabled","ngModel"],["matTooltip","Use selected UTXOs balance as the amount to be sent. Final amount sent will be less the mining fee.","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],[3,"value"],["fxFlex","48","fxLayoutAlign","end center"],["matInput","","type","number","name","custFeeRate","tabindex","4",3,"ngModelChange","step","min","required","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl","editable"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","100"],["matInput","","formControlName","transactionAddress","tabindex","4","name","address","required",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["tabindex","4","formControlName","selFeeRate"],["fxFlex","7","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["matInput","","formControlName","minConfValue","type","number","name","blocks","tabindex","8",3,"step","min","required"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","8","type","default","matStepperNext",""],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxFlex","100",1,"w-100","alert","alert-warn"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["mat-button","","color","primary","tabindex","9","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["autoFocus","","matInput","","type","password","tabindex","1","formControlName","password","required",""],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","default",3,"click"],["matInput","","formControlName","customFeeRate","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(l,c){if(1&l&&(A.j41(0,"div",7)(1,"div",8)(2,"mat-card-header",9)(3,"div",10)(4,"span",11),A.EFF(5),A.k0s()(),A.j41(6,"button",12),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",13),A.DNE(9,wo,64,39,"form",14),A.k0s()()(),A.DNE(10,xo,46,23,"ng-template",null,0,A.C5r)),2&l){const j=A.sdS(11);A.R7$(5),A.JRh(c.sweepAll?"Sweep All Funds":"Send Funds"),A.R7$(),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.Y8G("ngIf",!c.sweepAll)("ngIfElse",j)}},dependencies:[st.YU,st.Sq,st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.vS,iA.cV,iA.j4,iA.JD,Q.aY,n.DJ,n.sA,n.UI,I.PW,gA.tx,R.$z,p.m2,p.MM,In.So,Nn.GK,Nn.Z2,Nn.WN,y.An,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,$.VO,$.$2,FA.wT,YA.sG,HA.oV,bt.V5,bt.Ti,bt.M6,bt.F7,J.N,BA.V,st.QX]})}return i})();var kr=Pt(5837),jr=Pt(1975);const bn=()=>["all"],Yo=i=>({"error-border":i}),So=()=>["no_utxo"],Or=i=>({width:i}),No=i=>({"display-none":i});function bo(i,D){if(1&i&&(A.j41(0,"mat-option",37),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function Ro(i,D){1&i&&A.nrm(0,"mat-progress-bar",38)}function To(i,D){1&i&&A.nrm(0,"th",39)}function Uo(i,D){1&i&&(A.j41(0,"span",42)(1,"mat-icon",43),A.EFF(2,"warning"),A.k0s()())}function ui(i,D){if(1&i&&(A.j41(0,"td",40),A.DNE(1,Uo,3,0,"span",41),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(),c=A.sdS(56);A.R7$(),A.Y8G("ngIf",l.numDustUTXOs>0&&!l.isDustUTXO&&(null==t?null:t.amount_msat)/1e30||0===t.amount_msat),A.R7$(),A.Y8G("ngIf",t.amount_msat<0)}}function fr(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Blockheight"),A.k0s())}function ai(i,D){if(1&i&&(A.j41(0,"td",40)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.bMT(3,1,null==t?null:t.blockheight)," ")}}function Fa(i,D){1&i&&(A.j41(0,"th",49),A.EFF(1,"Reserved"),A.k0s())}function Si(i,D){if(1&i&&(A.j41(0,"td",40)(1,"span"),A.EFF(2),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(t.reserved?"Yes":"No")}}function ya(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",57)(1,"div",58)(2,"mat-select",59),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",60),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function jo(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",61)(1,"button",62),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onUTXOClick(j,c))}),A.EFF(2,"View Info"),A.k0s()()}}function hr(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No utxos available."),A.k0s())}function Er(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting utxos..."),A.k0s())}function di(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function Oo(i,D){if(1&i&&(A.j41(0,"td",63),A.DNE(1,hr,2,0,"p",64)(2,Er,2,0,"p",64)(3,di,2,1,"p",64),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.listUTXOs&&t.listUTXOs.data)||(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function Cr(i,D){if(1&i&&A.nrm(0,"tr",65),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,No,(null==t.listUTXOs?null:t.listUTXOs.data)&&(null==t.listUTXOs||null==t.listUTXOs.data?null:t.listUTXOs.data.length)>0))}}function Ji(i,D){1&i&&A.nrm(0,"tr",66)}function Jo(i,D){1&i&&A.nrm(0,"tr",67)}function Vo(i,D){1&i&&A.nrm(0,"mat-icon",68)}let Wo=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.camelCaseWithReplace=j,this.numDustUTXOs=0,this.isDustUTXO=!1,this.dustAmount=1e3,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:r.md,sortBy:"status",sortOrder:r.oi.DESCENDING},this.displayedColumns=[],this.listUTXOs=new F.I6([]),this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),t.utxos&&t.utxos.length>0&&(this.dustUtxos=t.utxos?.filter(l=>+(l.amount_msat||0)/1e30&&this.loadUTXOsTable(this.dustUtxos):(this.displayedColumns.unshift("is_dust"),this.utxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos))),this.logger.info(t)})}ngAfterViewInit(){setTimeout(()=>{this.isDustUTXO?this.dustUtxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.dustUtxos):this.utxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos)},0)}onUTXOClick(t,l){const c=[[{key:"txid",value:t.txid,title:"Transaction ID",width:100,type:r.UN.STRING,explorerLink:"tx"}],[{key:"output",value:t.output,title:"Output",width:50,type:r.UN.NUMBER},{key:"amount_msat",value:(t.amount_msat||0)/1e3,title:"Value (Sats)",width:50,type:r.UN.NUMBER}],[{key:"status",value:this.commonService.titleCase(t.status||""),title:"Status",width:50,type:r.UN.STRING},{key:"blockheight",value:t.blockheight,title:"Blockheight",width:50,type:r.UN.NUMBER}],[{key:"address",value:t.address,title:"Address",width:100}]];this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"UTXO Information",message:c}}}))}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):"is_dust"===t?"Dust":this.commonService.titleCase(t)}setFilterPredicate(){this.listUTXOs.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=JSON.stringify(t).toLowerCase();break;case"is_dust":c=(t?.amount_msat||0)/1e3"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"is_dust"===this.selFilterBy||"status"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadUTXOsTable(t){this.listUTXOs=new F.I6([...t]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(l,c)=>{switch(c){case"is_dust":return(l.amount_msat||0)/1e30&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain-utxos"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},inputs:{numDustUTXOs:"numDustUTXOs",isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("UTXOs")}])],decls:57,vars:18,consts:[["table",""],["emptySpace",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","is_dust"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Dust/Nondust",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["matColumnDef","txid"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","address"],["matColumnDef","scriptpubkey"],["matColumnDef","output"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","value"],["matColumnDef","blockheight"],["matColumnDef","reserved"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_utxo"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Dust/Nondust"],["mat-cell",""],["matTooltip","Risk of dust attack","matTooltipPosition","right",4,"ngIf","ngIfElse"],["matTooltip","Risk of dust attack","matTooltipPosition","right"],["fxLayoutAlign","start center","color","warn",1,"small-icon"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["class","dot green","matTooltip","Confirmed","matTooltipPosition","right",4,"ngIf"],["class","dot yellow","matTooltipPosition","right",3,"matTooltip",4,"ngIf"],["matTooltip","Confirmed","matTooltipPosition","right",1,"dot","green"],["matTooltipPosition","right",1,"dot","yellow",3,"matTooltip"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],["fxLayoutAlign","start center","color","warn",1,"mr-1"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",2)(1,"div",3),A.nrm(2,"div",4),A.j41(3,"div",5)(4,"mat-form-field",6)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",7),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,bo,2,2,"mat-option",8),A.k0s()()(),A.j41(10,"mat-form-field",6)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",9),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(14,"div",10)(15,"div",11),A.DNE(16,Ro,1,0,"mat-progress-bar",12),A.j41(17,"table",13,0),A.qex(19,14),A.DNE(20,To,1,0,"th",15)(21,ui,2,2,"td",16),A.bVm(),A.qex(22,17),A.DNE(23,Lo,1,0,"th",18)(24,Ke,3,2,"td",16),A.bVm(),A.qex(25,19),A.DNE(26,fi,2,0,"th",20)(27,Vr,4,4,"td",16),A.bVm(),A.qex(28,21),A.DNE(29,Po,2,0,"th",20)(30,gr,4,4,"td",16),A.bVm(),A.qex(31,22),A.DNE(32,Br,2,0,"th",20)(33,ur,4,4,"td",16),A.bVm(),A.qex(34,23),A.DNE(35,ye,2,0,"th",24)(36,zo,4,3,"td",16),A.bVm(),A.qex(37,25),A.DNE(38,hi,2,0,"th",24)(39,ko,3,2,"td",16),A.bVm(),A.qex(40,26),A.DNE(41,fr,2,0,"th",24)(42,ai,4,3,"td",16),A.bVm(),A.qex(43,27),A.DNE(44,Fa,2,0,"th",20)(45,Si,3,1,"td",16),A.bVm(),A.qex(46,28),A.DNE(47,ya,6,0,"th",29)(48,jo,3,0,"td",30),A.bVm(),A.qex(49,31),A.DNE(50,Oo,4,3,"td",32),A.bVm(),A.DNE(51,Cr,1,3,"tr",33)(52,Ji,1,0,"tr",34)(53,Jo,1,0,"tr",35),A.k0s(),A.nrm(54,"mat-paginator",36),A.k0s()()(),A.DNE(55,Vo,1,0,"ng-template",null,1,A.C5r)}2&l&&(A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,bn).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(3),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.listUTXOs)("ngClass",A.eq3(15,Yo,""!==c.errorMessage)),A.R7$(34),A.Y8G("matFooterRowDef",A.lJ4(17,So)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,y.An,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld,st.QX,st.PV],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:3rem;width:3rem;text-overflow:unset}.mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();function xa(i,D){if(1&i&&(A.j41(0,"span",4),A.EFF(1,"UTXOs"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.numUtxos)}}function Ko(i,D){if(1&i&&(A.j41(0,"span",5),A.EFF(1,"Dust UTXOs"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.numDustUtxos)}}let Xo=(()=>{class i{constructor(t,l){this.logger=t,this.store=l,this.selectedTableIndex=0,this.selectedTableIndexChange=new A.bkB,this.numUtxos=0,this.numDustUtxos=0,this.DUST_AMOUNT=1e3,this.unSubs=[new o.B,new o.B]}ngOnInit(){this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{t.utxos&&t.utxos.length>0&&(this.numUtxos=t.utxos.length||0,this.numDustUtxos=t.utxos?.filter(l=>+(l.amount_msat||0)/1e3{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},decls:8,vars:7,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"bordered-box","my-2"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedIndex"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"numDustUTXOs","isDustUTXO","dustAmount"],["matBadgeOverlap","false","matBadgeColor","primary",1,"tab-badge",3,"matBadge"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(l,c){1&l&&(A.j41(0,"div",0)(1,"mat-tab-group",1),A.bIt("selectedIndexChange",function(PA){return c.onSelectedIndexChanged(PA)}),A.j41(2,"mat-tab"),A.DNE(3,xa,2,1,"ng-template",2),A.nrm(4,"rtl-cln-on-chain-utxos",3),A.k0s(),A.j41(5,"mat-tab"),A.DNE(6,Ko,2,1,"ng-template",2),A.nrm(7,"rtl-cln-on-chain-utxos",3),A.k0s()()()),2&l&&(A.R7$(),A.Y8G("selectedIndex",c.selectedTableIndex),A.R7$(3),A.Y8G("numDustUTXOs",c.numDustUtxos)("isDustUTXO",!1)("dustAmount",c.DUST_AMOUNT),A.R7$(3),A.Y8G("numDustUTXOs",c.numDustUtxos)("isDustUTXO",!0)("dustAmount",c.DUST_AMOUNT))},dependencies:[n.DJ,n.sA,n.UI,jr.k,Y.ES,Y.mq,Y.T8,Wo]})}return i})();const Zo=(i,D)=>[i,D];function qo(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",13),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=null==c?null:c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.Y8G("active",l.activeLink===(null==t?null:t.link))("routerLink",A.l_i(3,Zo,null==t?null:t.link,null==l.selectedTable?null:l.selectedTable.name)),A.R7$(),A.JRh(null==t?null:t.name)}}let _o=(()=>{class i{constructor(t,l,c){this.store=t,this.router=l,this.activatedRoute=c,this.faExchangeAlt=u._qq,this.faChartPie=u.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"},{link:"sweep",name:"Sweep All"}],this.activeLink=this.links[0].link,this.tables=[{id:0,name:"utxos"},{id:1,name:"dustUtxos"}],this.selectedTable=this.tables[0],this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.selectedTable=this.tables.find(l=>l.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link,this.selectedTable=this.tables.find(j=>j.name===l.urlAfterRedirects.substring(l.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(l=>{this.selNode=l}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[2])).subscribe(l=>{this.balances=[{title:"Total Balance",dataValue:l.balance.totalBalance||0},{title:"Confirmed",dataValue:l.balance.confBalance||0},{title:"Unconfirmed",dataValue:l.balance.unconfBalance||0}]})}openSendFundsModal(t){this.store.dispatch((0,AA.xO)({payload:{data:{sweepAll:t,component:Da}}}))}onSelectedTableIndexChanged(t){this.selectedTable=this.tables.find(l=>l.id===t)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(le.Ix),A.rXU(le.nX))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain"]],decls:23,vars:6,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100",3,"selectedTableIndexChange","selectedTableIndex"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"On-chain Balance"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),A.nrm(7,"rtl-currency-unit-converter",6),A.k0s()()(),A.j41(8,"div",1),A.nrm(9,"fa-icon",2),A.j41(10,"span",3),A.EFF(11,"On-chain Transactions"),A.k0s()(),A.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),A.DNE(16,qo,2,6,"div",9),A.k0s(),A.nrm(17,"mat-tab-nav-panel",null,0),A.j41(19,"div",10),A.nrm(20,"router-outlet"),A.k0s(),A.j41(21,"div",11)(22,"rtl-cln-utxo-tables",12),A.bIt("selectedTableIndexChange",function(WA){return A.eBV(j),A.Njj(c.onSelectedTableIndexChanged(WA))}),A.k0s()()()()()}if(2&l){const j=A.sdS(18);A.R7$(),A.Y8G("icon",c.faChartPie),A.R7$(6),A.Y8G("values",c.balances),A.R7$(2),A.Y8G("icon",c.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links),A.R7$(6),A.Y8G("selectedTableIndex",null==c.selectedTable?null:c.selectedTable.id)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,kr.f,le.n3,le.Wk,Xo]})}return i})();function $o(i,D){if(1&i&&(A.j41(0,"span",10),A.EFF(1,"Channels"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.activeChannels)}}function A0(i,D){if(1&i&&(A.j41(0,"span",10),A.EFF(1,"Peers"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.activePeers)}}let t0=(()=>{class i{constructor(t,l,c){this.store=t,this.logger=l,this.router=c,this.activePeers=0,this.activeChannels=0,this.faUsers=u.gdJ,this.faChartPie=u.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(t=>t instanceof le.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(l=>l.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.activeChannels=t.activeChannels.length||0}),this.store.select(E.os).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.activePeers=t.peers&&t.peers.length?t.peers.length:0,this.logger.info(t)}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.balances=[{title:"Total Balance",dataValue:t.balance.totalBalance||0},{title:"Confirmed",dataValue:t.balance.confBalance||0},{title:"Unconfirmed",dataValue:t.balance.unconfBalance||0}]})}onSelectedTabChange(t){this.router.navigateByUrl("/cln/connections/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(C.gP),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-connections"]],decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(l,c){1&l&&(A.j41(0,"div",0),A.nrm(1,"fa-icon",1),A.j41(2,"span",2),A.EFF(3,"On-chain Balance"),A.k0s()(),A.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),A.nrm(7,"rtl-currency-unit-converter",5),A.k0s()()(),A.j41(8,"div",0),A.nrm(9,"fa-icon",1),A.j41(10,"span",2),A.EFF(11,"Connections"),A.k0s()(),A.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),A.mxI("selectedIndexChange",function(PA){return A.DH7(c.activeLink,PA)||(c.activeLink=PA),PA}),A.bIt("selectedTabChange",function(PA){return c.onSelectedTabChange(PA)}),A.j41(16,"mat-tab"),A.DNE(17,$o,2,1,"ng-template",8),A.k0s(),A.j41(18,"mat-tab"),A.DNE(19,A0,2,1,"ng-template",8),A.k0s()(),A.j41(20,"div",9),A.nrm(21,"router-outlet"),A.k0s()()()()),2&l&&(A.R7$(),A.Y8G("icon",c.faChartPie),A.R7$(6),A.Y8G("values",c.balances),A.R7$(2),A.Y8G("icon",c.faUsers),A.R7$(6),A.R50("selectedIndex",c.activeLink))},dependencies:[Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,jr.k,Y.ES,Y.mq,Y.T8,kr.f,le.n3]})}return i})();function e0(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let n0=(()=>{class i{constructor(t,l,c){this.logger=t,this.store=l,this.router=c,this.faExchangeAlt=u._qq,this.faChartPie=u.W1p,this.currencyUnits=[],this.routerUrl="",this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link,this.routerUrl=l.urlAfterRedirects}}),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[1])).subscribe(l=>{if(this.selNode=l,this.selNode&&this.selNode.settings.enableOffers){this.store.dispatch((0,_.Eb)()),this.store.dispatch((0,_.Ml)()),this.links.push({link:"offers",name:"Offers"}),this.links.push({link:"offrBookmarks",name:"Paid Offer Bookmarks"});const c=this.links.find(j=>this.router.url.includes(j.link));this.activeLink=c?c.link:this.links[0].link}}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[2]),(0,f.E)(this.store.select(d._c))).subscribe(([l,c])=>{this.currencyUnits=c?.settings.currencyUnits||[],this.balances=c&&c.settings.userPersona===r.HW.OPERATOR?[{title:"Local Capacity",dataValue:l.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:l.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:l.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:l.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(l)})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-transactions"]],decls:21,vars:5,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(l,c){if(1&l&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Lightning Balance"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),A.nrm(7,"rtl-currency-unit-converter",6),A.k0s()()(),A.j41(8,"div",7),A.nrm(9,"fa-icon",2),A.j41(10,"span",3),A.EFF(11,"Lightning Transactions"),A.k0s()(),A.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),A.DNE(16,e0,2,3,"div",10),A.k0s(),A.nrm(17,"mat-tab-nav-panel",null,0),A.j41(19,"div",11),A.nrm(20,"router-outlet"),A.k0s()()()()),2&l){const j=A.sdS(18);A.R7$(),A.Y8G("icon",c.faChartPie),A.R7$(6),A.Y8G("values",c.balances),A.R7$(2),A.Y8G("icon",c.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,kr.f,le.n3,le.Wk]})}return i})();function i0(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let wr=(()=>{class i{constructor(t){this.router=t,this.faMapSigns=u.knH,this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"routingpeers",name:"Routing Peers"},{link:"failedtransactions",name:"Failed Transactions"},{link:"localfail",name:"Local Failed Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-routing"]],decls:15,vars:3,consts:[["tabPanel",""],["fxLayout","column",1,"mb-2"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","1","mat-tab-link","","role","tab","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["tabindex","1","mat-tab-link","","role","tab",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(l,c){if(1&l&&(A.j41(0,"div",1)(1,"div",2),A.nrm(2,"fa-icon",3),A.j41(3,"span",4),A.EFF(4,"Routing"),A.k0s()(),A.j41(5,"div",5)(6,"mat-card",6)(7,"mat-card-content",7)(8,"div",8)(9,"nav",9),A.DNE(10,i0,2,3,"div",10),A.k0s(),A.nrm(11,"mat-tab-nav-panel",null,0),A.k0s(),A.j41(13,"div",11),A.nrm(14,"router-outlet"),A.k0s()()()()()),2&l){const j=A.sdS(12);A.R7$(2),A.Y8G("icon",c.faMapSigns),A.R7$(7),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,le.n3,le.Wk]})}return i})();function Wr(i,D){1&i&&(A.j41(0,"h3",9),A.EFF(1,"Node 1"),A.k0s())}function dr(i,D){1&i&&(A.j41(0,"h3",9),A.EFF(1,"Node 1 (Your Node)"),A.k0s())}function Ya(i,D){1&i&&(A.j41(0,"h3",9),A.EFF(1,"Node 2"),A.k0s())}function r0(i,D){1&i&&(A.j41(0,"h3",9),A.EFF(1,"Node 2 (Your Node)"),A.k0s())}function Qr(i,D){if(1&i&&(A.j41(0,"div",1),A.nrm(1,"mat-divider"),A.j41(2,"div",2)(3,"div",3)(4,"div",4),A.DNE(5,Wr,2,0,"h3",5)(6,dr,2,0,"h3",5),A.k0s(),A.nrm(7,"mat-divider",6),A.j41(8,"div",4)(9,"h4",7),A.EFF(10,"Short Channel ID"),A.k0s(),A.j41(11,"span",8),A.EFF(12),A.k0s()(),A.nrm(13,"mat-divider",6),A.j41(14,"div",4)(15,"h4",7),A.EFF(16,"Active"),A.k0s(),A.j41(17,"span",8),A.EFF(18),A.k0s()(),A.nrm(19,"mat-divider",6),A.j41(20,"div",4)(21,"h4",7),A.EFF(22,"Last Update"),A.k0s(),A.j41(23,"span",8),A.EFF(24),A.nI1(25,"date"),A.k0s()(),A.nrm(26,"mat-divider",6),A.j41(27,"div",4)(28,"h4",7),A.EFF(29,"Amount (Sats)"),A.k0s(),A.j41(30,"span",8),A.EFF(31),A.nI1(32,"number"),A.k0s()(),A.nrm(33,"mat-divider",6),A.j41(34,"div",4)(35,"h4",7),A.EFF(36,"Base Fee (mSats)"),A.k0s(),A.j41(37,"span",8),A.EFF(38),A.nI1(39,"number"),A.k0s()(),A.nrm(40,"mat-divider",6),A.j41(41,"div",4)(42,"h4",7),A.EFF(43,"Fee/Millionth"),A.k0s(),A.j41(44,"span",8),A.EFF(45),A.nI1(46,"number"),A.k0s()(),A.nrm(47,"mat-divider",6),A.j41(48,"div",4)(49,"h4",7),A.EFF(50,"Channel Flags"),A.k0s(),A.j41(51,"span",8),A.EFF(52),A.nI1(53,"number"),A.k0s()(),A.nrm(54,"mat-divider",6),A.j41(55,"div",4)(56,"h4",7),A.EFF(57,"Delay"),A.k0s(),A.j41(58,"span",8),A.EFF(59),A.nI1(60,"number"),A.k0s()(),A.nrm(61,"mat-divider",6),A.j41(62,"div",4)(63,"h4",7),A.EFF(64,"Max Htlc (mSat)"),A.k0s(),A.j41(65,"span",8),A.EFF(66),A.nI1(67,"number"),A.k0s()(),A.nrm(68,"mat-divider",6),A.j41(69,"div",4)(70,"h4",7),A.EFF(71,"Min Htlc (mSat)"),A.k0s(),A.j41(72,"span",8),A.EFF(73),A.nI1(74,"number"),A.k0s()(),A.nrm(75,"mat-divider",6),A.j41(76,"div",4)(77,"h4",7),A.EFF(78,"Message Flags"),A.k0s(),A.j41(79,"span",8),A.EFF(80),A.nI1(81,"number"),A.k0s()(),A.nrm(82,"mat-divider",6),A.j41(83,"div",4)(84,"h4",7),A.EFF(85,"Public"),A.k0s(),A.j41(86,"span",8),A.EFF(87),A.k0s()(),A.nrm(88,"mat-divider",6),A.j41(89,"div",4)(90,"h4",7),A.EFF(91,"Source"),A.k0s(),A.j41(92,"span",8),A.EFF(93),A.k0s()(),A.nrm(94,"mat-divider",6),A.j41(95,"div",4)(96,"h4",7),A.EFF(97,"Destination"),A.k0s(),A.j41(98,"span",8),A.EFF(99),A.k0s()()(),A.j41(100,"div",3)(101,"div"),A.DNE(102,Ya,2,0,"h3",5)(103,r0,2,0,"h3",5),A.k0s(),A.nrm(104,"mat-divider",6),A.j41(105,"div",4)(106,"h4",7),A.EFF(107,"Short Channel ID"),A.k0s(),A.j41(108,"span",8),A.EFF(109),A.k0s()(),A.nrm(110,"mat-divider",6),A.j41(111,"div",4)(112,"h4",7),A.EFF(113,"Active"),A.k0s(),A.j41(114,"span",8),A.EFF(115),A.k0s()(),A.nrm(116,"mat-divider",6),A.j41(117,"div",4)(118,"h4",7),A.EFF(119,"Last Update"),A.k0s(),A.j41(120,"span",8),A.EFF(121),A.nI1(122,"date"),A.k0s()(),A.nrm(123,"mat-divider",6),A.j41(124,"div",4)(125,"h4",7),A.EFF(126,"Amount (Sats)"),A.k0s(),A.j41(127,"span",8),A.EFF(128),A.nI1(129,"number"),A.k0s()(),A.nrm(130,"mat-divider",6),A.j41(131,"div",4)(132,"h4",7),A.EFF(133,"Base Fee (mSats)"),A.k0s(),A.j41(134,"span",8),A.EFF(135),A.nI1(136,"number"),A.k0s()(),A.nrm(137,"mat-divider",6),A.j41(138,"div",4)(139,"h4",7),A.EFF(140,"Fee/Millionth"),A.k0s(),A.j41(141,"span",8),A.EFF(142),A.nI1(143,"number"),A.k0s()(),A.nrm(144,"mat-divider",6),A.j41(145,"div",4)(146,"h4",7),A.EFF(147,"Channel Flags"),A.k0s(),A.j41(148,"span",8),A.EFF(149),A.nI1(150,"number"),A.k0s()(),A.nrm(151,"mat-divider",6),A.j41(152,"div",4)(153,"h4",7),A.EFF(154,"Delay"),A.k0s(),A.j41(155,"span",8),A.EFF(156),A.nI1(157,"number"),A.k0s()(),A.nrm(158,"mat-divider",6),A.j41(159,"div",4)(160,"h4",7),A.EFF(161,"Max Htlc (mSat)"),A.k0s(),A.j41(162,"span",8),A.EFF(163),A.nI1(164,"number"),A.k0s()(),A.nrm(165,"mat-divider",6),A.j41(166,"div",4)(167,"h4",7),A.EFF(168,"Min Htlc (mSat)"),A.k0s(),A.j41(169,"span",8),A.EFF(170),A.nI1(171,"number"),A.k0s()(),A.nrm(172,"mat-divider",6),A.j41(173,"div",4)(174,"h4",7),A.EFF(175,"Message Flags"),A.k0s(),A.j41(176,"span",8),A.EFF(177),A.nI1(178,"number"),A.k0s()(),A.nrm(179,"mat-divider",6),A.j41(180,"div",4)(181,"h4",7),A.EFF(182,"Public"),A.k0s(),A.j41(183,"span",8),A.EFF(184),A.k0s()(),A.nrm(185,"mat-divider",6),A.j41(186,"div",4)(187,"h4",7),A.EFF(188,"Source"),A.k0s(),A.j41(189,"span",8),A.EFF(190),A.k0s()(),A.nrm(191,"mat-divider",6),A.j41(192,"div",4)(193,"h4",7),A.EFF(194,"Destination"),A.k0s(),A.j41(195,"span",8),A.EFF(196),A.k0s()()()()()),2&i){const t=A.XpG();A.R7$(5),A.Y8G("ngIf",!t.node1_match),A.R7$(),A.Y8G("ngIf",t.node1_match),A.R7$(6),A.JRh(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].short_channel_id),A.R7$(6),A.JRh(null!=t.lookupResult.channels[0]&&t.lookupResult.channels[0].active?"True":"False"),A.R7$(6),A.JRh(A.i5U(25,32,1e3*(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].last_update),"dd/MMM/y HH:mm")),A.R7$(7),A.JRh(A.i5U(32,35,(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].amount_msat)/1e3,"1.0-0")),A.R7$(7),A.JRh(A.bMT(39,38,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].base_fee_millisatoshi)),A.R7$(7),A.JRh(A.bMT(46,40,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].fee_per_millionth)),A.R7$(7),A.JRh(A.bMT(53,42,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].channel_flags)),A.R7$(7),A.JRh(A.bMT(60,44,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].delay)),A.R7$(7),A.JRh(A.bMT(67,46,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].htlc_maximum_msat)),A.R7$(7),A.JRh(A.bMT(74,48,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].htlc_minimum_msat)),A.R7$(7),A.JRh(A.bMT(81,50,null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].message_flags)),A.R7$(7),A.JRh(null!=t.lookupResult.channels[0]&&t.lookupResult.channels[0].public?"Yes":"No"),A.R7$(6),A.JRh(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].source),A.R7$(6),A.JRh(null==t.lookupResult.channels[0]?null:t.lookupResult.channels[0].destination),A.R7$(3),A.Y8G("ngIf",!t.node2_match),A.R7$(),A.Y8G("ngIf",t.node2_match),A.R7$(6),A.JRh(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].short_channel_id),A.R7$(6),A.JRh(null!=t.lookupResult.channels[1]&&t.lookupResult.channels[1].active?"True":"False"),A.R7$(6),A.JRh(A.i5U(122,52,1e3*(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].last_update),"dd/MMM/y HH:mm")),A.R7$(7),A.JRh(A.i5U(129,55,(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].amount_msat)/1e3,"1.0-0")),A.R7$(7),A.JRh(A.bMT(136,58,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].base_fee_millisatoshi)),A.R7$(7),A.JRh(A.bMT(143,60,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].fee_per_millionth)),A.R7$(7),A.JRh(A.bMT(150,62,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].channel_flags)),A.R7$(7),A.JRh(A.bMT(157,64,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].delay)),A.R7$(7),A.JRh(A.bMT(164,66,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].htlc_maximum_msat)),A.R7$(7),A.JRh(A.bMT(171,68,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].htlc_minimum_msat)),A.R7$(7),A.JRh(A.bMT(178,70,null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].message_flags)),A.R7$(7),A.JRh(null!=t.lookupResult.channels[1]&&t.lookupResult.channels[1].public?"Yes":"No"),A.R7$(6),A.JRh(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].source),A.R7$(6),A.JRh(null==t.lookupResult.channels[1]?null:t.lookupResult.channels[1].destination)}}let Un=(()=>{class i{constructor(t){this.store=t,this.lookupResult={},this.node1_match=!1,this.node2_match=!1,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.lookupResult.channels&&this.lookupResult.channels.length>0&&this.lookupResult.channels[0].source===t.id&&(this.node1_match=!0),this.lookupResult.channels&&this.lookupResult.channels.length>1&&this.lookupResult.channels[1].source===t.id&&(this.node2_match=!0)})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-lookup"]],inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],[1,"my-1"],[1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"page-title","font-bold-500"]],template:function(l,c){1&l&&A.DNE(0,Qr,197,72,"div",0),2&l&&A.Y8G("ngIf",c.lookupResult)},dependencies:[st.bT,n.DJ,n.sA,n.UI,ri.q,st.QX,st.vh],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]})}return i})();const si=["peersForm"],Kr=["stepper"],Xr=(i,D)=>({"mr-6":i,"mr-2":D});function Zr(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG();A.JRh(t.peerFormLabel)}}function a0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Address is required."),A.k0s())}function Vi(i,D){if(1&i&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(2),A.JRh(t.peerConnectionError)}}function Sa(i,D){if(1&i&&A.EFF(0),2&i){const t=A.XpG();A.JRh(t.channelFormLabel)}}function s0(i,D){if(1&i&&(A.j41(0,"div",44),A.nrm(1,"fa-icon",43),A.j41(2,"span",13)(3,"div"),A.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(5,"span",45)(6,"span"),A.EFF(7),A.k0s(),A.j41(8,"span"),A.EFF(9),A.k0s(),A.j41(10,"span"),A.EFF(11),A.k0s(),A.j41(12,"span"),A.EFF(13),A.k0s(),A.j41(14,"span"),A.EFF(15),A.k0s()()()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faInfoCircle),A.R7$(6),A.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),A.R7$(2),A.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),A.R7$(2),A.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),A.R7$(2),A.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),A.R7$(2),A.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function o0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function l0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Amount must be a positive number."),A.k0s())}function c0(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",t.totalBalance,".")}}function g0(i,D){if(1&i&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t.feeRateId),A.R7$(),A.SpI(" ",t.feeRateType," ")}}function B0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function u0(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",t.recommendedFee.minimumFee," in the mempool.")}}function f0(i,D){if(1&i&&(A.j41(0,"mat-form-field",47)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.nrm(3,"input",48),A.j41(4,"mat-hint"),A.EFF(5),A.k0s(),A.DNE(6,B0,2,0,"mat-error",15)(7,u0,2,1,"mat-error",15),A.k0s()),2&i){const t=A.XpG();A.R7$(3),A.Y8G("step",1)("min",t.recommendedFee.minimumFee||0),A.R7$(2),A.SpI("Mempool Min: ",t.recommendedFee.minimumFee," (Sats/vByte)"),A.R7$(),A.Y8G("ngIf","customperkb"===t.channelFormGroup.controls.selFeeRate.value&&!t.channelFormGroup.controls.flgMinConf.value&&!t.channelFormGroup.controls.customFeeRate.value),A.R7$(),A.Y8G("ngIf",t.channelFormGroup.controls.customFeeRate.value&&(null==t.channelFormGroup.controls.customFeeRate.errors?null:t.channelFormGroup.controls.customFeeRate.errors.minimum))}}function h0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function E0(i,D){if(1&i&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(2),A.JRh(t.channelConnectionError)}}let Na=(()=>{class i{constructor(t,l,c,j,PA,WA,an,fe){this.dialogRef=t,this.data=l,this.store=c,this.formBuilder=j,this.actions=PA,this.logger=WA,this.commonService=an,this.dataService=fe,this.faExclamationTriangle=u.zpE,this.faInfoCircle=u.iW_,this.peerAddress="",this.totalBalance=0,this.feeRateTypes=r.G,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.screenSize="",this.screenSizeEnum=r.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.data.message?(this.totalBalance=this.data.message.balance,this.peerAddress=this.data.message.peer&&this.data.message.peer.id&&this.data.message.peer.netaddr?this.data.message.peer.id+"@"+this.data.message.peer.netaddr:this.data.message.peer&&this.data.message.peer.id&&!this.data.message.peer.netaddr?this.data.message.peer.id:""):(this.totalBalance=0,this.peerAddress=""),this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[iA.k0.required]],peerAddress:[this.peerAddress,[iA.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[iA.k0.required,iA.k0.min(1),iA.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}],hiddenAmount:["",[iA.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t,this.channelFormGroup.controls.isPrivate.setValue(!!t?.settings.unannouncedChannels)}),this.channelFormGroup.controls.flgMinConf.valueChanges.pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{t?(this.channelFormGroup.controls.selFeeRate.setValue(null),this.channelFormGroup.controls.selFeeRate.disable(),this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.minConfValue.reset(),this.channelFormGroup.controls.minConfValue.enable(),this.channelFormGroup.controls.minConfValue.setValidators([iA.k0.required])):(this.channelFormGroup.controls.selFeeRate.enable(),this.channelFormGroup.controls.minConfValue.setValue(null),this.channelFormGroup.controls.minConfValue.disable(),this.channelFormGroup.controls.minConfValue.setValidators(null))}),this.channelFormGroup.controls.selFeeRate.valueChanges.pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.customFeeRate.reset(),this.channelFormGroup.controls.customFeeRate.setValidators("customperkb"!==t||this.channelFormGroup.controls.flgMinConf.value?null:[iA.k0.required])}),this.actions.pipe((0,g.Q)(this.unSubs[3]),(0,v.p)(t=>t.type===r.TC.NEWLY_ADDED_PEER_CLN||t.type===r.TC.FETCH_CHANNELS_CLN||t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.TC.NEWLY_ADDED_PEER_CLN&&(this.logger.info(t.payload),this.flgEditable=!1,this.newlyAddedPeer=t.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),t.type===r.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close(),t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.ERROR&&("SaveNewPeer"===t.payload.action?this.peerConnectionError=t.payload.message:"SaveNewChannel"===t.payload.action&&(this.channelConnectionError=t.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[4])).subscribe({next:t=>{this.recommendedFee=t},error:t=>{this.logger.error(t)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,_.sq)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){return"customperkb"===this.channelFormGroup.controls.selFeeRate.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.customFeeRate.value?(this.channelFormGroup.controls.customFeeRate.setErrors({minimum:!0}),!0):!!(!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||this.channelFormGroup.controls.flgMinConf.value&&!this.channelFormGroup.controls.minConfValue.value)||(this.channelConnectionError="",void this.store.dispatch((0,_.vL)({payload:{peerId:this.newlyAddedPeer?.id,amount:this.channelFormGroup.controls.fundingAmount.value,announce:!this.channelFormGroup.controls.isPrivate.value,feeRate:"customperkb"===this.channelFormGroup.controls.selFeeRate.value&&!this.channelFormGroup.controls.flgMinConf.value&&this.channelFormGroup.controls.customFeeRate.value?1e3*this.channelFormGroup.controls.customFeeRate.value+"perkb":this.channelFormGroup.controls.selFeeRate.value,minconf:this.channelFormGroup.controls.flgMinConf.value?this.channelFormGroup.controls.minConfValue.value:null}})))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(t){switch(t.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.id):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer?.alias:this.newlyAddedPeer?.id):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}t.selectedIndex{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(iA.ze),A.rXU(fA.En),A.rXU(C.gP),A.rXU(h.h),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-connect-peer"]],viewQuery:function(l,c){if(1&l&&(A.GBs(si,5),A.GBs(Kr,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first),A.mGM(j=A.lsd())&&(c.stepper=j.first)}},decls:67,vars:33,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"ngSubmit","formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["fxLayout","column","fxFlex","53","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","45","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["fxFlex","53","fxLayoutAlign","space-between end"],["fxLayout","column","fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4","formControlName","selFeeRate"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","45","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["fxLayout","column","fxFlex","93"],["matInput","","formControlName","minConfValue","type","number","name","blocks","tabindex","8",3,"step","min","required"],["mat-button","","color","primary","tabindex","8","type","submit"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end center"],["matInput","","formControlName","customFeeRate","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Connect to a new peer"),A.k0s()(),A.j41(6,"button",6),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),A.bIt("selectionChange",function(WA){return A.eBV(j),A.Njj(c.stepSelectionChanged(WA))}),A.j41(12,"mat-step",10)(13,"form",11),A.DNE(14,Zr,1,1,"ng-template",12),A.j41(15,"mat-form-field",13)(16,"mat-label"),A.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),A.k0s(),A.nrm(18,"input",14),A.DNE(19,a0,2,0,"mat-error",15),A.k0s(),A.DNE(20,Vi,4,2,"div",16),A.j41(21,"div",17)(22,"button",18),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onConnectPeer())}),A.EFF(23),A.k0s()()()(),A.j41(24,"mat-step",10)(25,"form",19),A.bIt("ngSubmit",function(){return A.eBV(j),A.Njj(c.onOpenChannel())}),A.DNE(26,Sa,1,1,"ng-template",20),A.j41(27,"div",21),A.DNE(28,s0,16,6,"div",22),A.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),A.EFF(32,"Amount"),A.k0s(),A.nrm(33,"input",25),A.j41(34,"mat-hint"),A.EFF(35),A.nI1(36,"number"),A.k0s(),A.j41(37,"span",26),A.EFF(38," Sats "),A.k0s(),A.DNE(39,o0,2,0,"mat-error",15)(40,l0,2,0,"mat-error",15)(41,c0,2,1,"mat-error",15),A.k0s(),A.j41(42,"div",27)(43,"mat-slide-toggle",28),A.EFF(44,"Private Channel"),A.k0s()()(),A.j41(45,"div",29)(46,"div",30)(47,"mat-form-field",31)(48,"mat-label"),A.EFF(49,"Fee Rate"),A.k0s(),A.j41(50,"mat-select",32),A.DNE(51,g0,2,2,"mat-option",33),A.k0s()(),A.DNE(52,f0,8,5,"mat-form-field",34),A.k0s(),A.j41(53,"div",35),A.nrm(54,"mat-checkbox",36),A.j41(55,"mat-form-field",37)(56,"mat-label"),A.EFF(57,"Min Confirmation Blocks"),A.k0s(),A.nrm(58,"input",38),A.DNE(59,h0,2,0,"mat-error",15),A.k0s()()()(),A.DNE(60,E0,4,2,"div",16),A.j41(61,"div",17)(62,"button",39),A.EFF(63),A.k0s()()()()(),A.j41(64,"div",40)(65,"button",41),A.EFF(66),A.k0s()()()()()()}2&l&&(A.R7$(10),A.Y8G("linear",!0),A.R7$(2),A.Y8G("stepControl",c.peerFormGroup)("editable",c.flgEditable),A.R7$(),A.Y8G("formGroup",c.peerFormGroup),A.R7$(6),A.Y8G("ngIf",null==c.peerFormGroup.controls.peerAddress.errors?null:c.peerFormGroup.controls.peerAddress.errors.required),A.R7$(),A.Y8G("ngIf",""!==c.peerConnectionError),A.R7$(3),A.JRh(""!==c.peerConnectionError?"Retry":"Add Peer"),A.R7$(),A.Y8G("stepControl",c.channelFormGroup)("editable",c.flgEditable),A.R7$(),A.Y8G("formGroup",c.channelFormGroup),A.R7$(3),A.Y8G("ngIf",c.recommendedFee.minimumFee),A.R7$(5),A.Y8G("step",1e3),A.R7$(2),A.SpI("Remaining: ",A.bMT(36,28,c.totalBalance-(c.channelFormGroup.controls.fundingAmount.value?c.channelFormGroup.controls.fundingAmount.value:0)),""),A.R7$(4),A.Y8G("ngIf",null==c.channelFormGroup.controls.fundingAmount.errors?null:c.channelFormGroup.controls.fundingAmount.errors.required),A.R7$(),A.Y8G("ngIf",null==c.channelFormGroup.controls.fundingAmount.errors?null:c.channelFormGroup.controls.fundingAmount.errors.min),A.R7$(),A.Y8G("ngIf",null==c.channelFormGroup.controls.fundingAmount.errors?null:c.channelFormGroup.controls.fundingAmount.errors.max),A.R7$(6),A.Y8G("fxFlex","customperkb"!==c.channelFormGroup.controls.selFeeRate.value||c.channelFormGroup.controls.flgMinConf.value?"100":"25"),A.R7$(4),A.Y8G("ngForOf",c.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===c.channelFormGroup.controls.selFeeRate.value&&!c.channelFormGroup.controls.flgMinConf.value),A.R7$(2),A.Y8G("ngClass",A.l_i(30,Xr,c.screenSize===c.screenSizeEnum.XS||c.screenSize===c.screenSizeEnum.SM,c.screenSize===c.screenSizeEnum.MD||c.screenSize===c.screenSizeEnum.LG||c.screenSize===c.screenSizeEnum.XL)),A.R7$(4),A.Y8G("step",1)("min",0)("required",c.channelFormGroup.controls.flgMinConf.value),A.R7$(),A.Y8G("ngIf",c.channelFormGroup.controls.flgMinConf.value&&!c.channelFormGroup.controls.minConfValue.value),A.R7$(),A.Y8G("ngIf",""!==c.channelConnectionError),A.R7$(3),A.JRh(""!==c.channelConnectionError?"Retry":"Open Channel"),A.R7$(2),A.Y8G("mat-dialog-close",!1),A.R7$(),A.JRh(null!=c.newlyAddedPeer&&c.newlyAddedPeer.id?"Do It Later":"Close"))},dependencies:[st.YU,st.Sq,st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.j4,iA.JD,Q.aY,n.DJ,n.sA,n.UI,I.PW,gA.tx,R.$z,p.m2,p.MM,In.So,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,$.VO,FA.wT,YA.sG,bt.V5,bt.Ti,bt.M6,J.N,BA.V,st.QX]})}return i})();var mr=Pt(9157);const C0=i=>({"background-color":i});function pr(i,D){if(1&i&&(A.j41(0,"span",7),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(t)}}function Ie(i,D){1&i&&(A.j41(0,"th",27),A.EFF(1,"Type"),A.k0s())}function te(i,D){if(1&i&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.type)}}function w0(i,D){1&i&&(A.j41(0,"th",27),A.EFF(1,"Address"),A.k0s())}function ba(i,D){if(1&i&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.address)}}function Wi(i,D){1&i&&(A.j41(0,"th",27),A.EFF(1,"Port"),A.k0s())}function Ra(i,D){if(1&i&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.port)}}function d0(i,D){1&i&&(A.j41(0,"th",29)(1,"div",30),A.EFF(2,"Actions"),A.k0s()())}function Q0(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",31)(1,"div",32)(2,"mat-select",33),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",34),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onConnectNode(c))}),A.EFF(5,"Connect"),A.k0s(),A.j41(6,"mat-option",35),A.bIt("copied",function(c){A.eBV(t);const j=A.XpG(2);return A.Njj(j.onCopyNodeURI(c))}),A.EFF(7,"Copy URI"),A.k0s()()()()}if(2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(6),A.Y8G("payload",(null==l.lookupResult?null:l.lookupResult.nodeid)+"@"+t.address+":"+t.port)}}function Ta(i,D){1&i&&A.nrm(0,"tr",36)}function m0(i,D){1&i&&A.nrm(0,"tr",37)}function Bn(i,D){if(1&i&&(A.j41(0,"div",2),A.nrm(1,"mat-divider",3),A.j41(2,"div",4)(3,"div",5)(4,"h4",6),A.EFF(5,"Alias"),A.k0s(),A.j41(6,"span",7),A.EFF(7),A.j41(8,"span",8),A.EFF(9),A.k0s()()(),A.j41(10,"div",9)(11,"h4",6),A.EFF(12,"Pub Key"),A.k0s(),A.j41(13,"span",10),A.EFF(14),A.k0s()()(),A.nrm(15,"mat-divider",11),A.j41(16,"div",4)(17,"div",5)(18,"h4",6),A.EFF(19,"Last Update"),A.k0s(),A.j41(20,"span",7),A.EFF(21),A.nI1(22,"date"),A.k0s()(),A.j41(23,"div",9)(24,"h4",6),A.EFF(25,"Features"),A.k0s(),A.DNE(26,pr,2,1,"span",12),A.k0s()(),A.nrm(27,"mat-divider",11),A.j41(28,"div",13)(29,"h4",14),A.EFF(30,"Addresses"),A.k0s(),A.j41(31,"div",15)(32,"table",16,0),A.qex(34,17),A.DNE(35,Ie,2,0,"th",18)(36,te,2,1,"td",19),A.bVm(),A.qex(37,20),A.DNE(38,w0,2,0,"th",18)(39,ba,2,1,"td",19),A.bVm(),A.qex(40,21),A.DNE(41,Wi,2,0,"th",18)(42,Ra,2,1,"td",19),A.bVm(),A.qex(43,22),A.DNE(44,d0,3,0,"th",23)(45,Q0,8,1,"td",24),A.bVm(),A.DNE(46,Ta,1,0,"tr",25)(47,m0,1,0,"tr",26),A.k0s()()()()),2&i){const t=A.XpG();A.R7$(7),A.JRh(null==t.lookupResult?null:t.lookupResult.alias),A.R7$(),A.Y8G("ngStyle",A.eq3(12,C0,"#"+(null==t.lookupResult?null:t.lookupResult.color))),A.R7$(),A.JRh(null!=t.lookupResult&&t.lookupResult.color?"#"+(null==t.lookupResult?null:t.lookupResult.color):""),A.R7$(5),A.JRh(null==t.lookupResult?null:t.lookupResult.nodeid),A.R7$(7),A.JRh(A.i5U(22,9,1e3*(null==t.lookupResult?null:t.lookupResult.last_timestamp),"dd/MMM/y HH:mm")),A.R7$(5),A.Y8G("ngForOf",t.featureDescriptions),A.R7$(6),A.Y8G("dataSource",t.addresses),A.R7$(14),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}let qr=(()=>{class i{constructor(t,l,c){this.logger=t,this.snackBar=l,this.store=c,this.featureDescriptions=[],this.addresses=new F.I6([]),this.displayedColumns=["type","address","port","actions"],this.information={},this.availableBalance=0,this.unSubs=[new o.B]}ngOnInit(){if(this.addresses=new F.I6(this.lookupResult&&this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(t,l)=>t[l]&&isNaN(t[l])?t[l].toLocaleLowerCase():t[l]?+t[l]:null,this.lookupResult.features&&""!==this.lookupResult.features.trim()){this.lookupResult.features=this.lookupResult.features.substring(this.lookupResult.features.length-40);const t=parseInt(this.lookupResult.features,16);r.TH.forEach(l=>{t&1<{this.information=t.information,this.availableBalance=t.balance.totalBalance||0})}onConnectNode(t){this.store.dispatch((0,AA.xO)({payload:{data:{message:{peer:{id:this.lookupResult.nodeid+"@"+t.address+":"+t.port},information:this.information,balance:this.availableBalance},component:Na}}}))}onCopyNodeURI(t){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(ki.UG),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-node-lookup"]],viewQuery:function(l,c){if(1&l&&A.GBs(z.B4,5),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first)}},inputs:{lookupResult:"lookupResult"},decls:1,vars:1,consts:[["table",""],["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],[1,"my-1"],["class","foreground-secondary-text",4,"ngFor","ngForOf"],["fxLayout","column"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource"],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","port"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(l,c){1&l&&A.DNE(0,Bn,48,14,"div",1),2&l&&A.Y8G("ngIf",c.lookupResult)},dependencies:[st.Sq,st.bT,st.B3,n.DJ,n.sA,n.UI,I.eI,ri.q,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.KS,F.$R,F.YZ,F.NB,cA.Ld,mr.U,st.vh]})}return i})();const Ua=["form"],Mr=i=>({"mt-1":!0,"mt-2":i});function p0(i,D){if(1&i&&(A.j41(0,"mat-radio-button",17),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t.id)("checked",l.selectedFieldId===t.id),A.R7$(),A.SpI(" ",t.name," ")}}function Qi(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.SpI("",null==t.lookupFields[t.selectedFieldId]?null:t.lookupFields[t.selectedFieldId].placeholder," is required.")}}function $n(i,D){if(1&i&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-node-lookup",26),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("lookupResult",t.nodeLookupValue)}}function oi(i,D){if(1&i&&(A.j41(0,"span",24),A.DNE(1,$n,2,1,"div",25),A.k0s()),2&i){const t=A.XpG(2),l=A.sdS(21);A.R7$(),A.Y8G("ngIf",""!==t.nodeLookupValue.nodeid)("ngIfElse",l)}}function li(i,D){if(1&i&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-channel-lookup",26),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.Y8G("lookupResult",t.channelLookupValue)}}function M0(i,D){if(1&i&&(A.j41(0,"span",24),A.DNE(1,li,2,1,"div",25),A.k0s()),2&i){const t=A.XpG(2),l=A.sdS(21);A.R7$(),A.Y8G("ngIf",t.channelLookupValue.channels&&t.channelLookupValue.channels.length>0)("ngIfElse",l)}}function I0(i,D){1&i&&(A.j41(0,"span"),A.EFF(1,' fxFlex="100"'),A.j41(2,"h3"),A.EFF(3,"Error! Unable to find details!"),A.k0s()())}function D0(i,D){if(1&i&&(A.j41(0,"div",18)(1,"div",19)(2,"span",20),A.EFF(3),A.k0s()(),A.j41(4,"div",21),A.DNE(5,oi,2,2,"span",22)(6,M0,2,2,"span",22)(7,I0,4,0,"span",23),A.k0s()()),2&i){const t=A.XpG();A.R7$(3),A.SpI("",t.lookupFields[t.selectedFieldId].name," Details"),A.R7$(),A.Y8G("ngSwitch",t.selectedFieldId),A.R7$(),A.Y8G("ngSwitchCase",0),A.R7$(),A.Y8G("ngSwitchCase",1)}}function Ir(i,D){1&i&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find details!"),A.k0s())}let v0=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.actions=j,this.lookupKey="",this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Pubkey"},{id:1,name:"Channel",placeholder:"Short Channel ID"}],this.flgLoading=[!0],this.faSearch=u.MjD,this.screenSize="",this.screenSizeEnum=r.f7,this.unSubs=[new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKey=window.history.state.lookupValue||""),this.actions.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(t=>t.type===r.TC.SET_LOOKUP_CLN||t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{if(t.type===r.TC.SET_LOOKUP_CLN){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue="object"!=typeof t.payload[0]?{nodeid:""}:JSON.parse(JSON.stringify(t.payload[0]));break;case 1:this.channelLookupValue=t.payload.channels&&"object"!=typeof t.payload.channels?{channels:[]}:JSON.parse(JSON.stringify(t.payload))}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.ERROR&&"Lookup"===t.payload.action&&(this.flgLoading[0]="error")})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.selectedFieldId){case 0:this.store.dispatch((0,_.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,_.ij)({payload:{uiMessage:r.MZ.SEARCHING_CHANNEL,shortChannelID:this.lookupKey.trim(),showError:!1}}))}}onSelectChange(t){this.resetData(),this.selectedFieldId=t.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.form.resetForm()}clearLookupValue(){this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(fA.En))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-lookups"]],viewQuery:function(l,c){if(1&l&&A.GBs(Ua,7),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first)}},decls:22,vars:9,consts:[["form","ngForm"],["key",""],["errorBlock",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",3)(1,"div",4)(2,"mat-card-content",5)(3,"form",6,0)(5,"div",7)(6,"mat-radio-group",8),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selectedFieldId,WA)||(c.selectedFieldId=WA),A.Njj(WA)}),A.bIt("change",function(WA){return A.eBV(j),A.Njj(c.onSelectChange(WA))}),A.DNE(7,p0,2,3,"mat-radio-button",9),A.k0s()(),A.j41(8,"mat-form-field",10)(9,"mat-label"),A.EFF(10),A.k0s(),A.j41(11,"input",11,1),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.lookupKey,WA)||(c.lookupKey=WA),A.Njj(WA)}),A.bIt("change",function(){return A.eBV(j),A.Njj(c.clearLookupValue())}),A.k0s(),A.DNE(13,Qi,2,1,"mat-error",12),A.k0s(),A.j41(14,"div",13)(15,"button",14),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(16,"Clear"),A.k0s(),A.j41(17,"button",15),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onLookup())}),A.EFF(18,"Lookup"),A.k0s()()(),A.DNE(19,D0,8,4,"div",16),A.k0s()()(),A.DNE(20,Ir,2,0,"ng-template",null,2,A.C5r)}2&l&&(A.R7$(6),A.R50("ngModel",c.selectedFieldId),A.R7$(),A.Y8G("ngForOf",c.lookupFields),A.R7$(),A.Y8G("ngClass",A.eq3(7,Mr,c.screenSize===c.screenSizeEnum.XS||c.screenSize===c.screenSizeEnum.SM)),A.R7$(2),A.JRh((null==c.lookupFields[c.selectedFieldId]?null:c.lookupFields[c.selectedFieldId].placeholder)||"Lookup Key"),A.R7$(),A.R50("ngModel",c.lookupKey),A.R7$(2),A.Y8G("ngIf",!c.lookupKey),A.R7$(6),A.Y8G("ngIf",c.flgSetLookupValue))},dependencies:[st.YU,st.Sq,st.bT,st.ux,st.e1,st.fG,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,n.DJ,n.sA,n.UI,I.PW,R.$z,p.m2,wA.fg,IA.rl,IA.nJ,IA.TL,wn.VT,wn._g,Un,qr],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]})}return i})();var Dr=function(i){return i.KB="KB",i.KW="KW",i}(Dr||{});function F0(i,D){if(1&i&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 2 Blocks "),A.j41(3,"mat-icon",16),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&i){const t=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==t.perkbw?null:t.perkbw.estimates[0].smoothed_feerate))}}function y0(i,D){if(1&i&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 6 Blocks "),A.j41(3,"mat-icon",17),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&i){const t=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==t.perkbw?null:t.perkbw.estimates[1].smoothed_feerate))}}function we(i,D){if(1&i&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 12 Blocks "),A.j41(3,"mat-icon",18),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&i){const t=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==t.perkbw?null:t.perkbw.estimates[2].smoothed_feerate))}}function La(i,D){if(1&i&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 100 Blocks "),A.j41(3,"mat-icon",19),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&i){const t=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==t.perkbw?null:t.perkbw.estimates[3].smoothed_feerate))}}function x0(i,D){if(1&i&&(A.j41(0,"div",2)(1,"div",3)(2,"div",4)(3,"div")(4,"h4",5),A.EFF(5," Opening "),A.j41(6,"mat-icon",6),A.EFF(7,"info_outline"),A.k0s()(),A.j41(8,"div",7),A.EFF(9),A.nI1(10,"number"),A.k0s()(),A.j41(11,"div")(12,"h4",5),A.EFF(13," Mutual Close "),A.j41(14,"mat-icon",8),A.EFF(15,"info_outline"),A.k0s()(),A.j41(16,"div",7),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.j41(19,"div")(20,"h4",5),A.EFF(21," Unilateral Close "),A.j41(22,"mat-icon",9),A.EFF(23,"info_outline"),A.k0s()(),A.j41(24,"div",7),A.EFF(25),A.nI1(26,"number"),A.k0s()(),A.j41(27,"div")(28,"h4",5),A.EFF(29," Delayed To Us "),A.j41(30,"mat-icon",10),A.EFF(31,"info_outline"),A.k0s()(),A.j41(32,"div",7),A.EFF(33),A.nI1(34,"number"),A.k0s()(),A.j41(35,"div")(36,"h4",5),A.EFF(37," Minimum Acceptable "),A.j41(38,"mat-icon",11),A.EFF(39,"info_outline"),A.k0s()(),A.j41(40,"div",7),A.EFF(41),A.nI1(42,"number"),A.k0s()(),A.j41(43,"div")(44,"h4",5),A.EFF(45," Maximum Acceptable "),A.j41(46,"mat-icon",12),A.EFF(47,"info_outline"),A.k0s()(),A.j41(48,"div",7),A.EFF(49),A.nI1(50,"number"),A.k0s()()(),A.j41(51,"div",4)(52,"div")(53,"h4",5),A.EFF(54," HTLC Resolution "),A.j41(55,"mat-icon",13),A.EFF(56,"info_outline"),A.k0s()(),A.j41(57,"div",7),A.EFF(58),A.nI1(59,"number"),A.k0s()(),A.j41(60,"div")(61,"h4",5),A.EFF(62," Penalty "),A.j41(63,"mat-icon",14),A.EFF(64,"info_outline"),A.k0s()(),A.j41(65,"div",7),A.EFF(66),A.nI1(67,"number"),A.k0s()(),A.DNE(68,F0,8,3,"div",15)(69,y0,8,3,"div",15)(70,we,8,3,"div",15)(71,La,8,3,"div",15),A.k0s()()()),2&i){const t=A.XpG();A.R7$(9),A.JRh(A.bMT(10,12,null==t.perkbw?null:t.perkbw.opening)),A.R7$(8),A.JRh(A.bMT(18,14,null==t.perkbw?null:t.perkbw.mutual_close)),A.R7$(8),A.JRh(A.bMT(26,16,null==t.perkbw?null:t.perkbw.unilateral_close)),A.R7$(8),A.JRh(A.bMT(34,18,null==t.perkbw?null:t.perkbw.delayed_to_us)),A.R7$(8),A.JRh(A.bMT(42,20,null==t.perkbw?null:t.perkbw.min_acceptable)),A.R7$(8),A.JRh(A.bMT(50,22,null==t.perkbw?null:t.perkbw.max_acceptable)),A.R7$(9),A.JRh(A.bMT(59,24,null==t.perkbw?null:t.perkbw.htlc_resolution)),A.R7$(8),A.JRh(A.bMT(67,26,null==t.perkbw?null:t.perkbw.penalty)),A.R7$(2),A.Y8G("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==t.perkbw?null:t.perkbw.estimates)&&(null==t.perkbw?null:t.perkbw.estimates.length)&&(null==t.perkbw?null:t.perkbw.estimates.length)>3)}}function Y0(i,D){if(1&i&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let Pa=(()=>{class i{constructor(){this.perkbw={},this.displayedColumns=["blockcount","feerate"]}ngAfterContentChecked(){this.feeRateStyle===Dr.KB?this.perkbw=this.feeRates.perkb||{}:this.feeRateStyle===Dr.KW&&(this.perkbw=this.feeRates.perkw||{})}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-fee-rates"]],inputs:{feeRateStyle:"feeRateStyle",feeRates:"feeRates",errorMessage:"errorMessage"},decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch",1,"mt-2"],["fxLayoutAlign","start start",1,"dashboard-info-title"],["matTooltip","Default feerate for fundchannel and withdraw","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[1,"overflow-wrap","dashboard-info-value"],["matTooltip","Feerate to aim for in cooperative shutdown. Note that since mutual close is a negotiation, the actual feerate used in mutual close will be somewhere between this and the corresponding mutual close feerate of the peer","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for commitment transaction in a live channel which we originally funded","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for returning unilateral close funds to our wallet","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","The smallest feerate that you can use, usually the minimum relayed feerate of the backend","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","The largest feerate we will accept from remote negotiations. If a peer attempts to set the feerate higher than this we will unilaterally close the channel (or simply forget it if it's not open yet)","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for returning unilateral close HTLC outputs to our wallet","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate to start at when penalizing a cheat attempt","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[4,"ngIf"],["matTooltip","Fee rate estimate for 2 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 6 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 12 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 100 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(l,c){if(1&l&&A.DNE(0,x0,72,28,"div",1)(1,Y0,3,1,"ng-template",null,0,A.C5r),2&l){const j=A.sdS(2);A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,y.An,HA.oV,st.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]})}return i})();function S0(i,D){if(1&i&&(A.j41(0,"div",3)(1,"div",4)(2,"div")(3,"h4",5),A.EFF(4," Opening Channel "),A.j41(5,"mat-icon",6),A.EFF(6,"info_outline"),A.k0s()(),A.j41(7,"div",7),A.EFF(8),A.nI1(9,"number"),A.k0s()(),A.j41(10,"div")(11,"h4",5),A.EFF(12," Mutual Close "),A.j41(13,"mat-icon",8),A.EFF(14,"info_outline"),A.k0s()(),A.j41(15,"div",7),A.EFF(16),A.nI1(17,"number"),A.k0s()(),A.j41(18,"div")(19,"h4",5),A.EFF(20," Unilateral Close "),A.j41(21,"mat-icon",9),A.EFF(22,"info_outline"),A.k0s()(),A.j41(23,"div",7),A.EFF(24),A.nI1(25,"number"),A.k0s()(),A.j41(26,"div",10),A.nrm(27,"h4",5)(28,"div",7),A.k0s()(),A.j41(29,"div",4)(30,"div")(31,"h4",5),A.EFF(32," HTLC Timeout "),A.j41(33,"mat-icon",11),A.EFF(34,"info_outline"),A.k0s()(),A.j41(35,"div",7),A.EFF(36),A.nI1(37,"number"),A.k0s()(),A.j41(38,"div")(39,"h4",5),A.EFF(40," HTLC Success "),A.j41(41,"mat-icon",12),A.EFF(42,"info_outline"),A.k0s()(),A.j41(43,"div",7),A.EFF(44),A.nI1(45,"number"),A.k0s()(),A.j41(46,"div",10),A.nrm(47,"h4",5)(48,"div",7),A.k0s(),A.j41(49,"div",10),A.nrm(50,"h4",5)(51,"div",7),A.k0s()()()),2&i){const t=A.XpG();A.R7$(8),A.JRh(A.bMT(9,5,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.opening_channel_satoshis)),A.R7$(8),A.JRh(A.bMT(17,7,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.mutual_close_satoshis)),A.R7$(8),A.JRh(A.bMT(25,9,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.unilateral_close_satoshis)),A.R7$(12),A.JRh(A.bMT(37,11,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.htlc_timeout_satoshis)),A.R7$(8),A.JRh(A.bMT(45,13,null==t.feeRates||null==t.feeRates.onchain_fee_estimates?null:t.feeRates.onchain_fee_estimates.htlc_success_satoshis))}}function N0(i,D){if(1&i&&(A.j41(0,"div",13)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG();A.R7$(2),A.JRh(t.errorMessage)}}let b0=(()=>{class i{constructor(){}static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-onchain-fee-estimates"]],inputs:{feeRates:"feeRates",errorMessage:"errorMessage"},decls:4,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","62","fxLayoutAlign","stretch stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","62","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch",1,"mt-2"],["fxLayoutAlign","start start",1,"dashboard-info-title"],["matTooltip","Estimated cost of typical channel open","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[1,"overflow-wrap","dashboard-info-value"],["matTooltip","Estimated cost of typical channel close","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Estimated cost of typical unilateral close (without HTLCs)","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxFlex","12"],["matTooltip","Estimated cost of typical HTLC timeout transaction","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Estimated cost of typical HTLC fulfillment transaction","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(l,c){if(1&l&&(A.j41(0,"div",1),A.DNE(1,S0,52,15,"div",2)(2,N0,3,1,"ng-template",null,0,A.C5r),A.k0s()),2&l){const j=A.sdS(3);A.R7$(),A.Y8G("ngIf",""===(null==c.errorMessage?null:c.errorMessage.trim()))("ngIfElse",j)}},dependencies:[st.bT,n.DJ,n.sA,n.UI,y.An,HA.oV,st.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]})}return i})();const _r=i=>({"dashboard-card-content":!0,"error-border":i});function vr(i,D){1&i&&A.nrm(0,"mat-progress-bar",19)}function za(i,D){if(1&i&&A.nrm(0,"rtl-cln-node-info",20),2&i){const t=A.XpG(3);A.Y8G("information",t.information)("showColorFieldSeparately",!1)}}function R0(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-status-info",21),2&i){const t=A.XpG(3);A.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[1])}}function T0(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-info",22),2&i){const t=A.XpG(3);A.Y8G("fees",t.fees)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[2]+" "+t.errorMessages[3])}}function U0(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-rates",23),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKB)("feeRateStyle","KB")("errorMessage",t.errorMessages[4])}}function L0(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-rates",23),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKW)("feeRateStyle","KW")("errorMessage",t.errorMessages[5])}}function P0(i,D){if(1&i&&A.nrm(0,"rtl-cln-onchain-fee-estimates",24),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKW)("errorMessage",t.errorMessages[4])}}function z0(i,D){if(1&i&&(A.j41(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",7),A.nrm(4,"fa-icon",8),A.j41(5,"span"),A.EFF(6),A.k0s()()(),A.j41(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.DNE(10,vr,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,za,1,2,"rtl-cln-node-info",14)(13,R0,1,2,"rtl-cln-channel-status-info",15)(14,T0,1,2,"rtl-cln-fee-info",16)(15,U0,1,3,"rtl-cln-fee-rates",17)(16,L0,1,3,"rtl-cln-fee-rates",17)(17,P0,1,2,"rtl-cln-onchain-fee-estimates",18),A.k0s()()()()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("colspan",t.cols)("rowspan",t.rows),A.R7$(4),A.Y8G("icon",t.icon),A.R7$(2),A.JRh(t.title),A.R7$(3),A.Y8G("ngClass",A.eq3(13,_r,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.ERROR)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.ERROR)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.ERROR||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.INITIATED)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.INITIATED||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",t.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","status"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKB"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKW"),A.R7$(),A.Y8G("ngSwitchCase","onChainFeeEstimates")}}function G0(i,D){if(1&i&&(A.j41(0,"mat-grid-list",2),A.DNE(1,z0,18,15,"mat-grid-tile",3),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngForOf",t.nodeCardsOperator)}}function Fr(i,D){1&i&&A.nrm(0,"mat-progress-bar",19)}function H0(i,D){if(1&i&&A.nrm(0,"rtl-cln-node-info",20),2&i){const t=A.XpG(3);A.Y8G("information",t.information)("showColorFieldSeparately",!1)}}function $r(i,D){if(1&i&&A.nrm(0,"rtl-cln-channel-status-info",21),2&i){const t=A.XpG(3);A.Y8G("channelsStatus",t.channelsStatus)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[1])}}function Ga(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-info",22),2&i){const t=A.XpG(3);A.Y8G("fees",t.fees)("errorMessage",t.errorMessages[0]+" "+t.errorMessages[2]+" "+t.errorMessages[3])}}function k0(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-rates",23),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKB)("feeRateStyle","KB")("errorMessage",t.errorMessages[4])}}function Ki(i,D){if(1&i&&A.nrm(0,"rtl-cln-fee-rates",23),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKW)("feeRateStyle","KW")("errorMessage",t.errorMessages[4])}}function un(i,D){if(1&i&&A.nrm(0,"rtl-cln-onchain-fee-estimates",24),2&i){const t=A.XpG(3);A.Y8G("feeRates",t.feeRatesPerKW)("errorMessage",t.errorMessages[4])}}function yr(i,D){if(1&i&&(A.j41(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",25),A.nrm(4,"fa-icon",8),A.j41(5,"span"),A.EFF(6),A.k0s()()(),A.j41(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.DNE(10,Fr,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,H0,1,2,"rtl-cln-node-info",14)(13,$r,1,2,"rtl-cln-channel-status-info",15)(14,Ga,1,2,"rtl-cln-fee-info",16)(15,k0,1,3,"rtl-cln-fee-rates",17)(16,Ki,1,3,"rtl-cln-fee-rates",17)(17,un,1,2,"rtl-cln-onchain-fee-estimates",18),A.k0s()()()()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("colspan",t.cols)("rowspan",t.rows),A.R7$(4),A.Y8G("icon",t.icon),A.R7$(2),A.JRh(t.title),A.R7$(3),A.Y8G("ngClass",A.eq3(13,_r,"node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.ERROR)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusChannels.status===l.apiCallStatusEnum.ERROR||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.ERROR)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.ERROR||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===t.id&&l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||"status"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusLRBal.status===l.apiCallStatusEnum.INITIATED)||"fee"===t.id&&(l.apiCallStatusNodeInfo.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusChannels.status===l.apiCallStatusEnum.INITIATED||l.apiCallStatusFHistory.status===l.apiCallStatusEnum.INITIATED)||"feeRatesKB"===t.id&&l.apiCallStatusPerKB.status===l.apiCallStatusEnum.INITIATED||"feeRatesKW"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===t.id&&l.apiCallStatusPerKW.status===l.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",t.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","status"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKB"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKW"),A.R7$(),A.Y8G("ngSwitchCase","onChainFeeEstimates")}}function Ha(i,D){if(1&i&&(A.j41(0,"mat-grid-list",2),A.DNE(1,yr,18,15,"mat-grid-tile",3),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngForOf",t.nodeCardsMerchant)}}let j0=(()=>{class i{constructor(t,l,c){this.logger=t,this.commonService=l,this.store=c,this.faBolt=u.zm_,this.faServer=u.D6w,this.faNetworkWired=u.eGi,this.faLink=u.CQO,this.information={},this.channelsStatus={active:{},pending:{},inactive:{}},this.feeRatesPerKB={},this.feeRatesPerKW={},this.nodeCardsOperator=[],this.nodeCardsMerchant=[],this.screenSize="",this.screenSizeEnum=r.f7,this.userPersonaEnum=r.HW,this.errorMessages=["","","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusLRBal=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusPerKB=null,this.apiCallStatusPerKW=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===r.f7.XS?(this.nodeCardsMerchant=[{id:"node",icon:this.faServer,title:"Node Information",cols:6,rows:3},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:6,rows:3},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:6,rows:1},{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:6}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:6}]):(this.nodeCardsMerchant=[{id:"node",icon:this.faServer,title:"Node Information",cols:2,rows:3},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:2,rows:3},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:2,rows:3},{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:6}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:6}])}ngOnInit(){this.store.select(E.RQ).pipe((0,g.Q)(this.unSubs[0]),(0,f.E)(this.store.select(d._c))).subscribe(([t,l])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=t.apisCallStatus[0],this.apiCallStatusNodeInfo.status===r.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=l,this.information=t.information,this.fees=t.fees,this.logger.info(t)}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[1]),(0,f.E)(this.store.select(E.Al))).subscribe(([t,l])=>{this.errorMessages[1]="",this.errorMessages[2]="",this.apiCallStatusLRBal=l.apiCallStatus,this.apiCallStatusChannels=t.apiCallStatus,this.apiCallStatusLRBal.status===r.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusLRBal.message?JSON.stringify(this.apiCallStatusLRBal.message):this.apiCallStatusLRBal.message?this.apiCallStatusLRBal.message:""),this.apiCallStatusChannels.status===r.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active.channels=t.activeChannels.length||0,this.channelsStatus.pending.channels=t.pendingChannels.length||0,this.channelsStatus.inactive.channels=t.inactiveChannels.length||0,this.channelsStatus.active.capacity=l.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=l.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=l.localRemoteBalance.inactiveBalance||0}),this.store.select(E.Ie).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessages[3]="",this.apiCallStatusFHistory=t.apiCallStatus,this.apiCallStatusFHistory.status===r.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message?this.apiCallStatusFHistory.message:""),t.forwardingHistory&&t.forwardingHistory.listForwards&&t.forwardingHistory.listForwards.length&&(this.fees.totalTxCount=t.forwardingHistory.listForwards.length)}),this.store.select(E.kr).pipe((0,g.Q)(this.unSubs[4])).subscribe(t=>{this.errorMessages[4]="",this.apiCallStatusPerKB=t.apiCallStatus,this.apiCallStatusPerKB.status===r.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPerKB.message?JSON.stringify(this.apiCallStatusPerKB.message):this.apiCallStatusPerKB.message?this.apiCallStatusPerKB.message:""),this.feeRatesPerKB=t.feeRatesPerKB}),this.store.select(E.RB).pipe((0,g.Q)(this.unSubs[5])).subscribe(t=>{this.errorMessages[5]="",this.apiCallStatusPerKW=t.apiCallStatus,this.apiCallStatusPerKW.status===r.wn.ERROR&&(this.errorMessages[5]="object"==typeof this.apiCallStatusPerKW.message?JSON.stringify(this.apiCallStatusPerKW.message):this.apiCallStatusPerKW.message?this.apiCallStatusPerKW.message:""),this.feeRatesPerKW=t.feeRatesPerKW})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-network-info"]],decls:3,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch",1,"mb-4"],["cols","6","rowHeight","100px",4,"ngIf"],["cols","6","rowHeight","100px"],["class","node-grid-tile",3,"colspan","rowspan",4,"ngFor","ngForOf"],[1,"node-grid-tile",3,"colspan","rowspan"],["fxLayout","column","fxLayoutAlign","stretch start","fxFlex","100",1,"h-100"],["fxLayout","row","fxLayoutAlign","start start",1,"w-100"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-2"],[1,"mr-1",3,"icon"],["fxLayout","column","fxLayoutAlign","stretch center","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","center stretch",1,"w-100","h-93"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","w-96","h-93"],["fxLayout","column","fxFlex","100",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["class","h-100",3,"feeRates","feeRateStyle","errorMessage",4,"ngSwitchCase"],["class","h-100",3,"feeRates","errorMessage",4,"ngSwitchCase"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],[1,"h-100",3,"feeRates","feeRateStyle","errorMessage"],[1,"h-100",3,"feeRates","errorMessage"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-15px"]],template:function(l,c){1&l&&(A.j41(0,"div",0),A.DNE(1,G0,2,1,"mat-grid-list",1)(2,Ha,2,1,"mat-grid-list",1),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",c.selNode.settings.userPersona===c.userPersonaEnum.OPERATOR),A.R7$(),A.Y8G("ngIf",c.selNode.settings.userPersona===c.userPersonaEnum.MERCHANT))},dependencies:[st.YU,st.Sq,st.bT,st.ux,st.e1,Q.aY,n.DJ,n.sA,n.UI,I.PW,p.RN,p.m2,m.B_,m.NS,B.HM,ua,Hi,ha,Pa,b0]})}return i})();function O0(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let J0=(()=>{class i{constructor(t){this.router=t,this.faUserCheck=u.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-sign-verify-message"]],decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","role","tab","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["tabindex","1","mat-tab-link","","role","tab",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(l,c){if(1&l&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Sign/Verify Message"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,O0,2,3,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0),A.j41(11,"div",8),A.nrm(12,"router-outlet"),A.k0s()()()()),2&l){const j=A.sdS(10);A.R7$(),A.Y8G("icon",c.faUserCheck),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,le.n3,le.Wk]})}return i})();var V0=Pt(396),Aa=Pt(283);function W0(i,D){if(1&i&&(A.j41(0,"mat-option",6),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.SpI(" ",t.addressTp," ")}}let K0=(()=>{class i{constructor(t,l){this.store=t,this.clnEffects=l,this.addressTypes=r.Ld,this.selectedAddressType=r.Ld[2],this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,_.XT)({payload:this.selectedAddressType})),this.clnEffects.setNewAddressCL.pipe((0,Fe.s)(1)).subscribe(t=>{this.newAddress=t,setTimeout(()=>{this.store.dispatch((0,AA.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:V0.f}}}))},0)})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(Aa.i))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain-receive"]],decls:10,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","space-between center","fxLayoutAlign.gt-sm","start center"],["fxLayout","column","fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["name","address_type","tabindex","1",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","tabindex","2",3,"click"],[3,"value"]],template:function(l,c){1&l&&(A.j41(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-label"),A.EFF(4,"Address Type"),A.k0s(),A.j41(5,"mat-select",3),A.mxI("ngModelChange",function(PA){return A.DH7(c.selectedAddressType,PA)||(c.selectedAddressType=PA),PA}),A.DNE(6,W0,2,2,"mat-option",4),A.k0s()(),A.j41(7,"div")(8,"button",5),A.bIt("click",function(){return c.onGenerateAddress()}),A.EFF(9,"Generate Address"),A.k0s()()()()),2&l&&(A.R7$(5),A.R50("ngModel",c.selectedAddressType),A.R7$(),A.Y8G("ngForOf",c.addressTypes))},dependencies:[st.Sq,iA.BC,iA.vS,n.DJ,n.sA,n.UI,R.$z,IA.rl,IA.nJ,$.VO,FA.wT]})}return i})(),ka=(()=>{class i{constructor(t,l){this.store=t,this.activatedRoute=l,this.sweepAll=!1,this.unSubs=[new o.B,new o.B]}ngOnInit(){this.activatedRoute.data.pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.sweepAll=t.sweepAll})}openSendFundsModal(){this.store.dispatch((0,AA.xO)({payload:{data:{sweepAll:this.sweepAll,component:Da}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(le.nX))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-on-chain-send"]],decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(l,c){1&l&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return c.openSendFundsModal()}),A.EFF(3),A.k0s()()()),2&l&&(A.R7$(3),A.JRh(c.sweepAll?"Sweep All":"Send Funds"))},dependencies:[n.DJ,n.sA,n.UI,R.$z]})}return i})();var ja=Pt(9172),Oa=Pt(6354),Ja=Pt(850),Va=Pt(92);const ci=["form"],X0=(i,D)=>({"mr-6":i,"mr-2":D});function xr(i,D){if(1&i&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t),A.R7$(),A.JRh(t.alias?t.alias:t.id?t.id:"")}}function Z0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Peer alias is required."),A.k0s())}function q0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Peer not found in the list."),A.k0s())}function _0(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",7)(1,"mat-label"),A.EFF(2,"Peer Alias"),A.k0s(),A.j41(3,"input",46),A.bIt("change",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSelectedPeerChanged())}),A.k0s(),A.j41(4,"mat-autocomplete",47,4),A.bIt("optionSelected",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onSelectedPeerChanged())}),A.DNE(6,xr,2,2,"mat-option",31),A.nI1(7,"async"),A.k0s(),A.DNE(8,Z0,2,0,"mat-error",21)(9,q0,2,0,"mat-error",21),A.k0s()}if(2&i){const t=A.sdS(5),l=A.XpG();A.R7$(3),A.Y8G("formControl",l.selectedPeer)("matAutocomplete",t),A.R7$(),A.Y8G("displayWith",l.displayFn),A.R7$(2),A.Y8G("ngForOf",A.bMT(7,6,l.filteredPeers)),A.R7$(2),A.Y8G("ngIf",null==l.selectedPeer.errors?null:l.selectedPeer.errors.required),A.R7$(),A.Y8G("ngIf",null==l.selectedPeer.errors?null:l.selectedPeer.errors.notfound)}}function Wa(i,D){1&i&&A.eu8(0)}function $0(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function Al(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",t.totalBalance,".")}}function tl(i,D){if(1&i&&(A.j41(0,"div",49),A.nrm(1,"fa-icon",50),A.j41(2,"span",51)(3,"div"),A.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(5,"span",52)(6,"span"),A.EFF(7),A.k0s(),A.j41(8,"span"),A.EFF(9),A.k0s(),A.j41(10,"span"),A.EFF(11),A.k0s(),A.j41(12,"span"),A.EFF(13),A.k0s(),A.j41(14,"span"),A.EFF(15),A.k0s()()()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faInfoCircle),A.R7$(6),A.SpI("- High: ",t.recommendedFee.fastestFee||"Unknown",""),A.R7$(2),A.SpI("- Medium: ",t.recommendedFee.halfHourFee||"Unknown",""),A.R7$(2),A.SpI("- Low: ",t.recommendedFee.hourFee||"Unknown",""),A.R7$(2),A.SpI("- Economy: ",t.recommendedFee.economyFee||"Unknown",""),A.R7$(2),A.SpI("- Minimum: ",t.recommendedFee.minimumFee||"Unknown","")}}function el(i,D){if(1&i&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.Y8G("value",t.feeRateId),A.R7$(),A.SpI(" ",t.feeRateType," ")}}function Ka(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function nl(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",t.recommendedFee.minimumFee," in the mempool.")}}function Xa(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-form-field",53)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.j41(3,"input",54,5),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.customFeeRate,c)||(j.customFeeRate=c),A.Njj(c)}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6),A.k0s(),A.DNE(7,Ka,2,0,"mat-error",21)(8,nl,2,1,"mat-error",21),A.k0s()}if(2&i){const t=A.XpG();A.R7$(3),A.Y8G("step",1)("min",t.recommendedFee.minimumFee)("required","customperkb"===t.selFeeRate&&!t.flgMinConf),A.R50("ngModel",t.customFeeRate),A.R7$(3),A.SpI("Mempool Min: ",t.recommendedFee.minimumFee," (Sats/vByte)"),A.R7$(),A.Y8G("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&!t.customFeeRate),A.R7$(),A.Y8G("ngIf","customperkb"===t.selFeeRate&&!t.flgMinConf&&t.customFeeRate&&t.customFeeRate{class i{constructor(t,l,c,j,PA,WA,an,fe){this.logger=t,this.dialogRef=l,this.data=c,this.store=j,this.actions=PA,this.decimalPipe=WA,this.commonService=an,this.dataService=fe,this.selectedPeer=new iA.hs,this.faExclamationTriangle=u.zpE,this.faInfoCircle=u.iW_,this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=0,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.fundingAmount=null,this.selectedPubkey="",this.isPrivate=!1,this.feeRateTypes=r.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.screenSize="",this.screenSizeEnum=r.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.utxos=this.data.message.utxos,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.information={},this.totalBalance=0,this.utxos=[],this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(c=>{this.selNode=c,this.isPrivate=!!c?.settings.unannouncedChannels}),this.actions.pipe((0,g.Q)(this.unSubs[1]),(0,v.p)(c=>c.type===r.TC.UPDATE_API_CALL_STATUS_CLN||c.type===r.TC.FETCH_CHANNELS_CLN)).subscribe(c=>{c.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&c.payload.status===r.wn.ERROR&&"SaveNewChannel"===c.payload.action&&(this.channelConnectionError=c.payload.message),c.type===r.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close()});let t="",l="";this.sortedPeers=this.peers.sort((c,j)=>(t=c.alias?c.alias.toLowerCase():c.id?c.id.toLowerCase():"",l=j.alias?j.alias.toLowerCase():c.id?c.id.toLowerCase():"",tl?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,g.Q)(this.unSubs[2]),(0,ja.Z)(""),(0,Oa.T)(c=>"string"==typeof c?c:c.alias?c.alias:c.id),(0,Oa.T)(c=>c?this.filterPeers(c):this.sortedPeers.slice()))}filterPeers(t){return this.sortedPeers?.filter(l=>0===l.alias?.toLowerCase().indexOf(t?t.toLowerCase():""))}displayFn(t){return t&&t.alias?t.alias:t&&t.id?t.id:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.id?this.selectedPeer.value.id:null,"string"==typeof this.selectedPeer.value){const t=this.peers?.filter(l=>l.alias?.length===this.selectedPeer.value.length&&0===l.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===t.length&&t[0].id&&(this.selectedPubkey=t[0].id)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.flgMinConf=!1,this.selFeeRate="",this.minConfValue=null,this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!this.selNode?.settings.unannouncedChannels,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(t){t&&(this.flgMinConf||this.selFeeRate||this.selUTXOs.length&&0!==this.selUTXOs.length)?(this.advancedTitle="Advanced Options",this.flgMinConf&&(this.advancedTitle=this.advancedTitle+" | Min Confirmation Blocks: "+this.minConfValue),this.selFeeRate&&(this.advancedTitle=this.advancedTitle+" | Fee Rate: "+(this.customFeeRate?this.customFeeRate+" (Sats/vByte)":this.feeRateTypes.find(l=>l.feeRateId===this.selFeeRate)?.feeRateType)),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.advancedTitle=this.advancedTitle+" | Total Selected: "+this.selUTXOs.length+" | Selected UTXOs: "+this.decimalPipe.transform(this.totalSelectedUTXOAmount)+" Sats")):this.advancedTitle="Advanced Options"}onUTXOSelectionChange(t){this.selUTXOs.length&&this.selUTXOs.length>0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((l,c)=>l+(c.amount_msat||0)/1e3,0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=0,this.fundingAmount=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.fundingAmount=this.flgUseAllBalance?this.totalSelectedUTXOAmount:null}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||this.flgMinConf&&!this.minConfValue||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate||"customperkb"===this.selFeeRate&&this.recommendedFee.minimumFee>this.customFeeRate)return!0;const t={peerId:this.peer&&this.peer.id?this.peer.id:this.selectedPubkey,amount:this.flgUseAllBalance?"all":this.fundingAmount.toString(),announce:!this.isPrivate,minconf:this.flgMinConf?this.minConfValue:null};t.feeRate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":this.selFeeRate,this.selUTXOs.length&&this.selUTXOs.length>0&&(t.utxos=[],this.selUTXOs.forEach(l=>t.utxos.push(l.txid+":"+l.output))),this.store.dispatch((0,_.vL)({payload:t}))}onSelFeeRateChanged(t){this.customFeeRate=null,"customperkb"===t.value&&this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[3])).subscribe({next:l=>{this.recommendedFee=l},error:l=>{this.logger.error(l)}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(fA.En),A.rXU(st.QX),A.rXU(h.h),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-open-channel"]],viewQuery:function(l,c){if(1&l&&A.GBs(ci,7),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first)}},decls:75,vars:42,consts:[["form","ngForm"],["amount","ngModel"],["blocks","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["custFeeRate","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","start end"],["matInput","","type","number","tabindex","1","required","","name","amount",3,"ngModelChange","step","min","max","disabled","ngModel"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","25","fxLayoutAlign","center start"],["fxLayout","column","fxLayoutAlign","center start","tabindex","2","color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","64","fxLayout","row","fxLayoutAlign","space-between center"],["fxLayout","column","fxLayoutAlign","start center",3,"fxFlex"],["tabindex","4",3,"valueChange","selectionChange","disabled","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","58","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","32","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModelChange","change","ngClass","ngModel"],["fxLayout","column","fxFlex","93"],["matInput","","type","number","name","blocks","tabindex","8",3,"ngModelChange","step","min","required","disabled","ngModel"],["fxLayout","column","fxFlex","54","fxLayoutAlign","start end"],["tabindex","6","multiple","",3,"valueChange","selectionChange","value"],["fxFlex","41","fxLayout","row","fxLayoutAlign","start center"],["tabindex","7","color","primary","name","flgUseAllBalance",3,"ngModelChange","change","disabled","ngModel"],["matTooltip","Use selected UTXOs balance as the amount to be sent. Final amount sent will be less the mining fee.","matTooltipPosition","before",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","7","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","9"],["type","text","aria-label","Peers","matInput","","tabindex","1","required","",3,"change","formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxLayout","column","fxFlex","58","fxLayoutAlign","end center"],["matInput","","type","number","name","custFeeRate","tabindex","4",3,"ngModelChange","step","min","required","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",6)(1,"div",7)(2,"mat-card-header",8)(3,"div",9)(4,"span",10),A.EFF(5),A.k0s()(),A.j41(6,"button",11),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.bIt("submit",function(){return A.eBV(j),A.Njj(c.onOpenChannel())})("reset",function(){return A.eBV(j),A.Njj(c.resetData())}),A.j41(11,"div",14),A.DNE(12,_0,10,8,"mat-form-field",15),A.k0s(),A.DNE(13,Wa,1,0,"ng-container",16),A.j41(14,"div",14)(15,"div",17)(16,"mat-form-field",18)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",19,1),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.fundingAmount,WA)||(c.fundingAmount=WA),A.Njj(WA)}),A.k0s(),A.j41(21,"mat-hint"),A.EFF(22),A.nI1(23,"number"),A.k0s(),A.j41(24,"span",20),A.EFF(25," Sats "),A.k0s(),A.DNE(26,$0,2,0,"mat-error",21)(27,Al,2,1,"mat-error",21),A.k0s(),A.j41(28,"div",22)(29,"mat-slide-toggle",23),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.isPrivate,WA)||(c.isPrivate=WA),A.Njj(WA)}),A.EFF(30,"Private Channel"),A.k0s()()(),A.j41(31,"mat-expansion-panel",24),A.bIt("closed",function(){return A.eBV(j),A.Njj(c.onAdvancedPanelToggle(!0))})("opened",function(){return A.eBV(j),A.Njj(c.onAdvancedPanelToggle(!1))}),A.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),A.EFF(35),A.k0s()()(),A.j41(36,"div",25),A.DNE(37,tl,16,6,"div",26),A.j41(38,"div",27)(39,"div",28)(40,"mat-form-field",29)(41,"mat-label"),A.EFF(42,"Fee Rate"),A.k0s(),A.j41(43,"mat-select",30),A.mxI("valueChange",function(WA){return A.eBV(j),A.DH7(c.selFeeRate,WA)||(c.selFeeRate=WA),A.Njj(WA)}),A.bIt("selectionChange",function(WA){return A.eBV(j),A.Njj(c.onSelFeeRateChanged(WA))}),A.DNE(44,el,2,2,"mat-option",31),A.k0s()(),A.DNE(45,Xa,9,7,"mat-form-field",32),A.k0s(),A.j41(46,"div",33)(47,"mat-checkbox",34),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.flgMinConf,WA)||(c.flgMinConf=WA),A.Njj(WA)}),A.bIt("change",function(){return A.eBV(j),A.Njj(c.flgMinConf?c.selFeeRate=null:c.minConfValue=null)}),A.k0s(),A.j41(48,"mat-form-field",35)(49,"mat-label"),A.EFF(50,"Min Confirmation Blocks"),A.k0s(),A.j41(51,"input",36,2),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.minConfValue,WA)||(c.minConfValue=WA),A.Njj(WA)}),A.k0s(),A.DNE(53,Za,2,0,"mat-error",21),A.k0s()()(),A.j41(54,"mat-form-field",37)(55,"mat-label"),A.EFF(56,"Coin Selection"),A.k0s(),A.j41(57,"mat-select",38),A.mxI("valueChange",function(WA){return A.eBV(j),A.DH7(c.selUTXOs,WA)||(c.selUTXOs=WA),A.Njj(WA)}),A.bIt("selectionChange",function(WA){return A.eBV(j),A.Njj(c.onUTXOSelectionChange(WA))}),A.j41(58,"mat-select-trigger"),A.EFF(59),A.nI1(60,"number"),A.k0s(),A.DNE(61,qa,3,5,"mat-option",31),A.k0s()(),A.j41(62,"div",39)(63,"mat-slide-toggle",40),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.flgUseAllBalance,WA)||(c.flgUseAllBalance=WA),A.Njj(WA)}),A.bIt("change",function(){return A.eBV(j),A.Njj(c.onUTXOAllBalanceChange())}),A.EFF(64," Use selected UTXOs balance "),A.k0s(),A.j41(65,"mat-icon",41),A.EFF(66,"info_outline"),A.k0s()()()()(),A.DNE(67,rl,3,2,"div",42),A.j41(68,"div",43)(69,"button",44),A.EFF(70,"Clear Fields"),A.k0s(),A.j41(71,"button",45),A.EFF(72,"Open Channel"),A.k0s()()()()()(),A.DNE(73,sl,1,1,"ng-template",null,3,A.C5r)}if(2&l){const j=A.sdS(20),PA=A.sdS(74);A.R7$(5),A.JRh(c.alertTitle),A.R7$(7),A.Y8G("ngIf",!c.peer&&c.peers&&c.peers.length>0),A.R7$(),A.Y8G("ngTemplateOutlet",PA),A.R7$(6),A.Y8G("step",1e3)("min",1)("max",c.totalBalance)("disabled",c.flgUseAllBalance),A.R50("ngModel",c.fundingAmount),A.R7$(3),A.Lme("Remaining: ",A.bMT(23,35,c.totalBalance-(c.fundingAmount?c.fundingAmount:0)),"",c.flgUseAllBalance?". Amount replaced by UTXO balance":"",""),A.R7$(4),A.Y8G("ngIf",(null==j.errors?null:j.errors.required)||!c.fundingAmount),A.R7$(),A.Y8G("ngIf",null==j.errors?null:j.errors.max),A.R7$(2),A.R50("ngModel",c.isPrivate),A.R7$(6),A.JRh(c.advancedTitle),A.R7$(2),A.Y8G("ngIf",c.recommendedFee.minimumFee),A.R7$(3),A.Y8G("fxFlex","customperkb"!==c.selFeeRate||c.flgMinConf?"100":"40"),A.R7$(3),A.Y8G("disabled",c.flgMinConf),A.R50("value",c.selFeeRate),A.R7$(),A.Y8G("ngForOf",c.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===c.selFeeRate&&!c.flgMinConf),A.R7$(2),A.Y8G("ngClass",A.l_i(39,X0,c.screenSize===c.screenSizeEnum.XS||c.screenSize===c.screenSizeEnum.SM,c.screenSize===c.screenSizeEnum.MD||c.screenSize===c.screenSizeEnum.LG||c.screenSize===c.screenSizeEnum.XL)),A.R50("ngModel",c.flgMinConf),A.R7$(4),A.Y8G("step",1)("min",0)("required",c.flgMinConf)("disabled",!c.flgMinConf),A.R50("ngModel",c.minConfValue),A.R7$(2),A.Y8G("ngIf",c.flgMinConf&&!c.minConfValue),A.R7$(4),A.R50("value",c.selUTXOs),A.R7$(2),A.Lme("",A.bMT(60,37,c.totalSelectedUTXOAmount)," Sats (",c.selUTXOs.length>1?c.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.R7$(2),A.Y8G("ngForOf",c.utxos),A.R7$(2),A.Y8G("disabled",c.selUTXOs.length<1),A.R50("ngModel",c.flgUseAllBalance),A.R7$(4),A.Y8G("ngIf",""!==c.channelConnectionError)}},dependencies:[st.YU,st.Sq,st.bT,st.T3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.zX,iA.vS,iA.cV,iA.l_,Q.aY,n.DJ,n.sA,n.UI,I.PW,R.$z,p.m2,p.MM,In.So,Nn.GK,Nn.Z2,Nn.WN,y.An,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,ri.q,$.VO,$.$2,FA.wT,YA.sG,HA.oV,Ja.$3,Ja.pN,J.N,Va.z,BA.V,st.Jj,st.QX],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]})}return i})();function $a(i,D){if(1&i&&(A.j41(0,"span",7),A.EFF(1,"Open"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.openChannels)}}function ol(i,D){if(1&i&&(A.j41(0,"span",7),A.EFF(1,"Pending/Inactive"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.pendingChannels)}}function ll(i,D){if(1&i&&(A.j41(0,"span",7),A.EFF(1,"Active HTLCs"),A.k0s()),2&i){const t=A.XpG();A.FS9("matBadge",t.activeHTLCs)}}let cl=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.store=l,this.commonService=c,this.router=j,this.openChannels=0,this.pendingChannels=0,this.activeHTLCs=0,this.information={},this.peers=[],this.utxos=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending/Inactive"},{link:"activehtlcs",name:"Active HTLCs"}],this.activeLink=0,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.activeLink=this.links.findIndex(t=>t.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(t=>t instanceof le.gx)).subscribe({next:t=>{this.activeLink=this.links.findIndex(l=>l.link===t.urlAfterRedirects.substring(t.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(E.kQ).pipe((0,g.Q)(this.unSubs[1]),(0,f.E)(this.store.select(d._c))).subscribe(([t,l])=>{this.selNode=l,this.information=t.information,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t)}),this.store.select(E.os).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.peers=t.peers}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.utxos=this.commonService.sortAscByKey(t.utxos?.filter(l=>"confirmed"===l.status),"value")}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[4])).subscribe(t=>{this.openChannels=t.activeChannels.length||0,this.pendingChannels=t.pendingChannels.length+t.inactiveChannels.length||0;const l=[...t.activeChannels,...t.pendingChannels,...t.inactiveChannels];this.activeHTLCs=l?.reduce((c,j)=>c+(j.htlcs&&j.htlcs.length>0?j.htlcs.length:0),0),this.logger.info(t)})}onOpenChannel(){this.store.dispatch((0,AA.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance,utxos:this.utxos},component:_a}}}))}onSelectedTabChange(t){this.router.navigateByUrl("/cln/connections/channels/"+this.links[t.index].link)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channels-tables"]],decls:14,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(l,c){1&l&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return c.onOpenChannel()}),A.EFF(3,"Open Channel"),A.k0s()(),A.j41(4,"div",3)(5,"mat-tab-group",4),A.mxI("selectedIndexChange",function(PA){return A.DH7(c.activeLink,PA)||(c.activeLink=PA),PA}),A.bIt("selectedTabChange",function(PA){return c.onSelectedTabChange(PA)}),A.j41(6,"mat-tab"),A.DNE(7,$a,2,1,"ng-template",5),A.k0s(),A.j41(8,"mat-tab"),A.DNE(9,ol,2,1,"ng-template",5),A.k0s(),A.j41(10,"mat-tab"),A.DNE(11,ll,2,1,"ng-template",5),A.k0s()(),A.j41(12,"div",6),A.nrm(13,"router-outlet"),A.k0s()()()),2&l&&(A.R7$(5),A.R50("selectedIndex",c.activeLink))},dependencies:[n.DJ,n.sA,n.UI,R.$z,jr.k,Y.ES,Y.mq,Y.T8,le.n3]})}return i})();const gl=i=>({"xs-scroll-y":i}),Bl=(i,D)=>({"mt-2":i,"mt-1":D});function ul(i,D){if(1&i&&(A.j41(0,"div")(1,"div",10)(2,"div",11)(3,"h4",12),A.EFF(4,"Receivable (Sats)"),A.k0s(),A.j41(5,"span",19),A.EFF(6),A.nI1(7,"number"),A.k0s()(),A.j41(8,"div",11)(9,"h4",12),A.EFF(10,"Spendable (Sats)"),A.k0s(),A.j41(11,"span",19),A.EFF(12),A.nI1(13,"number"),A.k0s()()(),A.nrm(14,"mat-divider",15),A.j41(15,"div",10)(16,"div",11)(17,"h4",12),A.EFF(18,"Their Reserve (Sats)"),A.k0s(),A.j41(19,"span",19),A.EFF(20),A.nI1(21,"number"),A.k0s()(),A.j41(22,"div",11)(23,"h4",12),A.EFF(24,"Our Reserve (Sats)"),A.k0s(),A.j41(25,"span",19),A.EFF(26),A.nI1(27,"number"),A.k0s()()(),A.nrm(28,"mat-divider",15),A.k0s()),2&i){const t=A.XpG();A.R7$(6),A.JRh(A.i5U(7,4,t.channel.receivable_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(13,7,t.channel.spendable_msat/1e3,"1.0-0")),A.R7$(8),A.JRh(A.i5U(21,10,t.channel.their_reserve_msat/1e3,"1.0-2")),A.R7$(6),A.JRh(A.i5U(27,13,t.channel.our_reserve_msat/1e3,"1.0-2"))}}function As(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Show Advanced"),A.k0s())}function ts(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Hide Advanced"),A.k0s())}function fl(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",27),A.bIt("copied",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onCopyChanID(c))}),A.EFF(1,"Copy Short Channel ID"),A.k0s()}if(2&i){const t=A.XpG();A.Y8G("payload",t.channel.short_channel_id)}}function hl(i,D){if(1&i){const t=A.RV6();A.j41(0,"button",28),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onClose())}),A.EFF(1,"OK"),A.k0s()}}let es=(()=>{class i{constructor(t,l,c,j,PA,WA){this.dialogRef=t,this.data=l,this.logger=c,this.commonService=j,this.snackBar=PA,this.router=WA,this.faReceipt=u.Mf0,this.faUpRightFromSquare=u.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=r.f7}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.selNode=this.data.selNode,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(t){this.snackBar.open("Short channel ID "+t+" copied."),this.logger.info("Copied Text: "+t)}onGoToLink(t,l){this.router.navigateByUrl("/cln/graph/lookups",{state:{lookupType:t,lookupValue:l}}),this.onClose()}onExplorerClicked(){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.funding_txid,"_blank")}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(C.gP),A.rXU(h.h),A.rXU(ki.UG),A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-information"]],decls:91,vars:38,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],["tabindex","4","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"foreground-secondary-text"],[1,"my-1"],["tabindex","5","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxFlex","33"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","34"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","6",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","7","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","8","type","button",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","7","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","8","type","button",3,"click"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),A.nrm(4,"fa-icon",5),A.j41(5,"span",6),A.EFF(6,"Channel Information"),A.k0s()(),A.j41(7,"button",7),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onClose())}),A.EFF(8,"X"),A.k0s()(),A.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10)(12,"div",11)(13,"h4",12),A.EFF(14,"Short Channel ID"),A.k0s(),A.j41(15,"span",13),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onGoToLink("1",c.channel.short_channel_id))}),A.EFF(16),A.k0s()(),A.j41(17,"div",11)(18,"h4",12),A.EFF(19,"Peer Alias"),A.k0s(),A.j41(20,"span",14),A.EFF(21),A.k0s()()(),A.nrm(22,"mat-divider",15),A.j41(23,"div",10)(24,"div",2)(25,"h4",12),A.EFF(26,"Channel ID"),A.k0s(),A.j41(27,"span",14),A.EFF(28),A.k0s()()(),A.nrm(29,"mat-divider",15),A.j41(30,"div",10)(31,"div",2)(32,"h4",12),A.EFF(33,"Peer Public Key"),A.k0s(),A.j41(34,"span",16),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onGoToLink("0",c.channel.peer_id))}),A.EFF(35),A.k0s()()(),A.nrm(36,"mat-divider",15),A.j41(37,"div",10)(38,"div",2)(39,"h4",12),A.EFF(40,"Funding Transaction ID"),A.k0s(),A.j41(41,"span",14),A.EFF(42),A.j41(43,"fa-icon",17),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onExplorerClicked())}),A.k0s()()()(),A.nrm(44,"mat-divider",15),A.j41(45,"div",10)(46,"div",18)(47,"h4",12),A.EFF(48,"State"),A.k0s(),A.j41(49,"span",19),A.EFF(50),A.nI1(51,"camelcaseWithReplace"),A.k0s()(),A.j41(52,"div",18)(53,"h4",12),A.EFF(54,"Connected"),A.k0s(),A.j41(55,"span",19),A.EFF(56),A.k0s()(),A.j41(57,"div",20)(58,"h4",12),A.EFF(59,"Private"),A.k0s(),A.j41(60,"span",19),A.EFF(61),A.k0s()()(),A.nrm(62,"mat-divider",15),A.j41(63,"div",10)(64,"div",18)(65,"h4",12),A.EFF(66,"Remote Balance (Sats)"),A.k0s(),A.j41(67,"span",19),A.EFF(68),A.nI1(69,"number"),A.k0s()(),A.j41(70,"div",18)(71,"h4",12),A.EFF(72,"Local Balance (Sats)"),A.k0s(),A.j41(73,"span",19),A.EFF(74),A.nI1(75,"number"),A.k0s()(),A.j41(76,"div",20)(77,"h4",12),A.EFF(78,"Total (Sats)"),A.k0s(),A.j41(79,"span",19),A.EFF(80),A.nI1(81,"number"),A.k0s()()(),A.nrm(82,"mat-divider",15),A.DNE(83,ul,29,16,"div",21),A.j41(84,"div",22)(85,"button",23),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onShowAdvanced())}),A.DNE(86,As,2,0,"p",24)(87,ts,2,0,"ng-template",null,0,A.C5r),A.k0s(),A.DNE(89,fl,2,1,"button",25)(90,hl,2,0,"button",26),A.k0s()()()()()}if(2&l){const j=A.sdS(88);A.R7$(4),A.Y8G("icon",c.faReceipt),A.R7$(5),A.Y8G("ngClass",A.eq3(33,gl,c.screenSize===c.screenSizeEnum.XS)),A.R7$(7),A.SpI(" ",c.channel.short_channel_id," "),A.R7$(5),A.JRh(c.channel.alias),A.R7$(7),A.JRh(c.channel.channel_id),A.R7$(7),A.SpI(" ",c.channel.peer_id," "),A.R7$(7),A.SpI(" ",c.channel.funding_txid," "),A.R7$(),A.FS9("matTooltip","Link to "+c.selNode.settings.blockExplorerUrl),A.Y8G("icon",c.faUpRightFromSquare),A.R7$(7),A.JRh(A.i5U(51,21,null==c.channel?null:c.channel.state,"_")),A.R7$(6),A.JRh(c.channel.peer_connected?"Yes":"No"),A.R7$(5),A.JRh(c.channel.private?"Yes":"No"),A.R7$(7),A.JRh(A.i5U(69,24,c.channel.to_them_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(75,27,c.channel.to_us_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(81,30,c.channel.total_msat/1e3,"1.0-0")),A.R7$(3),A.Y8G("ngIf",c.showAdvanced),A.R7$(),A.Y8G("ngClass",A.l_i(35,Bl,!c.showAdvanced,c.showAdvanced)),A.R7$(2),A.Y8G("ngIf",!c.showAdvanced)("ngIfElse",j),A.R7$(3),A.Y8G("ngIf",c.showCopy),A.R7$(),A.Y8G("ngIf",!c.showCopy)}},dependencies:[st.YU,st.bT,Q.aY,n.DJ,n.sA,n.UI,I.PW,R.$z,p.m2,p.MM,ri.q,HA.oV,mr.U,J.N,st.QX,yA.VD]})}return i})();const nn=()=>["all"],mi=i=>({"error-border":i}),El=()=>["no_peer"],Ni=i=>({width:i}),Cl=i=>({"display-none":i});function wl(i,D){if(1&i&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function ns(i,D){1&i&&A.nrm(0,"mat-progress-bar",40)}function dl(i,D){1&i&&A.nrm(0,"th",41)}function Ql(i,D){if(1&i&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faEyeSlash)}}function is(i,D){if(1&i&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faEye)}}function ml(i,D){if(1&i&&(A.j41(0,"td",42),A.DNE(1,Ql,2,1,"span",43)(2,is,2,1,"span",44),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",t.private),A.R7$(),A.Y8G("ngIf",!t.private)}}function pi(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Short Channel ID"),A.k0s())}function pl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.short_channel_id)}}function Ml(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function Il(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.alias)}}function Dl(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function rs(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.id)}}function ta(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function Ai(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.channel_id)}}function vl(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function Fl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ni,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.funding_txid)}}function yl(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function xl(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null!=t&&t.connected?"Connected":"Disconnected")}}function Hl(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function Yl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.our_reserve_msat)/1e3,"1.0-0")," ")}}function Sl(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function Nl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.their_reserve_msat)/1e3,"1.0-0")," ")}}function bl(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Total (Sats)"),A.k0s())}function as(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.total_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Rl(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Spendable (Sats)"),A.k0s())}function tA(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.spendable_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function G(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function K(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.to_us_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function M(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function N(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.to_them_msat)/1e3,(null==t?null:t.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function P(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Balance Score"),A.k0s())}function nA(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",53)(2,"mat-hint",54),A.EFF(3),A.nI1(4,"number"),A.k0s()(),A.nrm(5,"mat-progress-bar",55),A.k0s()),2&i){const t=D.$implicit;A.R7$(3),A.JRh(A.bMT(4,2,t.balancedness||0)),A.R7$(2),A.FS9("value",t.to_us_msat&&t.to_us_msat>0?t.to_us_msat/(t.to_us_msat+t.to_them_msat)*100:0)}}function oA(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",56)(1,"div",57)(2,"mat-select",58),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",59),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onChannelUpdate("all"))}),A.EFF(5,"Update Fee Policy"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(7,"Download CSV"),A.k0s()()()()}}function lA(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",60)(1,"div",57)(2,"mat-select",61),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",59),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onChannelClick(j,c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onViewRemotePolicy(c))}),A.EFF(7,"View Remote Fee"),A.k0s(),A.j41(8,"mat-option",59),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onChannelUpdate(c))}),A.EFF(9,"Update Fee Policy"),A.k0s(),A.j41(10,"mat-option",59),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onChannelClose(c))}),A.EFF(11,"Close Channel"),A.k0s()()()()}}function sA(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function bA(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No channel available."),A.k0s())}function KA(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting channels..."),A.k0s())}function lt(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function $A(i,D){if(1&i&&(A.j41(0,"td",62),A.DNE(1,sA,2,0,"p",63)(2,bA,2,0,"p",63)(3,KA,2,0,"p",63)(4,lt,2,1,"p",63),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",t.numPeers<1&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",t.numPeers>0&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function ct(i,D){if(1&i&&A.nrm(0,"tr",64),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,Cl,t.numPeers>0&&(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function mt(i,D){1&i&&A.nrm(0,"tr",65)}function It(i,D){1&i&&A.nrm(0,"tr",66)}let Gt=(()=>{class i{constructor(t,l,c,j,PA,WA){this.logger=t,this.store=l,this.rtlEffects=c,this.clnEffects=j,this.commonService=PA,this.camelCaseWithReplace=WA,this.faEye=u.pS3,this.faEyeSlash=u.k6j,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:r.md,sortBy:"alias",sortOrder:r.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new F.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=r.G,this.selFilter="",this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(E.GX).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.numPeers=t.numPeers,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t)}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=t.activeChannels,this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)}),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.selNode=t})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(t){this.store.dispatch((0,_.ij)({payload:{uiMessage:r.MZ.GET_REMOTE_POLICY,shortChannelID:t.short_channel_id||"",showError:!0}})),this.clnEffects.setLookupCL.pipe((0,Fe.s)(1)).subscribe(l=>{if(l.channels&&0===l.channels.length)return!1;let c={};c=l.channels[0].source!==this.information.id?l.channels[0]:l.channels[1];const j=[[{key:"base_fee_millisatoshi",value:c.base_fee_millisatoshi,title:"Base Fees (mSats)",width:34,type:r.UN.NUMBER},{key:"fee_per_millionth",value:c.fee_per_millionth,title:"Fee/Millionth",width:33,type:r.UN.NUMBER},{key:"delay",value:c.delay,title:"Delay",width:33,type:r.UN.NUMBER}]],PA="Remote policy for Channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id);setTimeout(()=>{this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:PA,message:j}}}))},0)})}onChannelUpdate(t){"all"!==t&&"ONCHAIN"===t.state||("all"===t?(this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update All",message:[],titleMessage:"Update fee policy for all channels",flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:r.UN.NUMBER,inputValue:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:r.UN.NUMBER,inputValue:1,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[4])).subscribe(l=>{l&&this.store.dispatch((0,_.fy)({payload:{feebase:l[0].inputValue,feeppm:l[1].inputValue,id:"all"}}))})):(this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"Update fee policy for Channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:r.UN.NUMBER,inputValue:""===t.fee_base_msat?0:t.fee_base_msat,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:r.UN.NUMBER,inputValue:t.fee_proportional_millionths,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(j=>{j&&this.store.dispatch((0,_.fy)({payload:{feebase:j[0].inputValue,feeppm:j[1].inputValue,id:t.channel_id}}))})),this.applyFilter())}percentHintFunction(t){return(t/1e4).toString()+"%"}onChannelClose(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Close Channel",titleMessage:"Closing channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id),noBtnText:"Cancel",yesBtnText:"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[6])).subscribe(l=>{l&&this.store.dispatch((0,_.w0)({payload:{id:t.id||"",channelId:t.channel_id||"",force:!1}}))})}onChannelClick(t,l){this.store.dispatch((0,AA.xO)({payload:{data:{channel:t,selNode:this.selNode,showCopy:!0,component:es}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.peer_connected?"connected":"disconnected")+(t.channel_id?t.channel_id.toLowerCase():"")+(t.short_channel_id?t.short_channel_id.toLowerCase():"")+(t.id?t.id.toLowerCase():"")+(t.alias?t.alias.toLowerCase():"")+(t.private?"private":"public")+(t.state?t.state.toLowerCase():"")+(t.funding_txid?t.funding_txid.toLowerCase():"")+(t.to_them_msat?t.to_them_msat/1e3:"")+(t.to_us_msat?t.to_us_msat/1e3:"")+(t.total_msat?t.total_msat/1e3:"")+(t.their_reserve_msat?t.their_reserve_msat/1e3:"")+(t.our_reserve_msat?t.our_reserve_msat/1e3:"")+(t.spendable_msat?t.spendable_msat/1e3:"");break;case"private":c=t?.private?"private":"public";break;case"connected":c=t?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":c=((t.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":c=((t.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":c=((t.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":c=((t.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":c=((t.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":c=((t.their_reserve_msat||0)/1e3).toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"connected"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadChannelsTable(t){this.channels=new F.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(l,c)=>{switch(c){case"msatoshi_total":return l.total_msat;case"spendable_msatoshi":return l.spendable_msat;case"msatoshi_to_us":return l.to_us_msat;case"msatoshi_to_them":return l.to_them_msat;case"our_channel_reserve_satoshis":return l.our_reserve_msat;case"their_channel_reserve_satoshis":return l.their_reserve_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(QA.H),A.rXU(Aa.i),A.rXU(h.h),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-open-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Channels")}])],decls:69,vars:18,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","short_channel_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","alias"],["matColumnDef","id"],["matColumnDef","channel_id"],["matColumnDef","funding_txid"],["matColumnDef","connected"],["matColumnDef","our_channel_reserve_satoshis"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","their_channel_reserve_satoshis"],["matColumnDef","msatoshi_total"],["matColumnDef","spendable_msatoshi"],["matColumnDef","msatoshi_to_us"],["matColumnDef","msatoshi_to_them"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,wl,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.DNE(14,ns,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,dl,1,0,"th",13)(20,ml,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,pi,2,0,"th",16)(23,pl,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,Ml,2,0,"th",16)(26,Il,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,Dl,2,0,"th",16)(29,rs,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,ta,2,0,"th",16)(32,Ai,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,vl,2,0,"th",16)(35,Fl,4,4,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,yl,2,0,"th",16)(38,xl,2,1,"td",14),A.bVm(),A.qex(39,22),A.DNE(40,Hl,2,0,"th",23)(41,Yl,4,4,"td",14),A.bVm(),A.qex(42,24),A.DNE(43,Sl,2,0,"th",23)(44,Nl,4,4,"td",14),A.bVm(),A.qex(45,25),A.DNE(46,bl,2,0,"th",23)(47,as,4,4,"td",14),A.bVm(),A.qex(48,26),A.DNE(49,Rl,2,0,"th",23)(50,tA,4,4,"td",14),A.bVm(),A.qex(51,27),A.DNE(52,G,2,0,"th",23)(53,K,4,4,"td",14),A.bVm(),A.qex(54,28),A.DNE(55,M,2,0,"th",23)(56,N,4,4,"td",14),A.bVm(),A.qex(57,29),A.DNE(58,P,2,0,"th",16)(59,nA,6,4,"td",14),A.bVm(),A.qex(60,30),A.DNE(61,oA,8,0,"th",31)(62,lA,12,0,"td",32),A.bVm(),A.qex(63,33),A.DNE(64,$A,5,4,"td",34),A.bVm(),A.DNE(65,ct,1,3,"tr",35)(66,mt,1,0,"tr",36)(67,It,1,0,"tr",37),A.k0s()(),A.nrm(68,"mat-paginator",38),A.k0s()}2&l&&(A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,nn).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(),A.Y8G("ngIf",c.apiCallStatus.status===c.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.channels)("ngClass",A.eq3(15,mi,""!==c.errorMessage)),A.R7$(49),A.Y8G("matFooterRowDef",A.lJ4(17,El)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,wA.fg,IA.rl,IA.nJ,IA.MV,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld,st.QX],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]})}return i})();const _t=["outputIdx"];function qt(i,D){if(1&i&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",15),A.j41(2,"span"),A.EFF(3,"Change output balance "),A.j41(4,"strong"),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.EFF(7," (Sats) may be insufficient for fee bumping, depending on the prevailing fee rates."),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(4),A.JRh(A.bMT(6,2,t.dustOutputValue))}}function re(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Output Index required."),A.k0s())}function ce(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Invalid index value."),A.k0s())}function Ce(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fees is required."),A.k0s())}function de(i,D){if(1&i&&(A.j41(0,"div",28),A.nrm(1,"fa-icon",15),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(2),A.JRh(t.bumpFeeError)}}let Ge=(()=>{class i{set outputIndx(t){t&&(this.outputIdx=t)}constructor(t,l,c,j,PA,WA){this.actions=t,this.dialogRef=l,this.data=c,this.store=j,this.logger=PA,this.dataService=WA,this.faUpRightFromSquare=u.k02,this.newAddress="",this.fees=null,this.outputIndex=null,this.faCopy=u.jPR,this.faInfoCircle=u.iW_,this.faExclamationTriangle=u.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.bumpFeeChannel=this.data.channel,this.logger.info(this.bumpFeeChannel),this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,g.Q)(this.unSubs[1])).subscribe({next:t=>{this.recommendedFee=t},error:t=>{this.logger.error(t)}}),this.dataService.getBlockExplorerTransaction(this.bumpFeeChannel.funding_txid).pipe((0,g.Q)(this.unSubs[2])).subscribe({next:t=>{this.outputIndex=0===t.vout.findIndex(l=>l.value===this.bumpFeeChannel.to_us_msat)?1:0,this.dustOutputValue=t.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:t=>{this.logger.error(t)}})}onBumpFee(){if(!this.outputIndex&&0!==this.outputIndex||!this.fees)return!0;this.bumpFeeError="",this.store.dispatch((0,_.XT)({payload:r.Ld[0]})),this.actions.pipe((0,v.p)(t=>t.type===r.TC.SET_NEW_ADDRESS_CLN),(0,Fe.s)(1)).subscribe(t=>{this.store.dispatch((0,_.aB)({payload:{destination:t.payload,satoshi:"all",feerate:(1e3*+(this.fees||0)).toString()+"perkb",utxos:[this.bumpFeeChannel.funding_txid+":"+(this.outputIndex||"").toString()]}}))}),this.actions.pipe((0,v.p)(t=>t.type===r.TC.SET_CHANNEL_TRANSACTION_RES_CLN),(0,Fe.s)(1)).subscribe(t=>{this.store.dispatch((0,AA.UI)({payload:"Successfully bumped the fee. Use the block explorer to verify transaction."})),this.dialogRef.close()}),this.actions.pipe((0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN),(0,g.Q)(this.unSubs[3])).subscribe(t=>{t.payload.status===r.wn.ERROR&&("SetChannelTransaction"===t.payload.action||"GenerateNewAddress"===t.payload.action)&&(this.logger.error(t.payload.message),this.bumpFeeError=t.payload.message)})}onExplorerClicked(t){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+t,"_blank")}resetData(){this.bumpFeeError="",this.fees=null,this.outputIndex=null,this.flgShowDustWarning=!1,this.outputIdx.control.setErrors(null)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(fA.En),A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(C.gP),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-bump-fee"]],viewQuery:function(l,c){if(1&l&&A.GBs(_t,5),2&l){let j;A.mGM(j=A.lsd())&&(c.outputIndx=j.first)}},decls:47,vars:19,consts:[["outputIndx","ngModel"],["fee","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","49"],["autoFocus","","matInput","","type","number","tabindex","1","required","","name","outputIndx",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["matInput","","type","number","name","fees","required","","tabindex","4",3,"ngModelChange","step","min","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","5","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit","tabindex","6",3,"click"],["fxFlex","100",1,"alert","alert-warn"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),A.EFF(5,"Bump Fee"),A.k0s()(),A.j41(6,"button",7),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",8)(9,"form",9)(10,"div",10)(11,"p",11),A.EFF(12),A.j41(13,"fa-icon",12),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onExplorerClicked(null==c.bumpFeeChannel?null:c.bumpFeeChannel.funding_txid))}),A.k0s()(),A.j41(14,"div",13)(15,"div",14),A.nrm(16,"fa-icon",15),A.j41(17,"span",16)(18,"div"),A.EFF(19,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(20,"div"),A.EFF(21),A.k0s(),A.j41(22,"div"),A.EFF(23),A.k0s(),A.j41(24,"div"),A.EFF(25),A.k0s()()(),A.DNE(26,qt,8,4,"div",17),A.j41(27,"div",18)(28,"mat-form-field",19)(29,"mat-label"),A.EFF(30,"Output Index"),A.k0s(),A.j41(31,"input",20,0),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.outputIndex,WA)||(c.outputIndex=WA),A.Njj(WA)}),A.k0s(),A.DNE(33,re,2,0,"mat-error",21)(34,ce,2,0,"mat-error",21),A.k0s(),A.j41(35,"mat-form-field",19)(36,"mat-label"),A.EFF(37,"Fees (Sats/vByte)"),A.k0s(),A.j41(38,"input",22,1),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.fees,WA)||(c.fees=WA),A.Njj(WA)}),A.k0s(),A.DNE(40,Ce,2,0,"mat-error",21),A.k0s()(),A.DNE(41,de,4,2,"div",23),A.k0s()(),A.j41(42,"div",24)(43,"button",25),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(44,"Clear"),A.k0s(),A.j41(45,"button",26),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onBumpFee())}),A.EFF(46),A.k0s()()()()()()}if(2&l){const j=A.sdS(32);A.R7$(12),A.SpI("Bump fee for transaction id: ",null==c.bumpFeeChannel?null:c.bumpFeeChannel.funding_txid," "),A.R7$(),A.FS9("matTooltip","Link to "+c.selNode.settings.blockExplorerUrl),A.Y8G("icon",c.faUpRightFromSquare),A.R7$(3),A.Y8G("icon",c.faInfoCircle),A.R7$(5),A.SpI("- High: ",c.recommendedFee.fastestFee||"Unknown",""),A.R7$(2),A.SpI("- Medium: ",c.recommendedFee.halfHourFee||"Unknown",""),A.R7$(2),A.SpI("- Low: ",c.recommendedFee.hourFee||"Unknown",""),A.R7$(),A.Y8G("ngIf",c.flgShowDustWarning),A.R7$(5),A.Y8G("step",1)("min",0),A.R50("ngModel",c.outputIndex),A.R7$(2),A.Y8G("ngIf",null==j.errors?null:j.errors.required),A.R7$(),A.Y8G("ngIf",null==j.errors?null:j.errors.pendingChannelOutputIndex),A.R7$(4),A.Y8G("step",1)("min",0),A.R50("ngModel",c.fees),A.R7$(2),A.Y8G("ngIf",!c.fees),A.R7$(),A.Y8G("ngIf",""!==c.bumpFeeError),A.R7$(5),A.JRh(""!==c.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,R.$z,p.m2,p.MM,wA.fg,IA.rl,IA.nJ,IA.TL,HA.oV,J.N,BA.V,st.QX]})}return i})();const rn=()=>["all"],Ue=i=>({"error-border":i}),he=()=>["no_peer"],Je=i=>({width:i}),He=i=>({"display-none":i});function ke(i,D){if(1&i&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function pe(i,D){1&i&&A.nrm(0,"mat-progress-bar",40)}function Le(i,D){1&i&&A.nrm(0,"th",41)}function _e(i,D){if(1&i&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faEyeSlash)}}function Ee(i,D){if(1&i&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("icon",t.faEye)}}function $e(i,D){if(1&i&&(A.j41(0,"td",42),A.DNE(1,_e,2,1,"span",43)(2,Ee,2,1,"span",44),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",t.private),A.R7$(),A.Y8G("ngIf",!t.private)}}function Ln(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function fn(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.alias)}}function Fn(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function Rn(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.id)}}function Pn(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function pn(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.channel_id)}}function zn(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function Cn(i,D){if(1&i&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.funding_txid)}}function kn(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function De(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null!=t&&t.connected?"Connected":"Disconnected")}}function be(i,D){1&i&&(A.j41(0,"th",48),A.EFF(1,"State"),A.k0s())}function Se(i,D){if(1&i&&(A.j41(0,"td",51),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("ngStyle",A.eq3(2,Je,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(),A.JRh(l.CLNChannelPendingState[null==t?null:t.state])}}function Xe(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function je(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.our_reserve_msat)/1e3,"1.0-0")," ")}}function ln(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function ea(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.their_reserve_msat)/1e3,"1.0-0")," ")}}function Gn(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Total (Sats)"),A.k0s())}function na(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.total_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function ia(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Spendable (Sats)"),A.k0s())}function Tl(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.spendable_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Ul(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function Yr(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.to_us_msat)/1e3,(null==t?null:t.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Xi(i,D){1&i&&(A.j41(0,"th",52),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function ra(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.to_them_msat)/1e3,(null==t?null:t.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Sr(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",54)(1,"div",55)(2,"mat-select",56),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",57),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Nr(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onChannelClose(c))}),A.EFF(1,"Close Channel"),A.k0s()}}function Zi(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onBumpFee(c))}),A.EFF(1,"Bump Fee"),A.k0s()}}function qi(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",58)(1,"div",55)(2,"mat-select",59),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",57),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onChannelClick(j,c))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,Nr,2,0,"mat-option",60)(7,Zi,2,0,"mat-option",60),A.k0s()()()}if(2&i){const t=D.$implicit;A.R7$(6),A.Y8G("ngIf","CHANNELD_SHUTTING_DOWN"===t.state||"CLOSINGD_SIGEXCHANGE"===t.state||!t.connected&&"CHANNELD_NORMAL"===t.state),A.R7$(),A.Y8G("ngIf","CHANNELD_AWAITING_LOCKIN"===t.state)}}function _i(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function $i(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No pending/inactive channel available."),A.k0s())}function Ar(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting pending/inactive channels..."),A.k0s())}function tr(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function er(i,D){if(1&i&&(A.j41(0,"td",61),A.DNE(1,_i,2,0,"p",62)(2,$i,2,0,"p",62)(3,Ar,2,0,"p",62)(4,tr,2,1,"p",62),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",t.numPeers<1&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",t.numPeers>0&&(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function nr(i,D){if(1&i&&A.nrm(0,"tr",63),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,He,t.numPeers>0&&(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function Ei(i,D){1&i&&A.nrm(0,"tr",64)}function ss(i,D){1&i&&A.nrm(0,"tr",65)}let os=(()=>{class i{constructor(t,l,c,j,PA){this.logger=t,this.store=l,this.rtlEffects=c,this.commonService=j,this.camelCaseWithReplace=PA,this.faEye=u.pS3,this.faEyeSlash=u.k6j,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_inactive_channels",recordsPerPage:r.md,sortBy:"alias",sortOrder:r.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new F.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=r.G,this.selFilter="",this.CLNChannelPendingState=r.Zb,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.GX).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.numPeers=t.numPeers,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t)}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=[...t.pendingChannels,...t.inactiveChannels],this.channelsData=this.channelsData.sort((l,c)=>this.CLNChannelPendingState[l.state||""]>=this.CLNChannelPendingState[c.state||""]?1:-1),this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(t)})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onBumpFee(t){this.store.dispatch((0,AA.xO)({payload:{data:{channel:t,component:Ge}}}))}onChannelClick(t,l){this.store.dispatch((0,AA.xO)({payload:{data:{channel:t,showCopy:!0,component:es}}}))}onChannelClose(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Force Close Channel",titleMessage:"Force closing channel: "+(t.alias||t.short_channel_id?t.alias&&t.short_channel_id?t.alias+" ("+t.short_channel_id+")":t.alias?t.alias:t.short_channel_id:t.channel_id),noBtnText:"Cancel",yesBtnText:"Force Close"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[3])).subscribe(l=>{l&&this.store.dispatch((0,_.w0)({payload:{id:t.id,channelId:t.channel_id,force:!0}}))})}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.peer_connected?"connected":"disconnected")+(t.channel_id?t.channel_id.toLowerCase():"")+(t.short_channel_id?t.short_channel_id.toLowerCase():"")+(t.id?t.id.toLowerCase():"")+(t.alias?t.alias.toLowerCase():"")+(t.private?"private":"public")+(t.state&&this.CLNChannelPendingState[t.state]?this.CLNChannelPendingState[t.state].toLowerCase():"")+(t.funding_txid?t.funding_txid.toLowerCase():"")+(t.to_us_msat?t.to_us_msat:"")+(t.to_them_msat?t.to_them_msat/1e3:"")+(t.total_msat?t.total_msat/1e3:"")+(t.their_reserve_msat?t.their_reserve_msat/1e3:"")+(t.our_reserve_msat?t.our_reserve_msat/1e3:"")+(t.spendable_msat?t.spendable_msat/1e3:"");break;case"private":c=t?.private?"private":"public";break;case"connected":c=t?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":c=((t.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":c=((t.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":c=((t.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":c=((t.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":c=((t.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":c=((t.their_reserve_msat||0)/1e3).toString()||"";break;case"state":c=t?.state?this.CLNChannelPendingState[t?.state]:"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"connected"===this.selFilterBy||"state"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadChannelsTable(t){this.channels=new F.I6([...t]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(l,c)=>{switch(c){case"msatoshi_total":return l.total_msat;case"spendable_msatoshi":return l.spendable_msat;case"msatoshi_to_us":return l.to_us_msat;case"msatoshi_to_them":return l.to_them_msat;case"our_channel_reserve_satoshis":return l.our_reserve_msat;case"their_channel_reserve_satoshis":return l.their_reserve_msat;case"state":return this.CLNChannelPendingState[l.state];default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Pending-inactive-channels")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(QA.H),A.rXU(h.h),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-pending-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Channels")}])],decls:66,vars:18,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","id"],["matColumnDef","channel_id"],["matColumnDef","funding_txid"],["matColumnDef","connected"],["matColumnDef","state"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","our_channel_reserve_satoshis"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","their_channel_reserve_satoshis"],["matColumnDef","msatoshi_total"],["matColumnDef","spendable_msatoshi"],["matColumnDef","msatoshi_to_us"],["matColumnDef","msatoshi_to_them"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,ke,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.DNE(14,pe,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,Le,1,0,"th",13)(20,$e,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,Ln,2,0,"th",16)(23,fn,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,Fn,2,0,"th",16)(26,Rn,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,Pn,2,0,"th",16)(29,pn,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,zn,2,0,"th",16)(32,Cn,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,kn,2,0,"th",16)(35,De,2,1,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,be,2,0,"th",16)(38,Se,2,4,"td",22),A.bVm(),A.qex(39,23),A.DNE(40,Xe,2,0,"th",24)(41,je,4,4,"td",14),A.bVm(),A.qex(42,25),A.DNE(43,ln,2,0,"th",24)(44,ea,4,4,"td",14),A.bVm(),A.qex(45,26),A.DNE(46,Gn,2,0,"th",24)(47,na,4,4,"td",14),A.bVm(),A.qex(48,27),A.DNE(49,ia,2,0,"th",24)(50,Tl,4,4,"td",14),A.bVm(),A.qex(51,28),A.DNE(52,Ul,2,0,"th",24)(53,Yr,4,4,"td",14),A.bVm(),A.qex(54,29),A.DNE(55,Xi,2,0,"th",24)(56,ra,4,4,"td",14),A.bVm(),A.qex(57,30),A.DNE(58,Sr,6,0,"th",31)(59,qi,8,2,"td",32),A.bVm(),A.qex(60,33),A.DNE(61,er,5,4,"td",34),A.bVm(),A.DNE(62,nr,1,3,"tr",35)(63,Ei,1,0,"tr",36)(64,ss,1,0,"tr",37),A.k0s()(),A.nrm(65,"mat-paginator",38),A.k0s()}2&l&&(A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,rn).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(),A.Y8G("ngIf",c.apiCallStatus.status===c.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.channels)("ngClass",A.eq3(15,Ue,""!==c.errorMessage)),A.R7$(46),A.Y8G("matFooterRowDef",A.lJ4(17,he)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld,st.QX],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();const ls=()=>["all"],cs=i=>({"error-border":i}),aa=()=>["no_peer"],kl=i=>({"mr-0":i}),Ll=i=>({width:i}),ec=i=>({"display-none":i});function nc(i,D){if(1&i&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function ic(i,D){1&i&&A.nrm(0,"mat-progress-bar",35)}function rc(i,D){1&i&&A.nrm(0,"th",36)}function ac(i,D){if(1&i&&A.nrm(0,"span",40),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,kl,t.screenSize===t.screenSizeEnum.XS))}}function sc(i,D){if(1&i&&A.nrm(0,"span",41),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,kl,t.screenSize===t.screenSizeEnum.XS))}}function oc(i,D){if(1&i&&(A.j41(0,"td",37),A.DNE(1,ac,1,3,"span",38)(2,sc,1,3,"span",39),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",null==t?null:t.connected),A.R7$(),A.Y8G("ngIf",!(null!=t&&t.connected))}}function lc(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Alias"),A.k0s())}function cc(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ll,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.alias)}}function gc(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"ID"),A.k0s())}function Bc(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ll,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.id)}}function uc(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Network Address"),A.k0s())}function fc(i,D){1&i&&(A.j41(0,"span"),A.EFF(1,","),A.nrm(2,"br"),A.k0s())}function hc(i,D){if(1&i&&(A.j41(0,"span",44),A.EFF(1),A.DNE(2,fc,3,0,"span",46),A.k0s()),2&i){const t=D.$implicit,l=D.last;A.R7$(),A.JRh(t),A.R7$(),A.Y8G("ngIf",!l)}}function Ec(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43),A.DNE(2,hc,3,2,"span",45),A.k0s()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ll,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(),A.Y8G("ngForOf",null==t?null:t.netaddr)}}function Cc(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function wc(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onPeerDetach(c))}),A.EFF(1,"Disconnect"),A.k0s()}}function dc(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onConnectPeer(c))}),A.EFF(1,"Reconnect"),A.k0s()}}function Qc(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",51)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onPeerClick(j,c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",50),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onOpenChannel(c))}),A.EFF(7,"Open Channel"),A.k0s(),A.DNE(8,wc,2,0,"mat-option",52)(9,dc,2,0,"mat-option",52),A.k0s()()()}if(2&i){const t=D.$implicit;A.R7$(8),A.Y8G("ngIf",t.connected),A.R7$(),A.Y8G("ngIf",!t.connected)}}function mc(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No connected peer."),A.k0s())}function pc(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting peers..."),A.k0s())}function Mc(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function Ic(i,D){if(1&i&&(A.j41(0,"td",53),A.DNE(1,mc,2,0,"p",46)(2,pc,2,0,"p",46)(3,Mc,2,1,"p",46),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers||null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers||null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.peers&&t.peers.data)||(null==t.peers||null==t.peers.data?null:t.peers.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function Dc(i,D){if(1&i&&A.nrm(0,"tr",54),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,ec,(null==t.peers?null:t.peers.data)&&(null==t.peers||null==t.peers.data?null:t.peers.data.length)>0))}}function vc(i,D){1&i&&A.nrm(0,"tr",55)}function Fc(i,D){1&i&&A.nrm(0,"tr",56)}let yc=(()=>{class i{constructor(t,l,c,j,PA,WA){this.logger=t,this.store=l,this.rtlEffects=c,this.actions=j,this.commonService=PA,this.camelCaseWithReplace=WA,this.faUsers=u.gdJ,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:r.md,sortBy:"alias",sortOrder:r.oi.DESCENDING},this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new F.I6([]),this.utxos=[],this.information={},this.availableBalance=0,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.kQ).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.information=t.information,this.availableBalance=t.balance.totalBalance||0}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("connected"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.os).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=t.peers||[],this.peersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(t)}),this.store.select(E.Al).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.utxos=this.commonService.sortAscByKey(t.utxos?.filter(l=>"confirmed"===l.status),"value")}),this.actions.pipe((0,g.Q)(this.unSubs[4]),(0,v.p)(t=>t.type===r.TC.SET_PEERS_CLN)).subscribe(t=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(t,l){this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:t.id,goToName:"Graph lookup",goToLink:"/cln/graph/lookups",showQRName:"Public Key",showQRField:t.id,message:[[{key:"id",value:t.id,title:"Public Key",width:100}],[{key:"netaddr",value:t.netaddr,title:"Address",width:100}],[{key:"alias",value:t.alias,title:"Alias",width:50},{key:"connected",value:t.connected?"True":"False",title:"Connected",width:50}]]}}}))}onConnectPeer(t){this.store.dispatch((0,AA.xO)({payload:{data:{message:{peer:t.id?t:null,information:this.information,balance:this.availableBalance},component:Na}}}))}onOpenChannel(t){this.store.dispatch((0,AA.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:t,information:this.information,balance:this.availableBalance,utxos:this.utxos},newlyAdded:!1,component:_a}}}))}onPeerDetach(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(t.alias?t.alias:t.id),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[5])).subscribe(c=>{c&&this.store.dispatch((0,_.ed)({payload:{id:t.id,force:!1}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.peers.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=JSON.stringify(t).toLowerCase();break;case"connected":c=t?.connected?"connected":"disconnected";break;case"netaddr":c=t.netaddr?t.netaddr.reduce((j,PA)=>j+PA," "):"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"connected"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadPeersTable(t){this.peers=new F.I6([...t]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(l,c)=>{if("netaddr"===c){if(l.netaddr&&l.netaddr[0]){const j=l.netaddr[0].toString().split(".");return j[0]?+j[0]:l.netaddr[0]}return""}return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null},this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(QA.H),A.rXU(fA.En),A.rXU(h.h),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-peers"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Peers")}])],decls:47,vars:19,consts:[["peersForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-x-hidden","overflow-y-hidden",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","connected"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Connected",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","id"],["matColumnDef","netaddr"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Connected"],["mat-cell",""],["class","dot green","matTooltip","Connected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Disconnected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Connected","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Disconnected","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["class","ellipsis-child",4,"ngFor","ngForOf"],[4,"ngIf"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",2)(1,"form",3,0)(3,"button",4),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onConnectPeer({}))}),A.EFF(4,"Add Peer"),A.k0s()(),A.j41(5,"div",5)(6,"div",6)(7,"div",7),A.nrm(8,"fa-icon",8),A.j41(9,"span",9),A.EFF(10,"Connected Peers"),A.k0s()(),A.j41(11,"div",10)(12,"mat-form-field",11)(13,"mat-label"),A.EFF(14,"Filter By"),A.k0s(),A.j41(15,"mat-select",12),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(16,"perfect-scrollbar"),A.DNE(17,nc,2,2,"mat-option",13),A.k0s()()(),A.j41(18,"mat-form-field",11)(19,"mat-label"),A.EFF(20,"Filter"),A.k0s(),A.j41(21,"input",14),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(22,"div",15),A.DNE(23,ic,1,0,"mat-progress-bar",16),A.j41(24,"table",17,1),A.qex(26,18),A.DNE(27,rc,1,0,"th",19)(28,oc,3,2,"td",20),A.bVm(),A.qex(29,21),A.DNE(30,lc,2,0,"th",22)(31,cc,4,4,"td",20),A.bVm(),A.qex(32,23),A.DNE(33,gc,2,0,"th",22)(34,Bc,4,4,"td",20),A.bVm(),A.qex(35,24),A.DNE(36,uc,2,0,"th",22)(37,Ec,3,4,"td",20),A.bVm(),A.qex(38,25),A.DNE(39,Cc,6,0,"th",26)(40,Qc,10,2,"td",27),A.bVm(),A.qex(41,28),A.DNE(42,Ic,4,3,"td",29),A.bVm(),A.DNE(43,Dc,1,3,"tr",30)(44,vc,1,0,"tr",31)(45,Fc,1,0,"tr",32),A.k0s()(),A.nrm(46,"mat-paginator",33),A.k0s()()}2&l&&(A.R7$(8),A.Y8G("icon",c.faUsers),A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,ls).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",c.apiCallStatus.status===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.peers)("ngClass",A.eq3(16,cs,""!==c.errorMessage)),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(18,aa)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.qT,iA.me,iA.BC,iA.cb,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld],styles:[".mat-column-connected[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();const xc=["queryRoutesForm"],Yc=i=>({"overflow-auto error-border":i,"overflow-auto":!0}),jl=i=>({width:i});function Sc(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Destination pubkey is required."),A.k0s())}function Nc(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function bc(i,D){1&i&&A.nrm(0,"mat-progress-bar",36)}function Rc(i,D){1&i&&(A.j41(0,"th",37),A.EFF(1,"ID"),A.k0s())}function Tc(i,D){if(1&i&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.id)}}function Uc(i,D){1&i&&(A.j41(0,"th",37),A.EFF(1,"Alias"),A.k0s())}function Lc(i,D){if(1&i&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.alias)}}function Pc(i,D){1&i&&(A.j41(0,"th",37),A.EFF(1,"Channel"),A.k0s())}function zc(i,D){if(1&i&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.channel)}}function Gc(i,D){1&i&&(A.j41(0,"th",37),A.EFF(1,"Direction"),A.k0s())}function Hc(i,D){if(1&i&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.direction)}}function kc(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Delay"),A.k0s())}function jc(i,D){if(1&i&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI("",A.bMT(3,1,null==t?null:t.delay)," ")}}function Oc(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Amount (Sats)"),A.k0s())}function Jc(i,D){if(1&i&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,(null==t?null:t.amount_msat)/1e3))}}function Vc(i,D){1&i&&(A.j41(0,"th",43)(1,"div",44),A.EFF(2,"Actions"),A.k0s()())}function Wc(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",45)(1,"button",46),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG();return A.Njj(PA.onHopClick(j,c))}),A.EFF(2,"View Info"),A.k0s()()}}function Kc(i,D){1&i&&A.nrm(0,"tr",47)}function Xc(i,D){1&i&&A.nrm(0,"tr",48)}let Zc=(()=>{class i{constructor(t,l,c){this.store=t,this.clnEffects=l,this.commonService=c,this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:r.md,sortBy:"id",sortOrder:r.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new F.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=u.TBz,this.faExclamationTriangle=u.zpE,this.screenSize="",this.screenSizeEnum=r.f7,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions")}),this.clnEffects.setQueryRoutesCL.pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.qrHops.data=[],t.route&&t.route.length&&t.route.length>0?(this.flgLoading[0]=!1,this.qrHops=new F.I6([...t.route])):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(l,c)=>l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.flgLoading[0]=!0,this.store.dispatch((0,_.T4)({payload:{destPubkey:this.destinationPubkey,amount:1e3*this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1,this.qrHops.data=[],this.form.resetForm()}onHopClick(t,l){this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"id",value:t.id,title:"ID",width:100,type:r.UN.STRING}],[{key:"channel",value:t.channel,title:"Channel",width:50,type:r.UN.STRING},{key:"alias",value:t.alias,title:"Peer Alias",width:50,type:r.UN.STRING}],[{key:"amount_msat",value:t.amount_msat,title:"Amount (mSat)",width:34,type:r.UN.NUMBER},{key:"direction",value:t.direction,title:"Direction",width:33,type:r.UN.STRING},{key:"delay",value:t.delay,title:"Delay",width:33,type:r.UN.NUMBER}]]}}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(e.il),A.rXU(Aa.i),A.rXU(h.h))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-query-routes"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(xc,7)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.form=j.first)}},decls:55,vars:17,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table",""],["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","destinationPubkey","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","mt-2","mb-1"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"table-container","mb-6",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","channel"],["matColumnDef","direction"],["matColumnDef","delay"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",3)(1,"form",4,0),A.bIt("ngSubmit",function(){A.eBV(j);const WA=A.sdS(2);return A.Njj(WA.form.valid&&c.onQueryRoutes())}),A.j41(3,"div",5),A.nrm(4,"fa-icon",6),A.j41(5,"span"),A.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),A.k0s()(),A.j41(7,"mat-form-field",7)(8,"mat-label"),A.EFF(9,"Destination Pubkey"),A.k0s(),A.j41(10,"input",8,1),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.destinationPubkey,WA)||(c.destinationPubkey=WA),A.Njj(WA)}),A.k0s(),A.DNE(12,Sc,2,0,"mat-error",9),A.k0s(),A.j41(13,"mat-form-field",10)(14,"mat-label"),A.EFF(15,"Amount (Sats)"),A.k0s(),A.j41(16,"input",11),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.amount,WA)||(c.amount=WA),A.Njj(WA)}),A.k0s(),A.DNE(17,Nc,2,0,"mat-error",9),A.k0s(),A.j41(18,"div",12)(19,"button",13),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(20,"Clear"),A.k0s(),A.j41(21,"button",14),A.EFF(22,"Query Route"),A.k0s()()(),A.j41(23,"div",15)(24,"div",16),A.nrm(25,"fa-icon",17),A.j41(26,"span",18),A.EFF(27,"Transaction Route"),A.k0s()()(),A.j41(28,"div",19),A.DNE(29,bc,1,0,"mat-progress-bar",20),A.j41(30,"table",21,2),A.qex(32,22),A.DNE(33,Rc,2,0,"th",23)(34,Tc,4,4,"td",24),A.bVm(),A.qex(35,25),A.DNE(36,Uc,2,0,"th",23)(37,Lc,4,4,"td",24),A.bVm(),A.qex(38,26),A.DNE(39,Pc,2,0,"th",23)(40,zc,2,1,"td",24),A.bVm(),A.qex(41,27),A.DNE(42,Gc,2,0,"th",23)(43,Hc,2,1,"td",24),A.bVm(),A.qex(44,28),A.DNE(45,kc,2,0,"th",29)(46,jc,4,3,"td",24),A.bVm(),A.qex(47,30),A.DNE(48,Oc,2,0,"th",29)(49,Jc,4,3,"td",24),A.bVm(),A.qex(50,31),A.DNE(51,Vc,3,0,"th",32)(52,Wc,3,0,"td",33),A.bVm(),A.DNE(53,Kc,1,0,"tr",34)(54,Xc,1,0,"tr",35),A.k0s()()()}2&l&&(A.R7$(4),A.Y8G("icon",c.faExclamationTriangle),A.R7$(6),A.R50("ngModel",c.destinationPubkey),A.R7$(2),A.Y8G("ngIf",!c.destinationPubkey),A.R7$(4),A.Y8G("step",1e3)("min",0),A.R50("ngModel",c.amount),A.R7$(),A.Y8G("ngIf",!c.amount),A.R7$(8),A.Y8G("icon",c.faRoute),A.R7$(4),A.Y8G("ngIf",!0===c.flgLoading[0]),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.qrHops)("ngClass",A.eq3(15,Yc,"error"===c.flgLoading[0])),A.R7$(23),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns))},dependencies:[st.YU,st.bT,st.B3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,IA.TL,B.HM,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.KS,F.$R,F.YZ,F.NB,cA.Ld,BA.V,st.QX]})}return i})();function qc(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}let _c=(()=>{class i{constructor(t,l,c){this.dataService=t,this.snackBar=l,this.logger=c,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new o.B,new o.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.signedMessage=this.message,this.signature=t.zbase})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(t){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+t)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(Qe.u),A.rXU(ki.UG),A.rXU(C.gP))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-sign"]],decls:22,vars:4,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],[1,"my-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxLayoutAlign","start center",1,"signature-box","bordered-box","read-only"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"copied","payload"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"form",2,0)(3,"mat-form-field",3)(4,"mat-label"),A.EFF(5,"Message to sign"),A.k0s(),A.j41(6,"textarea",4),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.message,WA)||(c.message=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onMessageChange())}),A.k0s(),A.DNE(7,qc,2,0,"mat-error",5),A.k0s(),A.j41(8,"div",6)(9,"button",7),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(10,"Clear Field"),A.k0s(),A.j41(11,"button",8),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onSign())}),A.EFF(12,"Sign"),A.k0s()(),A.nrm(13,"mat-divider",9),A.j41(14,"div",10)(15,"p"),A.EFF(16,"Generated Signature"),A.k0s()(),A.j41(17,"div",11),A.EFF(18),A.k0s(),A.j41(19,"div",12)(20,"button",13),A.bIt("copied",function(WA){return A.eBV(j),A.Njj(c.onCopyField(WA))}),A.EFF(21,"Copy Signature"),A.k0s()()()()}2&l&&(A.R7$(6),A.R50("ngModel",c.message),A.R7$(),A.Y8G("ngIf",!c.message),A.R7$(11),A.JRh(c.signature),A.R7$(2),A.Y8G("payload",c.signature))},dependencies:[st.bT,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,n.DJ,n.sA,n.UI,R.$z,wA.fg,IA.rl,IA.nJ,IA.TL,ri.q,mr.U,J.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]})}return i})();function $c(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}function Ag(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Signature is required."),A.k0s())}function tg(i,D){1&i&&(A.j41(0,"p",13)(1,"mat-icon",14),A.EFF(2,"close"),A.k0s(),A.EFF(3,"Verification failed, please check message and signature"),A.k0s())}function eg(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Pubkey Used"),A.k0s())}function ng(i,D){if(1&i&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&i){const t=A.XpG(2);A.R7$(2),A.JRh(null==t.verifyRes?null:t.verifyRes.pubkey)}}function ig(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",21)(1,"button",22),A.bIt("copied",function(c){A.eBV(t);const j=A.XpG(2);return A.Njj(j.onCopyField(c))}),A.EFF(2,"Copy Pubkey"),A.k0s()()}if(2&i){const t=A.XpG(2);A.R7$(),A.Y8G("payload",null==t.verifyRes?null:t.verifyRes.pubkey)}}function rg(i,D){if(1&i&&(A.j41(0,"div",15),A.nrm(1,"mat-divider",16),A.j41(2,"div",17),A.DNE(3,eg,2,0,"p",6),A.k0s(),A.DNE(4,ng,3,1,"div",18)(5,ig,3,1,"div",19),A.k0s()),2&i){const t=A.XpG();A.R7$(3),A.Y8G("ngIf",t.verifyRes.verified),A.R7$(),A.Y8G("ngIf",t.verifyRes.verified),A.R7$(),A.Y8G("ngIf",t.verifyRes.verified)}}let ag=(()=>{class i{constructor(t,l,c){this.dataService=t,this.snackBar=l,this.logger=c,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null},this.unSubs=[new o.B,new o.B]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.verifyRes=t,this.showVerifyStatus=!0,this.verifiedMessage=this.message,this.verifiedSignature=this.signature})}onChange(){(this.verifiedMessage!==this.message||this.verifiedSignature!==this.signature)&&(this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null})}resetData(){this.message="",this.signature="",this.verifyRes=null,this.showVerifyStatus=!1}onCopyField(t){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+t)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(Qe.u),A.rXU(ki.UG),A.rXU(C.gP))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-verify"]],decls:21,vars:6,consts:[["form","ngForm"],["sign","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","signature","tabindex","2","required","",3,"ngModelChange","keyup","ngModel"],["fxFlex","100","class","color-warn","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],[1,"my-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"copied","payload"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",2)(1,"form",3,0)(3,"mat-form-field",4)(4,"mat-label"),A.EFF(5,"Message to verify"),A.k0s(),A.j41(6,"textarea",5),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.message,WA)||(c.message=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onChange())}),A.k0s(),A.DNE(7,$c,2,0,"mat-error",6),A.k0s(),A.j41(8,"mat-form-field",4)(9,"mat-label"),A.EFF(10,"Signature provided"),A.k0s(),A.j41(11,"input",7,1),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.signature,WA)||(c.signature=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onChange())}),A.k0s(),A.DNE(13,Ag,2,0,"mat-error",6),A.k0s(),A.DNE(14,tg,4,0,"p",8),A.j41(15,"div",9)(16,"button",10),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(17,"Clear Fields"),A.k0s(),A.j41(18,"button",11),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onVerify())}),A.EFF(19,"Verify"),A.k0s()(),A.DNE(20,rg,6,3,"div",12),A.k0s()()}2&l&&(A.R7$(6),A.R50("ngModel",c.message),A.R7$(),A.Y8G("ngIf",!c.message),A.R7$(4),A.R50("ngModel",c.signature),A.R7$(2),A.Y8G("ngIf",!c.signature),A.R7$(),A.Y8G("ngIf",c.showVerifyStatus&&!c.verifyRes.verified),A.R7$(6),A.Y8G("ngIf",c.showVerifyStatus&&c.verifyRes.verified))},dependencies:[st.bT,iA.qT,iA.me,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,n.DJ,n.sA,n.UI,R.$z,y.An,wA.fg,IA.rl,IA.nJ,IA.TL,ri.q,mr.U,J.N]})}return i})();const sg=()=>["all"],og=()=>["no_event"],Pl=i=>({width:i}),lg=i=>({"display-none":i});function cg(i,D){if(1&i&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function gg(i,D){if(1&i&&(A.j41(0,"mat-option",14),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function Bg(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",7),A.nrm(1,"div",8),A.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),A.EFF(5,"Filter By"),A.k0s(),A.j41(6,"mat-select",11),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(7,"perfect-scrollbar"),A.DNE(8,gg,2,2,"mat-option",12),A.k0s()()(),A.j41(9,"mat-form-field",10)(10,"mat-label"),A.EFF(11,"Filter"),A.k0s(),A.j41(12,"input",13),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()()}if(2&i){const t=A.XpG();A.R7$(6),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(3,sg).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter)}}function ug(i,D){1&i&&A.nrm(0,"mat-progress-bar",39)}function fg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Received Time"),A.k0s())}function hg(i,D){if(1&i&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function Eg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Resolved Time"),A.k0s())}function Cg(i,D){if(1&i&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.resolved_time),"dd/MMM/y HH:mm"))}}function wg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"In Channel ID"),A.k0s())}function dg(i,D){if(1&i&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.in_channel)}}function Qg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"In Channel"),A.k0s())}function mg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Pl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.in_channel_alias)}}function pg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Out Channel ID"),A.k0s())}function Mg(i,D){if(1&i&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.out_channel)}}function Ig(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Out Channel"),A.k0s())}function Dg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Pl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.out_channel_alias)}}function vg(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Payment Hash"),A.k0s())}function Fg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Pl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash)}}function yg(i,D){1&i&&(A.j41(0,"th",44),A.EFF(1,"Amount In (Sats)"),A.k0s())}function xg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.in_msat)/1e3,(null==t?null:t.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Yg(i,D){1&i&&(A.j41(0,"th",44),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function Sg(i,D){if(1&i&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.out_msat)/1e3,(null==t?null:t.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Ng(i,D){1&i&&(A.j41(0,"th",44),A.EFF(1,"Fee (mSat)"),A.k0s())}function bg(i,D){if(1&i&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==t?null:t.fee)," ")}}function Rg(i,D){if(1&i&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==t?null:t.fee_msat)," ")}}function Tg(i,D){if(1&i&&(A.j41(0,"td",41),A.DNE(1,bg,3,3,"span",46)(2,Rg,3,3,"span",46),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",null==t?null:t.fee),A.R7$(),A.Y8G("ngIf",!(null!=t&&t.fee)&&(null==t?null:t.fee_msat))}}function Ug(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Lg(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(c){const j=A.eBV(t).$implicit,PA=A.XpG(2);return A.Njj(PA.onForwardingEventClick(j,c))}),A.EFF(2,"View Info"),A.k0s()()}}function Pg(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No forwarding history available."),A.k0s())}function zg(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting forwarding history..."),A.k0s())}function Gg(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function Hg(i,D){if(1&i&&(A.j41(0,"td",53),A.DNE(1,Pg,2,0,"p",54)(2,zg,2,0,"p",54)(3,Gg,2,1,"p",54),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.forwardingHistoryEvents&&t.forwardingHistoryEvents.data)||(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function kg(i,D){if(1&i&&A.nrm(0,"tr",55),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,lg,(null==t.forwardingHistoryEvents?null:t.forwardingHistoryEvents.data)&&(null==t.forwardingHistoryEvents||null==t.forwardingHistoryEvents.data?null:t.forwardingHistoryEvents.data.length)>0))}}function jg(i,D){1&i&&A.nrm(0,"tr",56)}function Og(i,D){1&i&&A.nrm(0,"tr",57)}function Jg(i,D){if(1&i&&(A.j41(0,"div",15),A.DNE(1,ug,1,0,"mat-progress-bar",16),A.j41(2,"table",17,0),A.qex(4,18),A.DNE(5,fg,2,0,"th",19)(6,hg,3,4,"td",20),A.bVm(),A.qex(7,21),A.DNE(8,Eg,2,0,"th",19)(9,Cg,3,4,"td",20),A.bVm(),A.qex(10,22),A.DNE(11,wg,2,0,"th",19)(12,dg,2,1,"td",20),A.bVm(),A.qex(13,23),A.DNE(14,Qg,2,0,"th",19)(15,mg,4,4,"td",20),A.bVm(),A.qex(16,24),A.DNE(17,pg,2,0,"th",19)(18,Mg,2,1,"td",20),A.bVm(),A.qex(19,25),A.DNE(20,Ig,2,0,"th",19)(21,Dg,4,4,"td",20),A.bVm(),A.qex(22,26),A.DNE(23,vg,2,0,"th",19)(24,Fg,4,4,"td",20),A.bVm(),A.qex(25,27),A.DNE(26,yg,2,0,"th",28)(27,xg,4,4,"td",20),A.bVm(),A.qex(28,29),A.DNE(29,Yg,2,0,"th",28)(30,Sg,4,4,"td",20),A.bVm(),A.qex(31,30),A.DNE(32,Ng,2,0,"th",28)(33,Tg,3,2,"td",20),A.bVm(),A.qex(34,31),A.DNE(35,Ug,6,0,"th",32)(36,Lg,3,0,"td",33),A.bVm(),A.qex(37,34),A.DNE(38,Hg,4,3,"td",35),A.bVm(),A.DNE(39,kg,1,3,"tr",36)(40,jg,1,0,"tr",37)(41,Og,1,0,"tr",38),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.forwardingHistoryEvents),A.R7$(37),A.Y8G("matFooterRowDef",A.lJ4(7,og)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}function Vg(i,D){if(1&i&&A.nrm(0,"mat-paginator",58),2&i){const t=A.XpG();A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Ol=(()=>{class i{constructor(t,l,c,j,PA){this.logger=t,this.commonService=l,this.store=c,this.datePipe=j,this.camelCaseWithReplace=PA,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:r.md,sortBy:"received_time",sortOrder:r.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.forwardingHistoryEvents=new F.I6([]),this.totalForwardedTransactions=0,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:r.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.successfulEvents=this.eventsData,this.totalForwardedTransactions=this.eventsData.length,this.paginator&&this.paginator.firstPage(),t.eventsData.firstChange||this.loadForwardingEventsTable(this.successfulEvents)),t.selFilter&&!t.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=t.pageSettings.find(l=>l.pageId===this.pageId)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.pageId)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.pipe((0,Fe.s)(1)).subscribe(t=>{t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.wn.UN_INITIATED&&!t.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,_.uK)({payload:{status:r.xk.SETTLED}}))}),this.store.select(E.Ie).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData.length<=0&&t.forwardingHistory.listForwards&&(this.totalForwardedTransactions=t.forwardingHistory.totalForwards||0,this.successfulEvents=t.forwardingHistory.listForwards||[],this.successfulEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.successfulEvents),this.logger.info(t))})}ngAfterViewInit(){setTimeout(()=>{this.successfulEvents.length>0&&this.loadForwardingEventsTable(this.successfulEvents)},0)}onForwardingEventClick(t,l){const c=[[{key:"status",value:"Settled",title:"Status",width:50,type:r.UN.STRING},{key:"fee",value:t.fee_msat,title:"Fee (mSats)",width:50,type:r.UN.NUMBER}],[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:r.UN.DATE_TIME},{key:"resolved_time",value:t.resolved_time,title:"Resolved Time",width:50,type:r.UN.DATE_TIME}],[{key:"in_channel",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:r.UN.STRING},{key:"out_channel",value:t.out_channel_alias,title:"Outbound Channel",width:50,type:r.UN.STRING}],[{key:"in_msatoshi",value:t.in_msat,title:"In (mSats)",width:50,type:r.UN.NUMBER},{key:"out_msatoshi",value:t.out_msat,title:"Out (mSats)",width:50,type:r.UN.NUMBER}]];t.payment_hash&&c.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.UN.STRING}]),this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Event Information",message:c}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(t){const l=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.received_time?this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(t.resolved_time?this.datePipe.transform(new Date(1e3*t.resolved_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(t.in_channel?t.in_channel.toLowerCase()+" ":"")+(t.out_channel?t.out_channel.toLowerCase()+" ":"")+(t.in_channel_alias?t.in_channel_alias.toLowerCase()+" ":"")+(t.out_channel_alias?t.out_channel_alias.toLowerCase()+" ":"")+(t.in_msat?+t.in_msat/1e3+" ":"")+(t.out_msat?+t.out_msat/1e3+" ":"")+(t.fee_msat?t.fee_msat+" ":"");break;case"received_time":case"resolved_time":c=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":c=(+(t.fee_msat||0)).toString()||"";break;case"in_msatoshi":c=(+(t.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":c=(+(t.out_msat||0)/1e3).toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadForwardingEventsTable(t){this.forwardingHistoryEvents=new F.I6([...t]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(l,c)=>{switch(c){case"in_msatoshi":return l.in_msat;case"out_msatoshi":return l.out_msat;case"fee":return l.fee_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-forwarding-history"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Events")}]),A.OA$],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","resolved_time"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","payment_hash"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","out_msatoshi"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(l,c){1&l&&(A.j41(0,"div",1),A.DNE(1,cg,2,1,"div",2)(2,Bg,13,4,"div",3)(3,Jg,42,8,"div",4)(4,Vg,1,3,"mat-paginator",5),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",""!==c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,S.iy,cA.ZF,cA.Ld,st.QX,st.vh]})}return i})();const Wg=()=>["all"],Kg=()=>["no_event"],Jl=i=>({width:i}),Xg=i=>({"display-none":i});function Zg(i,D){if(1&i&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function qg(i,D){if(1&i&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function _g(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",7)(1,"div",8),A.nrm(2,"fa-icon",9),A.j41(3,"span"),A.EFF(4,"Maximum 1,000 failed transactions only."),A.k0s()(),A.j41(5,"div",10),A.nrm(6,"div",11),A.j41(7,"div",12)(8,"mat-form-field",13)(9,"mat-label"),A.EFF(10,"Filter By"),A.k0s(),A.j41(11,"mat-select",14),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,qg,2,2,"mat-option",15),A.k0s()()(),A.j41(14,"mat-form-field",13)(15,"mat-label"),A.EFF(16,"Filter"),A.k0s(),A.j41(17,"input",16),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()()()}if(2&i){const t=A.XpG();A.R7$(2),A.Y8G("icon",t.faExclamationTriangle),A.R7$(9),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(4,Wg).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter)}}function $g(i,D){1&i&&A.nrm(0,"mat-progress-bar",41)}function AB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Received Time"),A.k0s())}function tB(i,D){if(1&i&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function eB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Resolved Time"),A.k0s())}function nB(i,D){if(1&i&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.resolved_time),"dd/MMM/y HH:mm"))}}function iB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"In Channel ID"),A.k0s())}function rB(i,D){if(1&i&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.in_channel)}}function aB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"In Channel"),A.k0s())}function sB(i,D){if(1&i&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.in_channel_alias)}}function oB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Out Channel ID"),A.k0s())}function lB(i,D){if(1&i&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.out_channel)}}function cB(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Out Channel"),A.k0s())}function gB(i,D){if(1&i&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Jl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.out_channel_alias)}}function BB(i,D){1&i&&(A.j41(0,"th",46),A.EFF(1,"Amount In (Sats)"),A.k0s())}function uB(i,D){if(1&i&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.in_msat)/1e3,(null==t?null:t.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function fB(i,D){1&i&&(A.j41(0,"th",46),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function hB(i,D){if(1&i&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.out_msat)/1e3,(null==t?null:t.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function EB(i,D){1&i&&(A.j41(0,"th",46),A.EFF(1,"Fee (mSat)"),A.k0s())}function CB(i,D){if(1&i&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==t?null:t.fee,"1.0-0")," ")}}function wB(i,D){if(1&i&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==t?null:t.fee_msat,"1.0-0")," ")}}function dB(i,D){if(1&i&&(A.j41(0,"td",43),A.DNE(1,CB,3,4,"span",48)(2,wB,3,4,"span",48),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",null==t?null:t.fee),A.R7$(),A.Y8G("ngIf",!(null!=t&&t.fee)&&(null==t?null:t.fee_msat))}}function QB(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",49)(1,"div",50)(2,"mat-select",51),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",52),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function mB(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",53)(1,"button",54),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onFailedEventClick(c))}),A.EFF(2,"View Info"),A.k0s()()}}function pB(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function MB(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function IB(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function DB(i,D){if(1&i&&(A.j41(0,"td",55),A.DNE(1,pB,2,0,"p",56)(2,MB,2,0,"p",56)(3,IB,2,1,"p",56),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=t.failedForwardingEvents&&t.failedForwardingEvents.data)||(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.failedForwardingEvents&&t.failedForwardingEvents.data)||(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.failedForwardingEvents&&t.failedForwardingEvents.data)||(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function vB(i,D){if(1&i&&A.nrm(0,"tr",57),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Xg,(null==t.failedForwardingEvents?null:t.failedForwardingEvents.data)&&(null==t.failedForwardingEvents||null==t.failedForwardingEvents.data?null:t.failedForwardingEvents.data.length)>0))}}function FB(i,D){1&i&&A.nrm(0,"tr",58)}function yB(i,D){1&i&&A.nrm(0,"tr",59)}function xB(i,D){if(1&i&&(A.j41(0,"div",18),A.DNE(1,$g,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,AB,2,0,"th",22)(6,tB,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,eB,2,0,"th",22)(9,nB,3,4,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,iB,2,0,"th",22)(12,rB,2,1,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,aB,2,0,"th",22)(15,sB,4,4,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,oB,2,0,"th",22)(18,lB,2,1,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,cB,2,0,"th",22)(21,gB,4,4,"td",23),A.bVm(),A.qex(22,29),A.DNE(23,BB,2,0,"th",30)(24,uB,4,4,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,fB,2,0,"th",30)(27,hB,4,4,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,EB,2,0,"th",30)(30,dB,3,2,"td",23),A.bVm(),A.qex(31,33),A.DNE(32,QB,6,0,"th",34)(33,mB,3,0,"td",35),A.bVm(),A.qex(34,36),A.DNE(35,DB,4,3,"td",37),A.bVm(),A.DNE(36,vB,1,3,"tr",38)(37,FB,1,0,"tr",39)(38,yB,1,0,"tr",40),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.failedForwardingEvents),A.R7$(34),A.Y8G("matFooterRowDef",A.lJ4(7,Kg)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}function YB(i,D){if(1&i&&A.nrm(0,"mat-paginator",60),2&i){const t=A.XpG();A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let SB=(()=>{class i{constructor(t,l,c,j,PA){this.logger=t,this.commonService=l,this.store=c,this.datePipe=j,this.camelCaseWithReplace=PA,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"failed",recordsPerPage:r.md,sortBy:"received_time",sortOrder:r.oi.DESCENDING},this.faExclamationTriangle=u.zpE,this.failedEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedForwardingEvents=new F.I6([]),this.selFilter="",this.totalFailedTransactions=0,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,_.uK)({payload:{status:r.xk.FAILED}})),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Dv).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalFailedTransactions=t.failedForwardingHistory.totalForwards||0,this.failedEvents=t.failedForwardingHistory.listForwards||[],this.failedEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadFailedEventsTable(this.failedEvents),this.logger.info(t)})}ngAfterViewInit(){this.failedEvents.length>0&&this.loadFailedEventsTable(this.failedEvents)}onFailedEventClick(t){const l=[[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:r.UN.DATE_TIME},{key:"resolved_time",value:t.resolved_time,title:"Resolved Time",width:50,type:r.UN.DATE_TIME}],[{key:"in_channel_alias",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:r.UN.STRING},{key:"out_channel_alias",value:t.out_channel_alias,title:"Outbound Channel",width:50,type:r.UN.STRING}],[{key:"in_msatoshi",value:t.in_msat,title:"Amount In (mSats)",width:33,type:r.UN.NUMBER},{key:"out_msatoshi",value:t.out_msat,title:"Amount Out (mSats)",width:33,type:r.UN.NUMBER},{key:"fee",value:t.fee_msat,title:"Fee (mSats)",width:34,type:r.UN.NUMBER}]];t.payment_hash&&l?.unshift([{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.UN.STRING}]),this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Failed Event Information",message:l}}}))}applyFilter(){this.failedForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.failedForwardingEvents.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.received_time?this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(t.resolved_time?this.datePipe.transform(new Date(1e3*t.resolved_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(t.in_channel?t.in_channel.toLowerCase()+" ":"")+(t.out_channel?t.out_channel.toLowerCase()+" ":"")+(t.in_channel_alias?t.in_channel_alias.toLowerCase()+" ":"")+(t.out_channel_alias?t.out_channel_alias.toLowerCase()+" ":"")+(t.fee_msat?t.fee_msat+" ":"")+(t.in_msat?+t.in_msat/1e3+" ":"")+(t.out_msat?+t.out_msat/1e3+" ":"")+(t.fee_msat?t.fee_msat+" ":"");break;case"received_time":case"resolved_time":c=this.datePipe.transform(new Date(1e3*(t[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":c=(t.fee_msat||0)?.toString()||"";break;case"in_msatoshi":c=(+(t.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":c=(+(t.out_msat||0)/1e3).toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadFailedEventsTable(t){this.failedForwardingEvents=new F.I6([...t]),this.failedForwardingEvents.sort=this.sort,this.failedForwardingEvents.sortingDataAccessor=(l,c)=>{switch(c){case"in_msatoshi":return l.in_msat;case"out_msatoshi":return l.out_msat;case"fee":return l.fee_msat;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},this.failedForwardingEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.failedForwardingEvents)}onDownloadCSV(){this.failedForwardingEvents&&this.failedForwardingEvents.data&&this.failedForwardingEvents.data.length>0&&this.commonService.downloadFile(this.failedForwardingEvents.data,"Failed-transactions")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-failed-history"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Failed events")}])],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-warn","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","resolved_time"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","out_msatoshi"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(l,c){1&l&&(A.j41(0,"div",1),A.DNE(1,Zg,2,1,"div",2)(2,_g,18,5,"div",3)(3,xB,39,8,"div",4)(4,YB,1,3,"mat-paginator",5),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",""!==c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,S.iy,cA.ZF,cA.Ld,st.QX,st.vh]})}return i})();const NB=["tableIn"],bB=["tableOut"],RB=["paginatorIn"],TB=["paginatorOut"],UB=(i,D)=>({"mt-2":i,"mt-1":D}),LB=()=>["no_incoming_event"],PB=i=>({"mt-2":i}),zB=()=>["no_outgoing_event"],gs=i=>({width:i}),Vl=i=>({"display-none":i});function GB(i,D){if(1&i&&(A.j41(0,"div",7),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function HB(i,D){1&i&&A.nrm(0,"mat-progress-bar",34)}function kB(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function jB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,gs,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.channel_id)}}function OB(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function JB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,gs,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.alias)}}function VB(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function WB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,t.events))}}function KB(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function XB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.total_amount)/1e3,(null==t?null:t.total_amount)<1e3?"1.0-4":"1.0-0"))}}function ZB(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function qB(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.total_fee)/1e3,(null==t?null:t.total_fee)<1e3?"1.0-4":"1.0-0"))}}function _B(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No incoming routing peer available."),A.k0s())}function $B(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting incoming routing peers..."),A.k0s())}function Au(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function tu(i,D){if(1&i&&(A.j41(0,"td",41),A.DNE(1,_B,2,0,"p",42)(2,$B,2,0,"p",42)(3,Au,2,1,"p",42),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.routingPeersIncoming&&t.routingPeersIncoming.data)||(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function eu(i,D){if(1&i&&A.nrm(0,"tr",43),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Vl,(null==t.routingPeersIncoming?null:t.routingPeersIncoming.data)&&(null==t.routingPeersIncoming||null==t.routingPeersIncoming.data?null:t.routingPeersIncoming.data.length)>0))}}function nu(i,D){1&i&&A.nrm(0,"tr",44)}function iu(i,D){1&i&&A.nrm(0,"tr",45)}function ru(i,D){1&i&&A.nrm(0,"mat-progress-bar",34)}function au(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function su(i,D){if(1&i&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,gs,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.channel_id)}}function ou(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function lu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,gs,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.alias)}}function cu(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function gu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,t.events))}}function Bu(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function uu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.total_amount)/1e3,(null==t?null:t.total_amount)<1e3?"1.0-4":"1.0-0"))}}function fu(i,D){1&i&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function hu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==t?null:t.total_fee)/1e3,(null==t?null:t.total_fee)<1e3?"1.0-4":"1.0-0"))}}function Eu(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No outgoing routing peer available."),A.k0s())}function Cu(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting outgoing routing peers..."),A.k0s())}function wu(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function du(i,D){if(1&i&&(A.j41(0,"td",41),A.DNE(1,Eu,2,0,"p",42)(2,Cu,2,0,"p",42)(3,wu,2,1,"p",42),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.routingPeersOutgoing&&t.routingPeersOutgoing.data)||(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function Qu(i,D){if(1&i&&A.nrm(0,"tr",43),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Vl,(null==t.routingPeersOutgoing?null:t.routingPeersOutgoing.data)&&(null==t.routingPeersOutgoing||null==t.routingPeersOutgoing.data?null:t.routingPeersOutgoing.data.length)>0))}}function mu(i,D){1&i&&A.nrm(0,"tr",44)}function pu(i,D){1&i&&A.nrm(0,"tr",45)}function Mu(i,D){if(1&i&&(A.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),A.EFF(4,"Incoming"),A.k0s(),A.nrm(5,"div",12),A.k0s(),A.j41(6,"div",13),A.DNE(7,HB,1,0,"mat-progress-bar",14),A.j41(8,"table",15,0),A.qex(10,16),A.DNE(11,kB,2,0,"th",17)(12,jB,4,4,"td",18),A.bVm(),A.qex(13,19),A.DNE(14,OB,2,0,"th",17)(15,JB,4,4,"td",18),A.bVm(),A.qex(16,20),A.DNE(17,VB,2,0,"th",21)(18,WB,4,3,"td",18),A.bVm(),A.qex(19,22),A.DNE(20,KB,2,0,"th",21)(21,XB,4,4,"td",18),A.bVm(),A.qex(22,23),A.DNE(23,ZB,2,0,"th",21)(24,qB,4,4,"td",18),A.bVm(),A.qex(25,24),A.DNE(26,tu,4,3,"td",25),A.bVm(),A.DNE(27,eu,1,3,"tr",26)(28,nu,1,0,"tr",27)(29,iu,1,0,"tr",28),A.k0s()(),A.nrm(30,"mat-paginator",29,1),A.k0s(),A.j41(32,"div",30)(33,"div",10)(34,"div",11),A.EFF(35,"Outgoing"),A.k0s(),A.nrm(36,"div",12),A.k0s(),A.j41(37,"div",31),A.DNE(38,ru,1,0,"mat-progress-bar",14),A.j41(39,"table",32,2),A.qex(41,16),A.DNE(42,au,2,0,"th",17)(43,su,4,4,"td",18),A.bVm(),A.qex(44,19),A.DNE(45,ou,2,0,"th",17)(46,lu,4,4,"td",18),A.bVm(),A.qex(47,20),A.DNE(48,cu,2,0,"th",21)(49,gu,4,3,"td",18),A.bVm(),A.qex(50,22),A.DNE(51,Bu,2,0,"th",21)(52,uu,4,4,"td",18),A.bVm(),A.qex(53,23),A.DNE(54,fu,2,0,"th",21)(55,hu,4,4,"td",18),A.bVm(),A.qex(56,33),A.DNE(57,du,4,3,"td",25),A.bVm(),A.DNE(58,Qu,1,3,"tr",26)(59,mu,1,0,"tr",27)(60,pu,1,0,"tr",28),A.k0s(),A.nrm(61,"mat-paginator",29,3),A.k0s()()()),2&i){const t=A.XpG();A.R7$(2),A.Y8G("ngClass",A.l_i(22,UB,t.screenSize===t.screenSizeEnum.XS,t.screenSize===t.screenSizeEnum.SM)),A.R7$(5),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.routingPeersIncoming),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(25,LB)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns),A.R7$(),A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS),A.R7$(3),A.Y8G("ngClass",A.eq3(26,PB,t.screenSize!==t.screenSizeEnum.LG)),A.R7$(5),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.routingPeersOutgoing),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(28,zB)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns),A.R7$(),A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let Iu=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.camelCaseWithReplace=j,this.eventsData=[],this.selFilter="",this.nodePageDefs=r.Jd,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:r.md,sortBy:"total_fee",sortOrder:r.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.routingPeersIncoming=new F.I6([]),this.routingPeersOutgoing=new F.I6([]),this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(t){t.eventsData&&(this.apiCallStatus={status:r.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=t.eventsData.currentValue,this.successfulEvents=this.eventsData,t.eventsData.firstChange||this.loadRoutingPeersTable(this.successfulEvents))}ngOnInit(){this.store.pipe((0,Fe.s)(1)).subscribe(t=>{t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.wn.UN_INITIATED&&!t.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,_.uK)({payload:{status:r.xk.SETTLED}}))}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.Ie).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.successfulEvents=t.forwardingHistory.listForwards||[],this.successfulEvents.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.successfulEvents),this.logger.info(t))})}ngAfterViewInit(){this.successfulEvents.length>0&&this.loadRoutingPeersTable(this.successfulEvents)}applyIncomingFilter(){this.routingPeersIncoming.filter=this.filterIn.toLowerCase()}applyOutgoingFilter(){this.routingPeersOutgoing.filter=this.filterOut.toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):"all"}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(t,l)=>JSON.stringify(t).toLowerCase().includes(l),this.routingPeersOutgoing.filterPredicate=(t,l)=>JSON.stringify(t).toLowerCase().includes(l)}loadRoutingPeersTable(t){if(t.length>0){const l=this.groupRoutingPeers(t);this.routingPeersIncoming=new F.I6(l[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new F.I6(l[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new F.I6([]),this.routingPeersOutgoing=new F.I6([]);this.setFilterPredicate(),this.applyIncomingFilter(),this.applyOutgoingFilter(),this.logger.info(this.routingPeersIncoming),this.logger.info(this.routingPeersOutgoing)}groupRoutingPeers(t){const l=[],c=[];return t.forEach(j=>{const PA=l?.find(an=>an.channel_id===j.in_channel),WA=c?.find(an=>an.channel_id===j.out_channel);PA?(PA.events++,PA.total_amount=+PA.total_amount+ +(j.in_msat||0),PA.total_fee=+(j.in_msat||0)-+(j.out_msat||0)+ +PA.total_fee):l.push({channel_id:j.in_channel,alias:j.in_channel_alias,events:1,total_amount:+(j.in_msat||0),total_fee:+(j.in_msat||0)-+(j.out_msat||0)}),WA?(WA.events++,WA.total_amount=+WA.total_amount+ +(j.out_msat||0),WA.total_fee=+(j.in_msat||0)-+(j.out_msat||0)+ +WA.total_fee):c.push({channel_id:j.out_channel,alias:j.out_channel_alias,events:1,total_amount:+(j.out_msat||0),total_fee:+(j.in_msat||0)-+(j.out_msat||0)})}),[this.commonService.sortDescByKey(l,"total_fee"),this.commonService.sortDescByKey(c,"total_fee")]}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-routing-peers"]],viewQuery:function(l,c){if(1&l&&(A.GBs(NB,5,z.B4),A.GBs(bB,5,z.B4),A.GBs(RB,5),A.GBs(TB,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sortIn=j.first),A.mGM(j=A.lsd())&&(c.sortOut=j.first),A.mGM(j=A.lsd())&&(c.paginatorIn=j.first),A.mGM(j=A.lsd())&&(c.paginatorOut=j.first)}},inputs:{eventsData:"eventsData",selFilter:"selFilter"},features:[A.Jv_([{provide:S.xX,useValue:(0,r.on)("Peers")}]),A.OA$],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","channel_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_amount"],["matColumnDef","total_fee"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxFlex","49","fxLayoutAlign","end stretch"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","no_outgoing_event"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(l,c){1&l&&(A.j41(0,"div",4),A.DNE(1,GB,2,1,"div",5)(2,Mu,63,29,"div",6),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",""!==c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage))},dependencies:[st.YU,st.bT,st.B3,n.DJ,n.sA,n.UI,I.PW,I.eI,B.HM,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,S.iy,cA.Ld,st.QX]})}return i})();const Du=()=>["all"],vu=i=>({"error-border":i}),Fu=()=>["no_channel"],Wl=i=>({width:i}),yu=i=>({"display-none":i});function xu(i,D){if(1&i&&(A.j41(0,"mat-option",33),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function Yu(i,D){1&i&&A.nrm(0,"mat-progress-bar",34)}function Su(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Amount (Sats)"),A.k0s())}function Nu(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,(null==t?null:t.amount_msat)/1e3,"1.0-2")," ")}}function bu(i,D){if(1&i&&(A.qex(0),A.DNE(1,Nu,3,4,"span",39),A.bVm()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Ru(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,bu,2,1,"ng-container",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" Active HTLCs: ",null==t||null==t.htlcs?null:t.htlcs.length," "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Tu(i,D){1&i&&(A.j41(0,"th",35),A.EFF(1,"Alias/Direction"),A.k0s())}function Uu(i,D){if(1&i&&(A.j41(0,"span",37),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==t?null:t.direction)," ")}}function Lu(i,D){if(1&i&&(A.qex(0),A.DNE(1,Uu,3,3,"span",41),A.bVm()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Pu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,Lu,2,1,"ng-container",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(null==t?null:t.alias),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function zu(i,D){1&i&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"HTLC ID"),A.k0s()())}function Gu(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==t?null:t.id)," ")}}function Hu(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Gu,3,3,"span",39),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function ku(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Hu,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(null==t?null:t.id),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function ju(i,D){1&i&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"Expiry"),A.k0s()())}function Ou(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==t?null:t.expiry,"1.0-0")," ")}}function Ju(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Ou,3,4,"span",39),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Vu(i,D){if(1&i&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Ju,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function Wu(i,D){1&i&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"State"),A.k0s()())}function Ku(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"camelcaseWithReplace"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==t?null:t.state,"_")," ")}}function Xu(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,Ku,3,4,"span",39),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Zu(i,D){if(1&i&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Xu,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function qu(i,D){1&i&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Local Trimmed"),A.k0s()())}function _u(i,D){if(1&i&&(A.j41(0,"span",40),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",null!=t&&t.local_trimmed?"Yes":"No"," ")}}function $u(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,_u,2,1,"span",39),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function Af(i,D){if(1&i&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,$u,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function tf(i,D){1&i&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Payment Hash"),A.k0s()())}function ef(i,D){if(1&i&&(A.j41(0,"span",48)(1,"span",49),A.EFF(2),A.k0s()()),2&i){const t=D.$implicit,l=A.XpG(3);A.Y8G("ngStyle",A.eq3(2,Wl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.payment_hash)}}function nf(i,D){if(1&i&&(A.j41(0,"span"),A.DNE(1,ef,3,4,"span",47),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function rf(i,D){if(1&i&&(A.j41(0,"td",44)(1,"span",45)(2,"span",46),A.EFF(3),A.k0s()(),A.DNE(4,nf,2,1,"span",38),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,Wl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function af(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",50)(1,"div",51)(2,"mat-select",52),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",53),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function sf(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",58)(1,"button",59),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2).$implicit,PA=A.XpG();return A.Njj(PA.onHTLCClick(c,j))}),A.EFF(2),A.k0s()()}if(2&i){const t=D.index;A.R7$(2),A.SpI("View ",t+1,"")}}function of(i,D){if(1&i&&(A.j41(0,"div"),A.DNE(1,sf,3,1,"div",57),A.k0s()),2&i){const t=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==t?null:t.htlcs)}}function lf(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",54)(1,"span",55)(2,"button",56),A.bIt("click",function(){const c=A.eBV(t).$implicit;return A.Njj(c.is_expanded=!c.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,of,2,1,"div",38),A.k0s()}if(2&i){const t=D.$implicit;A.R7$(3),A.JRh(t.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",t.is_expanded)}}function cf(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No active htlc available."),A.k0s())}function gf(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting active htlcs..."),A.k0s())}function Bf(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function uf(i,D){if(1&i&&(A.j41(0,"td",60),A.DNE(1,cf,2,0,"p",38)(2,gf,2,0,"p",38)(3,Bf,2,1,"p",38),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.channels&&t.channels.data)||(null==t.channels||null==t.channels.data?null:t.channels.data.length)<1)&&t.apiCallStatus.status===t.apiCallStatusEnum.ERROR)}}function ff(i,D){if(1&i&&A.nrm(0,"tr",61),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,yu,(null==t.channels?null:t.channels.data)&&(null==t.channels||null==t.channels.data?null:t.channels.data.length)>0))}}function hf(i,D){1&i&&A.nrm(0,"tr",62)}function Ef(i,D){1&i&&A.nrm(0,"tr",63)}let Cf=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.camelCaseWithReplace=j,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:r.md,sortBy:"expiry",sortOrder:r.oi.DESCENDING},this.channels=new F.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.BM).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"");const l=[...t.activeChannels,...t.pendingChannels,...t.inactiveChannels];this.channelsJSONArr=l?.filter(c=>c.htlcs&&c.htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(t,l){const c=[[{key:"alias",value:l.alias,title:"Alias",width:100,type:r.UN.STRING}],[{key:"amount_msat",value:(t.amount_msat||0)/1e3,title:"Amount (Sats)",width:50,type:r.UN.NUMBER},{key:"direction",value:this.commonService.titleCase(t.direction||""),title:"Direction",width:50,type:r.UN.STRING}],[{key:"expiry",value:t.expiry,title:"Expiry",width:50,type:r.UN.NUMBER},{key:"state",value:this.camelCaseWithReplace.transform(t.state||"","_"),title:"State",width:50,type:r.UN.STRING}],[{key:"id",value:t.id,title:"HTLC ID",width:50,type:r.UN.STRING},{key:"local_trimmed",value:t.local_trimmed,title:"Local Trimmed",width:50,type:r.UN.BOOLEAN}],[{key:"payment_hash",value:t.payment_hash,title:"Payment Hash",width:100,type:r.UN.STRING}]];this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"HTLC Information",message:c}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.channels.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.alias?t.alias.toLowerCase():"")+t.htlcs?.map(j=>JSON.stringify(j).toLowerCase()+(j.local_trimmed?" yes ":" no "));break;case"direction":c=t.htlcs?.map(j=>j.direction+" ").toString()||"";break;case"id":c=t.htlcs?.map(j=>j.id+" ").toString()||"";break;case"expiry":c=t.htlcs?.map(j=>j.expiry+" ").toString()||"";break;case"state":c=t.htlcs?.map(j=>this.camelCaseWithReplace.transform(j.state||"","_").toLowerCase()+" ").toString()||"";break;case"payment_hash":c=t.htlcs?.map(j=>j.payment_hash+" ").toString()||"";break;case"local_trimmed":c=t.htlcs?.map(j=>j.local_trimmed?" yes ":" no ").toString()||"";break;case"amount_msat":c=t.htlcs?.map(j=>(j.amount_msat||0)/1e3)?.toString()||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadHTLCsTable(t){this.channels=new F.I6(t?[...t]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(l,c)=>{switch(c){case"amount_msat":return this.commonService.sortByKey(l.htlcs,c,"number",this.sort?.direction),l.htlcs&&l.htlcs.length?l.htlcs.length:null;case"id":case"payment_hash":case"state":return this.commonService.sortByKey(l.htlcs,c,"string",this.sort?.direction),l;case"direction":return this.commonService.sortByKey(l.htlcs,c,"string",this.sort?.direction),l.alias?l.alias:l.id?l.id:null;case"expiry":return this.commonService.sortByKey(l.htlcs,c,"number",this.sort?.direction),l;case"local_trimmed":return this.commonService.sortByKey(l.htlcs,c,"boolean",this.sort?.direction),l;default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.flattenHTLCs(),"ActiveHTLCs")}flattenHTLCs(){return JSON.parse(JSON.stringify(this.channels.data))?.reduce((c,j)=>c.concat(j.htlcs?j.htlcs:j),[])}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-channel-active-htlcs-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("HTLCs")}])],decls:48,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","amount_msat"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","direction"],["matColumnDef","id"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","expiry"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pl-3 htlc-row-span",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","local_trimmed"],["matColumnDef","payment_hash"],["matColumnDef","actions"],["mat-header-cell","","class","px-2",4,"matHeaderCellDef"],["mat-cell","","class","px-2","fxLayout","column","fxLayoutAlign","center end",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayoutAlign","start center",1,"htlc-row-span"],[4,"ngIf"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"pl-3","htlc-row-span"],["mat-cell","",1,"pl-3"],["fxLayout","row",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"ellipsis-child"],["fxLayoutAlign","start center","class","ellipsis-parent htlc-row-span",3,"ngStyle",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","",1,"px-2"],["fxLayoutAlign","end center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayout","column","fxLayoutAlign","center end",1,"px-2"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,xu,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(14,"div",9),A.DNE(15,Yu,1,0,"mat-progress-bar",10),A.j41(16,"table",11,0),A.qex(18,12),A.DNE(19,Su,2,0,"th",13)(20,Ru,4,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,Tu,2,0,"th",13)(23,Pu,4,2,"td",14),A.bVm(),A.qex(24,16),A.DNE(25,zu,3,0,"th",17)(26,ku,4,2,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,ju,3,0,"th",17)(29,Vu,4,2,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,Wu,3,0,"th",20)(32,Zu,4,2,"td",21),A.bVm(),A.qex(33,22),A.DNE(34,qu,3,0,"th",20)(35,Af,4,2,"td",21),A.bVm(),A.qex(36,23),A.DNE(37,tf,3,0,"th",20)(38,rf,5,5,"td",21),A.bVm(),A.qex(39,24),A.DNE(40,af,6,0,"th",25)(41,lf,5,2,"td",26),A.bVm(),A.qex(42,27),A.DNE(43,uf,4,3,"td",28),A.bVm(),A.DNE(44,ff,1,3,"tr",29)(45,hf,1,0,"tr",30)(46,Ef,1,0,"tr",31),A.k0s()(),A.nrm(47,"mat-paginator",32),A.k0s()}2&l&&(A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,Du).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",c.apiCallStatus.status===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.channels)("ngClass",A.eq3(15,vu,""!==c.errorMessage)),A.R7$(28),A.Y8G("matFooterRowDef",A.lJ4(17,Fu)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,S.iy,cA.ZF,cA.Ld,st.QX,st.PV,yA.VD],styles:[".mat-column-amount_msat[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem;padding-right:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mat-column-actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}"]})}return i})();function wf(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",8),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let df=(()=>{class i{constructor(t){this.router=t,this.faChartBar=u.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-reports"]],decls:12,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(l,c){if(1&l&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Reports"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,wf,2,3,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),A.k0s()()()),2&l){const j=A.sdS(10);A.R7$(),A.Y8G("icon",c.faChartBar),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,le.n3,le.Wk]})}return i})();var Kl=Pt(1001),Xl=Pt(6064),Zl=Pt(4655);function Qf(i,D){1&i&&(A.j41(0,"div",15),A.nrm(1,"mat-progress-bar",16),A.j41(2,"p"),A.EFF(3,"Getting Forwarding History..."),A.k0s()())}function mf(i,D){if(1&i&&(A.j41(0,"div",17),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function pf(i,D){if(1&i&&(A.j41(0,"div",18),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=A.XpG();A.Y8G("@fadeIn",t.totalFeeMsat),A.R7$(),A.Lme("",A.i5U(2,3,t.totalFeeMsat/1e3||0,"1.0-2")," Sats/",A.bMT(3,6,t.filteredEventsBySelectedPeriod.length||0)," Events")}}function Mf(i,D){1&i&&(A.j41(0,"div",15),A.EFF(1,"No routing report for the selected period"),A.k0s())}function If(i,D){if(1&i&&(A.j41(0,"span")(1,"span",20),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.j41(4,"span",20),A.EFF(5),A.nI1(6,"number"),A.k0s()()),2&i){const t=D.model,l=A.XpG(2);A.R7$(2),A.SpI("Events: ",A.bMT(3,2,(l.selReportBy===l.reportBy.EVENTS?t.value:t.extra.totalEvents)||0),""),A.R7$(3),A.SpI("Fee: ",A.i5U(6,4,(l.selReportBy===l.reportBy.EVENTS?t.extra.totalFees:t.value)||0,"1.0-2"),"")}}function Df(i,D){if(1&i){const t=A.RV6();A.j41(0,"ngx-charts-bar-vertical",19),A.bIt("select",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onChartBarSelected(c))})("mouseup",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onChartMouseUp(c))}),A.DNE(1,If,7,7,"ng-template",null,0,A.C5r),A.k0s()}if(2&i){const t=A.XpG();A.Y8G("view",t.view)("results",t.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function vf(i,D){if(1&i&&A.nrm(0,"rtl-cln-forwarding-history",21),2&i){const t=A.XpG();A.Y8G("pageId","reports")("tableId","routing")("eventsData",t.filteredEventsBySelectedPeriod)("selFilter",t.eventFilterValue)}}let Ff=(()=>{class i{constructor(t,l,c,j){this.logger=t,this.commonService=l,this.store=c,this.dataService=j,this.reportPeriod=r.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=r.aR,this.selReportBy=r.aR.FEES,this.totalFeeMsat=null,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===r.f7.XS||this.screenSize===r.f7.SM),this.store.pipe((0,Fe.s)(1)).subscribe(t=>{t.cln.apisCallStatus.FetchForwardingHistoryS.status===r.wn.UN_INITIATED&&!t.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,_.uK)({payload:{status:r.xk.SETTLED}}))}),this.store.select(E.Ie).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{t.forwardingHistory.status===r.xk.SETTLED&&(this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR?this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"":this.apiCallStatus.status===r.wn.COMPLETED&&(this.events=t.forwardingHistory.listForwards||[],this.filterForwardingEvents(this.startDate,this.endDate)),this.logger.info(t))}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{switch(this.screenSize){case r.f7.MD:this.screenPaddingX=t.width/10;break;case r.f7.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(t,l){const c=Math.round(t.getTime()/1e3),j=Math.round(l.getTime()/1e3);this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeMsat=null,this.events&&this.events.length>0&&(this.events.forEach(PA=>{PA.received_time&&PA.received_time>=c&&PA.received_time0&&"ngx-charts"===t.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(t){this.eventFilterValue=this.reportPeriod===r.rs[1]?t.name+"/"+this.startDate.getFullYear():t.name.toString().padStart(2,"0")+"/"+r.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(t){const l=Math.round(t.getTime()/1e3),c=[];if(this.totalFeeMsat=0,this.reportPeriod===r.rs[1]){for(let j=0;j<12;j++)c.push({name:r.KR[j].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(j=>{const PA=j.received_time?new Date(1e3*+j.received_time).getMonth():12;return c[PA].extra.totalEvents=c[PA].extra.totalEvents+1,c[PA].value=c[PA].value+ +(j.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(j.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let j=0;j{const PA=j.received_time?Math.floor((+j.received_time-l)/this.secondsInADay):0;return c[PA].extra.totalEvents=c[PA].extra.totalEvents+1,c[PA].value=c[PA].value+ +(j.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(j.fee_msat||0),this.filteredEventsBySelectedPeriod})}return c}prepareEventsReport(t){const l=Math.round(t.getTime()/1e3),c=[];if(this.totalFeeMsat=0,this.reportPeriod===r.rs[1]){for(let j=0;j<12;j++)c.push({name:r.KR[j].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(j=>{const PA=j.received_time?new Date(1e3*+j.received_time).getMonth():12;return c[PA].value=c[PA].value+1,c[PA].extra.totalFees=c[PA].extra.totalFees+ +(j.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(j.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let j=0;j{const PA=j.received_time?Math.floor((+j.received_time-l)/this.secondsInADay):0;return c[PA].value=c[PA].value+1,c[PA].extra.totalFees=c[PA].extra.totalFees+ +(j.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(j.fee_msat||0),this.filteredEventsBySelectedPeriod})}return c}onSelectionChange(t){const l=t.selDate.getMonth(),c=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===r.rs[1]?(this.startDate=new Date(c,0,1,0,0,0),this.endDate=new Date(c,11,31,23,59,59)):(this.startDate=new Date(c,l,1,0,0,0),this.endDate=new Date(c,l,this.getMonthDays(l,c),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(t,l){return 1===t&&l%4==0?r.KR[t].days+1:r.KR[t].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(Qe.u))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-routing-report"]],hostBindings:function(l,c){1&l&&A.bIt("mouseup",function(PA){return c.onChartMouseUp(PA)})},decls:19,vars:9,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start center",1,"my-1",3,"ngModelChange","change","ngModel"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1 error-border",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],[3,"pageId","tableId","eventsData","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["mode","indeterminate"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1","error-border"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],[1,"one-color",3,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],[3,"pageId","tableId","eventsData","selFilter"]],template:function(l,c){1&l&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(PA){return c.onSelectionChange(PA)}),A.k0s(),A.j41(2,"div",3)(3,"mat-radio-group",4),A.mxI("ngModelChange",function(PA){return A.DH7(c.selReportBy,PA)||(c.selReportBy=PA),PA}),A.bIt("change",function(){return c.onSelReportByChange()}),A.j41(4,"span",5),A.EFF(5,"Report By: "),A.k0s(),A.j41(6,"mat-radio-button",6),A.EFF(7,"Fees"),A.k0s(),A.j41(8,"mat-radio-button",7),A.EFF(9,"Events"),A.k0s()()(),A.j41(10,"div",8),A.DNE(11,Qf,4,0,"div",9)(12,mf,2,1,"div",10)(13,pf,4,8,"div",11)(14,Mf,2,0,"div",9),A.j41(15,"div",12),A.DNE(16,Df,3,11,"ngx-charts-bar-vertical",13),A.k0s(),A.j41(17,"div",12),A.DNE(18,vf,1,4,"rtl-cln-forwarding-history",14),A.k0s()()()),2&l&&(A.R7$(3),A.R50("ngModel",c.selReportBy),A.R7$(3),A.FS9("value",c.reportBy.FEES),A.R7$(2),A.FS9("value",c.reportBy.EVENTS),A.R7$(3),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.ERROR),A.R7$(),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.COMPLETED&&c.routingReportData.length>0&&c.filteredEventsBySelectedPeriod.length>0),A.R7$(),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.COMPLETED&&(c.routingReportData.length<=0||c.filteredEventsBySelectedPeriod.length<=0)),A.R7$(2),A.Y8G("ngIf",c.routingReportData.length>0&&c.filteredEventsBySelectedPeriod.length>0),A.R7$(2),A.Y8G("ngIf",c.filteredEventsBySelectedPeriod&&c.filteredEventsBySelectedPeriod.length>0))},dependencies:[st.bT,iA.BC,iA.vS,n.DJ,n.sA,n.UI,B.HM,wn.VT,wn._g,Xl.L8,Zl.m,Ol,st.QX],data:{animation:[Kl.q]}})}return i})();var yf=Pt(5085);function xf(i,D){if(1&i&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Lme(" Paid ",A.i5U(2,2,t.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.bMT(3,5,t.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function Yf(i,D){if(1&i&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Lme(" Received ",A.i5U(2,2,t.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.bMT(3,5,t.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function Sf(i,D){if(1&i&&(A.j41(0,"div",9),A.DNE(1,xf,4,7,"div",10)(2,Yf,4,7,"div",10),A.k0s()),2&i){const t=A.XpG();A.Y8G("@fadeIn",t.transactionsReportSummary),A.R7$(),A.Y8G("ngIf",t.transactionsReportSummary.paymentsSelectedPeriod),A.R7$(),A.Y8G("ngIf",t.transactionsReportSummary.invoicesSelectedPeriod)}}function Nf(i,D){1&i&&(A.j41(0,"div",12),A.EFF(1,"No transactions report for the selected period"),A.k0s())}function bf(i,D){if(1&i&&(A.j41(0,"span",14),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=D.model;A.R7$(),A.LHq("",t.name,": ",A.i5U(2,4,t.value||0,"1.0-2"),"/# ","Paid"===t.name?"Payments":"Invoices",": ",A.bMT(3,7,(null==t.extra?null:t.extra.total)||0),"")}}function Rf(i,D){if(1&i){const t=A.RV6();A.j41(0,"ngx-charts-bar-vertical-2d",13),A.bIt("select",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onChartBarSelected(c))})("mouseup",function(c){A.eBV(t);const j=A.XpG();return A.Njj(j.onChartMouseUp(c))}),A.DNE(1,bf,4,9,"ng-template",null,0,A.C5r),A.k0s()}if(2&i){const t=A.XpG();A.Y8G("view",t.view)("results",t.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",t.showYAxisLabel)("xAxisLabel",t.xAxisLabel)("yAxisLabel",t.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",t.reportPeriod===t.scrollRanges[0]?2:4)}}function Tf(i,D){if(1&i&&A.nrm(0,"rtl-transactions-report-table",15),2&i){const t=A.XpG();A.Y8G("displayedColumns",t.displayedColumns)("tableSetting",t.tableSetting)("dataList",t.transactionsNonZeroReportData)("dataRange",t.reportPeriod)("selFilter",t.transactionFilterValue)}}let Uf=(()=>{class i{constructor(t,l,c){this.logger=t,this.commonService=l,this.store=c,this.scrollRanges=r.rs,this.reportPeriod=r.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:r.md,sortBy:"date",sortOrder:r.oi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[],this.transactionsNonZeroReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=r.f7,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===r.f7.XS||this.screenSize===r.f7.SM),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.KT).pipe((0,g.Q)(this.unSubs[1]),(0,f.E)(this.store.select(E.Pj))).subscribe(([t,l])=>{this.payments=t.payments,this.invoices=l.listInvoices.invoices||[],this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()}),this.commonService.containerSizeUpdated.pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{switch(this.screenSize){case r.f7.MD:this.screenPaddingX=t.width/10;break;case r.f7.LG:this.screenPaddingX=t.width/16;break;default:this.screenPaddingX=t.width/20}this.view=[t.width-this.screenPaddingX,t.height/2.2],this.logger.info("Container Size: "+JSON.stringify(t)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(t){"svg"===t.srcElement.tagName&&t.srcElement.classList.length>0&&"ngx-charts"===t.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(t){this.transactionFilterValue=this.reportPeriod===r.rs[1]?t.series+"/"+this.startDate.getFullYear():t.series.toString().padStart(2,"0")+"/"+r.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(t,l){const c=Math.round(t.getTime()/1e3),j=Math.round(l.getTime()/1e3),PA=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const WA=this.payments?.filter(fe=>"complete"===fe.status&&fe.created_at&&fe.created_at>=c&&fe.created_at"paid"===fe.status&&fe.paid_at&&fe.paid_at>=c&&fe.paid_at{const cn=new Date(1e3*(fe.created_at||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(fe.amount_sent_msat||0),PA[cn].series[0].value=PA[cn].series[0].value+(fe.amount_sent_msat||0)/1e3,PA[cn].series[0].extra.total=PA[cn].series[0].extra.total+1,this.transactionsReportSummary}),an?.map(fe=>{const cn=new Date(1e3*+(fe.paid_at||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(fe.amount_received_msat||0),PA[cn].series[1].value=PA[cn].series[1].value+(fe.amount_received_msat||0)/1e3,PA[cn].series[1].extra.total=PA[cn].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let fe=0;fe{const cn=Math.floor((+(fe.created_at||0)-c)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(fe.amount_sent_msat||0),PA[cn].series[0].value=PA[cn].series[0].value+(fe.amount_sent_msat||0)/1e3,PA[cn].series[0].extra.total=PA[cn].series[0].extra.total+1,this.transactionsReportSummary}),an?.map(fe=>{const cn=Math.floor((+(fe.paid_at||0)-c)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(fe.amount_received_msat||0),PA[cn].series[1].value=PA[cn].series[1].value+(fe.amount_received_msat||0)/1e3,PA[cn].series[1].extra.total=PA[cn].series[1].extra.total+1,this.transactionsReportSummary})}return PA}prepareTableData(){return this.transactionsReportData?.reduce((t,l)=>l.series[0].extra.total>0||l.series[1].extra.total>0?t.concat({date:l.date,amount_paid:l.series[0].value,num_payments:l.series[0].extra.total,amount_received:l.series[1].value,num_invoices:l.series[1].extra.total}):t,[])}onSelectionChange(t){const l=t.selDate.getMonth(),c=t.selDate.getFullYear();this.reportPeriod=t.selScrollRange,this.reportPeriod===r.rs[1]?(this.startDate=new Date(c,0,1,0,0,0),this.endDate=new Date(c,11,31,23,59,59)):(this.startDate=new Date(c,l,1,0,0,0),this.endDate=new Date(c,l,this.getMonthDays(l,c),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(t,l){return 1===t&&l%4==0?r.KR[t].days+1:r.KR[t].days}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-transactions-report"]],hostBindings:function(l,c){1&l&&A.bIt("mouseup",function(PA){return c.onChartMouseUp(PA)})},decls:9,vars:4,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"two-color",3,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(l,c){1&l&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(PA){return c.onSelectionChange(PA)}),A.k0s(),A.j41(2,"div",3),A.DNE(3,Sf,3,3,"div",4)(4,Nf,2,0,"div",5),A.j41(5,"div",6),A.DNE(6,Rf,3,13,"ngx-charts-bar-vertical-2d",7),A.k0s(),A.j41(7,"div",6),A.DNE(8,Tf,1,5,"rtl-transactions-report-table",8),A.k0s()()()),2&l&&(A.R7$(3),A.Y8G("ngIf",c.transactionsNonZeroReportData.length>0),A.R7$(),A.Y8G("ngIf",c.transactionsNonZeroReportData.length<=0),A.R7$(2),A.Y8G("ngIf",c.transactionsNonZeroReportData.length>0),A.R7$(2),A.Y8G("ngIf",c.transactionsNonZeroReportData.length>0))},dependencies:[st.bT,n.DJ,n.sA,n.UI,Xl.Dl,Zl.m,yf.T,st.QX],data:{animation:[Kl.q]}})}return i})();var Pe=Pt(7186),Lf=Pt(13);function Pf(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.activeLink=c.link)}),A.EFF(1),A.k0s()}if(2&i){const t=D.$implicit,l=A.XpG();A.FS9("routerLink",t.link),A.Y8G("active",l.activeLink===t.link),A.R7$(),A.JRh(t.name)}}let zf=(()=>{class i{constructor(t){this.router=t,this.faSearch=u.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new o.B,new o.B,new o.B,new o.B]}ngOnInit(){const t=this.links.find(l=>this.router.url.includes(l.link));this.activeLink=t?t.link:this.links[0].link,this.router.events.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(l=>l instanceof le.gx)).subscribe({next:l=>{const c=this.links.find(j=>l.urlAfterRedirects.includes(j.link));this.activeLink=c?c.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(le.Ix))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-graph"]],decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(l,c){if(1&l&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Graph Lookups"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,Pf,2,3,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0),A.j41(11,"div",8),A.nrm(12,"router-outlet"),A.k0s()()()()),2&l){const j=A.sdS(10);A.R7$(),A.Y8G("icon",c.faSearch),A.R7$(6),A.Y8G("tabPanel",j),A.R7$(),A.Y8G("ngForOf",c.links)}},dependencies:[st.Sq,Q.aY,n.DJ,n.sA,n.UI,p.RN,p.m2,Y.Bu,Y.hQ,Y.Ql,le.n3,le.Wk]})}return i})();var Gf=Pt(2643),Hf=Pt(7235);function kf(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.offerError)}}function jf(i,D){if(1&i&&(A.j41(0,"div",21),A.nrm(1,"fa-icon",22),A.DNE(2,kf,2,1,"span",23),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.offerError)}}let Of=(()=>{class i{constructor(t,l,c,j,PA,WA){this.dialogRef=t,this.data=l,this.store=c,this.decimalPipe=j,this.commonService=PA,this.actions=WA,this.faExclamationTriangle=u.zpE,this.description="",this.issuer="",this.offerValueHint="",this.information={},this.pageSize=r.md,this.offerError="",this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t,this.issuer=this.information.alias}),this.actions.pipe((0,g.Q)(this.unSubs[2]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(t=>{t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewOffer"===t.payload.action&&(t.payload.status===r.wn.ERROR&&(this.offerError=t.payload.message),t.payload.status===r.wn.COMPLETED&&this.dialogRef.close())})}onAddOffer(){this.offerError="";const t=this.offerValue?(1e3*this.offerValue).toString():"any";this.store.dispatch((0,_.y0)({payload:{amount:t,description:this.description,issuer:this.issuer}}))}resetData(){this.description="",this.issuer=this.information.alias,this.offerValue=null,this.offerValueHint="",this.offerError=""}onOfferValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.offerValue&&this.offerValue>99&&(this.offerValueHint="",this.commonService.convertCurrency(this.offerValue,r.BQ.SATS,r.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,g.Q)(this.unSubs[3])).subscribe({next:t=>{this.offerValueHint="= "+this.decimalPipe.transform(t.OTHER,r.k.OTHER)+" "+t.unit},error:t=>{this.offerValueHint="Conversion Error: "+t}}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(e.il),A.rXU(st.QX),A.rXU(h.h),A.rXU(fA.En))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-create-offer"]],decls:34,vars:8,consts:[["addOfferForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","6","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","1","name","description",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","2","name","offerValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","58","fxLayoutAlign","start end"],["matInput","","tabindex","3","name","issuer",3,"ngModelChange","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","4","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","5",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Create Offer"),A.k0s()(),A.j41(6,"button",6),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),A.EFF(13,"Description"),A.k0s(),A.j41(14,"input",10),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.description,WA)||(c.description=WA),A.Njj(WA)}),A.k0s()(),A.j41(15,"div",11)(16,"mat-form-field",12)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",13),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.offerValue,WA)||(c.offerValue=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onOfferValueChange())}),A.k0s(),A.j41(20,"span",14),A.EFF(21,"Sats "),A.k0s(),A.j41(22,"mat-hint"),A.EFF(23),A.k0s()(),A.j41(24,"mat-form-field",15)(25,"mat-label"),A.EFF(26,"Issuer"),A.k0s(),A.j41(27,"input",16),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.issuer,WA)||(c.issuer=WA),A.Njj(WA)}),A.k0s()()(),A.DNE(28,jf,3,2,"div",17),A.j41(29,"div",18)(30,"button",19),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(31,"Clear Field"),A.k0s(),A.j41(32,"button",20),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onAddOffer())}),A.EFF(33,"Create Offer"),A.k0s()()()()()()}2&l&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",c.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",c.offerValue),A.R7$(4),A.JRh(c.offerValueHint),A.R7$(4),A.R50("ngModel",c.issuer),A.R7$(),A.Y8G("ngIf",""!==c.offerError))},dependencies:[st.bT,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.VZ,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,gA.tx,R.$z,p.m2,p.MM,wA.fg,IA.rl,IA.nJ,IA.MV,IA.yw,J.N,BA.V]})}return i})();var ql=Pt(2142);const Jf=()=>["all"],Vf=i=>({"error-border":i}),Wf=()=>["no_offer"],_l=i=>({"mr-0":i}),$l=i=>({width:i}),Kf=i=>({"display-none":i});function Xf(i,D){if(1&i&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function Zf(i,D){1&i&&A.nrm(0,"mat-progress-bar",35)}function qf(i,D){1&i&&A.nrm(0,"th",36)}function _f(i,D){if(1&i&&A.nrm(0,"span",40),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,_l,t.screenSize===t.screenSizeEnum.XS))}}function $f(i,D){if(1&i&&A.nrm(0,"span",41),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,_l,t.screenSize===t.screenSizeEnum.XS))}}function Ah(i,D){if(1&i&&(A.j41(0,"td",37),A.DNE(1,_f,1,3,"span",38)(2,$f,1,3,"span",39),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Y8G("ngIf",t.active),A.R7$(),A.Y8G("ngIf",!t.active)}}function th(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Offer ID"),A.k0s())}function eh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,$l,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.SpI(" ",t.offer_id," ")}}function nh(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Single Use"),A.k0s())}function ih(i,D){if(1&i&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(t.single_use?"Yes":"No")}}function rh(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Used"),A.k0s())}function ah(i,D){if(1&i&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ",t.used?"Yes":"No"," ")}}function sh(i,D){1&i&&(A.j41(0,"th",42),A.EFF(1,"Invoice"),A.k0s())}function oh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,$l,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.SpI(" ",t.bolt12," ")}}function lh(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",48),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function ch(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onDisableOffer(c))}),A.EFF(1,"Disable Offer"),A.k0s()}}function gh(i,D){if(1&i){const t=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){A.eBV(t);const c=A.XpG().$implicit,j=A.XpG();return A.Njj(j.onPrintOffer(c))}),A.EFF(1,"Export QR code"),A.k0s()}}function Bh(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",49)(1,"div",46)(2,"mat-select",50),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",48),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onOfferClick(c))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,ch,2,0,"mat-option",51)(7,gh,2,0,"mat-option",51),A.k0s()()()}if(2&i){const t=D.$implicit;A.R7$(6),A.Y8G("ngIf",t.active),A.R7$(),A.Y8G("ngIf",t.active)}}function uh(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No offer available."),A.k0s())}function fh(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting offers..."),A.k0s())}function hh(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function Eh(i,D){if(1&i&&(A.j41(0,"td",52),A.DNE(1,uh,2,0,"p",53)(2,fh,2,0,"p",53)(3,hh,2,1,"p",53),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=t.offers&&t.offers.data)||(null==t.offers||null==t.offers.data?null:t.offers.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.offers&&t.offers.data)||(null==t.offers||null==t.offers.data?null:t.offers.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.offers&&t.offers.data)||(null==t.offers||null==t.offers.data?null:t.offers.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function Ch(i,D){if(1&i&&A.nrm(0,"tr",54),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,Kf,(null==t.offers?null:t.offers.data)&&(null==t.offers||null==t.offers.data?null:t.offers.data.length)>0))}}function wh(i,D){1&i&&A.nrm(0,"tr",55)}function dh(i,D){1&i&&A.nrm(0,"tr",56)}let Qh=(()=>{class i{constructor(t,l,c,j,PA,WA,an){this.logger=t,this.store=l,this.commonService=c,this.rtlEffects=j,this.dataService=PA,this.decimalPipe=WA,this.camelCaseWithReplace=an,this.faHistory=u.Int,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offers",recordsPerPage:r.md,sortBy:"offer_id",sortOrder:r.oi.DESCENDING},this.newlyAddedOfferMemo="",this.newlyAddedOfferValue=0,this.description="",this.offerValue=null,this.offerValueHint="",this.displayedColumns=[],this.offerPaymentReq="",this.offerJSONArr=[],this.information={},this.private=!1,this.expiryStep=100,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(d._c).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.selNode=t}),this.store.select(E.mH).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.information=t}),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[2])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("active"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.O5).pipe((0,g.Q)(this.unSubs[3])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offerJSONArr=t.offers||[],this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr)}openCreateOfferModal(){this.store.dispatch((0,AA.xO)({payload:{data:{pageSize:this.pageSize,component:Of}}}))}onOfferClick(t){this.store.dispatch((0,AA.xO)({payload:{data:{offer:{used:t.used,single_use:t.single_use,active:t.active,offer_id:t.offer_id,bolt12:t.bolt12,created:t.created,label:t.label},newlyAdded:!1,component:ql.f}}}))}onDisableOffer(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Disable Offer",titleMessage:"Disabling Offer: "+(t.offer_id||t.bolt12),noBtnText:"Cancel",yesBtnText:"Disable"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[4])).subscribe(l=>{l&&this.store.dispatch((0,_.jQ)({payload:{offer_id:t.offer_id}}))})}onPrintOffer(t){this.dataService.decodePayment(t.bolt12,!1).pipe((0,Fe.s)(1)).subscribe(l=>{l.offer_id&&!l.offer_amount_msat&&(l.offer_amount_msat=0);const c={pageSize:"A5",pageOrientation:"portrait",pageMargins:[10,50,10,50],background:{svg:'\n \n \n \n \n \n ',width:249,height:333,absolutePosition:{x:84,y:160}},header:{text:l.offer_issuer||"",alignment:"center",fontSize:25,color:"#272727",margin:[0,20,0,0]},content:[{svg:'',width:249,height:40,alignment:"center"},{text:l.offer_description?l.offer_description.substring(0,160):"",alignment:"center",fontSize:16,color:"#5C5C5C"},{qr:t.bolt12,eccLevel:"M",fit:"227",alignment:"center",absolutePosition:{x:7,y:205}},{text:l?.offer_amount_msat&&0!==l?.offer_amount_msat?this.decimalPipe.transform((l.offer_amount_msat||0)/1e3)+" SATS":"Open amount",fontSize:20,bold:!1,color:"white",alignment:"center",absolutePosition:{x:0,y:430}},{text:"SCAN TO PAY",fontSize:22,bold:!0,color:"white",alignment:"center",absolutePosition:{x:0,y:455}}],footer:{svg:'\n \n \n \n \n ',alignment:"center"}};Gf.createPdf(c,null,null,Hf.b.vfs).download("Offer-"+(l&&l.offer_description?l.offer_description:t.bolt12))})}applyFilter(){this.offers.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.offers.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.active?" active":" inactive")+(t.used?" yes":" no")+(t.single_use?" single":" multiple")+JSON.stringify(t).toLowerCase(),("active"===l||"inactive"===l||"single"===l||"multiple"===l)&&(l=" "+l);break;case"active":c=t?.active?"active":"inactive";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"active"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadOffersTable(t){this.offers=new F.I6(t?[...t]:[]),this.offers.sort=this.sort,this.offers.sortingDataAccessor=(l,c)=>l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null,this.offers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.offers.data&&this.offers.data.length>0&&this.commonService.downloadFile(this.offers.data,"Offers")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(QA.H),A.rXU(Qe.u),A.rXU(st.QX),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-offers-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Offers")}])],decls:49,vars:19,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","active"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","offer_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","single_use"],["matColumnDef","used"],["matColumnDef","bolt12"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_offer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active"],["mat-cell",""],["class","dot green","matTooltip","Active","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Inactive","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"button",3),A.bIt("click",function(){return A.eBV(j),A.Njj(c.openCreateOfferModal())}),A.EFF(3,"Create Offer"),A.k0s()(),A.j41(4,"div",4)(5,"div",5)(6,"div",6),A.nrm(7,"fa-icon",7),A.j41(8,"span",8),A.EFF(9,"Offers History"),A.k0s()(),A.j41(10,"div",9)(11,"mat-form-field",10)(12,"mat-label"),A.EFF(13,"Filter By"),A.k0s(),A.j41(14,"mat-select",11),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(15,"perfect-scrollbar"),A.DNE(16,Xf,2,2,"mat-option",12),A.k0s()()(),A.j41(17,"mat-form-field",10)(18,"mat-label"),A.EFF(19,"Filter"),A.k0s(),A.j41(20,"input",13),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(21,"div",14),A.DNE(22,Zf,1,0,"mat-progress-bar",15),A.j41(23,"table",16,0),A.qex(25,17),A.DNE(26,qf,1,0,"th",18)(27,Ah,3,2,"td",19),A.bVm(),A.qex(28,20),A.DNE(29,th,2,0,"th",21)(30,eh,4,4,"td",19),A.bVm(),A.qex(31,22),A.DNE(32,nh,2,0,"th",21)(33,ih,2,1,"td",19),A.bVm(),A.qex(34,23),A.DNE(35,rh,2,0,"th",21)(36,ah,2,1,"td",19),A.bVm(),A.qex(37,24),A.DNE(38,sh,2,0,"th",21)(39,oh,4,4,"td",19),A.bVm(),A.qex(40,25),A.DNE(41,lh,6,0,"th",26)(42,Bh,8,2,"td",27),A.bVm(),A.qex(43,28),A.DNE(44,Eh,4,3,"td",29),A.bVm(),A.DNE(45,Ch,1,3,"tr",30)(46,wh,1,0,"tr",31)(47,dh,1,0,"tr",32),A.k0s()(),A.nrm(48,"mat-paginator",33),A.k0s()()}2&l&&(A.R7$(7),A.Y8G("icon",c.faHistory),A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,Jf).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.offers)("ngClass",A.eq3(16,Vf,""!==c.errorMessage)),A.R7$(22),A.Y8G("matFooterRowDef",A.lJ4(18,Wf)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld],styles:[".mat-column-active[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]})}return i})();const mh=()=>["all"],ph=i=>({"error-border":i}),Mh=()=>["no_offer"],zl=i=>({width:i}),Ih=i=>({"display-none":i});function Dh(i,D){if(1&i&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function vh(i,D){1&i&&A.nrm(0,"mat-progress-bar",35)}function Fh(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Updated At"),A.k0s())}function yh(i,D){if(1&i&&(A.j41(0,"td",37),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,t.lastUpdatedAt,"dd/MMM/y HH:mm"))}}function xh(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Title"),A.k0s())}function Yh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,zl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.title)}}function Sh(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Description"),A.k0s())}function Nh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,zl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.description)}}function bh(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Issuer"),A.k0s())}function Rh(i,D){if(1&i&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(t.issuer)}}function Th(i,D){1&i&&(A.j41(0,"th",36),A.EFF(1,"Invoice"),A.k0s())}function Uh(i,D){if(1&i&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,zl,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(t.bolt12)}}function Lh(i,D){1&i&&(A.j41(0,"th",40),A.EFF(1,"Amount (Sats)"),A.k0s())}function Ph(i,D){if(1&i&&(A.j41(0,"td",37)(1,"span",41),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.JRh(0===t.amountMSat?"Open":A.bMT(3,1,t.amountMSat/1e3))}}function zh(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",42)(1,"div",43)(2,"mat-select",44),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",45),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Gh(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",46)(1,"div",43)(2,"mat-select",47),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",45),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onOfferBookmarkClick(c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",45),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onRePayOffer(c))}),A.EFF(7,"Pay Again"),A.k0s(),A.j41(8,"mat-option",45),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onDeleteBookmark(c))}),A.EFF(9,"Delete Bookmark"),A.k0s()()()()}}function Hh(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No offer bookmarked."),A.k0s())}function kh(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting offer bookmarks..."),A.k0s())}function jh(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function Oh(i,D){if(1&i&&(A.j41(0,"td",48),A.DNE(1,Hh,2,0,"p",49)(2,kh,2,0,"p",49)(3,jh,2,1,"p",49),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=t.offersBookmarks&&t.offersBookmarks.data)||(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.offersBookmarks&&t.offersBookmarks.data)||(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.offersBookmarks&&t.offersBookmarks.data)||(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function Jh(i,D){if(1&i&&A.nrm(0,"tr",50),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,Ih,(null==t.offersBookmarks?null:t.offersBookmarks.data)&&(null==t.offersBookmarks||null==t.offersBookmarks.data?null:t.offersBookmarks.data.length)>0))}}function Vh(i,D){1&i&&A.nrm(0,"tr",51)}function Wh(i,D){1&i&&A.nrm(0,"tr",52)}let Kh=(()=>{class i{constructor(t,l,c,j,PA,WA){this.logger=t,this.store=l,this.commonService=c,this.rtlEffects=j,this.datePipe=PA,this.camelCaseWithReplace=WA,this.faHistory=u.Int,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offer_bookmarks",recordsPerPage:r.md,sortBy:"lastUpdatedAt",sortOrder:r.oi.DESCENDING},this.displayedColumns=[],this.offersBookmarks=new F.I6([]),this.offersBookmarksJSONArr=[],this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.selFilter="",this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.ip).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offersBookmarksJSONArr=t.offersBookmarks||[],this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr),this.logger.info(t)})}ngAfterViewInit(){this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr)}onOfferBookmarkClick(t){this.store.dispatch((0,AA.xO)({payload:{data:{offer:{bolt12:t.bolt12},newlyAdded:!1,component:ql.f}}}))}onDeleteBookmark(t){this.store.dispatch((0,AA.I1)({payload:{data:{type:r.A$.CONFIRM,alertTitle:"Delete Bookmark",titleMessage:"Deleting Bookmark: "+(t.title||t.description),noBtnText:"Cancel",yesBtnText:"Delete"}}})),this.rtlEffects.closeConfirm.pipe((0,g.Q)(this.unSubs[2])).subscribe(l=>{l&&this.store.dispatch((0,_.ED)({payload:{bolt12:t.bolt12}}))})}onRePayOffer(t){this.store.dispatch((0,AA.xO)({payload:{data:{paymentType:r.Y0.OFFER,bolt12:t.bolt12,offerTitle:t.title,component:Jt}}}))}applyFilter(){this.offersBookmarks.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.offersBookmarks.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=JSON.stringify(t).toLowerCase();break;case"lastUpdatedAt":c=this.datePipe.transform(new Date(t.lastUpdatedAt||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amountMSat":c=(t.amountMSat&&0!==t.amountMSat?(t.amountMSat/1e3).toString():"Open")||"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadOffersTable(t){this.offersBookmarks=new F.I6(t?[...t]:[]),this.offersBookmarks.sort=this.sort,this.offersBookmarks.sortingDataAccessor=(l,c)=>l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null,this.offersBookmarks.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.offersBookmarks.data&&this.offersBookmarks.data.length>0&&this.commonService.downloadFile(this.offersBookmarks.data,"OfferBookmarks")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(h.h),A.rXU(QA.H),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-offer-bookmarks-table"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Offer Bookmarks")}])],decls:50,vars:19,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","lastUpdatedAt"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","title"],["matColumnDef","description"],["matColumnDef","issuer"],["matColumnDef","bolt12"],["matColumnDef","amountMSat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_offer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",1),A.nrm(1,"div",2),A.j41(2,"div",3)(3,"div",4)(4,"div",5),A.nrm(5,"fa-icon",6),A.j41(6,"span",7),A.EFF(7,"Offer Bookmarks"),A.k0s()(),A.j41(8,"div",8)(9,"mat-form-field",9)(10,"mat-label"),A.EFF(11,"Filter By"),A.k0s(),A.j41(12,"mat-select",10),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(13,"perfect-scrollbar"),A.DNE(14,Dh,2,2,"mat-option",11),A.k0s()()(),A.j41(15,"mat-form-field",9)(16,"mat-label"),A.EFF(17,"Filter"),A.k0s(),A.j41(18,"input",12),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(19,"div",13),A.DNE(20,vh,1,0,"mat-progress-bar",14),A.j41(21,"table",15,0),A.qex(23,16),A.DNE(24,Fh,2,0,"th",17)(25,yh,3,4,"td",18),A.bVm(),A.qex(26,19),A.DNE(27,xh,2,0,"th",17)(28,Yh,4,4,"td",18),A.bVm(),A.qex(29,20),A.DNE(30,Sh,2,0,"th",17)(31,Nh,4,4,"td",18),A.bVm(),A.qex(32,21),A.DNE(33,bh,2,0,"th",17)(34,Rh,2,1,"td",18),A.bVm(),A.qex(35,22),A.DNE(36,Th,2,0,"th",17)(37,Uh,4,4,"td",18),A.bVm(),A.qex(38,23),A.DNE(39,Lh,2,0,"th",24)(40,Ph,4,3,"td",18),A.bVm(),A.qex(41,25),A.DNE(42,zh,6,0,"th",26)(43,Gh,10,0,"td",27),A.bVm(),A.qex(44,28),A.DNE(45,Oh,4,3,"td",29),A.bVm(),A.DNE(46,Jh,1,3,"tr",30)(47,Vh,1,0,"tr",31)(48,Wh,1,0,"tr",32),A.k0s()(),A.nrm(49,"mat-paginator",33),A.k0s()()}2&l&&(A.R7$(5),A.Y8G("icon",c.faHistory),A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,mh).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",(null==c.apiCallStatus?null:c.apiCallStatus.status)===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.offersBookmarks)("ngClass",A.eq3(16,ph,""!==c.errorMessage)),A.R7$(25),A.Y8G("matFooterRowDef",A.lJ4(18,Mh)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,S.iy,cA.ZF,cA.Ld,st.QX,st.vh]})}return i})();const Xh=()=>["all"],Zh=()=>["no_event"],Ac=i=>({width:i}),qh=i=>({"display-none":i});function _h(i,D){if(1&i&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.JRh(t.errorMessage)}}function $h(i,D){if(1&i&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function AE(i,D){if(1&i){const t=A.RV6();A.j41(0,"div",7)(1,"div",8),A.nrm(2,"fa-icon",9),A.j41(3,"span"),A.EFF(4,"Maximum 1,000 local failed transactions only."),A.k0s()(),A.j41(5,"div",10),A.nrm(6,"div",11),A.j41(7,"div",12)(8,"mat-form-field",13)(9,"mat-label"),A.EFF(10,"Filter By"),A.k0s(),A.j41(11,"mat-select",14),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilterBy,c)||(j.selFilterBy=c),A.Njj(c)}),A.bIt("selectionChange",function(){A.eBV(t);const c=A.XpG();return c.selFilter="",A.Njj(c.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,$h,2,2,"mat-option",15),A.k0s()()(),A.j41(14,"mat-form-field",13)(15,"mat-label"),A.EFF(16,"Filter"),A.k0s(),A.j41(17,"input",16),A.mxI("ngModelChange",function(c){A.eBV(t);const j=A.XpG();return A.DH7(j.selFilter,c)||(j.selFilter=c),A.Njj(c)}),A.bIt("input",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())})("keyup",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.applyFilter())}),A.k0s()()()()()}if(2&i){const t=A.XpG();A.R7$(2),A.Y8G("icon",t.faExclamationTriangle),A.R7$(9),A.R50("ngModel",t.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(4,Xh).concat(t.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",t.selFilter)}}function tE(i,D){1&i&&A.nrm(0,"mat-progress-bar",40)}function eE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Received Time"),A.k0s())}function nE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.received_time),"dd/MMM/y HH:mm"))}}function iE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"In Channel ID"),A.k0s())}function rE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.in_channel)}}function aE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"In Channel"),A.k0s())}function sE(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ac,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.in_channel_alias)}}function oE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Out Channel ID"),A.k0s())}function lE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.out_channel)}}function cE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Out Channel"),A.k0s())}function gE(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ac,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.out_channel_alias)}}function BE(i,D){1&i&&(A.j41(0,"th",45),A.EFF(1,"Amount In (Sats)"),A.k0s())}function uE(i,D){if(1&i&&(A.j41(0,"td",42)(1,"span",46),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==t?null:t.in_msat)/1e3,(null==t?null:t.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function fE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Style"),A.k0s())}function hE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.style)}}function EE(i,D){1&i&&(A.j41(0,"th",41),A.EFF(1,"Fail Reason"),A.k0s())}function CE(i,D){if(1&i&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG(2);A.R7$(),A.JRh(l.CLNFailReason[null==t?null:t.failreason])}}function wE(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){A.eBV(t);const c=A.XpG(2);return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function dE(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG(2);return A.Njj(j.onFailedLocalEventClick(c))}),A.EFF(2,"View Info"),A.k0s()()}}function QE(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function mE(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function pE(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(3);A.R7$(),A.JRh(t.errorMessage)}}function ME(i,D){if(1&i&&(A.j41(0,"td",53),A.DNE(1,QE,2,0,"p",54)(2,mE,2,0,"p",54)(3,pE,2,1,"p",54),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=t.failedLocalForwardingEvents&&t.failedLocalForwardingEvents.data)||(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.failedLocalForwardingEvents&&t.failedLocalForwardingEvents.data)||(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.failedLocalForwardingEvents&&t.failedLocalForwardingEvents.data)||(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)<1)&&(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.ERROR)}}function IE(i,D){if(1&i&&A.nrm(0,"tr",55),2&i){const t=A.XpG(2);A.Y8G("ngClass",A.eq3(1,qh,(null==t.failedLocalForwardingEvents?null:t.failedLocalForwardingEvents.data)&&(null==t.failedLocalForwardingEvents||null==t.failedLocalForwardingEvents.data?null:t.failedLocalForwardingEvents.data.length)>0))}}function DE(i,D){1&i&&A.nrm(0,"tr",56)}function vE(i,D){1&i&&A.nrm(0,"tr",57)}function FE(i,D){if(1&i&&(A.j41(0,"div",18),A.DNE(1,tE,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,eE,2,0,"th",22)(6,nE,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,iE,2,0,"th",22)(9,rE,2,1,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,aE,2,0,"th",22)(12,sE,4,4,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,oE,2,0,"th",22)(15,lE,2,1,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,cE,2,0,"th",22)(18,gE,4,4,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,BE,2,0,"th",29)(21,uE,4,4,"td",23),A.bVm(),A.qex(22,30),A.DNE(23,fE,2,0,"th",22)(24,hE,2,1,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,EE,2,0,"th",22)(27,CE,2,1,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,wE,6,0,"th",33)(30,dE,3,0,"td",34),A.bVm(),A.qex(31,35),A.DNE(32,ME,4,3,"td",36),A.bVm(),A.DNE(33,IE,1,3,"tr",37)(34,DE,1,0,"tr",38)(35,vE,1,0,"tr",39),A.k0s()()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(null==t.apiCallStatus?null:t.apiCallStatus.status)===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",t.tableSetting.sortBy)("matSortDirection",t.tableSetting.sortOrder)("dataSource",t.failedLocalForwardingEvents),A.R7$(31),A.Y8G("matFooterRowDef",A.lJ4(7,Zh)),A.R7$(),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}function yE(i,D){if(1&i&&A.nrm(0,"mat-paginator",58),2&i){const t=A.XpG();A.Y8G("pageSize",t.pageSize)("pageSizeOptions",t.pageSizeOptions)("showFirstLastButtons",t.screenSize!==t.screenSizeEnum.XS)}}let xE=(()=>{class i{constructor(t,l,c,j,PA){this.logger=t,this.commonService=l,this.store=c,this.datePipe=j,this.camelCaseWithReplace=PA,this.faExclamationTriangle=u.zpE,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"local_failed",recordsPerPage:r.md,sortBy:"received_time",sortOrder:r.oi.DESCENDING},this.CLNFailReason=r.iI,this.failedLocalEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedLocalForwardingEvents=new F.I6([]),this.selFilter="",this.totalLocalFailedTransactions=0,this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.apiCallStatus=null,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,_.uK)({payload:{status:r.xk.LOCAL_FAILED}})),this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(E.aJ).pipe((0,g.Q)(this.unSubs[1])).subscribe(t=>{this.errorMessage="",this.apiCallStatus=t.apiCallStatus,this.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalLocalFailedTransactions=t.localFailedForwardingHistory.totalForwards||0,this.failedLocalEvents=t.localFailedForwardingHistory.listForwards||[],this.failedLocalEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents),this.logger.info(t)})}ngAfterViewInit(){this.failedLocalEvents.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents)}onFailedLocalEventClick(t){this.store.dispatch((0,AA.xO)({payload:{data:{type:r.A$.INFORMATION,alertTitle:"Local Failed Event Information",message:[[{key:"received_time",value:t.received_time,title:"Received Time",width:50,type:r.UN.DATE_TIME},{key:"in_channel_alias",value:t.in_channel_alias,title:"Inbound Channel",width:50,type:r.UN.STRING}],[{key:"in_msatoshi",value:t.in_msat,title:"Amount In (mSats)",width:100,type:r.UN.NUMBER}],[{key:"failreason",value:t.failreason?this.CLNFailReason[t.failreason]:"",title:"Reason for Failure",width:100,type:r.UN.STRING}]]}}}))}applyFilter(){this.failedLocalForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column,"_"):this.commonService.titleCase(t)}setFilterPredicate(){this.failedLocalForwardingEvents.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.received_time?this.datePipe.transform(new Date(1e3*t.received_time),"dd/MMM/y HH:mm")?.toLowerCase():"")+(t.in_channel_alias?t.in_channel_alias.toLowerCase():"")+(t.failreason&&this.CLNFailReason[t.failreason]?this.CLNFailReason[t.failreason].toLowerCase():"")+(t.in_msat?t.in_msat:"");break;case"received_time":c=this.datePipe.transform(new Date(1e3*(t.received_time||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"in_msatoshi":c=(+(t.in_msat||0)/1e3).toString()||"";break;case"failreason":c=t?.failreason?this.CLNFailReason[t?.failreason]:"";break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return"failreason"===this.selFilterBy?0===c.indexOf(l):c.includes(l)}}loadLocalfailedLocalEventsTable(t){this.failedLocalForwardingEvents=new F.I6([...t]),this.failedLocalForwardingEvents.sort=this.sort,this.failedLocalForwardingEvents.sortingDataAccessor=(l,c)=>{switch(c){case"in_msatoshi":return l.in_msat;case"failreason":return l.failreason?this.CLNFailReason[l.failreason]:"";default:return l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null}},this.failedLocalForwardingEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.failedLocalForwardingEvents)}onDownloadCSV(){this.failedLocalForwardingEvents&&this.failedLocalForwardingEvents.data&&this.failedLocalForwardingEvents.data.length>0&&this.commonService.downloadFile(this.failedLocalForwardingEvents.data,"Local-failed-transactions")}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(h.h),A.rXU(e.il),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-local-failed-history"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Local failed events")}])],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-warn","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","style"],["matColumnDef","failreason"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(l,c){1&l&&(A.j41(0,"div",1),A.DNE(1,_h,2,1,"div",2)(2,AE,18,5,"div",3)(3,FE,36,8,"div",4)(4,yE,1,3,"mat-paginator",5),A.k0s()),2&l&&(A.R7$(),A.Y8G("ngIf",""!==c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage),A.R7$(),A.Y8G("ngIf",""===c.errorMessage))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.me,iA.BC,iA.vS,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,R.$z,wA.fg,IA.rl,IA.nJ,B.HM,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,S.iy,cA.ZF,cA.Ld,st.QX,st.vh]})}return i})();const YE=["form"];function SE(i,D){1&i&&A.eu8(0)}function NE(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Requested amount is required."),A.k0s())}function bE(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Fee rate is required."),A.k0s())}function RE(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Local amount is required."),A.k0s())}function TE(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Local amount must be greater than or equal to 20,000 Sats. It's required to cover the channel force close fee, if needed."),A.k0s())}function UE(i,D){if(1&i&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.SpI("Local amount must be less than or equal to ",t.totalBalance,".")}}function LE(i,D){if(1&i&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.channelConnectionError)}}function PE(i,D){if(1&i&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,LE,2,1,"span",19),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("icon",t.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==t.channelConnectionError)}}function zE(i,D){1&i&&(A.j41(0,"th",47),A.EFF(1,"Type"),A.k0s())}function GE(i,D){if(1&i&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.type)}}function HE(i,D){1&i&&(A.j41(0,"th",47),A.EFF(1,"Address"),A.k0s())}function kE(i,D){if(1&i&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.address)}}function jE(i,D){1&i&&(A.j41(0,"th",47),A.EFF(1,"Port"),A.k0s())}function OE(i,D){if(1&i&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t?null:t.port)}}function JE(i,D){1&i&&A.nrm(0,"tr",49)}function VE(i,D){1&i&&A.nrm(0,"tr",50)}function WE(i,D){if(1&i&&(A.j41(0,"mat-expansion-panel",30)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),A.EFF(4,"Node: \xa0"),A.k0s(),A.j41(5,"strong",31),A.EFF(6),A.k0s()()(),A.j41(7,"div",13)(8,"div",6)(9,"div",7)(10,"h4",32),A.EFF(11,"Pubkey"),A.k0s(),A.j41(12,"span",33),A.EFF(13),A.k0s()()(),A.nrm(14,"mat-divider",34),A.j41(15,"div",6)(16,"div",7)(17,"h4",32),A.EFF(18,"Last Timestamp"),A.k0s(),A.j41(19,"span",35),A.EFF(20),A.nI1(21,"date"),A.k0s()()(),A.nrm(22,"mat-divider",34),A.j41(23,"div",36)(24,"h4",37),A.EFF(25,"Addresses"),A.k0s(),A.j41(26,"div",38)(27,"table",39,5),A.qex(29,40),A.DNE(30,zE,2,0,"th",41)(31,GE,2,1,"td",42),A.bVm(),A.qex(32,43),A.DNE(33,HE,2,0,"th",41)(34,kE,2,1,"td",42),A.bVm(),A.qex(35,44),A.DNE(36,jE,2,0,"th",41)(37,OE,2,1,"td",42),A.bVm(),A.DNE(38,JE,1,0,"tr",45)(39,VE,1,0,"tr",46),A.k0s()()()()()),2&i){const t=A.XpG(2);A.R7$(6),A.JRh((null==t.node?null:t.node.alias)||(null==t.node?null:t.node.nodeid)),A.R7$(7),A.JRh(t.node.nodeid),A.R7$(7),A.JRh(A.i5U(21,6,1e3*t.node.last_timestamp,"dd/MMM/y HH:mm")),A.R7$(7),A.Y8G("dataSource",t.node.addresses),A.R7$(11),A.Y8G("matHeaderRowDef",t.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",t.displayedColumns)}}function KE(i,D){if(1&i&&A.DNE(0,WE,40,9,"mat-expansion-panel",29),2&i){const t=A.XpG();A.Y8G("ngIf",t.node)}}let XE=(()=>{class i{constructor(t,l,c,j){this.dialogRef=t,this.data=l,this.actions=c,this.store=j,this.faExclamationTriangle=u.zpE,this.totalBalance=0,this.node={},this.requestedAmount=0,this.feeRate=0,this.localAmount=0,this.channelConnectionError="",this.displayedColumns=["type","address","port"],this.unSubs=[new o.B,new o.B]}ngOnInit(){this.alertTitle=this.data.alertTitle||"",this.totalBalance=this.data.message?.balance||0,this.node=this.data.message?.node||{},this.requestedAmount=this.data.message?.requestedAmount||0,this.feeRate=this.data.message?.feeRate||0,this.localAmount=this.data.message?.localAmount||0,this.actions.pipe((0,g.Q)(this.unSubs[0]),(0,v.p)(t=>t.type===r.TC.UPDATE_API_CALL_STATUS_CLN||t.type===r.TC.FETCH_CHANNELS_CLN)).subscribe(t=>{t.type===r.TC.UPDATE_API_CALL_STATUS_CLN&&t.payload.status===r.wn.ERROR&&"SaveNewChannel"===t.payload.action&&(this.channelConnectionError=t.payload.message),t.type===r.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close()})}onClose(){this.dialogRef.close(!1)}resetData(){this.form.resetForm(),this.form.controls.ramount.setValue(this.data.message?.requestedAmount),this.form.controls.feerate.setValue(this.data.message?.feeRate),this.form.controls.lamount.setValue(this.data.message?.localAmount),this.calculateFee(),this.channelConnectionError=""}calculateFee(){this.node.channel_opening_fee=+(this.node.option_will_fund?.lease_fee_base_msat||0)/1e3+this.requestedAmount*+(this.node.option_will_fund?.lease_fee_basis||0)/1e4+ +(this.node.option_will_fund?.funding_weight||0)/4*this.feeRate}onOpenChannel(){if(!this.node||!this.node.option_will_fund||!this.requestedAmount||!this.feeRate||!this.localAmount||this.localAmount<2e4)return!0;const t={peerId:this.node.nodeid||"",amount:this.localAmount.toString(),feeRate:this.feeRate+"perkb",requestAmount:this.requestedAmount.toString(),compactLease:this.node.option_will_fund.compact_lease,announce:!0};this.store.dispatch((0,_.vL)({payload:t}))}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(gA.CP),A.rXU(gA.Vh),A.rXU(fA.En),A.rXU(e.il))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-open-liquidity-channel"]],viewQuery:function(l,c){if(1&l&&A.GBs(YE,7),2&l){let j;A.mGM(j=A.lsd())&&(c.form=j.first)}},decls:54,vars:24,consts:[["form","ngForm"],["ramount","ngModel"],["feeRt","ngModel"],["lamount","ngModel"],["nodeDetailsExpansionBlock",""],["table",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","6","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[4,"ngTemplateOutlet"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","30","fxLayoutAlign","start end"],["autoFocus","","matInput","","type","number","tabindex","1","required","","name","ramount",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],[4,"ngIf"],["matInput","","type","number","tabindex","2","required","","name","feerate",3,"ngModelChange","keyup","step","min","ngModel"],["matInput","","type","number","tabindex","3","required","","name","lamount",3,"ngModelChange","step","min","max","ngModel"],["fxFlex","100",1,"alert","alert-info","mt-4"],["fxFlex","100","class","alert alert-danger mt-2",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","4",1,"mr-1",3,"click"],["autoFocus","","mat-button","","color","primary","tabindex","5",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-2"],[1,"mr-1","alert-icon",3,"icon"],["class","flat-expansion-panel mt-1 mb-2","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","mt-1","mb-2"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],[1,"overflow-wrap","foreground-secondary-text"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxFlex","100",1,"font-bold-500","mb-1"],[1,"table-container"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","port"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-row",""],["mat-row",""]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",6)(1,"div",7)(2,"mat-card-header",8)(3,"div",9)(4,"span",10),A.EFF(5),A.k0s()(),A.j41(6,"button",11),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.DNE(11,SE,1,0,"ng-container",14),A.j41(12,"div",15)(13,"mat-form-field",16)(14,"mat-label"),A.EFF(15,"Requested Amount"),A.k0s(),A.j41(16,"input",17,1),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.requestedAmount,WA)||(c.requestedAmount=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.calculateFee())}),A.k0s(),A.j41(18,"span",18),A.EFF(19," Sats "),A.k0s(),A.DNE(20,NE,2,0,"mat-error",19),A.k0s(),A.j41(21,"mat-form-field",16)(22,"mat-label"),A.EFF(23,"Fee Rate"),A.k0s(),A.j41(24,"input",20,2),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.feeRate,WA)||(c.feeRate=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.calculateFee())}),A.k0s(),A.j41(26,"span",18),A.EFF(27," Sats/vByte "),A.k0s(),A.DNE(28,bE,2,0,"mat-error",19),A.k0s(),A.j41(29,"mat-form-field",16)(30,"mat-label"),A.EFF(31,"Local Amount"),A.k0s(),A.j41(32,"input",21,3),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.localAmount,WA)||(c.localAmount=WA),A.Njj(WA)}),A.k0s(),A.j41(34,"mat-hint"),A.EFF(35),A.nI1(36,"number"),A.k0s(),A.j41(37,"span",18),A.EFF(38," Sats "),A.k0s(),A.DNE(39,RE,2,0,"mat-error",19)(40,TE,2,0,"mat-error",19)(41,UE,2,1,"mat-error",19),A.k0s()(),A.j41(42,"div",22)(43,"span"),A.EFF(44),A.nI1(45,"number"),A.k0s()(),A.DNE(46,PE,3,2,"div",23),A.j41(47,"div",24)(48,"button",25),A.bIt("click",function(){return A.eBV(j),A.Njj(c.resetData())}),A.EFF(49,"Clear"),A.k0s(),A.j41(50,"button",26),A.bIt("click",function(){return A.eBV(j),A.Njj(c.onOpenChannel())}),A.EFF(51,"Execute"),A.k0s()()()()()(),A.DNE(52,KE,1,1,"ng-template",null,4,A.C5r)}if(2&l){const j=A.sdS(17),PA=A.sdS(25),WA=A.sdS(33),an=A.sdS(53);A.R7$(5),A.JRh(c.alertTitle),A.R7$(6),A.Y8G("ngTemplateOutlet",an),A.R7$(5),A.Y8G("step",1e4)("min",0),A.R50("ngModel",c.requestedAmount),A.R7$(4),A.Y8G("ngIf",null==j.errors?null:j.errors.required),A.R7$(4),A.Y8G("step",10)("min",0),A.R50("ngModel",c.feeRate),A.R7$(4),A.Y8G("ngIf",null==PA.errors?null:PA.errors.required),A.R7$(4),A.Y8G("step",1e4)("min",2e4)("max",c.totalBalance),A.R50("ngModel",c.localAmount),A.R7$(3),A.SpI("Remaining: ",A.bMT(36,20,c.totalBalance-(c.localAmount?c.localAmount:0)),""),A.R7$(4),A.Y8G("ngIf",null==WA.errors?null:WA.errors.required),A.R7$(),A.Y8G("ngIf",null==WA.errors?null:WA.errors.min),A.R7$(),A.Y8G("ngIf",null==WA.errors?null:WA.errors.max),A.R7$(3),A.SpI("Total cost to lease ",A.bMT(45,22,c.node.channel_opening_fee)," (Sats)"),A.R7$(2),A.Y8G("ngIf",""!==c.channelConnectionError)}},dependencies:[st.bT,st.T3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.VZ,iA.zX,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,R.$z,p.m2,p.MM,Nn.GK,Nn.Z2,Nn.WN,wA.fg,IA.rl,IA.nJ,IA.MV,IA.TL,IA.yw,ri.q,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.KS,F.$R,F.YZ,F.NB,J.N,Va.z,BA.V,st.QX,st.vh],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]})}return i})();var ZE=Pt(6471);const qE=()=>["all"],_E=i=>({"error-border":i}),$E=()=>["no_lqNode"],tc=i=>({width:i}),AC=i=>({"display-none":i});function tC(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Channel amount is required."),A.k0s())}function eC(i,D){1&i&&(A.j41(0,"mat-error"),A.EFF(1,"Channel opening fee rate is required."),A.k0s())}function nC(i,D){if(1&i&&(A.j41(0,"mat-option",49),A.EFF(1),A.k0s()),2&i){const t=D.$implicit,l=A.XpG();A.Y8G("value",t),A.R7$(),A.JRh(l.getLabel(t))}}function iC(i,D){1&i&&A.nrm(0,"mat-progress-bar",50)}function rC(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Alias"),A.k0s())}function aC(i,D){if(1&i&&(A.j41(0,"mat-chip",57),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.SpI(" ","tor"===t?"Tor":"ipv"===t?"Clearnet":t," ")}}function sC(i,D){if(1&i&&(A.j41(0,"td",52)(1,"div",53)(2,"span",54),A.EFF(3),A.j41(4,"mat-chip-list",55),A.DNE(5,aC,2,1,"mat-chip",56),A.k0s()()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,tc,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.SpI(" ",null==t?null:t.alias," "),A.R7$(2),A.Y8G("ngForOf",t.address_types)}}function oC(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Node ID"),A.k0s())}function lC(i,D){if(1&i&&(A.j41(0,"td",52)(1,"div",53)(2,"span",58),A.EFF(3),A.k0s()()()),2&i){const t=D.$implicit,l=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,tc,l.screenSize===l.screenSizeEnum.XS?"6rem":l.colWidth)),A.R7$(2),A.JRh(null==t?null:t.nodeid)}}function cC(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Last Announcement At"),A.k0s())}function gC(i,D){if(1&i&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==t?null:t.last_timestamp),"dd/MMM/y HH:mm")||"-")}}function BC(i,D){1&i&&(A.j41(0,"th",51),A.EFF(1,"Compact Lease"),A.k0s())}function uC(i,D){if(1&i&&(A.j41(0,"td",52),A.EFF(1),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.JRh(null==t||null==t.option_will_fund?null:t.option_will_fund.compact_lease)}}function fC(i,D){1&i&&(A.j41(0,"th",59),A.EFF(1," Lease Fee"),A.k0s())}function hC(i,D){if(1&i&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Lme(" ",A.i5U(2,2,(null==t||null==t.option_will_fund?null:t.option_will_fund.lease_fee_base_msat)/1e3,"1.0-0")," Sats + ",A.i5U(3,5,(null==t||null==t.option_will_fund?null:t.option_will_fund.lease_fee_basis)/100,"1.2-2"),"% ")}}function EC(i,D){1&i&&(A.j41(0,"th",59),A.EFF(1," Routing Fee"),A.k0s())}function CC(i,D){if(1&i&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&i){const t=D.$implicit;A.R7$(),A.Lme(" ",A.i5U(2,2,(null==t||null==t.option_will_fund?null:t.option_will_fund.channel_fee_max_base_msat)/1e3,"1.0-0")," Sats + ",A.i5U(3,5,1e3*(null==t||null==t.option_will_fund?null:t.option_will_fund.channel_fee_max_proportional_thousandths),"1.0-0")," ppm ")}}function wC(i,D){1&i&&(A.j41(0,"th",60),A.EFF(1,"Channel Opening Fee (Sats)"),A.k0s())}function dC(i,D){if(1&i&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,t.channel_opening_fee,"1.0-0")," ")}}function QC(i,D){1&i&&(A.j41(0,"th",60),A.EFF(1,"Funding Weight"),A.k0s())}function mC(i,D){if(1&i&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&i){const t=D.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,null==t||null==t.option_will_fund?null:t.option_will_fund.funding_weight,"1.0-0")," ")}}function pC(i,D){if(1&i){const t=A.RV6();A.j41(0,"th",59)(1,"div",62)(2,"mat-select",63),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",64),A.bIt("click",function(){A.eBV(t);const c=A.XpG();return A.Njj(c.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function MC(i,D){if(1&i){const t=A.RV6();A.j41(0,"td",65)(1,"div",62)(2,"mat-select",63),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",64),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onViewLeaseInfo(c))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",64),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.onOpenChannel(c))}),A.EFF(7,"Open Channel"),A.k0s(),A.j41(8,"mat-option",64),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.viewLeaseOn(c,"LN"))}),A.EFF(9,"View on Lnrouter"),A.k0s(),A.j41(10,"mat-option",64),A.bIt("click",function(){const c=A.eBV(t).$implicit,j=A.XpG();return A.Njj(j.viewLeaseOn(c,"AM"))}),A.EFF(11,"View on Amboss"),A.k0s()()()()}}function IC(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"No node with liquidity."),A.k0s())}function DC(i,D){1&i&&(A.j41(0,"p"),A.EFF(1,"Getting nodes with liquidity..."),A.k0s())}function vC(i,D){if(1&i&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&i){const t=A.XpG(2);A.R7$(),A.JRh(t.errorMessage)}}function FC(i,D){if(1&i&&(A.j41(0,"td",66),A.DNE(1,IC,2,0,"p",17)(2,DC,2,0,"p",17)(3,vC,2,1,"p",17),A.k0s()),2&i){const t=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.listNodesCallStatus===t.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.listNodesCallStatus===t.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=t.liquidityNodes&&t.liquidityNodes.data)||(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)<1)&&t.listNodesCallStatus===t.apiCallStatusEnum.ERROR)}}function yC(i,D){if(1&i&&A.nrm(0,"tr",67),2&i){const t=A.XpG();A.Y8G("ngClass",A.eq3(1,AC,(null==t.liquidityNodes?null:t.liquidityNodes.data)&&(null==t.liquidityNodes||null==t.liquidityNodes.data?null:t.liquidityNodes.data.length)>0))}}function xC(i,D){1&i&&A.nrm(0,"tr",68)}function YC(i,D){1&i&&A.nrm(0,"tr",69)}let SC=(()=>{class i{constructor(t,l,c,j,PA,WA,an){this.logger=t,this.store=l,this.dataService=c,this.commonService=j,this.rtlEffects=PA,this.datePipe=WA,this.camelCaseWithReplace=an,this.nodePageDefs=r.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="liquidity_ads",this.tableSetting={tableId:"liquidity_ads",recordsPerPage:r.md,sortBy:"channel_opening_fee",sortOrder:r.oi.ASCENDING},this.askTooltipMsg="",this.nodesTooltipMsg="",this.displayedColumns=[],this.faBullhorn=u.e4L,this.faExclamationTriangle=u.zpE,this.faUsers=u.gdJ,this.totalBalance=0,this.channelAmount=1e5,this.channel_opening_feeRate=10,this.node_capacity=5e5,this.channel_count=5,this.liquidityNodesData=[],this.liquidityNodes=new F.I6([]),this.pageSize=r.md,this.pageSizeOptions=r.xp,this.screenSize="",this.screenSizeEnum=r.f7,this.errorMessage="",this.selFilter="",this.listNodesCallStatus=r.wn.INITIATED,this.apiCallStatusEnum=r.wn,this.unSubs=[new o.B,new o.B,new o.B,new o.B,new o.B,new o.B],this.askTooltipMsg="Specify the liquidity requirements for your node: \n 1. Channel Amount - Amount in Sats you need on the channel opened to your node \n 2. Channel opening fee rate - Rate in Sats/vByte that you are willing to pay to open the channel to you",this.nodesTooltipMsg="These nodes are advertising their liquidity offering on the network.\nYou should pay attention to the following aspects to evaluate each node offer: \n- The total bitcoin deployed on the node, the more the better\n",this.nodesTooltipMsg=this.nodesTooltipMsg+"- The number of channels open on the node, the more the better\n- The channel open fee which the node will charge from you\n- The routing fee which the node will charge on the payments, the lesser the better\n- The reliability of the node, ideally uptime. Refer to the information being provided by the node explorers",this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(E.av).pipe((0,g.Q)(this.unSubs[0])).subscribe(t=>{this.errorMessage="",t.apiCallStatus.status===r.wn.ERROR&&(this.errorMessage=t.apiCallStatus.message||""),this.tableSetting=t.pageSettings.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId)||r.mu.find(l=>l.pageId===this.PAGE_ID)?.tables.find(l=>l.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===r.f7.XS||this.screenSize===r.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:r.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),(0,Gr.z)([this.store.select(E.kQ),this.dataService.listNetworkNodes({liquidity_ads:!0})]).pipe((0,g.Q)(this.unSubs[1])).subscribe({next:([t,l])=>{this.information=t.information,this.totalBalance=t.balance.totalBalance||0,this.logger.info(t),l&&!l.length&&(l=[]),this.logger.info("Received Liquidity Ads Enabled Nodes: "+JSON.stringify(l)),this.listNodesCallStatus=r.wn.COMPLETED,l.forEach(c=>{c.address_types=Array.from(new Set(c.addresses?.reduce((PA,WA)=>((WA.type?.includes("ipv")||WA.type?.includes("tor"))&&PA.push(WA.type?.substring(0,3)),PA),[])))}),this.liquidityNodesData=l.filter(c=>c.nodeid!==this.information.id),this.onCalculateOpeningFee(),this.loadLiqNodesTable(this.liquidityNodesData)},error:t=>{this.logger.error("Liquidity Ads Nodes Error: "+JSON.stringify(t)),this.listNodesCallStatus=r.wn.ERROR,this.errorMessage=JSON.stringify(t)}})}onCalculateOpeningFee(){this.liquidityNodesData.forEach(t=>{t.option_will_fund&&(t.channel_opening_fee=+(t.option_will_fund.lease_fee_base_msat||0)/1e3+this.channelAmount*+(t.option_will_fund.lease_fee_basis||0)/1e4+ +(t.option_will_fund.funding_weight||0)/4*this.channel_opening_feeRate)}),this.paginator&&this.paginator.firstPage()}onFilter(){}applyFilter(){this.liquidityNodes.filter=this.selFilter.trim().toLowerCase()}getLabel(t){const l=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(c=>c.column===t);return l?l.label?l.label:this.camelCaseWithReplace.transform(l.column||"","_"):this.commonService.titleCase(t)}setFilterPredicate(){this.liquidityNodes.filterPredicate=(t,l)=>{let c="";switch(this.selFilterBy){case"all":c=(t.alias?t.alias.toLocaleLowerCase():"")+(t.channel_opening_fee?t.channel_opening_fee+" Sats":"")+(t.option_will_fund?.lease_fee_base_msat?t.option_will_fund?.lease_fee_base_msat/1e3+" Sats":"")+(t.option_will_fund?.lease_fee_basis?t.option_will_fund?.lease_fee_basis/100+"%":"")+(t.option_will_fund?.channel_fee_max_base_msat?t.option_will_fund?.channel_fee_max_base_msat/1e3+" Sats":"")+(t.option_will_fund?.channel_fee_max_proportional_thousandths?1e3*t.option_will_fund?.channel_fee_max_proportional_thousandths+" ppm":"")+(t.address_types?t.address_types.reduce((j,PA)=>j+("tor"===PA?" tor":"ipv"===PA?" clearnet":" "+PA.toLowerCase()),""):"");break;case"alias":c=(t?.alias?.toLowerCase()||" ")+t?.address_types?.reduce((j,PA)=>j+(PA?"ipv"===PA?"clearnet":PA:"")," ")||"";break;case"last_timestamp":c=this.datePipe.transform(new Date(1e3*(t.last_timestamp||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"compact_lease":c=t?.option_will_fund?.compact_lease?.toLowerCase()||"";break;case"lease_fee":c=((t.option_will_fund?.lease_fee_base_msat||0)/1e3+" sats "||0)+((t.option_will_fund?.lease_fee_basis||0)/100+"%")||0;break;case"routing_fee":c=((t.option_will_fund?.channel_fee_max_base_msat||0)/1e3+" sats "||0)+(1e3*(t.option_will_fund?.channel_fee_max_proportional_thousandths||0)+" ppm")||0;break;default:c=typeof t[this.selFilterBy]>"u"?"":"string"==typeof t[this.selFilterBy]?t[this.selFilterBy].toLowerCase():"boolean"==typeof t[this.selFilterBy]?t[this.selFilterBy]?"yes":"no":t[this.selFilterBy].toString()}return c.includes(l)}}loadLiqNodesTable(t){this.liquidityNodes=new F.I6([...t]),this.liquidityNodes.sort=this.sort,this.liquidityNodes.sortingDataAccessor=(l,c)=>l[c]&&isNaN(l[c])?l[c].toLocaleLowerCase():l[c]?+l[c]:null,this.setFilterPredicate(),this.applyFilter(),this.liquidityNodes.paginator=this.paginator}viewLeaseOn(t,l){"LN"===l?window.open("https://lnrouter.app/node/"+t.nodeid,"_blank"):"AM"===l&&window.open("https://amboss.space/node/"+t.nodeid,"_blank")}onOpenChannel(t){this.store.dispatch((0,AA.xO)({payload:{data:{alertTitle:"Open Channel",message:{node:t,balance:this.totalBalance,requestedAmount:this.channelAmount,feeRate:this.channel_opening_feeRate,localAmount:2e4},component:XE}}}))}onViewLeaseInfo(t){const l=t.addresses?.reduce((PA,WA)=>(WA.address&&WA.address.length>40&&(WA.address=WA.address.substring(0,39)+"..."),PA.concat(JSON.stringify(WA).replace("{","").replace("}","").replace(/:/g,": ").replace(/,/g,"        ").replace(/"/g,""))),[]),c=[];if(t.features&&""!==t.features.trim()){const PA=parseInt(t.features,16);r.TH.forEach(WA=>{PA&1<{PA&&this.onOpenChannel(t)})}onDownloadCSV(){this.liquidityNodes.data&&this.liquidityNodes.data.length>0&&this.commonService.downloadFile(this.liquidityNodes.data,"LiquidityNodes")}onFilterReset(){this.node_capacity=0,this.channel_count=0}ngOnDestroy(){this.unSubs.forEach(t=>{t.next(null),t.complete()})}static#A=this.\u0275fac=function(l){return new(l||i)(A.rXU(C.gP),A.rXU(e.il),A.rXU(Qe.u),A.rXU(h.h),A.rXU(QA.H),A.rXU(st.vh),A.rXU(yA.VD))};static#t=this.\u0275cmp=A.VBU({type:i,selectors:[["rtl-cln-liquidity-ads-list"]],viewQuery:function(l,c){if(1&l&&(A.GBs(z.B4,5),A.GBs(S.iy,5)),2&l){let j;A.mGM(j=A.lsd())&&(c.sort=j.first),A.mGM(j=A.lsd())&&(c.paginator=j.first)}},features:[A.Jv_([{provide:$.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:S.xX,useValue:(0,r.on)("Liquidity Ads")}])],decls:83,vars:26,consts:[["formAsk","ngForm"],["table",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],[1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex.gt-xs","100","fxLayout","row",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","30"],[1,"page-text"],["matTooltipPosition","above","matTooltipClass","pre-wrap",1,"info-icon","info-icon-primary",3,"matTooltip"],["fxLayout","column","fxFlex","34"],["autoFocus","","matInput","","name","channelAmount","tabindex","1","type","number","step","10000","required","",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","channel_opening_feeRate","type","number","step","10","tabindex","2","required","",3,"ngModelChange","keyup","ngModel"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","nodeid"],["matColumnDef","last_timestamp"],["matColumnDef","compact_lease"],["matColumnDef","lease_fee"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","routing_fee"],["matColumnDef","channel_opening_fee"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","funding_weight"],["matColumnDef","actions"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_lqNode"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],["fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center",1,"ellipsis-child"],["aria-label","Address Types",1,"ml-half"],["color","primary","selected","",4,"ngFor","ngForOf"],["color","primary","selected",""],[1,"ellipsis-child"],["mat-header-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(l,c){if(1&l){const j=A.RV6();A.j41(0,"div",2),A.nrm(1,"fa-icon",3),A.j41(2,"span",4),A.EFF(3,"Liquidity Ads"),A.k0s()(),A.j41(4,"div",5)(5,"mat-card")(6,"mat-card-content",6)(7,"div",7)(8,"form",8,0)(10,"div",9),A.nrm(11,"fa-icon",10),A.j41(12,"span"),A.EFF(13,"Ads should be supplemented with additional research of the node, before buying liquidity."),A.k0s()(),A.j41(14,"div",11)(15,"div",12)(16,"span",13),A.EFF(17,"Liquidity Ask"),A.k0s(),A.j41(18,"mat-icon",14),A.EFF(19,"info_outline"),A.k0s()(),A.j41(20,"mat-form-field",15)(21,"mat-label"),A.EFF(22,"Channel Amount (Sats)"),A.k0s(),A.j41(23,"input",16),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.channelAmount,WA)||(c.channelAmount=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onCalculateOpeningFee())}),A.k0s(),A.DNE(24,tC,2,0,"mat-error",17),A.k0s(),A.j41(25,"mat-form-field",15)(26,"mat-label"),A.EFF(27,"Channel Opening Fee Rate (Sats/vByte)"),A.k0s(),A.j41(28,"input",18),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.channel_opening_feeRate,WA)||(c.channel_opening_feeRate=WA),A.Njj(WA)}),A.bIt("keyup",function(){return A.eBV(j),A.Njj(c.onCalculateOpeningFee())}),A.k0s(),A.DNE(29,eC,2,0,"mat-error",17),A.k0s()()(),A.j41(30,"div",19)(31,"div",20),A.nrm(32,"fa-icon",3),A.j41(33,"span",4),A.EFF(34,"Liquidity Providing Peers"),A.k0s()(),A.j41(35,"div",21)(36,"mat-form-field",22)(37,"mat-label"),A.EFF(38,"Filter By"),A.k0s(),A.j41(39,"mat-select",23),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilterBy,WA)||(c.selFilterBy=WA),A.Njj(WA)}),A.bIt("selectionChange",function(){return A.eBV(j),c.selFilter="",A.Njj(c.applyFilter())}),A.j41(40,"perfect-scrollbar"),A.DNE(41,nC,2,2,"mat-option",24),A.k0s()()(),A.j41(42,"mat-form-field",22)(43,"mat-label"),A.EFF(44,"Filter"),A.k0s(),A.j41(45,"input",25),A.mxI("ngModelChange",function(WA){return A.eBV(j),A.DH7(c.selFilter,WA)||(c.selFilter=WA),A.Njj(WA)}),A.bIt("input",function(){return A.eBV(j),A.Njj(c.applyFilter())})("keyup",function(){return A.eBV(j),A.Njj(c.applyFilter())}),A.k0s()()()(),A.j41(46,"div",26),A.DNE(47,iC,1,0,"mat-progress-bar",27),A.j41(48,"table",28,1),A.qex(50,29),A.DNE(51,rC,2,0,"th",30)(52,sC,6,5,"td",31),A.bVm(),A.qex(53,32),A.DNE(54,oC,2,0,"th",30)(55,lC,4,4,"td",31),A.bVm(),A.qex(56,33),A.DNE(57,cC,2,0,"th",30)(58,gC,3,4,"td",31),A.bVm(),A.qex(59,34),A.DNE(60,BC,2,0,"th",30)(61,uC,2,1,"td",31),A.bVm(),A.qex(62,35),A.DNE(63,fC,2,0,"th",36)(64,hC,4,8,"td",31),A.bVm(),A.qex(65,37),A.DNE(66,EC,2,0,"th",36)(67,CC,4,8,"td",31),A.bVm(),A.qex(68,38),A.DNE(69,wC,2,0,"th",39)(70,dC,4,4,"td",31),A.bVm(),A.qex(71,40),A.DNE(72,QC,2,0,"th",39)(73,mC,4,4,"td",31),A.bVm(),A.qex(74,41),A.DNE(75,pC,6,0,"th",36)(76,MC,12,0,"td",42),A.bVm(),A.qex(77,43),A.DNE(78,FC,4,3,"td",44),A.bVm(),A.DNE(79,yC,1,3,"tr",45)(80,xC,1,0,"tr",46)(81,YC,1,0,"tr",47),A.k0s()(),A.nrm(82,"mat-paginator",48),A.k0s()()()()}2&l&&(A.R7$(),A.Y8G("icon",c.faBullhorn),A.R7$(10),A.Y8G("icon",c.faExclamationTriangle),A.R7$(7),A.Y8G("matTooltip",c.askTooltipMsg),A.R7$(5),A.R50("ngModel",c.channelAmount),A.R7$(),A.Y8G("ngIf",!c.channelAmount),A.R7$(4),A.R50("ngModel",c.channel_opening_feeRate),A.R7$(),A.Y8G("ngIf",!c.channel_opening_feeRate),A.R7$(3),A.Y8G("icon",c.faUsers),A.R7$(7),A.R50("ngModel",c.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(22,qE).concat(c.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",c.selFilter),A.R7$(2),A.Y8G("ngIf",c.listNodesCallStatus===c.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",c.tableSetting.sortBy)("matSortDirection",c.tableSetting.sortOrder)("dataSource",c.liquidityNodes)("ngClass",A.eq3(23,_E,""!==c.errorMessage)),A.R7$(31),A.Y8G("matFooterRowDef",A.lJ4(25,$E)),A.R7$(),A.Y8G("matHeaderRowDef",c.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",c.displayedColumns),A.R7$(),A.Y8G("pageSize",c.pageSize)("pageSizeOptions",c.pageSizeOptions)("showFirstLastButtons",c.screenSize!==c.screenSizeEnum.XS))},dependencies:[st.YU,st.Sq,st.bT,st.B3,iA.qT,iA.me,iA.Q0,iA.BC,iA.cb,iA.YS,iA.vS,iA.cV,Q.aY,n.DJ,n.sA,n.UI,I.PW,I.eI,p.RN,p.m2,y.An,wA.fg,IA.rl,IA.nJ,IA.TL,B.HM,ZE.Jl,$.VO,$.$2,FA.wT,z.B4,z.aE,F.Zl,F.tL,F.ji,F.cC,F.YV,F.iL,F.Zq,F.xW,F.KS,F.$R,F.Qo,F.YZ,F.NB,F.iF,HA.oV,S.iy,cA.ZF,cA.Ld,J.N,st.QX,st.vh]})}return i})();const NC=[{path:"",component:s,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Bo,canActivate:[(0,Pe.Wz)()]},{path:"onchain",component:_o,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:K0,canActivate:[(0,Pe.Wz)()]},{path:"send/:selTab",component:ka,data:{sweepAll:!1},canActivate:[(0,Pe.Wz)()]},{path:"sweep/:selTab",component:ka,data:{sweepAll:!0},canActivate:[(0,Pe.Wz)()]}]},{path:"connections",component:t0,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:cl,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:Gt,canActivate:[(0,Pe.Wz)()]},{path:"pending",component:os,canActivate:[(0,Pe.Wz)()]},{path:"activehtlcs",component:Cf,canActivate:[(0,Pe.Wz)()]}]},{path:"peers",component:yc,data:{sweepAll:!1},canActivate:[(0,Pe.Wz)()]}]},{path:"liquidityads",component:SC,canActivate:[(0,Pe.Wz)()]},{path:"transactions",component:n0,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:ga,canActivate:[(0,Pe.Wz)()]},{path:"invoices",component:Te,canActivate:[(0,Pe.Wz)()]},{path:"offers",component:Qh,canActivate:[(0,Pe.Wz)()]},{path:"offrBookmarks",component:Kh,canActivate:[(0,Pe.Wz)()]}]},{path:"messages",component:J0,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:_c,canActivate:[(0,Pe.Wz)()]},{path:"verify",component:ag,canActivate:[(0,Pe.Wz)()]}]},{path:"routing",component:wr,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Ol,canActivate:[(0,Pe.Wz)()]},{path:"failedtransactions",component:SB,canActivate:[(0,Pe.Wz)()]},{path:"localfail",component:xE,canActivate:[(0,Pe.Wz)()]},{path:"routingpeers",component:Iu,canActivate:[(0,Pe.Wz)()]}]},{path:"reports",component:df,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:Ff,canActivate:[(0,Pe.Wz)()]},{path:"transactions",component:Uf,canActivate:[(0,Pe.Wz)()]}]},{path:"graph",component:zf,canActivate:[(0,Pe.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:v0,canActivate:[(0,Pe.Wz)()]},{path:"queryroutes",component:Zc,canActivate:[(0,Pe.Wz)()]}]},{path:"rates",component:j0,canActivate:[(0,Pe.Wz)()]},{path:"**",component:Lf.X},{path:"network",redirectTo:"rates"},{path:"wallet",redirectTo:"home"},{path:"backup",redirectTo:"home"}]}],bC=le.iI.forChild(NC);var RC=Pt(9029);let TC=(()=>{class i{static#A=this.\u0275fac=function(l){return new(l||i)};static#t=this.\u0275mod=A.$C({type:i,bootstrap:[s]});static#e=this.\u0275inj=A.G2t({imports:[st.MD,RC.G,bC]})}return i})()},2643:function(Gl){typeof self<"u"&&self,Gl.exports=function(){var br={41783:function(b,A){"use strict";A.OP=0,A.CL=1,A.CP=2,A.QU=3,A.GL=4,A.NS=5,A.EX=6,A.SY=7,A.IS=8,A.PR=9,A.PO=10,A.NU=11,A.AL=12,A.HL=13,A.ID=14,A.IN=15,A.HY=16,A.BA=17,A.BB=18,A.B2=19,A.ZW=20,A.CM=21,A.WJ=22,A.H2=23,A.H3=24,A.JL=25,A.JV=26,A.JT=27,A.RI=28,A.EB=29,A.EM=30,A.ZWJ=31,A.CB=32,A.AI=33,A.BK=34,A.CJ=35,A.CR=36,A.LF=37,A.NL=38,A.SA=39,A.SG=40,A.SP=41,A.XX=42},98282:function(b,A){"use strict";A.DI_BRK=0,A.IN_BRK=1,A.CI_BRK=2,A.CP_BRK=3,A.PR_BRK=4,A.pairTable=[[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,4,4],[0,4,4,1,1,4,4,4,4,1,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,4,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[4,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,1,0,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,0,0,1,1,1,1,1,1,1,0,0,4,2,4,1,1,1,1,1,0,1,1,1,0],[1,4,4,1,1,1,4,4,4,0,0,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,0,1,4,4,4,0,0,1,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,0,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,4,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,1,1,1,1,1,1,4,2,4,1,1,1,1,1,1,1,1,1,1],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,1,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,1,1,1,1,0,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,1,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,1,0,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,0,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,1,0,0,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,1,1,0],[0,4,4,1,1,1,4,4,4,0,1,0,0,0,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[1,4,4,1,1,1,4,4,4,1,1,1,1,1,0,1,1,1,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0],[0,4,4,1,1,0,4,4,4,0,0,0,0,0,0,0,0,0,0,0,4,2,4,0,0,0,0,0,0,0,0,1,0]]},57013:function(b,A,n){"use strict";n(18756),A.EncodeStream=n(16176),A.DecodeStream=n(78984),A.Array=n(38637),A.LazyArray=n(88687),A.Bitfield=n(72959),A.Boolean=n(64888),A.Buffer=n(77324),A.Enum=n(71499),A.Optional=n(72526),A.Reserved=n(10298),A.String=n(36291),A.Struct=n(2731),A.VersionedStruct=n(48084);var B=n(76949),a=n(63787),s=n(41545);Object.assign(A,B,a,s)},38637:function(b,A,n){"use strict";function B(u,r){var d=typeof Symbol<"u"&&u[Symbol.iterator]||u["@@iterator"];if(d)return(d=d.call(u)).next.bind(d);if(Array.isArray(u)||(d=function a(u,r){if(u){if("string"==typeof u)return s(u,r);var d=Object.prototype.toString.call(u).slice(8,-1);if("Object"===d&&u.constructor&&(d=u.constructor.name),"Map"===d||"Set"===d)return Array.from(u);if("Arguments"===d||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(d))return s(u,r)}}(u))||r&&u&&"number"==typeof u.length){d&&(u=d);var E=0;return function(){return E>=u.length?{done:!0}:{done:!1,value:u[E++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function s(u,r){(null==r||r>u.length)&&(r=u.length);for(var d=0,E=new Array(r);dthis.buffer.length)return this.flush()},C.flush=function(){if(this.bufferOffset>0)return this.push(B.from(this.buffer.slice(0,this.bufferOffset))),this.bufferOffset=0},C.writeBuffer=function(h){return this.flush(),this.push(h),this.pos+=h.length},C.writeString=function(h,Q){switch(void 0===Q&&(Q="ascii"),Q){case"utf16le":case"ucs2":case"utf8":case"ascii":return this.writeBuffer(B.from(h,Q));case"utf16be":for(var I=B.from(h,"utf16le"),R=0,p=I.length-1;R>>16&255,this.buffer[this.bufferOffset++]=h>>>8&255,this.buffer[this.bufferOffset++]=255&h,this.pos+=3},C.writeUInt24LE=function(h){return this.ensure(3),this.buffer[this.bufferOffset++]=255&h,this.buffer[this.bufferOffset++]=h>>>8&255,this.buffer[this.bufferOffset++]=h>>>16&255,this.pos+=3},C.writeInt24BE=function(h){return this.writeUInt24BE(h>=0?h:h+16777215+1)},C.writeInt24LE=function(h){return this.writeUInt24LE(h>=0?h:h+16777215+1)},C.fill=function(h,Q){if(Q=this.length)){if(null==this.items[h]){var Q=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.ctx)*h,this.items[h]=this.type.decode(this.stream,this.ctx),this.stream.pos=Q}return this.items[h]}},C.toArray=function(){for(var h=[],Q=0,I=this.length;Q>1),(C=f.call(this,"Int"+r,d)||this)._point=1<E)throw new RangeError('The value "'+Z+'" is invalid for option "size"');var k=new Uint8Array(Z);return Object.setPrototypeOf(k,h.prototype),k}function h(Z,k,U){if("number"==typeof Z){if("string"==typeof k)throw new TypeError('The "string" argument must be of type string. Received type number');return p(Z)}return Q(Z,k,U)}function Q(Z,k,U){if("string"==typeof Z)return function m(Z,k){if(("string"!=typeof k||""===k)&&(k="utf8"),!h.isEncoding(k))throw new TypeError("Unknown encoding: "+k);var U=0|F(Z,k),hA=e(U),q=hA.write(Z,k);return q!==U&&(hA=hA.slice(0,q)),hA}(Z,k);if(ArrayBuffer.isView(Z))return function x(Z){if(ht(Z,Uint8Array)){var k=new Uint8Array(Z);return Y(k.buffer,k.byteOffset,k.byteLength)}return y(Z)}(Z);if(null==Z)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof Z);if(ht(Z,ArrayBuffer)||Z&&ht(Z.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(ht(Z,SharedArrayBuffer)||Z&&ht(Z.buffer,SharedArrayBuffer)))return Y(Z,k,U);if("number"==typeof Z)throw new TypeError('The "value" argument must not be of type number. Received type number');var hA=Z.valueOf&&Z.valueOf();if(null!=hA&&hA!==Z)return h.from(hA,k,U);var q=function v(Z){if(h.isBuffer(Z)){var k=0|S(Z.length),U=e(k);return 0===U.length||Z.copy(U,0,0,k),U}return void 0!==Z.length?"number"!=typeof Z.length||vt(Z.length)?e(0):y(Z):"Buffer"===Z.type&&Array.isArray(Z.data)?y(Z.data):void 0}(Z);if(q)return q;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof Z[Symbol.toPrimitive])return h.from(Z[Symbol.toPrimitive]("string"),k,U);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof Z)}function I(Z){if("number"!=typeof Z)throw new TypeError('"size" argument must be of type number');if(Z<0)throw new RangeError('The value "'+Z+'" is invalid for option "size"')}function p(Z){return I(Z),e(Z<0?0:0|S(Z))}function y(Z){for(var k=Z.length<0?0:0|S(Z.length),U=e(k),hA=0;hA=E)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+E.toString(16)+" bytes");return 0|Z}function F(Z,k){if(h.isBuffer(Z))return Z.length;if(ArrayBuffer.isView(Z)||ht(Z,ArrayBuffer))return Z.byteLength;if("string"!=typeof Z)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof Z);var U=Z.length,hA=arguments.length>2&&!0===arguments[2];if(!hA&&0===U)return 0;for(var q=!1;;)switch(k){case"ascii":case"latin1":case"binary":return U;case"utf8":case"utf-8":return pt(Z).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*U;case"hex":return U>>>1;case"base64":return _A(Z).length;default:if(q)return hA?-1:pt(Z).length;k=(""+k).toLowerCase(),q=!0}}function $(Z,k,U){var hA=!1;if((void 0===k||k<0)&&(k=0),k>this.length||((void 0===U||U>this.length)&&(U=this.length),U<=0)||(U>>>=0)<=(k>>>=0))return"";for(Z||(Z="utf8");;)switch(Z){case"hex":return xA(this,k,U);case"utf8":case"utf-8":return J(this,k,U);case"ascii":return eA(this,k,U);case"latin1":case"binary":return EA(this,k,U);case"base64":return HA(this,k,U);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return OA(this,k,U);default:if(hA)throw new TypeError("Unknown encoding: "+Z);Z=(Z+"").toLowerCase(),hA=!0}}function gA(Z,k,U){var hA=Z[k];Z[k]=Z[U],Z[U]=hA}function _(Z,k,U,hA,q){if(0===Z.length)return-1;if("string"==typeof U?(hA=U,U=0):U>2147483647?U=2147483647:U<-2147483648&&(U=-2147483648),vt(U=+U)&&(U=q?0:Z.length-1),U<0&&(U=Z.length+U),U>=Z.length){if(q)return-1;U=Z.length-1}else if(U<0){if(!q)return-1;U=0}if("string"==typeof k&&(k=h.from(k,hA)),h.isBuffer(k))return 0===k.length?-1:fA(Z,k,U,hA,q);if("number"==typeof k)return k&=255,"function"==typeof Uint8Array.prototype.indexOf?q?Uint8Array.prototype.indexOf.call(Z,k,U):Uint8Array.prototype.lastIndexOf.call(Z,k,U):fA(Z,[k],U,hA,q);throw new TypeError("val must be string, number or Buffer")}function fA(Z,k,U,hA,q){var nt,GA=1,At=Z.length,O=k.length;if(void 0!==hA&&("ucs2"===(hA=String(hA).toLowerCase())||"ucs-2"===hA||"utf16le"===hA||"utf-16le"===hA)){if(Z.length<2||k.length<2)return-1;GA=2,At/=2,O/=2,U/=2}function qA(Tt,yt){return 1===GA?Tt[yt]:Tt.readUInt16BE(yt*GA)}if(q){var MA=-1;for(nt=U;ntAt&&(U=At-O),nt=U;nt>=0;nt--){for(var jA=!0,ot=0;otq&&(hA=q):hA=q;var At,GA=k.length;for(hA>GA/2&&(hA=GA/2),At=0;At>8,GA.push(U%256),GA.push(hA);return GA}(k,Z.length-U),Z,U,hA)}function HA(Z,k,U){return u.fromByteArray(0===k&&U===Z.length?Z:Z.slice(k,U))}function J(Z,k,U){U=Math.min(Z.length,U);for(var hA=[],q=k;q239?4:GA>223?3:GA>191?2:1;if(q+O<=U){var qA=void 0,nt=void 0,MA=void 0,jA=void 0;switch(O){case 1:GA<128&&(At=GA);break;case 2:128==(192&(qA=Z[q+1]))&&(jA=(31&GA)<<6|63&qA)>127&&(At=jA);break;case 3:nt=Z[q+2],128==(192&(qA=Z[q+1]))&&128==(192&nt)&&(jA=(15&GA)<<12|(63&qA)<<6|63&nt)>2047&&(jA<55296||jA>57343)&&(At=jA);break;case 4:nt=Z[q+2],MA=Z[q+3],128==(192&(qA=Z[q+1]))&&128==(192&nt)&&128==(192&MA)&&(jA=(15&GA)<<18|(63&qA)<<12|(63&nt)<<6|63&MA)>65535&&jA<1114112&&(At=jA)}}null===At?(At=65533,O=1):At>65535&&(hA.push((At-=65536)>>>10&1023|55296),At=56320|1023&At),hA.push(At),q+=O}return function aA(Z){var k=Z.length;if(k<=BA)return String.fromCharCode.apply(String,Z);for(var U="",hA=0;hAq.length?(h.isBuffer(At)||(At=h.from(At)),At.copy(q,GA)):Uint8Array.prototype.set.call(q,At,GA);else{if(!h.isBuffer(At))throw new TypeError('"list" argument must be an Array of Buffers');At.copy(q,GA)}GA+=At.length}return q},h.byteLength=F,h.prototype._isBuffer=!0,h.prototype.swap16=function(){var k=this.length;if(k%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var U=0;UU&&(k+=" ... "),""},d&&(h.prototype[d]=h.prototype.inspect),h.prototype.compare=function(k,U,hA,q,GA){if(ht(k,Uint8Array)&&(k=h.from(k,k.offset,k.byteLength)),!h.isBuffer(k))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof k);if(void 0===U&&(U=0),void 0===hA&&(hA=k?k.length:0),void 0===q&&(q=0),void 0===GA&&(GA=this.length),U<0||hA>k.length||q<0||GA>this.length)throw new RangeError("out of range index");if(q>=GA&&U>=hA)return 0;if(q>=GA)return-1;if(U>=hA)return 1;if(this===k)return 0;for(var At=(GA>>>=0)-(q>>>=0),O=(hA>>>=0)-(U>>>=0),qA=Math.min(At,O),nt=this.slice(q,GA),MA=k.slice(U,hA),jA=0;jA>>=0,isFinite(hA)?(hA>>>=0,void 0===q&&(q="utf8")):(q=hA,hA=void 0)}var GA=this.length-U;if((void 0===hA||hA>GA)&&(hA=GA),k.length>0&&(hA<0||U<0)||U>this.length)throw new RangeError("Attempt to write outside buffer bounds");q||(q="utf8");for(var At=!1;;)switch(q){case"hex":return iA(this,k,U,hA);case"utf8":case"utf-8":return wA(this,k,U,hA);case"ascii":case"latin1":case"binary":return IA(this,k,U,hA);case"base64":return FA(this,k,U,hA);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return YA(this,k,U,hA);default:if(At)throw new TypeError("Unknown encoding: "+q);q=(""+q).toLowerCase(),At=!0}},h.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var BA=4096;function eA(Z,k,U){var hA="";U=Math.min(Z.length,U);for(var q=k;qhA)&&(U=hA);for(var q="",GA=k;GAU)throw new RangeError("Trying to access beyond buffer length")}function L(Z,k,U,hA,q,GA){if(!h.isBuffer(Z))throw new TypeError('"buffer" argument must be a Buffer instance');if(k>q||kZ.length)throw new RangeError("Index out of range")}function rA(Z,k,U,hA,q){pA(k,hA,q,Z,U,7);var GA=Number(k&BigInt(4294967295));Z[U++]=GA,Z[U++]=GA>>=8,Z[U++]=GA>>=8,Z[U++]=GA>>=8;var At=Number(k>>BigInt(32)&BigInt(4294967295));return Z[U++]=At,Z[U++]=At>>=8,Z[U++]=At>>=8,Z[U++]=At>>=8,U}function AA(Z,k,U,hA,q){pA(k,hA,q,Z,U,7);var GA=Number(k&BigInt(4294967295));Z[U+7]=GA,Z[U+6]=GA>>=8,Z[U+5]=GA>>=8,Z[U+4]=GA>>=8;var At=Number(k>>BigInt(32)&BigInt(4294967295));return Z[U+3]=At,Z[U+2]=At>>=8,Z[U+1]=At>>=8,Z[U]=At>>=8,U+8}function QA(Z,k,U,hA,q,GA){if(U+hA>Z.length)throw new RangeError("Index out of range");if(U<0)throw new RangeError("Index out of range")}function yA(Z,k,U,hA,q){return k=+k,U>>>=0,q||QA(Z,0,U,4),r.write(Z,k,U,hA,23,4),U+4}function cA(Z,k,U,hA,q){return k=+k,U>>>=0,q||QA(Z,0,U,8),r.write(Z,k,U,hA,52,8),U+8}h.prototype.slice=function(k,U){var hA=this.length;(k=~~k)<0?(k+=hA)<0&&(k=0):k>hA&&(k=hA),(U=void 0===U?hA:~~U)<0?(U+=hA)<0&&(U=0):U>hA&&(U=hA),U>>=0,U>>>=0,hA||W(k,U,this.length);for(var q=this[k],GA=1,At=0;++At>>=0,U>>>=0,hA||W(k,U,this.length);for(var q=this[k+--U],GA=1;U>0&&(GA*=256);)q+=this[k+--U]*GA;return q},h.prototype.readUint8=h.prototype.readUInt8=function(k,U){return k>>>=0,U||W(k,1,this.length),this[k]},h.prototype.readUint16LE=h.prototype.readUInt16LE=function(k,U){return k>>>=0,U||W(k,2,this.length),this[k]|this[k+1]<<8},h.prototype.readUint16BE=h.prototype.readUInt16BE=function(k,U){return k>>>=0,U||W(k,2,this.length),this[k]<<8|this[k+1]},h.prototype.readUint32LE=h.prototype.readUInt32LE=function(k,U){return k>>>=0,U||W(k,4,this.length),(this[k]|this[k+1]<<8|this[k+2]<<16)+16777216*this[k+3]},h.prototype.readUint32BE=h.prototype.readUInt32BE=function(k,U){return k>>>=0,U||W(k,4,this.length),16777216*this[k]+(this[k+1]<<16|this[k+2]<<8|this[k+3])},h.prototype.readBigUInt64LE=vA(function(k){JA(k>>>=0,"offset");var U=this[k],hA=this[k+7];(void 0===U||void 0===hA)&&ft(k,this.length-8);var q=U+this[++k]*Math.pow(2,8)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,24),GA=this[++k]+this[++k]*Math.pow(2,8)+this[++k]*Math.pow(2,16)+hA*Math.pow(2,24);return BigInt(q)+(BigInt(GA)<>>=0,"offset");var U=this[k],hA=this[k+7];(void 0===U||void 0===hA)&&ft(k,this.length-8);var q=U*Math.pow(2,24)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,8)+this[++k],GA=this[++k]*Math.pow(2,24)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,8)+hA;return(BigInt(q)<>>=0,U>>>=0,hA||W(k,U,this.length);for(var q=this[k],GA=1,At=0;++At=(GA*=128)&&(q-=Math.pow(2,8*U)),q},h.prototype.readIntBE=function(k,U,hA){k>>>=0,U>>>=0,hA||W(k,U,this.length);for(var q=U,GA=1,At=this[k+--q];q>0&&(GA*=256);)At+=this[k+--q]*GA;return At>=(GA*=128)&&(At-=Math.pow(2,8*U)),At},h.prototype.readInt8=function(k,U){return k>>>=0,U||W(k,1,this.length),128&this[k]?-1*(255-this[k]+1):this[k]},h.prototype.readInt16LE=function(k,U){k>>>=0,U||W(k,2,this.length);var hA=this[k]|this[k+1]<<8;return 32768&hA?4294901760|hA:hA},h.prototype.readInt16BE=function(k,U){k>>>=0,U||W(k,2,this.length);var hA=this[k+1]|this[k]<<8;return 32768&hA?4294901760|hA:hA},h.prototype.readInt32LE=function(k,U){return k>>>=0,U||W(k,4,this.length),this[k]|this[k+1]<<8|this[k+2]<<16|this[k+3]<<24},h.prototype.readInt32BE=function(k,U){return k>>>=0,U||W(k,4,this.length),this[k]<<24|this[k+1]<<16|this[k+2]<<8|this[k+3]},h.prototype.readBigInt64LE=vA(function(k){JA(k>>>=0,"offset");var U=this[k],hA=this[k+7];(void 0===U||void 0===hA)&&ft(k,this.length-8);var q=this[k+4]+this[k+5]*Math.pow(2,8)+this[k+6]*Math.pow(2,16)+(hA<<24);return(BigInt(q)<>>=0,"offset");var U=this[k],hA=this[k+7];(void 0===U||void 0===hA)&&ft(k,this.length-8);var q=(U<<24)+this[++k]*Math.pow(2,16)+this[++k]*Math.pow(2,8)+this[++k];return(BigInt(q)<>>=0,U||W(k,4,this.length),r.read(this,k,!0,23,4)},h.prototype.readFloatBE=function(k,U){return k>>>=0,U||W(k,4,this.length),r.read(this,k,!1,23,4)},h.prototype.readDoubleLE=function(k,U){return k>>>=0,U||W(k,8,this.length),r.read(this,k,!0,52,8)},h.prototype.readDoubleBE=function(k,U){return k>>>=0,U||W(k,8,this.length),r.read(this,k,!1,52,8)},h.prototype.writeUintLE=h.prototype.writeUIntLE=function(k,U,hA,q){k=+k,U>>>=0,hA>>>=0,q||L(this,k,U,hA,Math.pow(2,8*hA)-1,0);var At=1,O=0;for(this[U]=255&k;++O>>=0,hA>>>=0,q||L(this,k,U,hA,Math.pow(2,8*hA)-1,0);var At=hA-1,O=1;for(this[U+At]=255&k;--At>=0&&(O*=256);)this[U+At]=k/O&255;return U+hA},h.prototype.writeUint8=h.prototype.writeUInt8=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,1,255,0),this[U]=255&k,U+1},h.prototype.writeUint16LE=h.prototype.writeUInt16LE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,2,65535,0),this[U]=255&k,this[U+1]=k>>>8,U+2},h.prototype.writeUint16BE=h.prototype.writeUInt16BE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,2,65535,0),this[U]=k>>>8,this[U+1]=255&k,U+2},h.prototype.writeUint32LE=h.prototype.writeUInt32LE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,4,4294967295,0),this[U+3]=k>>>24,this[U+2]=k>>>16,this[U+1]=k>>>8,this[U]=255&k,U+4},h.prototype.writeUint32BE=h.prototype.writeUInt32BE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,4,4294967295,0),this[U]=k>>>24,this[U+1]=k>>>16,this[U+2]=k>>>8,this[U+3]=255&k,U+4},h.prototype.writeBigUInt64LE=vA(function(k,U){return void 0===U&&(U=0),rA(this,k,U,BigInt(0),BigInt("0xffffffffffffffff"))}),h.prototype.writeBigUInt64BE=vA(function(k,U){return void 0===U&&(U=0),AA(this,k,U,BigInt(0),BigInt("0xffffffffffffffff"))}),h.prototype.writeIntLE=function(k,U,hA,q){if(k=+k,U>>>=0,!q){var GA=Math.pow(2,8*hA-1);L(this,k,U,hA,GA-1,-GA)}var At=0,O=1,qA=0;for(this[U]=255&k;++At>>=0,!q){var GA=Math.pow(2,8*hA-1);L(this,k,U,hA,GA-1,-GA)}var At=hA-1,O=1,qA=0;for(this[U+At]=255&k;--At>=0&&(O*=256);)k<0&&0===qA&&0!==this[U+At+1]&&(qA=1),this[U+At]=(k/O|0)-qA&255;return U+hA},h.prototype.writeInt8=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,1,127,-128),k<0&&(k=255+k+1),this[U]=255&k,U+1},h.prototype.writeInt16LE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,2,32767,-32768),this[U]=255&k,this[U+1]=k>>>8,U+2},h.prototype.writeInt16BE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,2,32767,-32768),this[U]=k>>>8,this[U+1]=255&k,U+2},h.prototype.writeInt32LE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,4,2147483647,-2147483648),this[U]=255&k,this[U+1]=k>>>8,this[U+2]=k>>>16,this[U+3]=k>>>24,U+4},h.prototype.writeInt32BE=function(k,U,hA){return k=+k,U>>>=0,hA||L(this,k,U,4,2147483647,-2147483648),k<0&&(k=4294967295+k+1),this[U]=k>>>24,this[U+1]=k>>>16,this[U+2]=k>>>8,this[U+3]=255&k,U+4},h.prototype.writeBigInt64LE=vA(function(k,U){return void 0===U&&(U=0),rA(this,k,U,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),h.prototype.writeBigInt64BE=vA(function(k,U){return void 0===U&&(U=0),AA(this,k,U,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),h.prototype.writeFloatLE=function(k,U,hA){return yA(this,k,U,!0,hA)},h.prototype.writeFloatBE=function(k,U,hA){return yA(this,k,U,!1,hA)},h.prototype.writeDoubleLE=function(k,U,hA){return cA(this,k,U,!0,hA)},h.prototype.writeDoubleBE=function(k,U,hA){return cA(this,k,U,!1,hA)},h.prototype.copy=function(k,U,hA,q){if(!h.isBuffer(k))throw new TypeError("argument should be a Buffer");if(hA||(hA=0),!q&&0!==q&&(q=this.length),U>=k.length&&(U=k.length),U||(U=0),q>0&&q=this.length)throw new RangeError("Index out of range");if(q<0)throw new RangeError("sourceEnd out of bounds");q>this.length&&(q=this.length),k.length-U>>=0,hA=void 0===hA?this.length:hA>>>0,k||(k=0),"number"==typeof k)for(At=U;At=hA+4;U-=3)k="_"+Z.slice(U-3,U)+k;return""+Z.slice(0,U)+k}function pA(Z,k,U,hA,q,GA){if(Z>U||Z3?0===k||k===BigInt(0)?">= 0"+At+" and < 2"+At+" ** "+8*(GA+1)+At:">= -(2"+At+" ** "+(8*(GA+1)-1)+At+") and < 2 ** "+(8*(GA+1)-1)+At:">= "+k+At+" and <= "+U+At,new CA.ERR_OUT_OF_RANGE("value",O,Z)}!function zA(Z,k,U){JA(k,"offset"),(void 0===Z[k]||void 0===Z[k+U])&&ft(k,Z.length-(U+1))}(hA,q,GA)}function JA(Z,k){if("number"!=typeof Z)throw new CA.ERR_INVALID_ARG_TYPE(k,"number",Z)}function ft(Z,k,U){throw Math.floor(Z)!==Z?(JA(Z,U),new CA.ERR_OUT_OF_RANGE(U||"offset","an integer",Z)):k<0?new CA.ERR_BUFFER_OUT_OF_BOUNDS:new CA.ERR_OUT_OF_RANGE(U||"offset",">= "+(U?1:0)+" and <= "+k,Z)}DA("ERR_BUFFER_OUT_OF_BOUNDS",function(Z){return Z?Z+" is outside of buffer bounds":"Attempt to access memory outside buffer bounds"},RangeError),DA("ERR_INVALID_ARG_TYPE",function(Z,k){return'The "'+Z+'" argument must be of type number. Received type '+typeof k},TypeError),DA("ERR_OUT_OF_RANGE",function(Z,k,U){var hA='The value of "'+Z+'" is out of range.',q=U;return Number.isInteger(U)&&Math.abs(U)>Math.pow(2,32)?q=NA(String(U)):"bigint"==typeof U&&(q=String(U),(U>Math.pow(BigInt(2),BigInt(32))||U<-Math.pow(BigInt(2),BigInt(32)))&&(q=NA(q)),q+="n"),hA+" It must be "+k+". Received "+q},RangeError);var wt=/[^+/0-9A-Za-z-_]/g;function pt(Z,k){k=k||1/0;for(var U,hA=Z.length,q=null,GA=[],At=0;At55295&&U<57344){if(!q){if(U>56319){(k-=3)>-1&&GA.push(239,191,189);continue}if(At+1===hA){(k-=3)>-1&&GA.push(239,191,189);continue}q=U;continue}if(U<56320){(k-=3)>-1&&GA.push(239,191,189),q=U;continue}U=65536+(q-55296<<10|U-56320)}else q&&(k-=3)>-1&&GA.push(239,191,189);if(q=null,U<128){if((k-=1)<0)break;GA.push(U)}else if(U<2048){if((k-=2)<0)break;GA.push(U>>6|192,63&U|128)}else if(U<65536){if((k-=3)<0)break;GA.push(U>>12|224,U>>6&63|128,63&U|128)}else{if(!(U<1114112))throw new Error("Invalid code point");if((k-=4)<0)break;GA.push(U>>18|240,U>>12&63|128,U>>6&63|128,63&U|128)}}return GA}function _A(Z){return u.toByteArray(function gt(Z){if((Z=(Z=Z.split("=")[0]).trim().replace(wt,"")).length<2)return"";for(;Z.length%4!=0;)Z+="=";return Z}(Z))}function Qt(Z,k,U,hA){var q;for(q=0;q=k.length||q>=Z.length);++q)k[q+U]=Z[q];return q}function ht(Z,k){return Z instanceof k||null!=Z&&null!=Z.constructor&&null!=Z.constructor.name&&Z.constructor.name===k.name}function vt(Z){return Z!=Z}var Nt=function(){for(var Z="0123456789abcdef",k=new Array(256),U=0;U<16;++U)for(var hA=16*U,q=0;q<16;++q)k[hA+q]=Z[U]+Z[q];return k}();function vA(Z){return typeof BigInt>"u"?Bt:Z}function Bt(){throw new Error("BigInt not supported")}},38719:function(b,A,n){"use strict";n(10720),n(14032),b.exports=typeof ArrayBuffer<"u"&&typeof DataView<"u"},36597:function(b,A,n){"use strict";var fA,iA,wA,B=n(38719),a=n(15567),s=n(32010),o=n(94578),g=n(24517),f=n(20340),w=n(52564),u=n(68664),r=n(48914),d=n(13711),E=n(95892).f,C=n(70176),e=n(69548),h=n(3840),Q=n(38688),I=n(46859),R=s.Int8Array,p=R&&R.prototype,m=s.Uint8ClampedArray,y=m&&m.prototype,x=R&&e(R),Y=p&&e(p),v=Object.prototype,S=s.TypeError,z=Q("toStringTag"),F=I("TYPED_ARRAY_TAG"),$=I("TYPED_ARRAY_CONSTRUCTOR"),gA=B&&!!h&&"Opera"!==w(s.opera),_=!1,IA={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},FA={BigInt64Array:8,BigUint64Array:8},HA=function(xA){if(!g(xA))return!1;var OA=w(xA);return f(IA,OA)||f(FA,OA)};for(fA in IA)(wA=(iA=s[fA])&&iA.prototype)?r(wA,$,iA):gA=!1;for(fA in FA)(wA=(iA=s[fA])&&iA.prototype)&&r(wA,$,iA);if((!gA||!o(x)||x===Function.prototype)&&(x=function(){throw S("Incorrect invocation")},gA))for(fA in IA)s[fA]&&h(s[fA],x);if((!gA||!Y||Y===v)&&(Y=x.prototype,gA))for(fA in IA)s[fA]&&h(s[fA].prototype,Y);if(gA&&e(y)!==Y&&h(y,Y),a&&!f(Y,z))for(fA in _=!0,E(Y,z,{get:function(){return g(this)?this[F]:void 0}}),IA)s[fA]&&r(s[fA],F,fA);b.exports={NATIVE_ARRAY_BUFFER_VIEWS:gA,TYPED_ARRAY_CONSTRUCTOR:$,TYPED_ARRAY_TAG:_&&F,aTypedArray:function(xA){if(HA(xA))return xA;throw S("Target is not a typed array")},aTypedArrayConstructor:function(xA){if(o(xA)&&(!h||C(x,xA)))return xA;throw S(u(xA)+" is not a typed array constructor")},exportTypedArrayMethod:function(xA,OA,W){if(a){if(W)for(var L in IA){var rA=s[L];if(rA&&f(rA.prototype,xA))try{delete rA.prototype[xA]}catch{}}(!Y[xA]||W)&&d(Y,xA,W?OA:gA&&p[xA]||OA)}},exportTypedArrayStaticMethod:function(xA,OA,W){var L,rA;if(a){if(h){if(W)for(L in IA)if((rA=s[L])&&f(rA,xA))try{delete rA[xA]}catch{}if(x[xA]&&!W)return;try{return d(x,xA,W?OA:gA&&x[xA]||OA)}catch{}}for(L in IA)(rA=s[L])&&(!rA[xA]||W)&&d(rA,xA,OA)}},isView:function(xA){if(!g(xA))return!1;var OA=w(xA);return"DataView"===OA||f(IA,OA)||f(FA,OA)},isTypedArray:HA,TypedArray:x,TypedArrayPrototype:Y}},89987:function(b,A,n){"use strict";n(24863);var B=n(32010),a=n(38347),s=n(15567),o=n(38719),g=n(7081),f=n(48914),w=n(15341),u=n(47044),r=n(2868),d=n(26882),E=n(23417),C=n(71265),e=n(64397),h=n(69548),Q=n(3840),I=n(6611).f,R=n(95892).f,p=n(72864),m=n(73163),y=n(15216),x=n(70172),Y=g.PROPER,v=g.CONFIGURABLE,S=x.get,z=x.set,F="ArrayBuffer",$="DataView",gA="prototype",fA="Wrong index",iA=B[F],wA=iA,IA=wA&&wA[gA],FA=B[$],YA=FA&&FA[gA],HA=Object.prototype,J=B.Array,BA=B.RangeError,aA=a(p),eA=a([].reverse),EA=e.pack,xA=e.unpack,OA=function(gt){return[255>]},W=function(gt){return[255>,gt>>8&255]},L=function(gt){return[255>,gt>>8&255,gt>>16&255,gt>>24&255]},rA=function(gt){return gt[3]<<24|gt[2]<<16|gt[1]<<8|gt[0]},AA=function(gt){return EA(gt,23,4)},QA=function(gt){return EA(gt,52,8)},yA=function(gt,pt){R(gt[gA],pt,{get:function(){return S(this)[pt]}})},cA=function(gt,pt,Yt,VA){var _A=C(Yt),Qt=S(gt);if(_A+pt>Qt.byteLength)throw BA(fA);var ht=S(Qt.buffer).bytes,vt=_A+Qt.byteOffset,Nt=m(ht,vt,vt+pt);return VA?Nt:eA(Nt)},CA=function(gt,pt,Yt,VA,_A,Qt){var ht=C(Yt),vt=S(gt);if(ht+pt>vt.byteLength)throw BA(fA);for(var Nt=S(vt.buffer).bytes,vA=ht+vt.byteOffset,Bt=VA(+_A),Z=0;ZzA;)(pA=NA[zA++])in wA||f(wA,pA,iA[pA]);IA.constructor=wA}Q&&h(YA)!==HA&&Q(YA,HA);var JA=new FA(new wA(2)),ft=a(YA.setInt8);JA.setInt8(0,2147483648),JA.setInt8(1,2147483649),(JA.getInt8(0)||!JA.getInt8(1))&&w(YA,{setInt8:function(gt,pt){ft(this,gt,pt<<24>>24)},setUint8:function(gt,pt){ft(this,gt,pt<<24>>24)}},{unsafe:!0})}else IA=(wA=function(gt){r(this,IA);var pt=C(gt);z(this,{bytes:aA(J(pt),0),byteLength:pt}),s||(this.byteLength=pt)})[gA],YA=(FA=function(gt,pt,Yt){r(this,YA),r(gt,IA);var VA=S(gt).byteLength,_A=d(pt);if(_A<0||_A>VA)throw BA("Wrong offset");if(_A+(Yt=void 0===Yt?VA-_A:E(Yt))>VA)throw BA("Wrong length");z(this,{buffer:gt,byteLength:Yt,byteOffset:_A}),s||(this.buffer=gt,this.byteLength=Yt,this.byteOffset=_A)})[gA],s&&(yA(wA,"byteLength"),yA(FA,"buffer"),yA(FA,"byteLength"),yA(FA,"byteOffset")),w(YA,{getInt8:function(gt){return cA(this,1,gt)[0]<<24>>24},getUint8:function(gt){return cA(this,1,gt)[0]},getInt16:function(gt){var pt=cA(this,2,gt,arguments.length>1?arguments[1]:void 0);return(pt[1]<<8|pt[0])<<16>>16},getUint16:function(gt){var pt=cA(this,2,gt,arguments.length>1?arguments[1]:void 0);return pt[1]<<8|pt[0]},getInt32:function(gt){return rA(cA(this,4,gt,arguments.length>1?arguments[1]:void 0))},getUint32:function(gt){return rA(cA(this,4,gt,arguments.length>1?arguments[1]:void 0))>>>0},getFloat32:function(gt){return xA(cA(this,4,gt,arguments.length>1?arguments[1]:void 0),23)},getFloat64:function(gt){return xA(cA(this,8,gt,arguments.length>1?arguments[1]:void 0),52)},setInt8:function(gt,pt){CA(this,1,gt,OA,pt)},setUint8:function(gt,pt){CA(this,1,gt,OA,pt)},setInt16:function(gt,pt){CA(this,2,gt,W,pt,arguments.length>2?arguments[2]:void 0)},setUint16:function(gt,pt){CA(this,2,gt,W,pt,arguments.length>2?arguments[2]:void 0)},setInt32:function(gt,pt){CA(this,4,gt,L,pt,arguments.length>2?arguments[2]:void 0)},setUint32:function(gt,pt){CA(this,4,gt,L,pt,arguments.length>2?arguments[2]:void 0)},setFloat32:function(gt,pt){CA(this,4,gt,AA,pt,arguments.length>2?arguments[2]:void 0)},setFloat64:function(gt,pt){CA(this,8,gt,QA,pt,arguments.length>2?arguments[2]:void 0)}});y(wA,F),y(FA,$),b.exports={ArrayBuffer:wA,DataView:FA}},10720:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(89987),o=n(51334),g="ArrayBuffer",f=s[g];B({global:!0,forced:a[g]!==f},{ArrayBuffer:f}),o(g)},6993:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,o=a.lib.BlockCipher,g=a.algo,f=[],w=[],u=[],r=[],d=[],E=[],C=[],e=[],h=[],Q=[];!function(){for(var p=[],m=0;m<256;m++)p[m]=m<128?m<<1:m<<1^283;var y=0,x=0;for(m=0;m<256;m++){var Y=x^x<<1^x<<2^x<<3^x<<4;f[y]=Y=Y>>>8^255&Y^99,w[Y]=y;var F,v=p[y],S=p[v],z=p[S];u[y]=(F=257*p[Y]^16843008*Y)<<24|F>>>8,r[y]=F<<16|F>>>16,d[y]=F<<8|F>>>24,E[y]=F,C[Y]=(F=16843009*z^65537*S^257*v^16843008*y)<<24|F>>>8,e[Y]=F<<16|F>>>16,h[Y]=F<<8|F>>>24,Q[Y]=F,y?(y=v^p[p[p[z^v]]],x^=p[p[x]]):y=x=1}}();var I=[0,1,2,4,8,16,32,64,128,27,54],R=g.AES=o.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var y=this._keyPriorReset=this._key,x=y.words,Y=y.sigBytes/4,S=4*((this._nRounds=Y+6)+1),z=this._keySchedule=[],F=0;F6&&F%Y==4&&(m=f[m>>>24]<<24|f[m>>>16&255]<<16|f[m>>>8&255]<<8|f[255&m]):(m=f[(m=m<<8|m>>>24)>>>24]<<24|f[m>>>16&255]<<16|f[m>>>8&255]<<8|f[255&m],m^=I[F/Y|0]<<24),z[F]=z[F-Y]^m);for(var $=this._invKeySchedule=[],gA=0;gA>>24]]^e[f[m>>>16&255]]^h[f[m>>>8&255]]^Q[f[255&m]]}}},encryptBlock:function(m,y){this._doCryptBlock(m,y,this._keySchedule,u,r,d,E,f)},decryptBlock:function(m,y){var x=m[y+1];m[y+1]=m[y+3],m[y+3]=x,this._doCryptBlock(m,y,this._invKeySchedule,C,e,h,Q,w),x=m[y+1],m[y+1]=m[y+3],m[y+3]=x},_doCryptBlock:function(m,y,x,Y,v,S,z,F){for(var $=this._nRounds,gA=m[y]^x[0],_=m[y+1]^x[1],fA=m[y+2]^x[2],iA=m[y+3]^x[3],wA=4,IA=1;IA<$;IA++){var FA=Y[gA>>>24]^v[_>>>16&255]^S[fA>>>8&255]^z[255&iA]^x[wA++],YA=Y[_>>>24]^v[fA>>>16&255]^S[iA>>>8&255]^z[255&gA]^x[wA++],HA=Y[fA>>>24]^v[iA>>>16&255]^S[gA>>>8&255]^z[255&_]^x[wA++],J=Y[iA>>>24]^v[gA>>>16&255]^S[_>>>8&255]^z[255&fA]^x[wA++];gA=FA,_=YA,fA=HA,iA=J}FA=(F[gA>>>24]<<24|F[_>>>16&255]<<16|F[fA>>>8&255]<<8|F[255&iA])^x[wA++],YA=(F[_>>>24]<<24|F[fA>>>16&255]<<16|F[iA>>>8&255]<<8|F[255&gA])^x[wA++],HA=(F[fA>>>24]<<24|F[iA>>>16&255]<<16|F[gA>>>8&255]<<8|F[255&_])^x[wA++],J=(F[iA>>>24]<<24|F[gA>>>16&255]<<16|F[_>>>8&255]<<8|F[255&fA])^x[wA++],m[y]=FA,m[y+1]=YA,m[y+2]=HA,m[y+3]=J},keySize:8});a.AES=o._createHelper(R)}(),B.AES)},83122:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,o=a.lib.BlockCipher,f=16,w=[608135816,2242054355,320440878,57701188,2752067618,698298832,137296536,3964562569,1160258022,953160567,3193202383,887688300,3232508343,3380367581,1065670069,3041331479,2450970073,2306472731],u=[[3509652390,2564797868,805139163,3491422135,3101798381,1780907670,3128725573,4046225305,614570311,3012652279,134345442,2240740374,1667834072,1901547113,2757295779,4103290238,227898511,1921955416,1904987480,2182433518,2069144605,3260701109,2620446009,720527379,3318853667,677414384,3393288472,3101374703,2390351024,1614419982,1822297739,2954791486,3608508353,3174124327,2024746970,1432378464,3864339955,2857741204,1464375394,1676153920,1439316330,715854006,3033291828,289532110,2706671279,2087905683,3018724369,1668267050,732546397,1947742710,3462151702,2609353502,2950085171,1814351708,2050118529,680887927,999245976,1800124847,3300911131,1713906067,1641548236,4213287313,1216130144,1575780402,4018429277,3917837745,3693486850,3949271944,596196993,3549867205,258830323,2213823033,772490370,2760122372,1774776394,2652871518,566650946,4142492826,1728879713,2882767088,1783734482,3629395816,2517608232,2874225571,1861159788,326777828,3124490320,2130389656,2716951837,967770486,1724537150,2185432712,2364442137,1164943284,2105845187,998989502,3765401048,2244026483,1075463327,1455516326,1322494562,910128902,469688178,1117454909,936433444,3490320968,3675253459,1240580251,122909385,2157517691,634681816,4142456567,3825094682,3061402683,2540495037,79693498,3249098678,1084186820,1583128258,426386531,1761308591,1047286709,322548459,995290223,1845252383,2603652396,3431023940,2942221577,3202600964,3727903485,1712269319,422464435,3234572375,1170764815,3523960633,3117677531,1434042557,442511882,3600875718,1076654713,1738483198,4213154764,2393238008,3677496056,1014306527,4251020053,793779912,2902807211,842905082,4246964064,1395751752,1040244610,2656851899,3396308128,445077038,3742853595,3577915638,679411651,2892444358,2354009459,1767581616,3150600392,3791627101,3102740896,284835224,4246832056,1258075500,768725851,2589189241,3069724005,3532540348,1274779536,3789419226,2764799539,1660621633,3471099624,4011903706,913787905,3497959166,737222580,2514213453,2928710040,3937242737,1804850592,3499020752,2949064160,2386320175,2390070455,2415321851,4061277028,2290661394,2416832540,1336762016,1754252060,3520065937,3014181293,791618072,3188594551,3933548030,2332172193,3852520463,3043980520,413987798,3465142937,3030929376,4245938359,2093235073,3534596313,375366246,2157278981,2479649556,555357303,3870105701,2008414854,3344188149,4221384143,3956125452,2067696032,3594591187,2921233993,2428461,544322398,577241275,1471733935,610547355,4027169054,1432588573,1507829418,2025931657,3646575487,545086370,48609733,2200306550,1653985193,298326376,1316178497,3007786442,2064951626,458293330,2589141269,3591329599,3164325604,727753846,2179363840,146436021,1461446943,4069977195,705550613,3059967265,3887724982,4281599278,3313849956,1404054877,2845806497,146425753,1854211946],[1266315497,3048417604,3681880366,3289982499,290971e4,1235738493,2632868024,2414719590,3970600049,1771706367,1449415276,3266420449,422970021,1963543593,2690192192,3826793022,1062508698,1531092325,1804592342,2583117782,2714934279,4024971509,1294809318,4028980673,1289560198,2221992742,1669523910,35572830,157838143,1052438473,1016535060,1802137761,1753167236,1386275462,3080475397,2857371447,1040679964,2145300060,2390574316,1461121720,2956646967,4031777805,4028374788,33600511,2920084762,1018524850,629373528,3691585981,3515945977,2091462646,2486323059,586499841,988145025,935516892,3367335476,2599673255,2839830854,265290510,3972581182,2759138881,3795373465,1005194799,847297441,406762289,1314163512,1332590856,1866599683,4127851711,750260880,613907577,1450815602,3165620655,3734664991,3650291728,3012275730,3704569646,1427272223,778793252,1343938022,2676280711,2052605720,1946737175,3164576444,3914038668,3967478842,3682934266,1661551462,3294938066,4011595847,840292616,3712170807,616741398,312560963,711312465,1351876610,322626781,1910503582,271666773,2175563734,1594956187,70604529,3617834859,1007753275,1495573769,4069517037,2549218298,2663038764,504708206,2263041392,3941167025,2249088522,1514023603,1998579484,1312622330,694541497,2582060303,2151582166,1382467621,776784248,2618340202,3323268794,2497899128,2784771155,503983604,4076293799,907881277,423175695,432175456,1378068232,4145222326,3954048622,3938656102,3820766613,2793130115,2977904593,26017576,3274890735,3194772133,1700274565,1756076034,4006520079,3677328699,720338349,1533947780,354530856,688349552,3973924725,1637815568,332179504,3949051286,53804574,2852348879,3044236432,1282449977,3583942155,3416972820,4006381244,1617046695,2628476075,3002303598,1686838959,431878346,2686675385,1700445008,1080580658,1009431731,832498133,3223435511,2605976345,2271191193,2516031870,1648197032,4164389018,2548247927,300782431,375919233,238389289,3353747414,2531188641,2019080857,1475708069,455242339,2609103871,448939670,3451063019,1395535956,2413381860,1841049896,1491858159,885456874,4264095073,4001119347,1565136089,3898914787,1108368660,540939232,1173283510,2745871338,3681308437,4207628240,3343053890,4016749493,1699691293,1103962373,3625875870,2256883143,3830138730,1031889488,3479347698,1535977030,4236805024,3251091107,2132092099,1774941330,1199868427,1452454533,157007616,2904115357,342012276,595725824,1480756522,206960106,497939518,591360097,863170706,2375253569,3596610801,1814182875,2094937945,3421402208,1082520231,3463918190,2785509508,435703966,3908032597,1641649973,2842273706,3305899714,1510255612,2148256476,2655287854,3276092548,4258621189,236887753,3681803219,274041037,1734335097,3815195456,3317970021,1899903192,1026095262,4050517792,356393447,2410691914,3873677099,3682840055],[3913112168,2491498743,4132185628,2489919796,1091903735,1979897079,3170134830,3567386728,3557303409,857797738,1136121015,1342202287,507115054,2535736646,337727348,3213592640,1301675037,2528481711,1895095763,1721773893,3216771564,62756741,2142006736,835421444,2531993523,1442658625,3659876326,2882144922,676362277,1392781812,170690266,3921047035,1759253602,3611846912,1745797284,664899054,1329594018,3901205900,3045908486,2062866102,2865634940,3543621612,3464012697,1080764994,553557557,3656615353,3996768171,991055499,499776247,1265440854,648242737,3940784050,980351604,3713745714,1749149687,3396870395,4211799374,3640570775,1161844396,3125318951,1431517754,545492359,4268468663,3499529547,1437099964,2702547544,3433638243,2581715763,2787789398,1060185593,1593081372,2418618748,4260947970,69676912,2159744348,86519011,2512459080,3838209314,1220612927,3339683548,133810670,1090789135,1078426020,1569222167,845107691,3583754449,4072456591,1091646820,628848692,1613405280,3757631651,526609435,236106946,48312990,2942717905,3402727701,1797494240,859738849,992217954,4005476642,2243076622,3870952857,3732016268,765654824,3490871365,2511836413,1685915746,3888969200,1414112111,2273134842,3281911079,4080962846,172450625,2569994100,980381355,4109958455,2819808352,2716589560,2568741196,3681446669,3329971472,1835478071,660984891,3704678404,4045999559,3422617507,3040415634,1762651403,1719377915,3470491036,2693910283,3642056355,3138596744,1364962596,2073328063,1983633131,926494387,3423689081,2150032023,4096667949,1749200295,3328846651,309677260,2016342300,1779581495,3079819751,111262694,1274766160,443224088,298511866,1025883608,3806446537,1145181785,168956806,3641502830,3584813610,1689216846,3666258015,3200248200,1692713982,2646376535,4042768518,1618508792,1610833997,3523052358,4130873264,2001055236,3610705100,2202168115,4028541809,2961195399,1006657119,2006996926,3186142756,1430667929,3210227297,1314452623,4074634658,4101304120,2273951170,1399257539,3367210612,3027628629,1190975929,2062231137,2333990788,2221543033,2438960610,1181637006,548689776,2362791313,3372408396,3104550113,3145860560,296247880,1970579870,3078560182,3769228297,1714227617,3291629107,3898220290,166772364,1251581989,493813264,448347421,195405023,2709975567,677966185,3703036547,1463355134,2715995803,1338867538,1343315457,2802222074,2684532164,233230375,2599980071,2000651841,3277868038,1638401717,4028070440,3237316320,6314154,819756386,300326615,590932579,1405279636,3267499572,3150704214,2428286686,3959192993,3461946742,1862657033,1266418056,963775037,2089974820,2263052895,1917689273,448879540,3550394620,3981727096,150775221,3627908307,1303187396,508620638,2975983352,2726630617,1817252668,1876281319,1457606340,908771278,3720792119,3617206836,2455994898,1729034894,1080033504],[976866871,3556439503,2881648439,1522871579,1555064734,1336096578,3548522304,2579274686,3574697629,3205460757,3593280638,3338716283,3079412587,564236357,2993598910,1781952180,1464380207,3163844217,3332601554,1699332808,1393555694,1183702653,3581086237,1288719814,691649499,2847557200,2895455976,3193889540,2717570544,1781354906,1676643554,2592534050,3230253752,1126444790,2770207658,2633158820,2210423226,2615765581,2414155088,3127139286,673620729,2805611233,1269405062,4015350505,3341807571,4149409754,1057255273,2012875353,2162469141,2276492801,2601117357,993977747,3918593370,2654263191,753973209,36408145,2530585658,25011837,3520020182,2088578344,530523599,2918365339,1524020338,1518925132,3760827505,3759777254,1202760957,3985898139,3906192525,674977740,4174734889,2031300136,2019492241,3983892565,4153806404,3822280332,352677332,2297720250,60907813,90501309,3286998549,1016092578,2535922412,2839152426,457141659,509813237,4120667899,652014361,1966332200,2975202805,55981186,2327461051,676427537,3255491064,2882294119,3433927263,1307055953,942726286,933058658,2468411793,3933900994,4215176142,1361170020,2001714738,2830558078,3274259782,1222529897,1679025792,2729314320,3714953764,1770335741,151462246,3013232138,1682292957,1483529935,471910574,1539241949,458788160,3436315007,1807016891,3718408830,978976581,1043663428,3165965781,1927990952,4200891579,2372276910,3208408903,3533431907,1412390302,2931980059,4132332400,1947078029,3881505623,4168226417,2941484381,1077988104,1320477388,886195818,18198404,3786409e3,2509781533,112762804,3463356488,1866414978,891333506,18488651,661792760,1628790961,3885187036,3141171499,876946877,2693282273,1372485963,791857591,2686433993,3759982718,3167212022,3472953795,2716379847,445679433,3561995674,3504004811,3574258232,54117162,3331405415,2381918588,3769707343,4154350007,1140177722,4074052095,668550556,3214352940,367459370,261225585,2610173221,4209349473,3468074219,3265815641,314222801,3066103646,3808782860,282218597,3406013506,3773591054,379116347,1285071038,846784868,2669647154,3771962079,3550491691,2305946142,453669953,1268987020,3317592352,3279303384,3744833421,2610507566,3859509063,266596637,3847019092,517658769,3462560207,3443424879,370717030,4247526661,2224018117,4143653529,4112773975,2788324899,2477274417,1456262402,2901442914,1517677493,1846949527,2295493580,3734397586,2176403920,1280348187,1908823572,3871786941,846861322,1172426758,3287448474,3383383037,1655181056,3139813346,901632758,1897031941,2986607138,3066810236,3447102507,1393639104,373351379,950779232,625454576,3124240540,4148612726,2007998917,544563296,2244738638,2330496472,2058025392,1291430526,424198748,50039436,29584100,3605783033,2429876329,2791104160,1057563949,3255363231,3075367218,3463963227,1469046755,985887462]],r={pbox:[],sbox:[]};function d(Q,I){var x=Q.sbox[0][I>>24&255]+Q.sbox[1][I>>16&255];return(x^=Q.sbox[2][I>>8&255])+Q.sbox[3][255&I]}function E(Q,I,R){for(var y,p=I,m=R,x=0;x=R&&(y=0);for(var Y=0,v=0,S=0,z=0;z1;--x)y=p^=Q.pbox[x],p=m=d(Q,p)^m,m=y;return y=p,p=m,m=y,{left:p^=Q.pbox[0],right:m^=Q.pbox[1]}}(r,I[R],I[R+1]);I[R]=p.left,I[R+1]=p.right},blockSize:2,keySize:4,ivSize:2});a.Blowfish=o._createHelper(h)}(),B.Blowfish)},28395:function(b,A,n){"use strict";var B,s,o,g,f,w,d,C,e,Q,I,R,m,x,v,S,F,$;n(39081),n(20731),n(23913),n(14032),n(57114),b.exports=(B=n(34559),n(36572),void(B.lib.Cipher||(f=(o=(s=B).lib).WordArray,d=s.enc.Base64,C=s.algo.EvpKDF,e=o.Cipher=(w=o.BufferedBlockAlgorithm).extend({cfg:(g=o.Base).extend(),createEncryptor:function(_,fA){return this.create(this._ENC_XFORM_MODE,_,fA)},createDecryptor:function(_,fA){return this.create(this._DEC_XFORM_MODE,_,fA)},init:function(_,fA,iA){this.cfg=this.cfg.extend(iA),this._xformMode=_,this._key=fA,this.reset()},reset:function(){w.reset.call(this),this._doReset()},process:function(_){return this._append(_),this._process()},finalize:function(_){return _&&this._append(_),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function gA(_){return"string"==typeof _?$:S}return function(_){return{encrypt:function(iA,wA,IA){return gA(wA).encrypt(_,iA,wA,IA)},decrypt:function(iA,wA,IA){return gA(wA).decrypt(_,iA,wA,IA)}}}}()}),o.StreamCipher=e.extend({_doFinalize:function(){return this._process(!0)},blockSize:1}),Q=s.mode={},I=o.BlockCipherMode=g.extend({createEncryptor:function(_,fA){return this.Encryptor.create(_,fA)},createDecryptor:function(_,fA){return this.Decryptor.create(_,fA)},init:function(_,fA){this._cipher=_,this._iv=fA}}),R=Q.CBC=function(){var gA=I.extend();function _(fA,iA,wA){var IA,FA=this._iv;FA?(IA=FA,this._iv=void 0):IA=this._prevBlock;for(var YA=0;YA>>2]}},o.BlockCipher=e.extend({cfg:e.cfg.extend({mode:R,padding:m}),reset:function(){var _;e.reset.call(this);var fA=this.cfg,iA=fA.iv,wA=fA.mode;this._xformMode==this._ENC_XFORM_MODE?_=wA.createEncryptor:(_=wA.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==_?this._mode.init(this,iA&&iA.words):(this._mode=_.call(wA,this,iA&&iA.words),this._mode.__creator=_)},_doProcessBlock:function(_,fA){this._mode.processBlock(_,fA)},_doFinalize:function(){var _,fA=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(fA.pad(this._data,this.blockSize),_=this._process(!0)):(_=this._process(!0),fA.unpad(_)),_},blockSize:4}),x=o.CipherParams=g.extend({init:function(_){this.mixIn(_)},toString:function(_){return(_||this.formatter).stringify(this)}}),v=(s.format={}).OpenSSL={stringify:function(_){var iA=_.ciphertext,wA=_.salt;return(wA?f.create([1398893684,1701076831]).concat(wA).concat(iA):iA).toString(d)},parse:function(_){var fA,iA=d.parse(_),wA=iA.words;return 1398893684==wA[0]&&1701076831==wA[1]&&(fA=f.create(wA.slice(2,4)),wA.splice(0,4),iA.sigBytes-=16),x.create({ciphertext:iA,salt:fA})}},S=o.SerializableCipher=g.extend({cfg:g.extend({format:v}),encrypt:function(_,fA,iA,wA){wA=this.cfg.extend(wA);var IA=_.createEncryptor(iA,wA),FA=IA.finalize(fA),YA=IA.cfg;return x.create({ciphertext:FA,key:iA,iv:YA.iv,algorithm:_,mode:YA.mode,padding:YA.padding,blockSize:_.blockSize,formatter:wA.format})},decrypt:function(_,fA,iA,wA){return wA=this.cfg.extend(wA),fA=this._parse(fA,wA.format),_.createDecryptor(iA,wA).finalize(fA.ciphertext)},_parse:function(_,fA){return"string"==typeof _?fA.parse(_,this):_}}),F=(s.kdf={}).OpenSSL={execute:function(_,fA,iA,wA,IA){if(wA||(wA=f.random(8)),IA)var FA=C.create({keySize:fA+iA,hasher:IA}).compute(_,wA);else FA=C.create({keySize:fA+iA}).compute(_,wA);var YA=f.create(FA.words.slice(fA),4*iA);return FA.sigBytes=4*fA,x.create({key:FA,iv:YA,salt:wA})}},$=o.PasswordBasedCipher=S.extend({cfg:S.cfg.extend({kdf:F}),encrypt:function(_,fA,iA,wA){var IA=(wA=this.cfg.extend(wA)).kdf.execute(iA,_.keySize,_.ivSize,wA.salt,wA.hasher);wA.iv=IA.iv;var FA=S.encrypt.call(this,_,fA,IA.key,wA);return FA.mixIn(IA),FA},decrypt:function(_,fA,iA,wA){wA=this.cfg.extend(wA),fA=this._parse(fA,wA.format);var IA=wA.kdf.execute(iA,_.keySize,_.ivSize,fA.salt,wA.hasher);return wA.iv=IA.iv,S.decrypt.call(this,_,fA,IA.key,wA)}}))))},34559:function(b,A,n){"use strict";var a;n(39081),n(81755),n(94845),n(20731),n(23913),n(14032),n(57114),n(59735),n(73663),n(29883),n(35471),n(21012),n(88997),n(97464),n(2857),n(94715),n(13624),n(91132),n(62514),n(24597),n(88042),n(4660),n(92451),n(44206),n(66288),n(13250),n(3858),n(84538),n(64793),n(74202),n(52529),n(49109),a=function(){var B=B||function(a,s){var o;if(typeof window<"u"&&window.crypto&&(o=window.crypto),typeof self<"u"&&self.crypto&&(o=self.crypto),typeof globalThis<"u"&&globalThis.crypto&&(o=globalThis.crypto),!o&&typeof window<"u"&&window.msCrypto&&(o=window.msCrypto),!o&&typeof n.g<"u"&&n.g.crypto&&(o=n.g.crypto),!o)try{o=n(50477)}catch{}var g=function(){if(o){if("function"==typeof o.getRandomValues)try{return o.getRandomValues(new Uint32Array(1))[0]}catch{}if("function"==typeof o.randomBytes)try{return o.randomBytes(4).readInt32LE()}catch{}}throw new Error("Native crypto module could not be used to get secure random number.")},f=Object.create||function(){function p(){}return function(m){var y;return p.prototype=m,y=new p,p.prototype=null,y}}(),w={},u=w.lib={},r=u.Base=function(){return{extend:function(m){var y=f(this);return m&&y.mixIn(m),(!y.hasOwnProperty("init")||this.init===y.init)&&(y.init=function(){y.$super.init.apply(this,arguments)}),y.init.prototype=y,y.$super=this,y},create:function(){var m=this.extend();return m.init.apply(m,arguments),m},init:function(){},mixIn:function(m){for(var y in m)m.hasOwnProperty(y)&&(this[y]=m[y]);m.hasOwnProperty("toString")&&(this.toString=m.toString)},clone:function(){return this.init.prototype.extend(this)}}}(),d=u.WordArray=r.extend({init:function(m,y){m=this.words=m||[],this.sigBytes=null!=y?y:4*m.length},toString:function(m){return(m||C).stringify(this)},concat:function(m){var y=this.words,x=m.words,Y=this.sigBytes,v=m.sigBytes;if(this.clamp(),Y%4)for(var S=0;S>>2]|=(x[S>>>2]>>>24-S%4*8&255)<<24-(Y+S)%4*8;else for(var F=0;F>>2]=x[F>>>2];return this.sigBytes+=v,this},clamp:function(){var m=this.words,y=this.sigBytes;m[y>>>2]&=4294967295<<32-y%4*8,m.length=a.ceil(y/4)},clone:function(){var m=r.clone.call(this);return m.words=this.words.slice(0),m},random:function(m){for(var y=[],x=0;x>>2]>>>24-v%4*8&255;Y.push((S>>>4).toString(16)),Y.push((15&S).toString(16))}return Y.join("")},parse:function(m){for(var y=m.length,x=[],Y=0;Y>>3]|=parseInt(m.substr(Y,2),16)<<24-Y%8*4;return new d.init(x,y/2)}},e=E.Latin1={stringify:function(m){for(var y=m.words,x=m.sigBytes,Y=[],v=0;v>>2]>>>24-v%4*8&255));return Y.join("")},parse:function(m){for(var y=m.length,x=[],Y=0;Y>>2]|=(255&m.charCodeAt(Y))<<24-Y%4*8;return new d.init(x,y)}},h=E.Utf8={stringify:function(m){try{return decodeURIComponent(escape(e.stringify(m)))}catch{throw new Error("Malformed UTF-8 data")}},parse:function(m){return e.parse(unescape(encodeURIComponent(m)))}},Q=u.BufferedBlockAlgorithm=r.extend({reset:function(){this._data=new d.init,this._nDataBytes=0},_append:function(m){"string"==typeof m&&(m=h.parse(m)),this._data.concat(m),this._nDataBytes+=m.sigBytes},_process:function(m){var y,x=this._data,Y=x.words,v=x.sigBytes,S=this.blockSize,F=v/(4*S),$=(F=m?a.ceil(F):a.max((0|F)-this._minBufferSize,0))*S,gA=a.min(4*$,v);if($){for(var _=0;_<$;_+=S)this._doProcessBlock(Y,_);y=Y.splice(0,$),x.sigBytes-=gA}return new d.init(y,gA)},clone:function(){var m=r.clone.call(this);return m._data=this._data.clone(),m},_minBufferSize:0}),R=(u.Hasher=Q.extend({cfg:r.extend(),init:function(m){this.cfg=this.cfg.extend(m),this.reset()},reset:function(){Q.reset.call(this),this._doReset()},update:function(m){return this._append(m),this._process(),this},finalize:function(m){return m&&this._append(m),this._doFinalize()},blockSize:16,_createHelper:function(m){return function(y,x){return new m.init(x).finalize(y)}},_createHmacHelper:function(m){return function(y,x){return new R.HMAC.init(m,x).finalize(y)}}}),w.algo={});return w}(Math);return B},b.exports=a()},49300:function(b,A,n){"use strict";var B,o;n(94845),b.exports=(B=n(34559),o=B.lib.WordArray,B.enc.Base64={stringify:function(r){var d=r.words,E=r.sigBytes,C=this._map;r.clamp();for(var e=[],h=0;h>>2]>>>24-h%4*8&255)<<16|(d[h+1>>>2]>>>24-(h+1)%4*8&255)<<8|d[h+2>>>2]>>>24-(h+2)%4*8&255,m=0;m<4&&h+.75*m>>6*(3-m)&63));var y=C.charAt(64);if(y)for(;e.length%4;)e.push(y);return e.join("")},parse:function(r){var d=r.length,E=this._map,C=this._reverseMap;if(!C){C=this._reverseMap=[];for(var e=0;e>>6-e%4*2;E[C>>>2]|=(h|Q)<<24-C%4*8,C++}return o.create(E,C)}(r,d,C)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="},B.enc.Base64)},375:function(b,A,n){"use strict";var B,o;n(94845),b.exports=(B=n(34559),o=B.lib.WordArray,B.enc.Base64url={stringify:function(r,d){void 0===d&&(d=!0);var E=r.words,C=r.sigBytes,e=d?this._safe_map:this._map;r.clamp();for(var h=[],Q=0;Q>>2]>>>24-Q%4*8&255)<<16|(E[Q+1>>>2]>>>24-(Q+1)%4*8&255)<<8|E[Q+2>>>2]>>>24-(Q+2)%4*8&255,y=0;y<4&&Q+.75*y>>6*(3-y)&63));var x=e.charAt(64);if(x)for(;h.length%4;)h.push(x);return h.join("")},parse:function(r,d){void 0===d&&(d=!0);var E=r.length,C=d?this._safe_map:this._map,e=this._reverseMap;if(!e){e=this._reverseMap=[];for(var h=0;h>>6-e%4*2;E[C>>>2]|=(h|Q)<<24-C%4*8,C++}return o.create(E,C)}(r,E,e)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"},B.enc.Base64url)},56217:function(b,A,n){"use strict";var B;n(94845),b.exports=(B=n(34559),function(){var o=B.lib.WordArray,g=B.enc;function w(u){return u<<8&4278255360|u>>>8&16711935}g.Utf16=g.Utf16BE={stringify:function(r){for(var d=r.words,E=r.sigBytes,C=[],e=0;e>>2]>>>16-e%4*8&65535));return C.join("")},parse:function(r){for(var d=r.length,E=[],C=0;C>>1]|=r.charCodeAt(C)<<16-C%2*16;return o.create(E,2*d)}},g.Utf16LE={stringify:function(r){for(var d=r.words,E=r.sigBytes,C=[],e=0;e>>2]>>>16-e%4*8&65535);C.push(String.fromCharCode(h))}return C.join("")},parse:function(r){for(var d=r.length,E=[],C=0;C>>1]|=w(r.charCodeAt(C)<<16-C%2*16);return o.create(E,2*d)}}}(),B.enc.Utf16)},36572:function(b,A,n){"use strict";var B,a,s,o,g,f,u;n(39081),b.exports=(B=n(34559),n(76289),n(30443),g=(s=(a=B).lib).WordArray,u=(f=a.algo).EvpKDF=(o=s.Base).extend({cfg:o.extend({keySize:4,hasher:f.MD5,iterations:1}),init:function(d){this.cfg=this.cfg.extend(d)},compute:function(d,E){for(var C,e=this.cfg,h=e.hasher.create(),Q=g.create(),I=Q.words,R=e.keySize,p=e.iterations;I.lengthe&&(E=d.finalize(E)),E.clamp();for(var h=this._oKey=E.clone(),Q=this._iKey=E.clone(),I=h.words,R=Q.words,p=0;p>>2]|=w[d]<<24-d%4*8;g.call(this,r,u)}else g.apply(this,arguments)};f.prototype=o}}(),B.lib.WordArray},b.exports=a(n(34559))},72342:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),function(a){var s=B,o=s.lib,g=o.WordArray,f=o.Hasher,w=s.algo,u=[];!function(){for(var h=0;h<64;h++)u[h]=4294967296*a.abs(a.sin(h+1))|0}();var r=w.MD5=f.extend({_doReset:function(){this._hash=new g.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(Q,I){for(var R=0;R<16;R++){var p=I+R,m=Q[p];Q[p]=16711935&(m<<8|m>>>24)|4278255360&(m<<24|m>>>8)}var y=this._hash.words,x=Q[I+0],Y=Q[I+1],v=Q[I+2],S=Q[I+3],z=Q[I+4],F=Q[I+5],$=Q[I+6],gA=Q[I+7],_=Q[I+8],fA=Q[I+9],iA=Q[I+10],wA=Q[I+11],IA=Q[I+12],FA=Q[I+13],YA=Q[I+14],HA=Q[I+15],J=y[0],BA=y[1],aA=y[2],eA=y[3];J=d(J,BA,aA,eA,x,7,u[0]),eA=d(eA,J,BA,aA,Y,12,u[1]),aA=d(aA,eA,J,BA,v,17,u[2]),BA=d(BA,aA,eA,J,S,22,u[3]),J=d(J,BA,aA,eA,z,7,u[4]),eA=d(eA,J,BA,aA,F,12,u[5]),aA=d(aA,eA,J,BA,$,17,u[6]),BA=d(BA,aA,eA,J,gA,22,u[7]),J=d(J,BA,aA,eA,_,7,u[8]),eA=d(eA,J,BA,aA,fA,12,u[9]),aA=d(aA,eA,J,BA,iA,17,u[10]),BA=d(BA,aA,eA,J,wA,22,u[11]),J=d(J,BA,aA,eA,IA,7,u[12]),eA=d(eA,J,BA,aA,FA,12,u[13]),aA=d(aA,eA,J,BA,YA,17,u[14]),J=E(J,BA=d(BA,aA,eA,J,HA,22,u[15]),aA,eA,Y,5,u[16]),eA=E(eA,J,BA,aA,$,9,u[17]),aA=E(aA,eA,J,BA,wA,14,u[18]),BA=E(BA,aA,eA,J,x,20,u[19]),J=E(J,BA,aA,eA,F,5,u[20]),eA=E(eA,J,BA,aA,iA,9,u[21]),aA=E(aA,eA,J,BA,HA,14,u[22]),BA=E(BA,aA,eA,J,z,20,u[23]),J=E(J,BA,aA,eA,fA,5,u[24]),eA=E(eA,J,BA,aA,YA,9,u[25]),aA=E(aA,eA,J,BA,S,14,u[26]),BA=E(BA,aA,eA,J,_,20,u[27]),J=E(J,BA,aA,eA,FA,5,u[28]),eA=E(eA,J,BA,aA,v,9,u[29]),aA=E(aA,eA,J,BA,gA,14,u[30]),J=C(J,BA=E(BA,aA,eA,J,IA,20,u[31]),aA,eA,F,4,u[32]),eA=C(eA,J,BA,aA,_,11,u[33]),aA=C(aA,eA,J,BA,wA,16,u[34]),BA=C(BA,aA,eA,J,YA,23,u[35]),J=C(J,BA,aA,eA,Y,4,u[36]),eA=C(eA,J,BA,aA,z,11,u[37]),aA=C(aA,eA,J,BA,gA,16,u[38]),BA=C(BA,aA,eA,J,iA,23,u[39]),J=C(J,BA,aA,eA,FA,4,u[40]),eA=C(eA,J,BA,aA,x,11,u[41]),aA=C(aA,eA,J,BA,S,16,u[42]),BA=C(BA,aA,eA,J,$,23,u[43]),J=C(J,BA,aA,eA,fA,4,u[44]),eA=C(eA,J,BA,aA,IA,11,u[45]),aA=C(aA,eA,J,BA,HA,16,u[46]),J=e(J,BA=C(BA,aA,eA,J,v,23,u[47]),aA,eA,x,6,u[48]),eA=e(eA,J,BA,aA,gA,10,u[49]),aA=e(aA,eA,J,BA,YA,15,u[50]),BA=e(BA,aA,eA,J,F,21,u[51]),J=e(J,BA,aA,eA,IA,6,u[52]),eA=e(eA,J,BA,aA,S,10,u[53]),aA=e(aA,eA,J,BA,iA,15,u[54]),BA=e(BA,aA,eA,J,Y,21,u[55]),J=e(J,BA,aA,eA,_,6,u[56]),eA=e(eA,J,BA,aA,HA,10,u[57]),aA=e(aA,eA,J,BA,$,15,u[58]),BA=e(BA,aA,eA,J,FA,21,u[59]),J=e(J,BA,aA,eA,z,6,u[60]),eA=e(eA,J,BA,aA,wA,10,u[61]),aA=e(aA,eA,J,BA,v,15,u[62]),BA=e(BA,aA,eA,J,fA,21,u[63]),y[0]=y[0]+J|0,y[1]=y[1]+BA|0,y[2]=y[2]+aA|0,y[3]=y[3]+eA|0},_doFinalize:function(){var Q=this._data,I=Q.words,R=8*this._nDataBytes,p=8*Q.sigBytes;I[p>>>5]|=128<<24-p%32;var m=a.floor(R/4294967296),y=R;I[15+(p+64>>>9<<4)]=16711935&(m<<8|m>>>24)|4278255360&(m<<24|m>>>8),I[14+(p+64>>>9<<4)]=16711935&(y<<8|y>>>24)|4278255360&(y<<24|y>>>8),Q.sigBytes=4*(I.length+1),this._process();for(var x=this._hash,Y=x.words,v=0;v<4;v++){var S=Y[v];Y[v]=16711935&(S<<8|S>>>24)|4278255360&(S<<24|S>>>8)}return x},clone:function(){var Q=f.clone.call(this);return Q._hash=this._hash.clone(),Q}});function d(h,Q,I,R,p,m,y){var x=h+(Q&I|~Q&R)+p+y;return(x<>>32-m)+Q}function E(h,Q,I,R,p,m,y){var x=h+(Q&R|I&~R)+p+y;return(x<>>32-m)+Q}function C(h,Q,I,R,p,m,y){var x=h+(Q^I^R)+p+y;return(x<>>32-m)+Q}function e(h,Q,I,R,p,m,y){var x=h+(I^(Q|~R))+p+y;return(x<>>32-m)+Q}s.MD5=f._createHelper(r),s.HmacMD5=f._createHmacHelper(r)}(Math),B.MD5)},2727:function(b,A,n){"use strict";var B;n(20731),b.exports=(B=n(34559),n(28395),B.mode.CFB=function(){var a=B.lib.BlockCipherMode.extend();function s(o,g,f,w){var u,r=this._iv;r?(u=r.slice(0),this._iv=void 0):u=this._prevBlock,w.encryptBlock(u,0);for(var d=0;d>24))f+=16777216;else{var w=f>>16&255,u=f>>8&255,r=255&f;255===w?(w=0,255===u?(u=0,255===r?r=0:++r):++u):++w,f=0,f+=w<<16,f+=u<<8,f+=r}return f}var g=a.Encryptor=a.extend({processBlock:function(w,u){var r=this._cipher,d=r.blockSize,E=this._iv,C=this._counter;E&&(C=this._counter=E.slice(0),this._iv=void 0),function o(f){return 0===(f[0]=s(f[0]))&&(f[1]=s(f[1])),f}(C);var e=C.slice(0);r.encryptBlock(e,0);for(var h=0;h>>2]|=w<<24-u%4*8,s.sigBytes+=w},unpad:function(s){s.sigBytes-=255&s.words[s.sigBytes-1>>>2]}},B.pad.Ansix923)},99215:function(b,A,n){"use strict";var B;n(39081),b.exports=(B=n(34559),n(28395),B.pad.Iso10126={pad:function(s,o){var g=4*o,f=g-s.sigBytes%g;s.concat(B.lib.WordArray.random(f-1)).concat(B.lib.WordArray.create([f<<24],1))},unpad:function(s){s.sigBytes-=255&s.words[s.sigBytes-1>>>2]}},B.pad.Iso10126)},43960:function(b,A,n){"use strict";var B;n(39081),b.exports=(B=n(34559),n(28395),B.pad.Iso97971={pad:function(s,o){s.concat(B.lib.WordArray.create([2147483648],1)),B.pad.ZeroPadding.pad(s,o)},unpad:function(s){B.pad.ZeroPadding.unpad(s),s.sigBytes--}},B.pad.Iso97971)},16934:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(28395),B.pad.NoPadding={pad:function(){},unpad:function(){}},B.pad.NoPadding)},40681:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(28395),B.pad.ZeroPadding={pad:function(s,o){var g=4*o;s.clamp(),s.sigBytes+=g-(s.sigBytes%g||g)},unpad:function(s){var o=s.words,g=s.sigBytes-1;for(g=s.sigBytes-1;g>=0;g--)if(o[g>>>2]>>>24-g%4*8&255){s.sigBytes=g+1;break}}},B.pad.ZeroPadding)},95729:function(b,A,n){"use strict";var B,a,s,o,g,f,u,r;n(39081),b.exports=(B=n(34559),n(26739),n(30443),g=(s=(a=B).lib).WordArray,u=(f=a.algo).HMAC,r=f.PBKDF2=(o=s.Base).extend({cfg:o.extend({keySize:4,hasher:f.SHA256,iterations:25e4}),init:function(E){this.cfg=this.cfg.extend(E)},compute:function(E,C){for(var e=this.cfg,h=u.create(e.hasher,E),Q=g.create(),I=g.create([1]),R=Q.words,p=I.words,m=e.keySize,y=e.iterations;R.length>>16,C[1],C[0]<<16|C[3]>>>16,C[2],C[1]<<16|C[0]>>>16,C[3],C[2]<<16|C[1]>>>16],Q=this._C=[C[2]<<16|C[2]>>>16,4294901760&C[0]|65535&C[1],C[3]<<16|C[3]>>>16,4294901760&C[1]|65535&C[2],C[0]<<16|C[0]>>>16,4294901760&C[2]|65535&C[3],C[1]<<16|C[1]>>>16,4294901760&C[3]|65535&C[0]];this._b=0;for(var I=0;I<4;I++)d.call(this);for(I=0;I<8;I++)Q[I]^=h[I+4&7];if(e){var R=e.words,p=R[0],m=R[1],y=16711935&(p<<8|p>>>24)|4278255360&(p<<24|p>>>8),x=16711935&(m<<8|m>>>24)|4278255360&(m<<24|m>>>8),Y=y>>>16|4294901760&x,v=x<<16|65535&y;for(Q[0]^=y,Q[1]^=Y,Q[2]^=x,Q[3]^=v,Q[4]^=y,Q[5]^=Y,Q[6]^=x,Q[7]^=v,I=0;I<4;I++)d.call(this)}},_doProcessBlock:function(C,e){var h=this._X;d.call(this),f[0]=h[0]^h[5]>>>16^h[3]<<16,f[1]=h[2]^h[7]>>>16^h[5]<<16,f[2]=h[4]^h[1]>>>16^h[7]<<16,f[3]=h[6]^h[3]>>>16^h[1]<<16;for(var Q=0;Q<4;Q++)f[Q]=16711935&(f[Q]<<8|f[Q]>>>24)|4278255360&(f[Q]<<24|f[Q]>>>8),C[e+Q]^=f[Q]},blockSize:4,ivSize:2});function d(){for(var E=this._X,C=this._C,e=0;e<8;e++)w[e]=C[e];for(C[0]=C[0]+1295307597+this._b|0,C[1]=C[1]+3545052371+(C[0]>>>0>>0?1:0)|0,C[2]=C[2]+886263092+(C[1]>>>0>>0?1:0)|0,C[3]=C[3]+1295307597+(C[2]>>>0>>0?1:0)|0,C[4]=C[4]+3545052371+(C[3]>>>0>>0?1:0)|0,C[5]=C[5]+886263092+(C[4]>>>0>>0?1:0)|0,C[6]=C[6]+1295307597+(C[5]>>>0>>0?1:0)|0,C[7]=C[7]+3545052371+(C[6]>>>0>>0?1:0)|0,this._b=C[7]>>>0>>0?1:0,e=0;e<8;e++){var h=E[e]+C[e],Q=65535&h,I=h>>>16;u[e]=((Q*Q>>>17)+Q*I>>>15)+I*I^((4294901760&h)*h|0)+((65535&h)*h|0)}E[0]=u[0]+(u[7]<<16|u[7]>>>16)+(u[6]<<16|u[6]>>>16)|0,E[1]=u[1]+(u[0]<<8|u[0]>>>24)+u[7]|0,E[2]=u[2]+(u[1]<<16|u[1]>>>16)+(u[0]<<16|u[0]>>>16)|0,E[3]=u[3]+(u[2]<<8|u[2]>>>24)+u[1]|0,E[4]=u[4]+(u[3]<<16|u[3]>>>16)+(u[2]<<16|u[2]>>>16)|0,E[5]=u[5]+(u[4]<<8|u[4]>>>24)+u[3]|0,E[6]=u[6]+(u[5]<<16|u[5]>>>16)+(u[4]<<16|u[4]>>>16)|0,E[7]=u[7]+(u[6]<<8|u[6]>>>24)+u[5]|0}a.RabbitLegacy=o._createHelper(r)}(),B.RabbitLegacy)},55380:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,o=a.lib.StreamCipher,f=[],w=[],u=[],r=a.algo.Rabbit=o.extend({_doReset:function(){for(var C=this._key.words,e=this.cfg.iv,h=0;h<4;h++)C[h]=16711935&(C[h]<<8|C[h]>>>24)|4278255360&(C[h]<<24|C[h]>>>8);var Q=this._X=[C[0],C[3]<<16|C[2]>>>16,C[1],C[0]<<16|C[3]>>>16,C[2],C[1]<<16|C[0]>>>16,C[3],C[2]<<16|C[1]>>>16],I=this._C=[C[2]<<16|C[2]>>>16,4294901760&C[0]|65535&C[1],C[3]<<16|C[3]>>>16,4294901760&C[1]|65535&C[2],C[0]<<16|C[0]>>>16,4294901760&C[2]|65535&C[3],C[1]<<16|C[1]>>>16,4294901760&C[3]|65535&C[0]];for(this._b=0,h=0;h<4;h++)d.call(this);for(h=0;h<8;h++)I[h]^=Q[h+4&7];if(e){var R=e.words,p=R[0],m=R[1],y=16711935&(p<<8|p>>>24)|4278255360&(p<<24|p>>>8),x=16711935&(m<<8|m>>>24)|4278255360&(m<<24|m>>>8),Y=y>>>16|4294901760&x,v=x<<16|65535&y;for(I[0]^=y,I[1]^=Y,I[2]^=x,I[3]^=v,I[4]^=y,I[5]^=Y,I[6]^=x,I[7]^=v,h=0;h<4;h++)d.call(this)}},_doProcessBlock:function(C,e){var h=this._X;d.call(this),f[0]=h[0]^h[5]>>>16^h[3]<<16,f[1]=h[2]^h[7]>>>16^h[5]<<16,f[2]=h[4]^h[1]>>>16^h[7]<<16,f[3]=h[6]^h[3]>>>16^h[1]<<16;for(var Q=0;Q<4;Q++)f[Q]=16711935&(f[Q]<<8|f[Q]>>>24)|4278255360&(f[Q]<<24|f[Q]>>>8),C[e+Q]^=f[Q]},blockSize:4,ivSize:2});function d(){for(var E=this._X,C=this._C,e=0;e<8;e++)w[e]=C[e];for(C[0]=C[0]+1295307597+this._b|0,C[1]=C[1]+3545052371+(C[0]>>>0>>0?1:0)|0,C[2]=C[2]+886263092+(C[1]>>>0>>0?1:0)|0,C[3]=C[3]+1295307597+(C[2]>>>0>>0?1:0)|0,C[4]=C[4]+3545052371+(C[3]>>>0>>0?1:0)|0,C[5]=C[5]+886263092+(C[4]>>>0>>0?1:0)|0,C[6]=C[6]+1295307597+(C[5]>>>0>>0?1:0)|0,C[7]=C[7]+3545052371+(C[6]>>>0>>0?1:0)|0,this._b=C[7]>>>0>>0?1:0,e=0;e<8;e++){var h=E[e]+C[e],Q=65535&h,I=h>>>16;u[e]=((Q*Q>>>17)+Q*I>>>15)+I*I^((4294901760&h)*h|0)+((65535&h)*h|0)}E[0]=u[0]+(u[7]<<16|u[7]>>>16)+(u[6]<<16|u[6]>>>16)|0,E[1]=u[1]+(u[0]<<8|u[0]>>>24)+u[7]|0,E[2]=u[2]+(u[1]<<16|u[1]>>>16)+(u[0]<<16|u[0]>>>16)|0,E[3]=u[3]+(u[2]<<8|u[2]>>>24)+u[1]|0,E[4]=u[4]+(u[3]<<16|u[3]>>>16)+(u[2]<<16|u[2]>>>16)|0,E[5]=u[5]+(u[4]<<8|u[4]>>>24)+u[3]|0,E[6]=u[6]+(u[5]<<16|u[5]>>>16)+(u[4]<<16|u[4]>>>16)|0,E[7]=u[7]+(u[6]<<8|u[6]>>>24)+u[5]|0}a.Rabbit=o._createHelper(r)}(),B.Rabbit)},76635:function(b,A,n){"use strict";var B;n(14032),n(68067),b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,o=a.lib.StreamCipher,g=a.algo,f=g.RC4=o.extend({_doReset:function(){for(var d=this._key,E=d.words,C=d.sigBytes,e=this._S=[],h=0;h<256;h++)e[h]=h;h=0;for(var Q=0;h<256;h++){var I=h%C,p=e[h];e[h]=e[Q=(Q+e[h]+(E[I>>>2]>>>24-I%4*8&255))%256],e[Q]=p}this._i=this._j=0},_doProcessBlock:function(d,E){d[E]^=w.call(this)},keySize:8,ivSize:0});function w(){for(var r=this._S,d=this._i,E=this._j,C=0,e=0;e<4;e++){var h=r[d=(d+1)%256];r[d]=r[E=(E+r[d])%256],r[E]=h,C|=r[(r[d]+r[E])%256]<<24-8*e}return this._i=d,this._j=E,C}a.RC4=o._createHelper(f);var u=g.RC4Drop=f.extend({cfg:f.cfg.extend({drop:192}),_doReset:function(){f._doReset.call(this);for(var d=this.cfg.drop;d>0;d--)w.call(this)}});a.RC4Drop=o._createHelper(u)}(),B.RC4)},76930:function(b,A,n){"use strict";var B;b.exports=(B=n(34559),function(a){var s=B,o=s.lib,g=o.WordArray,f=o.Hasher,w=s.algo,u=g.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),r=g.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),d=g.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),E=g.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),C=g.create([0,1518500249,1859775393,2400959708,2840853838]),e=g.create([1352829926,1548603684,1836072691,2053994217,0]),h=w.RIPEMD160=f.extend({_doReset:function(){this._hash=g.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(Y,v){for(var S=0;S<16;S++){var z=v+S,F=Y[z];Y[z]=16711935&(F<<8|F>>>24)|4278255360&(F<<24|F>>>8)}var FA,YA,HA,J,BA,aA,eA,EA,xA,OA,W,$=this._hash.words,gA=C.words,_=e.words,fA=u.words,iA=r.words,wA=d.words,IA=E.words;for(aA=FA=$[0],eA=YA=$[1],EA=HA=$[2],xA=J=$[3],OA=BA=$[4],S=0;S<80;S+=1)W=FA+Y[v+fA[S]]|0,W+=S<16?Q(YA,HA,J)+gA[0]:S<32?I(YA,HA,J)+gA[1]:S<48?R(YA,HA,J)+gA[2]:S<64?p(YA,HA,J)+gA[3]:m(YA,HA,J)+gA[4],W=(W=y(W|=0,wA[S]))+BA|0,FA=BA,BA=J,J=y(HA,10),HA=YA,YA=W,W=aA+Y[v+iA[S]]|0,W+=S<16?m(eA,EA,xA)+_[0]:S<32?p(eA,EA,xA)+_[1]:S<48?R(eA,EA,xA)+_[2]:S<64?I(eA,EA,xA)+_[3]:Q(eA,EA,xA)+_[4],W=(W=y(W|=0,IA[S]))+OA|0,aA=OA,OA=xA,xA=y(EA,10),EA=eA,eA=W;W=$[1]+HA+xA|0,$[1]=$[2]+J+OA|0,$[2]=$[3]+BA+aA|0,$[3]=$[4]+FA+eA|0,$[4]=$[0]+YA+EA|0,$[0]=W},_doFinalize:function(){var Y=this._data,v=Y.words,S=8*this._nDataBytes,z=8*Y.sigBytes;v[z>>>5]|=128<<24-z%32,v[14+(z+64>>>9<<4)]=16711935&(S<<8|S>>>24)|4278255360&(S<<24|S>>>8),Y.sigBytes=4*(v.length+1),this._process();for(var F=this._hash,$=F.words,gA=0;gA<5;gA++){var _=$[gA];$[gA]=16711935&(_<<8|_>>>24)|4278255360&(_<<24|_>>>8)}return F},clone:function(){var Y=f.clone.call(this);return Y._hash=this._hash.clone(),Y}});function Q(x,Y,v){return x^Y^v}function I(x,Y,v){return x&Y|~x&v}function R(x,Y,v){return(x|~Y)^v}function p(x,Y,v){return x&v|Y&~v}function m(x,Y,v){return x^(Y|~v)}function y(x,Y){return x<>>32-Y}s.RIPEMD160=f._createHelper(h),s.HmacRIPEMD160=f._createHmacHelper(h)}(Math),B.RIPEMD160)},76289:function(b,A,n){"use strict";var B,a,s,o,g,w,u;b.exports=(B=n(34559),o=(s=(a=B).lib).WordArray,w=[],u=a.algo.SHA1=(g=s.Hasher).extend({_doReset:function(){this._hash=new o.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(d,E){for(var C=this._hash.words,e=C[0],h=C[1],Q=C[2],I=C[3],R=C[4],p=0;p<80;p++){if(p<16)w[p]=0|d[E+p];else{var m=w[p-3]^w[p-8]^w[p-14]^w[p-16];w[p]=m<<1|m>>>31}var y=(e<<5|e>>>27)+R+w[p];y+=p<20?1518500249+(h&Q|~h&I):p<40?1859775393+(h^Q^I):p<60?(h&Q|h&I|Q&I)-1894007588:(h^Q^I)-899497514,R=I,I=Q,Q=h<<30|h>>>2,h=e,e=y}C[0]=C[0]+e|0,C[1]=C[1]+h|0,C[2]=C[2]+Q|0,C[3]=C[3]+I|0,C[4]=C[4]+R|0},_doFinalize:function(){var d=this._data,E=d.words,C=8*this._nDataBytes,e=8*d.sigBytes;return E[e>>>5]|=128<<24-e%32,E[14+(e+64>>>9<<4)]=Math.floor(C/4294967296),E[15+(e+64>>>9<<4)]=C,d.sigBytes=4*E.length,this._process(),this._hash},clone:function(){var d=g.clone.call(this);return d._hash=this._hash.clone(),d}}),a.SHA1=g._createHelper(u),a.HmacSHA1=g._createHmacHelper(u),B.SHA1)},75230:function(b,A,n){"use strict";var B,a,o,g,f,w;b.exports=(B=n(34559),n(26739),o=(a=B).lib.WordArray,w=(g=a.algo).SHA224=(f=g.SHA256).extend({_doReset:function(){this._hash=new o.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var r=f._doFinalize.call(this);return r.sigBytes-=4,r}}),a.SHA224=f._createHelper(w),a.HmacSHA224=f._createHmacHelper(w),B.SHA224)},26739:function(b,A,n){"use strict";var B;n(20731),b.exports=(B=n(34559),function(a){var s=B,o=s.lib,g=o.WordArray,f=o.Hasher,w=s.algo,u=[],r=[];!function(){function C(I){for(var R=a.sqrt(I),p=2;p<=R;p++)if(!(I%p))return!1;return!0}function e(I){return 4294967296*(I-(0|I))|0}for(var h=2,Q=0;Q<64;)C(h)&&(Q<8&&(u[Q]=e(a.pow(h,.5))),r[Q]=e(a.pow(h,.3333333333333333)),Q++),h++}();var d=[],E=w.SHA256=f.extend({_doReset:function(){this._hash=new g.init(u.slice(0))},_doProcessBlock:function(e,h){for(var Q=this._hash.words,I=Q[0],R=Q[1],p=Q[2],m=Q[3],y=Q[4],x=Q[5],Y=Q[6],v=Q[7],S=0;S<64;S++){if(S<16)d[S]=0|e[h+S];else{var z=d[S-15],$=d[S-2];d[S]=((z<<25|z>>>7)^(z<<14|z>>>18)^z>>>3)+d[S-7]+(($<<15|$>>>17)^($<<13|$>>>19)^$>>>10)+d[S-16]}var fA=I&R^I&p^R&p,IA=v+((y<<26|y>>>6)^(y<<21|y>>>11)^(y<<7|y>>>25))+(y&x^~y&Y)+r[S]+d[S];v=Y,Y=x,x=y,y=m+IA|0,m=p,p=R,R=I,I=IA+(((I<<30|I>>>2)^(I<<19|I>>>13)^(I<<10|I>>>22))+fA)|0}Q[0]=Q[0]+I|0,Q[1]=Q[1]+R|0,Q[2]=Q[2]+p|0,Q[3]=Q[3]+m|0,Q[4]=Q[4]+y|0,Q[5]=Q[5]+x|0,Q[6]=Q[6]+Y|0,Q[7]=Q[7]+v|0},_doFinalize:function(){var e=this._data,h=e.words,Q=8*this._nDataBytes,I=8*e.sigBytes;return h[I>>>5]|=128<<24-I%32,h[14+(I+64>>>9<<4)]=a.floor(Q/4294967296),h[15+(I+64>>>9<<4)]=Q,e.sigBytes=4*h.length,this._process(),this._hash},clone:function(){var e=f.clone.call(this);return e._hash=this._hash.clone(),e}});s.SHA256=f._createHelper(E),s.HmacSHA256=f._createHmacHelper(E)}(Math),B.SHA256)},80767:function(b,A,n){"use strict";var B;n(20731),b.exports=(B=n(34559),n(26478),function(a){var s=B,o=s.lib,g=o.WordArray,f=o.Hasher,u=s.x64.Word,r=s.algo,d=[],E=[],C=[];!function(){for(var Q=1,I=0,R=0;R<24;R++){d[Q+5*I]=(R+1)*(R+2)/2%64;var m=(2*Q+3*I)%5;Q=I%5,I=m}for(Q=0;Q<5;Q++)for(I=0;I<5;I++)E[Q+5*I]=I+(2*Q+3*I)%5*5;for(var y=1,x=0;x<24;x++){for(var Y=0,v=0,S=0;S<7;S++){if(1&y){var z=(1<>>24)|4278255360&(x<<24|x>>>8),(v=p[y]).high^=Y=16711935&(Y<<8|Y>>>24)|4278255360&(Y<<24|Y>>>8),v.low^=x}for(var S=0;S<24;S++){for(var z=0;z<5;z++){for(var F=0,$=0,gA=0;gA<5;gA++)F^=(v=p[z+5*gA]).high,$^=v.low;var _=e[z];_.high=F,_.low=$}for(z=0;z<5;z++){var fA=e[(z+4)%5],iA=e[(z+1)%5],wA=iA.high,IA=iA.low;for(F=fA.high^(wA<<1|IA>>>31),$=fA.low^(IA<<1|wA>>>31),gA=0;gA<5;gA++)(v=p[z+5*gA]).high^=F,v.low^=$}for(var FA=1;FA<25;FA++){var YA=(v=p[FA]).high,HA=v.low,J=d[FA];J<32?(F=YA<>>32-J,$=HA<>>32-J):(F=HA<>>64-J,$=YA<>>64-J);var BA=e[E[FA]];BA.high=F,BA.low=$}var aA=e[0],eA=p[0];for(aA.high=eA.high,aA.low=eA.low,z=0;z<5;z++)for(gA=0;gA<5;gA++){var EA=e[FA=z+5*gA],xA=e[(z+1)%5+5*gA],OA=e[(z+2)%5+5*gA];(v=p[FA]).high=EA.high^~xA.high&OA.high,v.low=EA.low^~xA.low&OA.low}var v,W=C[S];(v=p[0]).high^=W.high,v.low^=W.low}},_doFinalize:function(){var I=this._data,R=I.words,m=8*I.sigBytes,y=32*this.blockSize;R[m>>>5]|=1<<24-m%32,R[(a.ceil((m+1)/y)*y>>>5)-1]|=128,I.sigBytes=4*R.length,this._process();for(var x=this._state,Y=this.cfg.outputLength/8,v=Y/8,S=[],z=0;z>>24)|4278255360&($<<24|$>>>8),S.push(gA=16711935&(gA<<8|gA>>>24)|4278255360&(gA<<24|gA>>>8)),S.push($)}return new g.init(S,Y)},clone:function(){for(var I=f.clone.call(this),R=I._state=this._state.slice(0),p=0;p<25;p++)R[p]=R[p].clone();return I}});s.SHA3=f._createHelper(h),s.HmacSHA3=f._createHmacHelper(h)}(Math),B.SHA3)},371:function(b,A,n){"use strict";var B,a,s,o,g,f,w,u;b.exports=(B=n(34559),n(26478),n(97074),o=(s=(a=B).x64).Word,g=s.WordArray,u=(f=a.algo).SHA384=(w=f.SHA512).extend({_doReset:function(){this._hash=new g.init([new o.init(3418070365,3238371032),new o.init(1654270250,914150663),new o.init(2438529370,812702999),new o.init(355462360,4144912697),new o.init(1731405415,4290775857),new o.init(2394180231,1750603025),new o.init(3675008525,1694076839),new o.init(1203062813,3204075428)])},_doFinalize:function(){var d=w._doFinalize.call(this);return d.sigBytes-=16,d}}),a.SHA384=w._createHelper(u),a.HmacSHA384=w._createHmacHelper(u),B.SHA384)},97074:function(b,A,n){"use strict";var a;a=function(B){return function(){var a=B,o=a.lib.Hasher,g=a.x64,f=g.Word,w=g.WordArray,u=a.algo;function r(){return f.create.apply(f,arguments)}var d=[r(1116352408,3609767458),r(1899447441,602891725),r(3049323471,3964484399),r(3921009573,2173295548),r(961987163,4081628472),r(1508970993,3053834265),r(2453635748,2937671579),r(2870763221,3664609560),r(3624381080,2734883394),r(310598401,1164996542),r(607225278,1323610764),r(1426881987,3590304994),r(1925078388,4068182383),r(2162078206,991336113),r(2614888103,633803317),r(3248222580,3479774868),r(3835390401,2666613458),r(4022224774,944711139),r(264347078,2341262773),r(604807628,2007800933),r(770255983,1495990901),r(1249150122,1856431235),r(1555081692,3175218132),r(1996064986,2198950837),r(2554220882,3999719339),r(2821834349,766784016),r(2952996808,2566594879),r(3210313671,3203337956),r(3336571891,1034457026),r(3584528711,2466948901),r(113926993,3758326383),r(338241895,168717936),r(666307205,1188179964),r(773529912,1546045734),r(1294757372,1522805485),r(1396182291,2643833823),r(1695183700,2343527390),r(1986661051,1014477480),r(2177026350,1206759142),r(2456956037,344077627),r(2730485921,1290863460),r(2820302411,3158454273),r(3259730800,3505952657),r(3345764771,106217008),r(3516065817,3606008344),r(3600352804,1432725776),r(4094571909,1467031594),r(275423344,851169720),r(430227734,3100823752),r(506948616,1363258195),r(659060556,3750685593),r(883997877,3785050280),r(958139571,3318307427),r(1322822218,3812723403),r(1537002063,2003034995),r(1747873779,3602036899),r(1955562222,1575990012),r(2024104815,1125592928),r(2227730452,2716904306),r(2361852424,442776044),r(2428436474,593698344),r(2756734187,3733110249),r(3204031479,2999351573),r(3329325298,3815920427),r(3391569614,3928383900),r(3515267271,566280711),r(3940187606,3454069534),r(4118630271,4000239992),r(116418474,1914138554),r(174292421,2731055270),r(289380356,3203993006),r(460393269,320620315),r(685471733,587496836),r(852142971,1086792851),r(1017036298,365543100),r(1126000580,2618297676),r(1288033470,3409855158),r(1501505948,4234509866),r(1607167915,987167468),r(1816402316,1246189591)],E=[];!function(){for(var e=0;e<80;e++)E[e]=r()}();var C=u.SHA512=o.extend({_doReset:function(){this._hash=new w.init([new f.init(1779033703,4089235720),new f.init(3144134277,2227873595),new f.init(1013904242,4271175723),new f.init(2773480762,1595750129),new f.init(1359893119,2917565137),new f.init(2600822924,725511199),new f.init(528734635,4215389547),new f.init(1541459225,327033209)])},_doProcessBlock:function(h,Q){for(var I=this._hash.words,R=I[0],p=I[1],m=I[2],y=I[3],x=I[4],Y=I[5],v=I[6],S=I[7],z=R.high,F=R.low,$=p.high,gA=p.low,_=m.high,fA=m.low,iA=y.high,wA=y.low,IA=x.high,FA=x.low,YA=Y.high,HA=Y.low,J=v.high,BA=v.low,aA=S.high,eA=S.low,EA=z,xA=F,OA=$,W=gA,L=_,rA=fA,AA=iA,QA=wA,yA=IA,cA=FA,CA=YA,DA=HA,NA=J,zA=BA,pA=aA,JA=eA,ft=0;ft<80;ft++){var wt,gt,pt=E[ft];if(ft<16)gt=pt.high=0|h[Q+2*ft],wt=pt.low=0|h[Q+2*ft+1];else{var Yt=E[ft-15],VA=Yt.high,_A=Yt.low,ht=(_A>>>1|VA<<31)^(_A>>>8|VA<<24)^(_A>>>7|VA<<25),vt=E[ft-2],Nt=vt.high,vA=vt.low,Z=(vA>>>19|Nt<<13)^(vA<<3|Nt>>>29)^(vA>>>6|Nt<<26),k=E[ft-7],q=E[ft-16],At=q.low;pt.high=gt=(gt=(gt=((VA>>>1|_A<<31)^(VA>>>8|_A<<24)^VA>>>7)+k.high+((wt=ht+k.low)>>>0>>0?1:0))+((Nt>>>19|vA<<13)^(Nt<<3|vA>>>29)^Nt>>>6)+((wt+=Z)>>>0>>0?1:0))+q.high+((wt+=At)>>>0>>0?1:0),pt.low=wt}var $t,O=yA&CA^~yA&NA,qA=cA&DA^~cA&zA,nt=EA&OA^EA&L^OA&L,ot=(xA>>>28|EA<<4)^(xA<<30|EA>>>2)^(xA<<25|EA>>>7),Ut=d[ft],sn=Ut.low,Kt=pA+((yA>>>14|cA<<18)^(yA>>>18|cA<<14)^(yA<<23|cA>>>9))+(($t=JA+((cA>>>14|yA<<18)^(cA>>>18|yA<<14)^(cA<<23|yA>>>9)))>>>0>>0?1:0),Me=ot+(xA&W^xA&rA^W&rA);pA=NA,JA=zA,NA=CA,zA=DA,CA=yA,DA=cA,yA=AA+(Kt=(Kt=(Kt=Kt+O+(($t+=qA)>>>0>>0?1:0))+Ut.high+(($t+=sn)>>>0>>0?1:0))+gt+(($t+=wt)>>>0>>0?1:0))+((cA=QA+$t|0)>>>0>>0?1:0)|0,AA=L,QA=rA,L=OA,rA=W,OA=EA,W=xA,EA=Kt+(((EA>>>28|xA<<4)^(EA<<30|xA>>>2)^(EA<<25|xA>>>7))+nt+(Me>>>0>>0?1:0))+((xA=$t+Me|0)>>>0<$t>>>0?1:0)|0}F=R.low=F+xA,R.high=z+EA+(F>>>0>>0?1:0),gA=p.low=gA+W,p.high=$+OA+(gA>>>0>>0?1:0),fA=m.low=fA+rA,m.high=_+L+(fA>>>0>>0?1:0),wA=y.low=wA+QA,y.high=iA+AA+(wA>>>0>>0?1:0),FA=x.low=FA+cA,x.high=IA+yA+(FA>>>0>>0?1:0),HA=Y.low=HA+DA,Y.high=YA+CA+(HA>>>0>>0?1:0),BA=v.low=BA+zA,v.high=J+NA+(BA>>>0>>0?1:0),eA=S.low=eA+JA,S.high=aA+pA+(eA>>>0>>0?1:0)},_doFinalize:function(){var h=this._data,Q=h.words,I=8*this._nDataBytes,R=8*h.sigBytes;return Q[R>>>5]|=128<<24-R%32,Q[30+(R+128>>>10<<5)]=Math.floor(I/4294967296),Q[31+(R+128>>>10<<5)]=I,h.sigBytes=4*Q.length,this._process(),this._hash.toX32()},clone:function(){var h=o.clone.call(this);return h._hash=this._hash.clone(),h},blockSize:32});a.SHA512=o._createHelper(C),a.HmacSHA512=o._createHmacHelper(C)}(),B.SHA512},b.exports=a(n(34559),n(26478))},64390:function(b,A,n){"use strict";var B;n(20731),b.exports=(B=n(34559),n(49300),n(72342),n(36572),n(28395),function(){var a=B,s=a.lib,o=s.WordArray,g=s.BlockCipher,f=a.algo,w=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],u=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],r=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],d=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],E=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],C=f.DES=g.extend({_doReset:function(){for(var p=this._key.words,m=[],y=0;y<56;y++){var x=w[y]-1;m[y]=p[x>>>5]>>>31-x%32&1}for(var Y=this._subKeys=[],v=0;v<16;v++){var S=Y[v]=[],z=r[v];for(y=0;y<24;y++)S[y/6|0]|=m[(u[y]-1+z)%28]<<31-y%6,S[4+(y/6|0)]|=m[28+(u[y+24]-1+z)%28]<<31-y%6;for(S[0]=S[0]<<1|S[0]>>>31,y=1;y<7;y++)S[y]=S[y]>>>4*(y-1)+3;S[7]=S[7]<<5|S[7]>>>27}var F=this._invSubKeys=[];for(y=0;y<16;y++)F[y]=Y[15-y]},encryptBlock:function(R,p){this._doCryptBlock(R,p,this._subKeys)},decryptBlock:function(R,p){this._doCryptBlock(R,p,this._invSubKeys)},_doCryptBlock:function(R,p,m){this._lBlock=R[p],this._rBlock=R[p+1],e.call(this,4,252645135),e.call(this,16,65535),h.call(this,2,858993459),h.call(this,8,16711935),e.call(this,1,1431655765);for(var y=0;y<16;y++){for(var x=m[y],Y=this._lBlock,v=this._rBlock,S=0,z=0;z<8;z++)S|=d[z][((v^x[z])&E[z])>>>0];this._lBlock=v,this._rBlock=Y^S}var F=this._lBlock;this._lBlock=this._rBlock,this._rBlock=F,e.call(this,1,1431655765),h.call(this,8,16711935),h.call(this,2,858993459),e.call(this,16,65535),e.call(this,4,252645135),R[p]=this._lBlock,R[p+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});function e(I,R){var p=(this._lBlock>>>I^this._rBlock)&R;this._rBlock^=p,this._lBlock^=p<>>I^this._lBlock)&R;this._lBlock^=p,this._rBlock^=p<192.");var m=p.slice(0,2),y=p.length<4?p.slice(0,2):p.slice(2,4),x=p.length<6?p.slice(0,2):p.slice(4,6);this._des1=C.createEncryptor(o.create(m)),this._des2=C.createEncryptor(o.create(y)),this._des3=C.createEncryptor(o.create(x))},encryptBlock:function(R,p){this._des1.encryptBlock(R,p),this._des2.decryptBlock(R,p),this._des3.encryptBlock(R,p)},decryptBlock:function(R,p){this._des3.decryptBlock(R,p),this._des2.encryptBlock(R,p),this._des1.decryptBlock(R,p)},keySize:6,ivSize:2,blockSize:2});a.TripleDES=g._createHelper(Q)}(),B.TripleDES)},26478:function(b,A,n){"use strict";var B,o,g,f,w;n(20731),b.exports=(B=n(34559),g=(o=B.lib).Base,f=o.WordArray,(w=B.x64={}).Word=g.extend({init:function(E,C){this.high=E,this.low=C}}),w.WordArray=g.extend({init:function(E,C){E=this.words=E||[],this.sigBytes=null!=C?C:8*E.length},toX32:function(){for(var E=this.words,C=E.length,e=[],h=0;h=u.length?{done:!0}:{done:!1,value:u[E++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function s(u,r){(null==r||r>u.length)&&(r=u.length);for(var d=0,E=new Array(r);d=0;--W){var L=this.tryEntries[W],rA=L.completion;if("root"===L.tryLoc)return OA("end");if(L.tryLoc<=this.prev){var AA=E.call(L,"catchLoc"),QA=E.call(L,"finallyLoc");if(AA&&QA){if(this.prev=0;--OA){var W=this.tryEntries[OA];if(W.tryLoc<=this.prev&&E.call(W,"finallyLoc")&&this.prev=0;--xA){var OA=this.tryEntries[xA];if(OA.finallyLoc===EA)return this.complete(OA.completion,OA.afterLoc),J(OA),S}},catch:function(EA){for(var xA=this.tryEntries.length-1;xA>=0;--xA){var OA=this.tryEntries[xA];if(OA.tryLoc===EA){var W=OA.completion;if("throw"===W.type){var L=W.arg;J(OA)}return L}}throw new Error("illegal catch attempt")},delegateYield:function(EA,xA,OA){return this.delegate={iterator:aA(EA),resultName:xA,nextLoc:OA},"next"===this.method&&(this.arg=u),S}},r}n(35877),n(38178),n(11765),n(24863),n(43448),n(63956),n(71950),n(68067),n(57114),n(42437),n(65292),n(73844),n(69330),n(81755),n(20731),n(14032),n(61726),n(58281),n(6422),n(94712);b.exports=function(){function u(d){this.stateTable=d.stateTable,this.accepting=d.accepting,this.tags=d.tags}var r=u.prototype;return r.match=function(E){var C,e=this;return(C={})[Symbol.iterator]=o().mark(function h(){var Q,I,R,p,m,y;return o().wrap(function(Y){for(;;)switch(Y.prev=Y.next){case 0:Q=1,I=null,R=null,p=null,m=0;case 5:if(!(m=I)){Y.next=13;break}return Y.next=13,[I,R,e.tags[p]];case 13:Q=e.stateTable[1][y],I=null;case 15:0!==Q&&null==I&&(I=m),e.accepting[Q]&&(R=m),0===Q&&(Q=1);case 18:m++,Y.next=5;break;case 21:if(!(null!=I&&null!=R&&R>=I)){Y.next=24;break}return Y.next=24,[I,R,e.tags[Q]];case 24:case"end":return Y.stop()}},h)}),C},r.apply=function(E,C){for(var h,e=B(this.match(E));!(h=e()).done;)for(var y,Q=h.value,I=Q[0],R=Q[1],m=B(Q[2]);!(y=m()).done;){var x=y.value;"function"==typeof C[x]&&C[x](I,R,E.slice(I,R+1))}},u}()},80646:function(b,A,n){"use strict";var B=n(50621).Buffer;n(58028),n(20731),n(14032),n(68067);var a=n(48181),s=n(6729);b.exports=function(){function o(f){var w;for(this.data=f,this.pos=8,this.palette=[],this.imgData=[],this.transparency={},this.text={};;){var u=this.readUInt32(),r="";for(w=0;w<4;w++)r+=String.fromCharCode(this.data[this.pos++]);switch(r){case"IHDR":this.width=this.readUInt32(),this.height=this.readUInt32(),this.bits=this.data[this.pos++],this.colorType=this.data[this.pos++],this.compressionMethod=this.data[this.pos++],this.filterMethod=this.data[this.pos++],this.interlaceMethod=this.data[this.pos++];break;case"PLTE":this.palette=this.read(u);break;case"IDAT":for(w=0;w0)for(w=0;wthis.data.length)throw new Error("Incomplete or corrupt PNG file")}}o.decode=function(w,u){return a.readFile(w,function(r,d){return new o(d).decode(function(C){return u(C)})})},o.load=function(w){return new o(a.readFileSync(w))};var g=o.prototype;return g.read=function(w){for(var u=new Array(w),r=0;r"u")throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof w);return s(w,u,r)}),f.alloc||(f.alloc=function(w,u,r){if("number"!=typeof w)throw new TypeError('The "size" argument must be of type number. Received type '+typeof w);if(w<0||w>=2147483648)throw new RangeError('The value "'+w+'" is invalid for option "size"');var d=s(w);return u&&0!==u.length?"string"==typeof r?d.fill(u,r):d.fill(u):d.fill(0),d}),!o.kStringMaxLength)try{o.kStringMaxLength=B.binding("buffer").kStringMaxLength}catch{}o.constants||(o.constants={MAX_LENGTH:o.kMaxLength},o.kStringMaxLength&&(o.constants.MAX_STRING_LENGTH=o.kStringMaxLength)),b.exports=o},57540:function(b,A,n){"use strict";function B(Q,I){var R=Object.keys(Q);if(Object.getOwnPropertySymbols){var p=Object.getOwnPropertySymbols(Q);I&&(p=p.filter(function(m){return Object.getOwnPropertyDescriptor(Q,m).enumerable})),R.push.apply(R,p)}return R}function a(Q){for(var I=1;I0?this.tail.next=p:this.head=p,this.tail=p,++this.length}},{key:"unshift",value:function(R){var p={data:R,next:this.head};0===this.length&&(this.tail=p),this.head=p,++this.length}},{key:"shift",value:function(){if(0!==this.length){var R=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,R}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(R){if(0===this.length)return"";for(var p=this.head,m=""+p.data;p=p.next;)m+=R+p.data;return m}},{key:"concat",value:function(R){if(0===this.length)return d.alloc(0);for(var p=d.allocUnsafe(R>>>0),m=this.head,y=0;m;)h(m.data,p,y),y+=m.data.length,m=m.next;return p}},{key:"consume",value:function(R,p){var m;return Rx.length?x.length:R;if(y+=Y===x.length?x:x.slice(0,R),0==(R-=Y)){Y===x.length?(++m,this.head=p.next?p.next:this.tail=null):(this.head=p,p.data=x.slice(Y));break}++m}return this.length-=m,y}},{key:"_getBuffer",value:function(R){var p=d.allocUnsafe(R),m=this.head,y=1;for(m.data.copy(p),R-=m.data.length;m=m.next;){var x=m.data,Y=R>x.length?x.length:R;if(x.copy(p,p.length-R,0,Y),0==(R-=Y)){Y===x.length?(++y,this.head=m.next?m.next:this.tail=null):(this.head=m,m.data=x.slice(Y));break}++y}return this.length-=y,p}},{key:e,value:function(R,p){return C(this,a(a({},p),{},{depth:0,customInspect:!1}))}}]),Q}()},72361:function(b,A,n){"use strict";n(41584);var B=n(50621),a=B.Buffer;function s(g,f){for(var w in g)f[w]=g[w]}function o(g,f,w){return a(g,f,w)}a.from&&a.alloc&&a.allocUnsafe&&a.allocUnsafeSlow?b.exports=B:(s(B,A),A.Buffer=o),s(a,o),o.from=function(g,f,w){if("number"==typeof g)throw new TypeError("Argument must not be a number");return a(g,f,w)},o.alloc=function(g,f,w){if("number"!=typeof g)throw new TypeError("Argument must be a number");var u=a(g);return void 0!==f?"string"==typeof w?u.fill(f,w):u.fill(f):u.fill(0),u},o.allocUnsafe=function(g){if("number"!=typeof g)throw new TypeError("Argument must be a number");return a(g)},o.allocUnsafeSlow=function(g){if("number"!=typeof g)throw new TypeError("Argument must be a number");return B.SlowBuffer(g)}},41209:function(b,A,n){"use strict";n(81755),n(20731),n(14032),n(56912),n(59735),n(73663),n(29883),n(35471),n(21012),n(88997),n(97464),n(2857),n(94715),n(13624),n(91132),n(62514),n(24597),n(88042),n(4660),n(92451),n(44206),n(66288),n(13250),n(3858),n(84538),n(64793),n(74202),n(52529);var B=n(3483),s=n(51014).swap32LE;b.exports=function(){function x(v){var S="function"==typeof v.readUInt32BE&&"function"==typeof v.slice;if(S||v instanceof Uint8Array){var z;if(S)this.highStart=v.readUInt32LE(0),this.errorValue=v.readUInt32LE(4),z=v.readUInt32LE(8),v=v.slice(12);else{var F=new DataView(v.buffer);this.highStart=F.getUint32(0,!0),this.errorValue=F.getUint32(4,!0),z=F.getUint32(8,!0),v=v.subarray(12)}v=B(v,new Uint8Array(z)),v=B(v,new Uint8Array(z)),s(v),this.data=new Uint32Array(v.buffer)}else{var $=v;this.data=$.data,this.highStart=$.highStart,this.errorValue=$.errorValue}}return x.prototype.get=function(S){return S<0||S>1114111?this.errorValue:S<55296||S>56319&&S<=65535?this.data[(this.data[S>>5]<<2)+(31&S)]:S<=65535?this.data[(this.data[2048+(S-55296>>5)]<<2)+(31&S)]:S>11)]+(S>>5&63)]<<2)+(31&S)]:this.data[this.data.length-4]},x}()},51014:function(b,A,n){"use strict";n(81755),n(14032),n(56912),n(59735),n(73663),n(29883),n(35471),n(21012),n(88997),n(97464),n(2857),n(94715),n(13624),n(91132),n(62514),n(24597),n(88042),n(4660),n(92451),n(44206),n(66288),n(13250),n(3858),n(84538),n(64793),n(74202),n(52529);var B=18===new Uint8Array(new Uint32Array([305419896]).buffer)[0],a=function(f,w,u){var r=f[w];f[w]=f[u],f[u]=r};b.exports={swap32LE:function(f){B&&function(f){for(var w=f.length,u=0;u/)){for(;at=et();)XA.childNodes.push(at),at.parentNode=XA,XA.textContent+=3===at.nodeType||4===at.nodeType?at.nodeValue:at.textContent;return(LA=it.match(/^<\/([\w:.-]+)\s*>/,!0))?(LA[1]===XA.nodeName||(ee('parseXml: tag not matching, opening "'+XA.nodeName+'" & closing "'+LA[1]+'"'),UA=!0),XA):(ee('parseXml: tag not matching, opening "'+XA.nodeName+'" & not closing'),UA=!0,XA)}if(it.match(/^\/>/))return XA;ee('parseXml: tag could not be parsed "'+XA.nodeName+'"'),UA=!0}else{if(LA=it.match(/^/))return new SA(null,8,LA,UA);if(LA=it.match(/^<\?[\s\S]*?\?>/))return new SA(null,7,LA,UA);if(LA=it.match(/^/))return new SA(null,10,LA,UA);if(LA=it.match(/^/,!0))return new SA("#cdata-section",4,LA[1],UA);if(LA=it.match(/^([^<]+)/,!0))return new SA("#text",3,_(LA[1]),UA)}};TA=kA();)1!==TA.nodeType||RA?(1===TA.nodeType||3===TA.nodeType&&""!==TA.nodeValue.trim())&&ee("parseXml: data after document end has been discarded"):RA=TA;return it.matchAll()&&ee("parseXml: parsing error"),RA}function _(ZA){return ZA.replace(/&(?:#([0-9]+)|#[xX]([0-9A-Fa-f]+)|([0-9A-Za-z]+));/g,function(SA,it,RA,TA){return it?String.fromCharCode(parseInt(it,10)):RA?String.fromCharCode(parseInt(RA,16)):TA&&d[TA]?String.fromCharCode(d[TA]):SA})}function fA(ZA){var SA,it;return ZA=(ZA||"").trim(),(SA=u[ZA])?it=[SA.slice(),1]:(SA=ZA.match(/^rgba\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i))?(SA[1]=parseInt(SA[1]),SA[2]=parseInt(SA[2]),SA[3]=parseInt(SA[3]),SA[4]=parseFloat(SA[4]),SA[1]<256&&SA[2]<256&&SA[3]<256&&SA[4]<=1&&(it=[SA.slice(1,4),SA[4]])):(SA=ZA.match(/^rgb\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)$/i))?(SA[1]=parseInt(SA[1]),SA[2]=parseInt(SA[2]),SA[3]=parseInt(SA[3]),SA[1]<256&&SA[2]<256&&SA[3]<256&&(it=[SA.slice(1,4),1])):(SA=ZA.match(/^rgb\(\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*\)$/i))?(SA[1]=2.55*parseFloat(SA[1]),SA[2]=2.55*parseFloat(SA[2]),SA[3]=2.55*parseFloat(SA[3]),SA[1]<256&&SA[2]<256&&SA[3]<256&&(it=[SA.slice(1,4),1])):(SA=ZA.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i))?it=[[parseInt(SA[1],16),parseInt(SA[2],16),parseInt(SA[3],16)],1]:(SA=ZA.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&(it=[[17*parseInt(SA[1],16),17*parseInt(SA[2],16),17*parseInt(SA[3],16)],1]),Fe?Fe(it,ZA):it}function iA(ZA,SA,it){var RA=ZA[0].slice(),TA=ZA[1]*SA;if(it){for(var UA=0;UA=0;SA--)ZA=wA(wn[SA].savedMatrix,ZA);return ZA}function YA(){return(new Yt).M(0,0).L(s.page.width,0).L(s.page.width,s.page.height).L(0,s.page.height).transform(HA(FA())).getBoundingBox()}function HA(ZA){var SA=ZA[0]*ZA[3]-ZA[1]*ZA[2];return[ZA[3]/SA,-ZA[1]/SA,-ZA[2]/SA,ZA[0]/SA,(ZA[2]*ZA[5]-ZA[3]*ZA[4])/SA,(ZA[1]*ZA[4]-ZA[0]*ZA[5])/SA]}function J(ZA){var SA=xA(ZA[0]),it=xA(ZA[1]),RA=xA(ZA[2]),TA=xA(ZA[3]),UA=xA(ZA[4]),kA=xA(ZA[5]);if(EA(SA*TA-it*RA,0))return[SA,it,RA,TA,UA,kA]}function BA(ZA){var SA=ZA[2]||0,it=ZA[1]||0,RA=ZA[0]||0;if(eA(SA,0)&&eA(it,0))return[];if(eA(SA,0))return[-RA/it];var TA=it*it-4*SA*RA;return EA(TA,0)&&TA>0?[(-it+Math.sqrt(TA))/(2*SA),(-it-Math.sqrt(TA))/(2*SA)]:eA(TA,0)?[-it/(2*SA)]:[]}function aA(ZA,SA){return(SA[0]||0)+(SA[1]||0)*ZA+(SA[2]||0)*ZA*ZA+(SA[3]||0)*ZA*ZA*ZA}function eA(ZA,SA){return Math.abs(ZA-SA)<1e-10}function EA(ZA,SA){return Math.abs(ZA-SA)>=1e-10}function xA(ZA){return ZA>-1e21&&ZA<1e21?Math.round(1e6*ZA)/1e6:0}function W(ZA){for(var RA,SA=new wt((ZA||"").trim()),it=[1,0,0,1,0,0];RA=SA.match(/^([A-Za-z]+)\s*[(]([^(]+)[)]/,!0);){for(var TA=RA[1],UA=[],kA=new wt(RA[2].trim()),et=void 0;et=kA.matchNumber();)UA.push(Number(et)),kA.matchSeparator();if("matrix"===TA&&6===UA.length)it=wA(it,[UA[0],UA[1],UA[2],UA[3],UA[4],UA[5]]);else if("translate"===TA&&2===UA.length)it=wA(it,[1,0,0,1,UA[0],UA[1]]);else if("translate"===TA&&1===UA.length)it=wA(it,[1,0,0,1,UA[0],0]);else if("scale"===TA&&2===UA.length)it=wA(it,[UA[0],0,0,UA[1],0,0]);else if("scale"===TA&&1===UA.length)it=wA(it,[UA[0],0,0,UA[0],0,0]);else if("rotate"===TA&&3===UA.length){var LA=UA[0]*Math.PI/180;it=wA(it,[1,0,0,1,UA[1],UA[2]],[Math.cos(LA),Math.sin(LA),-Math.sin(LA),Math.cos(LA),0,0],[1,0,0,1,-UA[1],-UA[2]])}else if("rotate"===TA&&1===UA.length){var at=UA[0]*Math.PI/180;it=wA(it,[Math.cos(at),Math.sin(at),-Math.sin(at),Math.cos(at),0,0])}else if("skewX"===TA&&1===UA.length){var XA=UA[0]*Math.PI/180;it=wA(it,[1,0,Math.tan(XA),1,0,0])}else{if("skewY"!==TA||1!==UA.length)return;var dt=UA[0]*Math.PI/180;it=wA(it,[1,Math.tan(dt),0,1,0,0])}SA.matchSeparator()}if(!SA.matchAll())return it}function L(ZA,SA,it,RA,TA,UA){var kA=(ZA||"").trim().match(/^(none)$|^x(Min|Mid|Max)Y(Min|Mid|Max)(?:\s+(meet|slice))?$/)||[],et=kA[1]||kA[4]||"meet",XA=SA/RA,dt=it/TA,xt={Min:0,Mid:.5,Max:1}[kA[2]||"Mid"]-(UA||0),St={Min:0,Mid:.5,Max:1}[kA[3]||"Mid"]-(UA||0);return"slice"===et?dt=XA=Math.max(XA,dt):"meet"===et&&(dt=XA=Math.min(XA,dt)),[XA,0,0,dt,xt*(SA-RA*XA),St*(it-TA*dt)]}function rA(ZA){var SA=Object.create(null);ZA=(ZA||"").trim().split(/;/);for(var it=0;itue&&(Ht=ue,ue=ie,ie=Ht),Jt>se&&(Ht=se,se=Jt,Jt=Ht);for(var ve=BA(xt),Oe=0;Oe=0&&ve[Oe]<=1){var ge=aA(ve[Oe],XA);geue&&(ue=ge)}for(var xe=BA(St),Ne=0;Ne=0&&xe[Ne]<=1){var qe=aA(xe[Ne],dt);qese&&(se=qe)}return[ie,Jt,ue,se]},this.getPointAtLength=function(Ht){if(eA(Ht,0))return this.startPoint;if(eA(Ht,this.totalLength))return this.endPoint;if(!(Ht<0||Ht>this.totalLength))for(var ie=1;ie<=at;ie++){var Jt=jt[ie-1],ue=jt[ie];if(Jt<=Ht&&Ht<=ue){var se=(ie-(ue-Ht)/(ue-Jt))/at,ve=aA(se,XA),Oe=aA(se,dt),ge=aA(se,xt),xe=aA(se,St);return[ve,Oe,Math.atan2(xe,ge)]}}}},pt=function(SA,it,RA,TA){this.totalLength=Math.sqrt((RA-SA)*(RA-SA)+(TA-it)*(TA-it)),this.startPoint=[SA,it,Math.atan2(TA-it,RA-SA)],this.endPoint=[RA,TA,Math.atan2(TA-it,RA-SA)],this.getBoundingBox=function(){return[Math.min(this.startPoint[0],this.endPoint[0]),Math.min(this.startPoint[1],this.endPoint[1]),Math.max(this.startPoint[0],this.endPoint[0]),Math.max(this.startPoint[1],this.endPoint[1])]},this.getPointAtLength=function(UA){if(UA>=0&&UA<=this.totalLength){var kA=UA/this.totalLength||0;return[this.startPoint[0]+kA*(this.endPoint[0]-this.startPoint[0]),this.startPoint[1]+kA*(this.endPoint[1]-this.startPoint[1]),this.startPoint[2]]}}},Yt=function ZA(){this.pathCommands=[],this.pathSegments=[],this.startPoint=null,this.endPoint=null,this.totalLength=0;var UA,kA,et,SA=0,it=0,RA=0,TA=0;this.move=function(LA,at){return SA=RA=LA,it=TA=at,null},this.line=function(LA,at){var XA=new pt(RA,TA,LA,at);return RA=LA,TA=at,XA},this.curve=function(LA,at,XA,dt,xt,St){var jt=new gt(RA,TA,LA,at,XA,dt,xt,St);return RA=xt,TA=St,jt},this.close=function(){var LA=new pt(RA,TA,SA,it);return RA=SA,TA=it,LA},this.addCommand=function(LA){this.pathCommands.push(LA);var at=this[LA[0]].apply(this,LA.slice(3));at&&(at.hasStart=LA[1],at.hasEnd=LA[2],this.startPoint=this.startPoint||at.startPoint,this.endPoint=at.endPoint,this.pathSegments.push(at),this.totalLength+=at.totalLength)},this.M=function(LA,at){return this.addCommand(["move",!0,!0,LA,at]),UA="M",this},this.m=function(LA,at){return this.M(RA+LA,TA+at)},this.Z=this.z=function(){return this.addCommand(["close",!0,!0]),UA="Z",this},this.L=function(LA,at){return this.addCommand(["line",!0,!0,LA,at]),UA="L",this},this.l=function(LA,at){return this.L(RA+LA,TA+at)},this.H=function(LA){return this.L(LA,TA)},this.h=function(LA){return this.L(RA+LA,TA)},this.V=function(LA){return this.L(RA,LA)},this.v=function(LA){return this.L(RA,TA+LA)},this.C=function(LA,at,XA,dt,xt,St){return this.addCommand(["curve",!0,!0,LA,at,XA,dt,xt,St]),UA="C",kA=XA,et=dt,this},this.c=function(LA,at,XA,dt,xt,St){return this.C(RA+LA,TA+at,RA+XA,TA+dt,RA+xt,TA+St)},this.S=function(LA,at,XA,dt){return this.C(RA+("C"===UA?RA-kA:0),TA+("C"===UA?TA-et:0),LA,at,XA,dt)},this.s=function(LA,at,XA,dt){return this.C(RA+("C"===UA?RA-kA:0),TA+("C"===UA?TA-et:0),RA+LA,TA+at,RA+XA,TA+dt)},this.Q=function(LA,at,XA,dt){return this.addCommand(["curve",!0,!0,RA+.6666666666666666*(LA-RA),TA+2/3*(at-TA),XA+2/3*(LA-XA),dt+2/3*(at-dt),XA,dt]),UA="Q",kA=LA,et=at,this},this.q=function(LA,at,XA,dt){return this.Q(RA+LA,TA+at,RA+XA,TA+dt)},this.T=function(LA,at){return this.Q(RA+("Q"===UA?RA-kA:0),TA+("Q"===UA?TA-et:0),LA,at)},this.t=function(LA,at){return this.Q(RA+("Q"===UA?RA-kA:0),TA+("Q"===UA?TA-et:0),RA+LA,TA+at)},this.A=function(LA,at,XA,dt,xt,St,jt){if(eA(LA,0)||eA(at,0))this.addCommand(["line",!0,!0,St,jt]);else{XA*=Math.PI/180,LA=Math.abs(LA),at=Math.abs(at),dt=1*!!dt,xt=1*!!xt;var Xt=Math.cos(XA)*(RA-St)/2+Math.sin(XA)*(TA-jt)/2,ne=Math.cos(XA)*(TA-jt)/2-Math.sin(XA)*(RA-St)/2,Et=Xt*Xt/(LA*LA)+ne*ne/(at*at);Et>1&&(LA*=Math.sqrt(Et),at*=Math.sqrt(Et));var Rt=Math.sqrt(Math.max(0,LA*LA*at*at-LA*LA*ne*ne-at*at*Xt*Xt)/(LA*LA*ne*ne+at*at*Xt*Xt)),Zt=(dt===xt?-1:1)*Rt*LA*ne/at,Ht=(dt===xt?1:-1)*Rt*at*Xt/LA,ie=Math.cos(XA)*Zt-Math.sin(XA)*Ht+(RA+St)/2,Jt=Math.sin(XA)*Zt+Math.cos(XA)*Ht+(TA+jt)/2,ue=Math.atan2((ne-Ht)/at,(Xt-Zt)/LA),se=Math.atan2((-ne-Ht)/at,(-Xt-Zt)/LA);0===xt&&se-ue>0?se-=2*Math.PI:1===xt&&se-ue<0&&(se+=2*Math.PI);for(var ve=Math.ceil(Math.abs(se-ue)/(Math.PI/In)),Oe=0;OeLA[2]&&(LA[2]=dt[2]),dt[1]LA[3]&&(LA[3]=dt[3]);return LA[0]===1/0&&(LA[0]=0),LA[1]===1/0&&(LA[1]=0),LA[2]===-1/0&&(LA[2]=0),LA[3]===-1/0&&(LA[3]=0),LA},this.getPointAtLength=function(LA){if(LA>=0&&LA<=this.totalLength){for(var at,XA=0;XATA.selector.specificity||(SA[UA]=TA.css[UA],it[UA]=TA.selector.specificity)}return SA}(SA),this.allowedChildren=[],this.attr=function(UA){if("function"==typeof SA.getAttribute)return SA.getAttribute(UA)},this.resolveUrl=function(UA){var kA=(UA||"").match(/^\s*(?:url\("(.*)#(.*)"\)|url\('(.*)#(.*)'\)|url\((.*)#(.*)\)|(.*)#(.*))\s*$/)||[],et=kA[1]||kA[3]||kA[5]||kA[7],LA=kA[2]||kA[4]||kA[6]||kA[8];if(LA){if(!et){var at=o.getElementById(LA);if(at)return-1===this.stack.indexOf(at)?at:void ee('SVGtoPDF: loop of circular references for id "'+LA+'"')}if(Qe){var XA=kt[et];if(!XA){(function OA(ZA){return"object"==typeof ZA&&null!==ZA&&"number"==typeof ZA.length})(XA=Qe(et))||(XA=[XA]);for(var dt=0;dt=0&&et[3]>=0?et:kA},this.getPercent=function(UA,kA){var et=this.attr(UA),LA=new wt((et||"").trim()),dt=LA.matchNumber();return!dt||(LA.match("%")&&(dt*=.01),LA.matchAll())?kA:Math.max(0,Math.min(1,dt))},this.chooseValue=function(UA){for(var kA=0;kA=0&&(LA=XA);break;case"stroke-miterlimit":null!=(XA=parseFloat(et))&&XA>=1&&(LA=XA);break;case"word-spacing":case"letter-spacing":LA=this.computeLength(et,this.getViewport());break;case"stroke-dashoffset":if(null!=(LA=this.computeLength(et,this.getViewport()))&&LA<0)for(var ne=this.get("stroke-dasharray"),Et=0;Et0?kA:this.ref?this.ref.getChildren():[]},this.getPaint=function(kA,et,LA,at){var XA="userSpaceOnUse"!==this.attr("patternUnits"),dt="objectBoundingBox"===this.attr("patternContentUnits"),xt=this.getLength("x",XA?1:this.getParentVWidth(),0),St=this.getLength("y",XA?1:this.getParentVHeight(),0),jt=this.getLength("width",XA?1:this.getParentVWidth(),0),Xt=this.getLength("height",XA?1:this.getParentVHeight(),0);dt&&!XA?(xt=(xt-kA[0])/(kA[2]-kA[0])||0,St=(St-kA[1])/(kA[3]-kA[1])||0,jt=jt/(kA[2]-kA[0])||0,Xt=Xt/(kA[3]-kA[1])||0):!dt&&XA&&(xt=kA[0]+xt*(kA[2]-kA[0]),St=kA[1]+St*(kA[3]-kA[1]),jt*=kA[2]-kA[0],Xt*=kA[3]-kA[1]);var ne=this.getViewbox("viewBox",[0,0,jt,Xt]),Rt=wA(L((this.attr("preserveAspectRatio")||"").trim(),jt,Xt,ne[2],ne[3],0),[1,0,0,1,-ne[0],-ne[1]]),Zt=W(this.attr("patternTransform"));if(dt&&(Zt=wA([kA[2]-kA[0],0,0,kA[3]-kA[1],kA[0],kA[1]],Zt)),(Zt=J(Zt=wA(Zt,[1,0,0,1,xt,St])))&&(Rt=J(Rt))&&(jt=xA(jt))&&(Xt=xA(Xt))){var Ht=h([0,0,jt,Xt]);return s.transform.apply(s,Rt),this.drawChildren(LA,at),Q(Ht),[p(Ht,jt,Xt,Zt),et]}return RA?[RA[0],RA[1]*et]:void 0},this.getVWidth=function(){var kA="userSpaceOnUse"!==this.attr("patternUnits"),et=this.getLength("width",kA?1:this.getParentVWidth(),0);return this.getViewbox("viewBox",[0,0,et,0])[2]},this.getVHeight=function(){var kA="userSpaceOnUse"!==this.attr("patternUnits"),et=this.getLength("height",kA?1:this.getParentVHeight(),0);return this.getViewbox("viewBox",[0,0,0,et])[3]}},hA=function ZA(SA,it,RA){VA.call(this,SA,it),this.allowedChildren=["stop"],this.ref=function(){var kA=this.getUrl("href")||this.getUrl("xlink:href");if(kA&&kA.nodeName===SA.nodeName)return new ZA(kA,it,RA)}.call(this);var TA=this.attr;this.attr=function(kA){var et=TA.call(this,kA);return null!=et||"href"===kA||"xlink:href"===kA?et:this.ref?this.ref.attr(kA):null};var UA=this.getChildren;this.getChildren=function(){var kA=UA.call(this);return kA.length>0?kA:this.ref?this.ref.getChildren():[]},this.getPaint=function(kA,et,LA,at){var XA=this.getChildren();if(0!==XA.length){if(1===XA.length){var dt=XA[0],xt=dt.get("stop-color");return"none"===xt?void 0:iA(xt,dt.get("stop-opacity")*et,at)}var ne,Et,Rt,Zt,Ht,ie,St="userSpaceOnUse"!==this.attr("gradientUnits"),jt=W(this.attr("gradientTransform")),Xt=this.attr("spreadMethod"),Jt=0,ue=0,se=1;if(St&&(jt=wA([kA[2]-kA[0],0,0,kA[3]-kA[1],kA[0],kA[1]],jt)),jt=J(jt)){if("linearGradient"===this.name)Et=this.getLength("x1",St?1:this.getVWidth(),0),Rt=this.getLength("x2",St?1:this.getVWidth(),St?1:this.getVWidth()),Zt=this.getLength("y1",St?1:this.getVHeight(),0),Ht=this.getLength("y2",St?1:this.getVHeight(),0);else{Rt=this.getLength("cx",St?1:this.getVWidth(),St?.5:.5*this.getVWidth()),Ht=this.getLength("cy",St?1:this.getVHeight(),St?.5:.5*this.getVHeight()),ie=this.getLength("r",St?1:this.getViewport(),St?.5:.5*this.getViewport()),Et=this.getLength("fx",St?1:this.getVWidth(),Rt),Zt=this.getLength("fy",St?1:this.getVHeight(),Ht),ie<0&&ee("SvgElemGradient: negative r value");var ve=Math.sqrt(Math.pow(Rt-Et,2)+Math.pow(Ht-Zt,2)),Oe=1;ve>ie&&(Et=Rt+(Et-Rt)*(Oe=ie/ve),Zt=Ht+(Zt-Ht)*Oe),ie=Math.max(ie,ve*Oe*1.000001)}if("reflect"===Xt||"repeat"===Xt){var ge=HA(jt),xe=IA([kA[0],kA[1]],ge),Ne=IA([kA[2],kA[1]],ge),qe=IA([kA[2],kA[3]],ge),Dn=IA([kA[0],kA[3]],ge);"linearGradient"===this.name?(Jt=Math.max((xe[0]-Rt)*(Rt-Et)+(xe[1]-Ht)*(Ht-Zt),(Ne[0]-Rt)*(Rt-Et)+(Ne[1]-Ht)*(Ht-Zt),(qe[0]-Rt)*(Rt-Et)+(qe[1]-Ht)*(Ht-Zt),(Dn[0]-Rt)*(Rt-Et)+(Dn[1]-Ht)*(Ht-Zt))/(Math.pow(Rt-Et,2)+Math.pow(Ht-Zt,2)),ue=Math.max((xe[0]-Et)*(Et-Rt)+(xe[1]-Zt)*(Zt-Ht),(Ne[0]-Et)*(Et-Rt)+(Ne[1]-Zt)*(Zt-Ht),(qe[0]-Et)*(Et-Rt)+(qe[1]-Zt)*(Zt-Ht),(Dn[0]-Et)*(Et-Rt)+(Dn[1]-Zt)*(Zt-Ht))/(Math.pow(Rt-Et,2)+Math.pow(Ht-Zt,2))):Jt=Math.sqrt(Math.max(Math.pow(xe[0]-Rt,2)+Math.pow(xe[1]-Ht,2),Math.pow(Ne[0]-Rt,2)+Math.pow(Ne[1]-Ht,2),Math.pow(qe[0]-Rt,2)+Math.pow(qe[1]-Ht,2),Math.pow(Dn[0]-Rt,2)+Math.pow(Dn[1]-Ht,2)))/ie-1,Jt=Math.ceil(Jt+.5),se=(ue=Math.ceil(ue+.5))+1+Jt}ne="linearGradient"===this.name?s.linearGradient(Et-ue*(Rt-Et),Zt-ue*(Ht-Zt),Rt+Jt*(Rt-Et),Ht+Jt*(Ht-Zt)):s.radialGradient(Et,Zt,0,Rt,Ht,ie+Jt*ie);for(var tn=0;tn0&&ne.stop((tn+0)/se,on[0],on[1]),ne.stop((tn+Qn)/(Jt+ue+1),on[0],on[1]),en===XA.length-1&&Qn<1&&ne.stop((tn+1)/se,on[0],on[1])}return ne.setTransform.apply(ne,jt),[ne,1]}return RA?[RA[0],RA[1]*et]:void 0}}},q=function(SA,it){_A.call(this,SA,it),this.dashScale=1,this.getBoundingShape=function(){return this.shape},this.getTransformation=function(){return this.get("transform")},this.drawInDocument=function(RA,TA){if("hidden"!==this.get("visibility")&&this.shape){if(s.save(),this.transform(),this.clip(),RA)this.shape.insertInDocument(),z(r.white),s.fill(this.get("clip-rule"));else{var kA;this.mask()&&(kA=h(YA()));var et=this.shape.getSubPaths(),LA=this.getFill(RA,TA),at=this.getStroke(RA,TA),XA=this.get("stroke-width"),dt=this.get("stroke-linecap");if(LA||at){if(LA&&z(LA),at){for(var xt=0;xt0&&et[xt].startPoint&&et[xt].startPoint.length>1){var St=et[xt].startPoint[0],jt=et[xt].startPoint[1];z(at),"square"===dt?s.rect(St-.5*XA,jt-.5*XA,XA,XA):"round"===dt&&s.circle(St,jt,.5*XA),s.fill()}var Xt=this.get("stroke-dasharray"),ne=this.get("stroke-dashoffset");if(EA(this.dashScale,1)){for(var Et=0;Et0&&et[Rt].insertInDocument();LA&&at?s.fillAndStroke(this.get("fill-rule")):LA?s.fill(this.get("fill-rule")):at&&s.stroke()}var Zt=this.get("marker-start"),Ht=this.get("marker-mid"),ie=this.get("marker-end");if("none"!==Zt||"none"!==Ht||"none"!==ie){var Jt=this.shape.getMarkers();if("none"!==Zt&&new ot(Zt,null).drawMarker(!1,TA,Jt[0],XA),"none"!==Ht)for(var se=1;se0&&kA>0?et&&LA?(et=Math.min(et,.5*UA),LA=Math.min(LA,.5*kA),this.shape=(new Yt).M(RA+et,TA).L(RA+UA-et,TA).A(et,LA,0,0,1,RA+UA,TA+LA).L(RA+UA,TA+kA-LA).A(et,LA,0,0,1,RA+UA-et,TA+kA).L(RA+et,TA+kA).A(et,LA,0,0,1,RA,TA+kA-LA).L(RA,TA+LA).A(et,LA,0,0,1,RA+et,TA).Z()):this.shape=(new Yt).M(RA,TA).L(RA+UA,TA).L(RA+UA,TA+kA).L(RA,TA+kA).Z():this.shape=new Yt},At=function(SA,it){q.call(this,SA,it);var RA=this.getLength("cx",this.getVWidth(),0),TA=this.getLength("cy",this.getVHeight(),0),UA=this.getLength("r",this.getViewport(),0);this.shape=UA>0?(new Yt).M(RA+UA,TA).A(UA,UA,0,0,1,RA-UA,TA).A(UA,UA,0,0,1,RA+UA,TA).Z():new Yt},O=function(SA,it){q.call(this,SA,it);var RA=this.getLength("cx",this.getVWidth(),0),TA=this.getLength("cy",this.getVHeight(),0),UA=this.getLength("rx",this.getVWidth(),0),kA=this.getLength("ry",this.getVHeight(),0);this.shape=UA>0&&kA>0?(new Yt).M(RA+UA,TA).A(UA,kA,0,0,1,RA-UA,TA).A(UA,kA,0,0,1,RA+UA,TA).Z():new Yt},qA=function(SA,it){q.call(this,SA,it);var RA=this.getLength("x1",this.getVWidth(),0),TA=this.getLength("y1",this.getVHeight(),0),UA=this.getLength("x2",this.getVWidth(),0),kA=this.getLength("y2",this.getVHeight(),0);this.shape=(new Yt).M(RA,TA).L(UA,kA)},nt=function(SA,it){q.call(this,SA,it);var RA=this.getNumberList("points");this.shape=new Yt;for(var TA=0;TA0?RA:void 0,this.dashScale=void 0!==this.pathLength?this.shape.totalLength/this.pathLength:1},ot=function(SA,it){Qt.call(this,SA,it);var RA=this.getLength("markerWidth",this.getParentVWidth(),3),TA=this.getLength("markerHeight",this.getParentVHeight(),3),UA=this.getViewbox("viewBox",[0,0,RA,TA]);this.getVWidth=function(){return UA[2]},this.getVHeight=function(){return UA[3]},this.drawMarker=function(kA,et,LA,at){s.save();var XA=this.attr("orient"),dt=this.attr("markerUnits"),xt="auto"===XA?LA[2]:(parseFloat(XA)||0)*Math.PI/180,St="userSpaceOnUse"===dt?1:at;s.transform(Math.cos(xt)*St,Math.sin(xt)*St,-Math.sin(xt)*St,Math.cos(xt)*St,LA[0],LA[1]);var Et,jt=this.getLength("refX",this.getVWidth(),0),Xt=this.getLength("refY",this.getVHeight(),0),ne=L(this.attr("preserveAspectRatio"),RA,TA,UA[2],UA[3],.5);"hidden"===this.get("overflow")&&s.rect(ne[0]*(UA[0]+UA[2]/2-jt)-RA/2,ne[3]*(UA[1]+UA[3]/2-Xt)-TA/2,RA,TA).clip(),s.transform.apply(s,ne),s.translate(-jt,-Xt),this.get("opacity")<1&&!kA&&(Et=h(YA())),this.drawChildren(kA,et),Et&&(Q(Et),s.fillOpacity(this.get("opacity")),I(Et)),s.restore()}},Tt=function(SA,it){Qt.call(this,SA,it),this.useMask=function(RA){var TA=h(YA());s.save(),"objectBoundingBox"===this.attr("clipPathUnits")&&s.transform(RA[2]-RA[0],0,0,RA[3]-RA[1],RA[0],RA[1]),this.clip(),this.drawChildren(!0,!1),s.restore(),Q(TA),R(TA,!0)}},yt=function(SA,it){Qt.call(this,SA,it),this.useMask=function(RA){var UA,kA,et,LA,TA=h(YA());s.save(),"userSpaceOnUse"===this.attr("maskUnits")?(UA=this.getLength("x",this.getVWidth(),-.1*(RA[2]-RA[0])+RA[0]),kA=this.getLength("y",this.getVHeight(),-.1*(RA[3]-RA[1])+RA[1]),et=this.getLength("width",this.getVWidth(),1.2*(RA[2]-RA[0])),LA=this.getLength("height",this.getVHeight(),1.2*(RA[3]-RA[1]))):(UA=this.getLength("x",this.getVWidth(),-.1)*(RA[2]-RA[0])+RA[0],kA=this.getLength("y",this.getVHeight(),-.1)*(RA[3]-RA[1])+RA[1],et=this.getLength("width",this.getVWidth(),1.2)*(RA[2]-RA[0]),LA=this.getLength("height",this.getVHeight(),1.2)*(RA[3]-RA[1])),s.rect(UA,kA,et,LA).clip(),"objectBoundingBox"===this.attr("maskContentUnits")&&s.transform(RA[2]-RA[0],0,0,RA[3]-RA[1],RA[0],RA[1]),this.clip(),this.drawChildren(!1,!0),s.restore(),Q(TA),R(TA,!0)}},Ut=function(SA,it){_A.call(this,SA,it),this.allowedChildren=["tspan","#text","#cdata-section","a"],this.isText=!0,this.getBoundingShape=function(){for(var RA=new Yt,TA=0;TA Tj")}s.addContent("ET")}}}"line-through"===this.get("text-decoration")&&this.decorate(.05*this._font.size,.5*(DA(this._font.font,this._font.size)+NA(this._font.font,this._font.size)),RA,TA)},this.decorate=function(RA,TA,UA,kA){var et=this.getFill(UA,kA),LA=this.getStroke(UA,kA);et&&z(et),LA&&(F(LA),s.lineWidth(this.get("stroke-width")).miterLimit(this.get("stroke-miterlimit")).lineJoin(this.get("stroke-linejoin")).lineCap(this.get("stroke-linecap")).dash(this.get("stroke-dasharray"),{phase:this.get("stroke-dashoffset")}));for(var at=0,XA=this._pos;at0?kA:this.pathObject.totalLength,this.pathScale=this.pathObject.totalLength/this.pathLength}else if((UA=this.getUrl("href")||this.getUrl("xlink:href"))&&"path"===UA.nodeName){var et=new jA(UA,this);this.pathObject=et.shape.clone().transform(et.get("transform")),this.pathLength=this.chooseValue(et.pathLength,this.pathObject.totalLength),this.pathScale=this.pathObject.totalLength/this.pathLength}},Kt=function(SA,it){Ut.call(this,SA,it),this.allowedChildren=["textPath","tspan","#text","#cdata-section","a"],function(RA){var LA,at,TA="",UA=SA.textContent,kA=[],et=[],XA=0,dt=0;function xt(){if(et.length)for(var Et=et[et.length-1],Ht={startltr:0,middleltr:.5,endltr:1,startrtl:1,middlertl:.5,endrtl:0}[LA+at]*(Et.x+Et.width-et[0].x)||0,ie=0;ieZt||ue<0)Et._pos[Jt].hidden=!0;else{var se=Rt.getPointAtLength(ue*Ht);EA(Ht,1)&&(Et._pos[Jt].scale*=Ht,Et._pos[Jt].width*=Ht),Et._pos[Jt].x=se[0]-.5*Et._pos[Jt].width*Math.cos(se[2])-Et._pos[Jt].y*Math.sin(se[2]),Et._pos[Jt].y=se[1]-.5*Et._pos[Jt].width*Math.sin(se[2])+Et._pos[Jt].y*Math.cos(se[2]),Et._pos[Jt].rotate=se[2]+Et._pos[Jt].rotate,Et._pos[Jt].continuous=!1}}else for(var ve=0;ve0&&se<1/0)for(var ve=0;ve=2)for(var Oe=(Rt-(ue-Jt))/(Et.length-1),ge=0;ge"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],function(){})),!0}catch{return!1}}();return function(){var V,X=m(dA);if(H){var uA=m(this).constructor;V=Reflect.construct(X,arguments,uA)}else V=X.apply(this,arguments);return function v(dA,H){return!H||"object"!=typeof H&&"function"!=typeof H?Y(dA):H}(this,V)}}function z(dA,H){return function gA(dA){if(Array.isArray(dA))return dA}(dA)||function fA(dA,H){if(!(typeof Symbol>"u")&&Symbol.iterator in Object(dA)){var T=[],X=!0,V=!1,uA=void 0;try{for(var tt,mA=dA[Symbol.iterator]();!(X=(tt=mA.next()).done)&&(T.push(tt.value),!H||T.length!==H);X=!0);}catch(rt){V=!0,uA=rt}finally{try{!X&&null!=mA.return&&mA.return()}finally{if(V)throw uA}}return T}}(dA,H)||iA(dA,H)||function FA(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function F(dA){return function $(dA){if(Array.isArray(dA))return wA(dA)}(dA)||function _(dA){if(typeof Symbol<"u"&&Symbol.iterator in Object(dA))return Array.from(dA)}(dA)||iA(dA)||function IA(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function iA(dA,H){if(dA){if("string"==typeof dA)return wA(dA,H);var T=Object.prototype.toString.call(dA).slice(8,-1);if("Object"===T&&dA.constructor&&(T=dA.constructor.name),"Map"===T||"Set"===T)return Array.from(dA);if("Arguments"===T||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(T))return wA(dA,H)}}function wA(dA,H){(null==H||H>dA.length)&&(H=dA.length);for(var T=0,X=new Array(H);T"u"||null==dA[Symbol.iterator]){if(Array.isArray(dA)||(T=iA(dA))||H&&dA&&"number"==typeof dA.length){T&&(dA=T);var X=0,V=function(){};return{s:V,n:function(){return X>=dA.length?{done:!0}:{done:!1,value:dA[X++]}},e:function(ut){throw ut},f:V}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var tt,uA=!0,mA=!1;return{s:function(){T=dA[Symbol.iterator]()},n:function(){var ut=T.next();return uA=ut.done,ut},e:function(ut){mA=!0,tt=ut},f:function(){try{!uA&&null!=T.return&&T.return()}finally{if(mA)throw tt}}}}var HA=function(){function dA(){C(this,dA)}return h(dA,[{key:"toString",value:function(){throw new Error("Must be implemented by subclasses")}}]),dA}(),J=function(){function dA(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};C(this,dA),this._items={},this.limits="boolean"!=typeof H.limits||H.limits}return h(dA,[{key:"add",value:function(T,X){return this._items[T]=X}},{key:"get",value:function(T){return this._items[T]}},{key:"toString",value:function(){var T=this,X=Object.keys(this._items).sort(function(Ct,Mt){return T._compareKeys(Ct,Mt)}),V=["<<"];if(this.limits&&X.length>1){var mA=X[X.length-1];V.push(" /Limits ".concat(xA.convert([this._dataForKey(X[0]),this._dataForKey(mA)])))}V.push(" /".concat(this._keysName()," ["));var rt,tt=YA(X);try{for(tt.s();!(rt=tt.n()).done;){var ut=rt.value;V.push(" ".concat(xA.convert(this._dataForKey(ut))," ").concat(xA.convert(this._items[ut])))}}catch(Ct){tt.e(Ct)}finally{tt.f()}return V.push("]"),V.push(">>"),V.join("\n")}},{key:"_compareKeys",value:function(){throw new Error("Must be implemented by subclasses")}},{key:"_keysName",value:function(){throw new Error("Must be implemented by subclasses")}},{key:"_dataForKey",value:function(){throw new Error("Must be implemented by subclasses")}}]),dA}(),BA=function(H,T){return(Array(T+1).join("0")+H).slice(-T)},aA=/[\n\r\t\b\f()\\]/g,eA={"\n":"\\n","\r":"\\r","\t":"\\t","\b":"\\b","\f":"\\f","\\":"\\\\","(":"\\(",")":"\\)"},xA=function(){function dA(){C(this,dA)}return h(dA,null,[{key:"convert",value:function(T){var X=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("string"==typeof T)return"/".concat(T);if(T instanceof String){for(var V=T,uA=!1,mA=0,tt=V.length;mA127){uA=!0;break}var rt;return rt=uA?function(H){var T=H.length;if(1&T)throw new Error("Buffer length must be even");for(var X=0,V=T-1;X");if(T instanceof HA||T instanceof J)return T.toString();if(T instanceof Date){var ut="D:".concat(BA(T.getUTCFullYear(),4))+BA(T.getUTCMonth()+1,2)+BA(T.getUTCDate(),2)+BA(T.getUTCHours(),2)+BA(T.getUTCMinutes(),2)+BA(T.getUTCSeconds(),2)+"Z";return X&&(ut=(ut=X(a.from(ut,"ascii")).toString("binary")).replace(aA,function(Ot){return eA[Ot]})),"(".concat(ut,")")}if(Array.isArray(T)){var Ct=T.map(function(Ot){return dA.convert(Ot,X)}).join(" ");return"[".concat(Ct,"]")}if("[object Object]"==={}.toString.call(T)){var Mt=["<<"];for(var Dt in T){var Ft=T[Dt];Mt.push("/".concat(Dt," ").concat(dA.convert(Ft,X)))}return Mt.push(">>"),Mt.join("\n")}return"number"==typeof T?dA.number(T):"".concat(T)}},{key:"number",value:function(T){if(T>-1e21&&T<1e21)return Math.round(1e6*T)/1e6;throw new Error("unsupported number: ".concat(T))}}]),dA}(),OA=function(dA){p(T,dA);var H=S(T);function T(X,V){var uA,mA=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return C(this,T),(uA=H.call(this)).document=X,uA.id=V,uA.data=mA,uA.gen=0,uA.compress=uA.document.compress&&!uA.data.Filter,uA.uncompressedLength=0,uA.buffer=[],uA}return h(T,[{key:"write",value:function(V){if(a.isBuffer(V)||(V=a.from(V+"\n","binary")),this.uncompressedLength+=V.length,null==this.data.Length&&(this.data.Length=0),this.buffer.push(V),this.data.Length+=V.length,this.compress)return this.data.Filter="FlateDecode"}},{key:"end",value:function(V){return V&&this.write(V),this.finalize()}},{key:"finalize",value:function(){this.offset=this.document._offset;var V=this.document._security?this.document._security.getEncryptFn(this.id,this.gen):null;this.buffer.length&&(this.buffer=a.concat(this.buffer),this.compress&&(this.buffer=o.default.deflateSync(this.buffer)),V&&(this.buffer=V(this.buffer)),this.data.Length=this.buffer.length),this.document._write("".concat(this.id," ").concat(this.gen," obj")),this.document._write(xA.convert(this.data,V)),this.buffer.length&&(this.document._write("stream"),this.document._write(this.buffer),this.buffer=[],this.document._write("\nendstream")),this.document._write("endobj"),this.document._refEnd(this)}},{key:"toString",value:function(){return"".concat(this.id," ").concat(this.gen," R")}}]),T}(HA),W={top:72,left:72,bottom:72,right:72},L={"4A0":[4767.87,6740.79],"2A0":[3370.39,4767.87],A0:[2383.94,3370.39],A1:[1683.78,2383.94],A2:[1190.55,1683.78],A3:[841.89,1190.55],A4:[595.28,841.89],A5:[419.53,595.28],A6:[297.64,419.53],A7:[209.76,297.64],A8:[147.4,209.76],A9:[104.88,147.4],A10:[73.7,104.88],B0:[2834.65,4008.19],B1:[2004.09,2834.65],B2:[1417.32,2004.09],B3:[1000.63,1417.32],B4:[708.66,1000.63],B5:[498.9,708.66],B6:[354.33,498.9],B7:[249.45,354.33],B8:[175.75,249.45],B9:[124.72,175.75],B10:[87.87,124.72],C0:[2599.37,3676.54],C1:[1836.85,2599.37],C2:[1298.27,1836.85],C3:[918.43,1298.27],C4:[649.13,918.43],C5:[459.21,649.13],C6:[323.15,459.21],C7:[229.61,323.15],C8:[161.57,229.61],C9:[113.39,161.57],C10:[79.37,113.39],RA0:[2437.8,3458.27],RA1:[1729.13,2437.8],RA2:[1218.9,1729.13],RA3:[864.57,1218.9],RA4:[609.45,864.57],SRA0:[2551.18,3628.35],SRA1:[1814.17,2551.18],SRA2:[1275.59,1814.17],SRA3:[907.09,1275.59],SRA4:[637.8,907.09],EXECUTIVE:[521.86,756],FOLIO:[612,936],LEGAL:[612,1008],LETTER:[612,792],TABLOID:[792,1224]},rA=function(){function dA(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};C(this,dA),this.document=H,this.size=T.size||"letter",this.layout=T.layout||"portrait",this.margins="number"==typeof T.margin?{top:T.margin,left:T.margin,bottom:T.margin,right:T.margin}:T.margins||W;var X=Array.isArray(this.size)?this.size:L[this.size.toUpperCase()];this.width=X["portrait"===this.layout?0:1],this.height=X["portrait"===this.layout?1:0],this.content=this.document.ref(),this.resources=this.document.ref({ProcSet:["PDF","Text","ImageB","ImageC","ImageI"]}),this.dictionary=this.document.ref({Type:"Page",Parent:this.document._root.data.Pages,MediaBox:[0,0,this.width,this.height],Contents:this.content,Resources:this.resources}),this.markings=[]}return h(dA,[{key:"maxY",value:function(){return this.height-this.margins.bottom}},{key:"write",value:function(T){return this.content.write(T)}},{key:"end",value:function(){return this.dictionary.end(),this.resources.end(),this.content.end()}},{key:"fonts",get:function(){var T=this.resources.data;return null!=T.Font?T.Font:T.Font={}}},{key:"xobjects",get:function(){var T=this.resources.data;return null!=T.XObject?T.XObject:T.XObject={}}},{key:"ext_gstates",get:function(){var T=this.resources.data;return null!=T.ExtGState?T.ExtGState:T.ExtGState={}}},{key:"patterns",get:function(){var T=this.resources.data;return null!=T.Pattern?T.Pattern:T.Pattern={}}},{key:"colorSpaces",get:function(){var T=this.resources.data;return T.ColorSpace||(T.ColorSpace={})}},{key:"annotations",get:function(){var T=this.dictionary.data;return null!=T.Annots?T.Annots:T.Annots=[]}},{key:"structParentTreeKey",get:function(){var T=this.dictionary.data;return null!=T.StructParents?T.StructParents:T.StructParents=this.document.createStructParentTreeNextKey()}}]),dA}(),AA=function(dA){p(T,dA);var H=S(T);function T(){return C(this,T),H.apply(this,arguments)}return h(T,[{key:"_compareKeys",value:function(V,uA){return V.localeCompare(uA)}},{key:"_keysName",value:function(){return"Names"}},{key:"_dataForKey",value:function(V){return new String(V)}}]),T}(J);function QA(dA,H){if(dA=H[uA]&&dA<=H[uA+1])return!0;dA>H[uA+1]?T=V+1:X=V-1}return!1}var yA=[545,545,564,591,686,687,751,767,848,863,880,883,886,889,891,893,895,899,907,907,909,909,930,930,975,975,1015,1023,1159,1159,1231,1231,1270,1271,1274,1279,1296,1328,1367,1368,1376,1376,1416,1416,1419,1424,1442,1442,1466,1466,1477,1487,1515,1519,1525,1547,1549,1562,1564,1566,1568,1568,1595,1599,1622,1631,1774,1775,1791,1791,1806,1806,1837,1839,1867,1919,1970,2304,2308,2308,2362,2363,2382,2383,2389,2391,2417,2432,2436,2436,2445,2446,2449,2450,2473,2473,2481,2481,2483,2485,2490,2491,2493,2493,2501,2502,2505,2506,2510,2518,2520,2523,2526,2526,2532,2533,2555,2561,2563,2564,2571,2574,2577,2578,2601,2601,2609,2609,2612,2612,2615,2615,2618,2619,2621,2621,2627,2630,2633,2634,2638,2648,2653,2653,2655,2661,2677,2688,2692,2692,2700,2700,2702,2702,2706,2706,2729,2729,2737,2737,2740,2740,2746,2747,2758,2758,2762,2762,2766,2767,2769,2783,2785,2789,2800,2816,2820,2820,2829,2830,2833,2834,2857,2857,2865,2865,2868,2869,2874,2875,2884,2886,2889,2890,2894,2901,2904,2907,2910,2910,2914,2917,2929,2945,2948,2948,2955,2957,2961,2961,2966,2968,2971,2971,2973,2973,2976,2978,2981,2983,2987,2989,2998,2998,3002,3005,3011,3013,3017,3017,3022,3030,3032,3046,3059,3072,3076,3076,3085,3085,3089,3089,3113,3113,3124,3124,3130,3133,3141,3141,3145,3145,3150,3156,3159,3167,3170,3173,3184,3201,3204,3204,3213,3213,3217,3217,3241,3241,3252,3252,3258,3261,3269,3269,3273,3273,3278,3284,3287,3293,3295,3295,3298,3301,3312,3329,3332,3332,3341,3341,3345,3345,3369,3369,3386,3389,3396,3397,3401,3401,3406,3414,3416,3423,3426,3429,3440,3457,3460,3460,3479,3481,3506,3506,3516,3516,3518,3519,3527,3529,3531,3534,3541,3541,3543,3543,3552,3569,3573,3584,3643,3646,3676,3712,3715,3715,3717,3718,3721,3721,3723,3724,3726,3731,3736,3736,3744,3744,3748,3748,3750,3750,3752,3753,3756,3756,3770,3770,3774,3775,3781,3781,3783,3783,3790,3791,3802,3803,3806,3839,3912,3912,3947,3952,3980,3983,3992,3992,4029,4029,4045,4046,4048,4095,4130,4130,4136,4136,4139,4139,4147,4149,4154,4159,4186,4255,4294,4303,4345,4346,4348,4351,4442,4446,4515,4519,4602,4607,4615,4615,4679,4679,4681,4681,4686,4687,4695,4695,4697,4697,4702,4703,4743,4743,4745,4745,4750,4751,4783,4783,4785,4785,4790,4791,4799,4799,4801,4801,4806,4807,4815,4815,4823,4823,4847,4847,4879,4879,4881,4881,4886,4887,4895,4895,4935,4935,4955,4960,4989,5023,5109,5120,5751,5759,5789,5791,5873,5887,5901,5901,5909,5919,5943,5951,5972,5983,5997,5997,6001,6001,6004,6015,6109,6111,6122,6143,6159,6159,6170,6175,6264,6271,6314,7679,7836,7839,7930,7935,7958,7959,7966,7967,8006,8007,8014,8015,8024,8024,8026,8026,8028,8028,8030,8030,8062,8063,8117,8117,8133,8133,8148,8149,8156,8156,8176,8177,8181,8181,8191,8191,8275,8278,8280,8286,8292,8297,8306,8307,8335,8351,8370,8399,8427,8447,8507,8508,8524,8530,8580,8591,9167,9215,9255,9279,9291,9311,9471,9471,9748,9749,9752,9752,9854,9855,9866,9984,9989,9989,9994,9995,10024,10024,10060,10060,10062,10062,10067,10069,10071,10071,10079,10080,10133,10135,10160,10160,10175,10191,10220,10223,11008,11903,11930,11930,12020,12031,12246,12271,12284,12287,12352,12352,12439,12440,12544,12548,12589,12592,12687,12687,12728,12783,12829,12831,12868,12880,12924,12926,13004,13007,13055,13055,13175,13178,13278,13279,13311,13311,19894,19967,40870,40959,42125,42127,42183,44031,55204,55295,64046,64047,64107,64255,64263,64274,64280,64284,64311,64311,64317,64317,64319,64319,64322,64322,64325,64325,64434,64466,64832,64847,64912,64913,64968,64975,65021,65023,65040,65055,65060,65071,65095,65096,65107,65107,65127,65127,65132,65135,65141,65141,65277,65278,65280,65280,65471,65473,65480,65481,65488,65489,65496,65497,65501,65503,65511,65511,65519,65528,65536,66303,66335,66335,66340,66351,66379,66559,66598,66599,66638,118783,119030,119039,119079,119081,119262,119807,119893,119893,119965,119965,119968,119969,119971,119972,119975,119976,119981,119981,119994,119994,119996,119996,120001,120001,120004,120004,120070,120070,120075,120076,120085,120085,120093,120093,120122,120122,120127,120127,120133,120133,120135,120137,120145,120145,120484,120487,120778,120781,120832,131069,173783,194559,195102,196605,196608,262141,262144,327677,327680,393213,393216,458749,458752,524285,524288,589821,589824,655357,655360,720893,720896,786429,786432,851965,851968,917501,917504,917504,917506,917535,917632,983037],cA=function(H){return QA(H,yA)},CA=[173,173,847,847,6150,6150,6155,6155,6156,6156,6157,6157,8203,8203,8204,8204,8205,8205,8288,8288,65024,65024,65025,65025,65026,65026,65027,65027,65028,65028,65029,65029,65030,65030,65031,65031,65032,65032,65033,65033,65034,65034,65035,65035,65036,65036,65037,65037,65038,65038,65039,65039,65279,65279],NA=[160,160,5760,5760,8192,8192,8193,8193,8194,8194,8195,8195,8196,8196,8197,8197,8198,8198,8199,8199,8200,8200,8201,8201,8202,8202,8203,8203,8239,8239,8287,8287,12288,12288],pA=[128,159,1757,1757,1807,1807,6158,6158,8204,8204,8205,8205,8232,8232,8233,8233,8288,8288,8289,8289,8290,8290,8291,8291,8298,8303,65279,65279,65529,65532,119155,119162],JA=[64976,65007,65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1114110,1114111],ft=[0,31,127,127,832,832,833,833,8206,8206,8207,8207,8234,8234,8235,8235,8236,8236,8237,8237,8238,8238,8298,8298,8299,8299,8300,8300,8301,8301,8302,8302,8303,8303,12272,12283,55296,57343,57344,63743,65529,65529,65530,65530,65531,65531,65532,65532,65533,65533,917505,917505,917536,917631,983040,1048573,1048576,1114109],wt=function(H){return QA(H,NA)||QA(H,ft)||QA(H,pA)||QA(H,JA)},gt=[1470,1470,1472,1472,1475,1475,1488,1514,1520,1524,1563,1563,1567,1567,1569,1594,1600,1610,1645,1647,1649,1749,1757,1757,1765,1766,1786,1790,1792,1805,1808,1808,1810,1836,1920,1957,1969,1969,8207,8207,64285,64285,64287,64296,64298,64310,64312,64316,64318,64318,64320,64321,64323,64324,64326,64433,64467,64829,64848,64911,64914,64967,65008,65020,65136,65140,65142,65276],pt=function(H){return QA(H,gt)},Yt=[65,90,97,122,170,170,181,181,186,186,192,214,216,246,248,544,546,563,592,685,688,696,699,705,720,721,736,740,750,750,890,890,902,902,904,906,908,908,910,929,931,974,976,1013,1024,1154,1162,1230,1232,1269,1272,1273,1280,1295,1329,1366,1369,1375,1377,1415,1417,1417,2307,2307,2309,2361,2365,2368,2377,2380,2384,2384,2392,2401,2404,2416,2434,2435,2437,2444,2447,2448,2451,2472,2474,2480,2482,2482,2486,2489,2494,2496,2503,2504,2507,2508,2519,2519,2524,2525,2527,2529,2534,2545,2548,2554,2565,2570,2575,2576,2579,2600,2602,2608,2610,2611,2613,2614,2616,2617,2622,2624,2649,2652,2654,2654,2662,2671,2674,2676,2691,2691,2693,2699,2701,2701,2703,2705,2707,2728,2730,2736,2738,2739,2741,2745,2749,2752,2761,2761,2763,2764,2768,2768,2784,2784,2790,2799,2818,2819,2821,2828,2831,2832,2835,2856,2858,2864,2866,2867,2870,2873,2877,2878,2880,2880,2887,2888,2891,2892,2903,2903,2908,2909,2911,2913,2918,2928,2947,2947,2949,2954,2958,2960,2962,2965,2969,2970,2972,2972,2974,2975,2979,2980,2984,2986,2990,2997,2999,3001,3006,3007,3009,3010,3014,3016,3018,3020,3031,3031,3047,3058,3073,3075,3077,3084,3086,3088,3090,3112,3114,3123,3125,3129,3137,3140,3168,3169,3174,3183,3202,3203,3205,3212,3214,3216,3218,3240,3242,3251,3253,3257,3262,3262,3264,3268,3271,3272,3274,3275,3285,3286,3294,3294,3296,3297,3302,3311,3330,3331,3333,3340,3342,3344,3346,3368,3370,3385,3390,3392,3398,3400,3402,3404,3415,3415,3424,3425,3430,3439,3458,3459,3461,3478,3482,3505,3507,3515,3517,3517,3520,3526,3535,3537,3544,3551,3570,3572,3585,3632,3634,3635,3648,3654,3663,3675,3713,3714,3716,3716,3719,3720,3722,3722,3725,3725,3732,3735,3737,3743,3745,3747,3749,3749,3751,3751,3754,3755,3757,3760,3762,3763,3773,3773,3776,3780,3782,3782,3792,3801,3804,3805,3840,3863,3866,3892,3894,3894,3896,3896,3902,3911,3913,3946,3967,3967,3973,3973,3976,3979,4030,4037,4039,4044,4047,4047,4096,4129,4131,4135,4137,4138,4140,4140,4145,4145,4152,4152,4160,4183,4256,4293,4304,4344,4347,4347,4352,4441,4447,4514,4520,4601,4608,4614,4616,4678,4680,4680,4682,4685,4688,4694,4696,4696,4698,4701,4704,4742,4744,4744,4746,4749,4752,4782,4784,4784,4786,4789,4792,4798,4800,4800,4802,4805,4808,4814,4816,4822,4824,4846,4848,4878,4880,4880,4882,4885,4888,4894,4896,4934,4936,4954,4961,4988,5024,5108,5121,5750,5761,5786,5792,5872,5888,5900,5902,5905,5920,5937,5941,5942,5952,5969,5984,5996,5998,6e3,6016,6070,6078,6085,6087,6088,6100,6106,6108,6108,6112,6121,6160,6169,6176,6263,6272,6312,7680,7835,7840,7929,7936,7957,7960,7965,7968,8005,8008,8013,8016,8023,8025,8025,8027,8027,8029,8029,8031,8061,8064,8116,8118,8124,8126,8126,8130,8132,8134,8140,8144,8147,8150,8155,8160,8172,8178,8180,8182,8188,8206,8206,8305,8305,8319,8319,8450,8450,8455,8455,8458,8467,8469,8469,8473,8477,8484,8484,8486,8486,8488,8488,8490,8493,8495,8497,8499,8505,8509,8511,8517,8521,8544,8579,9014,9082,9109,9109,9372,9449,12293,12295,12321,12329,12337,12341,12344,12348,12353,12438,12445,12447,12449,12538,12540,12543,12549,12588,12593,12686,12688,12727,12784,12828,12832,12867,12896,12923,12927,12976,12992,13003,13008,13054,13056,13174,13179,13277,13280,13310,13312,19893,19968,40869,40960,42124,44032,55203,55296,64045,64048,64106,64256,64262,64275,64279,65313,65338,65345,65370,65382,65470,65474,65479,65482,65487,65490,65495,65498,65500,66304,66334,66336,66339,66352,66378,66560,66597,66600,66637,118784,119029,119040,119078,119082,119142,119146,119154,119171,119172,119180,119209,119214,119261,119808,119892,119894,119964,119966,119967,119970,119970,119973,119974,119977,119980,119982,119993,119995,119995,119997,12e4,120002,120003,120005,120069,120071,120074,120077,120084,120086,120092,120094,120121,120123,120126,120128,120132,120134,120134,120138,120144,120146,120483,120488,120777,131072,173782,194560,195101,983040,1048573,1048576,1114109],VA=function(H){return QA(H,Yt)},_A=function(H){return QA(H,NA)},Qt=function(H){return QA(H,CA)},ht=function(H){return H.codePointAt(0)},vt=function(H){return H[0]},Nt=function(H){return H[H.length-1]};function vA(dA){for(var H=[],T=dA.length,X=0;X=55296&&V<=56319&&T>X+1){var uA=dA.charCodeAt(X+1);if(uA>=56320&&uA<=57343){H.push(1024*(V-55296)+uA-56320+65536),X+=1;continue}}H.push(V)}return H}var Z=function(){function dA(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(C(this,dA),!T.ownerPassword&&!T.userPassword)throw new Error("None of owner password and user password is defined.");this.document=H,this._setupEncryption(T)}return h(dA,null,[{key:"generateFileID",value:function(){var T=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},X="".concat(T.CreationDate.getTime(),"\n");for(var V in T)T.hasOwnProperty(V)&&(X+="".concat(V,": ").concat(T[V].valueOf(),"\n"));return Lt(g.default.MD5(X))}},{key:"generateRandomWordArray",value:function(T){return g.default.lib.WordArray.random(T)}},{key:"create",value:function(T){var X=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return X.ownerPassword||X.userPassword?new dA(T,X):null}}]),h(dA,[{key:"_setupEncryption",value:function(T){switch(T.pdfVersion){case"1.4":case"1.5":this.version=2;break;case"1.6":case"1.7":this.version=4;break;case"1.7ext3":this.version=5;break;default:this.version=1}var X={Filter:"Standard"};switch(this.version){case 1:case 2:case 4:this._setupEncryptionV1V2V4(this.version,X,T);break;case 5:this._setupEncryptionV5(X,T)}this.dictionary=this.document.ref(X)}},{key:"_setupEncryptionV1V2V4",value:function(T,X,V){var uA,mA;switch(T){case 1:uA=2,this.keyBits=40,mA=function k(){var dA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},H=-64;return dA.printing&&(H|=4),dA.modifying&&(H|=8),dA.copying&&(H|=16),dA.annotating&&(H|=32),H}(V.permissions);break;case 2:uA=3,this.keyBits=128,mA=U(V.permissions);break;case 4:uA=4,this.keyBits=128,mA=U(V.permissions)}var Ct,tt=Tt(V.userPassword),rt=V.ownerPassword?Tt(V.ownerPassword):tt,ut=function GA(dA,H,T,X){for(var V=X,uA=dA>=3?51:1,mA=0;mA=3?20:1;for(var ut=0;ut=3?51:1,rt=0;rt=2&&(X.Length=this.keyBits),4===T&&(X.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV2",Length:this.keyBits/8}},X.StmF="StdCF",X.StrF="StdCF"),X.R=uA,X.O=Lt(ut),X.U=Lt(Ct),X.P=mA}},{key:"_setupEncryptionV5",value:function(T,X){this.keyBits=256;var V=U(X.permissions),uA=yt(X.userPassword),mA=X.ownerPassword?yt(X.ownerPassword):uA;this.encryptionKey=function jA(dA){return dA(32)}(dA.generateRandomWordArray);var tt=function O(dA,H){var T=H(8),X=H(8);return g.default.SHA256(dA.clone().concat(T)).concat(T).concat(X)}(uA,dA.generateRandomWordArray),ut=function qA(dA,H,T){var X=g.default.SHA256(dA.clone().concat(H)),V={mode:g.default.mode.CBC,padding:g.default.pad.NoPadding,iv:g.default.lib.WordArray.create(null,16)};return g.default.AES.encrypt(T,X,V).ciphertext}(uA,g.default.lib.WordArray.create(tt.words.slice(10,12),8),this.encryptionKey),Ct=function nt(dA,H,T){var X=T(8),V=T(8);return g.default.SHA256(dA.clone().concat(X).concat(H)).concat(X).concat(V)}(mA,tt,dA.generateRandomWordArray),Dt=function MA(dA,H,T,X){var V=g.default.SHA256(dA.clone().concat(H).concat(T)),uA={mode:g.default.mode.CBC,padding:g.default.pad.NoPadding,iv:g.default.lib.WordArray.create(null,16)};return g.default.AES.encrypt(X,V,uA).ciphertext}(mA,g.default.lib.WordArray.create(Ct.words.slice(10,12),8),tt,this.encryptionKey),Ft=function ot(dA,H,T){var X=g.default.lib.WordArray.create([Ut(dA),4294967295,1415668834],12).concat(T(4));return g.default.AES.encrypt(X,H,{mode:g.default.mode.ECB,padding:g.default.pad.NoPadding}).ciphertext}(V,this.encryptionKey,dA.generateRandomWordArray);T.V=5,T.Length=this.keyBits,T.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV3",Length:this.keyBits/8}},T.StmF="StdCF",T.StrF="StdCF",T.R=5,T.O=Lt(Ct),T.OE=Lt(Dt),T.U=Lt(tt),T.UE=Lt(ut),T.P=V,T.Perms=Lt(Ft)}},{key:"getEncryptFn",value:function(T,X){var V,mA;if(this.version<5&&(V=this.encryptionKey.clone().concat(g.default.lib.WordArray.create([(255&T)<<24|(65280&T)<<8|T>>8&65280|255&X,(65280&X)<<16],5))),1===this.version||2===this.version){var uA=g.default.MD5(V);return uA.sigBytes=Math.min(16,this.keyBits/8+5),function(ut){return Lt(g.default.RC4.encrypt(g.default.lib.WordArray.create(ut),uA).ciphertext)}}mA=4===this.version?g.default.MD5(V.concat(g.default.lib.WordArray.create([1933667412],4))):this.encryptionKey;var tt=dA.generateRandomWordArray(16),rt={mode:g.default.mode.CBC,padding:g.default.pad.Pkcs7,iv:tt};return function(ut){return Lt(tt.clone().concat(g.default.AES.encrypt(g.default.lib.WordArray.create(ut),mA,rt).ciphertext))}}},{key:"end",value:function(){this.dictionary.end()}}]),dA}();function U(){var dA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},H=-3904;return"lowResolution"===dA.printing&&(H|=4),"highResolution"===dA.printing&&(H|=2052),dA.modifying&&(H|=8),dA.copying&&(H|=16),dA.annotating&&(H|=32),dA.fillingForms&&(H|=256),dA.contentAccessibility&&(H|=512),dA.documentAssembly&&(H|=1024),H}function Tt(){for(var dA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",H=a.alloc(32),T=dA.length,X=0;X255)throw new Error("Password contains one or more invalid characters.");H[X]=V,X++}for(;X<32;)H[X]=sn[X-T],X++;return g.default.lib.WordArray.create(H)}function yt(){var dA=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";dA=unescape(encodeURIComponent(function Bt(dA){var H=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if("string"!=typeof dA)throw new TypeError("Expected string.");if(0===dA.length)return"";var T=vA(dA).map(function(Mt){return _A(Mt)?32:Mt}).filter(function(Mt){return!Qt(Mt)}),X=String.fromCodePoint.apply(null,T).normalize("NFKC"),V=vA(X);if(V.some(wt))throw new Error("Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3");if(!0!==H.allowUnassigned&&V.some(cA))throw new Error("Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5");var tt=V.some(pt),rt=V.some(VA);if(tt&&rt)throw new Error("String must not contain RandALCat and LCat at the same time, see https://tools.ietf.org/html/rfc3454#section-6");var ut=pt(ht(vt(X))),Ct=pt(ht(Nt(X)));if(tt&&(!ut||!Ct))throw new Error("Bidirectional RandALCat character must be the first and the last character of the string, see https://tools.ietf.org/html/rfc3454#section-6");return X}(dA)));for(var H=Math.min(127,dA.length),T=a.alloc(H),X=0;X>8&65280|dA>>24&255}function Lt(dA){for(var H=[],T=0;T>8*(3-T%4)&255);return a.from(H)}var kt,zt,Wt,ae,mn,dn,sn=[40,191,78,94,78,117,138,65,100,0,78,86,255,250,1,8,46,46,0,182,208,104,62,128,47,12,169,254,100,83,105,122],$t=xA.number,Kt=function(){function dA(H){C(this,dA),this.doc=H,this.stops=[],this.embedded=!1,this.transform=[1,0,0,1,0,0]}return h(dA,[{key:"stop",value:function(T,X,V){if(null==V&&(V=1),X=this.doc._normalizeColor(X),0===this.stops.length)if(3===X.length)this._colorSpace="DeviceRGB";else if(4===X.length)this._colorSpace="DeviceCMYK";else{if(1!==X.length)throw new Error("Unknown color space");this._colorSpace="DeviceGray"}else if("DeviceRGB"===this._colorSpace&&3!==X.length||"DeviceCMYK"===this._colorSpace&&4!==X.length||"DeviceGray"===this._colorSpace&&1!==X.length)throw new Error("All gradient stops must use the same color space");return V=Math.max(0,Math.min(1,V)),this.stops.push([T,X,V]),this}},{key:"setTransform",value:function(T,X,V,uA,mA,tt){return this.transform=[T,X,V,uA,mA,tt],this}},{key:"embed",value:function(T){var X,V=this.stops.length;if(0!==V){this.embedded=!0,this.matrix=T;var uA=this.stops[V-1];uA[0]<1&&this.stops.push([1,uA[1],uA[2]]);for(var mA=[],tt=[],rt=[],ut=0;ut>16,T>>8&255,255&T]}else wn[H]&&(H=wn[H]);return Array.isArray(H)?(3===H.length?H=H.map(function(X){return X/255}):4===H.length&&(H=H.map(function(X){return X/100})),H):null},_setColor:function(H,T){return H instanceof An?(H.apply(T),!0):Array.isArray(H)&&H[0]instanceof Qe?(H[0].apply(T,H[1]),!0):this._setColorCore(H,T)},_setColorCore:function(H,T){if(!(H=this._normalizeColor(H)))return!1;var X=T?"SCN":"scn",V=this._getColorSpace(H);return this._setColorSpace(V,T),H=H.join(" "),this.addContent("".concat(H," ").concat(X)),!0},_setColorSpace:function(H,T){var X=T?"CS":"cs";return this.addContent("/".concat(H," ").concat(X))},_getColorSpace:function(H){return 4===H.length?"DeviceCMYK":"DeviceRGB"},fillColor:function(H,T){return this._setColor(H,!1)&&this.fillOpacity(T),this._fillColor=[H,T],this},strokeColor:function(H,T){return this._setColor(H,!0)&&this.strokeOpacity(T),this},opacity:function(H){return this._doOpacity(H,H),this},fillOpacity:function(H){return this._doOpacity(H,null),this},strokeOpacity:function(H){return this._doOpacity(null,H),this},_doOpacity:function(H,T){var X,V;if(null!=H||null!=T){null!=H&&(H=Math.max(0,Math.min(1,H))),null!=T&&(T=Math.max(0,Math.min(1,T)));var uA="".concat(H,"_").concat(T);if(this._opacityRegistry[uA]){var mA=z(this._opacityRegistry[uA],2);X=mA[0],V=mA[1]}else{X={Type:"ExtGState"},null!=H&&(X.ca=H),null!=T&&(X.CA=T),(X=this.ref(X)).end();var tt=++this._opacityCount;V="Gs".concat(tt),this._opacityRegistry[uA]=[X,V]}return this.page.ext_gstates[V]=X,this.addContent("/".concat(V," gs"))}},linearGradient:function(H,T,X,V){return new Te(this,H,T,X,V)},radialGradient:function(H,T,X,V,uA,mA){return new Fe(this,H,T,X,V,uA,mA)},pattern:function(H,T,X,V){return new Qe(this,H,T,X,V)}},wn={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],grey:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],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],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]};kt=zt=Wt=ae=mn=dn=0;var Tn={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0},xn={M:function(H,T){return Wt=ae=null,mn=kt=T[0],dn=zt=T[1],H.moveTo(kt,zt)},m:function(H,T){return Wt=ae=null,mn=kt+=T[0],dn=zt+=T[1],H.moveTo(kt,zt)},C:function(H,T){return kt=T[4],zt=T[5],Wt=T[2],ae=T[3],H.bezierCurveTo.apply(H,F(T))},c:function(H,T){return H.bezierCurveTo(T[0]+kt,T[1]+zt,T[2]+kt,T[3]+zt,T[4]+kt,T[5]+zt),Wt=kt+T[2],ae=zt+T[3],kt+=T[4],zt+=T[5]},S:function(H,T){return null===Wt&&(Wt=kt,ae=zt),H.bezierCurveTo(kt-(Wt-kt),zt-(ae-zt),T[0],T[1],T[2],T[3]),Wt=T[0],ae=T[1],kt=T[2],zt=T[3]},s:function(H,T){return null===Wt&&(Wt=kt,ae=zt),H.bezierCurveTo(kt-(Wt-kt),zt-(ae-zt),kt+T[0],zt+T[1],kt+T[2],zt+T[3]),Wt=kt+T[0],ae=zt+T[1],kt+=T[2],zt+=T[3]},Q:function(H,T){return Wt=T[0],ae=T[1],H.quadraticCurveTo(T[0],T[1],kt=T[2],zt=T[3])},q:function(H,T){return H.quadraticCurveTo(T[0]+kt,T[1]+zt,T[2]+kt,T[3]+zt),Wt=kt+T[0],ae=zt+T[1],kt+=T[2],zt+=T[3]},T:function(H,T){return null===Wt?(Wt=kt,ae=zt):(Wt=kt-(Wt-kt),ae=zt-(ae-zt)),H.quadraticCurveTo(Wt,ae,T[0],T[1]),Wt=kt-(Wt-kt),ae=zt-(ae-zt),kt=T[0],zt=T[1]},t:function(H,T){return null===Wt?(Wt=kt,ae=zt):(Wt=kt-(Wt-kt),ae=zt-(ae-zt)),H.quadraticCurveTo(Wt,ae,kt+T[0],zt+T[1]),kt+=T[0],zt+=T[1]},A:function(H,T){return ZA(H,kt,zt,T),kt=T[5],zt=T[6]},a:function(H,T){return T[5]+=kt,T[6]+=zt,ZA(H,kt,zt,T),kt=T[5],zt=T[6]},L:function(H,T){return Wt=ae=null,H.lineTo(kt=T[0],zt=T[1])},l:function(H,T){return Wt=ae=null,H.lineTo(kt+=T[0],zt+=T[1])},H:function(H,T){return Wt=ae=null,H.lineTo(kt=T[0],zt)},h:function(H,T){return Wt=ae=null,H.lineTo(kt+=T[0],zt)},V:function(H,T){return Wt=ae=null,H.lineTo(kt,zt=T[0])},v:function(H,T){return Wt=ae=null,H.lineTo(kt,zt+=T[0])},Z:function(H){return H.closePath(),kt=mn,zt=dn},z:function(H){return H.closePath(),kt=mn,zt=dn}},ZA=function(H,T,X,V){var Vt,uA=z(V,7),Ot=YA(SA(uA[5],uA[6],uA[0],uA[1],uA[3],uA[4],uA[2],T,X));try{for(Ot.s();!(Vt=Ot.n()).done;){var Be=it.apply(void 0,F(Vt.value));H.bezierCurveTo.apply(H,F(Be))}}catch(Ye){Ot.e(Ye)}finally{Ot.f()}},SA=function(H,T,X,V,uA,mA,tt,rt,ut){var Ct=tt*(Math.PI/180),Mt=Math.sin(Ct),Dt=Math.cos(Ct);X=Math.abs(X),V=Math.abs(V);var Ft=(Wt=Dt*(rt-H)*.5+Mt*(ut-T)*.5)*Wt/(X*X)+(ae=Dt*(ut-T)*.5-Mt*(rt-H)*.5)*ae/(V*V);Ft>1&&(X*=Ft=Math.sqrt(Ft),V*=Ft);var Ot=Dt/X,Vt=Mt/X,Ae=-Mt/V,Be=Dt/V,Ye=Ot*rt+Vt*ut,Ze=Ae*rt+Be*ut,me=Ot*H+Vt*T,Ve=Ae*H+Be*T,We=1/((me-Ye)*(me-Ye)+(Ve-Ze)*(Ve-Ze))-.25;We<0&&(We=0);var En=Math.sqrt(We);mA===uA&&(En=-En);var vn=.5*(Ye+me)-En*(Ve-Ze),Xn=.5*(Ze+Ve)+En*(me-Ye),On=Math.atan2(Ze-Xn,Ye-vn),Jn=Math.atan2(Ve-Xn,me-vn)-On;Jn<0&&1===mA?Jn+=2*Math.PI:Jn>0&&0===mA&&(Jn-=2*Math.PI);for(var ni=Math.ceil(Math.abs(Jn/(.5*Math.PI+.001))),Zn=[],qn=0;qn0&&(V[V.length]=+uA),X[X.length]={cmd:T,args:V},V=[],uA="",mA=!1),T=Ct;else if([" ",","].includes(Ct)||"-"===Ct&&uA.length>0&&"e"!==uA[uA.length-1]||"."===Ct&&mA){if(0===uA.length)continue;V.length===tt?(X[X.length]={cmd:T,args:V},V=[+uA],"M"===T&&(T="L"),"m"===T&&(T="l")):V[V.length]=+uA,mA="."===Ct,uA=["-","."].includes(Ct)?Ct:""}else uA+=Ct,"."===Ct&&(mA=!0)}}catch(Mt){rt.e(Mt)}finally{rt.f()}return uA.length>0&&(V.length===tt?(X[X.length]={cmd:T,args:V},V=[+uA],"M"===T&&(T="L"),"m"===T&&(T="l")):V[V.length]=+uA),X[X.length]={cmd:T,args:V},X}(X);!function(H,T){kt=zt=Wt=ae=mn=dn=0;for(var X=0;X1&&void 0!==arguments[1]?arguments[1]:{},X=H;if(Array.isArray(H)||(H=[H,T.space||H]),!H.every(function(uA){return Number.isFinite(uA)&&uA>0}))throw new Error("dash(".concat(JSON.stringify(X),", ").concat(JSON.stringify(T),") invalid, lengths must be numeric and greater than zero"));return H=H.map(TA).join(" "),this.addContent("[".concat(H,"] ").concat(TA(T.phase||0)," d"))},undash:function(){return this.addContent("[] 0 d")},moveTo:function(H,T){return this.addContent("".concat(TA(H)," ").concat(TA(T)," m"))},lineTo:function(H,T){return this.addContent("".concat(TA(H)," ").concat(TA(T)," l"))},bezierCurveTo:function(H,T,X,V,uA,mA){return this.addContent("".concat(TA(H)," ").concat(TA(T)," ").concat(TA(X)," ").concat(TA(V)," ").concat(TA(uA)," ").concat(TA(mA)," c"))},quadraticCurveTo:function(H,T,X,V){return this.addContent("".concat(TA(H)," ").concat(TA(T)," ").concat(TA(X)," ").concat(TA(V)," v"))},rect:function(H,T,X,V){return this.addContent("".concat(TA(H)," ").concat(TA(T)," ").concat(TA(X)," ").concat(TA(V)," re"))},roundedRect:function(H,T,X,V,uA){null==uA&&(uA=0);var mA=(uA=Math.min(uA,.5*X,.5*V))*(1-UA);return this.moveTo(H+uA,T),this.lineTo(H+X-uA,T),this.bezierCurveTo(H+X-mA,T,H+X,T+mA,H+X,T+uA),this.lineTo(H+X,T+V-uA),this.bezierCurveTo(H+X,T+V-mA,H+X-mA,T+V,H+X-uA,T+V),this.lineTo(H+uA,T+V),this.bezierCurveTo(H+mA,T+V,H,T+V-mA,H,T+V-uA),this.lineTo(H,T+uA),this.bezierCurveTo(H,T+mA,H+mA,T,H+uA,T),this.closePath()},ellipse:function(H,T,X,V){null==V&&(V=X);var uA=X*UA,mA=V*UA,tt=(H-=X)+2*X,rt=(T-=V)+2*V,ut=H+X,Ct=T+V;return this.moveTo(H,Ct),this.bezierCurveTo(H,Ct-mA,ut-uA,T,ut,T),this.bezierCurveTo(ut+uA,T,tt,Ct-mA,tt,Ct),this.bezierCurveTo(tt,Ct+mA,ut+uA,rt,ut,rt),this.bezierCurveTo(ut-uA,rt,H,Ct+mA,H,Ct),this.closePath()},circle:function(H,T,X){return this.ellipse(H,T,X)},arc:function(H,T,X,V,uA,mA){null==mA&&(mA=!1);var tt=2*Math.PI,rt=.5*Math.PI,ut=uA-V;Math.abs(ut)>tt?ut=tt:0!==ut&&mA!==ut<0&&(ut=(mA?-1:1)*tt+ut);var Mt=Math.ceil(Math.abs(ut)/rt),Dt=ut/Mt,Ft=Dt/rt*UA*X,Ot=V,Vt=-Math.sin(Ot)*Ft,Ae=Math.cos(Ot)*Ft,Be=H+Math.cos(Ot)*X,Ye=T+Math.sin(Ot)*X;this.moveTo(Be,Ye);for(var Ze=0;Ze1&&void 0!==arguments[1]?arguments[1]:{},V=H*Math.PI/180,uA=Math.cos(V),mA=Math.sin(V),tt=X=0;if(null!=T.origin){var rt=z(T.origin,2),Ct=(tt=rt[0])*mA+(X=rt[1])*uA;tt-=tt*uA-X*mA,X-=Ct}return this.transform(uA,mA,-mA,uA,tt,X)},scale:function(H,T){var V,X=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};null==T&&(T=H),"object"==typeof T&&(X=T,T=H);var uA=V=0;if(null!=X.origin){var mA=z(X.origin,2);uA=mA[0],V=mA[1],uA-=H*uA,V-=T*V}return this.transform(H,0,0,T,uA,V)}},et={402:131,8211:150,8212:151,8216:145,8217:146,8218:130,8220:147,8221:148,8222:132,8224:134,8225:135,8226:149,8230:133,8364:128,8240:137,8249:139,8250:155,710:136,8482:153,338:140,339:156,732:152,352:138,353:154,376:159,381:142,382:158},LA=".notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n \nspace exclam quotedbl numbersign\ndollar percent ampersand quotesingle\nparenleft parenright asterisk plus\ncomma hyphen period slash\nzero one two three\nfour five six seven\neight nine colon semicolon\nless equal greater question\n \nat A B C\nD E F G\nH I J K\nL M N O\nP Q R S\nT U V W\nX Y Z bracketleft\nbackslash bracketright asciicircum underscore\n \ngrave a b c\nd e f g\nh i j k\nl m n o\np q r s\nt u v w\nx y z braceleft\nbar braceright asciitilde .notdef\n \nEuro .notdef quotesinglbase florin\nquotedblbase ellipsis dagger daggerdbl\ncircumflex perthousand Scaron guilsinglleft\nOE .notdef Zcaron .notdef\n.notdef quoteleft quoteright quotedblleft\nquotedblright bullet endash emdash\ntilde trademark scaron guilsinglright\noe .notdef zcaron ydieresis\n \nspace exclamdown cent sterling\ncurrency yen brokenbar section\ndieresis copyright ordfeminine guillemotleft\nlogicalnot hyphen registered macron\ndegree plusminus twosuperior threesuperior\nacute mu paragraph periodcentered\ncedilla onesuperior ordmasculine guillemotright\nonequarter onehalf threequarters questiondown\n \nAgrave Aacute Acircumflex Atilde\nAdieresis Aring AE Ccedilla\nEgrave Eacute Ecircumflex Edieresis\nIgrave Iacute Icircumflex Idieresis\nEth Ntilde Ograve Oacute\nOcircumflex Otilde Odieresis multiply\nOslash Ugrave Uacute Ucircumflex\nUdieresis Yacute Thorn germandbls\n \nagrave aacute acircumflex atilde\nadieresis aring ae ccedilla\negrave eacute ecircumflex edieresis\nigrave iacute icircumflex idieresis\neth ntilde ograve oacute\nocircumflex otilde odieresis divide\noslash ugrave uacute ucircumflex\nudieresis yacute thorn ydieresis".split(/\s+/),at=function(){function dA(H){C(this,dA),this.contents=H,this.attributes={},this.glyphWidths={},this.boundingBoxes={},this.kernPairs={},this.parse(),this.charWidths=new Array(256);for(var T=0;T<=255;T++)this.charWidths[T]=this.glyphWidths[LA[T]];this.bbox=this.attributes.FontBBox.split(/\s+/).map(function(X){return+X}),this.ascender=+(this.attributes.Ascender||0),this.descender=+(this.attributes.Descender||0),this.xHeight=+(this.attributes.XHeight||0),this.capHeight=+(this.attributes.CapHeight||0),this.lineGap=this.bbox[3]-this.bbox[1]-(this.ascender-this.descender)}return h(dA,null,[{key:"open",value:function(T){return new dA(E.readFileSync(T,"utf8"))}}]),h(dA,[{key:"parse",value:function(){var V,T="",X=YA(this.contents.split("\n"));try{for(X.s();!(V=X.n()).done;){var mA,tt,uA=V.value;if(mA=uA.match(/^Start(\w+)/))T=mA[1];else if(mA=uA.match(/^End(\w+)/))T="";else switch(T){case"FontMetrics":var rt=(mA=uA.match(/(^\w+)\s+(.*)/))[1],ut=mA[2];(tt=this.attributes[rt])?(Array.isArray(tt)||(tt=this.attributes[rt]=[tt]),tt.push(ut)):this.attributes[rt]=ut;break;case"CharMetrics":if(!/^CH?\s/.test(uA))continue;var Ct=uA.match(/\bN\s+(\.?\w+)\s*;/)[1];this.glyphWidths[Ct]=+uA.match(/\bWX\s+(\d+)\s*;/)[1];break;case"KernPairs":(mA=uA.match(/^KPX\s+(\.?\w+)\s+(\.?\w+)\s+(-?\d+)/))&&(this.kernPairs[mA[1]+"\0"+mA[2]]=parseInt(mA[3]))}}}catch(Mt){X.e(Mt)}finally{X.f()}}},{key:"encodeText",value:function(T){for(var X=[],V=0,uA=T.length;V>8,rt=0;this.font.post.isFixedPitch&&(rt|=1),1<=tt&&tt<=7&&(rt|=2),rt|=4,10===tt&&(rt|=8),this.font.head.macStyle.italic&&(rt|=64);var Ct=[1,2,3,4,5,6].map(function(Be){return String.fromCharCode((V.id.charCodeAt(Be)||73)+17)}).join("")+"+"+this.font.postscriptName,Mt=this.font.bbox,Dt=this.document.ref({Type:"FontDescriptor",FontName:Ct,Flags:rt,FontBBox:[Mt.minX*this.scale,Mt.minY*this.scale,Mt.maxX*this.scale,Mt.maxY*this.scale],ItalicAngle:this.font.italicAngle,Ascent:this.ascender,Descent:this.descender,CapHeight:(this.font.capHeight||this.font.ascent)*this.scale,XHeight:(this.font.xHeight||0)*this.scale,StemV:0});if(uA?Dt.data.FontFile3=mA:Dt.data.FontFile2=mA,this.document.subset){var Ft=a.from("FFFFFFFFC0","hex"),Ot=this.document.ref();Ot.write(Ft),Ot.end(),Dt.data.CIDSet=Ot}Dt.end();var Vt={Type:"Font",Subtype:"CIDFontType0",BaseFont:Ct,CIDSystemInfo:{Registry:new String("Adobe"),Ordering:new String("Identity"),Supplement:0},FontDescriptor:Dt,W:[0,this.widths]};uA||(Vt.Subtype="CIDFontType2",Vt.CIDToGIDMap="Identity");var Ae=this.document.ref(Vt);return Ae.end(),this.dictionary.data={Type:"Font",Subtype:"Type0",BaseFont:Ct,Encoding:"Identity-H",DescendantFonts:[Ae],ToUnicode:this.toUnicodeCmap()},this.dictionary.end()}},{key:"toUnicodeCmap",value:function(){var tt,V=this.document.ref(),uA=[],mA=YA(this.unicode);try{for(mA.s();!(tt=mA.n()).done;){var Mt,ut=[],Ct=YA(tt.value);try{for(Ct.s();!(Mt=Ct.n()).done;){var Dt=Mt.value;Dt>65535&&(ut.push(St((Dt-=65536)>>>10&1023|55296)),Dt=56320|1023&Dt),ut.push(St(Dt))}}catch(Ft){Ct.e(Ft)}finally{Ct.f()}uA.push("<".concat(ut.join(" "),">"))}}catch(Ft){mA.e(Ft)}finally{mA.f()}return V.end("/CIDInit /ProcSet findresource begin\n12 dict begin\nbegincmap\n/CIDSystemInfo <<\n /Registry (Adobe)\n /Ordering (UCS)\n /Supplement 0\n>> def\n/CMapName /Adobe-Identity-UCS def\n/CMapType 2 def\n1 begincodespacerange\n<0000>\nendcodespacerange\n1 beginbfrange\n<0000> <".concat(St(uA.length-1),"> [").concat(uA.join(" "),"]\nendbfrange\nendcmap\nCMapName currentdict /CMap defineresource pop\nend\nend")),V}}]),T}(XA),Xt=function(){function dA(){C(this,dA)}return h(dA,null,[{key:"open",value:function(T,X,V,uA){var mA;if("string"==typeof X){if(xt.isStandardFont(X))return new xt(T,X,uA);X=E.readFileSync(X)}if(a.isBuffer(X)?mA=f.default.create(X,V):X instanceof Uint8Array?mA=f.default.create(a.from(X),V):X instanceof ArrayBuffer&&(mA=f.default.create(a.from(new Uint8Array(X)),V)),null==mA)throw new Error("Not a supported font format or standard PDF font.");return new jt(T,mA,uA)}}]),dA}(),ne={initFonts:function(){var H=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Helvetica";this._fontFamilies={},this._fontCount=0,this._fontSize=12,this._font=null,this._registeredFonts={},H&&this.font(H)},font:function(H,T,X){var V,uA;if("number"==typeof T&&(X=T,T=null),"string"==typeof H&&this._registeredFonts[H]){V=H;var mA=this._registeredFonts[H];H=mA.src,T=mA.family}else"string"!=typeof(V=T||H)&&(V=null);if(null!=X&&this.fontSize(X),uA=this._fontFamilies[V])return this._font=uA,this;var tt="F".concat(++this._fontCount);return this._font=Xt.open(this,H,T,tt),(uA=this._fontFamilies[this._font.name])?(this._font=uA,this):(V&&(this._fontFamilies[V]=this._font),this._font.name&&(this._fontFamilies[this._font.name]=this._font),this)},fontSize:function(H){return this._fontSize=H,this},currentLineHeight:function(H){return null==H&&(H=!1),this._font.lineHeight(this._fontSize,H)},registerFont:function(H,T,X){return this._registeredFonts[H]={src:T,family:X},this}},Et=function(dA){p(T,dA);var H=S(T);function T(X,V){var uA;return C(this,T),(uA=H.call(this)).document=X,uA.indent=V.indent||0,uA.characterSpacing=V.characterSpacing||0,uA.wordSpacing=0===V.wordSpacing,uA.columns=V.columns||1,uA.columnGap=null!=V.columnGap?V.columnGap:18,uA.lineWidth=(V.width-uA.columnGap*(uA.columns-1))/uA.columns,uA.spaceLeft=uA.lineWidth,uA.startX=uA.document.x,uA.startY=uA.document.y,uA.column=1,uA.ellipsis=V.ellipsis,uA.continuedX=0,uA.features=V.features,null!=V.height?(uA.height=V.height,uA.maxY=uA.startY+V.height):uA.maxY=uA.document.page.maxY(),uA.on("firstLine",function(mA){var tt=uA.continuedX||uA.indent;return uA.document.x+=tt,uA.lineWidth-=tt,uA.once("line",function(){if(uA.document.x-=tt,uA.lineWidth+=tt,mA.continued&&!uA.continuedX&&(uA.continuedX=uA.indent),!mA.continued)return uA.continuedX=0})}),uA.on("lastLine",function(mA){var tt=mA.align;return"justify"===tt&&(mA.align="left"),uA.lastLine=!0,uA.once("line",function(){return uA.document.y+=mA.paragraphGap||0,mA.align=tt,uA.lastLine=!1})}),uA}return h(T,[{key:"wordWidth",value:function(V){return this.document.widthOfString(V,this)+this.characterSpacing+this.wordSpacing}},{key:"eachWord",value:function(V,uA){for(var mA,tt=new u.default(V),rt=null,ut=Object.create(null);mA=tt.nextBreak();){var Ct,Mt=V.slice(rt?.position||0,mA.position),Dt=null!=ut[Mt]?ut[Mt]:ut[Mt]=this.wordWidth(Mt);if(Dt>this.lineWidth+this.continuedX)for(var Ft=rt,Ot={};Mt.length;){var Vt,Ae;Dt>this.spaceLeft?(Vt=Math.ceil(this.spaceLeft/(Dt/Mt.length)),Ae=(Dt=this.wordWidth(Mt.slice(0,Vt)))<=this.spaceLeft&&Vtthis.spaceLeft&&Vt>0;Be||Ae;)Be?Be=(Dt=this.wordWidth(Mt.slice(0,--Vt)))>this.spaceLeft&&Vt>0:(Be=(Dt=this.wordWidth(Mt.slice(0,++Vt)))>this.spaceLeft&&Vt>0,Ae=Dt<=this.spaceLeft&&Vtthis.maxY||tt>this.maxY)&&this.nextSection();var rt="",ut=0,Ct=0,Mt=0,Dt=this.document.y,Ft=function(){return uA.textWidth=ut+mA.wordSpacing*(Ct-1),uA.wordCount=Ct,uA.lineWidth=mA.lineWidth,Dt=mA.document.y,mA.emit("line",rt,uA,mA),Mt++};return this.emit("sectionStart",uA,this),this.eachWord(V,function(Ot,Vt,Ae,Be){if((null==Be||Be.required)&&(mA.emit("firstLine",uA,mA),mA.spaceLeft=mA.lineWidth),Vt<=mA.spaceLeft&&(rt+=Ot,ut+=Vt,Ct++),Ae.required||Vt>mA.spaceLeft){var Ye=mA.document.currentLineHeight(!0);if(null!=mA.height&&mA.ellipsis&&mA.document.y+2*Ye>mA.maxY&&mA.column>=mA.columns){for(!0===mA.ellipsis&&(mA.ellipsis="\u2026"),rt=rt.replace(/\s+$/,""),ut=mA.wordWidth(rt+mA.ellipsis);rt&&ut>mA.lineWidth;)rt=rt.slice(0,-1).replace(/\s+$/,""),ut=mA.wordWidth(rt+mA.ellipsis);ut<=mA.lineWidth&&(rt+=mA.ellipsis),ut=mA.wordWidth(rt)}return Ae.required&&(Vt>mA.spaceLeft&&(Ft(),rt=Ot,ut=Vt,Ct=1),mA.emit("lastLine",uA,mA)),Ft(),mA.document.y+Ye>mA.maxY&&!mA.nextSection()?(Ct=0,rt="",!1):Ae.required?(mA.spaceLeft=mA.lineWidth,rt="",ut=0,Ct=0):(mA.spaceLeft=mA.lineWidth-Vt,rt=Ot,ut=Vt,Ct=1)}return mA.spaceLeft-=Vt}),Ct>0&&(this.emit("lastLine",uA,this),Ft()),this.emit("sectionEnd",uA,this),!0===uA.continued?(Mt>1&&(this.continuedX=0),this.continuedX+=uA.textWidth||0,this.document.y=Dt):this.document.x=this.startX}},{key:"nextSection",value:function(V){if(this.emit("sectionEnd",V,this),++this.column>this.columns){if(null!=this.height)return!1;var uA;this.document.continueOnNewPage(),this.column=1,this.startY=this.document.page.margins.top,this.maxY=this.document.page.maxY(),this.document.x=this.startX,this.document._fillColor&&(uA=this.document).fillColor.apply(uA,F(this.document._fillColor)),this.emit("pageBreak",V,this)}else this.document.x+=this.lineWidth+this.columnGap,this.document.y=this.startY,this.emit("columnBreak",V,this);return this.emit("sectionStart",V,this),!0}}]),T}(w.EventEmitter),Rt=xA.number,Zt={initText:function(){return this._line=this._line.bind(this),this.x=0,this.y=0,this._lineGap=0},lineGap:function(H){return this._lineGap=H,this},moveDown:function(H){return null==H&&(H=1),this.y+=this.currentLineHeight(!0)*H+this._lineGap,this},moveUp:function(H){return null==H&&(H=1),this.y-=this.currentLineHeight(!0)*H+this._lineGap,this},_text:function(H,T,X,V,uA){var mA=this;V=this._initOptions(T,X,V),H=null==H?"":"".concat(H),V.wordSpacing&&(H=H.replace(/\s{2,}/g," "));var tt=function(){V.structParent&&V.structParent.add(mA.struct(V.structType||"P",[mA.markStructureContent(V.structType||"P")]))};if(V.width){var rt=this._wrapper;rt||((rt=new Et(this,V)).on("line",uA),rt.on("firstLine",tt)),this._wrapper=V.continued?rt:null,this._textOptions=V.continued?V:null,rt.wrap(H,V)}else{var Ct,ut=YA(H.split("\n"));try{for(ut.s();!(Ct=ut.n()).done;){var Mt=Ct.value;tt(),uA(Mt,V)}}catch(Dt){ut.e(Dt)}finally{ut.f()}}return this},text:function(H,T,X,V){return this._text(H,T,X,V,this._line)},widthOfString:function(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this._font.widthOfString(H,this._fontSize,T.features)+(T.characterSpacing||0)*(H.length-1)},heightOfString:function(H,T){var X=this,V=this.x,uA=this.y;(T=this._initOptions(T)).height=1/0;var mA=T.lineGap||this._lineGap||0;this._text(H,this.x,this.y,T,function(){return X.y+=X.currentLineHeight(!0)+mA});var tt=this.y-uA;return this.x=V,this.y=uA,tt},list:function(H,T,X,V,uA){var mA=this,tt=(V=this._initOptions(T,X,V)).listType||"bullet",rt=Math.round(this._font.ascender/1e3*this._fontSize),ut=rt/2,Ct=V.bulletRadius||rt/3,Mt=V.textIndent||("bullet"===tt?5*Ct:2*rt),Dt=V.bulletIndent||("bullet"===tt?8*Ct:2*rt),Ft=1,Ot=[],Vt=[],Ae=[];!function me(Ve){for(var hn=1,We=0;We0&&void 0!==arguments[0]?arguments[0]:{},T=arguments.length>1?arguments[1]:void 0,X=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};"object"==typeof H&&(X=H,H=null);var V=Object.assign({},X);if(this._textOptions)for(var uA in this._textOptions)"continued"!==uA&&void 0===V[uA]&&(V[uA]=this._textOptions[uA]);return null!=H&&(this.x=H),null!=T&&(this.y=T),!1!==V.lineBreak&&(null==V.width&&(V.width=this.page.width-this.x-this.page.margins.right),V.width=Math.max(V.width,0)),V.columns||(V.columns=0),null==V.columnGap&&(V.columnGap=18),V},_line:function(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},X=arguments.length>2?arguments[2]:void 0;this._fragment(H,this.x,this.y,T);var V=T.lineGap||this._lineGap||0;return X?this.y+=this.currentLineHeight(!0)+V:this.x+=this.widthOfString(H)},_fragment:function(H,T,X,V){var mA,tt,rt,ut,Ct,Mt,uA=this;if(0!==(H="".concat(H).replace(/\n/g,"")).length){var Ft=V.wordSpacing||0,Ot=V.characterSpacing||0;if(V.width)switch(V.align||"left"){case"right":Ct=this.widthOfString(H.replace(/\s+$/,""),V),T+=V.lineWidth-Ct;break;case"center":T+=V.lineWidth/2-V.textWidth/2;break;case"justify":Mt=H.trim().split(/\s+/),Ct=this.widthOfString(H.replace(/\s+/g,""),V);var Vt=this.widthOfString(" ")+Ot;Ft=Math.max(0,(V.lineWidth-Ct)/Math.max(1,Mt.length-1)-Vt)}if("number"==typeof V.baseline)mA=-V.baseline;else{switch(V.baseline){case"svg-middle":mA=.5*this._font.xHeight;break;case"middle":case"svg-central":mA=.5*(this._font.descender+this._font.ascender);break;case"bottom":case"ideographic":mA=this._font.descender;break;case"alphabetic":mA=0;break;case"mathematical":mA=.5*this._font.ascender;break;case"hanging":mA=.8*this._font.ascender;break;default:mA=this._font.ascender}mA=mA/1e3*this._fontSize}var Ve,Ae=V.textWidth+Ft*(V.wordCount-1)+Ot*(H.length-1);if(null!=V.link&&this.link(T,X,Ae,this.currentLineHeight(),V.link),null!=V.goTo&&this.goTo(T,X,Ae,this.currentLineHeight(),V.goTo),null!=V.destination&&this.addNamedDestination(V.destination,"XYZ",T,X,null),V.underline){this.save(),V.stroke||this.strokeColor.apply(this,F(this._fillColor||[]));var Be=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(Be);var Ye=X+this.currentLineHeight()-Be;this.moveTo(T,Ye),this.lineTo(T+Ae,Ye),this.stroke(),this.restore()}if(V.strike){this.save(),V.stroke||this.strokeColor.apply(this,F(this._fillColor||[]));var Ze=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(Ze);var me=X+this.currentLineHeight()/2;this.moveTo(T,me),this.lineTo(T+Ae,me),this.stroke(),this.restore()}this.save(),V.oblique&&(Ve="number"==typeof V.oblique?-Math.tan(V.oblique*Math.PI/180):-.25,this.transform(1,0,0,1,T,X),this.transform(1,0,Ve,1,-Ve*mA,0),this.transform(1,0,0,1,-T,-X)),this.transform(1,0,0,-1,0,this.page.height),X=this.page.height-X-mA,null==this.page.fonts[this._font.id]&&(this.page.fonts[this._font.id]=this._font.ref()),this.addContent("BT"),this.addContent("1 0 0 1 ".concat(Rt(T)," ").concat(Rt(X)," Tm")),this.addContent("/".concat(this._font.id," ").concat(Rt(this._fontSize)," Tf"));var hn=V.fill&&V.stroke?2:V.stroke?1:0;if(hn&&this.addContent("".concat(hn," Tr")),Ot&&this.addContent("".concat(Rt(Ot)," Tc")),Ft){Mt=H.trim().split(/\s+/),Ft+=this.widthOfString(" ")+Ot,Ft*=1e3/this._fontSize,tt=[],ut=[];var En,We=YA(Mt);try{for(We.s();!(En=We.n()).done;){var On=z(this._font.encode(En.value,V.features),2),Jn=On[1];tt=tt.concat(On[0]),ut=ut.concat(Jn);var ni={},Zn=ut[ut.length-1];for(var qn in Zn)ni[qn]=Zn[qn];ni.xAdvance+=Ft,ut[ut.length-1]=ni}}catch(Gi){We.e(Gi)}finally{We.f()}}else{var Ti=z(this._font.encode(H,V.features),2);tt=Ti[0],ut=Ti[1]}var Ui=this._fontSize/1e3,Fi=[],Li=0,Pi=!1,ir=function(ii){if(Li ").concat(Rt(-Tr)))}return Li=ii},zi=function(ii){if(ir(ii),Fi.length>0)return uA.addContent("[".concat(Fi.join(" "),"] TJ")),Fi.length=0};for(rt=0;rt3&&void 0!==arguments[3]?arguments[3]:{};"object"==typeof T&&(V=T,T=null),T=null!=(Ct=T??V.x)?Ct:this.x,X=null!=(Mt=X??V.y)?Mt:this.y,"string"==typeof H&&(rt=this._imageRegistry[H]),rt||(rt=H.width&&H.height?H:this.openImage(H)),rt.obj||rt.embed(this),null==this.page.xobjects[rt.label]&&(this.page.xobjects[rt.label]=rt.obj);var Dt=V.width||rt.width,Ft=V.height||rt.height;if(V.width&&!V.height){var Ot=Dt/rt.width;Dt=rt.width*Ot,Ft=rt.height*Ot}else if(V.height&&!V.width){var Vt=Ft/rt.height;Dt=rt.width*Vt,Ft=rt.height*Vt}else if(V.scale)Dt=rt.width*V.scale,Ft=rt.height*V.scale;else if(V.fit){var Ae=z(V.fit,2);(ut=rt.width/rt.height)>(tt=Ae[0])/(uA=Ae[1])?(Dt=tt,Ft=tt/ut):(Ft=uA,Dt=uA*ut)}else if(V.cover){var Be=z(V.cover,2);(ut=rt.width/rt.height)>(tt=Be[0])/(uA=Be[1])?(Ft=uA,Dt=uA*ut):(Dt=tt,Ft=tt/ut)}return(V.fit||V.cover)&&("center"===V.align?T=T+tt/2-Dt/2:"right"===V.align&&(T=T+tt-Dt),"center"===V.valign?X=X+uA/2-Ft/2:"bottom"===V.valign&&(X=X+uA-Ft)),null!=V.link&&this.link(T,X,Dt,Ft,V.link),null!=V.goTo&&this.goTo(T,X,Dt,Ft,V.goTo),null!=V.destination&&this.addNamedDestination(V.destination,"XYZ",T,X,null),this.y===X&&(this.y+=Ft),this.save(),this.transform(Dt,0,0,-Ft,T,X+Ft),this.addContent("/".concat(rt.label," Do")),this.restore(),this},openImage:function(H){var T;return"string"==typeof H&&(T=this._imageRegistry[H]),T||(T=se.open(H,"I".concat(++this._imageCount)),"string"==typeof H&&(this._imageRegistry[H]=T)),T}},Oe={annotate:function(H,T,X,V,uA){for(var mA in uA.Type="Annot",uA.Rect=this._convertRect(H,T,X,V),uA.Border=[0,0,0],"Link"===uA.Subtype&&typeof uA.F>"u"&&(uA.F=4),"Link"!==uA.Subtype&&null==uA.C&&(uA.C=this._normalizeColor(uA.color||[0,0,0])),delete uA.color,"string"==typeof uA.Dest&&(uA.Dest=new String(uA.Dest)),uA){var tt=uA[mA];uA[mA[0].toUpperCase()+mA.slice(1)]=tt}var rt=this.ref(uA);return this.page.annotations.push(rt),rt.end(),this},note:function(H,T,X,V,uA){var mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return mA.Subtype="Text",mA.Contents=new String(uA),mA.Name="Comment",null==mA.color&&(mA.color=[243,223,92]),this.annotate(H,T,X,V,mA)},goTo:function(H,T,X,V,uA){var mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return mA.Subtype="Link",mA.A=this.ref({S:"GoTo",D:new String(uA)}),mA.A.end(),this.annotate(H,T,X,V,mA)},link:function(H,T,X,V,uA){var mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};if(mA.Subtype="Link","number"==typeof uA){var tt=this._root.data.Pages.data;if(!(uA>=0&&uA4&&void 0!==arguments[4]?arguments[4]:{},tt=z(this._convertRect(H,T,X,V),4),rt=tt[0],ut=tt[1],Ct=tt[2],Mt=tt[3];return uA.QuadPoints=[rt,Mt,Ct,Mt,rt,ut,Ct,ut],uA.Contents=new String,this.annotate(H,T,X,V,uA)},highlight:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Highlight",null==uA.color&&(uA.color=[241,238,148]),this._markup(H,T,X,V,uA)},underline:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Underline",this._markup(H,T,X,V,uA)},strike:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="StrikeOut",this._markup(H,T,X,V,uA)},lineAnnotation:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Line",uA.Contents=new String,uA.L=[H,this.page.height-T,X,this.page.height-V],this.annotate(H,T,X,V,uA)},rectAnnotation:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Square",uA.Contents=new String,this.annotate(H,T,X,V,uA)},ellipseAnnotation:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};return uA.Subtype="Circle",uA.Contents=new String,this.annotate(H,T,X,V,uA)},textAnnotation:function(H,T,X,V,uA){var mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{};return mA.Subtype="FreeText",mA.Contents=new String(uA),mA.DA=new String,this.annotate(H,T,X,V,mA)},fileAnnotation:function(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},mA=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},tt=this.file(uA.src,Object.assign({hidden:!0},uA));return mA.Subtype="FileAttachment",mA.FS=tt,mA.Contents?mA.Contents=new String(mA.Contents):tt.data.Desc&&(mA.Contents=tt.data.Desc),this.annotate(H,T,X,V,mA)},_convertRect:function(H,T,X,V){var uA=T;T+=V;var mA=H+X,tt=z(this._ctm,6),rt=tt[0],ut=tt[1],Ct=tt[2],Mt=tt[3],Dt=tt[4],Ft=tt[5];return[H=rt*H+Ct*T+Dt,T=ut*H+Mt*T+Ft,mA=rt*mA+Ct*uA+Dt,uA=ut*mA+Mt*uA+Ft]}},ge=function(){function dA(H,T,X,V){var uA=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{expanded:!1};C(this,dA),this.document=H,this.options=uA,this.outlineData={},null!==V&&(this.outlineData.Dest=[V.dictionary,"Fit"]),null!==T&&(this.outlineData.Parent=T),null!==X&&(this.outlineData.Title=new String(X)),this.dictionary=this.document.ref(this.outlineData),this.children=[]}return h(dA,[{key:"addItem",value:function(T){var V=new dA(this.document,this.dictionary,T,this.document.page,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{expanded:!1});return this.children.push(V),V}},{key:"endOutline",value:function(){if(this.children.length>0){this.options.expanded&&(this.outlineData.Count=this.children.length);var X=this.children[this.children.length-1];this.outlineData.First=this.children[0].dictionary,this.outlineData.Last=X.dictionary;for(var V=0,uA=this.children.length;V0&&(mA.outlineData.Prev=this.children[V-1].dictionary),V0)return this._root.data.Outlines=this.outline.dictionary,this._root.data.PageMode="UseOutlines"}},Ne=function(){function dA(H,T){C(this,dA),this.refs=[{pageRef:H,mcid:T}]}return h(dA,[{key:"push",value:function(T){var X=this;T.refs.forEach(function(V){return X.refs.push(V)})}}]),dA}(),qe=function(){function dA(H,T){var X=this,V=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},uA=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;C(this,dA),this.document=H,this._attached=!1,this._ended=!1,this._flushed=!1,this.dictionary=H.ref({S:T});var mA=this.dictionary.data;(Array.isArray(V)||this._isValidChild(V))&&(uA=V,V={}),typeof V.title<"u"&&(mA.T=new String(V.title)),typeof V.lang<"u"&&(mA.Lang=new String(V.lang)),typeof V.alt<"u"&&(mA.Alt=new String(V.alt)),typeof V.expanded<"u"&&(mA.E=new String(V.expanded)),typeof V.actual<"u"&&(mA.ActualText=new String(V.actual)),this._children=[],uA&&(Array.isArray(uA)||(uA=[uA]),uA.forEach(function(tt){return X.add(tt)}),this.end())}return h(dA,[{key:"add",value:function(T){if(this._ended)throw new Error("Cannot add child to already-ended structure element");if(!this._isValidChild(T))throw new Error("Invalid structure element child");return T instanceof dA&&(T.setParent(this.dictionary),this._attached&&T.setAttached()),T instanceof Ne&&this._addContentToParentTree(T),"function"==typeof T&&this._attached&&(T=this._contentForClosure(T)),this._children.push(T),this}},{key:"_addContentToParentTree",value:function(T){var X=this;T.refs.forEach(function(V){var uA=V.pageRef,mA=V.mcid;X.document.getStructParentTree().get(uA.data.StructParents)[mA]=X.dictionary})}},{key:"setParent",value:function(T){if(this.dictionary.data.P)throw new Error("Structure element added to more than one parent");this.dictionary.data.P=T,this._flush()}},{key:"setAttached",value:function(){var T=this;this._attached||(this._children.forEach(function(X,V){X instanceof dA&&X.setAttached(),"function"==typeof X&&(T._children[V]=T._contentForClosure(X))}),this._attached=!0,this._flush())}},{key:"end",value:function(){this._ended||(this._children.filter(function(T){return T instanceof dA}).forEach(function(T){return T.end()}),this._ended=!0,this._flush())}},{key:"_isValidChild",value:function(T){return T instanceof dA||T instanceof Ne||"function"==typeof T}},{key:"_contentForClosure",value:function(T){var X=this.document.markStructureContent(this.dictionary.data.S);return T(),this.document.endMarkedContent(),this._addContentToParentTree(X),X}},{key:"_isFlushable",value:function(){return!(!this.dictionary.data.P||!this._ended)&&this._children.every(function(T){return"function"!=typeof T&&(!(T instanceof dA)||T._isFlushable())})}},{key:"_flush",value:function(){var T=this;this._flushed||!this._isFlushable()||(this.dictionary.data.K=[],this._children.forEach(function(X){return T._flushChild(X)}),this.dictionary.end(),this._children=[],this.dictionary.data.K=null,this._flushed=!0)}},{key:"_flushChild",value:function(T){var X=this;T instanceof dA&&this.dictionary.data.K.push(T.dictionary),T instanceof Ne&&T.refs.forEach(function(V){var uA=V.pageRef,mA=V.mcid;X.dictionary.data.Pg||(X.dictionary.data.Pg=uA),X.dictionary.data.K.push(X.dictionary.data.Pg===uA?mA:{Type:"MCR",Pg:uA,MCID:mA})})}}]),dA}(),Dn=function(dA){p(T,dA);var H=S(T);function T(){return C(this,T),H.apply(this,arguments)}return h(T,[{key:"_compareKeys",value:function(V,uA){return parseInt(V)-parseInt(uA)}},{key:"_keysName",value:function(){return"Nums"}},{key:"_dataForKey",value:function(V){return parseInt(V)}}]),T}(J),tn={initMarkings:function(H){this.structChildren=[],H.tagged&&(this.getMarkInfoDictionary().data.Marked=!0,this.getStructTreeRoot())},markContent:function(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("Artifact"===H||T&&T.mcid){var X=0;for(this.page.markings.forEach(function(uA){(X||uA.structContent||"Artifact"===uA.tag)&&X++});X--;)this.endMarkedContent()}if(!T)return this.page.markings.push({tag:H}),this.addContent("/".concat(H," BMC")),this;this.page.markings.push({tag:H,options:T});var V={};return typeof T.mcid<"u"&&(V.MCID=T.mcid),"Artifact"===H&&("string"==typeof T.type&&(V.Type=T.type),Array.isArray(T.bbox)&&(V.BBox=[T.bbox[0],this.page.height-T.bbox[3],T.bbox[2],this.page.height-T.bbox[1]]),Array.isArray(T.attached)&&T.attached.every(function(uA){return"string"==typeof uA})&&(V.Attached=T.attached)),"Span"===H&&(T.lang&&(V.Lang=new String(T.lang)),T.alt&&(V.Alt=new String(T.alt)),T.expanded&&(V.E=new String(T.expanded)),T.actual&&(V.ActualText=new String(T.actual))),this.addContent("/".concat(H," ").concat(xA.convert(V)," BDC")),this},markStructureContent:function(H){var T=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},X=this.getStructParentTree().get(this.page.structParentTreeKey),V=X.length;X.push(null),this.markContent(H,R(R({},T),{},{mcid:V}));var uA=new Ne(this.page.dictionary,V);return this.page.markings.slice(-1)[0].structContent=uA,uA},endMarkedContent:function(){return this.page.markings.pop(),this.addContent("EMC"),this},struct:function(H){return new qe(this,H,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},arguments.length>2&&void 0!==arguments[2]?arguments[2]:null)},addStructure:function(H){var T=this.getStructTreeRoot();return H.setParent(T),H.setAttached(),this.structChildren.push(H),T.data.K||(T.data.K=[]),T.data.K.push(H.dictionary),this},initPageMarkings:function(H){var T=this;H.forEach(function(X){if(X.structContent){var V=X.structContent,uA=T.markStructureContent(X.tag,X.options);V.push(uA),T.page.markings.slice(-1)[0].structContent=V}else T.markContent(X.tag,X.options)})},endPageMarkings:function(H){var T=H.markings;return T.forEach(function(){return H.write("EMC")}),H.markings=[],T},getMarkInfoDictionary:function(){return this._root.data.MarkInfo||(this._root.data.MarkInfo=this.ref({})),this._root.data.MarkInfo},getStructTreeRoot:function(){return this._root.data.StructTreeRoot||(this._root.data.StructTreeRoot=this.ref({Type:"StructTreeRoot",ParentTree:new Dn,ParentTreeNextKey:0})),this._root.data.StructTreeRoot},getStructParentTree:function(){return this.getStructTreeRoot().data.ParentTree},createStructParentTreeNextKey:function(){this.getMarkInfoDictionary();var H=this.getStructTreeRoot(),T=H.data.ParentTreeNextKey++;return H.data.ParentTree.add(T,[]),T},endMarkings:function(){var H=this._root.data.StructTreeRoot;H&&(H.end(),this.structChildren.forEach(function(T){return T.end()})),this._root.data.MarkInfo&&this._root.data.MarkInfo.end()}},Qn={readOnly:1,required:2,noExport:4,multiline:4096,password:8192,toggleToOffButton:16384,radioButton:32768,pushButton:65536,combo:131072,edit:262144,sort:524288,multiSelect:2097152,noSpell:4194304},Yn={left:0,center:1,right:2},en={value:"V",defaultValue:"DV"},gn={zip:"0",zipPlus4:"1",zip4:"1",phone:"2",ssn:"3"},on_number={nDec:0,sepComma:!1,negStyle:"MinusBlack",currency:"",currencyPrepend:!0},on_percent={nDec:0,sepComma:!1},Mi={initForm:function(){if(!this._font)throw new Error("Must set a font before calling initForm method");this._acroform={fonts:{},defaultFont:this._font.name},this._acroform.fonts[this._font.id]=this._font.ref();var H={Fields:[],NeedAppearances:!0,DA:new String("/".concat(this._font.id," 0 Tf 0 g")),DR:{Font:{}}};H.DR.Font[this._font.id]=this._font.ref();var T=this.ref(H);return this._root.data.AcroForm=T,this},endAcroForm:function(){var H=this;if(this._root.data.AcroForm){if(!Object.keys(this._acroform.fonts).length&&!this._acroform.defaultFont)throw new Error("No fonts specified for PDF form");var T=this._root.data.AcroForm.data.DR.Font;Object.keys(this._acroform.fonts).forEach(function(X){T[X]=H._acroform.fonts[X]}),this._root.data.AcroForm.data.Fields.forEach(function(X){H._endChild(X)}),this._root.data.AcroForm.end()}return this},_endChild:function(H){var T=this;return Array.isArray(H.data.Kids)&&(H.data.Kids.forEach(function(X){T._endChild(X)}),H.end()),this},formField:function(H){var X=this._fieldDict(H,null,arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}),V=this.ref(X);return this._addToParent(V),V},formAnnotation:function(H,T,X,V,uA,mA){var rt=this._fieldDict(H,T,arguments.length>6&&void 0!==arguments[6]?arguments[6]:{});return rt.Subtype="Widget",void 0===rt.F&&(rt.F=4),this.annotate(X,V,uA,mA,rt),this._addToParent(this.page.annotations[this.page.annotations.length-1])},formText:function(H,T,X,V,uA){return this.formAnnotation(H,"text",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formPushButton:function(H,T,X,V,uA){return this.formAnnotation(H,"pushButton",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCombo:function(H,T,X,V,uA){return this.formAnnotation(H,"combo",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formList:function(H,T,X,V,uA){return this.formAnnotation(H,"list",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formRadioButton:function(H,T,X,V,uA){return this.formAnnotation(H,"radioButton",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},formCheckbox:function(H,T,X,V,uA){return this.formAnnotation(H,"checkbox",T,X,V,uA,arguments.length>5&&void 0!==arguments[5]?arguments[5]:{})},_addToParent:function(H){var T=H.data.Parent;return T?(T.data.Kids||(T.data.Kids=[]),T.data.Kids.push(H)):this._root.data.AcroForm.data.Fields.push(H),this},_fieldDict:function(H,T){var X=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};if(!this._acroform)throw new Error("Call document.initForms() method before adding form elements to document");var V=Object.assign({},X);return null!==T&&(V=this._resolveType(T,X)),V=this._resolveFlags(V),V=this._resolveJustify(V),V=this._resolveFont(V),V=this._resolveStrings(V),V=this._resolveColors(V),(V=this._resolveFormat(V)).T=new String(H),V.parent&&(V.Parent=V.parent,delete V.parent),V},_resolveType:function(H,T){if("text"===H)T.FT="Tx";else if("pushButton"===H)T.FT="Btn",T.pushButton=!0;else if("radioButton"===H)T.FT="Btn",T.radioButton=!0;else if("checkbox"===H)T.FT="Btn";else if("combo"===H)T.FT="Ch",T.combo=!0;else{if("list"!==H)throw new Error("Invalid form annotation type '".concat(H,"'"));T.FT="Ch"}return T},_resolveFormat:function(H){var T=H.format;if(T&&T.type){var X,V,uA="";if(void 0!==gn[T.type])X="AFSpecial_Keystroke",V="AFSpecial_Format",uA=gn[T.type];else{var mA=T.type.charAt(0).toUpperCase()+T.type.slice(1);if(X="AF".concat(mA,"_Keystroke"),V="AF".concat(mA,"_Format"),"date"===T.type)X+="Ex",uA=String(T.param);else if("time"===T.type)uA=String(T.param);else if("number"===T.type){var tt=Object.assign({},on_number,T);uA=String([String(tt.nDec),tt.sepComma?"0":"1",'"'+tt.negStyle+'"',"null",'"'+tt.currency+'"',String(tt.currencyPrepend)].join(","))}else if("percent"===T.type){var rt=Object.assign({},on_percent,T);uA=String([String(rt.nDec),rt.sepComma?"0":"1"].join(","))}}H.AA=H.AA?H.AA:{},H.AA.K={S:"JavaScript",JS:new String("".concat(X,"(").concat(uA,");"))},H.AA.F={S:"JavaScript",JS:new String("".concat(V,"(").concat(uA,");"))}}return delete H.format,H},_resolveColors:function(H){var T=this._normalizeColor(H.backgroundColor);return T&&(H.MK||(H.MK={}),H.MK.BG=T),(T=this._normalizeColor(H.borderColor))&&(H.MK||(H.MK={}),H.MK.BC=T),delete H.backgroundColor,delete H.borderColor,H},_resolveFlags:function(H){var T=0;return Object.keys(H).forEach(function(X){Qn[X]&&(T|=Qn[X],delete H[X])}),0!==T&&(H.Ff=H.Ff?H.Ff:0,H.Ff|=T),H},_resolveJustify:function(H){var T=0;return void 0!==H.align&&("number"==typeof Yn[H.align]&&(T=Yn[H.align]),delete H.align),0!==T&&(H.Q=T),H},_resolveFont:function(H){if(null===this._acroform.fonts[this._font.id]&&(this._acroform.fonts[this._font.id]=this._font.ref()),this._acroform.defaultFont!==this._font.name){H.DR={Font:{}};var T=H.fontSize||0;H.DR.Font[this._font.id]=this._font.ref(),H.DA=new String("/".concat(this._font.id," ").concat(T," Tf 0 g"))}return H},_resolveStrings:function(H){var T=[];function X(V){if(Array.isArray(V))for(var uA=0;uA1&&void 0!==arguments[1]?arguments[1]:{};T.name=T.name||H;var V,X={Type:"EmbeddedFile",Params:{}};if(!H)throw new Error("No src specified");if(a.isBuffer(H))V=H;else if(H instanceof ArrayBuffer)V=a.from(new Uint8Array(H));else{var uA;if(uA=/^data:(.*);base64,(.*)$/.exec(H))uA[1]&&(X.Subtype=uA[1].replace("/","#2F")),V=a.from(uA[2],"base64");else{if(!(V=E.readFileSync(H)))throw new Error("Could not read contents of file at filepath ".concat(H));var mA=E.statSync(H),rt=mA.ctime;X.Params.CreationDate=mA.birthtime,X.Params.ModDate=rt}}T.creationDate instanceof Date&&(X.Params.CreationDate=T.creationDate),T.modifiedDate instanceof Date&&(X.Params.ModDate=T.modifiedDate),T.type&&(X.Subtype=T.type.replace("/","#2F"));var Ct,ut=g.default.MD5(g.default.lib.WordArray.create(new Uint8Array(V)));X.Params.CheckSum=new String(ut),X.Params.Size=V.byteLength,this._fileRegistry||(this._fileRegistry={});var Mt=this._fileRegistry[T.name];Mt&&function Kn(dA,H){return dA.Subtype===H.Subtype&&dA.Params.CheckSum.toString()===H.Params.CheckSum.toString()&&dA.Params.Size===H.Params.Size&&dA.Params.CreationDate===H.Params.CreationDate&&dA.Params.ModDate===H.Params.ModDate}(X,Mt)?Ct=Mt.ref:((Ct=this.ref(X)).end(V),this._fileRegistry[T.name]=R(R({},X),{},{ref:Ct}));var Dt={Type:"Filespec",F:new String(T.name),EF:{F:Ct},UF:new String(T.name)};T.description&&(Dt.Desc=new String(T.description));var Ft=this.ref(Dt);return Ft.end(),T.hidden||this.addNamedEmbeddedFile(T.name,Ft),Ft}};var Di={initPDFA:function(H){"-"===H.charAt(H.length-3)?(this.subset_conformance=H.charAt(H.length-1).toUpperCase(),this.subset=parseInt(H.charAt(H.length-2))):(this.subset_conformance="B",this.subset=parseInt(H.charAt(H.length-1)))},endSubset:function(){this._addPdfaMetadata();var H="".concat(B,"/data/sRGB_IEC61966_2_1.icc"),T="".concat(B,"/../color_profiles/sRGB_IEC61966_2_1.icc");this._addColorOutputIntent(E.existsSync(H)?H:T)},_addColorOutputIntent:function(H){var T=E.readFileSync(H),X=this.ref({Length:T.length,N:3});X.write(T),X.end();var V=this.ref({Type:"OutputIntent",S:"GTS_PDFA1",Info:new String("sRGB IEC61966-2.1"),OutputConditionIdentifier:new String("sRGB IEC61966-2.1"),DestOutputProfile:X});V.end(),this._root.data.OutputIntents=[V]},_getPdfaid:function(){return'\n \n '.concat(this.subset,"\n ").concat(this.subset_conformance,"\n \n ")},_addPdfaMetadata:function(){this.appendXML(this._getPdfaid())}},vi={_importSubset:function(H){Object.assign(this,H)},initSubset:function(H){switch(H.subset){case"PDF/A-1":case"PDF/A-1a":case"PDF/A-1b":case"PDF/A-2":case"PDF/A-2a":case"PDF/A-2b":case"PDF/A-3":case"PDF/A-3a":case"PDF/A-3b":this._importSubset(Di),this.initPDFA(H.subset)}}},jn=function(){function dA(){C(this,dA),this._metadata='\n \n \n \n '}return h(dA,[{key:"_closeTags",value:function(){this._metadata=this._metadata.concat('\n \n \n \n ')}},{key:"append",value:function(T){var X=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];this._metadata=this._metadata.concat(T),X&&(this._metadata=this._metadata.concat("\n"))}},{key:"getXML",value:function(){return this._metadata}},{key:"getLength",value:function(){return this._metadata.length}},{key:"end",value:function(){this._closeTags(),this._metadata=this._metadata.trim()}}]),dA}(),Ci={initMetadata:function(){this.metadata=new jn},appendXML:function(H){this.metadata.append(H,!(arguments.length>1&&void 0!==arguments[1])||arguments[1])},_addInfo:function(){this.appendXML('\n \n '.concat(this.info.CreationDate.toISOString().split(".")[0]+"Z","\n ").concat(this.info.Creator,"\n \n ")),(this.info.Title||this.info.Author||this.info.Subject)&&(this.appendXML('\n \n '),this.info.Title&&this.appendXML('\n \n \n '.concat(this.info.Title,"\n \n \n ")),this.info.Author&&this.appendXML("\n \n \n ".concat(this.info.Author,"\n \n \n ")),this.info.Subject&&this.appendXML('\n \n \n '.concat(this.info.Subject,"\n \n \n ")),this.appendXML("\n \n ")),this.appendXML('\n \n '.concat(this.info.Creator,""),!1),this.info.Keywords&&this.appendXML("\n ".concat(this.info.Keywords,""),!1),this.appendXML("\n \n ")},endMetadata:function(){this._addInfo(),this.metadata.end(),1.3!=this.version&&(this.metadataRef=this.ref({length:this.metadata.getLength(),Type:"Metadata",Subtype:"XML"}),this.metadataRef.compress=!1,this.metadataRef.write(a.from(this.metadata.getXML(),"utf-8")),this.metadataRef.end(),this._root.data.Metadata=this.metadataRef)}},ei=function(dA){p(T,dA);var H=S(T);function T(){var X,V=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};switch(C(this,T),(X=H.call(this,V)).options=V,V.pdfVersion){case"1.4":X.version=1.4;break;case"1.5":X.version=1.5;break;case"1.6":X.version=1.6;break;case"1.7":case"1.7ext3":X.version=1.7;break;default:X.version=1.3}X.compress=null==X.options.compress||X.options.compress,X._pageBuffer=[],X._pageBufferStart=0,X._offsets=[],X._waiting=0,X._ended=!1,X._offset=0;var uA=X.ref({Type:"Pages",Count:0,Kids:[]}),mA=X.ref({Dests:new AA});if(X._root=X.ref({Type:"Catalog",Pages:uA,Names:mA}),X.options.lang&&(X._root.data.Lang=new String(X.options.lang)),X.page=null,X.initMetadata(),X.initColor(),X.initVector(),X.initFonts(V.font),X.initText(),X.initImages(),X.initOutline(),X.initMarkings(V),X.initSubset(V),X.info={Producer:"PDFKit",Creator:"PDFKit",CreationDate:new Date},X.options.info)for(var tt in X.options.info)X.info[tt]=X.options.info[tt];return X.options.displayTitle&&(X._root.data.ViewerPreferences=X.ref({DisplayDocTitle:!0})),X._id=Z.generateFileID(X.info),X._security=Z.create(Y(X),V),X._write("%PDF-".concat(X.version)),X._write("%\xff\xff\xff\xff"),!1!==X.options.autoFirstPage&&X.addPage(),X}return h(T,[{key:"addPage",value:function(V){null==V&&(V=this.options),this.options.bufferPages||this.flushPages(),this.page=new rA(this,V),this._pageBuffer.push(this.page);var uA=this._root.data.Pages.data;return uA.Kids.push(this.page.dictionary),uA.Count++,this.x=this.page.margins.left,this.y=this.page.margins.top,this._ctm=[1,0,0,1,0,0],this.transform(1,0,0,-1,0,this.page.height),this.emit("pageAdded"),this}},{key:"continueOnNewPage",value:function(V){var uA=this.endPageMarkings(this.page);return this.addPage(V),this.initPageMarkings(uA),this}},{key:"bufferedPageRange",value:function(){return{start:this._pageBufferStart,count:this._pageBuffer.length}}},{key:"switchToPage",value:function(V){var uA;if(!(uA=this._pageBuffer[V-this._pageBufferStart]))throw new Error("switchToPage(".concat(V,") out of bounds, current buffer covers pages ").concat(this._pageBufferStart," to ").concat(this._pageBufferStart+this._pageBuffer.length-1));return this.page=uA}},{key:"flushPages",value:function(){var V=this._pageBuffer;this._pageBuffer=[],this._pageBufferStart+=V.length;var mA,uA=YA(V);try{for(uA.s();!(mA=uA.n()).done;){var tt=mA.value;this.endPageMarkings(tt),tt.end()}}catch(rt){uA.e(rt)}finally{uA.f()}}},{key:"addNamedDestination",value:function(V){for(var uA=arguments.length,mA=new Array(uA>1?uA-1:0),tt=1;tt"u"&&(a.pdfMake=B),b.exports=B},80182:function(b,A,n){"use strict";var B=n(9964);function a(DA){return(a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(NA){return typeof NA}:function(NA){return NA&&"function"==typeof Symbol&&NA.constructor===Symbol&&NA!==Symbol.prototype?"symbol":typeof NA})(DA)}function s(DA,NA){for(var zA=0;zA1?zA-1:0),JA=1;JA1?zA-1:0),JA=1;JA1?zA-1:0),JA=1;JA1?zA-1:0),JA=1;JA"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function p(J,BA){return(p=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(eA,EA){return eA.__proto__=EA,eA})(J,BA)}function m(J){return(m=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(aA){return aA.__proto__||Object.getPrototypeOf(aA)})(J)}function y(J){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(BA){return typeof BA}:function(BA){return BA&&"function"==typeof Symbol&&BA.constructor===Symbol&&BA!==Symbol.prototype?"symbol":typeof BA})(J)}var Y=n(7187).inspect,S=n(35403).codes.ERR_INVALID_ARG_TYPE;function z(J,BA,aA){return(void 0===aA||aA>J.length)&&(aA=J.length),J.substring(aA-BA.length,aA)===BA}var $="",gA="",_="",fA="",iA={deepStrictEqual:"Expected values to be strictly deep-equal:",strictEqual:"Expected values to be strictly equal:",strictEqualObject:'Expected "actual" to be reference-equal to "expected":',deepEqual:"Expected values to be loosely deep-equal:",equal:"Expected values to be loosely equal:",notDeepStrictEqual:'Expected "actual" not to be strictly deep-equal to:',notStrictEqual:'Expected "actual" to be strictly unequal to:',notStrictEqualObject:'Expected "actual" not to be reference-equal to "expected":',notDeepEqual:'Expected "actual" not to be loosely deep-equal to:',notEqual:'Expected "actual" to be loosely unequal to:',notIdentical:"Values identical but not reference-equal:"};function IA(J){var BA=Object.keys(J),aA=Object.create(Object.getPrototypeOf(J));return BA.forEach(function(eA){aA[eA]=J[eA]}),Object.defineProperty(aA,"message",{value:J.message}),aA}function FA(J){return Y(J,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}function YA(J,BA,aA){var eA="",EA="",xA=0,OA="",W=!1,L=FA(J),rA=L.split("\n"),AA=FA(BA).split("\n"),QA=0,yA="";if("strictEqual"===aA&&"object"===y(J)&&"object"===y(BA)&&null!==J&&null!==BA&&(aA="strictEqualObject"),1===rA.length&&1===AA.length&&rA[0]!==AA[0]){var cA=rA[0].length+AA[0].length;if(cA<=10){if(!("object"===y(J)&&null!==J||"object"===y(BA)&&null!==BA||0===J&&0===BA))return"".concat(iA[aA],"\n\n")+"".concat(rA[0]," !== ").concat(AA[0],"\n")}else if("strictEqualObject"!==aA&&cA<(B.stderr&&B.stderr.isTTY?B.stderr.columns:80)){for(;rA[0][QA]===AA[0][QA];)QA++;QA>2&&(yA="\n ".concat(function F(J,BA){if(BA=Math.floor(BA),0==J.length||0==BA)return"";var aA=J.length*BA;for(BA=Math.floor(Math.log(BA)/Math.log(2));BA;)J+=J,BA--;return J+J.substring(0,aA-J.length)}(" ",QA),"^"),QA=0)}}for(var DA=rA[rA.length-1],NA=AA[AA.length-1];DA===NA&&(QA++<2?OA="\n ".concat(DA).concat(OA):eA=DA,rA.pop(),AA.pop(),0!==rA.length&&0!==AA.length);)DA=rA[rA.length-1],NA=AA[AA.length-1];var zA=Math.max(rA.length,AA.length);if(0===zA){var pA=L.split("\n");if(pA.length>30)for(pA[26]="".concat($,"...").concat(fA);pA.length>27;)pA.pop();return"".concat(iA.notIdentical,"\n\n").concat(pA.join("\n"),"\n")}QA>3&&(OA="\n".concat($,"...").concat(fA).concat(OA),W=!0),""!==eA&&(OA="\n ".concat(eA).concat(OA),eA="");var JA=0,ft=iA[aA]+"\n".concat(gA,"+ actual").concat(fA," ").concat(_,"- expected").concat(fA),wt=" ".concat($,"...").concat(fA," Lines skipped");for(QA=0;QA1&&QA>2&&(gt>4?(EA+="\n".concat($,"...").concat(fA),W=!0):gt>3&&(EA+="\n ".concat(AA[QA-2]),JA++),EA+="\n ".concat(AA[QA-1]),JA++),xA=QA,eA+="\n".concat(_,"-").concat(fA," ").concat(AA[QA]),JA++;else if(AA.length1&&QA>2&&(gt>4?(EA+="\n".concat($,"...").concat(fA),W=!0):gt>3&&(EA+="\n ".concat(rA[QA-2]),JA++),EA+="\n ".concat(rA[QA-1]),JA++),xA=QA,EA+="\n".concat(gA,"+").concat(fA," ").concat(rA[QA]),JA++;else{var pt=AA[QA],Yt=rA[QA],VA=Yt!==pt&&(!z(Yt,",")||Yt.slice(0,-1)!==pt);VA&&z(pt,",")&&pt.slice(0,-1)===Yt&&(VA=!1,Yt+=","),VA?(gt>1&&QA>2&&(gt>4?(EA+="\n".concat($,"...").concat(fA),W=!0):gt>3&&(EA+="\n ".concat(rA[QA-2]),JA++),EA+="\n ".concat(rA[QA-1]),JA++),xA=QA,EA+="\n".concat(gA,"+").concat(fA," ").concat(Yt),eA+="\n".concat(_,"-").concat(fA," ").concat(pt),JA+=2):(EA+=eA,eA="",(1===gt||0===QA)&&(EA+="\n ".concat(Yt),JA++))}if(JA>20&&QA30)for(cA[26]="".concat($,"...").concat(fA);cA.length>27;)cA.pop();xA=aA.call(this,1===cA.length?"".concat(yA," ").concat(cA[0]):"".concat(yA,"\n\n").concat(cA.join("\n"),"\n"))}else{var CA=FA(rA),DA="",NA=iA[W];"notDeepEqual"===W||"notEqual"===W?(CA="".concat(iA[W],"\n\n").concat(CA)).length>1024&&(CA="".concat(CA.slice(0,1021),"...")):(DA="".concat(FA(AA)),CA.length>512&&(CA="".concat(CA.slice(0,509),"...")),DA.length>512&&(DA="".concat(DA.slice(0,509),"...")),"deepEqual"===W||"equal"===W?CA="".concat(NA,"\n\n").concat(CA,"\n\nshould equal\n\n"):DA=" ".concat(W," ").concat(DA)),xA=aA.call(this,"".concat(CA).concat(DA))}return Error.stackTraceLimit=QA,xA.generatedMessage=!OA,Object.defineProperty(e(xA),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),xA.code="ERR_ASSERTION",xA.actual=rA,xA.expected=AA,xA.operator=W,Error.captureStackTrace&&Error.captureStackTrace(e(xA),L),xA.name="AssertionError",C(xA)}return function w(J,BA,aA){return BA&&f(J.prototype,BA),aA&&f(J,aA),Object.defineProperty(J,"prototype",{writable:!1}),J}(eA,[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:BA,value:function(xA,OA){return Y(this,s(s({},OA),{},{customInspect:!1,depth:0}))}}]),eA}(h(Error),Y.custom);b.exports=HA},35403:function(b,A,n){"use strict";function B(Y){return(B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(v){return typeof v}:function(v){return v&&"function"==typeof Symbol&&v.constructor===Symbol&&v!==Symbol.prototype?"symbol":typeof v})(Y)}function a(Y,v){for(var S=0;S"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var F,z=e(Y);if(v){var $=e(this).constructor;F=Reflect.construct(z,arguments,$)}else F=z.apply(this,arguments);return function d(Y,v){if(v&&("object"===B(v)||"function"==typeof v))return v;if(void 0!==v)throw new TypeError("Derived constructors may only return object or undefined");return function E(Y){if(void 0===Y)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return Y}(Y)}(this,F)}}function e(Y){return(e=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(S){return S.__proto__||Object.getPrototypeOf(S)})(Y)}var Q,I,h={};function R(Y,v,S){S||(S=Error),h[Y]=function($){!function w(Y,v){if("function"!=typeof v&&null!==v)throw new TypeError("Super expression must either be null or a function");Y.prototype=Object.create(v&&v.prototype,{constructor:{value:Y,writable:!0,configurable:!0}}),Object.defineProperty(Y,"prototype",{writable:!1}),v&&u(Y,v)}(_,$);var gA=r(_);function _(fA,iA,wA){var IA;return function f(Y,v){if(!(Y instanceof v))throw new TypeError("Cannot call a class as a function")}(this,_),(IA=gA.call(this,function z($,gA,_){return"string"==typeof v?v:v($,gA,_)}(fA,iA,wA))).code=Y,IA}return function s(Y,v,S){return v&&a(Y.prototype,v),S&&a(Y,S),Object.defineProperty(Y,"prototype",{writable:!1}),Y}(_)}(S)}function p(Y,v){if(Array.isArray(Y)){var S=Y.length;return Y=Y.map(function(z){return String(z)}),S>2?"one of ".concat(v," ").concat(Y.slice(0,S-1).join(", "),", or ")+Y[S-1]:2===S?"one of ".concat(v," ").concat(Y[0]," or ").concat(Y[1]):"of ".concat(v," ").concat(Y[0])}return"of ".concat(v," ").concat(String(Y))}R("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),R("ERR_INVALID_ARG_TYPE",function(Y,v,S){var z,F;if(void 0===Q&&(Q=n(80182)),Q("string"==typeof Y,"'name' must be a string"),"string"==typeof v&&function m(Y,v,S){return Y.substr(!S||S<0?0:+S,v.length)===v}(v,"not ")?(z="must not be",v=v.replace(/^not /,"")):z="must be",function y(Y,v,S){return(void 0===S||S>Y.length)&&(S=Y.length),Y.substring(S-v.length,S)===v}(Y," argument"))F="The ".concat(Y," ").concat(z," ").concat(p(v,"type"));else{var $=function x(Y,v,S){return"number"!=typeof S&&(S=0),!(S+v.length>Y.length)&&-1!==Y.indexOf(v,S)}(Y,".")?"property":"argument";F='The "'.concat(Y,'" ').concat($," ").concat(z," ").concat(p(v,"type"))}return F+". Received type ".concat(B(S))},TypeError),R("ERR_INVALID_ARG_VALUE",function(Y,v){var S=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===I&&(I=n(7187));var z=I.inspect(v);return z.length>128&&(z="".concat(z.slice(0,128),"...")),"The argument '".concat(Y,"' ").concat(S,". Received ").concat(z)},TypeError,RangeError),R("ERR_INVALID_RETURN_VALUE",function(Y,v,S){var z;return z=S&&S.constructor&&S.constructor.name?"instance of ".concat(S.constructor.name):"type ".concat(B(S)),"Expected ".concat(Y,' to be returned from the "').concat(v,'"')+" function but got ".concat(z,".")},TypeError),R("ERR_MISSING_ARGS",function(){for(var Y=arguments.length,v=new Array(Y),S=0;S0,"At least one arg needs to be specified");var z="The ",F=v.length;switch(v=v.map(function($){return'"'.concat($,'"')}),F){case 1:z+="".concat(v[0]," argument");break;case 2:z+="".concat(v[0]," and ").concat(v[1]," arguments");break;default:z+=v.slice(0,F-1).join(", "),z+=", and ".concat(v[F-1]," arguments")}return"".concat(z," must be specified")},TypeError),b.exports.codes=h},86781:function(b,A,n){"use strict";function B(VA,_A){return function f(VA){if(Array.isArray(VA))return VA}(VA)||function g(VA,_A){var Qt=null==VA?null:typeof Symbol<"u"&&VA[Symbol.iterator]||VA["@@iterator"];if(null!=Qt){var ht,vt,Nt,vA,Bt=[],Z=!0,k=!1;try{if(Nt=(Qt=Qt.call(VA)).next,0===_A){if(Object(Qt)!==Qt)return;Z=!1}else for(;!(Z=(ht=Nt.call(Qt)).done)&&(Bt.push(ht.value),Bt.length!==_A);Z=!0);}catch(U){k=!0,vt=U}finally{try{if(!Z&&null!=Qt.return&&(vA=Qt.return(),Object(vA)!==vA))return}finally{if(k)throw vt}}return Bt}}(VA,_A)||function s(VA,_A){if(VA){if("string"==typeof VA)return o(VA,_A);var Qt=Object.prototype.toString.call(VA).slice(8,-1);if("Object"===Qt&&VA.constructor&&(Qt=VA.constructor.name),"Map"===Qt||"Set"===Qt)return Array.from(VA);if("Arguments"===Qt||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(Qt))return o(VA,_A)}}(VA,_A)||function a(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function o(VA,_A){(null==_A||_A>VA.length)&&(_A=VA.length);for(var Qt=0,ht=new Array(_A);Qt<_A;Qt++)ht[Qt]=VA[Qt];return ht}function w(VA){return(w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(_A){return typeof _A}:function(_A){return _A&&"function"==typeof Symbol&&_A.constructor===Symbol&&_A!==Symbol.prototype?"symbol":typeof _A})(VA)}var u=void 0!==/a/g.flags,r=function(_A){var Qt=[];return _A.forEach(function(ht){return Qt.push(ht)}),Qt},d=function(_A){var Qt=[];return _A.forEach(function(ht,vt){return Qt.push([vt,ht])}),Qt},E=Object.is?Object.is:n(98527),C=Object.getOwnPropertySymbols?Object.getOwnPropertySymbols:function(){return[]},e=Number.isNaN?Number.isNaN:n(7051);function h(VA){return VA.call.bind(VA)}var Q=h(Object.prototype.hasOwnProperty),I=h(Object.prototype.propertyIsEnumerable),R=h(Object.prototype.toString),p=n(7187).types,m=p.isAnyArrayBuffer,y=p.isArrayBufferView,x=p.isDate,Y=p.isMap,v=p.isRegExp,S=p.isSet,z=p.isNativeError,F=p.isBoxedPrimitive,$=p.isNumberObject,gA=p.isStringObject,_=p.isBooleanObject,fA=p.isBigIntObject,iA=p.isSymbolObject,wA=p.isFloat32Array,IA=p.isFloat64Array;function FA(VA){if(0===VA.length||VA.length>10)return!0;for(var _A=0;_A57)return!0}return 10===VA.length&&VA>=Math.pow(2,32)}function YA(VA){return Object.keys(VA).filter(FA).concat(C(VA).filter(Object.prototype.propertyIsEnumerable.bind(VA)))}function HA(VA,_A){if(VA===_A)return 0;for(var Qt=VA.length,ht=_A.length,vt=0,Nt=Math.min(Qt,ht);vt0?I-4:I;for(x=0;x>16&255,p[m++]=h>>8&255,p[m++]=255&h;return 2===R&&(h=B[e.charCodeAt(x)]<<2|B[e.charCodeAt(x+1)]>>4,p[m++]=255&h),1===R&&(h=B[e.charCodeAt(x)]<<10|B[e.charCodeAt(x+1)]<<4|B[e.charCodeAt(x+2)]>>2,p[m++]=h>>8&255,p[m++]=255&h),p},A.fromByteArray=function C(e){for(var h,Q=e.length,I=Q%3,R=[],p=16383,m=0,y=Q-I;my?y:m+p));return 1===I?R.push(n[(h=e[Q-1])>>2]+n[h<<4&63]+"=="):2===I&&R.push(n[(h=(e[Q-2]<<8)+e[Q-1])>>10]+n[h>>4&63]+n[h<<2&63]+"="),R.join("")};for(var n=[],B=[],a=typeof Uint8Array<"u"?Uint8Array:Array,s="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",o=0;o<64;++o)n[o]=s[o],B[s.charCodeAt(o)]=o;function f(e){var h=e.length;if(h%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var Q=e.indexOf("=");return-1===Q&&(Q=h),[Q,Q===h?0:4-Q%4]}function d(e){return n[e>>18&63]+n[e>>12&63]+n[e>>6&63]+n[63&e]}function E(e,h,Q){for(var R=[],p=h;p0},s.prototype.readMoreInput=function(){if(!(this.bit_end_pos_>256))if(this.eos_){if(this.bit_pos_>this.bit_end_pos_)throw new Error("Unexpected end of input "+this.bit_pos_+" "+this.bit_end_pos_)}else{var o=this.buf_ptr_,g=this.input_.read(this.buf_,o,A);if(g<0)throw new Error("Unexpected end of input");if(g=8;)this.val_>>>=8,this.val_|=this.buf_[8191&this.pos_]<<24,++this.pos_,this.bit_pos_=this.bit_pos_-8>>>0,this.bit_end_pos_=this.bit_end_pos_-8>>>0},s.prototype.readBits=function(o){32-this.bit_pos_>>this.bit_pos_&a[o];return this.bit_pos_+=o,g},b.exports=s},7043:function(b,A){A.lookup=new Uint8Array([0,0,0,0,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,16,12,12,20,12,16,24,28,12,12,32,12,36,12,44,44,44,44,44,44,44,44,44,44,32,32,24,40,28,12,12,48,52,52,52,48,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,24,12,28,12,12,12,56,60,60,60,56,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,24,12,28,12,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,56,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]),A.lookupOffsets=new Uint16Array([1024,1536,1280,1536,0,256,768,512])},20980:function(b,A,n){var a=n(98197).z,s=n(98197).y,o=n(34097),g=n(80614),f=n(81561).z,w=n(81561).u,u=n(7043),r=n(42210),d=n(87984),E=8,C=16,e=256,h=704,Q=26,I=6,R=2,p=8,m=255,y=1080,x=18,Y=new Uint8Array([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),v=16,S=new Uint8Array([3,2,1,0,3,3,3,3,3,3,2,2,2,2,2,2]),z=new Int8Array([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),F=new Uint16Array([256,402,436,468,500,534,566,598,630,662,694,726,758,790,822,854,886,920,952,984,1016,1048,1080]);function $(rA){var AA;return 0===rA.readBits(1)?16:(AA=rA.readBits(3))>0?17+AA:(AA=rA.readBits(3))>0?8+AA:17}function gA(rA){if(rA.readBits(1)){var AA=rA.readBits(3);return 0===AA?1:rA.readBits(AA)+(1<1&&0===CA)throw new Error("Invalid size byte");AA.meta_block_length|=CA<<8*cA}}else for(cA=0;cA4&&0===DA)throw new Error("Invalid size nibble");AA.meta_block_length|=DA<<4*cA}return++AA.meta_block_length,!AA.input_end&&!AA.is_metadata&&(AA.is_uncompressed=rA.readBits(1)),AA}function iA(rA,AA,QA){var cA;return QA.fillBitWindow(),(cA=rA[AA+=QA.val_>>>QA.bit_pos_&m].bits-p)>0&&(QA.bit_pos_+=p,AA+=rA[AA].value,AA+=QA.val_>>>QA.bit_pos_&(1<>=1,++pA;for(NA=0;NA0;++NA){var Qt,VA=Y[NA],_A=0;yA.fillBitWindow(),yA.bit_pos_+=Yt[_A+=yA.val_>>>yA.bit_pos_&15].bits,wt[VA]=Qt=Yt[_A].value,0!==Qt&&(gt-=32>>Qt,++pt)}if(1!==pt&&0!==gt)throw new Error("[ReadHuffmanCode] invalid num_codes or space");!function wA(rA,AA,QA,yA){for(var cA=0,CA=E,DA=0,NA=0,zA=32768,pA=[],JA=0;JA<32;JA++)pA.push(new f(0,0));for(w(pA,0,5,rA,x);cA0;){var wt,ft=0;if(yA.readMoreInput(),yA.fillBitWindow(),yA.bit_pos_+=pA[ft+=yA.val_>>>yA.bit_pos_&31].bits,(wt=255&pA[ft].value)>wt);else{var pt,Yt,gt=wt-14,VA=0;if(wt===C&&(VA=CA),NA!==VA&&(DA=0,NA=VA),pt=DA,DA>0&&(DA-=2,DA<<=gt),cA+(Yt=(DA+=yA.readBits(gt)+3)-pt)>AA)throw new Error("[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols");for(var _A=0;_A>>5]),this.htrees=new Uint32Array(AA)}function aA(rA,AA){var CA,DA,QA={num_htrees:null,context_map:null},cA=0;AA.readMoreInput();var NA=QA.num_htrees=gA(AA)+1,zA=QA.context_map=new Uint8Array(rA);if(NA<=1)return QA;for(AA.readBits(1)&&(cA=AA.readBits(4)+1),CA=[],DA=0;DA=rA)throw new Error("[DecodeContextMap] i >= context_map_size");zA[DA]=0,++DA}else zA[DA]=pA-cA,++DA}return AA.readBits(1)&&function J(rA,AA){var yA,QA=new Uint8Array(256);for(yA=0;yA<256;++yA)QA[yA]=yA;for(yA=0;yA=rA&&(JA-=rA),yA[QA]=JA,cA[NA+(1&CA[zA])]=JA,++CA[zA]}function EA(rA,AA,QA,yA,cA,CA){var pA,DA=cA+1,NA=QA&cA,zA=CA.pos_&o.IBUF_MASK;if(AA<8||CA.bit_pos_+(AA<<3)0;)CA.readMoreInput(),yA[NA++]=CA.readBits(8),NA===DA&&(rA.write(yA,DA),NA=0);else{if(CA.bit_end_pos_<32)throw new Error("[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32");for(;CA.bit_pos_<32;)yA[NA]=CA.val_>>>CA.bit_pos_,CA.bit_pos_+=8,++NA,--AA;if(zA+(pA=CA.bit_end_pos_-CA.bit_pos_>>3)>o.IBUF_MASK){for(var JA=o.IBUF_MASK+1-zA,ft=0;ft=DA)for(rA.write(yA,DA),NA-=DA,ft=0;ft=DA;){if(CA.input_.read(yA,NA,pA=DA-NA)AA.buffer.length){var ee=new Uint8Array(yA+vA);ee.set(AA.buffer),AA.buffer=ee}if(cA=Mn.input_end,Bt=Mn.is_uncompressed,Mn.is_metadata)for(xA(ht);vA>0;--vA)ht.readMoreInput(),ht.readBits(8);else if(0!==vA){if(Bt){ht.bit_pos_=ht.bit_pos_+7&-8,EA(AA,vA,yA,JA,pA,ht),yA+=vA;continue}for(QA=0;QA<3;++QA)U[QA]=gA(ht)+1,U[QA]>=2&&(IA(U[QA]+2,_A,QA*y,ht),IA(Q,Qt,QA*y,ht),Z[QA]=FA(Qt,QA*y,ht),q[QA]=1);for(ht.readMoreInput(),O=(1<<(GA=ht.readBits(2)))-1,qA=(At=v+(ht.readBits(4)<0;){var Fe,Qe,In,wn,kt,zt,Wt,ae,dn,Tn,Wn,ti;for(ht.readMoreInput(),0===Z[1]&&(eA(U[1],_A,1,k,hA,q,ht),Z[1]=FA(Qt,y,ht),yn=VA[1].htrees[k[1]]),--Z[1],(Qe=(Fe=iA(VA[1].codes,yn,ht))>>6)>=2?(Qe-=2,Wt=-1):Wt=0,wn=r.kCopyRangeLut[Qe]+(7&Fe),kt=r.kInsertLengthPrefixCode[In=r.kInsertRangeLut[Qe]+(Fe>>3&7)].offset+ht.readBits(r.kInsertLengthPrefixCode[In].nbits),zt=r.kCopyLengthPrefixCode[wn].offset+ht.readBits(r.kCopyLengthPrefixCode[wn].nbits),pt=JA[yA-1&pA],Yt=JA[yA-2&pA],dn=0;dn4?3:zt-2))]],ht))>=At&&(ti=(Wt-=At)&O,Wt=At+((xn=(2+(1&(Wt>>=GA))<<(Wn=1+(Wt>>1)))-4)+ht.readBits(Wn)<(NA=yA=g.minDictionaryWordLength&&zt<=g.maxDictionaryWordLength))throw new Error("Invalid backward reference. pos: "+yA+" distance: "+ae+" len: "+zt+" bytes left: "+vA);var xn=g.offsetsByLength[zt],ZA=ae-NA-1,SA=g.sizeBitsByLength[zt],TA=ZA>>SA;if(xn+=(ZA&(1<=ft){AA.write(JA,zA);for(var kA=0;kA0&&(wt[3>]=ae,++gt),zt>vA)throw new Error("Invalid backward reference. pos: "+yA+" distance: "+ae+" len: "+zt+" bytes left: "+vA);for(dn=0;dn>=1;return(g&w-1)+w}function s(g,f,w,u,r){do{g[f+(u-=w)]=new n(r.bits,r.value)}while(u>0)}function o(g,f,w){for(var u=1<0;--Y[C])s(g,f+h,Q,m,new n(255&C,65535&x[e++])),h=a(h,C);for(R=y-1,I=-1,C=w+1,Q=2;C<=B;++C,Q<<=1)for(;Y[C]>0;--Y[C])(h&R)!==I&&(f+=m,y+=m=1<<(p=o(Y,C,w)),g[d+(I=h&R)]=new n(p+w&255,f-d-I&65535)),s(g,f+(h>>w),Q,m,new n(C-w&255,65535&x[e++])),h=a(h,C);return y}},42210:function(b,A){function n(B,a){this.offset=B,this.nbits=a}A.kBlockLengthPrefixCode=[new n(1,2),new n(5,2),new n(9,2),new n(13,2),new n(17,3),new n(25,3),new n(33,3),new n(41,3),new n(49,4),new n(65,4),new n(81,4),new n(97,4),new n(113,5),new n(145,5),new n(177,5),new n(209,5),new n(241,6),new n(305,6),new n(369,7),new n(497,8),new n(753,9),new n(1265,10),new n(2289,11),new n(4337,12),new n(8433,13),new n(16625,24)],A.kInsertLengthPrefixCode=[new n(0,0),new n(1,0),new n(2,0),new n(3,0),new n(4,0),new n(5,0),new n(6,1),new n(8,1),new n(10,2),new n(14,2),new n(18,3),new n(26,3),new n(34,4),new n(50,4),new n(66,5),new n(98,5),new n(130,6),new n(194,7),new n(322,8),new n(578,9),new n(1090,10),new n(2114,12),new n(6210,14),new n(22594,24)],A.kCopyLengthPrefixCode=[new n(2,0),new n(3,0),new n(4,0),new n(5,0),new n(6,0),new n(7,0),new n(8,0),new n(9,0),new n(10,1),new n(12,1),new n(14,2),new n(18,2),new n(22,3),new n(30,3),new n(38,4),new n(54,4),new n(70,5),new n(102,5),new n(134,6),new n(198,7),new n(326,8),new n(582,9),new n(1094,10),new n(2118,24)],A.kInsertRangeLut=[0,0,8,8,0,16,8,16,16],A.kCopyRangeLut=[0,8,0,8,16,0,16,8,16]},98197:function(b,A){function n(a){this.buffer=a,this.pos=0}function B(a){this.buffer=a,this.pos=0}n.prototype.read=function(a,s,o){this.pos+o>this.buffer.length&&(o=this.buffer.length-this.pos);for(var g=0;gthis.buffer.length)throw new Error("Output buffer is not large enough");return this.buffer.set(a.subarray(0,s),this.pos),this.pos+=s,s},A.y=B},87984:function(b,A,n){var B=n(80614),C=10,e=11;function v(F,$,gA){this.prefix=new Uint8Array(F.length),this.transform=$,this.suffix=new Uint8Array(gA.length);for(var _=0;_'),new v("",0,"\n"),new v("",3,""),new v("",0,"]"),new v("",0," for "),new v("",14,""),new v("",2,""),new v("",0," a "),new v("",0," that "),new v(" ",C,""),new v("",0,". "),new v(".",0,""),new v(" ",0,", "),new v("",15,""),new v("",0," with "),new v("",0,"'"),new v("",0," from "),new v("",0," by "),new v("",16,""),new v("",17,""),new v(" the ",0,""),new v("",4,""),new v("",0,". The "),new v("",e,""),new v("",0," on "),new v("",0," as "),new v("",0," is "),new v("",7,""),new v("",1,"ing "),new v("",0,"\n\t"),new v("",0,":"),new v(" ",0,". "),new v("",0,"ed "),new v("",20,""),new v("",18,""),new v("",6,""),new v("",0,"("),new v("",C,", "),new v("",8,""),new v("",0," at "),new v("",0,"ly "),new v(" the ",0," of "),new v("",5,""),new v("",9,""),new v(" ",C,", "),new v("",C,'"'),new v(".",0,"("),new v("",e," "),new v("",C,'">'),new v("",0,'="'),new v(" ",0,"."),new v(".com/",0,""),new v(" the ",0," of the "),new v("",C,"'"),new v("",0,". This "),new v("",0,","),new v(".",0," "),new v("",C,"("),new v("",C,"."),new v("",0," not "),new v(" ",0,'="'),new v("",0,"er "),new v(" ",e," "),new v("",0,"al "),new v(" ",e,""),new v("",0,"='"),new v("",e,'"'),new v("",C,". "),new v(" ",0,"("),new v("",0,"ful "),new v(" ",C,". "),new v("",0,"ive "),new v("",0,"less "),new v("",e,"'"),new v("",0,"est "),new v(" ",C,"."),new v("",e,'">'),new v(" ",0,"='"),new v("",C,","),new v("",0,"ize "),new v("",e,"."),new v("\xc2\xa0",0,""),new v(" ",0,","),new v("",C,'="'),new v("",e,'="'),new v("",0,"ous "),new v("",e,", "),new v("",C,"='"),new v(" ",C,","),new v(" ",e,'="'),new v(" ",e,", "),new v("",e,","),new v("",e,"("),new v("",e,". "),new v(" ",e,"."),new v("",e,"='"),new v(" ",e,". "),new v(" ",C,'="'),new v(" ",e,"='"),new v(" ",C,"='")];function z(F,$){return F[$]<192?(F[$]>=97&&F[$]<=122&&(F[$]^=32),1):F[$]<224?(F[$+1]^=32,2):(F[$+2]^=5,3)}A.kTransforms=S,A.kNumTransforms=S.length,A.transformDictionaryWord=function(F,$,gA,_,fA){var J,iA=S[fA].prefix,wA=S[fA].suffix,IA=S[fA].transform,FA=IA<12?0:IA-11,YA=0,HA=$;FA>_&&(FA=_);for(var BA=0;BA0;){var aA=z(F,J);J+=aA,_-=aA}for(var eA=0;eAA.UNZIP)throw new TypeError("Bad argument");this.dictionary=null,this.err=0,this.flush=0,this.init_done=!1,this.level=0,this.memLevel=0,this.mode=C,this.strategy=0,this.windowBits=0,this.write_in_progress=!1,this.pending_close=!1,this.gzip_id_bytes_read=0}E.prototype.close=function(){this.write_in_progress?this.pending_close=!0:(this.pending_close=!1,s(this.init_done,"close before init"),s(this.mode<=A.UNZIP),this.mode===A.DEFLATE||this.mode===A.GZIP||this.mode===A.DEFLATERAW?g.deflateEnd(this.strm):(this.mode===A.INFLATE||this.mode===A.GUNZIP||this.mode===A.INFLATERAW||this.mode===A.UNZIP)&&f.inflateEnd(this.strm),this.mode=A.NONE,this.dictionary=null)},E.prototype.write=function(C,e,h,Q,I,R,p){return this._write(!0,C,e,h,Q,I,R,p)},E.prototype.writeSync=function(C,e,h,Q,I,R,p){return this._write(!1,C,e,h,Q,I,R,p)},E.prototype._write=function(C,e,h,Q,I,R,p,m){if(s.equal(arguments.length,8),s(this.init_done,"write before init"),s(this.mode!==A.NONE,"already finalized"),s.equal(!1,this.write_in_progress,"write already in progress"),s.equal(!1,this.pending_close,"close is pending"),this.write_in_progress=!0,s.equal(!1,void 0===e,"must provide flush value"),this.write_in_progress=!0,e!==A.Z_NO_FLUSH&&e!==A.Z_PARTIAL_FLUSH&&e!==A.Z_SYNC_FLUSH&&e!==A.Z_FULL_FLUSH&&e!==A.Z_FINISH&&e!==A.Z_BLOCK)throw new Error("Invalid flush value");if(null==h&&(h=B.alloc(0),I=0,Q=0),this.strm.avail_in=I,this.strm.input=h,this.strm.next_in=Q,this.strm.avail_out=m,this.strm.output=R,this.strm.next_out=p,this.flush=e,!C)return this._process(),this._checkError()?this._afterSync():void 0;var y=this;return a.nextTick(function(){y._process(),y._after()}),this},E.prototype._afterSync=function(){var C=this.strm.avail_out,e=this.strm.avail_in;return this.write_in_progress=!1,[e,C]},E.prototype._process=function(){var C=null;switch(this.mode){case A.DEFLATE:case A.GZIP:case A.DEFLATERAW:this.err=g.deflate(this.strm,this.flush);break;case A.UNZIP:switch(this.strm.avail_in>0&&(C=this.strm.next_in),this.gzip_id_bytes_read){case 0:if(null===C)break;if(31!==this.strm.input[C]){this.mode=A.INFLATE;break}if(this.gzip_id_bytes_read=1,C++,1===this.strm.avail_in)break;case 1:if(null===C)break;139===this.strm.input[C]?(this.gzip_id_bytes_read=2,this.mode=A.GUNZIP):this.mode=A.INFLATE;break;default:throw new Error("invalid number of gzip magic number bytes read")}case A.INFLATE:case A.GUNZIP:case A.INFLATERAW:for(this.err=f.inflate(this.strm,this.flush),this.err===A.Z_NEED_DICT&&this.dictionary&&(this.err=f.inflateSetDictionary(this.strm,this.dictionary),this.err===A.Z_OK?this.err=f.inflate(this.strm,this.flush):this.err===A.Z_DATA_ERROR&&(this.err=A.Z_NEED_DICT));this.strm.avail_in>0&&this.mode===A.GUNZIP&&this.err===A.Z_STREAM_END&&0!==this.strm.next_in[0];)this.reset(),this.err=f.inflate(this.strm,this.flush);break;default:throw new Error("Unknown mode "+this.mode)}},E.prototype._checkError=function(){switch(this.err){case A.Z_OK:case A.Z_BUF_ERROR:if(0!==this.strm.avail_out&&this.flush===A.Z_FINISH)return this._error("unexpected end of file"),!1;break;case A.Z_STREAM_END:break;case A.Z_NEED_DICT:return this._error(null==this.dictionary?"Missing dictionary":"Bad dictionary"),!1;default:return this._error("Zlib error"),!1}return!0},E.prototype._after=function(){if(this._checkError()){var C=this.strm.avail_out,e=this.strm.avail_in;this.write_in_progress=!1,this.callback(e,C),this.pending_close&&this.close()}},E.prototype._error=function(C){this.strm.msg&&(C=this.strm.msg),this.onerror(C,this.err),this.write_in_progress=!1,this.pending_close&&this.close()},E.prototype.init=function(C,e,h,Q,I){s(4===arguments.length||5===arguments.length,"init(windowBits, level, memLevel, strategy, [dictionary])"),s(C>=8&&C<=15,"invalid windowBits"),s(e>=-1&&e<=9,"invalid compression level"),s(h>=1&&h<=9,"invalid memlevel"),s(Q===A.Z_FILTERED||Q===A.Z_HUFFMAN_ONLY||Q===A.Z_RLE||Q===A.Z_FIXED||Q===A.Z_DEFAULT_STRATEGY,"invalid strategy"),this._init(e,C,h,Q,I),this._setDictionary()},E.prototype.params=function(){throw new Error("deflateParams Not supported")},E.prototype.reset=function(){this._reset(),this._setDictionary()},E.prototype._init=function(C,e,h,Q,I){switch(this.level=C,this.windowBits=e,this.memLevel=h,this.strategy=Q,this.flush=A.Z_NO_FLUSH,this.err=A.Z_OK,(this.mode===A.GZIP||this.mode===A.GUNZIP)&&(this.windowBits+=16),this.mode===A.UNZIP&&(this.windowBits+=32),(this.mode===A.DEFLATERAW||this.mode===A.INFLATERAW)&&(this.windowBits=-1*this.windowBits),this.strm=new o,this.mode){case A.DEFLATE:case A.GZIP:case A.DEFLATERAW:this.err=g.deflateInit2(this.strm,this.level,A.Z_DEFLATED,this.windowBits,this.memLevel,this.strategy);break;case A.INFLATE:case A.GUNZIP:case A.INFLATERAW:case A.UNZIP:this.err=f.inflateInit2(this.strm,this.windowBits);break;default:throw new Error("Unknown mode "+this.mode)}this.err!==A.Z_OK&&this._error("Init error"),this.dictionary=I,this.write_in_progress=!1,this.init_done=!0},E.prototype._setDictionary=function(){if(null!=this.dictionary){switch(this.err=A.Z_OK,this.mode){case A.DEFLATE:case A.DEFLATERAW:this.err=g.deflateSetDictionary(this.strm,this.dictionary)}this.err!==A.Z_OK&&this._error("Failed to set dictionary")}},E.prototype._reset=function(){switch(this.err=A.Z_OK,this.mode){case A.DEFLATE:case A.DEFLATERAW:case A.GZIP:this.err=g.deflateReset(this.strm);break;case A.INFLATE:case A.INFLATERAW:case A.GUNZIP:this.err=f.inflateReset(this.strm)}this.err!==A.Z_OK&&this._error("Failed to reset stream")},A.Zlib=E},6729:function(b,A,n){"use strict";var B=n(9964),a=n(50621).Buffer,s=n(9760).Transform,o=n(72908),g=n(7187),f=n(80182).ok,w=n(50621).kMaxLength,u="Cannot create final Buffer. It would be larger than 0x"+w.toString(16)+" bytes";o.Z_MIN_WINDOWBITS=8,o.Z_MAX_WINDOWBITS=15,o.Z_DEFAULT_WINDOWBITS=15,o.Z_MIN_CHUNK=64,o.Z_MAX_CHUNK=1/0,o.Z_DEFAULT_CHUNK=16384,o.Z_MIN_MEMLEVEL=1,o.Z_MAX_MEMLEVEL=9,o.Z_DEFAULT_MEMLEVEL=8,o.Z_MIN_LEVEL=-1,o.Z_MAX_LEVEL=9,o.Z_DEFAULT_LEVEL=o.Z_DEFAULT_COMPRESSION;for(var r=Object.keys(o),d=0;d=w?BA=new RangeError(u):J=a.concat(wA,IA),wA=[],_.close(),iA(BA,J)}_.on("error",function YA(J){_.removeListener("end",HA),_.removeListener("readable",FA),iA(J)}),_.on("end",HA),_.end(fA),FA()}function R(_,fA){if("string"==typeof fA&&(fA=a.from(fA)),!a.isBuffer(fA))throw new TypeError("Not a string or buffer");return _._processChunk(fA,_._finishFlushFlag)}function p(_){if(!(this instanceof p))return new p(_);F.call(this,_,o.DEFLATE)}function m(_){if(!(this instanceof m))return new m(_);F.call(this,_,o.INFLATE)}function y(_){if(!(this instanceof y))return new y(_);F.call(this,_,o.GZIP)}function x(_){if(!(this instanceof x))return new x(_);F.call(this,_,o.GUNZIP)}function Y(_){if(!(this instanceof Y))return new Y(_);F.call(this,_,o.DEFLATERAW)}function v(_){if(!(this instanceof v))return new v(_);F.call(this,_,o.INFLATERAW)}function S(_){if(!(this instanceof S))return new S(_);F.call(this,_,o.UNZIP)}function z(_){return _===o.Z_NO_FLUSH||_===o.Z_PARTIAL_FLUSH||_===o.Z_SYNC_FLUSH||_===o.Z_FULL_FLUSH||_===o.Z_FINISH||_===o.Z_BLOCK}function F(_,fA){var iA=this;if(this._opts=_=_||{},this._chunkSize=_.chunkSize||A.Z_DEFAULT_CHUNK,s.call(this,_),_.flush&&!z(_.flush))throw new Error("Invalid flush flag: "+_.flush);if(_.finishFlush&&!z(_.finishFlush))throw new Error("Invalid flush flag: "+_.finishFlush);if(this._flushFlag=_.flush||o.Z_NO_FLUSH,this._finishFlushFlag=typeof _.finishFlush<"u"?_.finishFlush:o.Z_FINISH,_.chunkSize&&(_.chunkSizeA.Z_MAX_CHUNK))throw new Error("Invalid chunk size: "+_.chunkSize);if(_.windowBits&&(_.windowBitsA.Z_MAX_WINDOWBITS))throw new Error("Invalid windowBits: "+_.windowBits);if(_.level&&(_.levelA.Z_MAX_LEVEL))throw new Error("Invalid compression level: "+_.level);if(_.memLevel&&(_.memLevelA.Z_MAX_MEMLEVEL))throw new Error("Invalid memLevel: "+_.memLevel);if(_.strategy&&_.strategy!=A.Z_FILTERED&&_.strategy!=A.Z_HUFFMAN_ONLY&&_.strategy!=A.Z_RLE&&_.strategy!=A.Z_FIXED&&_.strategy!=A.Z_DEFAULT_STRATEGY)throw new Error("Invalid strategy: "+_.strategy);if(_.dictionary&&!a.isBuffer(_.dictionary))throw new Error("Invalid dictionary: it should be a Buffer instance");this._handle=new o.Zlib(fA);var wA=this;this._hadError=!1,this._handle.onerror=function(YA,HA){$(wA),wA._hadError=!0;var J=new Error(YA);J.errno=HA,J.code=A.codes[HA],wA.emit("error",J)};var IA=A.Z_DEFAULT_COMPRESSION;"number"==typeof _.level&&(IA=_.level);var FA=A.Z_DEFAULT_STRATEGY;"number"==typeof _.strategy&&(FA=_.strategy),this._handle.init(_.windowBits||A.Z_DEFAULT_WINDOWBITS,IA,_.memLevel||A.Z_DEFAULT_MEMLEVEL,FA,_.dictionary),this._buffer=a.allocUnsafe(this._chunkSize),this._offset=0,this._level=IA,this._strategy=FA,this.once("end",this.close),Object.defineProperty(this,"_closed",{get:function(){return!iA._handle},configurable:!0,enumerable:!0})}function $(_,fA){fA&&B.nextTick(fA),_._handle&&(_._handle.close(),_._handle=null)}function gA(_){_.emit("close")}Object.defineProperty(A,"codes",{enumerable:!0,value:Object.freeze(C),writable:!1}),A.Deflate=p,A.Inflate=m,A.Gzip=y,A.Gunzip=x,A.DeflateRaw=Y,A.InflateRaw=v,A.Unzip=S,A.createDeflate=function(_){return new p(_)},A.createInflate=function(_){return new m(_)},A.createDeflateRaw=function(_){return new Y(_)},A.createInflateRaw=function(_){return new v(_)},A.createGzip=function(_){return new y(_)},A.createGunzip=function(_){return new x(_)},A.createUnzip=function(_){return new S(_)},A.deflate=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new p(fA),_,iA)},A.deflateSync=function(_,fA){return R(new p(fA),_)},A.gzip=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new y(fA),_,iA)},A.gzipSync=function(_,fA){return R(new y(fA),_)},A.deflateRaw=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new Y(fA),_,iA)},A.deflateRawSync=function(_,fA){return R(new Y(fA),_)},A.unzip=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new S(fA),_,iA)},A.unzipSync=function(_,fA){return R(new S(fA),_)},A.inflate=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new m(fA),_,iA)},A.inflateSync=function(_,fA){return R(new m(fA),_)},A.gunzip=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new x(fA),_,iA)},A.gunzipSync=function(_,fA){return R(new x(fA),_)},A.inflateRaw=function(_,fA,iA){return"function"==typeof fA&&(iA=fA,fA={}),I(new v(fA),_,iA)},A.inflateRawSync=function(_,fA){return R(new v(fA),_)},g.inherits(F,s),F.prototype.params=function(_,fA,iA){if(_A.Z_MAX_LEVEL)throw new RangeError("Invalid compression level: "+_);if(fA!=A.Z_FILTERED&&fA!=A.Z_HUFFMAN_ONLY&&fA!=A.Z_RLE&&fA!=A.Z_FIXED&&fA!=A.Z_DEFAULT_STRATEGY)throw new TypeError("Invalid strategy: "+fA);if(this._level!==_||this._strategy!==fA){var wA=this;this.flush(o.Z_SYNC_FLUSH,function(){f(wA._handle,"zlib binding closed"),wA._handle.params(_,fA),wA._hadError||(wA._level=_,wA._strategy=fA,iA&&iA())})}else B.nextTick(iA)},F.prototype.reset=function(){return f(this._handle,"zlib binding closed"),this._handle.reset()},F.prototype._flush=function(_){this._transform(a.alloc(0),"",_)},F.prototype.flush=function(_,fA){var iA=this,wA=this._writableState;("function"==typeof _||void 0===_&&!fA)&&(fA=_,_=o.Z_FULL_FLUSH),wA.ended?fA&&B.nextTick(fA):wA.ending?fA&&this.once("end",fA):wA.needDrain?fA&&this.once("drain",function(){return iA.flush(_,fA)}):(this._flushFlag=_,this.write(a.alloc(0),"",fA))},F.prototype.close=function(_){$(this,_),B.nextTick(gA,this)},F.prototype._transform=function(_,fA,iA){var wA,IA=this._writableState,YA=(IA.ending||IA.ended)&&(!_||IA.length===_.length);return null===_||a.isBuffer(_)?this._handle?(YA?wA=this._finishFlushFlag:(wA=this._flushFlag,_.length>=IA.length&&(this._flushFlag=this._opts.flush||o.Z_NO_FLUSH)),void this._processChunk(_,wA,iA)):iA(new Error("zlib binding closed")):iA(new Error("invalid input"))},F.prototype._processChunk=function(_,fA,iA){var wA=_&&_.length,IA=this._chunkSize-this._offset,FA=0,YA=this,HA="function"==typeof iA;if(!HA){var aA,J=[],BA=0;this.on("error",function(W){aA=W}),f(this._handle,"zlib binding closed");do{var eA=this._handle.writeSync(fA,_,FA,wA,this._buffer,this._offset,IA)}while(!this._hadError&&OA(eA[0],eA[1]));if(this._hadError)throw aA;if(BA>=w)throw $(this),new RangeError(u);var EA=a.concat(J,BA);return $(this),EA}f(this._handle,"zlib binding closed");var xA=this._handle.write(fA,_,FA,wA,this._buffer,this._offset,IA);function OA(W,L){if(this&&(this.buffer=null,this.callback=null),!YA._hadError){var rA=IA-L;if(f(rA>=0,"have should not go down"),rA>0){var AA=YA._buffer.slice(YA._offset,YA._offset+rA);YA._offset+=rA,HA?YA.push(AA):(J.push(AA),BA+=AA.length)}if((0===L||YA._offset>=YA._chunkSize)&&(IA=YA._chunkSize,YA._offset=0,YA._buffer=a.allocUnsafe(YA._chunkSize)),0===L){if(FA+=wA-W,wA=W,!HA)return!0;var QA=YA._handle.write(fA,_,FA,wA,YA._buffer,YA._offset,YA._chunkSize);return QA.callback=OA,void(QA.buffer=_)}if(!HA)return!1;iA()}}xA.buffer=_,xA.callback=OA},g.inherits(p,F),g.inherits(m,F),g.inherits(y,F),g.inherits(x,F),g.inherits(Y,F),g.inherits(v,F),g.inherits(S,F)},67913:function(b,A,n){"use strict";var B=n(28651),a=n(26601),s=a(B("String.prototype.indexOf"));b.exports=function(g,f){var w=B(g,!!f);return"function"==typeof w&&s(g,".prototype.")>-1?a(w):w}},26601:function(b,A,n){"use strict";var B=n(5049),a=n(28651),s=n(86255),o=n(96785),g=a("%Function.prototype.apply%"),f=a("%Function.prototype.call%"),w=a("%Reflect.apply%",!0)||B.call(f,g),u=n(56649),r=a("%Math.max%");b.exports=function(C){if("function"!=typeof C)throw new o("a function is required");var e=w(B,f,arguments);return s(e,1+r(0,C.length-(arguments.length-1)),!0)};var d=function(){return w(B,g,arguments)};u?u(b.exports,"apply",{value:d}):b.exports.apply=d},41613:function(b,A,n){var B=n(50621).Buffer,a=function(){"use strict";function s(r,d,E,C){"object"==typeof d&&(E=d.depth,C=d.prototype,d=d.circular);var h=[],Q=[],I=typeof B<"u";return typeof d>"u"&&(d=!0),typeof E>"u"&&(E=1/0),function R(p,m){if(null===p)return null;if(0==m)return p;var y,x;if("object"!=typeof p)return p;if(s.__isArray(p))y=[];else if(s.__isRegExp(p))y=new RegExp(p.source,u(p)),p.lastIndex&&(y.lastIndex=p.lastIndex);else if(s.__isDate(p))y=new Date(p.getTime());else{if(I&&B.isBuffer(p))return y=B.allocUnsafe?B.allocUnsafe(p.length):new B(p.length),p.copy(y),y;typeof C>"u"?(x=Object.getPrototypeOf(p),y=Object.create(x)):(y=Object.create(C),x=C)}if(d){var Y=h.indexOf(p);if(-1!=Y)return Q[Y];h.push(p),Q.push(y)}for(var v in p){var S;x&&(S=Object.getOwnPropertyDescriptor(x,v)),(!S||null!=S.set)&&(y[v]=R(p[v],m-1))}return y}(r,E)}function o(r){return Object.prototype.toString.call(r)}function u(r){var d="";return r.global&&(d+="g"),r.ignoreCase&&(d+="i"),r.multiline&&(d+="m"),d}return s.clonePrototype=function(d){if(null===d)return null;var E=function(){};return E.prototype=d,new E},s.__objToStr=o,s.__isDate=function g(r){return"object"==typeof r&&"[object Date]"===o(r)},s.__isArray=function f(r){return"object"==typeof r&&"[object Array]"===o(r)},s.__isRegExp=function w(r){return"object"==typeof r&&"[object RegExp]"===o(r)},s.__getRegExpFlags=u,s}();b.exports&&(b.exports=a)},83043:function(b,A,n){n(59883);var B=n(11206);b.exports=B.Object.values},42075:function(b,A,n){n(94910),n(81755),n(14032),n(68067),n(77074),n(44455),n(58605),n(58281);var B=n(11206);b.exports=B.Promise},98168:function(b,A,n){var B=n(90780);n(84151),n(98443),n(49261),n(67858),b.exports=B},32631:function(b,A,n){var B=n(32010),a=n(94578),s=n(68664),o=B.TypeError;b.exports=function(g){if(a(g))return g;throw o(s(g)+" is not a function")}},69075:function(b,A,n){var B=n(32010),a=n(20884),s=n(68664),o=B.TypeError;b.exports=function(g){if(a(g))return g;throw o(s(g)+" is not a constructor")}},58659:function(b,A,n){var B=n(32010),a=n(94578),s=B.String,o=B.TypeError;b.exports=function(g){if("object"==typeof g||a(g))return g;throw o("Can't set "+s(g)+" as a prototype")}},71156:function(b,A,n){var B=n(38688),a=n(10819),s=n(95892),o=B("unscopables"),g=Array.prototype;null==g[o]&&s.f(g,o,{configurable:!0,value:a(null)}),b.exports=function(f){g[o][f]=!0}},36352:function(b,A,n){"use strict";var B=n(69510).charAt;b.exports=function(a,s,o){return s+(o?B(a,s).length:1)}},2868:function(b,A,n){var B=n(32010),a=n(70176),s=B.TypeError;b.exports=function(o,g){if(a(g,o))return o;throw s("Incorrect invocation")}},34984:function(b,A,n){var B=n(32010),a=n(24517),s=B.String,o=B.TypeError;b.exports=function(g){if(a(g))return g;throw o(s(g)+" is not an object")}},92642:function(b,A,n){"use strict";var B=n(43162),a=n(74841),s=n(45495),o=Math.min;b.exports=[].copyWithin||function(f,w){var u=B(this),r=s(u),d=a(f,r),E=a(w,r),C=arguments.length>2?arguments[2]:void 0,e=o((void 0===C?r:a(C,r))-E,r-d),h=1;for(E0;)E in u?u[d]=u[E]:delete u[d],d+=h,E+=h;return u}},72864:function(b,A,n){"use strict";var B=n(43162),a=n(74841),s=n(45495);b.exports=function(g){for(var f=B(this),w=s(f),u=arguments.length,r=a(u>1?arguments[1]:void 0,w),d=u>2?arguments[2]:void 0,E=void 0===d?w:a(d,w);E>r;)f[r++]=g;return f}},82938:function(b,A,n){"use strict";var B=n(91102).forEach,s=n(81007)("forEach");b.exports=s?[].forEach:function(g){return B(this,g,arguments.length>1?arguments[1]:void 0)}},34269:function(b){b.exports=function(A,n){for(var B=0,a=n.length,s=new A(a);a>B;)s[B]=n[B++];return s}},95717:function(b,A,n){"use strict";var B=n(32010),a=n(25567),s=n(2834),o=n(43162),g=n(97738),f=n(89564),w=n(20884),u=n(45495),r=n(38639),d=n(15892),E=n(13872),C=B.Array;b.exports=function(h){var Q=o(h),I=w(this),R=arguments.length,p=R>1?arguments[1]:void 0,m=void 0!==p;m&&(p=a(p,R>2?arguments[2]:void 0));var Y,v,S,z,F,$,y=E(Q),x=0;if(!y||this==C&&f(y))for(Y=u(Q),v=I?new this(Y):C(Y);Y>x;x++)$=m?p(Q[x],x):Q[x],r(v,x,$);else for(F=(z=d(Q,y)).next,v=I?new this:[];!(S=s(F,z)).done;x++)$=m?g(z,p,[S.value,x],!0):S.value,r(v,x,$);return v.length=x,v}},12636:function(b,A,n){var B=n(98086),a=n(74841),s=n(45495),o=function(g){return function(f,w,u){var C,r=B(f),d=s(r),E=a(u,d);if(g&&w!=w){for(;d>E;)if((C=r[E++])!=C)return!0}else for(;d>E;E++)if((g||E in r)&&r[E]===w)return g||E||0;return!g&&-1}};b.exports={includes:o(!0),indexOf:o(!1)}},91102:function(b,A,n){var B=n(25567),a=n(38347),s=n(7514),o=n(43162),g=n(45495),f=n(45744),w=a([].push),u=function(r){var d=1==r,E=2==r,C=3==r,e=4==r,h=6==r,Q=7==r,I=5==r||h;return function(R,p,m,y){for(var gA,_,x=o(R),Y=s(x),v=B(p,m),S=g(Y),z=0,F=y||f,$=d?F(R,S):E||Q?F(R,0):void 0;S>z;z++)if((I||z in Y)&&(_=v(gA=Y[z],z,x),r))if(d)$[z]=_;else if(_)switch(r){case 3:return!0;case 5:return gA;case 6:return z;case 2:w($,gA)}else switch(r){case 4:return!1;case 7:w($,gA)}return h?-1:C||e?e:$}};b.exports={forEach:u(0),map:u(1),filter:u(2),some:u(3),every:u(4),find:u(5),findIndex:u(6),filterReject:u(7)}},84320:function(b,A,n){"use strict";var B=n(58448),a=n(98086),s=n(26882),o=n(45495),g=n(81007),f=Math.min,w=[].lastIndexOf,u=!!w&&1/[1].lastIndexOf(1,-0)<0,r=g("lastIndexOf");b.exports=u||!r?function(C){if(u)return B(w,this,arguments)||0;var e=a(this),h=o(e),Q=h-1;for(arguments.length>1&&(Q=f(Q,s(arguments[1]))),Q<0&&(Q=h+Q);Q>=0;Q--)if(Q in e&&e[Q]===C)return Q||0;return-1}:w},56280:function(b,A,n){var B=n(47044),a=n(38688),s=n(70091),o=a("species");b.exports=function(g){return s>=51||!B(function(){var f=[];return(f.constructor={})[o]=function(){return{foo:1}},1!==f[g](Boolean).foo})}},81007:function(b,A,n){"use strict";var B=n(47044);b.exports=function(a,s){var o=[][a];return!!o&&B(function(){o.call(null,s||function(){throw 1},1)})}},32843:function(b,A,n){var B=n(32010),a=n(32631),s=n(43162),o=n(7514),g=n(45495),f=B.TypeError,w=function(u){return function(r,d,E,C){a(d);var e=s(r),h=o(e),Q=g(e),I=u?Q-1:0,R=u?-1:1;if(E<2)for(;;){if(I in h){C=h[I],I+=R;break}if(I+=R,u?I<0:Q<=I)throw f("Reduce of empty array with no initial value")}for(;u?I>=0:Q>I;I+=R)I in h&&(C=d(C,h[I],I,e));return C}};b.exports={left:w(!1),right:w(!0)}},73163:function(b,A,n){var B=n(38347);b.exports=B([].slice)},43977:function(b,A,n){var B=n(73163),a=Math.floor,s=function(f,w){var u=f.length,r=a(u/2);return u<8?o(f,w):g(f,s(B(f,0,r),w),s(B(f,r),w),w)},o=function(f,w){for(var d,E,u=f.length,r=1;r0;)f[E]=f[--E];E!==r++&&(f[E]=d)}return f},g=function(f,w,u,r){for(var d=w.length,E=u.length,C=0,e=0;C1?arguments[1]:void 0);$=$?$.next:z.first;)for(F($.value,$.key,this);$&&$.removed;)$=$.previous},has:function(S){return!!Y(this,S)}}),s(m,I?{get:function(S){var z=Y(this,S);return z&&z.value},set:function(S,z){return x(this,0===S?0:S,z)}}:{add:function(S){return x(this,S=0===S?0:S,S)}}),r&&B(m,"size",{get:function(){return y(this).size}}),p},setStrong:function(h,Q,I){var R=Q+" Iterator",p=e(Q),m=e(R);w(h,Q,function(y,x){C(this,{type:R,target:y,state:p(y),kind:x,last:void 0})},function(){for(var y=m(this),x=y.kind,Y=y.last;Y&&Y.removed;)Y=Y.previous;return y.target&&(y.last=Y=Y?Y.next:y.state.first)?"keys"==x?{value:Y.key,done:!1}:"values"==x?{value:Y.value,done:!1}:{value:[Y.key,Y.value],done:!1}:(y.target=void 0,{value:void 0,done:!0})},I?"entries":"values",!I,!0),u(Q)}}},36673:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(38347),o=n(39599),g=n(13711),f=n(62148),w=n(80383),u=n(2868),r=n(94578),d=n(24517),E=n(47044),C=n(46769),e=n(15216),h=n(51868);b.exports=function(Q,I,R){var p=-1!==Q.indexOf("Map"),m=-1!==Q.indexOf("Weak"),y=p?"set":"add",x=a[Q],Y=x&&x.prototype,v=x,S={},z=function(wA){var IA=s(Y[wA]);g(Y,wA,"add"==wA?function(YA){return IA(this,0===YA?0:YA),this}:"delete"==wA?function(FA){return!(m&&!d(FA))&&IA(this,0===FA?0:FA)}:"get"==wA?function(YA){return m&&!d(YA)?void 0:IA(this,0===YA?0:YA)}:"has"==wA?function(YA){return!(m&&!d(YA))&&IA(this,0===YA?0:YA)}:function(YA,HA){return IA(this,0===YA?0:YA,HA),this})};if(o(Q,!r(x)||!(m||Y.forEach&&!E(function(){(new x).entries().next()}))))v=R.getConstructor(I,Q,p,y),f.enable();else if(o(Q,!0)){var $=new v,gA=$[y](m?{}:-0,1)!=$,_=E(function(){$.has(1)}),fA=C(function(wA){new x(wA)}),iA=!m&&E(function(){for(var wA=new x,IA=5;IA--;)wA[y](IA,IA);return!wA.has(-0)});fA||((v=I(function(wA,IA){u(wA,Y);var FA=h(new x,wA,v);return null!=IA&&w(IA,FA[y],{that:FA,AS_ENTRIES:p}),FA})).prototype=Y,Y.constructor=v),(_||iA)&&(z("delete"),z("has"),p&&z("get")),(iA||gA)&&z(y),m&&Y.clear&&delete Y.clear}return S[Q]=v,B({global:!0,forced:v!=x},S),e(v,Q),m||R.setStrong(v,Q,p),v}},2675:function(b,A,n){var B=n(20340),a=n(21594),s=n(72062),o=n(95892);b.exports=function(g,f){for(var w=a(f),u=o.f,r=s.f,d=0;d"+d+""}},13945:function(b,A,n){"use strict";var B=n(5844).IteratorPrototype,a=n(10819),s=n(97841),o=n(15216),g=n(15366),f=function(){return this};b.exports=function(w,u,r){var d=u+" Iterator";return w.prototype=a(B,{next:s(1,r)}),o(w,d,!1,!0),g[d]=f,w}},48914:function(b,A,n){var B=n(15567),a=n(95892),s=n(97841);b.exports=B?function(o,g,f){return a.f(o,g,s(1,f))}:function(o,g,f){return o[g]=f,o}},97841:function(b){b.exports=function(A,n){return{enumerable:!(1&A),configurable:!(2&A),writable:!(4&A),value:n}}},38639:function(b,A,n){"use strict";var B=n(63918),a=n(95892),s=n(97841);b.exports=function(o,g,f){var w=B(g);w in o?a.f(o,w,s(0,f)):o[w]=f}},53087:function(b,A,n){"use strict";var B=n(32010),a=n(34984),s=n(39629),o=B.TypeError;b.exports=function(g){if(a(this),"string"===g||"default"===g)g="string";else if("number"!==g)throw o("Incorrect hint");return s(this,g)}},97001:function(b,A,n){"use strict";var B=n(56475),a=n(2834),s=n(63432),o=n(7081),g=n(94578),f=n(13945),w=n(69548),u=n(3840),r=n(15216),d=n(48914),E=n(13711),C=n(38688),e=n(15366),h=n(5844),Q=o.PROPER,I=o.CONFIGURABLE,R=h.IteratorPrototype,p=h.BUGGY_SAFARI_ITERATORS,m=C("iterator"),y="keys",x="values",Y="entries",v=function(){return this};b.exports=function(S,z,F,$,gA,_,fA){f(F,z,$);var BA,aA,eA,iA=function(EA){if(EA===gA&&HA)return HA;if(!p&&EA in FA)return FA[EA];switch(EA){case y:case x:case Y:return function(){return new F(this,EA)}}return function(){return new F(this)}},wA=z+" Iterator",IA=!1,FA=S.prototype,YA=FA[m]||FA["@@iterator"]||gA&&FA[gA],HA=!p&&YA||iA(gA),J="Array"==z&&FA.entries||YA;if(J&&(BA=w(J.call(new S)))!==Object.prototype&&BA.next&&(!s&&w(BA)!==R&&(u?u(BA,R):g(BA[m])||E(BA,m,v)),r(BA,wA,!0,!0),s&&(e[wA]=v)),Q&&gA==x&&YA&&YA.name!==x&&(!s&&I?d(FA,"name",x):(IA=!0,HA=function(){return a(YA,this)})),gA)if(aA={values:iA(x),keys:_?HA:iA(y),entries:iA(Y)},fA)for(eA in aA)(p||IA||!(eA in FA))&&E(FA,eA,aA[eA]);else B({target:z,proto:!0,forced:p||IA},aA);return(!s||fA)&&FA[m]!==HA&&E(FA,m,HA,{name:gA}),e[z]=HA,aA}},46042:function(b,A,n){var B=n(11206),a=n(20340),s=n(75960),o=n(95892).f;b.exports=function(g){var f=B.Symbol||(B.Symbol={});a(f,g)||o(f,g,{value:s.f(g)})}},15567:function(b,A,n){var B=n(47044);b.exports=!B(function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]})},12072:function(b,A,n){var B=n(32010),a=n(24517),s=B.document,o=a(s)&&a(s.createElement);b.exports=function(g){return o?s.createElement(g):{}}},23327:function(b){b.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},67797:function(b,A,n){var a=n(12072)("span").classList,s=a&&a.constructor&&a.constructor.prototype;b.exports=s===Object.prototype?void 0:s},3809:function(b,A,n){var a=n(40715).match(/firefox\/(\d+)/i);b.exports=!!a&&+a[1]},3157:function(b){b.exports="object"==typeof window},21983:function(b,A,n){var B=n(40715);b.exports=/MSIE|Trident/.test(B)},70573:function(b,A,n){var B=n(40715),a=n(32010);b.exports=/ipad|iphone|ipod/i.test(B)&&void 0!==a.Pebble},17716:function(b,A,n){var B=n(40715);b.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(B)},95053:function(b,A,n){var B=n(93975),a=n(32010);b.exports="process"==B(a.process)},664:function(b,A,n){var B=n(40715);b.exports=/web0s(?!.*chrome)/i.test(B)},40715:function(b,A,n){var B=n(38486);b.exports=B("navigator","userAgent")||""},70091:function(b,A,n){var w,u,B=n(32010),a=n(40715),s=B.process,o=B.Deno,g=s&&s.versions||o&&o.version,f=g&&g.v8;f&&(u=(w=f.split("."))[0]>0&&w[0]<4?1:+(w[0]+w[1])),!u&&a&&(!(w=a.match(/Edge\/(\d+)/))||w[1]>=74)&&(w=a.match(/Chrome\/(\d+)/))&&(u=+w[1]),b.exports=u},41731:function(b,A,n){var a=n(40715).match(/AppleWebKit\/(\d+)\./);b.exports=!!a&&+a[1]},2416:function(b){b.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},45144:function(b,A,n){var B=n(47044),a=n(97841);b.exports=!B(function(){var s=Error("a");return!("stack"in s)||(Object.defineProperty(s,"stack",a(1,7)),7!==s.stack)})},56475:function(b,A,n){var B=n(32010),a=n(72062).f,s=n(48914),o=n(13711),g=n(7421),f=n(2675),w=n(39599);b.exports=function(u,r){var h,Q,I,R,p,d=u.target,E=u.global,C=u.stat;if(h=E?B:C?B[d]||g(d,{}):(B[d]||{}).prototype)for(Q in r){if(R=r[Q],I=u.noTargetGet?(p=a(h,Q))&&p.value:h[Q],!w(E?Q:d+(C?".":"#")+Q,u.forced)&&void 0!==I){if(typeof R==typeof I)continue;f(R,I)}(u.sham||I&&I.sham)&&s(R,"sham",!0),o(h,Q,R,u)}}},47044:function(b){b.exports=function(A){try{return!!A()}catch{return!0}}},11813:function(b,A,n){"use strict";n(61726);var B=n(38347),a=n(13711),s=n(49820),o=n(47044),g=n(38688),f=n(48914),w=g("species"),u=RegExp.prototype;b.exports=function(r,d,E,C){var e=g(r),h=!o(function(){var p={};return p[e]=function(){return 7},7!=""[r](p)}),Q=h&&!o(function(){var p=!1,m=/a/;return"split"===r&&((m={}).constructor={},m.constructor[w]=function(){return m},m.flags="",m[e]=/./[e]),m.exec=function(){return p=!0,null},m[e](""),!p});if(!h||!Q||E){var I=B(/./[e]),R=d(e,""[r],function(p,m,y,x,Y){var v=B(p),S=m.exec;return S===s||S===u.exec?h&&!Y?{done:!0,value:I(m,y,x)}:{done:!0,value:v(y,m,x)}:{done:!1}});a(String.prototype,r,R[0]),a(u,e,R[1])}C&&f(u[e],"sham",!0)}},55481:function(b,A,n){var B=n(47044);b.exports=!B(function(){return Object.isExtensible(Object.preventExtensions({}))})},58448:function(b){var A=Function.prototype,n=A.apply,a=A.call;b.exports="object"==typeof Reflect&&Reflect.apply||(A.bind?a.bind(n):function(){return a.apply(n,arguments)})},25567:function(b,A,n){var B=n(38347),a=n(32631),s=B(B.bind);b.exports=function(o,g){return a(o),void 0===g?o:s?s(o,g):function(){return o.apply(g,arguments)}}},5481:function(b,A,n){"use strict";var B=n(32010),a=n(38347),s=n(32631),o=n(24517),g=n(20340),f=n(73163),w=B.Function,u=a([].concat),r=a([].join),d={};b.exports=w.bind||function(e){var h=s(this),Q=h.prototype,I=f(arguments,1),R=function(){var m=u(I,f(arguments));return this instanceof R?function(C,e,h){if(!g(d,e)){for(var Q=[],I=0;I]*>)/g,u=/\$([$&'`]|\d{1,2})/g;b.exports=function(r,d,E,C,e,h){var Q=E+r.length,I=C.length,R=u;return void 0!==e&&(e=a(e),R=w),g(h,R,function(p,m){var y;switch(o(m,0)){case"$":return"$";case"&":return r;case"`":return f(d,0,E);case"'":return f(d,Q);case"<":y=e[f(m,1,-1)];break;default:var x=+m;if(0===x)return p;if(x>I){var Y=s(x/10);return 0===Y?p:Y<=I?void 0===C[Y-1]?o(m,1):C[Y-1]+o(m,1):p}y=C[x-1]}return void 0===y?"":y})}},32010:function(b,A,n){var B=function(a){return a&&a.Math==Math&&a};b.exports=B("object"==typeof globalThis&&globalThis)||B("object"==typeof window&&window)||B("object"==typeof self&&self)||B("object"==typeof n.g&&n.g)||function(){return this}()||Function("return this")()},20340:function(b,A,n){var B=n(38347),a=n(43162),s=B({}.hasOwnProperty);b.exports=Object.hasOwn||function(g,f){return s(a(g),f)}},90682:function(b){b.exports={}},61144:function(b,A,n){var B=n(32010);b.exports=function(a,s){var o=B.console;o&&o.error&&(1==arguments.length?o.error(a):o.error(a,s))}},520:function(b,A,n){var B=n(38486);b.exports=B("document","documentElement")},18904:function(b,A,n){var B=n(15567),a=n(47044),s=n(12072);b.exports=!B&&!a(function(){return 7!=Object.defineProperty(s("div"),"a",{get:function(){return 7}}).a})},64397:function(b,A,n){var a=n(32010).Array,s=Math.abs,o=Math.pow,g=Math.floor,f=Math.log,w=Math.LN2;b.exports={pack:function(d,E,C){var y,x,Y,e=a(C),h=8*C-E-1,Q=(1<>1,R=23===E?o(2,-24)-o(2,-77):0,p=d<0||0===d&&1/d<0?1:0,m=0;for((d=s(d))!=d||d===1/0?(x=d!=d?1:0,y=Q):(y=g(f(d)/w),d*(Y=o(2,-y))<1&&(y--,Y*=2),(d+=y+I>=1?R/Y:R*o(2,1-I))*Y>=2&&(y++,Y/=2),y+I>=Q?(x=0,y=Q):y+I>=1?(x=(d*Y-1)*o(2,E),y+=I):(x=d*o(2,I-1)*o(2,E),y=0));E>=8;e[m++]=255&x,x/=256,E-=8);for(y=y<0;e[m++]=255&y,y/=256,h-=8);return e[--m]|=128*p,e},unpack:function(d,E){var y,C=d.length,e=8*C-E-1,h=(1<>1,I=e-7,R=C-1,p=d[R--],m=127&p;for(p>>=7;I>0;m=256*m+d[R],R--,I-=8);for(y=m&(1<<-I)-1,m>>=-I,I+=E;I>0;y=256*y+d[R],R--,I-=8);if(0===m)m=1-Q;else{if(m===h)return y?NaN:p?-1/0:1/0;y+=o(2,E),m-=Q}return(p?-1:1)*y*o(2,m-E)}}},7514:function(b,A,n){var B=n(32010),a=n(38347),s=n(47044),o=n(93975),g=B.Object,f=a("".split);b.exports=s(function(){return!g("z").propertyIsEnumerable(0)})?function(w){return"String"==o(w)?f(w,""):g(w)}:g},51868:function(b,A,n){var B=n(94578),a=n(24517),s=n(3840);b.exports=function(o,g,f){var w,u;return s&&B(w=g.constructor)&&w!==f&&a(u=w.prototype)&&u!==f.prototype&&s(o,u),o}},10447:function(b,A,n){var B=n(38347),a=n(94578),s=n(55480),o=B(Function.toString);a(s.inspectSource)||(s.inspectSource=function(g){return o(g)}),b.exports=s.inspectSource},87811:function(b,A,n){var B=n(24517),a=n(48914);b.exports=function(s,o){B(o)&&"cause"in o&&a(s,"cause",o.cause)}},62148:function(b,A,n){var B=n(56475),a=n(38347),s=n(90682),o=n(24517),g=n(20340),f=n(95892).f,w=n(6611),u=n(8807),r=n(46859),d=n(55481),E=!1,C=r("meta"),e=0,h=Object.isExtensible||function(){return!0},Q=function(x){f(x,C,{value:{objectID:"O"+e++,weakData:{}}})},y=b.exports={enable:function(){y.enable=function(){},E=!0;var x=w.f,Y=a([].splice),v={};v[C]=1,x(v).length&&(w.f=function(S){for(var z=x(S),F=0,$=z.length;F<$;F++)if(z[F]===C){Y(z,F,1);break}return z},B({target:"Object",stat:!0,forced:!0},{getOwnPropertyNames:u.f}))},fastKey:function(x,Y){if(!o(x))return"symbol"==typeof x?x:("string"==typeof x?"S":"P")+x;if(!g(x,C)){if(!h(x))return"F";if(!Y)return"E";Q(x)}return x[C].objectID},getWeakData:function(x,Y){if(!g(x,C)){if(!h(x))return!0;if(!Y)return!1;Q(x)}return x[C].weakData},onFreeze:function(x){return d&&E&&h(x)&&!g(x,C)&&Q(x),x}};s[C]=!0},70172:function(b,A,n){var e,h,Q,B=n(26168),a=n(32010),s=n(38347),o=n(24517),g=n(48914),f=n(20340),w=n(55480),u=n(82194),r=n(90682),d="Object already initialized",E=a.TypeError;if(B||w.state){var p=w.state||(w.state=new(0,a.WeakMap)),m=s(p.get),y=s(p.has),x=s(p.set);e=function(v,S){if(y(p,v))throw new E(d);return S.facade=v,x(p,v,S),S},h=function(v){return m(p,v)||{}},Q=function(v){return y(p,v)}}else{var Y=u("state");r[Y]=!0,e=function(v,S){if(f(v,Y))throw new E(d);return S.facade=v,g(v,Y,S),S},h=function(v){return f(v,Y)?v[Y]:{}},Q=function(v){return f(v,Y)}}b.exports={set:e,get:h,has:Q,enforce:function(v){return Q(v)?h(v):e(v,{})},getterFor:function(v){return function(S){var z;if(!o(S)||(z=h(S)).type!==v)throw E("Incompatible receiver, "+v+" required");return z}}}},89564:function(b,A,n){var B=n(38688),a=n(15366),s=B("iterator"),o=Array.prototype;b.exports=function(g){return void 0!==g&&(a.Array===g||o[s]===g)}},59113:function(b,A,n){var B=n(93975);b.exports=Array.isArray||function(s){return"Array"==B(s)}},94578:function(b){b.exports=function(A){return"function"==typeof A}},20884:function(b,A,n){var B=n(38347),a=n(47044),s=n(94578),o=n(52564),g=n(38486),f=n(10447),w=function(){},u=[],r=g("Reflect","construct"),d=/^\s*(?:class|function)\b/,E=B(d.exec),C=!d.exec(w),e=function(Q){if(!s(Q))return!1;try{return r(w,u,Q),!0}catch{return!1}};b.exports=!r||a(function(){var Q;return e(e.call)||!e(Object)||!e(function(){Q=!0})||Q})?function(Q){if(!s(Q))return!1;switch(o(Q)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return C||!!E(d,f(Q))}:e},39599:function(b,A,n){var B=n(47044),a=n(94578),s=/#|\.prototype\./,o=function(r,d){var E=f[g(r)];return E==u||E!=w&&(a(d)?B(d):!!d)},g=o.normalize=function(r){return String(r).replace(s,".").toLowerCase()},f=o.data={},w=o.NATIVE="N",u=o.POLYFILL="P";b.exports=o},17506:function(b,A,n){var B=n(24517),a=Math.floor;b.exports=Number.isInteger||function(o){return!B(o)&&isFinite(o)&&a(o)===o}},24517:function(b,A,n){var B=n(94578);b.exports=function(a){return"object"==typeof a?null!==a:B(a)}},63432:function(b){b.exports=!1},28831:function(b,A,n){var B=n(24517),a=n(93975),o=n(38688)("match");b.exports=function(g){var f;return B(g)&&(void 0!==(f=g[o])?!!f:"RegExp"==a(g))}},46290:function(b,A,n){var B=n(32010),a=n(38486),s=n(94578),o=n(70176),g=n(9567),f=B.Object;b.exports=g?function(w){return"symbol"==typeof w}:function(w){var u=a("Symbol");return s(u)&&o(u.prototype,f(w))}},80383:function(b,A,n){var B=n(32010),a=n(25567),s=n(2834),o=n(34984),g=n(68664),f=n(89564),w=n(45495),u=n(70176),r=n(15892),d=n(13872),E=n(50194),C=B.TypeError,e=function(Q,I){this.stopped=Q,this.result=I},h=e.prototype;b.exports=function(Q,I,R){var v,S,z,F,$,gA,_,m=!(!R||!R.AS_ENTRIES),y=!(!R||!R.IS_ITERATOR),x=!(!R||!R.INTERRUPTED),Y=a(I,R&&R.that),fA=function(wA){return v&&E(v,"normal",wA),new e(!0,wA)},iA=function(wA){return m?(o(wA),x?Y(wA[0],wA[1],fA):Y(wA[0],wA[1])):x?Y(wA,fA):Y(wA)};if(y)v=Q;else{if(!(S=d(Q)))throw C(g(Q)+" is not iterable");if(f(S)){for(z=0,F=w(Q);F>z;z++)if(($=iA(Q[z]))&&u(h,$))return $;return new e(!1)}v=r(Q,S)}for(gA=v.next;!(_=s(gA,v)).done;){try{$=iA(_.value)}catch(wA){E(v,"throw",wA)}if("object"==typeof $&&$&&u(h,$))return $}return new e(!1)}},50194:function(b,A,n){var B=n(2834),a=n(34984),s=n(51839);b.exports=function(o,g,f){var w,u;a(o);try{if(!(w=s(o,"return"))){if("throw"===g)throw f;return f}w=B(w,o)}catch(r){u=!0,w=r}if("throw"===g)throw f;if(u)throw w;return a(w),f}},5844:function(b,A,n){"use strict";var d,E,C,B=n(47044),a=n(94578),s=n(10819),o=n(69548),g=n(13711),f=n(38688),w=n(63432),u=f("iterator"),r=!1;[].keys&&("next"in(C=[].keys())?(E=o(o(C)))!==Object.prototype&&(d=E):r=!0),null==d||B(function(){var h={};return d[u].call(h)!==h})?d={}:w&&(d=s(d)),a(d[u])||g(d,u,function(){return this}),b.exports={IteratorPrototype:d,BUGGY_SAFARI_ITERATORS:r}},15366:function(b){b.exports={}},45495:function(b,A,n){var B=n(23417);b.exports=function(a){return B(a.length)}},59804:function(b,A,n){var Q,I,R,p,m,y,x,Y,B=n(32010),a=n(25567),s=n(72062).f,o=n(6616).set,g=n(17716),f=n(70573),w=n(664),u=n(95053),r=B.MutationObserver||B.WebKitMutationObserver,d=B.document,E=B.process,C=B.Promise,e=s(B,"queueMicrotask"),h=e&&e.value;h||(Q=function(){var v,S;for(u&&(v=E.domain)&&v.exit();I;){S=I.fn,I=I.next;try{S()}catch(z){throw I?p():R=void 0,z}}R=void 0,v&&v.enter()},g||u||w||!r||!d?!f&&C&&C.resolve?((x=C.resolve(void 0)).constructor=C,Y=a(x.then,x),p=function(){Y(Q)}):u?p=function(){E.nextTick(Q)}:(o=a(o,B),p=function(){o(Q)}):(m=!0,y=d.createTextNode(""),new r(Q).observe(y,{characterData:!0}),p=function(){y.data=m=!m})),b.exports=h||function(v){var S={fn:v,next:void 0};R&&(R.next=S),I||(I=S,p()),R=S}},5155:function(b,A,n){var B=n(32010);b.exports=B.Promise},46887:function(b,A,n){var B=n(70091),a=n(47044);b.exports=!!Object.getOwnPropertySymbols&&!a(function(){var s=Symbol();return!String(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&B&&B<41})},26168:function(b,A,n){var B=n(32010),a=n(94578),s=n(10447),o=B.WeakMap;b.exports=a(o)&&/native code/.test(s(o))},56614:function(b,A,n){"use strict";var B=n(32631),a=function(s){var o,g;this.promise=new s(function(f,w){if(void 0!==o||void 0!==g)throw TypeError("Bad Promise constructor");o=f,g=w}),this.resolve=B(o),this.reject=B(g)};b.exports.f=function(s){return new a(s)}},86392:function(b,A,n){var B=n(25096);b.exports=function(a,s){return void 0===a?arguments.length<2?"":s:B(a)}},93666:function(b,A,n){var B=n(32010),a=n(28831),s=B.TypeError;b.exports=function(o){if(a(o))throw s("The method doesn't accept regular expressions");return o}},59805:function(b,A,n){var a=n(32010).isFinite;b.exports=Number.isFinite||function(o){return"number"==typeof o&&a(o)}},87146:function(b,A,n){"use strict";var B=n(15567),a=n(38347),s=n(2834),o=n(47044),g=n(84675),f=n(61146),w=n(55574),u=n(43162),r=n(7514),d=Object.assign,E=Object.defineProperty,C=a([].concat);b.exports=!d||o(function(){if(B&&1!==d({b:1},d(E({},"a",{enumerable:!0,get:function(){E(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var e={},h={},Q=Symbol(),I="abcdefghijklmnopqrst";return e[Q]=7,I.split("").forEach(function(R){h[R]=R}),7!=d({},e)[Q]||g(d({},h)).join("")!=I})?function(h,Q){for(var I=u(h),R=arguments.length,p=1,m=f.f,y=w.f;R>p;)for(var z,x=r(arguments[p++]),Y=m?C(g(x),m(x)):g(x),v=Y.length,S=0;v>S;)z=Y[S++],(!B||s(y,x,z))&&(I[z]=x[z]);return I}:d},10819:function(b,A,n){var R,B=n(34984),a=n(10196),s=n(2416),o=n(90682),g=n(520),f=n(12072),w=n(82194),d="prototype",E="script",C=w("IE_PROTO"),e=function(){},h=function(m){return"<"+E+">"+m+""},Q=function(m){m.write(h("")),m.close();var y=m.parentWindow.Object;return m=null,y},p=function(){try{R=new ActiveXObject("htmlfile")}catch{}p=typeof document<"u"?document.domain&&R?Q(R):function(){var x,m=f("iframe"),y="java"+E+":";return m.style.display="none",g.appendChild(m),m.src=String(y),(x=m.contentWindow.document).open(),x.write(h("document.F=Object")),x.close(),x.F}():Q(R);for(var m=s.length;m--;)delete p[d][s[m]];return p()};o[C]=!0,b.exports=Object.create||function(y,x){var Y;return null!==y?(e[d]=B(y),Y=new e,e[d]=null,Y[C]=y):Y=p(),void 0===x?Y:a(Y,x)}},10196:function(b,A,n){var B=n(15567),a=n(95892),s=n(34984),o=n(98086),g=n(84675);b.exports=B?Object.defineProperties:function(w,u){s(w);for(var e,r=o(u),d=g(u),E=d.length,C=0;E>C;)a.f(w,e=d[C++],r[e]);return w}},95892:function(b,A,n){var B=n(32010),a=n(15567),s=n(18904),o=n(34984),g=n(63918),f=B.TypeError,w=Object.defineProperty;A.f=a?w:function(r,d,E){if(o(r),d=g(d),o(E),s)try{return w(r,d,E)}catch{}if("get"in E||"set"in E)throw f("Accessors not supported");return"value"in E&&(r[d]=E.value),r}},72062:function(b,A,n){var B=n(15567),a=n(2834),s=n(55574),o=n(97841),g=n(98086),f=n(63918),w=n(20340),u=n(18904),r=Object.getOwnPropertyDescriptor;A.f=B?r:function(E,C){if(E=g(E),C=f(C),u)try{return r(E,C)}catch{}if(w(E,C))return o(!a(s.f,E,C),E[C])}},8807:function(b,A,n){var B=n(93975),a=n(98086),s=n(6611).f,o=n(73163),g="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];b.exports.f=function(u){return g&&"Window"==B(u)?function(w){try{return s(w)}catch{return o(g)}}(u):s(a(u))}},6611:function(b,A,n){var B=n(64429),s=n(2416).concat("length","prototype");A.f=Object.getOwnPropertyNames||function(g){return B(g,s)}},61146:function(b,A){A.f=Object.getOwnPropertySymbols},69548:function(b,A,n){var B=n(32010),a=n(20340),s=n(94578),o=n(43162),g=n(82194),f=n(68494),w=g("IE_PROTO"),u=B.Object,r=u.prototype;b.exports=f?u.getPrototypeOf:function(d){var E=o(d);if(a(E,w))return E[w];var C=E.constructor;return s(C)&&E instanceof C?C.prototype:E instanceof u?r:null}},70176:function(b,A,n){var B=n(38347);b.exports=B({}.isPrototypeOf)},64429:function(b,A,n){var B=n(38347),a=n(20340),s=n(98086),o=n(12636).indexOf,g=n(90682),f=B([].push);b.exports=function(w,u){var C,r=s(w),d=0,E=[];for(C in r)!a(g,C)&&a(r,C)&&f(E,C);for(;u.length>d;)a(r,C=u[d++])&&(~o(E,C)||f(E,C));return E}},84675:function(b,A,n){var B=n(64429),a=n(2416);b.exports=Object.keys||function(o){return B(o,a)}},55574:function(b,A){"use strict";var n={}.propertyIsEnumerable,B=Object.getOwnPropertyDescriptor,a=B&&!n.call({1:2},1);A.f=a?function(o){var g=B(this,o);return!!g&&g.enumerable}:n},3840:function(b,A,n){var B=n(38347),a=n(34984),s=n(58659);b.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var f,o=!1,g={};try{(f=B(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(g,[]),o=g instanceof Array}catch{}return function(u,r){return a(u),s(r),o?f(u,r):u.__proto__=r,u}}():void 0)},80754:function(b,A,n){var B=n(15567),a=n(38347),s=n(84675),o=n(98086),f=a(n(55574).f),w=a([].push),u=function(r){return function(d){for(var I,E=o(d),C=s(E),e=C.length,h=0,Q=[];e>h;)I=C[h++],(!B||f(E,I))&&w(Q,r?[I,E[I]]:E[I]);return Q}};b.exports={entries:u(!0),values:u(!1)}},52598:function(b,A,n){"use strict";var B=n(24663),a=n(52564);b.exports=B?{}.toString:function(){return"[object "+a(this)+"]"}},39629:function(b,A,n){var B=n(32010),a=n(2834),s=n(94578),o=n(24517),g=B.TypeError;b.exports=function(f,w){var u,r;if("string"===w&&s(u=f.toString)&&!o(r=a(u,f))||s(u=f.valueOf)&&!o(r=a(u,f))||"string"!==w&&s(u=f.toString)&&!o(r=a(u,f)))return r;throw g("Can't convert object to primitive value")}},21594:function(b,A,n){var B=n(38486),a=n(38347),s=n(6611),o=n(61146),g=n(34984),f=a([].concat);b.exports=B("Reflect","ownKeys")||function(u){var r=s.f(g(u)),d=o.f;return d?f(r,d(u)):r}},11206:function(b,A,n){var B=n(32010);b.exports=B},61900:function(b){b.exports=function(A){try{return{error:!1,value:A()}}catch(n){return{error:!0,value:n}}}},28617:function(b,A,n){var B=n(34984),a=n(24517),s=n(56614);b.exports=function(o,g){if(B(o),a(g)&&g.constructor===o)return g;var f=s.f(o);return(0,f.resolve)(g),f.promise}},15341:function(b,A,n){var B=n(13711);b.exports=function(a,s,o){for(var g in s)B(a,g,s[g],o);return a}},13711:function(b,A,n){var B=n(32010),a=n(94578),s=n(20340),o=n(48914),g=n(7421),f=n(10447),w=n(70172),u=n(7081).CONFIGURABLE,r=w.get,d=w.enforce,E=String(String).split("String");(b.exports=function(C,e,h,Q){var y,I=!!Q&&!!Q.unsafe,R=!!Q&&!!Q.enumerable,p=!!Q&&!!Q.noTargetGet,m=Q&&void 0!==Q.name?Q.name:e;a(h)&&("Symbol("===String(m).slice(0,7)&&(m="["+String(m).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!s(h,"name")||u&&h.name!==m)&&o(h,"name",m),(y=d(h)).source||(y.source=E.join("string"==typeof m?m:""))),C!==B?(I?!p&&C[e]&&(R=!0):delete C[e],R?C[e]=h:o(C,e,h)):R?C[e]=h:g(e,h)})(Function.prototype,"toString",function(){return a(this)&&r(this).source||f(this)})},66723:function(b,A,n){var B=n(32010),a=n(2834),s=n(34984),o=n(94578),g=n(93975),f=n(49820),w=B.TypeError;b.exports=function(u,r){var d=u.exec;if(o(d)){var E=a(d,u,r);return null!==E&&s(E),E}if("RegExp"===g(u))return a(f,u,r);throw w("RegExp#exec called on incompatible receiver")}},49820:function(b,A,n){"use strict";var Y,v,B=n(2834),a=n(38347),s=n(25096),o=n(21182),g=n(74846),f=n(464),w=n(10819),u=n(70172).get,r=n(84030),d=n(97739),E=f("native-string-replace",String.prototype.replace),C=RegExp.prototype.exec,e=C,h=a("".charAt),Q=a("".indexOf),I=a("".replace),R=a("".slice),p=(v=/b*/g,B(C,Y=/a/,"a"),B(C,v,"a"),0!==Y.lastIndex||0!==v.lastIndex),m=g.UNSUPPORTED_Y||g.BROKEN_CARET,y=void 0!==/()??/.exec("")[1];(p||y||m||r||d)&&(e=function(v){var gA,_,fA,iA,wA,IA,FA,S=this,z=u(S),F=s(v),$=z.raw;if($)return $.lastIndex=S.lastIndex,gA=B(e,$,F),S.lastIndex=$.lastIndex,gA;var YA=z.groups,HA=m&&S.sticky,J=B(o,S),BA=S.source,aA=0,eA=F;if(HA&&(J=I(J,"y",""),-1===Q(J,"g")&&(J+="g"),eA=R(F,S.lastIndex),S.lastIndex>0&&(!S.multiline||S.multiline&&"\n"!==h(F,S.lastIndex-1))&&(BA="(?: "+BA+")",eA=" "+eA,aA++),_=new RegExp("^(?:"+BA+")",J)),y&&(_=new RegExp("^"+BA+"$(?!\\s)",J)),p&&(fA=S.lastIndex),iA=B(C,HA?_:S,eA),HA?iA?(iA.input=R(iA.input,aA),iA[0]=R(iA[0],aA),iA.index=S.lastIndex,S.lastIndex+=iA[0].length):S.lastIndex=0:p&&iA&&(S.lastIndex=S.global?iA.index+iA[0].length:fA),y&&iA&&iA.length>1&&B(E,iA[0],_,function(){for(wA=1;wAb)","g");return"b"!==o.exec("b").groups.a||"bc"!=="b".replace(o,"$c")})},83943:function(b,A,n){var a=n(32010).TypeError;b.exports=function(s){if(null==s)throw a("Can't call method on "+s);return s}},7421:function(b,A,n){var B=n(32010),a=Object.defineProperty;b.exports=function(s,o){try{a(B,s,{value:o,configurable:!0,writable:!0})}catch{B[s]=o}return o}},51334:function(b,A,n){"use strict";var B=n(38486),a=n(95892),s=n(38688),o=n(15567),g=s("species");b.exports=function(f){var w=B(f);o&&w&&!w[g]&&(0,a.f)(w,g,{configurable:!0,get:function(){return this}})}},15216:function(b,A,n){var B=n(95892).f,a=n(20340),o=n(38688)("toStringTag");b.exports=function(g,f,w){g&&!a(g=w?g:g.prototype,o)&&B(g,o,{configurable:!0,value:f})}},82194:function(b,A,n){var B=n(464),a=n(46859),s=B("keys");b.exports=function(o){return s[o]||(s[o]=a(o))}},55480:function(b,A,n){var B=n(32010),a=n(7421),s="__core-js_shared__",o=B[s]||a(s,{});b.exports=o},464:function(b,A,n){var B=n(63432),a=n(55480);(b.exports=function(s,o){return a[s]||(a[s]=void 0!==o?o:{})})("versions",[]).push({version:"3.19.0",mode:B?"pure":"global",copyright:"\xa9 2021 Denis Pushkarev (zloirock.ru)"})},27754:function(b,A,n){var B=n(34984),a=n(69075),o=n(38688)("species");b.exports=function(g,f){var u,w=B(g).constructor;return void 0===w||null==(u=B(w)[o])?f:a(u)}},7452:function(b,A,n){var B=n(47044);b.exports=function(a){return B(function(){var s=""[a]('"');return s!==s.toLowerCase()||s.split('"').length>3})}},69510:function(b,A,n){var B=n(38347),a=n(26882),s=n(25096),o=n(83943),g=B("".charAt),f=B("".charCodeAt),w=B("".slice),u=function(r){return function(d,E){var Q,I,C=s(o(d)),e=a(E),h=C.length;return e<0||e>=h?r?"":void 0:(Q=f(C,e))<55296||Q>56319||e+1===h||(I=f(C,e+1))<56320||I>57343?r?g(C,e):Q:r?w(C,e,e+2):I-56320+(Q-55296<<10)+65536}};b.exports={codeAt:u(!1),charAt:u(!0)}},34858:function(b,A,n){"use strict";var B=n(32010),a=n(26882),s=n(25096),o=n(83943),g=B.RangeError;b.exports=function(w){var u=s(o(this)),r="",d=a(w);if(d<0||d==1/0)throw g("Wrong number of repetitions");for(;d>0;(d>>>=1)&&(u+=u))1&d&&(r+=u);return r}},68899:function(b,A,n){var B=n(7081).PROPER,a=n(47044),s=n(43187);b.exports=function(g){return a(function(){return!!s[g]()||"\u200b\x85\u180e"!=="\u200b\x85\u180e"[g]()||B&&s[g].name!==g})}},29841:function(b,A,n){var B=n(38347),a=n(83943),s=n(25096),o=n(43187),g=B("".replace),f="["+o+"]",w=RegExp("^"+f+f+"*"),u=RegExp(f+f+"*$"),r=function(d){return function(E){var C=s(a(E));return 1&d&&(C=g(C,w,"")),2&d&&(C=g(C,u,"")),C}};b.exports={start:r(1),end:r(2),trim:r(3)}},6616:function(b,A,n){var Y,v,S,z,B=n(32010),a=n(58448),s=n(25567),o=n(94578),g=n(20340),f=n(47044),w=n(520),u=n(73163),r=n(12072),d=n(17716),E=n(95053),C=B.setImmediate,e=B.clearImmediate,h=B.process,Q=B.Dispatch,I=B.Function,R=B.MessageChannel,p=B.String,m=0,y={},x="onreadystatechange";try{Y=B.location}catch{}var F=function(fA){if(g(y,fA)){var iA=y[fA];delete y[fA],iA()}},$=function(fA){return function(){F(fA)}},gA=function(fA){F(fA.data)},_=function(fA){B.postMessage(p(fA),Y.protocol+"//"+Y.host)};(!C||!e)&&(C=function(iA){var wA=u(arguments,1);return y[++m]=function(){a(o(iA)?iA:I(iA),void 0,wA)},v(m),m},e=function(iA){delete y[iA]},E?v=function(fA){h.nextTick($(fA))}:Q&&Q.now?v=function(fA){Q.now($(fA))}:R&&!d?(z=(S=new R).port2,S.port1.onmessage=gA,v=s(z.postMessage,z)):B.addEventListener&&o(B.postMessage)&&!B.importScripts&&Y&&"file:"!==Y.protocol&&!f(_)?(v=_,B.addEventListener("message",gA,!1)):v=x in r("script")?function(fA){w.appendChild(r("script"))[x]=function(){w.removeChild(this),F(fA)}}:function(fA){setTimeout($(fA),0)}),b.exports={set:C,clear:e}},16679:function(b,A,n){var B=n(38347);b.exports=B(1..valueOf)},74841:function(b,A,n){var B=n(26882),a=Math.max,s=Math.min;b.exports=function(o,g){var f=B(o);return f<0?a(f+g,0):s(f,g)}},71265:function(b,A,n){var B=n(32010),a=n(26882),s=n(23417),o=B.RangeError;b.exports=function(g){if(void 0===g)return 0;var f=a(g),w=s(f);if(f!==w)throw o("Wrong length or index");return w}},98086:function(b,A,n){var B=n(7514),a=n(83943);b.exports=function(s){return B(a(s))}},26882:function(b){var A=Math.ceil,n=Math.floor;b.exports=function(B){var a=+B;return a!=a||0===a?0:(a>0?n:A)(a)}},23417:function(b,A,n){var B=n(26882),a=Math.min;b.exports=function(s){return s>0?a(B(s),9007199254740991):0}},43162:function(b,A,n){var B=n(32010),a=n(83943),s=B.Object;b.exports=function(o){return s(a(o))}},80670:function(b,A,n){var B=n(32010),a=n(64913),s=B.RangeError;b.exports=function(o,g){var f=a(o);if(f%g)throw s("Wrong offset");return f}},64913:function(b,A,n){var B=n(32010),a=n(26882),s=B.RangeError;b.exports=function(o){var g=a(o);if(g<0)throw s("The argument can't be less than 0");return g}},2644:function(b,A,n){var B=n(32010),a=n(2834),s=n(24517),o=n(46290),g=n(51839),f=n(39629),w=n(38688),u=B.TypeError,r=w("toPrimitive");b.exports=function(d,E){if(!s(d)||o(d))return d;var e,C=g(d,r);if(C){if(void 0===E&&(E="default"),e=a(C,d,E),!s(e)||o(e))return e;throw u("Can't convert object to primitive value")}return void 0===E&&(E="number"),f(d,E)}},63918:function(b,A,n){var B=n(2644),a=n(46290);b.exports=function(s){var o=B(s,"string");return a(o)?o:o+""}},24663:function(b,A,n){var s={};s[n(38688)("toStringTag")]="z",b.exports="[object z]"===String(s)},25096:function(b,A,n){var B=n(32010),a=n(52564),s=B.String;b.exports=function(o){if("Symbol"===a(o))throw TypeError("Cannot convert a Symbol value to a string");return s(o)}},68664:function(b,A,n){var a=n(32010).String;b.exports=function(s){try{return a(s)}catch{return"Object"}}},98828:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(2834),o=n(15567),g=n(28834),f=n(36597),w=n(89987),u=n(2868),r=n(97841),d=n(48914),E=n(17506),C=n(23417),e=n(71265),h=n(80670),Q=n(63918),I=n(20340),R=n(52564),p=n(24517),m=n(46290),y=n(10819),x=n(70176),Y=n(3840),v=n(6611).f,S=n(83590),z=n(91102).forEach,F=n(51334),$=n(95892),gA=n(72062),_=n(70172),fA=n(51868),iA=_.get,wA=_.set,IA=$.f,FA=gA.f,YA=Math.round,HA=a.RangeError,J=w.ArrayBuffer,BA=J.prototype,aA=w.DataView,eA=f.NATIVE_ARRAY_BUFFER_VIEWS,EA=f.TYPED_ARRAY_CONSTRUCTOR,xA=f.TYPED_ARRAY_TAG,OA=f.TypedArray,W=f.TypedArrayPrototype,L=f.aTypedArrayConstructor,rA=f.isTypedArray,AA="BYTES_PER_ELEMENT",QA="Wrong length",yA=function(pA,JA){L(pA);for(var ft=0,wt=JA.length,gt=new pA(wt);wt>ft;)gt[ft]=JA[ft++];return gt},cA=function(pA,JA){IA(pA,JA,{get:function(){return iA(this)[JA]}})},CA=function(pA){var JA;return x(BA,pA)||"ArrayBuffer"==(JA=R(pA))||"SharedArrayBuffer"==JA},DA=function(pA,JA){return rA(pA)&&!m(JA)&&JA in pA&&E(+JA)&&JA>=0},NA=function(JA,ft){return ft=Q(ft),DA(JA,ft)?r(2,JA[ft]):FA(JA,ft)},zA=function(JA,ft,wt){return ft=Q(ft),!(DA(JA,ft)&&p(wt)&&I(wt,"value"))||I(wt,"get")||I(wt,"set")||wt.configurable||I(wt,"writable")&&!wt.writable||I(wt,"enumerable")&&!wt.enumerable?IA(JA,ft,wt):(JA[ft]=wt.value,JA)};o?(eA||(gA.f=NA,$.f=zA,cA(W,"buffer"),cA(W,"byteOffset"),cA(W,"byteLength"),cA(W,"length")),B({target:"Object",stat:!0,forced:!eA},{getOwnPropertyDescriptor:NA,defineProperty:zA}),b.exports=function(pA,JA,ft){var wt=pA.match(/\d+$/)[0]/8,gt=pA+(ft?"Clamped":"")+"Array",pt="get"+pA,Yt="set"+pA,VA=a[gt],_A=VA,Qt=_A&&_A.prototype,ht={},vA=function(Bt,Z){IA(Bt,Z,{get:function(){return function(Bt,Z){var k=iA(Bt);return k.view[pt](Z*wt+k.byteOffset,!0)}(this,Z)},set:function(k){return function(Bt,Z,k){var U=iA(Bt);ft&&(k=(k=YA(k))<0?0:k>255?255:255&k),U.view[Yt](Z*wt+U.byteOffset,k,!0)}(this,Z,k)},enumerable:!0})};eA?g&&(_A=JA(function(Bt,Z,k,U){return u(Bt,Qt),fA(p(Z)?CA(Z)?void 0!==U?new VA(Z,h(k,wt),U):void 0!==k?new VA(Z,h(k,wt)):new VA(Z):rA(Z)?yA(_A,Z):s(S,_A,Z):new VA(e(Z)),Bt,_A)}),Y&&Y(_A,OA),z(v(VA),function(Bt){Bt in _A||d(_A,Bt,VA[Bt])}),_A.prototype=Qt):(_A=JA(function(Bt,Z,k,U){u(Bt,Qt);var GA,At,O,hA=0,q=0;if(p(Z)){if(!CA(Z))return rA(Z)?yA(_A,Z):s(S,_A,Z);GA=Z,q=h(k,wt);var qA=Z.byteLength;if(void 0===U){if(qA%wt||(At=qA-q)<0)throw HA(QA)}else if((At=C(U)*wt)+q>qA)throw HA(QA);O=At/wt}else O=e(Z),GA=new J(At=O*wt);for(wA(Bt,{buffer:GA,byteOffset:q,byteLength:At,length:O,view:new aA(GA)});hA1?arguments[1]:void 0,I=void 0!==Q,R=w(e);if(R&&!u(R))for(v=(Y=f(e,R)).next,e=[];!(x=a(v,Y)).done;)e.push(x.value);for(I&&h>2&&(Q=B(Q,arguments[2])),m=g(e),y=new(r(C))(m),p=0;m>p;p++)y[p]=I?Q(e[p],p):e[p];return y}},34815:function(b,A,n){var B=n(36597),a=n(27754),s=B.TYPED_ARRAY_CONSTRUCTOR,o=B.aTypedArrayConstructor;b.exports=function(g){return o(a(g,g[s]))}},46859:function(b,A,n){var B=n(38347),a=0,s=Math.random(),o=B(1..toString);b.exports=function(g){return"Symbol("+(void 0===g?"":g)+")_"+o(++a+s,36)}},9567:function(b,A,n){var B=n(46887);b.exports=B&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},75960:function(b,A,n){var B=n(38688);A.f=B},38688:function(b,A,n){var B=n(32010),a=n(464),s=n(20340),o=n(46859),g=n(46887),f=n(9567),w=a("wks"),u=B.Symbol,r=u&&u.for,d=f?u:u&&u.withoutSetter||o;b.exports=function(E){if(!s(w,E)||!g&&"string"!=typeof w[E]){var C="Symbol."+E;w[E]=g&&s(u,E)?u[E]:f&&r?r(C):d(C)}return w[E]}},43187:function(b){b.exports="\t\n\v\f\r \xa0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029\ufeff"},94910:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(70176),o=n(69548),g=n(3840),f=n(2675),w=n(10819),u=n(48914),r=n(97841),d=n(34074),E=n(87811),C=n(80383),e=n(86392),h=n(45144),Q=a.Error,I=[].push,R=function(y,x){var Y=s(p,this)?this:w(p),v=arguments.length>2?arguments[2]:void 0;g&&(Y=g(new Q(void 0),o(Y))),u(Y,"message",e(x,"")),h&&u(Y,"stack",d(Y.stack,1)),E(Y,v);var S=[];return C(y,I,{that:S}),u(Y,"errors",S),Y};g?g(R,Q):f(R,Q);var p=R.prototype=w(Q.prototype,{constructor:r(1,R),message:r(1,""),name:r(1,"AggregateError")});B({global:!0},{AggregateError:R})},39081:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(47044),o=n(59113),g=n(24517),f=n(43162),w=n(45495),u=n(38639),r=n(45744),d=n(56280),E=n(38688),C=n(70091),e=E("isConcatSpreadable"),h=9007199254740991,Q="Maximum allowed index exceeded",I=a.TypeError,R=C>=51||!s(function(){var x=[];return x[e]=!1,x.concat()[0]!==x}),p=d("concat"),m=function(x){if(!g(x))return!1;var Y=x[e];return void 0!==Y?!!Y:o(x)};B({target:"Array",proto:!0,forced:!R||!p},{concat:function(Y){var F,$,gA,_,fA,v=f(this),S=r(v,0),z=0;for(F=-1,gA=arguments.length;Fh)throw I(Q);for($=0;$<_;$++,z++)$ in fA&&u(S,z,fA[$])}else{if(z>=h)throw I(Q);u(S,z++,fA)}return S.length=z,S}})},68626:function(b,A,n){var B=n(56475),a=n(92642),s=n(71156);B({target:"Array",proto:!0},{copyWithin:a}),s("copyWithin")},41584:function(b,A,n){var B=n(56475),a=n(72864),s=n(71156);B({target:"Array",proto:!0},{fill:a}),s("fill")},49063:function(b,A,n){"use strict";var B=n(56475),a=n(91102).filter;B({target:"Array",proto:!0,forced:!n(56280)("filter")},{filter:function(f){return a(this,f,arguments.length>1?arguments[1]:void 0)}})},11765:function(b,A,n){var B=n(56475),a=n(95717);B({target:"Array",stat:!0,forced:!n(46769)(function(g){Array.from(g)})},{from:a})},58028:function(b,A,n){"use strict";var B=n(56475),a=n(12636).includes,s=n(71156);B({target:"Array",proto:!0},{includes:function(g){return a(this,g,arguments.length>1?arguments[1]:void 0)}}),s("includes")},81755:function(b,A,n){"use strict";var B=n(98086),a=n(71156),s=n(15366),o=n(70172),g=n(97001),f="Array Iterator",w=o.set,u=o.getterFor(f);b.exports=g(Array,"Array",function(r,d){w(this,{type:f,target:B(r),index:0,kind:d})},function(){var r=u(this),d=r.target,E=r.kind,C=r.index++;return!d||C>=d.length?(r.target=void 0,{value:void 0,done:!0}):"keys"==E?{value:C,done:!1}:"values"==E?{value:d[C],done:!1}:{value:[C,d[C]],done:!1}},"values"),s.Arguments=s.Array,a("keys"),a("values"),a("entries")},94845:function(b,A,n){"use strict";var B=n(56475),a=n(38347),s=n(7514),o=n(98086),g=n(81007),f=a([].join),w=s!=Object,u=g("join",",");B({target:"Array",proto:!0,forced:w||!u},{join:function(d){return f(o(this),void 0===d?",":d)}})},80055:function(b,A,n){"use strict";var B=n(56475),a=n(91102).map;B({target:"Array",proto:!0,forced:!n(56280)("map")},{map:function(f){return a(this,f,arguments.length>1?arguments[1]:void 0)}})},20731:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(59113),o=n(20884),g=n(24517),f=n(74841),w=n(45495),u=n(98086),r=n(38639),d=n(38688),E=n(56280),C=n(73163),e=E("slice"),h=d("species"),Q=a.Array,I=Math.max;B({target:"Array",proto:!0,forced:!e},{slice:function(p,m){var S,z,F,y=u(this),x=w(y),Y=f(p,x),v=f(void 0===m?x:m,x);if(s(y)&&((o(S=y.constructor)&&(S===Q||s(S.prototype))||g(S)&&null===(S=S[h]))&&(S=void 0),S===Q||void 0===S))return C(y,Y,v);for(z=new(void 0===S?Q:S)(I(v-Y,0)),F=0;Y3)){if(E)return!0;if(e)return e<603;var S,z,F,$,v="";for(S=65;S<76;S++){switch(z=String.fromCharCode(S),S){case 66:case 69:case 70:case 72:F=3;break;case 68:case 71:F=4;break;default:F=2}for($=0;$<47;$++)h.push({k:z+$,v:F})}for(h.sort(function(gA,_){return _.v-gA.v}),$=0;$f(z)?1:-1}}(S)),gA=F.length,_=0;_9007199254740991)throw E("Maximum allowed length exceeded");for(z=w(m,S),F=0;Fy-S+v;F--)delete m[F-1]}else if(v>S)for(F=y-S;F>x;F--)gA=F+v-1,($=F+S-1)in m?m[gA]=m[$]:delete m[gA];for(F=0;F2)if(fA=I(fA),43===(iA=Y(fA,0))||45===iA){if(88===(wA=Y(fA,2))||120===wA)return NaN}else if(48===iA){switch(Y(fA,1)){case 66:case 98:IA=2,FA=49;break;case 79:case 111:IA=8,FA=55;break;default:return+fA}for(HA=(YA=x(fA,2)).length,J=0;JFA)return NaN;return parseInt(YA,IA)}return+fA};if(o(R,!p(" 0o1")||!p("0b1")||p("+0x1"))){for(var gA,z=function(fA){var iA=arguments.length<1?0:p(function(_){var fA=d(_,"number");return"bigint"==typeof fA?fA:S(fA)}(fA)),wA=this;return u(m,wA)&&E(function(){Q(wA)})?w(Object(iA),wA,z):iA},F=B?C(p):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,isFinite,isInteger,isNaN,isSafeInteger,parseFloat,parseInt,fromString,range".split(","),$=0;F.length>$;$++)f(p,gA=F[$])&&!f(z,gA)&&h(z,gA,e(p,gA));z.prototype=m,m.constructor=z,g(a,R,z)}},58549:function(b,A,n){n(56475)({target:"Number",stat:!0},{EPSILON:Math.pow(2,-52)})},70095:function(b,A,n){n(56475)({target:"Number",stat:!0},{isFinite:n(59805)})},2876:function(b,A,n){n(56475)({target:"Number",stat:!0},{isInteger:n(17506)})},10849:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(38347),o=n(26882),g=n(16679),f=n(34858),w=n(47044),u=a.RangeError,r=a.String,d=Math.floor,E=s(f),C=s("".slice),e=s(1..toFixed),h=function(y,x,Y){return 0===x?Y:x%2==1?h(y,x-1,Y*y):h(y*y,x/2,Y)},I=function(y,x,Y){for(var v=-1,S=Y;++v<6;)y[v]=(S+=x*y[v])%1e7,S=d(S/1e7)},R=function(y,x){for(var Y=6,v=0;--Y>=0;)y[Y]=d((v+=y[Y])/x),v=v%x*1e7},p=function(y){for(var x=6,Y="";--x>=0;)if(""!==Y||0===x||0!==y[x]){var v=r(y[x]);Y=""===Y?v:Y+E("0",7-v.length)+v}return Y};B({target:"Number",proto:!0,forced:w(function(){return"0.000"!==e(8e-5,3)||"1"!==e(.9,0)||"1.25"!==e(1.255,2)||"1000000000000000128"!==e(0xde0b6b3a7640080,0)})||!w(function(){e({})})},{toFixed:function(x){var $,gA,_,fA,Y=g(this),v=o(x),S=[0,0,0,0,0,0],z="",F="0";if(v<0||v>20)throw u("Incorrect fraction digits");if(Y!=Y)return"NaN";if(Y<=-1e21||Y>=1e21)return r(Y);if(Y<0&&(z="-",Y=-Y),Y>1e-21)if(gA=($=function(y){for(var x=0,Y=y;Y>=4096;)x+=12,Y/=4096;for(;Y>=2;)x+=1,Y/=2;return x}(Y*h(2,69,1))-69)<0?Y*h(2,-$,1):Y/h(2,$,1),gA*=4503599627370496,($=52-$)>0){for(I(S,0,gA),_=v;_>=7;)I(S,1e7,0),_-=7;for(I(S,h(10,_,1),0),_=$-1;_>=23;)R(S,8388608),_-=23;R(S,1<<_),I(S,1,1),R(S,2),F=p(S)}else I(S,0,gA),I(S,1<<-$,0),F=p(S)+E("0",v);return v>0?z+((fA=F.length)<=v?"0."+E("0",v-fA)+F:C(F,0,fA-v)+"."+C(F,fA-v)):z+F}})},18756:function(b,A,n){var B=n(56475),a=n(87146);B({target:"Object",stat:!0,forced:Object.assign!==a},{assign:a})},75174:function(b,A,n){var B=n(56475),a=n(55481),s=n(47044),o=n(24517),g=n(62148).onFreeze,f=Object.freeze;B({target:"Object",stat:!0,forced:s(function(){f(1)}),sham:!a},{freeze:function(r){return f&&o(r)?f(g(r)):r}})},57444:function(b,A,n){var B=n(56475),a=n(47044),s=n(98086),o=n(72062).f,g=n(15567),f=a(function(){o(1)});B({target:"Object",stat:!0,forced:!g||f,sham:!g},{getOwnPropertyDescriptor:function(r,d){return o(s(r),d)}})},28331:function(b,A,n){var B=n(56475),a=n(15567),s=n(21594),o=n(98086),g=n(72062),f=n(38639);B({target:"Object",stat:!0,sham:!a},{getOwnPropertyDescriptors:function(u){for(var h,Q,r=o(u),d=g.f,E=s(r),C={},e=0;E.length>e;)void 0!==(Q=d(r,h=E[e++]))&&f(C,h,Q);return C}})},71950:function(b,A,n){var B=n(56475),a=n(47044),s=n(43162),o=n(69548),g=n(68494);B({target:"Object",stat:!0,forced:a(function(){o(1)}),sham:!g},{getPrototypeOf:function(u){return o(s(u))}})},37309:function(b,A,n){var B=n(56475),a=n(43162),s=n(84675);B({target:"Object",stat:!0,forced:n(47044)(function(){s(1)})},{keys:function(w){return s(a(w))}})},14032:function(b,A,n){var B=n(24663),a=n(13711),s=n(52598);B||a(Object.prototype,"toString",s,{unsafe:!0})},59883:function(b,A,n){var B=n(56475),a=n(80754).values;B({target:"Object",stat:!0},{values:function(o){return a(o)}})},77074:function(b,A,n){"use strict";var B=n(56475),a=n(2834),s=n(32631),o=n(56614),g=n(61900),f=n(80383);B({target:"Promise",stat:!0},{allSettled:function(u){var r=this,d=o.f(r),E=d.resolve,C=d.reject,e=g(function(){var h=s(r.resolve),Q=[],I=0,R=1;f(u,function(p){var m=I++,y=!1;R++,a(h,r,p).then(function(x){y||(y=!0,Q[m]={status:"fulfilled",value:x},--R||E(Q))},function(x){y||(y=!0,Q[m]={status:"rejected",reason:x},--R||E(Q))})}),--R||E(Q)});return e.error&&C(e.value),d.promise}})},44455:function(b,A,n){"use strict";var B=n(56475),a=n(32631),s=n(38486),o=n(2834),g=n(56614),f=n(61900),w=n(80383),u="No one promise resolved";B({target:"Promise",stat:!0},{any:function(d){var E=this,C=s("AggregateError"),e=g.f(E),h=e.resolve,Q=e.reject,I=f(function(){var R=a(E.resolve),p=[],m=0,y=1,x=!1;w(d,function(Y){var v=m++,S=!1;y++,o(R,E,Y).then(function(z){S||x||(x=!0,h(z))},function(z){S||x||(S=!0,p[v]=z,--y||Q(new C(p,u)))})}),--y||Q(new C(p,u))});return I.error&&Q(I.value),e.promise}})},58605:function(b,A,n){"use strict";var B=n(56475),a=n(63432),s=n(5155),o=n(47044),g=n(38486),f=n(94578),w=n(27754),u=n(28617),r=n(13711);if(B({target:"Promise",proto:!0,real:!0,forced:!!s&&o(function(){s.prototype.finally.call({then:function(){}},function(){})})},{finally:function(C){var e=w(this,g("Promise")),h=f(C);return this.then(h?function(Q){return u(e,C()).then(function(){return Q})}:C,h?function(Q){return u(e,C()).then(function(){throw Q})}:C)}}),!a&&f(s)){var E=g("Promise").prototype.finally;s.prototype.finally!==E&&r(s.prototype,"finally",E,{unsafe:!0})}},68067:function(b,A,n){"use strict";var pA,JA,ft,wt,B=n(56475),a=n(63432),s=n(32010),o=n(38486),g=n(2834),f=n(5155),w=n(13711),u=n(15341),r=n(3840),d=n(15216),E=n(51334),C=n(32631),e=n(94578),h=n(24517),Q=n(2868),I=n(10447),R=n(80383),p=n(46769),m=n(27754),y=n(6616).set,x=n(59804),Y=n(28617),v=n(61144),S=n(56614),z=n(61900),F=n(70172),$=n(39599),gA=n(38688),_=n(3157),fA=n(95053),iA=n(70091),wA=gA("species"),IA="Promise",FA=F.get,YA=F.set,HA=F.getterFor(IA),J=f&&f.prototype,BA=f,aA=J,eA=s.TypeError,EA=s.document,xA=s.process,OA=S.f,W=OA,L=!!(EA&&EA.createEvent&&s.dispatchEvent),rA=e(s.PromiseRejectionEvent),AA="unhandledrejection",zA=!1,gt=$(IA,function(){var Z=I(BA),k=Z!==String(BA);if(!k&&66===iA||a&&!aA.finally)return!0;if(iA>=51&&/native code/.test(Z))return!1;var U=new BA(function(GA){GA(1)}),hA=function(GA){GA(function(){},function(){})};return(U.constructor={})[wA]=hA,!(zA=U.then(function(){})instanceof hA)||!k&&_&&!rA}),pt=gt||!p(function(Z){BA.all(Z).catch(function(){})}),Yt=function(Z){var k;return!(!h(Z)||!e(k=Z.then))&&k},VA=function(Z,k){if(!Z.notified){Z.notified=!0;var U=Z.reactions;x(function(){for(var hA=Z.value,q=1==Z.state,GA=0;U.length>GA;){var jA,ot,Tt,At=U[GA++],O=q?At.ok:At.fail,qA=At.resolve,nt=At.reject,MA=At.domain;try{O?(q||(2===Z.rejection&&vt(Z),Z.rejection=1),!0===O?jA=hA:(MA&&MA.enter(),jA=O(hA),MA&&(MA.exit(),Tt=!0)),jA===At.promise?nt(eA("Promise-chain cycle")):(ot=Yt(jA))?g(ot,jA,qA,nt):qA(jA)):nt(hA)}catch(yt){MA&&!Tt&&MA.exit(),nt(yt)}}Z.reactions=[],Z.notified=!1,k&&!Z.rejection&&Qt(Z)})}},_A=function(Z,k,U){var hA,q;L?((hA=EA.createEvent("Event")).promise=k,hA.reason=U,hA.initEvent(Z,!1,!0),s.dispatchEvent(hA)):hA={promise:k,reason:U},!rA&&(q=s["on"+Z])?q(hA):Z===AA&&v("Unhandled promise rejection",U)},Qt=function(Z){g(y,s,function(){var q,k=Z.facade,U=Z.value;if(ht(Z)&&(q=z(function(){fA?xA.emit("unhandledRejection",U,k):_A(AA,k,U)}),Z.rejection=fA||ht(Z)?2:1,q.error))throw q.value})},ht=function(Z){return 1!==Z.rejection&&!Z.parent},vt=function(Z){g(y,s,function(){var k=Z.facade;fA?xA.emit("rejectionHandled",k):_A("rejectionhandled",k,Z.value)})},Nt=function(Z,k,U){return function(hA){Z(k,hA,U)}},vA=function(Z,k,U){Z.done||(Z.done=!0,U&&(Z=U),Z.value=k,Z.state=2,VA(Z,!0))},Bt=function(Z,k,U){if(!Z.done){Z.done=!0,U&&(Z=U);try{if(Z.facade===k)throw eA("Promise can't be resolved itself");var hA=Yt(k);hA?x(function(){var q={done:!1};try{g(hA,k,Nt(Bt,q,Z),Nt(vA,q,Z))}catch(GA){vA(q,GA,Z)}}):(Z.value=k,Z.state=1,VA(Z,!1))}catch(q){vA({done:!1},q,Z)}}};if(gt&&(BA=function(k){Q(this,aA),C(k),g(pA,this);var U=FA(this);try{k(Nt(Bt,U),Nt(vA,U))}catch(hA){vA(U,hA)}},(pA=function(k){YA(this,{type:IA,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=u(aA=BA.prototype,{then:function(k,U){var hA=HA(this),q=hA.reactions,GA=OA(m(this,BA));return GA.ok=!e(k)||k,GA.fail=e(U)&&U,GA.domain=fA?xA.domain:void 0,hA.parent=!0,q[q.length]=GA,0!=hA.state&&VA(hA,!1),GA.promise},catch:function(Z){return this.then(void 0,Z)}}),JA=function(){var Z=new pA,k=FA(Z);this.promise=Z,this.resolve=Nt(Bt,k),this.reject=Nt(vA,k)},S.f=OA=function(Z){return Z===BA||Z===ft?new JA(Z):W(Z)},!a&&e(f)&&J!==Object.prototype)){wt=J.then,zA||(w(J,"then",function(k,U){var hA=this;return new BA(function(q,GA){g(wt,hA,q,GA)}).then(k,U)},{unsafe:!0}),w(J,"catch",aA.catch,{unsafe:!0}));try{delete J.constructor}catch{}r&&r(J,aA)}B({global:!0,wrap:!0,forced:gt},{Promise:BA}),d(BA,IA,!1,!0),E(IA),ft=o(IA),B({target:IA,stat:!0,forced:gt},{reject:function(k){var U=OA(this);return g(U.reject,void 0,k),U.promise}}),B({target:IA,stat:!0,forced:a||gt},{resolve:function(k){return Y(a&&this===ft?BA:this,k)}}),B({target:IA,stat:!0,forced:pt},{all:function(k){var U=this,hA=OA(U),q=hA.resolve,GA=hA.reject,At=z(function(){var O=C(U.resolve),qA=[],nt=0,MA=1;R(k,function(jA){var ot=nt++,Tt=!1;MA++,g(O,U,jA).then(function(yt){Tt||(Tt=!0,qA[ot]=yt,--MA||q(qA))},GA)}),--MA||q(qA)});return At.error&&GA(At.value),hA.promise},race:function(k){var U=this,hA=OA(U),q=hA.reject,GA=z(function(){var At=C(U.resolve);R(k,function(O){g(At,U,O).then(hA.resolve,q)})});return GA.error&&q(GA.value),hA.promise}})},73228:function(b,A,n){var B=n(56475),a=n(38486),s=n(58448),o=n(5481),g=n(69075),f=n(34984),w=n(24517),u=n(10819),r=n(47044),d=a("Reflect","construct"),E=Object.prototype,C=[].push,e=r(function(){function I(){}return!(d(function(){},[],I)instanceof I)}),h=!r(function(){d(function(){})}),Q=e||h;B({target:"Reflect",stat:!0,forced:Q,sham:Q},{construct:function(R,p){g(R),f(p);var m=arguments.length<3?R:g(arguments[2]);if(h&&!e)return d(R,p,m);if(R==m){switch(p.length){case 0:return new R;case 1:return new R(p[0]);case 2:return new R(p[0],p[1]);case 3:return new R(p[0],p[1],p[2]);case 4:return new R(p[0],p[1],p[2],p[3])}var y=[null];return s(C,y,p),new(s(o,R,y))}var x=m.prototype,Y=u(w(x)?x:E),v=s(R,Y,p);return w(v)?v:Y}})},61726:function(b,A,n){"use strict";var B=n(56475),a=n(49820);B({target:"RegExp",proto:!0,forced:/./.exec!==a},{exec:a})},74516:function(b,A,n){var B=n(15567),a=n(95892),s=n(21182),o=n(47044),g=RegExp.prototype;B&&o(function(){return"sy"!==Object.getOwnPropertyDescriptor(g,"flags").get.call({dotAll:!0,sticky:!0})})&&a.f(g,"flags",{configurable:!0,get:s})},57114:function(b,A,n){"use strict";var B=n(38347),a=n(7081).PROPER,s=n(13711),o=n(34984),g=n(70176),f=n(25096),w=n(47044),u=n(21182),r="toString",d=RegExp.prototype,E=d[r],C=B(u);(w(function(){return"/a/b"!=E.call({source:"a",flags:"b"})})||a&&E.name!=r)&&s(RegExp.prototype,r,function(){var I=o(this),R=f(I.source),p=I.flags;return"/"+R+"/"+f(void 0===p&&g(d,I)&&!("flags"in d)?C(I):p)},{unsafe:!0})},76014:function(b,A,n){"use strict";n(36673)("Set",function(s){return function(){return s(this,arguments.length?arguments[0]:void 0)}},n(9649))},26663:function(b,A,n){"use strict";var B=n(56475),a=n(69510).codeAt;B({target:"String",proto:!0},{codePointAt:function(o){return a(this,o)}})},65578:function(b,A,n){var B=n(56475),a=n(32010),s=n(38347),o=n(74841),g=a.RangeError,f=String.fromCharCode,w=String.fromCodePoint,u=s([].join);B({target:"String",stat:!0,forced:!!w&&1!=w.length},{fromCodePoint:function(E){for(var Q,C=[],e=arguments.length,h=0;e>h;){if(Q=+arguments[h++],o(Q,1114111)!==Q)throw g(Q+" is not a valid code point");C[h]=Q<65536?f(Q):f(55296+((Q-=65536)>>10),Q%1024+56320)}return u(C,"")}})},47458:function(b,A,n){"use strict";var B=n(56475),a=n(38347),s=n(93666),o=n(83943),g=n(25096),f=n(91151),w=a("".indexOf);B({target:"String",proto:!0,forced:!f("includes")},{includes:function(r){return!!~w(g(o(this)),g(s(r)),arguments.length>1?arguments[1]:void 0)}})},62046:function(b,A,n){"use strict";var B=n(56475),a=n(91159);B({target:"String",proto:!0,forced:n(7452)("italics")},{italics:function(){return a(this,"i","","")}})},58281:function(b,A,n){"use strict";var B=n(69510).charAt,a=n(25096),s=n(70172),o=n(97001),g="String Iterator",f=s.set,w=s.getterFor(g);o(String,"String",function(u){f(this,{type:g,string:a(u),index:0})},function(){var C,r=w(this),d=r.string,E=r.index;return E>=d.length?{value:void 0,done:!0}:(C=B(d,E),r.index+=C.length,{value:C,done:!1})})},47259:function(b,A,n){"use strict";var B=n(56475),a=n(91159);B({target:"String",proto:!0,forced:n(7452)("link")},{link:function(g){return a(this,"a","href",g)}})},71768:function(b,A,n){"use strict";var B=n(56475),a=n(32010),s=n(2834),o=n(38347),g=n(13945),f=n(83943),w=n(23417),u=n(25096),r=n(34984),d=n(93975),E=n(70176),C=n(28831),e=n(21182),h=n(51839),Q=n(13711),I=n(47044),R=n(38688),p=n(27754),m=n(36352),y=n(66723),x=n(70172),Y=n(63432),v=R("matchAll"),S="RegExp String",z=S+" Iterator",F=x.set,$=x.getterFor(z),gA=RegExp.prototype,_=a.TypeError,fA=o(e),iA=o("".indexOf),wA=o("".matchAll),IA=!!wA&&!I(function(){wA("a",/./)}),FA=g(function(J,BA,aA,eA){F(this,{type:z,regexp:J,string:BA,global:aA,unicode:eA,done:!1})},S,function(){var J=$(this);if(J.done)return{value:void 0,done:!0};var BA=J.regexp,aA=J.string,eA=y(BA,aA);return null===eA?{value:void 0,done:J.done=!0}:J.global?(""===u(eA[0])&&(BA.lastIndex=m(aA,w(BA.lastIndex),J.unicode)),{value:eA,done:!1}):(J.done=!0,{value:eA,done:!1})}),YA=function(HA){var aA,eA,EA,xA,OA,W,J=r(this),BA=u(HA);return aA=p(J,RegExp),void 0===(eA=J.flags)&&E(gA,J)&&!("flags"in gA)&&(eA=fA(J)),EA=void 0===eA?"":u(eA),xA=new aA(aA===RegExp?J.source:J,EA),OA=!!~iA(EA,"g"),W=!!~iA(EA,"u"),xA.lastIndex=w(J.lastIndex),new FA(xA,BA,OA,W)};B({target:"String",proto:!0,forced:IA},{matchAll:function(J){var aA,eA,EA,xA,BA=f(this);if(null!=J){if(C(J)&&(aA=u(f("flags"in gA?J.flags:fA(J))),!~iA(aA,"g")))throw _("`.matchAll` does not allow non-global regexes");if(IA)return wA(BA,J);if(void 0===(EA=h(J,v))&&Y&&"RegExp"==d(J)&&(EA=YA),EA)return s(EA,J,BA)}else if(IA)return wA(BA,J);return eA=u(BA),xA=new RegExp(J,"g"),Y?s(YA,xA,eA):xA[v](eA)}}),Y||v in gA||Q(gA,v,YA)},6422:function(b,A,n){"use strict";var B=n(2834),a=n(11813),s=n(34984),o=n(23417),g=n(25096),f=n(83943),w=n(51839),u=n(36352),r=n(66723);a("match",function(d,E,C){return[function(h){var Q=f(this),I=null==h?void 0:w(h,d);return I?B(I,h,Q):new RegExp(h)[d](g(Q))},function(e){var h=s(this),Q=g(e),I=C(E,h,Q);if(I.done)return I.value;if(!h.global)return r(h,Q);var R=h.unicode;h.lastIndex=0;for(var y,p=[],m=0;null!==(y=r(h,Q));){var x=g(y[0]);p[m]=x,""===x&&(h.lastIndex=u(Q,o(h.lastIndex),R)),m++}return 0===m?null:p}]})},28264:function(b,A,n){n(56475)({target:"String",proto:!0},{repeat:n(34858)})},46467:function(b,A,n){"use strict";var B=n(58448),a=n(2834),s=n(38347),o=n(11813),g=n(47044),f=n(34984),w=n(94578),u=n(26882),r=n(23417),d=n(25096),E=n(83943),C=n(36352),e=n(51839),h=n(29519),Q=n(66723),R=n(38688)("replace"),p=Math.max,m=Math.min,y=s([].concat),x=s([].push),Y=s("".indexOf),v=s("".slice),S=function(gA){return void 0===gA?gA:String(gA)},z="$0"==="a".replace(/./,"$0"),F=!!/./[R]&&""===/./[R]("a","$0");o("replace",function(gA,_,fA){var iA=F?"$":"$0";return[function(IA,FA){var YA=E(this),HA=null==IA?void 0:e(IA,R);return HA?a(HA,IA,YA,FA):a(_,d(YA),IA,FA)},function(wA,IA){var FA=f(this),YA=d(wA);if("string"==typeof IA&&-1===Y(IA,iA)&&-1===Y(IA,"$<")){var HA=fA(_,FA,YA,IA);if(HA.done)return HA.value}var J=w(IA);J||(IA=d(IA));var BA=FA.global;if(BA){var aA=FA.unicode;FA.lastIndex=0}for(var eA=[];;){var EA=Q(FA,YA);if(null===EA||(x(eA,EA),!BA))break;""===d(EA[0])&&(FA.lastIndex=C(YA,r(FA.lastIndex),aA))}for(var OA="",W=0,L=0;L=W&&(OA+=v(YA,W,AA)+DA,W=AA+rA.length)}return OA+v(YA,W)}]},!!g(function(){var gA=/./;return gA.exec=function(){var _=[];return _.groups={a:"7"},_},"7"!=="".replace(gA,"$")})||!z||F)},7851:function(b,A,n){"use strict";var B=n(58448),a=n(2834),s=n(38347),o=n(11813),g=n(28831),f=n(34984),w=n(83943),u=n(27754),r=n(36352),d=n(23417),E=n(25096),C=n(51839),e=n(73163),h=n(66723),Q=n(49820),I=n(74846),R=n(47044),p=I.UNSUPPORTED_Y,m=4294967295,y=Math.min,x=[].push,Y=s(/./.exec),v=s(x),S=s("".slice),z=!R(function(){var F=/(?:)/,$=F.exec;F.exec=function(){return $.apply(this,arguments)};var gA="ab".split(F);return 2!==gA.length||"a"!==gA[0]||"b"!==gA[1]});o("split",function(F,$,gA){var _;return _="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(fA,iA){var wA=E(w(this)),IA=void 0===iA?m:iA>>>0;if(0===IA)return[];if(void 0===fA)return[wA];if(!g(fA))return a($,wA,fA,IA);for(var BA,aA,eA,FA=[],HA=0,J=new RegExp(fA.source,(fA.ignoreCase?"i":"")+(fA.multiline?"m":"")+(fA.unicode?"u":"")+(fA.sticky?"y":"")+"g");(BA=a(Q,J,wA))&&!((aA=J.lastIndex)>HA&&(v(FA,S(wA,HA,BA.index)),BA.length>1&&BA.index=IA));)J.lastIndex===BA.index&&J.lastIndex++;return HA===wA.length?(eA||!Y(J,""))&&v(FA,""):v(FA,S(wA,HA)),FA.length>IA?e(FA,0,IA):FA}:"0".split(void 0,0).length?function(fA,iA){return void 0===fA&&0===iA?[]:a($,this,fA,iA)}:$,[function(iA,wA){var IA=w(this),FA=null==iA?void 0:C(iA,F);return FA?a(FA,iA,IA,wA):a(_,E(IA),iA,wA)},function(fA,iA){var wA=f(this),IA=E(fA),FA=gA(_,wA,IA,iA,_!==$);if(FA.done)return FA.value;var YA=u(wA,RegExp),HA=wA.unicode,BA=new YA(p?"^(?:"+wA.source+")":wA,(wA.ignoreCase?"i":"")+(wA.multiline?"m":"")+(wA.unicode?"u":"")+(p?"g":"y")),aA=void 0===iA?m:iA>>>0;if(0===aA)return[];if(0===IA.length)return null===h(BA,IA)?[IA]:[];for(var eA=0,EA=0,xA=[];EA2?arguments[2]:void 0)})},29883:function(b,A,n){"use strict";var B=n(36597),a=n(91102).every,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("every",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},35471:function(b,A,n){"use strict";var B=n(36597),a=n(2834),s=n(72864),o=B.aTypedArray;(0,B.exportTypedArrayMethod)("fill",function(w){var u=arguments.length;return a(s,o(this),w,u>1?arguments[1]:void 0,u>2?arguments[2]:void 0)})},21012:function(b,A,n){"use strict";var B=n(36597),a=n(91102).filter,s=n(59610),o=B.aTypedArray;(0,B.exportTypedArrayMethod)("filter",function(w){var u=a(o(this),w,arguments.length>1?arguments[1]:void 0);return s(this,u)})},97464:function(b,A,n){"use strict";var B=n(36597),a=n(91102).findIndex,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("findIndex",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},88997:function(b,A,n){"use strict";var B=n(36597),a=n(91102).find,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("find",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},3131:function(b,A,n){n(98828)("Float32",function(a){return function(o,g,f){return a(this,o,g,f)}})},90868:function(b,A,n){n(98828)("Float64",function(a){return function(o,g,f){return a(this,o,g,f)}})},2857:function(b,A,n){"use strict";var B=n(36597),a=n(91102).forEach,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("forEach",function(f){a(s(this),f,arguments.length>1?arguments[1]:void 0)})},83326:function(b,A,n){"use strict";var B=n(28834);(0,n(36597).exportTypedArrayStaticMethod)("from",n(83590),B)},94715:function(b,A,n){"use strict";var B=n(36597),a=n(12636).includes,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("includes",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},13624:function(b,A,n){"use strict";var B=n(36597),a=n(12636).indexOf,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("indexOf",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},75626:function(b,A,n){n(98828)("Int16",function(a){return function(o,g,f){return a(this,o,g,f)}})},95756:function(b,A,n){n(98828)("Int32",function(a){return function(o,g,f){return a(this,o,g,f)}})},65553:function(b,A,n){n(98828)("Int8",function(a){return function(o,g,f){return a(this,o,g,f)}})},91132:function(b,A,n){"use strict";var B=n(32010),a=n(38347),s=n(7081).PROPER,o=n(36597),g=n(81755),w=n(38688)("iterator"),u=B.Uint8Array,r=a(g.values),d=a(g.keys),E=a(g.entries),C=o.aTypedArray,e=o.exportTypedArrayMethod,h=u&&u.prototype[w],Q=!!h&&"values"===h.name,I=function(){return r(C(this))};e("entries",function(){return E(C(this))}),e("keys",function(){return d(C(this))}),e("values",I,s&&!Q),e(w,I,s&&!Q)},62514:function(b,A,n){"use strict";var B=n(36597),a=n(38347),s=B.aTypedArray,o=B.exportTypedArrayMethod,g=a([].join);o("join",function(w){return g(s(this),w)})},24597:function(b,A,n){"use strict";var B=n(36597),a=n(58448),s=n(84320),o=B.aTypedArray;(0,B.exportTypedArrayMethod)("lastIndexOf",function(w){var u=arguments.length;return a(s,o(this),u>1?[w,arguments[1]]:[w])})},88042:function(b,A,n){"use strict";var B=n(36597),a=n(91102).map,s=n(34815),o=B.aTypedArray;(0,B.exportTypedArrayMethod)("map",function(w){return a(o(this),w,arguments.length>1?arguments[1]:void 0,function(u,r){return new(s(u))(r)})})},92451:function(b,A,n){"use strict";var B=n(36597),a=n(32843).right,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("reduceRight",function(f){var w=arguments.length;return a(s(this),f,w,w>1?arguments[1]:void 0)})},4660:function(b,A,n){"use strict";var B=n(36597),a=n(32843).left,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("reduce",function(f){var w=arguments.length;return a(s(this),f,w,w>1?arguments[1]:void 0)})},44206:function(b,A,n){"use strict";var B=n(36597),a=B.aTypedArray,o=Math.floor;(0,B.exportTypedArrayMethod)("reverse",function(){for(var d,f=this,w=a(f).length,u=o(w/2),r=0;r1?arguments[1]:void 0,1),h=this.length,Q=g(C),I=s(Q),R=0;if(I+e>h)throw w("Wrong length");for(;Re;)Q[e]=E[e++];return Q},s(function(){new Int8Array(1).slice()}))},3858:function(b,A,n){"use strict";var B=n(36597),a=n(91102).some,s=B.aTypedArray;(0,B.exportTypedArrayMethod)("some",function(f){return a(s(this),f,arguments.length>1?arguments[1]:void 0)})},84538:function(b,A,n){"use strict";var B=n(32010),a=n(38347),s=n(47044),o=n(32631),g=n(43977),f=n(36597),w=n(3809),u=n(21983),r=n(70091),d=n(41731),E=B.Array,C=f.aTypedArray,e=f.exportTypedArrayMethod,h=B.Uint16Array,Q=h&&a(h.prototype.sort),I=!(!Q||s(function(){Q(new h(2),null)})&&s(function(){Q(new h(2),{})})),R=!!Q&&!s(function(){if(r)return r<74;if(w)return w<67;if(u)return!0;if(d)return d<602;var x,Y,m=new h(516),y=E(516);for(x=0;x<516;x++)Y=x%4,m[x]=515-x,y[x]=x-2*Y+3;for(Q(m,function(v,S){return(v/4|0)-(S/4|0)}),x=0;x<516;x++)if(m[x]!==y[x])return!0});e("sort",function(y){return void 0!==y&&o(y),R?Q(this,y):g(C(this),(m=y,function(y,x){return void 0!==m?+m(y,x)||0:x!=x?-1:y!=y?1:0===y&&0===x?1/y>0&&1/x<0?1:-1:y>x}));var m},!R||I)},64793:function(b,A,n){"use strict";var B=n(36597),a=n(23417),s=n(74841),o=n(34815),g=B.aTypedArray;(0,B.exportTypedArrayMethod)("subarray",function(u,r){var d=g(this),E=d.length,C=s(u,E);return new(o(d))(d.buffer,d.byteOffset+C*d.BYTES_PER_ELEMENT,a((void 0===r?E:s(r,E))-C))})},74202:function(b,A,n){"use strict";var B=n(32010),a=n(58448),s=n(36597),o=n(47044),g=n(73163),f=B.Int8Array,w=s.aTypedArray,u=s.exportTypedArrayMethod,r=[].toLocaleString,d=!!f&&o(function(){r.call(new f(1))});u("toLocaleString",function(){return a(r,d?g(w(this)):w(this),g(arguments))},o(function(){return[1,2].toLocaleString()!=new f([1,2]).toLocaleString()})||!o(function(){f.prototype.toLocaleString.call([1,2])}))},52529:function(b,A,n){"use strict";var B=n(36597).exportTypedArrayMethod,a=n(47044),s=n(32010),o=n(38347),g=s.Uint8Array,f=g&&g.prototype||{},w=[].toString,u=o([].join);a(function(){w.call({})})&&(w=function(){return u(this)}),B("toString",w,f.toString!=w)},47969:function(b,A,n){n(98828)("Uint16",function(a){return function(o,g,f){return a(this,o,g,f)}})},59735:function(b,A,n){n(98828)("Uint32",function(a){return function(o,g,f){return a(this,o,g,f)}})},56912:function(b,A,n){n(98828)("Uint8",function(a){return function(o,g,f){return a(this,o,g,f)}})},58099:function(b,A,n){n(98828)("Uint8",function(a){return function(o,g,f){return a(this,o,g,f)}},!0)},84151:function(b,A,n){n(94910)},49109:function(b,A,n){n(64384)},98443:function(b,A,n){n(77074)},67858:function(b,A,n){n(44455)},49261:function(b,A,n){"use strict";var B=n(56475),a=n(56614),s=n(61900);B({target:"Promise",stat:!0},{try:function(o){var g=a.f(this),f=s(o);return(f.error?g.reject:g.resolve)(f.value),g.promise}})},1083:function(b,A,n){n(71768)},42437:function(b,A,n){var B=n(32010),a=n(23327),s=n(67797),o=n(82938),g=n(48914),f=function(u){if(u&&u.forEach!==o)try{g(u,"forEach",o)}catch{u.forEach=o}};for(var w in a)a[w]&&f(B[w]&&B[w].prototype);f(s)},94712:function(b,A,n){var B=n(32010),a=n(23327),s=n(67797),o=n(81755),g=n(48914),f=n(38688),w=f("iterator"),u=f("toStringTag"),r=o.values,d=function(C,e){if(C){if(C[w]!==r)try{g(C,w,r)}catch{C[w]=r}if(C[u]||g(C,u,e),a[e])for(var h in o)if(C[h]!==o[h])try{g(C,h,o[h])}catch{C[h]=o[h]}}};for(var E in a)d(B[E]&&B[E].prototype,E);d(s,"DOMTokenList")},41863:function(b,A,n){"use strict";var B=n(56475),a=n(2834);B({target:"URL",proto:!0,enumerable:!0},{toJSON:function(){return a(URL.prototype.toString,this)}})},90780:function(b,A,n){var B=n(42075);n(94712),b.exports=B},45728:function(b,A,n){var B=n(35643),a=n(67906),s=n(98527),o=n(71689),g=n(64607),f=n(71230),w=Date.prototype.getTime;function u(C,e,h){var Q=h||{};return!!(Q.strict?s(C,e):C===e)||(!C||!e||"object"!=typeof C&&"object"!=typeof e?Q.strict?s(C,e):C==e:function E(C,e,h){var Q,I;if(typeof C!=typeof e||r(C)||r(e)||C.prototype!==e.prototype||a(C)!==a(e))return!1;var R=o(C),p=o(e);if(R!==p)return!1;if(R||p)return C.source===e.source&&g(C)===g(e);if(f(C)&&f(e))return w.call(C)===w.call(e);var m=d(C),y=d(e);if(m!==y)return!1;if(m||y){if(C.length!==e.length)return!1;for(Q=0;Q=0;Q--)if(x[Q]!=Y[Q])return!1;for(Q=x.length-1;Q>=0;Q--)if(!u(C[I=x[Q]],e[I],h))return!1;return!0}(C,e,Q))}function r(C){return null==C}function d(C){return!(!C||"object"!=typeof C||"number"!=typeof C.length||"function"!=typeof C.copy||"function"!=typeof C.slice||C.length>0&&"number"!=typeof C[0])}b.exports=u},89295:function(b,A,n){"use strict";var B=n(56649),a=n(57770),s=n(96785),o=n(68109);b.exports=function(f,w,u){if(!f||"object"!=typeof f&&"function"!=typeof f)throw new s("`obj` must be an object or a function`");if("string"!=typeof w&&"symbol"!=typeof w)throw new s("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new s("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new s("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new s("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new s("`loose`, if provided, must be a boolean");var r=arguments.length>3?arguments[3]:null,d=arguments.length>4?arguments[4]:null,E=arguments.length>5?arguments[5]:null,C=arguments.length>6&&arguments[6],e=!!o&&o(f,w);if(B)B(f,w,{configurable:null===E&&e?e.configurable:!E,enumerable:null===r&&e?e.enumerable:!r,value:u,writable:null===d&&e?e.writable:!d});else{if(!C&&(r||d||E))throw new a("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");f[w]=u}}},77802:function(b,A,n){"use strict";var B=n(35643),a="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),s=Object.prototype.toString,o=Array.prototype.concat,g=n(89295),w=n(18890)(),u=function(d,E,C,e){if(E in d)if(!0===e){if(d[E]===C)return}else if(!function(d){return"function"==typeof d&&"[object Function]"===s.call(d)}(e)||!e())return;w?g(d,E,C,!0):g(d,E,C)},r=function(d,E){var C=arguments.length>2?arguments[2]:{},e=B(E);a&&(e=o.call(e,Object.getOwnPropertySymbols(E)));for(var h=0;h0&&z.length>v&&!z.warned){z.warned=!0;var F=new Error("Possible EventEmitter memory leak detected. "+z.length+" "+String(y)+" listeners added. Use emitter.setMaxListeners() to increase limit");F.name="MaxListenersExceededWarning",F.emitter=m,F.type=y,F.count=z.length,function a(m){console&&console.warn&&console.warn(m)}(F)}return m}function r(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function d(m,y,x){var Y={fired:!1,wrapFn:void 0,target:m,type:y,listener:x},v=r.bind(Y);return v.listener=x,Y.wrapFn=v,v}function E(m,y,x){var Y=m._events;if(void 0===Y)return[];var v=Y[y];return void 0===v?[]:"function"==typeof v?x?[v.listener||v]:[v]:x?function Q(m){for(var y=new Array(m.length),x=0;x0&&(z=x[0]),z instanceof Error)throw z;var F=new Error("Unhandled error."+(z?" ("+z.message+")":""));throw F.context=z,F}var $=S[y];if(void 0===$)return!1;if("function"==typeof $)n($,this,x);else{var gA=$.length,_=e($,gA);for(Y=0;Y=0;z--)if(Y[z]===x||Y[z].listener===x){F=Y[z].listener,S=z;break}if(S<0)return this;0===S?Y.shift():function h(m,y){for(;y+1=0;v--)this.removeListener(y,x[v]);return this},o.prototype.listeners=function(y){return E(this,y,!0)},o.prototype.rawListeners=function(y){return E(this,y,!1)},o.listenerCount=function(m,y){return"function"==typeof m.listenerCount?m.listenerCount(y):C.call(m,y)},o.prototype.listenerCount=C,o.prototype.eventNames=function(){return this._eventsCount>0?B(this._events):[]}},72022:function(b,A,n){"use strict";b.exports=function(){if("object"==typeof globalThis)return globalThis;var B;try{B=this||new Function("return this")()}catch{if("object"==typeof window)return window;if("object"==typeof self)return self;if(typeof n.g<"u")return n.g}return B}()},68404:function(b,A,n){"use strict";var B=n(3746),a=Object.prototype.toString,s=Object.prototype.hasOwnProperty;b.exports=function(r,d,E){if(!B(d))throw new TypeError("iterator must be a function");var C;arguments.length>=3&&(C=E),"[object Array]"===a.call(r)?function(r,d,E){for(var C=0,e=r.length;C"u"||!I?B:I(Uint8Array),m={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?B:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?B:ArrayBuffer,"%ArrayIteratorPrototype%":h&&I?I([][Symbol.iterator]()):B,"%AsyncFromSyncIteratorPrototype%":B,"%AsyncFunction%":R,"%AsyncGenerator%":R,"%AsyncGeneratorFunction%":R,"%AsyncIteratorPrototype%":R,"%Atomics%":typeof Atomics>"u"?B:Atomics,"%BigInt%":typeof BigInt>"u"?B:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?B:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?B:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?B:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":a,"%eval%":eval,"%EvalError%":s,"%Float32Array%":typeof Float32Array>"u"?B:Float32Array,"%Float64Array%":typeof Float64Array>"u"?B:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?B:FinalizationRegistry,"%Function%":r,"%GeneratorFunction%":R,"%Int8Array%":typeof Int8Array>"u"?B:Int8Array,"%Int16Array%":typeof Int16Array>"u"?B:Int16Array,"%Int32Array%":typeof Int32Array>"u"?B:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":h&&I?I(I([][Symbol.iterator]())):B,"%JSON%":"object"==typeof JSON?JSON:B,"%Map%":typeof Map>"u"?B:Map,"%MapIteratorPrototype%":typeof Map>"u"||!h||!I?B:I((new Map)[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?B:Promise,"%Proxy%":typeof Proxy>"u"?B:Proxy,"%RangeError%":o,"%ReferenceError%":g,"%Reflect%":typeof Reflect>"u"?B:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?B:Set,"%SetIteratorPrototype%":typeof Set>"u"||!h||!I?B:I((new Set)[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?B:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":h&&I?I(""[Symbol.iterator]()):B,"%Symbol%":h?Symbol:B,"%SyntaxError%":f,"%ThrowTypeError%":e,"%TypedArray%":p,"%TypeError%":w,"%Uint8Array%":typeof Uint8Array>"u"?B:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?B:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?B:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?B:Uint32Array,"%URIError%":u,"%WeakMap%":typeof WeakMap>"u"?B:WeakMap,"%WeakRef%":typeof WeakRef>"u"?B:WeakRef,"%WeakSet%":typeof WeakSet>"u"?B:WeakSet};if(I)try{null.error}catch(FA){var y=I(I(FA));m["%Error.prototype%"]=y}var x=function FA(YA){var HA;if("%AsyncFunction%"===YA)HA=d("async function () {}");else if("%GeneratorFunction%"===YA)HA=d("function* () {}");else if("%AsyncGeneratorFunction%"===YA)HA=d("async function* () {}");else if("%AsyncGenerator%"===YA){var J=FA("%AsyncGeneratorFunction%");J&&(HA=J.prototype)}else if("%AsyncIteratorPrototype%"===YA){var BA=FA("%AsyncGenerator%");BA&&I&&(HA=I(BA.prototype))}return m[YA]=HA,HA},Y={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},v=n(5049),S=n(55215),z=v.call(Function.call,Array.prototype.concat),F=v.call(Function.apply,Array.prototype.splice),$=v.call(Function.call,String.prototype.replace),gA=v.call(Function.call,String.prototype.slice),_=v.call(Function.call,RegExp.prototype.exec),fA=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,iA=/\\(\\)?/g,IA=function(YA,HA){var BA,J=YA;if(S(Y,J)&&(J="%"+(BA=Y[J])[0]+"%"),S(m,J)){var aA=m[J];if(aA===R&&(aA=x(J)),typeof aA>"u"&&!HA)throw new w("intrinsic "+YA+" exists, but is not available. Please file an issue!");return{alias:BA,name:J,value:aA}}throw new f("intrinsic "+YA+" does not exist!")};b.exports=function(YA,HA){if("string"!=typeof YA||0===YA.length)throw new w("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof HA)throw new w('"allowMissing" argument must be a boolean');if(null===_(/^%?[^%]*%?$/,YA))throw new f("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var J=function(YA){var HA=gA(YA,0,1),J=gA(YA,-1);if("%"===HA&&"%"!==J)throw new f("invalid intrinsic syntax, expected closing `%`");if("%"===J&&"%"!==HA)throw new f("invalid intrinsic syntax, expected opening `%`");var BA=[];return $(YA,fA,function(aA,eA,EA,xA){BA[BA.length]=EA?$(xA,iA,"$1"):eA||aA}),BA}(YA),BA=J.length>0?J[0]:"",aA=IA("%"+BA+"%",HA),eA=aA.name,EA=aA.value,xA=!1,OA=aA.alias;OA&&(BA=OA[0],F(J,z([0,1],OA)));for(var W=1,L=!0;W=J.length){var yA=E(EA,rA);EA=(L=!!yA)&&"get"in yA&&!("originalValue"in yA.get)?yA.get:EA[rA]}else L=S(EA,rA),EA=EA[rA];L&&!xA&&(m[eA]=EA)}}return EA}},68109:function(b,A,n){"use strict";var a=n(28651)("%Object.getOwnPropertyDescriptor%",!0);if(a)try{a([],"length")}catch{a=null}b.exports=a},18890:function(b,A,n){"use strict";var B=n(56649),a=function(){return!!B};a.hasArrayLengthDefineBug=function(){if(!B)return null;try{return 1!==B([],"length",{value:1}).length}catch{return!0}},b.exports=a},85726:function(b){"use strict";var A={__proto__:null,foo:{}},n=Object;b.exports=function(){return{__proto__:A}.foo===A.foo&&!(A instanceof n)}},73257:function(b,A,n){"use strict";var B=typeof Symbol<"u"&&Symbol,a=n(12843);b.exports=function(){return"function"==typeof B&&"function"==typeof Symbol&&"symbol"==typeof B("foo")&&"symbol"==typeof Symbol("bar")&&a()}},12843:function(b){"use strict";b.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var n={},B=Symbol("test"),a=Object(B);if("string"==typeof B||"[object Symbol]"!==Object.prototype.toString.call(B)||"[object Symbol]"!==Object.prototype.toString.call(a))return!1;for(B in n[B]=42,n)return!1;if("function"==typeof Object.keys&&0!==Object.keys(n).length||"function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(n).length)return!1;var o=Object.getOwnPropertySymbols(n);if(1!==o.length||o[0]!==B||!Object.prototype.propertyIsEnumerable.call(n,B))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var g=Object.getOwnPropertyDescriptor(n,B);if(42!==g.value||!0!==g.enumerable)return!1}return!0}},26626:function(b,A,n){"use strict";var B=n(12843);b.exports=function(){return B()&&!!Symbol.toStringTag}},55215:function(b,A,n){"use strict";var B=Function.prototype.call,a=Object.prototype.hasOwnProperty,s=n(5049);b.exports=s.call(B,a)},35143:function(b,A,n){"use strict";var B=n(16696).Buffer;A._dbcs=r;for(var a=-1,s=-2,o=-10,g=-1e3,f=new Array(256),u=0;u<256;u++)f[u]=a;function r(e,h){if(this.encodingName=e.encodingName,!e)throw new Error("DBCS codec is called without the data.");if(!e.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var Q=e.table();this.decodeTables=[],this.decodeTables[0]=f.slice(0),this.decodeTableSeq=[];for(var I=0;Ig)throw new Error("gb18030 decode tables conflict at byte 2");for(var Y=this.decodeTables[g-y[x]],v=129;v<=254;v++){if(Y[v]===a)Y[v]=g-p;else{if(Y[v]===g-p)continue;if(Y[v]>g)throw new Error("gb18030 decode tables conflict at byte 3")}for(var S=this.decodeTables[g-Y[v]],z=48;z<=57;z++)S[z]===a&&(S[z]=s)}}}this.defaultCharUnicode=h.defaultCharUnicode,this.encodeTable=[],this.encodeTableSeq=[];var F={};if(e.encodeSkipVals)for(I=0;Ih)return-1;for(var Q=0,I=e.length;Q>1);e[R]<=h?Q=R:I=R}return Q}r.prototype.encoder=d,r.prototype.decoder=E,r.prototype._getDecodeTrieNode=function(e){for(var h=[];e>0;e>>>=8)h.push(255&e);0==h.length&&h.push(0);for(var Q=this.decodeTables[0],I=h.length-1;I>0;I--){var R=Q[h[I]];if(R==a)Q[h[I]]=g-this.decodeTables.length,this.decodeTables.push(Q=f.slice(0));else{if(!(R<=g))throw new Error("Overwrite byte in "+this.encodingName+", addr: "+e.toString(16));Q=this.decodeTables[g-R]}}return Q},r.prototype._addDecodeChunk=function(e){var h=parseInt(e[0],16),Q=this._getDecodeTrieNode(h);h&=255;for(var I=1;I255)throw new Error("Incorrect chunk in "+this.encodingName+" at addr "+e[0]+": too long"+h)},r.prototype._getEncodeBucket=function(e){var h=e>>8;return void 0===this.encodeTable[h]&&(this.encodeTable[h]=f.slice(0)),this.encodeTable[h]},r.prototype._setEncodeChar=function(e,h){var Q=this._getEncodeBucket(e),I=255&e;Q[I]<=o?this.encodeTableSeq[o-Q[I]][-1]=h:Q[I]==a&&(Q[I]=h)},r.prototype._setEncodeSequence=function(e,h){var p,Q=e[0],I=this._getEncodeBucket(Q),R=255&Q;I[R]<=o?p=this.encodeTableSeq[o-I[R]]:(p={},I[R]!==a&&(p[-1]=I[R]),I[R]=o-this.encodeTableSeq.length,this.encodeTableSeq.push(p));for(var m=1;m=0)this._setEncodeChar(y,x),R=!0;else if(y<=g){var Y=g-y;p[Y]||(this._fillEncodeTable(Y,x<<8>>>0,Q)?R=!0:p[Y]=!0)}else y<=o&&(this._setEncodeSequence(this.decodeTableSeq[o-y],x),R=!0)}return R},d.prototype.write=function(e){for(var h=B.alloc(e.length*(this.gb18030?4:3)),Q=this.leadSurrogate,I=this.seqObj,R=-1,p=0,m=0;;){if(-1===R){if(p==e.length)break;var y=e.charCodeAt(p++)}else y=R,R=-1;if(55296<=y&&y<57344)if(y<56320){if(-1===Q){Q=y;continue}Q=y,y=a}else-1!==Q?(y=65536+1024*(Q-55296)+(y-56320),Q=-1):y=a;else-1!==Q&&(R=y,y=a,Q=-1);var x=a;if(void 0!==I&&y!=a){var Y=I[y];if("object"==typeof Y){I=Y;continue}"number"==typeof Y?x=Y:null==Y&&void 0!==(Y=I[-1])&&(x=Y,R=y),I=void 0}else if(y>=0){var v=this.encodeTable[y>>8];if(void 0!==v&&(x=v[255&y]),x<=o){I=this.encodeTableSeq[o-x];continue}if(x==a&&this.gb18030){var S=C(this.gb18030.uChars,y);if(-1!=S){x=this.gb18030.gbChars[S]+(y-this.gb18030.uChars[S]),h[m++]=129+Math.floor(x/12600),x%=12600,h[m++]=48+Math.floor(x/1260),x%=1260,h[m++]=129+Math.floor(x/10),h[m++]=48+(x%=10);continue}}}x===a&&(x=this.defaultCharSingleByte),x<256?h[m++]=x:x<65536?(h[m++]=x>>8,h[m++]=255&x):x<16777216?(h[m++]=x>>16,h[m++]=x>>8&255,h[m++]=255&x):(h[m++]=x>>>24,h[m++]=x>>>16&255,h[m++]=x>>>8&255,h[m++]=255&x)}return this.seqObj=I,this.leadSurrogate=Q,h.slice(0,m)},d.prototype.end=function(){if(-1!==this.leadSurrogate||void 0!==this.seqObj){var e=B.alloc(10),h=0;if(this.seqObj){var Q=this.seqObj[-1];void 0!==Q&&(Q<256?e[h++]=Q:(e[h++]=Q>>8,e[h++]=255&Q)),this.seqObj=void 0}return-1!==this.leadSurrogate&&(e[h++]=this.defaultCharSingleByte,this.leadSurrogate=-1),e.slice(0,h)}},d.prototype.findIdx=C,E.prototype.write=function(e){for(var h=B.alloc(2*e.length),Q=this.nodeIdx,I=this.prevBytes,R=this.prevBytes.length,p=-this.prevBytes.length,y=0,x=0;y=0?e[y]:I[y+R];if(!((m=this.decodeTables[Q][Y])>=0))if(m===a)m=this.defaultCharUnicode.charCodeAt(0),y=p;else if(m===s){if(y>=3)var v=12600*(e[y-3]-129)+1260*(e[y-2]-48)+10*(e[y-1]-129)+(Y-48);else v=12600*(I[y-3+R]-129)+1260*((y-2>=0?e[y-2]:I[y-2+R])-48)+10*((y-1>=0?e[y-1]:I[y-1+R])-129)+(Y-48);var S=C(this.gb18030.gbChars,v);m=this.gb18030.uChars[S]+v-this.gb18030.gbChars[S]}else{if(m<=g){Q=g-m;continue}if(!(m<=o))throw new Error("iconv-lite internal error: invalid decoding table value "+m+" at "+Q+"/"+Y);for(var z=this.decodeTableSeq[o-m],F=0;F>8;m=z[z.length-1]}if(m>=65536){var $=55296|(m-=65536)>>10;h[x++]=255&$,h[x++]=$>>8,m=56320|1023&m}h[x++]=255&m,h[x++]=m>>8,Q=0,p=y+1}return this.nodeIdx=Q,this.prevBytes=p>=0?Array.prototype.slice.call(e,p):I.slice(p+R).concat(Array.prototype.slice.call(e)),h.slice(0,x).toString("ucs2")},E.prototype.end=function(){for(var e="";this.prevBytes.length>0;){e+=this.defaultCharUnicode;var h=this.prevBytes.slice(1);this.prevBytes=[],this.nodeIdx=0,h.length>0&&(e+=this.write(h))}return this.prevBytes=[],this.nodeIdx=0,e}},90481:function(b,A,n){"use strict";b.exports={shiftjis:{type:"_dbcs",table:function(){return n(40679)},encodeAdd:{"\xa5":92,"\u203e":126},encodeSkipVals:[{from:60736,to:63808}]},csshiftjis:"shiftjis",mskanji:"shiftjis",sjis:"shiftjis",windows31j:"shiftjis",ms31j:"shiftjis",xsjis:"shiftjis",windows932:"shiftjis",ms932:"shiftjis",932:"shiftjis",cp932:"shiftjis",eucjp:{type:"_dbcs",table:function(){return n(56406)},encodeAdd:{"\xa5":92,"\u203e":126}},gb2312:"cp936",gb231280:"cp936",gb23121980:"cp936",csgb2312:"cp936",csiso58gb231280:"cp936",euccn:"cp936",windows936:"cp936",ms936:"cp936",936:"cp936",cp936:{type:"_dbcs",table:function(){return n(74488)}},gbk:{type:"_dbcs",table:function(){return n(74488).concat(n(55914))}},xgbk:"gbk",isoir58:"gbk",gb18030:{type:"_dbcs",table:function(){return n(74488).concat(n(55914))},gb18030:function(){return n(99129)},encodeSkipVals:[128],encodeAdd:{"\u20ac":41699}},chinese:"gb18030",windows949:"cp949",ms949:"cp949",949:"cp949",cp949:{type:"_dbcs",table:function(){return n(21166)}},cseuckr:"cp949",csksc56011987:"cp949",euckr:"cp949",isoir149:"cp949",korean:"cp949",ksc56011987:"cp949",ksc56011989:"cp949",ksc5601:"cp949",windows950:"cp950",ms950:"cp950",950:"cp950",cp950:{type:"_dbcs",table:function(){return n(72324)}},big5:"big5hkscs",big5hkscs:{type:"_dbcs",table:function(){return n(72324).concat(n(43267))},encodeSkipVals:[36457,36463,36478,36523,36532,36557,36560,36695,36713,36718,36811,36862,36973,36986,37060,37084,37105,37311,37551,37552,37553,37554,37585,37959,38090,38361,38652,39285,39798,39800,39803,39878,39902,39916,39926,40002,40019,40034,40040,40043,40055,40124,40125,40144,40279,40282,40388,40431,40443,40617,40687,40701,40800,40907,41079,41180,41183,36812,37576,38468,38637,41636,41637,41639,41638,41676,41678]},cnbig5:"big5hkscs",csbig5:"big5hkscs",xxbig5:"big5hkscs"}},26326:function(b,A,n){"use strict";for(var B=[n(16793),n(24162),n(17100),n(11326),n(99948),n(99900),n(81492),n(35143),n(90481)],a=0;a>>6),d[E++]=128+(63&e)):(d[E++]=224+(e>>>12),d[E++]=128+(e>>>6&63),d[E++]=128+(63&e))}return d.slice(0,E)},w.prototype.end=function(){},u.prototype.write=function(r){for(var d=this.acc,E=this.contBytes,C=this.accBytes,e="",h=0;h0&&(e+=this.defaultCharUnicode,E=0),Q<128?e+=String.fromCharCode(Q):Q<224?(d=31&Q,E=1,C=1):Q<240?(d=15&Q,E=2,C=1):e+=this.defaultCharUnicode):E>0?(d=d<<6|63&Q,C++,0==--E&&(e+=2===C&&d<128&&d>0||3===C&&d<2048?this.defaultCharUnicode:String.fromCharCode(d))):e+=this.defaultCharUnicode}return this.acc=d,this.contBytes=E,this.accBytes=C,e},u.prototype.end=function(){var r=0;return this.contBytes>0&&(r+=this.defaultCharUnicode),r}},99948:function(b,A,n){"use strict";var B=n(16696).Buffer;function a(g,f){if(!g)throw new Error("SBCS codec is called without the data.");if(!g.chars||128!==g.chars.length&&256!==g.chars.length)throw new Error("Encoding '"+g.type+"' has incorrect 'chars' (must be of len 128 or 256)");if(128===g.chars.length){for(var w="",u=0;u<128;u++)w+=String.fromCharCode(u);g.chars=w+g.chars}this.decodeBuf=B.from(g.chars,"ucs2");var r=B.alloc(65536,f.defaultCharSingleByte.charCodeAt(0));for(u=0;u?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\xb0\xb7\u2219\u221a\u2592\u2500\u2502\u253c\u2524\u252c\u251c\u2534\u2510\u250c\u2514\u2518\u03b2\u221e\u03c6\xb1\xbd\xbc\u2248\xab\xbb\ufef7\ufef8\ufffd\ufffd\ufefb\ufefc\ufffd\xa0\xad\ufe82\xa3\xa4\ufe84\ufffd\ufffd\ufe8e\ufe8f\ufe95\ufe99\u060c\ufe9d\ufea1\ufea5\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\ufed1\u061b\ufeb1\ufeb5\ufeb9\u061f\xa2\ufe80\ufe81\ufe83\ufe85\ufeca\ufe8b\ufe8d\ufe91\ufe93\ufe97\ufe9b\ufe9f\ufea3\ufea7\ufea9\ufeab\ufead\ufeaf\ufeb3\ufeb7\ufebb\ufebf\ufec1\ufec5\ufecb\ufecf\xa6\xac\xf7\xd7\ufec9\u0640\ufed3\ufed7\ufedb\ufedf\ufee3\ufee7\ufeeb\ufeed\ufeef\ufef3\ufebd\ufecc\ufece\ufecd\ufee1\ufe7d\u0651\ufee5\ufee9\ufeec\ufef0\ufef2\ufed0\ufed5\ufef5\ufef6\ufedd\ufed9\ufef1\u25a0\ufffd"},ibm864:"cp864",csibm864:"cp864",cp865:{type:"_sbcs",chars:"\xc7\xfc\xe9\xe2\xe4\xe0\xe5\xe7\xea\xeb\xe8\xef\xee\xec\xc4\xc5\xc9\xe6\xc6\xf4\xf6\xf2\xfb\xf9\xff\xd6\xdc\xf8\xa3\xd8\u20a7\u0192\xe1\xed\xf3\xfa\xf1\xd1\xaa\xba\xbf\u2310\xac\xbd\xbc\xa1\xab\xa4\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\xdf\u0393\u03c0\u03a3\u03c3\xb5\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\xb1\u2265\u2264\u2320\u2321\xf7\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},ibm865:"cp865",csibm865:"cp865",cp866:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0404\u0454\u0407\u0457\u040e\u045e\xb0\u2219\xb7\u221a\u2116\xa4\u25a0\xa0"},ibm866:"cp866",csibm866:"cp866",cp869:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0386\ufffd\xb7\xac\xa6\u2018\u2019\u0388\u2015\u0389\u038a\u03aa\u038c\ufffd\ufffd\u038e\u03ab\xa9\u038f\xb2\xb3\u03ac\xa3\u03ad\u03ae\u03af\u03ca\u0390\u03cc\u03cd\u0391\u0392\u0393\u0394\u0395\u0396\u0397\xbd\u0398\u0399\xab\xbb\u2591\u2592\u2593\u2502\u2524\u039a\u039b\u039c\u039d\u2563\u2551\u2557\u255d\u039e\u039f\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u03a0\u03a1\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u03a3\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9\u03b1\u03b2\u03b3\u2518\u250c\u2588\u2584\u03b4\u03b5\u2580\u03b6\u03b7\u03b8\u03b9\u03ba\u03bb\u03bc\u03bd\u03be\u03bf\u03c0\u03c1\u03c3\u03c2\u03c4\u0384\xad\xb1\u03c5\u03c6\u03c7\xa7\u03c8\u0385\xb0\xa8\u03c9\u03cb\u03b0\u03ce\u25a0\xa0"},ibm869:"cp869",csibm869:"cp869",cp922:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\u203e\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\u0160\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\u017d\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\u0161\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\u017e\xff"},ibm922:"cp922",csibm922:"cp922",cp1046:{type:"_sbcs",chars:"\ufe88\xd7\xf7\uf8f6\uf8f5\uf8f4\uf8f7\ufe71\x88\u25a0\u2502\u2500\u2510\u250c\u2514\u2518\ufe79\ufe7b\ufe7d\ufe7f\ufe77\ufe8a\ufef0\ufef3\ufef2\ufece\ufecf\ufed0\ufef6\ufef8\ufefa\ufefc\xa0\uf8fa\uf8f9\uf8f8\xa4\uf8fb\ufe8b\ufe91\ufe97\ufe9b\ufe9f\ufea3\u060c\xad\ufea7\ufeb3\u0660\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\ufeb7\u061b\ufebb\ufebf\ufeca\u061f\ufecb\u0621\u0622\u0623\u0624\u0625\u0626\u0627\u0628\u0629\u062a\u062b\u062c\u062d\u062e\u062f\u0630\u0631\u0632\u0633\u0634\u0635\u0636\u0637\ufec7\u0639\u063a\ufecc\ufe82\ufe84\ufe8e\ufed3\u0640\u0641\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064a\u064b\u064c\u064d\u064e\u064f\u0650\u0651\u0652\ufed7\ufedb\ufedf\uf8fc\ufef5\ufef7\ufef9\ufefb\ufee3\ufee7\ufeec\ufee9\ufffd"},ibm1046:"cp1046",csibm1046:"cp1046",cp1124:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0401\u0402\u0490\u0404\u0405\u0406\u0407\u0408\u0409\u040a\u040b\u040c\xad\u040e\u040f\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u2116\u0451\u0452\u0491\u0454\u0455\u0456\u0457\u0458\u0459\u045a\u045b\u045c\xa7\u045e\u045f"},ibm1124:"cp1124",csibm1124:"cp1124",cp1125:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0490\u0491\u0404\u0454\u0406\u0456\u0407\u0457\xb7\u221a\u2116\xa4\u25a0\xa0"},ibm1125:"cp1125",csibm1125:"cp1125",cp1129:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\u0153\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\u0178\xb5\xb6\xb7\u0152\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\u0102\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\u0300\xcd\xce\xcf\u0110\xd1\u0309\xd3\xd4\u01a0\xd6\xd7\xd8\xd9\xda\xdb\xdc\u01af\u0303\xdf\xe0\xe1\xe2\u0103\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\u0301\xed\xee\xef\u0111\xf1\u0323\xf3\xf4\u01a1\xf6\xf7\xf8\xf9\xfa\xfb\xfc\u01b0\u20ab\xff"},ibm1129:"cp1129",csibm1129:"cp1129",cp1133:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0e81\u0e82\u0e84\u0e87\u0e88\u0eaa\u0e8a\u0e8d\u0e94\u0e95\u0e96\u0e97\u0e99\u0e9a\u0e9b\u0e9c\u0e9d\u0e9e\u0e9f\u0ea1\u0ea2\u0ea3\u0ea5\u0ea7\u0eab\u0ead\u0eae\ufffd\ufffd\ufffd\u0eaf\u0eb0\u0eb2\u0eb3\u0eb4\u0eb5\u0eb6\u0eb7\u0eb8\u0eb9\u0ebc\u0eb1\u0ebb\u0ebd\ufffd\ufffd\ufffd\u0ec0\u0ec1\u0ec2\u0ec3\u0ec4\u0ec8\u0ec9\u0eca\u0ecb\u0ecc\u0ecd\u0ec6\ufffd\u0edc\u0edd\u20ad\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0ed0\u0ed1\u0ed2\u0ed3\u0ed4\u0ed5\u0ed6\u0ed7\u0ed8\u0ed9\ufffd\ufffd\xa2\xac\xa6\ufffd"},ibm1133:"cp1133",csibm1133:"cp1133",cp1161:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0e48\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\u0e49\u0e4a\u0e4b\u20ac\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\xa2\xac\xa6\xa0"},ibm1161:"cp1161",csibm1161:"cp1161",cp1162:{type:"_sbcs",chars:"\u20ac\x81\x82\x83\x84\u2026\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufffd\ufffd\ufffd\ufffd\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\ufffd\ufffd\ufffd\ufffd"},ibm1162:"cp1162",csibm1162:"cp1162",cp1163:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\u20ac\xa5\xa6\xa7\u0153\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\u0178\xb5\xb6\xb7\u0152\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\u0102\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\u0300\xcd\xce\xcf\u0110\xd1\u0309\xd3\xd4\u01a0\xd6\xd7\xd8\xd9\xda\xdb\xdc\u01af\u0303\xdf\xe0\xe1\xe2\u0103\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\u0301\xed\xee\xef\u0111\xf1\u0323\xf3\xf4\u01a1\xf6\xf7\xf8\xf9\xfa\xfb\xfc\u01b0\u20ab\xff"},ibm1163:"cp1163",csibm1163:"cp1163",maccroatian:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\u0160\u2122\xb4\xa8\u2260\u017d\xd8\u221e\xb1\u2264\u2265\u2206\xb5\u2202\u2211\u220f\u0161\u222b\xaa\xba\u2126\u017e\xf8\xbf\xa1\xac\u221a\u0192\u2248\u0106\xab\u010c\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u0110\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\ufffd\xa9\u2044\xa4\u2039\u203a\xc6\xbb\u2013\xb7\u201a\u201e\u2030\xc2\u0107\xc1\u010d\xc8\xcd\xce\xcf\xcc\xd3\xd4\u0111\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u03c0\xcb\u02da\xb8\xca\xe6\u02c7"},maccyrillic:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u2020\xb0\xa2\xa3\xa7\u2022\xb6\u0406\xae\xa9\u2122\u0402\u0452\u2260\u0403\u0453\u221e\xb1\u2264\u2265\u0456\xb5\u2202\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040a\u045a\u0458\u0405\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\u040b\u045b\u040c\u045c\u0455\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u201e\u040e\u045e\u040f\u045f\u2116\u0401\u0451\u044f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\xa4"},macgreek:{type:"_sbcs",chars:"\xc4\xb9\xb2\xc9\xb3\xd6\xdc\u0385\xe0\xe2\xe4\u0384\xa8\xe7\xe9\xe8\xea\xeb\xa3\u2122\xee\xef\u2022\xbd\u2030\xf4\xf6\xa6\xad\xf9\xfb\xfc\u2020\u0393\u0394\u0398\u039b\u039e\u03a0\xdf\xae\xa9\u03a3\u03aa\xa7\u2260\xb0\u0387\u0391\xb1\u2264\u2265\xa5\u0392\u0395\u0396\u0397\u0399\u039a\u039c\u03a6\u03ab\u03a8\u03a9\u03ac\u039d\xac\u039f\u03a1\u2248\u03a4\xab\xbb\u2026\xa0\u03a5\u03a7\u0386\u0388\u0153\u2013\u2015\u201c\u201d\u2018\u2019\xf7\u0389\u038a\u038c\u038e\u03ad\u03ae\u03af\u03cc\u038f\u03cd\u03b1\u03b2\u03c8\u03b4\u03b5\u03c6\u03b3\u03b7\u03b9\u03be\u03ba\u03bb\u03bc\u03bd\u03bf\u03c0\u03ce\u03c1\u03c3\u03c4\u03b8\u03c9\u03c2\u03c7\u03c5\u03b6\u03ca\u03cb\u0390\u03b0\ufffd"},maciceland:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\xdd\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\xd0\xf0\xde\xfe\xfd\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macroman:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\ufb01\ufb02\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macromania:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\u0102\u015e\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\u0103\u015f\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\u0162\u0163\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macthai:{type:"_sbcs",chars:"\xab\xbb\u2026\uf88c\uf88f\uf892\uf895\uf898\uf88b\uf88e\uf891\uf894\uf897\u201c\u201d\uf899\ufffd\u2022\uf884\uf889\uf885\uf886\uf887\uf888\uf88a\uf88d\uf890\uf893\uf896\u2018\u2019\ufffd\xa0\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufeff\u200b\u2013\u2014\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u2122\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\xae\xa9\ufffd\ufffd\ufffd\ufffd"},macturkish:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u011e\u011f\u0130\u0131\u015e\u015f\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\ufffd\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},macukraine:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u2020\xb0\u0490\xa3\xa7\u2022\xb6\u0406\xae\xa9\u2122\u0402\u0452\u2260\u0403\u0453\u221e\xb1\u2264\u2265\u0456\xb5\u0491\u0408\u0404\u0454\u0407\u0457\u0409\u0459\u040a\u045a\u0458\u0405\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\u040b\u045b\u040c\u045c\u0455\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u201e\u040e\u045e\u040f\u045f\u2116\u0401\u0451\u044f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\xa4"},koi8r:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u2553\u2554\u2555\u2556\u2557\u2558\u2559\u255a\u255b\u255c\u255d\u255e\u255f\u2560\u2561\u0401\u2562\u2563\u2564\u2565\u2566\u2567\u2568\u2569\u256a\u256b\u256c\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8u:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u0454\u2554\u0456\u0457\u2557\u2558\u2559\u255a\u255b\u0491\u255d\u255e\u255f\u2560\u2561\u0401\u0404\u2563\u0406\u0407\u2566\u2567\u2568\u2569\u256a\u0490\u256c\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8ru:{type:"_sbcs",chars:"\u2500\u2502\u250c\u2510\u2514\u2518\u251c\u2524\u252c\u2534\u253c\u2580\u2584\u2588\u258c\u2590\u2591\u2592\u2593\u2320\u25a0\u2219\u221a\u2248\u2264\u2265\xa0\u2321\xb0\xb2\xb7\xf7\u2550\u2551\u2552\u0451\u0454\u2554\u0456\u0457\u2557\u2558\u2559\u255a\u255b\u0491\u045e\u255e\u255f\u2560\u2561\u0401\u0404\u2563\u0406\u0407\u2566\u2567\u2568\u2569\u256a\u0490\u040e\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},koi8t:{type:"_sbcs",chars:"\u049b\u0493\u201a\u0492\u201e\u2026\u2020\u2021\ufffd\u2030\u04b3\u2039\u04b2\u04b7\u04b6\ufffd\u049a\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\ufffd\u203a\ufffd\ufffd\ufffd\ufffd\ufffd\u04ef\u04ee\u0451\xa4\u04e3\xa6\xa7\ufffd\ufffd\ufffd\xab\xac\xad\xae\ufffd\xb0\xb1\xb2\u0401\ufffd\u04e2\xb6\xb7\ufffd\u2116\ufffd\xbb\ufffd\ufffd\ufffd\xa9\u044e\u0430\u0431\u0446\u0434\u0435\u0444\u0433\u0445\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u044f\u0440\u0441\u0442\u0443\u0436\u0432\u044c\u044b\u0437\u0448\u044d\u0449\u0447\u044a\u042e\u0410\u0411\u0426\u0414\u0415\u0424\u0413\u0425\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u042f\u0420\u0421\u0422\u0423\u0416\u0412\u042c\u042b\u0417\u0428\u042d\u0429\u0427\u042a"},armscii8:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\ufffd\u0587\u0589)(\xbb\xab\u2014.\u055d,-\u058a\u2026\u055c\u055b\u055e\u0531\u0561\u0532\u0562\u0533\u0563\u0534\u0564\u0535\u0565\u0536\u0566\u0537\u0567\u0538\u0568\u0539\u0569\u053a\u056a\u053b\u056b\u053c\u056c\u053d\u056d\u053e\u056e\u053f\u056f\u0540\u0570\u0541\u0571\u0542\u0572\u0543\u0573\u0544\u0574\u0545\u0575\u0546\u0576\u0547\u0577\u0548\u0578\u0549\u0579\u054a\u057a\u054b\u057b\u054c\u057c\u054d\u057d\u054e\u057e\u054f\u057f\u0550\u0580\u0551\u0581\u0552\u0582\u0553\u0583\u0554\u0584\u0555\u0585\u0556\u0586\u055a\ufffd"},rk1048:{type:"_sbcs",chars:"\u0402\u0403\u201a\u0453\u201e\u2026\u2020\u2021\u20ac\u2030\u0409\u2039\u040a\u049a\u04ba\u040f\u0452\u2018\u2019\u201c\u201d\u2022\u2013\u2014\ufffd\u2122\u0459\u203a\u045a\u049b\u04bb\u045f\xa0\u04b0\u04b1\u04d8\xa4\u04e8\xa6\xa7\u0401\xa9\u0492\xab\xac\xad\xae\u04ae\xb0\xb1\u0406\u0456\u04e9\xb5\xb6\xb7\u0451\u2116\u0493\xbb\u04d9\u04a2\u04a3\u04af\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f"},tcvn:{type:"_sbcs",chars:"\0\xda\u1ee4\x03\u1eea\u1eec\u1eee\x07\b\t\n\v\f\r\x0e\x0f\x10\u1ee8\u1ef0\u1ef2\u1ef6\u1ef8\xdd\u1ef4\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\xc0\u1ea2\xc3\xc1\u1ea0\u1eb6\u1eac\xc8\u1eba\u1ebc\xc9\u1eb8\u1ec6\xcc\u1ec8\u0128\xcd\u1eca\xd2\u1ece\xd5\xd3\u1ecc\u1ed8\u1edc\u1ede\u1ee0\u1eda\u1ee2\xd9\u1ee6\u0168\xa0\u0102\xc2\xca\xd4\u01a0\u01af\u0110\u0103\xe2\xea\xf4\u01a1\u01b0\u0111\u1eb0\u0300\u0309\u0303\u0301\u0323\xe0\u1ea3\xe3\xe1\u1ea1\u1eb2\u1eb1\u1eb3\u1eb5\u1eaf\u1eb4\u1eae\u1ea6\u1ea8\u1eaa\u1ea4\u1ec0\u1eb7\u1ea7\u1ea9\u1eab\u1ea5\u1ead\xe8\u1ec2\u1ebb\u1ebd\xe9\u1eb9\u1ec1\u1ec3\u1ec5\u1ebf\u1ec7\xec\u1ec9\u1ec4\u1ebe\u1ed2\u0129\xed\u1ecb\xf2\u1ed4\u1ecf\xf5\xf3\u1ecd\u1ed3\u1ed5\u1ed7\u1ed1\u1ed9\u1edd\u1edf\u1ee1\u1edb\u1ee3\xf9\u1ed6\u1ee7\u0169\xfa\u1ee5\u1eeb\u1eed\u1eef\u1ee9\u1ef1\u1ef3\u1ef7\u1ef9\xfd\u1ef5\u1ed0"},georgianacademy:{type:"_sbcs",chars:"\x80\x81\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\x9d\x9e\u0178\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\u10d0\u10d1\u10d2\u10d3\u10d4\u10d5\u10d6\u10d7\u10d8\u10d9\u10da\u10db\u10dc\u10dd\u10de\u10df\u10e0\u10e1\u10e2\u10e3\u10e4\u10e5\u10e6\u10e7\u10e8\u10e9\u10ea\u10eb\u10ec\u10ed\u10ee\u10ef\u10f0\u10f1\u10f2\u10f3\u10f4\u10f5\u10f6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"},georgianps:{type:"_sbcs",chars:"\x80\x81\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\x8d\x8e\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\x9d\x9e\u0178\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\u10d0\u10d1\u10d2\u10d3\u10d4\u10d5\u10d6\u10f1\u10d7\u10d8\u10d9\u10da\u10db\u10dc\u10f2\u10dd\u10de\u10df\u10e0\u10e1\u10e2\u10f3\u10e3\u10e4\u10e5\u10e6\u10e7\u10e8\u10e9\u10ea\u10eb\u10ec\u10ed\u10ee\u10f4\u10ef\u10f0\u10f5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff"},pt154:{type:"_sbcs",chars:"\u0496\u0492\u04ee\u0493\u201e\u2026\u04b6\u04ae\u04b2\u04af\u04a0\u04e2\u04a2\u049a\u04ba\u04b8\u0497\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u04b3\u04b7\u04a1\u04e3\u04a3\u049b\u04bb\u04b9\xa0\u040e\u045e\u0408\u04e8\u0498\u04b0\xa7\u0401\xa9\u04d8\xab\xac\u04ef\xae\u049c\xb0\u04b1\u0406\u0456\u0499\u04e9\xb6\xb7\u0451\u2116\u04d9\xbb\u0458\u04aa\u04ab\u049d\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f"},viscii:{type:"_sbcs",chars:"\0\x01\u1eb2\x03\x04\u1eb4\u1eaa\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\u1ef6\x15\x16\x17\x18\u1ef8\x1a\x1b\x1c\x1d\u1ef4\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u1ea0\u1eae\u1eb0\u1eb6\u1ea4\u1ea6\u1ea8\u1eac\u1ebc\u1eb8\u1ebe\u1ec0\u1ec2\u1ec4\u1ec6\u1ed0\u1ed2\u1ed4\u1ed6\u1ed8\u1ee2\u1eda\u1edc\u1ede\u1eca\u1ece\u1ecc\u1ec8\u1ee6\u0168\u1ee4\u1ef2\xd5\u1eaf\u1eb1\u1eb7\u1ea5\u1ea7\u1ea9\u1ead\u1ebd\u1eb9\u1ebf\u1ec1\u1ec3\u1ec5\u1ec7\u1ed1\u1ed3\u1ed5\u1ed7\u1ee0\u01a0\u1ed9\u1edd\u1edf\u1ecb\u1ef0\u1ee8\u1eea\u1eec\u01a1\u1edb\u01af\xc0\xc1\xc2\xc3\u1ea2\u0102\u1eb3\u1eb5\xc8\xc9\xca\u1eba\xcc\xcd\u0128\u1ef3\u0110\u1ee9\xd2\xd3\xd4\u1ea1\u1ef7\u1eeb\u1eed\xd9\xda\u1ef9\u1ef5\xdd\u1ee1\u01b0\xe0\xe1\xe2\xe3\u1ea3\u0103\u1eef\u1eab\xe8\xe9\xea\u1ebb\xec\xed\u0129\u1ec9\u0111\u1ef1\xf2\xf3\xf4\xf5\u1ecf\u1ecd\u1ee5\xf9\xfa\u0169\u1ee7\xfd\u1ee3\u1eee"},iso646cn:{type:"_sbcs",chars:"\0\x01\x02\x03\x04\x05\x06\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#\xa5%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}\u203e\x7f\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},iso646jp:{type:"_sbcs",chars:"\0\x01\x02\x03\x04\x05\x06\x07\b\t\n\v\f\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\xa5]^_`abcdefghijklmnopqrstuvwxyz{|}\u203e\x7f\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},hproman8:{type:"_sbcs",chars:"\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xc0\xc2\xc8\xca\xcb\xce\xcf\xb4\u02cb\u02c6\xa8\u02dc\xd9\xdb\u20a4\xaf\xdd\xfd\xb0\xc7\xe7\xd1\xf1\xa1\xbf\xa4\xa3\xa5\xa7\u0192\xa2\xe2\xea\xf4\xfb\xe1\xe9\xf3\xfa\xe0\xe8\xf2\xf9\xe4\xeb\xf6\xfc\xc5\xee\xd8\xc6\xe5\xed\xf8\xe6\xc4\xec\xd6\xdc\xc9\xef\xdf\xd4\xc1\xc3\xe3\xd0\xf0\xcd\xcc\xd3\xd2\xd5\xf5\u0160\u0161\xda\u0178\xff\xde\xfe\xb7\xb5\xb6\xbe\u2014\xbc\xbd\xaa\xba\xab\u25a0\xbb\xb1\ufffd"},macintosh:{type:"_sbcs",chars:"\xc4\xc5\xc7\xc9\xd1\xd6\xdc\xe1\xe0\xe2\xe4\xe3\xe5\xe7\xe9\xe8\xea\xeb\xed\xec\xee\xef\xf1\xf3\xf2\xf4\xf6\xf5\xfa\xf9\xfb\xfc\u2020\xb0\xa2\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\xb4\xa8\u2260\xc6\xd8\u221e\xb1\u2264\u2265\xa5\xb5\u2202\u2211\u220f\u03c0\u222b\xaa\xba\u2126\xe6\xf8\xbf\xa1\xac\u221a\u0192\u2248\u2206\xab\xbb\u2026\xa0\xc0\xc3\xd5\u0152\u0153\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\xff\u0178\u2044\xa4\u2039\u203a\ufb01\ufb02\u2021\xb7\u201a\u201e\u2030\xc2\xca\xc1\xcb\xc8\xcd\xce\xcf\xcc\xd3\xd4\ufffd\xd2\xda\xdb\xd9\u0131\u02c6\u02dc\xaf\u02d8\u02d9\u02da\xb8\u02dd\u02db\u02c7"},ascii:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd"},tis620:{type:"_sbcs",chars:"\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\u0e01\u0e02\u0e03\u0e04\u0e05\u0e06\u0e07\u0e08\u0e09\u0e0a\u0e0b\u0e0c\u0e0d\u0e0e\u0e0f\u0e10\u0e11\u0e12\u0e13\u0e14\u0e15\u0e16\u0e17\u0e18\u0e19\u0e1a\u0e1b\u0e1c\u0e1d\u0e1e\u0e1f\u0e20\u0e21\u0e22\u0e23\u0e24\u0e25\u0e26\u0e27\u0e28\u0e29\u0e2a\u0e2b\u0e2c\u0e2d\u0e2e\u0e2f\u0e30\u0e31\u0e32\u0e33\u0e34\u0e35\u0e36\u0e37\u0e38\u0e39\u0e3a\ufffd\ufffd\ufffd\ufffd\u0e3f\u0e40\u0e41\u0e42\u0e43\u0e44\u0e45\u0e46\u0e47\u0e48\u0e49\u0e4a\u0e4b\u0e4c\u0e4d\u0e4e\u0e4f\u0e50\u0e51\u0e52\u0e53\u0e54\u0e55\u0e56\u0e57\u0e58\u0e59\u0e5a\u0e5b\ufffd\ufffd\ufffd\ufffd"}}},99900:function(b){"use strict";b.exports={10029:"maccenteuro",maccenteuro:{type:"_sbcs",chars:"\xc4\u0100\u0101\xc9\u0104\xd6\xdc\xe1\u0105\u010c\xe4\u010d\u0106\u0107\xe9\u0179\u017a\u010e\xed\u010f\u0112\u0113\u0116\xf3\u0117\xf4\xf6\xf5\xfa\u011a\u011b\xfc\u2020\xb0\u0118\xa3\xa7\u2022\xb6\xdf\xae\xa9\u2122\u0119\xa8\u2260\u0123\u012e\u012f\u012a\u2264\u2265\u012b\u0136\u2202\u2211\u0142\u013b\u013c\u013d\u013e\u0139\u013a\u0145\u0146\u0143\xac\u221a\u0144\u0147\u2206\xab\xbb\u2026\xa0\u0148\u0150\xd5\u0151\u014c\u2013\u2014\u201c\u201d\u2018\u2019\xf7\u25ca\u014d\u0154\u0155\u0158\u2039\u203a\u0159\u0156\u0157\u0160\u201a\u201e\u0161\u015a\u015b\xc1\u0164\u0165\xcd\u017d\u017e\u016a\xd3\xd4\u016b\u016e\xda\u016f\u0170\u0171\u0172\u0173\xdd\xfd\u0137\u017b\u0141\u017c\u0122\u02c7"},808:"cp808",ibm808:"cp808",cp808:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u0401\u0451\u0404\u0454\u0407\u0457\u040e\u045e\xb0\u2219\xb7\u221a\u2116\u20ac\u25a0\xa0"},mik:{type:"_sbcs",chars:"\u0410\u0411\u0412\u0413\u0414\u0415\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f\u2514\u2534\u252c\u251c\u2500\u253c\u2563\u2551\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2510\u2591\u2592\u2593\u2502\u2524\u2116\xa7\u2557\u255d\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u03b1\xdf\u0393\u03c0\u03a3\u03c3\xb5\u03c4\u03a6\u0398\u03a9\u03b4\u221e\u03c6\u03b5\u2229\u2261\xb1\u2265\u2264\u2320\u2321\xf7\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},cp720:{type:"_sbcs",chars:"\x80\x81\xe9\xe2\x84\xe0\x86\xe7\xea\xeb\xe8\xef\xee\x8d\x8e\x8f\x90\u0651\u0652\xf4\xa4\u0640\xfb\xf9\u0621\u0622\u0623\u0624\xa3\u0625\u0626\u0627\u0628\u0629\u062a\u062b\u062c\u062d\u062e\u062f\u0630\u0631\u0632\u0633\u0634\u0635\xab\xbb\u2591\u2592\u2593\u2502\u2524\u2561\u2562\u2556\u2555\u2563\u2551\u2557\u255d\u255c\u255b\u2510\u2514\u2534\u252c\u251c\u2500\u253c\u255e\u255f\u255a\u2554\u2569\u2566\u2560\u2550\u256c\u2567\u2568\u2564\u2565\u2559\u2558\u2552\u2553\u256b\u256a\u2518\u250c\u2588\u2584\u258c\u2590\u2580\u0636\u0637\u0638\u0639\u063a\u0641\xb5\u0642\u0643\u0644\u0645\u0646\u0647\u0648\u0649\u064a\u2261\u064b\u064c\u064d\u064e\u064f\u0650\u2248\xb0\u2219\xb7\u221a\u207f\xb2\u25a0\xa0"},ascii8bit:"ascii",usascii:"ascii",ansix34:"ascii",ansix341968:"ascii",ansix341986:"ascii",csascii:"ascii",cp367:"ascii",ibm367:"ascii",isoir6:"ascii",iso646us:"ascii",iso646irv:"ascii",us:"ascii",latin1:"iso88591",latin2:"iso88592",latin3:"iso88593",latin4:"iso88594",latin5:"iso88599",latin6:"iso885910",latin7:"iso885913",latin8:"iso885914",latin9:"iso885915",latin10:"iso885916",csisolatin1:"iso88591",csisolatin2:"iso88592",csisolatin3:"iso88593",csisolatin4:"iso88594",csisolatincyrillic:"iso88595",csisolatinarabic:"iso88596",csisolatingreek:"iso88597",csisolatinhebrew:"iso88598",csisolatin5:"iso88599",csisolatin6:"iso885910",l1:"iso88591",l2:"iso88592",l3:"iso88593",l4:"iso88594",l5:"iso88599",l6:"iso885910",l7:"iso885913",l8:"iso885914",l9:"iso885915",l10:"iso885916",isoir14:"iso646jp",isoir57:"iso646cn",isoir100:"iso88591",isoir101:"iso88592",isoir109:"iso88593",isoir110:"iso88594",isoir144:"iso88595",isoir127:"iso88596",isoir126:"iso88597",isoir138:"iso88598",isoir148:"iso88599",isoir157:"iso885910",isoir166:"tis620",isoir179:"iso885913",isoir199:"iso885914",isoir203:"iso885915",isoir226:"iso885916",cp819:"iso88591",ibm819:"iso88591",cyrillic:"iso88595",arabic:"iso88596",arabic8:"iso88596",ecma114:"iso88596",asmo708:"iso88596",greek:"iso88597",greek8:"iso88597",ecma118:"iso88597",elot928:"iso88597",hebrew:"iso88598",hebrew8:"iso88598",turkish:"iso88599",turkish8:"iso88599",thai:"iso885911",thai8:"iso885911",celtic:"iso885914",celtic8:"iso885914",isoceltic:"iso885914",tis6200:"tis620",tis62025291:"tis620",tis62025330:"tis620",1e4:"macroman",10006:"macgreek",10007:"maccyrillic",10079:"maciceland",10081:"macturkish",cspc8codepage437:"cp437",cspc775baltic:"cp775",cspc850multilingual:"cp850",cspcp852:"cp852",cspc862latinhebrew:"cp862",cpgr:"cp869",msee:"cp1250",mscyrl:"cp1251",msansi:"cp1252",msgreek:"cp1253",msturk:"cp1254",mshebr:"cp1255",msarab:"cp1256",winbaltrim:"cp1257",cp20866:"koi8r",20866:"koi8r",ibm878:"koi8r",cskoi8r:"koi8r",cp21866:"koi8u",21866:"koi8u",ibm1168:"koi8u",strk10482002:"rk1048",tcvn5712:"tcvn",tcvn57121:"tcvn",gb198880:"iso646cn",cn:"iso646cn",csiso14jisc6220ro:"iso646jp",jisc62201969ro:"iso646jp",jp:"iso646jp",cshproman8:"hproman8",r8:"hproman8",roman8:"hproman8",xroman8:"hproman8",ibm1051:"hproman8",mac:"macintosh",csmacintosh:"macintosh"}},17100:function(b,A,n){"use strict";var B=n(16696).Buffer;function a(){}function s(){}function o(){this.overflowByte=-1}function g(r,d){this.iconv=d}function f(r,d){void 0===(r=r||{}).addBOM&&(r.addBOM=!0),this.encoder=d.iconv.getEncoder("utf-16le",r)}function w(r,d){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=r||{},this.iconv=d.iconv}function u(r,d){var E=[],C=0,e=0,h=0;A:for(var Q=0;Q=100)break A}return h>e?"utf-16be":h1114111)&&(C=e),C>=65536){var h=55296|(C-=65536)>>10;d[E++]=255&h,d[E++]=h>>8,C=56320|1023&C}return d[E++]=255&C,d[E++]=C>>8,E}function f(d,E){this.iconv=E}function w(d,E){void 0===(d=d||{}).addBOM&&(d.addBOM=!0),this.encoder=E.iconv.getEncoder(d.defaultEncoding||"utf-32le",d)}function u(d,E){this.decoder=null,this.initialBufs=[],this.initialBufsLen=0,this.options=d||{},this.iconv=E.iconv}function r(d,E){var C=[],e=0,h=0,Q=0,I=0,R=0;A:for(var p=0;p16)&&Q++,(0!==C[3]||C[2]>16)&&h++,0===C[0]&&0===C[1]&&(0!==C[2]||0!==C[3])&&R++,(0!==C[0]||0!==C[1])&&0===C[2]&&0===C[3]&&I++,C.length=0,++e>=100)break A}return R-Q>I-h?"utf-32be":R-Q0){for(;E0&&(I=this.iconv.decode(B.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",I},A.utf7imap=C,C.prototype.encoder=e,C.prototype.decoder=h,C.prototype.bomAware=!0,e.prototype.write=function(I){for(var R=this.inBase64,p=this.base64Accum,m=this.base64AccumIdx,y=B.alloc(5*I.length+10),x=0,Y=0;Y0&&(x+=y.write(p.slice(0,m).toString("base64").replace(/\//g,",").replace(/=+$/,""),x),m=0),y[x++]=d,R=!1),R||(y[x++]=v,38===v&&(y[x++]=d))):(R||(y[x++]=38,R=!0),R&&(p[m++]=v>>8,p[m++]=255&v,m==p.length&&(x+=y.write(p.toString("base64").replace(/\//g,","),x),m=0)))}return this.inBase64=R,this.base64AccumIdx=m,y.slice(0,x)},e.prototype.end=function(){var I=B.alloc(10),R=0;return this.inBase64&&(this.base64AccumIdx>0&&(R+=I.write(this.base64Accum.slice(0,this.base64AccumIdx).toString("base64").replace(/\//g,",").replace(/=+$/,""),R),this.base64AccumIdx=0),I[R++]=d,this.inBase64=!1),I.slice(0,R)};var Q=w.slice();Q[44]=!0,h.prototype.write=function(I){for(var R="",p=0,m=this.inBase64,y=this.base64Accum,x=0;x0&&(I=this.iconv.decode(B.from(this.base64Accum,"base64"),"utf16-be")),this.inBase64=!1,this.base64Accum="",I}},52331:function(b,A){"use strict";function B(s,o){this.encoder=s,this.addBOM=!0}function a(s,o){this.decoder=s,this.pass=!1,this.options=o||{}}A.PrependBOM=B,B.prototype.write=function(s){return this.addBOM&&(s="\ufeff"+s,this.addBOM=!1),this.encoder.write(s)},B.prototype.end=function(){return this.encoder.end()},A.StripBOM=a,a.prototype.write=function(s){var o=this.decoder.write(s);return this.pass||!o||("\ufeff"===o[0]&&(o=o.slice(1),"function"==typeof this.options.stripBOM&&this.options.stripBOM()),this.pass=!0),o},a.prototype.end=function(){return this.decoder.end()}},54171:function(b,A,n){"use strict";var o,B=n(16696).Buffer,a=n(52331),s=b.exports;s.encodings=null,s.defaultCharUnicode="\ufffd",s.defaultCharSingleByte="?",s.encode=function(f,w,u){f=""+(f||"");var r=s.getEncoder(w,u),d=r.write(f),E=r.end();return E&&E.length>0?B.concat([d,E]):d},s.decode=function(f,w,u){"string"==typeof f&&(s.skipDecodeWarning||(console.error("Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding"),s.skipDecodeWarning=!0),f=B.from(""+(f||""),"binary"));var r=s.getDecoder(w,u),d=r.write(f),E=r.end();return E?d+E:d},s.encodingExists=function(f){try{return s.getCodec(f),!0}catch{return!1}},s.toEncoding=s.encode,s.fromEncoding=s.decode,s._codecDataCache={},s.getCodec=function(f){s.encodings||(s.encodings=n(26326));for(var w=s._canonicalizeEncoding(f),u={};;){var r=s._codecDataCache[w];if(r)return r;var d=s.encodings[w];switch(typeof d){case"string":w=d;break;case"object":for(var E in d)u[E]=d[E];u.encodingName||(u.encodingName=w),w=d.type;break;case"function":return u.encodingName||(u.encodingName=w),r=new d(u,s),s._codecDataCache[u.encodingName]=r,r;default:throw new Error("Encoding not recognized: '"+f+"' (searched as: '"+w+"')")}}},s._canonicalizeEncoding=function(g){return(""+g).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g,"")},s.getEncoder=function(f,w){var u=s.getCodec(f),r=new u.encoder(w,u);return u.bomAware&&w&&w.addBOM&&(r=new a.PrependBOM(r,w)),r},s.getDecoder=function(f,w){var u=s.getCodec(f),r=new u.decoder(w,u);return u.bomAware&&!(w&&!1===w.stripBOM)&&(r=new a.StripBOM(r,w)),r},s.enableStreamingAPI=function(f){if(!s.supportsStreams){var w=n(34506)(f);s.IconvLiteEncoderStream=w.IconvLiteEncoderStream,s.IconvLiteDecoderStream=w.IconvLiteDecoderStream,s.encodeStream=function(r,d){return new s.IconvLiteEncoderStream(s.getEncoder(r,d),d)},s.decodeStream=function(r,d){return new s.IconvLiteDecoderStream(s.getDecoder(r,d),d)},s.supportsStreams=!0}};try{o=n(16403)}catch{}o&&o.Transform?s.enableStreamingAPI(o):s.encodeStream=s.decodeStream=function(){throw new Error("iconv-lite Streaming API is not enabled. Use iconv.enableStreamingAPI(require('stream')); to enable it.")}},34506:function(b,A,n){"use strict";var B=n(16696).Buffer;b.exports=function(a){var s=a.Transform;function o(f,w){this.conv=f,(w=w||{}).decodeStrings=!1,s.call(this,w)}function g(f,w){this.conv=f,(w=w||{}).encoding=this.encoding="utf8",s.call(this,w)}return(o.prototype=Object.create(s.prototype,{constructor:{value:o}}))._transform=function(f,w,u){if("string"!=typeof f)return u(new Error("Iconv encoding stream needs strings as its input."));try{var r=this.conv.write(f);r&&r.length&&this.push(r),u()}catch(d){u(d)}},o.prototype._flush=function(f){try{var w=this.conv.end();w&&w.length&&this.push(w),f()}catch(u){f(u)}},o.prototype.collect=function(f){var w=[];return this.on("error",f),this.on("data",function(u){w.push(u)}),this.on("end",function(){f(null,B.concat(w))}),this},(g.prototype=Object.create(s.prototype,{constructor:{value:g}}))._transform=function(f,w,u){if(!(B.isBuffer(f)||f instanceof Uint8Array))return u(new Error("Iconv decoding stream needs buffers as its input."));try{var r=this.conv.write(f);r&&r.length&&this.push(r,this.encoding),u()}catch(d){u(d)}},g.prototype._flush=function(f){try{var w=this.conv.end();w&&w.length&&this.push(w,this.encoding),f()}catch(u){f(u)}},g.prototype.collect=function(f){var w="";return this.on("error",f),this.on("data",function(u){w+=u}),this.on("end",function(){f(null,w)}),this},{IconvLiteEncoderStream:o,IconvLiteDecoderStream:g}}},89029:function(b,A){A.read=function(n,B,a,s,o){var g,f,w=8*o-s-1,u=(1<>1,d=-7,E=a?o-1:0,C=a?-1:1,e=n[B+E];for(E+=C,g=e&(1<<-d)-1,e>>=-d,d+=w;d>0;g=256*g+n[B+E],E+=C,d-=8);for(f=g&(1<<-d)-1,g>>=-d,d+=s;d>0;f=256*f+n[B+E],E+=C,d-=8);if(0===g)g=1-r;else{if(g===u)return f?NaN:1/0*(e?-1:1);f+=Math.pow(2,s),g-=r}return(e?-1:1)*f*Math.pow(2,g-s)},A.write=function(n,B,a,s,o,g){var f,w,u,r=8*g-o-1,d=(1<>1,C=23===o?Math.pow(2,-24)-Math.pow(2,-77):0,e=s?0:g-1,h=s?1:-1,Q=B<0||0===B&&1/B<0?1:0;for(B=Math.abs(B),isNaN(B)||B===1/0?(w=isNaN(B)?1:0,f=d):(f=Math.floor(Math.log(B)/Math.LN2),B*(u=Math.pow(2,-f))<1&&(f--,u*=2),(B+=f+E>=1?C/u:C*Math.pow(2,1-E))*u>=2&&(f++,u/=2),f+E>=d?(w=0,f=d):f+E>=1?(w=(B*u-1)*Math.pow(2,o),f+=E):(w=B*Math.pow(2,E-1)*Math.pow(2,o),f=0));o>=8;n[a+e]=255&w,e+=h,w/=256,o-=8);for(f=f<0;n[a+e]=255&f,e+=h,f/=256,r-=8);n[a+e-h]|=128*Q}},89784:function(b){b.exports="function"==typeof Object.create?function(n,B){B&&(n.super_=B,n.prototype=Object.create(B.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}))}:function(n,B){if(B){n.super_=B;var a=function(){};a.prototype=B.prototype,n.prototype=new a,n.prototype.constructor=n}}},67906:function(b,A,n){"use strict";var B=n(26626)(),s=n(67913)("Object.prototype.toString"),o=function(u){return!(B&&u&&"object"==typeof u&&Symbol.toStringTag in u)&&"[object Arguments]"===s(u)},g=function(u){return!!o(u)||null!==u&&"object"==typeof u&&"number"==typeof u.length&&u.length>=0&&"[object Array]"!==s(u)&&"[object Function]"===s(u.callee)},f=function(){return o(arguments)}();o.isLegacyArguments=g,b.exports=f?o:g},3746:function(b){"use strict";var B,a,A=Function.prototype.toString,n="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof n&&"function"==typeof Object.defineProperty)try{B=Object.defineProperty({},"length",{get:function(){throw a}}),a={},n(function(){throw 42},null,B)}catch(R){R!==a&&(n=null)}else n=null;var s=/^\s*class\b/,o=function(p){try{var m=A.call(p);return s.test(m)}catch{return!1}},g=function(p){try{return!o(p)&&(A.call(p),!0)}catch{return!1}},f=Object.prototype.toString,e="function"==typeof Symbol&&!!Symbol.toStringTag,h=!(0 in[,]),Q=function(){return!1};if("object"==typeof document){var I=document.all;f.call(I)===f.call(document.all)&&(Q=function(p){if((h||!p)&&(typeof p>"u"||"object"==typeof p))try{var m=f.call(p);return("[object HTMLAllCollection]"===m||"[object HTML document.all class]"===m||"[object HTMLCollection]"===m||"[object Object]"===m)&&null==p("")}catch{}return!1})}b.exports=n?function(p){if(Q(p))return!0;if(!p||"function"!=typeof p&&"object"!=typeof p)return!1;try{n(p,null,B)}catch(m){if(m!==a)return!1}return!o(p)&&g(p)}:function(p){if(Q(p))return!0;if(!p||"function"!=typeof p&&"object"!=typeof p)return!1;if(e)return g(p);if(o(p))return!1;var m=f.call(p);return!("[object Function]"!==m&&"[object GeneratorFunction]"!==m&&!/^\[object HTML/.test(m))&&g(p)}},71230:function(b,A,n){"use strict";var B=Date.prototype.getDay,s=Object.prototype.toString,g=n(26626)();b.exports=function(w){return"object"==typeof w&&null!==w&&(g?function(w){try{return B.call(w),!0}catch{return!1}}(w):"[object Date]"===s.call(w))}},44610:function(b,A,n){"use strict";var w,B=Object.prototype.toString,a=Function.prototype.toString,s=/^\s*(?:function)?\*/,o=n(26626)(),g=Object.getPrototypeOf;b.exports=function(r){if("function"!=typeof r)return!1;if(s.test(a.call(r)))return!0;if(!o)return"[object GeneratorFunction]"===B.call(r);if(!g)return!1;if(typeof w>"u"){var E=function(){if(!o)return!1;try{return Function("return function*() {}")()}catch{}}();w=!!E&&g(E)}return g(r)===w}},82621:function(b){"use strict";b.exports=function(n){return n!=n}},7051:function(b,A,n){"use strict";var B=n(26601),a=n(77802),s=n(82621),o=n(61320),g=n(35074),f=B(o(),Number);a(f,{getPolyfill:o,implementation:s,shim:g}),b.exports=f},61320:function(b,A,n){"use strict";var B=n(82621);b.exports=function(){return Number.isNaN&&Number.isNaN(NaN)&&!Number.isNaN("a")?Number.isNaN:B}},35074:function(b,A,n){"use strict";var B=n(77802),a=n(61320);b.exports=function(){var o=a();return B(Number,{isNaN:o},{isNaN:function(){return Number.isNaN!==o}}),o}},71689:function(b,A,n){"use strict";var s,o,g,f,B=n(67913),a=n(26626)();if(a){s=B("Object.prototype.hasOwnProperty"),o=B("RegExp.prototype.exec"),g={};var w=function(){throw g};f={toString:w,valueOf:w},"symbol"==typeof Symbol.toPrimitive&&(f[Symbol.toPrimitive]=w)}var u=B("Object.prototype.toString"),r=Object.getOwnPropertyDescriptor;b.exports=a?function(C){if(!C||"object"!=typeof C)return!1;var e=r(C,"lastIndex");if(!e||!s(e,"value"))return!1;try{o(C,f)}catch(Q){return Q===g}}:function(C){return!(!C||"object"!=typeof C&&"function"!=typeof C)&&"[object RegExp]"===u(C)}},46094:function(b,A,n){"use strict";var B=n(43381);b.exports=function(s){return!!B(s)}},63249:function(b){"use strict";var A=function(n){return n!=n};b.exports=function(B,a){return 0===B&&0===a?1/B==1/a:!!(B===a||A(B)&&A(a))}},98527:function(b,A,n){"use strict";var B=n(77802),a=n(26601),s=n(63249),o=n(89636),g=n(3534),f=a(o(),Object);B(f,{getPolyfill:o,implementation:s,shim:g}),b.exports=f},89636:function(b,A,n){"use strict";var B=n(63249);b.exports=function(){return"function"==typeof Object.is?Object.is:B}},3534:function(b,A,n){"use strict";var B=n(89636),a=n(77802);b.exports=function(){var o=B();return a(Object,{is:o},{is:function(){return Object.is!==o}}),o}},48461:function(b,A,n){"use strict";var B;if(!Object.keys){var a=Object.prototype.hasOwnProperty,s=Object.prototype.toString,o=n(76515),g=Object.prototype.propertyIsEnumerable,f=!g.call({toString:null},"toString"),w=g.call(function(){},"prototype"),u=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],r=function(e){var h=e.constructor;return h&&h.prototype===e},d={$applicationCache:!0,$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$onmozfullscreenchange:!0,$onmozfullscreenerror:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},E=function(){if(typeof window>"u")return!1;for(var e in window)try{if(!d["$"+e]&&a.call(window,e)&&null!==window[e]&&"object"==typeof window[e])try{r(window[e])}catch{return!0}}catch{return!0}return!1}();B=function(h){var Q=null!==h&&"object"==typeof h,I="[object Function]"===s.call(h),R=o(h),p=Q&&"[object String]"===s.call(h),m=[];if(!Q&&!I&&!R)throw new TypeError("Object.keys called on a non-object");var y=w&&I;if(p&&h.length>0&&!a.call(h,0))for(var x=0;x0)for(var Y=0;Y"u"||!E)return r(e);try{return r(e)}catch{return!1}}(h),z=0;z=0&&"[object Function]"===A.call(B.callee)),s}},36521:function(b,A,n){"use strict";var B=n(35643),a=n(12843)(),s=n(67913),o=Object,g=s("Array.prototype.push"),f=s("Object.prototype.propertyIsEnumerable"),w=a?Object.getOwnPropertySymbols:null;b.exports=function(r,d){if(null==r)throw new TypeError("target must be an object");var E=o(r);if(1===arguments.length)return E;for(var C=1;C>>16&65535,f=0;0!==a;){a-=f=a>2e3?2e3:a;do{g=g+(o=o+B[s++]|0)|0}while(--f);o%=65521,g%=65521}return o|g<<16}},81607:function(b){"use strict";b.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},99049:function(b){"use strict";var n=function A(){for(var a,s=[],o=0;o<256;o++){a=o;for(var g=0;g<8;g++)a=1&a?3988292384^a>>>1:a>>>1;s[o]=a}return s}();b.exports=function B(a,s,o,g){var f=n,w=g+o;a^=-1;for(var u=g;u>>8^f[255&(a^s[u])];return~a}},22925:function(b,A,n){"use strict";var vt,B=n(72519),a=n(22367),s=n(46911),o=n(99049),g=n(56228),f=0,r=4,E=0,e=-2,I=-1,y=4,Y=2,v=8,S=9,_=286,fA=30,iA=19,wA=2*_+1,IA=15,FA=3,YA=258,HA=YA+FA+1,BA=42,OA=113,W=666,L=1,rA=2,AA=3,QA=4;function cA(O,qA){return O.msg=g[qA],qA}function CA(O){return(O<<1)-(O>4?9:0)}function DA(O){for(var qA=O.length;--qA>=0;)O[qA]=0}function NA(O){var qA=O.state,nt=qA.pending;nt>O.avail_out&&(nt=O.avail_out),0!==nt&&(B.arraySet(O.output,qA.pending_buf,qA.pending_out,nt,O.next_out),O.next_out+=nt,qA.pending_out+=nt,O.total_out+=nt,O.avail_out-=nt,qA.pending-=nt,0===qA.pending&&(qA.pending_out=0))}function zA(O,qA){a._tr_flush_block(O,O.block_start>=0?O.block_start:-1,O.strstart-O.block_start,qA),O.block_start=O.strstart,NA(O.strm)}function pA(O,qA){O.pending_buf[O.pending++]=qA}function JA(O,qA){O.pending_buf[O.pending++]=qA>>>8&255,O.pending_buf[O.pending++]=255&qA}function ft(O,qA,nt,MA){var jA=O.avail_in;return jA>MA&&(jA=MA),0===jA?0:(O.avail_in-=jA,B.arraySet(qA,O.input,O.next_in,jA,nt),1===O.state.wrap?O.adler=s(O.adler,qA,jA,nt):2===O.state.wrap&&(O.adler=o(O.adler,qA,jA,nt)),O.next_in+=jA,O.total_in+=jA,jA)}function wt(O,qA){var jA,ot,nt=O.max_chain_length,MA=O.strstart,Tt=O.prev_length,yt=O.nice_match,Ut=O.strstart>O.w_size-HA?O.strstart-(O.w_size-HA):0,Lt=O.window,sn=O.w_mask,$t=O.prev,Kt=O.strstart+YA,Me=Lt[MA+Tt-1],ze=Lt[MA+Tt];O.prev_length>=O.good_match&&(nt>>=2),yt>O.lookahead&&(yt=O.lookahead);do{if(Lt[(jA=qA)+Tt]===ze&&Lt[jA+Tt-1]===Me&&Lt[jA]===Lt[MA]&&Lt[++jA]===Lt[MA+1]){MA+=2,jA++;do{}while(Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&Lt[++MA]===Lt[++jA]&&MATt){if(O.match_start=qA,Tt=ot,ot>=yt)break;Me=Lt[MA+Tt-1],ze=Lt[MA+Tt]}}}while((qA=$t[qA&sn])>Ut&&0!=--nt);return Tt<=O.lookahead?Tt:O.lookahead}function gt(O){var nt,MA,jA,ot,Tt,qA=O.w_size;do{if(ot=O.window_size-O.lookahead-O.strstart,O.strstart>=qA+(qA-HA)){B.arraySet(O.window,O.window,qA,qA,0),O.match_start-=qA,O.strstart-=qA,O.block_start-=qA,nt=MA=O.hash_size;do{jA=O.head[--nt],O.head[nt]=jA>=qA?jA-qA:0}while(--MA);nt=MA=qA;do{jA=O.prev[--nt],O.prev[nt]=jA>=qA?jA-qA:0}while(--MA);ot+=qA}if(0===O.strm.avail_in)break;if(MA=ft(O.strm,O.window,O.strstart+O.lookahead,ot),O.lookahead+=MA,O.lookahead+O.insert>=FA)for(O.ins_h=O.window[Tt=O.strstart-O.insert],O.ins_h=(O.ins_h<=FA&&(O.ins_h=(O.ins_h<=FA)if(MA=a._tr_tally(O,O.strstart-O.match_start,O.match_length-FA),O.lookahead-=O.match_length,O.match_length<=O.max_lazy_match&&O.lookahead>=FA){O.match_length--;do{O.strstart++,O.ins_h=(O.ins_h<=FA&&(O.ins_h=(O.ins_h<4096)&&(O.match_length=FA-1)),O.prev_length>=FA&&O.match_length<=O.prev_length){jA=O.strstart+O.lookahead-FA,MA=a._tr_tally(O,O.strstart-1-O.prev_match,O.prev_length-FA),O.lookahead-=O.prev_length-1,O.prev_length-=2;do{++O.strstart<=jA&&(O.ins_h=(O.ins_h<15&&(Tt=2,MA-=16),jA<1||jA>S||nt!==v||MA<8||MA>15||qA<0||qA>9||ot<0||ot>y)return cA(O,e);8===MA&&(MA=9);var yt=new vA;return O.state=yt,yt.strm=O,yt.wrap=Tt,yt.gzhead=null,yt.w_bits=MA,yt.w_size=1<O.pending_buf_size-5&&(nt=O.pending_buf_size-5);;){if(O.lookahead<=1){if(gt(O),0===O.lookahead&&qA===f)return L;if(0===O.lookahead)break}O.strstart+=O.lookahead,O.lookahead=0;var MA=O.block_start+nt;if((0===O.strstart||O.strstart>=MA)&&(O.lookahead=O.strstart-MA,O.strstart=MA,zA(O,!1),0===O.strm.avail_out)||O.strstart-O.block_start>=O.w_size-HA&&(zA(O,!1),0===O.strm.avail_out))return L}return O.insert=0,qA===r?(zA(O,!0),0===O.strm.avail_out?AA:QA):(O.strstart>O.block_start&&zA(O,!1),L)}),new ht(4,4,8,4,Yt),new ht(4,5,16,8,Yt),new ht(4,6,32,32,Yt),new ht(4,4,16,16,VA),new ht(8,16,32,32,VA),new ht(8,16,128,128,VA),new ht(8,32,128,256,VA),new ht(32,128,258,1024,VA),new ht(32,258,258,4096,VA)],A.deflateInit=function hA(O,qA){return U(O,qA,v,15,8,0)},A.deflateInit2=U,A.deflateReset=Z,A.deflateResetKeep=Bt,A.deflateSetHeader=function k(O,qA){return O&&O.state&&2===O.state.wrap?(O.state.gzhead=qA,E):e},A.deflate=function q(O,qA){var nt,MA,jA,ot;if(!O||!O.state||qA>5||qA<0)return O?cA(O,e):e;if(MA=O.state,!O.output||!O.input&&0!==O.avail_in||MA.status===W&&qA!==r)return cA(O,0===O.avail_out?-5:e);if(MA.strm=O,nt=MA.last_flush,MA.last_flush=qA,MA.status===BA)if(2===MA.wrap)O.adler=0,pA(MA,31),pA(MA,139),pA(MA,8),MA.gzhead?(pA(MA,(MA.gzhead.text?1:0)+(MA.gzhead.hcrc?2:0)+(MA.gzhead.extra?4:0)+(MA.gzhead.name?8:0)+(MA.gzhead.comment?16:0)),pA(MA,255&MA.gzhead.time),pA(MA,MA.gzhead.time>>8&255),pA(MA,MA.gzhead.time>>16&255),pA(MA,MA.gzhead.time>>24&255),pA(MA,9===MA.level?2:MA.strategy>=2||MA.level<2?4:0),pA(MA,255&MA.gzhead.os),MA.gzhead.extra&&MA.gzhead.extra.length&&(pA(MA,255&MA.gzhead.extra.length),pA(MA,MA.gzhead.extra.length>>8&255)),MA.gzhead.hcrc&&(O.adler=o(O.adler,MA.pending_buf,MA.pending,0)),MA.gzindex=0,MA.status=69):(pA(MA,0),pA(MA,0),pA(MA,0),pA(MA,0),pA(MA,0),pA(MA,9===MA.level?2:MA.strategy>=2||MA.level<2?4:0),pA(MA,3),MA.status=OA);else{var Tt=v+(MA.w_bits-8<<4)<<8;Tt|=(MA.strategy>=2||MA.level<2?0:MA.level<6?1:6===MA.level?2:3)<<6,0!==MA.strstart&&(Tt|=32),Tt+=31-Tt%31,MA.status=OA,JA(MA,Tt),0!==MA.strstart&&(JA(MA,O.adler>>>16),JA(MA,65535&O.adler)),O.adler=1}if(69===MA.status)if(MA.gzhead.extra){for(jA=MA.pending;MA.gzindex<(65535&MA.gzhead.extra.length)&&(MA.pending!==MA.pending_buf_size||(MA.gzhead.hcrc&&MA.pending>jA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),NA(O),jA=MA.pending,MA.pending!==MA.pending_buf_size));)pA(MA,255&MA.gzhead.extra[MA.gzindex]),MA.gzindex++;MA.gzhead.hcrc&&MA.pending>jA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),MA.gzindex===MA.gzhead.extra.length&&(MA.gzindex=0,MA.status=73)}else MA.status=73;if(73===MA.status)if(MA.gzhead.name){jA=MA.pending;do{if(MA.pending===MA.pending_buf_size&&(MA.gzhead.hcrc&&MA.pending>jA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),NA(O),jA=MA.pending,MA.pending===MA.pending_buf_size)){ot=1;break}ot=MA.gzindexjA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),0===ot&&(MA.gzindex=0,MA.status=91)}else MA.status=91;if(91===MA.status)if(MA.gzhead.comment){jA=MA.pending;do{if(MA.pending===MA.pending_buf_size&&(MA.gzhead.hcrc&&MA.pending>jA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),NA(O),jA=MA.pending,MA.pending===MA.pending_buf_size)){ot=1;break}ot=MA.gzindexjA&&(O.adler=o(O.adler,MA.pending_buf,MA.pending-jA,jA)),0===ot&&(MA.status=103)}else MA.status=103;if(103===MA.status&&(MA.gzhead.hcrc?(MA.pending+2>MA.pending_buf_size&&NA(O),MA.pending+2<=MA.pending_buf_size&&(pA(MA,255&O.adler),pA(MA,O.adler>>8&255),O.adler=0,MA.status=OA)):MA.status=OA),0!==MA.pending){if(NA(O),0===O.avail_out)return MA.last_flush=-1,E}else if(0===O.avail_in&&CA(qA)<=CA(nt)&&qA!==r)return cA(O,-5);if(MA.status===W&&0!==O.avail_in)return cA(O,-5);if(0!==O.avail_in||0!==MA.lookahead||qA!==f&&MA.status!==W){var Ut=2===MA.strategy?function Qt(O,qA){for(var nt;;){if(0===O.lookahead&&(gt(O),0===O.lookahead)){if(qA===f)return L;break}if(O.match_length=0,nt=a._tr_tally(O,0,O.window[O.strstart]),O.lookahead--,O.strstart++,nt&&(zA(O,!1),0===O.strm.avail_out))return L}return O.insert=0,qA===r?(zA(O,!0),0===O.strm.avail_out?AA:QA):O.last_lit&&(zA(O,!1),0===O.strm.avail_out)?L:rA}(MA,qA):3===MA.strategy?function _A(O,qA){for(var nt,MA,jA,ot,Tt=O.window;;){if(O.lookahead<=YA){if(gt(O),O.lookahead<=YA&&qA===f)return L;if(0===O.lookahead)break}if(O.match_length=0,O.lookahead>=FA&&O.strstart>0&&(MA=Tt[jA=O.strstart-1])===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]){ot=O.strstart+YA;do{}while(MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&MA===Tt[++jA]&&jAO.lookahead&&(O.match_length=O.lookahead)}if(O.match_length>=FA?(nt=a._tr_tally(O,1,O.match_length-FA),O.lookahead-=O.match_length,O.strstart+=O.match_length,O.match_length=0):(nt=a._tr_tally(O,0,O.window[O.strstart]),O.lookahead--,O.strstart++),nt&&(zA(O,!1),0===O.strm.avail_out))return L}return O.insert=0,qA===r?(zA(O,!0),0===O.strm.avail_out?AA:QA):O.last_lit&&(zA(O,!1),0===O.strm.avail_out)?L:rA}(MA,qA):vt[MA.level].func(MA,qA);if((Ut===AA||Ut===QA)&&(MA.status=W),Ut===L||Ut===AA)return 0===O.avail_out&&(MA.last_flush=-1),E;if(Ut===rA&&(1===qA?a._tr_align(MA):5!==qA&&(a._tr_stored_block(MA,0,0,!1),3===qA&&(DA(MA.head),0===MA.lookahead&&(MA.strstart=0,MA.block_start=0,MA.insert=0))),NA(O),0===O.avail_out))return MA.last_flush=-1,E}return qA!==r?E:MA.wrap<=0?1:(2===MA.wrap?(pA(MA,255&O.adler),pA(MA,O.adler>>8&255),pA(MA,O.adler>>16&255),pA(MA,O.adler>>24&255),pA(MA,255&O.total_in),pA(MA,O.total_in>>8&255),pA(MA,O.total_in>>16&255),pA(MA,O.total_in>>24&255)):(JA(MA,O.adler>>>16),JA(MA,65535&O.adler)),NA(O),MA.wrap>0&&(MA.wrap=-MA.wrap),0!==MA.pending?E:1)},A.deflateEnd=function GA(O){var qA;return O&&O.state?(qA=O.state.status)!==BA&&69!==qA&&73!==qA&&91!==qA&&103!==qA&&qA!==OA&&qA!==W?cA(O,e):(O.state=null,qA===OA?cA(O,-3):E):e},A.deflateSetDictionary=function At(O,qA){var MA,jA,ot,Tt,yt,Ut,Lt,sn,nt=qA.length;if(!O||!O.state||2===(Tt=(MA=O.state).wrap)||1===Tt&&MA.status!==BA||MA.lookahead)return e;for(1===Tt&&(O.adler=s(O.adler,qA,nt,0)),MA.wrap=0,nt>=MA.w_size&&(0===Tt&&(DA(MA.head),MA.strstart=0,MA.block_start=0,MA.insert=0),sn=new B.Buf8(MA.w_size),B.arraySet(sn,qA,nt-MA.w_size,MA.w_size,0),qA=sn,nt=MA.w_size),yt=O.avail_in,Ut=O.next_in,Lt=O.input,O.avail_in=nt,O.next_in=0,O.input=qA,gt(MA);MA.lookahead>=FA;){jA=MA.strstart,ot=MA.lookahead-(FA-1);do{MA.ins_h=(MA.ins_h<>>=Y=x>>>24,I-=Y,0==(Y=x>>>16&255))gA[w++]=65535&x;else{if(!(16&Y)){if(64&Y){if(32&Y){o.mode=12;break A}a.msg="invalid literal/length code",o.mode=30;break A}x=R[(65535&x)+(Q&(1<>>=Y,I-=Y),I<15&&(Q+=$[g++]<>>=Y=x>>>24,I-=Y,16&(Y=x>>>16&255)){if(S=65535&x,I<(Y&=15)&&(Q+=$[g++]<d){a.msg="invalid distance too far back",o.mode=30;break A}if(Q>>>=Y,I-=Y,S>(Y=w-u)){if((Y=S-Y)>C&&o.sane){a.msg="invalid distance too far back",o.mode=30;break A}if(z=0,F=h,0===e){if(z+=E-Y,Y2;)gA[w++]=F[z++],gA[w++]=F[z++],gA[w++]=F[z++],v-=3;v&&(gA[w++]=F[z++],v>1&&(gA[w++]=F[z++]))}else{z=w-S;do{gA[w++]=gA[z++],gA[w++]=gA[z++],gA[w++]=gA[z++],v-=3}while(v>2);v&&(gA[w++]=gA[z++],v>1&&(gA[w++]=gA[z++]))}break}if(64&Y){a.msg="invalid distance code",o.mode=30;break A}x=p[(65535&x)+(Q&(1<>3)<<3))-1,a.next_in=g-=v,a.next_out=w,a.avail_in=g>>24&255)+(U>>>8&65280)+((65280&U)<<8)+((255&U)<<24)}function ft(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new B.Buf16(320),this.work=new B.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function wt(U){var hA;return U&&U.state?(U.total_in=U.total_out=(hA=U.state).total=0,U.msg="",hA.wrap&&(U.adler=1&hA.wrap),hA.mode=y,hA.last=0,hA.havedict=0,hA.dmax=32768,hA.head=null,hA.hold=0,hA.bits=0,hA.lencode=hA.lendyn=new B.Buf32(DA),hA.distcode=hA.distdyn=new B.Buf32(NA),hA.sane=1,hA.back=-1,C):Q}function gt(U){var hA;return U&&U.state?((hA=U.state).wsize=0,hA.whave=0,hA.wnext=0,wt(U)):Q}function pt(U,hA){var q,GA;return!U||!U.state||(GA=U.state,hA<0?(q=0,hA=-hA):(q=1+(hA>>4),hA<48&&(hA&=15)),hA&&(hA<8||hA>15))?Q:(null!==GA.window&&GA.wbits!==hA&&(GA.window=null),GA.wrap=q,GA.wbits=hA,gt(U))}function Yt(U,hA){var q,GA;return U?(GA=new ft,U.state=GA,GA.window=null,(q=pt(U,hA))!==C&&(U.state=null),q):Q}var Qt,ht,_A=!0;function vt(U){if(_A){var hA;for(Qt=new B.Buf32(512),ht=new B.Buf32(32),hA=0;hA<144;)U.lens[hA++]=8;for(;hA<256;)U.lens[hA++]=9;for(;hA<280;)U.lens[hA++]=7;for(;hA<288;)U.lens[hA++]=8;for(g(w,U.lens,0,288,Qt,0,U.work,{bits:9}),hA=0;hA<32;)U.lens[hA++]=5;g(u,U.lens,0,32,ht,0,U.work,{bits:5}),_A=!1}U.lencode=Qt,U.lenbits=9,U.distcode=ht,U.distbits=5}function Nt(U,hA,q,GA){var At,O=U.state;return null===O.window&&(O.wsize=1<=O.wsize?(B.arraySet(O.window,hA,q-O.wsize,O.wsize,0),O.wnext=0,O.whave=O.wsize):((At=O.wsize-O.wnext)>GA&&(At=GA),B.arraySet(O.window,hA,q-GA,At,O.wnext),(GA-=At)?(B.arraySet(O.window,hA,q-GA,GA,0),O.wnext=GA,O.whave=O.wsize):(O.wnext+=At,O.wnext===O.wsize&&(O.wnext=0),O.whave>>8&255,q.check=s(q.check,Te,2,0),jA=0,ot=0,q.mode=2;break}if(q.flags=0,q.head&&(q.head.done=!1),!(1&q.wrap)||(((255&jA)<<8)+(jA>>8))%31){U.msg="incorrect header check",q.mode=30;break}if(8!=(15&jA)){U.msg="unknown compression method",q.mode=30;break}if(ot-=4,ee=8+(15&(jA>>>=4)),0===q.wbits)q.wbits=ee;else if(ee>q.wbits){U.msg="invalid window size",q.mode=30;break}q.dmax=1<>8&1),512&q.flags&&(Te[0]=255&jA,Te[1]=jA>>>8&255,q.check=s(q.check,Te,2,0)),jA=0,ot=0,q.mode=3;case 3:for(;ot<32;){if(0===nt)break A;nt--,jA+=GA[O++]<>>8&255,Te[2]=jA>>>16&255,Te[3]=jA>>>24&255,q.check=s(q.check,Te,4,0)),jA=0,ot=0,q.mode=4;case 4:for(;ot<16;){if(0===nt)break A;nt--,jA+=GA[O++]<>8),512&q.flags&&(Te[0]=255&jA,Te[1]=jA>>>8&255,q.check=s(q.check,Te,2,0)),jA=0,ot=0,q.mode=5;case 5:if(1024&q.flags){for(;ot<16;){if(0===nt)break A;nt--,jA+=GA[O++]<>>8&255,q.check=s(q.check,Te,2,0)),jA=0,ot=0}else q.head&&(q.head.extra=null);q.mode=6;case 6:if(1024&q.flags&&((Ut=q.length)>nt&&(Ut=nt),Ut&&(q.head&&(ee=q.head.extra_len-q.length,q.head.extra||(q.head.extra=new Array(q.head.extra_len)),B.arraySet(q.head.extra,GA,O,Ut,ee)),512&q.flags&&(q.check=s(q.check,GA,Ut,O)),nt-=Ut,O+=Ut,q.length-=Ut),q.length))break A;q.length=0,q.mode=7;case 7:if(2048&q.flags){if(0===nt)break A;Ut=0;do{ee=GA[O+Ut++],q.head&&ee&&q.length<65536&&(q.head.name+=String.fromCharCode(ee))}while(ee&&Ut>9&1,q.head.done=!0),U.adler=q.check=0,q.mode=12;break;case 10:for(;ot<32;){if(0===nt)break A;nt--,jA+=GA[O++]<>>=7&ot,ot-=7&ot,q.mode=27;break}for(;ot<3;){if(0===nt)break A;nt--,jA+=GA[O++]<>>=1)){case 0:q.mode=14;break;case 1:if(vt(q),q.mode=20,6===hA){jA>>>=2,ot-=2;break A}break;case 2:q.mode=17;break;case 3:U.msg="invalid block type",q.mode=30}jA>>>=2,ot-=2;break;case 14:for(jA>>>=7&ot,ot-=7&ot;ot<32;){if(0===nt)break A;nt--,jA+=GA[O++]<>>16^65535)){U.msg="invalid stored block lengths",q.mode=30;break}if(q.length=65535&jA,jA=0,ot=0,q.mode=15,6===hA)break A;case 15:q.mode=16;case 16:if(Ut=q.length){if(Ut>nt&&(Ut=nt),Ut>MA&&(Ut=MA),0===Ut)break A;B.arraySet(At,GA,O,Ut,qA),nt-=Ut,O+=Ut,MA-=Ut,qA+=Ut,q.length-=Ut;break}q.mode=12;break;case 17:for(;ot<14;){if(0===nt)break A;nt--,jA+=GA[O++]<>>=5)),ot-=5,q.ncode=4+(15&(jA>>>=5)),jA>>>=4,ot-=4,q.nlen>286||q.ndist>30){U.msg="too many length or distance symbols",q.mode=30;break}q.have=0,q.mode=18;case 18:for(;q.have>>=3,ot-=3}for(;q.have<19;)q.lens[In[q.have++]]=0;if(q.lencode=q.lendyn,q.lenbits=7,An=g(0,q.lens,0,19,q.lencode,0,q.work,Fe={bits:q.lenbits}),q.lenbits=Fe.bits,An){U.msg="invalid code lengths set",q.mode=30;break}q.have=0,q.mode=19;case 19:for(;q.have>>16&255,ze=65535&$t,!((Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>>=Kt,ot-=Kt,q.lens[q.have++]=ze;else{if(16===ze){for(Qe=Kt+2;ot>>=Kt,ot-=Kt,0===q.have){U.msg="invalid bit length repeat",q.mode=30;break}ee=q.lens[q.have-1],Ut=3+(3&jA),jA>>>=2,ot-=2}else if(17===ze){for(Qe=Kt+3;ot>>=Kt)),jA>>>=3,ot-=3}else{for(Qe=Kt+7;ot>>=Kt)),jA>>>=7,ot-=7}if(q.have+Ut>q.nlen+q.ndist){U.msg="invalid bit length repeat",q.mode=30;break}for(;Ut--;)q.lens[q.have++]=ee}}if(30===q.mode)break;if(0===q.lens[256]){U.msg="invalid code -- missing end-of-block",q.mode=30;break}if(q.lenbits=9,An=g(w,q.lens,0,q.nlen,q.lencode,0,q.work,Fe={bits:q.lenbits}),q.lenbits=Fe.bits,An){U.msg="invalid literal/lengths set",q.mode=30;break}if(q.distbits=6,q.distcode=q.distdyn,An=g(u,q.lens,q.nlen,q.ndist,q.distcode,0,q.work,Fe={bits:q.distbits}),q.distbits=Fe.bits,An){U.msg="invalid distances set",q.mode=30;break}if(q.mode=20,6===hA)break A;case 20:q.mode=21;case 21:if(nt>=6&&MA>=258){U.next_out=qA,U.avail_out=MA,U.next_in=O,U.avail_in=nt,q.hold=jA,q.bits=ot,o(U,yt),qA=U.next_out,At=U.output,MA=U.avail_out,O=U.next_in,GA=U.input,nt=U.avail_in,jA=q.hold,ot=q.bits,12===q.mode&&(q.back=-1);break}for(q.back=0;Me=($t=q.lencode[jA&(1<>>16&255,ze=65535&$t,!((Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>Re)])>>>16&255,ze=65535&$t,!(Re+(Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>>=Re,ot-=Re,q.back+=Re}if(jA>>>=Kt,ot-=Kt,q.back+=Kt,q.length=ze,0===Me){q.mode=26;break}if(32&Me){q.back=-1,q.mode=12;break}if(64&Me){U.msg="invalid literal/length code",q.mode=30;break}q.extra=15&Me,q.mode=22;case 22:if(q.extra){for(Qe=q.extra;ot>>=q.extra,ot-=q.extra,q.back+=q.extra}q.was=q.length,q.mode=23;case 23:for(;Me=($t=q.distcode[jA&(1<>>16&255,ze=65535&$t,!((Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>Re)])>>>16&255,ze=65535&$t,!(Re+(Kt=$t>>>24)<=ot);){if(0===nt)break A;nt--,jA+=GA[O++]<>>=Re,ot-=Re,q.back+=Re}if(jA>>>=Kt,ot-=Kt,q.back+=Kt,64&Me){U.msg="invalid distance code",q.mode=30;break}q.offset=ze,q.extra=15&Me,q.mode=24;case 24:if(q.extra){for(Qe=q.extra;ot>>=q.extra,ot-=q.extra,q.back+=q.extra}if(q.offset>q.dmax){U.msg="invalid distance too far back",q.mode=30;break}q.mode=25;case 25:if(0===MA)break A;if(q.offset>(Ut=yt-MA)){if((Ut=q.offset-Ut)>q.whave&&q.sane){U.msg="invalid distance too far back",q.mode=30;break}Lt=Ut>q.wnext?q.wsize-(Ut-=q.wnext):q.wnext-Ut,Ut>q.length&&(Ut=q.length),sn=q.window}else sn=At,Lt=qA-q.offset,Ut=q.length;Ut>MA&&(Ut=MA),MA-=Ut,q.length-=Ut;do{At[qA++]=sn[Lt++]}while(--Ut);0===q.length&&(q.mode=21);break;case 26:if(0===MA)break A;At[qA++]=q.length,MA--,q.mode=21;break;case 27:if(q.wrap){for(;ot<32;){if(0===nt)break A;nt--,jA|=GA[O++]<=1&&0===eA[z];z--);if(F>z&&(F=z),0===z)return R[p++]=20971520,R[p++]=20971520,y.bits=1,0;for(S=1;S0&&(0===e||1!==z))return-1;for(EA[1]=0,Y=1;Y852||2===e&&fA>592)return 1;for(;;){W=Y-gA,m[v]aA?(L=xA[OA+m[v]],rA=J[BA+m[v]]):(L=96,rA=0),wA=1<>gA)+(IA-=wA)]=W<<24|L<<16|rA}while(0!==IA);for(wA=1<>=1;if(0!==wA?(iA&=wA-1,iA+=wA):iA=0,v++,0==--eA[Y]){if(Y===z)break;Y=h[Q+m[v]]}if(Y>F&&(iA&YA)!==FA){for(0===gA&&(gA=F),HA+=S,_=1<<($=Y-gA);$+gA852||2===e&&fA>592)return 1;R[FA=iA&YA]=F<<24|$<<16|HA-p}}return 0!==iA&&(R[HA+iA]=4194304|Y-gA<<24),y.bits=F,0}},56228:function(b){"use strict";b.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},22367:function(b,A,n){"use strict";var B=n(72519),s=0,o=1;function f(vA){for(var Bt=vA.length;--Bt>=0;)vA[Bt]=0}var w=0,C=29,e=256,h=e+1+C,Q=30,I=19,R=2*h+1,p=15,m=16,y=7,x=256,Y=16,v=17,S=18,z=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],F=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],$=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],gA=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],fA=new Array(2*(h+2));f(fA);var iA=new Array(2*Q);f(iA);var wA=new Array(512);f(wA);var IA=new Array(256);f(IA);var FA=new Array(C);f(FA);var J,BA,aA,YA=new Array(Q);function HA(vA,Bt,Z,k,U){this.static_tree=vA,this.extra_bits=Bt,this.extra_base=Z,this.elems=k,this.max_length=U,this.has_stree=vA&&vA.length}function eA(vA,Bt){this.dyn_tree=vA,this.max_code=0,this.stat_desc=Bt}function EA(vA){return vA<256?wA[vA]:wA[256+(vA>>>7)]}function xA(vA,Bt){vA.pending_buf[vA.pending++]=255&Bt,vA.pending_buf[vA.pending++]=Bt>>>8&255}function OA(vA,Bt,Z){vA.bi_valid>m-Z?(vA.bi_buf|=Bt<>m-vA.bi_valid,vA.bi_valid+=Z-m):(vA.bi_buf|=Bt<>>=1,Z<<=1}while(--Bt>0);return Z>>>1}function QA(vA,Bt,Z){var hA,q,k=new Array(p+1),U=0;for(hA=1;hA<=p;hA++)k[hA]=U=U+Z[hA-1]<<1;for(q=0;q<=Bt;q++){var GA=vA[2*q+1];0!==GA&&(vA[2*q]=L(k[GA]++,GA))}}function cA(vA){var Bt;for(Bt=0;Bt8?xA(vA,vA.bi_buf):vA.bi_valid>0&&(vA.pending_buf[vA.pending++]=vA.bi_buf),vA.bi_buf=0,vA.bi_valid=0}function NA(vA,Bt,Z,k){var U=2*Bt,hA=2*Z;return vA[U]>1;q>=1;q--)zA(vA,Z,q);O=hA;do{q=vA.heap[1],vA.heap[1]=vA.heap[vA.heap_len--],zA(vA,Z,1),GA=vA.heap[1],vA.heap[--vA.heap_max]=q,vA.heap[--vA.heap_max]=GA,Z[2*O]=Z[2*q]+Z[2*GA],vA.depth[O]=(vA.depth[q]>=vA.depth[GA]?vA.depth[q]:vA.depth[GA])+1,Z[2*q+1]=Z[2*GA+1]=O,vA.heap[1]=O++,zA(vA,Z,1)}while(vA.heap_len>=2);vA.heap[--vA.heap_max]=vA.heap[1],function AA(vA,Bt){var O,qA,nt,MA,jA,ot,Z=Bt.dyn_tree,k=Bt.max_code,U=Bt.stat_desc.static_tree,hA=Bt.stat_desc.has_stree,q=Bt.stat_desc.extra_bits,GA=Bt.stat_desc.extra_base,At=Bt.stat_desc.max_length,Tt=0;for(MA=0;MA<=p;MA++)vA.bl_count[MA]=0;for(Z[2*vA.heap[vA.heap_max]+1]=0,O=vA.heap_max+1;OAt&&(MA=At,Tt++),Z[2*qA+1]=MA,!(qA>k)&&(vA.bl_count[MA]++,jA=0,qA>=GA&&(jA=q[qA-GA]),vA.opt_len+=(ot=Z[2*qA])*(MA+jA),hA&&(vA.static_len+=ot*(U[2*qA+1]+jA)));if(0!==Tt){do{for(MA=At-1;0===vA.bl_count[MA];)MA--;vA.bl_count[MA]--,vA.bl_count[MA+1]+=2,vA.bl_count[At]--,Tt-=2}while(Tt>0);for(MA=At;0!==MA;MA--)for(qA=vA.bl_count[MA];0!==qA;)!((nt=vA.heap[--O])>k)&&(Z[2*nt+1]!==MA&&(vA.opt_len+=(MA-Z[2*nt+1])*Z[2*nt],Z[2*nt+1]=MA),qA--)}}(vA,Bt),QA(Z,At,vA.bl_count)}function ft(vA,Bt,Z){var k,hA,U=-1,q=Bt[1],GA=0,At=7,O=4;for(0===q&&(At=138,O=3),Bt[2*(Z+1)+1]=65535,k=0;k<=Z;k++)hA=q,q=Bt[2*(k+1)+1],!(++GA>=7;k0?(2===vA.strm.data_type&&(vA.strm.data_type=function Yt(vA){var Z,Bt=4093624447;for(Z=0;Z<=31;Z++,Bt>>>=1)if(1&Bt&&0!==vA.dyn_ltree[2*Z])return s;if(0!==vA.dyn_ltree[18]||0!==vA.dyn_ltree[20]||0!==vA.dyn_ltree[26])return o;for(Z=32;Z=3&&0===vA.bl_tree[2*gA[Bt]+1];Bt--);return vA.opt_len+=3*(Bt+1)+5+5+4,Bt}(vA),(hA=vA.static_len+3+7>>>3)<=(U=vA.opt_len+3+7>>>3)&&(U=hA)):U=hA=Z+5,Z+4<=U&&-1!==Bt?Qt(vA,Bt,Z,k):4===vA.strategy||hA===U?(OA(vA,2+(k?1:0),3),pA(vA,fA,iA)):(OA(vA,4+(k?1:0),3),function pt(vA,Bt,Z,k){var U;for(OA(vA,Bt-257,5),OA(vA,Z-1,5),OA(vA,k-4,4),U=0;U>>8&255,vA.pending_buf[vA.d_buf+2*vA.last_lit+1]=255&Bt,vA.pending_buf[vA.l_buf+vA.last_lit]=255&Z,vA.last_lit++,0===Bt?vA.dyn_ltree[2*Z]++:(vA.matches++,Bt--,vA.dyn_ltree[2*(IA[Z]+e+1)]++,vA.dyn_dtree[2*EA(Bt)]++),vA.last_lit===vA.lit_bufsize-1},A._tr_align=function ht(vA){OA(vA,2,3),W(vA,x,fA),function rA(vA){16===vA.bi_valid?(xA(vA,vA.bi_buf),vA.bi_buf=0,vA.bi_valid=0):vA.bi_valid>=8&&(vA.pending_buf[vA.pending++]=255&vA.bi_buf,vA.bi_buf>>=8,vA.bi_valid-=8)}(vA)}},37468:function(b){"use strict";b.exports=function A(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},10884:function(b){"use strict";b.exports=["Float32Array","Float64Array","Int8Array","Int16Array","Int32Array","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array"]},9964:function(b){var n,B,A=b.exports={};function a(){throw new Error("setTimeout has not been defined")}function s(){throw new Error("clearTimeout has not been defined")}function o(h){if(n===setTimeout)return setTimeout(h,0);if((n===a||!n)&&setTimeout)return n=setTimeout,setTimeout(h,0);try{return n(h,0)}catch{try{return n.call(null,h,0)}catch{return n.call(this,h,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:a}catch{n=a}try{B="function"==typeof clearTimeout?clearTimeout:s}catch{B=s}}();var u,f=[],w=!1,r=-1;function d(){!w||!u||(w=!1,u.length?f=u.concat(f):r=-1,f.length&&E())}function E(){if(!w){var h=o(d);w=!0;for(var Q=f.length;Q;){for(u=f,f=[];++r1)for(var I=1;I"===AA?(_(L,"onsgmldeclaration",L.sgmlDecl),L.sgmlDecl="",L.state=F.TEXT):(Y(AA)&&(L.state=F.SGML_DECL_QUOTED),L.sgmlDecl+=AA);continue;case F.SGML_DECL_QUOTED:AA===L.q&&(L.state=F.SGML_DECL,L.q=""),L.sgmlDecl+=AA;continue;case F.DOCTYPE:">"===AA?(L.state=F.TEXT,_(L,"ondoctype",L.doctype),L.doctype=!0):(L.doctype+=AA,"["===AA?L.state=F.DOCTYPE_DTD:Y(AA)&&(L.state=F.DOCTYPE_QUOTED,L.q=AA));continue;case F.DOCTYPE_QUOTED:L.doctype+=AA,AA===L.q&&(L.q="",L.state=F.DOCTYPE);continue;case F.DOCTYPE_DTD:L.doctype+=AA,"]"===AA?L.state=F.DOCTYPE:Y(AA)&&(L.state=F.DOCTYPE_DTD_QUOTED,L.q=AA);continue;case F.DOCTYPE_DTD_QUOTED:L.doctype+=AA,AA===L.q&&(L.state=F.DOCTYPE_DTD,L.q="");continue;case F.COMMENT:"-"===AA?L.state=F.COMMENT_ENDING:L.comment+=AA;continue;case F.COMMENT_ENDING:"-"===AA?(L.state=F.COMMENT_ENDED,L.comment=iA(L.opt,L.comment),L.comment&&_(L,"oncomment",L.comment),L.comment=""):(L.comment+="-"+AA,L.state=F.COMMENT);continue;case F.COMMENT_ENDED:">"!==AA?(FA(L,"Malformed comment"),L.comment+="--"+AA,L.state=F.COMMENT):L.state=F.TEXT;continue;case F.CDATA:"]"===AA?L.state=F.CDATA_ENDING:L.cdata+=AA;continue;case F.CDATA_ENDING:"]"===AA?L.state=F.CDATA_ENDING_2:(L.cdata+="]"+AA,L.state=F.CDATA);continue;case F.CDATA_ENDING_2:">"===AA?(L.cdata&&_(L,"oncdata",L.cdata),_(L,"onclosecdata"),L.cdata="",L.state=F.TEXT):"]"===AA?L.cdata+="]":(L.cdata+="]]"+AA,L.state=F.CDATA);continue;case F.PROC_INST:"?"===AA?L.state=F.PROC_INST_ENDING:x(AA)?L.state=F.PROC_INST_BODY:L.procInstName+=AA;continue;case F.PROC_INST_BODY:if(!L.procInstBody&&x(AA))continue;"?"===AA?L.state=F.PROC_INST_ENDING:L.procInstBody+=AA;continue;case F.PROC_INST_ENDING:">"===AA?(_(L,"onprocessinginstruction",{name:L.procInstName,body:L.procInstBody}),L.procInstName=L.procInstBody="",L.state=F.TEXT):(L.procInstBody+="?"+AA,L.state=F.PROC_INST_BODY);continue;case F.OPEN_TAG:S(p,AA)?L.tagName+=AA:(YA(L),">"===AA?BA(L):"/"===AA?L.state=F.OPEN_TAG_SLASH:(x(AA)||FA(L,"Invalid character in tag name"),L.state=F.ATTRIB));continue;case F.OPEN_TAG_SLASH:">"===AA?(BA(L,!0),aA(L)):(FA(L,"Forward-slash in opening tag not followed by >"),L.state=F.ATTRIB);continue;case F.ATTRIB:if(x(AA))continue;">"===AA?BA(L):"/"===AA?L.state=F.OPEN_TAG_SLASH:S(R,AA)?(L.attribName=AA,L.attribValue="",L.state=F.ATTRIB_NAME):FA(L,"Invalid attribute name");continue;case F.ATTRIB_NAME:"="===AA?L.state=F.ATTRIB_VALUE:">"===AA?(FA(L,"Attribute without value"),L.attribValue=L.attribName,J(L),BA(L)):x(AA)?L.state=F.ATTRIB_NAME_SAW_WHITE:S(p,AA)?L.attribName+=AA:FA(L,"Invalid attribute name");continue;case F.ATTRIB_NAME_SAW_WHITE:if("="===AA)L.state=F.ATTRIB_VALUE;else{if(x(AA))continue;FA(L,"Attribute without value"),L.tag.attributes[L.attribName]="",L.attribValue="",_(L,"onattribute",{name:L.attribName,value:""}),L.attribName="",">"===AA?BA(L):S(R,AA)?(L.attribName=AA,L.state=F.ATTRIB_NAME):(FA(L,"Invalid attribute name"),L.state=F.ATTRIB)}continue;case F.ATTRIB_VALUE:if(x(AA))continue;Y(AA)?(L.q=AA,L.state=F.ATTRIB_VALUE_QUOTED):(FA(L,"Unquoted attribute value"),L.state=F.ATTRIB_VALUE_UNQUOTED,L.attribValue=AA);continue;case F.ATTRIB_VALUE_QUOTED:if(AA!==L.q){"&"===AA?L.state=F.ATTRIB_VALUE_ENTITY_Q:L.attribValue+=AA;continue}J(L),L.q="",L.state=F.ATTRIB_VALUE_CLOSED;continue;case F.ATTRIB_VALUE_CLOSED:x(AA)?L.state=F.ATTRIB:">"===AA?BA(L):"/"===AA?L.state=F.OPEN_TAG_SLASH:S(R,AA)?(FA(L,"No whitespace between attributes"),L.attribName=AA,L.attribValue="",L.state=F.ATTRIB_NAME):FA(L,"Invalid attribute name");continue;case F.ATTRIB_VALUE_UNQUOTED:if(!v(AA)){"&"===AA?L.state=F.ATTRIB_VALUE_ENTITY_U:L.attribValue+=AA;continue}J(L),">"===AA?BA(L):L.state=F.ATTRIB;continue;case F.CLOSE_TAG:if(L.tagName)">"===AA?aA(L):S(p,AA)?L.tagName+=AA:L.script?(L.script+=""===AA?aA(L):FA(L,"Invalid characters in closing tag");continue;case F.TEXT_ENTITY:case F.ATTRIB_VALUE_ENTITY_Q:case F.ATTRIB_VALUE_ENTITY_U:var cA,CA;switch(L.state){case F.TEXT_ENTITY:cA=F.TEXT,CA="textNode";break;case F.ATTRIB_VALUE_ENTITY_Q:cA=F.ATTRIB_VALUE_QUOTED,CA="attribValue";break;case F.ATTRIB_VALUE_ENTITY_U:cA=F.ATTRIB_VALUE_UNQUOTED,CA="attribValue"}if(";"===AA)if(L.opt.unparsedEntities){var DA=eA(L);L.entity="",L.state=cA,L.write(DA)}else L[CA]+=eA(L),L.entity="",L.state=cA;else S(L.entity.length?y:m,AA)?L.entity+=AA:(FA(L,"Invalid character in entity name"),L[CA]+="&"+L.entity+AA,L.entity="",L.state=cA);continue;default:throw new Error(L,"Unknown state: "+L.state)}return L.position>=L.bufferCheckPosition&&function g(W){for(var L=Math.max(a.MAX_BUFFER_LENGTH,10),rA=0,AA=0,QA=s.length;AAL)switch(s[AA]){case"textNode":fA(W);break;case"cdata":_(W,"oncdata",W.cdata),W.cdata="";break;case"script":_(W,"onscript",W.script),W.script="";break;default:wA(W,"Max buffer length exceeded: "+s[AA])}rA=Math.max(rA,yA)}W.bufferCheckPosition=a.MAX_BUFFER_LENGTH-rA+W.position}(L),L},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){!function w(W){fA(W),""!==W.cdata&&(_(W,"oncdata",W.cdata),W.cdata=""),""!==W.script&&(_(W,"onscript",W.script),W.script="")}(this)}};try{u=n(9760).Stream}catch{u=function(){}}u||(u=function(){});var r=a.EVENTS.filter(function(W){return"error"!==W&&"end"!==W});function E(W,L){if(!(this instanceof E))return new E(W,L);u.apply(this),this._parser=new o(W,L),this.writable=!0,this.readable=!0;var rA=this;this._parser.onend=function(){rA.emit("end")},this._parser.onerror=function(AA){rA.emit("error",AA),rA._parser.error=null},this._decoder=null,r.forEach(function(AA){Object.defineProperty(rA,"on"+AA,{get:function(){return rA._parser["on"+AA]},set:function(QA){if(!QA)return rA.removeAllListeners(AA),rA._parser["on"+AA]=QA,QA;rA.on(AA,QA)},enumerable:!0,configurable:!1})})}(E.prototype=Object.create(u.prototype,{constructor:{value:E}})).write=function(W){if("function"==typeof B&&"function"==typeof B.isBuffer&&B.isBuffer(W)){if(!this._decoder){var L=n(43143).I;this._decoder=new L("utf8")}W=this._decoder.write(W)}return this._parser.write(W.toString()),this.emit("data",W),!0},E.prototype.end=function(W){return W&&W.length&&this.write(W),this._parser.end(),!0},E.prototype.on=function(W,L){var rA=this;return!rA._parser["on"+W]&&-1!==r.indexOf(W)&&(rA._parser["on"+W]=function(){var AA=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);AA.splice(0,0,W),rA.emit.apply(rA,AA)}),u.prototype.on.call(rA,W,L)};var C="[CDATA[",e="DOCTYPE",h="http://www.w3.org/XML/1998/namespace",Q="http://www.w3.org/2000/xmlns/",I={xml:h,xmlns:Q},R=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,p=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/,m=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,y=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function x(W){return" "===W||"\n"===W||"\r"===W||"\t"===W}function Y(W){return'"'===W||"'"===W}function v(W){return">"===W||x(W)}function S(W,L){return W.test(L)}function z(W,L){return!S(W,L)}var W,L,rA,F=0;for(var $ in a.STATE={BEGIN:F++,BEGIN_WHITESPACE:F++,TEXT:F++,TEXT_ENTITY:F++,OPEN_WAKA:F++,SGML_DECL:F++,SGML_DECL_QUOTED:F++,DOCTYPE:F++,DOCTYPE_QUOTED:F++,DOCTYPE_DTD:F++,DOCTYPE_DTD_QUOTED:F++,COMMENT_STARTING:F++,COMMENT:F++,COMMENT_ENDING:F++,COMMENT_ENDED:F++,CDATA:F++,CDATA_ENDING:F++,CDATA_ENDING_2:F++,PROC_INST:F++,PROC_INST_BODY:F++,PROC_INST_ENDING:F++,OPEN_TAG:F++,OPEN_TAG_SLASH:F++,ATTRIB:F++,ATTRIB_NAME:F++,ATTRIB_NAME_SAW_WHITE:F++,ATTRIB_VALUE:F++,ATTRIB_VALUE_QUOTED:F++,ATTRIB_VALUE_CLOSED:F++,ATTRIB_VALUE_UNQUOTED:F++,ATTRIB_VALUE_ENTITY_Q:F++,ATTRIB_VALUE_ENTITY_U:F++,CLOSE_TAG:F++,CLOSE_TAG_SAW_WHITE:F++,SCRIPT:F++,SCRIPT_ENDING:F++},a.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},a.ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'",AElig:198,Aacute:193,Acirc:194,Agrave:192,Aring:197,Atilde:195,Auml:196,Ccedil:199,ETH:208,Eacute:201,Ecirc:202,Egrave:200,Euml:203,Iacute:205,Icirc:206,Igrave:204,Iuml:207,Ntilde:209,Oacute:211,Ocirc:212,Ograve:210,Oslash:216,Otilde:213,Ouml:214,THORN:222,Uacute:218,Ucirc:219,Ugrave:217,Uuml:220,Yacute:221,aacute:225,acirc:226,aelig:230,agrave:224,aring:229,atilde:227,auml:228,ccedil:231,eacute:233,ecirc:234,egrave:232,eth:240,euml:235,iacute:237,icirc:238,igrave:236,iuml:239,ntilde:241,oacute:243,ocirc:244,ograve:242,oslash:248,otilde:245,ouml:246,szlig:223,thorn:254,uacute:250,ucirc:251,ugrave:249,uuml:252,yacute:253,yuml:255,copy:169,reg:174,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,ordf:170,laquo:171,not:172,shy:173,macr:175,deg:176,plusmn:177,sup1:185,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,times:215,divide:247,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},Object.keys(a.ENTITIES).forEach(function(W){var L=a.ENTITIES[W],rA="number"==typeof L?String.fromCharCode(L):L;a.ENTITIES[W]=rA}),a.STATE)a.STATE[a.STATE[$]]=$;function gA(W,L,rA){W[L]&&W[L](rA)}function _(W,L,rA){W.textNode&&fA(W),gA(W,L,rA)}function fA(W){W.textNode=iA(W.opt,W.textNode),W.textNode&&gA(W,"ontext",W.textNode),W.textNode=""}function iA(W,L){return W.trim&&(L=L.trim()),W.normalize&&(L=L.replace(/\s+/g," ")),L}function wA(W,L){return fA(W),W.trackPosition&&(L+="\nLine: "+W.line+"\nColumn: "+W.column+"\nChar: "+W.c),L=new Error(L),W.error=L,gA(W,"onerror",L),W}function IA(W){return W.sawRoot&&!W.closedRoot&&FA(W,"Unclosed root tag"),W.state!==F.BEGIN&&W.state!==F.BEGIN_WHITESPACE&&W.state!==F.TEXT&&wA(W,"Unexpected end"),fA(W),W.c="",W.closed=!0,gA(W,"onend"),o.call(W,W.strict,W.opt),W}function FA(W,L){if("object"!=typeof W||!(W instanceof o))throw new Error("bad call to strictFail");W.strict&&wA(W,L)}function YA(W){W.strict||(W.tagName=W.tagName[W.looseCase]());var L=W.tags[W.tags.length-1]||W,rA=W.tag={name:W.tagName,attributes:{}};W.opt.xmlns&&(rA.ns=L.ns),W.attribList.length=0,_(W,"onopentagstart",rA)}function HA(W,L){var AA=W.indexOf(":")<0?["",W]:W.split(":"),QA=AA[0],yA=AA[1];return L&&"xmlns"===W&&(QA="xmlns",yA=""),{prefix:QA,local:yA}}function J(W){if(W.strict||(W.attribName=W.attribName[W.looseCase]()),-1!==W.attribList.indexOf(W.attribName)||W.tag.attributes.hasOwnProperty(W.attribName))W.attribName=W.attribValue="";else{if(W.opt.xmlns){var L=HA(W.attribName,!0),AA=L.local;if("xmlns"===L.prefix)if("xml"===AA&&W.attribValue!==h)FA(W,"xml: prefix must be bound to "+h+"\nActual: "+W.attribValue);else if("xmlns"===AA&&W.attribValue!==Q)FA(W,"xmlns: prefix must be bound to "+Q+"\nActual: "+W.attribValue);else{var QA=W.tag,yA=W.tags[W.tags.length-1]||W;QA.ns===yA.ns&&(QA.ns=Object.create(yA.ns)),QA.ns[AA]=W.attribValue}W.attribList.push([W.attribName,W.attribValue])}else W.tag.attributes[W.attribName]=W.attribValue,_(W,"onattribute",{name:W.attribName,value:W.attribValue});W.attribName=W.attribValue=""}}function BA(W,L){if(W.opt.xmlns){var rA=W.tag,AA=HA(W.tagName);rA.prefix=AA.prefix,rA.local=AA.local,rA.uri=rA.ns[AA.prefix]||"",rA.prefix&&!rA.uri&&(FA(W,"Unbound namespace prefix: "+JSON.stringify(W.tagName)),rA.uri=AA.prefix),rA.ns&&(W.tags[W.tags.length-1]||W).ns!==rA.ns&&Object.keys(rA.ns).forEach(function(gt){_(W,"onopennamespace",{prefix:gt,uri:rA.ns[gt]})});for(var yA=0,cA=W.attribList.length;yA",W.tagName="",void(W.state=F.SCRIPT);_(W,"onscript",W.script),W.script=""}var L=W.tags.length,rA=W.tagName;W.strict||(rA=rA[W.looseCase]());for(var AA=rA;L--&&W.tags[L].name!==AA;)FA(W,"Unexpected close tag");if(L<0)return FA(W,"Unmatched closing tag: "+W.tagName),W.textNode+="",void(W.state=F.TEXT);W.tagName=rA;for(var yA=W.tags.length;yA-- >L;){var cA=W.tag=W.tags.pop();W.tagName=W.tag.name,_(W,"onclosetag",W.tagName);var CA={};for(var DA in cA.ns)CA[DA]=cA.ns[DA];W.opt.xmlns&&cA.ns!==(W.tags[W.tags.length-1]||W).ns&&Object.keys(cA.ns).forEach(function(zA){_(W,"onclosenamespace",{prefix:zA,uri:cA.ns[zA]})})}0===L&&(W.closedRoot=!0),W.tagName=W.attribValue=W.attribName="",W.attribList.length=0,W.state=F.TEXT}function eA(W){var AA,L=W.entity,rA=L.toLowerCase(),QA="";return W.ENTITIES[L]?W.ENTITIES[L]:W.ENTITIES[rA]?W.ENTITIES[rA]:("#"===(L=rA).charAt(0)&&("x"===L.charAt(1)?(L=L.slice(2),QA=(AA=parseInt(L,16)).toString(16)):(L=L.slice(1),QA=(AA=parseInt(L,10)).toString(10))),L=L.replace(/^0+/,""),isNaN(AA)||QA.toLowerCase()!==L?(FA(W,"Invalid character entity"),"&"+W.entity+";"):String.fromCodePoint(AA))}function EA(W,L){"<"===L?(W.state=F.OPEN_WAKA,W.startTagPosition=W.position):x(L)||(FA(W,"Non-whitespace before first tag."),W.textNode=L,W.state=F.TEXT)}function xA(W,L){var rA="";return L1114111||L(zA)!==zA)throw RangeError("Invalid code point: "+zA);zA<=65535?QA.push(zA):QA.push(55296+((zA-=65536)>>10),zA%1024+56320),(CA+1===DA||QA.length>16384)&&(NA+=W.apply(null,QA),QA.length=0)}return NA},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:rA,configurable:!0,writable:!0}):String.fromCodePoint=rA)}(A)},86255:function(b,A,n){"use strict";var B=n(28651),a=n(89295),s=n(18890)(),o=n(68109),g=n(96785),f=B("%Math.floor%");b.exports=function(u,r){if("function"!=typeof u)throw new g("`fn` is not a function");if("number"!=typeof r||r<0||r>4294967295||f(r)!==r)throw new g("`length` must be a positive 32-bit integer");var d=arguments.length>2&&!!arguments[2],E=!0,C=!0;if("length"in u&&o){var e=o(u,"length");e&&!e.configurable&&(E=!1),e&&!e.writable&&(C=!1)}return(E||C||!d)&&(s?a(u,"length",r,!0,!0):a(u,"length",r)),u}},95304:function(b,A,n){"use strict";var B=n(89295),a=n(18890)(),s=n(61084).functionsHaveConfigurableNames(),o=n(96785);b.exports=function(f,w){if("function"!=typeof f)throw new o("`fn` is not a function");return(!(arguments.length>2&&arguments[2])||s)&&(a?B(f,"name",w,!0,!0):B(f,"name",w)),f}},9760:function(b,A,n){b.exports=s;var B=n(64785).EventEmitter;function s(){B.call(this)}n(89784)(s,B),s.Readable=n(88261),s.Writable=n(29781),s.Duplex=n(14903),s.Transform=n(48569),s.PassThrough=n(17723),s.finished=n(12167),s.pipeline=n(43765),s.Stream=s,s.prototype.pipe=function(o,g){var f=this;function w(h){o.writable&&!1===o.write(h)&&f.pause&&f.pause()}function u(){f.readable&&f.resume&&f.resume()}f.on("data",w),o.on("drain",u),!o._isStdio&&(!g||!1!==g.end)&&(f.on("end",d),f.on("close",E));var r=!1;function d(){r||(r=!0,o.end())}function E(){r||(r=!0,"function"==typeof o.destroy&&o.destroy())}function C(h){if(e(),0===B.listenerCount(this,"error"))throw h}function e(){f.removeListener("data",w),o.removeListener("drain",u),f.removeListener("end",d),f.removeListener("close",E),f.removeListener("error",C),o.removeListener("error",C),f.removeListener("end",e),f.removeListener("close",e),o.removeListener("close",e)}return f.on("error",C),o.on("error",C),f.on("end",e),f.on("close",e),o.on("close",e),o.emit("pipe",f),o}},83797:function(b){"use strict";var n={};function B(f,w,u){u||(u=Error);var d=function(E){function C(e,h,Q){return E.call(this,function r(E,C,e){return"string"==typeof w?w:w(E,C,e)}(e,h,Q))||this}return function A(f,w){f.prototype=Object.create(w.prototype),f.prototype.constructor=f,f.__proto__=w}(C,E),C}(u);d.prototype.name=u.name,d.prototype.code=f,n[f]=d}function a(f,w){if(Array.isArray(f)){var u=f.length;return f=f.map(function(r){return String(r)}),u>2?"one of ".concat(w," ").concat(f.slice(0,u-1).join(", "),", or ")+f[u-1]:2===u?"one of ".concat(w," ").concat(f[0]," or ").concat(f[1]):"of ".concat(w," ").concat(f[0])}return"of ".concat(w," ").concat(String(f))}B("ERR_INVALID_OPT_VALUE",function(f,w){return'The value "'+w+'" is invalid for option "'+f+'"'},TypeError),B("ERR_INVALID_ARG_TYPE",function(f,w,u){var r,d;if("string"==typeof w&&function s(f,w,u){return f.substr(!u||u<0?0:+u,w.length)===w}(w,"not ")?(r="must not be",w=w.replace(/^not /,"")):r="must be",function o(f,w,u){return(void 0===u||u>f.length)&&(u=f.length),f.substring(u-w.length,u)===w}(f," argument"))d="The ".concat(f," ").concat(r," ").concat(a(w,"type"));else{var E=function g(f,w,u){return"number"!=typeof u&&(u=0),!(u+w.length>f.length)&&-1!==f.indexOf(w,u)}(f,".")?"property":"argument";d='The "'.concat(f,'" ').concat(E," ").concat(r," ").concat(a(w,"type"))}return d+". Received type ".concat(typeof u)},TypeError),B("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),B("ERR_METHOD_NOT_IMPLEMENTED",function(f){return"The "+f+" method is not implemented"}),B("ERR_STREAM_PREMATURE_CLOSE","Premature close"),B("ERR_STREAM_DESTROYED",function(f){return"Cannot call "+f+" after a stream was destroyed"}),B("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),B("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),B("ERR_STREAM_WRITE_AFTER_END","write after end"),B("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),B("ERR_UNKNOWN_ENCODING",function(f){return"Unknown encoding: "+f},TypeError),B("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),b.exports.F=n},14903:function(b,A,n){"use strict";var B=n(9964),a=Object.keys||function(E){var C=[];for(var e in E)C.push(e);return C};b.exports=u;var s=n(88261),o=n(29781);n(89784)(u,s);for(var g=a(o.prototype),f=0;f0)if("string"!=typeof CA&&!pA.objectMode&&Object.getPrototypeOf(CA)!==f.prototype&&(CA=function u(cA){return f.from(cA)}(CA)),NA)pA.endEmitted?S(cA,new y):fA(cA,pA,CA,!0);else if(pA.ended)S(cA,new p);else{if(pA.destroyed)return!1;pA.reading=!1,pA.decoder&&!DA?(CA=pA.decoder.write(CA),pA.objectMode||0!==CA.length?fA(cA,pA,CA,!1):BA(cA,pA)):fA(cA,pA,CA,!1)}else NA||(pA.reading=!1,BA(cA,pA));return!pA.ended&&(pA.lengthCA.highWaterMark&&(CA.highWaterMark=function IA(cA){return cA>=wA?cA=wA:(cA--,cA|=cA>>>1,cA|=cA>>>2,cA|=cA>>>4,cA|=cA>>>8,cA|=cA>>>16,cA++),cA}(cA)),cA<=CA.length?cA:CA.ended?CA.length:(CA.needReadable=!0,0))}function HA(cA){var CA=cA._readableState;E("emitReadable",CA.needReadable,CA.emittedReadable),CA.needReadable=!1,CA.emittedReadable||(E("emitReadable",CA.flowing),CA.emittedReadable=!0,B.nextTick(J,cA))}function J(cA){var CA=cA._readableState;E("emitReadable_",CA.destroyed,CA.length,CA.ended),!CA.destroyed&&(CA.length||CA.ended)&&(cA.emit("readable"),CA.emittedReadable=!1),CA.needReadable=!CA.flowing&&!CA.ended&&CA.length<=CA.highWaterMark,L(cA)}function BA(cA,CA){CA.readingMore||(CA.readingMore=!0,B.nextTick(aA,cA,CA))}function aA(cA,CA){for(;!CA.reading&&!CA.ended&&(CA.length0,CA.resumeScheduled&&!CA.paused?CA.flowing=!0:cA.listenerCount("data")>0&&cA.resume()}function xA(cA){E("readable nexttick read 0"),cA.read(0)}function W(cA,CA){E("resume",CA.reading),CA.reading||cA.read(0),CA.resumeScheduled=!1,cA.emit("resume"),L(cA),CA.flowing&&!CA.reading&&cA.read(0)}function L(cA){var CA=cA._readableState;for(E("flow",CA.flowing);CA.flowing&&null!==cA.read(););}function rA(cA,CA){return 0===CA.length?null:(CA.objectMode?DA=CA.buffer.shift():!cA||cA>=CA.length?(DA=CA.decoder?CA.buffer.join(""):1===CA.buffer.length?CA.buffer.first():CA.buffer.concat(CA.length),CA.buffer.clear()):DA=CA.buffer.consume(cA,CA.decoder),DA);var DA}function AA(cA){var CA=cA._readableState;E("endReadable",CA.endEmitted),CA.endEmitted||(CA.ended=!0,B.nextTick(QA,CA,cA))}function QA(cA,CA){if(E("endReadableNT",cA.endEmitted,cA.length),!cA.endEmitted&&0===cA.length&&(cA.endEmitted=!0,CA.readable=!1,CA.emit("end"),cA.autoDestroy)){var DA=CA._writableState;(!DA||DA.autoDestroy&&DA.finished)&&CA.destroy()}}function yA(cA,CA){for(var DA=0,NA=cA.length;DA=CA.highWaterMark:CA.length>0)||CA.ended))return E("read: emitReadable",CA.length,CA.ended),0===CA.length&&CA.ended?AA(this):HA(this),null;if(0===(cA=FA(cA,CA))&&CA.ended)return 0===CA.length&&AA(this),null;var zA,NA=CA.needReadable;return E("need readable",NA),(0===CA.length||CA.length-cA0?rA(cA,CA):null)?(CA.needReadable=CA.length<=CA.highWaterMark,cA=0):(CA.length-=cA,CA.awaitDrain=0),0===CA.length&&(CA.ended||(CA.needReadable=!0),DA!==cA&&CA.ended&&AA(this)),null!==zA&&this.emit("data",zA),zA},gA.prototype._read=function(cA){S(this,new m("_read()"))},gA.prototype.pipe=function(cA,CA){var DA=this,NA=this._readableState;switch(NA.pipesCount){case 0:NA.pipes=cA;break;case 1:NA.pipes=[NA.pipes,cA];break;default:NA.pipes.push(cA)}NA.pipesCount+=1,E("pipe count=%d opts=%j",NA.pipesCount,CA);var pA=CA&&!1===CA.end||cA===B.stdout||cA===B.stderr?ht:ft;function JA(vt,Nt){E("onunpipe"),vt===DA&&Nt&&!1===Nt.hasUnpiped&&(Nt.hasUnpiped=!0,function pt(){E("cleanup"),cA.removeListener("close",_A),cA.removeListener("finish",Qt),cA.removeListener("drain",wt),cA.removeListener("error",VA),cA.removeListener("unpipe",JA),DA.removeListener("end",ft),DA.removeListener("end",ht),DA.removeListener("data",Yt),gt=!0,NA.awaitDrain&&(!cA._writableState||cA._writableState.needDrain)&&wt()}())}function ft(){E("onend"),cA.end()}NA.endEmitted?B.nextTick(pA):DA.once("end",pA),cA.on("unpipe",JA);var wt=function eA(cA){return function(){var DA=cA._readableState;E("pipeOnDrain",DA.awaitDrain),DA.awaitDrain&&DA.awaitDrain--,0===DA.awaitDrain&&o(cA,"data")&&(DA.flowing=!0,L(cA))}}(DA);cA.on("drain",wt);var gt=!1;function Yt(vt){E("ondata");var Nt=cA.write(vt);E("dest.write",Nt),!1===Nt&&((1===NA.pipesCount&&NA.pipes===cA||NA.pipesCount>1&&-1!==yA(NA.pipes,cA))&&!gt&&(E("false write response, pause",NA.awaitDrain),NA.awaitDrain++),DA.pause())}function VA(vt){E("onerror",vt),ht(),cA.removeListener("error",VA),0===o(cA,"error")&&S(cA,vt)}function _A(){cA.removeListener("finish",Qt),ht()}function Qt(){E("onfinish"),cA.removeListener("close",_A),ht()}function ht(){E("unpipe"),DA.unpipe(cA)}return DA.on("data",Yt),function F(cA,CA,DA){if("function"==typeof cA.prependListener)return cA.prependListener(CA,DA);cA._events&&cA._events[CA]?Array.isArray(cA._events[CA])?cA._events[CA].unshift(DA):cA._events[CA]=[DA,cA._events[CA]]:cA.on(CA,DA)}(cA,"error",VA),cA.once("close",_A),cA.once("finish",Qt),cA.emit("pipe",DA),NA.flowing||(E("pipe resume"),DA.resume()),cA},gA.prototype.unpipe=function(cA){var CA=this._readableState,DA={hasUnpiped:!1};if(0===CA.pipesCount)return this;if(1===CA.pipesCount)return cA&&cA!==CA.pipes||(cA||(cA=CA.pipes),CA.pipes=null,CA.pipesCount=0,CA.flowing=!1,cA&&cA.emit("unpipe",this,DA)),this;if(!cA){var NA=CA.pipes,zA=CA.pipesCount;CA.pipes=null,CA.pipesCount=0,CA.flowing=!1;for(var pA=0;pA0,!1!==NA.flowing&&this.resume()):"readable"===cA&&!NA.endEmitted&&!NA.readableListening&&(NA.readableListening=NA.needReadable=!0,NA.flowing=!1,NA.emittedReadable=!1,E("on readable",NA.length,NA.reading),NA.length?HA(this):NA.reading||B.nextTick(xA,this)),DA},gA.prototype.removeListener=function(cA,CA){var DA=g.prototype.removeListener.call(this,cA,CA);return"readable"===cA&&B.nextTick(EA,this),DA},gA.prototype.removeAllListeners=function(cA){var CA=g.prototype.removeAllListeners.apply(this,arguments);return("readable"===cA||void 0===cA)&&B.nextTick(EA,this),CA},gA.prototype.resume=function(){var cA=this._readableState;return cA.flowing||(E("resume"),cA.flowing=!cA.readableListening,function OA(cA,CA){CA.resumeScheduled||(CA.resumeScheduled=!0,B.nextTick(W,cA,CA))}(this,cA)),cA.paused=!1,this},gA.prototype.pause=function(){return E("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(E("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},gA.prototype.wrap=function(cA){var CA=this,DA=this._readableState,NA=!1;for(var zA in cA.on("end",function(){if(E("wrapped end"),DA.decoder&&!DA.ended){var JA=DA.decoder.end();JA&&JA.length&&CA.push(JA)}CA.push(null)}),cA.on("data",function(JA){E("wrapped data"),DA.decoder&&(JA=DA.decoder.write(JA)),DA.objectMode&&null==JA||!(DA.objectMode||JA&&JA.length)||CA.push(JA)||(NA=!0,cA.pause())}),cA)void 0===this[zA]&&"function"==typeof cA[zA]&&(this[zA]=function(ft){return function(){return cA[ft].apply(cA,arguments)}}(zA));for(var pA=0;pA-1))throw new Y(rA);return this._writableState.defaultEncoding=rA,this},Object.defineProperty($.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty($.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),$.prototype._write=function(L,rA,AA){AA(new I("_write()"))},$.prototype._writev=null,$.prototype.end=function(L,rA,AA){var QA=this._writableState;return"function"==typeof L?(AA=L,L=null,rA=null):"function"==typeof rA&&(AA=rA,rA=null),null!=L&&this.write(L,rA),QA.corked&&(QA.corked=1,this.uncork()),QA.ending||function OA(L,rA,AA){rA.ending=!0,xA(L,rA),AA&&(rA.finished?B.nextTick(AA):L.once("finish",AA)),rA.ended=!0,L.writable=!1}(this,QA,AA),this},Object.defineProperty($.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty($.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(rA){this._writableState&&(this._writableState.destroyed=rA)}}),$.prototype.destroy=E.destroy,$.prototype._undestroy=E.undestroy,$.prototype._destroy=function(L,rA){rA(L)}},79676:function(b,A,n){"use strict";var a,B=n(9964);function s(x,Y,v){return(Y=function o(x){var Y=function g(x,Y){if("object"!=typeof x||null===x)return x;var v=x[Symbol.toPrimitive];if(void 0!==v){var S=v.call(x,Y||"default");if("object"!=typeof S)return S;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===Y?String:Number)(x)}(x,"string");return"symbol"==typeof Y?Y:String(Y)}(Y))in x?Object.defineProperty(x,Y,{value:v,enumerable:!0,configurable:!0,writable:!0}):x[Y]=v,x}var f=n(12167),w=Symbol("lastResolve"),u=Symbol("lastReject"),r=Symbol("error"),d=Symbol("ended"),E=Symbol("lastPromise"),C=Symbol("handlePromise"),e=Symbol("stream");function h(x,Y){return{value:x,done:Y}}function Q(x){var Y=x[w];if(null!==Y){var v=x[e].read();null!==v&&(x[E]=null,x[w]=null,x[u]=null,Y(h(v,!1)))}}function I(x){B.nextTick(Q,x)}var p=Object.getPrototypeOf(function(){}),m=Object.setPrototypeOf((s(a={get stream(){return this[e]},next:function(){var Y=this,v=this[r];if(null!==v)return Promise.reject(v);if(this[d])return Promise.resolve(h(void 0,!0));if(this[e].destroyed)return new Promise(function($,gA){B.nextTick(function(){Y[r]?gA(Y[r]):$(h(void 0,!0))})});var z,S=this[E];if(S)z=new Promise(function R(x,Y){return function(v,S){x.then(function(){Y[d]?v(h(void 0,!0)):Y[C](v,S)},S)}}(S,this));else{var F=this[e].read();if(null!==F)return Promise.resolve(h(F,!1));z=new Promise(this[C])}return this[E]=z,z}},Symbol.asyncIterator,function(){return this}),s(a,"return",function(){var Y=this;return new Promise(function(v,S){Y[e].destroy(null,function(z){z?S(z):v(h(void 0,!0))})})}),a),p);b.exports=function(Y){var v,S=Object.create(m,(s(v={},e,{value:Y,writable:!0}),s(v,w,{value:null,writable:!0}),s(v,u,{value:null,writable:!0}),s(v,r,{value:null,writable:!0}),s(v,d,{value:Y._readableState.endEmitted,writable:!0}),s(v,C,{value:function(F,$){var gA=S[e].read();gA?(S[E]=null,S[w]=null,S[u]=null,F(h(gA,!1))):(S[w]=F,S[u]=$)},writable:!0}),v));return S[E]=null,f(Y,function(z){if(z&&"ERR_STREAM_PREMATURE_CLOSE"!==z.code){var F=S[u];return null!==F&&(S[E]=null,S[w]=null,S[u]=null,F(z)),void(S[r]=z)}var $=S[w];null!==$&&(S[E]=null,S[w]=null,S[u]=null,$(h(void 0,!0))),S[d]=!0}),Y.on("readable",I.bind(null,S)),S}},37385:function(b,A,n){"use strict";var B=n(9964);function s(u,r){f(u,r),o(u)}function o(u){u._writableState&&!u._writableState.emitClose||u._readableState&&!u._readableState.emitClose||u.emit("close")}function f(u,r){u.emit("error",r)}b.exports={destroy:function a(u,r){var d=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(r?r(u):u&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,B.nextTick(f,this,u)):B.nextTick(f,this,u)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(u||null,function(e){!r&&e?d._writableState?d._writableState.errorEmitted?B.nextTick(o,d):(d._writableState.errorEmitted=!0,B.nextTick(s,d,e)):B.nextTick(s,d,e):r?(B.nextTick(o,d),r(e)):B.nextTick(o,d)}),this)},undestroy:function g(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function w(u,r){var d=u._readableState,E=u._writableState;d&&d.autoDestroy||E&&E.autoDestroy?u.destroy(r):u.emit("error",r)}}},12167:function(b,A,n){"use strict";var B=n(83797).F.ERR_STREAM_PREMATURE_CLOSE;function s(){}b.exports=function g(f,w,u){if("function"==typeof w)return g(f,null,w);w||(w={}),u=function a(f){var w=!1;return function(){if(!w){w=!0;for(var u=arguments.length,r=new Array(u),d=0;d0,function(v){R||(R=v),v&&p.forEach(r),!x&&(p.forEach(r),I(R))})});return h.reduce(d)}},68130:function(b,A,n){"use strict";var B=n(83797).F.ERR_INVALID_OPT_VALUE;b.exports={getHighWaterMark:function s(o,g,f,w){var u=function a(o,g,f){return null!=o.highWaterMark?o.highWaterMark:g?o[f]:null}(g,w,f);if(null!=u){if(!isFinite(u)||Math.floor(u)!==u||u<0)throw new B(w?f:"highWaterMark",u);return Math.floor(u)}return o.objectMode?16:16384}}},99018:function(b,A,n){b.exports=n(64785).EventEmitter},43143:function(b,A,n){"use strict";var B=n(72361).Buffer,a=B.isEncoding||function(p){switch((p=""+p)&&p.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function g(p){var m;switch(this.encoding=function o(p){var m=function s(p){if(!p)return"utf8";for(var m;;)switch(p){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return p;default:if(m)return;p=(""+p).toLowerCase(),m=!0}}(p);if("string"!=typeof m&&(B.isEncoding===a||!a(p)))throw new Error("Unknown encoding: "+p);return m||p}(p),this.encoding){case"utf16le":this.text=C,this.end=e,m=4;break;case"utf8":this.fillLast=r,m=4;break;case"base64":this.text=h,this.end=Q,m=3;break;default:return this.write=I,void(this.end=R)}this.lastNeed=0,this.lastTotal=0,this.lastChar=B.allocUnsafe(m)}function f(p){return p<=127?0:p>>5==6?2:p>>4==14?3:p>>3==30?4:p>>6==2?-1:-2}function r(p){var m=this.lastTotal-this.lastNeed,y=function u(p,m,y){if(128!=(192&m[0]))return p.lastNeed=0,"\ufffd";if(p.lastNeed>1&&m.length>1){if(128!=(192&m[1]))return p.lastNeed=1,"\ufffd";if(p.lastNeed>2&&m.length>2&&128!=(192&m[2]))return p.lastNeed=2,"\ufffd"}}(this,p);return void 0!==y?y:this.lastNeed<=p.length?(p.copy(this.lastChar,m,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(p.copy(this.lastChar,m,0,p.length),void(this.lastNeed-=p.length))}function C(p,m){if((p.length-m)%2==0){var y=p.toString("utf16le",m);if(y){var x=y.charCodeAt(y.length-1);if(x>=55296&&x<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=p[p.length-2],this.lastChar[1]=p[p.length-1],y.slice(0,-1)}return y}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=p[p.length-1],p.toString("utf16le",m,p.length-1)}function e(p){var m=p&&p.length?this.write(p):"";return this.lastNeed?m+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):m}function h(p,m){var y=(p.length-m)%3;return 0===y?p.toString("base64",m):(this.lastNeed=3-y,this.lastTotal=3,1===y?this.lastChar[0]=p[p.length-1]:(this.lastChar[0]=p[p.length-2],this.lastChar[1]=p[p.length-1]),p.toString("base64",m,p.length-y))}function Q(p){var m=p&&p.length?this.write(p):"";return this.lastNeed?m+this.lastChar.toString("base64",0,3-this.lastNeed):m}function I(p){return p.toString(this.encoding)}function R(p){return p&&p.length?this.write(p):""}A.I=g,g.prototype.write=function(p){if(0===p.length)return"";var m,y;if(this.lastNeed){if(void 0===(m=this.fillLast(p)))return"";y=this.lastNeed,this.lastNeed=0}else y=0;return y=0?(Y>0&&(p.lastNeed=Y-1),Y):--x=0?(Y>0&&(p.lastNeed=Y-2),Y):--x=0?(Y>0&&(2===Y?Y=0:p.lastNeed=Y-3),Y):0}(this,p,m);if(!this.lastNeed)return p.toString("utf8",m);this.lastTotal=y;var x=p.length-(y-this.lastNeed);return p.copy(this.lastChar,0,x),p.toString("utf8",m,x)},g.prototype.fillLast=function(p){if(this.lastNeed<=p.length)return p.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);p.copy(this.lastChar,this.lastTotal-this.lastNeed,0,p.length),this.lastNeed-=p.length}},3483:function(b){var A=0,n=-3;function B(){this.table=new Uint16Array(16),this.trans=new Uint16Array(288)}function a(v,S){this.source=v,this.sourceIndex=0,this.tag=0,this.bitcount=0,this.dest=S,this.destLen=0,this.ltree=new B,this.dtree=new B}var s=new B,o=new B,g=new Uint8Array(30),f=new Uint16Array(30),w=new Uint8Array(30),u=new Uint16Array(30),r=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),d=new B,E=new Uint8Array(320);function C(v,S,z,F){var $,gA;for($=0;$>>=1,S}function R(v,S,z){if(!S)return z;for(;v.bitcount<24;)v.tag|=v.source[v.sourceIndex++]<>>16-S;return v.tag>>>=S,v.bitcount-=S,F+z}function p(v,S){for(;v.bitcount<24;)v.tag|=v.source[v.sourceIndex++]<>>=1,++$,z+=S.table[$],F-=S.table[$]}while(F>=0);return v.tag=gA,v.bitcount-=$,S.trans[z+F]}function m(v,S,z){var F,$,gA,_,fA,iA;for(F=R(v,5,257),$=R(v,5,1),gA=R(v,4,4),_=0;_<19;++_)E[_]=0;for(_=0;_8;)v.sourceIndex--,v.bitcount-=8;if((S=256*(S=v.source[v.sourceIndex+1])+v.source[v.sourceIndex])!==(65535&~(256*v.source[v.sourceIndex+3]+v.source[v.sourceIndex+2])))return n;for(v.sourceIndex+=4,F=S;F;--F)v.dest[v.destLen++]=v.source[v.sourceIndex++];return v.bitcount=0,A}(function e(v,S){var z;for(z=0;z<7;++z)v.table[z]=0;for(v.table[7]=24,v.table[8]=152,v.table[9]=112,z=0;z<24;++z)v.trans[z]=256+z;for(z=0;z<144;++z)v.trans[24+z]=z;for(z=0;z<8;++z)v.trans[168+z]=280+z;for(z=0;z<112;++z)v.trans[176+z]=144+z;for(z=0;z<5;++z)S.table[z]=0;for(S.table[5]=32,z=0;z<32;++z)S.trans[z]=z})(s,o),C(g,f,4,3),C(w,u,2,1),g[28]=0,f[28]=258,b.exports=function Y(v,S){var F,gA,z=new a(v,S);do{switch(F=I(z),R(z,2,0)){case 0:gA=x(z);break;case 1:gA=y(z,s,o);break;case 2:m(z,z.ltree,z.dtree),gA=y(z,z.ltree,z.dtree);break;default:gA=n}if(gA!==A)throw new Error("Data error")}while(!F);return z.destLen"u")&&(HA.working?HA(pA):pA instanceof ArrayBuffer)}function BA(pA){return"[object DataView]"===u(pA)}function aA(pA){return!(typeof DataView>"u")&&(BA.working?BA(pA):pA instanceof DataView)}A.isArgumentsObject=B,A.isGeneratorFunction=a,A.isTypedArray=o,A.isPromise=function Q(pA){return typeof Promise<"u"&&pA instanceof Promise||null!==pA&&"object"==typeof pA&&"function"==typeof pA.then&&"function"==typeof pA.catch},A.isArrayBufferView=function I(pA){return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?ArrayBuffer.isView(pA):o(pA)||aA(pA)},A.isUint8Array=function R(pA){return"Uint8Array"===s(pA)},A.isUint8ClampedArray=function p(pA){return"Uint8ClampedArray"===s(pA)},A.isUint16Array=function m(pA){return"Uint16Array"===s(pA)},A.isUint32Array=function y(pA){return"Uint32Array"===s(pA)},A.isInt8Array=function x(pA){return"Int8Array"===s(pA)},A.isInt16Array=function Y(pA){return"Int16Array"===s(pA)},A.isInt32Array=function v(pA){return"Int32Array"===s(pA)},A.isFloat32Array=function S(pA){return"Float32Array"===s(pA)},A.isFloat64Array=function z(pA){return"Float64Array"===s(pA)},A.isBigInt64Array=function F(pA){return"BigInt64Array"===s(pA)},A.isBigUint64Array=function $(pA){return"BigUint64Array"===s(pA)},gA.working=typeof Map<"u"&&gA(new Map),A.isMap=function _(pA){return!(typeof Map>"u")&&(gA.working?gA(pA):pA instanceof Map)},fA.working=typeof Set<"u"&&fA(new Set),A.isSet=function iA(pA){return!(typeof Set>"u")&&(fA.working?fA(pA):pA instanceof Set)},wA.working=typeof WeakMap<"u"&&wA(new WeakMap),A.isWeakMap=function IA(pA){return!(typeof WeakMap>"u")&&(wA.working?wA(pA):pA instanceof WeakMap)},FA.working=typeof WeakSet<"u"&&FA(new WeakSet),A.isWeakSet=function YA(pA){return FA(pA)},HA.working=typeof ArrayBuffer<"u"&&HA(new ArrayBuffer),A.isArrayBuffer=J,BA.working=typeof ArrayBuffer<"u"&&typeof DataView<"u"&&BA(new DataView(new ArrayBuffer(1),0,1)),A.isDataView=aA;var eA=typeof SharedArrayBuffer<"u"?SharedArrayBuffer:void 0;function EA(pA){return"[object SharedArrayBuffer]"===u(pA)}function xA(pA){return!(typeof eA>"u")&&(typeof EA.working>"u"&&(EA.working=EA(new eA)),EA.working?EA(pA):pA instanceof eA)}function QA(pA){return h(pA,r)}function yA(pA){return h(pA,d)}function cA(pA){return h(pA,E)}function CA(pA){return f&&h(pA,C)}function DA(pA){return w&&h(pA,e)}A.isSharedArrayBuffer=xA,A.isAsyncFunction=function OA(pA){return"[object AsyncFunction]"===u(pA)},A.isMapIterator=function W(pA){return"[object Map Iterator]"===u(pA)},A.isSetIterator=function L(pA){return"[object Set Iterator]"===u(pA)},A.isGeneratorObject=function rA(pA){return"[object Generator]"===u(pA)},A.isWebAssemblyCompiledModule=function AA(pA){return"[object WebAssembly.Module]"===u(pA)},A.isNumberObject=QA,A.isStringObject=yA,A.isBooleanObject=cA,A.isBigIntObject=CA,A.isSymbolObject=DA,A.isBoxedPrimitive=function NA(pA){return QA(pA)||yA(pA)||cA(pA)||CA(pA)||DA(pA)},A.isAnyArrayBuffer=function zA(pA){return typeof Uint8Array<"u"&&(J(pA)||xA(pA))},["isProxy","isExternal","isModuleNamespaceObject"].forEach(function(pA){Object.defineProperty(A,pA,{enumerable:!1,value:function(){throw new Error(pA+" is not supported in userland")}})})},7187:function(b,A,n){var B=n(9964),a=Object.getOwnPropertyDescriptors||function(eA){for(var EA=Object.keys(eA),xA={},OA=0;OA=OA)return rA;switch(rA){case"%s":return String(xA[EA++]);case"%d":return Number(xA[EA++]);case"%j":try{return JSON.stringify(xA[EA++])}catch{return"[Circular]"}default:return rA}}),L=xA[EA];EA"u")return function(){return A.deprecate(aA,eA).apply(this,arguments)};var EA=!1;return function xA(){if(!EA){if(B.throwDeprecation)throw new Error(eA);B.traceDeprecation?console.trace(eA):console.error(eA),EA=!0}return aA.apply(this,arguments)}};var o={},g=/^$/;if(B.env.NODE_DEBUG){var f=B.env.NODE_DEBUG;f=f.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase(),g=new RegExp("^"+f+"$","i")}function w(aA,eA){var EA={seen:[],stylize:r};return arguments.length>=3&&(EA.depth=arguments[2]),arguments.length>=4&&(EA.colors=arguments[3]),p(eA)?EA.showHidden=eA:eA&&A._extend(EA,eA),S(EA.showHidden)&&(EA.showHidden=!1),S(EA.depth)&&(EA.depth=2),S(EA.colors)&&(EA.colors=!1),S(EA.customInspect)&&(EA.customInspect=!0),EA.colors&&(EA.stylize=u),E(EA,aA,EA.depth)}function u(aA,eA){var EA=w.styles[eA];return EA?"\x1b["+w.colors[EA][0]+"m"+aA+"\x1b["+w.colors[EA][1]+"m":aA}function r(aA,eA){return aA}function E(aA,eA,EA){if(aA.customInspect&&eA&&_(eA.inspect)&&eA.inspect!==A.inspect&&(!eA.constructor||eA.constructor.prototype!==eA)){var xA=eA.inspect(EA,aA);return Y(xA)||(xA=E(aA,xA,EA)),xA}var OA=function C(aA,eA){if(S(eA))return aA.stylize("undefined","undefined");if(Y(eA)){var EA="'"+JSON.stringify(eA).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return aA.stylize(EA,"string")}return x(eA)?aA.stylize(""+eA,"number"):p(eA)?aA.stylize(""+eA,"boolean"):m(eA)?aA.stylize("null","null"):void 0}(aA,eA);if(OA)return OA;var W=Object.keys(eA),L=function d(aA){var eA={};return aA.forEach(function(EA,xA){eA[EA]=!0}),eA}(W);if(aA.showHidden&&(W=Object.getOwnPropertyNames(eA)),gA(eA)&&(W.indexOf("message")>=0||W.indexOf("description")>=0))return e(eA);if(0===W.length){if(_(eA))return aA.stylize("[Function"+(eA.name?": "+eA.name:"")+"]","special");if(z(eA))return aA.stylize(RegExp.prototype.toString.call(eA),"regexp");if($(eA))return aA.stylize(Date.prototype.toString.call(eA),"date");if(gA(eA))return e(eA)}var CA,AA="",QA=!1,yA=["{","}"];return R(eA)&&(QA=!0,yA=["[","]"]),_(eA)&&(AA=" [Function"+(eA.name?": "+eA.name:"")+"]"),z(eA)&&(AA=" "+RegExp.prototype.toString.call(eA)),$(eA)&&(AA=" "+Date.prototype.toUTCString.call(eA)),gA(eA)&&(AA=" "+e(eA)),0!==W.length||QA&&0!=eA.length?EA<0?z(eA)?aA.stylize(RegExp.prototype.toString.call(eA),"regexp"):aA.stylize("[Object]","special"):(aA.seen.push(eA),CA=QA?function h(aA,eA,EA,xA,OA){for(var W=[],L=0,rA=eA.length;L60?EA[0]+(""===eA?"":eA+"\n ")+" "+aA.join(",\n ")+" "+EA[1]:EA[0]+eA+" "+aA.join(", ")+" "+EA[1]}(CA,AA,yA)):yA[0]+AA+yA[1]}function e(aA){return"["+Error.prototype.toString.call(aA)+"]"}function Q(aA,eA,EA,xA,OA,W){var L,rA,AA;if((AA=Object.getOwnPropertyDescriptor(eA,OA)||{value:eA[OA]}).get?rA=aA.stylize(AA.set?"[Getter/Setter]":"[Getter]","special"):AA.set&&(rA=aA.stylize("[Setter]","special")),YA(xA,OA)||(L="["+OA+"]"),rA||(aA.seen.indexOf(AA.value)<0?(rA=m(EA)?E(aA,AA.value,null):E(aA,AA.value,EA-1)).indexOf("\n")>-1&&(rA=W?rA.split("\n").map(function(QA){return" "+QA}).join("\n").slice(2):"\n"+rA.split("\n").map(function(QA){return" "+QA}).join("\n")):rA=aA.stylize("[Circular]","special")),S(L)){if(W&&OA.match(/^\d+$/))return rA;(L=JSON.stringify(""+OA)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(L=L.slice(1,-1),L=aA.stylize(L,"name")):(L=L.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),L=aA.stylize(L,"string"))}return L+": "+rA}function R(aA){return Array.isArray(aA)}function p(aA){return"boolean"==typeof aA}function m(aA){return null===aA}function x(aA){return"number"==typeof aA}function Y(aA){return"string"==typeof aA}function S(aA){return void 0===aA}function z(aA){return F(aA)&&"[object RegExp]"===iA(aA)}function F(aA){return"object"==typeof aA&&null!==aA}function $(aA){return F(aA)&&"[object Date]"===iA(aA)}function gA(aA){return F(aA)&&("[object Error]"===iA(aA)||aA instanceof Error)}function _(aA){return"function"==typeof aA}function iA(aA){return Object.prototype.toString.call(aA)}function wA(aA){return aA<10?"0"+aA.toString(10):aA.toString(10)}A.debuglog=function(aA){if(aA=aA.toUpperCase(),!o[aA])if(g.test(aA)){var eA=B.pid;o[aA]=function(){var EA=A.format.apply(A,arguments);console.error("%s %d: %s",aA,eA,EA)}}else o[aA]=function(){};return o[aA]},A.inspect=w,w.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},w.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},A.types=n(29490),A.isArray=R,A.isBoolean=p,A.isNull=m,A.isNullOrUndefined=function y(aA){return null==aA},A.isNumber=x,A.isString=Y,A.isSymbol=function v(aA){return"symbol"==typeof aA},A.isUndefined=S,A.isRegExp=z,A.types.isRegExp=z,A.isObject=F,A.isDate=$,A.types.isDate=$,A.isError=gA,A.types.isNativeError=gA,A.isFunction=_,A.isPrimitive=function fA(aA){return null===aA||"boolean"==typeof aA||"number"==typeof aA||"string"==typeof aA||"symbol"==typeof aA||typeof aA>"u"},A.isBuffer=n(41201);var IA=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function YA(aA,eA){return Object.prototype.hasOwnProperty.call(aA,eA)}A.log=function(){console.log("%s - %s",function FA(){var aA=new Date,eA=[wA(aA.getHours()),wA(aA.getMinutes()),wA(aA.getSeconds())].join(":");return[aA.getDate(),IA[aA.getMonth()],eA].join(" ")}(),A.format.apply(A,arguments))},A.inherits=n(89784),A._extend=function(aA,eA){if(!eA||!F(eA))return aA;for(var EA=Object.keys(eA),xA=EA.length;xA--;)aA[EA[xA]]=eA[EA[xA]];return aA};var HA=typeof Symbol<"u"?Symbol("util.promisify.custom"):void 0;function J(aA,eA){if(!aA){var EA=new Error("Promise was rejected with a falsy value");EA.reason=aA,aA=EA}return eA(aA)}A.promisify=function(eA){if("function"!=typeof eA)throw new TypeError('The "original" argument must be of type Function');if(HA&&eA[HA]){var EA;if("function"!=typeof(EA=eA[HA]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(EA,HA,{value:EA,enumerable:!1,writable:!1,configurable:!0}),EA}function EA(){for(var xA,OA,W=new Promise(function(AA,QA){xA=AA,OA=QA}),L=[],rA=0;rA"u"?n.g:globalThis,r=a(),d=o("String.prototype.slice"),E=Object.getPrototypeOf,C=o("Array.prototype.indexOf",!0)||function(R,p){for(var m=0;m-1?p:"Object"===p&&function(R){var p=!1;return B(e,function(m,y){if(!p)try{m(R),p=d(y,1)}catch{}}),p}(R)}return g?function(R){var p=!1;return B(e,function(m,y){if(!p)try{"$"+m(R)===y&&(p=d(y,1))}catch{}}),p}(R):null}},52242:function(b,A,n){b.exports=n(45349)},45349:function(b,A,n){!function(){var B;if(b.exports&&!n.g.xmldocAssumeBrowser)B=n(61733);else if(!(B=this.sax))throw new Error("Expected sax to be defined. Make sure you're including sax.js before this file.");function a(m,y){if(!y){var x=w[w.length-1];x.parser&&(y=x.parser)}this.name=m.name,this.attr=m.attributes,this.val="",this.children=[],this.firstChild=null,this.lastChild=null,this.line=y?y.line:null,this.column=y?y.column:null,this.position=y?y.position:null,this.startTagPosition=y?y.startTagPosition:null}function s(m){this.text=m}function o(m){this.cdata=m}function g(m){this.comment=m}function f(m){if(m&&(m=m.toString().trim()),!m)throw new Error("No XML to parse!");this.doctype="",this.parser=B.parser(!0),function u(m){m.onopentag=r,m.onclosetag=d,m.ontext=E,m.oncdata=C,m.oncomment=e,m.ondoctype=h,m.onerror=Q}(this.parser),w=[this];try{this.parser.write(m)}finally{delete this.parser}}a.prototype._addChild=function(m){this.children.push(m),this.firstChild||(this.firstChild=m),this.lastChild=m},a.prototype._opentag=function(m){var y=new a(m);this._addChild(y),w.unshift(y)},a.prototype._closetag=function(){w.shift()},a.prototype._text=function(m){typeof this.children>"u"||(this.val+=m,this._addChild(new s(m)))},a.prototype._cdata=function(m){this.val+=m,this._addChild(new o(m))},a.prototype._comment=function(m){typeof this.children>"u"||this._addChild(new g(m))},a.prototype._error=function(m){throw m},a.prototype.eachChild=function(m,y){for(var x=0,Y=this.children.length;x1?x.attr[y[1]]:x.val},a.prototype.toString=function(m){return this.toStringWithIndent("",m)},a.prototype.toStringWithIndent=function(m,y){var x=m+"<"+this.name,Y=y&&y.compressed?"":"\n";for(var S in this.attr)Object.prototype.hasOwnProperty.call(this.attr,S)&&(x+=" "+S+'="'+R(this.attr[S])+'"');if(1===this.children.length&&"element"!==this.children[0].type)x+=">"+this.children[0].toString(y)+"";else if(this.children.length){x+=">"+Y;for(var z=m+(y&&y.compressed?"":" "),F=0,$=this.children.length;F<$;F++)x+=this.children[F].toStringWithIndent(z,y)+Y;x+=m+""}else y&&y.html?-1!==["area","base","br","col","embed","frame","hr","img","input","keygen","link","menuitem","meta","param","source","track","wbr"].indexOf(this.name)?x+="/>":x+=">":x+="/>";return x},s.prototype.toString=function(m){return p(R(this.text),m)},s.prototype.toStringWithIndent=function(m,y){return m+this.toString(y)},o.prototype.toString=function(m){return""},o.prototype.toStringWithIndent=function(m,y){return m+this.toString(y)},g.prototype.toString=function(m){return"\x3c!--"+p(R(this.comment),m)+"--\x3e"},g.prototype.toStringWithIndent=function(m,y){return m+this.toString(y)},a.prototype.type="element",s.prototype.type="text",o.prototype.type="cdata",g.prototype.type="comment",function I(m,y){for(var x in y)y.hasOwnProperty(x)&&(m[x]=y[x])}(f.prototype,a.prototype),f.prototype._opentag=function(m){typeof this.children>"u"?a.call(this,m):a.prototype._opentag.apply(this,arguments)},f.prototype._doctype=function(m){this.doctype+=m};var w=null;function r(){w[0]&&w[0]._opentag.apply(w[0],arguments)}function d(){w[0]&&w[0]._closetag.apply(w[0],arguments)}function E(){w[0]&&w[0]._text.apply(w[0],arguments)}function C(){w[0]&&w[0]._cdata.apply(w[0],arguments)}function e(){w[0]&&w[0]._comment.apply(w[0],arguments)}function h(){w[0]&&w[0]._doctype.apply(w[0],arguments)}function Q(){w[0]&&w[0]._error.apply(w[0],arguments)}function R(m){return m.toString().replace(/&/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""")}function p(m,y){var x=m;return y&&y.trimmed&&m.length>25&&(x=x.substring(0,25).trim()+"\u2026"),y&&y.preserveWhitespace||(x=x.trim()),x}b.exports&&!n.g.xmldocAssumeBrowser?(b.exports.XmlDocument=f,b.exports.XmlElement=a,b.exports.XmlTextNode=s,b.exports.XmlCDataNode=o,b.exports.XmlCommentNode=g):(this.XmlDocument=f,this.XmlElement=a,this.XmlTextNode=s,this.XmlCDataNode=o,this.XmlCommentNode=g)}()},7785:function(b,A,n){"use strict";typeof window<"u"&&!window.Promise&&n(98168),n(83043);function a(s){this.fs=s,this.resolving={}}a.prototype.resolve=function(s,o){if(!this.resolving[s]){var g=this;this.resolving[s]=new Promise(function(f,w){0===s.toLowerCase().indexOf("https://")||0===s.toLowerCase().indexOf("http://")?g.fs.existsSync(s)?f():function(s,o){return new Promise(function(g,f){var w=new XMLHttpRequest;for(var u in w.open("GET",s,!0),o)w.setRequestHeader(u,o[u]);w.responseType="arraybuffer",w.onreadystatechange=function(){4===w.readyState&&(w.status>=200&&w.status<300||setTimeout(function(){f(new TypeError('Failed to fetch (url: "'+s+'")'))},0))},w.onload=function(){w.status>=200&&w.status<300&&g(w.response)},w.onerror=function(){setTimeout(function(){f(new TypeError('Network request failed (url: "'+s+'")'))},0)},w.ontimeout=function(){setTimeout(function(){f(new TypeError('Network request failed (url: "'+s+'")'))},0)},w.send()})}(s,o).then(function(u){g.fs.writeFileSync(s,u),f()},function(u){w(u)}):f()})}return this.resolving[s]},a.prototype.resolved=function(){var s=this;return new Promise(function(o,g){Promise.all(Object.values(s.resolving)).then(function(){o()},function(f){g(f)})})},b.exports=a},45314:function(b,A,n){"use strict";var B=n(50621).Buffer,a=n(91867).isFunction,s=n(91867).isUndefined,f=(n(91867),n(44134).saveAs),w={Roboto:{normal:"Roboto-Regular.ttf",bold:"Roboto-Medium.ttf",italics:"Roboto-Italic.ttf",bolditalics:"Roboto-MediumItalic.ttf"}};function u(d,E,C,e){this.docDefinition=d,this.tableLayouts=E||null,this.fonts=C||w,this.vfs=e}u.prototype._createDoc=function(d,E){var C=function(Y){return"object"==typeof Y?{url:Y.url,headers:Y.headers}:{url:Y,headers:{}}};d=d||{},this.tableLayouts&&(d.tableLayouts=this.tableLayouts);var h=new(n(81566))(this.fonts);if(n(48181).bindFS(this.vfs),!a(E))return h.createPdfKitDocument(this.docDefinition,d);var R=new(n(7785))(n(48181));for(var p in this.fonts)if(this.fonts.hasOwnProperty(p)){if(this.fonts[p].normal)if(Array.isArray(this.fonts[p].normal)){var m=C(this.fonts[p].normal[0]);R.resolve(m.url,m.headers),this.fonts[p].normal[0]=m.url}else m=C(this.fonts[p].normal),R.resolve(m.url,m.headers),this.fonts[p].normal=m.url;this.fonts[p].bold&&(Array.isArray(this.fonts[p].bold)?(m=C(this.fonts[p].bold[0]),R.resolve(m.url,m.headers),this.fonts[p].bold[0]=m.url):(m=C(this.fonts[p].bold),R.resolve(m.url,m.headers),this.fonts[p].bold=m.url)),this.fonts[p].italics&&(Array.isArray(this.fonts[p].italics)?(m=C(this.fonts[p].italics[0]),R.resolve(m.url,m.headers),this.fonts[p].italics[0]=m.url):(m=C(this.fonts[p].italics),R.resolve(m.url,m.headers),this.fonts[p].italics=m.url)),this.fonts[p].bolditalics&&(Array.isArray(this.fonts[p].bolditalics)?(m=C(this.fonts[p].bolditalics[0]),R.resolve(m.url,m.headers),this.fonts[p].bolditalics[0]=m.url):(m=C(this.fonts[p].bolditalics),R.resolve(m.url,m.headers),this.fonts[p].bolditalics=m.url))}if(this.docDefinition.images)for(var y in this.docDefinition.images)this.docDefinition.images.hasOwnProperty(y)&&(m=C(this.docDefinition.images[y]),R.resolve(m.url,m.headers),this.docDefinition.images[y]=m.url);var x=this;R.resolved().then(function(){var Y=h.createPdfKitDocument(x.docDefinition,d);E(Y)},function(Y){throw Y})},u.prototype._flushDoc=function(d,E){var e,C=[];d.on("readable",function(){for(var h;null!==(h=d.read(9007199254740991));)C.push(h)}),d.on("end",function(){e=B.concat(C),E(e,d._pdfMakePages)}),d.end()},u.prototype._getPages=function(d,E){if(!E)throw"_getPages is an async method and needs a callback argument";var C=this;this._createDoc(d,function(e){C._flushDoc(e,function(h,Q){E(Q)})})},u.prototype._bufferToBlob=function(d){var E;try{E=new Blob([d],{type:"application/pdf"})}catch(e){if("InvalidStateError"===e.name){var C=new Uint8Array(d);E=new Blob([C.buffer],{type:"application/pdf"})}}if(!E)throw"Could not generate blob";return E},u.prototype._openWindow=function(){var d=window.open("","_blank");if(null===d)throw"Open PDF in new window blocked by browser";return d},u.prototype._openPdf=function(d,E){E||(E=this._openWindow());try{this.getBlob(function(C){var h=(window.URL||window.webkitURL).createObjectURL(C);E.location.href=h},d)}catch(C){throw E.close(),C}},u.prototype.open=function(d,E){(d=d||{}).autoPrint=!1,this._openPdf(d,E=E||null)},u.prototype.print=function(d,E){(d=d||{}).autoPrint=!0,this._openPdf(d,E=E||null)},u.prototype.download=function(d,E,C){a(d)&&(s(E)||(C=E),E=d,d=null),d=d||"file.pdf",this.getBlob(function(e){f(e,d),a(E)&&E()},C)},u.prototype.getBase64=function(d,E){if(!d)throw"getBase64 is an async method and needs a callback argument";this.getBuffer(function(C){d(C.toString("base64"))},E)},u.prototype.getDataUrl=function(d,E){if(!d)throw"getDataUrl is an async method and needs a callback argument";this.getBuffer(function(C){d("data:application/pdf;base64,"+C.toString("base64"))},E)},u.prototype.getBlob=function(d,E){if(!d)throw"getBlob is an async method and needs a callback argument";var C=this;this.getBuffer(function(e){var h=C._bufferToBlob(e);d(h)},E)},u.prototype.getBuffer=function(d,E){if(!d)throw"getBuffer is an async method and needs a callback argument";var C=this;this._createDoc(E,function(e){C._flushDoc(e,function(h){d(h)})})},u.prototype.getStream=function(d,E){if(!a(E))return this._createDoc(d);this._createDoc(d,function(e){E(e)})},b.exports={createPdf:function(d,E,C,e){if(!function r(){try{var d=new Uint8Array(1),E={foo:function(){return 42}};return Object.setPrototypeOf(E,Uint8Array.prototype),Object.setPrototypeOf(d,E),42===d.foo()}catch{return!1}}())throw"Your browser does not provide the level of support needed";return new u(d,E||n.g.pdfMake.tableLayouts,C||n.g.pdfMake.fonts,e||n.g.pdfMake.vfs)}}},48181:function(b,A,n){"use strict";var a=n(50621).Buffer;function s(){this.fileSystem={},this.dataSystem={}}function o(g){return 0===g.indexOf("/")&&(g=g.substring(1)),0===g.indexOf("/")&&(g=g.substring(1)),g}s.prototype.existsSync=function(g){return g=o(g),typeof this.fileSystem[g]<"u"||typeof this.dataSystem[g]<"u"},s.prototype.readFileSync=function(g,f){g=o(g);var w=this.dataSystem[g];if("string"==typeof w&&"utf8"===f)return w;if(w)return new a(w,"string"==typeof w?"base64":void 0);var u=this.fileSystem[g];if(u)return u;throw"File '"+g+"' not found in virtual file system"},s.prototype.writeFileSync=function(g,f){this.fileSystem[o(g)]=f},s.prototype.bindFS=function(g){this.dataSystem=g||{}},b.exports=new s},77530:function(b,A,n){"use strict";var B=n(91867).isString;function s(f){return"auto"===f.width}function o(f){return null==f.width||"*"===f.width||"star"===f.width}b.exports={buildColumnWidths:function a(f,w){var u=[],r=0,d=0,E=[],C=0,e=0,h=[],Q=w;f.forEach(function(x){s(x)?(u.push(x),r+=x._minWidth,d+=x._maxWidth):o(x)?(E.push(x),C=Math.max(C,x._minWidth),e=Math.max(e,x._maxWidth)):h.push(x)}),h.forEach(function(x){B(x.width)&&/\d+%/.test(x.width)&&(x.width=parseFloat(x.width)*Q/100),x._calcWidth=x.width=w)u.forEach(function(x){x._calcWidth=x._minWidth}),E.forEach(function(x){x._calcWidth=C});else{if(R0){var y=w/E.length;E.forEach(function(x){x._calcWidth=y})}}},measureMinMax:function g(f){for(var w={min:0,max:0},u={min:0,max:0},r=0,d=0,E=f.length;d=0;z--){var $=h.styleStack.styleDictionary[v[z]];for(var gA in $)$.hasOwnProperty(gA)&&(S[gA]=$[gA])}return S}function m(v){return g(v)?v=[v,v,v,v]:w(v)&&2===v.length&&(v=[v[0],v[1],v[0],v[1]]),v}var y=[void 0,void 0,void 0,void 0];if(e.style){var Y=p(w(e.style)?e.style:[e.style]);Y&&(y=R(Y,y)),Y.margin&&(y=m(Y.margin))}return y=R(e,y),e.margin&&(y=m(e.margin)),void 0===y[0]&&void 0===y[1]&&void 0===y[2]&&void 0===y[3]?null:y}(),e.columns)return Q(h.measureColumns(e));if(e.stack)return Q(h.measureVerticalContainer(e));if(e.ul)return Q(h.measureUnorderedList(e));if(e.ol)return Q(h.measureOrderedList(e));if(e.table)return Q(h.measureTable(e));if(void 0!==e.text)return Q(h.measureLeaf(e));if(e.toc)return Q(h.measureToc(e));if(e.image)return Q(h.measureImage(e));if(e.svg)return Q(h.measureSVG(e));if(e.canvas)return Q(h.measureCanvas(e));if(e.qr)return Q(h.measureQr(e));throw"Unrecognized document structure: "+JSON.stringify(e,u)});function Q(R){var p=R._margin;return p&&(R._minWidth+=p[0]+p[2],R._maxWidth+=p[0]+p[2]),R}},C.prototype.convertIfBase64Image=function(e){if(/^data:image\/(jpeg|jpg|png);base64,/.test(e.image)){var h="$$pdfmake$$"+this.autoImageIndex++;this.images[h]=e.image,e.image=h}},C.prototype.measureImageWithDimensions=function(e,h){if(e.fit){var Q=h.width/h.height>e.fit[0]/e.fit[1]?e.fit[0]/h.width:e.fit[1]/h.height;e._width=e._minWidth=e._maxWidth=h.width*Q,e._height=h.height*Q}else e.cover?(e._width=e._minWidth=e._maxWidth=e.cover.width,e._height=e._minHeight=e._maxHeight=e.cover.height):(e._width=e._minWidth=e._maxWidth=e.width||h.width,e._height=e.height||h.height*e._width/h.width,g(e.maxWidth)&&e.maxWidthe._width&&(e._width=e._minWidth=e._maxWidth=e.minWidth,e._height=e._width*h.height/h.width),g(e.minHeight)&&e.minHeight>e._height&&(e._height=e.minHeight,e._width=e._minWidth=e._maxWidth=e._height*h.width/h.height));e._alignment=this.styleStack.getProperty("alignment")},C.prototype.measureImage=function(e){this.images&&this.convertIfBase64Image(e);var h=this.imageMeasure.measureImage(e.image);return this.measureImageWithDimensions(e,h),e},C.prototype.measureSVG=function(e){var h=this.svgMeasure.measureSVG(e.svg);return this.measureImageWithDimensions(e,h),e.font=this.styleStack.getProperty("font"),e.svg=this.svgMeasure.writeDimensions(e.svg,{width:e._width,height:e._height}),e},C.prototype.measureLeaf=function(e){e._textRef&&e._textRef._textNodeRef.text&&(e.text=e._textRef._textNodeRef.text);var h=this.styleStack.clone();h.push(e);var Q=this.textTools.buildInlines(e.text,h);return e._inlines=Q.items,e._minWidth=Q.minWidth,e._maxWidth=Q.maxWidth,e},C.prototype.measureToc=function(e){if(e.toc.title&&(e.toc.title=this.measureNode(e.toc.title)),e.toc._items.length>0){for(var h=[],Q=e.toc.textStyle||{},I=e.toc.numberStyle||Q,R=e.toc.textMargin||[0,0,0,0],p=0,m=e.toc._items.length;p=26?S((z/26|0)-1):"")+"abcdefghijklmnopqrstuvwxyz"[z%26|0]}(v-1)}function p(v){if(v<1||v>4999)return v.toString();var $,S=v,z={M:1e3,CM:900,D:500,CD:400,C:100,XC:90,L:50,XL:40,X:10,IX:9,V:5,IV:4,I:1},F="";for($ in z)for(;S>=z[$];)F+=$,S-=z[$];return F}var y;switch(Q){case"none":y=null;break;case"upper-alpha":y=R(e).toUpperCase();break;case"lower-alpha":y=R(e);break;case"upper-roman":y=p(e);break;case"lower-roman":y=p(e).toLowerCase();break;default:y=function m(v){return v.toString()}(e)}if(null===y)return{};I&&(w(I)?(I[0]&&(y=I[0]+y),I[1]&&(y+=I[1]),y+=" "):y+=I+" ");var x={text:y},Y=h.getProperty("markerColor");return Y&&(x.color=Y),{_inlines:this.textTools.buildInlines(x,h).items}},C.prototype.measureUnorderedList=function(e){var h=this.styleStack.clone(),Q=e.ul;e.type=e.type||"disc",e._gapSize=this.gapSizeForList(),e._minWidth=0,e._maxWidth=0;for(var I=0,R=Q.length;I0?h.length-1:0;return e._minWidth=R.min+e._gap*p,e._maxWidth=R.max+e._gap*p,e},C.prototype.measureTable=function(e){(function fA(iA){if(iA.table.widths||(iA.table.widths="auto"),o(iA.table.widths))for(iA.table.widths=[iA.table.widths];iA.table.widths.length1?(gA(y,Q,x.colSpan),h.push({col:Q,span:x.colSpan,minWidth:x._minWidth,maxWidth:x._maxWidth})):(m._minWidth=Math.max(m._minWidth,x._minWidth),m._maxWidth=Math.max(m._maxWidth,x._maxWidth))),x.rowSpan&&x.rowSpan>1&&_(e.table,I,Q,x.rowSpan)}}!function F(){for(var iA,wA,IA=0,FA=h.length;IA0)for(iA=J/YA.span,wA=0;wA0)for(iA=BA/YA.span,wA=0;wAu.page?w:u.page>w.page?u:w.y>u.y?w:u).page,x:r.x,y:r.y,availableHeight:r.availableHeight,availableWidth:r.availableWidth}}(this,w.bottomMost)},s.prototype.markEnding=function(w){this.page=w._columnEndingContext.page,this.x=w._columnEndingContext.x,this.y=w._columnEndingContext.y,this.availableWidth=w._columnEndingContext.availableWidth,this.availableHeight=w._columnEndingContext.availableHeight,this.lastColumnWidth=w._columnEndingContext.lastColumnWidth},s.prototype.saveContextInEndingCell=function(w){w._columnEndingContext={page:this.page,x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,lastColumnWidth:this.lastColumnWidth}},s.prototype.completeColumnGroup=function(w){var u=this.snapshots.pop();this.calculateBottomMost(u),this.endingCell=null,this.x=u.x;var r=u.bottomMost.y;w&&(u.page===u.bottomMost.page?u.y+w>r&&(r=u.y+w):r+=w),this.y=r,this.page=u.bottomMost.page,this.availableWidth=u.availableWidth,this.availableHeight=u.bottomMost.availableHeight,w&&(this.availableHeight-=r-u.bottomMost.y),this.lastColumnWidth=u.lastColumnWidth},s.prototype.addMargin=function(w,u){this.x+=w,this.availableWidth-=w+(u||0)},s.prototype.moveDown=function(w){return this.y+=w,this.availableHeight-=w,this.availableHeight>0},s.prototype.initializePage=function(){this.y=this.pageMargins.top,this.availableHeight=this.getCurrentPage().pageSize.height-this.pageMargins.top-this.pageMargins.bottom,this.pageSnapshot().availableWidth=this.getCurrentPage().pageSize.width-this.pageMargins.left-this.pageMargins.right},s.prototype.pageSnapshot=function(){return this.snapshots[0]?this.snapshots[0]:this},s.prototype.moveTo=function(w,u){null!=w&&(this.x=w,this.availableWidth=this.getCurrentPage().pageSize.width-this.x-this.pageMargins.right),null!=u&&(this.y=u,this.availableHeight=this.getCurrentPage().pageSize.height-this.y-this.pageMargins.bottom)},s.prototype.moveToRelative=function(w,u){null!=w&&(this.x=this.x+w),null!=u&&(this.y=this.y+u)},s.prototype.beginDetachedBlock=function(){this.snapshots.push({x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,page:this.page,endingCell:this.endingCell,lastColumnWidth:this.lastColumnWidth})},s.prototype.endDetachedBlock=function(){var w=this.snapshots.pop();this.x=w.x,this.y=w.y,this.availableWidth=w.availableWidth,this.availableHeight=w.availableHeight,this.page=w.page,this.endingCell=w.endingCell,this.lastColumnWidth=w.lastColumnWidth};var g=function(w,u){return(u=function o(w,u){return void 0===w?u:a(w)&&"landscape"===w.toLowerCase()?"landscape":"portrait"}(u,w.pageSize.orientation))!==w.pageSize.orientation?{orientation:u,width:w.pageSize.height,height:w.pageSize.width}:{orientation:w.pageSize.orientation,width:w.pageSize.width,height:w.pageSize.height}};s.prototype.moveToNextPage=function(w){var u=this.page+1,r=this.page,d=this.y,E=u>=this.pages.length;if(E){var C=this.availableWidth,e=this.getCurrentPage().pageSize.orientation,h=g(this.getCurrentPage(),w);this.addPage(h),e===h.orientation&&(this.availableWidth=C)}else this.page=u,this.initializePage();return{newPageCreated:E,prevPage:r,prevY:d,y:this.y}},s.prototype.addPage=function(w){var u={items:[],pageSize:w};return this.pages.push(u),this.backgroundLength.push(0),this.page=this.pages.length-1,this.initializePage(),this.tracker.emit("pageAdded"),u},s.prototype.getCurrentPage=function(){return this.page<0||this.page>=this.pages.length?null:this.pages[this.page]},s.prototype.getCurrentPosition=function(){var w=this.getCurrentPage().pageSize,u=w.height-this.pageMargins.top-this.pageMargins.bottom,r=w.width-this.pageMargins.left-this.pageMargins.right;return{pageNumber:this.page+1,pageOrientation:w.orientation,pageInnerHeight:u,pageInnerWidth:r,left:this.x,top:this.y,verticalRatio:(this.y-this.pageMargins.top)/u,horizontalRatio:(this.x-this.pageMargins.left)/r}},b.exports=s},54861:function(b,A,n){"use strict";var B=n(70770),a=n(91867).isNumber,s=n(91867).pack,o=n(91867).offsetVector,g=n(79178);function f(r,d){this.context=r,this.contextStack=[],this.tracker=d}function w(r,d,E){null==E||E<0||E>r.items.length?r.items.push(d):r.items.splice(E,0,d)}f.prototype.addLine=function(r,d,E){var C=r.getHeight(),e=this.context,h=e.getCurrentPage(),Q=this.getCurrentPositionOnPage();return!(e.availableHeight0&&r.inlines[0].alignment,e=0;switch(C){case"right":e=d-E;break;case"center":e=(d-E)/2}if(e&&(r.x=(r.x||0)+e),"justify"===C&&!r.newLineForced&&!r.lastLineInParagraph&&r.inlines.length>1)for(var h=(d-E)/(r.inlines.length-1),Q=1,I=r.inlines.length;Q0)&&(void 0===r._x&&(r._x=r.x||0),r.x=C.x+r._x,r.y=C.y,this.alignImage(r),w(e,{type:E||"image",item:r},d),C.moveDown(r._height),h)},f.prototype.addSVG=function(r,d){return this.addImage(r,d,"svg")},f.prototype.addQr=function(r,d){var E=this.context,C=E.getCurrentPage(),e=this.getCurrentPositionOnPage();if(!C||void 0===r.absolutePosition&&E.availableHeighte.availableHeight||(r.items.forEach(function(Q){switch(Q.type){case"line":var I=function u(r){var d=new B(r.maxWidth);for(var E in r)r.hasOwnProperty(E)&&(d[E]=r[E]);return d}(Q.item);I._node&&(I._node.positions[0].pageNumber=e.page+1),I.x=(I.x||0)+(d?r.xOffset||0:e.x),I.y=(I.y||0)+(E?r.yOffset||0:e.y),h.items.push({type:"line",item:I});break;case"vector":var R=s(Q.item);o(R,d?r.xOffset||0:e.x,E?r.yOffset||0:e.y),h.items.push({type:"vector",item:R});break;case"image":case"svg":var p=s(Q.item);p.x=(p.x||0)+(d?r.xOffset||0:e.x),p.y=(p.y||0)+(E?r.yOffset||0:e.y),h.items.push({type:Q.type,item:p})}}),C||e.moveDown(r.height),0))},f.prototype.pushContext=function(r,d){void 0===r&&(d=this.context.getCurrentPage().height-this.context.pageMargins.top-this.context.pageMargins.bottom,r=this.context.availableWidth),a(r)&&(r=new g({width:r,height:d},{left:0,right:0,top:0,bottom:0})),this.contextStack.push(this.context),this.context=r},f.prototype.popContext=function(){this.context=this.contextStack.pop()},f.prototype.getCurrentPositionOnPage=function(){return(this.contextStack[0]||this.context).getCurrentPosition()},b.exports=f},28284:function(b,A,n){"use strict";var B=n(91867).isArray;function s(o,g){for(var f in this.fonts={},this.pdfKitDoc=g,this.fontCache={},o)if(o.hasOwnProperty(f)){var w=o[f];this.fonts[f]={normal:w.normal,bold:w.bold,italics:w.italics,bolditalics:w.bolditalics}}}s.prototype.getFontType=function(o,g){return function a(o,g){var f="normal";return o&&g?f="bolditalics":o?f="bold":g&&(f="italics"),f}(o,g)},s.prototype.getFontFile=function(o,g,f){var w=this.getFontType(g,f);return this.fonts[o]&&this.fonts[o][w]?this.fonts[o][w]:null},s.prototype.provideFont=function(o,g,f){var w=this.getFontType(g,f);if(null===this.getFontFile(o,g,f))throw new Error("Font '"+o+"' in style '"+w+"' is not defined in the font section of the document definition.");if(this.fontCache[o]=this.fontCache[o]||{},!this.fontCache[o][w]){var u=this.fonts[o][w];B(u)||(u=[u]),this.fontCache[o][w]=this.pdfKitDoc.font.apply(this.pdfKitDoc,u)._font}return this.fontCache[o][w]},b.exports=s},91867:function(b){"use strict";function a(e){return Array.isArray(e)}b.exports={isString:function A(e){return"string"==typeof e||e instanceof String},isNumber:function n(e){return"number"==typeof e||e instanceof Number},isBoolean:function B(e){return"boolean"==typeof e},isArray:a,isFunction:function s(e){return"function"==typeof e},isObject:function o(e){return null!==e&&"object"==typeof e},isNull:function g(e){return null===e},isUndefined:function f(e){return void 0===e},pack:function w(){for(var e={},h=0,Q=arguments.length;h0})).forEach(function(AA){var QA={};["id","text","ul","ol","table","image","qr","canvas","svg","columns","headlineLevel","style","pageBreak","pageOrientation","width","height"].forEach(function(yA){void 0!==AA[yA]&&(QA[yA]=AA[yA])}),QA.startPosition=AA.positions[0],QA.pageNumbers=Array.from(new Set(AA.positions.map(function(yA){return yA.pageNumber}))),QA.pages=BA.length,QA.stack=d(AA.stack),AA.nodeInfo=QA});for(var aA=0;aA1)for(var L=aA+1,rA=J.length;L-1&&xA.push(J[L].nodeInfo),IA.length>2&&J[L].nodeInfo.pageNumbers.indexOf(EA+1)>-1&&OA.push(J[L].nodeInfo);if(IA.length>3)for(L=0;L-1&&W.push(J[L].nodeInfo);if(IA(eA.nodeInfo,xA,OA,W))return eA.pageBreak="before",!0}}return!1}this.docPreprocessor=new a,this.docMeasure=new s(z,F,$,this.imageMeasure,this.svgMeasure,this.tableLayouts,iA);for(var HA=this.tryLayoutDocument(S,z,F,$,gA,_,fA,iA,wA);FA(HA.linearNodeList,HA.pages);)HA.linearNodeList.forEach(function(BA){BA.resetXY()}),HA=this.tryLayoutDocument(S,z,F,$,gA,_,fA,iA,wA);return HA.pages},Y.prototype.tryLayoutDocument=function(S,z,F,$,gA,_,fA,iA,wA,IA){this.linearNodeList=[],S=this.docPreprocessor.preprocessDocument(S),S=this.docMeasure.measureDocument(S),this.writer=new g(new o(this.pageSize,this.pageMargins),this.tracker);var FA=this;return this.writer.context().tracker.startTracking("pageAdded",function(){FA.addBackground(gA)}),this.addBackground(gA),this.processNode(S),this.addHeadersAndFooters(_,fA),null!=wA&&this.addWatermark(wA,z,$),{pages:this.writer.context().pages,linearNodeList:this.linearNodeList}},Y.prototype.addBackground=function(S){var z=R(S)?S:function(){return S},F=this.writer.context(),$=F.getCurrentPage().pageSize,gA=z(F.page+1,$);gA&&(this.writer.beginUnbreakableBlock($.width,$.height),gA=this.docPreprocessor.preprocessDocument(gA),this.processNode(this.docMeasure.measureDocument(gA)),this.writer.commitUnbreakableBlock(0,0),F.backgroundLength[F.page]+=gA.positions.length)},Y.prototype.addStaticRepeatable=function(S,z){this.addDynamicRepeatable(function(){return JSON.parse(JSON.stringify(S))},z)},Y.prototype.addDynamicRepeatable=function(S,z){for(var $=0,gA=this.writer.context().pages.length;$1;)J.push({fontSize:EA}),(BA=HA.sizeOfRotatedText(FA.text,FA.angle,J)).width>IA.width?EA=(aA+(eA=EA))/2:BA.widthIA.height?(aA+(eA=EA))/2:((aA=EA)+eA)/2),J.pop();return EA}(this.pageSize,S,z));var $={text:S.text,font:z.provideFont(S.font,S.bold,S.italics),fontSize:S.fontSize,color:S.color,opacity:S.opacity,angle:S.angle};$._size=function iA(IA,FA){var YA=new p(FA),HA=new m(null,{font:IA.font,bold:IA.bold,italics:IA.italics});return HA.push({fontSize:IA.fontSize}),{size:YA.sizeOfString(IA.text,HA),rotatedSize:YA.sizeOfRotatedText(IA.text,IA.angle,HA)}}(S,z);for(var gA=this.writer.context().pages,_=0,fA=gA.length;_0;wA--)iA.push(fA);return iA}(S._gap);$&&(F-=($.length-1)*S._gap),f.buildColumnWidths(z,F);var gA=this.processRow(z,z,$);x(S.positions,gA.positions)},Y.prototype.processRow=function(S,z,F,$,gA,_){var fA=this,iA=[],wA=[];return this.tracker.auto("pageChanged",function IA(HA){for(var J,BA=0,aA=iA.length;BA1)for(var EA=1;EAHA?F[HA]:0}function YA(HA,J){if(HA.rowSpan&&HA.rowSpan>1){var BA=gA+HA.rowSpan-1;if(BA>=$.length)throw"Row span for column "+J+" (with indexes starting from 0) exceeded row count";return $[BA][J]}return null}},Y.prototype.processList=function(S,z){var _,F=this,$=S?z.ol:z.ul,gA=z._gapSize;this.writer.context().addMargin(gA.width),this.tracker.auto("lineAdded",function fA(iA){if(_){var wA=_;if(_=null,wA.canvas){var IA=wA.canvas[0];h(IA,-wA._minWidth,0),F.writer.addVector(IA)}else if(wA._inlines){var FA=new u(F.pageSize.width);FA.addInline(wA._inlines[0]),FA.x=-wA._minWidth,FA.y=iA.getAscenderHeight()-FA.getAscenderHeight(),F.writer.addLine(FA,!0)}}},function(){$.forEach(function(iA){_=iA.listMarker,F.processNode(iA),x(z.positions,iA.positions)})}),this.writer.context().addMargin(-gA.width)},Y.prototype.processTable=function(S){var z=new w(S);z.beginTable(this.writer);for(var F=S.table.heights,$=0,gA=S.table.body.length;$0&&(F.hasEnoughSpaceForInline(S._inlines[0],S._inlines.slice(1))||gA);){var _=!1,fA=S._inlines.shift();if(gA=!1,!fA.noWrap&&fA.text.length>1&&fA.width>F.getAvailableWidth()){var iA=fA.width/fA.text.length,wA=Math.floor(F.getAvailableWidth()/iA);if(wA<1&&(wA=1),wA0){var r=w.pages[0];if(r.xOffset=g,r.yOffset=f,u>1)if(void 0!==g||void 0!==f)r.height=w.getCurrentPage().pageSize.height-w.pageMargins.top-w.pageMargins.bottom;else{r.height=this.writer.context.getCurrentPage().pageSize.height-this.writer.context.pageMargins.top-this.writer.context.pageMargins.bottom;for(var d=0,E=this.repeatables.length;dOA.item.y2?OA.item.y1:OA.item.y2:OA.item.h:0}(OA)}var EA=v(BA||40),xA=EA.top;return J.forEach(function(OA){OA.items.forEach(function(W){var L=eA(W);L>xA&&(xA=L)})}),xA+=EA.bottom}function Y(J,BA){J&&"auto"===J.height&&(J.height=1/0);var eA=function z(J){if(d(J)){var BA=o[J.toUpperCase()];if(!BA)throw"Page size "+J+" not recognized";return{width:BA[0],height:BA[1]}}return J}(J||"A4");return function aA(EA){return!!d(EA)&&("portrait"===(EA=EA.toLowerCase())&&eA.width>eA.height||"landscape"===EA&&eA.widtheA.height?"landscape":"portrait",eA}function v(J){if(E(J))J={left:J,right:J,top:J,bottom:J};else if(e(J))if(2===J.length)J={left:J[0],top:J[1],right:J[0],bottom:J[1]};else{if(4!==J.length)throw"Invalid pageMargins definition";J={left:J[0],top:J[1],right:J[2],bottom:J[3]}}return J}function F(J,BA){J.pageSize.orientation!==(BA.options.size[0]>BA.options.size[1]?"landscape":"portrait")&&(BA.options.size=[BA.options.size[1],BA.options.size[0]])}function gA(J,BA){var aA=J;return BA.sup&&(aA-=.75*BA.fontSize),BA.sub&&(aA+=.35*BA.fontSize),aA}function _(J,BA,aA,eA,EA){function xA(zA,pA){var JA,ft,wt=new u(null);if(h(zA.positions))throw"Page reference id not found";var gt=zA.positions[0].pageNumber.toString();switch(pA.text=gt,JA=wt.widthOfString(pA.text,pA.font,pA.fontSize,pA.characterSpacing,pA.fontFeatures),ft=pA.width-JA,pA.width=JA,pA.alignment){case"right":pA.x+=ft;break;case"center":pA.x+=ft/2}}J._pageNodeRef&&xA(J._pageNodeRef,J.inlines[0]),BA=BA||0,aA=aA||0;var OA=J.getHeight(),L=OA-J.getAscenderHeight();w.drawBackground(J,BA,aA,eA,EA);for(var rA=0,AA=J.inlines.length;rA1){var OA=J.points[0],W=J.points[J.points.length-1];(J.closePath||OA.x===W.x&&OA.y===W.y)&&aA.closePath()}break;case"path":aA.path(J.d)}if(J.linearGradient&&eA){var L=1/(J.linearGradient.length-1);for(EA=0;EA-1&&(xA=xA.slice(0,OA)),aA.height===1/0){var W=x(xA,J.pageMargins);this.pdfKitDoc.options.size=[aA.width,W]}var L=function HA(J,BA){var aA={};return Object.keys(J).forEach(function(eA){var EA=J[eA];aA[eA]=BA.pattern(EA.boundingBox,EA.xStep,EA.yStep,EA.pattern,EA.colored)}),aA}(J.patterns||{},this.pdfKitDoc);if(function $(J,BA,aA,eA,EA){aA._pdfMakePages=J,aA.addPage();var xA=0;EA&&J.forEach(function(yA){xA+=yA.items.length});var OA=0;EA=EA||function(){};for(var W=0;W0&&(F(J[W],aA),aA.addPage(aA.options));for(var L=J[W],rA=0,AA=L.items.length;rA=128?285:0);var I=[[]];for(h=0;h<30;++h){for(var R=I[h],p=[],m=0;m<=h;++m)p.push(e[(m6},$=function(W,L){var rA=-8&function(W){var L=A[W],rA=16*W*W+128*W+64;return S(W)&&(rA-=36),L[2].length&&(rA-=25*L[2].length*L[2].length-10*L[2].length-55),rA}(W),AA=A[W];return rA-8*AA[0][L]*AA[1][L]},gA=function(W,L){switch(L){case B:return W<10?10:W<27?12:14;case a:return W<10?9:W<27?11:13;case s:return W<10?8:16;case 8:return W<10?8:W<27?10:12}},_=function(W,L,rA){var AA=$(W,rA)-4-gA(W,L);switch(L){case B:return 3*(AA/10|0)+(AA%10<4?0:AA%10<7?1:2);case a:return 2*(AA/11|0)+(AA%11<6?0:1);case s:return AA/8|0;case 8:return AA/13|0}},fA=function(W,L){switch(W){case B:return L.match(g)?L:null;case a:return L.match(f)?L.toUpperCase():null;case s:if("string"==typeof L){for(var rA=[],AA=0;AA>6,128|63&QA):QA<65536?rA.push(224|QA>>12,128|QA>>6&63,128|63&QA):rA.push(240|QA>>18,128|QA>>12&63,128|QA>>6&63,128|63&QA)}return rA}return L}},wA=function(W,L){for(var rA=W.slice(0),AA=W.length,QA=L.length,yA=0;yA=0)for(var CA=0;CA=0;--yA)QA>>AA+yA&1&&(QA^=rA<>cA&1;return W},aA=function(W){for(var yA=function(pt){for(var Yt=0,VA=0;VA=5&&(Yt+=pt[VA]-5+3);for(VA=5;VA=4*_A||pt[VA+1]>=4*_A)&&(Yt+=40)}return Yt},cA=W.length,CA=0,DA=0,NA=0;NA=cA){for(QA.push(yA|pA>>(JA-=cA));JA>=8;)QA.push(pA>>(JA-=8)&255);yA=0,cA=8}JA>0&&(yA|=(pA&(1<>3);cA=function(W,L,rA){for(var AA=[],QA=W.length/L|0,yA=0,cA=L-W.length%L,CA=0;CA>Qt&1,QA[wt+_A][gt+Qt]=1};for(cA(0,0,9,9,[127,65,93,93,93,65,383,0,64]),cA(rA-8,0,8,9,[256,127,65,93,93,93,65,127]),cA(0,rA-8,9,8,[254,130,186,186,186,130,254,0,0]),yA=9;yA>ft++&1,QA[yA][rA-11+pA]=QA[rA-11+pA][yA]=1}return{matrix:AA,reserved:QA}}(L),DA=CA.matrix,NA=CA.reserved;if(function(W,L,rA){for(var AA=W.length,QA=0,yA=-1,cA=AA-1;cA>=0;cA-=2){6==cA&&--cA;for(var CA=yA<0?AA-1:0,DA=0;DAcA-2;--NA)L[CA][NA]||(W[CA][NA]=rA[QA>>3]>>(7&~QA)&1,++QA);CA+=yA}yA=-yA}}(DA,NA,cA),QA<0){J(DA,NA,0),BA(DA,0,AA,0);var zA=0,pA=aA(DA);for(J(DA,NA,0),QA=1;QA<8;++QA){J(DA,NA,QA),BA(DA,0,AA,QA);var JA=aA(DA);pA>JA&&(pA=JA,zA=QA),J(DA,NA,QA)}QA=zA}return J(DA,NA,QA),BA(DA,0,AA,QA),DA};function xA(W,L){var rA=[],AA=L.background||"#fff",QA=L.foreground||"#000",yA=L.padding||0,cA=function EA(W,L){var rA={numeric:B,alphanumeric:a,octet:s},QA=(L=L||{}).version||-1,yA={L:u,M:r,Q:d,H:E}[(L.eccLevel||"L").toUpperCase()],cA=L.mode?rA[L.mode.toLowerCase()]:-1,CA="mask"in L?L.mask:-1;if(cA<0)cA="string"==typeof W?W.match(g)?B:W.match(w)?a:s:s;else if(cA!=B&&cA!=a&&cA!=s)throw"invalid or unsupported mode";if(null===(W=fA(cA,W)))throw"invalid data format";if(yA<0||yA>3)throw"invalid ECC level";if(QA<0){for(QA=1;QA<=40&&!(W.length<=_(QA,cA,yA));++QA);if(QA>40)throw"too large data for the Qr format"}else if(QA<1||QA>40)throw"invalid Qr version! should be between 1 and 40";if(-1!=CA&&(CA<0||CA>8))throw"invalid mask";return eA(W,QA,cA,yA,CA)}(W,L),CA=cA.length,DA=Math.floor(L.fit?L.fit/CA:5),NA=CA*DA+DA*yA*2,zA=DA*yA;rA.push({type:"rect",x:0,y:0,w:NA,h:NA,lineWidth:0,color:AA});for(var pA=0;pA0;)this.styleOverrides.pop()},g.prototype.autopush=function(f){if(B(f))return 0;var w=[];f.style&&(w=a(f.style)?f.style:[f.style]);for(var u=0,r=w.length;u0&&this.pop(u),r},g.prototype.getProperty=function(f){if(this.styleOverrides)for(var w=this.styleOverrides.length-1;w>=0;w--){var u=this.styleOverrides[w];if(B(u)){var r=this.styleDictionary[u];if(r&&!s(r[f])&&!o(r[f]))return r[f]}else if(!s(u[f])&&!o(u[f]))return u[f]}return this.defaultStyle&&this.defaultStyle[f]},b.exports=g},89638:function(b,A,n){"use strict";var B=n(52242);function a(g){var f=parseFloat(g);if("number"==typeof f&&!isNaN(f))return f}function s(g){var f;try{f=new B.XmlDocument(g)}catch(w){throw new Error("SVGMeasure: "+w)}if("svg"!==f.name)throw new Error("SVGMeasure: expected document");return f}function o(){}o.prototype.measureSVG=function(g){var f=s(g),w=a(f.attr.width),u=a(f.attr.height);if((null==w||null==u)&&"string"==typeof f.attr.viewBox){var r=f.attr.viewBox.split(/[,\s]+/);if(4!==r.length)throw new Error("Unexpected svg viewbox format, should have 4 entries but found: '"+f.attr.viewBox+"'");null==w&&(w=a(r[2])),null==u&&(u=a(r[3]))}return{width:w,height:u}},o.prototype.writeDimensions=function(g,f){var w=s(g);return w.attr.width=""+f.width,w.attr.height=""+f.height,w.toString()},b.exports=o},89836:function(b,A,n){"use strict";var B=n(77530),a=n(91867).isFunction,s=n(91867).isNumber;function o(g){this.tableNode=g}o.prototype.beginTable=function(g){var f,w,u=this;if(this.offsets=(f=this.tableNode)._offsets,this.layout=f._layout,w=g.context().availableWidth-this.offsets.total,B.buildColumnWidths(f.table.widths,w),this.tableWidth=f._offsets.total+function r(){var C=0;return f.table.widths.forEach(function(e){C+=e._calcWidth}),C}(),this.rowSpanData=function d(){var C=[],e=0,h=0;C.push({left:0,rowSpan:0});for(var Q=0,I=u.tableNode.table.body[0].length;Qf.table.body.length)throw new Error(`Too few rows in the table. Property headerRows requires at least ${this.headerRows}, contains only ${f.table.body.length}`);this.rowsWithoutPageBreak=this.headerRows+(f.table.keepWithHeaderRows||0),this.dontBreakRows=f.table.dontBreakRows||!1,this.rowsWithoutPageBreak&&g.beginUnbreakableBlock(),function E(C){for(var e=0;e0&&x(e+m,Q,0,I.border[0]),void 0!==I.border[2]&&x(e+m,Q+p-1,2,I.border[2]);for(var y=0;y0&&x(e,Q+y,1,I.border[1]),void 0!==I.border[3]&&x(e+R-1,Q+y,3,I.border[3])}}function x(Y,v,S,z){var F=C[Y][v];F.border=F.border||{},F.border[S]=z}}(this.tableNode.table.body),this.drawHorizontalLine(0,g)},o.prototype.onRowBreak=function(g,f){var w=this;return function(){var u=w.rowPaddingTop+(w.headerRows?0:w.topLineWidth);f.context().availableHeight-=w.reservedAtBottom,f.context().moveDown(u)}},o.prototype.beginRow=function(g,f){this.topLineWidth=this.layout.hLineWidth(g,this.tableNode),this.rowPaddingTop=this.layout.paddingTop(g,this.tableNode),this.bottomLineWidth=this.layout.hLineWidth(g+1,this.tableNode),this.rowPaddingBottom=this.layout.paddingBottom(g,this.tableNode),this.rowCallback=this.onRowBreak(g,f),f.tracker.startTracking("pageChanged",this.rowCallback),this.dontBreakRows&&f.beginUnbreakableBlock(),this.rowTopY=f.context().y,this.reservedAtBottom=this.bottomLineWidth+this.rowPaddingBottom,f.context().availableHeight-=this.reservedAtBottom,f.context().moveDown(this.rowPaddingTop)},o.prototype.drawHorizontalLine=function(g,f,w){var u=this.layout.hLineWidth(g,this.tableNode);if(u){var d,r=this.layout.hLineStyle(g,this.tableNode);r&&r.dash&&(d=r.dash);for(var h,Q,I,E=u/2,C=null,e=this.tableNode.table.body,R=0,p=this.rowSpanData.length;R0&&(v=(h=e[g-1][R]).border?h.border[3]:this.layout.defaultBorder)&&h.borderColor&&(x=h.borderColor[3]),gz;)C.width+=this.rowSpanData[R+z++].width||0;R+=z-1}else if(h&&h.colSpan&&v){for(;h.colSpan>z;)C.width+=this.rowSpanData[R+z++].width||0;R+=z-1}else if(Q&&Q.colSpan&&Y){for(;Q.colSpan>z;)C.width+=this.rowSpanData[R+z++].width||0;R+=z-1}else C.width+=this.rowSpanData[R].width||0}var F=(w||0)+E;y&&C&&C.width&&(f.addVector({type:"line",x1:C.left,x2:C.left+C.width,y1:F,y2:F,lineWidth:u,dash:d,lineColor:x},!1,w),C=null,x=null,h=null,Q=null,I=null)}f.context().moveDown(u)}},o.prototype.drawVerticalLine=function(g,f,w,u,r,d,E){var C=this.layout.vLineWidth(u,this.tableNode);if(0!==C){var h,e=this.layout.vLineStyle(u,this.tableNode);e&&e.dash&&(h=e.dash);var I,R,p,Q=this.tableNode.table.body;if(u>0&&(I=Q[d][E])&&I.borderColor&&(I.border?I.border[2]:this.layout.defaultBorder)&&(p=I.borderColor[2]),null==p&&u0&&rA--}return L.push({x:d.rowSpanData[d.rowSpanData.length-1].left,index:d.rowSpanData.length-1}),L}(),h=[],Q=w&&w.length>0,I=this.tableNode.table.body;if(h.push({y0:this.rowTopY,page:Q?w[0].prevPage:E}),Q)for(r=0,u=w.length;r0&&!this.headerRows,v=Y?0:this.topLineWidth,S=h[m].y0,z=h[m].y1;for(x&&(z+=this.rowPaddingBottom),f.context().page!=h[m].page&&(f.context().page=h[m].page,this.reservedAtBottom=0),r=0,u=e.length;r0&&!F&&(F=(_=I[g][gA-1]).border?_.border[2]:this.layout.defaultBorder),gA+11)for(var OA=1;OA1)for(OA=1;OA0&&this.rowSpanData[r].rowSpan--}this.drawHorizontalLine(g+1,f),this.headerRows&&g===this.headerRows-1&&(this.headerRepeatable=f.currentBlockToRepeatable()),this.dontBreakRows&&f.tracker.auto("pageChanged",function(){!d.headerRows&&!1!==d.layout.hLineWhenBroken&&d.drawHorizontalLine(g,f)},function(){f.commitUnbreakableBlock()}),this.headerRepeatable&&(g===this.rowsWithoutPageBreak-1||g===this.tableNode.table.body.length-1)&&(f.commitUnbreakableBlock(),f.pushToRepeatables(this.headerRepeatable),this.cleanUpRepeatables=!0,this.headerRepeatable=null)},b.exports=o},84786:function(b,A,n){"use strict";var B=n(91867).isArray,a=n(91867).isPattern,s=n(91867).getPattern;function g(u,r,d,E){var h=u.inlines[0],Q=function C(){for(var FA=0,YA=0,HA=u.inlines.length;YAFA?YA:FA;return u.inlines[FA]}(),I=function e(){for(var FA=0,YA=0,HA=u.inlines.length;YA=0&&a.splice(s,1)}},A.prototype.emit=function(n){var B=Array.prototype.slice.call(arguments,1),a=this.events[n];a&&a.forEach(function(s){s.apply(this,B)})},A.prototype.auto=function(n,B,a){this.startTracking(n,B),a(),this.stopTracking(n,B)},b.exports=A},44134:function(b,A,n){var B,s;void 0!==(s="function"==typeof(B=function(){"use strict";function g(E,C,e){var h=new XMLHttpRequest;h.open("GET",E),h.responseType="blob",h.onload=function(){d(h.response,C,e)},h.onerror=function(){console.error("could not download file")},h.send()}function f(E){var C=new XMLHttpRequest;C.open("HEAD",E,!1);try{C.send()}catch{}return 200<=C.status&&299>=C.status}function w(E){try{E.dispatchEvent(new MouseEvent("click"))}catch{var C=document.createEvent("MouseEvents");C.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),E.dispatchEvent(C)}}var u="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof n.g&&n.g.global===n.g?n.g:void 0,r=u.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),d=u.saveAs||("object"!=typeof window||window!==u?function(){}:typeof HTMLAnchorElement<"u"&&"download"in HTMLAnchorElement.prototype&&!r?function(E,C,e){var h=u.URL||u.webkitURL,Q=document.createElement("a");Q.download=C=C||E.name||"download",Q.rel="noopener","string"==typeof E?(Q.href=E,Q.origin===location.origin?w(Q):f(Q.href)?g(E,C,e):w(Q,Q.target="_blank")):(Q.href=h.createObjectURL(E),setTimeout(function(){h.revokeObjectURL(Q.href)},4e4),setTimeout(function(){w(Q)},0))}:"msSaveOrOpenBlob"in navigator?function(E,C,e){if(C=C||E.name||"download","string"!=typeof E)navigator.msSaveOrOpenBlob(function o(E,C){return typeof C>"u"?C={autoBom:!1}:"object"!=typeof C&&(console.warn("Deprecated: Expected third argument to be a object"),C={autoBom:!C}),C.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(E.type)?new Blob(["\ufeff",E],{type:E.type}):E}(E,e),C);else if(f(E))g(E,C,e);else{var h=document.createElement("a");h.href=E,h.target="_blank",setTimeout(function(){w(h)})}}:function(E,C,e,h){if((h=h||open("","_blank"))&&(h.document.title=h.document.body.innerText="downloading..."),"string"==typeof E)return g(E,C,e);var Q="application/octet-stream"===E.type,I=/constructor/i.test(u.HTMLElement)||u.safari,R=/CriOS\/[\d]+/.test(navigator.userAgent);if((R||Q&&I||r)&&typeof FileReader<"u"){var p=new FileReader;p.onloadend=function(){var x=p.result;x=R?x:x.replace(/^data:[^;]*;/,"data:attachment/file;"),h?h.location.href=x:location=x,h=null},p.readAsDataURL(E)}else{var m=u.URL||u.webkitURL,y=m.createObjectURL(E);h?h.location=y:location.href=y,h=null,setTimeout(function(){m.revokeObjectURL(y)},4e4)}});u.saveAs=d.saveAs=d,b.exports=d})?B.apply(A,[]):B)&&(b.exports=s)},60421:function(b,A,n){"use strict";var a,B=n(50621).Buffer;function s(tA,G){for(var K=0;K=tA.length?{done:!0}:{done:!1,value:tA[M++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function E(tA,G){(null==G||G>tA.length)&&(G=tA.length);for(var K=0,M=new Array(G);K0?sA[0]:"value";if(nA.has(KA))return nA.get(KA);var lt=N.apply(this,sA);return nA.set(KA,lt),lt}return Object.defineProperty(this,G,{value:oA}),oA}}}}v.registerFormat=function(tA){S.push(tA)},v.openSync=function(tA,G){var K=Y.readFileSync(tA);return v.create(K,G)},v.open=function(tA,G,K){"function"==typeof G&&(K=G,G=null),Y.readFile(tA,function(M,N){if(M)return K(M);try{var P=v.create(N,G)}catch(nA){return K(nA)}return K(null,P)})},v.create=function(tA,G){for(var K=0;K>1},searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,endCode:new e.LazyArray(e.uint16,"segCount"),reservedPad:new e.Reserved(e.uint16),startCode:new e.LazyArray(e.uint16,"segCount"),idDelta:new e.LazyArray(e.int16,"segCount"),idRangeOffset:new e.LazyArray(e.uint16,"segCount"),glyphIndexArray:new e.LazyArray(e.uint16,function(tA){return(tA.length-tA._currentOffset)/2})},6:{length:e.uint16,language:e.uint16,firstCode:e.uint16,entryCount:e.uint16,glyphIndices:new e.LazyArray(e.uint16,"entryCount")},8:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint16,is32:new e.LazyArray(e.uint8,8192),nGroups:e.uint32,groups:new e.LazyArray(_,"nGroups")},10:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,firstCode:e.uint32,entryCount:e.uint32,glyphIndices:new e.LazyArray(e.uint16,"numChars")},12:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,nGroups:e.uint32,groups:new e.LazyArray(_,"nGroups")},13:{reserved:new e.Reserved(e.uint16),length:e.uint32,language:e.uint32,nGroups:e.uint32,groups:new e.LazyArray(_,"nGroups")},14:{length:e.uint32,numRecords:e.uint32,varSelectors:new e.LazyArray(FA,"numRecords")}}),HA=new e.Struct({platformID:e.uint16,encodingID:e.uint16,table:new e.Pointer(e.uint32,YA,{type:"parent",lazy:!0})}),J=new e.Struct({version:e.uint16,numSubtables:e.uint16,tables:new e.Array(HA,"numSubtables")}),BA=new e.Struct({version:e.int32,revision:e.int32,checkSumAdjustment:e.uint32,magicNumber:e.uint32,flags:e.uint16,unitsPerEm:e.uint16,created:new e.Array(e.int32,2),modified:new e.Array(e.int32,2),xMin:e.int16,yMin:e.int16,xMax:e.int16,yMax:e.int16,macStyle:new e.Bitfield(e.uint16,["bold","italic","underline","outline","shadow","condensed","extended"]),lowestRecPPEM:e.uint16,fontDirectionHint:e.int16,indexToLocFormat:e.int16,glyphDataFormat:e.int16}),aA=new e.Struct({version:e.int32,ascent:e.int16,descent:e.int16,lineGap:e.int16,advanceWidthMax:e.uint16,minLeftSideBearing:e.int16,minRightSideBearing:e.int16,xMaxExtent:e.int16,caretSlopeRise:e.int16,caretSlopeRun:e.int16,caretOffset:e.int16,reserved:new e.Reserved(e.int16,4),metricDataFormat:e.int16,numberOfMetrics:e.uint16}),eA=new e.Struct({advance:e.uint16,bearing:e.int16}),EA=new e.Struct({metrics:new e.LazyArray(eA,function(tA){return tA.parent.hhea.numberOfMetrics}),bearings:new e.LazyArray(e.int16,function(tA){return tA.parent.maxp.numGlyphs-tA.parent.hhea.numberOfMetrics})}),xA=new e.Struct({version:e.int32,numGlyphs:e.uint16,maxPoints:e.uint16,maxContours:e.uint16,maxComponentPoints:e.uint16,maxComponentContours:e.uint16,maxZones:e.uint16,maxTwilightPoints:e.uint16,maxStorage:e.uint16,maxFunctionDefs:e.uint16,maxInstructionDefs:e.uint16,maxStackElements:e.uint16,maxSizeOfInstructions:e.uint16,maxComponentElements:e.uint16,maxComponentDepth:e.uint16});function OA(tA,G,K){return void 0===K&&(K=0),1===tA&&L[K]?L[K]:W[tA][G]}var W=[["utf16be","utf16be","utf16be","utf16be","utf16be","utf16be"],["macroman","shift-jis","big5","euc-kr","iso-8859-6","iso-8859-8","macgreek","maccyrillic","symbol","Devanagari","Gurmukhi","Gujarati","Oriya","Bengali","Tamil","Telugu","Kannada","Malayalam","Sinhalese","Burmese","Khmer","macthai","Laotian","Georgian","Armenian","gb-2312-80","Tibetan","Mongolian","Geez","maccenteuro","Vietnamese","Sindhi"],["ascii"],["symbol","utf16be","shift-jis","gb18030","big5","wansung","johab",null,null,null,"utf16be"]],L={15:"maciceland",17:"macturkish",18:"maccroatian",24:"maccenteuro",25:"maccenteuro",26:"maccenteuro",27:"maccenteuro",28:"maccenteuro",30:"maciceland",37:"macromania",38:"maccenteuro",39:"maccenteuro",40:"maccenteuro",143:"macinuit",146:"macgaelic"},rA=[[],{0:"en",30:"fo",60:"ks",90:"rw",1:"fr",31:"fa",61:"ku",91:"rn",2:"de",32:"ru",62:"sd",92:"ny",3:"it",33:"zh",63:"bo",93:"mg",4:"nl",34:"nl-BE",64:"ne",94:"eo",5:"sv",35:"ga",65:"sa",128:"cy",6:"es",36:"sq",66:"mr",129:"eu",7:"da",37:"ro",67:"bn",130:"ca",8:"pt",38:"cz",68:"as",131:"la",9:"no",39:"sk",69:"gu",132:"qu",10:"he",40:"si",70:"pa",133:"gn",11:"ja",41:"yi",71:"or",134:"ay",12:"ar",42:"sr",72:"ml",135:"tt",13:"fi",43:"mk",73:"kn",136:"ug",14:"el",44:"bg",74:"ta",137:"dz",15:"is",45:"uk",75:"te",138:"jv",16:"mt",46:"be",76:"si",139:"su",17:"tr",47:"uz",77:"my",140:"gl",18:"hr",48:"kk",78:"km",141:"af",19:"zh-Hant",49:"az-Cyrl",79:"lo",142:"br",20:"ur",50:"az-Arab",80:"vi",143:"iu",21:"hi",51:"hy",81:"id",144:"gd",22:"th",52:"ka",82:"tl",145:"gv",23:"ko",53:"mo",83:"ms",146:"ga",24:"lt",54:"ky",84:"ms-Arab",147:"to",25:"pl",55:"tg",85:"am",148:"el-polyton",26:"hu",56:"tk",86:"ti",149:"kl",27:"es",57:"mn-CN",87:"om",150:"az",28:"lv",58:"mn",88:"so",151:"nn",29:"se",59:"ps",89:"sw"},[],{1078:"af",16393:"en-IN",1159:"rw",1074:"tn",1052:"sq",6153:"en-IE",1089:"sw",1115:"si",1156:"gsw",8201:"en-JM",1111:"kok",1051:"sk",1118:"am",17417:"en-MY",1042:"ko",1060:"sl",5121:"ar-DZ",5129:"en-NZ",1088:"ky",11274:"es-AR",15361:"ar-BH",13321:"en-PH",1108:"lo",16394:"es-BO",3073:"ar",18441:"en-SG",1062:"lv",13322:"es-CL",2049:"ar-IQ",7177:"en-ZA",1063:"lt",9226:"es-CO",11265:"ar-JO",11273:"en-TT",2094:"dsb",5130:"es-CR",13313:"ar-KW",2057:"en-GB",1134:"lb",7178:"es-DO",12289:"ar-LB",1033:"en",1071:"mk",12298:"es-EC",4097:"ar-LY",12297:"en-ZW",2110:"ms-BN",17418:"es-SV",6145:"ary",1061:"et",1086:"ms",4106:"es-GT",8193:"ar-OM",1080:"fo",1100:"ml",18442:"es-HN",16385:"ar-QA",1124:"fil",1082:"mt",2058:"es-MX",1025:"ar-SA",1035:"fi",1153:"mi",19466:"es-NI",10241:"ar-SY",2060:"fr-BE",1146:"arn",6154:"es-PA",7169:"aeb",3084:"fr-CA",1102:"mr",15370:"es-PY",14337:"ar-AE",1036:"fr",1148:"moh",10250:"es-PE",9217:"ar-YE",5132:"fr-LU",1104:"mn",20490:"es-PR",1067:"hy",6156:"fr-MC",2128:"mn-CN",3082:"es",1101:"as",4108:"fr-CH",1121:"ne",1034:"es",2092:"az-Cyrl",1122:"fy",1044:"nb",21514:"es-US",1068:"az",1110:"gl",2068:"nn",14346:"es-UY",1133:"ba",1079:"ka",1154:"oc",8202:"es-VE",1069:"eu",3079:"de-AT",1096:"or",2077:"sv-FI",1059:"be",1031:"de",1123:"ps",1053:"sv",2117:"bn",5127:"de-LI",1045:"pl",1114:"syr",1093:"bn-IN",4103:"de-LU",1046:"pt",1064:"tg",8218:"bs-Cyrl",2055:"de-CH",2070:"pt-PT",2143:"tzm",5146:"bs",1032:"el",1094:"pa",1097:"ta",1150:"br",1135:"kl",1131:"qu-BO",1092:"tt",1026:"bg",1095:"gu",2155:"qu-EC",1098:"te",1027:"ca",1128:"ha",3179:"qu",1054:"th",3076:"zh-HK",1037:"he",1048:"ro",1105:"bo",5124:"zh-MO",1081:"hi",1047:"rm",1055:"tr",2052:"zh",1038:"hu",1049:"ru",1090:"tk",4100:"zh-SG",1039:"is",9275:"smn",1152:"ug",1028:"zh-TW",1136:"ig",4155:"smj-NO",1058:"uk",1155:"co",1057:"id",5179:"smj",1070:"hsb",1050:"hr",1117:"iu",3131:"se-FI",1056:"ur",4122:"hr-BA",2141:"iu-Latn",1083:"se",2115:"uz-Cyrl",1029:"cs",2108:"ga",2107:"se-SE",1091:"uz",1030:"da",1076:"xh",8251:"sms",1066:"vi",1164:"prs",1077:"zu",6203:"sma-NO",1106:"cy",1125:"dv",1040:"it",7227:"sms",1160:"wo",2067:"nl-BE",2064:"it-CH",1103:"sa",1157:"sah",1043:"nl",1041:"ja",7194:"sr-Cyrl-BA",1144:"ii",3081:"en-AU",1099:"kn",3098:"sr",1130:"yo",10249:"en-BZ",1087:"kk",6170:"sr-Latn-BA",4105:"en-CA",1107:"km",2074:"sr-Latn",9225:"en-029",1158:"quc",1132:"nso"}],AA=new e.Struct({platformID:e.uint16,encodingID:e.uint16,languageID:e.uint16,nameID:e.uint16,length:e.uint16,string:new e.Pointer(e.uint16,new e.String("length",function(tA){return OA(tA.platformID,tA.encodingID,tA.languageID)}),{type:"parent",relativeTo:function(G){return G.parent.stringOffset},allowNull:!1})}),QA=new e.Struct({length:e.uint16,tag:new e.Pointer(e.uint16,new e.String("length","utf16be"),{type:"parent",relativeTo:function(G){return G.stringOffset}})}),yA=new e.VersionedStruct(e.uint16,{0:{count:e.uint16,stringOffset:e.uint16,records:new e.Array(AA,"count")},1:{count:e.uint16,stringOffset:e.uint16,records:new e.Array(AA,"count"),langTagCount:e.uint16,langTags:new e.Array(QA,"langTagCount")}}),cA=["copyright","fontFamily","fontSubfamily","uniqueSubfamily","fullName","version","postscriptName","trademark","manufacturer","designer","description","vendorURL","designerURL","license","licenseURL",null,"preferredFamily","preferredSubfamily","compatibleFull","sampleText","postscriptCIDFontName","wwsFamilyName","wwsSubfamilyName"];yA.process=function(tA){for(var M,G={},K=r(this.records);!(M=K()).done;){var N=M.value,P=rA[N.platformID][N.languageID];null==P&&null!=this.langTags&&N.languageID>=32768&&(P=this.langTags[N.languageID-32768].tag),null==P&&(P=N.platformID+"-"+N.languageID);var nA=N.nameID>=256?"fontFeatures":cA[N.nameID]||N.nameID;null==G[nA]&&(G[nA]={});var oA=G[nA];N.nameID>=256&&(oA=oA[N.nameID]||(oA[N.nameID]={})),("string"==typeof N.string||"string"!=typeof oA[P])&&(oA[P]=N.string)}this.records=G},yA.preEncode=function(){if(!Array.isArray(this.records)){this.version=0;var tA=[];for(var G in this.records){var K=this.records[G];"fontFeatures"!==G&&(tA.push({platformID:3,encodingID:1,languageID:1033,nameID:cA.indexOf(G),length:B.byteLength(K.en,"utf16le"),string:K.en}),"postscriptName"===G&&tA.push({platformID:1,encodingID:0,languageID:0,nameID:cA.indexOf(G),length:K.en.length,string:K.en}))}this.records=tA,this.count=tA.length,this.stringOffset=yA.size(this,null,!1)}};var CA=new e.VersionedStruct(e.uint16,{header:{xAvgCharWidth:e.int16,usWeightClass:e.uint16,usWidthClass:e.uint16,fsType:new e.Bitfield(e.uint16,[null,"noEmbedding","viewOnly","editable",null,null,null,null,"noSubsetting","bitmapOnly"]),ySubscriptXSize:e.int16,ySubscriptYSize:e.int16,ySubscriptXOffset:e.int16,ySubscriptYOffset:e.int16,ySuperscriptXSize:e.int16,ySuperscriptYSize:e.int16,ySuperscriptXOffset:e.int16,ySuperscriptYOffset:e.int16,yStrikeoutSize:e.int16,yStrikeoutPosition:e.int16,sFamilyClass:e.int16,panose:new e.Array(e.uint8,10),ulCharRange:new e.Array(e.uint32,4),vendorID:new e.String(4),fsSelection:new e.Bitfield(e.uint16,["italic","underscore","negative","outlined","strikeout","bold","regular","useTypoMetrics","wws","oblique"]),usFirstCharIndex:e.uint16,usLastCharIndex:e.uint16},0:{},1:{typoAscender:e.int16,typoDescender:e.int16,typoLineGap:e.int16,winAscent:e.uint16,winDescent:e.uint16,codePageRange:new e.Array(e.uint32,2)},2:{typoAscender:e.int16,typoDescender:e.int16,typoLineGap:e.int16,winAscent:e.uint16,winDescent:e.uint16,codePageRange:new e.Array(e.uint32,2),xHeight:e.int16,capHeight:e.int16,defaultChar:e.uint16,breakChar:e.uint16,maxContent:e.uint16},5:{typoAscender:e.int16,typoDescender:e.int16,typoLineGap:e.int16,winAscent:e.uint16,winDescent:e.uint16,codePageRange:new e.Array(e.uint32,2),xHeight:e.int16,capHeight:e.int16,defaultChar:e.uint16,breakChar:e.uint16,maxContent:e.uint16,usLowerOpticalPointSize:e.uint16,usUpperOpticalPointSize:e.uint16}}),DA=CA.versions;DA[3]=DA[4]=DA[2];var NA=new e.VersionedStruct(e.fixed32,{header:{italicAngle:e.fixed32,underlinePosition:e.int16,underlineThickness:e.int16,isFixedPitch:e.uint32,minMemType42:e.uint32,maxMemType42:e.uint32,minMemType1:e.uint32,maxMemType1:e.uint32},1:{},2:{numberOfGlyphs:e.uint16,glyphNameIndex:new e.Array(e.uint16,"numberOfGlyphs"),names:new e.Array(new e.String(e.uint8))},2.5:{numberOfGlyphs:e.uint16,offsets:new e.Array(e.uint8,"numberOfGlyphs")},3:{},4:{map:new e.Array(e.uint32,function(tA){return tA.parent.maxp.numGlyphs})}}),zA=new e.Struct({controlValues:new e.Array(e.int16)}),pA=new e.Struct({instructions:new e.Array(e.uint8)}),JA=new e.VersionedStruct("head.indexToLocFormat",{0:{offsets:new e.Array(e.uint16)},1:{offsets:new e.Array(e.uint32)}});JA.process=function(){if(0===this.version)for(var tA=0;tA>>=1};var ft=new e.Struct({controlValueProgram:new e.Array(e.uint8)}),wt=new e.Array(new e.Buffer),gt=function(){function tA(K){this.type=K}var G=tA.prototype;return G.getCFFVersion=function(M){for(;M&&!M.hdrSize;)M=M.parent;return M?M.version:-1},G.decode=function(M,N){var nA=this.getCFFVersion(N)>=2?M.readUInt32BE():M.readUInt16BE();if(0===nA)return[];var lA,oA=M.readUInt8();if(1===oA)lA=e.uint8;else if(2===oA)lA=e.uint16;else if(3===oA)lA=e.uint24;else{if(4!==oA)throw new Error("Bad offset size in CFFIndex: ".concat(oA," ").concat(M.pos));lA=e.uint32}for(var sA=[],bA=M.pos+(nA+1)*oA-1,KA=lA.decode(M),lt=0;lt>4;if(15===nA)break;N+=Yt[nA];var oA=15&P;if(15===oA)break;N+=Yt[oA]}return parseFloat(N)}return null},tA.size=function(K){return K.forceLarge&&(K=32768),(0|K)!==K?1+Math.ceil(((""+K).length+1)/2):-107<=K&&K<=107?1:108<=K&&K<=1131||-1131<=K&&K<=-108?2:-32768<=K&&K<=32767?3:5},tA.encode=function(K,M){var N=Number(M);if(M.forceLarge)return K.writeUInt8(29),K.writeInt32BE(N);if((0|N)===N)return-107<=N&&N<=107?K.writeUInt8(N+139):108<=N&&N<=1131?(K.writeUInt8(247+((N-=108)>>8)),K.writeUInt8(255&N)):-1131<=N&&N<=-108?(K.writeUInt8(251+((N=-N-108)>>8)),K.writeUInt8(255&N)):-32768<=N&&N<=32767?(K.writeUInt8(28),K.writeInt16BE(N)):(K.writeUInt8(29),K.writeInt32BE(N));K.writeUInt8(30);for(var P=""+N,nA=0;nAP;)N.pop()},tA}(),null],[19,"Subrs",new ht(new gt,{type:"local"}),null]]),Bt=[".notdef","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","endash","dagger","daggerdbl","periodcentered","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","questiondown","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","ring","cedilla","hungarumlaut","ogonek","caron","emdash","AE","ordfeminine","Lslash","Oslash","OE","ordmasculine","ae","dotlessi","lslash","oslash","oe","germandbls","onesuperior","logicalnot","mu","trademark","Eth","onehalf","plusminus","Thorn","onequarter","divide","brokenbar","degree","thorn","threequarters","twosuperior","registered","minus","eth","multiply","threesuperior","copyright","Aacute","Acircumflex","Adieresis","Agrave","Aring","Atilde","Ccedilla","Eacute","Ecircumflex","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Ntilde","Oacute","Ocircumflex","Odieresis","Ograve","Otilde","Scaron","Uacute","Ucircumflex","Udieresis","Ugrave","Yacute","Ydieresis","Zcaron","aacute","acircumflex","adieresis","agrave","aring","atilde","ccedilla","eacute","ecircumflex","edieresis","egrave","iacute","icircumflex","idieresis","igrave","ntilde","oacute","ocircumflex","odieresis","ograve","otilde","scaron","uacute","ucircumflex","udieresis","ugrave","yacute","ydieresis","zcaron","exclamsmall","Hungarumlautsmall","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","commasuperior","threequartersemdash","periodsuperior","questionsmall","asuperior","bsuperior","centsuperior","dsuperior","esuperior","isuperior","lsuperior","msuperior","nsuperior","osuperior","rsuperior","ssuperior","tsuperior","ff","ffi","ffl","parenleftinferior","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","exclamdownsmall","centoldstyle","Lslashsmall","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","Dotaccentsmall","Macronsmall","figuredash","hypheninferior","Ogoneksmall","Ringsmall","Cedillasmall","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","zerosuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall","001.000","001.001","001.002","001.003","Black","Bold","Book","Light","Medium","Regular","Roman","Semibold"],Z=["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","","endash","dagger","daggerdbl","periodcentered","","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","","questiondown","","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","","ring","cedilla","","hungarumlaut","ogonek","caron","emdash","","","","","","","","","","","","","","","","","AE","","ordfeminine","","","","","Lslash","Oslash","OE","ordmasculine","","","","","","ae","","","","dotlessi","","","lslash","oslash","oe","germandbls"],U=[".notdef","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quoteright","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","quoteleft","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","exclamdown","cent","sterling","fraction","yen","florin","section","currency","quotesingle","quotedblleft","guillemotleft","guilsinglleft","guilsinglright","fi","fl","endash","dagger","daggerdbl","periodcentered","paragraph","bullet","quotesinglbase","quotedblbase","quotedblright","guillemotright","ellipsis","perthousand","questiondown","grave","acute","circumflex","tilde","macron","breve","dotaccent","dieresis","ring","cedilla","hungarumlaut","ogonek","caron","emdash","AE","ordfeminine","Lslash","Oslash","OE","ordmasculine","ae","dotlessi","lslash","oslash","oe","germandbls","onesuperior","logicalnot","mu","trademark","Eth","onehalf","plusminus","Thorn","onequarter","divide","brokenbar","degree","thorn","threequarters","twosuperior","registered","minus","eth","multiply","threesuperior","copyright","Aacute","Acircumflex","Adieresis","Agrave","Aring","Atilde","Ccedilla","Eacute","Ecircumflex","Edieresis","Egrave","Iacute","Icircumflex","Idieresis","Igrave","Ntilde","Oacute","Ocircumflex","Odieresis","Ograve","Otilde","Scaron","Uacute","Ucircumflex","Udieresis","Ugrave","Yacute","Ydieresis","Zcaron","aacute","acircumflex","adieresis","agrave","aring","atilde","ccedilla","eacute","ecircumflex","edieresis","egrave","iacute","icircumflex","idieresis","igrave","ntilde","oacute","ocircumflex","odieresis","ograve","otilde","scaron","uacute","ucircumflex","udieresis","ugrave","yacute","ydieresis","zcaron"],GA=new e.Struct({reserved:new e.Reserved(e.uint16),reqFeatureIndex:e.uint16,featureCount:e.uint16,featureIndexes:new e.Array(e.uint16,"featureCount")}),At=new e.Struct({tag:new e.String(4),langSys:new e.Pointer(e.uint16,GA,{type:"parent"})}),O=new e.Struct({defaultLangSys:new e.Pointer(e.uint16,GA),count:e.uint16,langSysRecords:new e.Array(At,"count")}),qA=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,O,{type:"parent"})}),nt=new e.Array(qA,e.uint16),MA=new e.Struct({featureParams:e.uint16,lookupCount:e.uint16,lookupListIndexes:new e.Array(e.uint16,"lookupCount")}),jA=new e.Struct({tag:new e.String(4),feature:new e.Pointer(e.uint16,MA,{type:"parent"})}),ot=new e.Array(jA,e.uint16),Tt=new e.Struct({markAttachmentType:e.uint8,flags:new e.Bitfield(e.uint8,["rightToLeft","ignoreBaseGlyphs","ignoreLigatures","ignoreMarks","useMarkFilteringSet"])});function yt(tA){var G=new e.Struct({lookupType:e.uint16,flags:Tt,subTableCount:e.uint16,subTables:new e.Array(new e.Pointer(e.uint16,tA),"subTableCount"),markFilteringSet:new e.Optional(e.uint16,function(K){return K.flags.flags.useMarkFilteringSet})});return new e.LazyArray(new e.Pointer(e.uint16,G),e.uint16)}var Ut=new e.Struct({start:e.uint16,end:e.uint16,startCoverageIndex:e.uint16}),Lt=new e.VersionedStruct(e.uint16,{1:{glyphCount:e.uint16,glyphs:new e.Array(e.uint16,"glyphCount")},2:{rangeCount:e.uint16,rangeRecords:new e.Array(Ut,"rangeCount")}}),sn=new e.Struct({start:e.uint16,end:e.uint16,class:e.uint16}),$t=new e.VersionedStruct(e.uint16,{1:{startGlyph:e.uint16,glyphCount:e.uint16,classValueArray:new e.Array(e.uint16,"glyphCount")},2:{classRangeCount:e.uint16,classRangeRecord:new e.Array(sn,"classRangeCount")}}),Kt=new e.Struct({a:e.uint16,b:e.uint16,deltaFormat:e.uint16}),Me=new e.Struct({sequenceIndex:e.uint16,lookupListIndex:e.uint16}),ze=new e.Struct({glyphCount:e.uint16,lookupCount:e.uint16,input:new e.Array(e.uint16,function(tA){return tA.glyphCount-1}),lookupRecords:new e.Array(Me,"lookupCount")}),Re=new e.Array(new e.Pointer(e.uint16,ze),e.uint16),yn=new e.Struct({glyphCount:e.uint16,lookupCount:e.uint16,classes:new e.Array(e.uint16,function(tA){return tA.glyphCount-1}),lookupRecords:new e.Array(Me,"lookupCount")}),Mn=new e.Array(new e.Pointer(e.uint16,yn),e.uint16),ee=new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),ruleSetCount:e.uint16,ruleSets:new e.Array(new e.Pointer(e.uint16,Re),"ruleSetCount")},2:{coverage:new e.Pointer(e.uint16,Lt),classDef:new e.Pointer(e.uint16,$t),classSetCnt:e.uint16,classSet:new e.Array(new e.Pointer(e.uint16,Mn),"classSetCnt")},3:{glyphCount:e.uint16,lookupCount:e.uint16,coverages:new e.Array(new e.Pointer(e.uint16,Lt),"glyphCount"),lookupRecords:new e.Array(Me,"lookupCount")}}),An=new e.Struct({backtrackGlyphCount:e.uint16,backtrack:new e.Array(e.uint16,"backtrackGlyphCount"),inputGlyphCount:e.uint16,input:new e.Array(e.uint16,function(tA){return tA.inputGlyphCount-1}),lookaheadGlyphCount:e.uint16,lookahead:new e.Array(e.uint16,"lookaheadGlyphCount"),lookupCount:e.uint16,lookupRecords:new e.Array(Me,"lookupCount")}),Te=new e.Array(new e.Pointer(e.uint16,An),e.uint16),Fe=new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),chainCount:e.uint16,chainRuleSets:new e.Array(new e.Pointer(e.uint16,Te),"chainCount")},2:{coverage:new e.Pointer(e.uint16,Lt),backtrackClassDef:new e.Pointer(e.uint16,$t),inputClassDef:new e.Pointer(e.uint16,$t),lookaheadClassDef:new e.Pointer(e.uint16,$t),chainCount:e.uint16,chainClassSet:new e.Array(new e.Pointer(e.uint16,Te),"chainCount")},3:{backtrackGlyphCount:e.uint16,backtrackCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"backtrackGlyphCount"),inputGlyphCount:e.uint16,inputCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"inputGlyphCount"),lookaheadGlyphCount:e.uint16,lookaheadCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"lookaheadGlyphCount"),lookupCount:e.uint16,lookupRecords:new e.Array(Me,"lookupCount")}}),Qe=new e.Fixed(16,"BE",14),In=new e.Struct({startCoord:Qe,peakCoord:Qe,endCoord:Qe}),wn=new e.Struct({axisCount:e.uint16,regionCount:e.uint16,variationRegions:new e.Array(new e.Array(In,"axisCount"),"regionCount")}),kt=new e.Struct({shortDeltas:new e.Array(e.int16,function(tA){return tA.parent.shortDeltaCount}),regionDeltas:new e.Array(e.int8,function(tA){return tA.parent.regionIndexCount-tA.parent.shortDeltaCount}),deltas:function(G){return G.shortDeltas.concat(G.regionDeltas)}}),zt=new e.Struct({itemCount:e.uint16,shortDeltaCount:e.uint16,regionIndexCount:e.uint16,regionIndexes:new e.Array(e.uint16,"regionIndexCount"),deltaSets:new e.Array(kt,"itemCount")}),Wt=new e.Struct({format:e.uint16,variationRegionList:new e.Pointer(e.uint32,wn),variationDataCount:e.uint16,itemVariationData:new e.Array(new e.Pointer(e.uint32,zt),"variationDataCount")}),ae=new e.VersionedStruct(e.uint16,{1:(a={axisIndex:e.uint16},a.axisIndex=e.uint16,a.filterRangeMinValue=Qe,a.filterRangeMaxValue=Qe,a)}),mn=new e.Struct({conditionCount:e.uint16,conditionTable:new e.Array(new e.Pointer(e.uint32,ae),"conditionCount")}),dn=new e.Struct({featureIndex:e.uint16,alternateFeatureTable:new e.Pointer(e.uint32,MA,{type:"parent"})}),Tn=new e.Struct({version:e.fixed32,substitutionCount:e.uint16,substitutions:new e.Array(dn,"substitutionCount")}),Wn=new e.Struct({conditionSet:new e.Pointer(e.uint32,mn,{type:"parent"}),featureTableSubstitution:new e.Pointer(e.uint32,Tn,{type:"parent"})}),ti=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,featureVariationRecordCount:e.uint32,featureVariationRecords:new e.Array(Wn,"featureVariationRecordCount")}),xn=function(){function tA(K,M){this.predefinedOps=K,this.type=M}var G=tA.prototype;return G.decode=function(M,N,P){return this.predefinedOps[P[0]]?this.predefinedOps[P[0]]:this.type.decode(M,N,P)},G.size=function(M,N){return this.type.size(M,N)},G.encode=function(M,N,P){var nA=this.predefinedOps.indexOf(N);return-1!==nA?nA:this.type.encode(M,N,P)},tA}(),ZA=function(tA){function G(){return tA.call(this,"UInt8")||this}return w(G,tA),G.prototype.decode=function(N){return 127&e.uint8.decode(N)},G}(e.Number),SA=new e.Struct({first:e.uint16,nLeft:e.uint8}),it=new e.Struct({first:e.uint16,nLeft:e.uint16}),TA=new xn([Z,["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","space","exclamsmall","Hungarumlautsmall","","dollaroldstyle","dollarsuperior","ampersandsmall","Acutesmall","parenleftsuperior","parenrightsuperior","twodotenleader","onedotenleader","comma","hyphen","period","fraction","zerooldstyle","oneoldstyle","twooldstyle","threeoldstyle","fouroldstyle","fiveoldstyle","sixoldstyle","sevenoldstyle","eightoldstyle","nineoldstyle","colon","semicolon","commasuperior","threequartersemdash","periodsuperior","questionsmall","","asuperior","bsuperior","centsuperior","dsuperior","esuperior","","","isuperior","","","lsuperior","msuperior","nsuperior","osuperior","","","rsuperior","ssuperior","tsuperior","","ff","fi","fl","ffi","ffl","parenleftinferior","","parenrightinferior","Circumflexsmall","hyphensuperior","Gravesmall","Asmall","Bsmall","Csmall","Dsmall","Esmall","Fsmall","Gsmall","Hsmall","Ismall","Jsmall","Ksmall","Lsmall","Msmall","Nsmall","Osmall","Psmall","Qsmall","Rsmall","Ssmall","Tsmall","Usmall","Vsmall","Wsmall","Xsmall","Ysmall","Zsmall","colonmonetary","onefitted","rupiah","Tildesmall","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","exclamdownsmall","centoldstyle","Lslashsmall","","","Scaronsmall","Zcaronsmall","Dieresissmall","Brevesmall","Caronsmall","","Dotaccentsmall","","","Macronsmall","","","figuredash","hypheninferior","","","Ogoneksmall","Ringsmall","Cedillasmall","","","","onequarter","onehalf","threequarters","questiondownsmall","oneeighth","threeeighths","fiveeighths","seveneighths","onethird","twothirds","","","zerosuperior","onesuperior","twosuperior","threesuperior","foursuperior","fivesuperior","sixsuperior","sevensuperior","eightsuperior","ninesuperior","zeroinferior","oneinferior","twoinferior","threeinferior","fourinferior","fiveinferior","sixinferior","seveninferior","eightinferior","nineinferior","centinferior","dollarinferior","periodinferior","commainferior","Agravesmall","Aacutesmall","Acircumflexsmall","Atildesmall","Adieresissmall","Aringsmall","AEsmall","Ccedillasmall","Egravesmall","Eacutesmall","Ecircumflexsmall","Edieresissmall","Igravesmall","Iacutesmall","Icircumflexsmall","Idieresissmall","Ethsmall","Ntildesmall","Ogravesmall","Oacutesmall","Ocircumflexsmall","Otildesmall","Odieresissmall","OEsmall","Oslashsmall","Ugravesmall","Uacutesmall","Ucircumflexsmall","Udieresissmall","Yacutesmall","Thornsmall","Ydieresissmall"]],new ht(new e.VersionedStruct(new ZA,{0:{nCodes:e.uint8,codes:new e.Array(e.uint8,"nCodes")},1:{nRanges:e.uint8,ranges:new e.Array(SA,"nRanges")}}),{lazy:!0})),UA=function(tA){function G(){return tA.apply(this,arguments)||this}return w(G,tA),G.prototype.decode=function(N,P){for(var nA=h.resolveLength(this.length,N,P),oA=0,lA=[];oA=2?null:M=2||this.isCIDFont)return null;var N=this.topDict.charset;if(Array.isArray(N))return N[M];if(0===M)return".notdef";switch(M-=1,N.version){case 0:return this.string(N.glyphs[M]);case 1:case 2:for(var P=0;P>1;if(M=N[oA+1].first))return N[oA].fd;P=oA+1}}default:throw new Error("Unknown FDSelect version: ".concat(this.topDict.FDSelect.version))}},G.privateDictForGlyph=function(M){if(this.topDict.FDSelect){var N=this.fdForGlyph(M);return this.topDict.FDArray[N]?this.topDict.FDArray[N].Private:null}return this.version<2?this.topDict.Private:this.topDict.FDArray[0].Private},o(tA,[{key:"postscriptName",get:function(){return this.version<2?this.nameIndex[0]:null}},{key:"fullName",get:function(){return this.string(this.topDict.FullName)}},{key:"familyName",get:function(){return this.string(this.topDict.FamilyName)}}]),tA}(),Zt=new e.Struct({glyphIndex:e.uint16,vertOriginY:e.int16}),Ht=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,defaultVertOriginY:e.int16,numVertOriginYMetrics:e.uint16,metrics:new e.Array(Zt,"numVertOriginYMetrics")}),ie=new e.Struct({height:e.uint8,width:e.uint8,horiBearingX:e.int8,horiBearingY:e.int8,horiAdvance:e.uint8,vertBearingX:e.int8,vertBearingY:e.int8,vertAdvance:e.uint8}),Jt=new e.Struct({height:e.uint8,width:e.uint8,bearingX:e.int8,bearingY:e.int8,advance:e.uint8}),ue=new e.Struct({glyph:e.uint16,xOffset:e.int8,yOffset:e.int8}),se=function(){},ve=function(){},ge=(new e.VersionedStruct("version",{1:{metrics:Jt,data:se},2:{metrics:Jt,data:ve},5:{data:ve},6:{metrics:ie,data:se},7:{metrics:ie,data:ve},8:{metrics:Jt,pad:new e.Reserved(e.uint8),numComponents:e.uint16,components:new e.Array(ue,"numComponents")},9:{metrics:ie,pad:new e.Reserved(e.uint8),numComponents:e.uint16,components:new e.Array(ue,"numComponents")},17:{metrics:Jt,dataLen:e.uint32,data:new e.Buffer("dataLen")},18:{metrics:ie,dataLen:e.uint32,data:new e.Buffer("dataLen")},19:{dataLen:e.uint32,data:new e.Buffer("dataLen")}}),new e.Struct({ascender:e.int8,descender:e.int8,widthMax:e.uint8,caretSlopeNumerator:e.int8,caretSlopeDenominator:e.int8,caretOffset:e.int8,minOriginSB:e.int8,minAdvanceSB:e.int8,maxBeforeBL:e.int8,minAfterBL:e.int8,pad:new e.Reserved(e.int8,2)})),xe=new e.Struct({glyphCode:e.uint16,offset:e.uint16}),Ne=new e.VersionedStruct(e.uint16,{header:{imageFormat:e.uint16,imageDataOffset:e.uint32},1:{offsetArray:new e.Array(e.uint32,function(tA){return tA.parent.lastGlyphIndex-tA.parent.firstGlyphIndex+1})},2:{imageSize:e.uint32,bigMetrics:ie},3:{offsetArray:new e.Array(e.uint16,function(tA){return tA.parent.lastGlyphIndex-tA.parent.firstGlyphIndex+1})},4:{numGlyphs:e.uint32,glyphArray:new e.Array(xe,function(tA){return tA.numGlyphs+1})},5:{imageSize:e.uint32,bigMetrics:ie,numGlyphs:e.uint32,glyphCodeArray:new e.Array(e.uint16,"numGlyphs")}}),qe=new e.Struct({firstGlyphIndex:e.uint16,lastGlyphIndex:e.uint16,subtable:new e.Pointer(e.uint32,Ne)}),Dn=new e.Struct({indexSubTableArray:new e.Pointer(e.uint32,new e.Array(qe,1),{type:"parent"}),indexTablesSize:e.uint32,numberOfIndexSubTables:e.uint32,colorRef:e.uint32,hori:ge,vert:ge,startGlyphIndex:e.uint16,endGlyphIndex:e.uint16,ppemX:e.uint8,ppemY:e.uint8,bitDepth:e.uint8,flags:new e.Bitfield(e.uint8,["horizontal","vertical"])}),tn=new e.Struct({version:e.uint32,numSizes:e.uint32,sizes:new e.Array(Dn,"numSizes")}),Qn=new e.Struct({ppem:e.uint16,resolution:e.uint16,imageOffsets:new e.Array(new e.Pointer(e.uint32,"void"),function(tA){return tA.parent.parent.maxp.numGlyphs+1})}),Yn=new e.Struct({version:e.uint16,flags:new e.Bitfield(e.uint16,["renderOutlines"]),numImgTables:e.uint32,imageTables:new e.Array(new e.Pointer(e.uint32,Qn),"numImgTables")}),en=new e.Struct({gid:e.uint16,paletteIndex:e.uint16}),gn=new e.Struct({gid:e.uint16,firstLayerIndex:e.uint16,numLayers:e.uint16}),on=new e.Struct({version:e.uint16,numBaseGlyphRecords:e.uint16,baseGlyphRecord:new e.Pointer(e.uint32,new e.Array(gn,"numBaseGlyphRecords")),layerRecords:new e.Pointer(e.uint32,new e.Array(en,"numLayerRecords"),{lazy:!0}),numLayerRecords:e.uint16}),Mi=new e.Struct({blue:e.uint8,green:e.uint8,red:e.uint8,alpha:e.uint8}),Ii=new e.VersionedStruct(e.uint16,{header:{numPaletteEntries:e.uint16,numPalettes:e.uint16,numColorRecords:e.uint16,colorRecords:new e.Pointer(e.uint32,new e.Array(Mi,"numColorRecords")),colorRecordIndices:new e.Array(e.uint16,"numPalettes")},0:{},1:{offsetPaletteTypeArray:new e.Pointer(e.uint32,new e.Array(e.uint32,"numPalettes")),offsetPaletteLabelArray:new e.Pointer(e.uint32,new e.Array(e.uint16,"numPalettes")),offsetPaletteEntryLabelArray:new e.Pointer(e.uint32,new e.Array(e.uint16,"numPaletteEntries"))}}),Kn=new e.VersionedStruct(e.uint16,{1:{coordinate:e.int16},2:{coordinate:e.int16,referenceGlyph:e.uint16,baseCoordPoint:e.uint16},3:{coordinate:e.int16,deviceTable:new e.Pointer(e.uint16,Kt)}}),Di=new e.Struct({defaultIndex:e.uint16,baseCoordCount:e.uint16,baseCoords:new e.Array(new e.Pointer(e.uint16,Kn),"baseCoordCount")}),vi=new e.Struct({tag:new e.String(4),minCoord:new e.Pointer(e.uint16,Kn,{type:"parent"}),maxCoord:new e.Pointer(e.uint16,Kn,{type:"parent"})}),jn=new e.Struct({minCoord:new e.Pointer(e.uint16,Kn),maxCoord:new e.Pointer(e.uint16,Kn),featMinMaxCount:e.uint16,featMinMaxRecords:new e.Array(vi,"featMinMaxCount")}),Ci=new e.Struct({tag:new e.String(4),minMax:new e.Pointer(e.uint16,jn,{type:"parent"})}),ei=new e.Struct({baseValues:new e.Pointer(e.uint16,Di),defaultMinMax:new e.Pointer(e.uint16,jn),baseLangSysCount:e.uint16,baseLangSysRecords:new e.Array(Ci,"baseLangSysCount")}),Sn=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,ei,{type:"parent"})}),sa=new e.Array(Sn,e.uint16),dA=new e.Array(new e.String(4),e.uint16),H=new e.Struct({baseTagList:new e.Pointer(e.uint16,dA),baseScriptList:new e.Pointer(e.uint16,sa)}),T=new e.VersionedStruct(e.uint32,{header:{horizAxis:new e.Pointer(e.uint16,H),vertAxis:new e.Pointer(e.uint16,H)},65536:{},65537:{itemVariationStore:new e.Pointer(e.uint32,Wt)}}),X=new e.Array(e.uint16,e.uint16),V=new e.Struct({coverage:new e.Pointer(e.uint16,Lt),glyphCount:e.uint16,attachPoints:new e.Array(new e.Pointer(e.uint16,X),"glyphCount")}),uA=new e.VersionedStruct(e.uint16,{1:{coordinate:e.int16},2:{caretValuePoint:e.uint16},3:{coordinate:e.int16,deviceTable:new e.Pointer(e.uint16,Kt)}}),mA=new e.Array(new e.Pointer(e.uint16,uA),e.uint16),tt=new e.Struct({coverage:new e.Pointer(e.uint16,Lt),ligGlyphCount:e.uint16,ligGlyphs:new e.Array(new e.Pointer(e.uint16,mA),"ligGlyphCount")}),rt=new e.Struct({markSetTableFormat:e.uint16,markSetCount:e.uint16,coverage:new e.Array(new e.Pointer(e.uint32,Lt),"markSetCount")}),ut=new e.VersionedStruct(e.uint32,{header:{glyphClassDef:new e.Pointer(e.uint16,$t),attachList:new e.Pointer(e.uint16,V),ligCaretList:new e.Pointer(e.uint16,tt),markAttachClassDef:new e.Pointer(e.uint16,$t)},65536:{},65538:{markGlyphSetsDef:new e.Pointer(e.uint16,rt)},65539:{markGlyphSetsDef:new e.Pointer(e.uint16,rt),itemVariationStore:new e.Pointer(e.uint32,Wt)}}),Ct=new e.Bitfield(e.uint16,["xPlacement","yPlacement","xAdvance","yAdvance","xPlaDevice","yPlaDevice","xAdvDevice","yAdvDevice"]),Mt={xPlacement:e.int16,yPlacement:e.int16,xAdvance:e.int16,yAdvance:e.int16,xPlaDevice:new e.Pointer(e.uint16,Kt,{type:"global",relativeTo:function(G){return G.rel}}),yPlaDevice:new e.Pointer(e.uint16,Kt,{type:"global",relativeTo:function(G){return G.rel}}),xAdvDevice:new e.Pointer(e.uint16,Kt,{type:"global",relativeTo:function(G){return G.rel}}),yAdvDevice:new e.Pointer(e.uint16,Kt,{type:"global",relativeTo:function(G){return G.rel}})},Dt=function(){function tA(K){void 0===K&&(K="valueFormat"),this.key=K}var G=tA.prototype;return G.buildStruct=function(M){for(var N=M;!N[this.key]&&N.parent;)N=N.parent;if(N[this.key]){var P={rel:function(){return N._startOffset}},nA=N[this.key];for(var oA in nA)nA[oA]&&(P[oA]=Mt[oA]);return new e.Struct(P)}},G.size=function(M,N){return this.buildStruct(N).size(M,N)},G.decode=function(M,N){var P=this.buildStruct(N).decode(M,N);return delete P.rel,P},tA}(),Ft=new e.Struct({secondGlyph:e.uint16,value1:new Dt("valueFormat1"),value2:new Dt("valueFormat2")}),Ot=new e.Array(Ft,e.uint16),Vt=new e.Struct({value1:new Dt("valueFormat1"),value2:new Dt("valueFormat2")}),Ae=new e.VersionedStruct(e.uint16,{1:{xCoordinate:e.int16,yCoordinate:e.int16},2:{xCoordinate:e.int16,yCoordinate:e.int16,anchorPoint:e.uint16},3:{xCoordinate:e.int16,yCoordinate:e.int16,xDeviceTable:new e.Pointer(e.uint16,Kt),yDeviceTable:new e.Pointer(e.uint16,Kt)}}),Be=new e.Struct({entryAnchor:new e.Pointer(e.uint16,Ae,{type:"parent"}),exitAnchor:new e.Pointer(e.uint16,Ae,{type:"parent"})}),Ye=new e.Struct({class:e.uint16,markAnchor:new e.Pointer(e.uint16,Ae,{type:"parent"})}),Ze=new e.Array(Ye,e.uint16),me=new e.Array(new e.Pointer(e.uint16,Ae),function(tA){return tA.parent.classCount}),Ve=new e.Array(me,e.uint16),hn=new e.Array(new e.Pointer(e.uint16,Ae),function(tA){return tA.parent.parent.classCount}),We=new e.Array(hn,e.uint16),En=new e.Array(new e.Pointer(e.uint16,We),e.uint16),vn=new e.VersionedStruct("lookupType",{1:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),valueFormat:Ct,value:new Dt},2:{coverage:new e.Pointer(e.uint16,Lt),valueFormat:Ct,valueCount:e.uint16,values:new e.LazyArray(new Dt,"valueCount")}}),2:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),valueFormat1:Ct,valueFormat2:Ct,pairSetCount:e.uint16,pairSets:new e.LazyArray(new e.Pointer(e.uint16,Ot),"pairSetCount")},2:{coverage:new e.Pointer(e.uint16,Lt),valueFormat1:Ct,valueFormat2:Ct,classDef1:new e.Pointer(e.uint16,$t),classDef2:new e.Pointer(e.uint16,$t),class1Count:e.uint16,class2Count:e.uint16,classRecords:new e.LazyArray(new e.LazyArray(Vt,"class2Count"),"class1Count")}}),3:{format:e.uint16,coverage:new e.Pointer(e.uint16,Lt),entryExitCount:e.uint16,entryExitRecords:new e.Array(Be,"entryExitCount")},4:{format:e.uint16,markCoverage:new e.Pointer(e.uint16,Lt),baseCoverage:new e.Pointer(e.uint16,Lt),classCount:e.uint16,markArray:new e.Pointer(e.uint16,Ze),baseArray:new e.Pointer(e.uint16,Ve)},5:{format:e.uint16,markCoverage:new e.Pointer(e.uint16,Lt),ligatureCoverage:new e.Pointer(e.uint16,Lt),classCount:e.uint16,markArray:new e.Pointer(e.uint16,Ze),ligatureArray:new e.Pointer(e.uint16,En)},6:{format:e.uint16,mark1Coverage:new e.Pointer(e.uint16,Lt),mark2Coverage:new e.Pointer(e.uint16,Lt),classCount:e.uint16,mark1Array:new e.Pointer(e.uint16,Ze),mark2Array:new e.Pointer(e.uint16,Ve)},7:ee,8:Fe,9:{posFormat:e.uint16,lookupType:e.uint16,extension:new e.Pointer(e.uint32,vn)}});vn.versions[9].extension.type=vn;var Xn=new e.VersionedStruct(e.uint32,{header:{scriptList:new e.Pointer(e.uint16,nt),featureList:new e.Pointer(e.uint16,ot),lookupList:new e.Pointer(e.uint16,new yt(vn))},65536:{},65537:{featureVariations:new e.Pointer(e.uint32,ti)}}),On=new e.Array(e.uint16,e.uint16),bi=On,Jn=new e.Struct({glyph:e.uint16,compCount:e.uint16,components:new e.Array(e.uint16,function(tA){return tA.compCount-1})}),ni=new e.Array(new e.Pointer(e.uint16,Jn),e.uint16),Zn=new e.VersionedStruct("lookupType",{1:new e.VersionedStruct(e.uint16,{1:{coverage:new e.Pointer(e.uint16,Lt),deltaGlyphID:e.int16},2:{coverage:new e.Pointer(e.uint16,Lt),glyphCount:e.uint16,substitute:new e.LazyArray(e.uint16,"glyphCount")}}),2:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),count:e.uint16,sequences:new e.LazyArray(new e.Pointer(e.uint16,On),"count")},3:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),count:e.uint16,alternateSet:new e.LazyArray(new e.Pointer(e.uint16,bi),"count")},4:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),count:e.uint16,ligatureSets:new e.LazyArray(new e.Pointer(e.uint16,ni),"count")},5:ee,6:Fe,7:{substFormat:e.uint16,lookupType:e.uint16,extension:new e.Pointer(e.uint32,Zn)},8:{substFormat:e.uint16,coverage:new e.Pointer(e.uint16,Lt),backtrackCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"backtrackGlyphCount"),lookaheadGlyphCount:e.uint16,lookaheadCoverage:new e.Array(new e.Pointer(e.uint16,Lt),"lookaheadGlyphCount"),glyphCount:e.uint16,substitutes:new e.Array(e.uint16,"glyphCount")}});Zn.versions[7].extension.type=Zn;var qn=new e.VersionedStruct(e.uint32,{header:{scriptList:new e.Pointer(e.uint16,nt),featureList:new e.Pointer(e.uint16,ot),lookupList:new e.Pointer(e.uint16,new yt(Zn))},65536:{},65537:{featureVariations:new e.Pointer(e.uint32,ti)}}),Hn=new e.Array(e.uint16,e.uint16),Ri=new e.Struct({shrinkageEnableGSUB:new e.Pointer(e.uint16,Hn),shrinkageDisableGSUB:new e.Pointer(e.uint16,Hn),shrinkageEnableGPOS:new e.Pointer(e.uint16,Hn),shrinkageDisableGPOS:new e.Pointer(e.uint16,Hn),shrinkageJstfMax:new e.Pointer(e.uint16,new yt(vn)),extensionEnableGSUB:new e.Pointer(e.uint16,Hn),extensionDisableGSUB:new e.Pointer(e.uint16,Hn),extensionEnableGPOS:new e.Pointer(e.uint16,Hn),extensionDisableGPOS:new e.Pointer(e.uint16,Hn),extensionJstfMax:new e.Pointer(e.uint16,new yt(vn))}),Ti=new e.Array(new e.Pointer(e.uint16,Ri),e.uint16),Ui=new e.Struct({tag:new e.String(4),jstfLangSys:new e.Pointer(e.uint16,Ti)}),Fi=new e.Struct({extenderGlyphs:new e.Pointer(e.uint16,new e.Array(e.uint16,e.uint16)),defaultLangSys:new e.Pointer(e.uint16,Ti),langSysCount:e.uint16,langSysRecords:new e.Array(Ui,"langSysCount")}),Li=new e.Struct({tag:new e.String(4),script:new e.Pointer(e.uint16,Fi,{type:"parent"})}),Pi=new e.Struct({version:e.uint32,scriptCount:e.uint16,scriptList:new e.Array(Li,"scriptCount")}),zi=new e.Struct({entry:new(function(){function tA(K){this._size=K}var G=tA.prototype;return G.decode=function(M,N){switch(this.size(0,N)){case 1:return M.readUInt8();case 2:return M.readUInt16BE();case 3:return M.readUInt24BE();case 4:return M.readUInt32BE()}},G.size=function(M,N){return h.resolveLength(this._size,null,N)},tA}())(function(tA){return 1+((48&tA.parent.entryFormat)>>4)}),outerIndex:function(G){return G.entry>>1+(15&G.parent.entryFormat)},innerIndex:function(G){return G.entry&(1<<1+(15&G.parent.entryFormat))-1}}),Vn=new e.Struct({entryFormat:e.uint16,mapCount:e.uint16,mapData:new e.Array(zi,"mapCount")}),Gi=new e.Struct({majorVersion:e.uint16,minorVersion:e.uint16,itemVariationStore:new e.Pointer(e.uint32,Wt),advanceWidthMapping:new e.Pointer(e.uint32,Vn),LSBMapping:new e.Pointer(e.uint32,Vn),RSBMapping:new e.Pointer(e.uint32,Vn)}),ii=new e.Struct({format:e.uint32,length:e.uint32,offset:e.uint32}),Rr=new e.Struct({reserved:new e.Reserved(e.uint16,2),cbSignature:e.uint32,signature:new e.Buffer("cbSignature")}),Tr=new e.Struct({ulVersion:e.uint32,usNumSigs:e.uint16,usFlag:e.uint16,signatures:new e.Array(ii,"usNumSigs"),signatureBlocks:new e.Array(Rr,"usNumSigs")}),Bs=new e.Struct({rangeMaxPPEM:e.uint16,rangeGaspBehavior:new e.Bitfield(e.uint16,["grayscale","gridfit","symmetricSmoothing","symmetricGridfit"])}),us=new e.Struct({version:e.uint16,numRanges:e.uint16,gaspRanges:new e.Array(Bs,"numRanges")}),fs=new e.Struct({pixelSize:e.uint8,maximumWidth:e.uint8,widths:new e.Array(e.uint8,function(tA){return tA.parent.parent.maxp.numGlyphs})}),hs=new e.Struct({version:e.uint16,numRecords:e.int16,sizeDeviceRecord:e.int32,records:new e.Array(fs,"numRecords")}),Es=new e.Struct({left:e.uint16,right:e.uint16,value:e.int16}),oa=new e.Struct({firstGlyph:e.uint16,nGlyphs:e.uint16,offsets:new e.Array(e.uint16,"nGlyphs"),max:function(G){return G.offsets.length&&Math.max.apply(Math,G.offsets)}}),Cs=new e.Struct({off:function(G){return G._startOffset-G.parent.parent._startOffset},len:function(G){return G.parent.rowWidth/2*((G.parent.leftTable.max-G.off)/G.parent.rowWidth+1)},values:new e.LazyArray(e.int16,"len")}),la=new e.VersionedStruct("format",{0:{nPairs:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,pairs:new e.Array(Es,"nPairs")},2:{rowWidth:e.uint16,leftTable:new e.Pointer(e.uint16,oa,{type:"parent"}),rightTable:new e.Pointer(e.uint16,oa,{type:"parent"}),array:new e.Pointer(e.uint16,Cs,{type:"parent"})},3:{glyphCount:e.uint16,kernValueCount:e.uint8,leftClassCount:e.uint8,rightClassCount:e.uint8,flags:e.uint8,kernValue:new e.Array(e.int16,"kernValueCount"),leftClass:new e.Array(e.uint8,"glyphCount"),rightClass:new e.Array(e.uint8,"glyphCount"),kernIndex:new e.Array(e.uint8,function(tA){return tA.leftClassCount*tA.rightClassCount})}}),ca=new e.VersionedStruct("version",{0:{subVersion:e.uint16,length:e.uint16,format:e.uint8,coverage:new e.Bitfield(e.uint8,["horizontal","minimum","crossStream","override"]),subtable:la,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})},1:{length:e.uint32,coverage:new e.Bitfield(e.uint8,[null,null,null,null,null,"variation","crossStream","vertical"]),format:e.uint8,tupleIndex:e.uint16,subtable:la,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})}}),ws=new e.VersionedStruct(e.uint16,{0:{nTables:e.uint16,tables:new e.Array(ca,"nTables")},1:{reserved:new e.Reserved(e.uint16),nTables:e.uint32,tables:new e.Array(ca,"nTables")}}),ds=new e.Struct({version:e.uint16,numGlyphs:e.uint16,yPels:new e.Array(e.uint8,"numGlyphs")}),Qs=new e.Struct({version:e.uint16,fontNumber:e.uint32,pitch:e.uint16,xHeight:e.uint16,style:e.uint16,typeFamily:e.uint16,capHeight:e.uint16,symbolSet:e.uint16,typeface:new e.String(16),characterComplement:new e.String(8),fileName:new e.String(6),strokeWeight:new e.String(1),widthType:new e.String(1),serifStyle:e.uint8,reserved:new e.Reserved(e.uint8)}),ga=new e.Struct({bCharSet:e.uint8,xRatio:e.uint8,yStartRatio:e.uint8,yEndRatio:e.uint8}),Ba=new e.Struct({yPelHeight:e.uint16,yMax:e.int16,yMin:e.int16}),ms=new e.Struct({recs:e.uint16,startsz:e.uint8,endsz:e.uint8,entries:new e.Array(Ba,"recs")}),ps=new e.Struct({version:e.uint16,numRecs:e.uint16,numRatios:e.uint16,ratioRanges:new e.Array(ga,"numRatios"),offsets:new e.Array(e.uint16,"numRatios"),groups:new e.Array(ms,"numRecs")}),Ms=new e.Struct({version:e.uint16,ascent:e.int16,descent:e.int16,lineGap:e.int16,advanceHeightMax:e.int16,minTopSideBearing:e.int16,minBottomSideBearing:e.int16,yMaxExtent:e.int16,caretSlopeRise:e.int16,caretSlopeRun:e.int16,caretOffset:e.int16,reserved:new e.Reserved(e.int16,4),metricDataFormat:e.int16,numberOfMetrics:e.uint16}),ua=new e.Struct({advance:e.uint16,bearing:e.int16}),Is=new e.Struct({metrics:new e.LazyArray(ua,function(tA){return tA.parent.vhea.numberOfMetrics}),bearings:new e.LazyArray(e.int16,function(tA){return tA.parent.maxp.numGlyphs-tA.parent.vhea.numberOfMetrics})}),fa=new e.Fixed(16,"BE",14),Ds=new e.Struct({fromCoord:fa,toCoord:fa}),vs=new e.Struct({pairCount:e.uint16,correspondence:new e.Array(Ds,"pairCount")}),Fs=new e.Struct({version:e.fixed32,axisCount:e.uint32,segment:new e.Array(vs,"axisCount")}),ys=function(){function tA(K,M,N){this.type=K,this.stream=M,this.parent=N,this.base=this.stream.pos,this._items=[]}var G=tA.prototype;return G.getItem=function(M){if(null==this._items[M]){var N=this.stream.pos;this.stream.pos=this.base+this.type.size(null,this.parent)*M,this._items[M]=this.type.decode(this.stream,this.parent),this.stream.pos=N}return this._items[M]},G.inspect=function(){return"[UnboundedArray ".concat(this.type.constructor.name,"]")},tA}(),_n=function(tA){function G(M){return tA.call(this,M,0)||this}return w(G,tA),G.prototype.decode=function(N,P){return new ys(this.type,N,P)},G}(e.Array),gi=function(G){void 0===G&&(G=e.uint16),G=new(function(){function oA(sA){this.type=sA}var lA=oA.prototype;return lA.decode=function(bA,KA){return this.type.decode(bA,KA=KA.parent.parent)},lA.size=function(bA,KA){return this.type.size(bA,KA=KA.parent.parent)},lA.encode=function(bA,KA,lt){return this.type.encode(bA,KA,lt=lt.parent.parent)},oA}())(G);var M=new e.Struct({unitSize:e.uint16,nUnits:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16}),N=new e.Struct({lastGlyph:e.uint16,firstGlyph:e.uint16,value:G}),P=new e.Struct({lastGlyph:e.uint16,firstGlyph:e.uint16,values:new e.Pointer(e.uint16,new e.Array(G,function(oA){return oA.lastGlyph-oA.firstGlyph+1}),{type:"parent"})}),nA=new e.Struct({glyph:e.uint16,value:G});return new e.VersionedStruct(e.uint16,{0:{values:new _n(G)},2:{binarySearchHeader:M,segments:new e.Array(N,function(oA){return oA.binarySearchHeader.nUnits})},4:{binarySearchHeader:M,segments:new e.Array(P,function(oA){return oA.binarySearchHeader.nUnits})},6:{binarySearchHeader:M,segments:new e.Array(nA,function(oA){return oA.binarySearchHeader.nUnits})},8:{firstGlyph:e.uint16,count:e.uint16,values:new e.Array(G,"count")}})};function Hi(tA,G){void 0===tA&&(tA={}),void 0===G&&(G=e.uint16);var K=Object.assign({newState:e.uint16,flags:e.uint16},tA),M=new e.Struct(K),N=new _n(new e.Array(e.uint16,function(nA){return nA.nClasses}));return new e.Struct({nClasses:e.uint32,classTable:new e.Pointer(e.uint32,new gi(G)),stateArray:new e.Pointer(e.uint32,N),entryTable:new e.Pointer(e.uint32,new _n(M))})}var Ys=new e.VersionedStruct("format",{0:{deltas:new e.Array(e.int16,32)},1:{deltas:new e.Array(e.int16,32),mappingData:new gi(e.uint16)},2:{standardGlyph:e.uint16,controlPoints:new e.Array(e.uint16,32)},3:{standardGlyph:e.uint16,controlPoints:new e.Array(e.uint16,32),mappingData:new gi(e.uint16)}}),ha=new e.Struct({version:e.fixed32,format:e.uint16,defaultBaseline:e.uint16,subtable:Ys}),ri=new e.Struct({setting:e.uint16,nameIndex:e.int16,name:function(G){return G.parent.parent.parent.name.records.fontFeatures[G.nameIndex]}}),Ss=new e.Struct({feature:e.uint16,nSettings:e.uint16,settingTable:new e.Pointer(e.uint32,new e.Array(ri,"nSettings"),{type:"parent"}),featureFlags:new e.Bitfield(e.uint8,[null,null,null,null,null,null,"hasDefault","exclusive"]),defaultSetting:e.uint8,nameIndex:e.int16,name:function(G){return G.parent.parent.name.records.fontFeatures[G.nameIndex]}}),Ns=new e.Struct({version:e.fixed32,featureNameCount:e.uint16,reserved1:new e.Reserved(e.uint16),reserved2:new e.Reserved(e.uint32),featureNames:new e.Array(Ss,"featureNameCount")}),bs=new e.Struct({axisTag:new e.String(4),minValue:e.fixed32,defaultValue:e.fixed32,maxValue:e.fixed32,flags:e.uint16,nameID:e.uint16,name:function(G){return G.parent.parent.name.records.fontFeatures[G.nameID]}}),Rs=new e.Struct({nameID:e.uint16,name:function(G){return G.parent.parent.name.records.fontFeatures[G.nameID]},flags:e.uint16,coord:new e.Array(e.fixed32,function(tA){return tA.parent.axisCount}),postscriptNameID:new e.Optional(e.uint16,function(tA){return tA.parent.instanceSize-tA._currentOffset>0})}),Ts=new e.Struct({version:e.fixed32,offsetToData:e.uint16,countSizePairs:e.uint16,axisCount:e.uint16,axisSize:e.uint16,instanceCount:e.uint16,instanceSize:e.uint16,axis:new e.Array(bs,"axisCount"),instance:new e.Array(Rs,"instanceCount")}),Us=new e.Fixed(16,"BE",14),Ls=function(){function tA(){}return tA.decode=function(K,M){return M.flags?K.readUInt32BE():2*K.readUInt16BE()},tA}(),Ps=new e.Struct({version:e.uint16,reserved:new e.Reserved(e.uint16),axisCount:e.uint16,globalCoordCount:e.uint16,globalCoords:new e.Pointer(e.uint32,new e.Array(new e.Array(Us,"axisCount"),"globalCoordCount")),glyphCount:e.uint16,flags:e.uint16,offsetToData:e.uint32,offsets:new e.Array(new e.Pointer(Ls,"void",{relativeTo:function(G){return G.offsetToData},allowNull:!1}),function(tA){return tA.glyphCount+1})}),zs=new e.Struct({length:e.uint16,coverage:e.uint16,subFeatureFlags:e.uint32,stateTable:new function xs(tA,G){void 0===tA&&(tA={}),void 0===G&&(G=e.uint16);var K=new e.Struct({version:function(){return 8},firstGlyph:e.uint16,values:new e.Array(e.uint8,e.uint16)}),M=Object.assign({newStateOffset:e.uint16,newState:function(lA){return(lA.newStateOffset-(lA.parent.stateArray.base-lA.parent._startOffset))/lA.parent.nClasses},flags:e.uint16},tA),N=new e.Struct(M),P=new _n(new e.Array(e.uint8,function(oA){return oA.nClasses}));return new e.Struct({nClasses:e.uint16,classTable:new e.Pointer(e.uint16,K),stateArray:new e.Pointer(e.uint16,P),entryTable:new e.Pointer(e.uint16,new _n(N))})}}),Gs=new e.Struct({justClass:e.uint32,beforeGrowLimit:e.fixed32,beforeShrinkLimit:e.fixed32,afterGrowLimit:e.fixed32,afterShrinkLimit:e.fixed32,growFlags:e.uint16,shrinkFlags:e.uint16}),Hs=new e.Array(Gs,e.uint32),ks=new e.VersionedStruct("actionType",{0:{lowerLimit:e.fixed32,upperLimit:e.fixed32,order:e.uint16,glyphs:new e.Array(e.uint16,e.uint16)},1:{addGlyph:e.uint16},2:{substThreshold:e.fixed32,addGlyph:e.uint16,substGlyph:e.uint16},3:{},4:{variationAxis:e.uint32,minimumLimit:e.fixed32,noStretchValue:e.fixed32,maximumLimit:e.fixed32},5:{flags:e.uint16,glyph:e.uint16}}),js=new e.Struct({actionClass:e.uint16,actionType:e.uint16,actionLength:e.uint32,actionData:ks,padding:new e.Reserved(e.uint8,function(tA){return tA.actionLength-tA._currentOffset})}),Os=new e.Array(js,e.uint32),Js=new e.Struct({lookupTable:new gi(new e.Pointer(e.uint16,Os))}),Ea=new e.Struct({classTable:new e.Pointer(e.uint16,zs,{type:"parent"}),wdcOffset:e.uint16,postCompensationTable:new e.Pointer(e.uint16,Js,{type:"parent"}),widthDeltaClusters:new gi(new e.Pointer(e.uint16,Hs,{type:"parent",relativeTo:function(G){return G.wdcOffset}}))}),Vs=new e.Struct({version:e.uint32,format:e.uint16,horizontal:new e.Pointer(e.uint16,Ea),vertical:new e.Pointer(e.uint16,Ea)}),Ws={action:e.uint16},Ks={markIndex:e.uint16,currentIndex:e.uint16},Xs={currentInsertIndex:e.uint16,markedInsertIndex:e.uint16},Zs=new e.Struct({items:new _n(new e.Pointer(e.uint32,new gi))}),qs=new e.VersionedStruct("type",{0:{stateTable:new Hi},1:{stateTable:new Hi(Ks),substitutionTable:new e.Pointer(e.uint32,Zs)},2:{stateTable:new Hi(Ws),ligatureActions:new e.Pointer(e.uint32,new _n(e.uint32)),components:new e.Pointer(e.uint32,new _n(e.uint16)),ligatureList:new e.Pointer(e.uint32,new _n(e.uint16))},4:{lookupTable:new gi},5:{stateTable:new Hi(Xs),insertionActions:new e.Pointer(e.uint32,new _n(e.uint16))}}),Ca=new e.Struct({length:e.uint32,coverage:e.uint24,type:e.uint8,subFeatureFlags:e.uint32,table:qs,padding:new e.Reserved(e.uint8,function(tA){return tA.length-tA._currentOffset})}),_s=new e.Struct({featureType:e.uint16,featureSetting:e.uint16,enableFlags:e.uint32,disableFlags:e.uint32}),$s=new e.Struct({defaultFlags:e.uint32,chainLength:e.uint32,nFeatureEntries:e.uint32,nSubtables:e.uint32,features:new e.Array(_s,"nFeatureEntries"),subtables:new e.Array(Ca,"nSubtables")}),Ao=new e.Struct({version:e.uint16,unused:new e.Reserved(e.uint16),nChains:e.uint32,chains:new e.Array($s,"nChains")}),to=new e.Struct({left:e.int16,top:e.int16,right:e.int16,bottom:e.int16}),eo=new e.Struct({version:e.fixed32,format:e.uint16,lookupTable:new gi(to)}),oe={};oe.cmap=J,oe.head=BA,oe.hhea=aA,oe.hmtx=EA,oe.maxp=xA,oe.name=yA,oe["OS/2"]=CA,oe.post=NA,oe.fpgm=pA,oe.loca=JA,oe.prep=ft,oe["cvt "]=zA,oe.glyf=wt,oe["CFF "]=Rt,oe.CFF2=Rt,oe.VORG=Ht,oe.EBLC=tn,oe.CBLC=oe.EBLC,oe.sbix=Yn,oe.COLR=on,oe.CPAL=Ii,oe.BASE=T,oe.GDEF=ut,oe.GPOS=Xn,oe.GSUB=qn,oe.JSTF=Pi,oe.HVAR=Gi,oe.DSIG=Tr,oe.gasp=us,oe.hdmx=hs,oe.kern=ws,oe.LTSH=ds,oe.PCLT=Qs,oe.VDMX=ps,oe.vhea=Ms,oe.vmtx=Is,oe.avar=Fs,oe.bsln=ha,oe.feat=Ns,oe.fvar=Ts,oe.gvar=Ps,oe.just=Vs,oe.morx=Ao,oe.opbd=eo;var Bi,no=new e.Struct({tag:new e.String(4),checkSum:e.uint32,offset:new e.Pointer(e.uint32,"void",{type:"global"}),length:e.uint32}),rr=new e.Struct({tag:new e.String(4),numTables:e.uint16,searchRange:e.uint16,entrySelector:e.uint16,rangeShift:e.uint16,tables:new e.Array(no,"numTables")});function ar(tA,G){for(var K=0,M=tA.length-1;K<=M;){var N=K+M>>1,P=G(tA[N]);if(P<0)M=N-1;else{if(!(P>0))return N;K=N+1}}return-1}function yi(tA,G){for(var K=[];tA>1;if(MlA.endCode.get(KA))){var lt=lA.idRangeOffset.get(KA),$A=void 0;if(0===lt)$A=M+lA.idDelta.get(KA);else{var ct=lt/2+(M-lA.startCode.get(KA))-(lA.segCount-KA);0!==($A=lA.glyphIndexArray.get(ct)||0)&&($A+=lA.idDelta.get(KA))}return 65535&$A}sA=KA+1}}return 0;case 8:throw new Error("TODO: cmap format 8");case 6:case 10:return lA.glyphIndices.get(M-lA.firstCode)||0;case 12:case 13:for(var mt=0,It=lA.nGroups-1;mt<=It;){var Gt=mt+It>>1,_t=lA.groups.get(Gt);if(M<_t.startCharCode)It=Gt-1;else{if(!(M>_t.endCharCode))return 12===lA.version?_t.glyphID+(M-_t.startCharCode):_t.glyphID;mt=Gt+1}}return 0;case 14:throw new Error("TODO: cmap format 14");default:throw new Error("Unknown cmap format ".concat(lA.version))}},G.getVariationSelector=function(M,N){if(!this.uvs)return 0;var P=this.uvs.varSelectors.toArray(),nA=ar(P,function(lA){return N-lA.varSelector}),oA=P[nA];return-1!==nA&&oA.defaultUVS&&(nA=ar(oA.defaultUVS,function(lA){return MlA.startUnicodeValue+lA.additionalCount?1:0})),-1!==nA&&oA.nonDefaultUVS&&-1!==(nA=ar(oA.nonDefaultUVS,function(lA){return M-lA.unicodeValue}))?oA.nonDefaultUVS[nA].glyphID:0},G.getCharacterSet=function(){var M=this.cmap;switch(M.version){case 0:return yi(0,M.codeMap.length);case 4:for(var N=[],P=M.endCode.toArray(),nA=0;nA=qt.glyphID&&M<=qt.glyphID+(qt.endCharCode-qt.startCharCode)&&It.push(qt.startCharCode+(M-qt.glyphID))}return It;case 13:for(var Ce,re=[],ce=r(N.groups.toArray());!(Ce=ce()).done;){var de=Ce.value;M===de.glyphID&&re.push.apply(re,yi(de.startCharCode,de.endCharCode+1))}return re;default:throw new Error("Unknown cmap format ".concat(N.version))}},tA}()).prototype,"getCharacterSet",[$],Object.getOwnPropertyDescriptor(Bi.prototype,"getCharacterSet"),Bi.prototype),F(Bi.prototype,"codePointsForGlyph",[$],Object.getOwnPropertyDescriptor(Bi.prototype,"codePointsForGlyph"),Bi.prototype),Bi),ro=function(){function tA(K){this.kern=K.kern}var G=tA.prototype;return G.process=function(M,N){for(var P=0;P=0&&(sA=bA.pairs[KA].value);break;case 2:var $A=0;N>=bA.rightTable.firstGlyph&&N=bA.leftTable.firstGlyph&&M=bA.glyphCount||N>=bA.glyphCount)return 0;sA=bA.kernValue[bA.kernIndex[bA.leftClass[M]*bA.rightClassCount+bA.rightClass[N]]];break;default:throw new Error("Unsupported kerning sub-table format ".concat(lA.format))}lA.coverage.override?P=sA:P+=sA}}return P},tA}(),ao=function(){function tA(K){this.font=K}var G=tA.prototype;return G.positionGlyphs=function(M,N){for(var P=0,nA=0,oA=0;oA1&&(lA.minX+=(oA.codePoints.length-1)*lA.width/oA.codePoints.length);for(var sA=-N[P].xAdvance,bA=0,KA=this.font.unitsPerEm/16,lt=P+1;lt<=nA;lt++){var $A=M[lt],ct=$A.cbox,mt=N[lt],It=this.getCombiningClass($A.codePoints[0]);if("Not_Reordered"!==It){switch(mt.xOffset=mt.yOffset=0,It){case"Double_Above":case"Double_Below":mt.xOffset+=lA.minX-ct.width/2-ct.minX;break;case"Attached_Below_Left":case"Below_Left":case"Above_Left":mt.xOffset+=lA.minX-ct.minX;break;case"Attached_Above_Right":case"Below_Right":case"Above_Right":mt.xOffset+=lA.maxX-ct.width-ct.minX;break;default:mt.xOffset+=lA.minX+(lA.width-ct.width)/2-ct.minX}switch(It){case"Double_Below":case"Below_Left":case"Below":case"Below_Right":case"Attached_Below_Left":case"Attached_Below":("Attached_Below_Left"===It||"Attached_Below"===It)&&(lA.minY+=KA),mt.yOffset=-lA.minY-ct.maxY,lA.minY+=ct.height;break;case"Double_Above":case"Above_Left":case"Above":case"Above_Right":case"Attached_Above":case"Attached_Above_Right":("Attached_Above"===It||"Attached_Above_Right"===It)&&(lA.maxY+=KA),mt.yOffset=lA.maxY-ct.minY,lA.maxY+=ct.height}mt.xAdvance=mt.yAdvance=0,mt.xOffset+=sA,mt.yOffset+=bA}else sA-=mt.xAdvance,bA-=mt.yAdvance}},G.getCombiningClass=function(M){var N=I.getCombiningClass(M);if(3584==(-256&M))if("Not_Reordered"===N)switch(M){case 3633:case 3636:case 3637:case 3638:case 3639:case 3655:case 3660:case 3645:case 3662:return"Above_Right";case 3761:case 3764:case 3765:case 3766:case 3767:case 3771:case 3788:case 3789:return"Above";case 3772:return"Below"}else if(3642===M)return"Below_Right";switch(N){case"CCC10":case"CCC11":case"CCC12":case"CCC13":case"CCC14":case"CCC15":case"CCC16":case"CCC17":case"CCC18":case"CCC20":case"CCC22":case"CCC29":case"CCC32":case"CCC118":case"CCC129":case"CCC132":return"Below";case"CCC23":return"Attached_Above";case"CCC24":case"CCC107":return"Above_Right";case"CCC25":case"CCC19":return"Above_Left";case"CCC26":case"CCC27":case"CCC28":case"CCC30":case"CCC31":case"CCC33":case"CCC34":case"CCC35":case"CCC36":case"CCC122":case"CCC130":return"Above";case"CCC21":break;case"CCC103":return"Below_Right"}return N},tA}(),xi=function(){function tA(K,M,N,P){void 0===K&&(K=1/0),void 0===M&&(M=1/0),void 0===N&&(N=-1/0),void 0===P&&(P=-1/0),this.minX=K,this.minY=M,this.maxX=N,this.maxY=P}var G=tA.prototype;return G.addPoint=function(M,N){Math.abs(M)!==1/0&&(Mthis.maxX&&(this.maxX=M)),Math.abs(N)!==1/0&&(Nthis.maxY&&(this.maxY=N))},G.copy=function(){return new tA(this.minX,this.minY,this.maxX,this.maxY)},o(tA,[{key:"width",get:function(){return this.maxX-this.minX}},{key:"height",get:function(){return this.maxY-this.minY}}]),tA}(),Yi={Caucasian_Albanian:"aghb",Arabic:"arab",Imperial_Aramaic:"armi",Armenian:"armn",Avestan:"avst",Balinese:"bali",Bamum:"bamu",Bassa_Vah:"bass",Batak:"batk",Bengali:["bng2","beng"],Bopomofo:"bopo",Brahmi:"brah",Braille:"brai",Buginese:"bugi",Buhid:"buhd",Chakma:"cakm",Canadian_Aboriginal:"cans",Carian:"cari",Cham:"cham",Cherokee:"cher",Coptic:"copt",Cypriot:"cprt",Cyrillic:"cyrl",Devanagari:["dev2","deva"],Deseret:"dsrt",Duployan:"dupl",Egyptian_Hieroglyphs:"egyp",Elbasan:"elba",Ethiopic:"ethi",Georgian:"geor",Glagolitic:"glag",Gothic:"goth",Grantha:"gran",Greek:"grek",Gujarati:["gjr2","gujr"],Gurmukhi:["gur2","guru"],Hangul:"hang",Han:"hani",Hanunoo:"hano",Hebrew:"hebr",Hiragana:"hira",Pahawh_Hmong:"hmng",Katakana_Or_Hiragana:"hrkt",Old_Italic:"ital",Javanese:"java",Kayah_Li:"kali",Katakana:"kana",Kharoshthi:"khar",Khmer:"khmr",Khojki:"khoj",Kannada:["knd2","knda"],Kaithi:"kthi",Tai_Tham:"lana",Lao:"lao ",Latin:"latn",Lepcha:"lepc",Limbu:"limb",Linear_A:"lina",Linear_B:"linb",Lisu:"lisu",Lycian:"lyci",Lydian:"lydi",Mahajani:"mahj",Mandaic:"mand",Manichaean:"mani",Mende_Kikakui:"mend",Meroitic_Cursive:"merc",Meroitic_Hieroglyphs:"mero",Malayalam:["mlm2","mlym"],Modi:"modi",Mongolian:"mong",Mro:"mroo",Meetei_Mayek:"mtei",Myanmar:["mym2","mymr"],Old_North_Arabian:"narb",Nabataean:"nbat",Nko:"nko ",Ogham:"ogam",Ol_Chiki:"olck",Old_Turkic:"orkh",Oriya:["ory2","orya"],Osmanya:"osma",Palmyrene:"palm",Pau_Cin_Hau:"pauc",Old_Permic:"perm",Phags_Pa:"phag",Inscriptional_Pahlavi:"phli",Psalter_Pahlavi:"phlp",Phoenician:"phnx",Miao:"plrd",Inscriptional_Parthian:"prti",Rejang:"rjng",Runic:"runr",Samaritan:"samr",Old_South_Arabian:"sarb",Saurashtra:"saur",Shavian:"shaw",Sharada:"shrd",Siddham:"sidd",Khudawadi:"sind",Sinhala:"sinh",Sora_Sompeng:"sora",Sundanese:"sund",Syloti_Nagri:"sylo",Syriac:"syrc",Tagbanwa:"tagb",Takri:"takr",Tai_Le:"tale",New_Tai_Lue:"talu",Tamil:["tml2","taml"],Tai_Viet:"tavt",Telugu:["tel2","telu"],Tifinagh:"tfng",Tagalog:"tglg",Thaana:"thaa",Thai:"thai",Tibetan:"tibt",Tirhuta:"tirh",Ugaritic:"ugar",Vai:"vai ",Warang_Citi:"wara",Old_Persian:"xpeo",Cuneiform:"xsux",Yi:"yi ",Inherited:"zinh",Common:"zyyy",Unknown:"zzzz"},Lr={};for(var Pr in Yi){var zr=Yi[Pr];if(Array.isArray(zr))for(var wa,so=r(zr);!(wa=so()).done;)Lr[wa.value]=Pr;else Lr[zr]=Pr}var Bo={arab:!0,hebr:!0,syrc:!0,thaa:!0,cprt:!0,khar:!0,phnx:!0,"nko ":!0,lydi:!0,avst:!0,armi:!0,phli:!0,prti:!0,sarb:!0,orkh:!0,samr:!0,mand:!0,merc:!0,mero:!0,mani:!0,mend:!0,nbat:!0,narb:!0,palm:!0,phlp:!0};function Gr(tA){return Bo[tA]?"rtl":"ltr"}for(var uo=function(){function tA(G,K,M,N,P){if(this.glyphs=G,this.positions=null,this.script=M,this.language=N||null,this.direction=P||Gr(M),this.features={},Array.isArray(K))for(var oA,nA=r(K);!(oA=nA()).done;)this.features[oA.value]=!0;else"object"==typeof K&&(this.features=K)}return o(tA,[{key:"advanceWidth",get:function(){for(var N,K=0,M=r(this.positions);!(N=M()).done;)K+=N.value.xAdvance;return K}},{key:"advanceHeight",get:function(){for(var N,K=0,M=r(this.positions);!(N=M()).done;)K+=N.value.yAdvance;return K}},{key:"bbox",get:function(){for(var K=new xi,M=0,N=0,P=0;P>1]).firstGlyph)return null;if(MoA.lastGlyph))return 2===this.table.version?oA.value:oA.values[M-oA.firstGlyph];N=nA+1}}return null;case 6:for(var lA=0,sA=this.table.binarySearchHeader.nUnits-1;lA<=sA;){var nA,oA;if(65535===(oA=this.table.segments[nA=lA+sA>>1]).glyph)return null;if(MoA.glyph))return oA.value;lA=nA+1}}return null;case 8:return this.table.values[M-this.table.firstGlyph];default:throw new Error("Unknown lookup table format: ".concat(this.table.version))}},G.glyphsForValue=function(M){var N=[];switch(this.table.version){case 2:case 4:for(var nA,P=r(this.table.segments);!(nA=P()).done;){var oA=nA.value;if(2===this.table.version&&oA.value===M)N.push.apply(N,yi(oA.firstGlyph,oA.lastGlyph+1));else for(var lA=0;lA=-1;){var sA=null,bA=1,KA=!0;oA===M.length||-1===oA?bA=0:65535===(sA=M[oA]).id?bA=2:null==(bA=this.lookupTable.lookup(sA.id))&&(bA=1);var lt=this.stateTable.stateArray.getItem(nA),ct=this.stateTable.entryTable.getItem(lt[bA]);0!==bA&&2!==bA&&(P(sA,ct,oA),KA=!(16384&ct.flags)),nA=ct.newState,KA&&(oA+=lA)}return M},G.traverse=function(M,N,P){if(void 0===N&&(N=0),void 0===P&&(P=new Set),!P.has(N)){P.add(N);for(var nA=this.stateTable,oA=nA.nClasses,sA=nA.entryTable,bA=nA.stateArray.getItem(N),KA=4;KA=0;)65535===M[It].id&&M.splice(It,1),It--;return M},G.processSubtable=function(M,N){if(this.subtable=M,this.glyphs=N,4!==this.subtable.type){this.ligatureStack=[],this.markedGlyph=null,this.firstGlyph=null,this.lastGlyph=null,this.markedIndex=null;var P=this.getStateMachine(M),nA=this.getProcessor();return P.process(this.glyphs,!!(4194304&this.subtable.coverage),nA)}this.processNoncontextualSubstitutions(this.subtable,this.glyphs)},G.getStateMachine=function(M){return new wo(M.table.stateTable)},G.getProcessor=function(){switch(this.subtable.type){case 0:return this.processIndicRearragement;case 1:return this.processContextualSubstitution;case 2:return this.processLigature;case 4:return this.processNoncontextualSubstitutions;case 5:return this.processGlyphInsertion;default:throw new Error("Invalid morx subtable type: ".concat(this.subtable.type))}},G.processIndicRearragement=function(M,N,P){32768&N.flags&&(this.firstGlyph=P),8192&N.flags&&(this.lastGlyph=P),function Yo(tA,G,K,M){switch(G){case 0:return tA;case 1:return bn(tA,[K,1],[M,0]);case 2:return bn(tA,[K,0],[M,1]);case 3:return bn(tA,[K,1],[M,1]);case 4:return bn(tA,[K,2],[M,0]);case 5:return bn(tA,[K,2],[M,0],!0,!1);case 6:return bn(tA,[K,0],[M,2]);case 7:return bn(tA,[K,0],[M,2],!1,!0);case 8:return bn(tA,[K,1],[M,2]);case 9:return bn(tA,[K,1],[M,2],!1,!0);case 10:return bn(tA,[K,2],[M,1]);case 11:return bn(tA,[K,2],[M,1],!0,!1);case 12:return bn(tA,[K,2],[M,2]);case 13:return bn(tA,[K,2],[M,2],!0,!1);case 14:return bn(tA,[K,2],[M,2],!1,!0);case 15:return bn(tA,[K,2],[M,2],!0,!0);default:throw new Error("Unknown verb: ".concat(G))}}(this.glyphs,15&N.flags,this.firstGlyph,this.lastGlyph)},G.processContextualSubstitution=function(M,N,P){var nA=this.subtable.table.substitutionTable.items;if(65535!==N.markIndex){var oA=nA.getItem(N.markIndex);(sA=new cr(oA).lookup((M=this.glyphs[this.markedGlyph]).id))&&(this.glyphs[this.markedGlyph]=this.font.getGlyph(sA,M.codePoints))}if(65535!==N.currentIndex){var sA,bA=nA.getItem(N.currentIndex);(sA=new cr(bA).lookup((M=this.glyphs[P]).id))&&(this.glyphs[P]=this.font.getGlyph(sA,M.codePoints))}32768&N.flags&&(this.markedGlyph=P)},G.processLigature=function(M,N,P){if(32768&N.flags&&this.ligatureStack.push(P),8192&N.flags){for(var nA,oA=this.subtable.table.ligatureActions,lA=this.subtable.table.components,sA=this.subtable.table.ligatureList,bA=N.action,KA=!1,lt=0,$A=[],ct=[];!KA;){var mt,It=this.ligatureStack.pop();(mt=$A).unshift.apply(mt,this.glyphs[It].codePoints);var Gt=oA.getItem(bA++);KA=!!(2147483648&Gt);var _t=!!(1073741824&Gt),qt=(1073741823&Gt)<<2>>2;if(lt+=lA.getItem(qt+=this.glyphs[It].id),KA||_t){var ce=sA.getItem(lt);this.glyphs[It]=this.font.getGlyph(ce,$A),ct.push(It),lt=0,$A=[]}else this.glyphs[It]=this.font.getGlyph(65535)}(nA=this.ligatureStack).push.apply(nA,ct)}},G.processNoncontextualSubstitutions=function(M,N,P){var nA=new cr(M.table.lookupTable);for(P=0;P>>5,!!(1024&N.flags)),65535!==N.currentInsertIndex&&this._insertGlyphs(P,N.currentInsertIndex,(992&N.flags)>>>5,!!(2048&N.flags))},G.getSupportedFeatures=function(){for(var P,M=[],N=r(this.morx.chains);!(P=N()).done;)for(var lA,oA=r(P.value.features);!(lA=oA()).done;){var sA=lA.value;M.push([sA.featureType,sA.featureSetting])}return M},G.generateInputs=function(M){return this.inputCache||this.generateInputCache(),this.inputCache[M]||[]},G.generateInputCache=function(){this.inputCache={};for(var N,M=r(this.morx.chains);!(N=M()).done;)for(var lA,P=N.value,nA=P.defaultFlags,oA=r(P.subtables);!(lA=oA()).done;){var sA=lA.value;sA.subFeatureFlags&nA&&this.generateInputsForSubtable(sA)}},G.generateInputsForSubtable=function(M){var N=this;if(2===M.type){if(4194304&M.coverage)throw new Error("Reverse subtable, not supported.");this.subtable=M,this.ligatureStack=[];var nA=this.getStateMachine(M),oA=this.getProcessor(),lA=[],sA=[];this.glyphs=[],nA.traverse({enter:function(KA,lt){var $A=N.glyphs;sA.push({glyphs:$A.slice(),ligatureStack:N.ligatureStack.slice()});var ct=N.font.getGlyph(KA);lA.push(ct),$A.push(lA[lA.length-1]),oA($A[$A.length-1],lt,$A.length-1);for(var mt=0,It=0,Gt=0;Gt<$A.length&&mt<=1;Gt++)65535!==$A[Gt].id&&(mt++,It=$A[Gt].id);if(1===mt){var _t=lA.map(function(re){return re.id}),qt=N.inputCache[It];qt?qt.push(_t):N.inputCache[It]=[_t]}},exit:function(){var KA=sA.pop();N.glyphs=KA.glyphs,N.ligatureStack=KA.ligatureStack,lA.pop()}})}},tA}()).prototype,"getStateMachine",[$],Object.getOwnPropertyDescriptor(Oi.prototype,"getStateMachine"),Oi.prototype),Oi);function bn(tA,G,K,M,N){void 0===M&&(M=!1),void 0===N&&(N=!1);var P=tA.splice(K[0]-(K[1]-1),K[1]);N&&P.reverse();var nA=tA.splice.apply(tA,[G[0],G[1]].concat(P));return M&&nA.reverse(),tA.splice.apply(tA,[K[0]-(G[1]-1),0].concat(nA)),tA}var So=function(){function tA(K){this.font=K,this.morxProcessor=new jr(K),this.fallbackPosition=!1}var G=tA.prototype;return G.substitute=function(M){"rtl"===M.direction&&M.glyphs.reverse(),this.morxProcessor.process(M.glyphs,function fo(tA){var G={};for(var K in tA){var M;(M=sr[K])&&(null==G[M[0]]&&(G[M[0]]={}),G[M[0]][M[1]]=tA[K])}return G}(M.features))},G.getAvailableFeatures=function(M,N){return function ho(tA){var G={};if(Array.isArray(tA))for(var K=0;K0&&M.applyFeatures(lA,N,P)}},tA}(),No=["rvrn"],bo=["ccmp","locl","rlig","mark","mkmk"],Ro=["frac","numr","dnom"],To=["calt","clig","liga","rclt","curs","kern"],Uo={ltr:["ltra","ltrm"],rtl:["rtla","rtlm"]},ui=function(){function tA(){}return tA.plan=function(K,M,N){this.planPreprocessing(K),this.planFeatures(K),this.planPostprocessing(K,N),K.assignGlobalFeatures(M),this.assignFeatures(K,M)},tA.planPreprocessing=function(K){K.add({global:[].concat(No,Uo[K.direction]),local:Ro})},tA.planFeatures=function(K){},tA.planPostprocessing=function(K,M){K.add([].concat(bo,To)),K.setFeatureOverrides(M)},tA.assignFeatures=function(K,M){for(var N=0;N0&&I.isDigit(M[nA-1].codePoints[0]);)M[nA-1].features.numr=!0,M[nA-1].features.frac=!0,nA--;for(;oAthis.index||this.index>=this.glyphs.length?null:this.glyphs[this.index]},G.next=function(){return this.move(1)},G.prev=function(){return this.move(-1)},G.peek=function(M){void 0===M&&(M=1);var N=this.index,P=this.increment(M);return this.index=N,P},G.peekIndex=function(M){void 0===M&&(M=1);var N=this.index;this.increment(M);var P=this.index;return this.index=N,P},G.increment=function(M){void 0===M&&(M=1);var N=M<0?-1:1;for(M=Math.abs(M);M--;)this.move(N);return this.glyphs[this.index]},o(tA,[{key:"cur",get:function(){return this.glyphs[this.index]||null}}]),tA}(),ko=["DFLT","dflt","latn"],fr=function(){function tA(K,M){this.font=K,this.table=M,this.script=null,this.scriptTag=null,this.language=null,this.languageTag=null,this.features={},this.lookups={},this.variationsIndex=K._variationProcessor?this.findVariationsIndex(K._variationProcessor.normalizedCoords):-1,this.selectScript(),this.glyphs=[],this.positions=[],this.ligatureID=1,this.currentFeature=null}var G=tA.prototype;return G.findScript=function(M){if(null==this.table.scriptList)return null;Array.isArray(M)||(M=[M]);for(var P,N=r(M);!(P=N()).done;)for(var lA,nA=P.value,oA=r(this.table.scriptList);!(lA=oA()).done;){var sA=lA.value;if(sA.tag===nA)return sA}return null},G.selectScript=function(M,N,P){var oA,nA=!1;if(!this.script||M!==this.scriptTag){if((oA=this.findScript(M))||(oA=this.findScript(ko)),!oA)return this.scriptTag;this.scriptTag=oA.tag,this.script=oA.script,this.language=null,this.languageTag=null,nA=!0}if((!P||P!==this.direction)&&(this.direction=P||Gr(M)),N&&N.length<4&&(N+=" ".repeat(4-N.length)),!N||N!==this.languageTag){this.language=null;for(var sA,lA=r(this.script.langSysRecords);!(sA=lA()).done;){var bA=sA.value;if(bA.tag===N){this.language=bA.langSys,this.languageTag=bA.tag;break}}this.language||(this.language=this.script.defaultLangSys,this.languageTag=null),nA=!0}if(nA&&(this.features={},this.language))for(var lt,KA=r(this.language.featureIndexes);!(lt=KA()).done;){var $A=lt.value,ct=this.table.featureList[$A],mt=this.substituteFeatureForVariations($A);this.features[ct.tag]=mt||ct.feature}return this.scriptTag},G.lookupsForFeatures=function(M,N){void 0===M&&(M=[]);for(var oA,P=[],nA=r(M);!(oA=nA()).done;){var lA=oA.value,sA=this.features[lA];if(sA)for(var KA,bA=r(sA.lookupListIndexes);!(KA=bA()).done;){var lt=KA.value;N&&-1!==N.indexOf(lt)||P.push({feature:lA,index:lt,lookup:this.table.lookupList.get(lt)})}}return P.sort(function($A,ct){return $A.index-ct.index}),P},G.substituteFeatureForVariations=function(M){if(-1===this.variationsIndex)return null;for(var oA,nA=r(this.table.featureVariations.featureVariationRecords[this.variationsIndex].featureTableSubstitution.substitutions);!(oA=nA()).done;){var lA=oA.value;if(lA.featureIndex===M)return lA.alternateFeatureTable}return null},G.findVariationsIndex=function(M){var N=this.table.featureVariations;if(!N)return-1;for(var P=N.featureVariationRecords,nA=0;nA=0})},G.getClassID=function(M,N){switch(N.version){case 1:var P=M-N.startGlyph;if(P>=0&&P0&&this.codePoints.every(I.isMark),this.isBase=!this.isMark,this.isLigature=this.codePoints.length>1,this.markAttachmentType=0}}]),tA}(),Fa=function(tA){function G(){return tA.apply(this,arguments)||this}return w(G,tA),G.planFeatures=function(M){M.add(["ljmo","vjmo","tjmo"],!1)},G.assignFeatures=function(M,N){for(var P=0,nA=0;nAdi){var lt=Vi(K,nA,M.features);lt.features.tjmo=!0,KA.push(lt)}return tA.splice.apply(tA,[G,1].concat(KA)),G+KA.length-1}function s0(tA,G,K){var lA,sA,bA,KA,M=tA[G],P=Qr(tA[G].codePoints[0]),nA=tA[G-1].codePoints[0],oA=Qr(nA);if(oA===dr&&P===Wr)lA=nA,KA=M;else{P===wr?(sA=tA[G-1],bA=M):(sA=tA[G-2],bA=tA[G-1],KA=M);var lt=sA.codePoints[0],$A=bA.codePoints[0];A0(lt)&&t0($A)&&(lA=Si+((lt-hr)*Cr+($A-Er))*Ji)}var ct=KA&&KA.codePoints[0]||di;if(null!=lA&&(ct===di||e0(ct))){var mt=lA+(ct-di);if(K.hasGlyphForCodePoint(mt)){var It=oA===wr?3:2;return tA.splice(G-It+1,It,Vi(K,mt,M.features)),G-It+1}}return sA&&(sA.features.ljmo=!0),bA&&(bA.features.vjmo=!0),KA&&(KA.features.tjmo=!0),oA===dr?(Sa(tA,G-1,K),G+1):G}function l0(tA,G,K){var M=tA[G];if(0!==K.glyphForCodePoint(tA[G].codePoints[0]).advanceWidth){var nA=function o0(tA){switch(Qr(tA)){case dr:case Ya:return 1;case wr:return 2;case Wr:return 3}}(tA[G-1].codePoints[0]);return tA.splice(G,1),tA.splice(G-nA,0,M)}}function c0(tA,G,K){var M=tA[G],N=tA[G].codePoints[0];if(K.hasGlyphForCodePoint(xa)){var P=Vi(K,xa,M.features),nA=0===K.glyphForCodePoint(N).advanceWidth?G:G+1;tA.splice(nA,0,P),G++}return G}var pr={categories:["O","IND","S","GB","B","FM","CGJ","VMAbv","VMPst","VAbv","VPst","CMBlw","VPre","VBlw","H","VMBlw","CMAbv","MBlw","CS","R","SUB","MPst","MPre","FAbv","FPst","FBlw","null","SMAbv","SMBlw","VMPre","ZWNJ","ZWJ","WJ","M","VS","N","HN","MAbv"],decompositions:{2507:[2503,2494],2508:[2503,2519],2888:[2887,2902],2891:[2887,2878],2892:[2887,2903],3018:[3014,3006],3019:[3015,3006],3020:[3014,3031],3144:[3142,3158],3264:[3263,3285],3271:[3270,3285],3272:[3270,3286],3274:[3270,3266],3275:[3270,3266,3285],3402:[3398,3390],3403:[3399,3390],3404:[3398,3415],3546:[3545,3530],3548:[3545,3535],3549:[3545,3535,3530],3550:[3545,3551],3635:[3661,3634],3763:[3789,3762],3955:[3953,3954],3957:[3953,3956],3958:[4018,3968],3959:[4018,3953,3968],3960:[4019,3968],3961:[4019,3953,3968],3969:[3953,3968],6971:[6970,6965],6973:[6972,6965],6976:[6974,6965],6977:[6975,6965],6979:[6978,6965],69934:[69937,69927],69935:[69938,69927],70475:[70471,70462],70476:[70471,70487],70843:[70841,70842],70844:[70841,70832],70846:[70841,70845],71098:[71096,71087],71099:[71097,71087]},stateTable:[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[2,2,3,4,4,5,0,6,7,8,9,10,11,12,13,14,15,16,0,17,18,11,19,20,21,22,0,0,0,23,0,0,2,0,0,24,0,25],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,0,0,0,0,0,27,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,39,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,39,0,0,47],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,0,0,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,9,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,10,11,12,13,14,0,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,9,0,0,12,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,10,11,12,13,14,15,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,0,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,4,4,5,0,6,7,8,9,10,11,12,13,14,15,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,48,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,49,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,16,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,22,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,0,0,0,0,0,0,14,0,0,0,0,0,0,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,51,0],[0,0,0,0,0,5,0,6,7,8,9,0,11,12,0,14,0,16,0,0,0,11,0,20,21,22,0,0,0,23,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,0,0,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,33,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,0,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,33,0,0,36,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,34,35,36,37,38,39,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,0,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,52,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,53,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,40,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,45,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,0,0,0,0,0,0,38,0,0,0,0,0,0,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,29,0,30,31,32,33,0,35,36,0,38,0,40,0,0,0,35,0,43,44,45,0,0,0,46,0,0,0,0,0,0,0,0],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,0,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,5,0,6,7,8,9,48,11,12,13,14,48,16,0,0,18,11,19,20,21,22,0,0,0,23,0,0,0,0,0,0,0,25],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,0,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,29,0,30,31,32,33,52,35,36,37,38,52,40,0,0,41,35,42,43,44,45,0,0,0,46,0,0,0,0,0,0,0,47],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,51,0]],accepting:[!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0],tags:[[],["broken_cluster"],["independent_cluster"],["symbol_cluster"],["standard_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["numeral_cluster"],["broken_cluster"],["independent_cluster"],["symbol_cluster"],["symbol_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["virama_terminated_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["standard_cluster"],["broken_cluster"],["broken_cluster"],["numeral_cluster"],["number_joiner_terminated_cluster"],["standard_cluster"],["standard_cluster"],["numeral_cluster"]]},Ie_X=1,Ie_N=8,Ie_H=16,Ie_ZWNJ=32,Ie_ZWJ=64,Ie_M=128,Ie_RS=8192,Ie_Repha=32768,Ie_Ra=65536,Ie_CM=1<<17,te={Start:1,Ra_To_Become_Reph:2,Pre_M:4,Pre_C:8,Base_C:16,After_Main:32,Above_C:64,Before_Sub:128,Below_C:256,After_Sub:512,Before_Post:1024,Post_C:2048,After_Post:4096,Final_C:8192,SMVD:16384,End:32768},w0=2|Ie_Ra|Ie_CM|4|2048|4096,ba=Ie_ZWJ|Ie_ZWNJ,Wi=Ie_H|16384,Ra={Default:{hasOldSpec:!1,virama:0,basePos:"Last",rephPos:te.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Devanagari:{hasOldSpec:!0,virama:2381,basePos:"Last",rephPos:te.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Bengali:{hasOldSpec:!0,virama:2509,basePos:"Last",rephPos:te.After_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gurmukhi:{hasOldSpec:!0,virama:2637,basePos:"Last",rephPos:te.Before_Sub,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Gujarati:{hasOldSpec:!0,virama:2765,basePos:"Last",rephPos:te.Before_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Oriya:{hasOldSpec:!0,virama:2893,basePos:"Last",rephPos:te.After_Main,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Tamil:{hasOldSpec:!0,virama:3021,basePos:"Last",rephPos:te.After_Post,rephMode:"Implicit",blwfMode:"Pre_And_Post"},Telugu:{hasOldSpec:!0,virama:3149,basePos:"Last",rephPos:te.After_Post,rephMode:"Explicit",blwfMode:"Post_Only"},Kannada:{hasOldSpec:!0,virama:3277,basePos:"Last",rephPos:te.After_Post,rephMode:"Implicit",blwfMode:"Post_Only"},Malayalam:{hasOldSpec:!0,virama:3405,basePos:"Last",rephPos:te.After_Main,rephMode:"Log_Repha",blwfMode:"Pre_And_Post"},Khmer:{hasOldSpec:!1,virama:6098,basePos:"First",rephPos:te.Ra_To_Become_Reph,rephMode:"Vis_Repha",blwfMode:"Pre_And_Post"}},d0={6078:[6081,6078],6079:[6081,6079],6080:[6081,6080],6084:[6081,6084],6085:[6081,6085]},Q0=pr.decompositions,Ta=new R(B("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","base64")),m0=new p({stateTable:[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,2,3,4,5,6,7,8,9,0,10,11,11,12,13,14,15,16,17],[0,0,0,18,19,20,21,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,28,29,30,31,32,33,0,34,0,0,35,36,0,0,37,0],[0,0,0,38,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,39,0,0,0,40,41,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,43,44,44,8,9,0,0,0,0,12,43,0,0,0,0],[0,0,0,0,43,44,44,8,9,0,0,0,0,0,43,0,0,0,0],[0,0,0,45,46,47,48,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,50,0,0,51,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,0,0,0,0],[0,0,0,53,54,55,56,57,58,0,59,0,0,60,61,0,0,62,0],[0,0,0,4,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,63,64,0,0,40,41,0,9,0,10,0,0,0,42,0,63,0,0],[0,2,3,4,5,6,7,8,9,0,10,11,11,12,13,0,2,16,0],[0,0,0,18,65,20,21,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,0,66,67,67,8,9,0,10,0,0,0,68,0,0,0,0],[0,0,0,69,0,70,70,0,71,0,72,0,0,0,0,0,0,0,0],[0,0,0,73,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,75,0,0,0,76,77,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,79,80,80,22,23,0,0,0,0,25,79,0,0,0,0],[0,0,0,18,19,20,74,22,23,0,24,0,0,25,26,0,0,27,0],[0,0,0,81,82,83,84,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,86,0,0,87,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0],[0,0,0,18,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,89,90,0,0,76,77,0,23,0,24,0,0,0,78,0,89,0,0],[0,0,0,0,91,92,92,22,23,0,24,0,0,0,93,0,0,0,0],[0,0,0,94,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,96,0,0,0,97,98,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,35,100,0,0,0,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,0,100,0,0,0,0],[0,0,0,102,103,104,105,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,107,0,0,108,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,109,0,0,0,0,0,0,0,0],[0,0,0,28,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,110,111,0,0,97,98,0,33,0,34,0,0,0,99,0,110,0,0],[0,0,0,0,112,113,113,32,33,0,34,0,0,0,114,0,0,0,0],[0,0,0,0,5,7,7,8,9,0,10,0,0,0,13,0,0,16,0],[0,0,0,115,116,117,118,8,9,0,10,0,0,119,120,0,0,16,0],[0,0,0,0,0,121,121,0,9,0,10,0,0,0,42,0,0,0,0],[0,39,0,122,0,123,123,8,9,0,10,0,0,0,42,0,39,0,0],[0,124,64,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0],[0,39,0,0,0,121,125,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,126,126,8,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,46,47,48,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,47,47,49,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,127,127,49,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,128,127,127,49,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,129,130,131,132,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,50,0,0,0,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0,0],[0,0,0,135,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,136,0,0,0,137,138,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,140,141,141,57,58,0,0,0,0,60,140,0,0,0,0],[0,0,0,0,140,141,141,57,58,0,0,0,0,0,140,0,0,0,0],[0,0,0,142,143,144,145,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,147,0,0,148,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,0,0,0,0],[0,0,0,53,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,150,151,0,0,137,138,0,58,0,59,0,0,0,139,0,150,0,0],[0,0,0,0,152,153,153,57,58,0,59,0,0,0,154,0,0,0,0],[0,0,0,155,116,156,157,8,9,0,10,0,0,158,120,0,0,16,0],[0,0,0,0,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,75,3,4,5,159,160,8,161,0,162,0,11,12,163,0,75,16,0],[0,0,0,0,0,40,164,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,0,165,0,0,0,0],[0,124,64,0,0,40,164,0,9,0,10,0,0,0,42,0,124,0,0],[0,0,0,0,0,70,70,0,71,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,166,0,0,167,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,0,0,0],[0,0,0,0,19,74,74,22,23,0,24,0,0,0,26,0,0,27,0],[0,0,0,0,79,80,80,22,23,0,0,0,0,0,79,0,0,0,0],[0,0,0,169,170,171,172,22,23,0,24,0,0,173,174,0,0,27,0],[0,0,0,0,0,175,175,0,23,0,24,0,0,0,78,0,0,0,0],[0,75,0,176,0,177,177,22,23,0,24,0,0,0,78,0,75,0,0],[0,178,90,0,0,0,0,0,0,0,0,0,0,0,0,0,178,0,0],[0,75,0,0,0,175,179,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,180,180,22,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,82,83,84,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,83,83,85,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,181,181,85,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,182,181,181,85,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,183,184,185,186,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,86,0,0,0,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,188,0,0,0,0,0,0,0,0],[0,0,0,189,170,190,191,22,23,0,24,0,0,192,174,0,0,27,0],[0,0,0,0,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,76,193,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,0,194,0,0,0,0],[0,178,90,0,0,76,193,0,23,0,24,0,0,0,78,0,178,0,0],[0,0,0,0,29,95,31,32,33,0,34,0,0,0,36,0,0,37,0],[0,0,0,0,100,101,101,32,33,0,0,0,0,0,100,0,0,0,0],[0,0,0,195,196,197,198,32,33,0,34,0,0,199,200,0,0,37,0],[0,0,0,0,0,201,201,0,33,0,34,0,0,0,99,0,0,0,0],[0,96,0,202,0,203,203,32,33,0,34,0,0,0,99,0,96,0,0],[0,204,111,0,0,0,0,0,0,0,0,0,0,0,0,0,204,0,0],[0,96,0,0,0,201,205,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,206,206,32,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,103,104,105,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,104,104,106,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,207,207,106,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,208,207,207,106,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,209,210,211,212,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,107,0,0,0,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,214,0,0,0,0,0,0,0,0],[0,0,0,215,196,216,217,32,33,0,34,0,0,218,200,0,0,37,0],[0,0,0,0,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,97,219,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,0,220,0,0,0,0],[0,204,111,0,0,97,219,0,33,0,34,0,0,0,99,0,204,0,0],[0,0,0,221,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,223,0,0,0,40,224,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,119,225,0,0,0,0],[0,0,0,115,116,117,222,8,9,0,10,0,0,119,120,0,0,16,0],[0,0,0,115,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,226,64,0,0,40,224,0,9,0,10,0,0,0,42,0,226,0,0],[0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0],[0,39,0,0,0,121,121,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,44,44,8,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,227,0,228,229,0,9,0,10,0,0,230,0,0,0,0,0],[0,39,0,122,0,121,121,0,9,0,10,0,0,0,42,0,39,0,0],[0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,231,231,49,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,232,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,130,131,132,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,131,131,133,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,233,233,133,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,234,233,233,133,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,235,236,237,238,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,54,56,56,57,58,0,59,0,0,0,61,0,0,62,0],[0,0,0,240,241,242,243,57,58,0,59,0,0,244,245,0,0,62,0],[0,0,0,0,0,246,246,0,58,0,59,0,0,0,139,0,0,0,0],[0,136,0,247,0,248,248,57,58,0,59,0,0,0,139,0,136,0,0],[0,249,151,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0],[0,136,0,0,0,246,250,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,251,251,57,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,143,144,145,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,144,144,146,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,252,252,146,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,253,252,252,146,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,254,255,256,257,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,147,0,0,0,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,259,0,0,0,0,0,0,0,0],[0,0,0,260,241,261,262,57,58,0,59,0,0,263,245,0,0,62,0],[0,0,0,0,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,137,264,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,0,265,0,0,0,0],[0,249,151,0,0,137,264,0,58,0,59,0,0,0,139,0,249,0,0],[0,0,0,221,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,158,225,0,0,0,0],[0,0,0,155,116,156,222,8,9,0,10,0,0,158,120,0,0,16,0],[0,0,0,155,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,43,266,266,8,161,0,24,0,0,12,267,0,0,0,0],[0,75,0,176,43,268,268,269,161,0,24,0,0,0,267,0,75,0,0],[0,0,0,0,0,270,0,0,271,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,272,0,0,0,0,0,0,0,0],[0,273,274,0,0,40,41,0,9,0,10,0,0,0,42,0,273,0,0],[0,0,0,40,0,123,123,8,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,121,275,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,166,0,0,0,0,72,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,276,0,0,0,0,0,0,0,0],[0,0,0,277,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,279,0,0,0,76,280,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,173,281,0,0,0,0],[0,0,0,169,170,171,278,22,23,0,24,0,0,173,174,0,0,27,0],[0,0,0,169,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,282,90,0,0,76,280,0,23,0,24,0,0,0,78,0,282,0,0],[0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0],[0,75,0,0,0,175,175,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,80,80,22,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,283,0,284,285,0,23,0,24,0,0,286,0,0,0,0,0],[0,75,0,176,0,175,175,0,23,0,24,0,0,0,78,0,75,0,0],[0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,287,287,85,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,184,185,186,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,185,185,187,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,289,289,187,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,290,289,289,187,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,291,292,293,294,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,277,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,192,281,0,0,0,0],[0,0,0,189,170,190,278,22,23,0,24,0,0,192,174,0,0,27,0],[0,0,0,189,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,76,0,177,177,22,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,175,296,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,297,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,299,0,0,0,97,300,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,199,301,0,0,0,0],[0,0,0,195,196,197,298,32,33,0,34,0,0,199,200,0,0,37,0],[0,0,0,195,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,302,111,0,0,97,300,0,33,0,34,0,0,0,99,0,302,0,0],[0,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0],[0,96,0,0,0,201,201,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,101,101,32,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,303,0,304,305,0,33,0,34,0,0,306,0,0,0,0,0],[0,96,0,202,0,201,201,0,33,0,34,0,0,0,99,0,96,0,0],[0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,307,307,106,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,308,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,210,211,212,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,211,211,213,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,309,309,213,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,310,309,309,213,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,311,312,313,314,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,297,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,218,301,0,0,0,0],[0,0,0,215,196,216,298,32,33,0,34,0,0,218,200,0,0,37,0],[0,0,0,215,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,97,0,203,203,32,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,201,316,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,116,222,222,8,9,0,10,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,9,0,0,0,0,0,225,0,0,0,0],[0,0,0,317,318,319,320,8,9,0,10,0,0,321,322,0,0,16,0],[0,223,0,323,0,123,123,8,9,0,10,0,0,0,42,0,223,0,0],[0,223,0,0,0,121,324,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,325,318,326,327,8,9,0,10,0,0,328,322,0,0,16,0],[0,0,0,64,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,9,0,0,0,0,230,0,0,0,0,0],[0,0,0,227,0,228,121,0,9,0,10,0,0,230,0,0,0,0,0],[0,0,0,227,0,121,121,0,9,0,10,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0],[0,0,0,0,0,329,329,133,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,236,237,238,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,237,237,239,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,331,331,239,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,332,331,331,239,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,333,40,121,334,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,335,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,337,0,0,0,137,338,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,244,339,0,0,0,0],[0,0,0,240,241,242,336,57,58,0,59,0,0,244,245,0,0,62,0],[0,0,0,240,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,340,151,0,0,137,338,0,58,0,59,0,0,0,139,0,340,0,0],[0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0],[0,136,0,0,0,246,246,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,141,141,57,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,341,0,342,343,0,58,0,59,0,0,344,0,0,0,0,0],[0,136,0,247,0,246,246,0,58,0,59,0,0,0,139,0,136,0,0],[0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,345,345,146,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,346,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,255,256,257,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,256,256,258,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,347,347,258,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,348,347,347,258,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,349,350,351,352,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,335,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,263,339,0,0,0,0],[0,0,0,260,241,261,336,57,58,0,59,0,0,263,245,0,0,62,0],[0,0,0,260,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,137,0,248,248,57,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,246,354,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,126,126,8,23,0,0,0,0,0,0,0,0,0,0],[0,355,90,0,0,121,125,0,9,0,10,0,0,0,42,0,355,0,0],[0,0,0,0,0,356,356,269,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,357,358,359,360,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,270,0,0,0,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,363,0,0,0,0,0,0,0,0],[0,0,0,364,116,365,366,8,161,0,162,0,0,367,120,0,0,16,0],[0,0,0,0,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,40,0,121,121,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,170,278,278,22,23,0,24,0,0,0,174,0,0,27,0],[0,0,0,0,281,80,80,22,23,0,0,0,0,0,281,0,0,0,0],[0,0,0,369,370,371,372,22,23,0,24,0,0,373,374,0,0,27,0],[0,279,0,375,0,177,177,22,23,0,24,0,0,0,78,0,279,0,0],[0,279,0,0,0,175,376,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,377,370,378,379,22,23,0,24,0,0,380,374,0,0,27,0],[0,0,0,90,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,23,0,0,0,0,286,0,0,0,0,0],[0,0,0,283,0,284,175,0,23,0,24,0,0,286,0,0,0,0,0],[0,0,0,283,0,175,175,0,23,0,24,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0],[0,0,0,0,0,381,381,187,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,292,293,294,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,293,293,295,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,0,383,383,295,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,384,383,383,295,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,385,76,175,386,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,76,0,175,175,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,196,298,298,32,33,0,34,0,0,0,200,0,0,37,0],[0,0,0,0,301,101,101,32,33,0,0,0,0,0,301,0,0,0,0],[0,0,0,387,388,389,390,32,33,0,34,0,0,391,392,0,0,37,0],[0,299,0,393,0,203,203,32,33,0,34,0,0,0,99,0,299,0,0],[0,299,0,0,0,201,394,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,395,388,396,397,32,33,0,34,0,0,398,392,0,0,37,0],[0,0,0,111,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,33,0,0,0,0,306,0,0,0,0,0],[0,0,0,303,0,304,201,0,33,0,34,0,0,306,0,0,0,0,0],[0,0,0,303,0,201,201,0,33,0,34,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0,0],[0,0,0,0,0,399,399,213,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,400,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,312,313,314,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,313,313,315,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,0,401,401,315,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,402,401,401,315,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,403,97,201,404,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,97,0,201,201,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,405,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,407,0,0,0,40,408,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,321,409,0,0,0,0],[0,0,0,317,318,319,406,8,9,0,10,0,0,321,322,0,0,16,0],[0,0,0,317,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,410,64,0,0,40,408,0,9,0,10,0,0,0,42,0,410,0,0],[0,223,0,0,0,121,121,0,9,0,10,0,0,0,42,0,223,0,0],[0,223,0,323,0,121,121,0,9,0,10,0,0,0,42,0,223,0,0],[0,0,0,405,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,328,409,0,0,0,0],[0,0,0,325,318,326,406,8,9,0,10,0,0,328,322,0,0,16,0],[0,0,0,325,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,0,0,0,133,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130,0,0],[0,0,0,0,0,411,411,239,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,412,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,40,121,334,0,9,0,10,0,0,0,42,0,0,0,0],[0,0,0,0,413,0,0,0,9,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,241,336,336,57,58,0,59,0,0,0,245,0,0,62,0],[0,0,0,0,339,141,141,57,58,0,0,0,0,0,339,0,0,0,0],[0,0,0,414,415,416,417,57,58,0,59,0,0,418,419,0,0,62,0],[0,337,0,420,0,248,248,57,58,0,59,0,0,0,139,0,337,0,0],[0,337,0,0,0,246,421,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,422,415,423,424,57,58,0,59,0,0,425,419,0,0,62,0],[0,0,0,151,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,58,0,0,0,0,344,0,0,0,0,0],[0,0,0,341,0,342,246,0,58,0,59,0,0,344,0,0,0,0,0],[0,0,0,341,0,246,246,0,58,0,59,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,146,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,143,0,0],[0,0,0,0,0,426,426,258,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,350,351,352,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,351,351,353,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,0,428,428,353,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,429,428,428,353,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,430,137,246,431,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,137,0,246,246,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,432,116,433,434,8,161,0,162,0,0,435,120,0,0,16,0],[0,0,0,0,0,180,180,269,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,358,359,360,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,359,359,361,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,436,436,361,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,437,436,436,361,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,438,439,440,441,442,161,0,162,0,0,0,362,0,0,0,0],[0,443,274,0,0,0,0,0,0,0,0,0,0,0,0,0,443,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,444,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,367,225,0,0,0,0],[0,0,0,364,116,365,445,8,161,0,162,0,0,367,120,0,0,16,0],[0,0,0,364,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,0,0,0,0,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,446,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,448,0,0,0,76,449,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,373,450,0,0,0,0],[0,0,0,369,370,371,447,22,23,0,24,0,0,373,374,0,0,27,0],[0,0,0,369,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,451,90,0,0,76,449,0,23,0,24,0,0,0,78,0,451,0,0],[0,279,0,0,0,175,175,0,23,0,24,0,0,0,78,0,279,0,0],[0,279,0,375,0,175,175,0,23,0,24,0,0,0,78,0,279,0,0],[0,0,0,446,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,380,450,0,0,0,0],[0,0,0,377,370,378,447,22,23,0,24,0,0,380,374,0,0,27,0],[0,0,0,377,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,0,0,0,187,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,0,0],[0,0,0,0,0,452,452,295,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,453,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,76,175,386,0,23,0,24,0,0,0,78,0,0,0,0],[0,0,0,0,454,0,0,0,23,0,0,0,0,0,0,0,0,0,0],[0,0,0,455,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,457,0,0,0,97,458,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,391,459,0,0,0,0],[0,0,0,387,388,389,456,32,33,0,34,0,0,391,392,0,0,37,0],[0,0,0,387,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,460,111,0,0,97,458,0,33,0,34,0,0,0,99,0,460,0,0],[0,299,0,0,0,201,201,0,33,0,34,0,0,0,99,0,299,0,0],[0,299,0,393,0,201,201,0,33,0,34,0,0,0,99,0,299,0,0],[0,0,0,455,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,398,459,0,0,0,0],[0,0,0,395,388,396,456,32,33,0,34,0,0,398,392,0,0,37,0],[0,0,0,395,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,0,0,0,213,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,210,0,0],[0,0,0,0,0,461,461,315,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,462,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,97,201,404,0,33,0,34,0,0,0,99,0,0,0,0],[0,0,0,0,463,0,0,0,33,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,318,406,406,8,9,0,10,0,0,0,322,0,0,16,0],[0,0,0,0,409,44,44,8,9,0,0,0,0,0,409,0,0,0,0],[0,0,0,464,465,466,467,8,9,0,10,0,0,468,469,0,0,16,0],[0,407,0,470,0,123,123,8,9,0,10,0,0,0,42,0,407,0,0],[0,407,0,0,0,121,471,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,472,465,473,474,8,9,0,10,0,0,475,469,0,0,16,0],[0,0,0,0,0,0,0,239,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,236,0,0],[0,0,0,0,0,0,476,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,477,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,479,0,0,0,137,480,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,418,481,0,0,0,0],[0,0,0,414,415,416,478,57,58,0,59,0,0,418,419,0,0,62,0],[0,0,0,414,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,482,151,0,0,137,480,0,58,0,59,0,0,0,139,0,482,0,0],[0,337,0,0,0,246,246,0,58,0,59,0,0,0,139,0,337,0,0],[0,337,0,420,0,246,246,0,58,0,59,0,0,0,139,0,337,0,0],[0,0,0,477,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,425,481,0,0,0,0],[0,0,0,422,415,423,478,57,58,0,59,0,0,425,419,0,0,62,0],[0,0,0,422,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,0,0,0,258,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,0,0],[0,0,0,0,0,483,483,353,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,484,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,137,246,431,0,58,0,59,0,0,0,139,0,0,0,0],[0,0,0,0,485,0,0,0,58,0,0,0,0,0,0,0,0,0,0],[0,0,0,444,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,435,225,0,0,0,0],[0,0,0,432,116,433,445,8,161,0,162,0,0,435,120,0,0,16,0],[0,0,0,432,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,0,486,486,361,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,487,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,439,440,441,442,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,440,440,442,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,488,488,442,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,489,488,488,442,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,490,491,492,493,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,495,0,496,497,0,161,0,162,0,0,498,0,0,0,0,0],[0,0,0,0,116,445,445,8,161,0,162,0,0,0,120,0,0,16,0],[0,0,0,0,225,44,44,8,161,0,0,0,0,0,225,0,0,0,0],[0,0,0,0,370,447,447,22,23,0,24,0,0,0,374,0,0,27,0],[0,0,0,0,450,80,80,22,23,0,0,0,0,0,450,0,0,0,0],[0,0,0,499,500,501,502,22,23,0,24,0,0,503,504,0,0,27,0],[0,448,0,505,0,177,177,22,23,0,24,0,0,0,78,0,448,0,0],[0,448,0,0,0,175,506,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,507,500,508,509,22,23,0,24,0,0,510,504,0,0,27,0],[0,0,0,0,0,0,0,295,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,292,0,0],[0,0,0,0,0,0,511,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,388,456,456,32,33,0,34,0,0,0,392,0,0,37,0],[0,0,0,0,459,101,101,32,33,0,0,0,0,0,459,0,0,0,0],[0,0,0,512,513,514,515,32,33,0,34,0,0,516,517,0,0,37,0],[0,457,0,518,0,203,203,32,33,0,34,0,0,0,99,0,457,0,0],[0,457,0,0,0,201,519,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,520,513,521,522,32,33,0,34,0,0,523,517,0,0,37,0],[0,0,0,0,0,0,0,315,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,312,0,0],[0,0,0,0,0,0,524,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,525,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,527,0,0,0,40,528,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,468,529,0,0,0,0],[0,0,0,464,465,466,526,8,9,0,10,0,0,468,469,0,0,16,0],[0,0,0,464,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,530,64,0,0,40,528,0,9,0,10,0,0,0,42,0,530,0,0],[0,407,0,0,0,121,121,0,9,0,10,0,0,0,42,0,407,0,0],[0,407,0,470,0,121,121,0,9,0,10,0,0,0,42,0,407,0,0],[0,0,0,525,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,475,529,0,0,0,0],[0,0,0,472,465,473,526,8,9,0,10,0,0,475,469,0,0,16,0],[0,0,0,472,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0],[0,0,0,0,415,478,478,57,58,0,59,0,0,0,419,0,0,62,0],[0,0,0,0,481,141,141,57,58,0,0,0,0,0,481,0,0,0,0],[0,0,0,531,532,533,534,57,58,0,59,0,0,535,536,0,0,62,0],[0,479,0,537,0,248,248,57,58,0,59,0,0,0,139,0,479,0,0],[0,479,0,0,0,246,538,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,539,532,540,541,57,58,0,59,0,0,542,536,0,0,62,0],[0,0,0,0,0,0,0,353,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,0,0],[0,0,0,0,0,0,543,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,361,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,358,0,0],[0,0,0,0,0,544,544,442,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,545,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,491,492,493,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,492,492,494,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,546,546,494,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,547,546,546,494,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,548,549,368,550,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,274,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,161,0,0,0,0,498,0,0,0,0,0],[0,0,0,495,0,496,368,0,161,0,162,0,0,498,0,0,0,0,0],[0,0,0,495,0,368,368,0,161,0,162,0,0,0,0,0,0,0,0],[0,0,0,551,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,553,0,0,0,76,554,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,503,555,0,0,0,0],[0,0,0,499,500,501,552,22,23,0,24,0,0,503,504,0,0,27,0],[0,0,0,499,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,556,90,0,0,76,554,0,23,0,24,0,0,0,78,0,556,0,0],[0,448,0,0,0,175,175,0,23,0,24,0,0,0,78,0,448,0,0],[0,448,0,505,0,175,175,0,23,0,24,0,0,0,78,0,448,0,0],[0,0,0,551,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,510,555,0,0,0,0],[0,0,0,507,500,508,552,22,23,0,24,0,0,510,504,0,0,27,0],[0,0,0,507,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0],[0,0,0,557,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,559,0,0,0,97,560,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,516,561,0,0,0,0],[0,0,0,512,513,514,558,32,33,0,34,0,0,516,517,0,0,37,0],[0,0,0,512,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,562,111,0,0,97,560,0,33,0,34,0,0,0,99,0,562,0,0],[0,457,0,0,0,201,201,0,33,0,34,0,0,0,99,0,457,0,0],[0,457,0,518,0,201,201,0,33,0,34,0,0,0,99,0,457,0,0],[0,0,0,557,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,523,561,0,0,0,0],[0,0,0,520,513,521,558,32,33,0,34,0,0,523,517,0,0,37,0],[0,0,0,520,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0,0],[0,0,0,0,465,526,526,8,9,0,10,0,0,0,469,0,0,16,0],[0,0,0,0,529,44,44,8,9,0,0,0,0,0,529,0,0,0,0],[0,0,0,563,66,564,565,8,9,0,10,0,0,566,68,0,0,16,0],[0,527,0,567,0,123,123,8,9,0,10,0,0,0,42,0,527,0,0],[0,527,0,0,0,121,568,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,569,66,570,571,8,9,0,10,0,0,572,68,0,0,16,0],[0,0,0,573,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,575,0,0,0,137,576,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,535,577,0,0,0,0],[0,0,0,531,532,533,574,57,58,0,59,0,0,535,536,0,0,62,0],[0,0,0,531,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,578,151,0,0,137,576,0,58,0,59,0,0,0,139,0,578,0,0],[0,479,0,0,0,246,246,0,58,0,59,0,0,0,139,0,479,0,0],[0,479,0,537,0,246,246,0,58,0,59,0,0,0,139,0,479,0,0],[0,0,0,573,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,542,577,0,0,0,0],[0,0,0,539,532,540,574,57,58,0,59,0,0,542,536,0,0,62,0],[0,0,0,539,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0,0],[0,0,0,0,0,0,0,442,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,439,0,0],[0,0,0,0,0,579,579,494,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,580,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,549,368,550,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,0,368,368,0,161,0,162,0,0,0,362,0,0,0,0],[0,0,0,0,581,0,0,0,161,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,500,552,552,22,23,0,24,0,0,0,504,0,0,27,0],[0,0,0,0,555,80,80,22,23,0,0,0,0,0,555,0,0,0,0],[0,0,0,582,91,583,584,22,23,0,24,0,0,585,93,0,0,27,0],[0,553,0,586,0,177,177,22,23,0,24,0,0,0,78,0,553,0,0],[0,553,0,0,0,175,587,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,588,91,589,590,22,23,0,24,0,0,591,93,0,0,27,0],[0,0,0,0,513,558,558,32,33,0,34,0,0,0,517,0,0,37,0],[0,0,0,0,561,101,101,32,33,0,0,0,0,0,561,0,0,0,0],[0,0,0,592,112,593,594,32,33,0,34,0,0,595,114,0,0,37,0],[0,559,0,596,0,203,203,32,33,0,34,0,0,0,99,0,559,0,0],[0,559,0,0,0,201,597,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,598,112,599,600,32,33,0,34,0,0,601,114,0,0,37,0],[0,0,0,602,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,566,165,0,0,0,0],[0,0,0,563,66,564,67,8,9,0,10,0,0,566,68,0,0,16,0],[0,0,0,563,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,527,0,0,0,121,121,0,9,0,10,0,0,0,42,0,527,0,0],[0,527,0,567,0,121,121,0,9,0,10,0,0,0,42,0,527,0,0],[0,0,0,602,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,165,44,44,8,9,0,0,0,0,572,165,0,0,0,0],[0,0,0,569,66,570,67,8,9,0,10,0,0,572,68,0,0,16,0],[0,0,0,569,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,0,532,574,574,57,58,0,59,0,0,0,536,0,0,62,0],[0,0,0,0,577,141,141,57,58,0,0,0,0,0,577,0,0,0,0],[0,0,0,603,152,604,605,57,58,0,59,0,0,606,154,0,0,62,0],[0,575,0,607,0,248,248,57,58,0,59,0,0,0,139,0,575,0,0],[0,575,0,0,0,246,608,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,609,152,610,611,57,58,0,59,0,0,612,154,0,0,62,0],[0,0,0,0,0,0,0,494,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,0,0],[0,0,0,0,0,0,613,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,614,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,585,194,0,0,0,0],[0,0,0,582,91,583,92,22,23,0,24,0,0,585,93,0,0,27,0],[0,0,0,582,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,553,0,0,0,175,175,0,23,0,24,0,0,0,78,0,553,0,0],[0,553,0,586,0,175,175,0,23,0,24,0,0,0,78,0,553,0,0],[0,0,0,614,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,194,80,80,22,23,0,0,0,0,591,194,0,0,0,0],[0,0,0,588,91,589,92,22,23,0,24,0,0,591,93,0,0,27,0],[0,0,0,588,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,615,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,595,220,0,0,0,0],[0,0,0,592,112,593,113,32,33,0,34,0,0,595,114,0,0,37,0],[0,0,0,592,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,559,0,0,0,201,201,0,33,0,34,0,0,0,99,0,559,0,0],[0,559,0,596,0,201,201,0,33,0,34,0,0,0,99,0,559,0,0],[0,0,0,615,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,220,101,101,32,33,0,0,0,0,601,220,0,0,0,0],[0,0,0,598,112,599,113,32,33,0,34,0,0,601,114,0,0,37,0],[0,0,0,598,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,66,67,67,8,9,0,10,0,0,0,68,0,0,16,0],[0,0,0,616,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,606,265,0,0,0,0],[0,0,0,603,152,604,153,57,58,0,59,0,0,606,154,0,0,62,0],[0,0,0,603,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,575,0,0,0,246,246,0,58,0,59,0,0,0,139,0,575,0,0],[0,575,0,607,0,246,246,0,58,0,59,0,0,0,139,0,575,0,0],[0,0,0,616,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,265,141,141,57,58,0,0,0,0,612,265,0,0,0,0],[0,0,0,609,152,610,153,57,58,0,59,0,0,612,154,0,0,62,0],[0,0,0,609,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,549,0,0],[0,0,0,0,91,92,92,22,23,0,24,0,0,0,93,0,0,27,0],[0,0,0,0,112,113,113,32,33,0,34,0,0,0,114,0,0,37,0],[0,0,0,0,152,153,153,57,58,0,59,0,0,0,154,0,0,62,0]],accepting:[!1,!0,!0,!0,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!1,!0,!1,!0,!0,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!0,!1,!1,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!0,!1,!0,!1,!0,!0,!1,!1,!0,!0,!1,!1,!0,!0,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!1,!1,!1,!1,!1,!1,!1,!0,!0,!1,!1,!0,!0,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!0,!1,!0,!0,!1,!1,!1,!1,!1,!0,!0,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!0,!1,!1,!1,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!0,!0,!1,!0,!0,!0,!0,!0,!1,!0,!0,!1,!0,!0,!0],tags:[[],["broken_cluster"],["consonant_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["consonant_syllable"],["broken_cluster"],["symbol_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["broken_cluster"],["broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],[],["broken_cluster"],["symbol_cluster"],[],["symbol_cluster"],["symbol_cluster"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["symbol_cluster"],["symbol_cluster"],["symbol_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],[],["broken_cluster"],["broken_cluster"],[],[],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["broken_cluster"],["symbol_cluster"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],[],["consonant_syllable"],["consonant_syllable"],[],[],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],[],["vowel_syllable"],["vowel_syllable"],[],[],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],[],[],[],["broken_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],["standalone_cluster"],["standalone_cluster"],[],[],["standalone_cluster"],["standalone_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],[],[],[],["consonant_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],[],[],[],["vowel_syllable"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],[],[],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],["standalone_cluster"],[],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],[],[],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],[],[],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],[],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],[],[],[],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],[],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],[],[],[],[],["consonant_syllable","broken_cluster"],["consonant_syllable","broken_cluster"],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],["broken_cluster"],[],["broken_cluster"],["broken_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],[],[],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],["consonant_syllable"],[],["consonant_syllable"],["consonant_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],["vowel_syllable"],[],["vowel_syllable"],["vowel_syllable"],["broken_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],["standalone_cluster"],[],["standalone_cluster"],["standalone_cluster"],[],["consonant_syllable"],["vowel_syllable"],["standalone_cluster"]]}),Bn=function(tA){function G(){return tA.apply(this,arguments)||this}return w(G,tA),G.planFeatures=function(M){M.addStage(p0),M.addStage(["locl","ccmp"]),M.addStage(I0),M.addStage("nukt"),M.addStage("akhn"),M.addStage("rphf",!1),M.addStage("rkrf"),M.addStage("pref",!1),M.addStage("blwf",!1),M.addStage("abvf",!1),M.addStage("half",!1),M.addStage("pstf",!1),M.addStage("vatu"),M.addStage("cjct"),M.addStage("cfar",!1),M.addStage(D0),M.addStage({local:["init"],global:["pres","abvs","blws","psts","haln","dist","abvm","blwm","calt","clig"]}),M.unicodeScript=function lo(tA){return Lr[tA]}(M.script),M.indicConfig=Ra[M.unicodeScript]||Ra.Default,M.isOldSpec=M.indicConfig.hasOldSpec&&"2"!==M.script[M.script.length-1]},G.assignFeatures=function(M,N){for(var P=function(lA){var sA=N[lA].codePoints[0],bA=d0[sA]||Q0[sA];if(bA){var KA=bA.map(function(lt){var $A=M.font.glyphForCodePoint(lt);return new ai(M.font,$A.id,[lt],N[lA].features)});N.splice.apply(N,[lA,1].concat(KA))}},nA=N.length-1;nA>=0;nA--)P(nA)},G}(ui);function qr(tA){return Ta.get(tA.codePoints[0])>>8}function Ua(tA){return 1<<(255&Ta.get(tA.codePoints[0]))}z(Bn,"zeroMarkWidths","NONE");var Mr=function(G,K,M,N){this.category=G,this.position=K,this.syllableType=M,this.syllable=N};function p0(tA,G){for(var P,K=0,M=0,N=r(m0.match(G.map(qr)));!(P=N()).done;){var nA=P.value,oA=nA[0],lA=nA[1],sA=nA[2];if(oA>M){++K;for(var bA=M;bAGt);break;case"First":for(var de=(It=sA)+1;deHe&&!(Qi(G[ke])||Je&&G[ke].shaperInfo.category===Ie_H);ke--);if(G[ke].shaperInfo.category!==Ie_H&&ke>He){var pe=G[He];G.splice.apply(G,[He,0].concat(G.splice(He+1,ke-He))),G[ke]=pe}break}for(var Le=te.Start,_e=sA;_esA;$e--)if(G[$e-1].shaperInfo.position!==te.Pre_M){Ee.position=G[$e-1].shaperInfo.position;break}}else Ee.position!==te.SMVD&&(Le=Ee.position)}for(var Ln=It,fn=It+1;fnsA&&!Qi(G[Gn]))}}}}function D0(tA,G,K){for(var M=K.indicConfig,N=tA._layoutEngine.engine.GSUBProcessor.features,P=0,nA=Ir(G,0);P=te.Base_C){if(oA&&lA+1te.Base_C&&lA--;break}if(lA===nA&&PP&&!(G[KA].shaperInfo.category&(Ie_M|Wi));)KA--;oi(G[KA])&&G[KA].shaperInfo.position!==te.Pre_M?KA+1P;lt--)if(G[lt-1].shaperInfo.position===te.Pre_M){var $A=lt-1;$AP&&G[mt].shaperInfo.position===te.SMVD;)mt--;if(oi(G[mt]))for(var _t=lA+1;_tP&&!(G[ce-1].shaperInfo.category&(Ie_M|Wi));)ce--;if(ce>P&&G[ce-1].shaperInfo.category===Ie_M)for(var Ce=re,de=lA+1;deP&&oi(G[ce-1])&&ce=tA.length)return G;for(var K=tA[G].shaperInfo.syllable;++G=0;nA--)P(nA)},G}(ui);function La(tA){return F0.get(tA.codePoints[0])}z(we,"zeroMarkWidths","BEFORE_GPOS");var x0=function(G,K,M){this.category=G,this.syllableType=K,this.syllable=M};function Y0(tA,G){for(var N,K=0,M=r(y0.match(G.map(La)));!(N=M()).done;){var P=N.value,nA=P[0],oA=P[1],lA=P[2];++K;for(var sA=nA;sA<=oA;sA++)G[sA].shaperInfo=new x0(v0[La(G[sA])],lA[0],K);for(var bA="R"===G[nA].shaperInfo.category?1:Math.min(3,oA-nA),KA=nA;KA1)for(P=M+1;P=tA.length)return G;for(var K=tA[G].shaperInfo.syllable;++G=0;Pn--)this.glyphs.splice(ce[Pn],1);return this.glyphs[this.glyphIterator.index]=Je,!0}}return!1;case 5:return this.applyContext(P);case 6:return this.applyChainingContext(P);case 7:return this.applyLookup(P.lookupType,P.extension);default:throw new Error("GSUB lookupType ".concat(N," is not supported"))}},G}(fr),L0=function(tA){function G(){return tA.apply(this,arguments)||this}w(G,tA);var K=G.prototype;return K.applyPositionValue=function(N,P){var nA=this.positions[this.glyphIterator.peekIndex(N)];null!=P.xAdvance&&(nA.xAdvance+=P.xAdvance),null!=P.yAdvance&&(nA.yAdvance+=P.yAdvance),null!=P.xPlacement&&(nA.xOffset+=P.xPlacement),null!=P.yPlacement&&(nA.yOffset+=P.yPlacement);var oA=this.font._variationProcessor,lA=this.font.GDEF&&this.font.GDEF.itemVariationStore;oA&&lA&&(P.xPlaDevice&&(nA.xOffset+=oA.getDelta(lA,P.xPlaDevice.a,P.xPlaDevice.b)),P.yPlaDevice&&(nA.yOffset+=oA.getDelta(lA,P.yPlaDevice.a,P.yPlaDevice.b)),P.xAdvDevice&&(nA.xAdvance+=oA.getDelta(lA,P.xAdvDevice.a,P.xAdvDevice.b)),P.yAdvDevice&&(nA.yAdvance+=oA.getDelta(lA,P.yAdvDevice.a,P.yAdvDevice.b)))},K.applyLookup=function(N,P){switch(N){case 1:var nA=this.coverageIndex(P.coverage);if(-1===nA)return!1;switch(P.version){case 1:this.applyPositionValue(0,P.value);break;case 2:this.applyPositionValue(0,P.values.get(nA))}return!0;case 2:var oA=this.glyphIterator.peek();if(!oA)return!1;var lA=this.coverageIndex(P.coverage);if(-1===lA)return!1;switch(P.version){case 1:for(var KA,bA=r(P.pairSets.get(lA));!(KA=bA()).done;){var lt=KA.value;if(lt.secondGlyph===oA.id)return this.applyPositionValue(0,lt.value1),this.applyPositionValue(1,lt.value2),!0}return!1;case 2:var $A=this.getClassID(this.glyphIterator.cur.id,P.classDef1),ct=this.getClassID(oA.id,P.classDef2);if(-1===$A||-1===ct)return!1;var mt=P.classRecords.get($A).get(ct);return this.applyPositionValue(0,mt.value1),this.applyPositionValue(1,mt.value2),!0}case 3:var It=this.glyphIterator.peekIndex(),Gt=this.glyphs[It];if(!Gt)return!1;var _t=P.entryExitRecords[this.coverageIndex(P.coverage)];if(!_t||!_t.exitAnchor)return!1;var qt=P.entryExitRecords[this.coverageIndex(P.coverage,Gt.id)];if(!qt||!qt.entryAnchor)return!1;var re=this.getAnchor(qt.entryAnchor),ce=this.getAnchor(_t.exitAnchor),Ce=this.positions[this.glyphIterator.index],de=this.positions[It];switch(this.direction){case"ltr":Ce.xAdvance=ce.x+Ce.xOffset;var Ge=re.x+de.xOffset;de.xAdvance-=Ge,de.xOffset-=Ge;break;case"rtl":Ce.xAdvance-=Ge=ce.x+Ce.xOffset,Ce.xOffset-=Ge,de.xAdvance=re.x+de.xOffset}return this.glyphIterator.flags.rightToLeft?(this.glyphIterator.cur.cursiveAttachment=It,Ce.yOffset=re.y-ce.y):(Gt.cursiveAttachment=this.glyphIterator.index,Ce.yOffset=ce.y-re.y),!0;case 4:var rn=this.coverageIndex(P.markCoverage);if(-1===rn)return!1;for(var Ue=this.glyphIterator.index;--Ue>=0&&(this.glyphs[Ue].isMark||this.glyphs[Ue].ligatureComponent>0););if(Ue<0)return!1;var he=this.coverageIndex(P.baseCoverage,this.glyphs[Ue].id);if(-1===he)return!1;var Je=P.markArray[rn];return this.applyAnchor(Je,P.baseArray[he][Je.class],Ue),!0;case 5:var ke=this.coverageIndex(P.markCoverage);if(-1===ke)return!1;for(var pe=this.glyphIterator.index;--pe>=0&&this.glyphs[pe].isMark;);if(pe<0)return!1;var Le=this.coverageIndex(P.ligatureCoverage,this.glyphs[pe].id);if(-1===Le)return!1;var _e=P.ligatureArray[Le],Ee=this.glyphIterator.cur,$e=this.glyphs[pe],Ln=$e.ligatureID&&$e.ligatureID===Ee.ligatureID&&Ee.ligatureComponent>0?Math.min(Ee.ligatureComponent,$e.codePoints.length)-1:$e.codePoints.length-1,fn=P.markArray[ke];return this.applyAnchor(fn,_e[Ln][fn.class],pe),!0;case 6:var Rn=this.coverageIndex(P.mark1Coverage);if(-1===Rn)return!1;var Pn=this.glyphIterator.peekIndex(-1),pn=this.glyphs[Pn];if(!pn||!pn.isMark)return!1;var zn=this.glyphIterator.cur,Cn=!1;if(zn.ligatureID===pn.ligatureID?zn.ligatureID?zn.ligatureComponent===pn.ligatureComponent&&(Cn=!0):Cn=!0:(zn.ligatureID&&!zn.ligatureComponent||pn.ligatureID&&!pn.ligatureComponent)&&(Cn=!0),!Cn)return!1;var kn=this.coverageIndex(P.mark2Coverage,pn.id);if(-1===kn)return!1;var De=P.mark1Array[Rn];return this.applyAnchor(De,P.mark2Array[kn][De.class],Pn),!0;case 7:return this.applyContext(P);case 8:return this.applyChainingContext(P);case 9:return this.applyLookup(P.lookupType,P.extension);default:throw new Error("Unsupported GPOS table: ".concat(N))}},K.applyAnchor=function(N,P,nA){var oA=this.getAnchor(P),lA=this.getAnchor(N.markAnchor),bA=this.positions[this.glyphIterator.index];bA.xOffset=oA.x-lA.x,bA.yOffset=oA.y-lA.y,this.glyphIterator.cur.markAttachment=nA},K.getAnchor=function(N){var P=N.xCoordinate,nA=N.yCoordinate,oA=this.font._variationProcessor,lA=this.font.GDEF&&this.font.GDEF.itemVariationStore;return oA&&lA&&(N.xDeviceTable&&(P+=oA.getDelta(lA,N.xDeviceTable.a,N.xDeviceTable.b)),N.yDeviceTable&&(nA+=oA.getDelta(lA,N.yDeviceTable.a,N.yDeviceTable.b))),{x:P,y:nA}},K.applyFeatures=function(N,P,nA){tA.prototype.applyFeatures.call(this,N,P,nA);for(var oA=0;oA>16;if(0===N)switch(M>>8){case 0:return 173===M;case 3:return 847===M;case 6:return 1564===M;case 23:return 6068<=M&&M<=6069;case 24:return 6155<=M&&M<=6158;case 32:return 8203<=M&&M<=8207||8234<=M&&M<=8238||8288<=M&&M<=8303;case 254:return 65024<=M&&M<=65039||65279===M;case 255:return 65520<=M&&M<=65528;default:return!1}else switch(N){case 1:return 113824<=M&&M<=113827||119155<=M&&M<=119162;case 14:return 917504<=M&&M<=921599;default:return!1}},G.getAvailableFeatures=function(M,N){var P=[];return this.engine&&P.push.apply(P,this.engine.getAvailableFeatures(M,N)),this.font.kern&&-1===P.indexOf("kern")&&P.push("kern"),P},G.stringsForGlyph=function(M){for(var oA,N=new Set,nA=r(this.font._cmapProcessor.codePointsForGlyph(M));!(oA=nA()).done;)N.add(String.fromCodePoint(oA.value));if(this.engine&&this.engine.stringsForGlyph)for(var bA,sA=r(this.engine.stringsForGlyph(M));!(bA=sA()).done;)N.add(bA.value);return Array.from(N)},tA}(),G0={moveTo:"M",lineTo:"L",quadraticCurveTo:"Q",bezierCurveTo:"C",closePath:"Z"},Fr=function(){function tA(){this.commands=[],this._bbox=null,this._cbox=null}var G=tA.prototype;return G.toFunction=function(){var M=this;return function(N){M.commands.forEach(function(P){return N[P.command].apply(N,P.args)})}},G.toSVG=function(){return this.commands.map(function(N){var P=N.args.map(function(nA){return Math.round(100*nA)/100});return"".concat(G0[N.command]).concat(P.join(" "))}).join("")},G.mapPoints=function(M){for(var nA,N=new tA,P=r(this.commands);!(nA=P()).done;){for(var oA=nA.value,lA=[],sA=0;sA0&&this.codePoints.every(I.isMark),this.isLigature=this.codePoints.length>1}var G=tA.prototype;return G._getPath=function(){return new Fr},G._getCBox=function(){return this.path.cbox},G._getBBox=function(){return this.path.bbox},G._getTableMetrics=function(M){if(this.id"u"||null===M)&&(M=this.cbox),(bA=this._font["OS/2"])&&bA.version>0)lA=Math.abs(bA.typoAscender-bA.typoDescender),sA=bA.typoAscender-M.maxY;else{var KA=this._font.hhea;lA=Math.abs(KA.ascent-KA.descent),sA=KA.ascent-M.maxY}return this._font._variationProcessor&&this._font.HVAR&&(P+=this._font._variationProcessor.getAdvanceAdjustment(this.id,this._font.HVAR)),this._metrics={advanceWidth:P,advanceHeight:lA,leftBearing:nA,topBearing:sA}},G.getScaledPath=function(M){return this.path.scale(1/this._font.unitsPerEm*M)},G._getName=function(){var M=this._font.post;if(!M)return null;switch(M.version){case 1:return Ki[this.id];case 2:var N=M.glyphNameIndex[this.id];return N0?this._decodeSimple(lA,nA):lA.numberOfContours<0&&this._decodeComposite(lA,nA,oA),lA},K._decodeSimple=function(N,P){N.points=[];var nA=new e.Array(e.uint16,N.numberOfContours).decode(P);N.instructions=new e.Array(e.uint8,e.uint16).decode(P);for(var oA=[],lA=nA[nA.length-1]+1;oA.length=0,0,0);N.points.push($A)}var ct=0;for(lt=0;lt>1,sA.length=0}function Je(ke,pe){Gt&&lA.closePath(),lA.moveTo(ke,pe),Gt=!0}return function ke(){for(;P.pos1&&Ue(),ct+=sA.shift(),Je($A,ct);break;case 5:for(;sA.length>=2;)$A+=sA.shift(),ct+=sA.shift(),lA.lineTo($A,ct);break;case 6:case 7:for(var Le=6===pe;sA.length>=1;)Le?$A+=sA.shift():ct+=sA.shift(),lA.lineTo($A,ct),Le=!Le;break;case 8:for(;sA.length>0;){var De=$A+sA.shift(),be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift();$A=Se+sA.shift(),ct=Xe+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct)}break;case 10:var _e=sA.pop()+Ce,Ee=ce[_e];if(Ee){It[_e]=!0;var $e=P.pos,Ln=oA;P.pos=Ee.offset,oA=Ee.offset+Ee.length,ke(),P.pos=$e,oA=Ln}break;case 11:if(N.version>=2)break;return;case 14:if(N.version>=2)break;sA.length>0&&Ue(),Gt&&(lA.closePath(),Gt=!1);break;case 15:if(N.version<2)throw new Error("vsindex operator not supported in CFF v1");Ge=sA.pop();break;case 16:if(N.version<2)throw new Error("blend operator not supported in CFF v1");if(!rn)throw new Error("blend operator in non-variation font");for(var fn=rn.getBlendVector(de,Ge),Fn=sA.pop(),Rn=Fn*fn.length,Pn=sA.length-Rn,pn=Pn-Fn,zn=0;zn>3;break;case 21:sA.length>2&&Ue(),$A+=sA.shift(),ct+=sA.shift(),Je($A,ct);break;case 22:sA.length>1&&Ue(),Je($A+=sA.shift(),ct);break;case 24:for(;sA.length>=8;)De=$A+sA.shift(),be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se+sA.shift(),ct=Xe+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct);$A+=sA.shift(),ct+=sA.shift(),lA.lineTo($A,ct);break;case 25:for(;sA.length>=8;)$A+=sA.shift(),ct+=sA.shift(),lA.lineTo($A,ct);De=$A+sA.shift(),be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se+sA.shift(),ct=Xe+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct);break;case 26:for(sA.length%2&&($A+=sA.shift());sA.length>=4;)De=$A,be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se,ct=Xe+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct);break;case 27:for(sA.length%2&&(ct+=sA.shift());sA.length>=4;)De=$A+sA.shift(),be=ct,Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se+sA.shift(),lA.bezierCurveTo(De,be,Se,Xe,$A,ct=Xe);break;case 28:sA.push(P.readInt16BE());break;case 29:_e=sA.pop()+qt,(Ee=_t[_e])&&(mt[_e]=!0,$e=P.pos,Ln=oA,P.pos=Ee.offset,oA=Ee.offset+Ee.length,ke(),P.pos=$e,oA=Ln);break;case 30:case 31:for(Le=31===pe;sA.length>=4;)Le?(De=$A+sA.shift(),be=ct,Se=De+sA.shift(),Xe=be+sA.shift(),ct=Xe+sA.shift(),$A=Se+(1===sA.length?sA.shift():0)):(De=$A,be=ct+sA.shift(),Se=De+sA.shift(),Xe=be+sA.shift(),$A=Se+sA.shift(),ct=Xe+(1===sA.length?sA.shift():0)),lA.bezierCurveTo(De,be,Se,Xe,$A,ct),Le=!Le;break;case 12:switch(pe=P.readUInt8()){case 3:var je=sA.pop(),ln=sA.pop();sA.push(je&&ln?1:0);break;case 4:je=sA.pop(),ln=sA.pop(),sA.push(je||ln?1:0);break;case 5:je=sA.pop(),sA.push(je?0:1);break;case 9:je=sA.pop(),sA.push(Math.abs(je));break;case 10:je=sA.pop(),ln=sA.pop(),sA.push(je+ln);break;case 11:je=sA.pop(),ln=sA.pop(),sA.push(je-ln);break;case 12:je=sA.pop(),ln=sA.pop(),sA.push(je/ln);break;case 14:je=sA.pop(),sA.push(-je);break;case 15:je=sA.pop(),ln=sA.pop(),sA.push(je===ln?1:0);break;case 18:sA.pop();break;case 20:var ea=sA.pop(),Gn=sA.pop();bA[Gn]=ea;break;case 21:Gn=sA.pop(),sA.push(bA[Gn]||0);break;case 22:var na=sA.pop(),ia=sA.pop(),Tl=sA.pop(),Ul=sA.pop();sA.push(Tl<=Ul?na:ia);break;case 23:sA.push(Math.random());break;case 24:je=sA.pop(),ln=sA.pop(),sA.push(je*ln);break;case 26:je=sA.pop(),sA.push(Math.sqrt(je));break;case 27:je=sA.pop(),sA.push(je,je);break;case 28:je=sA.pop(),ln=sA.pop(),sA.push(ln,je);break;case 29:(Gn=sA.pop())<0?Gn=0:Gn>sA.length-1&&(Gn=sA.length-1),sA.push(sA[Gn]);break;case 30:var Yr=sA.pop(),Xi=sA.pop();if(Xi>=0)for(;Xi>0;){for(var ra=sA[Yr-1],Sr=Yr-2;Sr>=0;Sr--)sA[Sr+1]=sA[Sr];sA[0]=ra,Xi--}else for(;Xi<0;){ra=sA[0];for(var Nr=0;Nr<=Yr;Nr++)sA[Nr]=sA[Nr+1];sA[Yr-1]=ra,Xi++}break;case 34:De=$A+sA.shift(),be=ct,Se=De+sA.shift(),Xe=be+sA.shift();var Zi=Se+sA.shift(),qi=Xe,_i=Zi+sA.shift(),$i=qi,Ar=_i+sA.shift(),tr=$i,er=Ar+sA.shift(),nr=tr;$A=er,ct=nr,lA.bezierCurveTo(De,be,Se,Xe,Zi,qi),lA.bezierCurveTo(_i,$i,Ar,tr,er,nr);break;case 35:for(var Ei=[],ss=0;ss<=5;ss++)$A+=sA.shift(),ct+=sA.shift(),Ei.push($A,ct);lA.bezierCurveTo.apply(lA,Ei.slice(0,6)),lA.bezierCurveTo.apply(lA,Ei.slice(6)),sA.shift();break;case 36:De=$A+sA.shift(),be=ct+sA.shift(),Se=De+sA.shift(),$i=qi=Xe=be+sA.shift(),Ar=(_i=(Zi=Se+sA.shift())+sA.shift())+sA.shift(),tr=$i+sA.shift(),er=Ar+sA.shift(),$A=er,ct=nr=tr,lA.bezierCurveTo(De,be,Se,Xe,Zi,qi),lA.bezierCurveTo(_i,$i,Ar,tr,er,nr);break;case 37:var os=$A,ls=ct;Ei=[];for(var cs=0;cs<=4;cs++)$A+=sA.shift(),ct+=sA.shift(),Ei.push($A,ct);Math.abs($A-os)>Math.abs(ct-ls)?($A+=sA.shift(),ct=ls):($A=os,ct+=sA.shift()),Ei.push($A,ct),lA.bezierCurveTo.apply(lA,Ei.slice(0,6)),lA.bezierCurveTo.apply(lA,Ei.slice(6));break;default:throw new Error("Unknown op: 12 ".concat(pe))}break;default:throw new Error("Unknown op: ".concat(pe))}else if(pe<247)sA.push(pe-139);else if(pe<251){var aa=P.readUInt8();sA.push(256*(pe-247)+aa+108)}else pe<255?(aa=P.readUInt8(),sA.push(256*-(pe-251)-aa-108)):sA.push(P.readInt32BE()/65536)}}(),Gt&&lA.closePath(),lA},G}(yr),q0=new e.Struct({originX:e.uint16,originY:e.uint16,type:new e.String(4),data:new e.Buffer(function(tA){return tA.parent.buflen-tA._currentOffset})}),_0=function(tA){function G(){return tA.apply(this,arguments)||this}w(G,tA);var K=G.prototype;return K.getImageForSize=function(N){for(var P=0;P=N)break}var oA=nA.imageOffsets,lA=oA[this.id],sA=oA[this.id+1];return lA===sA?null:(this._font.stream.pos=lA,q0.decode(this._font.stream,{buflen:sA-lA}))},K.render=function(N,P){var nA=this.getImageForSize(P);null!=nA&&N.image(nA.data,{height:P,x:nA.originX,y:P/this._font.unitsPerEm*(this.bbox.minY-nA.originY)}),this._font.sbix.flags.renderOutlines&&tA.prototype.render.call(this,N,P)},G}(xr),Wa=function(G,K){this.glyph=G,this.color=K},$0=function(tA){function G(){return tA.apply(this,arguments)||this}w(G,tA);var K=G.prototype;return K._getBBox=function(){for(var N=new xi,P=0;P>1;if(this.id<(sA=P.baseGlyphRecord[lA]).gid)oA=lA-1;else{if(!(this.id>sA.gid)){var bA=sA;break}nA=lA+1}}if(null==bA){var KA=this._font._getBaseGlyph(this.id);return[new Wa(KA,lt={red:0,green:0,blue:0,alpha:255})]}for(var $A=[],ct=bA.firstLayerIndex;ct=1&&N[P]=P.glyphCount)){var nA=P.offsets[M];if(nA!==P.offsets[M+1]){var oA=this.font.stream;if(oA.pos=nA,!(oA.pos>=oA.length)){var lA=oA.readUInt16BE(),sA=nA+oA.readUInt16BE();if(32768&lA){var bA=oA.pos;oA.pos=sA;var KA=this.decodePoints();sA=oA.pos,oA.pos=bA}var lt=N.map(function(fn){return fn.copy()});lA&=4095;for(var $A=0;$A=P.globalCoordCount)throw new Error("Invalid gvar table");It=P.globalCoords[4095&mt]}if(16384&mt){for(var _t=[],qt=0;qtnA[bA])return 0;sA=oA[bA]Math.max(0,N[bA]))return 0;sA=(sA*oA[bA]+Number.EPSILON)/(N[bA]+Number.EPSILON)}}return sA},G.interpolateMissingDeltas=function(M,N,P){if(0!==M.length)for(var nA=0;nAlA)){var bA=nA,KA=nA;for(nA++;nA<=lA;)P[nA]&&(this.deltaInterpolate(KA+1,nA-1,KA,nA,N,M),KA=nA),nA++;KA===bA?this.deltaShift(oA,lA,KA,N,M):(this.deltaInterpolate(KA+1,lA,KA,bA,N,M),bA>0&&this.deltaInterpolate(oA,bA-1,KA,bA,N,M)),nA=lA+1}}},G.deltaInterpolate=function(M,N,P,nA,oA,lA){if(!(M>N))for(var sA=["x","y"],bA=0;bAoA[nA][KA]){var lt=P;P=nA,nA=lt}var $A=oA[P][KA],ct=oA[nA][KA],mt=lA[P][KA],It=lA[nA][KA];if($A!==ct||mt===It)for(var Gt=$A===ct?0:(It-mt)/(ct-$A),_t=M;_t<=N;_t++){var qt=oA[_t][KA];qt<=$A?qt+=mt-$A:qt>=ct?qt+=It-ct:qt=mt+(qt-$A)*Gt,lA[_t][KA]=qt}}},G.deltaShift=function(M,N,P,nA,oA){var lA=oA[P].x-nA[P].x,sA=oA[P].y-nA[P].y;if(0!==lA||0!==sA)for(var bA=M;bA<=N;bA++)bA!==P&&(oA[bA].x+=lA,oA[bA].y+=sA)},G.getAdvanceAdjustment=function(M,N){var P,nA;if(N.advanceWidthMapping){var oA=M;oA>=N.advanceWidthMapping.mapCount&&(oA=N.advanceWidthMapping.mapCount-1);var sA=N.advanceWidthMapping.mapData[oA];P=sA.outerIndex,nA=sA.innerIndex}else P=0,nA=M;return this.getDelta(N.itemVariationStore,P,nA)},G.getDelta=function(M,N,P){if(N>=M.itemVariationData.length)return 0;var nA=M.itemVariationData[N];if(P>=nA.deltaSets.length)return 0;for(var oA=nA.deltaSets[P],lA=this.getBlendVector(M,N),sA=0,bA=0;bA$A.peakCoord||$A.peakCoord>$A.endCoord||$A.startCoord<0&&$A.endCoord>0&&0!==$A.peakCoord||0===$A.peakCoord?1:nA[lt]<$A.startCoord||nA[lt]>$A.endCoord?0:nA[lt]===$A.peakCoord?1:nA[lt]<$A.peakCoord?(nA[lt]-$A.startCoord+Number.EPSILON)/($A.peakCoord-$A.startCoord+Number.EPSILON):($A.endCoord-nA[lt]+Number.EPSILON)/($A.endCoord-$A.peakCoord+Number.EPSILON)}oA[lA]=sA}return this.blendVectors.set(P,oA),oA},tA}(),_a=Promise.resolve(),$a=function(){function tA(K){this.font=K,this.glyphs=[],this.mapping={},this.includeGlyph(0)}var G=tA.prototype;return G.includeGlyph=function(M){return"object"==typeof M&&(M=M.id),null==this.mapping[M]&&(this.glyphs.push(M),this.mapping[M]=this.glyphs.length-1),this.mapping[M]},G.encodeStream=function(){var M=this,N=new e.EncodeStream;return _a.then(function(){return M.encode(N),N.end()}),N},tA}(),As=function(){function tA(){}return tA.size=function(K){return K>=0&&K<=255?1:2},tA.encode=function(K,M){M>=0&&M<=255?K.writeUInt8(M):K.writeInt16BE(M)},tA}(),ts=new e.Struct({numberOfContours:e.int16,xMin:e.int16,yMin:e.int16,xMax:e.int16,yMax:e.int16,endPtsOfContours:new e.Array(e.uint16,"numberOfContours"),instructions:new e.Array(e.uint8,e.uint16),flags:new e.Array(e.uint8,0),xPoints:new e.Array(As,0),yPoints:new e.Array(As,0)}),fl=function(){function tA(){}var G=tA.prototype;return G.encodeSimple=function(M,N){void 0===N&&(N=[]);for(var P=[],nA=[],oA=[],lA=[],sA=0,bA=0,KA=0,lt=0,$A=0,ct=0;ct0&&(lA.push(sA),sA=0),lA.push(qt),lt=qt),bA=Gt,KA=_t,$A++}"closePath"===mt.command&&P.push($A-1)}M.commands.length>1&&"closePath"!==M.commands[M.commands.length-1].command&&P.push($A-1);var de=M.bbox,Ge={numberOfContours:P.length,xMin:de.minX,yMin:de.minY,xMax:de.maxX,yMax:de.maxY,endPtsOfContours:P,instructions:N,flags:lA,xPoints:nA,yPoints:oA},rn=ts.size(Ge),Ue=4-rn%4,he=new e.EncodeStream(rn+Ue);return ts.encode(he,Ge),0!==Ue&&he.fill(0,Ue),he.buffer},G._encodePoint=function(M,N,P,nA,oA,lA){var sA=M-N;return M===N?nA|=lA:(-255<=sA&&sA<=255&&(nA|=oA,sA<0?sA=-sA:nA|=lA),P.push(sA)),nA},tA}(),hl=function(tA){function G(M){var N;return(N=tA.call(this,M)||this).glyphEncoder=new fl,N}w(G,tA);var K=G.prototype;return K._addGlyph=function(N){var P=this.font.getGlyph(N),nA=P._decode(),oA=this.font.loca.offsets[N],lA=this.font.loca.offsets[N+1],sA=this.font._getTableStream("glyf");sA.pos+=oA;var bA=sA.readBuffer(lA-oA);if(nA&&nA.numberOfContours<0){bA=B.from(bA);for(var lt,KA=r(nA.components);!(lt=KA()).done;){var $A=lt.value;N=this.includeGlyph($A.glyphID),bA.writeUInt16BE(N,$A.pos)}}else nA&&this.font._variationProcessor&&(bA=this.glyphEncoder.encodeSimple(P.path,nA.instructions));return this.glyf.push(bA),this.loca.offsets.push(this.offset),this.hmtx.metrics.push({advance:P.advanceWidth,bearing:P._getMetrics().leftBearing}),this.offset+=bA.length,this.glyf.length-1},K.encode=function(N){this.glyf=[],this.offset=0,this.loca={offsets:[],version:this.font.loca.version},this.hmtx={metrics:[],bearings:[]};for(var P=0;P255?2:1,ranges:[{first:1,nLeft:this.charstrings.length-2}]},nA=Object.assign({},this.cff.topDict);nA.Private=null,nA.charset=P,nA.Encoding=null,nA.CharStrings=this.charstrings;for(var oA=0,lA=["version","Notice","Copyright","FullName","FamilyName","Weight","PostScript","BaseFontName","FontName"];oA0&&Object.defineProperty(this,N,{get:this._getTable.bind(this,P)})}}tA.probe=function(M){var N=M.toString("ascii",0,4);return"true"===N||"OTTO"===N||"\0\x01\0\0"===N};var G=tA.prototype;return G.setDefaultLanguage=function(M){void 0===M&&(M=null),this.defaultLanguage=M},G._getTable=function(M){if(!(M.tag in this._tables))try{this._tables[M.tag]=this._decodeTable(M)}catch(N){v.logErrors&&(console.error("Error decoding table ".concat(M.tag)),console.error(N.stack))}return this._tables[M.tag]},G._getTableStream=function(M){var N=this.directory.tables[M];return N?(this.stream.pos=N.offset,this.stream):null},G._decodeDirectory=function(){return this.directory=rr.decode(this.stream,{_startOffset:0})},G._decodeTable=function(M){var N=this.stream.pos,P=this._getTableStream(M.tag),nA=oe[M.tag].decode(P,this,M.length);return this.stream.pos=N,nA},G.getName=function(M,N){void 0===N&&(N=this.defaultLanguage||v.defaultLanguage);var P=this.name&&this.name.records[M];return P&&(P[N]||P[this.defaultLanguage]||P[v.defaultLanguage]||P.en||P[Object.keys(P)[0]])||null},G.hasGlyphForCodePoint=function(M){return!!this._cmapProcessor.lookup(M)},G.glyphForCodePoint=function(M){return this.getGlyph(this._cmapProcessor.lookup(M),[M])},G.glyphsForString=function(M){for(var N=[],P=M.length,nA=0,oA=-1,lA=-1;nA<=P;){var sA=0,bA=0;if(nA>>6&3},transformed:function(G){return"glyf"===G.tag||"loca"===G.tag?0===G.transformVersion:0!==G.transformVersion},transformLength:new e.Optional(ns,function(tA){return tA.transformed})}),is=new e.Struct({tag:new e.String(4),flavor:e.uint32,length:e.uint32,numTables:e.uint16,reserved:new e.Reserved(e.uint16),totalSfntSize:e.uint32,totalCompressedSize:e.uint32,majorVersion:e.uint16,minorVersion:e.uint16,metaOffset:e.uint32,metaLength:e.uint32,metaOrigLength:e.uint32,privOffset:e.uint32,privLength:e.uint32,tables:new e.Array(Ql,"numTables")});is.process=function(){for(var tA={},G=0;G0){for(var sA=[],bA=0,KA=0;KA>7);if((sA&=127)<10)oA=0,lA=Ai(sA,((14&sA)<<7)+G.readUInt8());else if(sA<20)oA=Ai(sA,((sA-10&14)<<7)+G.readUInt8()),lA=0;else if(sA<84)oA=Ai(sA,1+(48&(KA=sA-20))+((lt=G.readUInt8())>>4)),lA=Ai(sA>>1,1+((12&KA)<<2)+(15<));else if(sA<120){var KA;oA=Ai(sA,1+((KA=sA-84)/12<<8)+G.readUInt8()),lA=Ai(sA>>1,1+(KA%12>>2<<8)+G.readUInt8())}else if(sA<124){var lt=G.readUInt8(),$A=G.readUInt8();oA=Ai(sA,(lt<<4)+($A>>4)),lA=Ai(sA>>1,((15&$A)<<8)+G.readUInt8())}else oA=Ai(sA,G.readUInt16BE()),lA=Ai(sA>>1,G.readUInt16BE());P.push(new ci(bA,!1,N+=oA,M+=lA))}return P}var Fl=new e.VersionedStruct(e.uint32,{65536:{numFonts:e.uint32,offsets:new e.Array(e.uint32,"numFonts")},131072:{numFonts:e.uint32,offsets:new e.Array(e.uint32,"numFonts"),dsigTag:e.uint32,dsigLength:e.uint32,dsigOffset:e.uint32}}),yl=function(){function tA(K){if(this.stream=K,"ttcf"!==K.readString(4))throw new Error("Not a TrueType collection");this.header=Fl.decode(K)}return tA.probe=function(M){return"ttcf"===M.toString("ascii",0,4)},tA.prototype.getFont=function(M){for(var P,N=r(this.header.offsets);!(P=N()).done;){var nA=P.value,oA=new e.DecodeStream(this.stream.buffer);oA.pos=nA;var lA=new mi(oA);if(lA.postscriptName===M)return lA}return null},o(tA,[{key:"fonts",get:function(){for(var P,M=[],N=r(this.header.offsets);!(P=N()).done;){var nA=P.value,oA=new e.DecodeStream(this.stream.buffer);oA.pos=nA,M.push(new mi(oA))}return M}}]),tA}(),xl=new e.String(e.uint8),Yl=(new e.Struct({len:e.uint32,buf:new e.Buffer("len")}),new e.Struct({id:e.uint16,nameOffset:e.int16,attr:e.uint8,dataOffset:e.uint24,handle:e.uint32})),Sl=new e.Struct({name:new e.String(4),maxTypeIndex:e.uint16,refList:new e.Pointer(e.uint16,new e.Array(Yl,function(tA){return tA.maxTypeIndex+1}),{type:"parent"})}),Nl=new e.Struct({length:e.uint16,types:new e.Array(Sl,function(tA){return tA.length+1})}),bl=new e.Struct({reserved:new e.Reserved(e.uint8,24),typeList:new e.Pointer(e.uint16,Nl),nameListOffset:new e.Pointer(e.uint16,"void")}),as=new e.Struct({dataOffset:e.uint32,map:new e.Pointer(e.uint32,bl),dataLength:e.uint32,mapLength:e.uint32}),Rl=function(){function tA(K){this.stream=K,this.header=as.decode(this.stream);for(var N,M=r(this.header.map.typeList.types);!(N=M()).done;){for(var oA,P=N.value,nA=r(P.refList);!(oA=nA()).done;){var lA=oA.value;lA.nameOffset>=0?(this.stream.pos=lA.nameOffset+this.header.map.nameListOffset,lA.name=xl.decode(this.stream)):lA.name=null}"sfnt"===P.name&&(this.sfnt=P)}}return tA.probe=function(M){var N=new e.DecodeStream(M);try{var P=as.decode(N)}catch{return!1}for(var oA,nA=r(P.map.typeList.types);!(oA=nA()).done;)if("sfnt"===oA.value.name)return!0;return!1},tA.prototype.getFont=function(M){if(!this.sfnt)return null;for(var P,N=r(this.sfnt.refList);!(P=N()).done;){var lA=new e.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+P.value.dataOffset+4)),sA=new mi(lA);if(sA.postscriptName===M)return sA}return null},o(tA,[{key:"fonts",get:function(){for(var P,M=[],N=r(this.sfnt.refList);!(P=N()).done;){var lA=new e.DecodeStream(this.stream.buffer.slice(this.header.dataOffset+P.value.dataOffset+4));M.push(new mi(lA))}return M}}]),tA}();v.registerFormat(mi),v.registerFormat(Cl),v.registerFormat(ml),v.registerFormat(yl),v.registerFormat(Rl),b.exports=v},19304:function(b,A,n){"use strict";var B=n(41209),a=n(32504),s=n(41783),o=s.BK,g=s.CR,f=s.LF,w=s.NL,u=s.SG,r=s.WJ,d=s.SP,E=s.ZWJ,C=s.BA,e=s.HY,h=s.NS,Q=s.AI,I=s.AL,R=s.CJ,p=s.HL,m=s.RI,y=s.SA,x=s.XX,Y=n(98282),v=Y.DI_BRK,S=Y.IN_BRK,z=Y.CI_BRK,F=Y.CP_BRK,gA=Y.pairTable,fA=new B(a.toByteArray("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")),iA=function(HA){switch(HA){case Q:case y:case u:case x:return I;case R:return h;default:return HA}},wA=function(HA){switch(HA){case f:case w:return o;case d:return r;default:return HA}},IA=function(HA,J){void 0===J&&(J=!1),this.position=HA,this.required=J};b.exports=function(){function YA(J){this.string=J,this.pos=0,this.lastPos=0,this.curClass=null,this.nextClass=null,this.LB8a=!1,this.LB21a=!1,this.LB30a=0}var HA=YA.prototype;return HA.nextCodePoint=function(){var BA=this.string.charCodeAt(this.pos++),aA=this.string.charCodeAt(this.pos);return 55296<=BA&&BA<=56319&&56320<=aA&&aA<=57343?(this.pos++,1024*(BA-55296)+(aA-56320)+65536):BA},HA.nextCharClass=function(){return iA(fA.get(this.nextCodePoint()))},HA.getSimpleBreak=function(){switch(this.nextClass){case d:return!1;case o:case f:case w:return this.curClass=o,!1;case g:return this.curClass=g,!1}return null},HA.getPairTableBreak=function(BA){var aA=!1;switch(gA[this.curClass][this.nextClass]){case v:aA=!0;break;case S:aA=BA===d;break;case z:if(!(aA=BA===d))return!1;break;case F:if(BA!==d)return aA}return this.LB8a&&(aA=!1),!this.LB21a||this.curClass!==e&&this.curClass!==C?this.LB21a=this.curClass===p:(aA=!1,this.LB21a=!1),this.curClass===m?(this.LB30a++,2==this.LB30a&&this.nextClass===m&&(aA=!0,this.LB30a=0)):this.LB30a=0,this.curClass=this.nextClass,aA},HA.nextBreak=function(){if(null==this.curClass){var BA=this.nextCharClass();this.curClass=wA(BA),this.nextClass=BA,this.LB8a=BA===E,this.LB30a=0}for(;this.pos"u"?n.g:globalThis;b.exports=function(){for(var o=[],g=0;gS),g(b.exports,"getCombiningClass",()=>z),g(b.exports,"getScript",()=>F),g(b.exports,"getEastAsianWidth",()=>$),g(b.exports,"getNumericValue",()=>gA),g(b.exports,"isAlphabetic",()=>_),g(b.exports,"isDigit",()=>fA),g(b.exports,"isPunctuation",()=>iA),g(b.exports,"isLowerCase",()=>wA),g(b.exports,"isUpperCase",()=>IA),g(b.exports,"isTitleCase",()=>FA),g(b.exports,"isWhiteSpace",()=>YA),g(b.exports,"isBaseForm",()=>HA),g(b.exports,"isMark",()=>J),g(b.exports,"default",()=>BA);var f={};f=JSON.parse('{"categories":["Cc","Zs","Po","Sc","Ps","Pe","Sm","Pd","Nd","Lu","Sk","Pc","Ll","So","Lo","Pi","Cf","No","Pf","Lt","Lm","Mn","Me","Mc","Nl","Zl","Zp","Cs","Co"],"combiningClasses":["Not_Reordered","Above","Above_Right","Below","Attached_Above_Right","Attached_Below","Overlay","Iota_Subscript","Double_Below","Double_Above","Below_Right","Above_Left","CCC10","CCC11","CCC12","CCC13","CCC14","CCC15","CCC16","CCC17","CCC18","CCC19","CCC20","CCC21","CCC22","CCC23","CCC24","CCC25","CCC30","CCC31","CCC32","CCC27","CCC28","CCC29","CCC33","CCC34","CCC35","CCC36","Nukta","Virama","CCC84","CCC91","CCC103","CCC107","CCC118","CCC122","CCC129","CCC130","CCC132","Attached_Above","Below_Left","Left","Kana_Voicing","CCC26","Right"],"scripts":["Common","Latin","Bopomofo","Inherited","Greek","Coptic","Cyrillic","Armenian","Hebrew","Arabic","Syriac","Thaana","Nko","Samaritan","Mandaic","Devanagari","Bengali","Gurmukhi","Gujarati","Oriya","Tamil","Telugu","Kannada","Malayalam","Sinhala","Thai","Lao","Tibetan","Myanmar","Georgian","Hangul","Ethiopic","Cherokee","Canadian_Aboriginal","Ogham","Runic","Tagalog","Hanunoo","Buhid","Tagbanwa","Khmer","Mongolian","Limbu","Tai_Le","New_Tai_Lue","Buginese","Tai_Tham","Balinese","Sundanese","Batak","Lepcha","Ol_Chiki","Braille","Glagolitic","Tifinagh","Han","Hiragana","Katakana","Yi","Lisu","Vai","Bamum","Syloti_Nagri","Phags_Pa","Saurashtra","Kayah_Li","Rejang","Javanese","Cham","Tai_Viet","Meetei_Mayek","null","Linear_B","Lycian","Carian","Old_Italic","Gothic","Old_Permic","Ugaritic","Old_Persian","Deseret","Shavian","Osmanya","Osage","Elbasan","Caucasian_Albanian","Linear_A","Cypriot","Imperial_Aramaic","Palmyrene","Nabataean","Hatran","Phoenician","Lydian","Meroitic_Hieroglyphs","Meroitic_Cursive","Kharoshthi","Old_South_Arabian","Old_North_Arabian","Manichaean","Avestan","Inscriptional_Parthian","Inscriptional_Pahlavi","Psalter_Pahlavi","Old_Turkic","Old_Hungarian","Hanifi_Rohingya","Old_Sogdian","Sogdian","Elymaic","Brahmi","Kaithi","Sora_Sompeng","Chakma","Mahajani","Sharada","Khojki","Multani","Khudawadi","Grantha","Newa","Tirhuta","Siddham","Modi","Takri","Ahom","Dogra","Warang_Citi","Nandinagari","Zanabazar_Square","Soyombo","Pau_Cin_Hau","Bhaiksuki","Marchen","Masaram_Gondi","Gunjala_Gondi","Makasar","Cuneiform","Egyptian_Hieroglyphs","Anatolian_Hieroglyphs","Mro","Bassa_Vah","Pahawh_Hmong","Medefaidrin","Miao","Tangut","Nushu","Duployan","SignWriting","Nyiakeng_Puachue_Hmong","Wancho","Mende_Kikakui","Adlam"],"eaw":["N","Na","A","W","H","F"]}');const w=new(s(a))(s(B).toByteArray("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")),u=Math.log2||(aA=>Math.log(aA)/Math.LN2),r=aA=>u(aA)+1|0,d=r(s(f).categories.length-1),E=r(s(f).combiningClasses.length-1),C=r(s(f).scripts.length-1),e=r(s(f).eaw.length-1),Q=E+C+e+10,I=C+e+10,R=e+10,p=10,m=(1<>Q&m]}function z(aA){const eA=w.get(aA);return s(f).combiningClasses[eA>>I&y]}function F(aA){const eA=w.get(aA);return s(f).scripts[eA>>R&x]}function $(aA){const eA=w.get(aA);return s(f).eaw[eA>>p&Y]}function gA(aA){let eA=w.get(aA),EA=eA&v;if(0===EA)return null;if(EA<=50)return EA-1;if(EA<480)return((EA>>4)-12)/(1+(15&EA));if(EA<768){eA=(EA>>5)-14;let xA=2+(31&EA);for(;xA>0;)eA*=10,xA--;return eA}{eA=(EA>>2)-191;let xA=1+(3&EA);for(;xA>0;)eA*=60,xA--;return eA}}function _(aA){const eA=S(aA);return"Lu"===eA||"Ll"===eA||"Lt"===eA||"Lm"===eA||"Lo"===eA||"Nl"===eA}function fA(aA){return"Nd"===S(aA)}function iA(aA){const eA=S(aA);return"Pc"===eA||"Pd"===eA||"Pe"===eA||"Pf"===eA||"Pi"===eA||"Po"===eA||"Ps"===eA}function wA(aA){return"Ll"===S(aA)}function IA(aA){return"Lu"===S(aA)}function FA(aA){return"Lt"===S(aA)}function YA(aA){const eA=S(aA);return"Zs"===eA||"Zl"===eA||"Zp"===eA}function HA(aA){const eA=S(aA);return"Nd"===eA||"No"===eA||"Nl"===eA||"Lu"===eA||"Ll"===eA||"Lt"===eA||"Lm"===eA||"Lo"===eA||"Me"===eA||"Mc"===eA}function J(aA){const eA=S(aA);return"Mn"===eA||"Me"===eA||"Mc"===eA}var BA={getCategory:S,getCombiningClass:z,getScript:F,getEastAsianWidth:$,getNumericValue:gA,isAlphabetic:_,isDigit:fA,isPunctuation:iA,isLowerCase:wA,isUpperCase:IA,isTitleCase:FA,isWhiteSpace:YA,isBaseForm:HA,isMark:J}},43267:function(b){"use strict";b.exports=JSON.parse('[["8740","\u43f0\u4c32\u4603\u45a6\u4578\u{27267}\u4d77\u45b3\u{27cb1}\u4ce2\u{27cc5}\u3b95\u4736\u4744\u4c47\u4c40\u{242bf}\u{23617}\u{27352}\u{26e8b}\u{270d2}\u4c57\u{2a351}\u474f\u45da\u4c85\u{27c6c}\u4d07\u4aa4\u46a1\u{26b23}\u7225\u{25a54}\u{21a63}\u{23e06}\u{23f61}\u664d\u56fb"],["8767","\u7d95\u591d\u{28bb9}\u3df4\u9734\u{27bef}\u5bdb\u{21d5e}\u5aa4\u3625\u{29eb0}\u5ad1\u5bb7\u5cfc\u676e\u8593\u{29945}\u7461\u749d\u3875\u{21d53}\u{2369e}\u{26021}\u3eec"],["87a1","\u{258de}\u3af5\u7afc\u9f97\u{24161}\u{2890d}\u{231ea}\u{20a8a}\u{2325e}\u430a\u8484\u9f96\u942f\u4930\u8613\u5896\u974a\u9218\u79d0\u7a32\u6660\u6a29\u889d\u744c\u7bc5\u6782\u7a2c\u524f\u9046\u34e6\u73c4\u{25db9}\u74c6\u9fc7\u57b3\u492f\u544c\u4131\u{2368e}\u5818\u7a72\u{27b65}\u8b8f\u46ae\u{26e88}\u4181\u{25d99}\u7bae\u{224bc}\u9fc8\u{224c1}\u{224c9}\u{224cc}\u9fc9\u8504\u{235bb}\u40b4\u9fca\u44e1\u{2adff}\u62c1\u706e\u9fcb"],["8840","\u31c0",4,"\u{2010c}\u31c5\u{200d1}\u{200cd}\u31c6\u31c7\u{200cb}\u{21fe8}\u31c8\u{200ca}\u31c9\u31ca\u31cb\u31cc\u{2010e}\u31cd\u31ce\u0100\xc1\u01cd\xc0\u0112\xc9\u011a\xc8\u014c\xd3\u01d1\xd2\u0fff\xca\u0304\u1ebe\u0fff\xca\u030c\u1ec0\xca\u0101\xe1\u01ce\xe0\u0251\u0113\xe9\u011b\xe8\u012b\xed\u01d0\xec\u014d\xf3\u01d2\xf2\u016b\xfa\u01d4\xf9\u01d6\u01d8\u01da"],["88a1","\u01dc\xfc\u0fff\xea\u0304\u1ebf\u0fff\xea\u030c\u1ec1\xea\u0261\u23da\u23db"],["8940","\u{2a3a9}\u{21145}"],["8943","\u650a"],["8946","\u4e3d\u6edd\u9d4e\u91df"],["894c","\u{27735}\u6491\u4f1a\u4f28\u4fa8\u5156\u5174\u519c\u51e4\u52a1\u52a8\u533b\u534e\u53d1\u53d8\u56e2\u58f0\u5904\u5907\u5932\u5934\u5b66\u5b9e\u5b9f\u5c9a\u5e86\u603b\u6589\u67fe\u6804\u6865\u6d4e\u70bc\u7535\u7ea4\u7eac\u7eba\u7ec7\u7ecf\u7edf\u7f06\u7f37\u827a\u82cf\u836f\u89c6\u8bbe\u8be2\u8f66\u8f67\u8f6e"],["89a1","\u7411\u7cfc\u7dcd\u6946\u7ac9\u5227"],["89ab","\u918c\u78b8\u915e\u80bc"],["89b0","\u8d0b\u80f6\u{209e7}"],["89b5","\u809f\u9ec7\u4ccd\u9dc9\u9e0c\u4c3e\u{29df6}\u{2700e}\u9e0a\u{2a133}\u35c1"],["89c1","\u6e9a\u823e\u7519"],["89c5","\u4911\u9a6c\u9a8f\u9f99\u7987\u{2846c}\u{21dca}\u{205d0}\u{22ae6}\u4e24\u4e81\u4e80\u4e87\u4ebf\u4eeb\u4f37\u344c\u4fbd\u3e48\u5003\u5088\u347d\u3493\u34a5\u5186\u5905\u51db\u51fc\u5205\u4e89\u5279\u5290\u5327\u35c7\u53a9\u3551\u53b0\u3553\u53c2\u5423\u356d\u3572\u3681\u5493\u54a3\u54b4\u54b9\u54d0\u54ef\u5518\u5523\u5528\u3598\u553f\u35a5\u35bf\u55d7\u35c5"],["8a40","\u{27d84}\u5525"],["8a43","\u{20c42}\u{20d15}\u{2512b}\u5590\u{22cc6}\u39ec\u{20341}\u8e46\u{24db8}\u{294e5}\u4053\u{280be}\u777a\u{22c38}\u3a34\u47d5\u{2815d}\u{269f2}\u{24dea}\u64dd\u{20d7c}\u{20fb4}\u{20cd5}\u{210f4}\u648d\u8e7e\u{20e96}\u{20c0b}\u{20f64}\u{22ca9}\u{28256}\u{244d3}"],["8a64","\u{20d46}\u{29a4d}\u{280e9}\u47f4\u{24ea7}\u{22cc2}\u9ab2\u3a67\u{295f4}\u3fed\u3506\u{252c7}\u{297d4}\u{278c8}\u{22d44}\u9d6e\u9815"],["8a76","\u43d9\u{260a5}\u64b4\u54e3\u{22d4c}\u{22bca}\u{21077}\u39fb\u{2106f}"],["8aa1","\u{266da}\u{26716}\u{279a0}\u64ea\u{25052}\u{20c43}\u8e68\u{221a1}\u{28b4c}\u{20731}"],["8aac","\u480b\u{201a9}\u3ffa\u5873\u{22d8d}"],["8ab2","\u{245c8}\u{204fc}\u{26097}\u{20f4c}\u{20d96}\u5579\u40bb\u43ba"],["8abb","\u4ab4\u{22a66}\u{2109d}\u81aa\u98f5\u{20d9c}\u6379\u39fe\u{22775}\u8dc0\u56a1\u647c\u3e43"],["8ac9","\u{2a601}\u{20e09}\u{22acf}\u{22cc9}"],["8ace","\u{210c8}\u{239c2}\u3992\u3a06\u{2829b}\u3578\u{25e49}\u{220c7}\u5652\u{20f31}\u{22cb2}\u{29720}\u34bc\u6c3d\u{24e3b}"],["8adf","\u{27574}\u{22e8b}\u{22208}\u{2a65b}\u{28ccd}\u{20e7a}\u{20c34}\u{2681c}\u7f93\u{210cf}\u{22803}\u{22939}\u35fb\u{251e3}\u{20e8c}\u{20f8d}\u{20eaa}\u3f93\u{20f30}\u{20d47}\u{2114f}\u{20e4c}"],["8af6","\u{20eab}\u{20ba9}\u{20d48}\u{210c0}\u{2113d}\u3ff9\u{22696}\u6432\u{20fad}"],["8b40","\u{233f4}\u{27639}\u{22bce}\u{20d7e}\u{20d7f}\u{22c51}\u{22c55}\u3a18\u{20e98}\u{210c7}\u{20f2e}\u{2a632}\u{26b50}\u{28cd2}\u{28d99}\u{28cca}\u95aa\u54cc\u82c4\u55b9"],["8b55","\u{29ec3}\u9c26\u9ab6\u{2775e}\u{22dee}\u7140\u816d\u80ec\u5c1c\u{26572}\u8134\u3797\u535f\u{280bd}\u91b6\u{20efa}\u{20e0f}\u{20e77}\u{20efb}\u35dd\u{24deb}\u3609\u{20cd6}\u56af\u{227b5}\u{210c9}\u{20e10}\u{20e78}\u{21078}\u{21148}\u{28207}\u{21455}\u{20e79}\u{24e50}\u{22da4}\u5a54\u{2101d}\u{2101e}\u{210f5}\u{210f6}\u579c\u{20e11}"],["8ba1","\u{27694}\u{282cd}\u{20fb5}\u{20e7b}\u{2517e}\u3703\u{20fb6}\u{21180}\u{252d8}\u{2a2bd}\u{249da}\u{2183a}\u{24177}\u{2827c}\u5899\u5268\u361a\u{2573d}\u7bb2\u5b68\u4800\u4b2c\u9f27\u49e7\u9c1f\u9b8d\u{25b74}\u{2313d}\u55fb\u35f2\u5689\u4e28\u5902\u{21bc1}\u{2f878}\u9751\u{20086}\u4e5b\u4ebb\u353e\u5c23\u5f51\u5fc4\u38fa\u624c\u6535\u6b7a\u6c35\u6c3a\u706c\u722b\u4e2c\u72ad\u{248e9}\u7f52\u793b\u7cf9\u7f53\u{2626a}\u34c1"],["8bde","\u{2634b}\u8002\u8080\u{26612}\u{26951}\u535d\u8864\u89c1\u{278b2}\u8ba0\u8d1d\u9485\u9578\u957f\u95e8\u{28e0f}\u97e6\u9875\u98ce\u98de\u9963\u{29810}\u9c7c\u9e1f\u9ec4\u6b6f\uf907\u4e37\u{20087}\u961d\u6237\u94a2"],["8c40","\u503b\u6dfe\u{29c73}\u9fa6\u3dc9\u888f\u{2414e}\u7077\u5cf5\u4b20\u{251cd}\u3559\u{25d30}\u6122\u{28a32}\u8fa7\u91f6\u7191\u6719\u73ba\u{23281}\u{2a107}\u3c8b\u{21980}\u4b10\u78e4\u7402\u51ae\u{2870f}\u4009\u6a63\u{2a2ba}\u4223\u860f\u{20a6f}\u7a2a\u{29947}\u{28aea}\u9755\u704d\u5324\u{2207e}\u93f4\u76d9\u{289e3}\u9fa7\u77dd\u4ea3\u4ff0\u50bc\u4e2f\u4f17\u9fa8\u5434\u7d8b\u5892\u58d0\u{21db6}\u5e92\u5e99\u5fc2\u{22712}\u658b"],["8ca1","\u{233f9}\u6919\u6a43\u{23c63}\u6cff"],["8ca7","\u7200\u{24505}\u738c\u3edb\u{24a13}\u5b15\u74b9\u8b83\u{25ca4}\u{25695}\u7a93\u7bec\u7cc3\u7e6c\u82f8\u8597\u9fa9\u8890\u9faa\u8eb9\u9fab\u8fcf\u855f\u99e0\u9221\u9fac\u{28db9}\u{2143f}\u4071\u42a2\u5a1a"],["8cc9","\u9868\u676b\u4276\u573d"],["8cce","\u85d6\u{2497b}\u82bf\u{2710d}\u4c81\u{26d74}\u5d7b\u{26b15}\u{26fbe}\u9fad\u9fae\u5b96\u9faf\u66e7\u7e5b\u6e57\u79ca\u3d88\u44c3\u{23256}\u{22796}\u439a\u4536"],["8ce6","\u5cd5\u{23b1a}\u8af9\u5c78\u3d12\u{23551}\u5d78\u9fb2\u7157\u4558\u{240ec}\u{21e23}\u4c77\u3978\u344a\u{201a4}\u{26c41}\u8acc\u4fb4\u{20239}\u59bf\u816c\u9856\u{298fa}\u5f3b"],["8d40","\u{20b9f}"],["8d42","\u{221c1}\u{2896d}\u4102\u46bb\u{29079}\u3f07\u9fb3\u{2a1b5}\u40f8\u37d6\u46f7\u{26c46}\u417c\u{286b2}\u{273ff}\u456d\u38d4\u{2549a}\u4561\u451b\u4d89\u4c7b\u4d76\u45ea\u3fc8\u{24b0f}\u3661\u44de\u44bd\u41ed\u5d3e\u5d48\u5d56\u3dfc\u380f\u5da4\u5db9\u3820\u3838\u5e42\u5ebd\u5f25\u5f83\u3908\u3914\u393f\u394d\u60d7\u613d\u5ce5\u3989\u61b7\u61b9\u61cf\u39b8\u622c\u6290\u62e5\u6318\u39f8\u56b1"],["8da1","\u3a03\u63e2\u63fb\u6407\u645a\u3a4b\u64c0\u5d15\u5621\u9f9f\u3a97\u6586\u3abd\u65ff\u6653\u3af2\u6692\u3b22\u6716\u3b42\u67a4\u6800\u3b58\u684a\u6884\u3b72\u3b71\u3b7b\u6909\u6943\u725c\u6964\u699f\u6985\u3bbc\u69d6\u3bdd\u6a65\u6a74\u6a71\u6a82\u3bec\u6a99\u3bf2\u6aab\u6ab5\u6ad4\u6af6\u6b81\u6bc1\u6bea\u6c75\u6caa\u3ccb\u6d02\u6d06\u6d26\u6d81\u3cef\u6da4\u6db1\u6e15\u6e18\u6e29\u6e86\u{289c0}\u6ebb\u6ee2\u6eda\u9f7f\u6ee8\u6ee9\u6f24\u6f34\u3d46\u{23f41}\u6f81\u6fbe\u3d6a\u3d75\u71b7\u5c99\u3d8a\u702c\u3d91\u7050\u7054\u706f\u707f\u7089\u{20325}\u43c1\u35f1\u{20ed8}"],["8e40","\u{23ed7}\u57be\u{26ed3}\u713e\u{257e0}\u364e\u69a2\u{28be9}\u5b74\u7a49\u{258e1}\u{294d9}\u7a65\u7a7d\u{259ac}\u7abb\u7ab0\u7ac2\u7ac3\u71d1\u{2648d}\u41ca\u7ada\u7add\u7aea\u41ef\u54b2\u{25c01}\u7b0b\u7b55\u7b29\u{2530e}\u{25cfe}\u7ba2\u7b6f\u839c\u{25bb4}\u{26c7f}\u7bd0\u8421\u7b92\u7bb8\u{25d20}\u3dad\u{25c65}\u8492\u7bfa\u7c06\u7c35\u{25cc1}\u7c44\u7c83\u{24882}\u7ca6\u667d\u{24578}\u7cc9\u7cc7\u7ce6\u7c74\u7cf3\u7cf5\u7cce"],["8ea1","\u7e67\u451d\u{26e44}\u7d5d\u{26ed6}\u748d\u7d89\u7dab\u7135\u7db3\u7dd2\u{24057}\u{26029}\u7de4\u3d13\u7df5\u{217f9}\u7de5\u{2836d}\u7e1d\u{26121}\u{2615a}\u7e6e\u7e92\u432b\u946c\u7e27\u7f40\u7f41\u7f47\u7936\u{262d0}\u99e1\u7f97\u{26351}\u7fa3\u{21661}\u{20068}\u455c\u{23766}\u4503\u{2833a}\u7ffa\u{26489}\u8005\u8008\u801d\u8028\u802f\u{2a087}\u{26cc3}\u803b\u803c\u8061\u{22714}\u4989\u{26626}\u{23de3}\u{266e8}\u6725\u80a7\u{28a48}\u8107\u811a\u58b0\u{226f6}\u6c7f\u{26498}\u{24fb8}\u64e7\u{2148a}\u8218\u{2185e}\u6a53\u{24a65}\u{24a95}\u447a\u8229\u{20b0d}\u{26a52}\u{23d7e}\u4ff9\u{214fd}\u84e2\u8362\u{26b0a}\u{249a7}\u{23530}\u{21773}\u{23df8}\u82aa\u691b\u{2f994}\u41db"],["8f40","\u854b\u82d0\u831a\u{20e16}\u{217b4}\u36c1\u{2317d}\u{2355a}\u827b\u82e2\u8318\u{23e8b}\u{26da3}\u{26b05}\u{26b97}\u{235ce}\u3dbf\u831d\u55ec\u8385\u450b\u{26da5}\u83ac\u83c1\u83d3\u347e\u{26ed4}\u6a57\u855a\u3496\u{26e42}\u{22eef}\u8458\u{25be4}\u8471\u3dd3\u44e4\u6aa7\u844a\u{23cb5}\u7958\u84a8\u{26b96}\u{26e77}\u{26e43}\u84de\u840f\u8391\u44a0\u8493\u84e4\u{25c91}\u4240\u{25cc0}\u4543\u8534\u5af2\u{26e99}\u4527\u8573\u4516\u67bf\u8616"],["8fa1","\u{28625}\u{2863b}\u85c1\u{27088}\u8602\u{21582}\u{270cd}\u{2f9b2}\u456a\u8628\u3648\u{218a2}\u53f7\u{2739a}\u867e\u8771\u{2a0f8}\u87ee\u{22c27}\u87b1\u87da\u880f\u5661\u866c\u6856\u460f\u8845\u8846\u{275e0}\u{23db9}\u{275e4}\u885e\u889c\u465b\u88b4\u88b5\u63c1\u88c5\u7777\u{2770f}\u8987\u898a\u89a6\u89a9\u89a7\u89bc\u{28a25}\u89e7\u{27924}\u{27abd}\u8a9c\u7793\u91fe\u8a90\u{27a59}\u7ae9\u{27b3a}\u{23f8f}\u4713\u{27b38}\u717c\u8b0c\u8b1f\u{25430}\u{25565}\u8b3f\u8b4c\u8b4d\u8aa9\u{24a7a}\u8b90\u8b9b\u8aaf\u{216df}\u4615\u884f\u8c9b\u{27d54}\u{27d8f}\u{2f9d4}\u3725\u{27d53}\u8cd6\u{27d98}\u{27dbd}\u8d12\u8d03\u{21910}\u8cdb\u705c\u8d11\u{24cc9}\u3ed0\u8d77"],["9040","\u8da9\u{28002}\u{21014}\u{2498a}\u3b7c\u{281bc}\u{2710c}\u7ae7\u8ead\u8eb6\u8ec3\u92d4\u8f19\u8f2d\u{28365}\u{28412}\u8fa5\u9303\u{2a29f}\u{20a50}\u8fb3\u492a\u{289de}\u{2853d}\u{23dbb}\u5ef8\u{23262}\u8ff9\u{2a014}\u{286bc}\u{28501}\u{22325}\u3980\u{26ed7}\u9037\u{2853c}\u{27abe}\u9061\u{2856c}\u{2860b}\u90a8\u{28713}\u90c4\u{286e6}\u90ae\u90fd\u9167\u3af0\u91a9\u91c4\u7cac\u{28933}\u{21e89}\u920e\u6c9f\u9241\u9262\u{255b9}\u92b9\u{28ac6}\u{23c9b}\u{28b0c}\u{255db}"],["90a1","\u{20d31}\u932c\u936b\u{28ae1}\u{28beb}\u708f\u5ac3\u{28ae2}\u{28ae5}\u4965\u9244\u{28bec}\u{28c39}\u{28bff}\u9373\u945b\u8ebc\u9585\u95a6\u9426\u95a0\u6ff6\u42b9\u{2267a}\u{286d8}\u{2127c}\u{23e2e}\u49df\u6c1c\u967b\u9696\u416c\u96a3\u{26ed5}\u61da\u96b6\u78f5\u{28ae0}\u96bd\u53cc\u49a1\u{26cb8}\u{20274}\u{26410}\u{290af}\u{290e5}\u{24ad1}\u{21915}\u{2330a}\u9731\u8642\u9736\u4a0f\u453d\u4585\u{24ae9}\u7075\u5b41\u971b\u975c\u{291d5}\u9757\u5b4a\u{291eb}\u975f\u9425\u50d0\u{230b7}\u{230bc}\u9789\u979f\u97b1\u97be\u97c0\u97d2\u97e0\u{2546c}\u97ee\u741c\u{29433}\u97ff\u97f5\u{2941d}\u{2797a}\u4ad1\u9834\u9833\u984b\u9866\u3b0e\u{27175}\u3d51\u{20630}\u{2415c}"],["9140","\u{25706}\u98ca\u98b7\u98c8\u98c7\u4aff\u{26d27}\u{216d3}\u55b0\u98e1\u98e6\u98ec\u9378\u9939\u{24a29}\u4b72\u{29857}\u{29905}\u99f5\u9a0c\u9a3b\u9a10\u9a58\u{25725}\u36c4\u{290b1}\u{29bd5}\u9ae0\u9ae2\u{29b05}\u9af4\u4c0e\u9b14\u9b2d\u{28600}\u5034\u9b34\u{269a8}\u38c3\u{2307d}\u9b50\u9b40\u{29d3e}\u5a45\u{21863}\u9b8e\u{2424b}\u9c02\u9bff\u9c0c\u{29e68}\u9dd4\u{29fb7}\u{2a192}\u{2a1ab}\u{2a0e1}\u{2a123}\u{2a1df}\u9d7e\u9d83\u{2a134}\u9e0e\u6888"],["91a1","\u9dc4\u{2215b}\u{2a193}\u{2a220}\u{2193b}\u{2a233}\u9d39\u{2a0b9}\u{2a2b4}\u9e90\u9e95\u9e9e\u9ea2\u4d34\u9eaa\u9eaf\u{24364}\u9ec1\u3b60\u39e5\u3d1d\u4f32\u37be\u{28c2b}\u9f02\u9f08\u4b96\u9424\u{26da2}\u9f17\u9f16\u9f39\u569f\u568a\u9f45\u99b8\u{2908b}\u97f2\u847f\u9f62\u9f69\u7adc\u9f8e\u7216\u4bbe\u{24975}\u{249bb}\u7177\u{249f8}\u{24348}\u{24a51}\u739e\u{28bda}\u{218fa}\u799f\u{2897e}\u{28e36}\u9369\u93f3\u{28a44}\u92ec\u9381\u93cb\u{2896c}\u{244b9}\u7217\u3eeb\u7772\u7a43\u70d0\u{24473}\u{243f8}\u717e\u{217ef}\u70a3\u{218be}\u{23599}\u3ec7\u{21885}\u{2542f}\u{217f8}\u3722\u{216fb}\u{21839}\u36e1\u{21774}\u{218d1}\u{25f4b}\u3723\u{216c0}\u575b\u{24a25}\u{213fe}\u{212a8}"],["9240","\u{213c6}\u{214b6}\u8503\u{236a6}\u8503\u8455\u{24994}\u{27165}\u{23e31}\u{2555c}\u{23efb}\u{27052}\u44f4\u{236ee}\u{2999d}\u{26f26}\u67f9\u3733\u3c15\u3de7\u586c\u{21922}\u6810\u4057\u{2373f}\u{240e1}\u{2408b}\u{2410f}\u{26c21}\u54cb\u569e\u{266b1}\u5692\u{20fdf}\u{20ba8}\u{20e0d}\u93c6\u{28b13}\u939c\u4ef8\u512b\u3819\u{24436}\u4ebc\u{20465}\u{2037f}\u4f4b\u4f8a\u{25651}\u5a68\u{201ab}\u{203cb}\u3999\u{2030a}\u{20414}\u3435\u4f29\u{202c0}\u{28eb3}\u{20275}\u8ada\u{2020c}\u4e98"],["92a1","\u50cd\u510d\u4fa2\u4f03\u{24a0e}\u{23e8a}\u4f42\u502e\u506c\u5081\u4fcc\u4fe5\u5058\u50fc\u5159\u515b\u515d\u515e\u6e76\u{23595}\u{23e39}\u{23ebf}\u6d72\u{21884}\u{23e89}\u51a8\u51c3\u{205e0}\u44dd\u{204a3}\u{20492}\u{20491}\u8d7a\u{28a9c}\u{2070e}\u5259\u52a4\u{20873}\u52e1\u936e\u467a\u718c\u{2438c}\u{20c20}\u{249ac}\u{210e4}\u69d1\u{20e1d}\u7479\u3ede\u7499\u7414\u7456\u7398\u4b8e\u{24abc}\u{2408d}\u53d0\u3584\u720f\u{240c9}\u55b4\u{20345}\u54cd\u{20bc6}\u571d\u925d\u96f4\u9366\u57dd\u578d\u577f\u363e\u58cb\u5a99\u{28a46}\u{216fa}\u{2176f}\u{21710}\u5a2c\u59b8\u928f\u5a7e\u5acf\u5a12\u{25946}\u{219f3}\u{21861}\u{24295}\u36f5\u6d05\u7443\u5a21\u{25e83}"],["9340","\u5a81\u{28bd7}\u{20413}\u93e0\u748c\u{21303}\u7105\u4972\u9408\u{289fb}\u93bd\u37a0\u5c1e\u5c9e\u5e5e\u5e48\u{21996}\u{2197c}\u{23aee}\u5ecd\u5b4f\u{21903}\u{21904}\u3701\u{218a0}\u36dd\u{216fe}\u36d3\u812a\u{28a47}\u{21dba}\u{23472}\u{289a8}\u5f0c\u5f0e\u{21927}\u{217ab}\u5a6b\u{2173b}\u5b44\u8614\u{275fd}\u8860\u607e\u{22860}\u{2262b}\u5fdb\u3eb8\u{225af}\u{225be}\u{29088}\u{26f73}\u61c0\u{2003e}\u{20046}\u{2261b}\u6199\u6198\u6075\u{22c9b}\u{22d07}\u{246d4}\u{2914d}"],["93a1","\u6471\u{24665}\u{22b6a}\u3a29\u{22b22}\u{23450}\u{298ea}\u{22e78}\u6337\u{2a45b}\u64b6\u6331\u63d1\u{249e3}\u{22d67}\u62a4\u{22ca1}\u643b\u656b\u6972\u3bf4\u{2308e}\u{232ad}\u{24989}\u{232ab}\u550d\u{232e0}\u{218d9}\u{2943f}\u66ce\u{23289}\u{231b3}\u3ae0\u4190\u{25584}\u{28b22}\u{2558f}\u{216fc}\u{2555b}\u{25425}\u78ee\u{23103}\u{2182a}\u{23234}\u3464\u{2320f}\u{23182}\u{242c9}\u668e\u{26d24}\u666b\u4b93\u6630\u{27870}\u{21deb}\u6663\u{232d2}\u{232e1}\u661e\u{25872}\u38d1\u{2383a}\u{237bc}\u3b99\u{237a2}\u{233fe}\u74d0\u3b96\u678f\u{2462a}\u68b6\u681e\u3bc4\u6abe\u3863\u{237d5}\u{24487}\u6a33\u6a52\u6ac9\u6b05\u{21912}\u6511\u6898\u6a4c\u3bd7\u6a7a\u6b57\u{23fc0}\u{23c9a}\u93a0\u92f2\u{28bea}\u{28acb}"],["9440","\u9289\u{2801e}\u{289dc}\u9467\u6da5\u6f0b\u{249ec}\u6d67\u{23f7f}\u3d8f\u6e04\u{2403c}\u5a3d\u6e0a\u5847\u6d24\u7842\u713b\u{2431a}\u{24276}\u70f1\u7250\u7287\u7294\u{2478f}\u{24725}\u5179\u{24aa4}\u{205eb}\u747a\u{23ef8}\u{2365f}\u{24a4a}\u{24917}\u{25fe1}\u3f06\u3eb1\u{24adf}\u{28c23}\u{23f35}\u60a7\u3ef3\u74cc\u743c\u9387\u7437\u449f\u{26dea}\u4551\u7583\u3f63\u{24cd9}\u{24d06}\u3f58\u7555\u7673\u{2a5c6}\u3b19\u7468\u{28acc}\u{249ab}\u{2498e}\u3afb"],["94a1","\u3dcd\u{24a4e}\u3eff\u{249c5}\u{248f3}\u91fa\u5732\u9342\u{28ae3}\u{21864}\u50df\u{25221}\u{251e7}\u7778\u{23232}\u770e\u770f\u777b\u{24697}\u{23781}\u3a5e\u{248f0}\u7438\u749b\u3ebf\u{24aba}\u{24ac7}\u40c8\u{24a96}\u{261ae}\u9307\u{25581}\u781e\u788d\u7888\u78d2\u73d0\u7959\u{27741}\u{256e3}\u410e\u799b\u8496\u79a5\u6a2d\u{23efa}\u7a3a\u79f4\u416e\u{216e6}\u4132\u9235\u79f1\u{20d4c}\u{2498c}\u{20299}\u{23dba}\u{2176e}\u3597\u556b\u3570\u36aa\u{201d4}\u{20c0d}\u7ae2\u5a59\u{226f5}\u{25aaf}\u{25a9c}\u5a0d\u{2025b}\u78f0\u5a2a\u{25bc6}\u7afe\u41f9\u7c5d\u7c6d\u4211\u{25bb3}\u{25ebc}\u{25ea6}\u7ccd\u{249f9}\u{217b0}\u7c8e\u7c7c\u7cae\u6ab2\u7ddc\u7e07\u7dd3\u7f4e\u{26261}"],["9540","\u{2615c}\u{27b48}\u7d97\u{25e82}\u426a\u{26b75}\u{20916}\u67d6\u{2004e}\u{235cf}\u57c4\u{26412}\u{263f8}\u{24962}\u7fdd\u7b27\u{2082c}\u{25ae9}\u{25d43}\u7b0c\u{25e0e}\u99e6\u8645\u9a63\u6a1c\u{2343f}\u39e2\u{249f7}\u{265ad}\u9a1f\u{265a0}\u8480\u{27127}\u{26cd1}\u44ea\u8137\u4402\u80c6\u8109\u8142\u{267b4}\u98c3\u{26a42}\u8262\u8265\u{26a51}\u8453\u{26da7}\u8610\u{2721b}\u5a86\u417f\u{21840}\u5b2b\u{218a1}\u5ae4\u{218d8}\u86a0\u{2f9bc}\u{23d8f}\u882d\u{27422}\u5a02"],["95a1","\u886e\u4f45\u8887\u88bf\u88e6\u8965\u894d\u{25683}\u8954\u{27785}\u{27784}\u{28bf5}\u{28bd9}\u{28b9c}\u{289f9}\u3ead\u84a3\u46f5\u46cf\u37f2\u8a3d\u8a1c\u{29448}\u5f4d\u922b\u{24284}\u65d4\u7129\u70c4\u{21845}\u9d6d\u8c9f\u8ce9\u{27ddc}\u599a\u77c3\u59f0\u436e\u36d4\u8e2a\u8ea7\u{24c09}\u8f30\u8f4a\u42f4\u6c58\u6fbb\u{22321}\u489b\u6f79\u6e8b\u{217da}\u9be9\u36b5\u{2492f}\u90bb\u9097\u5571\u4906\u91bb\u9404\u{28a4b}\u4062\u{28afc}\u9427\u{28c1d}\u{28c3b}\u84e5\u8a2b\u9599\u95a7\u9597\u9596\u{28d34}\u7445\u3ec2\u{248ff}\u{24a42}\u{243ea}\u3ee7\u{23225}\u968f\u{28ee7}\u{28e66}\u{28e65}\u3ecc\u{249ed}\u{24a78}\u{23fee}\u7412\u746b\u3efc\u9741\u{290b0}"],["9640","\u6847\u4a1d\u{29093}\u{257df}\u975d\u9368\u{28989}\u{28c26}\u{28b2f}\u{263be}\u92ba\u5b11\u8b69\u493c\u73f9\u{2421b}\u979b\u9771\u9938\u{20f26}\u5dc1\u{28bc5}\u{24ab2}\u981f\u{294da}\u92f6\u{295d7}\u91e5\u44c0\u{28b50}\u{24a67}\u{28b64}\u98dc\u{28a45}\u3f00\u922a\u4925\u8414\u993b\u994d\u{27b06}\u3dfd\u999b\u4b6f\u99aa\u9a5c\u{28b65}\u{258c8}\u6a8f\u9a21\u5afe\u9a2f\u{298f1}\u4b90\u{29948}\u99bc\u4bbd\u4b97\u937d\u5872\u{21302}\u5822\u{249b8}"],["96a1","\u{214e8}\u7844\u{2271f}\u{23db8}\u68c5\u3d7d\u9458\u3927\u6150\u{22781}\u{2296b}\u6107\u9c4f\u9c53\u9c7b\u9c35\u9c10\u9b7f\u9bcf\u{29e2d}\u9b9f\u{2a1f5}\u{2a0fe}\u9d21\u4cae\u{24104}\u9e18\u4cb0\u9d0c\u{2a1b4}\u{2a0ed}\u{2a0f3}\u{2992f}\u9da5\u84bd\u{26e12}\u{26fdf}\u{26b82}\u85fc\u4533\u{26da4}\u{26e84}\u{26df0}\u8420\u85ee\u{26e00}\u{237d7}\u{26064}\u79e2\u{2359c}\u{23640}\u492d\u{249de}\u3d62\u93db\u92be\u9348\u{202bf}\u78b9\u9277\u944d\u4fe4\u3440\u9064\u{2555d}\u783d\u7854\u78b6\u784b\u{21757}\u{231c9}\u{24941}\u369a\u4f72\u6fda\u6fd9\u701e\u701e\u5414\u{241b5}\u57bb\u58f3\u578a\u9d16\u57d7\u7134\u34af\u{241ac}\u71eb\u{26c40}\u{24f97}\u5b28\u{217b5}\u{28a49}"],["9740","\u610c\u5ace\u5a0b\u42bc\u{24488}\u372c\u4b7b\u{289fc}\u93bb\u93b8\u{218d6}\u{20f1d}\u8472\u{26cc0}\u{21413}\u{242fa}\u{22c26}\u{243c1}\u5994\u{23db7}\u{26741}\u7da8\u{2615b}\u{260a4}\u{249b9}\u{2498b}\u{289fa}\u92e5\u73e2\u3ee9\u74b4\u{28b63}\u{2189f}\u3ee1\u{24ab3}\u6ad8\u73f3\u73fb\u3ed6\u{24a3e}\u{24a94}\u{217d9}\u{24a66}\u{203a7}\u{21424}\u{249e5}\u7448\u{24916}\u70a5\u{24976}\u9284\u73e6\u935f\u{204fe}\u9331\u{28ace}\u{28a16}\u9386\u{28be7}\u{255d5}\u4935\u{28a82}\u716b"],["97a1","\u{24943}\u{20cff}\u56a4\u{2061a}\u{20beb}\u{20cb8}\u5502\u79c4\u{217fa}\u7dfe\u{216c2}\u{24a50}\u{21852}\u452e\u9401\u370a\u{28ac0}\u{249ad}\u59b0\u{218bf}\u{21883}\u{27484}\u5aa1\u36e2\u{23d5b}\u36b0\u925f\u5a79\u{28a81}\u{21862}\u9374\u3ccd\u{20ab4}\u4a96\u398a\u50f4\u3d69\u3d4c\u{2139c}\u7175\u42fb\u{28218}\u6e0f\u{290e4}\u44eb\u6d57\u{27e4f}\u7067\u6caf\u3cd6\u{23fed}\u{23e2d}\u6e02\u6f0c\u3d6f\u{203f5}\u7551\u36bc\u34c8\u4680\u3eda\u4871\u59c4\u926e\u493e\u8f41\u{28c1c}\u{26bc0}\u5812\u57c8\u36d6\u{21452}\u70fe\u{24362}\u{24a71}\u{22fe3}\u{212b0}\u{223bd}\u68b9\u6967\u{21398}\u{234e5}\u{27bf4}\u{236df}\u{28a83}\u{237d6}\u{233fa}\u{24c9f}\u6a1a\u{236ad}\u{26cb7}\u843e\u44df\u44ce"],["9840","\u{26d26}\u{26d51}\u{26c82}\u{26fde}\u6f17\u{27109}\u833d\u{2173a}\u83ed\u{26c80}\u{27053}\u{217db}\u5989\u5a82\u{217b3}\u5a61\u5a71\u{21905}\u{241fc}\u372d\u59ef\u{2173c}\u36c7\u718e\u9390\u669a\u{242a5}\u5a6e\u5a2b\u{24293}\u6a2b\u{23ef9}\u{27736}\u{2445b}\u{242ca}\u711d\u{24259}\u{289e1}\u4fb0\u{26d28}\u5cc2\u{244ce}\u{27e4d}\u{243bd}\u6a0c\u{24256}\u{21304}\u70a6\u7133\u{243e9}\u3da5\u6cdf\u{2f825}\u{24a4f}\u7e65\u59eb\u5d2f\u3df3\u5f5c\u{24a5d}\u{217df}\u7da4\u8426"],["98a1","\u5485\u{23afa}\u{23300}\u{20214}\u577e\u{208d5}\u{20619}\u3fe5\u{21f9e}\u{2a2b6}\u7003\u{2915b}\u5d70\u738f\u7cd3\u{28a59}\u{29420}\u4fc8\u7fe7\u72cd\u7310\u{27af4}\u7338\u7339\u{256f6}\u7341\u7348\u3ea9\u{27b18}\u906c\u71f5\u{248f2}\u73e1\u81f6\u3eca\u770c\u3ed1\u6ca2\u56fd\u7419\u741e\u741f\u3ee2\u3ef0\u3ef4\u3efa\u74d3\u3f0e\u3f53\u7542\u756d\u7572\u758d\u3f7c\u75c8\u75dc\u3fc0\u764d\u3fd7\u7674\u3fdc\u767a\u{24f5c}\u7188\u5623\u8980\u5869\u401d\u7743\u4039\u6761\u4045\u35db\u7798\u406a\u406f\u5c5e\u77be\u77cb\u58f2\u7818\u70b9\u781c\u40a8\u7839\u7847\u7851\u7866\u8448\u{25535}\u7933\u6803\u7932\u4103"],["9940","\u4109\u7991\u7999\u8fbb\u7a06\u8fbc\u4167\u7a91\u41b2\u7abc\u8279\u41c4\u7acf\u7adb\u41cf\u4e21\u7b62\u7b6c\u7b7b\u7c12\u7c1b\u4260\u427a\u7c7b\u7c9c\u428c\u7cb8\u4294\u7ced\u8f93\u70c0\u{20ccf}\u7dcf\u7dd4\u7dd0\u7dfd\u7fae\u7fb4\u729f\u4397\u8020\u8025\u7b39\u802e\u8031\u8054\u3dcc\u57b4\u70a0\u80b7\u80e9\u43ed\u810c\u732a\u810e\u8112\u7560\u8114\u4401\u3b39\u8156\u8159\u815a"],["99a1","\u4413\u583a\u817c\u8184\u4425\u8193\u442d\u81a5\u57ef\u81c1\u81e4\u8254\u448f\u82a6\u8276\u82ca\u82d8\u82ff\u44b0\u8357\u9669\u698a\u8405\u70f5\u8464\u60e3\u8488\u4504\u84be\u84e1\u84f8\u8510\u8538\u8552\u453b\u856f\u8570\u85e0\u4577\u8672\u8692\u86b2\u86ef\u9645\u878b\u4606\u4617\u88ae\u88ff\u8924\u8947\u8991\u{27967}\u8a29\u8a38\u8a94\u8ab4\u8c51\u8cd4\u8cf2\u8d1c\u4798\u585f\u8dc3\u47ed\u4eee\u8e3a\u55d8\u5754\u8e71\u55f5\u8eb0\u4837\u8ece\u8ee2\u8ee4\u8eed\u8ef2\u8fb7\u8fc1\u8fca\u8fcc\u9033\u99c4\u48ad\u98e0\u9213\u491e\u9228\u9258\u926b\u92b1\u92ae\u92bf"],["9a40","\u92e3\u92eb\u92f3\u92f4\u92fd\u9343\u9384\u93ad\u4945\u4951\u9ebf\u9417\u5301\u941d\u942d\u943e\u496a\u9454\u9479\u952d\u95a2\u49a7\u95f4\u9633\u49e5\u67a0\u4a24\u9740\u4a35\u97b2\u97c2\u5654\u4ae4\u60e8\u98b9\u4b19\u98f1\u5844\u990e\u9919\u51b4\u991c\u9937\u9942\u995d\u9962\u4b70\u99c5\u4b9d\u9a3c\u9b0f\u7a83\u9b69\u9b81\u9bdd\u9bf1\u9bf4\u4c6d\u9c20\u376f\u{21bc2}\u9d49\u9c3a"],["9aa1","\u9efe\u5650\u9d93\u9dbd\u9dc0\u9dfc\u94f6\u8fb6\u9e7b\u9eac\u9eb1\u9ebd\u9ec6\u94dc\u9ee2\u9ef1\u9ef8\u7ac8\u9f44\u{20094}\u{202b7}\u{203a0}\u691a\u94c3\u59ac\u{204d7}\u5840\u94c1\u37b9\u{205d5}\u{20615}\u{20676}\u{216ba}\u5757\u7173\u{20ac2}\u{20acd}\u{20bbf}\u546a\u{2f83b}\u{20bcb}\u549e\u{20bfb}\u{20c3b}\u{20c53}\u{20c65}\u{20c7c}\u60e7\u{20c8d}\u567a\u{20cb5}\u{20cdd}\u{20ced}\u{20d6f}\u{20db2}\u{20dc8}\u6955\u9c2f\u87a5\u{20e04}\u{20e0e}\u{20ed7}\u{20f90}\u{20f2d}\u{20e73}\u5c20\u{20fbc}\u5e0b\u{2105c}\u{2104f}\u{21076}\u671e\u{2107b}\u{21088}\u{21096}\u3647\u{210bf}\u{210d3}\u{2112f}\u{2113b}\u5364\u84ad\u{212e3}\u{21375}\u{21336}\u8b81\u{21577}\u{21619}\u{217c3}\u{217c7}\u4e78\u70bb\u{2182d}\u{2196a}"],["9b40","\u{21a2d}\u{21a45}\u{21c2a}\u{21c70}\u{21cac}\u{21ec8}\u62c3\u{21ed5}\u{21f15}\u7198\u6855\u{22045}\u69e9\u36c8\u{2227c}\u{223d7}\u{223fa}\u{2272a}\u{22871}\u{2294f}\u82fd\u{22967}\u{22993}\u{22ad5}\u89a5\u{22ae8}\u8fa0\u{22b0e}\u97b8\u{22b3f}\u9847\u9abd\u{22c4c}"],["9b62","\u{22c88}\u{22cb7}\u{25be8}\u{22d08}\u{22d12}\u{22db7}\u{22d95}\u{22e42}\u{22f74}\u{22fcc}\u{23033}\u{23066}\u{2331f}\u{233de}\u5fb1\u6648\u66bf\u{27a79}\u{23567}\u{235f3}\u7201\u{249ba}\u77d7\u{2361a}\u{23716}\u7e87\u{20346}\u58b5\u670e"],["9ba1","\u6918\u{23aa7}\u{27657}\u{25fe2}\u{23e11}\u{23eb9}\u{275fe}\u{2209a}\u48d0\u4ab8\u{24119}\u{28a9a}\u{242ee}\u{2430d}\u{2403b}\u{24334}\u{24396}\u{24a45}\u{205ca}\u51d2\u{20611}\u599f\u{21ea8}\u3bbe\u{23cff}\u{24404}\u{244d6}\u5788\u{24674}\u399b\u{2472f}\u{285e8}\u{299c9}\u3762\u{221c3}\u8b5e\u{28b4e}\u99d6\u{24812}\u{248fb}\u{24a15}\u7209\u{24ac0}\u{20c78}\u5965\u{24ea5}\u{24f86}\u{20779}\u8eda\u{2502c}\u528f\u573f\u7171\u{25299}\u{25419}\u{23f4a}\u{24aa7}\u55bc\u{25446}\u{2546e}\u{26b52}\u91d4\u3473\u{2553f}\u{27632}\u{2555e}\u4718\u{25562}\u{25566}\u{257c7}\u{2493f}\u{2585d}\u5066\u34fb\u{233cc}\u60de\u{25903}\u477c\u{28948}\u{25aae}\u{25b89}\u{25c06}\u{21d90}\u57a1\u7151\u6fb6\u{26102}\u{27c12}\u9056\u{261b2}\u{24f9a}\u8b62\u{26402}\u{2644a}"],["9c40","\u5d5b\u{26bf7}\u8f36\u{26484}\u{2191c}\u8aea\u{249f6}\u{26488}\u{23fef}\u{26512}\u4bc0\u{265bf}\u{266b5}\u{2271b}\u9465\u{257e1}\u6195\u5a27\u{2f8cd}\u4fbb\u56b9\u{24521}\u{266fc}\u4e6a\u{24934}\u9656\u6d8f\u{26cbd}\u3618\u8977\u{26799}\u{2686e}\u{26411}\u{2685e}\u71df\u{268c7}\u7b42\u{290c0}\u{20a11}\u{26926}\u9104\u{26939}\u7a45\u9df0\u{269fa}\u9a26\u{26a2d}\u365f\u{26469}\u{20021}\u7983\u{26a34}\u{26b5b}\u5d2c\u{23519}\u83cf\u{26b9d}\u46d0\u{26ca4}\u753b\u8865\u{26dae}\u58b6"],["9ca1","\u371c\u{2258d}\u{2704b}\u{271cd}\u3c54\u{27280}\u{27285}\u9281\u{2217a}\u{2728b}\u9330\u{272e6}\u{249d0}\u6c39\u949f\u{27450}\u{20ef8}\u8827\u88f5\u{22926}\u{28473}\u{217b1}\u6eb8\u{24a2a}\u{21820}\u39a4\u36b9\u5c10\u79e3\u453f\u66b6\u{29cad}\u{298a4}\u8943\u{277cc}\u{27858}\u56d6\u40df\u{2160a}\u39a1\u{2372f}\u{280e8}\u{213c5}\u71ad\u8366\u{279dd}\u{291a8}\u5a67\u4cb7\u{270af}\u{289ab}\u{279fd}\u{27a0a}\u{27b0b}\u{27d66}\u{2417a}\u7b43\u797e\u{28009}\u6fb5\u{2a2df}\u6a03\u{28318}\u53a2\u{26e07}\u93bf\u6836\u975d\u{2816f}\u{28023}\u{269b5}\u{213ed}\u{2322f}\u{28048}\u5d85\u{28c30}\u{28083}\u5715\u9823\u{28949}\u5dab\u{24988}\u65be\u69d5\u53d2\u{24aa5}\u{23f81}\u3c11\u6736\u{28090}\u{280f4}\u{2812e}\u{21fa1}\u{2814f}"],["9d40","\u{28189}\u{281af}\u{2821a}\u{28306}\u{2832f}\u{2838a}\u35ca\u{28468}\u{286aa}\u48fa\u63e6\u{28956}\u7808\u9255\u{289b8}\u43f2\u{289e7}\u43df\u{289e8}\u{28b46}\u{28bd4}\u59f8\u{28c09}\u8f0b\u{28fc5}\u{290ec}\u7b51\u{29110}\u{2913c}\u3df7\u{2915e}\u{24aca}\u8fd0\u728f\u568b\u{294e7}\u{295e9}\u{295b0}\u{295b8}\u{29732}\u{298d1}\u{29949}\u{2996a}\u{299c3}\u{29a28}\u{29b0e}\u{29d5a}\u{29d9b}\u7e9f\u{29ef8}\u{29f23}\u4ca4\u9547\u{2a293}\u71a2\u{2a2ff}\u4d91\u9012\u{2a5cb}\u4d9c\u{20c9c}\u8fbe\u55c1"],["9da1","\u8fba\u{224b0}\u8fb9\u{24a93}\u4509\u7e7f\u6f56\u6ab1\u4eea\u34e4\u{28b2c}\u{2789d}\u373a\u8e80\u{217f5}\u{28024}\u{28b6c}\u{28b99}\u{27a3e}\u{266af}\u3deb\u{27655}\u{23cb7}\u{25635}\u{25956}\u4e9a\u{25e81}\u{26258}\u56bf\u{20e6d}\u8e0e\u5b6d\u{23e88}\u{24c9e}\u63de\u62d0\u{217f6}\u{2187b}\u6530\u562d\u{25c4a}\u541a\u{25311}\u3dc6\u{29d98}\u4c7d\u5622\u561e\u7f49\u{25ed8}\u5975\u{23d40}\u8770\u4e1c\u{20fea}\u{20d49}\u{236ba}\u8117\u9d5e\u8d18\u763b\u9c45\u764e\u77b9\u9345\u5432\u8148\u82f7\u5625\u8132\u8418\u80bd\u55ea\u7962\u5643\u5416\u{20e9d}\u35ce\u5605\u55f1\u66f1\u{282e2}\u362d\u7534\u55f0\u55ba\u5497\u5572\u{20c41}\u{20c96}\u5ed0\u{25148}\u{20e76}\u{22c62}"],["9e40","\u{20ea2}\u9eab\u7d5a\u55de\u{21075}\u629d\u976d\u5494\u8ccd\u71f6\u9176\u63fc\u63b9\u63fe\u5569\u{22b43}\u9c72\u{22eb3}\u519a\u34df\u{20da7}\u51a7\u544d\u551e\u5513\u7666\u8e2d\u{2688a}\u75b1\u80b6\u8804\u8786\u88c7\u81b6\u841c\u{210c1}\u44ec\u7304\u{24706}\u5b90\u830b\u{26893}\u567b\u{226f4}\u{27d2f}\u{241a3}\u{27d73}\u{26ed0}\u{272b6}\u9170\u{211d9}\u9208\u{23cfc}\u{2a6a9}\u{20eac}\u{20ef9}\u7266\u{21ca2}\u474e\u{24fc2}\u{27ff9}\u{20feb}\u40fa"],["9ea1","\u9c5d\u651f\u{22da0}\u48f3\u{247e0}\u{29d7c}\u{20fec}\u{20e0a}\u6062\u{275a3}\u{20fed}"],["9ead","\u{26048}\u{21187}\u71a3\u7e8e\u9d50\u4e1a\u4e04\u3577\u5b0d\u6cb2\u5367\u36ac\u39dc\u537d\u36a5\u{24618}\u589a\u{24b6e}\u822d\u544b\u57aa\u{25a95}\u{20979}"],["9ec5","\u3a52\u{22465}\u7374\u{29eac}\u4d09\u9bed\u{23cfe}\u{29f30}\u4c5b\u{24fa9}\u{2959e}\u{29fde}\u845c\u{23db6}\u{272b2}\u{267b3}\u{23720}\u632e\u7d25\u{23ef7}\u{23e2c}\u3a2a\u9008\u52cc\u3e74\u367a\u45e9\u{2048e}\u7640\u5af0\u{20eb6}\u787a\u{27f2e}\u58a7\u40bf\u567c\u9b8b\u5d74\u7654\u{2a434}\u9e85\u4ce1\u75f9\u37fb\u6119\u{230da}\u{243f2}"],["9ef5","\u565d\u{212a9}\u57a7\u{24963}\u{29e06}\u5234\u{270ae}\u35ad\u6c4a\u9d7c"],["9f40","\u7c56\u9b39\u57de\u{2176c}\u5c53\u64d3\u{294d0}\u{26335}\u{27164}\u86ad\u{20d28}\u{26d22}\u{24ae2}\u{20d71}"],["9f4f","\u51fe\u{21f0f}\u5d8e\u9703\u{21dd1}\u9e81\u904c\u7b1f\u9b02\u5cd1\u7ba3\u6268\u6335\u9aff\u7bcf\u9b2a\u7c7e\u9b2e\u7c42\u7c86\u9c15\u7bfc\u9b09\u9f17\u9c1b\u{2493e}\u9f5a\u5573\u5bc3\u4ffd\u9e98\u4ff2\u5260\u3e06\u52d1\u5767\u5056\u59b7\u5e12\u97c8\u9dab\u8f5c\u5469\u97b4\u9940\u97ba\u532c\u6130"],["9fa1","\u692c\u53da\u9c0a\u9d02\u4c3b\u9641\u6980\u50a6\u7546\u{2176d}\u99da\u5273"],["9fae","\u9159\u9681\u915c"],["9fb2","\u9151\u{28e97}\u637f\u{26d23}\u6aca\u5611\u918e\u757a\u6285\u{203fc}\u734f\u7c70\u{25c21}\u{23cfd}"],["9fc1","\u{24919}\u76d6\u9b9d\u4e2a\u{20cd4}\u83be\u8842"],["9fc9","\u5c4a\u69c0\u50ed\u577a\u521f\u5df5\u4ece\u6c31\u{201f2}\u4f39\u549c\u54da\u529a\u8d82\u35fe\u5f0c\u35f3"],["9fdb","\u6b52\u917c\u9fa5\u9b97\u982e\u98b4\u9aba\u9ea8\u9e84\u717a\u7b14"],["9fe7","\u6bfa\u8818\u7f78"],["9feb","\u5620\u{2a64a}\u8e77\u9f53"],["9ff0","\u8dd4\u8e4f\u9e1c\u8e01\u6282\u{2837d}\u8e28\u8e75\u7ad3\u{24a77}\u7a3e\u78d8\u6cea\u8a67\u7607"],["a040","\u{28a5a}\u9f26\u6cce\u87d6\u75c3\u{2a2b2}\u7853\u{2f840}\u8d0c\u72e2\u7371\u8b2d\u7302\u74f1\u8ceb\u{24abb}\u862f\u5fba\u88a0\u44b7"],["a055","\u{2183b}\u{26e05}"],["a058","\u8a7e\u{2251b}"],["a05b","\u60fd\u7667\u9ad7\u9d44\u936e\u9b8f\u87f5"],["a063","\u880f\u8cf7\u732c\u9721\u9bb0\u35d6\u72b2\u4c07\u7c51\u994a\u{26159}\u6159\u4c04\u9e96\u617d"],["a073","\u575f\u616f\u62a6\u6239\u62ce\u3a5c\u61e2\u53aa\u{233f5}\u6364\u6802\u35d2"],["a0a1","\u5d57\u{28bc2}\u8fda\u{28e39}"],["a0a6","\u50d9\u{21d46}\u7906\u5332\u9638\u{20f3b}\u4065"],["a0ae","\u77fe"],["a0b0","\u7cc2\u{25f1a}\u7cda\u7a2d\u8066\u8063\u7d4d\u7505\u74f2\u8994\u821a\u670c\u8062\u{27486}\u805b\u74f0\u8103\u7724\u8989\u{267cc}\u7553\u{26ed1}\u87a9\u87ce\u81c8\u878c\u8a49\u8cad\u8b43\u772b\u74f8\u84da\u3635\u69b2\u8da6"],["a0d4","\u89a9\u7468\u6db9\u87c1\u{24011}\u74e7\u3ddb\u7176\u60a4\u619c\u3cd1\u7162\u6077"],["a0e2","\u7f71\u{28b2d}\u7250\u60e9\u4b7e\u5220\u3c18\u{23cc7}\u{25ed7}\u{27656}\u{25531}\u{21944}\u{212fe}\u{29903}\u{26ddc}\u{270ad}\u5cc1\u{261ad}\u{28a0f}\u{23677}\u{200ee}\u{26846}\u{24f0e}\u4562\u5b1f\u{2634c}\u9f50\u9ea6\u{2626b}"],["a3c0","\u2400",31,"\u2421"],["c6a1","\u2460",9,"\u2474",9,"\u2170",9,"\u4e36\u4e3f\u4e85\u4ea0\u5182\u5196\u51ab\u52f9\u5338\u5369\u53b6\u590a\u5b80\u5ddb\u2f33\u5e7f\u5ef4\u5f50\u5f61\u6534\u65e0\u7592\u7676\u8fb5\u96b6\xa8\u02c6\u30fd\u30fe\u309d\u309e\u3003\u4edd\u3005\u3006\u3007\u30fc\uff3b\uff3d\u273d\u3041",23],["c740","\u3059",58,"\u30a1\u30a2\u30a3\u30a4"],["c7a1","\u30a5",81,"\u0410",5,"\u0401\u0416",4],["c840","\u041b",26,"\u0451\u0436",25,"\u21e7\u21b8\u21b9\u31cf\u{200cc}\u4e5a\u{2008a}\u5202\u4491"],["c8a1","\u9fb0\u5188\u9fb1\u{27607}"],["c8cd","\uffe2\uffe4\uff07\uff02\u3231\u2116\u2121\u309b\u309c\u2e80\u2e84\u2e86\u2e87\u2e88\u2e8a\u2e8c\u2e8d\u2e95\u2e9c\u2e9d\u2ea5\u2ea7\u2eaa\u2eac\u2eae\u2eb6\u2ebc\u2ebe\u2ec6\u2eca\u2ecc\u2ecd\u2ecf\u2ed6\u2ed7\u2ede\u2ee3"],["c8f5","\u0283\u0250\u025b\u0254\u0275\u0153\xf8\u014b\u028a\u026a"],["f9fe","\uffed"],["fa40","\u{20547}\u92db\u{205df}\u{23fc5}\u854c\u42b5\u73ef\u51b5\u3649\u{24942}\u{289e4}\u9344\u{219db}\u82ee\u{23cc8}\u783c\u6744\u62df\u{24933}\u{289aa}\u{202a0}\u{26bb3}\u{21305}\u4fab\u{224ed}\u5008\u{26d29}\u{27a84}\u{23600}\u{24ab1}\u{22513}\u5029\u{2037e}\u5fa4\u{20380}\u{20347}\u6edb\u{2041f}\u507d\u5101\u347a\u510e\u986c\u3743\u8416\u{249a4}\u{20487}\u5160\u{233b4}\u516a\u{20bff}\u{220fc}\u{202e5}\u{22530}\u{2058e}\u{23233}\u{21983}\u5b82\u877d\u{205b3}\u{23c99}\u51b2\u51b8"],["faa1","\u9d34\u51c9\u51cf\u51d1\u3cdc\u51d3\u{24aa6}\u51b3\u51e2\u5342\u51ed\u83cd\u693e\u{2372d}\u5f7b\u520b\u5226\u523c\u52b5\u5257\u5294\u52b9\u52c5\u7c15\u8542\u52e0\u860d\u{26b13}\u5305\u{28ade}\u5549\u6ed9\u{23f80}\u{20954}\u{23fec}\u5333\u5344\u{20be2}\u6ccb\u{21726}\u681b\u73d5\u604a\u3eaa\u38cc\u{216e8}\u71dd\u44a2\u536d\u5374\u{286ab}\u537e\u537f\u{21596}\u{21613}\u77e6\u5393\u{28a9b}\u53a0\u53ab\u53ae\u73a7\u{25772}\u3f59\u739c\u53c1\u53c5\u6c49\u4e49\u57fe\u53d9\u3aab\u{20b8f}\u53e0\u{23feb}\u{22da3}\u53f6\u{20c77}\u5413\u7079\u552b\u6657\u6d5b\u546d\u{26b53}\u{20d74}\u555d\u548f\u54a4\u47a6\u{2170d}\u{20edd}\u3db4\u{20d4d}"],["fb40","\u{289bc}\u{22698}\u5547\u4ced\u542f\u7417\u5586\u55a9\u5605\u{218d7}\u{2403a}\u4552\u{24435}\u66b3\u{210b4}\u5637\u66cd\u{2328a}\u66a4\u66ad\u564d\u564f\u78f1\u56f1\u9787\u53fe\u5700\u56ef\u56ed\u{28b66}\u3623\u{2124f}\u5746\u{241a5}\u6c6e\u708b\u5742\u36b1\u{26c7e}\u57e6\u{21416}\u5803\u{21454}\u{24363}\u5826\u{24bf5}\u585c\u58aa\u3561\u58e0\u58dc\u{2123c}\u58fb\u5bff\u5743\u{2a150}\u{24278}\u93d3\u35a1\u591f\u68a6\u36c3\u6e59"],["fba1","\u{2163e}\u5a24\u5553\u{21692}\u8505\u59c9\u{20d4e}\u{26c81}\u{26d2a}\u{217dc}\u59d9\u{217fb}\u{217b2}\u{26da6}\u6d71\u{21828}\u{216d5}\u59f9\u{26e45}\u5aab\u5a63\u36e6\u{249a9}\u5a77\u3708\u5a96\u7465\u5ad3\u{26fa1}\u{22554}\u3d85\u{21911}\u3732\u{216b8}\u5e83\u52d0\u5b76\u6588\u5b7c\u{27a0e}\u4004\u485d\u{20204}\u5bd5\u6160\u{21a34}\u{259cc}\u{205a5}\u5bf3\u5b9d\u4d10\u5c05\u{21b44}\u5c13\u73ce\u5c14\u{21ca5}\u{26b28}\u5c49\u48dd\u5c85\u5ce9\u5cef\u5d8b\u{21df9}\u{21e37}\u5d10\u5d18\u5d46\u{21ea4}\u5cba\u5dd7\u82fc\u382d\u{24901}\u{22049}\u{22173}\u8287\u3836\u3bc2\u5e2e\u6a8a\u5e75\u5e7a\u{244bc}\u{20cd3}\u53a6\u4eb7\u5ed0\u53a8\u{21771}\u5e09\u5ef4\u{28482}"],["fc40","\u5ef9\u5efb\u38a0\u5efc\u683e\u941b\u5f0d\u{201c1}\u{2f894}\u3ade\u48ae\u{2133a}\u5f3a\u{26888}\u{223d0}\u5f58\u{22471}\u5f63\u97bd\u{26e6e}\u5f72\u9340\u{28a36}\u5fa7\u5db6\u3d5f\u{25250}\u{21f6a}\u{270f8}\u{22668}\u91d6\u{2029e}\u{28a29}\u6031\u6685\u{21877}\u3963\u3dc7\u3639\u5790\u{227b4}\u7971\u3e40\u609e\u60a4\u60b3\u{24982}\u{2498f}\u{27a53}\u74a4\u50e1\u5aa0\u6164\u8424\u6142\u{2f8a6}\u{26ed2}\u6181\u51f4\u{20656}\u6187\u5baa\u{23fb7}"],["fca1","\u{2285f}\u61d3\u{28b9d}\u{2995d}\u61d0\u3932\u{22980}\u{228c1}\u6023\u615c\u651e\u638b\u{20118}\u62c5\u{21770}\u62d5\u{22e0d}\u636c\u{249df}\u3a17\u6438\u63f8\u{2138e}\u{217fc}\u6490\u6f8a\u{22e36}\u9814\u{2408c}\u{2571d}\u64e1\u64e5\u947b\u3a66\u643a\u3a57\u654d\u6f16\u{24a28}\u{24a23}\u6585\u656d\u655f\u{2307e}\u65b5\u{24940}\u4b37\u65d1\u40d8\u{21829}\u65e0\u65e3\u5fdf\u{23400}\u6618\u{231f7}\u{231f8}\u6644\u{231a4}\u{231a5}\u664b\u{20e75}\u6667\u{251e6}\u6673\u6674\u{21e3d}\u{23231}\u{285f4}\u{231c8}\u{25313}\u77c5\u{228f7}\u99a4\u6702\u{2439c}\u{24a21}\u3b2b\u69fa\u{237c2}\u675e\u6767\u6762\u{241cd}\u{290ed}\u67d7\u44e9\u6822\u6e50\u923c\u6801\u{233e6}\u{26da0}\u685d"],["fd40","\u{2346f}\u69e1\u6a0b\u{28adf}\u6973\u68c3\u{235cd}\u6901\u6900\u3d32\u3a01\u{2363c}\u3b80\u67ac\u6961\u{28a4a}\u42fc\u6936\u6998\u3ba1\u{203c9}\u8363\u5090\u69f9\u{23659}\u{2212a}\u6a45\u{23703}\u6a9d\u3bf3\u67b1\u6ac8\u{2919c}\u3c0d\u6b1d\u{20923}\u60de\u6b35\u6b74\u{227cd}\u6eb5\u{23adb}\u{203b5}\u{21958}\u3740\u5421\u{23b5a}\u6be1\u{23efc}\u6bdc\u6c37\u{2248b}\u{248f1}\u{26b51}\u6c5a\u8226\u6c79\u{23dbc}\u44c5\u{23dbd}\u{241a4}\u{2490c}\u{24900}"],["fda1","\u{23cc9}\u36e5\u3ceb\u{20d32}\u9b83\u{231f9}\u{22491}\u7f8f\u6837\u{26d25}\u{26da1}\u{26deb}\u6d96\u6d5c\u6e7c\u6f04\u{2497f}\u{24085}\u{26e72}\u8533\u{26f74}\u51c7\u6c9c\u6e1d\u842e\u{28b21}\u6e2f\u{23e2f}\u7453\u{23f82}\u79cc\u6e4f\u5a91\u{2304b}\u6ff8\u370d\u6f9d\u{23e30}\u6efa\u{21497}\u{2403d}\u4555\u93f0\u6f44\u6f5c\u3d4e\u6f74\u{29170}\u3d3b\u6f9f\u{24144}\u6fd3\u{24091}\u{24155}\u{24039}\u{23ff0}\u{23fb4}\u{2413f}\u51df\u{24156}\u{24157}\u{24140}\u{261dd}\u704b\u707e\u70a7\u7081\u70cc\u70d5\u70d6\u70df\u4104\u3de8\u71b4\u7196\u{24277}\u712b\u7145\u5a88\u714a\u716e\u5c9c\u{24365}\u714f\u9362\u{242c1}\u712c\u{2445a}\u{24a27}\u{24a22}\u71ba\u{28be8}\u70bd\u720e"],["fe40","\u9442\u7215\u5911\u9443\u7224\u9341\u{25605}\u722e\u7240\u{24974}\u68bd\u7255\u7257\u3e55\u{23044}\u680d\u6f3d\u7282\u732a\u732b\u{24823}\u{2882b}\u48ed\u{28804}\u7328\u732e\u73cf\u73aa\u{20c3a}\u{26a2e}\u73c9\u7449\u{241e2}\u{216e7}\u{24a24}\u6623\u36c5\u{249b7}\u{2498d}\u{249fb}\u73f7\u7415\u6903\u{24a26}\u7439\u{205c3}\u3ed7\u745c\u{228ad}\u7460\u{28eb2}\u7447\u73e4\u7476\u83b9\u746c\u3730\u7474\u93f1\u6a2c\u7482\u4953\u{24a8c}"],["fea1","\u{2415f}\u{24a79}\u{28b8f}\u5b46\u{28c03}\u{2189e}\u74c8\u{21988}\u750e\u74e9\u751e\u{28ed9}\u{21a4b}\u5bd7\u{28eac}\u9385\u754d\u754a\u7567\u756e\u{24f82}\u3f04\u{24d13}\u758e\u745d\u759e\u75b4\u7602\u762c\u7651\u764f\u766f\u7676\u{263f5}\u7690\u81ef\u37f8\u{26911}\u{2690e}\u76a1\u76a5\u76b7\u76cc\u{26f9f}\u8462\u{2509d}\u{2517d}\u{21e1c}\u771e\u7726\u7740\u64af\u{25220}\u7758\u{232ac}\u77af\u{28964}\u{28968}\u{216c1}\u77f4\u7809\u{21376}\u{24a12}\u68ca\u78af\u78c7\u78d3\u96a5\u792e\u{255e0}\u78d7\u7934\u78b1\u{2760c}\u8fb8\u8884\u{28b2b}\u{26083}\u{2261c}\u7986\u8900\u6902\u7980\u{25857}\u799d\u{27b39}\u793c\u79a9\u6e2a\u{27126}\u3ea8\u79c6\u{2910d}\u79d4"]]')},74488:function(b){"use strict";b.exports=JSON.parse('[["0","\\u0000",127,"\u20ac"],["8140","\u4e02\u4e04\u4e05\u4e06\u4e0f\u4e12\u4e17\u4e1f\u4e20\u4e21\u4e23\u4e26\u4e29\u4e2e\u4e2f\u4e31\u4e33\u4e35\u4e37\u4e3c\u4e40\u4e41\u4e42\u4e44\u4e46\u4e4a\u4e51\u4e55\u4e57\u4e5a\u4e5b\u4e62\u4e63\u4e64\u4e65\u4e67\u4e68\u4e6a",5,"\u4e72\u4e74",9,"\u4e7f",6,"\u4e87\u4e8a"],["8180","\u4e90\u4e96\u4e97\u4e99\u4e9c\u4e9d\u4e9e\u4ea3\u4eaa\u4eaf\u4eb0\u4eb1\u4eb4\u4eb6\u4eb7\u4eb8\u4eb9\u4ebc\u4ebd\u4ebe\u4ec8\u4ecc\u4ecf\u4ed0\u4ed2\u4eda\u4edb\u4edc\u4ee0\u4ee2\u4ee6\u4ee7\u4ee9\u4eed\u4eee\u4eef\u4ef1\u4ef4\u4ef8\u4ef9\u4efa\u4efc\u4efe\u4f00\u4f02",6,"\u4f0b\u4f0c\u4f12",4,"\u4f1c\u4f1d\u4f21\u4f23\u4f28\u4f29\u4f2c\u4f2d\u4f2e\u4f31\u4f33\u4f35\u4f37\u4f39\u4f3b\u4f3e",4,"\u4f44\u4f45\u4f47",5,"\u4f52\u4f54\u4f56\u4f61\u4f62\u4f66\u4f68\u4f6a\u4f6b\u4f6d\u4f6e\u4f71\u4f72\u4f75\u4f77\u4f78\u4f79\u4f7a\u4f7d\u4f80\u4f81\u4f82\u4f85\u4f86\u4f87\u4f8a\u4f8c\u4f8e\u4f90\u4f92\u4f93\u4f95\u4f96\u4f98\u4f99\u4f9a\u4f9c\u4f9e\u4f9f\u4fa1\u4fa2"],["8240","\u4fa4\u4fab\u4fad\u4fb0",4,"\u4fb6",8,"\u4fc0\u4fc1\u4fc2\u4fc6\u4fc7\u4fc8\u4fc9\u4fcb\u4fcc\u4fcd\u4fd2",4,"\u4fd9\u4fdb\u4fe0\u4fe2\u4fe4\u4fe5\u4fe7\u4feb\u4fec\u4ff0\u4ff2\u4ff4\u4ff5\u4ff6\u4ff7\u4ff9\u4ffb\u4ffc\u4ffd\u4fff",11],["8280","\u500b\u500e\u5010\u5011\u5013\u5015\u5016\u5017\u501b\u501d\u501e\u5020\u5022\u5023\u5024\u5027\u502b\u502f",10,"\u503b\u503d\u503f\u5040\u5041\u5042\u5044\u5045\u5046\u5049\u504a\u504b\u504d\u5050",4,"\u5056\u5057\u5058\u5059\u505b\u505d",7,"\u5066",5,"\u506d",8,"\u5078\u5079\u507a\u507c\u507d\u5081\u5082\u5083\u5084\u5086\u5087\u5089\u508a\u508b\u508c\u508e",20,"\u50a4\u50a6\u50aa\u50ab\u50ad",4,"\u50b3",6,"\u50bc"],["8340","\u50bd",17,"\u50d0",5,"\u50d7\u50d8\u50d9\u50db",10,"\u50e8\u50e9\u50ea\u50eb\u50ef\u50f0\u50f1\u50f2\u50f4\u50f6",4,"\u50fc",9,"\u5108"],["8380","\u5109\u510a\u510c",5,"\u5113",13,"\u5122",28,"\u5142\u5147\u514a\u514c\u514e\u514f\u5150\u5152\u5153\u5157\u5158\u5159\u515b\u515d",4,"\u5163\u5164\u5166\u5167\u5169\u516a\u516f\u5172\u517a\u517e\u517f\u5183\u5184\u5186\u5187\u518a\u518b\u518e\u518f\u5190\u5191\u5193\u5194\u5198\u519a\u519d\u519e\u519f\u51a1\u51a3\u51a6",4,"\u51ad\u51ae\u51b4\u51b8\u51b9\u51ba\u51be\u51bf\u51c1\u51c2\u51c3\u51c5\u51c8\u51ca\u51cd\u51ce\u51d0\u51d2",5],["8440","\u51d8\u51d9\u51da\u51dc\u51de\u51df\u51e2\u51e3\u51e5",5,"\u51ec\u51ee\u51f1\u51f2\u51f4\u51f7\u51fe\u5204\u5205\u5209\u520b\u520c\u520f\u5210\u5213\u5214\u5215\u521c\u521e\u521f\u5221\u5222\u5223\u5225\u5226\u5227\u522a\u522c\u522f\u5231\u5232\u5234\u5235\u523c\u523e\u5244",5,"\u524b\u524e\u524f\u5252\u5253\u5255\u5257\u5258"],["8480","\u5259\u525a\u525b\u525d\u525f\u5260\u5262\u5263\u5264\u5266\u5268\u526b\u526c\u526d\u526e\u5270\u5271\u5273",9,"\u527e\u5280\u5283",4,"\u5289",6,"\u5291\u5292\u5294",6,"\u529c\u52a4\u52a5\u52a6\u52a7\u52ae\u52af\u52b0\u52b4",9,"\u52c0\u52c1\u52c2\u52c4\u52c5\u52c6\u52c8\u52ca\u52cc\u52cd\u52ce\u52cf\u52d1\u52d3\u52d4\u52d5\u52d7\u52d9",5,"\u52e0\u52e1\u52e2\u52e3\u52e5",10,"\u52f1",7,"\u52fb\u52fc\u52fd\u5301\u5302\u5303\u5304\u5307\u5309\u530a\u530b\u530c\u530e"],["8540","\u5311\u5312\u5313\u5314\u5318\u531b\u531c\u531e\u531f\u5322\u5324\u5325\u5327\u5328\u5329\u532b\u532c\u532d\u532f",9,"\u533c\u533d\u5340\u5342\u5344\u5346\u534b\u534c\u534d\u5350\u5354\u5358\u5359\u535b\u535d\u5365\u5368\u536a\u536c\u536d\u5372\u5376\u5379\u537b\u537c\u537d\u537e\u5380\u5381\u5383\u5387\u5388\u538a\u538e\u538f"],["8580","\u5390",4,"\u5396\u5397\u5399\u539b\u539c\u539e\u53a0\u53a1\u53a4\u53a7\u53aa\u53ab\u53ac\u53ad\u53af",6,"\u53b7\u53b8\u53b9\u53ba\u53bc\u53bd\u53be\u53c0\u53c3",4,"\u53ce\u53cf\u53d0\u53d2\u53d3\u53d5\u53da\u53dc\u53dd\u53de\u53e1\u53e2\u53e7\u53f4\u53fa\u53fe\u53ff\u5400\u5402\u5405\u5407\u540b\u5414\u5418\u5419\u541a\u541c\u5422\u5424\u5425\u542a\u5430\u5433\u5436\u5437\u543a\u543d\u543f\u5441\u5442\u5444\u5445\u5447\u5449\u544c\u544d\u544e\u544f\u5451\u545a\u545d",4,"\u5463\u5465\u5467\u5469",7,"\u5474\u5479\u547a\u547e\u547f\u5481\u5483\u5485\u5487\u5488\u5489\u548a\u548d\u5491\u5493\u5497\u5498\u549c\u549e\u549f\u54a0\u54a1"],["8640","\u54a2\u54a5\u54ae\u54b0\u54b2\u54b5\u54b6\u54b7\u54b9\u54ba\u54bc\u54be\u54c3\u54c5\u54ca\u54cb\u54d6\u54d8\u54db\u54e0",4,"\u54eb\u54ec\u54ef\u54f0\u54f1\u54f4",5,"\u54fb\u54fe\u5500\u5502\u5503\u5504\u5505\u5508\u550a",4,"\u5512\u5513\u5515",5,"\u551c\u551d\u551e\u551f\u5521\u5525\u5526"],["8680","\u5528\u5529\u552b\u552d\u5532\u5534\u5535\u5536\u5538\u5539\u553a\u553b\u553d\u5540\u5542\u5545\u5547\u5548\u554b",4,"\u5551\u5552\u5553\u5554\u5557",4,"\u555d\u555e\u555f\u5560\u5562\u5563\u5568\u5569\u556b\u556f",5,"\u5579\u557a\u557d\u557f\u5585\u5586\u558c\u558d\u558e\u5590\u5592\u5593\u5595\u5596\u5597\u559a\u559b\u559e\u55a0",6,"\u55a8",8,"\u55b2\u55b4\u55b6\u55b8\u55ba\u55bc\u55bf",4,"\u55c6\u55c7\u55c8\u55ca\u55cb\u55ce\u55cf\u55d0\u55d5\u55d7",4,"\u55de\u55e0\u55e2\u55e7\u55e9\u55ed\u55ee\u55f0\u55f1\u55f4\u55f6\u55f8",4,"\u55ff\u5602\u5603\u5604\u5605"],["8740","\u5606\u5607\u560a\u560b\u560d\u5610",7,"\u5619\u561a\u561c\u561d\u5620\u5621\u5622\u5625\u5626\u5628\u5629\u562a\u562b\u562e\u562f\u5630\u5633\u5635\u5637\u5638\u563a\u563c\u563d\u563e\u5640",11,"\u564f",4,"\u5655\u5656\u565a\u565b\u565d",4],["8780","\u5663\u5665\u5666\u5667\u566d\u566e\u566f\u5670\u5672\u5673\u5674\u5675\u5677\u5678\u5679\u567a\u567d",7,"\u5687",6,"\u5690\u5691\u5692\u5694",14,"\u56a4",10,"\u56b0",6,"\u56b8\u56b9\u56ba\u56bb\u56bd",12,"\u56cb",8,"\u56d5\u56d6\u56d8\u56d9\u56dc\u56e3\u56e5",5,"\u56ec\u56ee\u56ef\u56f2\u56f3\u56f6\u56f7\u56f8\u56fb\u56fc\u5700\u5701\u5702\u5705\u5707\u570b",6],["8840","\u5712",9,"\u571d\u571e\u5720\u5721\u5722\u5724\u5725\u5726\u5727\u572b\u5731\u5732\u5734",4,"\u573c\u573d\u573f\u5741\u5743\u5744\u5745\u5746\u5748\u5749\u574b\u5752",4,"\u5758\u5759\u5762\u5763\u5765\u5767\u576c\u576e\u5770\u5771\u5772\u5774\u5775\u5778\u5779\u577a\u577d\u577e\u577f\u5780"],["8880","\u5781\u5787\u5788\u5789\u578a\u578d",4,"\u5794",6,"\u579c\u579d\u579e\u579f\u57a5\u57a8\u57aa\u57ac\u57af\u57b0\u57b1\u57b3\u57b5\u57b6\u57b7\u57b9",8,"\u57c4",6,"\u57cc\u57cd\u57d0\u57d1\u57d3\u57d6\u57d7\u57db\u57dc\u57de\u57e1\u57e2\u57e3\u57e5",7,"\u57ee\u57f0\u57f1\u57f2\u57f3\u57f5\u57f6\u57f7\u57fb\u57fc\u57fe\u57ff\u5801\u5803\u5804\u5805\u5808\u5809\u580a\u580c\u580e\u580f\u5810\u5812\u5813\u5814\u5816\u5817\u5818\u581a\u581b\u581c\u581d\u581f\u5822\u5823\u5825",4,"\u582b",4,"\u5831\u5832\u5833\u5834\u5836",7],["8940","\u583e",5,"\u5845",6,"\u584e\u584f\u5850\u5852\u5853\u5855\u5856\u5857\u5859",4,"\u585f",5,"\u5866",4,"\u586d",16,"\u587f\u5882\u5884\u5886\u5887\u5888\u588a\u588b\u588c"],["8980","\u588d",4,"\u5894",4,"\u589b\u589c\u589d\u58a0",7,"\u58aa",17,"\u58bd\u58be\u58bf\u58c0\u58c2\u58c3\u58c4\u58c6",10,"\u58d2\u58d3\u58d4\u58d6",13,"\u58e5",5,"\u58ed\u58ef\u58f1\u58f2\u58f4\u58f5\u58f7\u58f8\u58fa",7,"\u5903\u5905\u5906\u5908",4,"\u590e\u5910\u5911\u5912\u5913\u5917\u5918\u591b\u591d\u591e\u5920\u5921\u5922\u5923\u5926\u5928\u592c\u5930\u5932\u5933\u5935\u5936\u593b"],["8a40","\u593d\u593e\u593f\u5940\u5943\u5945\u5946\u594a\u594c\u594d\u5950\u5952\u5953\u5959\u595b",4,"\u5961\u5963\u5964\u5966",12,"\u5975\u5977\u597a\u597b\u597c\u597e\u597f\u5980\u5985\u5989\u598b\u598c\u598e\u598f\u5990\u5991\u5994\u5995\u5998\u599a\u599b\u599c\u599d\u599f\u59a0\u59a1\u59a2\u59a6"],["8a80","\u59a7\u59ac\u59ad\u59b0\u59b1\u59b3",5,"\u59ba\u59bc\u59bd\u59bf",6,"\u59c7\u59c8\u59c9\u59cc\u59cd\u59ce\u59cf\u59d5\u59d6\u59d9\u59db\u59de",4,"\u59e4\u59e6\u59e7\u59e9\u59ea\u59eb\u59ed",11,"\u59fa\u59fc\u59fd\u59fe\u5a00\u5a02\u5a0a\u5a0b\u5a0d\u5a0e\u5a0f\u5a10\u5a12\u5a14\u5a15\u5a16\u5a17\u5a19\u5a1a\u5a1b\u5a1d\u5a1e\u5a21\u5a22\u5a24\u5a26\u5a27\u5a28\u5a2a",6,"\u5a33\u5a35\u5a37",4,"\u5a3d\u5a3e\u5a3f\u5a41",4,"\u5a47\u5a48\u5a4b",9,"\u5a56\u5a57\u5a58\u5a59\u5a5b",5],["8b40","\u5a61\u5a63\u5a64\u5a65\u5a66\u5a68\u5a69\u5a6b",8,"\u5a78\u5a79\u5a7b\u5a7c\u5a7d\u5a7e\u5a80",17,"\u5a93",6,"\u5a9c",13,"\u5aab\u5aac"],["8b80","\u5aad",4,"\u5ab4\u5ab6\u5ab7\u5ab9",4,"\u5abf\u5ac0\u5ac3",5,"\u5aca\u5acb\u5acd",4,"\u5ad3\u5ad5\u5ad7\u5ad9\u5ada\u5adb\u5add\u5ade\u5adf\u5ae2\u5ae4\u5ae5\u5ae7\u5ae8\u5aea\u5aec",4,"\u5af2",22,"\u5b0a",11,"\u5b18",25,"\u5b33\u5b35\u5b36\u5b38",7,"\u5b41",6],["8c40","\u5b48",7,"\u5b52\u5b56\u5b5e\u5b60\u5b61\u5b67\u5b68\u5b6b\u5b6d\u5b6e\u5b6f\u5b72\u5b74\u5b76\u5b77\u5b78\u5b79\u5b7b\u5b7c\u5b7e\u5b7f\u5b82\u5b86\u5b8a\u5b8d\u5b8e\u5b90\u5b91\u5b92\u5b94\u5b96\u5b9f\u5ba7\u5ba8\u5ba9\u5bac\u5bad\u5bae\u5baf\u5bb1\u5bb2\u5bb7\u5bba\u5bbb\u5bbc\u5bc0\u5bc1\u5bc3\u5bc8\u5bc9\u5bca\u5bcb\u5bcd\u5bce\u5bcf"],["8c80","\u5bd1\u5bd4",8,"\u5be0\u5be2\u5be3\u5be6\u5be7\u5be9",4,"\u5bef\u5bf1",6,"\u5bfd\u5bfe\u5c00\u5c02\u5c03\u5c05\u5c07\u5c08\u5c0b\u5c0c\u5c0d\u5c0e\u5c10\u5c12\u5c13\u5c17\u5c19\u5c1b\u5c1e\u5c1f\u5c20\u5c21\u5c23\u5c26\u5c28\u5c29\u5c2a\u5c2b\u5c2d\u5c2e\u5c2f\u5c30\u5c32\u5c33\u5c35\u5c36\u5c37\u5c43\u5c44\u5c46\u5c47\u5c4c\u5c4d\u5c52\u5c53\u5c54\u5c56\u5c57\u5c58\u5c5a\u5c5b\u5c5c\u5c5d\u5c5f\u5c62\u5c64\u5c67",6,"\u5c70\u5c72",6,"\u5c7b\u5c7c\u5c7d\u5c7e\u5c80\u5c83",4,"\u5c89\u5c8a\u5c8b\u5c8e\u5c8f\u5c92\u5c93\u5c95\u5c9d",4,"\u5ca4",4],["8d40","\u5caa\u5cae\u5caf\u5cb0\u5cb2\u5cb4\u5cb6\u5cb9\u5cba\u5cbb\u5cbc\u5cbe\u5cc0\u5cc2\u5cc3\u5cc5",5,"\u5ccc",5,"\u5cd3",5,"\u5cda",6,"\u5ce2\u5ce3\u5ce7\u5ce9\u5ceb\u5cec\u5cee\u5cef\u5cf1",9,"\u5cfc",4],["8d80","\u5d01\u5d04\u5d05\u5d08",5,"\u5d0f",4,"\u5d15\u5d17\u5d18\u5d19\u5d1a\u5d1c\u5d1d\u5d1f",4,"\u5d25\u5d28\u5d2a\u5d2b\u5d2c\u5d2f",4,"\u5d35",7,"\u5d3f",7,"\u5d48\u5d49\u5d4d",10,"\u5d59\u5d5a\u5d5c\u5d5e",10,"\u5d6a\u5d6d\u5d6e\u5d70\u5d71\u5d72\u5d73\u5d75",12,"\u5d83",21,"\u5d9a\u5d9b\u5d9c\u5d9e\u5d9f\u5da0"],["8e40","\u5da1",21,"\u5db8",12,"\u5dc6",6,"\u5dce",12,"\u5ddc\u5ddf\u5de0\u5de3\u5de4\u5dea\u5dec\u5ded"],["8e80","\u5df0\u5df5\u5df6\u5df8",4,"\u5dff\u5e00\u5e04\u5e07\u5e09\u5e0a\u5e0b\u5e0d\u5e0e\u5e12\u5e13\u5e17\u5e1e",7,"\u5e28",4,"\u5e2f\u5e30\u5e32",4,"\u5e39\u5e3a\u5e3e\u5e3f\u5e40\u5e41\u5e43\u5e46",5,"\u5e4d",6,"\u5e56",4,"\u5e5c\u5e5d\u5e5f\u5e60\u5e63",14,"\u5e75\u5e77\u5e79\u5e7e\u5e81\u5e82\u5e83\u5e85\u5e88\u5e89\u5e8c\u5e8d\u5e8e\u5e92\u5e98\u5e9b\u5e9d\u5ea1\u5ea2\u5ea3\u5ea4\u5ea8",4,"\u5eae",4,"\u5eb4\u5eba\u5ebb\u5ebc\u5ebd\u5ebf",6],["8f40","\u5ec6\u5ec7\u5ec8\u5ecb",5,"\u5ed4\u5ed5\u5ed7\u5ed8\u5ed9\u5eda\u5edc",11,"\u5ee9\u5eeb",8,"\u5ef5\u5ef8\u5ef9\u5efb\u5efc\u5efd\u5f05\u5f06\u5f07\u5f09\u5f0c\u5f0d\u5f0e\u5f10\u5f12\u5f14\u5f16\u5f19\u5f1a\u5f1c\u5f1d\u5f1e\u5f21\u5f22\u5f23\u5f24"],["8f80","\u5f28\u5f2b\u5f2c\u5f2e\u5f30\u5f32",6,"\u5f3b\u5f3d\u5f3e\u5f3f\u5f41",14,"\u5f51\u5f54\u5f59\u5f5a\u5f5b\u5f5c\u5f5e\u5f5f\u5f60\u5f63\u5f65\u5f67\u5f68\u5f6b\u5f6e\u5f6f\u5f72\u5f74\u5f75\u5f76\u5f78\u5f7a\u5f7d\u5f7e\u5f7f\u5f83\u5f86\u5f8d\u5f8e\u5f8f\u5f91\u5f93\u5f94\u5f96\u5f9a\u5f9b\u5f9d\u5f9e\u5f9f\u5fa0\u5fa2",5,"\u5fa9\u5fab\u5fac\u5faf",5,"\u5fb6\u5fb8\u5fb9\u5fba\u5fbb\u5fbe",4,"\u5fc7\u5fc8\u5fca\u5fcb\u5fce\u5fd3\u5fd4\u5fd5\u5fda\u5fdb\u5fdc\u5fde\u5fdf\u5fe2\u5fe3\u5fe5\u5fe6\u5fe8\u5fe9\u5fec\u5fef\u5ff0\u5ff2\u5ff3\u5ff4\u5ff6\u5ff7\u5ff9\u5ffa\u5ffc\u6007"],["9040","\u6008\u6009\u600b\u600c\u6010\u6011\u6013\u6017\u6018\u601a\u601e\u601f\u6022\u6023\u6024\u602c\u602d\u602e\u6030",4,"\u6036",4,"\u603d\u603e\u6040\u6044",6,"\u604c\u604e\u604f\u6051\u6053\u6054\u6056\u6057\u6058\u605b\u605c\u605e\u605f\u6060\u6061\u6065\u6066\u606e\u6071\u6072\u6074\u6075\u6077\u607e\u6080"],["9080","\u6081\u6082\u6085\u6086\u6087\u6088\u608a\u608b\u608e\u608f\u6090\u6091\u6093\u6095\u6097\u6098\u6099\u609c\u609e\u60a1\u60a2\u60a4\u60a5\u60a7\u60a9\u60aa\u60ae\u60b0\u60b3\u60b5\u60b6\u60b7\u60b9\u60ba\u60bd",7,"\u60c7\u60c8\u60c9\u60cc",4,"\u60d2\u60d3\u60d4\u60d6\u60d7\u60d9\u60db\u60de\u60e1",4,"\u60ea\u60f1\u60f2\u60f5\u60f7\u60f8\u60fb",4,"\u6102\u6103\u6104\u6105\u6107\u610a\u610b\u610c\u6110",4,"\u6116\u6117\u6118\u6119\u611b\u611c\u611d\u611e\u6121\u6122\u6125\u6128\u6129\u612a\u612c",18,"\u6140",6],["9140","\u6147\u6149\u614b\u614d\u614f\u6150\u6152\u6153\u6154\u6156",6,"\u615e\u615f\u6160\u6161\u6163\u6164\u6165\u6166\u6169",6,"\u6171\u6172\u6173\u6174\u6176\u6178",18,"\u618c\u618d\u618f",4,"\u6195"],["9180","\u6196",6,"\u619e",8,"\u61aa\u61ab\u61ad",9,"\u61b8",5,"\u61bf\u61c0\u61c1\u61c3",4,"\u61c9\u61cc",4,"\u61d3\u61d5",16,"\u61e7",13,"\u61f6",8,"\u6200",5,"\u6207\u6209\u6213\u6214\u6219\u621c\u621d\u621e\u6220\u6223\u6226\u6227\u6228\u6229\u622b\u622d\u622f\u6230\u6231\u6232\u6235\u6236\u6238",4,"\u6242\u6244\u6245\u6246\u624a"],["9240","\u624f\u6250\u6255\u6256\u6257\u6259\u625a\u625c",6,"\u6264\u6265\u6268\u6271\u6272\u6274\u6275\u6277\u6278\u627a\u627b\u627d\u6281\u6282\u6283\u6285\u6286\u6287\u6288\u628b",5,"\u6294\u6299\u629c\u629d\u629e\u62a3\u62a6\u62a7\u62a9\u62aa\u62ad\u62ae\u62af\u62b0\u62b2\u62b3\u62b4\u62b6\u62b7\u62b8\u62ba\u62be\u62c0\u62c1"],["9280","\u62c3\u62cb\u62cf\u62d1\u62d5\u62dd\u62de\u62e0\u62e1\u62e4\u62ea\u62eb\u62f0\u62f2\u62f5\u62f8\u62f9\u62fa\u62fb\u6300\u6303\u6304\u6305\u6306\u630a\u630b\u630c\u630d\u630f\u6310\u6312\u6313\u6314\u6315\u6317\u6318\u6319\u631c\u6326\u6327\u6329\u632c\u632d\u632e\u6330\u6331\u6333",5,"\u633b\u633c\u633e\u633f\u6340\u6341\u6344\u6347\u6348\u634a\u6351\u6352\u6353\u6354\u6356",7,"\u6360\u6364\u6365\u6366\u6368\u636a\u636b\u636c\u636f\u6370\u6372\u6373\u6374\u6375\u6378\u6379\u637c\u637d\u637e\u637f\u6381\u6383\u6384\u6385\u6386\u638b\u638d\u6391\u6393\u6394\u6395\u6397\u6399",6,"\u63a1\u63a4\u63a6\u63ab\u63af\u63b1\u63b2\u63b5\u63b6\u63b9\u63bb\u63bd\u63bf\u63c0"],["9340","\u63c1\u63c2\u63c3\u63c5\u63c7\u63c8\u63ca\u63cb\u63cc\u63d1\u63d3\u63d4\u63d5\u63d7",6,"\u63df\u63e2\u63e4",4,"\u63eb\u63ec\u63ee\u63ef\u63f0\u63f1\u63f3\u63f5\u63f7\u63f9\u63fa\u63fb\u63fc\u63fe\u6403\u6404\u6406",4,"\u640d\u640e\u6411\u6412\u6415",5,"\u641d\u641f\u6422\u6423\u6424"],["9380","\u6425\u6427\u6428\u6429\u642b\u642e",5,"\u6435",4,"\u643b\u643c\u643e\u6440\u6442\u6443\u6449\u644b",6,"\u6453\u6455\u6456\u6457\u6459",4,"\u645f",7,"\u6468\u646a\u646b\u646c\u646e",9,"\u647b",6,"\u6483\u6486\u6488",8,"\u6493\u6494\u6497\u6498\u649a\u649b\u649c\u649d\u649f",4,"\u64a5\u64a6\u64a7\u64a8\u64aa\u64ab\u64af\u64b1\u64b2\u64b3\u64b4\u64b6\u64b9\u64bb\u64bd\u64be\u64bf\u64c1\u64c3\u64c4\u64c6",6,"\u64cf\u64d1\u64d3\u64d4\u64d5\u64d6\u64d9\u64da"],["9440","\u64db\u64dc\u64dd\u64df\u64e0\u64e1\u64e3\u64e5\u64e7",24,"\u6501",7,"\u650a",7,"\u6513",4,"\u6519",8],["9480","\u6522\u6523\u6524\u6526",4,"\u652c\u652d\u6530\u6531\u6532\u6533\u6537\u653a\u653c\u653d\u6540",4,"\u6546\u6547\u654a\u654b\u654d\u654e\u6550\u6552\u6553\u6554\u6557\u6558\u655a\u655c\u655f\u6560\u6561\u6564\u6565\u6567\u6568\u6569\u656a\u656d\u656e\u656f\u6571\u6573\u6575\u6576\u6578",14,"\u6588\u6589\u658a\u658d\u658e\u658f\u6592\u6594\u6595\u6596\u6598\u659a\u659d\u659e\u65a0\u65a2\u65a3\u65a6\u65a8\u65aa\u65ac\u65ae\u65b1",7,"\u65ba\u65bb\u65be\u65bf\u65c0\u65c2\u65c7\u65c8\u65c9\u65ca\u65cd\u65d0\u65d1\u65d3\u65d4\u65d5\u65d8",7,"\u65e1\u65e3\u65e4\u65ea\u65eb"],["9540","\u65f2\u65f3\u65f4\u65f5\u65f8\u65f9\u65fb",4,"\u6601\u6604\u6605\u6607\u6608\u6609\u660b\u660d\u6610\u6611\u6612\u6616\u6617\u6618\u661a\u661b\u661c\u661e\u6621\u6622\u6623\u6624\u6626\u6629\u662a\u662b\u662c\u662e\u6630\u6632\u6633\u6637",4,"\u663d\u663f\u6640\u6642\u6644",6,"\u664d\u664e\u6650\u6651\u6658"],["9580","\u6659\u665b\u665c\u665d\u665e\u6660\u6662\u6663\u6665\u6667\u6669",4,"\u6671\u6672\u6673\u6675\u6678\u6679\u667b\u667c\u667d\u667f\u6680\u6681\u6683\u6685\u6686\u6688\u6689\u668a\u668b\u668d\u668e\u668f\u6690\u6692\u6693\u6694\u6695\u6698",4,"\u669e",8,"\u66a9",4,"\u66af",4,"\u66b5\u66b6\u66b7\u66b8\u66ba\u66bb\u66bc\u66bd\u66bf",25,"\u66da\u66de",7,"\u66e7\u66e8\u66ea",5,"\u66f1\u66f5\u66f6\u66f8\u66fa\u66fb\u66fd\u6701\u6702\u6703"],["9640","\u6704\u6705\u6706\u6707\u670c\u670e\u670f\u6711\u6712\u6713\u6716\u6718\u6719\u671a\u671c\u671e\u6720",5,"\u6727\u6729\u672e\u6730\u6732\u6733\u6736\u6737\u6738\u6739\u673b\u673c\u673e\u673f\u6741\u6744\u6745\u6747\u674a\u674b\u674d\u6752\u6754\u6755\u6757",4,"\u675d\u6762\u6763\u6764\u6766\u6767\u676b\u676c\u676e\u6771\u6774\u6776"],["9680","\u6778\u6779\u677a\u677b\u677d\u6780\u6782\u6783\u6785\u6786\u6788\u678a\u678c\u678d\u678e\u678f\u6791\u6792\u6793\u6794\u6796\u6799\u679b\u679f\u67a0\u67a1\u67a4\u67a6\u67a9\u67ac\u67ae\u67b1\u67b2\u67b4\u67b9",7,"\u67c2\u67c5",9,"\u67d5\u67d6\u67d7\u67db\u67df\u67e1\u67e3\u67e4\u67e6\u67e7\u67e8\u67ea\u67eb\u67ed\u67ee\u67f2\u67f5",7,"\u67fe\u6801\u6802\u6803\u6804\u6806\u680d\u6810\u6812\u6814\u6815\u6818",4,"\u681e\u681f\u6820\u6822",6,"\u682b",6,"\u6834\u6835\u6836\u683a\u683b\u683f\u6847\u684b\u684d\u684f\u6852\u6856",5],["9740","\u685c\u685d\u685e\u685f\u686a\u686c",7,"\u6875\u6878",8,"\u6882\u6884\u6887",7,"\u6890\u6891\u6892\u6894\u6895\u6896\u6898",9,"\u68a3\u68a4\u68a5\u68a9\u68aa\u68ab\u68ac\u68ae\u68b1\u68b2\u68b4\u68b6\u68b7\u68b8"],["9780","\u68b9",6,"\u68c1\u68c3",5,"\u68ca\u68cc\u68ce\u68cf\u68d0\u68d1\u68d3\u68d4\u68d6\u68d7\u68d9\u68db",4,"\u68e1\u68e2\u68e4",9,"\u68ef\u68f2\u68f3\u68f4\u68f6\u68f7\u68f8\u68fb\u68fd\u68fe\u68ff\u6900\u6902\u6903\u6904\u6906",4,"\u690c\u690f\u6911\u6913",11,"\u6921\u6922\u6923\u6925",7,"\u692e\u692f\u6931\u6932\u6933\u6935\u6936\u6937\u6938\u693a\u693b\u693c\u693e\u6940\u6941\u6943",16,"\u6955\u6956\u6958\u6959\u695b\u695c\u695f"],["9840","\u6961\u6962\u6964\u6965\u6967\u6968\u6969\u696a\u696c\u696d\u696f\u6970\u6972",4,"\u697a\u697b\u697d\u697e\u697f\u6981\u6983\u6985\u698a\u698b\u698c\u698e",5,"\u6996\u6997\u6999\u699a\u699d",9,"\u69a9\u69aa\u69ac\u69ae\u69af\u69b0\u69b2\u69b3\u69b5\u69b6\u69b8\u69b9\u69ba\u69bc\u69bd"],["9880","\u69be\u69bf\u69c0\u69c2",7,"\u69cb\u69cd\u69cf\u69d1\u69d2\u69d3\u69d5",5,"\u69dc\u69dd\u69de\u69e1",11,"\u69ee\u69ef\u69f0\u69f1\u69f3",9,"\u69fe\u6a00",9,"\u6a0b",11,"\u6a19",5,"\u6a20\u6a22",5,"\u6a29\u6a2b\u6a2c\u6a2d\u6a2e\u6a30\u6a32\u6a33\u6a34\u6a36",6,"\u6a3f",4,"\u6a45\u6a46\u6a48",7,"\u6a51",6,"\u6a5a"],["9940","\u6a5c",4,"\u6a62\u6a63\u6a64\u6a66",10,"\u6a72",6,"\u6a7a\u6a7b\u6a7d\u6a7e\u6a7f\u6a81\u6a82\u6a83\u6a85",8,"\u6a8f\u6a92",4,"\u6a98",7,"\u6aa1",5],["9980","\u6aa7\u6aa8\u6aaa\u6aad",114,"\u6b25\u6b26\u6b28",6],["9a40","\u6b2f\u6b30\u6b31\u6b33\u6b34\u6b35\u6b36\u6b38\u6b3b\u6b3c\u6b3d\u6b3f\u6b40\u6b41\u6b42\u6b44\u6b45\u6b48\u6b4a\u6b4b\u6b4d",11,"\u6b5a",7,"\u6b68\u6b69\u6b6b",13,"\u6b7a\u6b7d\u6b7e\u6b7f\u6b80\u6b85\u6b88"],["9a80","\u6b8c\u6b8e\u6b8f\u6b90\u6b91\u6b94\u6b95\u6b97\u6b98\u6b99\u6b9c",4,"\u6ba2",7,"\u6bab",7,"\u6bb6\u6bb8",6,"\u6bc0\u6bc3\u6bc4\u6bc6",4,"\u6bcc\u6bce\u6bd0\u6bd1\u6bd8\u6bda\u6bdc",4,"\u6be2",7,"\u6bec\u6bed\u6bee\u6bf0\u6bf1\u6bf2\u6bf4\u6bf6\u6bf7\u6bf8\u6bfa\u6bfb\u6bfc\u6bfe",6,"\u6c08",4,"\u6c0e\u6c12\u6c17\u6c1c\u6c1d\u6c1e\u6c20\u6c23\u6c25\u6c2b\u6c2c\u6c2d\u6c31\u6c33\u6c36\u6c37\u6c39\u6c3a\u6c3b\u6c3c\u6c3e\u6c3f\u6c43\u6c44\u6c45\u6c48\u6c4b",4,"\u6c51\u6c52\u6c53\u6c56\u6c58"],["9b40","\u6c59\u6c5a\u6c62\u6c63\u6c65\u6c66\u6c67\u6c6b",4,"\u6c71\u6c73\u6c75\u6c77\u6c78\u6c7a\u6c7b\u6c7c\u6c7f\u6c80\u6c84\u6c87\u6c8a\u6c8b\u6c8d\u6c8e\u6c91\u6c92\u6c95\u6c96\u6c97\u6c98\u6c9a\u6c9c\u6c9d\u6c9e\u6ca0\u6ca2\u6ca8\u6cac\u6caf\u6cb0\u6cb4\u6cb5\u6cb6\u6cb7\u6cba\u6cc0\u6cc1\u6cc2\u6cc3\u6cc6\u6cc7\u6cc8\u6ccb\u6ccd\u6cce\u6ccf\u6cd1\u6cd2\u6cd8"],["9b80","\u6cd9\u6cda\u6cdc\u6cdd\u6cdf\u6ce4\u6ce6\u6ce7\u6ce9\u6cec\u6ced\u6cf2\u6cf4\u6cf9\u6cff\u6d00\u6d02\u6d03\u6d05\u6d06\u6d08\u6d09\u6d0a\u6d0d\u6d0f\u6d10\u6d11\u6d13\u6d14\u6d15\u6d16\u6d18\u6d1c\u6d1d\u6d1f",5,"\u6d26\u6d28\u6d29\u6d2c\u6d2d\u6d2f\u6d30\u6d34\u6d36\u6d37\u6d38\u6d3a\u6d3f\u6d40\u6d42\u6d44\u6d49\u6d4c\u6d50\u6d55\u6d56\u6d57\u6d58\u6d5b\u6d5d\u6d5f\u6d61\u6d62\u6d64\u6d65\u6d67\u6d68\u6d6b\u6d6c\u6d6d\u6d70\u6d71\u6d72\u6d73\u6d75\u6d76\u6d79\u6d7a\u6d7b\u6d7d",4,"\u6d83\u6d84\u6d86\u6d87\u6d8a\u6d8b\u6d8d\u6d8f\u6d90\u6d92\u6d96",4,"\u6d9c\u6da2\u6da5\u6dac\u6dad\u6db0\u6db1\u6db3\u6db4\u6db6\u6db7\u6db9",5,"\u6dc1\u6dc2\u6dc3\u6dc8\u6dc9\u6dca"],["9c40","\u6dcd\u6dce\u6dcf\u6dd0\u6dd2\u6dd3\u6dd4\u6dd5\u6dd7\u6dda\u6ddb\u6ddc\u6ddf\u6de2\u6de3\u6de5\u6de7\u6de8\u6de9\u6dea\u6ded\u6def\u6df0\u6df2\u6df4\u6df5\u6df6\u6df8\u6dfa\u6dfd",7,"\u6e06\u6e07\u6e08\u6e09\u6e0b\u6e0f\u6e12\u6e13\u6e15\u6e18\u6e19\u6e1b\u6e1c\u6e1e\u6e1f\u6e22\u6e26\u6e27\u6e28\u6e2a\u6e2c\u6e2e\u6e30\u6e31\u6e33\u6e35"],["9c80","\u6e36\u6e37\u6e39\u6e3b",7,"\u6e45",7,"\u6e4f\u6e50\u6e51\u6e52\u6e55\u6e57\u6e59\u6e5a\u6e5c\u6e5d\u6e5e\u6e60",10,"\u6e6c\u6e6d\u6e6f",14,"\u6e80\u6e81\u6e82\u6e84\u6e87\u6e88\u6e8a",4,"\u6e91",6,"\u6e99\u6e9a\u6e9b\u6e9d\u6e9e\u6ea0\u6ea1\u6ea3\u6ea4\u6ea6\u6ea8\u6ea9\u6eab\u6eac\u6ead\u6eae\u6eb0\u6eb3\u6eb5\u6eb8\u6eb9\u6ebc\u6ebe\u6ebf\u6ec0\u6ec3\u6ec4\u6ec5\u6ec6\u6ec8\u6ec9\u6eca\u6ecc\u6ecd\u6ece\u6ed0\u6ed2\u6ed6\u6ed8\u6ed9\u6edb\u6edc\u6edd\u6ee3\u6ee7\u6eea",5],["9d40","\u6ef0\u6ef1\u6ef2\u6ef3\u6ef5\u6ef6\u6ef7\u6ef8\u6efa",7,"\u6f03\u6f04\u6f05\u6f07\u6f08\u6f0a",4,"\u6f10\u6f11\u6f12\u6f16",9,"\u6f21\u6f22\u6f23\u6f25\u6f26\u6f27\u6f28\u6f2c\u6f2e\u6f30\u6f32\u6f34\u6f35\u6f37",6,"\u6f3f\u6f40\u6f41\u6f42"],["9d80","\u6f43\u6f44\u6f45\u6f48\u6f49\u6f4a\u6f4c\u6f4e",9,"\u6f59\u6f5a\u6f5b\u6f5d\u6f5f\u6f60\u6f61\u6f63\u6f64\u6f65\u6f67",5,"\u6f6f\u6f70\u6f71\u6f73\u6f75\u6f76\u6f77\u6f79\u6f7b\u6f7d",6,"\u6f85\u6f86\u6f87\u6f8a\u6f8b\u6f8f",12,"\u6f9d\u6f9e\u6f9f\u6fa0\u6fa2",4,"\u6fa8",10,"\u6fb4\u6fb5\u6fb7\u6fb8\u6fba",5,"\u6fc1\u6fc3",5,"\u6fca",6,"\u6fd3",10,"\u6fdf\u6fe2\u6fe3\u6fe4\u6fe5"],["9e40","\u6fe6",7,"\u6ff0",32,"\u7012",7,"\u701c",6,"\u7024",6],["9e80","\u702b",9,"\u7036\u7037\u7038\u703a",17,"\u704d\u704e\u7050",13,"\u705f",11,"\u706e\u7071\u7072\u7073\u7074\u7077\u7079\u707a\u707b\u707d\u7081\u7082\u7083\u7084\u7086\u7087\u7088\u708b\u708c\u708d\u708f\u7090\u7091\u7093\u7097\u7098\u709a\u709b\u709e",12,"\u70b0\u70b2\u70b4\u70b5\u70b6\u70ba\u70be\u70bf\u70c4\u70c5\u70c6\u70c7\u70c9\u70cb",12,"\u70da"],["9f40","\u70dc\u70dd\u70de\u70e0\u70e1\u70e2\u70e3\u70e5\u70ea\u70ee\u70f0",6,"\u70f8\u70fa\u70fb\u70fc\u70fe",10,"\u710b",4,"\u7111\u7112\u7114\u7117\u711b",10,"\u7127",7,"\u7132\u7133\u7134"],["9f80","\u7135\u7137",13,"\u7146\u7147\u7148\u7149\u714b\u714d\u714f",12,"\u715d\u715f",4,"\u7165\u7169",4,"\u716f\u7170\u7171\u7174\u7175\u7176\u7177\u7179\u717b\u717c\u717e",5,"\u7185",4,"\u718b\u718c\u718d\u718e\u7190\u7191\u7192\u7193\u7195\u7196\u7197\u719a",4,"\u71a1",6,"\u71a9\u71aa\u71ab\u71ad",5,"\u71b4\u71b6\u71b7\u71b8\u71ba",8,"\u71c4",9,"\u71cf",4],["a040","\u71d6",9,"\u71e1\u71e2\u71e3\u71e4\u71e6\u71e8",5,"\u71ef",9,"\u71fa",11,"\u7207",19],["a080","\u721b\u721c\u721e",9,"\u7229\u722b\u722d\u722e\u722f\u7232\u7233\u7234\u723a\u723c\u723e\u7240",6,"\u7249\u724a\u724b\u724e\u724f\u7250\u7251\u7253\u7254\u7255\u7257\u7258\u725a\u725c\u725e\u7260\u7263\u7264\u7265\u7268\u726a\u726b\u726c\u726d\u7270\u7271\u7273\u7274\u7276\u7277\u7278\u727b\u727c\u727d\u7282\u7283\u7285",4,"\u728c\u728e\u7290\u7291\u7293",11,"\u72a0",11,"\u72ae\u72b1\u72b2\u72b3\u72b5\u72ba",6,"\u72c5\u72c6\u72c7\u72c9\u72ca\u72cb\u72cc\u72cf\u72d1\u72d3\u72d4\u72d5\u72d6\u72d8\u72da\u72db"],["a1a1","\u3000\u3001\u3002\xb7\u02c9\u02c7\xa8\u3003\u3005\u2014\uff5e\u2016\u2026\u2018\u2019\u201c\u201d\u3014\u3015\u3008",7,"\u3016\u3017\u3010\u3011\xb1\xd7\xf7\u2236\u2227\u2228\u2211\u220f\u222a\u2229\u2208\u2237\u221a\u22a5\u2225\u2220\u2312\u2299\u222b\u222e\u2261\u224c\u2248\u223d\u221d\u2260\u226e\u226f\u2264\u2265\u221e\u2235\u2234\u2642\u2640\xb0\u2032\u2033\u2103\uff04\xa4\uffe0\uffe1\u2030\xa7\u2116\u2606\u2605\u25cb\u25cf\u25ce\u25c7\u25c6\u25a1\u25a0\u25b3\u25b2\u203b\u2192\u2190\u2191\u2193\u3013"],["a2a1","\u2170",9],["a2b1","\u2488",19,"\u2474",19,"\u2460",9],["a2e5","\u3220",9],["a2f1","\u2160",11],["a3a1","\uff01\uff02\uff03\uffe5\uff05",88,"\uffe3"],["a4a1","\u3041",82],["a5a1","\u30a1",85],["a6a1","\u0391",16,"\u03a3",6],["a6c1","\u03b1",16,"\u03c3",6],["a6e0","\ufe35\ufe36\ufe39\ufe3a\ufe3f\ufe40\ufe3d\ufe3e\ufe41\ufe42\ufe43\ufe44"],["a6ee","\ufe3b\ufe3c\ufe37\ufe38\ufe31"],["a6f4","\ufe33\ufe34"],["a7a1","\u0410",5,"\u0401\u0416",25],["a7d1","\u0430",5,"\u0451\u0436",25],["a840","\u02ca\u02cb\u02d9\u2013\u2015\u2025\u2035\u2105\u2109\u2196\u2197\u2198\u2199\u2215\u221f\u2223\u2252\u2266\u2267\u22bf\u2550",35,"\u2581",6],["a880","\u2588",7,"\u2593\u2594\u2595\u25bc\u25bd\u25e2\u25e3\u25e4\u25e5\u2609\u2295\u3012\u301d\u301e"],["a8a1","\u0101\xe1\u01ce\xe0\u0113\xe9\u011b\xe8\u012b\xed\u01d0\xec\u014d\xf3\u01d2\xf2\u016b\xfa\u01d4\xf9\u01d6\u01d8\u01da\u01dc\xfc\xea\u0251"],["a8bd","\u0144\u0148"],["a8c0","\u0261"],["a8c5","\u3105",36],["a940","\u3021",8,"\u32a3\u338e\u338f\u339c\u339d\u339e\u33a1\u33c4\u33ce\u33d1\u33d2\u33d5\ufe30\uffe2\uffe4"],["a959","\u2121\u3231"],["a95c","\u2010"],["a960","\u30fc\u309b\u309c\u30fd\u30fe\u3006\u309d\u309e\ufe49",9,"\ufe54\ufe55\ufe56\ufe57\ufe59",8],["a980","\ufe62",4,"\ufe68\ufe69\ufe6a\ufe6b"],["a996","\u3007"],["a9a4","\u2500",75],["aa40","\u72dc\u72dd\u72df\u72e2",5,"\u72ea\u72eb\u72f5\u72f6\u72f9\u72fd\u72fe\u72ff\u7300\u7302\u7304",5,"\u730b\u730c\u730d\u730f\u7310\u7311\u7312\u7314\u7318\u7319\u731a\u731f\u7320\u7323\u7324\u7326\u7327\u7328\u732d\u732f\u7330\u7332\u7333\u7335\u7336\u733a\u733b\u733c\u733d\u7340",8],["aa80","\u7349\u734a\u734b\u734c\u734e\u734f\u7351\u7353\u7354\u7355\u7356\u7358",7,"\u7361",10,"\u736e\u7370\u7371"],["ab40","\u7372",11,"\u737f",4,"\u7385\u7386\u7388\u738a\u738c\u738d\u738f\u7390\u7392\u7393\u7394\u7395\u7397\u7398\u7399\u739a\u739c\u739d\u739e\u73a0\u73a1\u73a3",5,"\u73aa\u73ac\u73ad\u73b1\u73b4\u73b5\u73b6\u73b8\u73b9\u73bc\u73bd\u73be\u73bf\u73c1\u73c3",4],["ab80","\u73cb\u73cc\u73ce\u73d2",6,"\u73da\u73db\u73dc\u73dd\u73df\u73e1\u73e2\u73e3\u73e4\u73e6\u73e8\u73ea\u73eb\u73ec\u73ee\u73ef\u73f0\u73f1\u73f3",4],["ac40","\u73f8",10,"\u7404\u7407\u7408\u740b\u740c\u740d\u740e\u7411",8,"\u741c",5,"\u7423\u7424\u7427\u7429\u742b\u742d\u742f\u7431\u7432\u7437",4,"\u743d\u743e\u743f\u7440\u7442",11],["ac80","\u744e",6,"\u7456\u7458\u745d\u7460",12,"\u746e\u746f\u7471",4,"\u7478\u7479\u747a"],["ad40","\u747b\u747c\u747d\u747f\u7482\u7484\u7485\u7486\u7488\u7489\u748a\u748c\u748d\u748f\u7491",10,"\u749d\u749f",7,"\u74aa",15,"\u74bb",12],["ad80","\u74c8",9,"\u74d3",8,"\u74dd\u74df\u74e1\u74e5\u74e7",6,"\u74f0\u74f1\u74f2"],["ae40","\u74f3\u74f5\u74f8",6,"\u7500\u7501\u7502\u7503\u7505",7,"\u750e\u7510\u7512\u7514\u7515\u7516\u7517\u751b\u751d\u751e\u7520",4,"\u7526\u7527\u752a\u752e\u7534\u7536\u7539\u753c\u753d\u753f\u7541\u7542\u7543\u7544\u7546\u7547\u7549\u754a\u754d\u7550\u7551\u7552\u7553\u7555\u7556\u7557\u7558"],["ae80","\u755d",7,"\u7567\u7568\u7569\u756b",6,"\u7573\u7575\u7576\u7577\u757a",4,"\u7580\u7581\u7582\u7584\u7585\u7587"],["af40","\u7588\u7589\u758a\u758c\u758d\u758e\u7590\u7593\u7595\u7598\u759b\u759c\u759e\u75a2\u75a6",4,"\u75ad\u75b6\u75b7\u75ba\u75bb\u75bf\u75c0\u75c1\u75c6\u75cb\u75cc\u75ce\u75cf\u75d0\u75d1\u75d3\u75d7\u75d9\u75da\u75dc\u75dd\u75df\u75e0\u75e1\u75e5\u75e9\u75ec\u75ed\u75ee\u75ef\u75f2\u75f3\u75f5\u75f6\u75f7\u75f8\u75fa\u75fb\u75fd\u75fe\u7602\u7604\u7606\u7607"],["af80","\u7608\u7609\u760b\u760d\u760e\u760f\u7611\u7612\u7613\u7614\u7616\u761a\u761c\u761d\u761e\u7621\u7623\u7627\u7628\u762c\u762e\u762f\u7631\u7632\u7636\u7637\u7639\u763a\u763b\u763d\u7641\u7642\u7644"],["b040","\u7645",6,"\u764e",5,"\u7655\u7657",4,"\u765d\u765f\u7660\u7661\u7662\u7664",6,"\u766c\u766d\u766e\u7670",7,"\u7679\u767a\u767c\u767f\u7680\u7681\u7683\u7685\u7689\u768a\u768c\u768d\u768f\u7690\u7692\u7694\u7695\u7697\u7698\u769a\u769b"],["b080","\u769c",7,"\u76a5",8,"\u76af\u76b0\u76b3\u76b5",9,"\u76c0\u76c1\u76c3\u554a\u963f\u57c3\u6328\u54ce\u5509\u54c0\u7691\u764c\u853c\u77ee\u827e\u788d\u7231\u9698\u978d\u6c28\u5b89\u4ffa\u6309\u6697\u5cb8\u80fa\u6848\u80ae\u6602\u76ce\u51f9\u6556\u71ac\u7ff1\u8884\u50b2\u5965\u61ca\u6fb3\u82ad\u634c\u6252\u53ed\u5427\u7b06\u516b\u75a4\u5df4\u62d4\u8dcb\u9776\u628a\u8019\u575d\u9738\u7f62\u7238\u767d\u67cf\u767e\u6446\u4f70\u8d25\u62dc\u7a17\u6591\u73ed\u642c\u6273\u822c\u9881\u677f\u7248\u626e\u62cc\u4f34\u74e3\u534a\u529e\u7eca\u90a6\u5e2e\u6886\u699c\u8180\u7ed1\u68d2\u78c5\u868c\u9551\u508d\u8c24\u82de\u80de\u5305\u8912\u5265"],["b140","\u76c4\u76c7\u76c9\u76cb\u76cc\u76d3\u76d5\u76d9\u76da\u76dc\u76dd\u76de\u76e0",4,"\u76e6",7,"\u76f0\u76f3\u76f5\u76f6\u76f7\u76fa\u76fb\u76fd\u76ff\u7700\u7702\u7703\u7705\u7706\u770a\u770c\u770e",10,"\u771b\u771c\u771d\u771e\u7721\u7723\u7724\u7725\u7727\u772a\u772b"],["b180","\u772c\u772e\u7730",4,"\u7739\u773b\u773d\u773e\u773f\u7742\u7744\u7745\u7746\u7748",7,"\u7752",7,"\u775c\u8584\u96f9\u4fdd\u5821\u9971\u5b9d\u62b1\u62a5\u66b4\u8c79\u9c8d\u7206\u676f\u7891\u60b2\u5351\u5317\u8f88\u80cc\u8d1d\u94a1\u500d\u72c8\u5907\u60eb\u7119\u88ab\u5954\u82ef\u672c\u7b28\u5d29\u7ef7\u752d\u6cf5\u8e66\u8ff8\u903c\u9f3b\u6bd4\u9119\u7b14\u5f7c\u78a7\u84d6\u853d\u6bd5\u6bd9\u6bd6\u5e01\u5e87\u75f9\u95ed\u655d\u5f0a\u5fc5\u8f9f\u58c1\u81c2\u907f\u965b\u97ad\u8fb9\u7f16\u8d2c\u6241\u4fbf\u53d8\u535e\u8fa8\u8fa9\u8fab\u904d\u6807\u5f6a\u8198\u8868\u9cd6\u618b\u522b\u762a\u5f6c\u658c\u6fd2\u6ee8\u5bbe\u6448\u5175\u51b0\u67c4\u4e19\u79c9\u997c\u70b3"],["b240","\u775d\u775e\u775f\u7760\u7764\u7767\u7769\u776a\u776d",11,"\u777a\u777b\u777c\u7781\u7782\u7783\u7786",5,"\u778f\u7790\u7793",11,"\u77a1\u77a3\u77a4\u77a6\u77a8\u77ab\u77ad\u77ae\u77af\u77b1\u77b2\u77b4\u77b6",4],["b280","\u77bc\u77be\u77c0",12,"\u77ce",8,"\u77d8\u77d9\u77da\u77dd",4,"\u77e4\u75c5\u5e76\u73bb\u83e0\u64ad\u62e8\u94b5\u6ce2\u535a\u52c3\u640f\u94c2\u7b94\u4f2f\u5e1b\u8236\u8116\u818a\u6e24\u6cca\u9a73\u6355\u535c\u54fa\u8865\u57e0\u4e0d\u5e03\u6b65\u7c3f\u90e8\u6016\u64e6\u731c\u88c1\u6750\u624d\u8d22\u776c\u8e29\u91c7\u5f69\u83dc\u8521\u9910\u53c2\u8695\u6b8b\u60ed\u60e8\u707f\u82cd\u8231\u4ed3\u6ca7\u85cf\u64cd\u7cd9\u69fd\u66f9\u8349\u5395\u7b56\u4fa7\u518c\u6d4b\u5c42\u8e6d\u63d2\u53c9\u832c\u8336\u67e5\u78b4\u643d\u5bdf\u5c94\u5dee\u8be7\u62c6\u67f4\u8c7a\u6400\u63ba\u8749\u998b\u8c17\u7f20\u94f2\u4ea7\u9610\u98a4\u660c\u7316"],["b340","\u77e6\u77e8\u77ea\u77ef\u77f0\u77f1\u77f2\u77f4\u77f5\u77f7\u77f9\u77fa\u77fb\u77fc\u7803",5,"\u780a\u780b\u780e\u780f\u7810\u7813\u7815\u7819\u781b\u781e\u7820\u7821\u7822\u7824\u7828\u782a\u782b\u782e\u782f\u7831\u7832\u7833\u7835\u7836\u783d\u783f\u7841\u7842\u7843\u7844\u7846\u7848\u7849\u784a\u784b\u784d\u784f\u7851\u7853\u7854\u7858\u7859\u785a"],["b380","\u785b\u785c\u785e",11,"\u786f",7,"\u7878\u7879\u787a\u787b\u787d",6,"\u573a\u5c1d\u5e38\u957f\u507f\u80a0\u5382\u655e\u7545\u5531\u5021\u8d85\u6284\u949e\u671d\u5632\u6f6e\u5de2\u5435\u7092\u8f66\u626f\u64a4\u63a3\u5f7b\u6f88\u90f4\u81e3\u8fb0\u5c18\u6668\u5ff1\u6c89\u9648\u8d81\u886c\u6491\u79f0\u57ce\u6a59\u6210\u5448\u4e58\u7a0b\u60e9\u6f84\u8bda\u627f\u901e\u9a8b\u79e4\u5403\u75f4\u6301\u5319\u6c60\u8fdf\u5f1b\u9a70\u803b\u9f7f\u4f88\u5c3a\u8d64\u7fc5\u65a5\u70bd\u5145\u51b2\u866b\u5d07\u5ba0\u62bd\u916c\u7574\u8e0c\u7a20\u6101\u7b79\u4ec7\u7ef8\u7785\u4e11\u81ed\u521d\u51fa\u6a71\u53a8\u8e87\u9504\u96cf\u6ec1\u9664\u695a"],["b440","\u7884\u7885\u7886\u7888\u788a\u788b\u788f\u7890\u7892\u7894\u7895\u7896\u7899\u789d\u789e\u78a0\u78a2\u78a4\u78a6\u78a8",7,"\u78b5\u78b6\u78b7\u78b8\u78ba\u78bb\u78bc\u78bd\u78bf\u78c0\u78c2\u78c3\u78c4\u78c6\u78c7\u78c8\u78cc\u78cd\u78ce\u78cf\u78d1\u78d2\u78d3\u78d6\u78d7\u78d8\u78da",9],["b480","\u78e4\u78e5\u78e6\u78e7\u78e9\u78ea\u78eb\u78ed",4,"\u78f3\u78f5\u78f6\u78f8\u78f9\u78fb",5,"\u7902\u7903\u7904\u7906",6,"\u7840\u50a8\u77d7\u6410\u89e6\u5904\u63e3\u5ddd\u7a7f\u693d\u4f20\u8239\u5598\u4e32\u75ae\u7a97\u5e62\u5e8a\u95ef\u521b\u5439\u708a\u6376\u9524\u5782\u6625\u693f\u9187\u5507\u6df3\u7eaf\u8822\u6233\u7ef0\u75b5\u8328\u78c1\u96cc\u8f9e\u6148\u74f7\u8bcd\u6b64\u523a\u8d50\u6b21\u806a\u8471\u56f1\u5306\u4ece\u4e1b\u51d1\u7c97\u918b\u7c07\u4fc3\u8e7f\u7be1\u7a9c\u6467\u5d14\u50ac\u8106\u7601\u7cb9\u6dec\u7fe0\u6751\u5b58\u5bf8\u78cb\u64ae\u6413\u63aa\u632b\u9519\u642d\u8fbe\u7b54\u7629\u6253\u5927\u5446\u6b79\u50a3\u6234\u5e26\u6b86\u4ee3\u8d37\u888b\u5f85\u902e"],["b540","\u790d",5,"\u7914",9,"\u791f",4,"\u7925",14,"\u7935",4,"\u793d\u793f\u7942\u7943\u7944\u7945\u7947\u794a",8,"\u7954\u7955\u7958\u7959\u7961\u7963"],["b580","\u7964\u7966\u7969\u796a\u796b\u796c\u796e\u7970",6,"\u7979\u797b",4,"\u7982\u7983\u7986\u7987\u7988\u7989\u798b\u798c\u798d\u798e\u7990\u7991\u7992\u6020\u803d\u62c5\u4e39\u5355\u90f8\u63b8\u80c6\u65e6\u6c2e\u4f46\u60ee\u6de1\u8bde\u5f39\u86cb\u5f53\u6321\u515a\u8361\u6863\u5200\u6363\u8e48\u5012\u5c9b\u7977\u5bfc\u5230\u7a3b\u60bc\u9053\u76d7\u5fb7\u5f97\u7684\u8e6c\u706f\u767b\u7b49\u77aa\u51f3\u9093\u5824\u4f4e\u6ef4\u8fea\u654c\u7b1b\u72c4\u6da4\u7fdf\u5ae1\u62b5\u5e95\u5730\u8482\u7b2c\u5e1d\u5f1f\u9012\u7f14\u98a0\u6382\u6ec7\u7898\u70b9\u5178\u975b\u57ab\u7535\u4f43\u7538\u5e97\u60e6\u5960\u6dc0\u6bbf\u7889\u53fc\u96d5\u51cb\u5201\u6389\u540a\u9493\u8c03\u8dcc\u7239\u789f\u8776\u8fed\u8c0d\u53e0"],["b640","\u7993",6,"\u799b",11,"\u79a8",10,"\u79b4",4,"\u79bc\u79bf\u79c2\u79c4\u79c5\u79c7\u79c8\u79ca\u79cc\u79ce\u79cf\u79d0\u79d3\u79d4\u79d6\u79d7\u79d9",5,"\u79e0\u79e1\u79e2\u79e5\u79e8\u79ea"],["b680","\u79ec\u79ee\u79f1",6,"\u79f9\u79fa\u79fc\u79fe\u79ff\u7a01\u7a04\u7a05\u7a07\u7a08\u7a09\u7a0a\u7a0c\u7a0f",4,"\u7a15\u7a16\u7a18\u7a19\u7a1b\u7a1c\u4e01\u76ef\u53ee\u9489\u9876\u9f0e\u952d\u5b9a\u8ba2\u4e22\u4e1c\u51ac\u8463\u61c2\u52a8\u680b\u4f97\u606b\u51bb\u6d1e\u515c\u6296\u6597\u9661\u8c46\u9017\u75d8\u90fd\u7763\u6bd2\u728a\u72ec\u8bfb\u5835\u7779\u8d4c\u675c\u9540\u809a\u5ea6\u6e21\u5992\u7aef\u77ed\u953b\u6bb5\u65ad\u7f0e\u5806\u5151\u961f\u5bf9\u58a9\u5428\u8e72\u6566\u987f\u56e4\u949d\u76fe\u9041\u6387\u54c6\u591a\u593a\u579b\u8eb2\u6735\u8dfa\u8235\u5241\u60f0\u5815\u86fe\u5ce8\u9e45\u4fc4\u989d\u8bb9\u5a25\u6076\u5384\u627c\u904f\u9102\u997f\u6069\u800c\u513f\u8033\u5c14\u9975\u6d31\u4e8c"],["b740","\u7a1d\u7a1f\u7a21\u7a22\u7a24",14,"\u7a34\u7a35\u7a36\u7a38\u7a3a\u7a3e\u7a40",5,"\u7a47",9,"\u7a52",4,"\u7a58",16],["b780","\u7a69",6,"\u7a71\u7a72\u7a73\u7a75\u7a7b\u7a7c\u7a7d\u7a7e\u7a82\u7a85\u7a87\u7a89\u7a8a\u7a8b\u7a8c\u7a8e\u7a8f\u7a90\u7a93\u7a94\u7a99\u7a9a\u7a9b\u7a9e\u7aa1\u7aa2\u8d30\u53d1\u7f5a\u7b4f\u4f10\u4e4f\u9600\u6cd5\u73d0\u85e9\u5e06\u756a\u7ffb\u6a0a\u77fe\u9492\u7e41\u51e1\u70e6\u53cd\u8fd4\u8303\u8d29\u72af\u996d\u6cdb\u574a\u82b3\u65b9\u80aa\u623f\u9632\u59a8\u4eff\u8bbf\u7eba\u653e\u83f2\u975e\u5561\u98de\u80a5\u532a\u8bfd\u5420\u80ba\u5e9f\u6cb8\u8d39\u82ac\u915a\u5429\u6c1b\u5206\u7eb7\u575f\u711a\u6c7e\u7c89\u594b\u4efd\u5fff\u6124\u7caa\u4e30\u5c01\u67ab\u8702\u5cf0\u950b\u98ce\u75af\u70fd\u9022\u51af\u7f1d\u8bbd\u5949\u51e4\u4f5b\u5426\u592b\u6577\u80a4\u5b75\u6276\u62c2\u8f90\u5e45\u6c1f\u7b26\u4f0f\u4fd8\u670d"],["b840","\u7aa3\u7aa4\u7aa7\u7aa9\u7aaa\u7aab\u7aae",4,"\u7ab4",10,"\u7ac0",10,"\u7acc",9,"\u7ad7\u7ad8\u7ada\u7adb\u7adc\u7add\u7ae1\u7ae2\u7ae4\u7ae7",5,"\u7aee\u7af0\u7af1\u7af2\u7af3"],["b880","\u7af4",4,"\u7afb\u7afc\u7afe\u7b00\u7b01\u7b02\u7b05\u7b07\u7b09\u7b0c\u7b0d\u7b0e\u7b10\u7b12\u7b13\u7b16\u7b17\u7b18\u7b1a\u7b1c\u7b1d\u7b1f\u7b21\u7b22\u7b23\u7b27\u7b29\u7b2d\u6d6e\u6daa\u798f\u88b1\u5f17\u752b\u629a\u8f85\u4fef\u91dc\u65a7\u812f\u8151\u5e9c\u8150\u8d74\u526f\u8986\u8d4b\u590d\u5085\u4ed8\u961c\u7236\u8179\u8d1f\u5bcc\u8ba3\u9644\u5987\u7f1a\u5490\u5676\u560e\u8be5\u6539\u6982\u9499\u76d6\u6e89\u5e72\u7518\u6746\u67d1\u7aff\u809d\u8d76\u611f\u79c6\u6562\u8d63\u5188\u521a\u94a2\u7f38\u809b\u7eb2\u5c97\u6e2f\u6760\u7bd9\u768b\u9ad8\u818f\u7f94\u7cd5\u641e\u9550\u7a3f\u544a\u54e5\u6b4c\u6401\u6208\u9e3d\u80f3\u7599\u5272\u9769\u845b\u683c\u86e4\u9601\u9694\u94ec\u4e2a\u5404\u7ed9\u6839\u8ddf\u8015\u66f4\u5e9a\u7fb9"],["b940","\u7b2f\u7b30\u7b32\u7b34\u7b35\u7b36\u7b37\u7b39\u7b3b\u7b3d\u7b3f",5,"\u7b46\u7b48\u7b4a\u7b4d\u7b4e\u7b53\u7b55\u7b57\u7b59\u7b5c\u7b5e\u7b5f\u7b61\u7b63",10,"\u7b6f\u7b70\u7b73\u7b74\u7b76\u7b78\u7b7a\u7b7c\u7b7d\u7b7f\u7b81\u7b82\u7b83\u7b84\u7b86",6,"\u7b8e\u7b8f"],["b980","\u7b91\u7b92\u7b93\u7b96\u7b98\u7b99\u7b9a\u7b9b\u7b9e\u7b9f\u7ba0\u7ba3\u7ba4\u7ba5\u7bae\u7baf\u7bb0\u7bb2\u7bb3\u7bb5\u7bb6\u7bb7\u7bb9",7,"\u7bc2\u7bc3\u7bc4\u57c2\u803f\u6897\u5de5\u653b\u529f\u606d\u9f9a\u4f9b\u8eac\u516c\u5bab\u5f13\u5de9\u6c5e\u62f1\u8d21\u5171\u94a9\u52fe\u6c9f\u82df\u72d7\u57a2\u6784\u8d2d\u591f\u8f9c\u83c7\u5495\u7b8d\u4f30\u6cbd\u5b64\u59d1\u9f13\u53e4\u86ca\u9aa8\u8c37\u80a1\u6545\u987e\u56fa\u96c7\u522e\u74dc\u5250\u5be1\u6302\u8902\u4e56\u62d0\u602a\u68fa\u5173\u5b98\u51a0\u89c2\u7ba1\u9986\u7f50\u60ef\u704c\u8d2f\u5149\u5e7f\u901b\u7470\u89c4\u572d\u7845\u5f52\u9f9f\u95fa\u8f68\u9b3c\u8be1\u7678\u6842\u67dc\u8dea\u8d35\u523d\u8f8a\u6eda\u68cd\u9505\u90ed\u56fd\u679c\u88f9\u8fc7\u54c8"],["ba40","\u7bc5\u7bc8\u7bc9\u7bca\u7bcb\u7bcd\u7bce\u7bcf\u7bd0\u7bd2\u7bd4",4,"\u7bdb\u7bdc\u7bde\u7bdf\u7be0\u7be2\u7be3\u7be4\u7be7\u7be8\u7be9\u7beb\u7bec\u7bed\u7bef\u7bf0\u7bf2",4,"\u7bf8\u7bf9\u7bfa\u7bfb\u7bfd\u7bff",7,"\u7c08\u7c09\u7c0a\u7c0d\u7c0e\u7c10",5,"\u7c17\u7c18\u7c19"],["ba80","\u7c1a",4,"\u7c20",5,"\u7c28\u7c29\u7c2b",12,"\u7c39",5,"\u7c42\u9ab8\u5b69\u6d77\u6c26\u4ea5\u5bb3\u9a87\u9163\u61a8\u90af\u97e9\u542b\u6db5\u5bd2\u51fd\u558a\u7f55\u7ff0\u64bc\u634d\u65f1\u61be\u608d\u710a\u6c57\u6c49\u592f\u676d\u822a\u58d5\u568e\u8c6a\u6beb\u90dd\u597d\u8017\u53f7\u6d69\u5475\u559d\u8377\u83cf\u6838\u79be\u548c\u4f55\u5408\u76d2\u8c89\u9602\u6cb3\u6db8\u8d6b\u8910\u9e64\u8d3a\u563f\u9ed1\u75d5\u5f88\u72e0\u6068\u54fc\u4ea8\u6a2a\u8861\u6052\u8f70\u54c4\u70d8\u8679\u9e3f\u6d2a\u5b8f\u5f18\u7ea2\u5589\u4faf\u7334\u543c\u539a\u5019\u540e\u547c\u4e4e\u5ffd\u745a\u58f6\u846b\u80e1\u8774\u72d0\u7cca\u6e56"],["bb40","\u7c43",9,"\u7c4e",36,"\u7c75",5,"\u7c7e",9],["bb80","\u7c88\u7c8a",6,"\u7c93\u7c94\u7c96\u7c99\u7c9a\u7c9b\u7ca0\u7ca1\u7ca3\u7ca6\u7ca7\u7ca8\u7ca9\u7cab\u7cac\u7cad\u7caf\u7cb0\u7cb4",4,"\u7cba\u7cbb\u5f27\u864e\u552c\u62a4\u4e92\u6caa\u6237\u82b1\u54d7\u534e\u733e\u6ed1\u753b\u5212\u5316\u8bdd\u69d0\u5f8a\u6000\u6dee\u574f\u6b22\u73af\u6853\u8fd8\u7f13\u6362\u60a3\u5524\u75ea\u8c62\u7115\u6da3\u5ba6\u5e7b\u8352\u614c\u9ec4\u78fa\u8757\u7c27\u7687\u51f0\u60f6\u714c\u6643\u5e4c\u604d\u8c0e\u7070\u6325\u8f89\u5fbd\u6062\u86d4\u56de\u6bc1\u6094\u6167\u5349\u60e0\u6666\u8d3f\u79fd\u4f1a\u70e9\u6c47\u8bb3\u8bf2\u7ed8\u8364\u660f\u5a5a\u9b42\u6d51\u6df7\u8c41\u6d3b\u4f19\u706b\u83b7\u6216\u60d1\u970d\u8d27\u7978\u51fb\u573e\u57fa\u673a\u7578\u7a3d\u79ef\u7b95"],["bc40","\u7cbf\u7cc0\u7cc2\u7cc3\u7cc4\u7cc6\u7cc9\u7ccb\u7cce",6,"\u7cd8\u7cda\u7cdb\u7cdd\u7cde\u7ce1",6,"\u7ce9",5,"\u7cf0",7,"\u7cf9\u7cfa\u7cfc",13,"\u7d0b",5],["bc80","\u7d11",14,"\u7d21\u7d23\u7d24\u7d25\u7d26\u7d28\u7d29\u7d2a\u7d2c\u7d2d\u7d2e\u7d30",6,"\u808c\u9965\u8ff9\u6fc0\u8ba5\u9e21\u59ec\u7ee9\u7f09\u5409\u6781\u68d8\u8f91\u7c4d\u96c6\u53ca\u6025\u75be\u6c72\u5373\u5ac9\u7ea7\u6324\u51e0\u810a\u5df1\u84df\u6280\u5180\u5b63\u4f0e\u796d\u5242\u60b8\u6d4e\u5bc4\u5bc2\u8ba1\u8bb0\u65e2\u5fcc\u9645\u5993\u7ee7\u7eaa\u5609\u67b7\u5939\u4f73\u5bb6\u52a0\u835a\u988a\u8d3e\u7532\u94be\u5047\u7a3c\u4ef7\u67b6\u9a7e\u5ac1\u6b7c\u76d1\u575a\u5c16\u7b3a\u95f4\u714e\u517c\u80a9\u8270\u5978\u7f04\u8327\u68c0\u67ec\u78b1\u7877\u62e3\u6361\u7b80\u4fed\u526a\u51cf\u8350\u69db\u9274\u8df5\u8d31\u89c1\u952e\u7bad\u4ef6"],["bd40","\u7d37",54,"\u7d6f",7],["bd80","\u7d78",32,"\u5065\u8230\u5251\u996f\u6e10\u6e85\u6da7\u5efa\u50f5\u59dc\u5c06\u6d46\u6c5f\u7586\u848b\u6868\u5956\u8bb2\u5320\u9171\u964d\u8549\u6912\u7901\u7126\u80f6\u4ea4\u90ca\u6d47\u9a84\u5a07\u56bc\u6405\u94f0\u77eb\u4fa5\u811a\u72e1\u89d2\u997a\u7f34\u7ede\u527f\u6559\u9175\u8f7f\u8f83\u53eb\u7a96\u63ed\u63a5\u7686\u79f8\u8857\u9636\u622a\u52ab\u8282\u6854\u6770\u6377\u776b\u7aed\u6d01\u7ed3\u89e3\u59d0\u6212\u85c9\u82a5\u754c\u501f\u4ecb\u75a5\u8beb\u5c4a\u5dfe\u7b4b\u65a4\u91d1\u4eca\u6d25\u895f\u7d27\u9526\u4ec5\u8c28\u8fdb\u9773\u664b\u7981\u8fd1\u70ec\u6d78"],["be40","\u7d99",12,"\u7da7",6,"\u7daf",42],["be80","\u7dda",32,"\u5c3d\u52b2\u8346\u5162\u830e\u775b\u6676\u9cb8\u4eac\u60ca\u7cbe\u7cb3\u7ecf\u4e95\u8b66\u666f\u9888\u9759\u5883\u656c\u955c\u5f84\u75c9\u9756\u7adf\u7ade\u51c0\u70af\u7a98\u63ea\u7a76\u7ea0\u7396\u97ed\u4e45\u7078\u4e5d\u9152\u53a9\u6551\u65e7\u81fc\u8205\u548e\u5c31\u759a\u97a0\u62d8\u72d9\u75bd\u5c45\u9a79\u83ca\u5c40\u5480\u77e9\u4e3e\u6cae\u805a\u62d2\u636e\u5de8\u5177\u8ddd\u8e1e\u952f\u4ff1\u53e5\u60e7\u70ac\u5267\u6350\u9e43\u5a1f\u5026\u7737\u5377\u7ee2\u6485\u652b\u6289\u6398\u5014\u7235\u89c9\u51b3\u8bc0\u7edd\u5747\u83cc\u94a7\u519b\u541b\u5cfb"],["bf40","\u7dfb",62],["bf80","\u7e3a\u7e3c",4,"\u7e42",4,"\u7e48",21,"\u4fca\u7ae3\u6d5a\u90e1\u9a8f\u5580\u5496\u5361\u54af\u5f00\u63e9\u6977\u51ef\u6168\u520a\u582a\u52d8\u574e\u780d\u770b\u5eb7\u6177\u7ce0\u625b\u6297\u4ea2\u7095\u8003\u62f7\u70e4\u9760\u5777\u82db\u67ef\u68f5\u78d5\u9897\u79d1\u58f3\u54b3\u53ef\u6e34\u514b\u523b\u5ba2\u8bfe\u80af\u5543\u57a6\u6073\u5751\u542d\u7a7a\u6050\u5b54\u63a7\u62a0\u53e3\u6263\u5bc7\u67af\u54ed\u7a9f\u82e6\u9177\u5e93\u88e4\u5938\u57ae\u630e\u8de8\u80ef\u5757\u7b77\u4fa9\u5feb\u5bbd\u6b3e\u5321\u7b50\u72c2\u6846\u77ff\u7736\u65f7\u51b5\u4e8f\u76d4\u5cbf\u7aa5\u8475\u594e\u9b41\u5080"],["c040","\u7e5e",35,"\u7e83",23,"\u7e9c\u7e9d\u7e9e"],["c080","\u7eae\u7eb4\u7ebb\u7ebc\u7ed6\u7ee4\u7eec\u7ef9\u7f0a\u7f10\u7f1e\u7f37\u7f39\u7f3b",6,"\u7f43\u7f46",9,"\u7f52\u7f53\u9988\u6127\u6e83\u5764\u6606\u6346\u56f0\u62ec\u6269\u5ed3\u9614\u5783\u62c9\u5587\u8721\u814a\u8fa3\u5566\u83b1\u6765\u8d56\u84dd\u5a6a\u680f\u62e6\u7bee\u9611\u5170\u6f9c\u8c30\u63fd\u89c8\u61d2\u7f06\u70c2\u6ee5\u7405\u6994\u72fc\u5eca\u90ce\u6717\u6d6a\u635e\u52b3\u7262\u8001\u4f6c\u59e5\u916a\u70d9\u6d9d\u52d2\u4e50\u96f7\u956d\u857e\u78ca\u7d2f\u5121\u5792\u64c2\u808b\u7c7b\u6cea\u68f1\u695e\u51b7\u5398\u68a8\u7281\u9ece\u7bf1\u72f8\u79bb\u6f13\u7406\u674e\u91cc\u9ca4\u793c\u8389\u8354\u540f\u6817\u4e3d\u5389\u52b1\u783e\u5386\u5229\u5088\u4f8b\u4fd0"],["c140","\u7f56\u7f59\u7f5b\u7f5c\u7f5d\u7f5e\u7f60\u7f63",4,"\u7f6b\u7f6c\u7f6d\u7f6f\u7f70\u7f73\u7f75\u7f76\u7f77\u7f78\u7f7a\u7f7b\u7f7c\u7f7d\u7f7f\u7f80\u7f82",7,"\u7f8b\u7f8d\u7f8f",4,"\u7f95",4,"\u7f9b\u7f9c\u7fa0\u7fa2\u7fa3\u7fa5\u7fa6\u7fa8",6,"\u7fb1"],["c180","\u7fb3",4,"\u7fba\u7fbb\u7fbe\u7fc0\u7fc2\u7fc3\u7fc4\u7fc6\u7fc7\u7fc8\u7fc9\u7fcb\u7fcd\u7fcf",4,"\u7fd6\u7fd7\u7fd9",5,"\u7fe2\u7fe3\u75e2\u7acb\u7c92\u6ca5\u96b6\u529b\u7483\u54e9\u4fe9\u8054\u83b2\u8fde\u9570\u5ec9\u601c\u6d9f\u5e18\u655b\u8138\u94fe\u604b\u70bc\u7ec3\u7cae\u51c9\u6881\u7cb1\u826f\u4e24\u8f86\u91cf\u667e\u4eae\u8c05\u64a9\u804a\u50da\u7597\u71ce\u5be5\u8fbd\u6f66\u4e86\u6482\u9563\u5ed6\u6599\u5217\u88c2\u70c8\u52a3\u730e\u7433\u6797\u78f7\u9716\u4e34\u90bb\u9cde\u6dcb\u51db\u8d41\u541d\u62ce\u73b2\u83f1\u96f6\u9f84\u94c3\u4f36\u7f9a\u51cc\u7075\u9675\u5cad\u9886\u53e6\u4ee4\u6e9c\u7409\u69b4\u786b\u998f\u7559\u5218\u7624\u6d41\u67f3\u516d\u9f99\u804b\u5499\u7b3c\u7abf"],["c240","\u7fe4\u7fe7\u7fe8\u7fea\u7feb\u7fec\u7fed\u7fef\u7ff2\u7ff4",6,"\u7ffd\u7ffe\u7fff\u8002\u8007\u8008\u8009\u800a\u800e\u800f\u8011\u8013\u801a\u801b\u801d\u801e\u801f\u8021\u8023\u8024\u802b",5,"\u8032\u8034\u8039\u803a\u803c\u803e\u8040\u8041\u8044\u8045\u8047\u8048\u8049\u804e\u804f\u8050\u8051\u8053\u8055\u8056\u8057"],["c280","\u8059\u805b",13,"\u806b",5,"\u8072",11,"\u9686\u5784\u62e2\u9647\u697c\u5a04\u6402\u7bd3\u6f0f\u964b\u82a6\u5362\u9885\u5e90\u7089\u63b3\u5364\u864f\u9c81\u9e93\u788c\u9732\u8def\u8d42\u9e7f\u6f5e\u7984\u5f55\u9646\u622e\u9a74\u5415\u94dd\u4fa3\u65c5\u5c65\u5c61\u7f15\u8651\u6c2f\u5f8b\u7387\u6ee4\u7eff\u5ce6\u631b\u5b6a\u6ee6\u5375\u4e71\u63a0\u7565\u62a1\u8f6e\u4f26\u4ed1\u6ca6\u7eb6\u8bba\u841d\u87ba\u7f57\u903b\u9523\u7ba9\u9aa1\u88f8\u843d\u6d1b\u9a86\u7edc\u5988\u9ebb\u739b\u7801\u8682\u9a6c\u9a82\u561b\u5417\u57cb\u4e70\u9ea6\u5356\u8fc8\u8109\u7792\u9992\u86ee\u6ee1\u8513\u66fc\u6162\u6f2b"],["c340","\u807e\u8081\u8082\u8085\u8088\u808a\u808d",5,"\u8094\u8095\u8097\u8099\u809e\u80a3\u80a6\u80a7\u80a8\u80ac\u80b0\u80b3\u80b5\u80b6\u80b8\u80b9\u80bb\u80c5\u80c7",4,"\u80cf",6,"\u80d8\u80df\u80e0\u80e2\u80e3\u80e6\u80ee\u80f5\u80f7\u80f9\u80fb\u80fe\u80ff\u8100\u8101\u8103\u8104\u8105\u8107\u8108\u810b"],["c380","\u810c\u8115\u8117\u8119\u811b\u811c\u811d\u811f",12,"\u812d\u812e\u8130\u8133\u8134\u8135\u8137\u8139",4,"\u813f\u8c29\u8292\u832b\u76f2\u6c13\u5fd9\u83bd\u732b\u8305\u951a\u6bdb\u77db\u94c6\u536f\u8302\u5192\u5e3d\u8c8c\u8d38\u4e48\u73ab\u679a\u6885\u9176\u9709\u7164\u6ca1\u7709\u5a92\u9541\u6bcf\u7f8e\u6627\u5bd0\u59b9\u5a9a\u95e8\u95f7\u4eec\u840c\u8499\u6aac\u76df\u9530\u731b\u68a6\u5b5f\u772f\u919a\u9761\u7cdc\u8ff7\u8c1c\u5f25\u7c73\u79d8\u89c5\u6ccc\u871c\u5bc6\u5e42\u68c9\u7720\u7ef5\u5195\u514d\u52c9\u5a29\u7f05\u9762\u82d7\u63cf\u7784\u85d0\u79d2\u6e3a\u5e99\u5999\u8511\u706d\u6c11\u62bf\u76bf\u654f\u60af\u95fd\u660e\u879f\u9e23\u94ed\u540d\u547d\u8c2c\u6478"],["c440","\u8140",5,"\u8147\u8149\u814d\u814e\u814f\u8152\u8156\u8157\u8158\u815b",4,"\u8161\u8162\u8163\u8164\u8166\u8168\u816a\u816b\u816c\u816f\u8172\u8173\u8175\u8176\u8177\u8178\u8181\u8183",4,"\u8189\u818b\u818c\u818d\u818e\u8190\u8192",5,"\u8199\u819a\u819e",4,"\u81a4\u81a5"],["c480","\u81a7\u81a9\u81ab",7,"\u81b4",5,"\u81bc\u81bd\u81be\u81bf\u81c4\u81c5\u81c7\u81c8\u81c9\u81cb\u81cd",6,"\u6479\u8611\u6a21\u819c\u78e8\u6469\u9b54\u62b9\u672b\u83ab\u58a8\u9ed8\u6cab\u6f20\u5bde\u964c\u8c0b\u725f\u67d0\u62c7\u7261\u4ea9\u59c6\u6bcd\u5893\u66ae\u5e55\u52df\u6155\u6728\u76ee\u7766\u7267\u7a46\u62ff\u54ea\u5450\u94a0\u90a3\u5a1c\u7eb3\u6c16\u4e43\u5976\u8010\u5948\u5357\u7537\u96be\u56ca\u6320\u8111\u607c\u95f9\u6dd6\u5462\u9981\u5185\u5ae9\u80fd\u59ae\u9713\u502a\u6ce5\u5c3c\u62df\u4f60\u533f\u817b\u9006\u6eba\u852b\u62c8\u5e74\u78be\u64b5\u637b\u5ff5\u5a18\u917f\u9e1f\u5c3f\u634f\u8042\u5b7d\u556e\u954a\u954d\u6d85\u60a8\u67e0\u72de\u51dd\u5b81"],["c540","\u81d4",14,"\u81e4\u81e5\u81e6\u81e8\u81e9\u81eb\u81ee",4,"\u81f5",5,"\u81fd\u81ff\u8203\u8207",4,"\u820e\u820f\u8211\u8213\u8215",5,"\u821d\u8220\u8224\u8225\u8226\u8227\u8229\u822e\u8232\u823a\u823c\u823d\u823f"],["c580","\u8240\u8241\u8242\u8243\u8245\u8246\u8248\u824a\u824c\u824d\u824e\u8250",7,"\u8259\u825b\u825c\u825d\u825e\u8260",7,"\u8269\u62e7\u6cde\u725b\u626d\u94ae\u7ebd\u8113\u6d53\u519c\u5f04\u5974\u52aa\u6012\u5973\u6696\u8650\u759f\u632a\u61e6\u7cef\u8bfa\u54e6\u6b27\u9e25\u6bb4\u85d5\u5455\u5076\u6ca4\u556a\u8db4\u722c\u5e15\u6015\u7436\u62cd\u6392\u724c\u5f98\u6e43\u6d3e\u6500\u6f58\u76d8\u78d0\u76fc\u7554\u5224\u53db\u4e53\u5e9e\u65c1\u802a\u80d6\u629b\u5486\u5228\u70ae\u888d\u8dd1\u6ce1\u5478\u80da\u57f9\u88f4\u8d54\u966a\u914d\u4f69\u6c9b\u55b7\u76c6\u7830\u62a8\u70f9\u6f8e\u5f6d\u84ec\u68da\u787c\u7bf7\u81a8\u670b\u9e4f\u6367\u78b0\u576f\u7812\u9739\u6279\u62ab\u5288\u7435\u6bd7"],["c640","\u826a\u826b\u826c\u826d\u8271\u8275\u8276\u8277\u8278\u827b\u827c\u8280\u8281\u8283\u8285\u8286\u8287\u8289\u828c\u8290\u8293\u8294\u8295\u8296\u829a\u829b\u829e\u82a0\u82a2\u82a3\u82a7\u82b2\u82b5\u82b6\u82ba\u82bb\u82bc\u82bf\u82c0\u82c2\u82c3\u82c5\u82c6\u82c9\u82d0\u82d6\u82d9\u82da\u82dd\u82e2\u82e7\u82e8\u82e9\u82ea\u82ec\u82ed\u82ee\u82f0\u82f2\u82f3\u82f5\u82f6\u82f8"],["c680","\u82fa\u82fc",4,"\u830a\u830b\u830d\u8310\u8312\u8313\u8316\u8318\u8319\u831d",9,"\u8329\u832a\u832e\u8330\u8332\u8337\u833b\u833d\u5564\u813e\u75b2\u76ae\u5339\u75de\u50fb\u5c41\u8b6c\u7bc7\u504f\u7247\u9a97\u98d8\u6f02\u74e2\u7968\u6487\u77a5\u62fc\u9891\u8d2b\u54c1\u8058\u4e52\u576a\u82f9\u840d\u5e73\u51ed\u74f6\u8bc4\u5c4f\u5761\u6cfc\u9887\u5a46\u7834\u9b44\u8feb\u7c95\u5256\u6251\u94fa\u4ec6\u8386\u8461\u83e9\u84b2\u57d4\u6734\u5703\u666e\u6d66\u8c31\u66dd\u7011\u671f\u6b3a\u6816\u621a\u59bb\u4e03\u51c4\u6f06\u67d2\u6c8f\u5176\u68cb\u5947\u6b67\u7566\u5d0e\u8110\u9f50\u65d7\u7948\u7941\u9a91\u8d77\u5c82\u4e5e\u4f01\u542f\u5951\u780c\u5668\u6c14\u8fc4\u5f03\u6c7d\u6ce3\u8bab\u6390"],["c740","\u833e\u833f\u8341\u8342\u8344\u8345\u8348\u834a",4,"\u8353\u8355",4,"\u835d\u8362\u8370",6,"\u8379\u837a\u837e",6,"\u8387\u8388\u838a\u838b\u838c\u838d\u838f\u8390\u8391\u8394\u8395\u8396\u8397\u8399\u839a\u839d\u839f\u83a1",6,"\u83ac\u83ad\u83ae"],["c780","\u83af\u83b5\u83bb\u83be\u83bf\u83c2\u83c3\u83c4\u83c6\u83c8\u83c9\u83cb\u83cd\u83ce\u83d0\u83d1\u83d2\u83d3\u83d5\u83d7\u83d9\u83da\u83db\u83de\u83e2\u83e3\u83e4\u83e6\u83e7\u83e8\u83eb\u83ec\u83ed\u6070\u6d3d\u7275\u6266\u948e\u94c5\u5343\u8fc1\u7b7e\u4edf\u8c26\u4e7e\u9ed4\u94b1\u94b3\u524d\u6f5c\u9063\u6d45\u8c34\u5811\u5d4c\u6b20\u6b49\u67aa\u545b\u8154\u7f8c\u5899\u8537\u5f3a\u62a2\u6a47\u9539\u6572\u6084\u6865\u77a7\u4e54\u4fa8\u5de7\u9798\u64ac\u7fd8\u5ced\u4fcf\u7a8d\u5207\u8304\u4e14\u602f\u7a83\u94a6\u4fb5\u4eb2\u79e6\u7434\u52e4\u82b9\u64d2\u79bd\u5bdd\u6c81\u9752\u8f7b\u6c22\u503e\u537f\u6e05\u64ce\u6674\u6c30\u60c5\u9877\u8bf7\u5e86\u743c\u7a77\u79cb\u4e18\u90b1\u7403\u6c42\u56da\u914b\u6cc5\u8d8b\u533a\u86c6\u66f2\u8eaf\u5c48\u9a71\u6e20"],["c840","\u83ee\u83ef\u83f3",4,"\u83fa\u83fb\u83fc\u83fe\u83ff\u8400\u8402\u8405\u8407\u8408\u8409\u840a\u8410\u8412",5,"\u8419\u841a\u841b\u841e",5,"\u8429",7,"\u8432",5,"\u8439\u843a\u843b\u843e",7,"\u8447\u8448\u8449"],["c880","\u844a",6,"\u8452",4,"\u8458\u845d\u845e\u845f\u8460\u8462\u8464",4,"\u846a\u846e\u846f\u8470\u8472\u8474\u8477\u8479\u847b\u847c\u53d6\u5a36\u9f8b\u8da3\u53bb\u5708\u98a7\u6743\u919b\u6cc9\u5168\u75ca\u62f3\u72ac\u5238\u529d\u7f3a\u7094\u7638\u5374\u9e4a\u69b7\u786e\u96c0\u88d9\u7fa4\u7136\u71c3\u5189\u67d3\u74e4\u58e4\u6518\u56b7\u8ba9\u9976\u6270\u7ed5\u60f9\u70ed\u58ec\u4ec1\u4eba\u5fcd\u97e7\u4efb\u8ba4\u5203\u598a\u7eab\u6254\u4ecd\u65e5\u620e\u8338\u84c9\u8363\u878d\u7194\u6eb6\u5bb9\u7ed2\u5197\u63c9\u67d4\u8089\u8339\u8815\u5112\u5b7a\u5982\u8fb1\u4e73\u6c5d\u5165\u8925\u8f6f\u962e\u854a\u745e\u9510\u95f0\u6da6\u82e5\u5f31\u6492\u6d12\u8428\u816e\u9cc3\u585e\u8d5b\u4e09\u53c1"],["c940","\u847d",4,"\u8483\u8484\u8485\u8486\u848a\u848d\u848f",7,"\u8498\u849a\u849b\u849d\u849e\u849f\u84a0\u84a2",12,"\u84b0\u84b1\u84b3\u84b5\u84b6\u84b7\u84bb\u84bc\u84be\u84c0\u84c2\u84c3\u84c5\u84c6\u84c7\u84c8\u84cb\u84cc\u84ce\u84cf\u84d2\u84d4\u84d5\u84d7"],["c980","\u84d8",4,"\u84de\u84e1\u84e2\u84e4\u84e7",4,"\u84ed\u84ee\u84ef\u84f1",10,"\u84fd\u84fe\u8500\u8501\u8502\u4f1e\u6563\u6851\u55d3\u4e27\u6414\u9a9a\u626b\u5ac2\u745f\u8272\u6da9\u68ee\u50e7\u838e\u7802\u6740\u5239\u6c99\u7eb1\u50bb\u5565\u715e\u7b5b\u6652\u73ca\u82eb\u6749\u5c71\u5220\u717d\u886b\u95ea\u9655\u64c5\u8d61\u81b3\u5584\u6c55\u6247\u7f2e\u5892\u4f24\u5546\u8d4f\u664c\u4e0a\u5c1a\u88f3\u68a2\u634e\u7a0d\u70e7\u828d\u52fa\u97f6\u5c11\u54e8\u90b5\u7ecd\u5962\u8d4a\u86c7\u820c\u820d\u8d66\u6444\u5c04\u6151\u6d89\u793e\u8bbe\u7837\u7533\u547b\u4f38\u8eab\u6df1\u5a20\u7ec5\u795e\u6c88\u5ba1\u5a76\u751a\u80be\u614e\u6e17\u58f0\u751f\u7525\u7272\u5347\u7ef3"],["ca40","\u8503",8,"\u850d\u850e\u850f\u8510\u8512\u8514\u8515\u8516\u8518\u8519\u851b\u851c\u851d\u851e\u8520\u8522",8,"\u852d",9,"\u853e",4,"\u8544\u8545\u8546\u8547\u854b",10],["ca80","\u8557\u8558\u855a\u855b\u855c\u855d\u855f",4,"\u8565\u8566\u8567\u8569",8,"\u8573\u8575\u8576\u8577\u8578\u857c\u857d\u857f\u8580\u8581\u7701\u76db\u5269\u80dc\u5723\u5e08\u5931\u72ee\u65bd\u6e7f\u8bd7\u5c38\u8671\u5341\u77f3\u62fe\u65f6\u4ec0\u98df\u8680\u5b9e\u8bc6\u53f2\u77e2\u4f7f\u5c4e\u9a76\u59cb\u5f0f\u793a\u58eb\u4e16\u67ff\u4e8b\u62ed\u8a93\u901d\u52bf\u662f\u55dc\u566c\u9002\u4ed5\u4f8d\u91ca\u9970\u6c0f\u5e02\u6043\u5ba4\u89c6\u8bd5\u6536\u624b\u9996\u5b88\u5bff\u6388\u552e\u53d7\u7626\u517d\u852c\u67a2\u68b3\u6b8a\u6292\u8f93\u53d4\u8212\u6dd1\u758f\u4e66\u8d4e\u5b70\u719f\u85af\u6691\u66d9\u7f72\u8700\u9ecd\u9f20\u5c5e\u672f\u8ff0\u6811\u675f\u620d\u7ad6\u5885\u5eb6\u6570\u6f31"],["cb40","\u8582\u8583\u8586\u8588",6,"\u8590",10,"\u859d",6,"\u85a5\u85a6\u85a7\u85a9\u85ab\u85ac\u85ad\u85b1",5,"\u85b8\u85ba",6,"\u85c2",6,"\u85ca",4,"\u85d1\u85d2"],["cb80","\u85d4\u85d6",5,"\u85dd",6,"\u85e5\u85e6\u85e7\u85e8\u85ea",14,"\u6055\u5237\u800d\u6454\u8870\u7529\u5e05\u6813\u62f4\u971c\u53cc\u723d\u8c01\u6c34\u7761\u7a0e\u542e\u77ac\u987a\u821c\u8bf4\u7855\u6714\u70c1\u65af\u6495\u5636\u601d\u79c1\u53f8\u4e1d\u6b7b\u8086\u5bfa\u55e3\u56db\u4f3a\u4f3c\u9972\u5df3\u677e\u8038\u6002\u9882\u9001\u5b8b\u8bbc\u8bf5\u641c\u8258\u64de\u55fd\u82cf\u9165\u4fd7\u7d20\u901f\u7c9f\u50f3\u5851\u6eaf\u5bbf\u8bc9\u8083\u9178\u849c\u7b97\u867d\u968b\u968f\u7ee5\u9ad3\u788e\u5c81\u7a57\u9042\u96a7\u795f\u5b59\u635f\u7b0b\u84d1\u68ad\u5506\u7f29\u7410\u7d22\u9501\u6240\u584c\u4ed6\u5b83\u5979\u5854"],["cc40","\u85f9\u85fa\u85fc\u85fd\u85fe\u8600",4,"\u8606",10,"\u8612\u8613\u8614\u8615\u8617",15,"\u8628\u862a",13,"\u8639\u863a\u863b\u863d\u863e\u863f\u8640"],["cc80","\u8641",11,"\u8652\u8653\u8655",4,"\u865b\u865c\u865d\u865f\u8660\u8661\u8663",7,"\u736d\u631e\u8e4b\u8e0f\u80ce\u82d4\u62ac\u53f0\u6cf0\u915e\u592a\u6001\u6c70\u574d\u644a\u8d2a\u762b\u6ee9\u575b\u6a80\u75f0\u6f6d\u8c2d\u8c08\u5766\u6bef\u8892\u78b3\u63a2\u53f9\u70ad\u6c64\u5858\u642a\u5802\u68e0\u819b\u5510\u7cd6\u5018\u8eba\u6dcc\u8d9f\u70eb\u638f\u6d9b\u6ed4\u7ee6\u8404\u6843\u9003\u6dd8\u9676\u8ba8\u5957\u7279\u85e4\u817e\u75bc\u8a8a\u68af\u5254\u8e22\u9511\u63d0\u9898\u8e44\u557c\u4f53\u66ff\u568f\u60d5\u6d95\u5243\u5c49\u5929\u6dfb\u586b\u7530\u751c\u606c\u8214\u8146\u6311\u6761\u8fe2\u773a\u8df3\u8d34\u94c1\u5e16\u5385\u542c\u70c3"],["cd40","\u866d\u866f\u8670\u8672",6,"\u8683",6,"\u868e",4,"\u8694\u8696",5,"\u869e",4,"\u86a5\u86a6\u86ab\u86ad\u86ae\u86b2\u86b3\u86b7\u86b8\u86b9\u86bb",4,"\u86c1\u86c2\u86c3\u86c5\u86c8\u86cc\u86cd\u86d2\u86d3\u86d5\u86d6\u86d7\u86da\u86dc"],["cd80","\u86dd\u86e0\u86e1\u86e2\u86e3\u86e5\u86e6\u86e7\u86e8\u86ea\u86eb\u86ec\u86ef\u86f5\u86f6\u86f7\u86fa\u86fb\u86fc\u86fd\u86ff\u8701\u8704\u8705\u8706\u870b\u870c\u870e\u870f\u8710\u8711\u8714\u8716\u6c40\u5ef7\u505c\u4ead\u5ead\u633a\u8247\u901a\u6850\u916e\u77b3\u540c\u94dc\u5f64\u7ae5\u6876\u6345\u7b52\u7edf\u75db\u5077\u6295\u5934\u900f\u51f8\u79c3\u7a81\u56fe\u5f92\u9014\u6d82\u5c60\u571f\u5410\u5154\u6e4d\u56e2\u63a8\u9893\u817f\u8715\u892a\u9000\u541e\u5c6f\u81c0\u62d6\u6258\u8131\u9e35\u9640\u9a6e\u9a7c\u692d\u59a5\u62d3\u553e\u6316\u54c7\u86d9\u6d3c\u5a03\u74e6\u889c\u6b6a\u5916\u8c4c\u5f2f\u6e7e\u73a9\u987d\u4e38\u70f7\u5b8c\u7897\u633d\u665a\u7696\u60cb\u5b9b\u5a49\u4e07\u8155\u6c6a\u738b\u4ea1\u6789\u7f51\u5f80\u65fa\u671b\u5fd8\u5984\u5a01"],["ce40","\u8719\u871b\u871d\u871f\u8720\u8724\u8726\u8727\u8728\u872a\u872b\u872c\u872d\u872f\u8730\u8732\u8733\u8735\u8736\u8738\u8739\u873a\u873c\u873d\u8740",6,"\u874a\u874b\u874d\u874f\u8750\u8751\u8752\u8754\u8755\u8756\u8758\u875a",5,"\u8761\u8762\u8766",7,"\u876f\u8771\u8772\u8773\u8775"],["ce80","\u8777\u8778\u8779\u877a\u877f\u8780\u8781\u8784\u8786\u8787\u8789\u878a\u878c\u878e",4,"\u8794\u8795\u8796\u8798",6,"\u87a0",4,"\u5dcd\u5fae\u5371\u97e6\u8fdd\u6845\u56f4\u552f\u60df\u4e3a\u6f4d\u7ef4\u82c7\u840e\u59d4\u4f1f\u4f2a\u5c3e\u7eac\u672a\u851a\u5473\u754f\u80c3\u5582\u9b4f\u4f4d\u6e2d\u8c13\u5c09\u6170\u536b\u761f\u6e29\u868a\u6587\u95fb\u7eb9\u543b\u7a33\u7d0a\u95ee\u55e1\u7fc1\u74ee\u631d\u8717\u6da1\u7a9d\u6211\u65a1\u5367\u63e1\u6c83\u5deb\u545c\u94a8\u4e4c\u6c61\u8bec\u5c4b\u65e0\u829c\u68a7\u543e\u5434\u6bcb\u6b66\u4e94\u6342\u5348\u821e\u4f0d\u4fae\u575e\u620a\u96fe\u6664\u7269\u52ff\u52a1\u609f\u8bef\u6614\u7199\u6790\u897f\u7852\u77fd\u6670\u563b\u5438\u9521\u727a"],["cf40","\u87a5\u87a6\u87a7\u87a9\u87aa\u87ae\u87b0\u87b1\u87b2\u87b4\u87b6\u87b7\u87b8\u87b9\u87bb\u87bc\u87be\u87bf\u87c1",4,"\u87c7\u87c8\u87c9\u87cc",4,"\u87d4",6,"\u87dc\u87dd\u87de\u87df\u87e1\u87e2\u87e3\u87e4\u87e6\u87e7\u87e8\u87e9\u87eb\u87ec\u87ed\u87ef",9],["cf80","\u87fa\u87fb\u87fc\u87fd\u87ff\u8800\u8801\u8802\u8804",5,"\u880b",7,"\u8814\u8817\u8818\u8819\u881a\u881c",4,"\u8823\u7a00\u606f\u5e0c\u6089\u819d\u5915\u60dc\u7184\u70ef\u6eaa\u6c50\u7280\u6a84\u88ad\u5e2d\u4e60\u5ab3\u559c\u94e3\u6d17\u7cfb\u9699\u620f\u7ec6\u778e\u867e\u5323\u971e\u8f96\u6687\u5ce1\u4fa0\u72ed\u4e0b\u53a6\u590f\u5413\u6380\u9528\u5148\u4ed9\u9c9c\u7ea4\u54b8\u8d24\u8854\u8237\u95f2\u6d8e\u5f26\u5acc\u663e\u9669\u73b0\u732e\u53bf\u817a\u9985\u7fa1\u5baa\u9677\u9650\u7ebf\u76f8\u53a2\u9576\u9999\u7bb1\u8944\u6e58\u4e61\u7fd4\u7965\u8be6\u60f3\u54cd\u4eab\u9879\u5df7\u6a61\u50cf\u5411\u8c61\u8427\u785d\u9704\u524a\u54ee\u56a3\u9500\u6d88\u5bb5\u6dc6\u6653"],["d040","\u8824",13,"\u8833",5,"\u883a\u883b\u883d\u883e\u883f\u8841\u8842\u8843\u8846",5,"\u884e",5,"\u8855\u8856\u8858\u885a",6,"\u8866\u8867\u886a\u886d\u886f\u8871\u8873\u8874\u8875\u8876\u8878\u8879\u887a"],["d080","\u887b\u887c\u8880\u8883\u8886\u8887\u8889\u888a\u888c\u888e\u888f\u8890\u8891\u8893\u8894\u8895\u8897",4,"\u889d",4,"\u88a3\u88a5",5,"\u5c0f\u5b5d\u6821\u8096\u5578\u7b11\u6548\u6954\u4e9b\u6b47\u874e\u978b\u534f\u631f\u643a\u90aa\u659c\u80c1\u8c10\u5199\u68b0\u5378\u87f9\u61c8\u6cc4\u6cfb\u8c22\u5c51\u85aa\u82af\u950c\u6b23\u8f9b\u65b0\u5ffb\u5fc3\u4fe1\u8845\u661f\u8165\u7329\u60fa\u5174\u5211\u578b\u5f62\u90a2\u884c\u9192\u5e78\u674f\u6027\u59d3\u5144\u51f6\u80f8\u5308\u6c79\u96c4\u718a\u4f11\u4fee\u7f9e\u673d\u55c5\u9508\u79c0\u8896\u7ee3\u589f\u620c\u9700\u865a\u5618\u987b\u5f90\u8bb8\u84c4\u9157\u53d9\u65ed\u5e8f\u755c\u6064\u7d6e\u5a7f\u7eea\u7eed\u8f69\u55a7\u5ba3\u60ac\u65cb\u7384"],["d140","\u88ac\u88ae\u88af\u88b0\u88b2",4,"\u88b8\u88b9\u88ba\u88bb\u88bd\u88be\u88bf\u88c0\u88c3\u88c4\u88c7\u88c8\u88ca\u88cb\u88cc\u88cd\u88cf\u88d0\u88d1\u88d3\u88d6\u88d7\u88da",4,"\u88e0\u88e1\u88e6\u88e7\u88e9",6,"\u88f2\u88f5\u88f6\u88f7\u88fa\u88fb\u88fd\u88ff\u8900\u8901\u8903",5],["d180","\u8909\u890b",4,"\u8911\u8914",4,"\u891c",4,"\u8922\u8923\u8924\u8926\u8927\u8928\u8929\u892c\u892d\u892e\u892f\u8931\u8932\u8933\u8935\u8937\u9009\u7663\u7729\u7eda\u9774\u859b\u5b66\u7a74\u96ea\u8840\u52cb\u718f\u5faa\u65ec\u8be2\u5bfb\u9a6f\u5de1\u6b89\u6c5b\u8bad\u8baf\u900a\u8fc5\u538b\u62bc\u9e26\u9e2d\u5440\u4e2b\u82bd\u7259\u869c\u5d16\u8859\u6daf\u96c5\u54d1\u4e9a\u8bb6\u7109\u54bd\u9609\u70df\u6df9\u76d0\u4e25\u7814\u8712\u5ca9\u5ef6\u8a00\u989c\u960e\u708e\u6cbf\u5944\u63a9\u773c\u884d\u6f14\u8273\u5830\u71d5\u538c\u781a\u96c1\u5501\u5f66\u7130\u5bb4\u8c1a\u9a8c\u6b83\u592e\u9e2f\u79e7\u6768\u626c\u4f6f\u75a1\u7f8a\u6d0b\u9633\u6c27\u4ef0\u75d2\u517b\u6837\u6f3e\u9080\u8170\u5996\u7476"],["d240","\u8938",8,"\u8942\u8943\u8945",24,"\u8960",5,"\u8967",19,"\u897c"],["d280","\u897d\u897e\u8980\u8982\u8984\u8985\u8987",26,"\u6447\u5c27\u9065\u7a91\u8c23\u59da\u54ac\u8200\u836f\u8981\u8000\u6930\u564e\u8036\u7237\u91ce\u51b6\u4e5f\u9875\u6396\u4e1a\u53f6\u66f3\u814b\u591c\u6db2\u4e00\u58f9\u533b\u63d6\u94f1\u4f9d\u4f0a\u8863\u9890\u5937\u9057\u79fb\u4eea\u80f0\u7591\u6c82\u5b9c\u59e8\u5f5d\u6905\u8681\u501a\u5df2\u4e59\u77e3\u4ee5\u827a\u6291\u6613\u9091\u5c79\u4ebf\u5f79\u81c6\u9038\u8084\u75ab\u4ea6\u88d4\u610f\u6bc5\u5fc6\u4e49\u76ca\u6ea2\u8be3\u8bae\u8c0a\u8bd1\u5f02\u7ffc\u7fcc\u7ece\u8335\u836b\u56e0\u6bb7\u97f3\u9634\u59fb\u541f\u94f6\u6deb\u5bc5\u996e\u5c39\u5f15\u9690"],["d340","\u89a2",30,"\u89c3\u89cd\u89d3\u89d4\u89d5\u89d7\u89d8\u89d9\u89db\u89dd\u89df\u89e0\u89e1\u89e2\u89e4\u89e7\u89e8\u89e9\u89ea\u89ec\u89ed\u89ee\u89f0\u89f1\u89f2\u89f4",6],["d380","\u89fb",4,"\u8a01",5,"\u8a08",21,"\u5370\u82f1\u6a31\u5a74\u9e70\u5e94\u7f28\u83b9\u8424\u8425\u8367\u8747\u8fce\u8d62\u76c8\u5f71\u9896\u786c\u6620\u54df\u62e5\u4f63\u81c3\u75c8\u5eb8\u96cd\u8e0a\u86f9\u548f\u6cf3\u6d8c\u6c38\u607f\u52c7\u7528\u5e7d\u4f18\u60a0\u5fe7\u5c24\u7531\u90ae\u94c0\u72b9\u6cb9\u6e38\u9149\u6709\u53cb\u53f3\u4f51\u91c9\u8bf1\u53c8\u5e7c\u8fc2\u6de4\u4e8e\u76c2\u6986\u865e\u611a\u8206\u4f59\u4fde\u903e\u9c7c\u6109\u6e1d\u6e14\u9685\u4e88\u5a31\u96e8\u4e0e\u5c7f\u79b9\u5b87\u8bed\u7fbd\u7389\u57df\u828b\u90c1\u5401\u9047\u55bb\u5cea\u5fa1\u6108\u6b32\u72f1\u80b2\u8a89"],["d440","\u8a1e",31,"\u8a3f",8,"\u8a49",21],["d480","\u8a5f",25,"\u8a7a",6,"\u6d74\u5bd3\u88d5\u9884\u8c6b\u9a6d\u9e33\u6e0a\u51a4\u5143\u57a3\u8881\u539f\u63f4\u8f95\u56ed\u5458\u5706\u733f\u6e90\u7f18\u8fdc\u82d1\u613f\u6028\u9662\u66f0\u7ea6\u8d8a\u8dc3\u94a5\u5cb3\u7ca4\u6708\u60a6\u9605\u8018\u4e91\u90e7\u5300\u9668\u5141\u8fd0\u8574\u915d\u6655\u97f5\u5b55\u531d\u7838\u6742\u683d\u54c9\u707e\u5bb0\u8f7d\u518d\u5728\u54b1\u6512\u6682\u8d5e\u8d43\u810f\u846c\u906d\u7cdf\u51ff\u85fb\u67a3\u65e9\u6fa1\u86a4\u8e81\u566a\u9020\u7682\u7076\u71e5\u8d23\u62e9\u5219\u6cfd\u8d3c\u600e\u589e\u618e\u66fe\u8d60\u624e\u55b3\u6e23\u672d\u8f67"],["d540","\u8a81",7,"\u8a8b",7,"\u8a94",46],["d580","\u8ac3",32,"\u94e1\u95f8\u7728\u6805\u69a8\u548b\u4e4d\u70b8\u8bc8\u6458\u658b\u5b85\u7a84\u503a\u5be8\u77bb\u6be1\u8a79\u7c98\u6cbe\u76cf\u65a9\u8f97\u5d2d\u5c55\u8638\u6808\u5360\u6218\u7ad9\u6e5b\u7efd\u6a1f\u7ae0\u5f70\u6f33\u5f20\u638c\u6da8\u6756\u4e08\u5e10\u8d26\u4ed7\u80c0\u7634\u969c\u62db\u662d\u627e\u6cbc\u8d75\u7167\u7f69\u5146\u8087\u53ec\u906e\u6298\u54f2\u86f0\u8f99\u8005\u9517\u8517\u8fd9\u6d59\u73cd\u659f\u771f\u7504\u7827\u81fb\u8d1e\u9488\u4fa6\u6795\u75b9\u8bca\u9707\u632f\u9547\u9635\u84b8\u6323\u7741\u5f81\u72f0\u4e89\u6014\u6574\u62ef\u6b63\u653f"],["d640","\u8ae4",34,"\u8b08",27],["d680","\u8b24\u8b25\u8b27",30,"\u5e27\u75c7\u90d1\u8bc1\u829d\u679d\u652f\u5431\u8718\u77e5\u80a2\u8102\u6c41\u4e4b\u7ec7\u804c\u76f4\u690d\u6b96\u6267\u503c\u4f84\u5740\u6307\u6b62\u8dbe\u53ea\u65e8\u7eb8\u5fd7\u631a\u63b7\u81f3\u81f4\u7f6e\u5e1c\u5cd9\u5236\u667a\u79e9\u7a1a\u8d28\u7099\u75d4\u6ede\u6cbb\u7a92\u4e2d\u76c5\u5fe0\u949f\u8877\u7ec8\u79cd\u80bf\u91cd\u4ef2\u4f17\u821f\u5468\u5dde\u6d32\u8bcc\u7ca5\u8f74\u8098\u5e1a\u5492\u76b1\u5b99\u663c\u9aa4\u73e0\u682a\u86db\u6731\u732a\u8bf8\u8bdb\u9010\u7af9\u70db\u716e\u62c4\u77a9\u5631\u4e3b\u8457\u67f1\u52a9\u86c0\u8d2e\u94f8\u7b51"],["d740","\u8b46",31,"\u8b67",4,"\u8b6d",25],["d780","\u8b87",24,"\u8bac\u8bb1\u8bbb\u8bc7\u8bd0\u8bea\u8c09\u8c1e\u4f4f\u6ce8\u795d\u9a7b\u6293\u722a\u62fd\u4e13\u7816\u8f6c\u64b0\u8d5a\u7bc6\u6869\u5e84\u88c5\u5986\u649e\u58ee\u72b6\u690e\u9525\u8ffd\u8d58\u5760\u7f00\u8c06\u51c6\u6349\u62d9\u5353\u684c\u7422\u8301\u914c\u5544\u7740\u707c\u6d4a\u5179\u54a8\u8d44\u59ff\u6ecb\u6dc4\u5b5c\u7d2b\u4ed4\u7c7d\u6ed3\u5b50\u81ea\u6e0d\u5b57\u9b03\u68d5\u8e2a\u5b97\u7efc\u603b\u7eb5\u90b9\u8d70\u594f\u63cd\u79df\u8db3\u5352\u65cf\u7956\u8bc5\u963b\u7ec4\u94bb\u7e82\u5634\u9189\u6700\u7f6a\u5c0a\u9075\u6628\u5de6\u4f50\u67de\u505a\u4f5c\u5750\u5ea7"],["d840","\u8c38",8,"\u8c42\u8c43\u8c44\u8c45\u8c48\u8c4a\u8c4b\u8c4d",7,"\u8c56\u8c57\u8c58\u8c59\u8c5b",5,"\u8c63",6,"\u8c6c",6,"\u8c74\u8c75\u8c76\u8c77\u8c7b",6,"\u8c83\u8c84\u8c86\u8c87"],["d880","\u8c88\u8c8b\u8c8d",6,"\u8c95\u8c96\u8c97\u8c99",20,"\u4e8d\u4e0c\u5140\u4e10\u5eff\u5345\u4e15\u4e98\u4e1e\u9b32\u5b6c\u5669\u4e28\u79ba\u4e3f\u5315\u4e47\u592d\u723b\u536e\u6c10\u56df\u80e4\u9997\u6bd3\u777e\u9f17\u4e36\u4e9f\u9f10\u4e5c\u4e69\u4e93\u8288\u5b5b\u556c\u560f\u4ec4\u538d\u539d\u53a3\u53a5\u53ae\u9765\u8d5d\u531a\u53f5\u5326\u532e\u533e\u8d5c\u5366\u5363\u5202\u5208\u520e\u522d\u5233\u523f\u5240\u524c\u525e\u5261\u525c\u84af\u527d\u5282\u5281\u5290\u5293\u5182\u7f54\u4ebb\u4ec3\u4ec9\u4ec2\u4ee8\u4ee1\u4eeb\u4ede\u4f1b\u4ef3\u4f22\u4f64\u4ef5\u4f25\u4f27\u4f09\u4f2b\u4f5e\u4f67\u6538\u4f5a\u4f5d"],["d940","\u8cae",62],["d980","\u8ced",32,"\u4f5f\u4f57\u4f32\u4f3d\u4f76\u4f74\u4f91\u4f89\u4f83\u4f8f\u4f7e\u4f7b\u4faa\u4f7c\u4fac\u4f94\u4fe6\u4fe8\u4fea\u4fc5\u4fda\u4fe3\u4fdc\u4fd1\u4fdf\u4ff8\u5029\u504c\u4ff3\u502c\u500f\u502e\u502d\u4ffe\u501c\u500c\u5025\u5028\u507e\u5043\u5055\u5048\u504e\u506c\u507b\u50a5\u50a7\u50a9\u50ba\u50d6\u5106\u50ed\u50ec\u50e6\u50ee\u5107\u510b\u4edd\u6c3d\u4f58\u4f65\u4fce\u9fa0\u6c46\u7c74\u516e\u5dfd\u9ec9\u9998\u5181\u5914\u52f9\u530d\u8a07\u5310\u51eb\u5919\u5155\u4ea0\u5156\u4eb3\u886e\u88a4\u4eb5\u8114\u88d2\u7980\u5b34\u8803\u7fb8\u51ab\u51b1\u51bd\u51bc"],["da40","\u8d0e",14,"\u8d20\u8d51\u8d52\u8d57\u8d5f\u8d65\u8d68\u8d69\u8d6a\u8d6c\u8d6e\u8d6f\u8d71\u8d72\u8d78",8,"\u8d82\u8d83\u8d86\u8d87\u8d88\u8d89\u8d8c",4,"\u8d92\u8d93\u8d95",9,"\u8da0\u8da1"],["da80","\u8da2\u8da4",12,"\u8db2\u8db6\u8db7\u8db9\u8dbb\u8dbd\u8dc0\u8dc1\u8dc2\u8dc5\u8dc7\u8dc8\u8dc9\u8dca\u8dcd\u8dd0\u8dd2\u8dd3\u8dd4\u51c7\u5196\u51a2\u51a5\u8ba0\u8ba6\u8ba7\u8baa\u8bb4\u8bb5\u8bb7\u8bc2\u8bc3\u8bcb\u8bcf\u8bce\u8bd2\u8bd3\u8bd4\u8bd6\u8bd8\u8bd9\u8bdc\u8bdf\u8be0\u8be4\u8be8\u8be9\u8bee\u8bf0\u8bf3\u8bf6\u8bf9\u8bfc\u8bff\u8c00\u8c02\u8c04\u8c07\u8c0c\u8c0f\u8c11\u8c12\u8c14\u8c15\u8c16\u8c19\u8c1b\u8c18\u8c1d\u8c1f\u8c20\u8c21\u8c25\u8c27\u8c2a\u8c2b\u8c2e\u8c2f\u8c32\u8c33\u8c35\u8c36\u5369\u537a\u961d\u9622\u9621\u9631\u962a\u963d\u963c\u9642\u9649\u9654\u965f\u9667\u966c\u9672\u9674\u9688\u968d\u9697\u96b0\u9097\u909b\u909d\u9099\u90ac\u90a1\u90b4\u90b3\u90b6\u90ba"],["db40","\u8dd5\u8dd8\u8dd9\u8ddc\u8de0\u8de1\u8de2\u8de5\u8de6\u8de7\u8de9\u8ded\u8dee\u8df0\u8df1\u8df2\u8df4\u8df6\u8dfc\u8dfe",6,"\u8e06\u8e07\u8e08\u8e0b\u8e0d\u8e0e\u8e10\u8e11\u8e12\u8e13\u8e15",7,"\u8e20\u8e21\u8e24",4,"\u8e2b\u8e2d\u8e30\u8e32\u8e33\u8e34\u8e36\u8e37\u8e38\u8e3b\u8e3c\u8e3e"],["db80","\u8e3f\u8e43\u8e45\u8e46\u8e4c",4,"\u8e53",5,"\u8e5a",11,"\u8e67\u8e68\u8e6a\u8e6b\u8e6e\u8e71\u90b8\u90b0\u90cf\u90c5\u90be\u90d0\u90c4\u90c7\u90d3\u90e6\u90e2\u90dc\u90d7\u90db\u90eb\u90ef\u90fe\u9104\u9122\u911e\u9123\u9131\u912f\u9139\u9143\u9146\u520d\u5942\u52a2\u52ac\u52ad\u52be\u54ff\u52d0\u52d6\u52f0\u53df\u71ee\u77cd\u5ef4\u51f5\u51fc\u9b2f\u53b6\u5f01\u755a\u5def\u574c\u57a9\u57a1\u587e\u58bc\u58c5\u58d1\u5729\u572c\u572a\u5733\u5739\u572e\u572f\u575c\u573b\u5742\u5769\u5785\u576b\u5786\u577c\u577b\u5768\u576d\u5776\u5773\u57ad\u57a4\u578c\u57b2\u57cf\u57a7\u57b4\u5793\u57a0\u57d5\u57d8\u57da\u57d9\u57d2\u57b8\u57f4\u57ef\u57f8\u57e4\u57dd"],["dc40","\u8e73\u8e75\u8e77",4,"\u8e7d\u8e7e\u8e80\u8e82\u8e83\u8e84\u8e86\u8e88",6,"\u8e91\u8e92\u8e93\u8e95",6,"\u8e9d\u8e9f",11,"\u8ead\u8eae\u8eb0\u8eb1\u8eb3",6,"\u8ebb",7],["dc80","\u8ec3",10,"\u8ecf",21,"\u580b\u580d\u57fd\u57ed\u5800\u581e\u5819\u5844\u5820\u5865\u586c\u5881\u5889\u589a\u5880\u99a8\u9f19\u61ff\u8279\u827d\u827f\u828f\u828a\u82a8\u8284\u828e\u8291\u8297\u8299\u82ab\u82b8\u82be\u82b0\u82c8\u82ca\u82e3\u8298\u82b7\u82ae\u82cb\u82cc\u82c1\u82a9\u82b4\u82a1\u82aa\u829f\u82c4\u82ce\u82a4\u82e1\u8309\u82f7\u82e4\u830f\u8307\u82dc\u82f4\u82d2\u82d8\u830c\u82fb\u82d3\u8311\u831a\u8306\u8314\u8315\u82e0\u82d5\u831c\u8351\u835b\u835c\u8308\u8392\u833c\u8334\u8331\u839b\u835e\u832f\u834f\u8347\u8343\u835f\u8340\u8317\u8360\u832d\u833a\u8333\u8366\u8365"],["dd40","\u8ee5",62],["dd80","\u8f24",32,"\u8368\u831b\u8369\u836c\u836a\u836d\u836e\u83b0\u8378\u83b3\u83b4\u83a0\u83aa\u8393\u839c\u8385\u837c\u83b6\u83a9\u837d\u83b8\u837b\u8398\u839e\u83a8\u83ba\u83bc\u83c1\u8401\u83e5\u83d8\u5807\u8418\u840b\u83dd\u83fd\u83d6\u841c\u8438\u8411\u8406\u83d4\u83df\u840f\u8403\u83f8\u83f9\u83ea\u83c5\u83c0\u8426\u83f0\u83e1\u845c\u8451\u845a\u8459\u8473\u8487\u8488\u847a\u8489\u8478\u843c\u8446\u8469\u8476\u848c\u848e\u8431\u846d\u84c1\u84cd\u84d0\u84e6\u84bd\u84d3\u84ca\u84bf\u84ba\u84e0\u84a1\u84b9\u84b4\u8497\u84e5\u84e3\u850c\u750d\u8538\u84f0\u8539\u851f\u853a"],["de40","\u8f45",32,"\u8f6a\u8f80\u8f8c\u8f92\u8f9d\u8fa0\u8fa1\u8fa2\u8fa4\u8fa5\u8fa6\u8fa7\u8faa\u8fac\u8fad\u8fae\u8faf\u8fb2\u8fb3\u8fb4\u8fb5\u8fb7\u8fb8\u8fba\u8fbb\u8fbc\u8fbf\u8fc0\u8fc3\u8fc6"],["de80","\u8fc9",4,"\u8fcf\u8fd2\u8fd6\u8fd7\u8fda\u8fe0\u8fe1\u8fe3\u8fe7\u8fec\u8fef\u8ff1\u8ff2\u8ff4\u8ff5\u8ff6\u8ffa\u8ffb\u8ffc\u8ffe\u8fff\u9007\u9008\u900c\u900e\u9013\u9015\u9018\u8556\u853b\u84ff\u84fc\u8559\u8548\u8568\u8564\u855e\u857a\u77a2\u8543\u8572\u857b\u85a4\u85a8\u8587\u858f\u8579\u85ae\u859c\u8585\u85b9\u85b7\u85b0\u85d3\u85c1\u85dc\u85ff\u8627\u8605\u8629\u8616\u863c\u5efe\u5f08\u593c\u5941\u8037\u5955\u595a\u5958\u530f\u5c22\u5c25\u5c2c\u5c34\u624c\u626a\u629f\u62bb\u62ca\u62da\u62d7\u62ee\u6322\u62f6\u6339\u634b\u6343\u63ad\u63f6\u6371\u637a\u638e\u63b4\u636d\u63ac\u638a\u6369\u63ae\u63bc\u63f2\u63f8\u63e0\u63ff\u63c4\u63de\u63ce\u6452\u63c6\u63be\u6445\u6441\u640b\u641b\u6420\u640c\u6426\u6421\u645e\u6484\u646d\u6496"],["df40","\u9019\u901c\u9023\u9024\u9025\u9027",5,"\u9030",4,"\u9037\u9039\u903a\u903d\u903f\u9040\u9043\u9045\u9046\u9048",4,"\u904e\u9054\u9055\u9056\u9059\u905a\u905c",5,"\u9064\u9066\u9067\u9069\u906a\u906b\u906c\u906f",4,"\u9076",6,"\u907e\u9081"],["df80","\u9084\u9085\u9086\u9087\u9089\u908a\u908c",4,"\u9092\u9094\u9096\u9098\u909a\u909c\u909e\u909f\u90a0\u90a4\u90a5\u90a7\u90a8\u90a9\u90ab\u90ad\u90b2\u90b7\u90bc\u90bd\u90bf\u90c0\u647a\u64b7\u64b8\u6499\u64ba\u64c0\u64d0\u64d7\u64e4\u64e2\u6509\u6525\u652e\u5f0b\u5fd2\u7519\u5f11\u535f\u53f1\u53fd\u53e9\u53e8\u53fb\u5412\u5416\u5406\u544b\u5452\u5453\u5454\u5456\u5443\u5421\u5457\u5459\u5423\u5432\u5482\u5494\u5477\u5471\u5464\u549a\u549b\u5484\u5476\u5466\u549d\u54d0\u54ad\u54c2\u54b4\u54d2\u54a7\u54a6\u54d3\u54d4\u5472\u54a3\u54d5\u54bb\u54bf\u54cc\u54d9\u54da\u54dc\u54a9\u54aa\u54a4\u54dd\u54cf\u54de\u551b\u54e7\u5520\u54fd\u5514\u54f3\u5522\u5523\u550f\u5511\u5527\u552a\u5567\u558f\u55b5\u5549\u556d\u5541\u5555\u553f\u5550\u553c"],["e040","\u90c2\u90c3\u90c6\u90c8\u90c9\u90cb\u90cc\u90cd\u90d2\u90d4\u90d5\u90d6\u90d8\u90d9\u90da\u90de\u90df\u90e0\u90e3\u90e4\u90e5\u90e9\u90ea\u90ec\u90ee\u90f0\u90f1\u90f2\u90f3\u90f5\u90f6\u90f7\u90f9\u90fa\u90fb\u90fc\u90ff\u9100\u9101\u9103\u9105",19,"\u911a\u911b\u911c"],["e080","\u911d\u911f\u9120\u9121\u9124",10,"\u9130\u9132",6,"\u913a",8,"\u9144\u5537\u5556\u5575\u5576\u5577\u5533\u5530\u555c\u558b\u55d2\u5583\u55b1\u55b9\u5588\u5581\u559f\u557e\u55d6\u5591\u557b\u55df\u55bd\u55be\u5594\u5599\u55ea\u55f7\u55c9\u561f\u55d1\u55eb\u55ec\u55d4\u55e6\u55dd\u55c4\u55ef\u55e5\u55f2\u55f3\u55cc\u55cd\u55e8\u55f5\u55e4\u8f94\u561e\u5608\u560c\u5601\u5624\u5623\u55fe\u5600\u5627\u562d\u5658\u5639\u5657\u562c\u564d\u5662\u5659\u565c\u564c\u5654\u5686\u5664\u5671\u566b\u567b\u567c\u5685\u5693\u56af\u56d4\u56d7\u56dd\u56e1\u56f5\u56eb\u56f9\u56ff\u5704\u570a\u5709\u571c\u5e0f\u5e19\u5e14\u5e11\u5e31\u5e3b\u5e3c"],["e140","\u9145\u9147\u9148\u9151\u9153\u9154\u9155\u9156\u9158\u9159\u915b\u915c\u915f\u9160\u9166\u9167\u9168\u916b\u916d\u9173\u917a\u917b\u917c\u9180",4,"\u9186\u9188\u918a\u918e\u918f\u9193",6,"\u919c",5,"\u91a4",5,"\u91ab\u91ac\u91b0\u91b1\u91b2\u91b3\u91b6\u91b7\u91b8\u91b9\u91bb"],["e180","\u91bc",10,"\u91c8\u91cb\u91d0\u91d2",9,"\u91dd",8,"\u5e37\u5e44\u5e54\u5e5b\u5e5e\u5e61\u5c8c\u5c7a\u5c8d\u5c90\u5c96\u5c88\u5c98\u5c99\u5c91\u5c9a\u5c9c\u5cb5\u5ca2\u5cbd\u5cac\u5cab\u5cb1\u5ca3\u5cc1\u5cb7\u5cc4\u5cd2\u5ce4\u5ccb\u5ce5\u5d02\u5d03\u5d27\u5d26\u5d2e\u5d24\u5d1e\u5d06\u5d1b\u5d58\u5d3e\u5d34\u5d3d\u5d6c\u5d5b\u5d6f\u5d5d\u5d6b\u5d4b\u5d4a\u5d69\u5d74\u5d82\u5d99\u5d9d\u8c73\u5db7\u5dc5\u5f73\u5f77\u5f82\u5f87\u5f89\u5f8c\u5f95\u5f99\u5f9c\u5fa8\u5fad\u5fb5\u5fbc\u8862\u5f61\u72ad\u72b0\u72b4\u72b7\u72b8\u72c3\u72c1\u72ce\u72cd\u72d2\u72e8\u72ef\u72e9\u72f2\u72f4\u72f7\u7301\u72f3\u7303\u72fa"],["e240","\u91e6",62],["e280","\u9225",32,"\u72fb\u7317\u7313\u7321\u730a\u731e\u731d\u7315\u7322\u7339\u7325\u732c\u7338\u7331\u7350\u734d\u7357\u7360\u736c\u736f\u737e\u821b\u5925\u98e7\u5924\u5902\u9963\u9967",5,"\u9974\u9977\u997d\u9980\u9984\u9987\u998a\u998d\u9990\u9991\u9993\u9994\u9995\u5e80\u5e91\u5e8b\u5e96\u5ea5\u5ea0\u5eb9\u5eb5\u5ebe\u5eb3\u8d53\u5ed2\u5ed1\u5edb\u5ee8\u5eea\u81ba\u5fc4\u5fc9\u5fd6\u5fcf\u6003\u5fee\u6004\u5fe1\u5fe4\u5ffe\u6005\u6006\u5fea\u5fed\u5ff8\u6019\u6035\u6026\u601b\u600f\u600d\u6029\u602b\u600a\u603f\u6021\u6078\u6079\u607b\u607a\u6042"],["e340","\u9246",45,"\u9275",16],["e380","\u9286",7,"\u928f",24,"\u606a\u607d\u6096\u609a\u60ad\u609d\u6083\u6092\u608c\u609b\u60ec\u60bb\u60b1\u60dd\u60d8\u60c6\u60da\u60b4\u6120\u6126\u6115\u6123\u60f4\u6100\u610e\u612b\u614a\u6175\u61ac\u6194\u61a7\u61b7\u61d4\u61f5\u5fdd\u96b3\u95e9\u95eb\u95f1\u95f3\u95f5\u95f6\u95fc\u95fe\u9603\u9604\u9606\u9608\u960a\u960b\u960c\u960d\u960f\u9612\u9615\u9616\u9617\u9619\u961a\u4e2c\u723f\u6215\u6c35\u6c54\u6c5c\u6c4a\u6ca3\u6c85\u6c90\u6c94\u6c8c\u6c68\u6c69\u6c74\u6c76\u6c86\u6ca9\u6cd0\u6cd4\u6cad\u6cf7\u6cf8\u6cf1\u6cd7\u6cb2\u6ce0\u6cd6\u6cfa\u6ceb\u6cee\u6cb1\u6cd3\u6cef\u6cfe"],["e440","\u92a8",5,"\u92af",24,"\u92c9",31],["e480","\u92e9",32,"\u6d39\u6d27\u6d0c\u6d43\u6d48\u6d07\u6d04\u6d19\u6d0e\u6d2b\u6d4d\u6d2e\u6d35\u6d1a\u6d4f\u6d52\u6d54\u6d33\u6d91\u6d6f\u6d9e\u6da0\u6d5e\u6d93\u6d94\u6d5c\u6d60\u6d7c\u6d63\u6e1a\u6dc7\u6dc5\u6dde\u6e0e\u6dbf\u6de0\u6e11\u6de6\u6ddd\u6dd9\u6e16\u6dab\u6e0c\u6dae\u6e2b\u6e6e\u6e4e\u6e6b\u6eb2\u6e5f\u6e86\u6e53\u6e54\u6e32\u6e25\u6e44\u6edf\u6eb1\u6e98\u6ee0\u6f2d\u6ee2\u6ea5\u6ea7\u6ebd\u6ebb\u6eb7\u6ed7\u6eb4\u6ecf\u6e8f\u6ec2\u6e9f\u6f62\u6f46\u6f47\u6f24\u6f15\u6ef9\u6f2f\u6f36\u6f4b\u6f74\u6f2a\u6f09\u6f29\u6f89\u6f8d\u6f8c\u6f78\u6f72\u6f7c\u6f7a\u6fd1"],["e540","\u930a",51,"\u933f",10],["e580","\u934a",31,"\u936b\u6fc9\u6fa7\u6fb9\u6fb6\u6fc2\u6fe1\u6fee\u6fde\u6fe0\u6fef\u701a\u7023\u701b\u7039\u7035\u704f\u705e\u5b80\u5b84\u5b95\u5b93\u5ba5\u5bb8\u752f\u9a9e\u6434\u5be4\u5bee\u8930\u5bf0\u8e47\u8b07\u8fb6\u8fd3\u8fd5\u8fe5\u8fee\u8fe4\u8fe9\u8fe6\u8ff3\u8fe8\u9005\u9004\u900b\u9026\u9011\u900d\u9016\u9021\u9035\u9036\u902d\u902f\u9044\u9051\u9052\u9050\u9068\u9058\u9062\u905b\u66b9\u9074\u907d\u9082\u9088\u9083\u908b\u5f50\u5f57\u5f56\u5f58\u5c3b\u54ab\u5c50\u5c59\u5b71\u5c63\u5c66\u7fbc\u5f2a\u5f29\u5f2d\u8274\u5f3c\u9b3b\u5c6e\u5981\u5983\u598d\u59a9\u59aa\u59a3"],["e640","\u936c",34,"\u9390",27],["e680","\u93ac",29,"\u93cb\u93cc\u93cd\u5997\u59ca\u59ab\u599e\u59a4\u59d2\u59b2\u59af\u59d7\u59be\u5a05\u5a06\u59dd\u5a08\u59e3\u59d8\u59f9\u5a0c\u5a09\u5a32\u5a34\u5a11\u5a23\u5a13\u5a40\u5a67\u5a4a\u5a55\u5a3c\u5a62\u5a75\u80ec\u5aaa\u5a9b\u5a77\u5a7a\u5abe\u5aeb\u5ab2\u5ad2\u5ad4\u5ab8\u5ae0\u5ae3\u5af1\u5ad6\u5ae6\u5ad8\u5adc\u5b09\u5b17\u5b16\u5b32\u5b37\u5b40\u5c15\u5c1c\u5b5a\u5b65\u5b73\u5b51\u5b53\u5b62\u9a75\u9a77\u9a78\u9a7a\u9a7f\u9a7d\u9a80\u9a81\u9a85\u9a88\u9a8a\u9a90\u9a92\u9a93\u9a96\u9a98\u9a9b\u9a9c\u9a9d\u9a9f\u9aa0\u9aa2\u9aa3\u9aa5\u9aa7\u7e9f\u7ea1\u7ea3\u7ea5\u7ea8\u7ea9"],["e740","\u93ce",7,"\u93d7",54],["e780","\u940e",32,"\u7ead\u7eb0\u7ebe\u7ec0\u7ec1\u7ec2\u7ec9\u7ecb\u7ecc\u7ed0\u7ed4\u7ed7\u7edb\u7ee0\u7ee1\u7ee8\u7eeb\u7eee\u7eef\u7ef1\u7ef2\u7f0d\u7ef6\u7efa\u7efb\u7efe\u7f01\u7f02\u7f03\u7f07\u7f08\u7f0b\u7f0c\u7f0f\u7f11\u7f12\u7f17\u7f19\u7f1c\u7f1b\u7f1f\u7f21",6,"\u7f2a\u7f2b\u7f2c\u7f2d\u7f2f",4,"\u7f35\u5e7a\u757f\u5ddb\u753e\u9095\u738e\u7391\u73ae\u73a2\u739f\u73cf\u73c2\u73d1\u73b7\u73b3\u73c0\u73c9\u73c8\u73e5\u73d9\u987c\u740a\u73e9\u73e7\u73de\u73ba\u73f2\u740f\u742a\u745b\u7426\u7425\u7428\u7430\u742e\u742c"],["e840","\u942f",14,"\u943f",43,"\u946c\u946d\u946e\u946f"],["e880","\u9470",20,"\u9491\u9496\u9498\u94c7\u94cf\u94d3\u94d4\u94da\u94e6\u94fb\u951c\u9520\u741b\u741a\u7441\u745c\u7457\u7455\u7459\u7477\u746d\u747e\u749c\u748e\u7480\u7481\u7487\u748b\u749e\u74a8\u74a9\u7490\u74a7\u74d2\u74ba\u97ea\u97eb\u97ec\u674c\u6753\u675e\u6748\u6769\u67a5\u6787\u676a\u6773\u6798\u67a7\u6775\u67a8\u679e\u67ad\u678b\u6777\u677c\u67f0\u6809\u67d8\u680a\u67e9\u67b0\u680c\u67d9\u67b5\u67da\u67b3\u67dd\u6800\u67c3\u67b8\u67e2\u680e\u67c1\u67fd\u6832\u6833\u6860\u6861\u684e\u6862\u6844\u6864\u6883\u681d\u6855\u6866\u6841\u6867\u6840\u683e\u684a\u6849\u6829\u68b5\u688f\u6874\u6877\u6893\u686b\u68c2\u696e\u68fc\u691f\u6920\u68f9"],["e940","\u9527\u9533\u953d\u9543\u9548\u954b\u9555\u955a\u9560\u956e\u9574\u9575\u9577",7,"\u9580",42],["e980","\u95ab",32,"\u6924\u68f0\u690b\u6901\u6957\u68e3\u6910\u6971\u6939\u6960\u6942\u695d\u6984\u696b\u6980\u6998\u6978\u6934\u69cc\u6987\u6988\u69ce\u6989\u6966\u6963\u6979\u699b\u69a7\u69bb\u69ab\u69ad\u69d4\u69b1\u69c1\u69ca\u69df\u6995\u69e0\u698d\u69ff\u6a2f\u69ed\u6a17\u6a18\u6a65\u69f2\u6a44\u6a3e\u6aa0\u6a50\u6a5b\u6a35\u6a8e\u6a79\u6a3d\u6a28\u6a58\u6a7c\u6a91\u6a90\u6aa9\u6a97\u6aab\u7337\u7352\u6b81\u6b82\u6b87\u6b84\u6b92\u6b93\u6b8d\u6b9a\u6b9b\u6ba1\u6baa\u8f6b\u8f6d\u8f71\u8f72\u8f73\u8f75\u8f76\u8f78\u8f77\u8f79\u8f7a\u8f7c\u8f7e\u8f81\u8f82\u8f84\u8f87\u8f8b"],["ea40","\u95cc",27,"\u95ec\u95ff\u9607\u9613\u9618\u961b\u961e\u9620\u9623",6,"\u962b\u962c\u962d\u962f\u9630\u9637\u9638\u9639\u963a\u963e\u9641\u9643\u964a\u964e\u964f\u9651\u9652\u9653\u9656\u9657"],["ea80","\u9658\u9659\u965a\u965c\u965d\u965e\u9660\u9663\u9665\u9666\u966b\u966d",4,"\u9673\u9678",12,"\u9687\u9689\u968a\u8f8d\u8f8e\u8f8f\u8f98\u8f9a\u8ece\u620b\u6217\u621b\u621f\u6222\u6221\u6225\u6224\u622c\u81e7\u74ef\u74f4\u74ff\u750f\u7511\u7513\u6534\u65ee\u65ef\u65f0\u660a\u6619\u6772\u6603\u6615\u6600\u7085\u66f7\u661d\u6634\u6631\u6636\u6635\u8006\u665f\u6654\u6641\u664f\u6656\u6661\u6657\u6677\u6684\u668c\u66a7\u669d\u66be\u66db\u66dc\u66e6\u66e9\u8d32\u8d33\u8d36\u8d3b\u8d3d\u8d40\u8d45\u8d46\u8d48\u8d49\u8d47\u8d4d\u8d55\u8d59\u89c7\u89ca\u89cb\u89cc\u89ce\u89cf\u89d0\u89d1\u726e\u729f\u725d\u7266\u726f\u727e\u727f\u7284\u728b\u728d\u728f\u7292\u6308\u6332\u63b0"],["eb40","\u968c\u968e\u9691\u9692\u9693\u9695\u9696\u969a\u969b\u969d",9,"\u96a8",7,"\u96b1\u96b2\u96b4\u96b5\u96b7\u96b8\u96ba\u96bb\u96bf\u96c2\u96c3\u96c8\u96ca\u96cb\u96d0\u96d1\u96d3\u96d4\u96d6",9,"\u96e1",6,"\u96eb"],["eb80","\u96ec\u96ed\u96ee\u96f0\u96f1\u96f2\u96f4\u96f5\u96f8\u96fa\u96fb\u96fc\u96fd\u96ff\u9702\u9703\u9705\u970a\u970b\u970c\u9710\u9711\u9712\u9714\u9715\u9717",4,"\u971d\u971f\u9720\u643f\u64d8\u8004\u6bea\u6bf3\u6bfd\u6bf5\u6bf9\u6c05\u6c07\u6c06\u6c0d\u6c15\u6c18\u6c19\u6c1a\u6c21\u6c29\u6c24\u6c2a\u6c32\u6535\u6555\u656b\u724d\u7252\u7256\u7230\u8662\u5216\u809f\u809c\u8093\u80bc\u670a\u80bd\u80b1\u80ab\u80ad\u80b4\u80b7\u80e7\u80e8\u80e9\u80ea\u80db\u80c2\u80c4\u80d9\u80cd\u80d7\u6710\u80dd\u80eb\u80f1\u80f4\u80ed\u810d\u810e\u80f2\u80fc\u6715\u8112\u8c5a\u8136\u811e\u812c\u8118\u8132\u8148\u814c\u8153\u8174\u8159\u815a\u8171\u8160\u8169\u817c\u817d\u816d\u8167\u584d\u5ab5\u8188\u8182\u8191\u6ed5\u81a3\u81aa\u81cc\u6726\u81ca\u81bb"],["ec40","\u9721",8,"\u972b\u972c\u972e\u972f\u9731\u9733",4,"\u973a\u973b\u973c\u973d\u973f",18,"\u9754\u9755\u9757\u9758\u975a\u975c\u975d\u975f\u9763\u9764\u9766\u9767\u9768\u976a",7],["ec80","\u9772\u9775\u9777",4,"\u977d",7,"\u9786",4,"\u978c\u978e\u978f\u9790\u9793\u9795\u9796\u9797\u9799",4,"\u81c1\u81a6\u6b24\u6b37\u6b39\u6b43\u6b46\u6b59\u98d1\u98d2\u98d3\u98d5\u98d9\u98da\u6bb3\u5f40\u6bc2\u89f3\u6590\u9f51\u6593\u65bc\u65c6\u65c4\u65c3\u65cc\u65ce\u65d2\u65d6\u7080\u709c\u7096\u709d\u70bb\u70c0\u70b7\u70ab\u70b1\u70e8\u70ca\u7110\u7113\u7116\u712f\u7131\u7173\u715c\u7168\u7145\u7172\u714a\u7178\u717a\u7198\u71b3\u71b5\u71a8\u71a0\u71e0\u71d4\u71e7\u71f9\u721d\u7228\u706c\u7118\u7166\u71b9\u623e\u623d\u6243\u6248\u6249\u793b\u7940\u7946\u7949\u795b\u795c\u7953\u795a\u7962\u7957\u7960\u796f\u7967\u797a\u7985\u798a\u799a\u79a7\u79b3\u5fd1\u5fd0"],["ed40","\u979e\u979f\u97a1\u97a2\u97a4",6,"\u97ac\u97ae\u97b0\u97b1\u97b3\u97b5",46],["ed80","\u97e4\u97e5\u97e8\u97ee",4,"\u97f4\u97f7",23,"\u603c\u605d\u605a\u6067\u6041\u6059\u6063\u60ab\u6106\u610d\u615d\u61a9\u619d\u61cb\u61d1\u6206\u8080\u807f\u6c93\u6cf6\u6dfc\u77f6\u77f8\u7800\u7809\u7817\u7818\u7811\u65ab\u782d\u781c\u781d\u7839\u783a\u783b\u781f\u783c\u7825\u782c\u7823\u7829\u784e\u786d\u7856\u7857\u7826\u7850\u7847\u784c\u786a\u789b\u7893\u789a\u7887\u789c\u78a1\u78a3\u78b2\u78b9\u78a5\u78d4\u78d9\u78c9\u78ec\u78f2\u7905\u78f4\u7913\u7924\u791e\u7934\u9f9b\u9ef9\u9efb\u9efc\u76f1\u7704\u770d\u76f9\u7707\u7708\u771a\u7722\u7719\u772d\u7726\u7735\u7738\u7750\u7751\u7747\u7743\u775a\u7768"],["ee40","\u980f",62],["ee80","\u984e",32,"\u7762\u7765\u777f\u778d\u777d\u7780\u778c\u7791\u779f\u77a0\u77b0\u77b5\u77bd\u753a\u7540\u754e\u754b\u7548\u755b\u7572\u7579\u7583\u7f58\u7f61\u7f5f\u8a48\u7f68\u7f74\u7f71\u7f79\u7f81\u7f7e\u76cd\u76e5\u8832\u9485\u9486\u9487\u948b\u948a\u948c\u948d\u948f\u9490\u9494\u9497\u9495\u949a\u949b\u949c\u94a3\u94a4\u94ab\u94aa\u94ad\u94ac\u94af\u94b0\u94b2\u94b4\u94b6",4,"\u94bc\u94bd\u94bf\u94c4\u94c8",6,"\u94d0\u94d1\u94d2\u94d5\u94d6\u94d7\u94d9\u94d8\u94db\u94de\u94df\u94e0\u94e2\u94e4\u94e5\u94e7\u94e8\u94ea"],["ef40","\u986f",5,"\u988b\u988e\u9892\u9895\u9899\u98a3\u98a8",37,"\u98cf\u98d0\u98d4\u98d6\u98d7\u98db\u98dc\u98dd\u98e0",4],["ef80","\u98e5\u98e6\u98e9",30,"\u94e9\u94eb\u94ee\u94ef\u94f3\u94f4\u94f5\u94f7\u94f9\u94fc\u94fd\u94ff\u9503\u9502\u9506\u9507\u9509\u950a\u950d\u950e\u950f\u9512",4,"\u9518\u951b\u951d\u951e\u951f\u9522\u952a\u952b\u9529\u952c\u9531\u9532\u9534\u9536\u9537\u9538\u953c\u953e\u953f\u9542\u9535\u9544\u9545\u9546\u9549\u954c\u954e\u954f\u9552\u9553\u9554\u9556\u9557\u9558\u9559\u955b\u955e\u955f\u955d\u9561\u9562\u9564",8,"\u956f\u9571\u9572\u9573\u953a\u77e7\u77ec\u96c9\u79d5\u79ed\u79e3\u79eb\u7a06\u5d47\u7a03\u7a02\u7a1e\u7a14"],["f040","\u9908",4,"\u990e\u990f\u9911",28,"\u992f",26],["f080","\u994a",9,"\u9956",12,"\u9964\u9966\u9973\u9978\u9979\u997b\u997e\u9982\u9983\u9989\u7a39\u7a37\u7a51\u9ecf\u99a5\u7a70\u7688\u768e\u7693\u7699\u76a4\u74de\u74e0\u752c\u9e20\u9e22\u9e28",4,"\u9e32\u9e31\u9e36\u9e38\u9e37\u9e39\u9e3a\u9e3e\u9e41\u9e42\u9e44\u9e46\u9e47\u9e48\u9e49\u9e4b\u9e4c\u9e4e\u9e51\u9e55\u9e57\u9e5a\u9e5b\u9e5c\u9e5e\u9e63\u9e66",6,"\u9e71\u9e6d\u9e73\u7592\u7594\u7596\u75a0\u759d\u75ac\u75a3\u75b3\u75b4\u75b8\u75c4\u75b1\u75b0\u75c3\u75c2\u75d6\u75cd\u75e3\u75e8\u75e6\u75e4\u75eb\u75e7\u7603\u75f1\u75fc\u75ff\u7610\u7600\u7605\u760c\u7617\u760a\u7625\u7618\u7615\u7619"],["f140","\u998c\u998e\u999a",10,"\u99a6\u99a7\u99a9",47],["f180","\u99d9",32,"\u761b\u763c\u7622\u7620\u7640\u762d\u7630\u763f\u7635\u7643\u763e\u7633\u764d\u765e\u7654\u765c\u7656\u766b\u766f\u7fca\u7ae6\u7a78\u7a79\u7a80\u7a86\u7a88\u7a95\u7aa6\u7aa0\u7aac\u7aa8\u7aad\u7ab3\u8864\u8869\u8872\u887d\u887f\u8882\u88a2\u88c6\u88b7\u88bc\u88c9\u88e2\u88ce\u88e3\u88e5\u88f1\u891a\u88fc\u88e8\u88fe\u88f0\u8921\u8919\u8913\u891b\u890a\u8934\u892b\u8936\u8941\u8966\u897b\u758b\u80e5\u76b2\u76b4\u77dc\u8012\u8014\u8016\u801c\u8020\u8022\u8025\u8026\u8027\u8029\u8028\u8031\u800b\u8035\u8043\u8046\u804d\u8052\u8069\u8071\u8983\u9878\u9880\u9883"],["f240","\u99fa",62],["f280","\u9a39",32,"\u9889\u988c\u988d\u988f\u9894\u989a\u989b\u989e\u989f\u98a1\u98a2\u98a5\u98a6\u864d\u8654\u866c\u866e\u867f\u867a\u867c\u867b\u86a8\u868d\u868b\u86ac\u869d\u86a7\u86a3\u86aa\u8693\u86a9\u86b6\u86c4\u86b5\u86ce\u86b0\u86ba\u86b1\u86af\u86c9\u86cf\u86b4\u86e9\u86f1\u86f2\u86ed\u86f3\u86d0\u8713\u86de\u86f4\u86df\u86d8\u86d1\u8703\u8707\u86f8\u8708\u870a\u870d\u8709\u8723\u873b\u871e\u8725\u872e\u871a\u873e\u8748\u8734\u8731\u8729\u8737\u873f\u8782\u8722\u877d\u877e\u877b\u8760\u8770\u874c\u876e\u878b\u8753\u8763\u877c\u8764\u8759\u8765\u8793\u87af\u87a8\u87d2"],["f340","\u9a5a",17,"\u9a72\u9a83\u9a89\u9a8d\u9a8e\u9a94\u9a95\u9a99\u9aa6\u9aa9",6,"\u9ab2\u9ab3\u9ab4\u9ab5\u9ab9\u9abb\u9abd\u9abe\u9abf\u9ac3\u9ac4\u9ac6",4,"\u9acd\u9ace\u9acf\u9ad0\u9ad2\u9ad4\u9ad5\u9ad6\u9ad7\u9ad9\u9ada\u9adb\u9adc"],["f380","\u9add\u9ade\u9ae0\u9ae2\u9ae3\u9ae4\u9ae5\u9ae7\u9ae8\u9ae9\u9aea\u9aec\u9aee\u9af0",8,"\u9afa\u9afc",6,"\u9b04\u9b05\u9b06\u87c6\u8788\u8785\u87ad\u8797\u8783\u87ab\u87e5\u87ac\u87b5\u87b3\u87cb\u87d3\u87bd\u87d1\u87c0\u87ca\u87db\u87ea\u87e0\u87ee\u8816\u8813\u87fe\u880a\u881b\u8821\u8839\u883c\u7f36\u7f42\u7f44\u7f45\u8210\u7afa\u7afd\u7b08\u7b03\u7b04\u7b15\u7b0a\u7b2b\u7b0f\u7b47\u7b38\u7b2a\u7b19\u7b2e\u7b31\u7b20\u7b25\u7b24\u7b33\u7b3e\u7b1e\u7b58\u7b5a\u7b45\u7b75\u7b4c\u7b5d\u7b60\u7b6e\u7b7b\u7b62\u7b72\u7b71\u7b90\u7ba6\u7ba7\u7bb8\u7bac\u7b9d\u7ba8\u7b85\u7baa\u7b9c\u7ba2\u7bab\u7bb4\u7bd1\u7bc1\u7bcc\u7bdd\u7bda\u7be5\u7be6\u7bea\u7c0c\u7bfe\u7bfc\u7c0f\u7c16\u7c0b"],["f440","\u9b07\u9b09",5,"\u9b10\u9b11\u9b12\u9b14",10,"\u9b20\u9b21\u9b22\u9b24",10,"\u9b30\u9b31\u9b33",7,"\u9b3d\u9b3e\u9b3f\u9b40\u9b46\u9b4a\u9b4b\u9b4c\u9b4e\u9b50\u9b52\u9b53\u9b55",5],["f480","\u9b5b",32,"\u7c1f\u7c2a\u7c26\u7c38\u7c41\u7c40\u81fe\u8201\u8202\u8204\u81ec\u8844\u8221\u8222\u8223\u822d\u822f\u8228\u822b\u8238\u823b\u8233\u8234\u823e\u8244\u8249\u824b\u824f\u825a\u825f\u8268\u887e\u8885\u8888\u88d8\u88df\u895e\u7f9d\u7f9f\u7fa7\u7faf\u7fb0\u7fb2\u7c7c\u6549\u7c91\u7c9d\u7c9c\u7c9e\u7ca2\u7cb2\u7cbc\u7cbd\u7cc1\u7cc7\u7ccc\u7ccd\u7cc8\u7cc5\u7cd7\u7ce8\u826e\u66a8\u7fbf\u7fce\u7fd5\u7fe5\u7fe1\u7fe6\u7fe9\u7fee\u7ff3\u7cf8\u7d77\u7da6\u7dae\u7e47\u7e9b\u9eb8\u9eb4\u8d73\u8d84\u8d94\u8d91\u8db1\u8d67\u8d6d\u8c47\u8c49\u914a\u9150\u914e\u914f\u9164"],["f540","\u9b7c",62],["f580","\u9bbb",32,"\u9162\u9161\u9170\u9169\u916f\u917d\u917e\u9172\u9174\u9179\u918c\u9185\u9190\u918d\u9191\u91a2\u91a3\u91aa\u91ad\u91ae\u91af\u91b5\u91b4\u91ba\u8c55\u9e7e\u8db8\u8deb\u8e05\u8e59\u8e69\u8db5\u8dbf\u8dbc\u8dba\u8dc4\u8dd6\u8dd7\u8dda\u8dde\u8dce\u8dcf\u8ddb\u8dc6\u8dec\u8df7\u8df8\u8de3\u8df9\u8dfb\u8de4\u8e09\u8dfd\u8e14\u8e1d\u8e1f\u8e2c\u8e2e\u8e23\u8e2f\u8e3a\u8e40\u8e39\u8e35\u8e3d\u8e31\u8e49\u8e41\u8e42\u8e51\u8e52\u8e4a\u8e70\u8e76\u8e7c\u8e6f\u8e74\u8e85\u8e8f\u8e94\u8e90\u8e9c\u8e9e\u8c78\u8c82\u8c8a\u8c85\u8c98\u8c94\u659b\u89d6\u89de\u89da\u89dc"],["f640","\u9bdc",62],["f680","\u9c1b",32,"\u89e5\u89eb\u89ef\u8a3e\u8b26\u9753\u96e9\u96f3\u96ef\u9706\u9701\u9708\u970f\u970e\u972a\u972d\u9730\u973e\u9f80\u9f83\u9f85",5,"\u9f8c\u9efe\u9f0b\u9f0d\u96b9\u96bc\u96bd\u96ce\u96d2\u77bf\u96e0\u928e\u92ae\u92c8\u933e\u936a\u93ca\u938f\u943e\u946b\u9c7f\u9c82\u9c85\u9c86\u9c87\u9c88\u7a23\u9c8b\u9c8e\u9c90\u9c91\u9c92\u9c94\u9c95\u9c9a\u9c9b\u9c9e",5,"\u9ca5",4,"\u9cab\u9cad\u9cae\u9cb0",7,"\u9cba\u9cbb\u9cbc\u9cbd\u9cc4\u9cc5\u9cc6\u9cc7\u9cca\u9ccb"],["f740","\u9c3c",62],["f780","\u9c7b\u9c7d\u9c7e\u9c80\u9c83\u9c84\u9c89\u9c8a\u9c8c\u9c8f\u9c93\u9c96\u9c97\u9c98\u9c99\u9c9d\u9caa\u9cac\u9caf\u9cb9\u9cbe",4,"\u9cc8\u9cc9\u9cd1\u9cd2\u9cda\u9cdb\u9ce0\u9ce1\u9ccc",4,"\u9cd3\u9cd4\u9cd5\u9cd7\u9cd8\u9cd9\u9cdc\u9cdd\u9cdf\u9ce2\u977c\u9785\u9791\u9792\u9794\u97af\u97ab\u97a3\u97b2\u97b4\u9ab1\u9ab0\u9ab7\u9e58\u9ab6\u9aba\u9abc\u9ac1\u9ac0\u9ac5\u9ac2\u9acb\u9acc\u9ad1\u9b45\u9b43\u9b47\u9b49\u9b48\u9b4d\u9b51\u98e8\u990d\u992e\u9955\u9954\u9adf\u9ae1\u9ae6\u9aef\u9aeb\u9afb\u9aed\u9af9\u9b08\u9b0f\u9b13\u9b1f\u9b23\u9ebd\u9ebe\u7e3b\u9e82\u9e87\u9e88\u9e8b\u9e92\u93d6\u9e9d\u9e9f\u9edb\u9edc\u9edd\u9ee0\u9edf\u9ee2\u9ee9\u9ee7\u9ee5\u9eea\u9eef\u9f22\u9f2c\u9f2f\u9f39\u9f37\u9f3d\u9f3e\u9f44"],["f840","\u9ce3",62],["f880","\u9d22",32],["f940","\u9d43",62],["f980","\u9d82",32],["fa40","\u9da3",62],["fa80","\u9de2",32],["fb40","\u9e03",27,"\u9e24\u9e27\u9e2e\u9e30\u9e34\u9e3b\u9e3c\u9e40\u9e4d\u9e50\u9e52\u9e53\u9e54\u9e56\u9e59\u9e5d\u9e5f\u9e60\u9e61\u9e62\u9e65\u9e6e\u9e6f\u9e72\u9e74",9,"\u9e80"],["fb80","\u9e81\u9e83\u9e84\u9e85\u9e86\u9e89\u9e8a\u9e8c",5,"\u9e94",8,"\u9e9e\u9ea0",5,"\u9ea7\u9ea8\u9ea9\u9eaa"],["fc40","\u9eab",8,"\u9eb5\u9eb6\u9eb7\u9eb9\u9eba\u9ebc\u9ebf",4,"\u9ec5\u9ec6\u9ec7\u9ec8\u9eca\u9ecb\u9ecc\u9ed0\u9ed2\u9ed3\u9ed5\u9ed6\u9ed7\u9ed9\u9eda\u9ede\u9ee1\u9ee3\u9ee4\u9ee6\u9ee8\u9eeb\u9eec\u9eed\u9eee\u9ef0",8,"\u9efa\u9efd\u9eff",6],["fc80","\u9f06",4,"\u9f0c\u9f0f\u9f11\u9f12\u9f14\u9f15\u9f16\u9f18\u9f1a",5,"\u9f21\u9f23",8,"\u9f2d\u9f2e\u9f30\u9f31"],["fd40","\u9f32",4,"\u9f38\u9f3a\u9f3c\u9f3f",4,"\u9f45",10,"\u9f52",38],["fd80","\u9f79",5,"\u9f81\u9f82\u9f8d",11,"\u9f9c\u9f9d\u9f9e\u9fa1",4,"\uf92c\uf979\uf995\uf9e7\uf9f1"],["fe40","\ufa0c\ufa0d\ufa0e\ufa0f\ufa11\ufa13\ufa14\ufa18\ufa1f\ufa20\ufa21\ufa23\ufa24\ufa27\ufa28\ufa29"]]')},21166:function(b){"use strict";b.exports=JSON.parse('[["0","\\u0000",127],["8141","\uac02\uac03\uac05\uac06\uac0b",4,"\uac18\uac1e\uac1f\uac21\uac22\uac23\uac25",6,"\uac2e\uac32\uac33\uac34"],["8161","\uac35\uac36\uac37\uac3a\uac3b\uac3d\uac3e\uac3f\uac41",9,"\uac4c\uac4e",5,"\uac55"],["8181","\uac56\uac57\uac59\uac5a\uac5b\uac5d",18,"\uac72\uac73\uac75\uac76\uac79\uac7b",4,"\uac82\uac87\uac88\uac8d\uac8e\uac8f\uac91\uac92\uac93\uac95",6,"\uac9e\uaca2",5,"\uacab\uacad\uacae\uacb1",6,"\uacba\uacbe\uacbf\uacc0\uacc2\uacc3\uacc5\uacc6\uacc7\uacc9\uacca\uaccb\uaccd",7,"\uacd6\uacd8",7,"\uace2\uace3\uace5\uace6\uace9\uaceb\uaced\uacee\uacf2\uacf4\uacf7",4,"\uacfe\uacff\uad01\uad02\uad03\uad05\uad07",4,"\uad0e\uad10\uad12\uad13"],["8241","\uad14\uad15\uad16\uad17\uad19\uad1a\uad1b\uad1d\uad1e\uad1f\uad21",7,"\uad2a\uad2b\uad2e",5],["8261","\uad36\uad37\uad39\uad3a\uad3b\uad3d",6,"\uad46\uad48\uad4a",5,"\uad51\uad52\uad53\uad55\uad56\uad57"],["8281","\uad59",7,"\uad62\uad64",7,"\uad6e\uad6f\uad71\uad72\uad77\uad78\uad79\uad7a\uad7e\uad80\uad83",4,"\uad8a\uad8b\uad8d\uad8e\uad8f\uad91",10,"\uad9e",5,"\uada5",17,"\uadb8",7,"\uadc2\uadc3\uadc5\uadc6\uadc7\uadc9",6,"\uadd2\uadd4",7,"\uaddd\uadde\uaddf\uade1\uade2\uade3\uade5",18],["8341","\uadfa\uadfb\uadfd\uadfe\uae02",5,"\uae0a\uae0c\uae0e",5,"\uae15",7],["8361","\uae1d",18,"\uae32\uae33\uae35\uae36\uae39\uae3b\uae3c"],["8381","\uae3d\uae3e\uae3f\uae42\uae44\uae47\uae48\uae49\uae4b\uae4f\uae51\uae52\uae53\uae55\uae57",4,"\uae5e\uae62\uae63\uae64\uae66\uae67\uae6a\uae6b\uae6d\uae6e\uae6f\uae71",6,"\uae7a\uae7e",5,"\uae86",5,"\uae8d",46,"\uaebf\uaec1\uaec2\uaec3\uaec5",6,"\uaece\uaed2",5,"\uaeda\uaedb\uaedd",8],["8441","\uaee6\uaee7\uaee9\uaeea\uaeec\uaeee",5,"\uaef5\uaef6\uaef7\uaef9\uaefa\uaefb\uaefd",8],["8461","\uaf06\uaf09\uaf0a\uaf0b\uaf0c\uaf0e\uaf0f\uaf11",18],["8481","\uaf24",7,"\uaf2e\uaf2f\uaf31\uaf33\uaf35",6,"\uaf3e\uaf40\uaf44\uaf45\uaf46\uaf47\uaf4a",5,"\uaf51",10,"\uaf5e",5,"\uaf66",18,"\uaf7a",5,"\uaf81\uaf82\uaf83\uaf85\uaf86\uaf87\uaf89",6,"\uaf92\uaf93\uaf94\uaf96",5,"\uaf9d",26,"\uafba\uafbb\uafbd\uafbe"],["8541","\uafbf\uafc1",5,"\uafca\uafcc\uafcf",4,"\uafd5",6,"\uafdd",4],["8561","\uafe2",5,"\uafea",5,"\uaff2\uaff3\uaff5\uaff6\uaff7\uaff9",6,"\ub002\ub003"],["8581","\ub005",6,"\ub00d\ub00e\ub00f\ub011\ub012\ub013\ub015",6,"\ub01e",9,"\ub029",26,"\ub046\ub047\ub049\ub04b\ub04d\ub04f\ub050\ub051\ub052\ub056\ub058\ub05a\ub05b\ub05c\ub05e",29,"\ub07e\ub07f\ub081\ub082\ub083\ub085",6,"\ub08e\ub090\ub092",5,"\ub09b\ub09d\ub09e\ub0a3\ub0a4"],["8641","\ub0a5\ub0a6\ub0a7\ub0aa\ub0b0\ub0b2\ub0b6\ub0b7\ub0b9\ub0ba\ub0bb\ub0bd",6,"\ub0c6\ub0ca",5,"\ub0d2"],["8661","\ub0d3\ub0d5\ub0d6\ub0d7\ub0d9",6,"\ub0e1\ub0e2\ub0e3\ub0e4\ub0e6",10],["8681","\ub0f1",22,"\ub10a\ub10d\ub10e\ub10f\ub111\ub114\ub115\ub116\ub117\ub11a\ub11e",4,"\ub126\ub127\ub129\ub12a\ub12b\ub12d",6,"\ub136\ub13a",5,"\ub142\ub143\ub145\ub146\ub147\ub149",6,"\ub152\ub153\ub156\ub157\ub159\ub15a\ub15b\ub15d\ub15e\ub15f\ub161",22,"\ub17a\ub17b\ub17d\ub17e\ub17f\ub181\ub183",4,"\ub18a\ub18c\ub18e\ub18f\ub190\ub191\ub195\ub196\ub197\ub199\ub19a\ub19b\ub19d"],["8741","\ub19e",9,"\ub1a9",15],["8761","\ub1b9",18,"\ub1cd\ub1ce\ub1cf\ub1d1\ub1d2\ub1d3\ub1d5"],["8781","\ub1d6",5,"\ub1de\ub1e0",7,"\ub1ea\ub1eb\ub1ed\ub1ee\ub1ef\ub1f1",7,"\ub1fa\ub1fc\ub1fe",5,"\ub206\ub207\ub209\ub20a\ub20d",6,"\ub216\ub218\ub21a",5,"\ub221",18,"\ub235",6,"\ub23d",26,"\ub259\ub25a\ub25b\ub25d\ub25e\ub25f\ub261",6,"\ub26a",4],["8841","\ub26f",4,"\ub276",5,"\ub27d",6,"\ub286\ub287\ub288\ub28a",4],["8861","\ub28f\ub292\ub293\ub295\ub296\ub297\ub29b",4,"\ub2a2\ub2a4\ub2a7\ub2a8\ub2a9\ub2ab\ub2ad\ub2ae\ub2af\ub2b1\ub2b2\ub2b3\ub2b5\ub2b6\ub2b7"],["8881","\ub2b8",15,"\ub2ca\ub2cb\ub2cd\ub2ce\ub2cf\ub2d1\ub2d3",4,"\ub2da\ub2dc\ub2de\ub2df\ub2e0\ub2e1\ub2e3\ub2e7\ub2e9\ub2ea\ub2f0\ub2f1\ub2f2\ub2f6\ub2fc\ub2fd\ub2fe\ub302\ub303\ub305\ub306\ub307\ub309",6,"\ub312\ub316",5,"\ub31d",54,"\ub357\ub359\ub35a\ub35d\ub360\ub361\ub362\ub363"],["8941","\ub366\ub368\ub36a\ub36c\ub36d\ub36f\ub372\ub373\ub375\ub376\ub377\ub379",6,"\ub382\ub386",5,"\ub38d"],["8961","\ub38e\ub38f\ub391\ub392\ub393\ub395",10,"\ub3a2",5,"\ub3a9\ub3aa\ub3ab\ub3ad"],["8981","\ub3ae",21,"\ub3c6\ub3c7\ub3c9\ub3ca\ub3cd\ub3cf\ub3d1\ub3d2\ub3d3\ub3d6\ub3d8\ub3da\ub3dc\ub3de\ub3df\ub3e1\ub3e2\ub3e3\ub3e5\ub3e6\ub3e7\ub3e9",18,"\ub3fd",18,"\ub411",6,"\ub419\ub41a\ub41b\ub41d\ub41e\ub41f\ub421",6,"\ub42a\ub42c",7,"\ub435",15],["8a41","\ub445",10,"\ub452\ub453\ub455\ub456\ub457\ub459",6,"\ub462\ub464\ub466"],["8a61","\ub467",4,"\ub46d",18,"\ub481\ub482"],["8a81","\ub483",4,"\ub489",19,"\ub49e",5,"\ub4a5\ub4a6\ub4a7\ub4a9\ub4aa\ub4ab\ub4ad",7,"\ub4b6\ub4b8\ub4ba",5,"\ub4c1\ub4c2\ub4c3\ub4c5\ub4c6\ub4c7\ub4c9",6,"\ub4d1\ub4d2\ub4d3\ub4d4\ub4d6",5,"\ub4de\ub4df\ub4e1\ub4e2\ub4e5\ub4e7",4,"\ub4ee\ub4f0\ub4f2",5,"\ub4f9",26,"\ub516\ub517\ub519\ub51a\ub51d"],["8b41","\ub51e",5,"\ub526\ub52b",4,"\ub532\ub533\ub535\ub536\ub537\ub539",6,"\ub542\ub546"],["8b61","\ub547\ub548\ub549\ub54a\ub54e\ub54f\ub551\ub552\ub553\ub555",6,"\ub55e\ub562",8],["8b81","\ub56b",52,"\ub5a2\ub5a3\ub5a5\ub5a6\ub5a7\ub5a9\ub5ac\ub5ad\ub5ae\ub5af\ub5b2\ub5b6",4,"\ub5be\ub5bf\ub5c1\ub5c2\ub5c3\ub5c5",6,"\ub5ce\ub5d2",5,"\ub5d9",18,"\ub5ed",18],["8c41","\ub600",15,"\ub612\ub613\ub615\ub616\ub617\ub619",4],["8c61","\ub61e",6,"\ub626",5,"\ub62d",6,"\ub635",5],["8c81","\ub63b",12,"\ub649",26,"\ub665\ub666\ub667\ub669",50,"\ub69e\ub69f\ub6a1\ub6a2\ub6a3\ub6a5",5,"\ub6ad\ub6ae\ub6af\ub6b0\ub6b2",16],["8d41","\ub6c3",16,"\ub6d5",8],["8d61","\ub6de",17,"\ub6f1\ub6f2\ub6f3\ub6f5\ub6f6\ub6f7\ub6f9\ub6fa"],["8d81","\ub6fb",4,"\ub702\ub703\ub704\ub706",33,"\ub72a\ub72b\ub72d\ub72e\ub731",6,"\ub73a\ub73c",7,"\ub745\ub746\ub747\ub749\ub74a\ub74b\ub74d",6,"\ub756",9,"\ub761\ub762\ub763\ub765\ub766\ub767\ub769",6,"\ub772\ub774\ub776",5,"\ub77e\ub77f\ub781\ub782\ub783\ub785",6,"\ub78e\ub793\ub794\ub795\ub79a\ub79b\ub79d\ub79e"],["8e41","\ub79f\ub7a1",6,"\ub7aa\ub7ae",5,"\ub7b6\ub7b7\ub7b9",8],["8e61","\ub7c2",4,"\ub7c8\ub7ca",19],["8e81","\ub7de",13,"\ub7ee\ub7ef\ub7f1\ub7f2\ub7f3\ub7f5",6,"\ub7fe\ub802",4,"\ub80a\ub80b\ub80d\ub80e\ub80f\ub811",6,"\ub81a\ub81c\ub81e",5,"\ub826\ub827\ub829\ub82a\ub82b\ub82d",6,"\ub836\ub83a",5,"\ub841\ub842\ub843\ub845",11,"\ub852\ub854",7,"\ub85e\ub85f\ub861\ub862\ub863\ub865",6,"\ub86e\ub870\ub872",5,"\ub879\ub87a\ub87b\ub87d",7],["8f41","\ub885",7,"\ub88e",17],["8f61","\ub8a0",7,"\ub8a9",6,"\ub8b1\ub8b2\ub8b3\ub8b5\ub8b6\ub8b7\ub8b9",4],["8f81","\ub8be\ub8bf\ub8c2\ub8c4\ub8c6",5,"\ub8cd\ub8ce\ub8cf\ub8d1\ub8d2\ub8d3\ub8d5",7,"\ub8de\ub8e0\ub8e2",5,"\ub8ea\ub8eb\ub8ed\ub8ee\ub8ef\ub8f1",6,"\ub8fa\ub8fc\ub8fe",5,"\ub905",18,"\ub919",6,"\ub921",26,"\ub93e\ub93f\ub941\ub942\ub943\ub945",6,"\ub94d\ub94e\ub950\ub952",5],["9041","\ub95a\ub95b\ub95d\ub95e\ub95f\ub961",6,"\ub96a\ub96c\ub96e",5,"\ub976\ub977\ub979\ub97a\ub97b\ub97d"],["9061","\ub97e",5,"\ub986\ub988\ub98b\ub98c\ub98f",15],["9081","\ub99f",12,"\ub9ae\ub9af\ub9b1\ub9b2\ub9b3\ub9b5",6,"\ub9be\ub9c0\ub9c2",5,"\ub9ca\ub9cb\ub9cd\ub9d3",4,"\ub9da\ub9dc\ub9df\ub9e0\ub9e2\ub9e6\ub9e7\ub9e9\ub9ea\ub9eb\ub9ed",6,"\ub9f6\ub9fb",4,"\uba02",5,"\uba09",11,"\uba16",33,"\uba3a\uba3b\uba3d\uba3e\uba3f\uba41\uba43\uba44\uba45\uba46"],["9141","\uba47\uba4a\uba4c\uba4f\uba50\uba51\uba52\uba56\uba57\uba59\uba5a\uba5b\uba5d",6,"\uba66\uba6a",5],["9161","\uba72\uba73\uba75\uba76\uba77\uba79",9,"\uba86\uba88\uba89\uba8a\uba8b\uba8d",5],["9181","\uba93",20,"\ubaaa\ubaad\ubaae\ubaaf\ubab1\ubab3",4,"\ubaba\ubabc\ubabe",5,"\ubac5\ubac6\ubac7\ubac9",14,"\ubada",33,"\ubafd\ubafe\ubaff\ubb01\ubb02\ubb03\ubb05",7,"\ubb0e\ubb10\ubb12",5,"\ubb19\ubb1a\ubb1b\ubb1d\ubb1e\ubb1f\ubb21",6],["9241","\ubb28\ubb2a\ubb2c",7,"\ubb37\ubb39\ubb3a\ubb3f",4,"\ubb46\ubb48\ubb4a\ubb4b\ubb4c\ubb4e\ubb51\ubb52"],["9261","\ubb53\ubb55\ubb56\ubb57\ubb59",7,"\ubb62\ubb64",7,"\ubb6d",4],["9281","\ubb72",21,"\ubb89\ubb8a\ubb8b\ubb8d\ubb8e\ubb8f\ubb91",18,"\ubba5\ubba6\ubba7\ubba9\ubbaa\ubbab\ubbad",6,"\ubbb5\ubbb6\ubbb8",7,"\ubbc1\ubbc2\ubbc3\ubbc5\ubbc6\ubbc7\ubbc9",6,"\ubbd1\ubbd2\ubbd4",35,"\ubbfa\ubbfb\ubbfd\ubbfe\ubc01"],["9341","\ubc03",4,"\ubc0a\ubc0e\ubc10\ubc12\ubc13\ubc19\ubc1a\ubc20\ubc21\ubc22\ubc23\ubc26\ubc28\ubc2a\ubc2b\ubc2c\ubc2e\ubc2f\ubc32\ubc33\ubc35"],["9361","\ubc36\ubc37\ubc39",6,"\ubc42\ubc46\ubc47\ubc48\ubc4a\ubc4b\ubc4e\ubc4f\ubc51",8],["9381","\ubc5a\ubc5b\ubc5c\ubc5e",37,"\ubc86\ubc87\ubc89\ubc8a\ubc8d\ubc8f",4,"\ubc96\ubc98\ubc9b",4,"\ubca2\ubca3\ubca5\ubca6\ubca9",6,"\ubcb2\ubcb6",5,"\ubcbe\ubcbf\ubcc1\ubcc2\ubcc3\ubcc5",7,"\ubcce\ubcd2\ubcd3\ubcd4\ubcd6\ubcd7\ubcd9\ubcda\ubcdb\ubcdd",22,"\ubcf7\ubcf9\ubcfa\ubcfb\ubcfd"],["9441","\ubcfe",5,"\ubd06\ubd08\ubd0a",5,"\ubd11\ubd12\ubd13\ubd15",8],["9461","\ubd1e",5,"\ubd25",6,"\ubd2d",12],["9481","\ubd3a",5,"\ubd41",6,"\ubd4a\ubd4b\ubd4d\ubd4e\ubd4f\ubd51",6,"\ubd5a",9,"\ubd65\ubd66\ubd67\ubd69",22,"\ubd82\ubd83\ubd85\ubd86\ubd8b",4,"\ubd92\ubd94\ubd96\ubd97\ubd98\ubd9b\ubd9d",6,"\ubda5",10,"\ubdb1",6,"\ubdb9",24],["9541","\ubdd2\ubdd3\ubdd6\ubdd7\ubdd9\ubdda\ubddb\ubddd",11,"\ubdea",5,"\ubdf1"],["9561","\ubdf2\ubdf3\ubdf5\ubdf6\ubdf7\ubdf9",6,"\ube01\ube02\ube04\ube06",5,"\ube0e\ube0f\ube11\ube12\ube13"],["9581","\ube15",6,"\ube1e\ube20",35,"\ube46\ube47\ube49\ube4a\ube4b\ube4d\ube4f",4,"\ube56\ube58\ube5c\ube5d\ube5e\ube5f\ube62\ube63\ube65\ube66\ube67\ube69\ube6b",4,"\ube72\ube76",4,"\ube7e\ube7f\ube81\ube82\ube83\ube85",6,"\ube8e\ube92",5,"\ube9a",13,"\ubea9",14],["9641","\ubeb8",23,"\ubed2\ubed3"],["9661","\ubed5\ubed6\ubed9",6,"\ubee1\ubee2\ubee6",5,"\ubeed",8],["9681","\ubef6",10,"\ubf02",5,"\ubf0a",13,"\ubf1a\ubf1e",33,"\ubf42\ubf43\ubf45\ubf46\ubf47\ubf49",6,"\ubf52\ubf53\ubf54\ubf56",44],["9741","\ubf83",16,"\ubf95",8],["9761","\ubf9e",17,"\ubfb1",7],["9781","\ubfb9",11,"\ubfc6",5,"\ubfce\ubfcf\ubfd1\ubfd2\ubfd3\ubfd5",6,"\ubfdd\ubfde\ubfe0\ubfe2",89,"\uc03d\uc03e\uc03f"],["9841","\uc040",16,"\uc052",5,"\uc059\uc05a\uc05b"],["9861","\uc05d\uc05e\uc05f\uc061",6,"\uc06a",15],["9881","\uc07a",21,"\uc092\uc093\uc095\uc096\uc097\uc099",6,"\uc0a2\uc0a4\uc0a6",5,"\uc0ae\uc0b1\uc0b2\uc0b7",4,"\uc0be\uc0c2\uc0c3\uc0c4\uc0c6\uc0c7\uc0ca\uc0cb\uc0cd\uc0ce\uc0cf\uc0d1",6,"\uc0da\uc0de",5,"\uc0e6\uc0e7\uc0e9\uc0ea\uc0eb\uc0ed",6,"\uc0f6\uc0f8\uc0fa",5,"\uc101\uc102\uc103\uc105\uc106\uc107\uc109",6,"\uc111\uc112\uc113\uc114\uc116",5,"\uc121\uc122\uc125\uc128\uc129\uc12a\uc12b\uc12e"],["9941","\uc132\uc133\uc134\uc135\uc137\uc13a\uc13b\uc13d\uc13e\uc13f\uc141",6,"\uc14a\uc14e",5,"\uc156\uc157"],["9961","\uc159\uc15a\uc15b\uc15d",6,"\uc166\uc16a",5,"\uc171\uc172\uc173\uc175\uc176\uc177\uc179\uc17a\uc17b"],["9981","\uc17c",8,"\uc186",5,"\uc18f\uc191\uc192\uc193\uc195\uc197",4,"\uc19e\uc1a0\uc1a2\uc1a3\uc1a4\uc1a6\uc1a7\uc1aa\uc1ab\uc1ad\uc1ae\uc1af\uc1b1",11,"\uc1be",5,"\uc1c5\uc1c6\uc1c7\uc1c9\uc1ca\uc1cb\uc1cd",6,"\uc1d5\uc1d6\uc1d9",6,"\uc1e1\uc1e2\uc1e3\uc1e5\uc1e6\uc1e7\uc1e9",6,"\uc1f2\uc1f4",7,"\uc1fe\uc1ff\uc201\uc202\uc203\uc205",6,"\uc20e\uc210\uc212",5,"\uc21a\uc21b\uc21d\uc21e\uc221\uc222\uc223"],["9a41","\uc224\uc225\uc226\uc227\uc22a\uc22c\uc22e\uc230\uc233\uc235",16],["9a61","\uc246\uc247\uc249",6,"\uc252\uc253\uc255\uc256\uc257\uc259",6,"\uc261\uc262\uc263\uc264\uc266"],["9a81","\uc267",4,"\uc26e\uc26f\uc271\uc272\uc273\uc275",6,"\uc27e\uc280\uc282",5,"\uc28a",5,"\uc291",6,"\uc299\uc29a\uc29c\uc29e",5,"\uc2a6\uc2a7\uc2a9\uc2aa\uc2ab\uc2ae",5,"\uc2b6\uc2b8\uc2ba",33,"\uc2de\uc2df\uc2e1\uc2e2\uc2e5",5,"\uc2ee\uc2f0\uc2f2\uc2f3\uc2f4\uc2f5\uc2f7\uc2fa\uc2fd\uc2fe\uc2ff\uc301",6,"\uc30a\uc30b\uc30e\uc30f"],["9b41","\uc310\uc311\uc312\uc316\uc317\uc319\uc31a\uc31b\uc31d",6,"\uc326\uc327\uc32a",8],["9b61","\uc333",17,"\uc346",7],["9b81","\uc34e",25,"\uc36a\uc36b\uc36d\uc36e\uc36f\uc371\uc373",4,"\uc37a\uc37b\uc37e",5,"\uc385\uc386\uc387\uc389\uc38a\uc38b\uc38d",50,"\uc3c1",22,"\uc3da"],["9c41","\uc3db\uc3dd\uc3de\uc3e1\uc3e3",4,"\uc3ea\uc3eb\uc3ec\uc3ee",5,"\uc3f6\uc3f7\uc3f9",5],["9c61","\uc3ff",8,"\uc409",6,"\uc411",9],["9c81","\uc41b",8,"\uc425",6,"\uc42d\uc42e\uc42f\uc431\uc432\uc433\uc435",6,"\uc43e",9,"\uc449",26,"\uc466\uc467\uc469\uc46a\uc46b\uc46d",6,"\uc476\uc477\uc478\uc47a",5,"\uc481",18,"\uc495",6,"\uc49d",12],["9d41","\uc4aa",13,"\uc4b9\uc4ba\uc4bb\uc4bd",8],["9d61","\uc4c6",25],["9d81","\uc4e0",8,"\uc4ea",5,"\uc4f2\uc4f3\uc4f5\uc4f6\uc4f7\uc4f9\uc4fb\uc4fc\uc4fd\uc4fe\uc502",9,"\uc50d\uc50e\uc50f\uc511\uc512\uc513\uc515",6,"\uc51d",10,"\uc52a\uc52b\uc52d\uc52e\uc52f\uc531",6,"\uc53a\uc53c\uc53e",5,"\uc546\uc547\uc54b\uc54f\uc550\uc551\uc552\uc556\uc55a\uc55b\uc55c\uc55f\uc562\uc563\uc565\uc566\uc567\uc569",6,"\uc572\uc576",5,"\uc57e\uc57f\uc581\uc582\uc583\uc585\uc586\uc588\uc589\uc58a\uc58b\uc58e\uc590\uc592\uc593\uc594"],["9e41","\uc596\uc599\uc59a\uc59b\uc59d\uc59e\uc59f\uc5a1",7,"\uc5aa",9,"\uc5b6"],["9e61","\uc5b7\uc5ba\uc5bf",4,"\uc5cb\uc5cd\uc5cf\uc5d2\uc5d3\uc5d5\uc5d6\uc5d7\uc5d9",6,"\uc5e2\uc5e4\uc5e6\uc5e7"],["9e81","\uc5e8\uc5e9\uc5ea\uc5eb\uc5ef\uc5f1\uc5f2\uc5f3\uc5f5\uc5f8\uc5f9\uc5fa\uc5fb\uc602\uc603\uc604\uc609\uc60a\uc60b\uc60d\uc60e\uc60f\uc611",6,"\uc61a\uc61d",6,"\uc626\uc627\uc629\uc62a\uc62b\uc62f\uc631\uc632\uc636\uc638\uc63a\uc63c\uc63d\uc63e\uc63f\uc642\uc643\uc645\uc646\uc647\uc649",6,"\uc652\uc656",5,"\uc65e\uc65f\uc661",10,"\uc66d\uc66e\uc670\uc672",5,"\uc67a\uc67b\uc67d\uc67e\uc67f\uc681",6,"\uc68a\uc68c\uc68e",5,"\uc696\uc697\uc699\uc69a\uc69b\uc69d",6,"\uc6a6"],["9f41","\uc6a8\uc6aa",5,"\uc6b2\uc6b3\uc6b5\uc6b6\uc6b7\uc6bb",4,"\uc6c2\uc6c4\uc6c6",5,"\uc6ce"],["9f61","\uc6cf\uc6d1\uc6d2\uc6d3\uc6d5",6,"\uc6de\uc6df\uc6e2",5,"\uc6ea\uc6eb\uc6ed\uc6ee\uc6ef\uc6f1\uc6f2"],["9f81","\uc6f3",4,"\uc6fa\uc6fb\uc6fc\uc6fe",5,"\uc706\uc707\uc709\uc70a\uc70b\uc70d",6,"\uc716\uc718\uc71a",5,"\uc722\uc723\uc725\uc726\uc727\uc729",6,"\uc732\uc734\uc736\uc738\uc739\uc73a\uc73b\uc73e\uc73f\uc741\uc742\uc743\uc745",4,"\uc74b\uc74e\uc750\uc759\uc75a\uc75b\uc75d\uc75e\uc75f\uc761",6,"\uc769\uc76a\uc76c",7,"\uc776\uc777\uc779\uc77a\uc77b\uc77f\uc780\uc781\uc782\uc786\uc78b\uc78c\uc78d\uc78f\uc792\uc793\uc795\uc799\uc79b",4,"\uc7a2\uc7a7",4,"\uc7ae\uc7af\uc7b1\uc7b2\uc7b3\uc7b5\uc7b6\uc7b7"],["a041","\uc7b8\uc7b9\uc7ba\uc7bb\uc7be\uc7c2",5,"\uc7ca\uc7cb\uc7cd\uc7cf\uc7d1",6,"\uc7d9\uc7da\uc7db\uc7dc"],["a061","\uc7de",5,"\uc7e5\uc7e6\uc7e7\uc7e9\uc7ea\uc7eb\uc7ed",13],["a081","\uc7fb",4,"\uc802\uc803\uc805\uc806\uc807\uc809\uc80b",4,"\uc812\uc814\uc817",4,"\uc81e\uc81f\uc821\uc822\uc823\uc825",6,"\uc82e\uc830\uc832",5,"\uc839\uc83a\uc83b\uc83d\uc83e\uc83f\uc841",6,"\uc84a\uc84b\uc84e",5,"\uc855",26,"\uc872\uc873\uc875\uc876\uc877\uc879\uc87b",4,"\uc882\uc884\uc888\uc889\uc88a\uc88e",5,"\uc895",7,"\uc89e\uc8a0\uc8a2\uc8a3\uc8a4"],["a141","\uc8a5\uc8a6\uc8a7\uc8a9",18,"\uc8be\uc8bf\uc8c0\uc8c1"],["a161","\uc8c2\uc8c3\uc8c5\uc8c6\uc8c7\uc8c9\uc8ca\uc8cb\uc8cd",6,"\uc8d6\uc8d8\uc8da",5,"\uc8e2\uc8e3\uc8e5"],["a181","\uc8e6",14,"\uc8f6",5,"\uc8fe\uc8ff\uc901\uc902\uc903\uc907",4,"\uc90e\u3000\u3001\u3002\xb7\u2025\u2026\xa8\u3003\xad\u2015\u2225\uff3c\u223c\u2018\u2019\u201c\u201d\u3014\u3015\u3008",9,"\xb1\xd7\xf7\u2260\u2264\u2265\u221e\u2234\xb0\u2032\u2033\u2103\u212b\uffe0\uffe1\uffe5\u2642\u2640\u2220\u22a5\u2312\u2202\u2207\u2261\u2252\xa7\u203b\u2606\u2605\u25cb\u25cf\u25ce\u25c7\u25c6\u25a1\u25a0\u25b3\u25b2\u25bd\u25bc\u2192\u2190\u2191\u2193\u2194\u3013\u226a\u226b\u221a\u223d\u221d\u2235\u222b\u222c\u2208\u220b\u2286\u2287\u2282\u2283\u222a\u2229\u2227\u2228\uffe2"],["a241","\uc910\uc912",5,"\uc919",18],["a261","\uc92d",6,"\uc935",18],["a281","\uc948",7,"\uc952\uc953\uc955\uc956\uc957\uc959",6,"\uc962\uc964",7,"\uc96d\uc96e\uc96f\u21d2\u21d4\u2200\u2203\xb4\uff5e\u02c7\u02d8\u02dd\u02da\u02d9\xb8\u02db\xa1\xbf\u02d0\u222e\u2211\u220f\xa4\u2109\u2030\u25c1\u25c0\u25b7\u25b6\u2664\u2660\u2661\u2665\u2667\u2663\u2299\u25c8\u25a3\u25d0\u25d1\u2592\u25a4\u25a5\u25a8\u25a7\u25a6\u25a9\u2668\u260f\u260e\u261c\u261e\xb6\u2020\u2021\u2195\u2197\u2199\u2196\u2198\u266d\u2669\u266a\u266c\u327f\u321c\u2116\u33c7\u2122\u33c2\u33d8\u2121\u20ac\xae"],["a341","\uc971\uc972\uc973\uc975",6,"\uc97d",10,"\uc98a\uc98b\uc98d\uc98e\uc98f"],["a361","\uc991",6,"\uc99a\uc99c\uc99e",16],["a381","\uc9af",16,"\uc9c2\uc9c3\uc9c5\uc9c6\uc9c9\uc9cb",4,"\uc9d2\uc9d4\uc9d7\uc9d8\uc9db\uff01",58,"\uffe6\uff3d",32,"\uffe3"],["a441","\uc9de\uc9df\uc9e1\uc9e3\uc9e5\uc9e6\uc9e8\uc9e9\uc9ea\uc9eb\uc9ee\uc9f2",5,"\uc9fa\uc9fb\uc9fd\uc9fe\uc9ff\uca01\uca02\uca03\uca04"],["a461","\uca05\uca06\uca07\uca0a\uca0e",5,"\uca15\uca16\uca17\uca19",12],["a481","\uca26\uca27\uca28\uca2a",28,"\u3131",93],["a541","\uca47",4,"\uca4e\uca4f\uca51\uca52\uca53\uca55",6,"\uca5e\uca62",5,"\uca69\uca6a"],["a561","\uca6b",17,"\uca7e",5,"\uca85\uca86"],["a581","\uca87",16,"\uca99",14,"\u2170",9],["a5b0","\u2160",9],["a5c1","\u0391",16,"\u03a3",6],["a5e1","\u03b1",16,"\u03c3",6],["a641","\ucaa8",19,"\ucabe\ucabf\ucac1\ucac2\ucac3\ucac5"],["a661","\ucac6",5,"\ucace\ucad0\ucad2\ucad4\ucad5\ucad6\ucad7\ucada",5,"\ucae1",6],["a681","\ucae8\ucae9\ucaea\ucaeb\ucaed",6,"\ucaf5",18,"\ucb09\ucb0a\u2500\u2502\u250c\u2510\u2518\u2514\u251c\u252c\u2524\u2534\u253c\u2501\u2503\u250f\u2513\u251b\u2517\u2523\u2533\u252b\u253b\u254b\u2520\u252f\u2528\u2537\u253f\u251d\u2530\u2525\u2538\u2542\u2512\u2511\u251a\u2519\u2516\u2515\u250e\u250d\u251e\u251f\u2521\u2522\u2526\u2527\u2529\u252a\u252d\u252e\u2531\u2532\u2535\u2536\u2539\u253a\u253d\u253e\u2540\u2541\u2543",7],["a741","\ucb0b",4,"\ucb11\ucb12\ucb13\ucb15\ucb16\ucb17\ucb19",6,"\ucb22",7],["a761","\ucb2a",22,"\ucb42\ucb43\ucb44"],["a781","\ucb45\ucb46\ucb47\ucb4a\ucb4b\ucb4d\ucb4e\ucb4f\ucb51",6,"\ucb5a\ucb5b\ucb5c\ucb5e",5,"\ucb65",7,"\u3395\u3396\u3397\u2113\u3398\u33c4\u33a3\u33a4\u33a5\u33a6\u3399",9,"\u33ca\u338d\u338e\u338f\u33cf\u3388\u3389\u33c8\u33a7\u33a8\u33b0",9,"\u3380",4,"\u33ba",5,"\u3390",4,"\u2126\u33c0\u33c1\u338a\u338b\u338c\u33d6\u33c5\u33ad\u33ae\u33af\u33db\u33a9\u33aa\u33ab\u33ac\u33dd\u33d0\u33d3\u33c3\u33c9\u33dc\u33c6"],["a841","\ucb6d",10,"\ucb7a",14],["a861","\ucb89",18,"\ucb9d",6],["a881","\ucba4",19,"\ucbb9",11,"\xc6\xd0\xaa\u0126"],["a8a6","\u0132"],["a8a8","\u013f\u0141\xd8\u0152\xba\xde\u0166\u014a"],["a8b1","\u3260",27,"\u24d0",25,"\u2460",14,"\xbd\u2153\u2154\xbc\xbe\u215b\u215c\u215d\u215e"],["a941","\ucbc5",14,"\ucbd5",10],["a961","\ucbe0\ucbe1\ucbe2\ucbe3\ucbe5\ucbe6\ucbe8\ucbea",18],["a981","\ucbfd",14,"\ucc0e\ucc0f\ucc11\ucc12\ucc13\ucc15",6,"\ucc1e\ucc1f\ucc20\ucc23\ucc24\xe6\u0111\xf0\u0127\u0131\u0133\u0138\u0140\u0142\xf8\u0153\xdf\xfe\u0167\u014b\u0149\u3200",27,"\u249c",25,"\u2474",14,"\xb9\xb2\xb3\u2074\u207f\u2081\u2082\u2083\u2084"],["aa41","\ucc25\ucc26\ucc2a\ucc2b\ucc2d\ucc2f\ucc31",6,"\ucc3a\ucc3f",4,"\ucc46\ucc47\ucc49\ucc4a\ucc4b\ucc4d\ucc4e"],["aa61","\ucc4f",4,"\ucc56\ucc5a",5,"\ucc61\ucc62\ucc63\ucc65\ucc67\ucc69",6,"\ucc71\ucc72"],["aa81","\ucc73\ucc74\ucc76",29,"\u3041",82],["ab41","\ucc94\ucc95\ucc96\ucc97\ucc9a\ucc9b\ucc9d\ucc9e\ucc9f\ucca1",6,"\uccaa\uccae",5,"\uccb6\uccb7\uccb9"],["ab61","\uccba\uccbb\uccbd",6,"\uccc6\uccc8\uccca",5,"\uccd1\uccd2\uccd3\uccd5",5],["ab81","\uccdb",8,"\ucce5",6,"\ucced\uccee\uccef\uccf1",12,"\u30a1",85],["ac41","\uccfe\uccff\ucd00\ucd02",5,"\ucd0a\ucd0b\ucd0d\ucd0e\ucd0f\ucd11",6,"\ucd1a\ucd1c\ucd1e\ucd1f\ucd20"],["ac61","\ucd21\ucd22\ucd23\ucd25\ucd26\ucd27\ucd29\ucd2a\ucd2b\ucd2d",11,"\ucd3a",4],["ac81","\ucd3f",28,"\ucd5d\ucd5e\ucd5f\u0410",5,"\u0401\u0416",25],["acd1","\u0430",5,"\u0451\u0436",25],["ad41","\ucd61\ucd62\ucd63\ucd65",6,"\ucd6e\ucd70\ucd72",5,"\ucd79",7],["ad61","\ucd81",6,"\ucd89",10,"\ucd96\ucd97\ucd99\ucd9a\ucd9b\ucd9d\ucd9e\ucd9f"],["ad81","\ucda0\ucda1\ucda2\ucda3\ucda6\ucda8\ucdaa",5,"\ucdb1",18,"\ucdc5"],["ae41","\ucdc6",5,"\ucdcd\ucdce\ucdcf\ucdd1",16],["ae61","\ucde2",5,"\ucde9\ucdea\ucdeb\ucded\ucdee\ucdef\ucdf1",6,"\ucdfa\ucdfc\ucdfe",4],["ae81","\uce03\uce05\uce06\uce07\uce09\uce0a\uce0b\uce0d",6,"\uce15\uce16\uce17\uce18\uce1a",5,"\uce22\uce23\uce25\uce26\uce27\uce29\uce2a\uce2b"],["af41","\uce2c\uce2d\uce2e\uce2f\uce32\uce34\uce36",19],["af61","\uce4a",13,"\uce5a\uce5b\uce5d\uce5e\uce62",5,"\uce6a\uce6c"],["af81","\uce6e",5,"\uce76\uce77\uce79\uce7a\uce7b\uce7d",6,"\uce86\uce88\uce8a",5,"\uce92\uce93\uce95\uce96\uce97\uce99"],["b041","\uce9a",5,"\ucea2\ucea6",5,"\uceae",12],["b061","\ucebb",5,"\ucec2",19],["b081","\uced6",13,"\ucee6\ucee7\ucee9\uceea\uceed",6,"\ucef6\ucefa",5,"\uac00\uac01\uac04\uac07\uac08\uac09\uac0a\uac10",7,"\uac19",4,"\uac20\uac24\uac2c\uac2d\uac2f\uac30\uac31\uac38\uac39\uac3c\uac40\uac4b\uac4d\uac54\uac58\uac5c\uac70\uac71\uac74\uac77\uac78\uac7a\uac80\uac81\uac83\uac84\uac85\uac86\uac89\uac8a\uac8b\uac8c\uac90\uac94\uac9c\uac9d\uac9f\uaca0\uaca1\uaca8\uaca9\uacaa\uacac\uacaf\uacb0\uacb8\uacb9\uacbb\uacbc\uacbd\uacc1\uacc4\uacc8\uaccc\uacd5\uacd7\uace0\uace1\uace4\uace7\uace8\uacea\uacec\uacef\uacf0\uacf1\uacf3\uacf5\uacf6\uacfc\uacfd\uad00\uad04\uad06"],["b141","\ucf02\ucf03\ucf05\ucf06\ucf07\ucf09",6,"\ucf12\ucf14\ucf16",5,"\ucf1d\ucf1e\ucf1f\ucf21\ucf22\ucf23"],["b161","\ucf25",6,"\ucf2e\ucf32",5,"\ucf39",11],["b181","\ucf45",14,"\ucf56\ucf57\ucf59\ucf5a\ucf5b\ucf5d",6,"\ucf66\ucf68\ucf6a\ucf6b\ucf6c\uad0c\uad0d\uad0f\uad11\uad18\uad1c\uad20\uad29\uad2c\uad2d\uad34\uad35\uad38\uad3c\uad44\uad45\uad47\uad49\uad50\uad54\uad58\uad61\uad63\uad6c\uad6d\uad70\uad73\uad74\uad75\uad76\uad7b\uad7c\uad7d\uad7f\uad81\uad82\uad88\uad89\uad8c\uad90\uad9c\uad9d\uada4\uadb7\uadc0\uadc1\uadc4\uadc8\uadd0\uadd1\uadd3\uaddc\uade0\uade4\uadf8\uadf9\uadfc\uadff\uae00\uae01\uae08\uae09\uae0b\uae0d\uae14\uae30\uae31\uae34\uae37\uae38\uae3a\uae40\uae41\uae43\uae45\uae46\uae4a\uae4c\uae4d\uae4e\uae50\uae54\uae56\uae5c\uae5d\uae5f\uae60\uae61\uae65\uae68\uae69\uae6c\uae70\uae78"],["b241","\ucf6d\ucf6e\ucf6f\ucf72\ucf73\ucf75\ucf76\ucf77\ucf79",6,"\ucf81\ucf82\ucf83\ucf84\ucf86",5,"\ucf8d"],["b261","\ucf8e",18,"\ucfa2",5,"\ucfa9"],["b281","\ucfaa",5,"\ucfb1",18,"\ucfc5",6,"\uae79\uae7b\uae7c\uae7d\uae84\uae85\uae8c\uaebc\uaebd\uaebe\uaec0\uaec4\uaecc\uaecd\uaecf\uaed0\uaed1\uaed8\uaed9\uaedc\uaee8\uaeeb\uaeed\uaef4\uaef8\uaefc\uaf07\uaf08\uaf0d\uaf10\uaf2c\uaf2d\uaf30\uaf32\uaf34\uaf3c\uaf3d\uaf3f\uaf41\uaf42\uaf43\uaf48\uaf49\uaf50\uaf5c\uaf5d\uaf64\uaf65\uaf79\uaf80\uaf84\uaf88\uaf90\uaf91\uaf95\uaf9c\uafb8\uafb9\uafbc\uafc0\uafc7\uafc8\uafc9\uafcb\uafcd\uafce\uafd4\uafdc\uafe8\uafe9\uaff0\uaff1\uaff4\uaff8\ub000\ub001\ub004\ub00c\ub010\ub014\ub01c\ub01d\ub028\ub044\ub045\ub048\ub04a\ub04c\ub04e\ub053\ub054\ub055\ub057\ub059"],["b341","\ucfcc",19,"\ucfe2\ucfe3\ucfe5\ucfe6\ucfe7\ucfe9"],["b361","\ucfea",5,"\ucff2\ucff4\ucff6",5,"\ucffd\ucffe\ucfff\ud001\ud002\ud003\ud005",5],["b381","\ud00b",5,"\ud012",5,"\ud019",19,"\ub05d\ub07c\ub07d\ub080\ub084\ub08c\ub08d\ub08f\ub091\ub098\ub099\ub09a\ub09c\ub09f\ub0a0\ub0a1\ub0a2\ub0a8\ub0a9\ub0ab",4,"\ub0b1\ub0b3\ub0b4\ub0b5\ub0b8\ub0bc\ub0c4\ub0c5\ub0c7\ub0c8\ub0c9\ub0d0\ub0d1\ub0d4\ub0d8\ub0e0\ub0e5\ub108\ub109\ub10b\ub10c\ub110\ub112\ub113\ub118\ub119\ub11b\ub11c\ub11d\ub123\ub124\ub125\ub128\ub12c\ub134\ub135\ub137\ub138\ub139\ub140\ub141\ub144\ub148\ub150\ub151\ub154\ub155\ub158\ub15c\ub160\ub178\ub179\ub17c\ub180\ub182\ub188\ub189\ub18b\ub18d\ub192\ub193\ub194\ub198\ub19c\ub1a8\ub1cc\ub1d0\ub1d4\ub1dc\ub1dd"],["b441","\ud02e",5,"\ud036\ud037\ud039\ud03a\ud03b\ud03d",6,"\ud046\ud048\ud04a",5],["b461","\ud051\ud052\ud053\ud055\ud056\ud057\ud059",6,"\ud061",10,"\ud06e\ud06f"],["b481","\ud071\ud072\ud073\ud075",6,"\ud07e\ud07f\ud080\ud082",18,"\ub1df\ub1e8\ub1e9\ub1ec\ub1f0\ub1f9\ub1fb\ub1fd\ub204\ub205\ub208\ub20b\ub20c\ub214\ub215\ub217\ub219\ub220\ub234\ub23c\ub258\ub25c\ub260\ub268\ub269\ub274\ub275\ub27c\ub284\ub285\ub289\ub290\ub291\ub294\ub298\ub299\ub29a\ub2a0\ub2a1\ub2a3\ub2a5\ub2a6\ub2aa\ub2ac\ub2b0\ub2b4\ub2c8\ub2c9\ub2cc\ub2d0\ub2d2\ub2d8\ub2d9\ub2db\ub2dd\ub2e2\ub2e4\ub2e5\ub2e6\ub2e8\ub2eb",4,"\ub2f3\ub2f4\ub2f5\ub2f7",4,"\ub2ff\ub300\ub301\ub304\ub308\ub310\ub311\ub313\ub314\ub315\ub31c\ub354\ub355\ub356\ub358\ub35b\ub35c\ub35e\ub35f\ub364\ub365"],["b541","\ud095",14,"\ud0a6\ud0a7\ud0a9\ud0aa\ud0ab\ud0ad",5],["b561","\ud0b3\ud0b6\ud0b8\ud0ba",5,"\ud0c2\ud0c3\ud0c5\ud0c6\ud0c7\ud0ca",5,"\ud0d2\ud0d6",4],["b581","\ud0db\ud0de\ud0df\ud0e1\ud0e2\ud0e3\ud0e5",6,"\ud0ee\ud0f2",5,"\ud0f9",11,"\ub367\ub369\ub36b\ub36e\ub370\ub371\ub374\ub378\ub380\ub381\ub383\ub384\ub385\ub38c\ub390\ub394\ub3a0\ub3a1\ub3a8\ub3ac\ub3c4\ub3c5\ub3c8\ub3cb\ub3cc\ub3ce\ub3d0\ub3d4\ub3d5\ub3d7\ub3d9\ub3db\ub3dd\ub3e0\ub3e4\ub3e8\ub3fc\ub410\ub418\ub41c\ub420\ub428\ub429\ub42b\ub434\ub450\ub451\ub454\ub458\ub460\ub461\ub463\ub465\ub46c\ub480\ub488\ub49d\ub4a4\ub4a8\ub4ac\ub4b5\ub4b7\ub4b9\ub4c0\ub4c4\ub4c8\ub4d0\ub4d5\ub4dc\ub4dd\ub4e0\ub4e3\ub4e4\ub4e6\ub4ec\ub4ed\ub4ef\ub4f1\ub4f8\ub514\ub515\ub518\ub51b\ub51c\ub524\ub525\ub527\ub528\ub529\ub52a\ub530\ub531\ub534\ub538"],["b641","\ud105",7,"\ud10e",17],["b661","\ud120",15,"\ud132\ud133\ud135\ud136\ud137\ud139\ud13b\ud13c\ud13d\ud13e"],["b681","\ud13f\ud142\ud146",5,"\ud14e\ud14f\ud151\ud152\ud153\ud155",6,"\ud15e\ud160\ud162",5,"\ud169\ud16a\ud16b\ud16d\ub540\ub541\ub543\ub544\ub545\ub54b\ub54c\ub54d\ub550\ub554\ub55c\ub55d\ub55f\ub560\ub561\ub5a0\ub5a1\ub5a4\ub5a8\ub5aa\ub5ab\ub5b0\ub5b1\ub5b3\ub5b4\ub5b5\ub5bb\ub5bc\ub5bd\ub5c0\ub5c4\ub5cc\ub5cd\ub5cf\ub5d0\ub5d1\ub5d8\ub5ec\ub610\ub611\ub614\ub618\ub625\ub62c\ub634\ub648\ub664\ub668\ub69c\ub69d\ub6a0\ub6a4\ub6ab\ub6ac\ub6b1\ub6d4\ub6f0\ub6f4\ub6f8\ub700\ub701\ub705\ub728\ub729\ub72c\ub72f\ub730\ub738\ub739\ub73b\ub744\ub748\ub74c\ub754\ub755\ub760\ub764\ub768\ub770\ub771\ub773\ub775\ub77c\ub77d\ub780\ub784\ub78c\ub78d\ub78f\ub790\ub791\ub792\ub796\ub797"],["b741","\ud16e",13,"\ud17d",6,"\ud185\ud186\ud187\ud189\ud18a"],["b761","\ud18b",20,"\ud1a2\ud1a3\ud1a5\ud1a6\ud1a7"],["b781","\ud1a9",6,"\ud1b2\ud1b4\ud1b6\ud1b7\ud1b8\ud1b9\ud1bb\ud1bd\ud1be\ud1bf\ud1c1",14,"\ub798\ub799\ub79c\ub7a0\ub7a8\ub7a9\ub7ab\ub7ac\ub7ad\ub7b4\ub7b5\ub7b8\ub7c7\ub7c9\ub7ec\ub7ed\ub7f0\ub7f4\ub7fc\ub7fd\ub7ff\ub800\ub801\ub807\ub808\ub809\ub80c\ub810\ub818\ub819\ub81b\ub81d\ub824\ub825\ub828\ub82c\ub834\ub835\ub837\ub838\ub839\ub840\ub844\ub851\ub853\ub85c\ub85d\ub860\ub864\ub86c\ub86d\ub86f\ub871\ub878\ub87c\ub88d\ub8a8\ub8b0\ub8b4\ub8b8\ub8c0\ub8c1\ub8c3\ub8c5\ub8cc\ub8d0\ub8d4\ub8dd\ub8df\ub8e1\ub8e8\ub8e9\ub8ec\ub8f0\ub8f8\ub8f9\ub8fb\ub8fd\ub904\ub918\ub920\ub93c\ub93d\ub940\ub944\ub94c\ub94f\ub951\ub958\ub959\ub95c\ub960\ub968\ub969"],["b841","\ud1d0",7,"\ud1d9",17],["b861","\ud1eb",8,"\ud1f5\ud1f6\ud1f7\ud1f9",13],["b881","\ud208\ud20a",5,"\ud211",24,"\ub96b\ub96d\ub974\ub975\ub978\ub97c\ub984\ub985\ub987\ub989\ub98a\ub98d\ub98e\ub9ac\ub9ad\ub9b0\ub9b4\ub9bc\ub9bd\ub9bf\ub9c1\ub9c8\ub9c9\ub9cc\ub9ce",4,"\ub9d8\ub9d9\ub9db\ub9dd\ub9de\ub9e1\ub9e3\ub9e4\ub9e5\ub9e8\ub9ec\ub9f4\ub9f5\ub9f7\ub9f8\ub9f9\ub9fa\uba00\uba01\uba08\uba15\uba38\uba39\uba3c\uba40\uba42\uba48\uba49\uba4b\uba4d\uba4e\uba53\uba54\uba55\uba58\uba5c\uba64\uba65\uba67\uba68\uba69\uba70\uba71\uba74\uba78\uba83\uba84\uba85\uba87\uba8c\ubaa8\ubaa9\ubaab\ubaac\ubab0\ubab2\ubab8\ubab9\ubabb\ubabd\ubac4\ubac8\ubad8\ubad9\ubafc"],["b941","\ud22a\ud22b\ud22e\ud22f\ud231\ud232\ud233\ud235",6,"\ud23e\ud240\ud242",5,"\ud249\ud24a\ud24b\ud24c"],["b961","\ud24d",14,"\ud25d",6,"\ud265\ud266\ud267\ud268"],["b981","\ud269",22,"\ud282\ud283\ud285\ud286\ud287\ud289\ud28a\ud28b\ud28c\ubb00\ubb04\ubb0d\ubb0f\ubb11\ubb18\ubb1c\ubb20\ubb29\ubb2b\ubb34\ubb35\ubb36\ubb38\ubb3b\ubb3c\ubb3d\ubb3e\ubb44\ubb45\ubb47\ubb49\ubb4d\ubb4f\ubb50\ubb54\ubb58\ubb61\ubb63\ubb6c\ubb88\ubb8c\ubb90\ubba4\ubba8\ubbac\ubbb4\ubbb7\ubbc0\ubbc4\ubbc8\ubbd0\ubbd3\ubbf8\ubbf9\ubbfc\ubbff\ubc00\ubc02\ubc08\ubc09\ubc0b\ubc0c\ubc0d\ubc0f\ubc11\ubc14",4,"\ubc1b",4,"\ubc24\ubc25\ubc27\ubc29\ubc2d\ubc30\ubc31\ubc34\ubc38\ubc40\ubc41\ubc43\ubc44\ubc45\ubc49\ubc4c\ubc4d\ubc50\ubc5d\ubc84\ubc85\ubc88\ubc8b\ubc8c\ubc8e\ubc94\ubc95\ubc97"],["ba41","\ud28d\ud28e\ud28f\ud292\ud293\ud294\ud296",5,"\ud29d\ud29e\ud29f\ud2a1\ud2a2\ud2a3\ud2a5",6,"\ud2ad"],["ba61","\ud2ae\ud2af\ud2b0\ud2b2",5,"\ud2ba\ud2bb\ud2bd\ud2be\ud2c1\ud2c3",4,"\ud2ca\ud2cc",5],["ba81","\ud2d2\ud2d3\ud2d5\ud2d6\ud2d7\ud2d9\ud2da\ud2db\ud2dd",6,"\ud2e6",9,"\ud2f2\ud2f3\ud2f5\ud2f6\ud2f7\ud2f9\ud2fa\ubc99\ubc9a\ubca0\ubca1\ubca4\ubca7\ubca8\ubcb0\ubcb1\ubcb3\ubcb4\ubcb5\ubcbc\ubcbd\ubcc0\ubcc4\ubccd\ubccf\ubcd0\ubcd1\ubcd5\ubcd8\ubcdc\ubcf4\ubcf5\ubcf6\ubcf8\ubcfc\ubd04\ubd05\ubd07\ubd09\ubd10\ubd14\ubd24\ubd2c\ubd40\ubd48\ubd49\ubd4c\ubd50\ubd58\ubd59\ubd64\ubd68\ubd80\ubd81\ubd84\ubd87\ubd88\ubd89\ubd8a\ubd90\ubd91\ubd93\ubd95\ubd99\ubd9a\ubd9c\ubda4\ubdb0\ubdb8\ubdd4\ubdd5\ubdd8\ubddc\ubde9\ubdf0\ubdf4\ubdf8\ube00\ube03\ube05\ube0c\ube0d\ube10\ube14\ube1c\ube1d\ube1f\ube44\ube45\ube48\ube4c\ube4e\ube54\ube55\ube57\ube59\ube5a\ube5b\ube60\ube61\ube64"],["bb41","\ud2fb",4,"\ud302\ud304\ud306",5,"\ud30f\ud311\ud312\ud313\ud315\ud317",4,"\ud31e\ud322\ud323"],["bb61","\ud324\ud326\ud327\ud32a\ud32b\ud32d\ud32e\ud32f\ud331",6,"\ud33a\ud33e",5,"\ud346\ud347\ud348\ud349"],["bb81","\ud34a",31,"\ube68\ube6a\ube70\ube71\ube73\ube74\ube75\ube7b\ube7c\ube7d\ube80\ube84\ube8c\ube8d\ube8f\ube90\ube91\ube98\ube99\ubea8\ubed0\ubed1\ubed4\ubed7\ubed8\ubee0\ubee3\ubee4\ubee5\ubeec\ubf01\ubf08\ubf09\ubf18\ubf19\ubf1b\ubf1c\ubf1d\ubf40\ubf41\ubf44\ubf48\ubf50\ubf51\ubf55\ubf94\ubfb0\ubfc5\ubfcc\ubfcd\ubfd0\ubfd4\ubfdc\ubfdf\ubfe1\uc03c\uc051\uc058\uc05c\uc060\uc068\uc069\uc090\uc091\uc094\uc098\uc0a0\uc0a1\uc0a3\uc0a5\uc0ac\uc0ad\uc0af\uc0b0\uc0b3\uc0b4\uc0b5\uc0b6\uc0bc\uc0bd\uc0bf\uc0c0\uc0c1\uc0c5\uc0c8\uc0c9\uc0cc\uc0d0\uc0d8\uc0d9\uc0db\uc0dc\uc0dd\uc0e4"],["bc41","\ud36a",17,"\ud37e\ud37f\ud381\ud382\ud383\ud385\ud386\ud387"],["bc61","\ud388\ud389\ud38a\ud38b\ud38e\ud392",5,"\ud39a\ud39b\ud39d\ud39e\ud39f\ud3a1",6,"\ud3aa\ud3ac\ud3ae"],["bc81","\ud3af",4,"\ud3b5\ud3b6\ud3b7\ud3b9\ud3ba\ud3bb\ud3bd",6,"\ud3c6\ud3c7\ud3ca",5,"\ud3d1",5,"\uc0e5\uc0e8\uc0ec\uc0f4\uc0f5\uc0f7\uc0f9\uc100\uc104\uc108\uc110\uc115\uc11c",4,"\uc123\uc124\uc126\uc127\uc12c\uc12d\uc12f\uc130\uc131\uc136\uc138\uc139\uc13c\uc140\uc148\uc149\uc14b\uc14c\uc14d\uc154\uc155\uc158\uc15c\uc164\uc165\uc167\uc168\uc169\uc170\uc174\uc178\uc185\uc18c\uc18d\uc18e\uc190\uc194\uc196\uc19c\uc19d\uc19f\uc1a1\uc1a5\uc1a8\uc1a9\uc1ac\uc1b0\uc1bd\uc1c4\uc1c8\uc1cc\uc1d4\uc1d7\uc1d8\uc1e0\uc1e4\uc1e8\uc1f0\uc1f1\uc1f3\uc1fc\uc1fd\uc200\uc204\uc20c\uc20d\uc20f\uc211\uc218\uc219\uc21c\uc21f\uc220\uc228\uc229\uc22b\uc22d"],["bd41","\ud3d7\ud3d9",7,"\ud3e2\ud3e4",7,"\ud3ee\ud3ef\ud3f1\ud3f2\ud3f3\ud3f5\ud3f6\ud3f7"],["bd61","\ud3f8\ud3f9\ud3fa\ud3fb\ud3fe\ud400\ud402",5,"\ud409",13],["bd81","\ud417",5,"\ud41e",25,"\uc22f\uc231\uc232\uc234\uc248\uc250\uc251\uc254\uc258\uc260\uc265\uc26c\uc26d\uc270\uc274\uc27c\uc27d\uc27f\uc281\uc288\uc289\uc290\uc298\uc29b\uc29d\uc2a4\uc2a5\uc2a8\uc2ac\uc2ad\uc2b4\uc2b5\uc2b7\uc2b9\uc2dc\uc2dd\uc2e0\uc2e3\uc2e4\uc2eb\uc2ec\uc2ed\uc2ef\uc2f1\uc2f6\uc2f8\uc2f9\uc2fb\uc2fc\uc300\uc308\uc309\uc30c\uc30d\uc313\uc314\uc315\uc318\uc31c\uc324\uc325\uc328\uc329\uc345\uc368\uc369\uc36c\uc370\uc372\uc378\uc379\uc37c\uc37d\uc384\uc388\uc38c\uc3c0\uc3d8\uc3d9\uc3dc\uc3df\uc3e0\uc3e2\uc3e8\uc3e9\uc3ed\uc3f4\uc3f5\uc3f8\uc408\uc410\uc424\uc42c\uc430"],["be41","\ud438",7,"\ud441\ud442\ud443\ud445",14],["be61","\ud454",7,"\ud45d\ud45e\ud45f\ud461\ud462\ud463\ud465",7,"\ud46e\ud470\ud471\ud472"],["be81","\ud473",4,"\ud47a\ud47b\ud47d\ud47e\ud481\ud483",4,"\ud48a\ud48c\ud48e",5,"\ud495",8,"\uc434\uc43c\uc43d\uc448\uc464\uc465\uc468\uc46c\uc474\uc475\uc479\uc480\uc494\uc49c\uc4b8\uc4bc\uc4e9\uc4f0\uc4f1\uc4f4\uc4f8\uc4fa\uc4ff\uc500\uc501\uc50c\uc510\uc514\uc51c\uc528\uc529\uc52c\uc530\uc538\uc539\uc53b\uc53d\uc544\uc545\uc548\uc549\uc54a\uc54c\uc54d\uc54e\uc553\uc554\uc555\uc557\uc558\uc559\uc55d\uc55e\uc560\uc561\uc564\uc568\uc570\uc571\uc573\uc574\uc575\uc57c\uc57d\uc580\uc584\uc587\uc58c\uc58d\uc58f\uc591\uc595\uc597\uc598\uc59c\uc5a0\uc5a9\uc5b4\uc5b5\uc5b8\uc5b9\uc5bb\uc5bc\uc5bd\uc5be\uc5c4",6,"\uc5cc\uc5ce"],["bf41","\ud49e",10,"\ud4aa",14],["bf61","\ud4b9",18,"\ud4cd\ud4ce\ud4cf\ud4d1\ud4d2\ud4d3\ud4d5"],["bf81","\ud4d6",5,"\ud4dd\ud4de\ud4e0",7,"\ud4e9\ud4ea\ud4eb\ud4ed\ud4ee\ud4ef\ud4f1",6,"\ud4f9\ud4fa\ud4fc\uc5d0\uc5d1\uc5d4\uc5d8\uc5e0\uc5e1\uc5e3\uc5e5\uc5ec\uc5ed\uc5ee\uc5f0\uc5f4\uc5f6\uc5f7\uc5fc",5,"\uc605\uc606\uc607\uc608\uc60c\uc610\uc618\uc619\uc61b\uc61c\uc624\uc625\uc628\uc62c\uc62d\uc62e\uc630\uc633\uc634\uc635\uc637\uc639\uc63b\uc640\uc641\uc644\uc648\uc650\uc651\uc653\uc654\uc655\uc65c\uc65d\uc660\uc66c\uc66f\uc671\uc678\uc679\uc67c\uc680\uc688\uc689\uc68b\uc68d\uc694\uc695\uc698\uc69c\uc6a4\uc6a5\uc6a7\uc6a9\uc6b0\uc6b1\uc6b4\uc6b8\uc6b9\uc6ba\uc6c0\uc6c1\uc6c3\uc6c5\uc6cc\uc6cd\uc6d0\uc6d4\uc6dc\uc6dd\uc6e0\uc6e1\uc6e8"],["c041","\ud4fe",5,"\ud505\ud506\ud507\ud509\ud50a\ud50b\ud50d",6,"\ud516\ud518",5],["c061","\ud51e",25],["c081","\ud538\ud539\ud53a\ud53b\ud53e\ud53f\ud541\ud542\ud543\ud545",6,"\ud54e\ud550\ud552",5,"\ud55a\ud55b\ud55d\ud55e\ud55f\ud561\ud562\ud563\uc6e9\uc6ec\uc6f0\uc6f8\uc6f9\uc6fd\uc704\uc705\uc708\uc70c\uc714\uc715\uc717\uc719\uc720\uc721\uc724\uc728\uc730\uc731\uc733\uc735\uc737\uc73c\uc73d\uc740\uc744\uc74a\uc74c\uc74d\uc74f\uc751",7,"\uc75c\uc760\uc768\uc76b\uc774\uc775\uc778\uc77c\uc77d\uc77e\uc783\uc784\uc785\uc787\uc788\uc789\uc78a\uc78e\uc790\uc791\uc794\uc796\uc797\uc798\uc79a\uc7a0\uc7a1\uc7a3\uc7a4\uc7a5\uc7a6\uc7ac\uc7ad\uc7b0\uc7b4\uc7bc\uc7bd\uc7bf\uc7c0\uc7c1\uc7c8\uc7c9\uc7cc\uc7ce\uc7d0\uc7d8\uc7dd\uc7e4\uc7e8\uc7ec\uc800\uc801\uc804\uc808\uc80a"],["c141","\ud564\ud566\ud567\ud56a\ud56c\ud56e",5,"\ud576\ud577\ud579\ud57a\ud57b\ud57d",6,"\ud586\ud58a\ud58b"],["c161","\ud58c\ud58d\ud58e\ud58f\ud591",19,"\ud5a6\ud5a7"],["c181","\ud5a8",31,"\uc810\uc811\uc813\uc815\uc816\uc81c\uc81d\uc820\uc824\uc82c\uc82d\uc82f\uc831\uc838\uc83c\uc840\uc848\uc849\uc84c\uc84d\uc854\uc870\uc871\uc874\uc878\uc87a\uc880\uc881\uc883\uc885\uc886\uc887\uc88b\uc88c\uc88d\uc894\uc89d\uc89f\uc8a1\uc8a8\uc8bc\uc8bd\uc8c4\uc8c8\uc8cc\uc8d4\uc8d5\uc8d7\uc8d9\uc8e0\uc8e1\uc8e4\uc8f5\uc8fc\uc8fd\uc900\uc904\uc905\uc906\uc90c\uc90d\uc90f\uc911\uc918\uc92c\uc934\uc950\uc951\uc954\uc958\uc960\uc961\uc963\uc96c\uc970\uc974\uc97c\uc988\uc989\uc98c\uc990\uc998\uc999\uc99b\uc99d\uc9c0\uc9c1\uc9c4\uc9c7\uc9c8\uc9ca\uc9d0\uc9d1\uc9d3"],["c241","\ud5ca\ud5cb\ud5cd\ud5ce\ud5cf\ud5d1\ud5d3",4,"\ud5da\ud5dc\ud5de",5,"\ud5e6\ud5e7\ud5e9\ud5ea\ud5eb\ud5ed\ud5ee"],["c261","\ud5ef",4,"\ud5f6\ud5f8\ud5fa",5,"\ud602\ud603\ud605\ud606\ud607\ud609",6,"\ud612"],["c281","\ud616",5,"\ud61d\ud61e\ud61f\ud621\ud622\ud623\ud625",7,"\ud62e",9,"\ud63a\ud63b\uc9d5\uc9d6\uc9d9\uc9da\uc9dc\uc9dd\uc9e0\uc9e2\uc9e4\uc9e7\uc9ec\uc9ed\uc9ef\uc9f0\uc9f1\uc9f8\uc9f9\uc9fc\uca00\uca08\uca09\uca0b\uca0c\uca0d\uca14\uca18\uca29\uca4c\uca4d\uca50\uca54\uca5c\uca5d\uca5f\uca60\uca61\uca68\uca7d\uca84\uca98\ucabc\ucabd\ucac0\ucac4\ucacc\ucacd\ucacf\ucad1\ucad3\ucad8\ucad9\ucae0\ucaec\ucaf4\ucb08\ucb10\ucb14\ucb18\ucb20\ucb21\ucb41\ucb48\ucb49\ucb4c\ucb50\ucb58\ucb59\ucb5d\ucb64\ucb78\ucb79\ucb9c\ucbb8\ucbd4\ucbe4\ucbe7\ucbe9\ucc0c\ucc0d\ucc10\ucc14\ucc1c\ucc1d\ucc21\ucc22\ucc27\ucc28\ucc29\ucc2c\ucc2e\ucc30\ucc38\ucc39\ucc3b"],["c341","\ud63d\ud63e\ud63f\ud641\ud642\ud643\ud644\ud646\ud647\ud64a\ud64c\ud64e\ud64f\ud650\ud652\ud653\ud656\ud657\ud659\ud65a\ud65b\ud65d",4],["c361","\ud662",4,"\ud668\ud66a",5,"\ud672\ud673\ud675",11],["c381","\ud681\ud682\ud684\ud686",5,"\ud68e\ud68f\ud691\ud692\ud693\ud695",7,"\ud69e\ud6a0\ud6a2",5,"\ud6a9\ud6aa\ucc3c\ucc3d\ucc3e\ucc44\ucc45\ucc48\ucc4c\ucc54\ucc55\ucc57\ucc58\ucc59\ucc60\ucc64\ucc66\ucc68\ucc70\ucc75\ucc98\ucc99\ucc9c\ucca0\ucca8\ucca9\uccab\uccac\uccad\uccb4\uccb5\uccb8\uccbc\uccc4\uccc5\uccc7\uccc9\uccd0\uccd4\ucce4\uccec\uccf0\ucd01\ucd08\ucd09\ucd0c\ucd10\ucd18\ucd19\ucd1b\ucd1d\ucd24\ucd28\ucd2c\ucd39\ucd5c\ucd60\ucd64\ucd6c\ucd6d\ucd6f\ucd71\ucd78\ucd88\ucd94\ucd95\ucd98\ucd9c\ucda4\ucda5\ucda7\ucda9\ucdb0\ucdc4\ucdcc\ucdd0\ucde8\ucdec\ucdf0\ucdf8\ucdf9\ucdfb\ucdfd\uce04\uce08\uce0c\uce14\uce19\uce20\uce21\uce24\uce28\uce30\uce31\uce33\uce35"],["c441","\ud6ab\ud6ad\ud6ae\ud6af\ud6b1",7,"\ud6ba\ud6bc",7,"\ud6c6\ud6c7\ud6c9\ud6ca\ud6cb"],["c461","\ud6cd\ud6ce\ud6cf\ud6d0\ud6d2\ud6d3\ud6d5\ud6d6\ud6d8\ud6da",5,"\ud6e1\ud6e2\ud6e3\ud6e5\ud6e6\ud6e7\ud6e9",4],["c481","\ud6ee\ud6ef\ud6f1\ud6f2\ud6f3\ud6f4\ud6f6",5,"\ud6fe\ud6ff\ud701\ud702\ud703\ud705",11,"\ud712\ud713\ud714\uce58\uce59\uce5c\uce5f\uce60\uce61\uce68\uce69\uce6b\uce6d\uce74\uce75\uce78\uce7c\uce84\uce85\uce87\uce89\uce90\uce91\uce94\uce98\ucea0\ucea1\ucea3\ucea4\ucea5\uceac\ucead\ucec1\ucee4\ucee5\ucee8\uceeb\uceec\ucef4\ucef5\ucef7\ucef8\ucef9\ucf00\ucf01\ucf04\ucf08\ucf10\ucf11\ucf13\ucf15\ucf1c\ucf20\ucf24\ucf2c\ucf2d\ucf2f\ucf30\ucf31\ucf38\ucf54\ucf55\ucf58\ucf5c\ucf64\ucf65\ucf67\ucf69\ucf70\ucf71\ucf74\ucf78\ucf80\ucf85\ucf8c\ucfa1\ucfa8\ucfb0\ucfc4\ucfe0\ucfe1\ucfe4\ucfe8\ucff0\ucff1\ucff3\ucff5\ucffc\ud000\ud004\ud011\ud018\ud02d\ud034\ud035\ud038\ud03c"],["c541","\ud715\ud716\ud717\ud71a\ud71b\ud71d\ud71e\ud71f\ud721",6,"\ud72a\ud72c\ud72e",5,"\ud736\ud737\ud739"],["c561","\ud73a\ud73b\ud73d",6,"\ud745\ud746\ud748\ud74a",5,"\ud752\ud753\ud755\ud75a",4],["c581","\ud75f\ud762\ud764\ud766\ud767\ud768\ud76a\ud76b\ud76d\ud76e\ud76f\ud771\ud772\ud773\ud775",6,"\ud77e\ud77f\ud780\ud782",5,"\ud78a\ud78b\ud044\ud045\ud047\ud049\ud050\ud054\ud058\ud060\ud06c\ud06d\ud070\ud074\ud07c\ud07d\ud081\ud0a4\ud0a5\ud0a8\ud0ac\ud0b4\ud0b5\ud0b7\ud0b9\ud0c0\ud0c1\ud0c4\ud0c8\ud0c9\ud0d0\ud0d1\ud0d3\ud0d4\ud0d5\ud0dc\ud0dd\ud0e0\ud0e4\ud0ec\ud0ed\ud0ef\ud0f0\ud0f1\ud0f8\ud10d\ud130\ud131\ud134\ud138\ud13a\ud140\ud141\ud143\ud144\ud145\ud14c\ud14d\ud150\ud154\ud15c\ud15d\ud15f\ud161\ud168\ud16c\ud17c\ud184\ud188\ud1a0\ud1a1\ud1a4\ud1a8\ud1b0\ud1b1\ud1b3\ud1b5\ud1ba\ud1bc\ud1c0\ud1d8\ud1f4\ud1f8\ud207\ud209\ud210\ud22c\ud22d\ud230\ud234\ud23c\ud23d\ud23f\ud241\ud248\ud25c"],["c641","\ud78d\ud78e\ud78f\ud791",6,"\ud79a\ud79c\ud79e",5],["c6a1","\ud264\ud280\ud281\ud284\ud288\ud290\ud291\ud295\ud29c\ud2a0\ud2a4\ud2ac\ud2b1\ud2b8\ud2b9\ud2bc\ud2bf\ud2c0\ud2c2\ud2c8\ud2c9\ud2cb\ud2d4\ud2d8\ud2dc\ud2e4\ud2e5\ud2f0\ud2f1\ud2f4\ud2f8\ud300\ud301\ud303\ud305\ud30c\ud30d\ud30e\ud310\ud314\ud316\ud31c\ud31d\ud31f\ud320\ud321\ud325\ud328\ud329\ud32c\ud330\ud338\ud339\ud33b\ud33c\ud33d\ud344\ud345\ud37c\ud37d\ud380\ud384\ud38c\ud38d\ud38f\ud390\ud391\ud398\ud399\ud39c\ud3a0\ud3a8\ud3a9\ud3ab\ud3ad\ud3b4\ud3b8\ud3bc\ud3c4\ud3c5\ud3c8\ud3c9\ud3d0\ud3d8\ud3e1\ud3e3\ud3ec\ud3ed\ud3f0\ud3f4\ud3fc\ud3fd\ud3ff\ud401"],["c7a1","\ud408\ud41d\ud440\ud444\ud45c\ud460\ud464\ud46d\ud46f\ud478\ud479\ud47c\ud47f\ud480\ud482\ud488\ud489\ud48b\ud48d\ud494\ud4a9\ud4cc\ud4d0\ud4d4\ud4dc\ud4df\ud4e8\ud4ec\ud4f0\ud4f8\ud4fb\ud4fd\ud504\ud508\ud50c\ud514\ud515\ud517\ud53c\ud53d\ud540\ud544\ud54c\ud54d\ud54f\ud551\ud558\ud559\ud55c\ud560\ud565\ud568\ud569\ud56b\ud56d\ud574\ud575\ud578\ud57c\ud584\ud585\ud587\ud588\ud589\ud590\ud5a5\ud5c8\ud5c9\ud5cc\ud5d0\ud5d2\ud5d8\ud5d9\ud5db\ud5dd\ud5e4\ud5e5\ud5e8\ud5ec\ud5f4\ud5f5\ud5f7\ud5f9\ud600\ud601\ud604\ud608\ud610\ud611\ud613\ud614\ud615\ud61c\ud620"],["c8a1","\ud624\ud62d\ud638\ud639\ud63c\ud640\ud645\ud648\ud649\ud64b\ud64d\ud651\ud654\ud655\ud658\ud65c\ud667\ud669\ud670\ud671\ud674\ud683\ud685\ud68c\ud68d\ud690\ud694\ud69d\ud69f\ud6a1\ud6a8\ud6ac\ud6b0\ud6b9\ud6bb\ud6c4\ud6c5\ud6c8\ud6cc\ud6d1\ud6d4\ud6d7\ud6d9\ud6e0\ud6e4\ud6e8\ud6f0\ud6f5\ud6fc\ud6fd\ud700\ud704\ud711\ud718\ud719\ud71c\ud720\ud728\ud729\ud72b\ud72d\ud734\ud735\ud738\ud73c\ud744\ud747\ud749\ud750\ud751\ud754\ud756\ud757\ud758\ud759\ud760\ud761\ud763\ud765\ud769\ud76c\ud770\ud774\ud77c\ud77d\ud781\ud788\ud789\ud78c\ud790\ud798\ud799\ud79b\ud79d"],["caa1","\u4f3d\u4f73\u5047\u50f9\u52a0\u53ef\u5475\u54e5\u5609\u5ac1\u5bb6\u6687\u67b6\u67b7\u67ef\u6b4c\u73c2\u75c2\u7a3c\u82db\u8304\u8857\u8888\u8a36\u8cc8\u8dcf\u8efb\u8fe6\u99d5\u523b\u5374\u5404\u606a\u6164\u6bbc\u73cf\u811a\u89ba\u89d2\u95a3\u4f83\u520a\u58be\u5978\u59e6\u5e72\u5e79\u61c7\u63c0\u6746\u67ec\u687f\u6f97\u764e\u770b\u78f5\u7a08\u7aff\u7c21\u809d\u826e\u8271\u8aeb\u9593\u4e6b\u559d\u66f7\u6e34\u78a3\u7aed\u845b\u8910\u874e\u97a8\u52d8\u574e\u582a\u5d4c\u611f\u61be\u6221\u6562\u67d1\u6a44\u6e1b\u7518\u75b3\u76e3\u77b0\u7d3a\u90af\u9451\u9452\u9f95"],["cba1","\u5323\u5cac\u7532\u80db\u9240\u9598\u525b\u5808\u59dc\u5ca1\u5d17\u5eb7\u5f3a\u5f4a\u6177\u6c5f\u757a\u7586\u7ce0\u7d73\u7db1\u7f8c\u8154\u8221\u8591\u8941\u8b1b\u92fc\u964d\u9c47\u4ecb\u4ef7\u500b\u51f1\u584f\u6137\u613e\u6168\u6539\u69ea\u6f11\u75a5\u7686\u76d6\u7b87\u82a5\u84cb\uf900\u93a7\u958b\u5580\u5ba2\u5751\uf901\u7cb3\u7fb9\u91b5\u5028\u53bb\u5c45\u5de8\u62d2\u636e\u64da\u64e7\u6e20\u70ac\u795b\u8ddd\u8e1e\uf902\u907d\u9245\u92f8\u4e7e\u4ef6\u5065\u5dfe\u5efa\u6106\u6957\u8171\u8654\u8e47\u9375\u9a2b\u4e5e\u5091\u6770\u6840\u5109\u528d\u5292\u6aa2"],["cca1","\u77bc\u9210\u9ed4\u52ab\u602f\u8ff2\u5048\u61a9\u63ed\u64ca\u683c\u6a84\u6fc0\u8188\u89a1\u9694\u5805\u727d\u72ac\u7504\u7d79\u7e6d\u80a9\u898b\u8b74\u9063\u9d51\u6289\u6c7a\u6f54\u7d50\u7f3a\u8a23\u517c\u614a\u7b9d\u8b19\u9257\u938c\u4eac\u4fd3\u501e\u50be\u5106\u52c1\u52cd\u537f\u5770\u5883\u5e9a\u5f91\u6176\u61ac\u64ce\u656c\u666f\u66bb\u66f4\u6897\u6d87\u7085\u70f1\u749f\u74a5\u74ca\u75d9\u786c\u78ec\u7adf\u7af6\u7d45\u7d93\u8015\u803f\u811b\u8396\u8b66\u8f15\u9015\u93e1\u9803\u9838\u9a5a\u9be8\u4fc2\u5553\u583a\u5951\u5b63\u5c46\u60b8\u6212\u6842\u68b0"],["cda1","\u68e8\u6eaa\u754c\u7678\u78ce\u7a3d\u7cfb\u7e6b\u7e7c\u8a08\u8aa1\u8c3f\u968e\u9dc4\u53e4\u53e9\u544a\u5471\u56fa\u59d1\u5b64\u5c3b\u5eab\u62f7\u6537\u6545\u6572\u66a0\u67af\u69c1\u6cbd\u75fc\u7690\u777e\u7a3f\u7f94\u8003\u80a1\u818f\u82e6\u82fd\u83f0\u85c1\u8831\u88b4\u8aa5\uf903\u8f9c\u932e\u96c7\u9867\u9ad8\u9f13\u54ed\u659b\u66f2\u688f\u7a40\u8c37\u9d60\u56f0\u5764\u5d11\u6606\u68b1\u68cd\u6efe\u7428\u889e\u9be4\u6c68\uf904\u9aa8\u4f9b\u516c\u5171\u529f\u5b54\u5de5\u6050\u606d\u62f1\u63a7\u653b\u73d9\u7a7a\u86a3\u8ca2\u978f\u4e32\u5be1\u6208\u679c\u74dc"],["cea1","\u79d1\u83d3\u8a87\u8ab2\u8de8\u904e\u934b\u9846\u5ed3\u69e8\u85ff\u90ed\uf905\u51a0\u5b98\u5bec\u6163\u68fa\u6b3e\u704c\u742f\u74d8\u7ba1\u7f50\u83c5\u89c0\u8cab\u95dc\u9928\u522e\u605d\u62ec\u9002\u4f8a\u5149\u5321\u58d9\u5ee3\u66e0\u6d38\u709a\u72c2\u73d6\u7b50\u80f1\u945b\u5366\u639b\u7f6b\u4e56\u5080\u584a\u58de\u602a\u6127\u62d0\u69d0\u9b41\u5b8f\u7d18\u80b1\u8f5f\u4ea4\u50d1\u54ac\u55ac\u5b0c\u5da0\u5de7\u652a\u654e\u6821\u6a4b\u72e1\u768e\u77ef\u7d5e\u7ff9\u81a0\u854e\u86df\u8f03\u8f4e\u90ca\u9903\u9a55\u9bab\u4e18\u4e45\u4e5d\u4ec7\u4ff1\u5177\u52fe"],["cfa1","\u5340\u53e3\u53e5\u548e\u5614\u5775\u57a2\u5bc7\u5d87\u5ed0\u61fc\u62d8\u6551\u67b8\u67e9\u69cb\u6b50\u6bc6\u6bec\u6c42\u6e9d\u7078\u72d7\u7396\u7403\u77bf\u77e9\u7a76\u7d7f\u8009\u81fc\u8205\u820a\u82df\u8862\u8b33\u8cfc\u8ec0\u9011\u90b1\u9264\u92b6\u99d2\u9a45\u9ce9\u9dd7\u9f9c\u570b\u5c40\u83ca\u97a0\u97ab\u9eb4\u541b\u7a98\u7fa4\u88d9\u8ecd\u90e1\u5800\u5c48\u6398\u7a9f\u5bae\u5f13\u7a79\u7aae\u828e\u8eac\u5026\u5238\u52f8\u5377\u5708\u62f3\u6372\u6b0a\u6dc3\u7737\u53a5\u7357\u8568\u8e76\u95d5\u673a\u6ac3\u6f70\u8a6d\u8ecc\u994b\uf906\u6677\u6b78\u8cb4"],["d0a1","\u9b3c\uf907\u53eb\u572d\u594e\u63c6\u69fb\u73ea\u7845\u7aba\u7ac5\u7cfe\u8475\u898f\u8d73\u9035\u95a8\u52fb\u5747\u7547\u7b60\u83cc\u921e\uf908\u6a58\u514b\u524b\u5287\u621f\u68d8\u6975\u9699\u50c5\u52a4\u52e4\u61c3\u65a4\u6839\u69ff\u747e\u7b4b\u82b9\u83eb\u89b2\u8b39\u8fd1\u9949\uf909\u4eca\u5997\u64d2\u6611\u6a8e\u7434\u7981\u79bd\u82a9\u887e\u887f\u895f\uf90a\u9326\u4f0b\u53ca\u6025\u6271\u6c72\u7d1a\u7d66\u4e98\u5162\u77dc\u80af\u4f01\u4f0e\u5176\u5180\u55dc\u5668\u573b\u57fa\u57fc\u5914\u5947\u5993\u5bc4\u5c90\u5d0e\u5df1\u5e7e\u5fcc\u6280\u65d7\u65e3"],["d1a1","\u671e\u671f\u675e\u68cb\u68c4\u6a5f\u6b3a\u6c23\u6c7d\u6c82\u6dc7\u7398\u7426\u742a\u7482\u74a3\u7578\u757f\u7881\u78ef\u7941\u7947\u7948\u797a\u7b95\u7d00\u7dba\u7f88\u8006\u802d\u808c\u8a18\u8b4f\u8c48\u8d77\u9321\u9324\u98e2\u9951\u9a0e\u9a0f\u9a65\u9e92\u7dca\u4f76\u5409\u62ee\u6854\u91d1\u55ab\u513a\uf90b\uf90c\u5a1c\u61e6\uf90d\u62cf\u62ff\uf90e",5,"\u90a3\uf914",4,"\u8afe\uf919\uf91a\uf91b\uf91c\u6696\uf91d\u7156\uf91e\uf91f\u96e3\uf920\u634f\u637a\u5357\uf921\u678f\u6960\u6e73\uf922\u7537\uf923\uf924\uf925"],["d2a1","\u7d0d\uf926\uf927\u8872\u56ca\u5a18\uf928",4,"\u4e43\uf92d\u5167\u5948\u67f0\u8010\uf92e\u5973\u5e74\u649a\u79ca\u5ff5\u606c\u62c8\u637b\u5be7\u5bd7\u52aa\uf92f\u5974\u5f29\u6012\uf930\uf931\uf932\u7459\uf933",5,"\u99d1\uf939",10,"\u6fc3\uf944\uf945\u81bf\u8fb2\u60f1\uf946\uf947\u8166\uf948\uf949\u5c3f\uf94a",7,"\u5ae9\u8a25\u677b\u7d10\uf952",5,"\u80fd\uf958\uf959\u5c3c\u6ce5\u533f\u6eba\u591a\u8336"],["d3a1","\u4e39\u4eb6\u4f46\u55ae\u5718\u58c7\u5f56\u65b7\u65e6\u6a80\u6bb5\u6e4d\u77ed\u7aef\u7c1e\u7dde\u86cb\u8892\u9132\u935b\u64bb\u6fbe\u737a\u75b8\u9054\u5556\u574d\u61ba\u64d4\u66c7\u6de1\u6e5b\u6f6d\u6fb9\u75f0\u8043\u81bd\u8541\u8983\u8ac7\u8b5a\u931f\u6c93\u7553\u7b54\u8e0f\u905d\u5510\u5802\u5858\u5e62\u6207\u649e\u68e0\u7576\u7cd6\u87b3\u9ee8\u4ee3\u5788\u576e\u5927\u5c0d\u5cb1\u5e36\u5f85\u6234\u64e1\u73b3\u81fa\u888b\u8cb8\u968a\u9edb\u5b85\u5fb7\u60b3\u5012\u5200\u5230\u5716\u5835\u5857\u5c0e\u5c60\u5cf6\u5d8b\u5ea6\u5f92\u60bc\u6311\u6389\u6417\u6843"],["d4a1","\u68f9\u6ac2\u6dd8\u6e21\u6ed4\u6fe4\u71fe\u76dc\u7779\u79b1\u7a3b\u8404\u89a9\u8ced\u8df3\u8e48\u9003\u9014\u9053\u90fd\u934d\u9676\u97dc\u6bd2\u7006\u7258\u72a2\u7368\u7763\u79bf\u7be4\u7e9b\u8b80\u58a9\u60c7\u6566\u65fd\u66be\u6c8c\u711e\u71c9\u8c5a\u9813\u4e6d\u7a81\u4edd\u51ac\u51cd\u52d5\u540c\u61a7\u6771\u6850\u68df\u6d1e\u6f7c\u75bc\u77b3\u7ae5\u80f4\u8463\u9285\u515c\u6597\u675c\u6793\u75d8\u7ac7\u8373\uf95a\u8c46\u9017\u982d\u5c6f\u81c0\u829a\u9041\u906f\u920d\u5f97\u5d9d\u6a59\u71c8\u767b\u7b49\u85e4\u8b04\u9127\u9a30\u5587\u61f6\uf95b\u7669\u7f85"],["d5a1","\u863f\u87ba\u88f8\u908f\uf95c\u6d1b\u70d9\u73de\u7d61\u843d\uf95d\u916a\u99f1\uf95e\u4e82\u5375\u6b04\u6b12\u703e\u721b\u862d\u9e1e\u524c\u8fa3\u5d50\u64e5\u652c\u6b16\u6feb\u7c43\u7e9c\u85cd\u8964\u89bd\u62c9\u81d8\u881f\u5eca\u6717\u6d6a\u72fc\u7405\u746f\u8782\u90de\u4f86\u5d0d\u5fa0\u840a\u51b7\u63a0\u7565\u4eae\u5006\u5169\u51c9\u6881\u6a11\u7cae\u7cb1\u7ce7\u826f\u8ad2\u8f1b\u91cf\u4fb6\u5137\u52f5\u5442\u5eec\u616e\u623e\u65c5\u6ada\u6ffe\u792a\u85dc\u8823\u95ad\u9a62\u9a6a\u9e97\u9ece\u529b\u66c6\u6b77\u701d\u792b\u8f62\u9742\u6190\u6200\u6523\u6f23"],["d6a1","\u7149\u7489\u7df4\u806f\u84ee\u8f26\u9023\u934a\u51bd\u5217\u52a3\u6d0c\u70c8\u88c2\u5ec9\u6582\u6bae\u6fc2\u7c3e\u7375\u4ee4\u4f36\u56f9\uf95f\u5cba\u5dba\u601c\u73b2\u7b2d\u7f9a\u7fce\u8046\u901e\u9234\u96f6\u9748\u9818\u9f61\u4f8b\u6fa7\u79ae\u91b4\u96b7\u52de\uf960\u6488\u64c4\u6ad3\u6f5e\u7018\u7210\u76e7\u8001\u8606\u865c\u8def\u8f05\u9732\u9b6f\u9dfa\u9e75\u788c\u797f\u7da0\u83c9\u9304\u9e7f\u9e93\u8ad6\u58df\u5f04\u6727\u7027\u74cf\u7c60\u807e\u5121\u7028\u7262\u78ca\u8cc2\u8cda\u8cf4\u96f7\u4e86\u50da\u5bee\u5ed6\u6599\u71ce\u7642\u77ad\u804a\u84fc"],["d7a1","\u907c\u9b27\u9f8d\u58d8\u5a41\u5c62\u6a13\u6dda\u6f0f\u763b\u7d2f\u7e37\u851e\u8938\u93e4\u964b\u5289\u65d2\u67f3\u69b4\u6d41\u6e9c\u700f\u7409\u7460\u7559\u7624\u786b\u8b2c\u985e\u516d\u622e\u9678\u4f96\u502b\u5d19\u6dea\u7db8\u8f2a\u5f8b\u6144\u6817\uf961\u9686\u52d2\u808b\u51dc\u51cc\u695e\u7a1c\u7dbe\u83f1\u9675\u4fda\u5229\u5398\u540f\u550e\u5c65\u60a7\u674e\u68a8\u6d6c\u7281\u72f8\u7406\u7483\uf962\u75e2\u7c6c\u7f79\u7fb8\u8389\u88cf\u88e1\u91cc\u91d0\u96e2\u9bc9\u541d\u6f7e\u71d0\u7498\u85fa\u8eaa\u96a3\u9c57\u9e9f\u6797\u6dcb\u7433\u81e8\u9716\u782c"],["d8a1","\u7acb\u7b20\u7c92\u6469\u746a\u75f2\u78bc\u78e8\u99ac\u9b54\u9ebb\u5bde\u5e55\u6f20\u819c\u83ab\u9088\u4e07\u534d\u5a29\u5dd2\u5f4e\u6162\u633d\u6669\u66fc\u6eff\u6f2b\u7063\u779e\u842c\u8513\u883b\u8f13\u9945\u9c3b\u551c\u62b9\u672b\u6cab\u8309\u896a\u977a\u4ea1\u5984\u5fd8\u5fd9\u671b\u7db2\u7f54\u8292\u832b\u83bd\u8f1e\u9099\u57cb\u59b9\u5a92\u5bd0\u6627\u679a\u6885\u6bcf\u7164\u7f75\u8cb7\u8ce3\u9081\u9b45\u8108\u8c8a\u964c\u9a40\u9ea5\u5b5f\u6c13\u731b\u76f2\u76df\u840c\u51aa\u8993\u514d\u5195\u52c9\u68c9\u6c94\u7704\u7720\u7dbf\u7dec\u9762\u9eb5\u6ec5"],["d9a1","\u8511\u51a5\u540d\u547d\u660e\u669d\u6927\u6e9f\u76bf\u7791\u8317\u84c2\u879f\u9169\u9298\u9cf4\u8882\u4fae\u5192\u52df\u59c6\u5e3d\u6155\u6478\u6479\u66ae\u67d0\u6a21\u6bcd\u6bdb\u725f\u7261\u7441\u7738\u77db\u8017\u82bc\u8305\u8b00\u8b28\u8c8c\u6728\u6c90\u7267\u76ee\u7766\u7a46\u9da9\u6b7f\u6c92\u5922\u6726\u8499\u536f\u5893\u5999\u5edf\u63cf\u6634\u6773\u6e3a\u732b\u7ad7\u82d7\u9328\u52d9\u5deb\u61ae\u61cb\u620a\u62c7\u64ab\u65e0\u6959\u6b66\u6bcb\u7121\u73f7\u755d\u7e46\u821e\u8302\u856a\u8aa3\u8cbf\u9727\u9d61\u58a8\u9ed8\u5011\u520e\u543b\u554f\u6587"],["daa1","\u6c76\u7d0a\u7d0b\u805e\u868a\u9580\u96ef\u52ff\u6c95\u7269\u5473\u5a9a\u5c3e\u5d4b\u5f4c\u5fae\u672a\u68b6\u6963\u6e3c\u6e44\u7709\u7c73\u7f8e\u8587\u8b0e\u8ff7\u9761\u9ef4\u5cb7\u60b6\u610d\u61ab\u654f\u65fb\u65fc\u6c11\u6cef\u739f\u73c9\u7de1\u9594\u5bc6\u871c\u8b10\u525d\u535a\u62cd\u640f\u64b2\u6734\u6a38\u6cca\u73c0\u749e\u7b94\u7c95\u7e1b\u818a\u8236\u8584\u8feb\u96f9\u99c1\u4f34\u534a\u53cd\u53db\u62cc\u642c\u6500\u6591\u69c3\u6cee\u6f58\u73ed\u7554\u7622\u76e4\u76fc\u78d0\u78fb\u792c\u7d46\u822c\u87e0\u8fd4\u9812\u98ef\u52c3\u62d4\u64a5\u6e24\u6f51"],["dba1","\u767c\u8dcb\u91b1\u9262\u9aee\u9b43\u5023\u508d\u574a\u59a8\u5c28\u5e47\u5f77\u623f\u653e\u65b9\u65c1\u6609\u678b\u699c\u6ec2\u78c5\u7d21\u80aa\u8180\u822b\u82b3\u84a1\u868c\u8a2a\u8b17\u90a6\u9632\u9f90\u500d\u4ff3\uf963\u57f9\u5f98\u62dc\u6392\u676f\u6e43\u7119\u76c3\u80cc\u80da\u88f4\u88f5\u8919\u8ce0\u8f29\u914d\u966a\u4f2f\u4f70\u5e1b\u67cf\u6822\u767d\u767e\u9b44\u5e61\u6a0a\u7169\u71d4\u756a\uf964\u7e41\u8543\u85e9\u98dc\u4f10\u7b4f\u7f70\u95a5\u51e1\u5e06\u68b5\u6c3e\u6c4e\u6cdb\u72af\u7bc4\u8303\u6cd5\u743a\u50fb\u5288\u58c1\u64d8\u6a97\u74a7\u7656"],["dca1","\u78a7\u8617\u95e2\u9739\uf965\u535e\u5f01\u8b8a\u8fa8\u8faf\u908a\u5225\u77a5\u9c49\u9f08\u4e19\u5002\u5175\u5c5b\u5e77\u661e\u663a\u67c4\u68c5\u70b3\u7501\u75c5\u79c9\u7add\u8f27\u9920\u9a08\u4fdd\u5821\u5831\u5bf6\u666e\u6b65\u6d11\u6e7a\u6f7d\u73e4\u752b\u83e9\u88dc\u8913\u8b5c\u8f14\u4f0f\u50d5\u5310\u535c\u5b93\u5fa9\u670d\u798f\u8179\u832f\u8514\u8907\u8986\u8f39\u8f3b\u99a5\u9c12\u672c\u4e76\u4ff8\u5949\u5c01\u5cef\u5cf0\u6367\u68d2\u70fd\u71a2\u742b\u7e2b\u84ec\u8702\u9022\u92d2\u9cf3\u4e0d\u4ed8\u4fef\u5085\u5256\u526f\u5426\u5490\u57e0\u592b\u5a66"],["dda1","\u5b5a\u5b75\u5bcc\u5e9c\uf966\u6276\u6577\u65a7\u6d6e\u6ea5\u7236\u7b26\u7c3f\u7f36\u8150\u8151\u819a\u8240\u8299\u83a9\u8a03\u8ca0\u8ce6\u8cfb\u8d74\u8dba\u90e8\u91dc\u961c\u9644\u99d9\u9ce7\u5317\u5206\u5429\u5674\u58b3\u5954\u596e\u5fff\u61a4\u626e\u6610\u6c7e\u711a\u76c6\u7c89\u7cde\u7d1b\u82ac\u8cc1\u96f0\uf967\u4f5b\u5f17\u5f7f\u62c2\u5d29\u670b\u68da\u787c\u7e43\u9d6c\u4e15\u5099\u5315\u532a\u5351\u5983\u5a62\u5e87\u60b2\u618a\u6249\u6279\u6590\u6787\u69a7\u6bd4\u6bd6\u6bd7\u6bd8\u6cb8\uf968\u7435\u75fa\u7812\u7891\u79d5\u79d8\u7c83\u7dcb\u7fe1\u80a5"],["dea1","\u813e\u81c2\u83f2\u871a\u88e8\u8ab9\u8b6c\u8cbb\u9119\u975e\u98db\u9f3b\u56ac\u5b2a\u5f6c\u658c\u6ab3\u6baf\u6d5c\u6ff1\u7015\u725d\u73ad\u8ca7\u8cd3\u983b\u6191\u6c37\u8058\u9a01\u4e4d\u4e8b\u4e9b\u4ed5\u4f3a\u4f3c\u4f7f\u4fdf\u50ff\u53f2\u53f8\u5506\u55e3\u56db\u58eb\u5962\u5a11\u5beb\u5bfa\u5c04\u5df3\u5e2b\u5f99\u601d\u6368\u659c\u65af\u67f6\u67fb\u68ad\u6b7b\u6c99\u6cd7\u6e23\u7009\u7345\u7802\u793e\u7940\u7960\u79c1\u7be9\u7d17\u7d72\u8086\u820d\u838e\u84d1\u86c7\u88df\u8a50\u8a5e\u8b1d\u8cdc\u8d66\u8fad\u90aa\u98fc\u99df\u9e9d\u524a\uf969\u6714\uf96a"],["dfa1","\u5098\u522a\u5c71\u6563\u6c55\u73ca\u7523\u759d\u7b97\u849c\u9178\u9730\u4e77\u6492\u6bba\u715e\u85a9\u4e09\uf96b\u6749\u68ee\u6e17\u829f\u8518\u886b\u63f7\u6f81\u9212\u98af\u4e0a\u50b7\u50cf\u511f\u5546\u55aa\u5617\u5b40\u5c19\u5ce0\u5e38\u5e8a\u5ea0\u5ec2\u60f3\u6851\u6a61\u6e58\u723d\u7240\u72c0\u76f8\u7965\u7bb1\u7fd4\u88f3\u89f4\u8a73\u8c61\u8cde\u971c\u585e\u74bd\u8cfd\u55c7\uf96c\u7a61\u7d22\u8272\u7272\u751f\u7525\uf96d\u7b19\u5885\u58fb\u5dbc\u5e8f\u5eb6\u5f90\u6055\u6292\u637f\u654d\u6691\u66d9\u66f8\u6816\u68f2\u7280\u745e\u7b6e\u7d6e\u7dd6\u7f72"],["e0a1","\u80e5\u8212\u85af\u897f\u8a93\u901d\u92e4\u9ecd\u9f20\u5915\u596d\u5e2d\u60dc\u6614\u6673\u6790\u6c50\u6dc5\u6f5f\u77f3\u78a9\u84c6\u91cb\u932b\u4ed9\u50ca\u5148\u5584\u5b0b\u5ba3\u6247\u657e\u65cb\u6e32\u717d\u7401\u7444\u7487\u74bf\u766c\u79aa\u7dda\u7e55\u7fa8\u817a\u81b3\u8239\u861a\u87ec\u8a75\u8de3\u9078\u9291\u9425\u994d\u9bae\u5368\u5c51\u6954\u6cc4\u6d29\u6e2b\u820c\u859b\u893b\u8a2d\u8aaa\u96ea\u9f67\u5261\u66b9\u6bb2\u7e96\u87fe\u8d0d\u9583\u965d\u651d\u6d89\u71ee\uf96e\u57ce\u59d3\u5bac\u6027\u60fa\u6210\u661f\u665f\u7329\u73f9\u76db\u7701\u7b6c"],["e1a1","\u8056\u8072\u8165\u8aa0\u9192\u4e16\u52e2\u6b72\u6d17\u7a05\u7b39\u7d30\uf96f\u8cb0\u53ec\u562f\u5851\u5bb5\u5c0f\u5c11\u5de2\u6240\u6383\u6414\u662d\u68b3\u6cbc\u6d88\u6eaf\u701f\u70a4\u71d2\u7526\u758f\u758e\u7619\u7b11\u7be0\u7c2b\u7d20\u7d39\u852c\u856d\u8607\u8a34\u900d\u9061\u90b5\u92b7\u97f6\u9a37\u4fd7\u5c6c\u675f\u6d91\u7c9f\u7e8c\u8b16\u8d16\u901f\u5b6b\u5dfd\u640d\u84c0\u905c\u98e1\u7387\u5b8b\u609a\u677e\u6dde\u8a1f\u8aa6\u9001\u980c\u5237\uf970\u7051\u788e\u9396\u8870\u91d7\u4fee\u53d7\u55fd\u56da\u5782\u58fd\u5ac2\u5b88\u5cab\u5cc0\u5e25\u6101"],["e2a1","\u620d\u624b\u6388\u641c\u6536\u6578\u6a39\u6b8a\u6c34\u6d19\u6f31\u71e7\u72e9\u7378\u7407\u74b2\u7626\u7761\u79c0\u7a57\u7aea\u7cb9\u7d8f\u7dac\u7e61\u7f9e\u8129\u8331\u8490\u84da\u85ea\u8896\u8ab0\u8b90\u8f38\u9042\u9083\u916c\u9296\u92b9\u968b\u96a7\u96a8\u96d6\u9700\u9808\u9996\u9ad3\u9b1a\u53d4\u587e\u5919\u5b70\u5bbf\u6dd1\u6f5a\u719f\u7421\u74b9\u8085\u83fd\u5de1\u5f87\u5faa\u6042\u65ec\u6812\u696f\u6a53\u6b89\u6d35\u6df3\u73e3\u76fe\u77ac\u7b4d\u7d14\u8123\u821c\u8340\u84f4\u8563\u8a62\u8ac4\u9187\u931e\u9806\u99b4\u620c\u8853\u8ff0\u9265\u5d07\u5d27"],["e3a1","\u5d69\u745f\u819d\u8768\u6fd5\u62fe\u7fd2\u8936\u8972\u4e1e\u4e58\u50e7\u52dd\u5347\u627f\u6607\u7e69\u8805\u965e\u4f8d\u5319\u5636\u59cb\u5aa4\u5c38\u5c4e\u5c4d\u5e02\u5f11\u6043\u65bd\u662f\u6642\u67be\u67f4\u731c\u77e2\u793a\u7fc5\u8494\u84cd\u8996\u8a66\u8a69\u8ae1\u8c55\u8c7a\u57f4\u5bd4\u5f0f\u606f\u62ed\u690d\u6b96\u6e5c\u7184\u7bd2\u8755\u8b58\u8efe\u98df\u98fe\u4f38\u4f81\u4fe1\u547b\u5a20\u5bb8\u613c\u65b0\u6668\u71fc\u7533\u795e\u7d33\u814e\u81e3\u8398\u85aa\u85ce\u8703\u8a0a\u8eab\u8f9b\uf971\u8fc5\u5931\u5ba4\u5be6\u6089\u5be9\u5c0b\u5fc3\u6c81"],["e4a1","\uf972\u6df1\u700b\u751a\u82af\u8af6\u4ec0\u5341\uf973\u96d9\u6c0f\u4e9e\u4fc4\u5152\u555e\u5a25\u5ce8\u6211\u7259\u82bd\u83aa\u86fe\u8859\u8a1d\u963f\u96c5\u9913\u9d09\u9d5d\u580a\u5cb3\u5dbd\u5e44\u60e1\u6115\u63e1\u6a02\u6e25\u9102\u9354\u984e\u9c10\u9f77\u5b89\u5cb8\u6309\u664f\u6848\u773c\u96c1\u978d\u9854\u9b9f\u65a1\u8b01\u8ecb\u95bc\u5535\u5ca9\u5dd6\u5eb5\u6697\u764c\u83f4\u95c7\u58d3\u62bc\u72ce\u9d28\u4ef0\u592e\u600f\u663b\u6b83\u79e7\u9d26\u5393\u54c0\u57c3\u5d16\u611b\u66d6\u6daf\u788d\u827e\u9698\u9744\u5384\u627c\u6396\u6db2\u7e0a\u814b\u984d"],["e5a1","\u6afb\u7f4c\u9daf\u9e1a\u4e5f\u503b\u51b6\u591c\u60f9\u63f6\u6930\u723a\u8036\uf974\u91ce\u5f31\uf975\uf976\u7d04\u82e5\u846f\u84bb\u85e5\u8e8d\uf977\u4f6f\uf978\uf979\u58e4\u5b43\u6059\u63da\u6518\u656d\u6698\uf97a\u694a\u6a23\u6d0b\u7001\u716c\u75d2\u760d\u79b3\u7a70\uf97b\u7f8a\uf97c\u8944\uf97d\u8b93\u91c0\u967d\uf97e\u990a\u5704\u5fa1\u65bc\u6f01\u7600\u79a6\u8a9e\u99ad\u9b5a\u9f6c\u5104\u61b6\u6291\u6a8d\u81c6\u5043\u5830\u5f66\u7109\u8a00\u8afa\u5b7c\u8616\u4ffa\u513c\u56b4\u5944\u63a9\u6df9\u5daa\u696d\u5186\u4e88\u4f59\uf97f\uf980\uf981\u5982\uf982"],["e6a1","\uf983\u6b5f\u6c5d\uf984\u74b5\u7916\uf985\u8207\u8245\u8339\u8f3f\u8f5d\uf986\u9918\uf987\uf988\uf989\u4ea6\uf98a\u57df\u5f79\u6613\uf98b\uf98c\u75ab\u7e79\u8b6f\uf98d\u9006\u9a5b\u56a5\u5827\u59f8\u5a1f\u5bb4\uf98e\u5ef6\uf98f\uf990\u6350\u633b\uf991\u693d\u6c87\u6cbf\u6d8e\u6d93\u6df5\u6f14\uf992\u70df\u7136\u7159\uf993\u71c3\u71d5\uf994\u784f\u786f\uf995\u7b75\u7de3\uf996\u7e2f\uf997\u884d\u8edf\uf998\uf999\uf99a\u925b\uf99b\u9cf6\uf99c\uf99d\uf99e\u6085\u6d85\uf99f\u71b1\uf9a0\uf9a1\u95b1\u53ad\uf9a2\uf9a3\uf9a4\u67d3\uf9a5\u708e\u7130\u7430\u8276\u82d2"],["e7a1","\uf9a6\u95bb\u9ae5\u9e7d\u66c4\uf9a7\u71c1\u8449\uf9a8\uf9a9\u584b\uf9aa\uf9ab\u5db8\u5f71\uf9ac\u6620\u668e\u6979\u69ae\u6c38\u6cf3\u6e36\u6f41\u6fda\u701b\u702f\u7150\u71df\u7370\uf9ad\u745b\uf9ae\u74d4\u76c8\u7a4e\u7e93\uf9af\uf9b0\u82f1\u8a60\u8fce\uf9b1\u9348\uf9b2\u9719\uf9b3\uf9b4\u4e42\u502a\uf9b5\u5208\u53e1\u66f3\u6c6d\u6fca\u730a\u777f\u7a62\u82ae\u85dd\u8602\uf9b6\u88d4\u8a63\u8b7d\u8c6b\uf9b7\u92b3\uf9b8\u9713\u9810\u4e94\u4f0d\u4fc9\u50b2\u5348\u543e\u5433\u55da\u5862\u58ba\u5967\u5a1b\u5be4\u609f\uf9b9\u61ca\u6556\u65ff\u6664\u68a7\u6c5a\u6fb3"],["e8a1","\u70cf\u71ac\u7352\u7b7d\u8708\u8aa4\u9c32\u9f07\u5c4b\u6c83\u7344\u7389\u923a\u6eab\u7465\u761f\u7a69\u7e15\u860a\u5140\u58c5\u64c1\u74ee\u7515\u7670\u7fc1\u9095\u96cd\u9954\u6e26\u74e6\u7aa9\u7aaa\u81e5\u86d9\u8778\u8a1b\u5a49\u5b8c\u5b9b\u68a1\u6900\u6d63\u73a9\u7413\u742c\u7897\u7de9\u7feb\u8118\u8155\u839e\u8c4c\u962e\u9811\u66f0\u5f80\u65fa\u6789\u6c6a\u738b\u502d\u5a03\u6b6a\u77ee\u5916\u5d6c\u5dcd\u7325\u754f\uf9ba\uf9bb\u50e5\u51f9\u582f\u592d\u5996\u59da\u5be5\uf9bc\uf9bd\u5da2\u62d7\u6416\u6493\u64fe\uf9be\u66dc\uf9bf\u6a48\uf9c0\u71ff\u7464\uf9c1"],["e9a1","\u7a88\u7aaf\u7e47\u7e5e\u8000\u8170\uf9c2\u87ef\u8981\u8b20\u9059\uf9c3\u9080\u9952\u617e\u6b32\u6d74\u7e1f\u8925\u8fb1\u4fd1\u50ad\u5197\u52c7\u57c7\u5889\u5bb9\u5eb8\u6142\u6995\u6d8c\u6e67\u6eb6\u7194\u7462\u7528\u752c\u8073\u8338\u84c9\u8e0a\u9394\u93de\uf9c4\u4e8e\u4f51\u5076\u512a\u53c8\u53cb\u53f3\u5b87\u5bd3\u5c24\u611a\u6182\u65f4\u725b\u7397\u7440\u76c2\u7950\u7991\u79b9\u7d06\u7fbd\u828b\u85d5\u865e\u8fc2\u9047\u90f5\u91ea\u9685\u96e8\u96e9\u52d6\u5f67\u65ed\u6631\u682f\u715c\u7a36\u90c1\u980a\u4e91\uf9c5\u6a52\u6b9e\u6f90\u7189\u8018\u82b8\u8553"],["eaa1","\u904b\u9695\u96f2\u97fb\u851a\u9b31\u4e90\u718a\u96c4\u5143\u539f\u54e1\u5713\u5712\u57a3\u5a9b\u5ac4\u5bc3\u6028\u613f\u63f4\u6c85\u6d39\u6e72\u6e90\u7230\u733f\u7457\u82d1\u8881\u8f45\u9060\uf9c6\u9662\u9858\u9d1b\u6708\u8d8a\u925e\u4f4d\u5049\u50de\u5371\u570d\u59d4\u5a01\u5c09\u6170\u6690\u6e2d\u7232\u744b\u7def\u80c3\u840e\u8466\u853f\u875f\u885b\u8918\u8b02\u9055\u97cb\u9b4f\u4e73\u4f91\u5112\u516a\uf9c7\u552f\u55a9\u5b7a\u5ba5\u5e7c\u5e7d\u5ebe\u60a0\u60df\u6108\u6109\u63c4\u6538\u6709\uf9c8\u67d4\u67da\uf9c9\u6961\u6962\u6cb9\u6d27\uf9ca\u6e38\uf9cb"],["eba1","\u6fe1\u7336\u7337\uf9cc\u745c\u7531\uf9cd\u7652\uf9ce\uf9cf\u7dad\u81fe\u8438\u88d5\u8a98\u8adb\u8aed\u8e30\u8e42\u904a\u903e\u907a\u9149\u91c9\u936e\uf9d0\uf9d1\u5809\uf9d2\u6bd3\u8089\u80b2\uf9d3\uf9d4\u5141\u596b\u5c39\uf9d5\uf9d6\u6f64\u73a7\u80e4\u8d07\uf9d7\u9217\u958f\uf9d8\uf9d9\uf9da\uf9db\u807f\u620e\u701c\u7d68\u878d\uf9dc\u57a0\u6069\u6147\u6bb7\u8abe\u9280\u96b1\u4e59\u541f\u6deb\u852d\u9670\u97f3\u98ee\u63d6\u6ce3\u9091\u51dd\u61c9\u81ba\u9df9\u4f9d\u501a\u5100\u5b9c\u610f\u61ff\u64ec\u6905\u6bc5\u7591\u77e3\u7fa9\u8264\u858f\u87fb\u8863\u8abc"],["eca1","\u8b70\u91ab\u4e8c\u4ee5\u4f0a\uf9dd\uf9de\u5937\u59e8\uf9df\u5df2\u5f1b\u5f5b\u6021\uf9e0\uf9e1\uf9e2\uf9e3\u723e\u73e5\uf9e4\u7570\u75cd\uf9e5\u79fb\uf9e6\u800c\u8033\u8084\u82e1\u8351\uf9e7\uf9e8\u8cbd\u8cb3\u9087\uf9e9\uf9ea\u98f4\u990c\uf9eb\uf9ec\u7037\u76ca\u7fca\u7fcc\u7ffc\u8b1a\u4eba\u4ec1\u5203\u5370\uf9ed\u54bd\u56e0\u59fb\u5bc5\u5f15\u5fcd\u6e6e\uf9ee\uf9ef\u7d6a\u8335\uf9f0\u8693\u8a8d\uf9f1\u976d\u9777\uf9f2\uf9f3\u4e00\u4f5a\u4f7e\u58f9\u65e5\u6ea2\u9038\u93b0\u99b9\u4efb\u58ec\u598a\u59d9\u6041\uf9f4\uf9f5\u7a14\uf9f6\u834f\u8cc3\u5165\u5344"],["eda1","\uf9f7\uf9f8\uf9f9\u4ecd\u5269\u5b55\u82bf\u4ed4\u523a\u54a8\u59c9\u59ff\u5b50\u5b57\u5b5c\u6063\u6148\u6ecb\u7099\u716e\u7386\u74f7\u75b5\u78c1\u7d2b\u8005\u81ea\u8328\u8517\u85c9\u8aee\u8cc7\u96cc\u4f5c\u52fa\u56bc\u65ab\u6628\u707c\u70b8\u7235\u7dbd\u828d\u914c\u96c0\u9d72\u5b71\u68e7\u6b98\u6f7a\u76de\u5c91\u66ab\u6f5b\u7bb4\u7c2a\u8836\u96dc\u4e08\u4ed7\u5320\u5834\u58bb\u58ef\u596c\u5c07\u5e33\u5e84\u5f35\u638c\u66b2\u6756\u6a1f\u6aa3\u6b0c\u6f3f\u7246\uf9fa\u7350\u748b\u7ae0\u7ca7\u8178\u81df\u81e7\u838a\u846c\u8523\u8594\u85cf\u88dd\u8d13\u91ac\u9577"],["eea1","\u969c\u518d\u54c9\u5728\u5bb0\u624d\u6750\u683d\u6893\u6e3d\u6ed3\u707d\u7e21\u88c1\u8ca1\u8f09\u9f4b\u9f4e\u722d\u7b8f\u8acd\u931a\u4f47\u4f4e\u5132\u5480\u59d0\u5e95\u62b5\u6775\u696e\u6a17\u6cae\u6e1a\u72d9\u732a\u75bd\u7bb8\u7d35\u82e7\u83f9\u8457\u85f7\u8a5b\u8caf\u8e87\u9019\u90b8\u96ce\u9f5f\u52e3\u540a\u5ae1\u5bc2\u6458\u6575\u6ef4\u72c4\uf9fb\u7684\u7a4d\u7b1b\u7c4d\u7e3e\u7fdf\u837b\u8b2b\u8cca\u8d64\u8de1\u8e5f\u8fea\u8ff9\u9069\u93d1\u4f43\u4f7a\u50b3\u5168\u5178\u524d\u526a\u5861\u587c\u5960\u5c08\u5c55\u5edb\u609b\u6230\u6813\u6bbf\u6c08\u6fb1"],["efa1","\u714e\u7420\u7530\u7538\u7551\u7672\u7b4c\u7b8b\u7bad\u7bc6\u7e8f\u8a6e\u8f3e\u8f49\u923f\u9293\u9322\u942b\u96fb\u985a\u986b\u991e\u5207\u622a\u6298\u6d59\u7664\u7aca\u7bc0\u7d76\u5360\u5cbe\u5e97\u6f38\u70b9\u7c98\u9711\u9b8e\u9ede\u63a5\u647a\u8776\u4e01\u4e95\u4ead\u505c\u5075\u5448\u59c3\u5b9a\u5e40\u5ead\u5ef7\u5f81\u60c5\u633a\u653f\u6574\u65cc\u6676\u6678\u67fe\u6968\u6a89\u6b63\u6c40\u6dc0\u6de8\u6e1f\u6e5e\u701e\u70a1\u738e\u73fd\u753a\u775b\u7887\u798e\u7a0b\u7a7d\u7cbe\u7d8e\u8247\u8a02\u8aea\u8c9e\u912d\u914a\u91d8\u9266\u92cc\u9320\u9706\u9756"],["f0a1","\u975c\u9802\u9f0e\u5236\u5291\u557c\u5824\u5e1d\u5f1f\u608c\u63d0\u68af\u6fdf\u796d\u7b2c\u81cd\u85ba\u88fd\u8af8\u8e44\u918d\u9664\u969b\u973d\u984c\u9f4a\u4fce\u5146\u51cb\u52a9\u5632\u5f14\u5f6b\u63aa\u64cd\u65e9\u6641\u66fa\u66f9\u671d\u689d\u68d7\u69fd\u6f15\u6f6e\u7167\u71e5\u722a\u74aa\u773a\u7956\u795a\u79df\u7a20\u7a95\u7c97\u7cdf\u7d44\u7e70\u8087\u85fb\u86a4\u8a54\u8abf\u8d99\u8e81\u9020\u906d\u91e3\u963b\u96d5\u9ce5\u65cf\u7c07\u8db3\u93c3\u5b58\u5c0a\u5352\u62d9\u731d\u5027\u5b97\u5f9e\u60b0\u616b\u68d5\u6dd9\u742e\u7a2e\u7d42\u7d9c\u7e31\u816b"],["f1a1","\u8e2a\u8e35\u937e\u9418\u4f50\u5750\u5de6\u5ea7\u632b\u7f6a\u4e3b\u4f4f\u4f8f\u505a\u59dd\u80c4\u546a\u5468\u55fe\u594f\u5b99\u5dde\u5eda\u665d\u6731\u67f1\u682a\u6ce8\u6d32\u6e4a\u6f8d\u70b7\u73e0\u7587\u7c4c\u7d02\u7d2c\u7da2\u821f\u86db\u8a3b\u8a85\u8d70\u8e8a\u8f33\u9031\u914e\u9152\u9444\u99d0\u7af9\u7ca5\u4fca\u5101\u51c6\u57c8\u5bef\u5cfb\u6659\u6a3d\u6d5a\u6e96\u6fec\u710c\u756f\u7ae3\u8822\u9021\u9075\u96cb\u99ff\u8301\u4e2d\u4ef2\u8846\u91cd\u537d\u6adb\u696b\u6c41\u847a\u589e\u618e\u66fe\u62ef\u70dd\u7511\u75c7\u7e52\u84b8\u8b49\u8d08\u4e4b\u53ea"],["f2a1","\u54ab\u5730\u5740\u5fd7\u6301\u6307\u646f\u652f\u65e8\u667a\u679d\u67b3\u6b62\u6c60\u6c9a\u6f2c\u77e5\u7825\u7949\u7957\u7d19\u80a2\u8102\u81f3\u829d\u82b7\u8718\u8a8c\uf9fc\u8d04\u8dbe\u9072\u76f4\u7a19\u7a37\u7e54\u8077\u5507\u55d4\u5875\u632f\u6422\u6649\u664b\u686d\u699b\u6b84\u6d25\u6eb1\u73cd\u7468\u74a1\u755b\u75b9\u76e1\u771e\u778b\u79e6\u7e09\u7e1d\u81fb\u852f\u8897\u8a3a\u8cd1\u8eeb\u8fb0\u9032\u93ad\u9663\u9673\u9707\u4f84\u53f1\u59ea\u5ac9\u5e19\u684e\u74c6\u75be\u79e9\u7a92\u81a3\u86ed\u8cea\u8dcc\u8fed\u659f\u6715\uf9fd\u57f7\u6f57\u7ddd\u8f2f"],["f3a1","\u93f6\u96c6\u5fb5\u61f2\u6f84\u4e14\u4f98\u501f\u53c9\u55df\u5d6f\u5dee\u6b21\u6b64\u78cb\u7b9a\uf9fe\u8e49\u8eca\u906e\u6349\u643e\u7740\u7a84\u932f\u947f\u9f6a\u64b0\u6faf\u71e6\u74a8\u74da\u7ac4\u7c12\u7e82\u7cb2\u7e98\u8b9a\u8d0a\u947d\u9910\u994c\u5239\u5bdf\u64e6\u672d\u7d2e\u50ed\u53c3\u5879\u6158\u6159\u61fa\u65ac\u7ad9\u8b92\u8b96\u5009\u5021\u5275\u5531\u5a3c\u5ee0\u5f70\u6134\u655e\u660c\u6636\u66a2\u69cd\u6ec4\u6f32\u7316\u7621\u7a93\u8139\u8259\u83d6\u84bc\u50b5\u57f0\u5bc0\u5be8\u5f69\u63a1\u7826\u7db5\u83dc\u8521\u91c7\u91f5\u518a\u67f5\u7b56"],["f4a1","\u8cac\u51c4\u59bb\u60bd\u8655\u501c\uf9ff\u5254\u5c3a\u617d\u621a\u62d3\u64f2\u65a5\u6ecc\u7620\u810a\u8e60\u965f\u96bb\u4edf\u5343\u5598\u5929\u5ddd\u64c5\u6cc9\u6dfa\u7394\u7a7f\u821b\u85a6\u8ce4\u8e10\u9077\u91e7\u95e1\u9621\u97c6\u51f8\u54f2\u5586\u5fb9\u64a4\u6f88\u7db4\u8f1f\u8f4d\u9435\u50c9\u5c16\u6cbe\u6dfb\u751b\u77bb\u7c3d\u7c64\u8a79\u8ac2\u581e\u59be\u5e16\u6377\u7252\u758a\u776b\u8adc\u8cbc\u8f12\u5ef3\u6674\u6df8\u807d\u83c1\u8acb\u9751\u9bd6\ufa00\u5243\u66ff\u6d95\u6eef\u7de0\u8ae6\u902e\u905e\u9ad4\u521d\u527f\u54e8\u6194\u6284\u62db\u68a2"],["f5a1","\u6912\u695a\u6a35\u7092\u7126\u785d\u7901\u790e\u79d2\u7a0d\u8096\u8278\u82d5\u8349\u8549\u8c82\u8d85\u9162\u918b\u91ae\u4fc3\u56d1\u71ed\u77d7\u8700\u89f8\u5bf8\u5fd6\u6751\u90a8\u53e2\u585a\u5bf5\u60a4\u6181\u6460\u7e3d\u8070\u8525\u9283\u64ae\u50ac\u5d14\u6700\u589c\u62bd\u63a8\u690e\u6978\u6a1e\u6e6b\u76ba\u79cb\u82bb\u8429\u8acf\u8da8\u8ffd\u9112\u914b\u919c\u9310\u9318\u939a\u96db\u9a36\u9c0d\u4e11\u755c\u795d\u7afa\u7b51\u7bc9\u7e2e\u84c4\u8e59\u8e74\u8ef8\u9010\u6625\u693f\u7443\u51fa\u672e\u9edc\u5145\u5fe0\u6c96\u87f2\u885d\u8877\u60b4\u81b5\u8403"],["f6a1","\u8d05\u53d6\u5439\u5634\u5a36\u5c31\u708a\u7fe0\u805a\u8106\u81ed\u8da3\u9189\u9a5f\u9df2\u5074\u4ec4\u53a0\u60fb\u6e2c\u5c64\u4f88\u5024\u55e4\u5cd9\u5e5f\u6065\u6894\u6cbb\u6dc4\u71be\u75d4\u75f4\u7661\u7a1a\u7a49\u7dc7\u7dfb\u7f6e\u81f4\u86a9\u8f1c\u96c9\u99b3\u9f52\u5247\u52c5\u98ed\u89aa\u4e03\u67d2\u6f06\u4fb5\u5be2\u6795\u6c88\u6d78\u741b\u7827\u91dd\u937c\u87c4\u79e4\u7a31\u5feb\u4ed6\u54a4\u553e\u58ae\u59a5\u60f0\u6253\u62d6\u6736\u6955\u8235\u9640\u99b1\u99dd\u502c\u5353\u5544\u577c\ufa01\u6258\ufa02\u64e2\u666b\u67dd\u6fc1\u6fef\u7422\u7438\u8a17"],["f7a1","\u9438\u5451\u5606\u5766\u5f48\u619a\u6b4e\u7058\u70ad\u7dbb\u8a95\u596a\u812b\u63a2\u7708\u803d\u8caa\u5854\u642d\u69bb\u5b95\u5e11\u6e6f\ufa03\u8569\u514c\u53f0\u592a\u6020\u614b\u6b86\u6c70\u6cf0\u7b1e\u80ce\u82d4\u8dc6\u90b0\u98b1\ufa04\u64c7\u6fa4\u6491\u6504\u514e\u5410\u571f\u8a0e\u615f\u6876\ufa05\u75db\u7b52\u7d71\u901a\u5806\u69cc\u817f\u892a\u9000\u9839\u5078\u5957\u59ac\u6295\u900f\u9b2a\u615d\u7279\u95d6\u5761\u5a46\u5df4\u628a\u64ad\u64fa\u6777\u6ce2\u6d3e\u722c\u7436\u7834\u7f77\u82ad\u8ddb\u9817\u5224\u5742\u677f\u7248\u74e3\u8ca9\u8fa6\u9211"],["f8a1","\u962a\u516b\u53ed\u634c\u4f69\u5504\u6096\u6557\u6c9b\u6d7f\u724c\u72fd\u7a17\u8987\u8c9d\u5f6d\u6f8e\u70f9\u81a8\u610e\u4fbf\u504f\u6241\u7247\u7bc7\u7de8\u7fe9\u904d\u97ad\u9a19\u8cb6\u576a\u5e73\u67b0\u840d\u8a55\u5420\u5b16\u5e63\u5ee2\u5f0a\u6583\u80ba\u853d\u9589\u965b\u4f48\u5305\u530d\u530f\u5486\u54fa\u5703\u5e03\u6016\u629b\u62b1\u6355\ufa06\u6ce1\u6d66\u75b1\u7832\u80de\u812f\u82de\u8461\u84b2\u888d\u8912\u900b\u92ea\u98fd\u9b91\u5e45\u66b4\u66dd\u7011\u7206\ufa07\u4ff5\u527d\u5f6a\u6153\u6753\u6a19\u6f02\u74e2\u7968\u8868\u8c79\u98c7\u98c4\u9a43"],["f9a1","\u54c1\u7a1f\u6953\u8af7\u8c4a\u98a8\u99ae\u5f7c\u62ab\u75b2\u76ae\u88ab\u907f\u9642\u5339\u5f3c\u5fc5\u6ccc\u73cc\u7562\u758b\u7b46\u82fe\u999d\u4e4f\u903c\u4e0b\u4f55\u53a6\u590f\u5ec8\u6630\u6cb3\u7455\u8377\u8766\u8cc0\u9050\u971e\u9c15\u58d1\u5b78\u8650\u8b14\u9db4\u5bd2\u6068\u608d\u65f1\u6c57\u6f22\u6fa3\u701a\u7f55\u7ff0\u9591\u9592\u9650\u97d3\u5272\u8f44\u51fd\u542b\u54b8\u5563\u558a\u6abb\u6db5\u7dd8\u8266\u929c\u9677\u9e79\u5408\u54c8\u76d2\u86e4\u95a4\u95d4\u965c\u4ea2\u4f09\u59ee\u5ae6\u5df7\u6052\u6297\u676d\u6841\u6c86\u6e2f\u7f38\u809b\u822a"],["faa1","\ufa08\ufa09\u9805\u4ea5\u5055\u54b3\u5793\u595a\u5b69\u5bb3\u61c8\u6977\u6d77\u7023\u87f9\u89e3\u8a72\u8ae7\u9082\u99ed\u9ab8\u52be\u6838\u5016\u5e78\u674f\u8347\u884c\u4eab\u5411\u56ae\u73e6\u9115\u97ff\u9909\u9957\u9999\u5653\u589f\u865b\u8a31\u61b2\u6af6\u737b\u8ed2\u6b47\u96aa\u9a57\u5955\u7200\u8d6b\u9769\u4fd4\u5cf4\u5f26\u61f8\u665b\u6ceb\u70ab\u7384\u73b9\u73fe\u7729\u774d\u7d43\u7d62\u7e23\u8237\u8852\ufa0a\u8ce2\u9249\u986f\u5b51\u7a74\u8840\u9801\u5acc\u4fe0\u5354\u593e\u5cfd\u633e\u6d79\u72f9\u8105\u8107\u83a2\u92cf\u9830\u4ea8\u5144\u5211\u578b"],["fba1","\u5f62\u6cc2\u6ece\u7005\u7050\u70af\u7192\u73e9\u7469\u834a\u87a2\u8861\u9008\u90a2\u93a3\u99a8\u516e\u5f57\u60e0\u6167\u66b3\u8559\u8e4a\u91af\u978b\u4e4e\u4e92\u547c\u58d5\u58fa\u597d\u5cb5\u5f27\u6236\u6248\u660a\u6667\u6beb\u6d69\u6dcf\u6e56\u6ef8\u6f94\u6fe0\u6fe9\u705d\u72d0\u7425\u745a\u74e0\u7693\u795c\u7cca\u7e1e\u80e1\u82a6\u846b\u84bf\u864e\u865f\u8774\u8b77\u8c6a\u93ac\u9800\u9865\u60d1\u6216\u9177\u5a5a\u660f\u6df7\u6e3e\u743f\u9b42\u5ffd\u60da\u7b0f\u54c4\u5f18\u6c5e\u6cd3\u6d2a\u70d8\u7d05\u8679\u8a0c\u9d3b\u5316\u548c\u5b05\u6a3a\u706b\u7575"],["fca1","\u798d\u79be\u82b1\u83ef\u8a71\u8b41\u8ca8\u9774\ufa0b\u64f4\u652b\u78ba\u78bb\u7a6b\u4e38\u559a\u5950\u5ba6\u5e7b\u60a3\u63db\u6b61\u6665\u6853\u6e19\u7165\u74b0\u7d08\u9084\u9a69\u9c25\u6d3b\u6ed1\u733e\u8c41\u95ca\u51f0\u5e4c\u5fa8\u604d\u60f6\u6130\u614c\u6643\u6644\u69a5\u6cc1\u6e5f\u6ec9\u6f62\u714c\u749c\u7687\u7bc1\u7c27\u8352\u8757\u9051\u968d\u9ec3\u532f\u56de\u5efb\u5f8a\u6062\u6094\u61f7\u6666\u6703\u6a9c\u6dee\u6fae\u7070\u736a\u7e6a\u81be\u8334\u86d4\u8aa8\u8cc4\u5283\u7372\u5b96\u6a6b\u9404\u54ee\u5686\u5b5d\u6548\u6585\u66c9\u689f\u6d8d\u6dc6"],["fda1","\u723b\u80b4\u9175\u9a4d\u4faf\u5019\u539a\u540e\u543c\u5589\u55c5\u5e3f\u5f8c\u673d\u7166\u73dd\u9005\u52db\u52f3\u5864\u58ce\u7104\u718f\u71fb\u85b0\u8a13\u6688\u85a8\u55a7\u6684\u714a\u8431\u5349\u5599\u6bc1\u5f59\u5fbd\u63ee\u6689\u7147\u8af1\u8f1d\u9ebe\u4f11\u643a\u70cb\u7566\u8667\u6064\u8b4e\u9df8\u5147\u51f6\u5308\u6d36\u80f8\u9ed1\u6615\u6b23\u7098\u75d5\u5403\u5c79\u7d07\u8a16\u6b20\u6b3d\u6b46\u5438\u6070\u6d3d\u7fd5\u8208\u50d6\u51de\u559c\u566b\u56cd\u59ec\u5b09\u5e0c\u6199\u6198\u6231\u665e\u66e6\u7199\u71b9\u71ba\u72a7\u79a7\u7a00\u7fb2\u8a70"]]')},72324:function(b){"use strict";b.exports=JSON.parse('[["0","\\u0000",127],["a140","\u3000\uff0c\u3001\u3002\uff0e\u2027\uff1b\uff1a\uff1f\uff01\ufe30\u2026\u2025\ufe50\ufe51\ufe52\xb7\ufe54\ufe55\ufe56\ufe57\uff5c\u2013\ufe31\u2014\ufe33\u2574\ufe34\ufe4f\uff08\uff09\ufe35\ufe36\uff5b\uff5d\ufe37\ufe38\u3014\u3015\ufe39\ufe3a\u3010\u3011\ufe3b\ufe3c\u300a\u300b\ufe3d\ufe3e\u3008\u3009\ufe3f\ufe40\u300c\u300d\ufe41\ufe42\u300e\u300f\ufe43\ufe44\ufe59\ufe5a"],["a1a1","\ufe5b\ufe5c\ufe5d\ufe5e\u2018\u2019\u201c\u201d\u301d\u301e\u2035\u2032\uff03\uff06\uff0a\u203b\xa7\u3003\u25cb\u25cf\u25b3\u25b2\u25ce\u2606\u2605\u25c7\u25c6\u25a1\u25a0\u25bd\u25bc\u32a3\u2105\xaf\uffe3\uff3f\u02cd\ufe49\ufe4a\ufe4d\ufe4e\ufe4b\ufe4c\ufe5f\ufe60\ufe61\uff0b\uff0d\xd7\xf7\xb1\u221a\uff1c\uff1e\uff1d\u2266\u2267\u2260\u221e\u2252\u2261\ufe62",4,"\uff5e\u2229\u222a\u22a5\u2220\u221f\u22bf\u33d2\u33d1\u222b\u222e\u2235\u2234\u2640\u2642\u2295\u2299\u2191\u2193\u2190\u2192\u2196\u2197\u2199\u2198\u2225\u2223\uff0f"],["a240","\uff3c\u2215\ufe68\uff04\uffe5\u3012\uffe0\uffe1\uff05\uff20\u2103\u2109\ufe69\ufe6a\ufe6b\u33d5\u339c\u339d\u339e\u33ce\u33a1\u338e\u338f\u33c4\xb0\u5159\u515b\u515e\u515d\u5161\u5163\u55e7\u74e9\u7cce\u2581",7,"\u258f\u258e\u258d\u258c\u258b\u258a\u2589\u253c\u2534\u252c\u2524\u251c\u2594\u2500\u2502\u2595\u250c\u2510\u2514\u2518\u256d"],["a2a1","\u256e\u2570\u256f\u2550\u255e\u256a\u2561\u25e2\u25e3\u25e5\u25e4\u2571\u2572\u2573\uff10",9,"\u2160",9,"\u3021",8,"\u5341\u5344\u5345\uff21",25,"\uff41",21],["a340","\uff57\uff58\uff59\uff5a\u0391",16,"\u03a3",6,"\u03b1",16,"\u03c3",6,"\u3105",10],["a3a1","\u3110",25,"\u02d9\u02c9\u02ca\u02c7\u02cb"],["a3e1","\u20ac"],["a440","\u4e00\u4e59\u4e01\u4e03\u4e43\u4e5d\u4e86\u4e8c\u4eba\u513f\u5165\u516b\u51e0\u5200\u5201\u529b\u5315\u5341\u535c\u53c8\u4e09\u4e0b\u4e08\u4e0a\u4e2b\u4e38\u51e1\u4e45\u4e48\u4e5f\u4e5e\u4e8e\u4ea1\u5140\u5203\u52fa\u5343\u53c9\u53e3\u571f\u58eb\u5915\u5927\u5973\u5b50\u5b51\u5b53\u5bf8\u5c0f\u5c22\u5c38\u5c71\u5ddd\u5de5\u5df1\u5df2\u5df3\u5dfe\u5e72\u5efe\u5f0b\u5f13\u624d"],["a4a1","\u4e11\u4e10\u4e0d\u4e2d\u4e30\u4e39\u4e4b\u5c39\u4e88\u4e91\u4e95\u4e92\u4e94\u4ea2\u4ec1\u4ec0\u4ec3\u4ec6\u4ec7\u4ecd\u4eca\u4ecb\u4ec4\u5143\u5141\u5167\u516d\u516e\u516c\u5197\u51f6\u5206\u5207\u5208\u52fb\u52fe\u52ff\u5316\u5339\u5348\u5347\u5345\u535e\u5384\u53cb\u53ca\u53cd\u58ec\u5929\u592b\u592a\u592d\u5b54\u5c11\u5c24\u5c3a\u5c6f\u5df4\u5e7b\u5eff\u5f14\u5f15\u5fc3\u6208\u6236\u624b\u624e\u652f\u6587\u6597\u65a4\u65b9\u65e5\u66f0\u6708\u6728\u6b20\u6b62\u6b79\u6bcb\u6bd4\u6bdb\u6c0f\u6c34\u706b\u722a\u7236\u723b\u7247\u7259\u725b\u72ac\u738b\u4e19"],["a540","\u4e16\u4e15\u4e14\u4e18\u4e3b\u4e4d\u4e4f\u4e4e\u4ee5\u4ed8\u4ed4\u4ed5\u4ed6\u4ed7\u4ee3\u4ee4\u4ed9\u4ede\u5145\u5144\u5189\u518a\u51ac\u51f9\u51fa\u51f8\u520a\u52a0\u529f\u5305\u5306\u5317\u531d\u4edf\u534a\u5349\u5361\u5360\u536f\u536e\u53bb\u53ef\u53e4\u53f3\u53ec\u53ee\u53e9\u53e8\u53fc\u53f8\u53f5\u53eb\u53e6\u53ea\u53f2\u53f1\u53f0\u53e5\u53ed\u53fb\u56db\u56da\u5916"],["a5a1","\u592e\u5931\u5974\u5976\u5b55\u5b83\u5c3c\u5de8\u5de7\u5de6\u5e02\u5e03\u5e73\u5e7c\u5f01\u5f18\u5f17\u5fc5\u620a\u6253\u6254\u6252\u6251\u65a5\u65e6\u672e\u672c\u672a\u672b\u672d\u6b63\u6bcd\u6c11\u6c10\u6c38\u6c41\u6c40\u6c3e\u72af\u7384\u7389\u74dc\u74e6\u7518\u751f\u7528\u7529\u7530\u7531\u7532\u7533\u758b\u767d\u76ae\u76bf\u76ee\u77db\u77e2\u77f3\u793a\u79be\u7a74\u7acb\u4e1e\u4e1f\u4e52\u4e53\u4e69\u4e99\u4ea4\u4ea6\u4ea5\u4eff\u4f09\u4f19\u4f0a\u4f15\u4f0d\u4f10\u4f11\u4f0f\u4ef2\u4ef6\u4efb\u4ef0\u4ef3\u4efd\u4f01\u4f0b\u5149\u5147\u5146\u5148\u5168"],["a640","\u5171\u518d\u51b0\u5217\u5211\u5212\u520e\u5216\u52a3\u5308\u5321\u5320\u5370\u5371\u5409\u540f\u540c\u540a\u5410\u5401\u540b\u5404\u5411\u540d\u5408\u5403\u540e\u5406\u5412\u56e0\u56de\u56dd\u5733\u5730\u5728\u572d\u572c\u572f\u5729\u5919\u591a\u5937\u5938\u5984\u5978\u5983\u597d\u5979\u5982\u5981\u5b57\u5b58\u5b87\u5b88\u5b85\u5b89\u5bfa\u5c16\u5c79\u5dde\u5e06\u5e76\u5e74"],["a6a1","\u5f0f\u5f1b\u5fd9\u5fd6\u620e\u620c\u620d\u6210\u6263\u625b\u6258\u6536\u65e9\u65e8\u65ec\u65ed\u66f2\u66f3\u6709\u673d\u6734\u6731\u6735\u6b21\u6b64\u6b7b\u6c16\u6c5d\u6c57\u6c59\u6c5f\u6c60\u6c50\u6c55\u6c61\u6c5b\u6c4d\u6c4e\u7070\u725f\u725d\u767e\u7af9\u7c73\u7cf8\u7f36\u7f8a\u7fbd\u8001\u8003\u800c\u8012\u8033\u807f\u8089\u808b\u808c\u81e3\u81ea\u81f3\u81fc\u820c\u821b\u821f\u826e\u8272\u827e\u866b\u8840\u884c\u8863\u897f\u9621\u4e32\u4ea8\u4f4d\u4f4f\u4f47\u4f57\u4f5e\u4f34\u4f5b\u4f55\u4f30\u4f50\u4f51\u4f3d\u4f3a\u4f38\u4f43\u4f54\u4f3c\u4f46\u4f63"],["a740","\u4f5c\u4f60\u4f2f\u4f4e\u4f36\u4f59\u4f5d\u4f48\u4f5a\u514c\u514b\u514d\u5175\u51b6\u51b7\u5225\u5224\u5229\u522a\u5228\u52ab\u52a9\u52aa\u52ac\u5323\u5373\u5375\u541d\u542d\u541e\u543e\u5426\u544e\u5427\u5446\u5443\u5433\u5448\u5442\u541b\u5429\u544a\u5439\u543b\u5438\u542e\u5435\u5436\u5420\u543c\u5440\u5431\u542b\u541f\u542c\u56ea\u56f0\u56e4\u56eb\u574a\u5751\u5740\u574d"],["a7a1","\u5747\u574e\u573e\u5750\u574f\u573b\u58ef\u593e\u599d\u5992\u59a8\u599e\u59a3\u5999\u5996\u598d\u59a4\u5993\u598a\u59a5\u5b5d\u5b5c\u5b5a\u5b5b\u5b8c\u5b8b\u5b8f\u5c2c\u5c40\u5c41\u5c3f\u5c3e\u5c90\u5c91\u5c94\u5c8c\u5deb\u5e0c\u5e8f\u5e87\u5e8a\u5ef7\u5f04\u5f1f\u5f64\u5f62\u5f77\u5f79\u5fd8\u5fcc\u5fd7\u5fcd\u5ff1\u5feb\u5ff8\u5fea\u6212\u6211\u6284\u6297\u6296\u6280\u6276\u6289\u626d\u628a\u627c\u627e\u6279\u6273\u6292\u626f\u6298\u626e\u6295\u6293\u6291\u6286\u6539\u653b\u6538\u65f1\u66f4\u675f\u674e\u674f\u6750\u6751\u675c\u6756\u675e\u6749\u6746\u6760"],["a840","\u6753\u6757\u6b65\u6bcf\u6c42\u6c5e\u6c99\u6c81\u6c88\u6c89\u6c85\u6c9b\u6c6a\u6c7a\u6c90\u6c70\u6c8c\u6c68\u6c96\u6c92\u6c7d\u6c83\u6c72\u6c7e\u6c74\u6c86\u6c76\u6c8d\u6c94\u6c98\u6c82\u7076\u707c\u707d\u7078\u7262\u7261\u7260\u72c4\u72c2\u7396\u752c\u752b\u7537\u7538\u7682\u76ef\u77e3\u79c1\u79c0\u79bf\u7a76\u7cfb\u7f55\u8096\u8093\u809d\u8098\u809b\u809a\u80b2\u826f\u8292"],["a8a1","\u828b\u828d\u898b\u89d2\u8a00\u8c37\u8c46\u8c55\u8c9d\u8d64\u8d70\u8db3\u8eab\u8eca\u8f9b\u8fb0\u8fc2\u8fc6\u8fc5\u8fc4\u5de1\u9091\u90a2\u90aa\u90a6\u90a3\u9149\u91c6\u91cc\u9632\u962e\u9631\u962a\u962c\u4e26\u4e56\u4e73\u4e8b\u4e9b\u4e9e\u4eab\u4eac\u4f6f\u4f9d\u4f8d\u4f73\u4f7f\u4f6c\u4f9b\u4f8b\u4f86\u4f83\u4f70\u4f75\u4f88\u4f69\u4f7b\u4f96\u4f7e\u4f8f\u4f91\u4f7a\u5154\u5152\u5155\u5169\u5177\u5176\u5178\u51bd\u51fd\u523b\u5238\u5237\u523a\u5230\u522e\u5236\u5241\u52be\u52bb\u5352\u5354\u5353\u5351\u5366\u5377\u5378\u5379\u53d6\u53d4\u53d7\u5473\u5475"],["a940","\u5496\u5478\u5495\u5480\u547b\u5477\u5484\u5492\u5486\u547c\u5490\u5471\u5476\u548c\u549a\u5462\u5468\u548b\u547d\u548e\u56fa\u5783\u5777\u576a\u5769\u5761\u5766\u5764\u577c\u591c\u5949\u5947\u5948\u5944\u5954\u59be\u59bb\u59d4\u59b9\u59ae\u59d1\u59c6\u59d0\u59cd\u59cb\u59d3\u59ca\u59af\u59b3\u59d2\u59c5\u5b5f\u5b64\u5b63\u5b97\u5b9a\u5b98\u5b9c\u5b99\u5b9b\u5c1a\u5c48\u5c45"],["a9a1","\u5c46\u5cb7\u5ca1\u5cb8\u5ca9\u5cab\u5cb1\u5cb3\u5e18\u5e1a\u5e16\u5e15\u5e1b\u5e11\u5e78\u5e9a\u5e97\u5e9c\u5e95\u5e96\u5ef6\u5f26\u5f27\u5f29\u5f80\u5f81\u5f7f\u5f7c\u5fdd\u5fe0\u5ffd\u5ff5\u5fff\u600f\u6014\u602f\u6035\u6016\u602a\u6015\u6021\u6027\u6029\u602b\u601b\u6216\u6215\u623f\u623e\u6240\u627f\u62c9\u62cc\u62c4\u62bf\u62c2\u62b9\u62d2\u62db\u62ab\u62d3\u62d4\u62cb\u62c8\u62a8\u62bd\u62bc\u62d0\u62d9\u62c7\u62cd\u62b5\u62da\u62b1\u62d8\u62d6\u62d7\u62c6\u62ac\u62ce\u653e\u65a7\u65bc\u65fa\u6614\u6613\u660c\u6606\u6602\u660e\u6600\u660f\u6615\u660a"],["aa40","\u6607\u670d\u670b\u676d\u678b\u6795\u6771\u679c\u6773\u6777\u6787\u679d\u6797\u676f\u6770\u677f\u6789\u677e\u6790\u6775\u679a\u6793\u677c\u676a\u6772\u6b23\u6b66\u6b67\u6b7f\u6c13\u6c1b\u6ce3\u6ce8\u6cf3\u6cb1\u6ccc\u6ce5\u6cb3\u6cbd\u6cbe\u6cbc\u6ce2\u6cab\u6cd5\u6cd3\u6cb8\u6cc4\u6cb9\u6cc1\u6cae\u6cd7\u6cc5\u6cf1\u6cbf\u6cbb\u6ce1\u6cdb\u6cca\u6cac\u6cef\u6cdc\u6cd6\u6ce0"],["aaa1","\u7095\u708e\u7092\u708a\u7099\u722c\u722d\u7238\u7248\u7267\u7269\u72c0\u72ce\u72d9\u72d7\u72d0\u73a9\u73a8\u739f\u73ab\u73a5\u753d\u759d\u7599\u759a\u7684\u76c2\u76f2\u76f4\u77e5\u77fd\u793e\u7940\u7941\u79c9\u79c8\u7a7a\u7a79\u7afa\u7cfe\u7f54\u7f8c\u7f8b\u8005\u80ba\u80a5\u80a2\u80b1\u80a1\u80ab\u80a9\u80b4\u80aa\u80af\u81e5\u81fe\u820d\u82b3\u829d\u8299\u82ad\u82bd\u829f\u82b9\u82b1\u82ac\u82a5\u82af\u82b8\u82a3\u82b0\u82be\u82b7\u864e\u8671\u521d\u8868\u8ecb\u8fce\u8fd4\u8fd1\u90b5\u90b8\u90b1\u90b6\u91c7\u91d1\u9577\u9580\u961c\u9640\u963f\u963b\u9644"],["ab40","\u9642\u96b9\u96e8\u9752\u975e\u4e9f\u4ead\u4eae\u4fe1\u4fb5\u4faf\u4fbf\u4fe0\u4fd1\u4fcf\u4fdd\u4fc3\u4fb6\u4fd8\u4fdf\u4fca\u4fd7\u4fae\u4fd0\u4fc4\u4fc2\u4fda\u4fce\u4fde\u4fb7\u5157\u5192\u5191\u51a0\u524e\u5243\u524a\u524d\u524c\u524b\u5247\u52c7\u52c9\u52c3\u52c1\u530d\u5357\u537b\u539a\u53db\u54ac\u54c0\u54a8\u54ce\u54c9\u54b8\u54a6\u54b3\u54c7\u54c2\u54bd\u54aa\u54c1"],["aba1","\u54c4\u54c8\u54af\u54ab\u54b1\u54bb\u54a9\u54a7\u54bf\u56ff\u5782\u578b\u57a0\u57a3\u57a2\u57ce\u57ae\u5793\u5955\u5951\u594f\u594e\u5950\u59dc\u59d8\u59ff\u59e3\u59e8\u5a03\u59e5\u59ea\u59da\u59e6\u5a01\u59fb\u5b69\u5ba3\u5ba6\u5ba4\u5ba2\u5ba5\u5c01\u5c4e\u5c4f\u5c4d\u5c4b\u5cd9\u5cd2\u5df7\u5e1d\u5e25\u5e1f\u5e7d\u5ea0\u5ea6\u5efa\u5f08\u5f2d\u5f65\u5f88\u5f85\u5f8a\u5f8b\u5f87\u5f8c\u5f89\u6012\u601d\u6020\u6025\u600e\u6028\u604d\u6070\u6068\u6062\u6046\u6043\u606c\u606b\u606a\u6064\u6241\u62dc\u6316\u6309\u62fc\u62ed\u6301\u62ee\u62fd\u6307\u62f1\u62f7"],["ac40","\u62ef\u62ec\u62fe\u62f4\u6311\u6302\u653f\u6545\u65ab\u65bd\u65e2\u6625\u662d\u6620\u6627\u662f\u661f\u6628\u6631\u6624\u66f7\u67ff\u67d3\u67f1\u67d4\u67d0\u67ec\u67b6\u67af\u67f5\u67e9\u67ef\u67c4\u67d1\u67b4\u67da\u67e5\u67b8\u67cf\u67de\u67f3\u67b0\u67d9\u67e2\u67dd\u67d2\u6b6a\u6b83\u6b86\u6bb5\u6bd2\u6bd7\u6c1f\u6cc9\u6d0b\u6d32\u6d2a\u6d41\u6d25\u6d0c\u6d31\u6d1e\u6d17"],["aca1","\u6d3b\u6d3d\u6d3e\u6d36\u6d1b\u6cf5\u6d39\u6d27\u6d38\u6d29\u6d2e\u6d35\u6d0e\u6d2b\u70ab\u70ba\u70b3\u70ac\u70af\u70ad\u70b8\u70ae\u70a4\u7230\u7272\u726f\u7274\u72e9\u72e0\u72e1\u73b7\u73ca\u73bb\u73b2\u73cd\u73c0\u73b3\u751a\u752d\u754f\u754c\u754e\u754b\u75ab\u75a4\u75a5\u75a2\u75a3\u7678\u7686\u7687\u7688\u76c8\u76c6\u76c3\u76c5\u7701\u76f9\u76f8\u7709\u770b\u76fe\u76fc\u7707\u77dc\u7802\u7814\u780c\u780d\u7946\u7949\u7948\u7947\u79b9\u79ba\u79d1\u79d2\u79cb\u7a7f\u7a81\u7aff\u7afd\u7c7d\u7d02\u7d05\u7d00\u7d09\u7d07\u7d04\u7d06\u7f38\u7f8e\u7fbf\u8004"],["ad40","\u8010\u800d\u8011\u8036\u80d6\u80e5\u80da\u80c3\u80c4\u80cc\u80e1\u80db\u80ce\u80de\u80e4\u80dd\u81f4\u8222\u82e7\u8303\u8305\u82e3\u82db\u82e6\u8304\u82e5\u8302\u8309\u82d2\u82d7\u82f1\u8301\u82dc\u82d4\u82d1\u82de\u82d3\u82df\u82ef\u8306\u8650\u8679\u867b\u867a\u884d\u886b\u8981\u89d4\u8a08\u8a02\u8a03\u8c9e\u8ca0\u8d74\u8d73\u8db4\u8ecd\u8ecc\u8ff0\u8fe6\u8fe2\u8fea\u8fe5"],["ada1","\u8fed\u8feb\u8fe4\u8fe8\u90ca\u90ce\u90c1\u90c3\u914b\u914a\u91cd\u9582\u9650\u964b\u964c\u964d\u9762\u9769\u97cb\u97ed\u97f3\u9801\u98a8\u98db\u98df\u9996\u9999\u4e58\u4eb3\u500c\u500d\u5023\u4fef\u5026\u5025\u4ff8\u5029\u5016\u5006\u503c\u501f\u501a\u5012\u5011\u4ffa\u5000\u5014\u5028\u4ff1\u5021\u500b\u5019\u5018\u4ff3\u4fee\u502d\u502a\u4ffe\u502b\u5009\u517c\u51a4\u51a5\u51a2\u51cd\u51cc\u51c6\u51cb\u5256\u525c\u5254\u525b\u525d\u532a\u537f\u539f\u539d\u53df\u54e8\u5510\u5501\u5537\u54fc\u54e5\u54f2\u5506\u54fa\u5514\u54e9\u54ed\u54e1\u5509\u54ee\u54ea"],["ae40","\u54e6\u5527\u5507\u54fd\u550f\u5703\u5704\u57c2\u57d4\u57cb\u57c3\u5809\u590f\u5957\u5958\u595a\u5a11\u5a18\u5a1c\u5a1f\u5a1b\u5a13\u59ec\u5a20\u5a23\u5a29\u5a25\u5a0c\u5a09\u5b6b\u5c58\u5bb0\u5bb3\u5bb6\u5bb4\u5bae\u5bb5\u5bb9\u5bb8\u5c04\u5c51\u5c55\u5c50\u5ced\u5cfd\u5cfb\u5cea\u5ce8\u5cf0\u5cf6\u5d01\u5cf4\u5dee\u5e2d\u5e2b\u5eab\u5ead\u5ea7\u5f31\u5f92\u5f91\u5f90\u6059"],["aea1","\u6063\u6065\u6050\u6055\u606d\u6069\u606f\u6084\u609f\u609a\u608d\u6094\u608c\u6085\u6096\u6247\u62f3\u6308\u62ff\u634e\u633e\u632f\u6355\u6342\u6346\u634f\u6349\u633a\u6350\u633d\u632a\u632b\u6328\u634d\u634c\u6548\u6549\u6599\u65c1\u65c5\u6642\u6649\u664f\u6643\u6652\u664c\u6645\u6641\u66f8\u6714\u6715\u6717\u6821\u6838\u6848\u6846\u6853\u6839\u6842\u6854\u6829\u68b3\u6817\u684c\u6851\u683d\u67f4\u6850\u6840\u683c\u6843\u682a\u6845\u6813\u6818\u6841\u6b8a\u6b89\u6bb7\u6c23\u6c27\u6c28\u6c26\u6c24\u6cf0\u6d6a\u6d95\u6d88\u6d87\u6d66\u6d78\u6d77\u6d59\u6d93"],["af40","\u6d6c\u6d89\u6d6e\u6d5a\u6d74\u6d69\u6d8c\u6d8a\u6d79\u6d85\u6d65\u6d94\u70ca\u70d8\u70e4\u70d9\u70c8\u70cf\u7239\u7279\u72fc\u72f9\u72fd\u72f8\u72f7\u7386\u73ed\u7409\u73ee\u73e0\u73ea\u73de\u7554\u755d\u755c\u755a\u7559\u75be\u75c5\u75c7\u75b2\u75b3\u75bd\u75bc\u75b9\u75c2\u75b8\u768b\u76b0\u76ca\u76cd\u76ce\u7729\u771f\u7720\u7728\u77e9\u7830\u7827\u7838\u781d\u7834\u7837"],["afa1","\u7825\u782d\u7820\u781f\u7832\u7955\u7950\u7960\u795f\u7956\u795e\u795d\u7957\u795a\u79e4\u79e3\u79e7\u79df\u79e6\u79e9\u79d8\u7a84\u7a88\u7ad9\u7b06\u7b11\u7c89\u7d21\u7d17\u7d0b\u7d0a\u7d20\u7d22\u7d14\u7d10\u7d15\u7d1a\u7d1c\u7d0d\u7d19\u7d1b\u7f3a\u7f5f\u7f94\u7fc5\u7fc1\u8006\u8018\u8015\u8019\u8017\u803d\u803f\u80f1\u8102\u80f0\u8105\u80ed\u80f4\u8106\u80f8\u80f3\u8108\u80fd\u810a\u80fc\u80ef\u81ed\u81ec\u8200\u8210\u822a\u822b\u8228\u822c\u82bb\u832b\u8352\u8354\u834a\u8338\u8350\u8349\u8335\u8334\u834f\u8332\u8339\u8336\u8317\u8340\u8331\u8328\u8343"],["b040","\u8654\u868a\u86aa\u8693\u86a4\u86a9\u868c\u86a3\u869c\u8870\u8877\u8881\u8882\u887d\u8879\u8a18\u8a10\u8a0e\u8a0c\u8a15\u8a0a\u8a17\u8a13\u8a16\u8a0f\u8a11\u8c48\u8c7a\u8c79\u8ca1\u8ca2\u8d77\u8eac\u8ed2\u8ed4\u8ecf\u8fb1\u9001\u9006\u8ff7\u9000\u8ffa\u8ff4\u9003\u8ffd\u9005\u8ff8\u9095\u90e1\u90dd\u90e2\u9152\u914d\u914c\u91d8\u91dd\u91d7\u91dc\u91d9\u9583\u9662\u9663\u9661"],["b0a1","\u965b\u965d\u9664\u9658\u965e\u96bb\u98e2\u99ac\u9aa8\u9ad8\u9b25\u9b32\u9b3c\u4e7e\u507a\u507d\u505c\u5047\u5043\u504c\u505a\u5049\u5065\u5076\u504e\u5055\u5075\u5074\u5077\u504f\u500f\u506f\u506d\u515c\u5195\u51f0\u526a\u526f\u52d2\u52d9\u52d8\u52d5\u5310\u530f\u5319\u533f\u5340\u533e\u53c3\u66fc\u5546\u556a\u5566\u5544\u555e\u5561\u5543\u554a\u5531\u5556\u554f\u5555\u552f\u5564\u5538\u552e\u555c\u552c\u5563\u5533\u5541\u5557\u5708\u570b\u5709\u57df\u5805\u580a\u5806\u57e0\u57e4\u57fa\u5802\u5835\u57f7\u57f9\u5920\u5962\u5a36\u5a41\u5a49\u5a66\u5a6a\u5a40"],["b140","\u5a3c\u5a62\u5a5a\u5a46\u5a4a\u5b70\u5bc7\u5bc5\u5bc4\u5bc2\u5bbf\u5bc6\u5c09\u5c08\u5c07\u5c60\u5c5c\u5c5d\u5d07\u5d06\u5d0e\u5d1b\u5d16\u5d22\u5d11\u5d29\u5d14\u5d19\u5d24\u5d27\u5d17\u5de2\u5e38\u5e36\u5e33\u5e37\u5eb7\u5eb8\u5eb6\u5eb5\u5ebe\u5f35\u5f37\u5f57\u5f6c\u5f69\u5f6b\u5f97\u5f99\u5f9e\u5f98\u5fa1\u5fa0\u5f9c\u607f\u60a3\u6089\u60a0\u60a8\u60cb\u60b4\u60e6\u60bd"],["b1a1","\u60c5\u60bb\u60b5\u60dc\u60bc\u60d8\u60d5\u60c6\u60df\u60b8\u60da\u60c7\u621a\u621b\u6248\u63a0\u63a7\u6372\u6396\u63a2\u63a5\u6377\u6367\u6398\u63aa\u6371\u63a9\u6389\u6383\u639b\u636b\u63a8\u6384\u6388\u6399\u63a1\u63ac\u6392\u638f\u6380\u637b\u6369\u6368\u637a\u655d\u6556\u6551\u6559\u6557\u555f\u654f\u6558\u6555\u6554\u659c\u659b\u65ac\u65cf\u65cb\u65cc\u65ce\u665d\u665a\u6664\u6668\u6666\u665e\u66f9\u52d7\u671b\u6881\u68af\u68a2\u6893\u68b5\u687f\u6876\u68b1\u68a7\u6897\u68b0\u6883\u68c4\u68ad\u6886\u6885\u6894\u689d\u68a8\u689f\u68a1\u6882\u6b32\u6bba"],["b240","\u6beb\u6bec\u6c2b\u6d8e\u6dbc\u6df3\u6dd9\u6db2\u6de1\u6dcc\u6de4\u6dfb\u6dfa\u6e05\u6dc7\u6dcb\u6daf\u6dd1\u6dae\u6dde\u6df9\u6db8\u6df7\u6df5\u6dc5\u6dd2\u6e1a\u6db5\u6dda\u6deb\u6dd8\u6dea\u6df1\u6dee\u6de8\u6dc6\u6dc4\u6daa\u6dec\u6dbf\u6de6\u70f9\u7109\u710a\u70fd\u70ef\u723d\u727d\u7281\u731c\u731b\u7316\u7313\u7319\u7387\u7405\u740a\u7403\u7406\u73fe\u740d\u74e0\u74f6"],["b2a1","\u74f7\u751c\u7522\u7565\u7566\u7562\u7570\u758f\u75d4\u75d5\u75b5\u75ca\u75cd\u768e\u76d4\u76d2\u76db\u7737\u773e\u773c\u7736\u7738\u773a\u786b\u7843\u784e\u7965\u7968\u796d\u79fb\u7a92\u7a95\u7b20\u7b28\u7b1b\u7b2c\u7b26\u7b19\u7b1e\u7b2e\u7c92\u7c97\u7c95\u7d46\u7d43\u7d71\u7d2e\u7d39\u7d3c\u7d40\u7d30\u7d33\u7d44\u7d2f\u7d42\u7d32\u7d31\u7f3d\u7f9e\u7f9a\u7fcc\u7fce\u7fd2\u801c\u804a\u8046\u812f\u8116\u8123\u812b\u8129\u8130\u8124\u8202\u8235\u8237\u8236\u8239\u838e\u839e\u8398\u8378\u83a2\u8396\u83bd\u83ab\u8392\u838a\u8393\u8389\u83a0\u8377\u837b\u837c"],["b340","\u8386\u83a7\u8655\u5f6a\u86c7\u86c0\u86b6\u86c4\u86b5\u86c6\u86cb\u86b1\u86af\u86c9\u8853\u889e\u8888\u88ab\u8892\u8896\u888d\u888b\u8993\u898f\u8a2a\u8a1d\u8a23\u8a25\u8a31\u8a2d\u8a1f\u8a1b\u8a22\u8c49\u8c5a\u8ca9\u8cac\u8cab\u8ca8\u8caa\u8ca7\u8d67\u8d66\u8dbe\u8dba\u8edb\u8edf\u9019\u900d\u901a\u9017\u9023\u901f\u901d\u9010\u9015\u901e\u9020\u900f\u9022\u9016\u901b\u9014"],["b3a1","\u90e8\u90ed\u90fd\u9157\u91ce\u91f5\u91e6\u91e3\u91e7\u91ed\u91e9\u9589\u966a\u9675\u9673\u9678\u9670\u9674\u9676\u9677\u966c\u96c0\u96ea\u96e9\u7ae0\u7adf\u9802\u9803\u9b5a\u9ce5\u9e75\u9e7f\u9ea5\u9ebb\u50a2\u508d\u5085\u5099\u5091\u5080\u5096\u5098\u509a\u6700\u51f1\u5272\u5274\u5275\u5269\u52de\u52dd\u52db\u535a\u53a5\u557b\u5580\u55a7\u557c\u558a\u559d\u5598\u5582\u559c\u55aa\u5594\u5587\u558b\u5583\u55b3\u55ae\u559f\u553e\u55b2\u559a\u55bb\u55ac\u55b1\u557e\u5589\u55ab\u5599\u570d\u582f\u582a\u5834\u5824\u5830\u5831\u5821\u581d\u5820\u58f9\u58fa\u5960"],["b440","\u5a77\u5a9a\u5a7f\u5a92\u5a9b\u5aa7\u5b73\u5b71\u5bd2\u5bcc\u5bd3\u5bd0\u5c0a\u5c0b\u5c31\u5d4c\u5d50\u5d34\u5d47\u5dfd\u5e45\u5e3d\u5e40\u5e43\u5e7e\u5eca\u5ec1\u5ec2\u5ec4\u5f3c\u5f6d\u5fa9\u5faa\u5fa8\u60d1\u60e1\u60b2\u60b6\u60e0\u611c\u6123\u60fa\u6115\u60f0\u60fb\u60f4\u6168\u60f1\u610e\u60f6\u6109\u6100\u6112\u621f\u6249\u63a3\u638c\u63cf\u63c0\u63e9\u63c9\u63c6\u63cd"],["b4a1","\u63d2\u63e3\u63d0\u63e1\u63d6\u63ed\u63ee\u6376\u63f4\u63ea\u63db\u6452\u63da\u63f9\u655e\u6566\u6562\u6563\u6591\u6590\u65af\u666e\u6670\u6674\u6676\u666f\u6691\u667a\u667e\u6677\u66fe\u66ff\u671f\u671d\u68fa\u68d5\u68e0\u68d8\u68d7\u6905\u68df\u68f5\u68ee\u68e7\u68f9\u68d2\u68f2\u68e3\u68cb\u68cd\u690d\u6912\u690e\u68c9\u68da\u696e\u68fb\u6b3e\u6b3a\u6b3d\u6b98\u6b96\u6bbc\u6bef\u6c2e\u6c2f\u6c2c\u6e2f\u6e38\u6e54\u6e21\u6e32\u6e67\u6e4a\u6e20\u6e25\u6e23\u6e1b\u6e5b\u6e58\u6e24\u6e56\u6e6e\u6e2d\u6e26\u6e6f\u6e34\u6e4d\u6e3a\u6e2c\u6e43\u6e1d\u6e3e\u6ecb"],["b540","\u6e89\u6e19\u6e4e\u6e63\u6e44\u6e72\u6e69\u6e5f\u7119\u711a\u7126\u7130\u7121\u7136\u716e\u711c\u724c\u7284\u7280\u7336\u7325\u7334\u7329\u743a\u742a\u7433\u7422\u7425\u7435\u7436\u7434\u742f\u741b\u7426\u7428\u7525\u7526\u756b\u756a\u75e2\u75db\u75e3\u75d9\u75d8\u75de\u75e0\u767b\u767c\u7696\u7693\u76b4\u76dc\u774f\u77ed\u785d\u786c\u786f\u7a0d\u7a08\u7a0b\u7a05\u7a00\u7a98"],["b5a1","\u7a97\u7a96\u7ae5\u7ae3\u7b49\u7b56\u7b46\u7b50\u7b52\u7b54\u7b4d\u7b4b\u7b4f\u7b51\u7c9f\u7ca5\u7d5e\u7d50\u7d68\u7d55\u7d2b\u7d6e\u7d72\u7d61\u7d66\u7d62\u7d70\u7d73\u5584\u7fd4\u7fd5\u800b\u8052\u8085\u8155\u8154\u814b\u8151\u814e\u8139\u8146\u813e\u814c\u8153\u8174\u8212\u821c\u83e9\u8403\u83f8\u840d\u83e0\u83c5\u840b\u83c1\u83ef\u83f1\u83f4\u8457\u840a\u83f0\u840c\u83cc\u83fd\u83f2\u83ca\u8438\u840e\u8404\u83dc\u8407\u83d4\u83df\u865b\u86df\u86d9\u86ed\u86d4\u86db\u86e4\u86d0\u86de\u8857\u88c1\u88c2\u88b1\u8983\u8996\u8a3b\u8a60\u8a55\u8a5e\u8a3c\u8a41"],["b640","\u8a54\u8a5b\u8a50\u8a46\u8a34\u8a3a\u8a36\u8a56\u8c61\u8c82\u8caf\u8cbc\u8cb3\u8cbd\u8cc1\u8cbb\u8cc0\u8cb4\u8cb7\u8cb6\u8cbf\u8cb8\u8d8a\u8d85\u8d81\u8dce\u8ddd\u8dcb\u8dda\u8dd1\u8dcc\u8ddb\u8dc6\u8efb\u8ef8\u8efc\u8f9c\u902e\u9035\u9031\u9038\u9032\u9036\u9102\u90f5\u9109\u90fe\u9163\u9165\u91cf\u9214\u9215\u9223\u9209\u921e\u920d\u9210\u9207\u9211\u9594\u958f\u958b\u9591"],["b6a1","\u9593\u9592\u958e\u968a\u968e\u968b\u967d\u9685\u9686\u968d\u9672\u9684\u96c1\u96c5\u96c4\u96c6\u96c7\u96ef\u96f2\u97cc\u9805\u9806\u9808\u98e7\u98ea\u98ef\u98e9\u98f2\u98ed\u99ae\u99ad\u9ec3\u9ecd\u9ed1\u4e82\u50ad\u50b5\u50b2\u50b3\u50c5\u50be\u50ac\u50b7\u50bb\u50af\u50c7\u527f\u5277\u527d\u52df\u52e6\u52e4\u52e2\u52e3\u532f\u55df\u55e8\u55d3\u55e6\u55ce\u55dc\u55c7\u55d1\u55e3\u55e4\u55ef\u55da\u55e1\u55c5\u55c6\u55e5\u55c9\u5712\u5713\u585e\u5851\u5858\u5857\u585a\u5854\u586b\u584c\u586d\u584a\u5862\u5852\u584b\u5967\u5ac1\u5ac9\u5acc\u5abe\u5abd\u5abc"],["b740","\u5ab3\u5ac2\u5ab2\u5d69\u5d6f\u5e4c\u5e79\u5ec9\u5ec8\u5f12\u5f59\u5fac\u5fae\u611a\u610f\u6148\u611f\u60f3\u611b\u60f9\u6101\u6108\u614e\u614c\u6144\u614d\u613e\u6134\u6127\u610d\u6106\u6137\u6221\u6222\u6413\u643e\u641e\u642a\u642d\u643d\u642c\u640f\u641c\u6414\u640d\u6436\u6416\u6417\u6406\u656c\u659f\u65b0\u6697\u6689\u6687\u6688\u6696\u6684\u6698\u668d\u6703\u6994\u696d"],["b7a1","\u695a\u6977\u6960\u6954\u6975\u6930\u6982\u694a\u6968\u696b\u695e\u6953\u6979\u6986\u695d\u6963\u695b\u6b47\u6b72\u6bc0\u6bbf\u6bd3\u6bfd\u6ea2\u6eaf\u6ed3\u6eb6\u6ec2\u6e90\u6e9d\u6ec7\u6ec5\u6ea5\u6e98\u6ebc\u6eba\u6eab\u6ed1\u6e96\u6e9c\u6ec4\u6ed4\u6eaa\u6ea7\u6eb4\u714e\u7159\u7169\u7164\u7149\u7167\u715c\u716c\u7166\u714c\u7165\u715e\u7146\u7168\u7156\u723a\u7252\u7337\u7345\u733f\u733e\u746f\u745a\u7455\u745f\u745e\u7441\u743f\u7459\u745b\u745c\u7576\u7578\u7600\u75f0\u7601\u75f2\u75f1\u75fa\u75ff\u75f4\u75f3\u76de\u76df\u775b\u776b\u7766\u775e\u7763"],["b840","\u7779\u776a\u776c\u775c\u7765\u7768\u7762\u77ee\u788e\u78b0\u7897\u7898\u788c\u7889\u787c\u7891\u7893\u787f\u797a\u797f\u7981\u842c\u79bd\u7a1c\u7a1a\u7a20\u7a14\u7a1f\u7a1e\u7a9f\u7aa0\u7b77\u7bc0\u7b60\u7b6e\u7b67\u7cb1\u7cb3\u7cb5\u7d93\u7d79\u7d91\u7d81\u7d8f\u7d5b\u7f6e\u7f69\u7f6a\u7f72\u7fa9\u7fa8\u7fa4\u8056\u8058\u8086\u8084\u8171\u8170\u8178\u8165\u816e\u8173\u816b"],["b8a1","\u8179\u817a\u8166\u8205\u8247\u8482\u8477\u843d\u8431\u8475\u8466\u846b\u8449\u846c\u845b\u843c\u8435\u8461\u8463\u8469\u846d\u8446\u865e\u865c\u865f\u86f9\u8713\u8708\u8707\u8700\u86fe\u86fb\u8702\u8703\u8706\u870a\u8859\u88df\u88d4\u88d9\u88dc\u88d8\u88dd\u88e1\u88ca\u88d5\u88d2\u899c\u89e3\u8a6b\u8a72\u8a73\u8a66\u8a69\u8a70\u8a87\u8a7c\u8a63\u8aa0\u8a71\u8a85\u8a6d\u8a62\u8a6e\u8a6c\u8a79\u8a7b\u8a3e\u8a68\u8c62\u8c8a\u8c89\u8cca\u8cc7\u8cc8\u8cc4\u8cb2\u8cc3\u8cc2\u8cc5\u8de1\u8ddf\u8de8\u8def\u8df3\u8dfa\u8dea\u8de4\u8de6\u8eb2\u8f03\u8f09\u8efe\u8f0a"],["b940","\u8f9f\u8fb2\u904b\u904a\u9053\u9042\u9054\u903c\u9055\u9050\u9047\u904f\u904e\u904d\u9051\u903e\u9041\u9112\u9117\u916c\u916a\u9169\u91c9\u9237\u9257\u9238\u923d\u9240\u923e\u925b\u924b\u9264\u9251\u9234\u9249\u924d\u9245\u9239\u923f\u925a\u9598\u9698\u9694\u9695\u96cd\u96cb\u96c9\u96ca\u96f7\u96fb\u96f9\u96f6\u9756\u9774\u9776\u9810\u9811\u9813\u980a\u9812\u980c\u98fc\u98f4"],["b9a1","\u98fd\u98fe\u99b3\u99b1\u99b4\u9ae1\u9ce9\u9e82\u9f0e\u9f13\u9f20\u50e7\u50ee\u50e5\u50d6\u50ed\u50da\u50d5\u50cf\u50d1\u50f1\u50ce\u50e9\u5162\u51f3\u5283\u5282\u5331\u53ad\u55fe\u5600\u561b\u5617\u55fd\u5614\u5606\u5609\u560d\u560e\u55f7\u5616\u561f\u5608\u5610\u55f6\u5718\u5716\u5875\u587e\u5883\u5893\u588a\u5879\u5885\u587d\u58fd\u5925\u5922\u5924\u596a\u5969\u5ae1\u5ae6\u5ae9\u5ad7\u5ad6\u5ad8\u5ae3\u5b75\u5bde\u5be7\u5be1\u5be5\u5be6\u5be8\u5be2\u5be4\u5bdf\u5c0d\u5c62\u5d84\u5d87\u5e5b\u5e63\u5e55\u5e57\u5e54\u5ed3\u5ed6\u5f0a\u5f46\u5f70\u5fb9\u6147"],["ba40","\u613f\u614b\u6177\u6162\u6163\u615f\u615a\u6158\u6175\u622a\u6487\u6458\u6454\u64a4\u6478\u645f\u647a\u6451\u6467\u6434\u646d\u647b\u6572\u65a1\u65d7\u65d6\u66a2\u66a8\u669d\u699c\u69a8\u6995\u69c1\u69ae\u69d3\u69cb\u699b\u69b7\u69bb\u69ab\u69b4\u69d0\u69cd\u69ad\u69cc\u69a6\u69c3\u69a3\u6b49\u6b4c\u6c33\u6f33\u6f14\u6efe\u6f13\u6ef4\u6f29\u6f3e\u6f20\u6f2c\u6f0f\u6f02\u6f22"],["baa1","\u6eff\u6eef\u6f06\u6f31\u6f38\u6f32\u6f23\u6f15\u6f2b\u6f2f\u6f88\u6f2a\u6eec\u6f01\u6ef2\u6ecc\u6ef7\u7194\u7199\u717d\u718a\u7184\u7192\u723e\u7292\u7296\u7344\u7350\u7464\u7463\u746a\u7470\u746d\u7504\u7591\u7627\u760d\u760b\u7609\u7613\u76e1\u76e3\u7784\u777d\u777f\u7761\u78c1\u789f\u78a7\u78b3\u78a9\u78a3\u798e\u798f\u798d\u7a2e\u7a31\u7aaa\u7aa9\u7aed\u7aef\u7ba1\u7b95\u7b8b\u7b75\u7b97\u7b9d\u7b94\u7b8f\u7bb8\u7b87\u7b84\u7cb9\u7cbd\u7cbe\u7dbb\u7db0\u7d9c\u7dbd\u7dbe\u7da0\u7dca\u7db4\u7db2\u7db1\u7dba\u7da2\u7dbf\u7db5\u7db8\u7dad\u7dd2\u7dc7\u7dac"],["bb40","\u7f70\u7fe0\u7fe1\u7fdf\u805e\u805a\u8087\u8150\u8180\u818f\u8188\u818a\u817f\u8182\u81e7\u81fa\u8207\u8214\u821e\u824b\u84c9\u84bf\u84c6\u84c4\u8499\u849e\u84b2\u849c\u84cb\u84b8\u84c0\u84d3\u8490\u84bc\u84d1\u84ca\u873f\u871c\u873b\u8722\u8725\u8734\u8718\u8755\u8737\u8729\u88f3\u8902\u88f4\u88f9\u88f8\u88fd\u88e8\u891a\u88ef\u8aa6\u8a8c\u8a9e\u8aa3\u8a8d\u8aa1\u8a93\u8aa4"],["bba1","\u8aaa\u8aa5\u8aa8\u8a98\u8a91\u8a9a\u8aa7\u8c6a\u8c8d\u8c8c\u8cd3\u8cd1\u8cd2\u8d6b\u8d99\u8d95\u8dfc\u8f14\u8f12\u8f15\u8f13\u8fa3\u9060\u9058\u905c\u9063\u9059\u905e\u9062\u905d\u905b\u9119\u9118\u911e\u9175\u9178\u9177\u9174\u9278\u9280\u9285\u9298\u9296\u927b\u9293\u929c\u92a8\u927c\u9291\u95a1\u95a8\u95a9\u95a3\u95a5\u95a4\u9699\u969c\u969b\u96cc\u96d2\u9700\u977c\u9785\u97f6\u9817\u9818\u98af\u98b1\u9903\u9905\u990c\u9909\u99c1\u9aaf\u9ab0\u9ae6\u9b41\u9b42\u9cf4\u9cf6\u9cf3\u9ebc\u9f3b\u9f4a\u5104\u5100\u50fb\u50f5\u50f9\u5102\u5108\u5109\u5105\u51dc"],["bc40","\u5287\u5288\u5289\u528d\u528a\u52f0\u53b2\u562e\u563b\u5639\u5632\u563f\u5634\u5629\u5653\u564e\u5657\u5674\u5636\u562f\u5630\u5880\u589f\u589e\u58b3\u589c\u58ae\u58a9\u58a6\u596d\u5b09\u5afb\u5b0b\u5af5\u5b0c\u5b08\u5bee\u5bec\u5be9\u5beb\u5c64\u5c65\u5d9d\u5d94\u5e62\u5e5f\u5e61\u5ee2\u5eda\u5edf\u5edd\u5ee3\u5ee0\u5f48\u5f71\u5fb7\u5fb5\u6176\u6167\u616e\u615d\u6155\u6182"],["bca1","\u617c\u6170\u616b\u617e\u61a7\u6190\u61ab\u618e\u61ac\u619a\u61a4\u6194\u61ae\u622e\u6469\u646f\u6479\u649e\u64b2\u6488\u6490\u64b0\u64a5\u6493\u6495\u64a9\u6492\u64ae\u64ad\u64ab\u649a\u64ac\u6499\u64a2\u64b3\u6575\u6577\u6578\u66ae\u66ab\u66b4\u66b1\u6a23\u6a1f\u69e8\u6a01\u6a1e\u6a19\u69fd\u6a21\u6a13\u6a0a\u69f3\u6a02\u6a05\u69ed\u6a11\u6b50\u6b4e\u6ba4\u6bc5\u6bc6\u6f3f\u6f7c\u6f84\u6f51\u6f66\u6f54\u6f86\u6f6d\u6f5b\u6f78\u6f6e\u6f8e\u6f7a\u6f70\u6f64\u6f97\u6f58\u6ed5\u6f6f\u6f60\u6f5f\u719f\u71ac\u71b1\u71a8\u7256\u729b\u734e\u7357\u7469\u748b\u7483"],["bd40","\u747e\u7480\u757f\u7620\u7629\u761f\u7624\u7626\u7621\u7622\u769a\u76ba\u76e4\u778e\u7787\u778c\u7791\u778b\u78cb\u78c5\u78ba\u78ca\u78be\u78d5\u78bc\u78d0\u7a3f\u7a3c\u7a40\u7a3d\u7a37\u7a3b\u7aaf\u7aae\u7bad\u7bb1\u7bc4\u7bb4\u7bc6\u7bc7\u7bc1\u7ba0\u7bcc\u7cca\u7de0\u7df4\u7def\u7dfb\u7dd8\u7dec\u7ddd\u7de8\u7de3\u7dda\u7dde\u7de9\u7d9e\u7dd9\u7df2\u7df9\u7f75\u7f77\u7faf"],["bda1","\u7fe9\u8026\u819b\u819c\u819d\u81a0\u819a\u8198\u8517\u853d\u851a\u84ee\u852c\u852d\u8513\u8511\u8523\u8521\u8514\u84ec\u8525\u84ff\u8506\u8782\u8774\u8776\u8760\u8766\u8778\u8768\u8759\u8757\u874c\u8753\u885b\u885d\u8910\u8907\u8912\u8913\u8915\u890a\u8abc\u8ad2\u8ac7\u8ac4\u8a95\u8acb\u8af8\u8ab2\u8ac9\u8ac2\u8abf\u8ab0\u8ad6\u8acd\u8ab6\u8ab9\u8adb\u8c4c\u8c4e\u8c6c\u8ce0\u8cde\u8ce6\u8ce4\u8cec\u8ced\u8ce2\u8ce3\u8cdc\u8cea\u8ce1\u8d6d\u8d9f\u8da3\u8e2b\u8e10\u8e1d\u8e22\u8e0f\u8e29\u8e1f\u8e21\u8e1e\u8eba\u8f1d\u8f1b\u8f1f\u8f29\u8f26\u8f2a\u8f1c\u8f1e"],["be40","\u8f25\u9069\u906e\u9068\u906d\u9077\u9130\u912d\u9127\u9131\u9187\u9189\u918b\u9183\u92c5\u92bb\u92b7\u92ea\u92ac\u92e4\u92c1\u92b3\u92bc\u92d2\u92c7\u92f0\u92b2\u95ad\u95b1\u9704\u9706\u9707\u9709\u9760\u978d\u978b\u978f\u9821\u982b\u981c\u98b3\u990a\u9913\u9912\u9918\u99dd\u99d0\u99df\u99db\u99d1\u99d5\u99d2\u99d9\u9ab7\u9aee\u9aef\u9b27\u9b45\u9b44\u9b77\u9b6f\u9d06\u9d09"],["bea1","\u9d03\u9ea9\u9ebe\u9ece\u58a8\u9f52\u5112\u5118\u5114\u5110\u5115\u5180\u51aa\u51dd\u5291\u5293\u52f3\u5659\u566b\u5679\u5669\u5664\u5678\u566a\u5668\u5665\u5671\u566f\u566c\u5662\u5676\u58c1\u58be\u58c7\u58c5\u596e\u5b1d\u5b34\u5b78\u5bf0\u5c0e\u5f4a\u61b2\u6191\u61a9\u618a\u61cd\u61b6\u61be\u61ca\u61c8\u6230\u64c5\u64c1\u64cb\u64bb\u64bc\u64da\u64c4\u64c7\u64c2\u64cd\u64bf\u64d2\u64d4\u64be\u6574\u66c6\u66c9\u66b9\u66c4\u66c7\u66b8\u6a3d\u6a38\u6a3a\u6a59\u6a6b\u6a58\u6a39\u6a44\u6a62\u6a61\u6a4b\u6a47\u6a35\u6a5f\u6a48\u6b59\u6b77\u6c05\u6fc2\u6fb1\u6fa1"],["bf40","\u6fc3\u6fa4\u6fc1\u6fa7\u6fb3\u6fc0\u6fb9\u6fb6\u6fa6\u6fa0\u6fb4\u71be\u71c9\u71d0\u71d2\u71c8\u71d5\u71b9\u71ce\u71d9\u71dc\u71c3\u71c4\u7368\u749c\u74a3\u7498\u749f\u749e\u74e2\u750c\u750d\u7634\u7638\u763a\u76e7\u76e5\u77a0\u779e\u779f\u77a5\u78e8\u78da\u78ec\u78e7\u79a6\u7a4d\u7a4e\u7a46\u7a4c\u7a4b\u7aba\u7bd9\u7c11\u7bc9\u7be4\u7bdb\u7be1\u7be9\u7be6\u7cd5\u7cd6\u7e0a"],["bfa1","\u7e11\u7e08\u7e1b\u7e23\u7e1e\u7e1d\u7e09\u7e10\u7f79\u7fb2\u7ff0\u7ff1\u7fee\u8028\u81b3\u81a9\u81a8\u81fb\u8208\u8258\u8259\u854a\u8559\u8548\u8568\u8569\u8543\u8549\u856d\u856a\u855e\u8783\u879f\u879e\u87a2\u878d\u8861\u892a\u8932\u8925\u892b\u8921\u89aa\u89a6\u8ae6\u8afa\u8aeb\u8af1\u8b00\u8adc\u8ae7\u8aee\u8afe\u8b01\u8b02\u8af7\u8aed\u8af3\u8af6\u8afc\u8c6b\u8c6d\u8c93\u8cf4\u8e44\u8e31\u8e34\u8e42\u8e39\u8e35\u8f3b\u8f2f\u8f38\u8f33\u8fa8\u8fa6\u9075\u9074\u9078\u9072\u907c\u907a\u9134\u9192\u9320\u9336\u92f8\u9333\u932f\u9322\u92fc\u932b\u9304\u931a"],["c040","\u9310\u9326\u9321\u9315\u932e\u9319\u95bb\u96a7\u96a8\u96aa\u96d5\u970e\u9711\u9716\u970d\u9713\u970f\u975b\u975c\u9766\u9798\u9830\u9838\u983b\u9837\u982d\u9839\u9824\u9910\u9928\u991e\u991b\u9921\u991a\u99ed\u99e2\u99f1\u9ab8\u9abc\u9afb\u9aed\u9b28\u9b91\u9d15\u9d23\u9d26\u9d28\u9d12\u9d1b\u9ed8\u9ed4\u9f8d\u9f9c\u512a\u511f\u5121\u5132\u52f5\u568e\u5680\u5690\u5685\u5687"],["c0a1","\u568f\u58d5\u58d3\u58d1\u58ce\u5b30\u5b2a\u5b24\u5b7a\u5c37\u5c68\u5dbc\u5dba\u5dbd\u5db8\u5e6b\u5f4c\u5fbd\u61c9\u61c2\u61c7\u61e6\u61cb\u6232\u6234\u64ce\u64ca\u64d8\u64e0\u64f0\u64e6\u64ec\u64f1\u64e2\u64ed\u6582\u6583\u66d9\u66d6\u6a80\u6a94\u6a84\u6aa2\u6a9c\u6adb\u6aa3\u6a7e\u6a97\u6a90\u6aa0\u6b5c\u6bae\u6bda\u6c08\u6fd8\u6ff1\u6fdf\u6fe0\u6fdb\u6fe4\u6feb\u6fef\u6f80\u6fec\u6fe1\u6fe9\u6fd5\u6fee\u6ff0\u71e7\u71df\u71ee\u71e6\u71e5\u71ed\u71ec\u71f4\u71e0\u7235\u7246\u7370\u7372\u74a9\u74b0\u74a6\u74a8\u7646\u7642\u764c\u76ea\u77b3\u77aa\u77b0\u77ac"],["c140","\u77a7\u77ad\u77ef\u78f7\u78fa\u78f4\u78ef\u7901\u79a7\u79aa\u7a57\u7abf\u7c07\u7c0d\u7bfe\u7bf7\u7c0c\u7be0\u7ce0\u7cdc\u7cde\u7ce2\u7cdf\u7cd9\u7cdd\u7e2e\u7e3e\u7e46\u7e37\u7e32\u7e43\u7e2b\u7e3d\u7e31\u7e45\u7e41\u7e34\u7e39\u7e48\u7e35\u7e3f\u7e2f\u7f44\u7ff3\u7ffc\u8071\u8072\u8070\u806f\u8073\u81c6\u81c3\u81ba\u81c2\u81c0\u81bf\u81bd\u81c9\u81be\u81e8\u8209\u8271\u85aa"],["c1a1","\u8584\u857e\u859c\u8591\u8594\u85af\u859b\u8587\u85a8\u858a\u8667\u87c0\u87d1\u87b3\u87d2\u87c6\u87ab\u87bb\u87ba\u87c8\u87cb\u893b\u8936\u8944\u8938\u893d\u89ac\u8b0e\u8b17\u8b19\u8b1b\u8b0a\u8b20\u8b1d\u8b04\u8b10\u8c41\u8c3f\u8c73\u8cfa\u8cfd\u8cfc\u8cf8\u8cfb\u8da8\u8e49\u8e4b\u8e48\u8e4a\u8f44\u8f3e\u8f42\u8f45\u8f3f\u907f\u907d\u9084\u9081\u9082\u9080\u9139\u91a3\u919e\u919c\u934d\u9382\u9328\u9375\u934a\u9365\u934b\u9318\u937e\u936c\u935b\u9370\u935a\u9354\u95ca\u95cb\u95cc\u95c8\u95c6\u96b1\u96b8\u96d6\u971c\u971e\u97a0\u97d3\u9846\u98b6\u9935\u9a01"],["c240","\u99ff\u9bae\u9bab\u9baa\u9bad\u9d3b\u9d3f\u9e8b\u9ecf\u9ede\u9edc\u9edd\u9edb\u9f3e\u9f4b\u53e2\u5695\u56ae\u58d9\u58d8\u5b38\u5f5d\u61e3\u6233\u64f4\u64f2\u64fe\u6506\u64fa\u64fb\u64f7\u65b7\u66dc\u6726\u6ab3\u6aac\u6ac3\u6abb\u6ab8\u6ac2\u6aae\u6aaf\u6b5f\u6b78\u6baf\u7009\u700b\u6ffe\u7006\u6ffa\u7011\u700f\u71fb\u71fc\u71fe\u71f8\u7377\u7375\u74a7\u74bf\u7515\u7656\u7658"],["c2a1","\u7652\u77bd\u77bf\u77bb\u77bc\u790e\u79ae\u7a61\u7a62\u7a60\u7ac4\u7ac5\u7c2b\u7c27\u7c2a\u7c1e\u7c23\u7c21\u7ce7\u7e54\u7e55\u7e5e\u7e5a\u7e61\u7e52\u7e59\u7f48\u7ff9\u7ffb\u8077\u8076\u81cd\u81cf\u820a\u85cf\u85a9\u85cd\u85d0\u85c9\u85b0\u85ba\u85b9\u85a6\u87ef\u87ec\u87f2\u87e0\u8986\u89b2\u89f4\u8b28\u8b39\u8b2c\u8b2b\u8c50\u8d05\u8e59\u8e63\u8e66\u8e64\u8e5f\u8e55\u8ec0\u8f49\u8f4d\u9087\u9083\u9088\u91ab\u91ac\u91d0\u9394\u938a\u9396\u93a2\u93b3\u93ae\u93ac\u93b0\u9398\u939a\u9397\u95d4\u95d6\u95d0\u95d5\u96e2\u96dc\u96d9\u96db\u96de\u9724\u97a3\u97a6"],["c340","\u97ad\u97f9\u984d\u984f\u984c\u984e\u9853\u98ba\u993e\u993f\u993d\u992e\u99a5\u9a0e\u9ac1\u9b03\u9b06\u9b4f\u9b4e\u9b4d\u9bca\u9bc9\u9bfd\u9bc8\u9bc0\u9d51\u9d5d\u9d60\u9ee0\u9f15\u9f2c\u5133\u56a5\u58de\u58df\u58e2\u5bf5\u9f90\u5eec\u61f2\u61f7\u61f6\u61f5\u6500\u650f\u66e0\u66dd\u6ae5\u6add\u6ada\u6ad3\u701b\u701f\u7028\u701a\u701d\u7015\u7018\u7206\u720d\u7258\u72a2\u7378"],["c3a1","\u737a\u74bd\u74ca\u74e3\u7587\u7586\u765f\u7661\u77c7\u7919\u79b1\u7a6b\u7a69\u7c3e\u7c3f\u7c38\u7c3d\u7c37\u7c40\u7e6b\u7e6d\u7e79\u7e69\u7e6a\u7f85\u7e73\u7fb6\u7fb9\u7fb8\u81d8\u85e9\u85dd\u85ea\u85d5\u85e4\u85e5\u85f7\u87fb\u8805\u880d\u87f9\u87fe\u8960\u895f\u8956\u895e\u8b41\u8b5c\u8b58\u8b49\u8b5a\u8b4e\u8b4f\u8b46\u8b59\u8d08\u8d0a\u8e7c\u8e72\u8e87\u8e76\u8e6c\u8e7a\u8e74\u8f54\u8f4e\u8fad\u908a\u908b\u91b1\u91ae\u93e1\u93d1\u93df\u93c3\u93c8\u93dc\u93dd\u93d6\u93e2\u93cd\u93d8\u93e4\u93d7\u93e8\u95dc\u96b4\u96e3\u972a\u9727\u9761\u97dc\u97fb\u985e"],["c440","\u9858\u985b\u98bc\u9945\u9949\u9a16\u9a19\u9b0d\u9be8\u9be7\u9bd6\u9bdb\u9d89\u9d61\u9d72\u9d6a\u9d6c\u9e92\u9e97\u9e93\u9eb4\u52f8\u56a8\u56b7\u56b6\u56b4\u56bc\u58e4\u5b40\u5b43\u5b7d\u5bf6\u5dc9\u61f8\u61fa\u6518\u6514\u6519\u66e6\u6727\u6aec\u703e\u7030\u7032\u7210\u737b\u74cf\u7662\u7665\u7926\u792a\u792c\u792b\u7ac7\u7af6\u7c4c\u7c43\u7c4d\u7cef\u7cf0\u8fae\u7e7d\u7e7c"],["c4a1","\u7e82\u7f4c\u8000\u81da\u8266\u85fb\u85f9\u8611\u85fa\u8606\u860b\u8607\u860a\u8814\u8815\u8964\u89ba\u89f8\u8b70\u8b6c\u8b66\u8b6f\u8b5f\u8b6b\u8d0f\u8d0d\u8e89\u8e81\u8e85\u8e82\u91b4\u91cb\u9418\u9403\u93fd\u95e1\u9730\u98c4\u9952\u9951\u99a8\u9a2b\u9a30\u9a37\u9a35\u9c13\u9c0d\u9e79\u9eb5\u9ee8\u9f2f\u9f5f\u9f63\u9f61\u5137\u5138\u56c1\u56c0\u56c2\u5914\u5c6c\u5dcd\u61fc\u61fe\u651d\u651c\u6595\u66e9\u6afb\u6b04\u6afa\u6bb2\u704c\u721b\u72a7\u74d6\u74d4\u7669\u77d3\u7c50\u7e8f\u7e8c\u7fbc\u8617\u862d\u861a\u8823\u8822\u8821\u881f\u896a\u896c\u89bd\u8b74"],["c540","\u8b77\u8b7d\u8d13\u8e8a\u8e8d\u8e8b\u8f5f\u8faf\u91ba\u942e\u9433\u9435\u943a\u9438\u9432\u942b\u95e2\u9738\u9739\u9732\u97ff\u9867\u9865\u9957\u9a45\u9a43\u9a40\u9a3e\u9acf\u9b54\u9b51\u9c2d\u9c25\u9daf\u9db4\u9dc2\u9db8\u9e9d\u9eef\u9f19\u9f5c\u9f66\u9f67\u513c\u513b\u56c8\u56ca\u56c9\u5b7f\u5dd4\u5dd2\u5f4e\u61ff\u6524\u6b0a\u6b61\u7051\u7058\u7380\u74e4\u758a\u766e\u766c"],["c5a1","\u79b3\u7c60\u7c5f\u807e\u807d\u81df\u8972\u896f\u89fc\u8b80\u8d16\u8d17\u8e91\u8e93\u8f61\u9148\u9444\u9451\u9452\u973d\u973e\u97c3\u97c1\u986b\u9955\u9a55\u9a4d\u9ad2\u9b1a\u9c49\u9c31\u9c3e\u9c3b\u9dd3\u9dd7\u9f34\u9f6c\u9f6a\u9f94\u56cc\u5dd6\u6200\u6523\u652b\u652a\u66ec\u6b10\u74da\u7aca\u7c64\u7c63\u7c65\u7e93\u7e96\u7e94\u81e2\u8638\u863f\u8831\u8b8a\u9090\u908f\u9463\u9460\u9464\u9768\u986f\u995c\u9a5a\u9a5b\u9a57\u9ad3\u9ad4\u9ad1\u9c54\u9c57\u9c56\u9de5\u9e9f\u9ef4\u56d1\u58e9\u652c\u705e\u7671\u7672\u77d7\u7f50\u7f88\u8836\u8839\u8862\u8b93\u8b92"],["c640","\u8b96\u8277\u8d1b\u91c0\u946a\u9742\u9748\u9744\u97c6\u9870\u9a5f\u9b22\u9b58\u9c5f\u9df9\u9dfa\u9e7c\u9e7d\u9f07\u9f77\u9f72\u5ef3\u6b16\u7063\u7c6c\u7c6e\u883b\u89c0\u8ea1\u91c1\u9472\u9470\u9871\u995e\u9ad6\u9b23\u9ecc\u7064\u77da\u8b9a\u9477\u97c9\u9a62\u9a65\u7e9c\u8b9c\u8eaa\u91c5\u947d\u947e\u947c\u9c77\u9c78\u9ef7\u8c54\u947f\u9e1a\u7228\u9a6a\u9b31\u9e1b\u9e1e\u7c72"],["c940","\u4e42\u4e5c\u51f5\u531a\u5382\u4e07\u4e0c\u4e47\u4e8d\u56d7\ufa0c\u5c6e\u5f73\u4e0f\u5187\u4e0e\u4e2e\u4e93\u4ec2\u4ec9\u4ec8\u5198\u52fc\u536c\u53b9\u5720\u5903\u592c\u5c10\u5dff\u65e1\u6bb3\u6bcc\u6c14\u723f\u4e31\u4e3c\u4ee8\u4edc\u4ee9\u4ee1\u4edd\u4eda\u520c\u531c\u534c\u5722\u5723\u5917\u592f\u5b81\u5b84\u5c12\u5c3b\u5c74\u5c73\u5e04\u5e80\u5e82\u5fc9\u6209\u6250\u6c15"],["c9a1","\u6c36\u6c43\u6c3f\u6c3b\u72ae\u72b0\u738a\u79b8\u808a\u961e\u4f0e\u4f18\u4f2c\u4ef5\u4f14\u4ef1\u4f00\u4ef7\u4f08\u4f1d\u4f02\u4f05\u4f22\u4f13\u4f04\u4ef4\u4f12\u51b1\u5213\u5209\u5210\u52a6\u5322\u531f\u534d\u538a\u5407\u56e1\u56df\u572e\u572a\u5734\u593c\u5980\u597c\u5985\u597b\u597e\u5977\u597f\u5b56\u5c15\u5c25\u5c7c\u5c7a\u5c7b\u5c7e\u5ddf\u5e75\u5e84\u5f02\u5f1a\u5f74\u5fd5\u5fd4\u5fcf\u625c\u625e\u6264\u6261\u6266\u6262\u6259\u6260\u625a\u6265\u65ef\u65ee\u673e\u6739\u6738\u673b\u673a\u673f\u673c\u6733\u6c18\u6c46\u6c52\u6c5c\u6c4f\u6c4a\u6c54\u6c4b"],["ca40","\u6c4c\u7071\u725e\u72b4\u72b5\u738e\u752a\u767f\u7a75\u7f51\u8278\u827c\u8280\u827d\u827f\u864d\u897e\u9099\u9097\u9098\u909b\u9094\u9622\u9624\u9620\u9623\u4f56\u4f3b\u4f62\u4f49\u4f53\u4f64\u4f3e\u4f67\u4f52\u4f5f\u4f41\u4f58\u4f2d\u4f33\u4f3f\u4f61\u518f\u51b9\u521c\u521e\u5221\u52ad\u52ae\u5309\u5363\u5372\u538e\u538f\u5430\u5437\u542a\u5454\u5445\u5419\u541c\u5425\u5418"],["caa1","\u543d\u544f\u5441\u5428\u5424\u5447\u56ee\u56e7\u56e5\u5741\u5745\u574c\u5749\u574b\u5752\u5906\u5940\u59a6\u5998\u59a0\u5997\u598e\u59a2\u5990\u598f\u59a7\u59a1\u5b8e\u5b92\u5c28\u5c2a\u5c8d\u5c8f\u5c88\u5c8b\u5c89\u5c92\u5c8a\u5c86\u5c93\u5c95\u5de0\u5e0a\u5e0e\u5e8b\u5e89\u5e8c\u5e88\u5e8d\u5f05\u5f1d\u5f78\u5f76\u5fd2\u5fd1\u5fd0\u5fed\u5fe8\u5fee\u5ff3\u5fe1\u5fe4\u5fe3\u5ffa\u5fef\u5ff7\u5ffb\u6000\u5ff4\u623a\u6283\u628c\u628e\u628f\u6294\u6287\u6271\u627b\u627a\u6270\u6281\u6288\u6277\u627d\u6272\u6274\u6537\u65f0\u65f4\u65f3\u65f2\u65f5\u6745\u6747"],["cb40","\u6759\u6755\u674c\u6748\u675d\u674d\u675a\u674b\u6bd0\u6c19\u6c1a\u6c78\u6c67\u6c6b\u6c84\u6c8b\u6c8f\u6c71\u6c6f\u6c69\u6c9a\u6c6d\u6c87\u6c95\u6c9c\u6c66\u6c73\u6c65\u6c7b\u6c8e\u7074\u707a\u7263\u72bf\u72bd\u72c3\u72c6\u72c1\u72ba\u72c5\u7395\u7397\u7393\u7394\u7392\u753a\u7539\u7594\u7595\u7681\u793d\u8034\u8095\u8099\u8090\u8092\u809c\u8290\u828f\u8285\u828e\u8291\u8293"],["cba1","\u828a\u8283\u8284\u8c78\u8fc9\u8fbf\u909f\u90a1\u90a5\u909e\u90a7\u90a0\u9630\u9628\u962f\u962d\u4e33\u4f98\u4f7c\u4f85\u4f7d\u4f80\u4f87\u4f76\u4f74\u4f89\u4f84\u4f77\u4f4c\u4f97\u4f6a\u4f9a\u4f79\u4f81\u4f78\u4f90\u4f9c\u4f94\u4f9e\u4f92\u4f82\u4f95\u4f6b\u4f6e\u519e\u51bc\u51be\u5235\u5232\u5233\u5246\u5231\u52bc\u530a\u530b\u533c\u5392\u5394\u5487\u547f\u5481\u5491\u5482\u5488\u546b\u547a\u547e\u5465\u546c\u5474\u5466\u548d\u546f\u5461\u5460\u5498\u5463\u5467\u5464\u56f7\u56f9\u576f\u5772\u576d\u576b\u5771\u5770\u5776\u5780\u5775\u577b\u5773\u5774\u5762"],["cc40","\u5768\u577d\u590c\u5945\u59b5\u59ba\u59cf\u59ce\u59b2\u59cc\u59c1\u59b6\u59bc\u59c3\u59d6\u59b1\u59bd\u59c0\u59c8\u59b4\u59c7\u5b62\u5b65\u5b93\u5b95\u5c44\u5c47\u5cae\u5ca4\u5ca0\u5cb5\u5caf\u5ca8\u5cac\u5c9f\u5ca3\u5cad\u5ca2\u5caa\u5ca7\u5c9d\u5ca5\u5cb6\u5cb0\u5ca6\u5e17\u5e14\u5e19\u5f28\u5f22\u5f23\u5f24\u5f54\u5f82\u5f7e\u5f7d\u5fde\u5fe5\u602d\u6026\u6019\u6032\u600b"],["cca1","\u6034\u600a\u6017\u6033\u601a\u601e\u602c\u6022\u600d\u6010\u602e\u6013\u6011\u600c\u6009\u601c\u6214\u623d\u62ad\u62b4\u62d1\u62be\u62aa\u62b6\u62ca\u62ae\u62b3\u62af\u62bb\u62a9\u62b0\u62b8\u653d\u65a8\u65bb\u6609\u65fc\u6604\u6612\u6608\u65fb\u6603\u660b\u660d\u6605\u65fd\u6611\u6610\u66f6\u670a\u6785\u676c\u678e\u6792\u6776\u677b\u6798\u6786\u6784\u6774\u678d\u678c\u677a\u679f\u6791\u6799\u6783\u677d\u6781\u6778\u6779\u6794\u6b25\u6b80\u6b7e\u6bde\u6c1d\u6c93\u6cec\u6ceb\u6cee\u6cd9\u6cb6\u6cd4\u6cad\u6ce7\u6cb7\u6cd0\u6cc2\u6cba\u6cc3\u6cc6\u6ced\u6cf2"],["cd40","\u6cd2\u6cdd\u6cb4\u6c8a\u6c9d\u6c80\u6cde\u6cc0\u6d30\u6ccd\u6cc7\u6cb0\u6cf9\u6ccf\u6ce9\u6cd1\u7094\u7098\u7085\u7093\u7086\u7084\u7091\u7096\u7082\u709a\u7083\u726a\u72d6\u72cb\u72d8\u72c9\u72dc\u72d2\u72d4\u72da\u72cc\u72d1\u73a4\u73a1\u73ad\u73a6\u73a2\u73a0\u73ac\u739d\u74dd\u74e8\u753f\u7540\u753e\u758c\u7598\u76af\u76f3\u76f1\u76f0\u76f5\u77f8\u77fc\u77f9\u77fb\u77fa"],["cda1","\u77f7\u7942\u793f\u79c5\u7a78\u7a7b\u7afb\u7c75\u7cfd\u8035\u808f\u80ae\u80a3\u80b8\u80b5\u80ad\u8220\u82a0\u82c0\u82ab\u829a\u8298\u829b\u82b5\u82a7\u82ae\u82bc\u829e\u82ba\u82b4\u82a8\u82a1\u82a9\u82c2\u82a4\u82c3\u82b6\u82a2\u8670\u866f\u866d\u866e\u8c56\u8fd2\u8fcb\u8fd3\u8fcd\u8fd6\u8fd5\u8fd7\u90b2\u90b4\u90af\u90b3\u90b0\u9639\u963d\u963c\u963a\u9643\u4fcd\u4fc5\u4fd3\u4fb2\u4fc9\u4fcb\u4fc1\u4fd4\u4fdc\u4fd9\u4fbb\u4fb3\u4fdb\u4fc7\u4fd6\u4fba\u4fc0\u4fb9\u4fec\u5244\u5249\u52c0\u52c2\u533d\u537c\u5397\u5396\u5399\u5398\u54ba\u54a1\u54ad\u54a5\u54cf"],["ce40","\u54c3\u830d\u54b7\u54ae\u54d6\u54b6\u54c5\u54c6\u54a0\u5470\u54bc\u54a2\u54be\u5472\u54de\u54b0\u57b5\u579e\u579f\u57a4\u578c\u5797\u579d\u579b\u5794\u5798\u578f\u5799\u57a5\u579a\u5795\u58f4\u590d\u5953\u59e1\u59de\u59ee\u5a00\u59f1\u59dd\u59fa\u59fd\u59fc\u59f6\u59e4\u59f2\u59f7\u59db\u59e9\u59f3\u59f5\u59e0\u59fe\u59f4\u59ed\u5ba8\u5c4c\u5cd0\u5cd8\u5ccc\u5cd7\u5ccb\u5cdb"],["cea1","\u5cde\u5cda\u5cc9\u5cc7\u5cca\u5cd6\u5cd3\u5cd4\u5ccf\u5cc8\u5cc6\u5cce\u5cdf\u5cf8\u5df9\u5e21\u5e22\u5e23\u5e20\u5e24\u5eb0\u5ea4\u5ea2\u5e9b\u5ea3\u5ea5\u5f07\u5f2e\u5f56\u5f86\u6037\u6039\u6054\u6072\u605e\u6045\u6053\u6047\u6049\u605b\u604c\u6040\u6042\u605f\u6024\u6044\u6058\u6066\u606e\u6242\u6243\u62cf\u630d\u630b\u62f5\u630e\u6303\u62eb\u62f9\u630f\u630c\u62f8\u62f6\u6300\u6313\u6314\u62fa\u6315\u62fb\u62f0\u6541\u6543\u65aa\u65bf\u6636\u6621\u6632\u6635\u661c\u6626\u6622\u6633\u662b\u663a\u661d\u6634\u6639\u662e\u670f\u6710\u67c1\u67f2\u67c8\u67ba"],["cf40","\u67dc\u67bb\u67f8\u67d8\u67c0\u67b7\u67c5\u67eb\u67e4\u67df\u67b5\u67cd\u67b3\u67f7\u67f6\u67ee\u67e3\u67c2\u67b9\u67ce\u67e7\u67f0\u67b2\u67fc\u67c6\u67ed\u67cc\u67ae\u67e6\u67db\u67fa\u67c9\u67ca\u67c3\u67ea\u67cb\u6b28\u6b82\u6b84\u6bb6\u6bd6\u6bd8\u6be0\u6c20\u6c21\u6d28\u6d34\u6d2d\u6d1f\u6d3c\u6d3f\u6d12\u6d0a\u6cda\u6d33\u6d04\u6d19\u6d3a\u6d1a\u6d11\u6d00\u6d1d\u6d42"],["cfa1","\u6d01\u6d18\u6d37\u6d03\u6d0f\u6d40\u6d07\u6d20\u6d2c\u6d08\u6d22\u6d09\u6d10\u70b7\u709f\u70be\u70b1\u70b0\u70a1\u70b4\u70b5\u70a9\u7241\u7249\u724a\u726c\u7270\u7273\u726e\u72ca\u72e4\u72e8\u72eb\u72df\u72ea\u72e6\u72e3\u7385\u73cc\u73c2\u73c8\u73c5\u73b9\u73b6\u73b5\u73b4\u73eb\u73bf\u73c7\u73be\u73c3\u73c6\u73b8\u73cb\u74ec\u74ee\u752e\u7547\u7548\u75a7\u75aa\u7679\u76c4\u7708\u7703\u7704\u7705\u770a\u76f7\u76fb\u76fa\u77e7\u77e8\u7806\u7811\u7812\u7805\u7810\u780f\u780e\u7809\u7803\u7813\u794a\u794c\u794b\u7945\u7944\u79d5\u79cd\u79cf\u79d6\u79ce\u7a80"],["d040","\u7a7e\u7ad1\u7b00\u7b01\u7c7a\u7c78\u7c79\u7c7f\u7c80\u7c81\u7d03\u7d08\u7d01\u7f58\u7f91\u7f8d\u7fbe\u8007\u800e\u800f\u8014\u8037\u80d8\u80c7\u80e0\u80d1\u80c8\u80c2\u80d0\u80c5\u80e3\u80d9\u80dc\u80ca\u80d5\u80c9\u80cf\u80d7\u80e6\u80cd\u81ff\u8221\u8294\u82d9\u82fe\u82f9\u8307\u82e8\u8300\u82d5\u833a\u82eb\u82d6\u82f4\u82ec\u82e1\u82f2\u82f5\u830c\u82fb\u82f6\u82f0\u82ea"],["d0a1","\u82e4\u82e0\u82fa\u82f3\u82ed\u8677\u8674\u867c\u8673\u8841\u884e\u8867\u886a\u8869\u89d3\u8a04\u8a07\u8d72\u8fe3\u8fe1\u8fee\u8fe0\u90f1\u90bd\u90bf\u90d5\u90c5\u90be\u90c7\u90cb\u90c8\u91d4\u91d3\u9654\u964f\u9651\u9653\u964a\u964e\u501e\u5005\u5007\u5013\u5022\u5030\u501b\u4ff5\u4ff4\u5033\u5037\u502c\u4ff6\u4ff7\u5017\u501c\u5020\u5027\u5035\u502f\u5031\u500e\u515a\u5194\u5193\u51ca\u51c4\u51c5\u51c8\u51ce\u5261\u525a\u5252\u525e\u525f\u5255\u5262\u52cd\u530e\u539e\u5526\u54e2\u5517\u5512\u54e7\u54f3\u54e4\u551a\u54ff\u5504\u5508\u54eb\u5511\u5505\u54f1"],["d140","\u550a\u54fb\u54f7\u54f8\u54e0\u550e\u5503\u550b\u5701\u5702\u57cc\u5832\u57d5\u57d2\u57ba\u57c6\u57bd\u57bc\u57b8\u57b6\u57bf\u57c7\u57d0\u57b9\u57c1\u590e\u594a\u5a19\u5a16\u5a2d\u5a2e\u5a15\u5a0f\u5a17\u5a0a\u5a1e\u5a33\u5b6c\u5ba7\u5bad\u5bac\u5c03\u5c56\u5c54\u5cec\u5cff\u5cee\u5cf1\u5cf7\u5d00\u5cf9\u5e29\u5e28\u5ea8\u5eae\u5eaa\u5eac\u5f33\u5f30\u5f67\u605d\u605a\u6067"],["d1a1","\u6041\u60a2\u6088\u6080\u6092\u6081\u609d\u6083\u6095\u609b\u6097\u6087\u609c\u608e\u6219\u6246\u62f2\u6310\u6356\u632c\u6344\u6345\u6336\u6343\u63e4\u6339\u634b\u634a\u633c\u6329\u6341\u6334\u6358\u6354\u6359\u632d\u6347\u6333\u635a\u6351\u6338\u6357\u6340\u6348\u654a\u6546\u65c6\u65c3\u65c4\u65c2\u664a\u665f\u6647\u6651\u6712\u6713\u681f\u681a\u6849\u6832\u6833\u683b\u684b\u684f\u6816\u6831\u681c\u6835\u682b\u682d\u682f\u684e\u6844\u6834\u681d\u6812\u6814\u6826\u6828\u682e\u684d\u683a\u6825\u6820\u6b2c\u6b2f\u6b2d\u6b31\u6b34\u6b6d\u8082\u6b88\u6be6\u6be4"],["d240","\u6be8\u6be3\u6be2\u6be7\u6c25\u6d7a\u6d63\u6d64\u6d76\u6d0d\u6d61\u6d92\u6d58\u6d62\u6d6d\u6d6f\u6d91\u6d8d\u6def\u6d7f\u6d86\u6d5e\u6d67\u6d60\u6d97\u6d70\u6d7c\u6d5f\u6d82\u6d98\u6d2f\u6d68\u6d8b\u6d7e\u6d80\u6d84\u6d16\u6d83\u6d7b\u6d7d\u6d75\u6d90\u70dc\u70d3\u70d1\u70dd\u70cb\u7f39\u70e2\u70d7\u70d2\u70de\u70e0\u70d4\u70cd\u70c5\u70c6\u70c7\u70da\u70ce\u70e1\u7242\u7278"],["d2a1","\u7277\u7276\u7300\u72fa\u72f4\u72fe\u72f6\u72f3\u72fb\u7301\u73d3\u73d9\u73e5\u73d6\u73bc\u73e7\u73e3\u73e9\u73dc\u73d2\u73db\u73d4\u73dd\u73da\u73d7\u73d8\u73e8\u74de\u74df\u74f4\u74f5\u7521\u755b\u755f\u75b0\u75c1\u75bb\u75c4\u75c0\u75bf\u75b6\u75ba\u768a\u76c9\u771d\u771b\u7710\u7713\u7712\u7723\u7711\u7715\u7719\u771a\u7722\u7727\u7823\u782c\u7822\u7835\u782f\u7828\u782e\u782b\u7821\u7829\u7833\u782a\u7831\u7954\u795b\u794f\u795c\u7953\u7952\u7951\u79eb\u79ec\u79e0\u79ee\u79ed\u79ea\u79dc\u79de\u79dd\u7a86\u7a89\u7a85\u7a8b\u7a8c\u7a8a\u7a87\u7ad8\u7b10"],["d340","\u7b04\u7b13\u7b05\u7b0f\u7b08\u7b0a\u7b0e\u7b09\u7b12\u7c84\u7c91\u7c8a\u7c8c\u7c88\u7c8d\u7c85\u7d1e\u7d1d\u7d11\u7d0e\u7d18\u7d16\u7d13\u7d1f\u7d12\u7d0f\u7d0c\u7f5c\u7f61\u7f5e\u7f60\u7f5d\u7f5b\u7f96\u7f92\u7fc3\u7fc2\u7fc0\u8016\u803e\u8039\u80fa\u80f2\u80f9\u80f5\u8101\u80fb\u8100\u8201\u822f\u8225\u8333\u832d\u8344\u8319\u8351\u8325\u8356\u833f\u8341\u8326\u831c\u8322"],["d3a1","\u8342\u834e\u831b\u832a\u8308\u833c\u834d\u8316\u8324\u8320\u8337\u832f\u8329\u8347\u8345\u834c\u8353\u831e\u832c\u834b\u8327\u8348\u8653\u8652\u86a2\u86a8\u8696\u868d\u8691\u869e\u8687\u8697\u8686\u868b\u869a\u8685\u86a5\u8699\u86a1\u86a7\u8695\u8698\u868e\u869d\u8690\u8694\u8843\u8844\u886d\u8875\u8876\u8872\u8880\u8871\u887f\u886f\u8883\u887e\u8874\u887c\u8a12\u8c47\u8c57\u8c7b\u8ca4\u8ca3\u8d76\u8d78\u8db5\u8db7\u8db6\u8ed1\u8ed3\u8ffe\u8ff5\u9002\u8fff\u8ffb\u9004\u8ffc\u8ff6\u90d6\u90e0\u90d9\u90da\u90e3\u90df\u90e5\u90d8\u90db\u90d7\u90dc\u90e4\u9150"],["d440","\u914e\u914f\u91d5\u91e2\u91da\u965c\u965f\u96bc\u98e3\u9adf\u9b2f\u4e7f\u5070\u506a\u5061\u505e\u5060\u5053\u504b\u505d\u5072\u5048\u504d\u5041\u505b\u504a\u5062\u5015\u5045\u505f\u5069\u506b\u5063\u5064\u5046\u5040\u506e\u5073\u5057\u5051\u51d0\u526b\u526d\u526c\u526e\u52d6\u52d3\u532d\u539c\u5575\u5576\u553c\u554d\u5550\u5534\u552a\u5551\u5562\u5536\u5535\u5530\u5552\u5545"],["d4a1","\u550c\u5532\u5565\u554e\u5539\u5548\u552d\u553b\u5540\u554b\u570a\u5707\u57fb\u5814\u57e2\u57f6\u57dc\u57f4\u5800\u57ed\u57fd\u5808\u57f8\u580b\u57f3\u57cf\u5807\u57ee\u57e3\u57f2\u57e5\u57ec\u57e1\u580e\u57fc\u5810\u57e7\u5801\u580c\u57f1\u57e9\u57f0\u580d\u5804\u595c\u5a60\u5a58\u5a55\u5a67\u5a5e\u5a38\u5a35\u5a6d\u5a50\u5a5f\u5a65\u5a6c\u5a53\u5a64\u5a57\u5a43\u5a5d\u5a52\u5a44\u5a5b\u5a48\u5a8e\u5a3e\u5a4d\u5a39\u5a4c\u5a70\u5a69\u5a47\u5a51\u5a56\u5a42\u5a5c\u5b72\u5b6e\u5bc1\u5bc0\u5c59\u5d1e\u5d0b\u5d1d\u5d1a\u5d20\u5d0c\u5d28\u5d0d\u5d26\u5d25\u5d0f"],["d540","\u5d30\u5d12\u5d23\u5d1f\u5d2e\u5e3e\u5e34\u5eb1\u5eb4\u5eb9\u5eb2\u5eb3\u5f36\u5f38\u5f9b\u5f96\u5f9f\u608a\u6090\u6086\u60be\u60b0\u60ba\u60d3\u60d4\u60cf\u60e4\u60d9\u60dd\u60c8\u60b1\u60db\u60b7\u60ca\u60bf\u60c3\u60cd\u60c0\u6332\u6365\u638a\u6382\u637d\u63bd\u639e\u63ad\u639d\u6397\u63ab\u638e\u636f\u6387\u6390\u636e\u63af\u6375\u639c\u636d\u63ae\u637c\u63a4\u633b\u639f"],["d5a1","\u6378\u6385\u6381\u6391\u638d\u6370\u6553\u65cd\u6665\u6661\u665b\u6659\u665c\u6662\u6718\u6879\u6887\u6890\u689c\u686d\u686e\u68ae\u68ab\u6956\u686f\u68a3\u68ac\u68a9\u6875\u6874\u68b2\u688f\u6877\u6892\u687c\u686b\u6872\u68aa\u6880\u6871\u687e\u689b\u6896\u688b\u68a0\u6889\u68a4\u6878\u687b\u6891\u688c\u688a\u687d\u6b36\u6b33\u6b37\u6b38\u6b91\u6b8f\u6b8d\u6b8e\u6b8c\u6c2a\u6dc0\u6dab\u6db4\u6db3\u6e74\u6dac\u6de9\u6de2\u6db7\u6df6\u6dd4\u6e00\u6dc8\u6de0\u6ddf\u6dd6\u6dbe\u6de5\u6ddc\u6ddd\u6ddb\u6df4\u6dca\u6dbd\u6ded\u6df0\u6dba\u6dd5\u6dc2\u6dcf\u6dc9"],["d640","\u6dd0\u6df2\u6dd3\u6dfd\u6dd7\u6dcd\u6de3\u6dbb\u70fa\u710d\u70f7\u7117\u70f4\u710c\u70f0\u7104\u70f3\u7110\u70fc\u70ff\u7106\u7113\u7100\u70f8\u70f6\u710b\u7102\u710e\u727e\u727b\u727c\u727f\u731d\u7317\u7307\u7311\u7318\u730a\u7308\u72ff\u730f\u731e\u7388\u73f6\u73f8\u73f5\u7404\u7401\u73fd\u7407\u7400\u73fa\u73fc\u73ff\u740c\u740b\u73f4\u7408\u7564\u7563\u75ce\u75d2\u75cf"],["d6a1","\u75cb\u75cc\u75d1\u75d0\u768f\u7689\u76d3\u7739\u772f\u772d\u7731\u7732\u7734\u7733\u773d\u7725\u773b\u7735\u7848\u7852\u7849\u784d\u784a\u784c\u7826\u7845\u7850\u7964\u7967\u7969\u796a\u7963\u796b\u7961\u79bb\u79fa\u79f8\u79f6\u79f7\u7a8f\u7a94\u7a90\u7b35\u7b47\u7b34\u7b25\u7b30\u7b22\u7b24\u7b33\u7b18\u7b2a\u7b1d\u7b31\u7b2b\u7b2d\u7b2f\u7b32\u7b38\u7b1a\u7b23\u7c94\u7c98\u7c96\u7ca3\u7d35\u7d3d\u7d38\u7d36\u7d3a\u7d45\u7d2c\u7d29\u7d41\u7d47\u7d3e\u7d3f\u7d4a\u7d3b\u7d28\u7f63\u7f95\u7f9c\u7f9d\u7f9b\u7fca\u7fcb\u7fcd\u7fd0\u7fd1\u7fc7\u7fcf\u7fc9\u801f"],["d740","\u801e\u801b\u8047\u8043\u8048\u8118\u8125\u8119\u811b\u812d\u811f\u812c\u811e\u8121\u8115\u8127\u811d\u8122\u8211\u8238\u8233\u823a\u8234\u8232\u8274\u8390\u83a3\u83a8\u838d\u837a\u8373\u83a4\u8374\u838f\u8381\u8395\u8399\u8375\u8394\u83a9\u837d\u8383\u838c\u839d\u839b\u83aa\u838b\u837e\u83a5\u83af\u8388\u8397\u83b0\u837f\u83a6\u8387\u83ae\u8376\u839a\u8659\u8656\u86bf\u86b7"],["d7a1","\u86c2\u86c1\u86c5\u86ba\u86b0\u86c8\u86b9\u86b3\u86b8\u86cc\u86b4\u86bb\u86bc\u86c3\u86bd\u86be\u8852\u8889\u8895\u88a8\u88a2\u88aa\u889a\u8891\u88a1\u889f\u8898\u88a7\u8899\u889b\u8897\u88a4\u88ac\u888c\u8893\u888e\u8982\u89d6\u89d9\u89d5\u8a30\u8a27\u8a2c\u8a1e\u8c39\u8c3b\u8c5c\u8c5d\u8c7d\u8ca5\u8d7d\u8d7b\u8d79\u8dbc\u8dc2\u8db9\u8dbf\u8dc1\u8ed8\u8ede\u8edd\u8edc\u8ed7\u8ee0\u8ee1\u9024\u900b\u9011\u901c\u900c\u9021\u90ef\u90ea\u90f0\u90f4\u90f2\u90f3\u90d4\u90eb\u90ec\u90e9\u9156\u9158\u915a\u9153\u9155\u91ec\u91f4\u91f1\u91f3\u91f8\u91e4\u91f9\u91ea"],["d840","\u91eb\u91f7\u91e8\u91ee\u957a\u9586\u9588\u967c\u966d\u966b\u9671\u966f\u96bf\u976a\u9804\u98e5\u9997\u509b\u5095\u5094\u509e\u508b\u50a3\u5083\u508c\u508e\u509d\u5068\u509c\u5092\u5082\u5087\u515f\u51d4\u5312\u5311\u53a4\u53a7\u5591\u55a8\u55a5\u55ad\u5577\u5645\u55a2\u5593\u5588\u558f\u55b5\u5581\u55a3\u5592\u55a4\u557d\u558c\u55a6\u557f\u5595\u55a1\u558e\u570c\u5829\u5837"],["d8a1","\u5819\u581e\u5827\u5823\u5828\u57f5\u5848\u5825\u581c\u581b\u5833\u583f\u5836\u582e\u5839\u5838\u582d\u582c\u583b\u5961\u5aaf\u5a94\u5a9f\u5a7a\u5aa2\u5a9e\u5a78\u5aa6\u5a7c\u5aa5\u5aac\u5a95\u5aae\u5a37\u5a84\u5a8a\u5a97\u5a83\u5a8b\u5aa9\u5a7b\u5a7d\u5a8c\u5a9c\u5a8f\u5a93\u5a9d\u5bea\u5bcd\u5bcb\u5bd4\u5bd1\u5bca\u5bce\u5c0c\u5c30\u5d37\u5d43\u5d6b\u5d41\u5d4b\u5d3f\u5d35\u5d51\u5d4e\u5d55\u5d33\u5d3a\u5d52\u5d3d\u5d31\u5d59\u5d42\u5d39\u5d49\u5d38\u5d3c\u5d32\u5d36\u5d40\u5d45\u5e44\u5e41\u5f58\u5fa6\u5fa5\u5fab\u60c9\u60b9\u60cc\u60e2\u60ce\u60c4\u6114"],["d940","\u60f2\u610a\u6116\u6105\u60f5\u6113\u60f8\u60fc\u60fe\u60c1\u6103\u6118\u611d\u6110\u60ff\u6104\u610b\u624a\u6394\u63b1\u63b0\u63ce\u63e5\u63e8\u63ef\u63c3\u649d\u63f3\u63ca\u63e0\u63f6\u63d5\u63f2\u63f5\u6461\u63df\u63be\u63dd\u63dc\u63c4\u63d8\u63d3\u63c2\u63c7\u63cc\u63cb\u63c8\u63f0\u63d7\u63d9\u6532\u6567\u656a\u6564\u655c\u6568\u6565\u658c\u659d\u659e\u65ae\u65d0\u65d2"],["d9a1","\u667c\u666c\u667b\u6680\u6671\u6679\u666a\u6672\u6701\u690c\u68d3\u6904\u68dc\u692a\u68ec\u68ea\u68f1\u690f\u68d6\u68f7\u68eb\u68e4\u68f6\u6913\u6910\u68f3\u68e1\u6907\u68cc\u6908\u6970\u68b4\u6911\u68ef\u68c6\u6914\u68f8\u68d0\u68fd\u68fc\u68e8\u690b\u690a\u6917\u68ce\u68c8\u68dd\u68de\u68e6\u68f4\u68d1\u6906\u68d4\u68e9\u6915\u6925\u68c7\u6b39\u6b3b\u6b3f\u6b3c\u6b94\u6b97\u6b99\u6b95\u6bbd\u6bf0\u6bf2\u6bf3\u6c30\u6dfc\u6e46\u6e47\u6e1f\u6e49\u6e88\u6e3c\u6e3d\u6e45\u6e62\u6e2b\u6e3f\u6e41\u6e5d\u6e73\u6e1c\u6e33\u6e4b\u6e40\u6e51\u6e3b\u6e03\u6e2e\u6e5e"],["da40","\u6e68\u6e5c\u6e61\u6e31\u6e28\u6e60\u6e71\u6e6b\u6e39\u6e22\u6e30\u6e53\u6e65\u6e27\u6e78\u6e64\u6e77\u6e55\u6e79\u6e52\u6e66\u6e35\u6e36\u6e5a\u7120\u711e\u712f\u70fb\u712e\u7131\u7123\u7125\u7122\u7132\u711f\u7128\u713a\u711b\u724b\u725a\u7288\u7289\u7286\u7285\u728b\u7312\u730b\u7330\u7322\u7331\u7333\u7327\u7332\u732d\u7326\u7323\u7335\u730c\u742e\u742c\u7430\u742b\u7416"],["daa1","\u741a\u7421\u742d\u7431\u7424\u7423\u741d\u7429\u7420\u7432\u74fb\u752f\u756f\u756c\u75e7\u75da\u75e1\u75e6\u75dd\u75df\u75e4\u75d7\u7695\u7692\u76da\u7746\u7747\u7744\u774d\u7745\u774a\u774e\u774b\u774c\u77de\u77ec\u7860\u7864\u7865\u785c\u786d\u7871\u786a\u786e\u7870\u7869\u7868\u785e\u7862\u7974\u7973\u7972\u7970\u7a02\u7a0a\u7a03\u7a0c\u7a04\u7a99\u7ae6\u7ae4\u7b4a\u7b3b\u7b44\u7b48\u7b4c\u7b4e\u7b40\u7b58\u7b45\u7ca2\u7c9e\u7ca8\u7ca1\u7d58\u7d6f\u7d63\u7d53\u7d56\u7d67\u7d6a\u7d4f\u7d6d\u7d5c\u7d6b\u7d52\u7d54\u7d69\u7d51\u7d5f\u7d4e\u7f3e\u7f3f\u7f65"],["db40","\u7f66\u7fa2\u7fa0\u7fa1\u7fd7\u8051\u804f\u8050\u80fe\u80d4\u8143\u814a\u8152\u814f\u8147\u813d\u814d\u813a\u81e6\u81ee\u81f7\u81f8\u81f9\u8204\u823c\u823d\u823f\u8275\u833b\u83cf\u83f9\u8423\u83c0\u83e8\u8412\u83e7\u83e4\u83fc\u83f6\u8410\u83c6\u83c8\u83eb\u83e3\u83bf\u8401\u83dd\u83e5\u83d8\u83ff\u83e1\u83cb\u83ce\u83d6\u83f5\u83c9\u8409\u840f\u83de\u8411\u8406\u83c2\u83f3"],["dba1","\u83d5\u83fa\u83c7\u83d1\u83ea\u8413\u83c3\u83ec\u83ee\u83c4\u83fb\u83d7\u83e2\u841b\u83db\u83fe\u86d8\u86e2\u86e6\u86d3\u86e3\u86da\u86ea\u86dd\u86eb\u86dc\u86ec\u86e9\u86d7\u86e8\u86d1\u8848\u8856\u8855\u88ba\u88d7\u88b9\u88b8\u88c0\u88be\u88b6\u88bc\u88b7\u88bd\u88b2\u8901\u88c9\u8995\u8998\u8997\u89dd\u89da\u89db\u8a4e\u8a4d\u8a39\u8a59\u8a40\u8a57\u8a58\u8a44\u8a45\u8a52\u8a48\u8a51\u8a4a\u8a4c\u8a4f\u8c5f\u8c81\u8c80\u8cba\u8cbe\u8cb0\u8cb9\u8cb5\u8d84\u8d80\u8d89\u8dd8\u8dd3\u8dcd\u8dc7\u8dd6\u8ddc\u8dcf\u8dd5\u8dd9\u8dc8\u8dd7\u8dc5\u8eef\u8ef7\u8efa"],["dc40","\u8ef9\u8ee6\u8eee\u8ee5\u8ef5\u8ee7\u8ee8\u8ef6\u8eeb\u8ef1\u8eec\u8ef4\u8ee9\u902d\u9034\u902f\u9106\u912c\u9104\u90ff\u90fc\u9108\u90f9\u90fb\u9101\u9100\u9107\u9105\u9103\u9161\u9164\u915f\u9162\u9160\u9201\u920a\u9225\u9203\u921a\u9226\u920f\u920c\u9200\u9212\u91ff\u91fd\u9206\u9204\u9227\u9202\u921c\u9224\u9219\u9217\u9205\u9216\u957b\u958d\u958c\u9590\u9687\u967e\u9688"],["dca1","\u9689\u9683\u9680\u96c2\u96c8\u96c3\u96f1\u96f0\u976c\u9770\u976e\u9807\u98a9\u98eb\u9ce6\u9ef9\u4e83\u4e84\u4eb6\u50bd\u50bf\u50c6\u50ae\u50c4\u50ca\u50b4\u50c8\u50c2\u50b0\u50c1\u50ba\u50b1\u50cb\u50c9\u50b6\u50b8\u51d7\u527a\u5278\u527b\u527c\u55c3\u55db\u55cc\u55d0\u55cb\u55ca\u55dd\u55c0\u55d4\u55c4\u55e9\u55bf\u55d2\u558d\u55cf\u55d5\u55e2\u55d6\u55c8\u55f2\u55cd\u55d9\u55c2\u5714\u5853\u5868\u5864\u584f\u584d\u5849\u586f\u5855\u584e\u585d\u5859\u5865\u585b\u583d\u5863\u5871\u58fc\u5ac7\u5ac4\u5acb\u5aba\u5ab8\u5ab1\u5ab5\u5ab0\u5abf\u5ac8\u5abb\u5ac6"],["dd40","\u5ab7\u5ac0\u5aca\u5ab4\u5ab6\u5acd\u5ab9\u5a90\u5bd6\u5bd8\u5bd9\u5c1f\u5c33\u5d71\u5d63\u5d4a\u5d65\u5d72\u5d6c\u5d5e\u5d68\u5d67\u5d62\u5df0\u5e4f\u5e4e\u5e4a\u5e4d\u5e4b\u5ec5\u5ecc\u5ec6\u5ecb\u5ec7\u5f40\u5faf\u5fad\u60f7\u6149\u614a\u612b\u6145\u6136\u6132\u612e\u6146\u612f\u614f\u6129\u6140\u6220\u9168\u6223\u6225\u6224\u63c5\u63f1\u63eb\u6410\u6412\u6409\u6420\u6424"],["dda1","\u6433\u6443\u641f\u6415\u6418\u6439\u6437\u6422\u6423\u640c\u6426\u6430\u6428\u6441\u6435\u642f\u640a\u641a\u6440\u6425\u6427\u640b\u63e7\u641b\u642e\u6421\u640e\u656f\u6592\u65d3\u6686\u668c\u6695\u6690\u668b\u668a\u6699\u6694\u6678\u6720\u6966\u695f\u6938\u694e\u6962\u6971\u693f\u6945\u696a\u6939\u6942\u6957\u6959\u697a\u6948\u6949\u6935\u696c\u6933\u693d\u6965\u68f0\u6978\u6934\u6969\u6940\u696f\u6944\u6976\u6958\u6941\u6974\u694c\u693b\u694b\u6937\u695c\u694f\u6951\u6932\u6952\u692f\u697b\u693c\u6b46\u6b45\u6b43\u6b42\u6b48\u6b41\u6b9b\ufa0d\u6bfb\u6bfc"],["de40","\u6bf9\u6bf7\u6bf8\u6e9b\u6ed6\u6ec8\u6e8f\u6ec0\u6e9f\u6e93\u6e94\u6ea0\u6eb1\u6eb9\u6ec6\u6ed2\u6ebd\u6ec1\u6e9e\u6ec9\u6eb7\u6eb0\u6ecd\u6ea6\u6ecf\u6eb2\u6ebe\u6ec3\u6edc\u6ed8\u6e99\u6e92\u6e8e\u6e8d\u6ea4\u6ea1\u6ebf\u6eb3\u6ed0\u6eca\u6e97\u6eae\u6ea3\u7147\u7154\u7152\u7163\u7160\u7141\u715d\u7162\u7172\u7178\u716a\u7161\u7142\u7158\u7143\u714b\u7170\u715f\u7150\u7153"],["dea1","\u7144\u714d\u715a\u724f\u728d\u728c\u7291\u7290\u728e\u733c\u7342\u733b\u733a\u7340\u734a\u7349\u7444\u744a\u744b\u7452\u7451\u7457\u7440\u744f\u7450\u744e\u7442\u7446\u744d\u7454\u74e1\u74ff\u74fe\u74fd\u751d\u7579\u7577\u6983\u75ef\u760f\u7603\u75f7\u75fe\u75fc\u75f9\u75f8\u7610\u75fb\u75f6\u75ed\u75f5\u75fd\u7699\u76b5\u76dd\u7755\u775f\u7760\u7752\u7756\u775a\u7769\u7767\u7754\u7759\u776d\u77e0\u7887\u789a\u7894\u788f\u7884\u7895\u7885\u7886\u78a1\u7883\u7879\u7899\u7880\u7896\u787b\u797c\u7982\u797d\u7979\u7a11\u7a18\u7a19\u7a12\u7a17\u7a15\u7a22\u7a13"],["df40","\u7a1b\u7a10\u7aa3\u7aa2\u7a9e\u7aeb\u7b66\u7b64\u7b6d\u7b74\u7b69\u7b72\u7b65\u7b73\u7b71\u7b70\u7b61\u7b78\u7b76\u7b63\u7cb2\u7cb4\u7caf\u7d88\u7d86\u7d80\u7d8d\u7d7f\u7d85\u7d7a\u7d8e\u7d7b\u7d83\u7d7c\u7d8c\u7d94\u7d84\u7d7d\u7d92\u7f6d\u7f6b\u7f67\u7f68\u7f6c\u7fa6\u7fa5\u7fa7\u7fdb\u7fdc\u8021\u8164\u8160\u8177\u815c\u8169\u815b\u8162\u8172\u6721\u815e\u8176\u8167\u816f"],["dfa1","\u8144\u8161\u821d\u8249\u8244\u8240\u8242\u8245\u84f1\u843f\u8456\u8476\u8479\u848f\u848d\u8465\u8451\u8440\u8486\u8467\u8430\u844d\u847d\u845a\u8459\u8474\u8473\u845d\u8507\u845e\u8437\u843a\u8434\u847a\u8443\u8478\u8432\u8445\u8429\u83d9\u844b\u842f\u8442\u842d\u845f\u8470\u8439\u844e\u844c\u8452\u846f\u84c5\u848e\u843b\u8447\u8436\u8433\u8468\u847e\u8444\u842b\u8460\u8454\u846e\u8450\u870b\u8704\u86f7\u870c\u86fa\u86d6\u86f5\u874d\u86f8\u870e\u8709\u8701\u86f6\u870d\u8705\u88d6\u88cb\u88cd\u88ce\u88de\u88db\u88da\u88cc\u88d0\u8985\u899b\u89df\u89e5\u89e4"],["e040","\u89e1\u89e0\u89e2\u89dc\u89e6\u8a76\u8a86\u8a7f\u8a61\u8a3f\u8a77\u8a82\u8a84\u8a75\u8a83\u8a81\u8a74\u8a7a\u8c3c\u8c4b\u8c4a\u8c65\u8c64\u8c66\u8c86\u8c84\u8c85\u8ccc\u8d68\u8d69\u8d91\u8d8c\u8d8e\u8d8f\u8d8d\u8d93\u8d94\u8d90\u8d92\u8df0\u8de0\u8dec\u8df1\u8dee\u8dd0\u8de9\u8de3\u8de2\u8de7\u8df2\u8deb\u8df4\u8f06\u8eff\u8f01\u8f00\u8f05\u8f07\u8f08\u8f02\u8f0b\u9052\u903f"],["e0a1","\u9044\u9049\u903d\u9110\u910d\u910f\u9111\u9116\u9114\u910b\u910e\u916e\u916f\u9248\u9252\u9230\u923a\u9266\u9233\u9265\u925e\u9283\u922e\u924a\u9246\u926d\u926c\u924f\u9260\u9267\u926f\u9236\u9261\u9270\u9231\u9254\u9263\u9250\u9272\u924e\u9253\u924c\u9256\u9232\u959f\u959c\u959e\u959b\u9692\u9693\u9691\u9697\u96ce\u96fa\u96fd\u96f8\u96f5\u9773\u9777\u9778\u9772\u980f\u980d\u980e\u98ac\u98f6\u98f9\u99af\u99b2\u99b0\u99b5\u9aad\u9aab\u9b5b\u9cea\u9ced\u9ce7\u9e80\u9efd\u50e6\u50d4\u50d7\u50e8\u50f3\u50db\u50ea\u50dd\u50e4\u50d3\u50ec\u50f0\u50ef\u50e3\u50e0"],["e140","\u51d8\u5280\u5281\u52e9\u52eb\u5330\u53ac\u5627\u5615\u560c\u5612\u55fc\u560f\u561c\u5601\u5613\u5602\u55fa\u561d\u5604\u55ff\u55f9\u5889\u587c\u5890\u5898\u5886\u5881\u587f\u5874\u588b\u587a\u5887\u5891\u588e\u5876\u5882\u5888\u587b\u5894\u588f\u58fe\u596b\u5adc\u5aee\u5ae5\u5ad5\u5aea\u5ada\u5aed\u5aeb\u5af3\u5ae2\u5ae0\u5adb\u5aec\u5ade\u5add\u5ad9\u5ae8\u5adf\u5b77\u5be0"],["e1a1","\u5be3\u5c63\u5d82\u5d80\u5d7d\u5d86\u5d7a\u5d81\u5d77\u5d8a\u5d89\u5d88\u5d7e\u5d7c\u5d8d\u5d79\u5d7f\u5e58\u5e59\u5e53\u5ed8\u5ed1\u5ed7\u5ece\u5edc\u5ed5\u5ed9\u5ed2\u5ed4\u5f44\u5f43\u5f6f\u5fb6\u612c\u6128\u6141\u615e\u6171\u6173\u6152\u6153\u6172\u616c\u6180\u6174\u6154\u617a\u615b\u6165\u613b\u616a\u6161\u6156\u6229\u6227\u622b\u642b\u644d\u645b\u645d\u6474\u6476\u6472\u6473\u647d\u6475\u6466\u64a6\u644e\u6482\u645e\u645c\u644b\u6453\u6460\u6450\u647f\u643f\u646c\u646b\u6459\u6465\u6477\u6573\u65a0\u66a1\u66a0\u669f\u6705\u6704\u6722\u69b1\u69b6\u69c9"],["e240","\u69a0\u69ce\u6996\u69b0\u69ac\u69bc\u6991\u6999\u698e\u69a7\u698d\u69a9\u69be\u69af\u69bf\u69c4\u69bd\u69a4\u69d4\u69b9\u69ca\u699a\u69cf\u69b3\u6993\u69aa\u69a1\u699e\u69d9\u6997\u6990\u69c2\u69b5\u69a5\u69c6\u6b4a\u6b4d\u6b4b\u6b9e\u6b9f\u6ba0\u6bc3\u6bc4\u6bfe\u6ece\u6ef5\u6ef1\u6f03\u6f25\u6ef8\u6f37\u6efb\u6f2e\u6f09\u6f4e\u6f19\u6f1a\u6f27\u6f18\u6f3b\u6f12\u6eed\u6f0a"],["e2a1","\u6f36\u6f73\u6ef9\u6eee\u6f2d\u6f40\u6f30\u6f3c\u6f35\u6eeb\u6f07\u6f0e\u6f43\u6f05\u6efd\u6ef6\u6f39\u6f1c\u6efc\u6f3a\u6f1f\u6f0d\u6f1e\u6f08\u6f21\u7187\u7190\u7189\u7180\u7185\u7182\u718f\u717b\u7186\u7181\u7197\u7244\u7253\u7297\u7295\u7293\u7343\u734d\u7351\u734c\u7462\u7473\u7471\u7475\u7472\u7467\u746e\u7500\u7502\u7503\u757d\u7590\u7616\u7608\u760c\u7615\u7611\u760a\u7614\u76b8\u7781\u777c\u7785\u7782\u776e\u7780\u776f\u777e\u7783\u78b2\u78aa\u78b4\u78ad\u78a8\u787e\u78ab\u789e\u78a5\u78a0\u78ac\u78a2\u78a4\u7998\u798a\u798b\u7996\u7995\u7994\u7993"],["e340","\u7997\u7988\u7992\u7990\u7a2b\u7a4a\u7a30\u7a2f\u7a28\u7a26\u7aa8\u7aab\u7aac\u7aee\u7b88\u7b9c\u7b8a\u7b91\u7b90\u7b96\u7b8d\u7b8c\u7b9b\u7b8e\u7b85\u7b98\u5284\u7b99\u7ba4\u7b82\u7cbb\u7cbf\u7cbc\u7cba\u7da7\u7db7\u7dc2\u7da3\u7daa\u7dc1\u7dc0\u7dc5\u7d9d\u7dce\u7dc4\u7dc6\u7dcb\u7dcc\u7daf\u7db9\u7d96\u7dbc\u7d9f\u7da6\u7dae\u7da9\u7da1\u7dc9\u7f73\u7fe2\u7fe3\u7fe5\u7fde"],["e3a1","\u8024\u805d\u805c\u8189\u8186\u8183\u8187\u818d\u818c\u818b\u8215\u8497\u84a4\u84a1\u849f\u84ba\u84ce\u84c2\u84ac\u84ae\u84ab\u84b9\u84b4\u84c1\u84cd\u84aa\u849a\u84b1\u84d0\u849d\u84a7\u84bb\u84a2\u8494\u84c7\u84cc\u849b\u84a9\u84af\u84a8\u84d6\u8498\u84b6\u84cf\u84a0\u84d7\u84d4\u84d2\u84db\u84b0\u8491\u8661\u8733\u8723\u8728\u876b\u8740\u872e\u871e\u8721\u8719\u871b\u8743\u872c\u8741\u873e\u8746\u8720\u8732\u872a\u872d\u873c\u8712\u873a\u8731\u8735\u8742\u8726\u8727\u8738\u8724\u871a\u8730\u8711\u88f7\u88e7\u88f1\u88f2\u88fa\u88fe\u88ee\u88fc\u88f6\u88fb"],["e440","\u88f0\u88ec\u88eb\u899d\u89a1\u899f\u899e\u89e9\u89eb\u89e8\u8aab\u8a99\u8a8b\u8a92\u8a8f\u8a96\u8c3d\u8c68\u8c69\u8cd5\u8ccf\u8cd7\u8d96\u8e09\u8e02\u8dff\u8e0d\u8dfd\u8e0a\u8e03\u8e07\u8e06\u8e05\u8dfe\u8e00\u8e04\u8f10\u8f11\u8f0e\u8f0d\u9123\u911c\u9120\u9122\u911f\u911d\u911a\u9124\u9121\u911b\u917a\u9172\u9179\u9173\u92a5\u92a4\u9276\u929b\u927a\u92a0\u9294\u92aa\u928d"],["e4a1","\u92a6\u929a\u92ab\u9279\u9297\u927f\u92a3\u92ee\u928e\u9282\u9295\u92a2\u927d\u9288\u92a1\u928a\u9286\u928c\u9299\u92a7\u927e\u9287\u92a9\u929d\u928b\u922d\u969e\u96a1\u96ff\u9758\u977d\u977a\u977e\u9783\u9780\u9782\u977b\u9784\u9781\u977f\u97ce\u97cd\u9816\u98ad\u98ae\u9902\u9900\u9907\u999d\u999c\u99c3\u99b9\u99bb\u99ba\u99c2\u99bd\u99c7\u9ab1\u9ae3\u9ae7\u9b3e\u9b3f\u9b60\u9b61\u9b5f\u9cf1\u9cf2\u9cf5\u9ea7\u50ff\u5103\u5130\u50f8\u5106\u5107\u50f6\u50fe\u510b\u510c\u50fd\u510a\u528b\u528c\u52f1\u52ef\u5648\u5642\u564c\u5635\u5641\u564a\u5649\u5646\u5658"],["e540","\u565a\u5640\u5633\u563d\u562c\u563e\u5638\u562a\u563a\u571a\u58ab\u589d\u58b1\u58a0\u58a3\u58af\u58ac\u58a5\u58a1\u58ff\u5aff\u5af4\u5afd\u5af7\u5af6\u5b03\u5af8\u5b02\u5af9\u5b01\u5b07\u5b05\u5b0f\u5c67\u5d99\u5d97\u5d9f\u5d92\u5da2\u5d93\u5d95\u5da0\u5d9c\u5da1\u5d9a\u5d9e\u5e69\u5e5d\u5e60\u5e5c\u7df3\u5edb\u5ede\u5ee1\u5f49\u5fb2\u618b\u6183\u6179\u61b1\u61b0\u61a2\u6189"],["e5a1","\u619b\u6193\u61af\u61ad\u619f\u6192\u61aa\u61a1\u618d\u6166\u61b3\u622d\u646e\u6470\u6496\u64a0\u6485\u6497\u649c\u648f\u648b\u648a\u648c\u64a3\u649f\u6468\u64b1\u6498\u6576\u657a\u6579\u657b\u65b2\u65b3\u66b5\u66b0\u66a9\u66b2\u66b7\u66aa\u66af\u6a00\u6a06\u6a17\u69e5\u69f8\u6a15\u69f1\u69e4\u6a20\u69ff\u69ec\u69e2\u6a1b\u6a1d\u69fe\u6a27\u69f2\u69ee\u6a14\u69f7\u69e7\u6a40\u6a08\u69e6\u69fb\u6a0d\u69fc\u69eb\u6a09\u6a04\u6a18\u6a25\u6a0f\u69f6\u6a26\u6a07\u69f4\u6a16\u6b51\u6ba5\u6ba3\u6ba2\u6ba6\u6c01\u6c00\u6bff\u6c02\u6f41\u6f26\u6f7e\u6f87\u6fc6\u6f92"],["e640","\u6f8d\u6f89\u6f8c\u6f62\u6f4f\u6f85\u6f5a\u6f96\u6f76\u6f6c\u6f82\u6f55\u6f72\u6f52\u6f50\u6f57\u6f94\u6f93\u6f5d\u6f00\u6f61\u6f6b\u6f7d\u6f67\u6f90\u6f53\u6f8b\u6f69\u6f7f\u6f95\u6f63\u6f77\u6f6a\u6f7b\u71b2\u71af\u719b\u71b0\u71a0\u719a\u71a9\u71b5\u719d\u71a5\u719e\u71a4\u71a1\u71aa\u719c\u71a7\u71b3\u7298\u729a\u7358\u7352\u735e\u735f\u7360\u735d\u735b\u7361\u735a\u7359"],["e6a1","\u7362\u7487\u7489\u748a\u7486\u7481\u747d\u7485\u7488\u747c\u7479\u7508\u7507\u757e\u7625\u761e\u7619\u761d\u761c\u7623\u761a\u7628\u761b\u769c\u769d\u769e\u769b\u778d\u778f\u7789\u7788\u78cd\u78bb\u78cf\u78cc\u78d1\u78ce\u78d4\u78c8\u78c3\u78c4\u78c9\u799a\u79a1\u79a0\u799c\u79a2\u799b\u6b76\u7a39\u7ab2\u7ab4\u7ab3\u7bb7\u7bcb\u7bbe\u7bac\u7bce\u7baf\u7bb9\u7bca\u7bb5\u7cc5\u7cc8\u7ccc\u7ccb\u7df7\u7ddb\u7dea\u7de7\u7dd7\u7de1\u7e03\u7dfa\u7de6\u7df6\u7df1\u7df0\u7dee\u7ddf\u7f76\u7fac\u7fb0\u7fad\u7fed\u7feb\u7fea\u7fec\u7fe6\u7fe8\u8064\u8067\u81a3\u819f"],["e740","\u819e\u8195\u81a2\u8199\u8197\u8216\u824f\u8253\u8252\u8250\u824e\u8251\u8524\u853b\u850f\u8500\u8529\u850e\u8509\u850d\u851f\u850a\u8527\u851c\u84fb\u852b\u84fa\u8508\u850c\u84f4\u852a\u84f2\u8515\u84f7\u84eb\u84f3\u84fc\u8512\u84ea\u84e9\u8516\u84fe\u8528\u851d\u852e\u8502\u84fd\u851e\u84f6\u8531\u8526\u84e7\u84e8\u84f0\u84ef\u84f9\u8518\u8520\u8530\u850b\u8519\u852f\u8662"],["e7a1","\u8756\u8763\u8764\u8777\u87e1\u8773\u8758\u8754\u875b\u8752\u8761\u875a\u8751\u875e\u876d\u876a\u8750\u874e\u875f\u875d\u876f\u876c\u877a\u876e\u875c\u8765\u874f\u877b\u8775\u8762\u8767\u8769\u885a\u8905\u890c\u8914\u890b\u8917\u8918\u8919\u8906\u8916\u8911\u890e\u8909\u89a2\u89a4\u89a3\u89ed\u89f0\u89ec\u8acf\u8ac6\u8ab8\u8ad3\u8ad1\u8ad4\u8ad5\u8abb\u8ad7\u8abe\u8ac0\u8ac5\u8ad8\u8ac3\u8aba\u8abd\u8ad9\u8c3e\u8c4d\u8c8f\u8ce5\u8cdf\u8cd9\u8ce8\u8cda\u8cdd\u8ce7\u8da0\u8d9c\u8da1\u8d9b\u8e20\u8e23\u8e25\u8e24\u8e2e\u8e15\u8e1b\u8e16\u8e11\u8e19\u8e26\u8e27"],["e840","\u8e14\u8e12\u8e18\u8e13\u8e1c\u8e17\u8e1a\u8f2c\u8f24\u8f18\u8f1a\u8f20\u8f23\u8f16\u8f17\u9073\u9070\u906f\u9067\u906b\u912f\u912b\u9129\u912a\u9132\u9126\u912e\u9185\u9186\u918a\u9181\u9182\u9184\u9180\u92d0\u92c3\u92c4\u92c0\u92d9\u92b6\u92cf\u92f1\u92df\u92d8\u92e9\u92d7\u92dd\u92cc\u92ef\u92c2\u92e8\u92ca\u92c8\u92ce\u92e6\u92cd\u92d5\u92c9\u92e0\u92de\u92e7\u92d1\u92d3"],["e8a1","\u92b5\u92e1\u92c6\u92b4\u957c\u95ac\u95ab\u95ae\u95b0\u96a4\u96a2\u96d3\u9705\u9708\u9702\u975a\u978a\u978e\u9788\u97d0\u97cf\u981e\u981d\u9826\u9829\u9828\u9820\u981b\u9827\u98b2\u9908\u98fa\u9911\u9914\u9916\u9917\u9915\u99dc\u99cd\u99cf\u99d3\u99d4\u99ce\u99c9\u99d6\u99d8\u99cb\u99d7\u99cc\u9ab3\u9aec\u9aeb\u9af3\u9af2\u9af1\u9b46\u9b43\u9b67\u9b74\u9b71\u9b66\u9b76\u9b75\u9b70\u9b68\u9b64\u9b6c\u9cfc\u9cfa\u9cfd\u9cff\u9cf7\u9d07\u9d00\u9cf9\u9cfb\u9d08\u9d05\u9d04\u9e83\u9ed3\u9f0f\u9f10\u511c\u5113\u5117\u511a\u5111\u51de\u5334\u53e1\u5670\u5660\u566e"],["e940","\u5673\u5666\u5663\u566d\u5672\u565e\u5677\u571c\u571b\u58c8\u58bd\u58c9\u58bf\u58ba\u58c2\u58bc\u58c6\u5b17\u5b19\u5b1b\u5b21\u5b14\u5b13\u5b10\u5b16\u5b28\u5b1a\u5b20\u5b1e\u5bef\u5dac\u5db1\u5da9\u5da7\u5db5\u5db0\u5dae\u5daa\u5da8\u5db2\u5dad\u5daf\u5db4\u5e67\u5e68\u5e66\u5e6f\u5ee9\u5ee7\u5ee6\u5ee8\u5ee5\u5f4b\u5fbc\u619d\u61a8\u6196\u61c5\u61b4\u61c6\u61c1\u61cc\u61ba"],["e9a1","\u61bf\u61b8\u618c\u64d7\u64d6\u64d0\u64cf\u64c9\u64bd\u6489\u64c3\u64db\u64f3\u64d9\u6533\u657f\u657c\u65a2\u66c8\u66be\u66c0\u66ca\u66cb\u66cf\u66bd\u66bb\u66ba\u66cc\u6723\u6a34\u6a66\u6a49\u6a67\u6a32\u6a68\u6a3e\u6a5d\u6a6d\u6a76\u6a5b\u6a51\u6a28\u6a5a\u6a3b\u6a3f\u6a41\u6a6a\u6a64\u6a50\u6a4f\u6a54\u6a6f\u6a69\u6a60\u6a3c\u6a5e\u6a56\u6a55\u6a4d\u6a4e\u6a46\u6b55\u6b54\u6b56\u6ba7\u6baa\u6bab\u6bc8\u6bc7\u6c04\u6c03\u6c06\u6fad\u6fcb\u6fa3\u6fc7\u6fbc\u6fce\u6fc8\u6f5e\u6fc4\u6fbd\u6f9e\u6fca\u6fa8\u7004\u6fa5\u6fae\u6fba\u6fac\u6faa\u6fcf\u6fbf\u6fb8"],["ea40","\u6fa2\u6fc9\u6fab\u6fcd\u6faf\u6fb2\u6fb0\u71c5\u71c2\u71bf\u71b8\u71d6\u71c0\u71c1\u71cb\u71d4\u71ca\u71c7\u71cf\u71bd\u71d8\u71bc\u71c6\u71da\u71db\u729d\u729e\u7369\u7366\u7367\u736c\u7365\u736b\u736a\u747f\u749a\u74a0\u7494\u7492\u7495\u74a1\u750b\u7580\u762f\u762d\u7631\u763d\u7633\u763c\u7635\u7632\u7630\u76bb\u76e6\u779a\u779d\u77a1\u779c\u779b\u77a2\u77a3\u7795\u7799"],["eaa1","\u7797\u78dd\u78e9\u78e5\u78ea\u78de\u78e3\u78db\u78e1\u78e2\u78ed\u78df\u78e0\u79a4\u7a44\u7a48\u7a47\u7ab6\u7ab8\u7ab5\u7ab1\u7ab7\u7bde\u7be3\u7be7\u7bdd\u7bd5\u7be5\u7bda\u7be8\u7bf9\u7bd4\u7bea\u7be2\u7bdc\u7beb\u7bd8\u7bdf\u7cd2\u7cd4\u7cd7\u7cd0\u7cd1\u7e12\u7e21\u7e17\u7e0c\u7e1f\u7e20\u7e13\u7e0e\u7e1c\u7e15\u7e1a\u7e22\u7e0b\u7e0f\u7e16\u7e0d\u7e14\u7e25\u7e24\u7f43\u7f7b\u7f7c\u7f7a\u7fb1\u7fef\u802a\u8029\u806c\u81b1\u81a6\u81ae\u81b9\u81b5\u81ab\u81b0\u81ac\u81b4\u81b2\u81b7\u81a7\u81f2\u8255\u8256\u8257\u8556\u8545\u856b\u854d\u8553\u8561\u8558"],["eb40","\u8540\u8546\u8564\u8541\u8562\u8544\u8551\u8547\u8563\u853e\u855b\u8571\u854e\u856e\u8575\u8555\u8567\u8560\u858c\u8566\u855d\u8554\u8565\u856c\u8663\u8665\u8664\u879b\u878f\u8797\u8793\u8792\u8788\u8781\u8796\u8798\u8779\u8787\u87a3\u8785\u8790\u8791\u879d\u8784\u8794\u879c\u879a\u8789\u891e\u8926\u8930\u892d\u892e\u8927\u8931\u8922\u8929\u8923\u892f\u892c\u891f\u89f1\u8ae0"],["eba1","\u8ae2\u8af2\u8af4\u8af5\u8add\u8b14\u8ae4\u8adf\u8af0\u8ac8\u8ade\u8ae1\u8ae8\u8aff\u8aef\u8afb\u8c91\u8c92\u8c90\u8cf5\u8cee\u8cf1\u8cf0\u8cf3\u8d6c\u8d6e\u8da5\u8da7\u8e33\u8e3e\u8e38\u8e40\u8e45\u8e36\u8e3c\u8e3d\u8e41\u8e30\u8e3f\u8ebd\u8f36\u8f2e\u8f35\u8f32\u8f39\u8f37\u8f34\u9076\u9079\u907b\u9086\u90fa\u9133\u9135\u9136\u9193\u9190\u9191\u918d\u918f\u9327\u931e\u9308\u931f\u9306\u930f\u937a\u9338\u933c\u931b\u9323\u9312\u9301\u9346\u932d\u930e\u930d\u92cb\u931d\u92fa\u9325\u9313\u92f9\u92f7\u9334\u9302\u9324\u92ff\u9329\u9339\u9335\u932a\u9314\u930c"],["ec40","\u930b\u92fe\u9309\u9300\u92fb\u9316\u95bc\u95cd\u95be\u95b9\u95ba\u95b6\u95bf\u95b5\u95bd\u96a9\u96d4\u970b\u9712\u9710\u9799\u9797\u9794\u97f0\u97f8\u9835\u982f\u9832\u9924\u991f\u9927\u9929\u999e\u99ee\u99ec\u99e5\u99e4\u99f0\u99e3\u99ea\u99e9\u99e7\u9ab9\u9abf\u9ab4\u9abb\u9af6\u9afa\u9af9\u9af7\u9b33\u9b80\u9b85\u9b87\u9b7c\u9b7e\u9b7b\u9b82\u9b93\u9b92\u9b90\u9b7a\u9b95"],["eca1","\u9b7d\u9b88\u9d25\u9d17\u9d20\u9d1e\u9d14\u9d29\u9d1d\u9d18\u9d22\u9d10\u9d19\u9d1f\u9e88\u9e86\u9e87\u9eae\u9ead\u9ed5\u9ed6\u9efa\u9f12\u9f3d\u5126\u5125\u5122\u5124\u5120\u5129\u52f4\u5693\u568c\u568d\u5686\u5684\u5683\u567e\u5682\u567f\u5681\u58d6\u58d4\u58cf\u58d2\u5b2d\u5b25\u5b32\u5b23\u5b2c\u5b27\u5b26\u5b2f\u5b2e\u5b7b\u5bf1\u5bf2\u5db7\u5e6c\u5e6a\u5fbe\u5fbb\u61c3\u61b5\u61bc\u61e7\u61e0\u61e5\u61e4\u61e8\u61de\u64ef\u64e9\u64e3\u64eb\u64e4\u64e8\u6581\u6580\u65b6\u65da\u66d2\u6a8d\u6a96\u6a81\u6aa5\u6a89\u6a9f\u6a9b\u6aa1\u6a9e\u6a87\u6a93\u6a8e"],["ed40","\u6a95\u6a83\u6aa8\u6aa4\u6a91\u6a7f\u6aa6\u6a9a\u6a85\u6a8c\u6a92\u6b5b\u6bad\u6c09\u6fcc\u6fa9\u6ff4\u6fd4\u6fe3\u6fdc\u6fed\u6fe7\u6fe6\u6fde\u6ff2\u6fdd\u6fe2\u6fe8\u71e1\u71f1\u71e8\u71f2\u71e4\u71f0\u71e2\u7373\u736e\u736f\u7497\u74b2\u74ab\u7490\u74aa\u74ad\u74b1\u74a5\u74af\u7510\u7511\u7512\u750f\u7584\u7643\u7648\u7649\u7647\u76a4\u76e9\u77b5\u77ab\u77b2\u77b7\u77b6"],["eda1","\u77b4\u77b1\u77a8\u77f0\u78f3\u78fd\u7902\u78fb\u78fc\u78f2\u7905\u78f9\u78fe\u7904\u79ab\u79a8\u7a5c\u7a5b\u7a56\u7a58\u7a54\u7a5a\u7abe\u7ac0\u7ac1\u7c05\u7c0f\u7bf2\u7c00\u7bff\u7bfb\u7c0e\u7bf4\u7c0b\u7bf3\u7c02\u7c09\u7c03\u7c01\u7bf8\u7bfd\u7c06\u7bf0\u7bf1\u7c10\u7c0a\u7ce8\u7e2d\u7e3c\u7e42\u7e33\u9848\u7e38\u7e2a\u7e49\u7e40\u7e47\u7e29\u7e4c\u7e30\u7e3b\u7e36\u7e44\u7e3a\u7f45\u7f7f\u7f7e\u7f7d\u7ff4\u7ff2\u802c\u81bb\u81c4\u81cc\u81ca\u81c5\u81c7\u81bc\u81e9\u825b\u825a\u825c\u8583\u8580\u858f\u85a7\u8595\u85a0\u858b\u85a3\u857b\u85a4\u859a\u859e"],["ee40","\u8577\u857c\u8589\u85a1\u857a\u8578\u8557\u858e\u8596\u8586\u858d\u8599\u859d\u8581\u85a2\u8582\u8588\u8585\u8579\u8576\u8598\u8590\u859f\u8668\u87be\u87aa\u87ad\u87c5\u87b0\u87ac\u87b9\u87b5\u87bc\u87ae\u87c9\u87c3\u87c2\u87cc\u87b7\u87af\u87c4\u87ca\u87b4\u87b6\u87bf\u87b8\u87bd\u87de\u87b2\u8935\u8933\u893c\u893e\u8941\u8952\u8937\u8942\u89ad\u89af\u89ae\u89f2\u89f3\u8b1e"],["eea1","\u8b18\u8b16\u8b11\u8b05\u8b0b\u8b22\u8b0f\u8b12\u8b15\u8b07\u8b0d\u8b08\u8b06\u8b1c\u8b13\u8b1a\u8c4f\u8c70\u8c72\u8c71\u8c6f\u8c95\u8c94\u8cf9\u8d6f\u8e4e\u8e4d\u8e53\u8e50\u8e4c\u8e47\u8f43\u8f40\u9085\u907e\u9138\u919a\u91a2\u919b\u9199\u919f\u91a1\u919d\u91a0\u93a1\u9383\u93af\u9364\u9356\u9347\u937c\u9358\u935c\u9376\u9349\u9350\u9351\u9360\u936d\u938f\u934c\u936a\u9379\u9357\u9355\u9352\u934f\u9371\u9377\u937b\u9361\u935e\u9363\u9367\u9380\u934e\u9359\u95c7\u95c0\u95c9\u95c3\u95c5\u95b7\u96ae\u96b0\u96ac\u9720\u971f\u9718\u971d\u9719\u979a\u97a1\u979c"],["ef40","\u979e\u979d\u97d5\u97d4\u97f1\u9841\u9844\u984a\u9849\u9845\u9843\u9925\u992b\u992c\u992a\u9933\u9932\u992f\u992d\u9931\u9930\u9998\u99a3\u99a1\u9a02\u99fa\u99f4\u99f7\u99f9\u99f8\u99f6\u99fb\u99fd\u99fe\u99fc\u9a03\u9abe\u9afe\u9afd\u9b01\u9afc\u9b48\u9b9a\u9ba8\u9b9e\u9b9b\u9ba6\u9ba1\u9ba5\u9ba4\u9b86\u9ba2\u9ba0\u9baf\u9d33\u9d41\u9d67\u9d36\u9d2e\u9d2f\u9d31\u9d38\u9d30"],["efa1","\u9d45\u9d42\u9d43\u9d3e\u9d37\u9d40\u9d3d\u7ff5\u9d2d\u9e8a\u9e89\u9e8d\u9eb0\u9ec8\u9eda\u9efb\u9eff\u9f24\u9f23\u9f22\u9f54\u9fa0\u5131\u512d\u512e\u5698\u569c\u5697\u569a\u569d\u5699\u5970\u5b3c\u5c69\u5c6a\u5dc0\u5e6d\u5e6e\u61d8\u61df\u61ed\u61ee\u61f1\u61ea\u61f0\u61eb\u61d6\u61e9\u64ff\u6504\u64fd\u64f8\u6501\u6503\u64fc\u6594\u65db\u66da\u66db\u66d8\u6ac5\u6ab9\u6abd\u6ae1\u6ac6\u6aba\u6ab6\u6ab7\u6ac7\u6ab4\u6aad\u6b5e\u6bc9\u6c0b\u7007\u700c\u700d\u7001\u7005\u7014\u700e\u6fff\u7000\u6ffb\u7026\u6ffc\u6ff7\u700a\u7201\u71ff\u71f9\u7203\u71fd\u7376"],["f040","\u74b8\u74c0\u74b5\u74c1\u74be\u74b6\u74bb\u74c2\u7514\u7513\u765c\u7664\u7659\u7650\u7653\u7657\u765a\u76a6\u76bd\u76ec\u77c2\u77ba\u78ff\u790c\u7913\u7914\u7909\u7910\u7912\u7911\u79ad\u79ac\u7a5f\u7c1c\u7c29\u7c19\u7c20\u7c1f\u7c2d\u7c1d\u7c26\u7c28\u7c22\u7c25\u7c30\u7e5c\u7e50\u7e56\u7e63\u7e58\u7e62\u7e5f\u7e51\u7e60\u7e57\u7e53\u7fb5\u7fb3\u7ff7\u7ff8\u8075\u81d1\u81d2"],["f0a1","\u81d0\u825f\u825e\u85b4\u85c6\u85c0\u85c3\u85c2\u85b3\u85b5\u85bd\u85c7\u85c4\u85bf\u85cb\u85ce\u85c8\u85c5\u85b1\u85b6\u85d2\u8624\u85b8\u85b7\u85be\u8669\u87e7\u87e6\u87e2\u87db\u87eb\u87ea\u87e5\u87df\u87f3\u87e4\u87d4\u87dc\u87d3\u87ed\u87d8\u87e3\u87a4\u87d7\u87d9\u8801\u87f4\u87e8\u87dd\u8953\u894b\u894f\u894c\u8946\u8950\u8951\u8949\u8b2a\u8b27\u8b23\u8b33\u8b30\u8b35\u8b47\u8b2f\u8b3c\u8b3e\u8b31\u8b25\u8b37\u8b26\u8b36\u8b2e\u8b24\u8b3b\u8b3d\u8b3a\u8c42\u8c75\u8c99\u8c98\u8c97\u8cfe\u8d04\u8d02\u8d00\u8e5c\u8e62\u8e60\u8e57\u8e56\u8e5e\u8e65\u8e67"],["f140","\u8e5b\u8e5a\u8e61\u8e5d\u8e69\u8e54\u8f46\u8f47\u8f48\u8f4b\u9128\u913a\u913b\u913e\u91a8\u91a5\u91a7\u91af\u91aa\u93b5\u938c\u9392\u93b7\u939b\u939d\u9389\u93a7\u938e\u93aa\u939e\u93a6\u9395\u9388\u9399\u939f\u938d\u93b1\u9391\u93b2\u93a4\u93a8\u93b4\u93a3\u93a5\u95d2\u95d3\u95d1\u96b3\u96d7\u96da\u5dc2\u96df\u96d8\u96dd\u9723\u9722\u9725\u97ac\u97ae\u97a8\u97ab\u97a4\u97aa"],["f1a1","\u97a2\u97a5\u97d7\u97d9\u97d6\u97d8\u97fa\u9850\u9851\u9852\u98b8\u9941\u993c\u993a\u9a0f\u9a0b\u9a09\u9a0d\u9a04\u9a11\u9a0a\u9a05\u9a07\u9a06\u9ac0\u9adc\u9b08\u9b04\u9b05\u9b29\u9b35\u9b4a\u9b4c\u9b4b\u9bc7\u9bc6\u9bc3\u9bbf\u9bc1\u9bb5\u9bb8\u9bd3\u9bb6\u9bc4\u9bb9\u9bbd\u9d5c\u9d53\u9d4f\u9d4a\u9d5b\u9d4b\u9d59\u9d56\u9d4c\u9d57\u9d52\u9d54\u9d5f\u9d58\u9d5a\u9e8e\u9e8c\u9edf\u9f01\u9f00\u9f16\u9f25\u9f2b\u9f2a\u9f29\u9f28\u9f4c\u9f55\u5134\u5135\u5296\u52f7\u53b4\u56ab\u56ad\u56a6\u56a7\u56aa\u56ac\u58da\u58dd\u58db\u5912\u5b3d\u5b3e\u5b3f\u5dc3\u5e70"],["f240","\u5fbf\u61fb\u6507\u6510\u650d\u6509\u650c\u650e\u6584\u65de\u65dd\u66de\u6ae7\u6ae0\u6acc\u6ad1\u6ad9\u6acb\u6adf\u6adc\u6ad0\u6aeb\u6acf\u6acd\u6ade\u6b60\u6bb0\u6c0c\u7019\u7027\u7020\u7016\u702b\u7021\u7022\u7023\u7029\u7017\u7024\u701c\u702a\u720c\u720a\u7207\u7202\u7205\u72a5\u72a6\u72a4\u72a3\u72a1\u74cb\u74c5\u74b7\u74c3\u7516\u7660\u77c9\u77ca\u77c4\u77f1\u791d\u791b"],["f2a1","\u7921\u791c\u7917\u791e\u79b0\u7a67\u7a68\u7c33\u7c3c\u7c39\u7c2c\u7c3b\u7cec\u7cea\u7e76\u7e75\u7e78\u7e70\u7e77\u7e6f\u7e7a\u7e72\u7e74\u7e68\u7f4b\u7f4a\u7f83\u7f86\u7fb7\u7ffd\u7ffe\u8078\u81d7\u81d5\u8264\u8261\u8263\u85eb\u85f1\u85ed\u85d9\u85e1\u85e8\u85da\u85d7\u85ec\u85f2\u85f8\u85d8\u85df\u85e3\u85dc\u85d1\u85f0\u85e6\u85ef\u85de\u85e2\u8800\u87fa\u8803\u87f6\u87f7\u8809\u880c\u880b\u8806\u87fc\u8808\u87ff\u880a\u8802\u8962\u895a\u895b\u8957\u8961\u895c\u8958\u895d\u8959\u8988\u89b7\u89b6\u89f6\u8b50\u8b48\u8b4a\u8b40\u8b53\u8b56\u8b54\u8b4b\u8b55"],["f340","\u8b51\u8b42\u8b52\u8b57\u8c43\u8c77\u8c76\u8c9a\u8d06\u8d07\u8d09\u8dac\u8daa\u8dad\u8dab\u8e6d\u8e78\u8e73\u8e6a\u8e6f\u8e7b\u8ec2\u8f52\u8f51\u8f4f\u8f50\u8f53\u8fb4\u9140\u913f\u91b0\u91ad\u93de\u93c7\u93cf\u93c2\u93da\u93d0\u93f9\u93ec\u93cc\u93d9\u93a9\u93e6\u93ca\u93d4\u93ee\u93e3\u93d5\u93c4\u93ce\u93c0\u93d2\u93e7\u957d\u95da\u95db\u96e1\u9729\u972b\u972c\u9728\u9726"],["f3a1","\u97b3\u97b7\u97b6\u97dd\u97de\u97df\u985c\u9859\u985d\u9857\u98bf\u98bd\u98bb\u98be\u9948\u9947\u9943\u99a6\u99a7\u9a1a\u9a15\u9a25\u9a1d\u9a24\u9a1b\u9a22\u9a20\u9a27\u9a23\u9a1e\u9a1c\u9a14\u9ac2\u9b0b\u9b0a\u9b0e\u9b0c\u9b37\u9bea\u9beb\u9be0\u9bde\u9be4\u9be6\u9be2\u9bf0\u9bd4\u9bd7\u9bec\u9bdc\u9bd9\u9be5\u9bd5\u9be1\u9bda\u9d77\u9d81\u9d8a\u9d84\u9d88\u9d71\u9d80\u9d78\u9d86\u9d8b\u9d8c\u9d7d\u9d6b\u9d74\u9d75\u9d70\u9d69\u9d85\u9d73\u9d7b\u9d82\u9d6f\u9d79\u9d7f\u9d87\u9d68\u9e94\u9e91\u9ec0\u9efc\u9f2d\u9f40\u9f41\u9f4d\u9f56\u9f57\u9f58\u5337\u56b2"],["f440","\u56b5\u56b3\u58e3\u5b45\u5dc6\u5dc7\u5eee\u5eef\u5fc0\u5fc1\u61f9\u6517\u6516\u6515\u6513\u65df\u66e8\u66e3\u66e4\u6af3\u6af0\u6aea\u6ae8\u6af9\u6af1\u6aee\u6aef\u703c\u7035\u702f\u7037\u7034\u7031\u7042\u7038\u703f\u703a\u7039\u7040\u703b\u7033\u7041\u7213\u7214\u72a8\u737d\u737c\u74ba\u76ab\u76aa\u76be\u76ed\u77cc\u77ce\u77cf\u77cd\u77f2\u7925\u7923\u7927\u7928\u7924\u7929"],["f4a1","\u79b2\u7a6e\u7a6c\u7a6d\u7af7\u7c49\u7c48\u7c4a\u7c47\u7c45\u7cee\u7e7b\u7e7e\u7e81\u7e80\u7fba\u7fff\u8079\u81db\u81d9\u820b\u8268\u8269\u8622\u85ff\u8601\u85fe\u861b\u8600\u85f6\u8604\u8609\u8605\u860c\u85fd\u8819\u8810\u8811\u8817\u8813\u8816\u8963\u8966\u89b9\u89f7\u8b60\u8b6a\u8b5d\u8b68\u8b63\u8b65\u8b67\u8b6d\u8dae\u8e86\u8e88\u8e84\u8f59\u8f56\u8f57\u8f55\u8f58\u8f5a\u908d\u9143\u9141\u91b7\u91b5\u91b2\u91b3\u940b\u9413\u93fb\u9420\u940f\u9414\u93fe\u9415\u9410\u9428\u9419\u940d\u93f5\u9400\u93f7\u9407\u940e\u9416\u9412\u93fa\u9409\u93f8\u940a\u93ff"],["f540","\u93fc\u940c\u93f6\u9411\u9406\u95de\u95e0\u95df\u972e\u972f\u97b9\u97bb\u97fd\u97fe\u9860\u9862\u9863\u985f\u98c1\u98c2\u9950\u994e\u9959\u994c\u994b\u9953\u9a32\u9a34\u9a31\u9a2c\u9a2a\u9a36\u9a29\u9a2e\u9a38\u9a2d\u9ac7\u9aca\u9ac6\u9b10\u9b12\u9b11\u9c0b\u9c08\u9bf7\u9c05\u9c12\u9bf8\u9c40\u9c07\u9c0e\u9c06\u9c17\u9c14\u9c09\u9d9f\u9d99\u9da4\u9d9d\u9d92\u9d98\u9d90\u9d9b"],["f5a1","\u9da0\u9d94\u9d9c\u9daa\u9d97\u9da1\u9d9a\u9da2\u9da8\u9d9e\u9da3\u9dbf\u9da9\u9d96\u9da6\u9da7\u9e99\u9e9b\u9e9a\u9ee5\u9ee4\u9ee7\u9ee6\u9f30\u9f2e\u9f5b\u9f60\u9f5e\u9f5d\u9f59\u9f91\u513a\u5139\u5298\u5297\u56c3\u56bd\u56be\u5b48\u5b47\u5dcb\u5dcf\u5ef1\u61fd\u651b\u6b02\u6afc\u6b03\u6af8\u6b00\u7043\u7044\u704a\u7048\u7049\u7045\u7046\u721d\u721a\u7219\u737e\u7517\u766a\u77d0\u792d\u7931\u792f\u7c54\u7c53\u7cf2\u7e8a\u7e87\u7e88\u7e8b\u7e86\u7e8d\u7f4d\u7fbb\u8030\u81dd\u8618\u862a\u8626\u861f\u8623\u861c\u8619\u8627\u862e\u8621\u8620\u8629\u861e\u8625"],["f640","\u8829\u881d\u881b\u8820\u8824\u881c\u882b\u884a\u896d\u8969\u896e\u896b\u89fa\u8b79\u8b78\u8b45\u8b7a\u8b7b\u8d10\u8d14\u8daf\u8e8e\u8e8c\u8f5e\u8f5b\u8f5d\u9146\u9144\u9145\u91b9\u943f\u943b\u9436\u9429\u943d\u943c\u9430\u9439\u942a\u9437\u942c\u9440\u9431\u95e5\u95e4\u95e3\u9735\u973a\u97bf\u97e1\u9864\u98c9\u98c6\u98c0\u9958\u9956\u9a39\u9a3d\u9a46\u9a44\u9a42\u9a41\u9a3a"],["f6a1","\u9a3f\u9acd\u9b15\u9b17\u9b18\u9b16\u9b3a\u9b52\u9c2b\u9c1d\u9c1c\u9c2c\u9c23\u9c28\u9c29\u9c24\u9c21\u9db7\u9db6\u9dbc\u9dc1\u9dc7\u9dca\u9dcf\u9dbe\u9dc5\u9dc3\u9dbb\u9db5\u9dce\u9db9\u9dba\u9dac\u9dc8\u9db1\u9dad\u9dcc\u9db3\u9dcd\u9db2\u9e7a\u9e9c\u9eeb\u9eee\u9eed\u9f1b\u9f18\u9f1a\u9f31\u9f4e\u9f65\u9f64\u9f92\u4eb9\u56c6\u56c5\u56cb\u5971\u5b4b\u5b4c\u5dd5\u5dd1\u5ef2\u6521\u6520\u6526\u6522\u6b0b\u6b08\u6b09\u6c0d\u7055\u7056\u7057\u7052\u721e\u721f\u72a9\u737f\u74d8\u74d5\u74d9\u74d7\u766d\u76ad\u7935\u79b4\u7a70\u7a71\u7c57\u7c5c\u7c59\u7c5b\u7c5a"],["f740","\u7cf4\u7cf1\u7e91\u7f4f\u7f87\u81de\u826b\u8634\u8635\u8633\u862c\u8632\u8636\u882c\u8828\u8826\u882a\u8825\u8971\u89bf\u89be\u89fb\u8b7e\u8b84\u8b82\u8b86\u8b85\u8b7f\u8d15\u8e95\u8e94\u8e9a\u8e92\u8e90\u8e96\u8e97\u8f60\u8f62\u9147\u944c\u9450\u944a\u944b\u944f\u9447\u9445\u9448\u9449\u9446\u973f\u97e3\u986a\u9869\u98cb\u9954\u995b\u9a4e\u9a53\u9a54\u9a4c\u9a4f\u9a48\u9a4a"],["f7a1","\u9a49\u9a52\u9a50\u9ad0\u9b19\u9b2b\u9b3b\u9b56\u9b55\u9c46\u9c48\u9c3f\u9c44\u9c39\u9c33\u9c41\u9c3c\u9c37\u9c34\u9c32\u9c3d\u9c36\u9ddb\u9dd2\u9dde\u9dda\u9dcb\u9dd0\u9ddc\u9dd1\u9ddf\u9de9\u9dd9\u9dd8\u9dd6\u9df5\u9dd5\u9ddd\u9eb6\u9ef0\u9f35\u9f33\u9f32\u9f42\u9f6b\u9f95\u9fa2\u513d\u5299\u58e8\u58e7\u5972\u5b4d\u5dd8\u882f\u5f4f\u6201\u6203\u6204\u6529\u6525\u6596\u66eb\u6b11\u6b12\u6b0f\u6bca\u705b\u705a\u7222\u7382\u7381\u7383\u7670\u77d4\u7c67\u7c66\u7e95\u826c\u863a\u8640\u8639\u863c\u8631\u863b\u863e\u8830\u8832\u882e\u8833\u8976\u8974\u8973\u89fe"],["f840","\u8b8c\u8b8e\u8b8b\u8b88\u8c45\u8d19\u8e98\u8f64\u8f63\u91bc\u9462\u9455\u945d\u9457\u945e\u97c4\u97c5\u9800\u9a56\u9a59\u9b1e\u9b1f\u9b20\u9c52\u9c58\u9c50\u9c4a\u9c4d\u9c4b\u9c55\u9c59\u9c4c\u9c4e\u9dfb\u9df7\u9def\u9de3\u9deb\u9df8\u9de4\u9df6\u9de1\u9dee\u9de6\u9df2\u9df0\u9de2\u9dec\u9df4\u9df3\u9de8\u9ded\u9ec2\u9ed0\u9ef2\u9ef3\u9f06\u9f1c\u9f38\u9f37\u9f36\u9f43\u9f4f"],["f8a1","\u9f71\u9f70\u9f6e\u9f6f\u56d3\u56cd\u5b4e\u5c6d\u652d\u66ed\u66ee\u6b13\u705f\u7061\u705d\u7060\u7223\u74db\u74e5\u77d5\u7938\u79b7\u79b6\u7c6a\u7e97\u7f89\u826d\u8643\u8838\u8837\u8835\u884b\u8b94\u8b95\u8e9e\u8e9f\u8ea0\u8e9d\u91be\u91bd\u91c2\u946b\u9468\u9469\u96e5\u9746\u9743\u9747\u97c7\u97e5\u9a5e\u9ad5\u9b59\u9c63\u9c67\u9c66\u9c62\u9c5e\u9c60\u9e02\u9dfe\u9e07\u9e03\u9e06\u9e05\u9e00\u9e01\u9e09\u9dff\u9dfd\u9e04\u9ea0\u9f1e\u9f46\u9f74\u9f75\u9f76\u56d4\u652e\u65b8\u6b18\u6b19\u6b17\u6b1a\u7062\u7226\u72aa\u77d8\u77d9\u7939\u7c69\u7c6b\u7cf6\u7e9a"],["f940","\u7e98\u7e9b\u7e99\u81e0\u81e1\u8646\u8647\u8648\u8979\u897a\u897c\u897b\u89ff\u8b98\u8b99\u8ea5\u8ea4\u8ea3\u946e\u946d\u946f\u9471\u9473\u9749\u9872\u995f\u9c68\u9c6e\u9c6d\u9e0b\u9e0d\u9e10\u9e0f\u9e12\u9e11\u9ea1\u9ef5\u9f09\u9f47\u9f78\u9f7b\u9f7a\u9f79\u571e\u7066\u7c6f\u883c\u8db2\u8ea6\u91c3\u9474\u9478\u9476\u9475\u9a60\u9c74\u9c73\u9c71\u9c75\u9e14\u9e13\u9ef6\u9f0a"],["f9a1","\u9fa4\u7068\u7065\u7cf7\u866a\u883e\u883d\u883f\u8b9e\u8c9c\u8ea9\u8ec9\u974b\u9873\u9874\u98cc\u9961\u99ab\u9a64\u9a66\u9a67\u9b24\u9e15\u9e17\u9f48\u6207\u6b1e\u7227\u864c\u8ea8\u9482\u9480\u9481\u9a69\u9a68\u9b2e\u9e19\u7229\u864b\u8b9f\u9483\u9c79\u9eb7\u7675\u9a6b\u9c7a\u9e1d\u7069\u706a\u9ea4\u9f7e\u9f49\u9f98\u7881\u92b9\u88cf\u58bb\u6052\u7ca7\u5afa\u2554\u2566\u2557\u2560\u256c\u2563\u255a\u2569\u255d\u2552\u2564\u2555\u255e\u256a\u2561\u2558\u2567\u255b\u2553\u2565\u2556\u255f\u256b\u2562\u2559\u2568\u255c\u2551\u2550\u256d\u256e\u2570\u256f\u2593"]]')},56406:function(b){"use strict";b.exports=JSON.parse('[["0","\\u0000",127],["8ea1","\uff61",62],["a1a1","\u3000\u3001\u3002\uff0c\uff0e\u30fb\uff1a\uff1b\uff1f\uff01\u309b\u309c\xb4\uff40\xa8\uff3e\uffe3\uff3f\u30fd\u30fe\u309d\u309e\u3003\u4edd\u3005\u3006\u3007\u30fc\u2015\u2010\uff0f\uff3c\uff5e\u2225\uff5c\u2026\u2025\u2018\u2019\u201c\u201d\uff08\uff09\u3014\u3015\uff3b\uff3d\uff5b\uff5d\u3008",9,"\uff0b\uff0d\xb1\xd7\xf7\uff1d\u2260\uff1c\uff1e\u2266\u2267\u221e\u2234\u2642\u2640\xb0\u2032\u2033\u2103\uffe5\uff04\uffe0\uffe1\uff05\uff03\uff06\uff0a\uff20\xa7\u2606\u2605\u25cb\u25cf\u25ce\u25c7"],["a2a1","\u25c6\u25a1\u25a0\u25b3\u25b2\u25bd\u25bc\u203b\u3012\u2192\u2190\u2191\u2193\u3013"],["a2ba","\u2208\u220b\u2286\u2287\u2282\u2283\u222a\u2229"],["a2ca","\u2227\u2228\uffe2\u21d2\u21d4\u2200\u2203"],["a2dc","\u2220\u22a5\u2312\u2202\u2207\u2261\u2252\u226a\u226b\u221a\u223d\u221d\u2235\u222b\u222c"],["a2f2","\u212b\u2030\u266f\u266d\u266a\u2020\u2021\xb6"],["a2fe","\u25ef"],["a3b0","\uff10",9],["a3c1","\uff21",25],["a3e1","\uff41",25],["a4a1","\u3041",82],["a5a1","\u30a1",85],["a6a1","\u0391",16,"\u03a3",6],["a6c1","\u03b1",16,"\u03c3",6],["a7a1","\u0410",5,"\u0401\u0416",25],["a7d1","\u0430",5,"\u0451\u0436",25],["a8a1","\u2500\u2502\u250c\u2510\u2518\u2514\u251c\u252c\u2524\u2534\u253c\u2501\u2503\u250f\u2513\u251b\u2517\u2523\u2533\u252b\u253b\u254b\u2520\u252f\u2528\u2537\u253f\u251d\u2530\u2525\u2538\u2542"],["ada1","\u2460",19,"\u2160",9],["adc0","\u3349\u3314\u3322\u334d\u3318\u3327\u3303\u3336\u3351\u3357\u330d\u3326\u3323\u332b\u334a\u333b\u339c\u339d\u339e\u338e\u338f\u33c4\u33a1"],["addf","\u337b\u301d\u301f\u2116\u33cd\u2121\u32a4",4,"\u3231\u3232\u3239\u337e\u337d\u337c\u2252\u2261\u222b\u222e\u2211\u221a\u22a5\u2220\u221f\u22bf\u2235\u2229\u222a"],["b0a1","\u4e9c\u5516\u5a03\u963f\u54c0\u611b\u6328\u59f6\u9022\u8475\u831c\u7a50\u60aa\u63e1\u6e25\u65ed\u8466\u82a6\u9bf5\u6893\u5727\u65a1\u6271\u5b9b\u59d0\u867b\u98f4\u7d62\u7dbe\u9b8e\u6216\u7c9f\u88b7\u5b89\u5eb5\u6309\u6697\u6848\u95c7\u978d\u674f\u4ee5\u4f0a\u4f4d\u4f9d\u5049\u56f2\u5937\u59d4\u5a01\u5c09\u60df\u610f\u6170\u6613\u6905\u70ba\u754f\u7570\u79fb\u7dad\u7def\u80c3\u840e\u8863\u8b02\u9055\u907a\u533b\u4e95\u4ea5\u57df\u80b2\u90c1\u78ef\u4e00\u58f1\u6ea2\u9038\u7a32\u8328\u828b\u9c2f\u5141\u5370\u54bd\u54e1\u56e0\u59fb\u5f15\u98f2\u6deb\u80e4\u852d"],["b1a1","\u9662\u9670\u96a0\u97fb\u540b\u53f3\u5b87\u70cf\u7fbd\u8fc2\u96e8\u536f\u9d5c\u7aba\u4e11\u7893\u81fc\u6e26\u5618\u5504\u6b1d\u851a\u9c3b\u59e5\u53a9\u6d66\u74dc\u958f\u5642\u4e91\u904b\u96f2\u834f\u990c\u53e1\u55b6\u5b30\u5f71\u6620\u66f3\u6804\u6c38\u6cf3\u6d29\u745b\u76c8\u7a4e\u9834\u82f1\u885b\u8a60\u92ed\u6db2\u75ab\u76ca\u99c5\u60a6\u8b01\u8d8a\u95b2\u698e\u53ad\u5186\u5712\u5830\u5944\u5bb4\u5ef6\u6028\u63a9\u63f4\u6cbf\u6f14\u708e\u7114\u7159\u71d5\u733f\u7e01\u8276\u82d1\u8597\u9060\u925b\u9d1b\u5869\u65bc\u6c5a\u7525\u51f9\u592e\u5965\u5f80\u5fdc"],["b2a1","\u62bc\u65fa\u6a2a\u6b27\u6bb4\u738b\u7fc1\u8956\u9d2c\u9d0e\u9ec4\u5ca1\u6c96\u837b\u5104\u5c4b\u61b6\u81c6\u6876\u7261\u4e59\u4ffa\u5378\u6069\u6e29\u7a4f\u97f3\u4e0b\u5316\u4eee\u4f55\u4f3d\u4fa1\u4f73\u52a0\u53ef\u5609\u590f\u5ac1\u5bb6\u5be1\u79d1\u6687\u679c\u67b6\u6b4c\u6cb3\u706b\u73c2\u798d\u79be\u7a3c\u7b87\u82b1\u82db\u8304\u8377\u83ef\u83d3\u8766\u8ab2\u5629\u8ca8\u8fe6\u904e\u971e\u868a\u4fc4\u5ce8\u6211\u7259\u753b\u81e5\u82bd\u86fe\u8cc0\u96c5\u9913\u99d5\u4ecb\u4f1a\u89e3\u56de\u584a\u58ca\u5efb\u5feb\u602a\u6094\u6062\u61d0\u6212\u62d0\u6539"],["b3a1","\u9b41\u6666\u68b0\u6d77\u7070\u754c\u7686\u7d75\u82a5\u87f9\u958b\u968e\u8c9d\u51f1\u52be\u5916\u54b3\u5bb3\u5d16\u6168\u6982\u6daf\u788d\u84cb\u8857\u8a72\u93a7\u9ab8\u6d6c\u99a8\u86d9\u57a3\u67ff\u86ce\u920e\u5283\u5687\u5404\u5ed3\u62e1\u64b9\u683c\u6838\u6bbb\u7372\u78ba\u7a6b\u899a\u89d2\u8d6b\u8f03\u90ed\u95a3\u9694\u9769\u5b66\u5cb3\u697d\u984d\u984e\u639b\u7b20\u6a2b\u6a7f\u68b6\u9c0d\u6f5f\u5272\u559d\u6070\u62ec\u6d3b\u6e07\u6ed1\u845b\u8910\u8f44\u4e14\u9c39\u53f6\u691b\u6a3a\u9784\u682a\u515c\u7ac3\u84b2\u91dc\u938c\u565b\u9d28\u6822\u8305\u8431"],["b4a1","\u7ca5\u5208\u82c5\u74e6\u4e7e\u4f83\u51a0\u5bd2\u520a\u52d8\u52e7\u5dfb\u559a\u582a\u59e6\u5b8c\u5b98\u5bdb\u5e72\u5e79\u60a3\u611f\u6163\u61be\u63db\u6562\u67d1\u6853\u68fa\u6b3e\u6b53\u6c57\u6f22\u6f97\u6f45\u74b0\u7518\u76e3\u770b\u7aff\u7ba1\u7c21\u7de9\u7f36\u7ff0\u809d\u8266\u839e\u89b3\u8acc\u8cab\u9084\u9451\u9593\u9591\u95a2\u9665\u97d3\u9928\u8218\u4e38\u542b\u5cb8\u5dcc\u73a9\u764c\u773c\u5ca9\u7feb\u8d0b\u96c1\u9811\u9854\u9858\u4f01\u4f0e\u5371\u559c\u5668\u57fa\u5947\u5b09\u5bc4\u5c90\u5e0c\u5e7e\u5fcc\u63ee\u673a\u65d7\u65e2\u671f\u68cb\u68c4"],["b5a1","\u6a5f\u5e30\u6bc5\u6c17\u6c7d\u757f\u7948\u5b63\u7a00\u7d00\u5fbd\u898f\u8a18\u8cb4\u8d77\u8ecc\u8f1d\u98e2\u9a0e\u9b3c\u4e80\u507d\u5100\u5993\u5b9c\u622f\u6280\u64ec\u6b3a\u72a0\u7591\u7947\u7fa9\u87fb\u8abc\u8b70\u63ac\u83ca\u97a0\u5409\u5403\u55ab\u6854\u6a58\u8a70\u7827\u6775\u9ecd\u5374\u5ba2\u811a\u8650\u9006\u4e18\u4e45\u4ec7\u4f11\u53ca\u5438\u5bae\u5f13\u6025\u6551\u673d\u6c42\u6c72\u6ce3\u7078\u7403\u7a76\u7aae\u7b08\u7d1a\u7cfe\u7d66\u65e7\u725b\u53bb\u5c45\u5de8\u62d2\u62e0\u6319\u6e20\u865a\u8a31\u8ddd\u92f8\u6f01\u79a6\u9b5a\u4ea8\u4eab\u4eac"],["b6a1","\u4f9b\u4fa0\u50d1\u5147\u7af6\u5171\u51f6\u5354\u5321\u537f\u53eb\u55ac\u5883\u5ce1\u5f37\u5f4a\u602f\u6050\u606d\u631f\u6559\u6a4b\u6cc1\u72c2\u72ed\u77ef\u80f8\u8105\u8208\u854e\u90f7\u93e1\u97ff\u9957\u9a5a\u4ef0\u51dd\u5c2d\u6681\u696d\u5c40\u66f2\u6975\u7389\u6850\u7c81\u50c5\u52e4\u5747\u5dfe\u9326\u65a4\u6b23\u6b3d\u7434\u7981\u79bd\u7b4b\u7dca\u82b9\u83cc\u887f\u895f\u8b39\u8fd1\u91d1\u541f\u9280\u4e5d\u5036\u53e5\u533a\u72d7\u7396\u77e9\u82e6\u8eaf\u99c6\u99c8\u99d2\u5177\u611a\u865e\u55b0\u7a7a\u5076\u5bd3\u9047\u9685\u4e32\u6adb\u91e7\u5c51\u5c48"],["b7a1","\u6398\u7a9f\u6c93\u9774\u8f61\u7aaa\u718a\u9688\u7c82\u6817\u7e70\u6851\u936c\u52f2\u541b\u85ab\u8a13\u7fa4\u8ecd\u90e1\u5366\u8888\u7941\u4fc2\u50be\u5211\u5144\u5553\u572d\u73ea\u578b\u5951\u5f62\u5f84\u6075\u6176\u6167\u61a9\u63b2\u643a\u656c\u666f\u6842\u6e13\u7566\u7a3d\u7cfb\u7d4c\u7d99\u7e4b\u7f6b\u830e\u834a\u86cd\u8a08\u8a63\u8b66\u8efd\u981a\u9d8f\u82b8\u8fce\u9be8\u5287\u621f\u6483\u6fc0\u9699\u6841\u5091\u6b20\u6c7a\u6f54\u7a74\u7d50\u8840\u8a23\u6708\u4ef6\u5039\u5026\u5065\u517c\u5238\u5263\u55a7\u570f\u5805\u5acc\u5efa\u61b2\u61f8\u62f3\u6372"],["b8a1","\u691c\u6a29\u727d\u72ac\u732e\u7814\u786f\u7d79\u770c\u80a9\u898b\u8b19\u8ce2\u8ed2\u9063\u9375\u967a\u9855\u9a13\u9e78\u5143\u539f\u53b3\u5e7b\u5f26\u6e1b\u6e90\u7384\u73fe\u7d43\u8237\u8a00\u8afa\u9650\u4e4e\u500b\u53e4\u547c\u56fa\u59d1\u5b64\u5df1\u5eab\u5f27\u6238\u6545\u67af\u6e56\u72d0\u7cca\u88b4\u80a1\u80e1\u83f0\u864e\u8a87\u8de8\u9237\u96c7\u9867\u9f13\u4e94\u4e92\u4f0d\u5348\u5449\u543e\u5a2f\u5f8c\u5fa1\u609f\u68a7\u6a8e\u745a\u7881\u8a9e\u8aa4\u8b77\u9190\u4e5e\u9bc9\u4ea4\u4f7c\u4faf\u5019\u5016\u5149\u516c\u529f\u52b9\u52fe\u539a\u53e3\u5411"],["b9a1","\u540e\u5589\u5751\u57a2\u597d\u5b54\u5b5d\u5b8f\u5de5\u5de7\u5df7\u5e78\u5e83\u5e9a\u5eb7\u5f18\u6052\u614c\u6297\u62d8\u63a7\u653b\u6602\u6643\u66f4\u676d\u6821\u6897\u69cb\u6c5f\u6d2a\u6d69\u6e2f\u6e9d\u7532\u7687\u786c\u7a3f\u7ce0\u7d05\u7d18\u7d5e\u7db1\u8015\u8003\u80af\u80b1\u8154\u818f\u822a\u8352\u884c\u8861\u8b1b\u8ca2\u8cfc\u90ca\u9175\u9271\u783f\u92fc\u95a4\u964d\u9805\u9999\u9ad8\u9d3b\u525b\u52ab\u53f7\u5408\u58d5\u62f7\u6fe0\u8c6a\u8f5f\u9eb9\u514b\u523b\u544a\u56fd\u7a40\u9177\u9d60\u9ed2\u7344\u6f09\u8170\u7511\u5ffd\u60da\u9aa8\u72db\u8fbc"],["baa1","\u6b64\u9803\u4eca\u56f0\u5764\u58be\u5a5a\u6068\u61c7\u660f\u6606\u6839\u68b1\u6df7\u75d5\u7d3a\u826e\u9b42\u4e9b\u4f50\u53c9\u5506\u5d6f\u5de6\u5dee\u67fb\u6c99\u7473\u7802\u8a50\u9396\u88df\u5750\u5ea7\u632b\u50b5\u50ac\u518d\u6700\u54c9\u585e\u59bb\u5bb0\u5f69\u624d\u63a1\u683d\u6b73\u6e08\u707d\u91c7\u7280\u7815\u7826\u796d\u658e\u7d30\u83dc\u88c1\u8f09\u969b\u5264\u5728\u6750\u7f6a\u8ca1\u51b4\u5742\u962a\u583a\u698a\u80b4\u54b2\u5d0e\u57fc\u7895\u9dfa\u4f5c\u524a\u548b\u643e\u6628\u6714\u67f5\u7a84\u7b56\u7d22\u932f\u685c\u9bad\u7b39\u5319\u518a\u5237"],["bba1","\u5bdf\u62f6\u64ae\u64e6\u672d\u6bba\u85a9\u96d1\u7690\u9bd6\u634c\u9306\u9bab\u76bf\u6652\u4e09\u5098\u53c2\u5c71\u60e8\u6492\u6563\u685f\u71e6\u73ca\u7523\u7b97\u7e82\u8695\u8b83\u8cdb\u9178\u9910\u65ac\u66ab\u6b8b\u4ed5\u4ed4\u4f3a\u4f7f\u523a\u53f8\u53f2\u55e3\u56db\u58eb\u59cb\u59c9\u59ff\u5b50\u5c4d\u5e02\u5e2b\u5fd7\u601d\u6307\u652f\u5b5c\u65af\u65bd\u65e8\u679d\u6b62\u6b7b\u6c0f\u7345\u7949\u79c1\u7cf8\u7d19\u7d2b\u80a2\u8102\u81f3\u8996\u8a5e\u8a69\u8a66\u8a8c\u8aee\u8cc7\u8cdc\u96cc\u98fc\u6b6f\u4e8b\u4f3c\u4f8d\u5150\u5b57\u5bfa\u6148\u6301\u6642"],["bca1","\u6b21\u6ecb\u6cbb\u723e\u74bd\u75d4\u78c1\u793a\u800c\u8033\u81ea\u8494\u8f9e\u6c50\u9e7f\u5f0f\u8b58\u9d2b\u7afa\u8ef8\u5b8d\u96eb\u4e03\u53f1\u57f7\u5931\u5ac9\u5ba4\u6089\u6e7f\u6f06\u75be\u8cea\u5b9f\u8500\u7be0\u5072\u67f4\u829d\u5c61\u854a\u7e1e\u820e\u5199\u5c04\u6368\u8d66\u659c\u716e\u793e\u7d17\u8005\u8b1d\u8eca\u906e\u86c7\u90aa\u501f\u52fa\u5c3a\u6753\u707c\u7235\u914c\u91c8\u932b\u82e5\u5bc2\u5f31\u60f9\u4e3b\u53d6\u5b88\u624b\u6731\u6b8a\u72e9\u73e0\u7a2e\u816b\u8da3\u9152\u9996\u5112\u53d7\u546a\u5bff\u6388\u6a39\u7dac\u9700\u56da\u53ce\u5468"],["bda1","\u5b97\u5c31\u5dde\u4fee\u6101\u62fe\u6d32\u79c0\u79cb\u7d42\u7e4d\u7fd2\u81ed\u821f\u8490\u8846\u8972\u8b90\u8e74\u8f2f\u9031\u914b\u916c\u96c6\u919c\u4ec0\u4f4f\u5145\u5341\u5f93\u620e\u67d4\u6c41\u6e0b\u7363\u7e26\u91cd\u9283\u53d4\u5919\u5bbf\u6dd1\u795d\u7e2e\u7c9b\u587e\u719f\u51fa\u8853\u8ff0\u4fca\u5cfb\u6625\u77ac\u7ae3\u821c\u99ff\u51c6\u5faa\u65ec\u696f\u6b89\u6df3\u6e96\u6f64\u76fe\u7d14\u5de1\u9075\u9187\u9806\u51e6\u521d\u6240\u6691\u66d9\u6e1a\u5eb6\u7dd2\u7f72\u66f8\u85af\u85f7\u8af8\u52a9\u53d9\u5973\u5e8f\u5f90\u6055\u92e4\u9664\u50b7\u511f"],["bea1","\u52dd\u5320\u5347\u53ec\u54e8\u5546\u5531\u5617\u5968\u59be\u5a3c\u5bb5\u5c06\u5c0f\u5c11\u5c1a\u5e84\u5e8a\u5ee0\u5f70\u627f\u6284\u62db\u638c\u6377\u6607\u660c\u662d\u6676\u677e\u68a2\u6a1f\u6a35\u6cbc\u6d88\u6e09\u6e58\u713c\u7126\u7167\u75c7\u7701\u785d\u7901\u7965\u79f0\u7ae0\u7b11\u7ca7\u7d39\u8096\u83d6\u848b\u8549\u885d\u88f3\u8a1f\u8a3c\u8a54\u8a73\u8c61\u8cde\u91a4\u9266\u937e\u9418\u969c\u9798\u4e0a\u4e08\u4e1e\u4e57\u5197\u5270\u57ce\u5834\u58cc\u5b22\u5e38\u60c5\u64fe\u6761\u6756\u6d44\u72b6\u7573\u7a63\u84b8\u8b72\u91b8\u9320\u5631\u57f4\u98fe"],["bfa1","\u62ed\u690d\u6b96\u71ed\u7e54\u8077\u8272\u89e6\u98df\u8755\u8fb1\u5c3b\u4f38\u4fe1\u4fb5\u5507\u5a20\u5bdd\u5be9\u5fc3\u614e\u632f\u65b0\u664b\u68ee\u699b\u6d78\u6df1\u7533\u75b9\u771f\u795e\u79e6\u7d33\u81e3\u82af\u85aa\u89aa\u8a3a\u8eab\u8f9b\u9032\u91dd\u9707\u4eba\u4ec1\u5203\u5875\u58ec\u5c0b\u751a\u5c3d\u814e\u8a0a\u8fc5\u9663\u976d\u7b25\u8acf\u9808\u9162\u56f3\u53a8\u9017\u5439\u5782\u5e25\u63a8\u6c34\u708a\u7761\u7c8b\u7fe0\u8870\u9042\u9154\u9310\u9318\u968f\u745e\u9ac4\u5d07\u5d69\u6570\u67a2\u8da8\u96db\u636e\u6749\u6919\u83c5\u9817\u96c0\u88fe"],["c0a1","\u6f84\u647a\u5bf8\u4e16\u702c\u755d\u662f\u51c4\u5236\u52e2\u59d3\u5f81\u6027\u6210\u653f\u6574\u661f\u6674\u68f2\u6816\u6b63\u6e05\u7272\u751f\u76db\u7cbe\u8056\u58f0\u88fd\u897f\u8aa0\u8a93\u8acb\u901d\u9192\u9752\u9759\u6589\u7a0e\u8106\u96bb\u5e2d\u60dc\u621a\u65a5\u6614\u6790\u77f3\u7a4d\u7c4d\u7e3e\u810a\u8cac\u8d64\u8de1\u8e5f\u78a9\u5207\u62d9\u63a5\u6442\u6298\u8a2d\u7a83\u7bc0\u8aac\u96ea\u7d76\u820c\u8749\u4ed9\u5148\u5343\u5360\u5ba3\u5c02\u5c16\u5ddd\u6226\u6247\u64b0\u6813\u6834\u6cc9\u6d45\u6d17\u67d3\u6f5c\u714e\u717d\u65cb\u7a7f\u7bad\u7dda"],["c1a1","\u7e4a\u7fa8\u817a\u821b\u8239\u85a6\u8a6e\u8cce\u8df5\u9078\u9077\u92ad\u9291\u9583\u9bae\u524d\u5584\u6f38\u7136\u5168\u7985\u7e55\u81b3\u7cce\u564c\u5851\u5ca8\u63aa\u66fe\u66fd\u695a\u72d9\u758f\u758e\u790e\u7956\u79df\u7c97\u7d20\u7d44\u8607\u8a34\u963b\u9061\u9f20\u50e7\u5275\u53cc\u53e2\u5009\u55aa\u58ee\u594f\u723d\u5b8b\u5c64\u531d\u60e3\u60f3\u635c\u6383\u633f\u63bb\u64cd\u65e9\u66f9\u5de3\u69cd\u69fd\u6f15\u71e5\u4e89\u75e9\u76f8\u7a93\u7cdf\u7dcf\u7d9c\u8061\u8349\u8358\u846c\u84bc\u85fb\u88c5\u8d70\u9001\u906d\u9397\u971c\u9a12\u50cf\u5897\u618e"],["c2a1","\u81d3\u8535\u8d08\u9020\u4fc3\u5074\u5247\u5373\u606f\u6349\u675f\u6e2c\u8db3\u901f\u4fd7\u5c5e\u8cca\u65cf\u7d9a\u5352\u8896\u5176\u63c3\u5b58\u5b6b\u5c0a\u640d\u6751\u905c\u4ed6\u591a\u592a\u6c70\u8a51\u553e\u5815\u59a5\u60f0\u6253\u67c1\u8235\u6955\u9640\u99c4\u9a28\u4f53\u5806\u5bfe\u8010\u5cb1\u5e2f\u5f85\u6020\u614b\u6234\u66ff\u6cf0\u6ede\u80ce\u817f\u82d4\u888b\u8cb8\u9000\u902e\u968a\u9edb\u9bdb\u4ee3\u53f0\u5927\u7b2c\u918d\u984c\u9df9\u6edd\u7027\u5353\u5544\u5b85\u6258\u629e\u62d3\u6ca2\u6fef\u7422\u8a17\u9438\u6fc1\u8afe\u8338\u51e7\u86f8\u53ea"],["c3a1","\u53e9\u4f46\u9054\u8fb0\u596a\u8131\u5dfd\u7aea\u8fbf\u68da\u8c37\u72f8\u9c48\u6a3d\u8ab0\u4e39\u5358\u5606\u5766\u62c5\u63a2\u65e6\u6b4e\u6de1\u6e5b\u70ad\u77ed\u7aef\u7baa\u7dbb\u803d\u80c6\u86cb\u8a95\u935b\u56e3\u58c7\u5f3e\u65ad\u6696\u6a80\u6bb5\u7537\u8ac7\u5024\u77e5\u5730\u5f1b\u6065\u667a\u6c60\u75f4\u7a1a\u7f6e\u81f4\u8718\u9045\u99b3\u7bc9\u755c\u7af9\u7b51\u84c4\u9010\u79e9\u7a92\u8336\u5ae1\u7740\u4e2d\u4ef2\u5b99\u5fe0\u62bd\u663c\u67f1\u6ce8\u866b\u8877\u8a3b\u914e\u92f3\u99d0\u6a17\u7026\u732a\u82e7\u8457\u8caf\u4e01\u5146\u51cb\u558b\u5bf5"],["c4a1","\u5e16\u5e33\u5e81\u5f14\u5f35\u5f6b\u5fb4\u61f2\u6311\u66a2\u671d\u6f6e\u7252\u753a\u773a\u8074\u8139\u8178\u8776\u8abf\u8adc\u8d85\u8df3\u929a\u9577\u9802\u9ce5\u52c5\u6357\u76f4\u6715\u6c88\u73cd\u8cc3\u93ae\u9673\u6d25\u589c\u690e\u69cc\u8ffd\u939a\u75db\u901a\u585a\u6802\u63b4\u69fb\u4f43\u6f2c\u67d8\u8fbb\u8526\u7db4\u9354\u693f\u6f70\u576a\u58f7\u5b2c\u7d2c\u722a\u540a\u91e3\u9db4\u4ead\u4f4e\u505c\u5075\u5243\u8c9e\u5448\u5824\u5b9a\u5e1d\u5e95\u5ead\u5ef7\u5f1f\u608c\u62b5\u633a\u63d0\u68af\u6c40\u7887\u798e\u7a0b\u7de0\u8247\u8a02\u8ae6\u8e44\u9013"],["c5a1","\u90b8\u912d\u91d8\u9f0e\u6ce5\u6458\u64e2\u6575\u6ef4\u7684\u7b1b\u9069\u93d1\u6eba\u54f2\u5fb9\u64a4\u8f4d\u8fed\u9244\u5178\u586b\u5929\u5c55\u5e97\u6dfb\u7e8f\u751c\u8cbc\u8ee2\u985b\u70b9\u4f1d\u6bbf\u6fb1\u7530\u96fb\u514e\u5410\u5835\u5857\u59ac\u5c60\u5f92\u6597\u675c\u6e21\u767b\u83df\u8ced\u9014\u90fd\u934d\u7825\u783a\u52aa\u5ea6\u571f\u5974\u6012\u5012\u515a\u51ac\u51cd\u5200\u5510\u5854\u5858\u5957\u5b95\u5cf6\u5d8b\u60bc\u6295\u642d\u6771\u6843\u68bc\u68df\u76d7\u6dd8\u6e6f\u6d9b\u706f\u71c8\u5f53\u75d8\u7977\u7b49\u7b54\u7b52\u7cd6\u7d71\u5230"],["c6a1","\u8463\u8569\u85e4\u8a0e\u8b04\u8c46\u8e0f\u9003\u900f\u9419\u9676\u982d\u9a30\u95d8\u50cd\u52d5\u540c\u5802\u5c0e\u61a7\u649e\u6d1e\u77b3\u7ae5\u80f4\u8404\u9053\u9285\u5ce0\u9d07\u533f\u5f97\u5fb3\u6d9c\u7279\u7763\u79bf\u7be4\u6bd2\u72ec\u8aad\u6803\u6a61\u51f8\u7a81\u6934\u5c4a\u9cf6\u82eb\u5bc5\u9149\u701e\u5678\u5c6f\u60c7\u6566\u6c8c\u8c5a\u9041\u9813\u5451\u66c7\u920d\u5948\u90a3\u5185\u4e4d\u51ea\u8599\u8b0e\u7058\u637a\u934b\u6962\u99b4\u7e04\u7577\u5357\u6960\u8edf\u96e3\u6c5d\u4e8c\u5c3c\u5f10\u8fe9\u5302\u8cd1\u8089\u8679\u5eff\u65e5\u4e73\u5165"],["c7a1","\u5982\u5c3f\u97ee\u4efb\u598a\u5fcd\u8a8d\u6fe1\u79b0\u7962\u5be7\u8471\u732b\u71b1\u5e74\u5ff5\u637b\u649a\u71c3\u7c98\u4e43\u5efc\u4e4b\u57dc\u56a2\u60a9\u6fc3\u7d0d\u80fd\u8133\u81bf\u8fb2\u8997\u86a4\u5df4\u628a\u64ad\u8987\u6777\u6ce2\u6d3e\u7436\u7834\u5a46\u7f75\u82ad\u99ac\u4ff3\u5ec3\u62dd\u6392\u6557\u676f\u76c3\u724c\u80cc\u80ba\u8f29\u914d\u500d\u57f9\u5a92\u6885\u6973\u7164\u72fd\u8cb7\u58f2\u8ce0\u966a\u9019\u877f\u79e4\u77e7\u8429\u4f2f\u5265\u535a\u62cd\u67cf\u6cca\u767d\u7b94\u7c95\u8236\u8584\u8feb\u66dd\u6f20\u7206\u7e1b\u83ab\u99c1\u9ea6"],["c8a1","\u51fd\u7bb1\u7872\u7bb8\u8087\u7b48\u6ae8\u5e61\u808c\u7551\u7560\u516b\u9262\u6e8c\u767a\u9197\u9aea\u4f10\u7f70\u629c\u7b4f\u95a5\u9ce9\u567a\u5859\u86e4\u96bc\u4f34\u5224\u534a\u53cd\u53db\u5e06\u642c\u6591\u677f\u6c3e\u6c4e\u7248\u72af\u73ed\u7554\u7e41\u822c\u85e9\u8ca9\u7bc4\u91c6\u7169\u9812\u98ef\u633d\u6669\u756a\u76e4\u78d0\u8543\u86ee\u532a\u5351\u5426\u5983\u5e87\u5f7c\u60b2\u6249\u6279\u62ab\u6590\u6bd4\u6ccc\u75b2\u76ae\u7891\u79d8\u7dcb\u7f77\u80a5\u88ab\u8ab9\u8cbb\u907f\u975e\u98db\u6a0b\u7c38\u5099\u5c3e\u5fae\u6787\u6bd8\u7435\u7709\u7f8e"],["c9a1","\u9f3b\u67ca\u7a17\u5339\u758b\u9aed\u5f66\u819d\u83f1\u8098\u5f3c\u5fc5\u7562\u7b46\u903c\u6867\u59eb\u5a9b\u7d10\u767e\u8b2c\u4ff5\u5f6a\u6a19\u6c37\u6f02\u74e2\u7968\u8868\u8a55\u8c79\u5edf\u63cf\u75c5\u79d2\u82d7\u9328\u92f2\u849c\u86ed\u9c2d\u54c1\u5f6c\u658c\u6d5c\u7015\u8ca7\u8cd3\u983b\u654f\u74f6\u4e0d\u4ed8\u57e0\u592b\u5a66\u5bcc\u51a8\u5e03\u5e9c\u6016\u6276\u6577\u65a7\u666e\u6d6e\u7236\u7b26\u8150\u819a\u8299\u8b5c\u8ca0\u8ce6\u8d74\u961c\u9644\u4fae\u64ab\u6b66\u821e\u8461\u856a\u90e8\u5c01\u6953\u98a8\u847a\u8557\u4f0f\u526f\u5fa9\u5e45\u670d"],["caa1","\u798f\u8179\u8907\u8986\u6df5\u5f17\u6255\u6cb8\u4ecf\u7269\u9b92\u5206\u543b\u5674\u58b3\u61a4\u626e\u711a\u596e\u7c89\u7cde\u7d1b\u96f0\u6587\u805e\u4e19\u4f75\u5175\u5840\u5e63\u5e73\u5f0a\u67c4\u4e26\u853d\u9589\u965b\u7c73\u9801\u50fb\u58c1\u7656\u78a7\u5225\u77a5\u8511\u7b86\u504f\u5909\u7247\u7bc7\u7de8\u8fba\u8fd4\u904d\u4fbf\u52c9\u5a29\u5f01\u97ad\u4fdd\u8217\u92ea\u5703\u6355\u6b69\u752b\u88dc\u8f14\u7a42\u52df\u5893\u6155\u620a\u66ae\u6bcd\u7c3f\u83e9\u5023\u4ff8\u5305\u5446\u5831\u5949\u5b9d\u5cf0\u5cef\u5d29\u5e96\u62b1\u6367\u653e\u65b9\u670b"],["cba1","\u6cd5\u6ce1\u70f9\u7832\u7e2b\u80de\u82b3\u840c\u84ec\u8702\u8912\u8a2a\u8c4a\u90a6\u92d2\u98fd\u9cf3\u9d6c\u4e4f\u4ea1\u508d\u5256\u574a\u59a8\u5e3d\u5fd8\u5fd9\u623f\u66b4\u671b\u67d0\u68d2\u5192\u7d21\u80aa\u81a8\u8b00\u8c8c\u8cbf\u927e\u9632\u5420\u982c\u5317\u50d5\u535c\u58a8\u64b2\u6734\u7267\u7766\u7a46\u91e6\u52c3\u6ca1\u6b86\u5800\u5e4c\u5954\u672c\u7ffb\u51e1\u76c6\u6469\u78e8\u9b54\u9ebb\u57cb\u59b9\u6627\u679a\u6bce\u54e9\u69d9\u5e55\u819c\u6795\u9baa\u67fe\u9c52\u685d\u4ea6\u4fe3\u53c8\u62b9\u672b\u6cab\u8fc4\u4fad\u7e6d\u9ebf\u4e07\u6162\u6e80"],["cca1","\u6f2b\u8513\u5473\u672a\u9b45\u5df3\u7b95\u5cac\u5bc6\u871c\u6e4a\u84d1\u7a14\u8108\u5999\u7c8d\u6c11\u7720\u52d9\u5922\u7121\u725f\u77db\u9727\u9d61\u690b\u5a7f\u5a18\u51a5\u540d\u547d\u660e\u76df\u8ff7\u9298\u9cf4\u59ea\u725d\u6ec5\u514d\u68c9\u7dbf\u7dec\u9762\u9eba\u6478\u6a21\u8302\u5984\u5b5f\u6bdb\u731b\u76f2\u7db2\u8017\u8499\u5132\u6728\u9ed9\u76ee\u6762\u52ff\u9905\u5c24\u623b\u7c7e\u8cb0\u554f\u60b6\u7d0b\u9580\u5301\u4e5f\u51b6\u591c\u723a\u8036\u91ce\u5f25\u77e2\u5384\u5f79\u7d04\u85ac\u8a33\u8e8d\u9756\u67f3\u85ae\u9453\u6109\u6108\u6cb9\u7652"],["cda1","\u8aed\u8f38\u552f\u4f51\u512a\u52c7\u53cb\u5ba5\u5e7d\u60a0\u6182\u63d6\u6709\u67da\u6e67\u6d8c\u7336\u7337\u7531\u7950\u88d5\u8a98\u904a\u9091\u90f5\u96c4\u878d\u5915\u4e88\u4f59\u4e0e\u8a89\u8f3f\u9810\u50ad\u5e7c\u5996\u5bb9\u5eb8\u63da\u63fa\u64c1\u66dc\u694a\u69d8\u6d0b\u6eb6\u7194\u7528\u7aaf\u7f8a\u8000\u8449\u84c9\u8981\u8b21\u8e0a\u9065\u967d\u990a\u617e\u6291\u6b32\u6c83\u6d74\u7fcc\u7ffc\u6dc0\u7f85\u87ba\u88f8\u6765\u83b1\u983c\u96f7\u6d1b\u7d61\u843d\u916a\u4e71\u5375\u5d50\u6b04\u6feb\u85cd\u862d\u89a7\u5229\u540f\u5c65\u674e\u68a8\u7406\u7483"],["cea1","\u75e2\u88cf\u88e1\u91cc\u96e2\u9678\u5f8b\u7387\u7acb\u844e\u63a0\u7565\u5289\u6d41\u6e9c\u7409\u7559\u786b\u7c92\u9686\u7adc\u9f8d\u4fb6\u616e\u65c5\u865c\u4e86\u4eae\u50da\u4e21\u51cc\u5bee\u6599\u6881\u6dbc\u731f\u7642\u77ad\u7a1c\u7ce7\u826f\u8ad2\u907c\u91cf\u9675\u9818\u529b\u7dd1\u502b\u5398\u6797\u6dcb\u71d0\u7433\u81e8\u8f2a\u96a3\u9c57\u9e9f\u7460\u5841\u6d99\u7d2f\u985e\u4ee4\u4f36\u4f8b\u51b7\u52b1\u5dba\u601c\u73b2\u793c\u82d3\u9234\u96b7\u96f6\u970a\u9e97\u9f62\u66a6\u6b74\u5217\u52a3\u70c8\u88c2\u5ec9\u604b\u6190\u6f23\u7149\u7c3e\u7df4\u806f"],["cfa1","\u84ee\u9023\u932c\u5442\u9b6f\u6ad3\u7089\u8cc2\u8def\u9732\u52b4\u5a41\u5eca\u5f04\u6717\u697c\u6994\u6d6a\u6f0f\u7262\u72fc\u7bed\u8001\u807e\u874b\u90ce\u516d\u9e93\u7984\u808b\u9332\u8ad6\u502d\u548c\u8a71\u6b6a\u8cc4\u8107\u60d1\u67a0\u9df2\u4e99\u4e98\u9c10\u8a6b\u85c1\u8568\u6900\u6e7e\u7897\u8155"],["d0a1","\u5f0c\u4e10\u4e15\u4e2a\u4e31\u4e36\u4e3c\u4e3f\u4e42\u4e56\u4e58\u4e82\u4e85\u8c6b\u4e8a\u8212\u5f0d\u4e8e\u4e9e\u4e9f\u4ea0\u4ea2\u4eb0\u4eb3\u4eb6\u4ece\u4ecd\u4ec4\u4ec6\u4ec2\u4ed7\u4ede\u4eed\u4edf\u4ef7\u4f09\u4f5a\u4f30\u4f5b\u4f5d\u4f57\u4f47\u4f76\u4f88\u4f8f\u4f98\u4f7b\u4f69\u4f70\u4f91\u4f6f\u4f86\u4f96\u5118\u4fd4\u4fdf\u4fce\u4fd8\u4fdb\u4fd1\u4fda\u4fd0\u4fe4\u4fe5\u501a\u5028\u5014\u502a\u5025\u5005\u4f1c\u4ff6\u5021\u5029\u502c\u4ffe\u4fef\u5011\u5006\u5043\u5047\u6703\u5055\u5050\u5048\u505a\u5056\u506c\u5078\u5080\u509a\u5085\u50b4\u50b2"],["d1a1","\u50c9\u50ca\u50b3\u50c2\u50d6\u50de\u50e5\u50ed\u50e3\u50ee\u50f9\u50f5\u5109\u5101\u5102\u5116\u5115\u5114\u511a\u5121\u513a\u5137\u513c\u513b\u513f\u5140\u5152\u514c\u5154\u5162\u7af8\u5169\u516a\u516e\u5180\u5182\u56d8\u518c\u5189\u518f\u5191\u5193\u5195\u5196\u51a4\u51a6\u51a2\u51a9\u51aa\u51ab\u51b3\u51b1\u51b2\u51b0\u51b5\u51bd\u51c5\u51c9\u51db\u51e0\u8655\u51e9\u51ed\u51f0\u51f5\u51fe\u5204\u520b\u5214\u520e\u5227\u522a\u522e\u5233\u5239\u524f\u5244\u524b\u524c\u525e\u5254\u526a\u5274\u5269\u5273\u527f\u527d\u528d\u5294\u5292\u5271\u5288\u5291\u8fa8"],["d2a1","\u8fa7\u52ac\u52ad\u52bc\u52b5\u52c1\u52cd\u52d7\u52de\u52e3\u52e6\u98ed\u52e0\u52f3\u52f5\u52f8\u52f9\u5306\u5308\u7538\u530d\u5310\u530f\u5315\u531a\u5323\u532f\u5331\u5333\u5338\u5340\u5346\u5345\u4e17\u5349\u534d\u51d6\u535e\u5369\u536e\u5918\u537b\u5377\u5382\u5396\u53a0\u53a6\u53a5\u53ae\u53b0\u53b6\u53c3\u7c12\u96d9\u53df\u66fc\u71ee\u53ee\u53e8\u53ed\u53fa\u5401\u543d\u5440\u542c\u542d\u543c\u542e\u5436\u5429\u541d\u544e\u548f\u5475\u548e\u545f\u5471\u5477\u5470\u5492\u547b\u5480\u5476\u5484\u5490\u5486\u54c7\u54a2\u54b8\u54a5\u54ac\u54c4\u54c8\u54a8"],["d3a1","\u54ab\u54c2\u54a4\u54be\u54bc\u54d8\u54e5\u54e6\u550f\u5514\u54fd\u54ee\u54ed\u54fa\u54e2\u5539\u5540\u5563\u554c\u552e\u555c\u5545\u5556\u5557\u5538\u5533\u555d\u5599\u5580\u54af\u558a\u559f\u557b\u557e\u5598\u559e\u55ae\u557c\u5583\u55a9\u5587\u55a8\u55da\u55c5\u55df\u55c4\u55dc\u55e4\u55d4\u5614\u55f7\u5616\u55fe\u55fd\u561b\u55f9\u564e\u5650\u71df\u5634\u5636\u5632\u5638\u566b\u5664\u562f\u566c\u566a\u5686\u5680\u568a\u56a0\u5694\u568f\u56a5\u56ae\u56b6\u56b4\u56c2\u56bc\u56c1\u56c3\u56c0\u56c8\u56ce\u56d1\u56d3\u56d7\u56ee\u56f9\u5700\u56ff\u5704\u5709"],["d4a1","\u5708\u570b\u570d\u5713\u5718\u5716\u55c7\u571c\u5726\u5737\u5738\u574e\u573b\u5740\u574f\u5769\u57c0\u5788\u5761\u577f\u5789\u5793\u57a0\u57b3\u57a4\u57aa\u57b0\u57c3\u57c6\u57d4\u57d2\u57d3\u580a\u57d6\u57e3\u580b\u5819\u581d\u5872\u5821\u5862\u584b\u5870\u6bc0\u5852\u583d\u5879\u5885\u58b9\u589f\u58ab\u58ba\u58de\u58bb\u58b8\u58ae\u58c5\u58d3\u58d1\u58d7\u58d9\u58d8\u58e5\u58dc\u58e4\u58df\u58ef\u58fa\u58f9\u58fb\u58fc\u58fd\u5902\u590a\u5910\u591b\u68a6\u5925\u592c\u592d\u5932\u5938\u593e\u7ad2\u5955\u5950\u594e\u595a\u5958\u5962\u5960\u5967\u596c\u5969"],["d5a1","\u5978\u5981\u599d\u4f5e\u4fab\u59a3\u59b2\u59c6\u59e8\u59dc\u598d\u59d9\u59da\u5a25\u5a1f\u5a11\u5a1c\u5a09\u5a1a\u5a40\u5a6c\u5a49\u5a35\u5a36\u5a62\u5a6a\u5a9a\u5abc\u5abe\u5acb\u5ac2\u5abd\u5ae3\u5ad7\u5ae6\u5ae9\u5ad6\u5afa\u5afb\u5b0c\u5b0b\u5b16\u5b32\u5ad0\u5b2a\u5b36\u5b3e\u5b43\u5b45\u5b40\u5b51\u5b55\u5b5a\u5b5b\u5b65\u5b69\u5b70\u5b73\u5b75\u5b78\u6588\u5b7a\u5b80\u5b83\u5ba6\u5bb8\u5bc3\u5bc7\u5bc9\u5bd4\u5bd0\u5be4\u5be6\u5be2\u5bde\u5be5\u5beb\u5bf0\u5bf6\u5bf3\u5c05\u5c07\u5c08\u5c0d\u5c13\u5c20\u5c22\u5c28\u5c38\u5c39\u5c41\u5c46\u5c4e\u5c53"],["d6a1","\u5c50\u5c4f\u5b71\u5c6c\u5c6e\u4e62\u5c76\u5c79\u5c8c\u5c91\u5c94\u599b\u5cab\u5cbb\u5cb6\u5cbc\u5cb7\u5cc5\u5cbe\u5cc7\u5cd9\u5ce9\u5cfd\u5cfa\u5ced\u5d8c\u5cea\u5d0b\u5d15\u5d17\u5d5c\u5d1f\u5d1b\u5d11\u5d14\u5d22\u5d1a\u5d19\u5d18\u5d4c\u5d52\u5d4e\u5d4b\u5d6c\u5d73\u5d76\u5d87\u5d84\u5d82\u5da2\u5d9d\u5dac\u5dae\u5dbd\u5d90\u5db7\u5dbc\u5dc9\u5dcd\u5dd3\u5dd2\u5dd6\u5ddb\u5deb\u5df2\u5df5\u5e0b\u5e1a\u5e19\u5e11\u5e1b\u5e36\u5e37\u5e44\u5e43\u5e40\u5e4e\u5e57\u5e54\u5e5f\u5e62\u5e64\u5e47\u5e75\u5e76\u5e7a\u9ebc\u5e7f\u5ea0\u5ec1\u5ec2\u5ec8\u5ed0\u5ecf"],["d7a1","\u5ed6\u5ee3\u5edd\u5eda\u5edb\u5ee2\u5ee1\u5ee8\u5ee9\u5eec\u5ef1\u5ef3\u5ef0\u5ef4\u5ef8\u5efe\u5f03\u5f09\u5f5d\u5f5c\u5f0b\u5f11\u5f16\u5f29\u5f2d\u5f38\u5f41\u5f48\u5f4c\u5f4e\u5f2f\u5f51\u5f56\u5f57\u5f59\u5f61\u5f6d\u5f73\u5f77\u5f83\u5f82\u5f7f\u5f8a\u5f88\u5f91\u5f87\u5f9e\u5f99\u5f98\u5fa0\u5fa8\u5fad\u5fbc\u5fd6\u5ffb\u5fe4\u5ff8\u5ff1\u5fdd\u60b3\u5fff\u6021\u6060\u6019\u6010\u6029\u600e\u6031\u601b\u6015\u602b\u6026\u600f\u603a\u605a\u6041\u606a\u6077\u605f\u604a\u6046\u604d\u6063\u6043\u6064\u6042\u606c\u606b\u6059\u6081\u608d\u60e7\u6083\u609a"],["d8a1","\u6084\u609b\u6096\u6097\u6092\u60a7\u608b\u60e1\u60b8\u60e0\u60d3\u60b4\u5ff0\u60bd\u60c6\u60b5\u60d8\u614d\u6115\u6106\u60f6\u60f7\u6100\u60f4\u60fa\u6103\u6121\u60fb\u60f1\u610d\u610e\u6147\u613e\u6128\u6127\u614a\u613f\u613c\u612c\u6134\u613d\u6142\u6144\u6173\u6177\u6158\u6159\u615a\u616b\u6174\u616f\u6165\u6171\u615f\u615d\u6153\u6175\u6199\u6196\u6187\u61ac\u6194\u619a\u618a\u6191\u61ab\u61ae\u61cc\u61ca\u61c9\u61f7\u61c8\u61c3\u61c6\u61ba\u61cb\u7f79\u61cd\u61e6\u61e3\u61f6\u61fa\u61f4\u61ff\u61fd\u61fc\u61fe\u6200\u6208\u6209\u620d\u620c\u6214\u621b"],["d9a1","\u621e\u6221\u622a\u622e\u6230\u6232\u6233\u6241\u624e\u625e\u6263\u625b\u6260\u6268\u627c\u6282\u6289\u627e\u6292\u6293\u6296\u62d4\u6283\u6294\u62d7\u62d1\u62bb\u62cf\u62ff\u62c6\u64d4\u62c8\u62dc\u62cc\u62ca\u62c2\u62c7\u629b\u62c9\u630c\u62ee\u62f1\u6327\u6302\u6308\u62ef\u62f5\u6350\u633e\u634d\u641c\u634f\u6396\u638e\u6380\u63ab\u6376\u63a3\u638f\u6389\u639f\u63b5\u636b\u6369\u63be\u63e9\u63c0\u63c6\u63e3\u63c9\u63d2\u63f6\u63c4\u6416\u6434\u6406\u6413\u6426\u6436\u651d\u6417\u6428\u640f\u6467\u646f\u6476\u644e\u652a\u6495\u6493\u64a5\u64a9\u6488\u64bc"],["daa1","\u64da\u64d2\u64c5\u64c7\u64bb\u64d8\u64c2\u64f1\u64e7\u8209\u64e0\u64e1\u62ac\u64e3\u64ef\u652c\u64f6\u64f4\u64f2\u64fa\u6500\u64fd\u6518\u651c\u6505\u6524\u6523\u652b\u6534\u6535\u6537\u6536\u6538\u754b\u6548\u6556\u6555\u654d\u6558\u655e\u655d\u6572\u6578\u6582\u6583\u8b8a\u659b\u659f\u65ab\u65b7\u65c3\u65c6\u65c1\u65c4\u65cc\u65d2\u65db\u65d9\u65e0\u65e1\u65f1\u6772\u660a\u6603\u65fb\u6773\u6635\u6636\u6634\u661c\u664f\u6644\u6649\u6641\u665e\u665d\u6664\u6667\u6668\u665f\u6662\u6670\u6683\u6688\u668e\u6689\u6684\u6698\u669d\u66c1\u66b9\u66c9\u66be\u66bc"],["dba1","\u66c4\u66b8\u66d6\u66da\u66e0\u663f\u66e6\u66e9\u66f0\u66f5\u66f7\u670f\u6716\u671e\u6726\u6727\u9738\u672e\u673f\u6736\u6741\u6738\u6737\u6746\u675e\u6760\u6759\u6763\u6764\u6789\u6770\u67a9\u677c\u676a\u678c\u678b\u67a6\u67a1\u6785\u67b7\u67ef\u67b4\u67ec\u67b3\u67e9\u67b8\u67e4\u67de\u67dd\u67e2\u67ee\u67b9\u67ce\u67c6\u67e7\u6a9c\u681e\u6846\u6829\u6840\u684d\u6832\u684e\u68b3\u682b\u6859\u6863\u6877\u687f\u689f\u688f\u68ad\u6894\u689d\u689b\u6883\u6aae\u68b9\u6874\u68b5\u68a0\u68ba\u690f\u688d\u687e\u6901\u68ca\u6908\u68d8\u6922\u6926\u68e1\u690c\u68cd"],["dca1","\u68d4\u68e7\u68d5\u6936\u6912\u6904\u68d7\u68e3\u6925\u68f9\u68e0\u68ef\u6928\u692a\u691a\u6923\u6921\u68c6\u6979\u6977\u695c\u6978\u696b\u6954\u697e\u696e\u6939\u6974\u693d\u6959\u6930\u6961\u695e\u695d\u6981\u696a\u69b2\u69ae\u69d0\u69bf\u69c1\u69d3\u69be\u69ce\u5be8\u69ca\u69dd\u69bb\u69c3\u69a7\u6a2e\u6991\u69a0\u699c\u6995\u69b4\u69de\u69e8\u6a02\u6a1b\u69ff\u6b0a\u69f9\u69f2\u69e7\u6a05\u69b1\u6a1e\u69ed\u6a14\u69eb\u6a0a\u6a12\u6ac1\u6a23\u6a13\u6a44\u6a0c\u6a72\u6a36\u6a78\u6a47\u6a62\u6a59\u6a66\u6a48\u6a38\u6a22\u6a90\u6a8d\u6aa0\u6a84\u6aa2\u6aa3"],["dda1","\u6a97\u8617\u6abb\u6ac3\u6ac2\u6ab8\u6ab3\u6aac\u6ade\u6ad1\u6adf\u6aaa\u6ada\u6aea\u6afb\u6b05\u8616\u6afa\u6b12\u6b16\u9b31\u6b1f\u6b38\u6b37\u76dc\u6b39\u98ee\u6b47\u6b43\u6b49\u6b50\u6b59\u6b54\u6b5b\u6b5f\u6b61\u6b78\u6b79\u6b7f\u6b80\u6b84\u6b83\u6b8d\u6b98\u6b95\u6b9e\u6ba4\u6baa\u6bab\u6baf\u6bb2\u6bb1\u6bb3\u6bb7\u6bbc\u6bc6\u6bcb\u6bd3\u6bdf\u6bec\u6beb\u6bf3\u6bef\u9ebe\u6c08\u6c13\u6c14\u6c1b\u6c24\u6c23\u6c5e\u6c55\u6c62\u6c6a\u6c82\u6c8d\u6c9a\u6c81\u6c9b\u6c7e\u6c68\u6c73\u6c92\u6c90\u6cc4\u6cf1\u6cd3\u6cbd\u6cd7\u6cc5\u6cdd\u6cae\u6cb1\u6cbe"],["dea1","\u6cba\u6cdb\u6cef\u6cd9\u6cea\u6d1f\u884d\u6d36\u6d2b\u6d3d\u6d38\u6d19\u6d35\u6d33\u6d12\u6d0c\u6d63\u6d93\u6d64\u6d5a\u6d79\u6d59\u6d8e\u6d95\u6fe4\u6d85\u6df9\u6e15\u6e0a\u6db5\u6dc7\u6de6\u6db8\u6dc6\u6dec\u6dde\u6dcc\u6de8\u6dd2\u6dc5\u6dfa\u6dd9\u6de4\u6dd5\u6dea\u6dee\u6e2d\u6e6e\u6e2e\u6e19\u6e72\u6e5f\u6e3e\u6e23\u6e6b\u6e2b\u6e76\u6e4d\u6e1f\u6e43\u6e3a\u6e4e\u6e24\u6eff\u6e1d\u6e38\u6e82\u6eaa\u6e98\u6ec9\u6eb7\u6ed3\u6ebd\u6eaf\u6ec4\u6eb2\u6ed4\u6ed5\u6e8f\u6ea5\u6ec2\u6e9f\u6f41\u6f11\u704c\u6eec\u6ef8\u6efe\u6f3f\u6ef2\u6f31\u6eef\u6f32\u6ecc"],["dfa1","\u6f3e\u6f13\u6ef7\u6f86\u6f7a\u6f78\u6f81\u6f80\u6f6f\u6f5b\u6ff3\u6f6d\u6f82\u6f7c\u6f58\u6f8e\u6f91\u6fc2\u6f66\u6fb3\u6fa3\u6fa1\u6fa4\u6fb9\u6fc6\u6faa\u6fdf\u6fd5\u6fec\u6fd4\u6fd8\u6ff1\u6fee\u6fdb\u7009\u700b\u6ffa\u7011\u7001\u700f\u6ffe\u701b\u701a\u6f74\u701d\u7018\u701f\u7030\u703e\u7032\u7051\u7063\u7099\u7092\u70af\u70f1\u70ac\u70b8\u70b3\u70ae\u70df\u70cb\u70dd\u70d9\u7109\u70fd\u711c\u7119\u7165\u7155\u7188\u7166\u7162\u714c\u7156\u716c\u718f\u71fb\u7184\u7195\u71a8\u71ac\u71d7\u71b9\u71be\u71d2\u71c9\u71d4\u71ce\u71e0\u71ec\u71e7\u71f5\u71fc"],["e0a1","\u71f9\u71ff\u720d\u7210\u721b\u7228\u722d\u722c\u7230\u7232\u723b\u723c\u723f\u7240\u7246\u724b\u7258\u7274\u727e\u7282\u7281\u7287\u7292\u7296\u72a2\u72a7\u72b9\u72b2\u72c3\u72c6\u72c4\u72ce\u72d2\u72e2\u72e0\u72e1\u72f9\u72f7\u500f\u7317\u730a\u731c\u7316\u731d\u7334\u732f\u7329\u7325\u733e\u734e\u734f\u9ed8\u7357\u736a\u7368\u7370\u7378\u7375\u737b\u737a\u73c8\u73b3\u73ce\u73bb\u73c0\u73e5\u73ee\u73de\u74a2\u7405\u746f\u7425\u73f8\u7432\u743a\u7455\u743f\u745f\u7459\u7441\u745c\u7469\u7470\u7463\u746a\u7476\u747e\u748b\u749e\u74a7\u74ca\u74cf\u74d4\u73f1"],["e1a1","\u74e0\u74e3\u74e7\u74e9\u74ee\u74f2\u74f0\u74f1\u74f8\u74f7\u7504\u7503\u7505\u750c\u750e\u750d\u7515\u7513\u751e\u7526\u752c\u753c\u7544\u754d\u754a\u7549\u755b\u7546\u755a\u7569\u7564\u7567\u756b\u756d\u7578\u7576\u7586\u7587\u7574\u758a\u7589\u7582\u7594\u759a\u759d\u75a5\u75a3\u75c2\u75b3\u75c3\u75b5\u75bd\u75b8\u75bc\u75b1\u75cd\u75ca\u75d2\u75d9\u75e3\u75de\u75fe\u75ff\u75fc\u7601\u75f0\u75fa\u75f2\u75f3\u760b\u760d\u7609\u761f\u7627\u7620\u7621\u7622\u7624\u7634\u7630\u763b\u7647\u7648\u7646\u765c\u7658\u7661\u7662\u7668\u7669\u766a\u7667\u766c\u7670"],["e2a1","\u7672\u7676\u7678\u767c\u7680\u7683\u7688\u768b\u768e\u7696\u7693\u7699\u769a\u76b0\u76b4\u76b8\u76b9\u76ba\u76c2\u76cd\u76d6\u76d2\u76de\u76e1\u76e5\u76e7\u76ea\u862f\u76fb\u7708\u7707\u7704\u7729\u7724\u771e\u7725\u7726\u771b\u7737\u7738\u7747\u775a\u7768\u776b\u775b\u7765\u777f\u777e\u7779\u778e\u778b\u7791\u77a0\u779e\u77b0\u77b6\u77b9\u77bf\u77bc\u77bd\u77bb\u77c7\u77cd\u77d7\u77da\u77dc\u77e3\u77ee\u77fc\u780c\u7812\u7926\u7820\u792a\u7845\u788e\u7874\u7886\u787c\u789a\u788c\u78a3\u78b5\u78aa\u78af\u78d1\u78c6\u78cb\u78d4\u78be\u78bc\u78c5\u78ca\u78ec"],["e3a1","\u78e7\u78da\u78fd\u78f4\u7907\u7912\u7911\u7919\u792c\u792b\u7940\u7960\u7957\u795f\u795a\u7955\u7953\u797a\u797f\u798a\u799d\u79a7\u9f4b\u79aa\u79ae\u79b3\u79b9\u79ba\u79c9\u79d5\u79e7\u79ec\u79e1\u79e3\u7a08\u7a0d\u7a18\u7a19\u7a20\u7a1f\u7980\u7a31\u7a3b\u7a3e\u7a37\u7a43\u7a57\u7a49\u7a61\u7a62\u7a69\u9f9d\u7a70\u7a79\u7a7d\u7a88\u7a97\u7a95\u7a98\u7a96\u7aa9\u7ac8\u7ab0\u7ab6\u7ac5\u7ac4\u7abf\u9083\u7ac7\u7aca\u7acd\u7acf\u7ad5\u7ad3\u7ad9\u7ada\u7add\u7ae1\u7ae2\u7ae6\u7aed\u7af0\u7b02\u7b0f\u7b0a\u7b06\u7b33\u7b18\u7b19\u7b1e\u7b35\u7b28\u7b36\u7b50"],["e4a1","\u7b7a\u7b04\u7b4d\u7b0b\u7b4c\u7b45\u7b75\u7b65\u7b74\u7b67\u7b70\u7b71\u7b6c\u7b6e\u7b9d\u7b98\u7b9f\u7b8d\u7b9c\u7b9a\u7b8b\u7b92\u7b8f\u7b5d\u7b99\u7bcb\u7bc1\u7bcc\u7bcf\u7bb4\u7bc6\u7bdd\u7be9\u7c11\u7c14\u7be6\u7be5\u7c60\u7c00\u7c07\u7c13\u7bf3\u7bf7\u7c17\u7c0d\u7bf6\u7c23\u7c27\u7c2a\u7c1f\u7c37\u7c2b\u7c3d\u7c4c\u7c43\u7c54\u7c4f\u7c40\u7c50\u7c58\u7c5f\u7c64\u7c56\u7c65\u7c6c\u7c75\u7c83\u7c90\u7ca4\u7cad\u7ca2\u7cab\u7ca1\u7ca8\u7cb3\u7cb2\u7cb1\u7cae\u7cb9\u7cbd\u7cc0\u7cc5\u7cc2\u7cd8\u7cd2\u7cdc\u7ce2\u9b3b\u7cef\u7cf2\u7cf4\u7cf6\u7cfa\u7d06"],["e5a1","\u7d02\u7d1c\u7d15\u7d0a\u7d45\u7d4b\u7d2e\u7d32\u7d3f\u7d35\u7d46\u7d73\u7d56\u7d4e\u7d72\u7d68\u7d6e\u7d4f\u7d63\u7d93\u7d89\u7d5b\u7d8f\u7d7d\u7d9b\u7dba\u7dae\u7da3\u7db5\u7dc7\u7dbd\u7dab\u7e3d\u7da2\u7daf\u7ddc\u7db8\u7d9f\u7db0\u7dd8\u7ddd\u7de4\u7dde\u7dfb\u7df2\u7de1\u7e05\u7e0a\u7e23\u7e21\u7e12\u7e31\u7e1f\u7e09\u7e0b\u7e22\u7e46\u7e66\u7e3b\u7e35\u7e39\u7e43\u7e37\u7e32\u7e3a\u7e67\u7e5d\u7e56\u7e5e\u7e59\u7e5a\u7e79\u7e6a\u7e69\u7e7c\u7e7b\u7e83\u7dd5\u7e7d\u8fae\u7e7f\u7e88\u7e89\u7e8c\u7e92\u7e90\u7e93\u7e94\u7e96\u7e8e\u7e9b\u7e9c\u7f38\u7f3a"],["e6a1","\u7f45\u7f4c\u7f4d\u7f4e\u7f50\u7f51\u7f55\u7f54\u7f58\u7f5f\u7f60\u7f68\u7f69\u7f67\u7f78\u7f82\u7f86\u7f83\u7f88\u7f87\u7f8c\u7f94\u7f9e\u7f9d\u7f9a\u7fa3\u7faf\u7fb2\u7fb9\u7fae\u7fb6\u7fb8\u8b71\u7fc5\u7fc6\u7fca\u7fd5\u7fd4\u7fe1\u7fe6\u7fe9\u7ff3\u7ff9\u98dc\u8006\u8004\u800b\u8012\u8018\u8019\u801c\u8021\u8028\u803f\u803b\u804a\u8046\u8052\u8058\u805a\u805f\u8062\u8068\u8073\u8072\u8070\u8076\u8079\u807d\u807f\u8084\u8086\u8085\u809b\u8093\u809a\u80ad\u5190\u80ac\u80db\u80e5\u80d9\u80dd\u80c4\u80da\u80d6\u8109\u80ef\u80f1\u811b\u8129\u8123\u812f\u814b"],["e7a1","\u968b\u8146\u813e\u8153\u8151\u80fc\u8171\u816e\u8165\u8166\u8174\u8183\u8188\u818a\u8180\u8182\u81a0\u8195\u81a4\u81a3\u815f\u8193\u81a9\u81b0\u81b5\u81be\u81b8\u81bd\u81c0\u81c2\u81ba\u81c9\u81cd\u81d1\u81d9\u81d8\u81c8\u81da\u81df\u81e0\u81e7\u81fa\u81fb\u81fe\u8201\u8202\u8205\u8207\u820a\u820d\u8210\u8216\u8229\u822b\u8238\u8233\u8240\u8259\u8258\u825d\u825a\u825f\u8264\u8262\u8268\u826a\u826b\u822e\u8271\u8277\u8278\u827e\u828d\u8292\u82ab\u829f\u82bb\u82ac\u82e1\u82e3\u82df\u82d2\u82f4\u82f3\u82fa\u8393\u8303\u82fb\u82f9\u82de\u8306\u82dc\u8309\u82d9"],["e8a1","\u8335\u8334\u8316\u8332\u8331\u8340\u8339\u8350\u8345\u832f\u832b\u8317\u8318\u8385\u839a\u83aa\u839f\u83a2\u8396\u8323\u838e\u8387\u838a\u837c\u83b5\u8373\u8375\u83a0\u8389\u83a8\u83f4\u8413\u83eb\u83ce\u83fd\u8403\u83d8\u840b\u83c1\u83f7\u8407\u83e0\u83f2\u840d\u8422\u8420\u83bd\u8438\u8506\u83fb\u846d\u842a\u843c\u855a\u8484\u8477\u846b\u84ad\u846e\u8482\u8469\u8446\u842c\u846f\u8479\u8435\u84ca\u8462\u84b9\u84bf\u849f\u84d9\u84cd\u84bb\u84da\u84d0\u84c1\u84c6\u84d6\u84a1\u8521\u84ff\u84f4\u8517\u8518\u852c\u851f\u8515\u8514\u84fc\u8540\u8563\u8558\u8548"],["e9a1","\u8541\u8602\u854b\u8555\u8580\u85a4\u8588\u8591\u858a\u85a8\u856d\u8594\u859b\u85ea\u8587\u859c\u8577\u857e\u8590\u85c9\u85ba\u85cf\u85b9\u85d0\u85d5\u85dd\u85e5\u85dc\u85f9\u860a\u8613\u860b\u85fe\u85fa\u8606\u8622\u861a\u8630\u863f\u864d\u4e55\u8654\u865f\u8667\u8671\u8693\u86a3\u86a9\u86aa\u868b\u868c\u86b6\u86af\u86c4\u86c6\u86b0\u86c9\u8823\u86ab\u86d4\u86de\u86e9\u86ec\u86df\u86db\u86ef\u8712\u8706\u8708\u8700\u8703\u86fb\u8711\u8709\u870d\u86f9\u870a\u8734\u873f\u8737\u873b\u8725\u8729\u871a\u8760\u875f\u8778\u874c\u874e\u8774\u8757\u8768\u876e\u8759"],["eaa1","\u8753\u8763\u876a\u8805\u87a2\u879f\u8782\u87af\u87cb\u87bd\u87c0\u87d0\u96d6\u87ab\u87c4\u87b3\u87c7\u87c6\u87bb\u87ef\u87f2\u87e0\u880f\u880d\u87fe\u87f6\u87f7\u880e\u87d2\u8811\u8816\u8815\u8822\u8821\u8831\u8836\u8839\u8827\u883b\u8844\u8842\u8852\u8859\u885e\u8862\u886b\u8881\u887e\u889e\u8875\u887d\u88b5\u8872\u8882\u8897\u8892\u88ae\u8899\u88a2\u888d\u88a4\u88b0\u88bf\u88b1\u88c3\u88c4\u88d4\u88d8\u88d9\u88dd\u88f9\u8902\u88fc\u88f4\u88e8\u88f2\u8904\u890c\u890a\u8913\u8943\u891e\u8925\u892a\u892b\u8941\u8944\u893b\u8936\u8938\u894c\u891d\u8960\u895e"],["eba1","\u8966\u8964\u896d\u896a\u896f\u8974\u8977\u897e\u8983\u8988\u898a\u8993\u8998\u89a1\u89a9\u89a6\u89ac\u89af\u89b2\u89ba\u89bd\u89bf\u89c0\u89da\u89dc\u89dd\u89e7\u89f4\u89f8\u8a03\u8a16\u8a10\u8a0c\u8a1b\u8a1d\u8a25\u8a36\u8a41\u8a5b\u8a52\u8a46\u8a48\u8a7c\u8a6d\u8a6c\u8a62\u8a85\u8a82\u8a84\u8aa8\u8aa1\u8a91\u8aa5\u8aa6\u8a9a\u8aa3\u8ac4\u8acd\u8ac2\u8ada\u8aeb\u8af3\u8ae7\u8ae4\u8af1\u8b14\u8ae0\u8ae2\u8af7\u8ade\u8adb\u8b0c\u8b07\u8b1a\u8ae1\u8b16\u8b10\u8b17\u8b20\u8b33\u97ab\u8b26\u8b2b\u8b3e\u8b28\u8b41\u8b4c\u8b4f\u8b4e\u8b49\u8b56\u8b5b\u8b5a\u8b6b"],["eca1","\u8b5f\u8b6c\u8b6f\u8b74\u8b7d\u8b80\u8b8c\u8b8e\u8b92\u8b93\u8b96\u8b99\u8b9a\u8c3a\u8c41\u8c3f\u8c48\u8c4c\u8c4e\u8c50\u8c55\u8c62\u8c6c\u8c78\u8c7a\u8c82\u8c89\u8c85\u8c8a\u8c8d\u8c8e\u8c94\u8c7c\u8c98\u621d\u8cad\u8caa\u8cbd\u8cb2\u8cb3\u8cae\u8cb6\u8cc8\u8cc1\u8ce4\u8ce3\u8cda\u8cfd\u8cfa\u8cfb\u8d04\u8d05\u8d0a\u8d07\u8d0f\u8d0d\u8d10\u9f4e\u8d13\u8ccd\u8d14\u8d16\u8d67\u8d6d\u8d71\u8d73\u8d81\u8d99\u8dc2\u8dbe\u8dba\u8dcf\u8dda\u8dd6\u8dcc\u8ddb\u8dcb\u8dea\u8deb\u8ddf\u8de3\u8dfc\u8e08\u8e09\u8dff\u8e1d\u8e1e\u8e10\u8e1f\u8e42\u8e35\u8e30\u8e34\u8e4a"],["eda1","\u8e47\u8e49\u8e4c\u8e50\u8e48\u8e59\u8e64\u8e60\u8e2a\u8e63\u8e55\u8e76\u8e72\u8e7c\u8e81\u8e87\u8e85\u8e84\u8e8b\u8e8a\u8e93\u8e91\u8e94\u8e99\u8eaa\u8ea1\u8eac\u8eb0\u8ec6\u8eb1\u8ebe\u8ec5\u8ec8\u8ecb\u8edb\u8ee3\u8efc\u8efb\u8eeb\u8efe\u8f0a\u8f05\u8f15\u8f12\u8f19\u8f13\u8f1c\u8f1f\u8f1b\u8f0c\u8f26\u8f33\u8f3b\u8f39\u8f45\u8f42\u8f3e\u8f4c\u8f49\u8f46\u8f4e\u8f57\u8f5c\u8f62\u8f63\u8f64\u8f9c\u8f9f\u8fa3\u8fad\u8faf\u8fb7\u8fda\u8fe5\u8fe2\u8fea\u8fef\u9087\u8ff4\u9005\u8ff9\u8ffa\u9011\u9015\u9021\u900d\u901e\u9016\u900b\u9027\u9036\u9035\u9039\u8ff8"],["eea1","\u904f\u9050\u9051\u9052\u900e\u9049\u903e\u9056\u9058\u905e\u9068\u906f\u9076\u96a8\u9072\u9082\u907d\u9081\u9080\u908a\u9089\u908f\u90a8\u90af\u90b1\u90b5\u90e2\u90e4\u6248\u90db\u9102\u9112\u9119\u9132\u9130\u914a\u9156\u9158\u9163\u9165\u9169\u9173\u9172\u918b\u9189\u9182\u91a2\u91ab\u91af\u91aa\u91b5\u91b4\u91ba\u91c0\u91c1\u91c9\u91cb\u91d0\u91d6\u91df\u91e1\u91db\u91fc\u91f5\u91f6\u921e\u91ff\u9214\u922c\u9215\u9211\u925e\u9257\u9245\u9249\u9264\u9248\u9295\u923f\u924b\u9250\u929c\u9296\u9293\u929b\u925a\u92cf\u92b9\u92b7\u92e9\u930f\u92fa\u9344\u932e"],["efa1","\u9319\u9322\u931a\u9323\u933a\u9335\u933b\u935c\u9360\u937c\u936e\u9356\u93b0\u93ac\u93ad\u9394\u93b9\u93d6\u93d7\u93e8\u93e5\u93d8\u93c3\u93dd\u93d0\u93c8\u93e4\u941a\u9414\u9413\u9403\u9407\u9410\u9436\u942b\u9435\u9421\u943a\u9441\u9452\u9444\u945b\u9460\u9462\u945e\u946a\u9229\u9470\u9475\u9477\u947d\u945a\u947c\u947e\u9481\u947f\u9582\u9587\u958a\u9594\u9596\u9598\u9599\u95a0\u95a8\u95a7\u95ad\u95bc\u95bb\u95b9\u95be\u95ca\u6ff6\u95c3\u95cd\u95cc\u95d5\u95d4\u95d6\u95dc\u95e1\u95e5\u95e2\u9621\u9628\u962e\u962f\u9642\u964c\u964f\u964b\u9677\u965c\u965e"],["f0a1","\u965d\u965f\u9666\u9672\u966c\u968d\u9698\u9695\u9697\u96aa\u96a7\u96b1\u96b2\u96b0\u96b4\u96b6\u96b8\u96b9\u96ce\u96cb\u96c9\u96cd\u894d\u96dc\u970d\u96d5\u96f9\u9704\u9706\u9708\u9713\u970e\u9711\u970f\u9716\u9719\u9724\u972a\u9730\u9739\u973d\u973e\u9744\u9746\u9748\u9742\u9749\u975c\u9760\u9764\u9766\u9768\u52d2\u976b\u9771\u9779\u9785\u977c\u9781\u977a\u9786\u978b\u978f\u9790\u979c\u97a8\u97a6\u97a3\u97b3\u97b4\u97c3\u97c6\u97c8\u97cb\u97dc\u97ed\u9f4f\u97f2\u7adf\u97f6\u97f5\u980f\u980c\u9838\u9824\u9821\u9837\u983d\u9846\u984f\u984b\u986b\u986f\u9870"],["f1a1","\u9871\u9874\u9873\u98aa\u98af\u98b1\u98b6\u98c4\u98c3\u98c6\u98e9\u98eb\u9903\u9909\u9912\u9914\u9918\u9921\u991d\u991e\u9924\u9920\u992c\u992e\u993d\u993e\u9942\u9949\u9945\u9950\u994b\u9951\u9952\u994c\u9955\u9997\u9998\u99a5\u99ad\u99ae\u99bc\u99df\u99db\u99dd\u99d8\u99d1\u99ed\u99ee\u99f1\u99f2\u99fb\u99f8\u9a01\u9a0f\u9a05\u99e2\u9a19\u9a2b\u9a37\u9a45\u9a42\u9a40\u9a43\u9a3e\u9a55\u9a4d\u9a5b\u9a57\u9a5f\u9a62\u9a65\u9a64\u9a69\u9a6b\u9a6a\u9aad\u9ab0\u9abc\u9ac0\u9acf\u9ad1\u9ad3\u9ad4\u9ade\u9adf\u9ae2\u9ae3\u9ae6\u9aef\u9aeb\u9aee\u9af4\u9af1\u9af7"],["f2a1","\u9afb\u9b06\u9b18\u9b1a\u9b1f\u9b22\u9b23\u9b25\u9b27\u9b28\u9b29\u9b2a\u9b2e\u9b2f\u9b32\u9b44\u9b43\u9b4f\u9b4d\u9b4e\u9b51\u9b58\u9b74\u9b93\u9b83\u9b91\u9b96\u9b97\u9b9f\u9ba0\u9ba8\u9bb4\u9bc0\u9bca\u9bb9\u9bc6\u9bcf\u9bd1\u9bd2\u9be3\u9be2\u9be4\u9bd4\u9be1\u9c3a\u9bf2\u9bf1\u9bf0\u9c15\u9c14\u9c09\u9c13\u9c0c\u9c06\u9c08\u9c12\u9c0a\u9c04\u9c2e\u9c1b\u9c25\u9c24\u9c21\u9c30\u9c47\u9c32\u9c46\u9c3e\u9c5a\u9c60\u9c67\u9c76\u9c78\u9ce7\u9cec\u9cf0\u9d09\u9d08\u9ceb\u9d03\u9d06\u9d2a\u9d26\u9daf\u9d23\u9d1f\u9d44\u9d15\u9d12\u9d41\u9d3f\u9d3e\u9d46\u9d48"],["f3a1","\u9d5d\u9d5e\u9d64\u9d51\u9d50\u9d59\u9d72\u9d89\u9d87\u9dab\u9d6f\u9d7a\u9d9a\u9da4\u9da9\u9db2\u9dc4\u9dc1\u9dbb\u9db8\u9dba\u9dc6\u9dcf\u9dc2\u9dd9\u9dd3\u9df8\u9de6\u9ded\u9def\u9dfd\u9e1a\u9e1b\u9e1e\u9e75\u9e79\u9e7d\u9e81\u9e88\u9e8b\u9e8c\u9e92\u9e95\u9e91\u9e9d\u9ea5\u9ea9\u9eb8\u9eaa\u9ead\u9761\u9ecc\u9ece\u9ecf\u9ed0\u9ed4\u9edc\u9ede\u9edd\u9ee0\u9ee5\u9ee8\u9eef\u9ef4\u9ef6\u9ef7\u9ef9\u9efb\u9efc\u9efd\u9f07\u9f08\u76b7\u9f15\u9f21\u9f2c\u9f3e\u9f4a\u9f52\u9f54\u9f63\u9f5f\u9f60\u9f61\u9f66\u9f67\u9f6c\u9f6a\u9f77\u9f72\u9f76\u9f95\u9f9c\u9fa0"],["f4a1","\u582f\u69c7\u9059\u7464\u51dc\u7199"],["f9a1","\u7e8a\u891c\u9348\u9288\u84dc\u4fc9\u70bb\u6631\u68c8\u92f9\u66fb\u5f45\u4e28\u4ee1\u4efc\u4f00\u4f03\u4f39\u4f56\u4f92\u4f8a\u4f9a\u4f94\u4fcd\u5040\u5022\u4fff\u501e\u5046\u5070\u5042\u5094\u50f4\u50d8\u514a\u5164\u519d\u51be\u51ec\u5215\u529c\u52a6\u52c0\u52db\u5300\u5307\u5324\u5372\u5393\u53b2\u53dd\ufa0e\u549c\u548a\u54a9\u54ff\u5586\u5759\u5765\u57ac\u57c8\u57c7\ufa0f\ufa10\u589e\u58b2\u590b\u5953\u595b\u595d\u5963\u59a4\u59ba\u5b56\u5bc0\u752f\u5bd8\u5bec\u5c1e\u5ca6\u5cba\u5cf5\u5d27\u5d53\ufa11\u5d42\u5d6d\u5db8\u5db9\u5dd0\u5f21\u5f34\u5f67\u5fb7"],["faa1","\u5fde\u605d\u6085\u608a\u60de\u60d5\u6120\u60f2\u6111\u6137\u6130\u6198\u6213\u62a6\u63f5\u6460\u649d\u64ce\u654e\u6600\u6615\u663b\u6609\u662e\u661e\u6624\u6665\u6657\u6659\ufa12\u6673\u6699\u66a0\u66b2\u66bf\u66fa\u670e\uf929\u6766\u67bb\u6852\u67c0\u6801\u6844\u68cf\ufa13\u6968\ufa14\u6998\u69e2\u6a30\u6a6b\u6a46\u6a73\u6a7e\u6ae2\u6ae4\u6bd6\u6c3f\u6c5c\u6c86\u6c6f\u6cda\u6d04\u6d87\u6d6f\u6d96\u6dac\u6dcf\u6df8\u6df2\u6dfc\u6e39\u6e5c\u6e27\u6e3c\u6ebf\u6f88\u6fb5\u6ff5\u7005\u7007\u7028\u7085\u70ab\u710f\u7104\u715c\u7146\u7147\ufa15\u71c1\u71fe\u72b1"],["fba1","\u72be\u7324\ufa16\u7377\u73bd\u73c9\u73d6\u73e3\u73d2\u7407\u73f5\u7426\u742a\u7429\u742e\u7462\u7489\u749f\u7501\u756f\u7682\u769c\u769e\u769b\u76a6\ufa17\u7746\u52af\u7821\u784e\u7864\u787a\u7930\ufa18\ufa19\ufa1a\u7994\ufa1b\u799b\u7ad1\u7ae7\ufa1c\u7aeb\u7b9e\ufa1d\u7d48\u7d5c\u7db7\u7da0\u7dd6\u7e52\u7f47\u7fa1\ufa1e\u8301\u8362\u837f\u83c7\u83f6\u8448\u84b4\u8553\u8559\u856b\ufa1f\u85b0\ufa20\ufa21\u8807\u88f5\u8a12\u8a37\u8a79\u8aa7\u8abe\u8adf\ufa22\u8af6\u8b53\u8b7f\u8cf0\u8cf4\u8d12\u8d76\ufa23\u8ecf\ufa24\ufa25\u9067\u90de\ufa26\u9115\u9127\u91da"],["fca1","\u91d7\u91de\u91ed\u91ee\u91e4\u91e5\u9206\u9210\u920a\u923a\u9240\u923c\u924e\u9259\u9251\u9239\u9267\u92a7\u9277\u9278\u92e7\u92d7\u92d9\u92d0\ufa27\u92d5\u92e0\u92d3\u9325\u9321\u92fb\ufa28\u931e\u92ff\u931d\u9302\u9370\u9357\u93a4\u93c6\u93de\u93f8\u9431\u9445\u9448\u9592\uf9dc\ufa29\u969d\u96af\u9733\u973b\u9743\u974d\u974f\u9751\u9755\u9857\u9865\ufa2a\ufa2b\u9927\ufa2c\u999e\u9a4e\u9ad9\u9adc\u9b75\u9b72\u9b8f\u9bb1\u9bbb\u9c00\u9d70\u9d6b\ufa2d\u9e19\u9ed1"],["fcf1","\u2170",9,"\uffe2\uffe4\uff07\uff02"],["8fa2af","\u02d8\u02c7\xb8\u02d9\u02dd\xaf\u02db\u02da\uff5e\u0384\u0385"],["8fa2c2","\xa1\xa6\xbf"],["8fa2eb","\xba\xaa\xa9\xae\u2122\xa4\u2116"],["8fa6e1","\u0386\u0388\u0389\u038a\u03aa"],["8fa6e7","\u038c"],["8fa6e9","\u038e\u03ab"],["8fa6ec","\u038f"],["8fa6f1","\u03ac\u03ad\u03ae\u03af\u03ca\u0390\u03cc\u03c2\u03cd\u03cb\u03b0\u03ce"],["8fa7c2","\u0402",10,"\u040e\u040f"],["8fa7f2","\u0452",10,"\u045e\u045f"],["8fa9a1","\xc6\u0110"],["8fa9a4","\u0126"],["8fa9a6","\u0132"],["8fa9a8","\u0141\u013f"],["8fa9ab","\u014a\xd8\u0152"],["8fa9af","\u0166\xde"],["8fa9c1","\xe6\u0111\xf0\u0127\u0131\u0133\u0138\u0142\u0140\u0149\u014b\xf8\u0153\xdf\u0167\xfe"],["8faaa1","\xc1\xc0\xc4\xc2\u0102\u01cd\u0100\u0104\xc5\xc3\u0106\u0108\u010c\xc7\u010a\u010e\xc9\xc8\xcb\xca\u011a\u0116\u0112\u0118"],["8faaba","\u011c\u011e\u0122\u0120\u0124\xcd\xcc\xcf\xce\u01cf\u0130\u012a\u012e\u0128\u0134\u0136\u0139\u013d\u013b\u0143\u0147\u0145\xd1\xd3\xd2\xd6\xd4\u01d1\u0150\u014c\xd5\u0154\u0158\u0156\u015a\u015c\u0160\u015e\u0164\u0162\xda\xd9\xdc\xdb\u016c\u01d3\u0170\u016a\u0172\u016e\u0168\u01d7\u01db\u01d9\u01d5\u0174\xdd\u0178\u0176\u0179\u017d\u017b"],["8faba1","\xe1\xe0\xe4\xe2\u0103\u01ce\u0101\u0105\xe5\xe3\u0107\u0109\u010d\xe7\u010b\u010f\xe9\xe8\xeb\xea\u011b\u0117\u0113\u0119\u01f5\u011d\u011f"],["8fabbd","\u0121\u0125\xed\xec\xef\xee\u01d0"],["8fabc5","\u012b\u012f\u0129\u0135\u0137\u013a\u013e\u013c\u0144\u0148\u0146\xf1\xf3\xf2\xf6\xf4\u01d2\u0151\u014d\xf5\u0155\u0159\u0157\u015b\u015d\u0161\u015f\u0165\u0163\xfa\xf9\xfc\xfb\u016d\u01d4\u0171\u016b\u0173\u016f\u0169\u01d8\u01dc\u01da\u01d6\u0175\xfd\xff\u0177\u017a\u017e\u017c"],["8fb0a1","\u4e02\u4e04\u4e05\u4e0c\u4e12\u4e1f\u4e23\u4e24\u4e28\u4e2b\u4e2e\u4e2f\u4e30\u4e35\u4e40\u4e41\u4e44\u4e47\u4e51\u4e5a\u4e5c\u4e63\u4e68\u4e69\u4e74\u4e75\u4e79\u4e7f\u4e8d\u4e96\u4e97\u4e9d\u4eaf\u4eb9\u4ec3\u4ed0\u4eda\u4edb\u4ee0\u4ee1\u4ee2\u4ee8\u4eef\u4ef1\u4ef3\u4ef5\u4efd\u4efe\u4eff\u4f00\u4f02\u4f03\u4f08\u4f0b\u4f0c\u4f12\u4f15\u4f16\u4f17\u4f19\u4f2e\u4f31\u4f60\u4f33\u4f35\u4f37\u4f39\u4f3b\u4f3e\u4f40\u4f42\u4f48\u4f49\u4f4b\u4f4c\u4f52\u4f54\u4f56\u4f58\u4f5f\u4f63\u4f6a\u4f6c\u4f6e\u4f71\u4f77\u4f78\u4f79\u4f7a\u4f7d\u4f7e\u4f81\u4f82\u4f84"],["8fb1a1","\u4f85\u4f89\u4f8a\u4f8c\u4f8e\u4f90\u4f92\u4f93\u4f94\u4f97\u4f99\u4f9a\u4f9e\u4f9f\u4fb2\u4fb7\u4fb9\u4fbb\u4fbc\u4fbd\u4fbe\u4fc0\u4fc1\u4fc5\u4fc6\u4fc8\u4fc9\u4fcb\u4fcc\u4fcd\u4fcf\u4fd2\u4fdc\u4fe0\u4fe2\u4ff0\u4ff2\u4ffc\u4ffd\u4fff\u5000\u5001\u5004\u5007\u500a\u500c\u500e\u5010\u5013\u5017\u5018\u501b\u501c\u501d\u501e\u5022\u5027\u502e\u5030\u5032\u5033\u5035\u5040\u5041\u5042\u5045\u5046\u504a\u504c\u504e\u5051\u5052\u5053\u5057\u5059\u505f\u5060\u5062\u5063\u5066\u5067\u506a\u506d\u5070\u5071\u503b\u5081\u5083\u5084\u5086\u508a\u508e\u508f\u5090"],["8fb2a1","\u5092\u5093\u5094\u5096\u509b\u509c\u509e",4,"\u50aa\u50af\u50b0\u50b9\u50ba\u50bd\u50c0\u50c3\u50c4\u50c7\u50cc\u50ce\u50d0\u50d3\u50d4\u50d8\u50dc\u50dd\u50df\u50e2\u50e4\u50e6\u50e8\u50e9\u50ef\u50f1\u50f6\u50fa\u50fe\u5103\u5106\u5107\u5108\u510b\u510c\u510d\u510e\u50f2\u5110\u5117\u5119\u511b\u511c\u511d\u511e\u5123\u5127\u5128\u512c\u512d\u512f\u5131\u5133\u5134\u5135\u5138\u5139\u5142\u514a\u514f\u5153\u5155\u5157\u5158\u515f\u5164\u5166\u517e\u5183\u5184\u518b\u518e\u5198\u519d\u51a1\u51a3\u51ad\u51b8\u51ba\u51bc\u51be\u51bf\u51c2"],["8fb3a1","\u51c8\u51cf\u51d1\u51d2\u51d3\u51d5\u51d8\u51de\u51e2\u51e5\u51ee\u51f2\u51f3\u51f4\u51f7\u5201\u5202\u5205\u5212\u5213\u5215\u5216\u5218\u5222\u5228\u5231\u5232\u5235\u523c\u5245\u5249\u5255\u5257\u5258\u525a\u525c\u525f\u5260\u5261\u5266\u526e\u5277\u5278\u5279\u5280\u5282\u5285\u528a\u528c\u5293\u5295\u5296\u5297\u5298\u529a\u529c\u52a4\u52a5\u52a6\u52a7\u52af\u52b0\u52b6\u52b7\u52b8\u52ba\u52bb\u52bd\u52c0\u52c4\u52c6\u52c8\u52cc\u52cf\u52d1\u52d4\u52d6\u52db\u52dc\u52e1\u52e5\u52e8\u52e9\u52ea\u52ec\u52f0\u52f1\u52f4\u52f6\u52f7\u5300\u5303\u530a\u530b"],["8fb4a1","\u530c\u5311\u5313\u5318\u531b\u531c\u531e\u531f\u5325\u5327\u5328\u5329\u532b\u532c\u532d\u5330\u5332\u5335\u533c\u533d\u533e\u5342\u534c\u534b\u5359\u535b\u5361\u5363\u5365\u536c\u536d\u5372\u5379\u537e\u5383\u5387\u5388\u538e\u5393\u5394\u5399\u539d\u53a1\u53a4\u53aa\u53ab\u53af\u53b2\u53b4\u53b5\u53b7\u53b8\u53ba\u53bd\u53c0\u53c5\u53cf\u53d2\u53d3\u53d5\u53da\u53dd\u53de\u53e0\u53e6\u53e7\u53f5\u5402\u5413\u541a\u5421\u5427\u5428\u542a\u542f\u5431\u5434\u5435\u5443\u5444\u5447\u544d\u544f\u545e\u5462\u5464\u5466\u5467\u5469\u546b\u546d\u546e\u5474\u547f"],["8fb5a1","\u5481\u5483\u5485\u5488\u5489\u548d\u5491\u5495\u5496\u549c\u549f\u54a1\u54a6\u54a7\u54a9\u54aa\u54ad\u54ae\u54b1\u54b7\u54b9\u54ba\u54bb\u54bf\u54c6\u54ca\u54cd\u54ce\u54e0\u54ea\u54ec\u54ef\u54f6\u54fc\u54fe\u54ff\u5500\u5501\u5505\u5508\u5509\u550c\u550d\u550e\u5515\u552a\u552b\u5532\u5535\u5536\u553b\u553c\u553d\u5541\u5547\u5549\u554a\u554d\u5550\u5551\u5558\u555a\u555b\u555e\u5560\u5561\u5564\u5566\u557f\u5581\u5582\u5586\u5588\u558e\u558f\u5591\u5592\u5593\u5594\u5597\u55a3\u55a4\u55ad\u55b2\u55bf\u55c1\u55c3\u55c6\u55c9\u55cb\u55cc\u55ce\u55d1\u55d2"],["8fb6a1","\u55d3\u55d7\u55d8\u55db\u55de\u55e2\u55e9\u55f6\u55ff\u5605\u5608\u560a\u560d",5,"\u5619\u562c\u5630\u5633\u5635\u5637\u5639\u563b\u563c\u563d\u563f\u5640\u5641\u5643\u5644\u5646\u5649\u564b\u564d\u564f\u5654\u565e\u5660\u5661\u5662\u5663\u5666\u5669\u566d\u566f\u5671\u5672\u5675\u5684\u5685\u5688\u568b\u568c\u5695\u5699\u569a\u569d\u569e\u569f\u56a6\u56a7\u56a8\u56a9\u56ab\u56ac\u56ad\u56b1\u56b3\u56b7\u56be\u56c5\u56c9\u56ca\u56cb\u56cf\u56d0\u56cc\u56cd\u56d9\u56dc\u56dd\u56df\u56e1\u56e4",4,"\u56f1\u56eb\u56ed"],["8fb7a1","\u56f6\u56f7\u5701\u5702\u5707\u570a\u570c\u5711\u5715\u571a\u571b\u571d\u5720\u5722\u5723\u5724\u5725\u5729\u572a\u572c\u572e\u572f\u5733\u5734\u573d\u573e\u573f\u5745\u5746\u574c\u574d\u5752\u5762\u5765\u5767\u5768\u576b\u576d",4,"\u5773\u5774\u5775\u5777\u5779\u577a\u577b\u577c\u577e\u5781\u5783\u578c\u5794\u5797\u5799\u579a\u579c\u579d\u579e\u579f\u57a1\u5795\u57a7\u57a8\u57a9\u57ac\u57b8\u57bd\u57c7\u57c8\u57cc\u57cf\u57d5\u57dd\u57de\u57e4\u57e6\u57e7\u57e9\u57ed\u57f0\u57f5\u57f6\u57f8\u57fd\u57fe\u57ff\u5803\u5804\u5808\u5809\u57e1"],["8fb8a1","\u580c\u580d\u581b\u581e\u581f\u5820\u5826\u5827\u582d\u5832\u5839\u583f\u5849\u584c\u584d\u584f\u5850\u5855\u585f\u5861\u5864\u5867\u5868\u5878\u587c\u587f\u5880\u5881\u5887\u5888\u5889\u588a\u588c\u588d\u588f\u5890\u5894\u5896\u589d\u58a0\u58a1\u58a2\u58a6\u58a9\u58b1\u58b2\u58c4\u58bc\u58c2\u58c8\u58cd\u58ce\u58d0\u58d2\u58d4\u58d6\u58da\u58dd\u58e1\u58e2\u58e9\u58f3\u5905\u5906\u590b\u590c\u5912\u5913\u5914\u8641\u591d\u5921\u5923\u5924\u5928\u592f\u5930\u5933\u5935\u5936\u593f\u5943\u5946\u5952\u5953\u5959\u595b\u595d\u595e\u595f\u5961\u5963\u596b\u596d"],["8fb9a1","\u596f\u5972\u5975\u5976\u5979\u597b\u597c\u598b\u598c\u598e\u5992\u5995\u5997\u599f\u59a4\u59a7\u59ad\u59ae\u59af\u59b0\u59b3\u59b7\u59ba\u59bc\u59c1\u59c3\u59c4\u59c8\u59ca\u59cd\u59d2\u59dd\u59de\u59df\u59e3\u59e4\u59e7\u59ee\u59ef\u59f1\u59f2\u59f4\u59f7\u5a00\u5a04\u5a0c\u5a0d\u5a0e\u5a12\u5a13\u5a1e\u5a23\u5a24\u5a27\u5a28\u5a2a\u5a2d\u5a30\u5a44\u5a45\u5a47\u5a48\u5a4c\u5a50\u5a55\u5a5e\u5a63\u5a65\u5a67\u5a6d\u5a77\u5a7a\u5a7b\u5a7e\u5a8b\u5a90\u5a93\u5a96\u5a99\u5a9c\u5a9e\u5a9f\u5aa0\u5aa2\u5aa7\u5aac\u5ab1\u5ab2\u5ab3\u5ab5\u5ab8\u5aba\u5abb\u5abf"],["8fbaa1","\u5ac4\u5ac6\u5ac8\u5acf\u5ada\u5adc\u5ae0\u5ae5\u5aea\u5aee\u5af5\u5af6\u5afd\u5b00\u5b01\u5b08\u5b17\u5b34\u5b19\u5b1b\u5b1d\u5b21\u5b25\u5b2d\u5b38\u5b41\u5b4b\u5b4c\u5b52\u5b56\u5b5e\u5b68\u5b6e\u5b6f\u5b7c\u5b7d\u5b7e\u5b7f\u5b81\u5b84\u5b86\u5b8a\u5b8e\u5b90\u5b91\u5b93\u5b94\u5b96\u5ba8\u5ba9\u5bac\u5bad\u5baf\u5bb1\u5bb2\u5bb7\u5bba\u5bbc\u5bc0\u5bc1\u5bcd\u5bcf\u5bd6",4,"\u5be0\u5bef\u5bf1\u5bf4\u5bfd\u5c0c\u5c17\u5c1e\u5c1f\u5c23\u5c26\u5c29\u5c2b\u5c2c\u5c2e\u5c30\u5c32\u5c35\u5c36\u5c59\u5c5a\u5c5c\u5c62\u5c63\u5c67\u5c68\u5c69"],["8fbba1","\u5c6d\u5c70\u5c74\u5c75\u5c7a\u5c7b\u5c7c\u5c7d\u5c87\u5c88\u5c8a\u5c8f\u5c92\u5c9d\u5c9f\u5ca0\u5ca2\u5ca3\u5ca6\u5caa\u5cb2\u5cb4\u5cb5\u5cba\u5cc9\u5ccb\u5cd2\u5cdd\u5cd7\u5cee\u5cf1\u5cf2\u5cf4\u5d01\u5d06\u5d0d\u5d12\u5d2b\u5d23\u5d24\u5d26\u5d27\u5d31\u5d34\u5d39\u5d3d\u5d3f\u5d42\u5d43\u5d46\u5d48\u5d55\u5d51\u5d59\u5d4a\u5d5f\u5d60\u5d61\u5d62\u5d64\u5d6a\u5d6d\u5d70\u5d79\u5d7a\u5d7e\u5d7f\u5d81\u5d83\u5d88\u5d8a\u5d92\u5d93\u5d94\u5d95\u5d99\u5d9b\u5d9f\u5da0\u5da7\u5dab\u5db0\u5db4\u5db8\u5db9\u5dc3\u5dc7\u5dcb\u5dd0\u5dce\u5dd8\u5dd9\u5de0\u5de4"],["8fbca1","\u5de9\u5df8\u5df9\u5e00\u5e07\u5e0d\u5e12\u5e14\u5e15\u5e18\u5e1f\u5e20\u5e2e\u5e28\u5e32\u5e35\u5e3e\u5e4b\u5e50\u5e49\u5e51\u5e56\u5e58\u5e5b\u5e5c\u5e5e\u5e68\u5e6a",4,"\u5e70\u5e80\u5e8b\u5e8e\u5ea2\u5ea4\u5ea5\u5ea8\u5eaa\u5eac\u5eb1\u5eb3\u5ebd\u5ebe\u5ebf\u5ec6\u5ecc\u5ecb\u5ece\u5ed1\u5ed2\u5ed4\u5ed5\u5edc\u5ede\u5ee5\u5eeb\u5f02\u5f06\u5f07\u5f08\u5f0e\u5f19\u5f1c\u5f1d\u5f21\u5f22\u5f23\u5f24\u5f28\u5f2b\u5f2c\u5f2e\u5f30\u5f34\u5f36\u5f3b\u5f3d\u5f3f\u5f40\u5f44\u5f45\u5f47\u5f4d\u5f50\u5f54\u5f58\u5f5b\u5f60\u5f63\u5f64\u5f67"],["8fbda1","\u5f6f\u5f72\u5f74\u5f75\u5f78\u5f7a\u5f7d\u5f7e\u5f89\u5f8d\u5f8f\u5f96\u5f9c\u5f9d\u5fa2\u5fa7\u5fab\u5fa4\u5fac\u5faf\u5fb0\u5fb1\u5fb8\u5fc4\u5fc7\u5fc8\u5fc9\u5fcb\u5fd0",4,"\u5fde\u5fe1\u5fe2\u5fe8\u5fe9\u5fea\u5fec\u5fed\u5fee\u5fef\u5ff2\u5ff3\u5ff6\u5ffa\u5ffc\u6007\u600a\u600d\u6013\u6014\u6017\u6018\u601a\u601f\u6024\u602d\u6033\u6035\u6040\u6047\u6048\u6049\u604c\u6051\u6054\u6056\u6057\u605d\u6061\u6067\u6071\u607e\u607f\u6082\u6086\u6088\u608a\u608e\u6091\u6093\u6095\u6098\u609d\u609e\u60a2\u60a4\u60a5\u60a8\u60b0\u60b1\u60b7"],["8fbea1","\u60bb\u60be\u60c2\u60c4\u60c8\u60c9\u60ca\u60cb\u60ce\u60cf\u60d4\u60d5\u60d9\u60db\u60dd\u60de\u60e2\u60e5\u60f2\u60f5\u60f8\u60fc\u60fd\u6102\u6107\u610a\u610c\u6110",4,"\u6116\u6117\u6119\u611c\u611e\u6122\u612a\u612b\u6130\u6131\u6135\u6136\u6137\u6139\u6141\u6145\u6146\u6149\u615e\u6160\u616c\u6172\u6178\u617b\u617c\u617f\u6180\u6181\u6183\u6184\u618b\u618d\u6192\u6193\u6197\u6198\u619c\u619d\u619f\u61a0\u61a5\u61a8\u61aa\u61ad\u61b8\u61b9\u61bc\u61c0\u61c1\u61c2\u61ce\u61cf\u61d5\u61dc\u61dd\u61de\u61df\u61e1\u61e2\u61e7\u61e9\u61e5"],["8fbfa1","\u61ec\u61ed\u61ef\u6201\u6203\u6204\u6207\u6213\u6215\u621c\u6220\u6222\u6223\u6227\u6229\u622b\u6239\u623d\u6242\u6243\u6244\u6246\u624c\u6250\u6251\u6252\u6254\u6256\u625a\u625c\u6264\u626d\u626f\u6273\u627a\u627d\u628d\u628e\u628f\u6290\u62a6\u62a8\u62b3\u62b6\u62b7\u62ba\u62be\u62bf\u62c4\u62ce\u62d5\u62d6\u62da\u62ea\u62f2\u62f4\u62fc\u62fd\u6303\u6304\u630a\u630b\u630d\u6310\u6313\u6316\u6318\u6329\u632a\u632d\u6335\u6336\u6339\u633c\u6341\u6342\u6343\u6344\u6346\u634a\u634b\u634e\u6352\u6353\u6354\u6358\u635b\u6365\u6366\u636c\u636d\u6371\u6374\u6375"],["8fc0a1","\u6378\u637c\u637d\u637f\u6382\u6384\u6387\u638a\u6390\u6394\u6395\u6399\u639a\u639e\u63a4\u63a6\u63ad\u63ae\u63af\u63bd\u63c1\u63c5\u63c8\u63ce\u63d1\u63d3\u63d4\u63d5\u63dc\u63e0\u63e5\u63ea\u63ec\u63f2\u63f3\u63f5\u63f8\u63f9\u6409\u640a\u6410\u6412\u6414\u6418\u641e\u6420\u6422\u6424\u6425\u6429\u642a\u642f\u6430\u6435\u643d\u643f\u644b\u644f\u6451\u6452\u6453\u6454\u645a\u645b\u645c\u645d\u645f\u6460\u6461\u6463\u646d\u6473\u6474\u647b\u647d\u6485\u6487\u648f\u6490\u6491\u6498\u6499\u649b\u649d\u649f\u64a1\u64a3\u64a6\u64a8\u64ac\u64b3\u64bd\u64be\u64bf"],["8fc1a1","\u64c4\u64c9\u64ca\u64cb\u64cc\u64ce\u64d0\u64d1\u64d5\u64d7\u64e4\u64e5\u64e9\u64ea\u64ed\u64f0\u64f5\u64f7\u64fb\u64ff\u6501\u6504\u6508\u6509\u650a\u650f\u6513\u6514\u6516\u6519\u651b\u651e\u651f\u6522\u6526\u6529\u652e\u6531\u653a\u653c\u653d\u6543\u6547\u6549\u6550\u6552\u6554\u655f\u6560\u6567\u656b\u657a\u657d\u6581\u6585\u658a\u6592\u6595\u6598\u659d\u65a0\u65a3\u65a6\u65ae\u65b2\u65b3\u65b4\u65bf\u65c2\u65c8\u65c9\u65ce\u65d0\u65d4\u65d6\u65d8\u65df\u65f0\u65f2\u65f4\u65f5\u65f9\u65fe\u65ff\u6600\u6604\u6608\u6609\u660d\u6611\u6612\u6615\u6616\u661d"],["8fc2a1","\u661e\u6621\u6622\u6623\u6624\u6626\u6629\u662a\u662b\u662c\u662e\u6630\u6631\u6633\u6639\u6637\u6640\u6645\u6646\u664a\u664c\u6651\u664e\u6657\u6658\u6659\u665b\u665c\u6660\u6661\u66fb\u666a\u666b\u666c\u667e\u6673\u6675\u667f\u6677\u6678\u6679\u667b\u6680\u667c\u668b\u668c\u668d\u6690\u6692\u6699\u669a\u669b\u669c\u669f\u66a0\u66a4\u66ad\u66b1\u66b2\u66b5\u66bb\u66bf\u66c0\u66c2\u66c3\u66c8\u66cc\u66ce\u66cf\u66d4\u66db\u66df\u66e8\u66eb\u66ec\u66ee\u66fa\u6705\u6707\u670e\u6713\u6719\u671c\u6720\u6722\u6733\u673e\u6745\u6747\u6748\u674c\u6754\u6755\u675d"],["8fc3a1","\u6766\u676c\u676e\u6774\u6776\u677b\u6781\u6784\u678e\u678f\u6791\u6793\u6796\u6798\u6799\u679b\u67b0\u67b1\u67b2\u67b5\u67bb\u67bc\u67bd\u67f9\u67c0\u67c2\u67c3\u67c5\u67c8\u67c9\u67d2\u67d7\u67d9\u67dc\u67e1\u67e6\u67f0\u67f2\u67f6\u67f7\u6852\u6814\u6819\u681d\u681f\u6828\u6827\u682c\u682d\u682f\u6830\u6831\u6833\u683b\u683f\u6844\u6845\u684a\u684c\u6855\u6857\u6858\u685b\u686b\u686e",4,"\u6875\u6879\u687a\u687b\u687c\u6882\u6884\u6886\u6888\u6896\u6898\u689a\u689c\u68a1\u68a3\u68a5\u68a9\u68aa\u68ae\u68b2\u68bb\u68c5\u68c8\u68cc\u68cf"],["8fc4a1","\u68d0\u68d1\u68d3\u68d6\u68d9\u68dc\u68dd\u68e5\u68e8\u68ea\u68eb\u68ec\u68ed\u68f0\u68f1\u68f5\u68f6\u68fb\u68fc\u68fd\u6906\u6909\u690a\u6910\u6911\u6913\u6916\u6917\u6931\u6933\u6935\u6938\u693b\u6942\u6945\u6949\u694e\u6957\u695b\u6963\u6964\u6965\u6966\u6968\u6969\u696c\u6970\u6971\u6972\u697a\u697b\u697f\u6980\u698d\u6992\u6996\u6998\u69a1\u69a5\u69a6\u69a8\u69ab\u69ad\u69af\u69b7\u69b8\u69ba\u69bc\u69c5\u69c8\u69d1\u69d6\u69d7\u69e2\u69e5\u69ee\u69ef\u69f1\u69f3\u69f5\u69fe\u6a00\u6a01\u6a03\u6a0f\u6a11\u6a15\u6a1a\u6a1d\u6a20\u6a24\u6a28\u6a30\u6a32"],["8fc5a1","\u6a34\u6a37\u6a3b\u6a3e\u6a3f\u6a45\u6a46\u6a49\u6a4a\u6a4e\u6a50\u6a51\u6a52\u6a55\u6a56\u6a5b\u6a64\u6a67\u6a6a\u6a71\u6a73\u6a7e\u6a81\u6a83\u6a86\u6a87\u6a89\u6a8b\u6a91\u6a9b\u6a9d\u6a9e\u6a9f\u6aa5\u6aab\u6aaf\u6ab0\u6ab1\u6ab4\u6abd\u6abe\u6abf\u6ac6\u6ac9\u6ac8\u6acc\u6ad0\u6ad4\u6ad5\u6ad6\u6adc\u6add\u6ae4\u6ae7\u6aec\u6af0\u6af1\u6af2\u6afc\u6afd\u6b02\u6b03\u6b06\u6b07\u6b09\u6b0f\u6b10\u6b11\u6b17\u6b1b\u6b1e\u6b24\u6b28\u6b2b\u6b2c\u6b2f\u6b35\u6b36\u6b3b\u6b3f\u6b46\u6b4a\u6b4d\u6b52\u6b56\u6b58\u6b5d\u6b60\u6b67\u6b6b\u6b6e\u6b70\u6b75\u6b7d"],["8fc6a1","\u6b7e\u6b82\u6b85\u6b97\u6b9b\u6b9f\u6ba0\u6ba2\u6ba3\u6ba8\u6ba9\u6bac\u6bad\u6bae\u6bb0\u6bb8\u6bb9\u6bbd\u6bbe\u6bc3\u6bc4\u6bc9\u6bcc\u6bd6\u6bda\u6be1\u6be3\u6be6\u6be7\u6bee\u6bf1\u6bf7\u6bf9\u6bff\u6c02\u6c04\u6c05\u6c09\u6c0d\u6c0e\u6c10\u6c12\u6c19\u6c1f\u6c26\u6c27\u6c28\u6c2c\u6c2e\u6c33\u6c35\u6c36\u6c3a\u6c3b\u6c3f\u6c4a\u6c4b\u6c4d\u6c4f\u6c52\u6c54\u6c59\u6c5b\u6c5c\u6c6b\u6c6d\u6c6f\u6c74\u6c76\u6c78\u6c79\u6c7b\u6c85\u6c86\u6c87\u6c89\u6c94\u6c95\u6c97\u6c98\u6c9c\u6c9f\u6cb0\u6cb2\u6cb4\u6cc2\u6cc6\u6ccd\u6ccf\u6cd0\u6cd1\u6cd2\u6cd4\u6cd6"],["8fc7a1","\u6cda\u6cdc\u6ce0\u6ce7\u6ce9\u6ceb\u6cec\u6cee\u6cf2\u6cf4\u6d04\u6d07\u6d0a\u6d0e\u6d0f\u6d11\u6d13\u6d1a\u6d26\u6d27\u6d28\u6c67\u6d2e\u6d2f\u6d31\u6d39\u6d3c\u6d3f\u6d57\u6d5e\u6d5f\u6d61\u6d65\u6d67\u6d6f\u6d70\u6d7c\u6d82\u6d87\u6d91\u6d92\u6d94\u6d96\u6d97\u6d98\u6daa\u6dac\u6db4\u6db7\u6db9\u6dbd\u6dbf\u6dc4\u6dc8\u6dca\u6dce\u6dcf\u6dd6\u6ddb\u6ddd\u6ddf\u6de0\u6de2\u6de5\u6de9\u6def\u6df0\u6df4\u6df6\u6dfc\u6e00\u6e04\u6e1e\u6e22\u6e27\u6e32\u6e36\u6e39\u6e3b\u6e3c\u6e44\u6e45\u6e48\u6e49\u6e4b\u6e4f\u6e51\u6e52\u6e53\u6e54\u6e57\u6e5c\u6e5d\u6e5e"],["8fc8a1","\u6e62\u6e63\u6e68\u6e73\u6e7b\u6e7d\u6e8d\u6e93\u6e99\u6ea0\u6ea7\u6ead\u6eae\u6eb1\u6eb3\u6ebb\u6ebf\u6ec0\u6ec1\u6ec3\u6ec7\u6ec8\u6eca\u6ecd\u6ece\u6ecf\u6eeb\u6eed\u6eee\u6ef9\u6efb\u6efd\u6f04\u6f08\u6f0a\u6f0c\u6f0d\u6f16\u6f18\u6f1a\u6f1b\u6f26\u6f29\u6f2a\u6f2f\u6f30\u6f33\u6f36\u6f3b\u6f3c\u6f2d\u6f4f\u6f51\u6f52\u6f53\u6f57\u6f59\u6f5a\u6f5d\u6f5e\u6f61\u6f62\u6f68\u6f6c\u6f7d\u6f7e\u6f83\u6f87\u6f88\u6f8b\u6f8c\u6f8d\u6f90\u6f92\u6f93\u6f94\u6f96\u6f9a\u6f9f\u6fa0\u6fa5\u6fa6\u6fa7\u6fa8\u6fae\u6faf\u6fb0\u6fb5\u6fb6\u6fbc\u6fc5\u6fc7\u6fc8\u6fca"],["8fc9a1","\u6fda\u6fde\u6fe8\u6fe9\u6ff0\u6ff5\u6ff9\u6ffc\u6ffd\u7000\u7005\u7006\u7007\u700d\u7017\u7020\u7023\u702f\u7034\u7037\u7039\u703c\u7043\u7044\u7048\u7049\u704a\u704b\u7054\u7055\u705d\u705e\u704e\u7064\u7065\u706c\u706e\u7075\u7076\u707e\u7081\u7085\u7086\u7094",4,"\u709b\u70a4\u70ab\u70b0\u70b1\u70b4\u70b7\u70ca\u70d1\u70d3\u70d4\u70d5\u70d6\u70d8\u70dc\u70e4\u70fa\u7103",4,"\u710b\u710c\u710f\u711e\u7120\u712b\u712d\u712f\u7130\u7131\u7138\u7141\u7145\u7146\u7147\u714a\u714b\u7150\u7152\u7157\u715a\u715c\u715e\u7160"],["8fcaa1","\u7168\u7179\u7180\u7185\u7187\u718c\u7192\u719a\u719b\u71a0\u71a2\u71af\u71b0\u71b2\u71b3\u71ba\u71bf\u71c0\u71c1\u71c4\u71cb\u71cc\u71d3\u71d6\u71d9\u71da\u71dc\u71f8\u71fe\u7200\u7207\u7208\u7209\u7213\u7217\u721a\u721d\u721f\u7224\u722b\u722f\u7234\u7238\u7239\u7241\u7242\u7243\u7245\u724e\u724f\u7250\u7253\u7255\u7256\u725a\u725c\u725e\u7260\u7263\u7268\u726b\u726e\u726f\u7271\u7277\u7278\u727b\u727c\u727f\u7284\u7289\u728d\u728e\u7293\u729b\u72a8\u72ad\u72ae\u72b1\u72b4\u72be\u72c1\u72c7\u72c9\u72cc\u72d5\u72d6\u72d8\u72df\u72e5\u72f3\u72f4\u72fa\u72fb"],["8fcba1","\u72fe\u7302\u7304\u7305\u7307\u730b\u730d\u7312\u7313\u7318\u7319\u731e\u7322\u7324\u7327\u7328\u732c\u7331\u7332\u7335\u733a\u733b\u733d\u7343\u734d\u7350\u7352\u7356\u7358\u735d\u735e\u735f\u7360\u7366\u7367\u7369\u736b\u736c\u736e\u736f\u7371\u7377\u7379\u737c\u7380\u7381\u7383\u7385\u7386\u738e\u7390\u7393\u7395\u7397\u7398\u739c\u739e\u739f\u73a0\u73a2\u73a5\u73a6\u73aa\u73ab\u73ad\u73b5\u73b7\u73b9\u73bc\u73bd\u73bf\u73c5\u73c6\u73c9\u73cb\u73cc\u73cf\u73d2\u73d3\u73d6\u73d9\u73dd\u73e1\u73e3\u73e6\u73e7\u73e9\u73f4\u73f5\u73f7\u73f9\u73fa\u73fb\u73fd"],["8fcca1","\u73ff\u7400\u7401\u7404\u7407\u740a\u7411\u741a\u741b\u7424\u7426\u7428",9,"\u7439\u7440\u7443\u7444\u7446\u7447\u744b\u744d\u7451\u7452\u7457\u745d\u7462\u7466\u7467\u7468\u746b\u746d\u746e\u7471\u7472\u7480\u7481\u7485\u7486\u7487\u7489\u748f\u7490\u7491\u7492\u7498\u7499\u749a\u749c\u749f\u74a0\u74a1\u74a3\u74a6\u74a8\u74a9\u74aa\u74ab\u74ae\u74af\u74b1\u74b2\u74b5\u74b9\u74bb\u74bf\u74c8\u74c9\u74cc\u74d0\u74d3\u74d8\u74da\u74db\u74de\u74df\u74e4\u74e8\u74ea\u74eb\u74ef\u74f4\u74fa\u74fb\u74fc\u74ff\u7506"],["8fcda1","\u7512\u7516\u7517\u7520\u7521\u7524\u7527\u7529\u752a\u752f\u7536\u7539\u753d\u753e\u753f\u7540\u7543\u7547\u7548\u754e\u7550\u7552\u7557\u755e\u755f\u7561\u756f\u7571\u7579",5,"\u7581\u7585\u7590\u7592\u7593\u7595\u7599\u759c\u75a2\u75a4\u75b4\u75ba\u75bf\u75c0\u75c1\u75c4\u75c6\u75cc\u75ce\u75cf\u75d7\u75dc\u75df\u75e0\u75e1\u75e4\u75e7\u75ec\u75ee\u75ef\u75f1\u75f9\u7600\u7602\u7603\u7604\u7607\u7608\u760a\u760c\u760f\u7612\u7613\u7615\u7616\u7619\u761b\u761c\u761d\u761e\u7623\u7625\u7626\u7629\u762d\u7632\u7633\u7635\u7638\u7639"],["8fcea1","\u763a\u763c\u764a\u7640\u7641\u7643\u7644\u7645\u7649\u764b\u7655\u7659\u765f\u7664\u7665\u766d\u766e\u766f\u7671\u7674\u7681\u7685\u768c\u768d\u7695\u769b\u769c\u769d\u769f\u76a0\u76a2",6,"\u76aa\u76ad\u76bd\u76c1\u76c5\u76c9\u76cb\u76cc\u76ce\u76d4\u76d9\u76e0\u76e6\u76e8\u76ec\u76f0\u76f1\u76f6\u76f9\u76fc\u7700\u7706\u770a\u770e\u7712\u7714\u7715\u7717\u7719\u771a\u771c\u7722\u7728\u772d\u772e\u772f\u7734\u7735\u7736\u7739\u773d\u773e\u7742\u7745\u7746\u774a\u774d\u774e\u774f\u7752\u7756\u7757\u775c\u775e\u775f\u7760\u7762"],["8fcfa1","\u7764\u7767\u776a\u776c\u7770\u7772\u7773\u7774\u777a\u777d\u7780\u7784\u778c\u778d\u7794\u7795\u7796\u779a\u779f\u77a2\u77a7\u77aa\u77ae\u77af\u77b1\u77b5\u77be\u77c3\u77c9\u77d1\u77d2\u77d5\u77d9\u77de\u77df\u77e0\u77e4\u77e6\u77ea\u77ec\u77f0\u77f1\u77f4\u77f8\u77fb\u7805\u7806\u7809\u780d\u780e\u7811\u781d\u7821\u7822\u7823\u782d\u782e\u7830\u7835\u7837\u7843\u7844\u7847\u7848\u784c\u784e\u7852\u785c\u785e\u7860\u7861\u7863\u7864\u7868\u786a\u786e\u787a\u787e\u788a\u788f\u7894\u7898\u78a1\u789d\u789e\u789f\u78a4\u78a8\u78ac\u78ad\u78b0\u78b1\u78b2\u78b3"],["8fd0a1","\u78bb\u78bd\u78bf\u78c7\u78c8\u78c9\u78cc\u78ce\u78d2\u78d3\u78d5\u78d6\u78e4\u78db\u78df\u78e0\u78e1\u78e6\u78ea\u78f2\u78f3\u7900\u78f6\u78f7\u78fa\u78fb\u78ff\u7906\u790c\u7910\u791a\u791c\u791e\u791f\u7920\u7925\u7927\u7929\u792d\u7931\u7934\u7935\u793b\u793d\u793f\u7944\u7945\u7946\u794a\u794b\u794f\u7951\u7954\u7958\u795b\u795c\u7967\u7969\u796b\u7972\u7979\u797b\u797c\u797e\u798b\u798c\u7991\u7993\u7994\u7995\u7996\u7998\u799b\u799c\u79a1\u79a8\u79a9\u79ab\u79af\u79b1\u79b4\u79b8\u79bb\u79c2\u79c4\u79c7\u79c8\u79ca\u79cf\u79d4\u79d6\u79da\u79dd\u79de"],["8fd1a1","\u79e0\u79e2\u79e5\u79ea\u79eb\u79ed\u79f1\u79f8\u79fc\u7a02\u7a03\u7a07\u7a09\u7a0a\u7a0c\u7a11\u7a15\u7a1b\u7a1e\u7a21\u7a27\u7a2b\u7a2d\u7a2f\u7a30\u7a34\u7a35\u7a38\u7a39\u7a3a\u7a44\u7a45\u7a47\u7a48\u7a4c\u7a55\u7a56\u7a59\u7a5c\u7a5d\u7a5f\u7a60\u7a65\u7a67\u7a6a\u7a6d\u7a75\u7a78\u7a7e\u7a80\u7a82\u7a85\u7a86\u7a8a\u7a8b\u7a90\u7a91\u7a94\u7a9e\u7aa0\u7aa3\u7aac\u7ab3\u7ab5\u7ab9\u7abb\u7abc\u7ac6\u7ac9\u7acc\u7ace\u7ad1\u7adb\u7ae8\u7ae9\u7aeb\u7aec\u7af1\u7af4\u7afb\u7afd\u7afe\u7b07\u7b14\u7b1f\u7b23\u7b27\u7b29\u7b2a\u7b2b\u7b2d\u7b2e\u7b2f\u7b30"],["8fd2a1","\u7b31\u7b34\u7b3d\u7b3f\u7b40\u7b41\u7b47\u7b4e\u7b55\u7b60\u7b64\u7b66\u7b69\u7b6a\u7b6d\u7b6f\u7b72\u7b73\u7b77\u7b84\u7b89\u7b8e\u7b90\u7b91\u7b96\u7b9b\u7b9e\u7ba0\u7ba5\u7bac\u7baf\u7bb0\u7bb2\u7bb5\u7bb6\u7bba\u7bbb\u7bbc\u7bbd\u7bc2\u7bc5\u7bc8\u7bca\u7bd4\u7bd6\u7bd7\u7bd9\u7bda\u7bdb\u7be8\u7bea\u7bf2\u7bf4\u7bf5\u7bf8\u7bf9\u7bfa\u7bfc\u7bfe\u7c01\u7c02\u7c03\u7c04\u7c06\u7c09\u7c0b\u7c0c\u7c0e\u7c0f\u7c19\u7c1b\u7c20\u7c25\u7c26\u7c28\u7c2c\u7c31\u7c33\u7c34\u7c36\u7c39\u7c3a\u7c46\u7c4a\u7c55\u7c51\u7c52\u7c53\u7c59",5],["8fd3a1","\u7c61\u7c63\u7c67\u7c69\u7c6d\u7c6e\u7c70\u7c72\u7c79\u7c7c\u7c7d\u7c86\u7c87\u7c8f\u7c94\u7c9e\u7ca0\u7ca6\u7cb0\u7cb6\u7cb7\u7cba\u7cbb\u7cbc\u7cbf\u7cc4\u7cc7\u7cc8\u7cc9\u7ccd\u7ccf\u7cd3\u7cd4\u7cd5\u7cd7\u7cd9\u7cda\u7cdd\u7ce6\u7ce9\u7ceb\u7cf5\u7d03\u7d07\u7d08\u7d09\u7d0f\u7d11\u7d12\u7d13\u7d16\u7d1d\u7d1e\u7d23\u7d26\u7d2a\u7d2d\u7d31\u7d3c\u7d3d\u7d3e\u7d40\u7d41\u7d47\u7d48\u7d4d\u7d51\u7d53\u7d57\u7d59\u7d5a\u7d5c\u7d5d\u7d65\u7d67\u7d6a\u7d70\u7d78\u7d7a\u7d7b\u7d7f\u7d81\u7d82\u7d83\u7d85\u7d86\u7d88\u7d8b\u7d8c\u7d8d\u7d91\u7d96\u7d97\u7d9d"],["8fd4a1","\u7d9e\u7da6\u7da7\u7daa\u7db3\u7db6\u7db7\u7db9\u7dc2",4,"\u7dcc\u7dcd\u7dce\u7dd7\u7dd9\u7e00\u7de2\u7de5\u7de6\u7dea\u7deb\u7ded\u7df1\u7df5\u7df6\u7df9\u7dfa\u7e08\u7e10\u7e11\u7e15\u7e17\u7e1c\u7e1d\u7e20\u7e27\u7e28\u7e2c\u7e2d\u7e2f\u7e33\u7e36\u7e3f\u7e44\u7e45\u7e47\u7e4e\u7e50\u7e52\u7e58\u7e5f\u7e61\u7e62\u7e65\u7e6b\u7e6e\u7e6f\u7e73\u7e78\u7e7e\u7e81\u7e86\u7e87\u7e8a\u7e8d\u7e91\u7e95\u7e98\u7e9a\u7e9d\u7e9e\u7f3c\u7f3b\u7f3d\u7f3e\u7f3f\u7f43\u7f44\u7f47\u7f4f\u7f52\u7f53\u7f5b\u7f5c\u7f5d\u7f61\u7f63\u7f64\u7f65\u7f66\u7f6d"],["8fd5a1","\u7f71\u7f7d\u7f7e\u7f7f\u7f80\u7f8b\u7f8d\u7f8f\u7f90\u7f91\u7f96\u7f97\u7f9c\u7fa1\u7fa2\u7fa6\u7faa\u7fad\u7fb4\u7fbc\u7fbf\u7fc0\u7fc3\u7fc8\u7fce\u7fcf\u7fdb\u7fdf\u7fe3\u7fe5\u7fe8\u7fec\u7fee\u7fef\u7ff2\u7ffa\u7ffd\u7ffe\u7fff\u8007\u8008\u800a\u800d\u800e\u800f\u8011\u8013\u8014\u8016\u801d\u801e\u801f\u8020\u8024\u8026\u802c\u802e\u8030\u8034\u8035\u8037\u8039\u803a\u803c\u803e\u8040\u8044\u8060\u8064\u8066\u806d\u8071\u8075\u8081\u8088\u808e\u809c\u809e\u80a6\u80a7\u80ab\u80b8\u80b9\u80c8\u80cd\u80cf\u80d2\u80d4\u80d5\u80d7\u80d8\u80e0\u80ed\u80ee"],["8fd6a1","\u80f0\u80f2\u80f3\u80f6\u80f9\u80fa\u80fe\u8103\u810b\u8116\u8117\u8118\u811c\u811e\u8120\u8124\u8127\u812c\u8130\u8135\u813a\u813c\u8145\u8147\u814a\u814c\u8152\u8157\u8160\u8161\u8167\u8168\u8169\u816d\u816f\u8177\u8181\u8190\u8184\u8185\u8186\u818b\u818e\u8196\u8198\u819b\u819e\u81a2\u81ae\u81b2\u81b4\u81bb\u81cb\u81c3\u81c5\u81ca\u81ce\u81cf\u81d5\u81d7\u81db\u81dd\u81de\u81e1\u81e4\u81eb\u81ec\u81f0\u81f1\u81f2\u81f5\u81f6\u81f8\u81f9\u81fd\u81ff\u8200\u8203\u820f\u8213\u8214\u8219\u821a\u821d\u8221\u8222\u8228\u8232\u8234\u823a\u8243\u8244\u8245\u8246"],["8fd7a1","\u824b\u824e\u824f\u8251\u8256\u825c\u8260\u8263\u8267\u826d\u8274\u827b\u827d\u827f\u8280\u8281\u8283\u8284\u8287\u8289\u828a\u828e\u8291\u8294\u8296\u8298\u829a\u829b\u82a0\u82a1\u82a3\u82a4\u82a7\u82a8\u82a9\u82aa\u82ae\u82b0\u82b2\u82b4\u82b7\u82ba\u82bc\u82be\u82bf\u82c6\u82d0\u82d5\u82da\u82e0\u82e2\u82e4\u82e8\u82ea\u82ed\u82ef\u82f6\u82f7\u82fd\u82fe\u8300\u8301\u8307\u8308\u830a\u830b\u8354\u831b\u831d\u831e\u831f\u8321\u8322\u832c\u832d\u832e\u8330\u8333\u8337\u833a\u833c\u833d\u8342\u8343\u8344\u8347\u834d\u834e\u8351\u8355\u8356\u8357\u8370\u8378"],["8fd8a1","\u837d\u837f\u8380\u8382\u8384\u8386\u838d\u8392\u8394\u8395\u8398\u8399\u839b\u839c\u839d\u83a6\u83a7\u83a9\u83ac\u83be\u83bf\u83c0\u83c7\u83c9\u83cf\u83d0\u83d1\u83d4\u83dd\u8353\u83e8\u83ea\u83f6\u83f8\u83f9\u83fc\u8401\u8406\u840a\u840f\u8411\u8415\u8419\u83ad\u842f\u8439\u8445\u8447\u8448\u844a\u844d\u844f\u8451\u8452\u8456\u8458\u8459\u845a\u845c\u8460\u8464\u8465\u8467\u846a\u8470\u8473\u8474\u8476\u8478\u847c\u847d\u8481\u8485\u8492\u8493\u8495\u849e\u84a6\u84a8\u84a9\u84aa\u84af\u84b1\u84b4\u84ba\u84bd\u84be\u84c0\u84c2\u84c7\u84c8\u84cc\u84cf\u84d3"],["8fd9a1","\u84dc\u84e7\u84ea\u84ef\u84f0\u84f1\u84f2\u84f7\u8532\u84fa\u84fb\u84fd\u8502\u8503\u8507\u850c\u850e\u8510\u851c\u851e\u8522\u8523\u8524\u8525\u8527\u852a\u852b\u852f\u8533\u8534\u8536\u853f\u8546\u854f",4,"\u8556\u8559\u855c",6,"\u8564\u856b\u856f\u8579\u857a\u857b\u857d\u857f\u8581\u8585\u8586\u8589\u858b\u858c\u858f\u8593\u8598\u859d\u859f\u85a0\u85a2\u85a5\u85a7\u85b4\u85b6\u85b7\u85b8\u85bc\u85bd\u85be\u85bf\u85c2\u85c7\u85ca\u85cb\u85ce\u85ad\u85d8\u85da\u85df\u85e0\u85e6\u85e8\u85ed\u85f3\u85f6\u85fc"],["8fdaa1","\u85ff\u8600\u8604\u8605\u860d\u860e\u8610\u8611\u8612\u8618\u8619\u861b\u861e\u8621\u8627\u8629\u8636\u8638\u863a\u863c\u863d\u8640\u8642\u8646\u8652\u8653\u8656\u8657\u8658\u8659\u865d\u8660",4,"\u8669\u866c\u866f\u8675\u8676\u8677\u867a\u868d\u8691\u8696\u8698\u869a\u869c\u86a1\u86a6\u86a7\u86a8\u86ad\u86b1\u86b3\u86b4\u86b5\u86b7\u86b8\u86b9\u86bf\u86c0\u86c1\u86c3\u86c5\u86d1\u86d2\u86d5\u86d7\u86da\u86dc\u86e0\u86e3\u86e5\u86e7\u8688\u86fa\u86fc\u86fd\u8704\u8705\u8707\u870b\u870e\u870f\u8710\u8713\u8714\u8719\u871e\u871f\u8721\u8723"],["8fdba1","\u8728\u872e\u872f\u8731\u8732\u8739\u873a\u873c\u873d\u873e\u8740\u8743\u8745\u874d\u8758\u875d\u8761\u8764\u8765\u876f\u8771\u8772\u877b\u8783",6,"\u878b\u878c\u8790\u8793\u8795\u8797\u8798\u8799\u879e\u87a0\u87a3\u87a7\u87ac\u87ad\u87ae\u87b1\u87b5\u87be\u87bf\u87c1\u87c8\u87c9\u87ca\u87ce\u87d5\u87d6\u87d9\u87da\u87dc\u87df\u87e2\u87e3\u87e4\u87ea\u87eb\u87ed\u87f1\u87f3\u87f8\u87fa\u87ff\u8801\u8803\u8806\u8809\u880a\u880b\u8810\u8819\u8812\u8813\u8814\u8818\u881a\u881b\u881c\u881e\u881f\u8828\u882d\u882e\u8830\u8832\u8835"],["8fdca1","\u883a\u883c\u8841\u8843\u8845\u8848\u8849\u884a\u884b\u884e\u8851\u8855\u8856\u8858\u885a\u885c\u885f\u8860\u8864\u8869\u8871\u8879\u887b\u8880\u8898\u889a\u889b\u889c\u889f\u88a0\u88a8\u88aa\u88ba\u88bd\u88be\u88c0\u88ca",4,"\u88d1\u88d2\u88d3\u88db\u88de\u88e7\u88ef\u88f0\u88f1\u88f5\u88f7\u8901\u8906\u890d\u890e\u890f\u8915\u8916\u8918\u8919\u891a\u891c\u8920\u8926\u8927\u8928\u8930\u8931\u8932\u8935\u8939\u893a\u893e\u8940\u8942\u8945\u8946\u8949\u894f\u8952\u8957\u895a\u895b\u895c\u8961\u8962\u8963\u896b\u896e\u8970\u8973\u8975\u897a"],["8fdda1","\u897b\u897c\u897d\u8989\u898d\u8990\u8994\u8995\u899b\u899c\u899f\u89a0\u89a5\u89b0\u89b4\u89b5\u89b6\u89b7\u89bc\u89d4",4,"\u89e5\u89e9\u89eb\u89ed\u89f1\u89f3\u89f6\u89f9\u89fd\u89ff\u8a04\u8a05\u8a07\u8a0f\u8a11\u8a12\u8a14\u8a15\u8a1e\u8a20\u8a22\u8a24\u8a26\u8a2b\u8a2c\u8a2f\u8a35\u8a37\u8a3d\u8a3e\u8a40\u8a43\u8a45\u8a47\u8a49\u8a4d\u8a4e\u8a53\u8a56\u8a57\u8a58\u8a5c\u8a5d\u8a61\u8a65\u8a67\u8a75\u8a76\u8a77\u8a79\u8a7a\u8a7b\u8a7e\u8a7f\u8a80\u8a83\u8a86\u8a8b\u8a8f\u8a90\u8a92\u8a96\u8a97\u8a99\u8a9f\u8aa7\u8aa9\u8aae\u8aaf\u8ab3"],["8fdea1","\u8ab6\u8ab7\u8abb\u8abe\u8ac3\u8ac6\u8ac8\u8ac9\u8aca\u8ad1\u8ad3\u8ad4\u8ad5\u8ad7\u8add\u8adf\u8aec\u8af0\u8af4\u8af5\u8af6\u8afc\u8aff\u8b05\u8b06\u8b0b\u8b11\u8b1c\u8b1e\u8b1f\u8b0a\u8b2d\u8b30\u8b37\u8b3c\u8b42",4,"\u8b48\u8b52\u8b53\u8b54\u8b59\u8b4d\u8b5e\u8b63\u8b6d\u8b76\u8b78\u8b79\u8b7c\u8b7e\u8b81\u8b84\u8b85\u8b8b\u8b8d\u8b8f\u8b94\u8b95\u8b9c\u8b9e\u8b9f\u8c38\u8c39\u8c3d\u8c3e\u8c45\u8c47\u8c49\u8c4b\u8c4f\u8c51\u8c53\u8c54\u8c57\u8c58\u8c5b\u8c5d\u8c59\u8c63\u8c64\u8c66\u8c68\u8c69\u8c6d\u8c73\u8c75\u8c76\u8c7b\u8c7e\u8c86"],["8fdfa1","\u8c87\u8c8b\u8c90\u8c92\u8c93\u8c99\u8c9b\u8c9c\u8ca4\u8cb9\u8cba\u8cc5\u8cc6\u8cc9\u8ccb\u8ccf\u8cd6\u8cd5\u8cd9\u8cdd\u8ce1\u8ce8\u8cec\u8cef\u8cf0\u8cf2\u8cf5\u8cf7\u8cf8\u8cfe\u8cff\u8d01\u8d03\u8d09\u8d12\u8d17\u8d1b\u8d65\u8d69\u8d6c\u8d6e\u8d7f\u8d82\u8d84\u8d88\u8d8d\u8d90\u8d91\u8d95\u8d9e\u8d9f\u8da0\u8da6\u8dab\u8dac\u8daf\u8db2\u8db5\u8db7\u8db9\u8dbb\u8dc0\u8dc5\u8dc6\u8dc7\u8dc8\u8dca\u8dce\u8dd1\u8dd4\u8dd5\u8dd7\u8dd9\u8de4\u8de5\u8de7\u8dec\u8df0\u8dbc\u8df1\u8df2\u8df4\u8dfd\u8e01\u8e04\u8e05\u8e06\u8e0b\u8e11\u8e14\u8e16\u8e20\u8e21\u8e22"],["8fe0a1","\u8e23\u8e26\u8e27\u8e31\u8e33\u8e36\u8e37\u8e38\u8e39\u8e3d\u8e40\u8e41\u8e4b\u8e4d\u8e4e\u8e4f\u8e54\u8e5b\u8e5c\u8e5d\u8e5e\u8e61\u8e62\u8e69\u8e6c\u8e6d\u8e6f\u8e70\u8e71\u8e79\u8e7a\u8e7b\u8e82\u8e83\u8e89\u8e90\u8e92\u8e95\u8e9a\u8e9b\u8e9d\u8e9e\u8ea2\u8ea7\u8ea9\u8ead\u8eae\u8eb3\u8eb5\u8eba\u8ebb\u8ec0\u8ec1\u8ec3\u8ec4\u8ec7\u8ecf\u8ed1\u8ed4\u8edc\u8ee8\u8eee\u8ef0\u8ef1\u8ef7\u8ef9\u8efa\u8eed\u8f00\u8f02\u8f07\u8f08\u8f0f\u8f10\u8f16\u8f17\u8f18\u8f1e\u8f20\u8f21\u8f23\u8f25\u8f27\u8f28\u8f2c\u8f2d\u8f2e\u8f34\u8f35\u8f36\u8f37\u8f3a\u8f40\u8f41"],["8fe1a1","\u8f43\u8f47\u8f4f\u8f51",4,"\u8f58\u8f5d\u8f5e\u8f65\u8f9d\u8fa0\u8fa1\u8fa4\u8fa5\u8fa6\u8fb5\u8fb6\u8fb8\u8fbe\u8fc0\u8fc1\u8fc6\u8fca\u8fcb\u8fcd\u8fd0\u8fd2\u8fd3\u8fd5\u8fe0\u8fe3\u8fe4\u8fe8\u8fee\u8ff1\u8ff5\u8ff6\u8ffb\u8ffe\u9002\u9004\u9008\u900c\u9018\u901b\u9028\u9029\u902f\u902a\u902c\u902d\u9033\u9034\u9037\u903f\u9043\u9044\u904c\u905b\u905d\u9062\u9066\u9067\u906c\u9070\u9074\u9079\u9085\u9088\u908b\u908c\u908e\u9090\u9095\u9097\u9098\u9099\u909b\u90a0\u90a1\u90a2\u90a5\u90b0\u90b2\u90b3\u90b4\u90b6\u90bd\u90cc\u90be\u90c3"],["8fe2a1","\u90c4\u90c5\u90c7\u90c8\u90d5\u90d7\u90d8\u90d9\u90dc\u90dd\u90df\u90e5\u90d2\u90f6\u90eb\u90ef\u90f0\u90f4\u90fe\u90ff\u9100\u9104\u9105\u9106\u9108\u910d\u9110\u9114\u9116\u9117\u9118\u911a\u911c\u911e\u9120\u9125\u9122\u9123\u9127\u9129\u912e\u912f\u9131\u9134\u9136\u9137\u9139\u913a\u913c\u913d\u9143\u9147\u9148\u914f\u9153\u9157\u9159\u915a\u915b\u9161\u9164\u9167\u916d\u9174\u9179\u917a\u917b\u9181\u9183\u9185\u9186\u918a\u918e\u9191\u9193\u9194\u9195\u9198\u919e\u91a1\u91a6\u91a8\u91ac\u91ad\u91ae\u91b0\u91b1\u91b2\u91b3\u91b6\u91bb\u91bc\u91bd\u91bf"],["8fe3a1","\u91c2\u91c3\u91c5\u91d3\u91d4\u91d7\u91d9\u91da\u91de\u91e4\u91e5\u91e9\u91ea\u91ec",5,"\u91f7\u91f9\u91fb\u91fd\u9200\u9201\u9204\u9205\u9206\u9207\u9209\u920a\u920c\u9210\u9212\u9213\u9216\u9218\u921c\u921d\u9223\u9224\u9225\u9226\u9228\u922e\u922f\u9230\u9233\u9235\u9236\u9238\u9239\u923a\u923c\u923e\u9240\u9242\u9243\u9246\u9247\u924a\u924d\u924e\u924f\u9251\u9258\u9259\u925c\u925d\u9260\u9261\u9265\u9267\u9268\u9269\u926e\u926f\u9270\u9275",4,"\u927b\u927c\u927d\u927f\u9288\u9289\u928a\u928d\u928e\u9292\u9297"],["8fe4a1","\u9299\u929f\u92a0\u92a4\u92a5\u92a7\u92a8\u92ab\u92af\u92b2\u92b6\u92b8\u92ba\u92bb\u92bc\u92bd\u92bf",4,"\u92c5\u92c6\u92c7\u92c8\u92cb\u92cc\u92cd\u92ce\u92d0\u92d3\u92d5\u92d7\u92d8\u92d9\u92dc\u92dd\u92df\u92e0\u92e1\u92e3\u92e5\u92e7\u92e8\u92ec\u92ee\u92f0\u92f9\u92fb\u92ff\u9300\u9302\u9308\u930d\u9311\u9314\u9315\u931c\u931d\u931e\u931f\u9321\u9324\u9325\u9327\u9329\u932a\u9333\u9334\u9336\u9337\u9347\u9348\u9349\u9350\u9351\u9352\u9355\u9357\u9358\u935a\u935e\u9364\u9365\u9367\u9369\u936a\u936d\u936f\u9370\u9371\u9373\u9374\u9376"],["8fe5a1","\u937a\u937d\u937f\u9380\u9381\u9382\u9388\u938a\u938b\u938d\u938f\u9392\u9395\u9398\u939b\u939e\u93a1\u93a3\u93a4\u93a6\u93a8\u93ab\u93b4\u93b5\u93b6\u93ba\u93a9\u93c1\u93c4\u93c5\u93c6\u93c7\u93c9",4,"\u93d3\u93d9\u93dc\u93de\u93df\u93e2\u93e6\u93e7\u93f9\u93f7\u93f8\u93fa\u93fb\u93fd\u9401\u9402\u9404\u9408\u9409\u940d\u940e\u940f\u9415\u9416\u9417\u941f\u942e\u942f\u9431\u9432\u9433\u9434\u943b\u943f\u943d\u9443\u9445\u9448\u944a\u944c\u9455\u9459\u945c\u945f\u9461\u9463\u9468\u946b\u946d\u946e\u946f\u9471\u9472\u9484\u9483\u9578\u9579"],["8fe6a1","\u957e\u9584\u9588\u958c\u958d\u958e\u959d\u959e\u959f\u95a1\u95a6\u95a9\u95ab\u95ac\u95b4\u95b6\u95ba\u95bd\u95bf\u95c6\u95c8\u95c9\u95cb\u95d0\u95d1\u95d2\u95d3\u95d9\u95da\u95dd\u95de\u95df\u95e0\u95e4\u95e6\u961d\u961e\u9622\u9624\u9625\u9626\u962c\u9631\u9633\u9637\u9638\u9639\u963a\u963c\u963d\u9641\u9652\u9654\u9656\u9657\u9658\u9661\u966e\u9674\u967b\u967c\u967e\u967f\u9681\u9682\u9683\u9684\u9689\u9691\u9696\u969a\u969d\u969f\u96a4\u96a5\u96a6\u96a9\u96ae\u96af\u96b3\u96ba\u96ca\u96d2\u5db2\u96d8\u96da\u96dd\u96de\u96df\u96e9\u96ef\u96f1\u96fa\u9702"],["8fe7a1","\u9703\u9705\u9709\u971a\u971b\u971d\u9721\u9722\u9723\u9728\u9731\u9733\u9741\u9743\u974a\u974e\u974f\u9755\u9757\u9758\u975a\u975b\u9763\u9767\u976a\u976e\u9773\u9776\u9777\u9778\u977b\u977d\u977f\u9780\u9789\u9795\u9796\u9797\u9799\u979a\u979e\u979f\u97a2\u97ac\u97ae\u97b1\u97b2\u97b5\u97b6\u97b8\u97b9\u97ba\u97bc\u97be\u97bf\u97c1\u97c4\u97c5\u97c7\u97c9\u97ca\u97cc\u97cd\u97ce\u97d0\u97d1\u97d4\u97d7\u97d8\u97d9\u97dd\u97de\u97e0\u97db\u97e1\u97e4\u97ef\u97f1\u97f4\u97f7\u97f8\u97fa\u9807\u980a\u9819\u980d\u980e\u9814\u9816\u981c\u981e\u9820\u9823\u9826"],["8fe8a1","\u982b\u982e\u982f\u9830\u9832\u9833\u9835\u9825\u983e\u9844\u9847\u984a\u9851\u9852\u9853\u9856\u9857\u9859\u985a\u9862\u9863\u9865\u9866\u986a\u986c\u98ab\u98ad\u98ae\u98b0\u98b4\u98b7\u98b8\u98ba\u98bb\u98bf\u98c2\u98c5\u98c8\u98cc\u98e1\u98e3\u98e5\u98e6\u98e7\u98ea\u98f3\u98f6\u9902\u9907\u9908\u9911\u9915\u9916\u9917\u991a\u991b\u991c\u991f\u9922\u9926\u9927\u992b\u9931",4,"\u9939\u993a\u993b\u993c\u9940\u9941\u9946\u9947\u9948\u994d\u994e\u9954\u9958\u9959\u995b\u995c\u995e\u995f\u9960\u999b\u999d\u999f\u99a6\u99b0\u99b1\u99b2\u99b5"],["8fe9a1","\u99b9\u99ba\u99bd\u99bf\u99c3\u99c9\u99d3\u99d4\u99d9\u99da\u99dc\u99de\u99e7\u99ea\u99eb\u99ec\u99f0\u99f4\u99f5\u99f9\u99fd\u99fe\u9a02\u9a03\u9a04\u9a0b\u9a0c\u9a10\u9a11\u9a16\u9a1e\u9a20\u9a22\u9a23\u9a24\u9a27\u9a2d\u9a2e\u9a33\u9a35\u9a36\u9a38\u9a47\u9a41\u9a44\u9a4a\u9a4b\u9a4c\u9a4e\u9a51\u9a54\u9a56\u9a5d\u9aaa\u9aac\u9aae\u9aaf\u9ab2\u9ab4\u9ab5\u9ab6\u9ab9\u9abb\u9abe\u9abf\u9ac1\u9ac3\u9ac6\u9ac8\u9ace\u9ad0\u9ad2\u9ad5\u9ad6\u9ad7\u9adb\u9adc\u9ae0\u9ae4\u9ae5\u9ae7\u9ae9\u9aec\u9af2\u9af3\u9af5\u9af9\u9afa\u9afd\u9aff",4],["8feaa1","\u9b04\u9b05\u9b08\u9b09\u9b0b\u9b0c\u9b0d\u9b0e\u9b10\u9b12\u9b16\u9b19\u9b1b\u9b1c\u9b20\u9b26\u9b2b\u9b2d\u9b33\u9b34\u9b35\u9b37\u9b39\u9b3a\u9b3d\u9b48\u9b4b\u9b4c\u9b55\u9b56\u9b57\u9b5b\u9b5e\u9b61\u9b63\u9b65\u9b66\u9b68\u9b6a",4,"\u9b73\u9b75\u9b77\u9b78\u9b79\u9b7f\u9b80\u9b84\u9b85\u9b86\u9b87\u9b89\u9b8a\u9b8b\u9b8d\u9b8f\u9b90\u9b94\u9b9a\u9b9d\u9b9e\u9ba6\u9ba7\u9ba9\u9bac\u9bb0\u9bb1\u9bb2\u9bb7\u9bb8\u9bbb\u9bbc\u9bbe\u9bbf\u9bc1\u9bc7\u9bc8\u9bce\u9bd0\u9bd7\u9bd8\u9bdd\u9bdf\u9be5\u9be7\u9bea\u9beb\u9bef\u9bf3\u9bf7\u9bf8"],["8feba1","\u9bf9\u9bfa\u9bfd\u9bff\u9c00\u9c02\u9c0b\u9c0f\u9c11\u9c16\u9c18\u9c19\u9c1a\u9c1c\u9c1e\u9c22\u9c23\u9c26",4,"\u9c31\u9c35\u9c36\u9c37\u9c3d\u9c41\u9c43\u9c44\u9c45\u9c49\u9c4a\u9c4e\u9c4f\u9c50\u9c53\u9c54\u9c56\u9c58\u9c5b\u9c5d\u9c5e\u9c5f\u9c63\u9c69\u9c6a\u9c5c\u9c6b\u9c68\u9c6e\u9c70\u9c72\u9c75\u9c77\u9c7b\u9ce6\u9cf2\u9cf7\u9cf9\u9d0b\u9d02\u9d11\u9d17\u9d18\u9d1c\u9d1d\u9d1e\u9d2f\u9d30\u9d32\u9d33\u9d34\u9d3a\u9d3c\u9d45\u9d3d\u9d42\u9d43\u9d47\u9d4a\u9d53\u9d54\u9d5f\u9d63\u9d62\u9d65\u9d69\u9d6a\u9d6b\u9d70\u9d76\u9d77\u9d7b"],["8feca1","\u9d7c\u9d7e\u9d83\u9d84\u9d86\u9d8a\u9d8d\u9d8e\u9d92\u9d93\u9d95\u9d96\u9d97\u9d98\u9da1\u9daa\u9dac\u9dae\u9db1\u9db5\u9db9\u9dbc\u9dbf\u9dc3\u9dc7\u9dc9\u9dca\u9dd4\u9dd5\u9dd6\u9dd7\u9dda\u9dde\u9ddf\u9de0\u9de5\u9de7\u9de9\u9deb\u9dee\u9df0\u9df3\u9df4\u9dfe\u9e0a\u9e02\u9e07\u9e0e\u9e10\u9e11\u9e12\u9e15\u9e16\u9e19\u9e1c\u9e1d\u9e7a\u9e7b\u9e7c\u9e80\u9e82\u9e83\u9e84\u9e85\u9e87\u9e8e\u9e8f\u9e96\u9e98\u9e9b\u9e9e\u9ea4\u9ea8\u9eac\u9eae\u9eaf\u9eb0\u9eb3\u9eb4\u9eb5\u9ec6\u9ec8\u9ecb\u9ed5\u9edf\u9ee4\u9ee7\u9eec\u9eed\u9eee\u9ef0\u9ef1\u9ef2\u9ef5"],["8feda1","\u9ef8\u9eff\u9f02\u9f03\u9f09\u9f0f\u9f10\u9f11\u9f12\u9f14\u9f16\u9f17\u9f19\u9f1a\u9f1b\u9f1f\u9f22\u9f26\u9f2a\u9f2b\u9f2f\u9f31\u9f32\u9f34\u9f37\u9f39\u9f3a\u9f3c\u9f3d\u9f3f\u9f41\u9f43",4,"\u9f53\u9f55\u9f56\u9f57\u9f58\u9f5a\u9f5d\u9f5e\u9f68\u9f69\u9f6d",4,"\u9f73\u9f75\u9f7a\u9f7d\u9f8f\u9f90\u9f91\u9f92\u9f94\u9f96\u9f97\u9f9e\u9fa1\u9fa2\u9fa3\u9fa5"]]')},99129:function(b){"use strict";b.exports=JSON.parse('{"uChars":[128,165,169,178,184,216,226,235,238,244,248,251,253,258,276,284,300,325,329,334,364,463,465,467,469,471,473,475,477,506,594,610,712,716,730,930,938,962,970,1026,1104,1106,8209,8215,8218,8222,8231,8241,8244,8246,8252,8365,8452,8454,8458,8471,8482,8556,8570,8596,8602,8713,8720,8722,8726,8731,8737,8740,8742,8748,8751,8760,8766,8777,8781,8787,8802,8808,8816,8854,8858,8870,8896,8979,9322,9372,9548,9588,9616,9622,9634,9652,9662,9672,9676,9680,9702,9735,9738,9793,9795,11906,11909,11913,11917,11928,11944,11947,11951,11956,11960,11964,11979,12284,12292,12312,12319,12330,12351,12436,12447,12535,12543,12586,12842,12850,12964,13200,13215,13218,13253,13263,13267,13270,13384,13428,13727,13839,13851,14617,14703,14801,14816,14964,15183,15471,15585,16471,16736,17208,17325,17330,17374,17623,17997,18018,18212,18218,18301,18318,18760,18811,18814,18820,18823,18844,18848,18872,19576,19620,19738,19887,40870,59244,59336,59367,59413,59417,59423,59431,59437,59443,59452,59460,59478,59493,63789,63866,63894,63976,63986,64016,64018,64021,64025,64034,64037,64042,65074,65093,65107,65112,65127,65132,65375,65510,65536],"gbChars":[0,36,38,45,50,81,89,95,96,100,103,104,105,109,126,133,148,172,175,179,208,306,307,308,309,310,311,312,313,341,428,443,544,545,558,741,742,749,750,805,819,820,7922,7924,7925,7927,7934,7943,7944,7945,7950,8062,8148,8149,8152,8164,8174,8236,8240,8262,8264,8374,8380,8381,8384,8388,8390,8392,8393,8394,8396,8401,8406,8416,8419,8424,8437,8439,8445,8482,8485,8496,8521,8603,8936,8946,9046,9050,9063,9066,9076,9092,9100,9108,9111,9113,9131,9162,9164,9218,9219,11329,11331,11334,11336,11346,11361,11363,11366,11370,11372,11375,11389,11682,11686,11687,11692,11694,11714,11716,11723,11725,11730,11736,11982,11989,12102,12336,12348,12350,12384,12393,12395,12397,12510,12553,12851,12962,12973,13738,13823,13919,13933,14080,14298,14585,14698,15583,15847,16318,16434,16438,16481,16729,17102,17122,17315,17320,17402,17418,17859,17909,17911,17915,17916,17936,17939,17961,18664,18703,18814,18962,19043,33469,33470,33471,33484,33485,33490,33497,33501,33505,33513,33520,33536,33550,37845,37921,37948,38029,38038,38064,38065,38066,38069,38075,38076,38078,39108,39109,39113,39114,39115,39116,39265,39394,189000]}')},55914:function(b){"use strict";b.exports=JSON.parse('[["a140","\ue4c6",62],["a180","\ue505",32],["a240","\ue526",62],["a280","\ue565",32],["a2ab","\ue766",5],["a2e3","\u20ac\ue76d"],["a2ef","\ue76e\ue76f"],["a2fd","\ue770\ue771"],["a340","\ue586",62],["a380","\ue5c5",31,"\u3000"],["a440","\ue5e6",62],["a480","\ue625",32],["a4f4","\ue772",10],["a540","\ue646",62],["a580","\ue685",32],["a5f7","\ue77d",7],["a640","\ue6a6",62],["a680","\ue6e5",32],["a6b9","\ue785",7],["a6d9","\ue78d",6],["a6ec","\ue794\ue795"],["a6f3","\ue796"],["a6f6","\ue797",8],["a740","\ue706",62],["a780","\ue745",32],["a7c2","\ue7a0",14],["a7f2","\ue7af",12],["a896","\ue7bc",10],["a8bc","\u1e3f"],["a8bf","\u01f9"],["a8c1","\ue7c9\ue7ca\ue7cb\ue7cc"],["a8ea","\ue7cd",20],["a958","\ue7e2"],["a95b","\ue7e3"],["a95d","\ue7e4\ue7e5\ue7e6"],["a989","\u303e\u2ff0",11],["a997","\ue7f4",12],["a9f0","\ue801",14],["aaa1","\ue000",93],["aba1","\ue05e",93],["aca1","\ue0bc",93],["ada1","\ue11a",93],["aea1","\ue178",93],["afa1","\ue1d6",93],["d7fa","\ue810",4],["f8a1","\ue234",93],["f9a1","\ue292",93],["faa1","\ue2f0",93],["fba1","\ue34e",93],["fca1","\ue3ac",93],["fda1","\ue40a",93],["fe50","\u2e81\ue816\ue817\ue818\u2e84\u3473\u3447\u2e88\u2e8b\ue81e\u359e\u361a\u360e\u2e8c\u2e97\u396e\u3918\ue826\u39cf\u39df\u3a73\u39d0\ue82b\ue82c\u3b4e\u3c6e\u3ce0\u2ea7\ue831\ue832\u2eaa\u4056\u415f\u2eae\u4337\u2eb3\u2eb6\u2eb7\ue83b\u43b1\u43ac\u2ebb\u43dd\u44d6\u4661\u464c\ue843"],["fe80","\u4723\u4729\u477c\u478d\u2eca\u4947\u497a\u497d\u4982\u4983\u4985\u4986\u499f\u499b\u49b7\u49b6\ue854\ue855\u4ca3\u4c9f\u4ca0\u4ca1\u4c77\u4ca2\u4d13",6,"\u4dae\ue864\ue468",93],["8135f437","\ue7c7"]]')},40679:function(b){"use strict";b.exports=JSON.parse('[["0","\\u0000",128],["a1","\uff61",62],["8140","\u3000\u3001\u3002\uff0c\uff0e\u30fb\uff1a\uff1b\uff1f\uff01\u309b\u309c\xb4\uff40\xa8\uff3e\uffe3\uff3f\u30fd\u30fe\u309d\u309e\u3003\u4edd\u3005\u3006\u3007\u30fc\u2015\u2010\uff0f\uff3c\uff5e\u2225\uff5c\u2026\u2025\u2018\u2019\u201c\u201d\uff08\uff09\u3014\u3015\uff3b\uff3d\uff5b\uff5d\u3008",9,"\uff0b\uff0d\xb1\xd7"],["8180","\xf7\uff1d\u2260\uff1c\uff1e\u2266\u2267\u221e\u2234\u2642\u2640\xb0\u2032\u2033\u2103\uffe5\uff04\uffe0\uffe1\uff05\uff03\uff06\uff0a\uff20\xa7\u2606\u2605\u25cb\u25cf\u25ce\u25c7\u25c6\u25a1\u25a0\u25b3\u25b2\u25bd\u25bc\u203b\u3012\u2192\u2190\u2191\u2193\u3013"],["81b8","\u2208\u220b\u2286\u2287\u2282\u2283\u222a\u2229"],["81c8","\u2227\u2228\uffe2\u21d2\u21d4\u2200\u2203"],["81da","\u2220\u22a5\u2312\u2202\u2207\u2261\u2252\u226a\u226b\u221a\u223d\u221d\u2235\u222b\u222c"],["81f0","\u212b\u2030\u266f\u266d\u266a\u2020\u2021\xb6"],["81fc","\u25ef"],["824f","\uff10",9],["8260","\uff21",25],["8281","\uff41",25],["829f","\u3041",82],["8340","\u30a1",62],["8380","\u30e0",22],["839f","\u0391",16,"\u03a3",6],["83bf","\u03b1",16,"\u03c3",6],["8440","\u0410",5,"\u0401\u0416",25],["8470","\u0430",5,"\u0451\u0436",7],["8480","\u043e",17],["849f","\u2500\u2502\u250c\u2510\u2518\u2514\u251c\u252c\u2524\u2534\u253c\u2501\u2503\u250f\u2513\u251b\u2517\u2523\u2533\u252b\u253b\u254b\u2520\u252f\u2528\u2537\u253f\u251d\u2530\u2525\u2538\u2542"],["8740","\u2460",19,"\u2160",9],["875f","\u3349\u3314\u3322\u334d\u3318\u3327\u3303\u3336\u3351\u3357\u330d\u3326\u3323\u332b\u334a\u333b\u339c\u339d\u339e\u338e\u338f\u33c4\u33a1"],["877e","\u337b"],["8780","\u301d\u301f\u2116\u33cd\u2121\u32a4",4,"\u3231\u3232\u3239\u337e\u337d\u337c\u2252\u2261\u222b\u222e\u2211\u221a\u22a5\u2220\u221f\u22bf\u2235\u2229\u222a"],["889f","\u4e9c\u5516\u5a03\u963f\u54c0\u611b\u6328\u59f6\u9022\u8475\u831c\u7a50\u60aa\u63e1\u6e25\u65ed\u8466\u82a6\u9bf5\u6893\u5727\u65a1\u6271\u5b9b\u59d0\u867b\u98f4\u7d62\u7dbe\u9b8e\u6216\u7c9f\u88b7\u5b89\u5eb5\u6309\u6697\u6848\u95c7\u978d\u674f\u4ee5\u4f0a\u4f4d\u4f9d\u5049\u56f2\u5937\u59d4\u5a01\u5c09\u60df\u610f\u6170\u6613\u6905\u70ba\u754f\u7570\u79fb\u7dad\u7def\u80c3\u840e\u8863\u8b02\u9055\u907a\u533b\u4e95\u4ea5\u57df\u80b2\u90c1\u78ef\u4e00\u58f1\u6ea2\u9038\u7a32\u8328\u828b\u9c2f\u5141\u5370\u54bd\u54e1\u56e0\u59fb\u5f15\u98f2\u6deb\u80e4\u852d"],["8940","\u9662\u9670\u96a0\u97fb\u540b\u53f3\u5b87\u70cf\u7fbd\u8fc2\u96e8\u536f\u9d5c\u7aba\u4e11\u7893\u81fc\u6e26\u5618\u5504\u6b1d\u851a\u9c3b\u59e5\u53a9\u6d66\u74dc\u958f\u5642\u4e91\u904b\u96f2\u834f\u990c\u53e1\u55b6\u5b30\u5f71\u6620\u66f3\u6804\u6c38\u6cf3\u6d29\u745b\u76c8\u7a4e\u9834\u82f1\u885b\u8a60\u92ed\u6db2\u75ab\u76ca\u99c5\u60a6\u8b01\u8d8a\u95b2\u698e\u53ad\u5186"],["8980","\u5712\u5830\u5944\u5bb4\u5ef6\u6028\u63a9\u63f4\u6cbf\u6f14\u708e\u7114\u7159\u71d5\u733f\u7e01\u8276\u82d1\u8597\u9060\u925b\u9d1b\u5869\u65bc\u6c5a\u7525\u51f9\u592e\u5965\u5f80\u5fdc\u62bc\u65fa\u6a2a\u6b27\u6bb4\u738b\u7fc1\u8956\u9d2c\u9d0e\u9ec4\u5ca1\u6c96\u837b\u5104\u5c4b\u61b6\u81c6\u6876\u7261\u4e59\u4ffa\u5378\u6069\u6e29\u7a4f\u97f3\u4e0b\u5316\u4eee\u4f55\u4f3d\u4fa1\u4f73\u52a0\u53ef\u5609\u590f\u5ac1\u5bb6\u5be1\u79d1\u6687\u679c\u67b6\u6b4c\u6cb3\u706b\u73c2\u798d\u79be\u7a3c\u7b87\u82b1\u82db\u8304\u8377\u83ef\u83d3\u8766\u8ab2\u5629\u8ca8\u8fe6\u904e\u971e\u868a\u4fc4\u5ce8\u6211\u7259\u753b\u81e5\u82bd\u86fe\u8cc0\u96c5\u9913\u99d5\u4ecb\u4f1a\u89e3\u56de\u584a\u58ca\u5efb\u5feb\u602a\u6094\u6062\u61d0\u6212\u62d0\u6539"],["8a40","\u9b41\u6666\u68b0\u6d77\u7070\u754c\u7686\u7d75\u82a5\u87f9\u958b\u968e\u8c9d\u51f1\u52be\u5916\u54b3\u5bb3\u5d16\u6168\u6982\u6daf\u788d\u84cb\u8857\u8a72\u93a7\u9ab8\u6d6c\u99a8\u86d9\u57a3\u67ff\u86ce\u920e\u5283\u5687\u5404\u5ed3\u62e1\u64b9\u683c\u6838\u6bbb\u7372\u78ba\u7a6b\u899a\u89d2\u8d6b\u8f03\u90ed\u95a3\u9694\u9769\u5b66\u5cb3\u697d\u984d\u984e\u639b\u7b20\u6a2b"],["8a80","\u6a7f\u68b6\u9c0d\u6f5f\u5272\u559d\u6070\u62ec\u6d3b\u6e07\u6ed1\u845b\u8910\u8f44\u4e14\u9c39\u53f6\u691b\u6a3a\u9784\u682a\u515c\u7ac3\u84b2\u91dc\u938c\u565b\u9d28\u6822\u8305\u8431\u7ca5\u5208\u82c5\u74e6\u4e7e\u4f83\u51a0\u5bd2\u520a\u52d8\u52e7\u5dfb\u559a\u582a\u59e6\u5b8c\u5b98\u5bdb\u5e72\u5e79\u60a3\u611f\u6163\u61be\u63db\u6562\u67d1\u6853\u68fa\u6b3e\u6b53\u6c57\u6f22\u6f97\u6f45\u74b0\u7518\u76e3\u770b\u7aff\u7ba1\u7c21\u7de9\u7f36\u7ff0\u809d\u8266\u839e\u89b3\u8acc\u8cab\u9084\u9451\u9593\u9591\u95a2\u9665\u97d3\u9928\u8218\u4e38\u542b\u5cb8\u5dcc\u73a9\u764c\u773c\u5ca9\u7feb\u8d0b\u96c1\u9811\u9854\u9858\u4f01\u4f0e\u5371\u559c\u5668\u57fa\u5947\u5b09\u5bc4\u5c90\u5e0c\u5e7e\u5fcc\u63ee\u673a\u65d7\u65e2\u671f\u68cb\u68c4"],["8b40","\u6a5f\u5e30\u6bc5\u6c17\u6c7d\u757f\u7948\u5b63\u7a00\u7d00\u5fbd\u898f\u8a18\u8cb4\u8d77\u8ecc\u8f1d\u98e2\u9a0e\u9b3c\u4e80\u507d\u5100\u5993\u5b9c\u622f\u6280\u64ec\u6b3a\u72a0\u7591\u7947\u7fa9\u87fb\u8abc\u8b70\u63ac\u83ca\u97a0\u5409\u5403\u55ab\u6854\u6a58\u8a70\u7827\u6775\u9ecd\u5374\u5ba2\u811a\u8650\u9006\u4e18\u4e45\u4ec7\u4f11\u53ca\u5438\u5bae\u5f13\u6025\u6551"],["8b80","\u673d\u6c42\u6c72\u6ce3\u7078\u7403\u7a76\u7aae\u7b08\u7d1a\u7cfe\u7d66\u65e7\u725b\u53bb\u5c45\u5de8\u62d2\u62e0\u6319\u6e20\u865a\u8a31\u8ddd\u92f8\u6f01\u79a6\u9b5a\u4ea8\u4eab\u4eac\u4f9b\u4fa0\u50d1\u5147\u7af6\u5171\u51f6\u5354\u5321\u537f\u53eb\u55ac\u5883\u5ce1\u5f37\u5f4a\u602f\u6050\u606d\u631f\u6559\u6a4b\u6cc1\u72c2\u72ed\u77ef\u80f8\u8105\u8208\u854e\u90f7\u93e1\u97ff\u9957\u9a5a\u4ef0\u51dd\u5c2d\u6681\u696d\u5c40\u66f2\u6975\u7389\u6850\u7c81\u50c5\u52e4\u5747\u5dfe\u9326\u65a4\u6b23\u6b3d\u7434\u7981\u79bd\u7b4b\u7dca\u82b9\u83cc\u887f\u895f\u8b39\u8fd1\u91d1\u541f\u9280\u4e5d\u5036\u53e5\u533a\u72d7\u7396\u77e9\u82e6\u8eaf\u99c6\u99c8\u99d2\u5177\u611a\u865e\u55b0\u7a7a\u5076\u5bd3\u9047\u9685\u4e32\u6adb\u91e7\u5c51\u5c48"],["8c40","\u6398\u7a9f\u6c93\u9774\u8f61\u7aaa\u718a\u9688\u7c82\u6817\u7e70\u6851\u936c\u52f2\u541b\u85ab\u8a13\u7fa4\u8ecd\u90e1\u5366\u8888\u7941\u4fc2\u50be\u5211\u5144\u5553\u572d\u73ea\u578b\u5951\u5f62\u5f84\u6075\u6176\u6167\u61a9\u63b2\u643a\u656c\u666f\u6842\u6e13\u7566\u7a3d\u7cfb\u7d4c\u7d99\u7e4b\u7f6b\u830e\u834a\u86cd\u8a08\u8a63\u8b66\u8efd\u981a\u9d8f\u82b8\u8fce\u9be8"],["8c80","\u5287\u621f\u6483\u6fc0\u9699\u6841\u5091\u6b20\u6c7a\u6f54\u7a74\u7d50\u8840\u8a23\u6708\u4ef6\u5039\u5026\u5065\u517c\u5238\u5263\u55a7\u570f\u5805\u5acc\u5efa\u61b2\u61f8\u62f3\u6372\u691c\u6a29\u727d\u72ac\u732e\u7814\u786f\u7d79\u770c\u80a9\u898b\u8b19\u8ce2\u8ed2\u9063\u9375\u967a\u9855\u9a13\u9e78\u5143\u539f\u53b3\u5e7b\u5f26\u6e1b\u6e90\u7384\u73fe\u7d43\u8237\u8a00\u8afa\u9650\u4e4e\u500b\u53e4\u547c\u56fa\u59d1\u5b64\u5df1\u5eab\u5f27\u6238\u6545\u67af\u6e56\u72d0\u7cca\u88b4\u80a1\u80e1\u83f0\u864e\u8a87\u8de8\u9237\u96c7\u9867\u9f13\u4e94\u4e92\u4f0d\u5348\u5449\u543e\u5a2f\u5f8c\u5fa1\u609f\u68a7\u6a8e\u745a\u7881\u8a9e\u8aa4\u8b77\u9190\u4e5e\u9bc9\u4ea4\u4f7c\u4faf\u5019\u5016\u5149\u516c\u529f\u52b9\u52fe\u539a\u53e3\u5411"],["8d40","\u540e\u5589\u5751\u57a2\u597d\u5b54\u5b5d\u5b8f\u5de5\u5de7\u5df7\u5e78\u5e83\u5e9a\u5eb7\u5f18\u6052\u614c\u6297\u62d8\u63a7\u653b\u6602\u6643\u66f4\u676d\u6821\u6897\u69cb\u6c5f\u6d2a\u6d69\u6e2f\u6e9d\u7532\u7687\u786c\u7a3f\u7ce0\u7d05\u7d18\u7d5e\u7db1\u8015\u8003\u80af\u80b1\u8154\u818f\u822a\u8352\u884c\u8861\u8b1b\u8ca2\u8cfc\u90ca\u9175\u9271\u783f\u92fc\u95a4\u964d"],["8d80","\u9805\u9999\u9ad8\u9d3b\u525b\u52ab\u53f7\u5408\u58d5\u62f7\u6fe0\u8c6a\u8f5f\u9eb9\u514b\u523b\u544a\u56fd\u7a40\u9177\u9d60\u9ed2\u7344\u6f09\u8170\u7511\u5ffd\u60da\u9aa8\u72db\u8fbc\u6b64\u9803\u4eca\u56f0\u5764\u58be\u5a5a\u6068\u61c7\u660f\u6606\u6839\u68b1\u6df7\u75d5\u7d3a\u826e\u9b42\u4e9b\u4f50\u53c9\u5506\u5d6f\u5de6\u5dee\u67fb\u6c99\u7473\u7802\u8a50\u9396\u88df\u5750\u5ea7\u632b\u50b5\u50ac\u518d\u6700\u54c9\u585e\u59bb\u5bb0\u5f69\u624d\u63a1\u683d\u6b73\u6e08\u707d\u91c7\u7280\u7815\u7826\u796d\u658e\u7d30\u83dc\u88c1\u8f09\u969b\u5264\u5728\u6750\u7f6a\u8ca1\u51b4\u5742\u962a\u583a\u698a\u80b4\u54b2\u5d0e\u57fc\u7895\u9dfa\u4f5c\u524a\u548b\u643e\u6628\u6714\u67f5\u7a84\u7b56\u7d22\u932f\u685c\u9bad\u7b39\u5319\u518a\u5237"],["8e40","\u5bdf\u62f6\u64ae\u64e6\u672d\u6bba\u85a9\u96d1\u7690\u9bd6\u634c\u9306\u9bab\u76bf\u6652\u4e09\u5098\u53c2\u5c71\u60e8\u6492\u6563\u685f\u71e6\u73ca\u7523\u7b97\u7e82\u8695\u8b83\u8cdb\u9178\u9910\u65ac\u66ab\u6b8b\u4ed5\u4ed4\u4f3a\u4f7f\u523a\u53f8\u53f2\u55e3\u56db\u58eb\u59cb\u59c9\u59ff\u5b50\u5c4d\u5e02\u5e2b\u5fd7\u601d\u6307\u652f\u5b5c\u65af\u65bd\u65e8\u679d\u6b62"],["8e80","\u6b7b\u6c0f\u7345\u7949\u79c1\u7cf8\u7d19\u7d2b\u80a2\u8102\u81f3\u8996\u8a5e\u8a69\u8a66\u8a8c\u8aee\u8cc7\u8cdc\u96cc\u98fc\u6b6f\u4e8b\u4f3c\u4f8d\u5150\u5b57\u5bfa\u6148\u6301\u6642\u6b21\u6ecb\u6cbb\u723e\u74bd\u75d4\u78c1\u793a\u800c\u8033\u81ea\u8494\u8f9e\u6c50\u9e7f\u5f0f\u8b58\u9d2b\u7afa\u8ef8\u5b8d\u96eb\u4e03\u53f1\u57f7\u5931\u5ac9\u5ba4\u6089\u6e7f\u6f06\u75be\u8cea\u5b9f\u8500\u7be0\u5072\u67f4\u829d\u5c61\u854a\u7e1e\u820e\u5199\u5c04\u6368\u8d66\u659c\u716e\u793e\u7d17\u8005\u8b1d\u8eca\u906e\u86c7\u90aa\u501f\u52fa\u5c3a\u6753\u707c\u7235\u914c\u91c8\u932b\u82e5\u5bc2\u5f31\u60f9\u4e3b\u53d6\u5b88\u624b\u6731\u6b8a\u72e9\u73e0\u7a2e\u816b\u8da3\u9152\u9996\u5112\u53d7\u546a\u5bff\u6388\u6a39\u7dac\u9700\u56da\u53ce\u5468"],["8f40","\u5b97\u5c31\u5dde\u4fee\u6101\u62fe\u6d32\u79c0\u79cb\u7d42\u7e4d\u7fd2\u81ed\u821f\u8490\u8846\u8972\u8b90\u8e74\u8f2f\u9031\u914b\u916c\u96c6\u919c\u4ec0\u4f4f\u5145\u5341\u5f93\u620e\u67d4\u6c41\u6e0b\u7363\u7e26\u91cd\u9283\u53d4\u5919\u5bbf\u6dd1\u795d\u7e2e\u7c9b\u587e\u719f\u51fa\u8853\u8ff0\u4fca\u5cfb\u6625\u77ac\u7ae3\u821c\u99ff\u51c6\u5faa\u65ec\u696f\u6b89\u6df3"],["8f80","\u6e96\u6f64\u76fe\u7d14\u5de1\u9075\u9187\u9806\u51e6\u521d\u6240\u6691\u66d9\u6e1a\u5eb6\u7dd2\u7f72\u66f8\u85af\u85f7\u8af8\u52a9\u53d9\u5973\u5e8f\u5f90\u6055\u92e4\u9664\u50b7\u511f\u52dd\u5320\u5347\u53ec\u54e8\u5546\u5531\u5617\u5968\u59be\u5a3c\u5bb5\u5c06\u5c0f\u5c11\u5c1a\u5e84\u5e8a\u5ee0\u5f70\u627f\u6284\u62db\u638c\u6377\u6607\u660c\u662d\u6676\u677e\u68a2\u6a1f\u6a35\u6cbc\u6d88\u6e09\u6e58\u713c\u7126\u7167\u75c7\u7701\u785d\u7901\u7965\u79f0\u7ae0\u7b11\u7ca7\u7d39\u8096\u83d6\u848b\u8549\u885d\u88f3\u8a1f\u8a3c\u8a54\u8a73\u8c61\u8cde\u91a4\u9266\u937e\u9418\u969c\u9798\u4e0a\u4e08\u4e1e\u4e57\u5197\u5270\u57ce\u5834\u58cc\u5b22\u5e38\u60c5\u64fe\u6761\u6756\u6d44\u72b6\u7573\u7a63\u84b8\u8b72\u91b8\u9320\u5631\u57f4\u98fe"],["9040","\u62ed\u690d\u6b96\u71ed\u7e54\u8077\u8272\u89e6\u98df\u8755\u8fb1\u5c3b\u4f38\u4fe1\u4fb5\u5507\u5a20\u5bdd\u5be9\u5fc3\u614e\u632f\u65b0\u664b\u68ee\u699b\u6d78\u6df1\u7533\u75b9\u771f\u795e\u79e6\u7d33\u81e3\u82af\u85aa\u89aa\u8a3a\u8eab\u8f9b\u9032\u91dd\u9707\u4eba\u4ec1\u5203\u5875\u58ec\u5c0b\u751a\u5c3d\u814e\u8a0a\u8fc5\u9663\u976d\u7b25\u8acf\u9808\u9162\u56f3\u53a8"],["9080","\u9017\u5439\u5782\u5e25\u63a8\u6c34\u708a\u7761\u7c8b\u7fe0\u8870\u9042\u9154\u9310\u9318\u968f\u745e\u9ac4\u5d07\u5d69\u6570\u67a2\u8da8\u96db\u636e\u6749\u6919\u83c5\u9817\u96c0\u88fe\u6f84\u647a\u5bf8\u4e16\u702c\u755d\u662f\u51c4\u5236\u52e2\u59d3\u5f81\u6027\u6210\u653f\u6574\u661f\u6674\u68f2\u6816\u6b63\u6e05\u7272\u751f\u76db\u7cbe\u8056\u58f0\u88fd\u897f\u8aa0\u8a93\u8acb\u901d\u9192\u9752\u9759\u6589\u7a0e\u8106\u96bb\u5e2d\u60dc\u621a\u65a5\u6614\u6790\u77f3\u7a4d\u7c4d\u7e3e\u810a\u8cac\u8d64\u8de1\u8e5f\u78a9\u5207\u62d9\u63a5\u6442\u6298\u8a2d\u7a83\u7bc0\u8aac\u96ea\u7d76\u820c\u8749\u4ed9\u5148\u5343\u5360\u5ba3\u5c02\u5c16\u5ddd\u6226\u6247\u64b0\u6813\u6834\u6cc9\u6d45\u6d17\u67d3\u6f5c\u714e\u717d\u65cb\u7a7f\u7bad\u7dda"],["9140","\u7e4a\u7fa8\u817a\u821b\u8239\u85a6\u8a6e\u8cce\u8df5\u9078\u9077\u92ad\u9291\u9583\u9bae\u524d\u5584\u6f38\u7136\u5168\u7985\u7e55\u81b3\u7cce\u564c\u5851\u5ca8\u63aa\u66fe\u66fd\u695a\u72d9\u758f\u758e\u790e\u7956\u79df\u7c97\u7d20\u7d44\u8607\u8a34\u963b\u9061\u9f20\u50e7\u5275\u53cc\u53e2\u5009\u55aa\u58ee\u594f\u723d\u5b8b\u5c64\u531d\u60e3\u60f3\u635c\u6383\u633f\u63bb"],["9180","\u64cd\u65e9\u66f9\u5de3\u69cd\u69fd\u6f15\u71e5\u4e89\u75e9\u76f8\u7a93\u7cdf\u7dcf\u7d9c\u8061\u8349\u8358\u846c\u84bc\u85fb\u88c5\u8d70\u9001\u906d\u9397\u971c\u9a12\u50cf\u5897\u618e\u81d3\u8535\u8d08\u9020\u4fc3\u5074\u5247\u5373\u606f\u6349\u675f\u6e2c\u8db3\u901f\u4fd7\u5c5e\u8cca\u65cf\u7d9a\u5352\u8896\u5176\u63c3\u5b58\u5b6b\u5c0a\u640d\u6751\u905c\u4ed6\u591a\u592a\u6c70\u8a51\u553e\u5815\u59a5\u60f0\u6253\u67c1\u8235\u6955\u9640\u99c4\u9a28\u4f53\u5806\u5bfe\u8010\u5cb1\u5e2f\u5f85\u6020\u614b\u6234\u66ff\u6cf0\u6ede\u80ce\u817f\u82d4\u888b\u8cb8\u9000\u902e\u968a\u9edb\u9bdb\u4ee3\u53f0\u5927\u7b2c\u918d\u984c\u9df9\u6edd\u7027\u5353\u5544\u5b85\u6258\u629e\u62d3\u6ca2\u6fef\u7422\u8a17\u9438\u6fc1\u8afe\u8338\u51e7\u86f8\u53ea"],["9240","\u53e9\u4f46\u9054\u8fb0\u596a\u8131\u5dfd\u7aea\u8fbf\u68da\u8c37\u72f8\u9c48\u6a3d\u8ab0\u4e39\u5358\u5606\u5766\u62c5\u63a2\u65e6\u6b4e\u6de1\u6e5b\u70ad\u77ed\u7aef\u7baa\u7dbb\u803d\u80c6\u86cb\u8a95\u935b\u56e3\u58c7\u5f3e\u65ad\u6696\u6a80\u6bb5\u7537\u8ac7\u5024\u77e5\u5730\u5f1b\u6065\u667a\u6c60\u75f4\u7a1a\u7f6e\u81f4\u8718\u9045\u99b3\u7bc9\u755c\u7af9\u7b51\u84c4"],["9280","\u9010\u79e9\u7a92\u8336\u5ae1\u7740\u4e2d\u4ef2\u5b99\u5fe0\u62bd\u663c\u67f1\u6ce8\u866b\u8877\u8a3b\u914e\u92f3\u99d0\u6a17\u7026\u732a\u82e7\u8457\u8caf\u4e01\u5146\u51cb\u558b\u5bf5\u5e16\u5e33\u5e81\u5f14\u5f35\u5f6b\u5fb4\u61f2\u6311\u66a2\u671d\u6f6e\u7252\u753a\u773a\u8074\u8139\u8178\u8776\u8abf\u8adc\u8d85\u8df3\u929a\u9577\u9802\u9ce5\u52c5\u6357\u76f4\u6715\u6c88\u73cd\u8cc3\u93ae\u9673\u6d25\u589c\u690e\u69cc\u8ffd\u939a\u75db\u901a\u585a\u6802\u63b4\u69fb\u4f43\u6f2c\u67d8\u8fbb\u8526\u7db4\u9354\u693f\u6f70\u576a\u58f7\u5b2c\u7d2c\u722a\u540a\u91e3\u9db4\u4ead\u4f4e\u505c\u5075\u5243\u8c9e\u5448\u5824\u5b9a\u5e1d\u5e95\u5ead\u5ef7\u5f1f\u608c\u62b5\u633a\u63d0\u68af\u6c40\u7887\u798e\u7a0b\u7de0\u8247\u8a02\u8ae6\u8e44\u9013"],["9340","\u90b8\u912d\u91d8\u9f0e\u6ce5\u6458\u64e2\u6575\u6ef4\u7684\u7b1b\u9069\u93d1\u6eba\u54f2\u5fb9\u64a4\u8f4d\u8fed\u9244\u5178\u586b\u5929\u5c55\u5e97\u6dfb\u7e8f\u751c\u8cbc\u8ee2\u985b\u70b9\u4f1d\u6bbf\u6fb1\u7530\u96fb\u514e\u5410\u5835\u5857\u59ac\u5c60\u5f92\u6597\u675c\u6e21\u767b\u83df\u8ced\u9014\u90fd\u934d\u7825\u783a\u52aa\u5ea6\u571f\u5974\u6012\u5012\u515a\u51ac"],["9380","\u51cd\u5200\u5510\u5854\u5858\u5957\u5b95\u5cf6\u5d8b\u60bc\u6295\u642d\u6771\u6843\u68bc\u68df\u76d7\u6dd8\u6e6f\u6d9b\u706f\u71c8\u5f53\u75d8\u7977\u7b49\u7b54\u7b52\u7cd6\u7d71\u5230\u8463\u8569\u85e4\u8a0e\u8b04\u8c46\u8e0f\u9003\u900f\u9419\u9676\u982d\u9a30\u95d8\u50cd\u52d5\u540c\u5802\u5c0e\u61a7\u649e\u6d1e\u77b3\u7ae5\u80f4\u8404\u9053\u9285\u5ce0\u9d07\u533f\u5f97\u5fb3\u6d9c\u7279\u7763\u79bf\u7be4\u6bd2\u72ec\u8aad\u6803\u6a61\u51f8\u7a81\u6934\u5c4a\u9cf6\u82eb\u5bc5\u9149\u701e\u5678\u5c6f\u60c7\u6566\u6c8c\u8c5a\u9041\u9813\u5451\u66c7\u920d\u5948\u90a3\u5185\u4e4d\u51ea\u8599\u8b0e\u7058\u637a\u934b\u6962\u99b4\u7e04\u7577\u5357\u6960\u8edf\u96e3\u6c5d\u4e8c\u5c3c\u5f10\u8fe9\u5302\u8cd1\u8089\u8679\u5eff\u65e5\u4e73\u5165"],["9440","\u5982\u5c3f\u97ee\u4efb\u598a\u5fcd\u8a8d\u6fe1\u79b0\u7962\u5be7\u8471\u732b\u71b1\u5e74\u5ff5\u637b\u649a\u71c3\u7c98\u4e43\u5efc\u4e4b\u57dc\u56a2\u60a9\u6fc3\u7d0d\u80fd\u8133\u81bf\u8fb2\u8997\u86a4\u5df4\u628a\u64ad\u8987\u6777\u6ce2\u6d3e\u7436\u7834\u5a46\u7f75\u82ad\u99ac\u4ff3\u5ec3\u62dd\u6392\u6557\u676f\u76c3\u724c\u80cc\u80ba\u8f29\u914d\u500d\u57f9\u5a92\u6885"],["9480","\u6973\u7164\u72fd\u8cb7\u58f2\u8ce0\u966a\u9019\u877f\u79e4\u77e7\u8429\u4f2f\u5265\u535a\u62cd\u67cf\u6cca\u767d\u7b94\u7c95\u8236\u8584\u8feb\u66dd\u6f20\u7206\u7e1b\u83ab\u99c1\u9ea6\u51fd\u7bb1\u7872\u7bb8\u8087\u7b48\u6ae8\u5e61\u808c\u7551\u7560\u516b\u9262\u6e8c\u767a\u9197\u9aea\u4f10\u7f70\u629c\u7b4f\u95a5\u9ce9\u567a\u5859\u86e4\u96bc\u4f34\u5224\u534a\u53cd\u53db\u5e06\u642c\u6591\u677f\u6c3e\u6c4e\u7248\u72af\u73ed\u7554\u7e41\u822c\u85e9\u8ca9\u7bc4\u91c6\u7169\u9812\u98ef\u633d\u6669\u756a\u76e4\u78d0\u8543\u86ee\u532a\u5351\u5426\u5983\u5e87\u5f7c\u60b2\u6249\u6279\u62ab\u6590\u6bd4\u6ccc\u75b2\u76ae\u7891\u79d8\u7dcb\u7f77\u80a5\u88ab\u8ab9\u8cbb\u907f\u975e\u98db\u6a0b\u7c38\u5099\u5c3e\u5fae\u6787\u6bd8\u7435\u7709\u7f8e"],["9540","\u9f3b\u67ca\u7a17\u5339\u758b\u9aed\u5f66\u819d\u83f1\u8098\u5f3c\u5fc5\u7562\u7b46\u903c\u6867\u59eb\u5a9b\u7d10\u767e\u8b2c\u4ff5\u5f6a\u6a19\u6c37\u6f02\u74e2\u7968\u8868\u8a55\u8c79\u5edf\u63cf\u75c5\u79d2\u82d7\u9328\u92f2\u849c\u86ed\u9c2d\u54c1\u5f6c\u658c\u6d5c\u7015\u8ca7\u8cd3\u983b\u654f\u74f6\u4e0d\u4ed8\u57e0\u592b\u5a66\u5bcc\u51a8\u5e03\u5e9c\u6016\u6276\u6577"],["9580","\u65a7\u666e\u6d6e\u7236\u7b26\u8150\u819a\u8299\u8b5c\u8ca0\u8ce6\u8d74\u961c\u9644\u4fae\u64ab\u6b66\u821e\u8461\u856a\u90e8\u5c01\u6953\u98a8\u847a\u8557\u4f0f\u526f\u5fa9\u5e45\u670d\u798f\u8179\u8907\u8986\u6df5\u5f17\u6255\u6cb8\u4ecf\u7269\u9b92\u5206\u543b\u5674\u58b3\u61a4\u626e\u711a\u596e\u7c89\u7cde\u7d1b\u96f0\u6587\u805e\u4e19\u4f75\u5175\u5840\u5e63\u5e73\u5f0a\u67c4\u4e26\u853d\u9589\u965b\u7c73\u9801\u50fb\u58c1\u7656\u78a7\u5225\u77a5\u8511\u7b86\u504f\u5909\u7247\u7bc7\u7de8\u8fba\u8fd4\u904d\u4fbf\u52c9\u5a29\u5f01\u97ad\u4fdd\u8217\u92ea\u5703\u6355\u6b69\u752b\u88dc\u8f14\u7a42\u52df\u5893\u6155\u620a\u66ae\u6bcd\u7c3f\u83e9\u5023\u4ff8\u5305\u5446\u5831\u5949\u5b9d\u5cf0\u5cef\u5d29\u5e96\u62b1\u6367\u653e\u65b9\u670b"],["9640","\u6cd5\u6ce1\u70f9\u7832\u7e2b\u80de\u82b3\u840c\u84ec\u8702\u8912\u8a2a\u8c4a\u90a6\u92d2\u98fd\u9cf3\u9d6c\u4e4f\u4ea1\u508d\u5256\u574a\u59a8\u5e3d\u5fd8\u5fd9\u623f\u66b4\u671b\u67d0\u68d2\u5192\u7d21\u80aa\u81a8\u8b00\u8c8c\u8cbf\u927e\u9632\u5420\u982c\u5317\u50d5\u535c\u58a8\u64b2\u6734\u7267\u7766\u7a46\u91e6\u52c3\u6ca1\u6b86\u5800\u5e4c\u5954\u672c\u7ffb\u51e1\u76c6"],["9680","\u6469\u78e8\u9b54\u9ebb\u57cb\u59b9\u6627\u679a\u6bce\u54e9\u69d9\u5e55\u819c\u6795\u9baa\u67fe\u9c52\u685d\u4ea6\u4fe3\u53c8\u62b9\u672b\u6cab\u8fc4\u4fad\u7e6d\u9ebf\u4e07\u6162\u6e80\u6f2b\u8513\u5473\u672a\u9b45\u5df3\u7b95\u5cac\u5bc6\u871c\u6e4a\u84d1\u7a14\u8108\u5999\u7c8d\u6c11\u7720\u52d9\u5922\u7121\u725f\u77db\u9727\u9d61\u690b\u5a7f\u5a18\u51a5\u540d\u547d\u660e\u76df\u8ff7\u9298\u9cf4\u59ea\u725d\u6ec5\u514d\u68c9\u7dbf\u7dec\u9762\u9eba\u6478\u6a21\u8302\u5984\u5b5f\u6bdb\u731b\u76f2\u7db2\u8017\u8499\u5132\u6728\u9ed9\u76ee\u6762\u52ff\u9905\u5c24\u623b\u7c7e\u8cb0\u554f\u60b6\u7d0b\u9580\u5301\u4e5f\u51b6\u591c\u723a\u8036\u91ce\u5f25\u77e2\u5384\u5f79\u7d04\u85ac\u8a33\u8e8d\u9756\u67f3\u85ae\u9453\u6109\u6108\u6cb9\u7652"],["9740","\u8aed\u8f38\u552f\u4f51\u512a\u52c7\u53cb\u5ba5\u5e7d\u60a0\u6182\u63d6\u6709\u67da\u6e67\u6d8c\u7336\u7337\u7531\u7950\u88d5\u8a98\u904a\u9091\u90f5\u96c4\u878d\u5915\u4e88\u4f59\u4e0e\u8a89\u8f3f\u9810\u50ad\u5e7c\u5996\u5bb9\u5eb8\u63da\u63fa\u64c1\u66dc\u694a\u69d8\u6d0b\u6eb6\u7194\u7528\u7aaf\u7f8a\u8000\u8449\u84c9\u8981\u8b21\u8e0a\u9065\u967d\u990a\u617e\u6291\u6b32"],["9780","\u6c83\u6d74\u7fcc\u7ffc\u6dc0\u7f85\u87ba\u88f8\u6765\u83b1\u983c\u96f7\u6d1b\u7d61\u843d\u916a\u4e71\u5375\u5d50\u6b04\u6feb\u85cd\u862d\u89a7\u5229\u540f\u5c65\u674e\u68a8\u7406\u7483\u75e2\u88cf\u88e1\u91cc\u96e2\u9678\u5f8b\u7387\u7acb\u844e\u63a0\u7565\u5289\u6d41\u6e9c\u7409\u7559\u786b\u7c92\u9686\u7adc\u9f8d\u4fb6\u616e\u65c5\u865c\u4e86\u4eae\u50da\u4e21\u51cc\u5bee\u6599\u6881\u6dbc\u731f\u7642\u77ad\u7a1c\u7ce7\u826f\u8ad2\u907c\u91cf\u9675\u9818\u529b\u7dd1\u502b\u5398\u6797\u6dcb\u71d0\u7433\u81e8\u8f2a\u96a3\u9c57\u9e9f\u7460\u5841\u6d99\u7d2f\u985e\u4ee4\u4f36\u4f8b\u51b7\u52b1\u5dba\u601c\u73b2\u793c\u82d3\u9234\u96b7\u96f6\u970a\u9e97\u9f62\u66a6\u6b74\u5217\u52a3\u70c8\u88c2\u5ec9\u604b\u6190\u6f23\u7149\u7c3e\u7df4\u806f"],["9840","\u84ee\u9023\u932c\u5442\u9b6f\u6ad3\u7089\u8cc2\u8def\u9732\u52b4\u5a41\u5eca\u5f04\u6717\u697c\u6994\u6d6a\u6f0f\u7262\u72fc\u7bed\u8001\u807e\u874b\u90ce\u516d\u9e93\u7984\u808b\u9332\u8ad6\u502d\u548c\u8a71\u6b6a\u8cc4\u8107\u60d1\u67a0\u9df2\u4e99\u4e98\u9c10\u8a6b\u85c1\u8568\u6900\u6e7e\u7897\u8155"],["989f","\u5f0c\u4e10\u4e15\u4e2a\u4e31\u4e36\u4e3c\u4e3f\u4e42\u4e56\u4e58\u4e82\u4e85\u8c6b\u4e8a\u8212\u5f0d\u4e8e\u4e9e\u4e9f\u4ea0\u4ea2\u4eb0\u4eb3\u4eb6\u4ece\u4ecd\u4ec4\u4ec6\u4ec2\u4ed7\u4ede\u4eed\u4edf\u4ef7\u4f09\u4f5a\u4f30\u4f5b\u4f5d\u4f57\u4f47\u4f76\u4f88\u4f8f\u4f98\u4f7b\u4f69\u4f70\u4f91\u4f6f\u4f86\u4f96\u5118\u4fd4\u4fdf\u4fce\u4fd8\u4fdb\u4fd1\u4fda\u4fd0\u4fe4\u4fe5\u501a\u5028\u5014\u502a\u5025\u5005\u4f1c\u4ff6\u5021\u5029\u502c\u4ffe\u4fef\u5011\u5006\u5043\u5047\u6703\u5055\u5050\u5048\u505a\u5056\u506c\u5078\u5080\u509a\u5085\u50b4\u50b2"],["9940","\u50c9\u50ca\u50b3\u50c2\u50d6\u50de\u50e5\u50ed\u50e3\u50ee\u50f9\u50f5\u5109\u5101\u5102\u5116\u5115\u5114\u511a\u5121\u513a\u5137\u513c\u513b\u513f\u5140\u5152\u514c\u5154\u5162\u7af8\u5169\u516a\u516e\u5180\u5182\u56d8\u518c\u5189\u518f\u5191\u5193\u5195\u5196\u51a4\u51a6\u51a2\u51a9\u51aa\u51ab\u51b3\u51b1\u51b2\u51b0\u51b5\u51bd\u51c5\u51c9\u51db\u51e0\u8655\u51e9\u51ed"],["9980","\u51f0\u51f5\u51fe\u5204\u520b\u5214\u520e\u5227\u522a\u522e\u5233\u5239\u524f\u5244\u524b\u524c\u525e\u5254\u526a\u5274\u5269\u5273\u527f\u527d\u528d\u5294\u5292\u5271\u5288\u5291\u8fa8\u8fa7\u52ac\u52ad\u52bc\u52b5\u52c1\u52cd\u52d7\u52de\u52e3\u52e6\u98ed\u52e0\u52f3\u52f5\u52f8\u52f9\u5306\u5308\u7538\u530d\u5310\u530f\u5315\u531a\u5323\u532f\u5331\u5333\u5338\u5340\u5346\u5345\u4e17\u5349\u534d\u51d6\u535e\u5369\u536e\u5918\u537b\u5377\u5382\u5396\u53a0\u53a6\u53a5\u53ae\u53b0\u53b6\u53c3\u7c12\u96d9\u53df\u66fc\u71ee\u53ee\u53e8\u53ed\u53fa\u5401\u543d\u5440\u542c\u542d\u543c\u542e\u5436\u5429\u541d\u544e\u548f\u5475\u548e\u545f\u5471\u5477\u5470\u5492\u547b\u5480\u5476\u5484\u5490\u5486\u54c7\u54a2\u54b8\u54a5\u54ac\u54c4\u54c8\u54a8"],["9a40","\u54ab\u54c2\u54a4\u54be\u54bc\u54d8\u54e5\u54e6\u550f\u5514\u54fd\u54ee\u54ed\u54fa\u54e2\u5539\u5540\u5563\u554c\u552e\u555c\u5545\u5556\u5557\u5538\u5533\u555d\u5599\u5580\u54af\u558a\u559f\u557b\u557e\u5598\u559e\u55ae\u557c\u5583\u55a9\u5587\u55a8\u55da\u55c5\u55df\u55c4\u55dc\u55e4\u55d4\u5614\u55f7\u5616\u55fe\u55fd\u561b\u55f9\u564e\u5650\u71df\u5634\u5636\u5632\u5638"],["9a80","\u566b\u5664\u562f\u566c\u566a\u5686\u5680\u568a\u56a0\u5694\u568f\u56a5\u56ae\u56b6\u56b4\u56c2\u56bc\u56c1\u56c3\u56c0\u56c8\u56ce\u56d1\u56d3\u56d7\u56ee\u56f9\u5700\u56ff\u5704\u5709\u5708\u570b\u570d\u5713\u5718\u5716\u55c7\u571c\u5726\u5737\u5738\u574e\u573b\u5740\u574f\u5769\u57c0\u5788\u5761\u577f\u5789\u5793\u57a0\u57b3\u57a4\u57aa\u57b0\u57c3\u57c6\u57d4\u57d2\u57d3\u580a\u57d6\u57e3\u580b\u5819\u581d\u5872\u5821\u5862\u584b\u5870\u6bc0\u5852\u583d\u5879\u5885\u58b9\u589f\u58ab\u58ba\u58de\u58bb\u58b8\u58ae\u58c5\u58d3\u58d1\u58d7\u58d9\u58d8\u58e5\u58dc\u58e4\u58df\u58ef\u58fa\u58f9\u58fb\u58fc\u58fd\u5902\u590a\u5910\u591b\u68a6\u5925\u592c\u592d\u5932\u5938\u593e\u7ad2\u5955\u5950\u594e\u595a\u5958\u5962\u5960\u5967\u596c\u5969"],["9b40","\u5978\u5981\u599d\u4f5e\u4fab\u59a3\u59b2\u59c6\u59e8\u59dc\u598d\u59d9\u59da\u5a25\u5a1f\u5a11\u5a1c\u5a09\u5a1a\u5a40\u5a6c\u5a49\u5a35\u5a36\u5a62\u5a6a\u5a9a\u5abc\u5abe\u5acb\u5ac2\u5abd\u5ae3\u5ad7\u5ae6\u5ae9\u5ad6\u5afa\u5afb\u5b0c\u5b0b\u5b16\u5b32\u5ad0\u5b2a\u5b36\u5b3e\u5b43\u5b45\u5b40\u5b51\u5b55\u5b5a\u5b5b\u5b65\u5b69\u5b70\u5b73\u5b75\u5b78\u6588\u5b7a\u5b80"],["9b80","\u5b83\u5ba6\u5bb8\u5bc3\u5bc7\u5bc9\u5bd4\u5bd0\u5be4\u5be6\u5be2\u5bde\u5be5\u5beb\u5bf0\u5bf6\u5bf3\u5c05\u5c07\u5c08\u5c0d\u5c13\u5c20\u5c22\u5c28\u5c38\u5c39\u5c41\u5c46\u5c4e\u5c53\u5c50\u5c4f\u5b71\u5c6c\u5c6e\u4e62\u5c76\u5c79\u5c8c\u5c91\u5c94\u599b\u5cab\u5cbb\u5cb6\u5cbc\u5cb7\u5cc5\u5cbe\u5cc7\u5cd9\u5ce9\u5cfd\u5cfa\u5ced\u5d8c\u5cea\u5d0b\u5d15\u5d17\u5d5c\u5d1f\u5d1b\u5d11\u5d14\u5d22\u5d1a\u5d19\u5d18\u5d4c\u5d52\u5d4e\u5d4b\u5d6c\u5d73\u5d76\u5d87\u5d84\u5d82\u5da2\u5d9d\u5dac\u5dae\u5dbd\u5d90\u5db7\u5dbc\u5dc9\u5dcd\u5dd3\u5dd2\u5dd6\u5ddb\u5deb\u5df2\u5df5\u5e0b\u5e1a\u5e19\u5e11\u5e1b\u5e36\u5e37\u5e44\u5e43\u5e40\u5e4e\u5e57\u5e54\u5e5f\u5e62\u5e64\u5e47\u5e75\u5e76\u5e7a\u9ebc\u5e7f\u5ea0\u5ec1\u5ec2\u5ec8\u5ed0\u5ecf"],["9c40","\u5ed6\u5ee3\u5edd\u5eda\u5edb\u5ee2\u5ee1\u5ee8\u5ee9\u5eec\u5ef1\u5ef3\u5ef0\u5ef4\u5ef8\u5efe\u5f03\u5f09\u5f5d\u5f5c\u5f0b\u5f11\u5f16\u5f29\u5f2d\u5f38\u5f41\u5f48\u5f4c\u5f4e\u5f2f\u5f51\u5f56\u5f57\u5f59\u5f61\u5f6d\u5f73\u5f77\u5f83\u5f82\u5f7f\u5f8a\u5f88\u5f91\u5f87\u5f9e\u5f99\u5f98\u5fa0\u5fa8\u5fad\u5fbc\u5fd6\u5ffb\u5fe4\u5ff8\u5ff1\u5fdd\u60b3\u5fff\u6021\u6060"],["9c80","\u6019\u6010\u6029\u600e\u6031\u601b\u6015\u602b\u6026\u600f\u603a\u605a\u6041\u606a\u6077\u605f\u604a\u6046\u604d\u6063\u6043\u6064\u6042\u606c\u606b\u6059\u6081\u608d\u60e7\u6083\u609a\u6084\u609b\u6096\u6097\u6092\u60a7\u608b\u60e1\u60b8\u60e0\u60d3\u60b4\u5ff0\u60bd\u60c6\u60b5\u60d8\u614d\u6115\u6106\u60f6\u60f7\u6100\u60f4\u60fa\u6103\u6121\u60fb\u60f1\u610d\u610e\u6147\u613e\u6128\u6127\u614a\u613f\u613c\u612c\u6134\u613d\u6142\u6144\u6173\u6177\u6158\u6159\u615a\u616b\u6174\u616f\u6165\u6171\u615f\u615d\u6153\u6175\u6199\u6196\u6187\u61ac\u6194\u619a\u618a\u6191\u61ab\u61ae\u61cc\u61ca\u61c9\u61f7\u61c8\u61c3\u61c6\u61ba\u61cb\u7f79\u61cd\u61e6\u61e3\u61f6\u61fa\u61f4\u61ff\u61fd\u61fc\u61fe\u6200\u6208\u6209\u620d\u620c\u6214\u621b"],["9d40","\u621e\u6221\u622a\u622e\u6230\u6232\u6233\u6241\u624e\u625e\u6263\u625b\u6260\u6268\u627c\u6282\u6289\u627e\u6292\u6293\u6296\u62d4\u6283\u6294\u62d7\u62d1\u62bb\u62cf\u62ff\u62c6\u64d4\u62c8\u62dc\u62cc\u62ca\u62c2\u62c7\u629b\u62c9\u630c\u62ee\u62f1\u6327\u6302\u6308\u62ef\u62f5\u6350\u633e\u634d\u641c\u634f\u6396\u638e\u6380\u63ab\u6376\u63a3\u638f\u6389\u639f\u63b5\u636b"],["9d80","\u6369\u63be\u63e9\u63c0\u63c6\u63e3\u63c9\u63d2\u63f6\u63c4\u6416\u6434\u6406\u6413\u6426\u6436\u651d\u6417\u6428\u640f\u6467\u646f\u6476\u644e\u652a\u6495\u6493\u64a5\u64a9\u6488\u64bc\u64da\u64d2\u64c5\u64c7\u64bb\u64d8\u64c2\u64f1\u64e7\u8209\u64e0\u64e1\u62ac\u64e3\u64ef\u652c\u64f6\u64f4\u64f2\u64fa\u6500\u64fd\u6518\u651c\u6505\u6524\u6523\u652b\u6534\u6535\u6537\u6536\u6538\u754b\u6548\u6556\u6555\u654d\u6558\u655e\u655d\u6572\u6578\u6582\u6583\u8b8a\u659b\u659f\u65ab\u65b7\u65c3\u65c6\u65c1\u65c4\u65cc\u65d2\u65db\u65d9\u65e0\u65e1\u65f1\u6772\u660a\u6603\u65fb\u6773\u6635\u6636\u6634\u661c\u664f\u6644\u6649\u6641\u665e\u665d\u6664\u6667\u6668\u665f\u6662\u6670\u6683\u6688\u668e\u6689\u6684\u6698\u669d\u66c1\u66b9\u66c9\u66be\u66bc"],["9e40","\u66c4\u66b8\u66d6\u66da\u66e0\u663f\u66e6\u66e9\u66f0\u66f5\u66f7\u670f\u6716\u671e\u6726\u6727\u9738\u672e\u673f\u6736\u6741\u6738\u6737\u6746\u675e\u6760\u6759\u6763\u6764\u6789\u6770\u67a9\u677c\u676a\u678c\u678b\u67a6\u67a1\u6785\u67b7\u67ef\u67b4\u67ec\u67b3\u67e9\u67b8\u67e4\u67de\u67dd\u67e2\u67ee\u67b9\u67ce\u67c6\u67e7\u6a9c\u681e\u6846\u6829\u6840\u684d\u6832\u684e"],["9e80","\u68b3\u682b\u6859\u6863\u6877\u687f\u689f\u688f\u68ad\u6894\u689d\u689b\u6883\u6aae\u68b9\u6874\u68b5\u68a0\u68ba\u690f\u688d\u687e\u6901\u68ca\u6908\u68d8\u6922\u6926\u68e1\u690c\u68cd\u68d4\u68e7\u68d5\u6936\u6912\u6904\u68d7\u68e3\u6925\u68f9\u68e0\u68ef\u6928\u692a\u691a\u6923\u6921\u68c6\u6979\u6977\u695c\u6978\u696b\u6954\u697e\u696e\u6939\u6974\u693d\u6959\u6930\u6961\u695e\u695d\u6981\u696a\u69b2\u69ae\u69d0\u69bf\u69c1\u69d3\u69be\u69ce\u5be8\u69ca\u69dd\u69bb\u69c3\u69a7\u6a2e\u6991\u69a0\u699c\u6995\u69b4\u69de\u69e8\u6a02\u6a1b\u69ff\u6b0a\u69f9\u69f2\u69e7\u6a05\u69b1\u6a1e\u69ed\u6a14\u69eb\u6a0a\u6a12\u6ac1\u6a23\u6a13\u6a44\u6a0c\u6a72\u6a36\u6a78\u6a47\u6a62\u6a59\u6a66\u6a48\u6a38\u6a22\u6a90\u6a8d\u6aa0\u6a84\u6aa2\u6aa3"],["9f40","\u6a97\u8617\u6abb\u6ac3\u6ac2\u6ab8\u6ab3\u6aac\u6ade\u6ad1\u6adf\u6aaa\u6ada\u6aea\u6afb\u6b05\u8616\u6afa\u6b12\u6b16\u9b31\u6b1f\u6b38\u6b37\u76dc\u6b39\u98ee\u6b47\u6b43\u6b49\u6b50\u6b59\u6b54\u6b5b\u6b5f\u6b61\u6b78\u6b79\u6b7f\u6b80\u6b84\u6b83\u6b8d\u6b98\u6b95\u6b9e\u6ba4\u6baa\u6bab\u6baf\u6bb2\u6bb1\u6bb3\u6bb7\u6bbc\u6bc6\u6bcb\u6bd3\u6bdf\u6bec\u6beb\u6bf3\u6bef"],["9f80","\u9ebe\u6c08\u6c13\u6c14\u6c1b\u6c24\u6c23\u6c5e\u6c55\u6c62\u6c6a\u6c82\u6c8d\u6c9a\u6c81\u6c9b\u6c7e\u6c68\u6c73\u6c92\u6c90\u6cc4\u6cf1\u6cd3\u6cbd\u6cd7\u6cc5\u6cdd\u6cae\u6cb1\u6cbe\u6cba\u6cdb\u6cef\u6cd9\u6cea\u6d1f\u884d\u6d36\u6d2b\u6d3d\u6d38\u6d19\u6d35\u6d33\u6d12\u6d0c\u6d63\u6d93\u6d64\u6d5a\u6d79\u6d59\u6d8e\u6d95\u6fe4\u6d85\u6df9\u6e15\u6e0a\u6db5\u6dc7\u6de6\u6db8\u6dc6\u6dec\u6dde\u6dcc\u6de8\u6dd2\u6dc5\u6dfa\u6dd9\u6de4\u6dd5\u6dea\u6dee\u6e2d\u6e6e\u6e2e\u6e19\u6e72\u6e5f\u6e3e\u6e23\u6e6b\u6e2b\u6e76\u6e4d\u6e1f\u6e43\u6e3a\u6e4e\u6e24\u6eff\u6e1d\u6e38\u6e82\u6eaa\u6e98\u6ec9\u6eb7\u6ed3\u6ebd\u6eaf\u6ec4\u6eb2\u6ed4\u6ed5\u6e8f\u6ea5\u6ec2\u6e9f\u6f41\u6f11\u704c\u6eec\u6ef8\u6efe\u6f3f\u6ef2\u6f31\u6eef\u6f32\u6ecc"],["e040","\u6f3e\u6f13\u6ef7\u6f86\u6f7a\u6f78\u6f81\u6f80\u6f6f\u6f5b\u6ff3\u6f6d\u6f82\u6f7c\u6f58\u6f8e\u6f91\u6fc2\u6f66\u6fb3\u6fa3\u6fa1\u6fa4\u6fb9\u6fc6\u6faa\u6fdf\u6fd5\u6fec\u6fd4\u6fd8\u6ff1\u6fee\u6fdb\u7009\u700b\u6ffa\u7011\u7001\u700f\u6ffe\u701b\u701a\u6f74\u701d\u7018\u701f\u7030\u703e\u7032\u7051\u7063\u7099\u7092\u70af\u70f1\u70ac\u70b8\u70b3\u70ae\u70df\u70cb\u70dd"],["e080","\u70d9\u7109\u70fd\u711c\u7119\u7165\u7155\u7188\u7166\u7162\u714c\u7156\u716c\u718f\u71fb\u7184\u7195\u71a8\u71ac\u71d7\u71b9\u71be\u71d2\u71c9\u71d4\u71ce\u71e0\u71ec\u71e7\u71f5\u71fc\u71f9\u71ff\u720d\u7210\u721b\u7228\u722d\u722c\u7230\u7232\u723b\u723c\u723f\u7240\u7246\u724b\u7258\u7274\u727e\u7282\u7281\u7287\u7292\u7296\u72a2\u72a7\u72b9\u72b2\u72c3\u72c6\u72c4\u72ce\u72d2\u72e2\u72e0\u72e1\u72f9\u72f7\u500f\u7317\u730a\u731c\u7316\u731d\u7334\u732f\u7329\u7325\u733e\u734e\u734f\u9ed8\u7357\u736a\u7368\u7370\u7378\u7375\u737b\u737a\u73c8\u73b3\u73ce\u73bb\u73c0\u73e5\u73ee\u73de\u74a2\u7405\u746f\u7425\u73f8\u7432\u743a\u7455\u743f\u745f\u7459\u7441\u745c\u7469\u7470\u7463\u746a\u7476\u747e\u748b\u749e\u74a7\u74ca\u74cf\u74d4\u73f1"],["e140","\u74e0\u74e3\u74e7\u74e9\u74ee\u74f2\u74f0\u74f1\u74f8\u74f7\u7504\u7503\u7505\u750c\u750e\u750d\u7515\u7513\u751e\u7526\u752c\u753c\u7544\u754d\u754a\u7549\u755b\u7546\u755a\u7569\u7564\u7567\u756b\u756d\u7578\u7576\u7586\u7587\u7574\u758a\u7589\u7582\u7594\u759a\u759d\u75a5\u75a3\u75c2\u75b3\u75c3\u75b5\u75bd\u75b8\u75bc\u75b1\u75cd\u75ca\u75d2\u75d9\u75e3\u75de\u75fe\u75ff"],["e180","\u75fc\u7601\u75f0\u75fa\u75f2\u75f3\u760b\u760d\u7609\u761f\u7627\u7620\u7621\u7622\u7624\u7634\u7630\u763b\u7647\u7648\u7646\u765c\u7658\u7661\u7662\u7668\u7669\u766a\u7667\u766c\u7670\u7672\u7676\u7678\u767c\u7680\u7683\u7688\u768b\u768e\u7696\u7693\u7699\u769a\u76b0\u76b4\u76b8\u76b9\u76ba\u76c2\u76cd\u76d6\u76d2\u76de\u76e1\u76e5\u76e7\u76ea\u862f\u76fb\u7708\u7707\u7704\u7729\u7724\u771e\u7725\u7726\u771b\u7737\u7738\u7747\u775a\u7768\u776b\u775b\u7765\u777f\u777e\u7779\u778e\u778b\u7791\u77a0\u779e\u77b0\u77b6\u77b9\u77bf\u77bc\u77bd\u77bb\u77c7\u77cd\u77d7\u77da\u77dc\u77e3\u77ee\u77fc\u780c\u7812\u7926\u7820\u792a\u7845\u788e\u7874\u7886\u787c\u789a\u788c\u78a3\u78b5\u78aa\u78af\u78d1\u78c6\u78cb\u78d4\u78be\u78bc\u78c5\u78ca\u78ec"],["e240","\u78e7\u78da\u78fd\u78f4\u7907\u7912\u7911\u7919\u792c\u792b\u7940\u7960\u7957\u795f\u795a\u7955\u7953\u797a\u797f\u798a\u799d\u79a7\u9f4b\u79aa\u79ae\u79b3\u79b9\u79ba\u79c9\u79d5\u79e7\u79ec\u79e1\u79e3\u7a08\u7a0d\u7a18\u7a19\u7a20\u7a1f\u7980\u7a31\u7a3b\u7a3e\u7a37\u7a43\u7a57\u7a49\u7a61\u7a62\u7a69\u9f9d\u7a70\u7a79\u7a7d\u7a88\u7a97\u7a95\u7a98\u7a96\u7aa9\u7ac8\u7ab0"],["e280","\u7ab6\u7ac5\u7ac4\u7abf\u9083\u7ac7\u7aca\u7acd\u7acf\u7ad5\u7ad3\u7ad9\u7ada\u7add\u7ae1\u7ae2\u7ae6\u7aed\u7af0\u7b02\u7b0f\u7b0a\u7b06\u7b33\u7b18\u7b19\u7b1e\u7b35\u7b28\u7b36\u7b50\u7b7a\u7b04\u7b4d\u7b0b\u7b4c\u7b45\u7b75\u7b65\u7b74\u7b67\u7b70\u7b71\u7b6c\u7b6e\u7b9d\u7b98\u7b9f\u7b8d\u7b9c\u7b9a\u7b8b\u7b92\u7b8f\u7b5d\u7b99\u7bcb\u7bc1\u7bcc\u7bcf\u7bb4\u7bc6\u7bdd\u7be9\u7c11\u7c14\u7be6\u7be5\u7c60\u7c00\u7c07\u7c13\u7bf3\u7bf7\u7c17\u7c0d\u7bf6\u7c23\u7c27\u7c2a\u7c1f\u7c37\u7c2b\u7c3d\u7c4c\u7c43\u7c54\u7c4f\u7c40\u7c50\u7c58\u7c5f\u7c64\u7c56\u7c65\u7c6c\u7c75\u7c83\u7c90\u7ca4\u7cad\u7ca2\u7cab\u7ca1\u7ca8\u7cb3\u7cb2\u7cb1\u7cae\u7cb9\u7cbd\u7cc0\u7cc5\u7cc2\u7cd8\u7cd2\u7cdc\u7ce2\u9b3b\u7cef\u7cf2\u7cf4\u7cf6\u7cfa\u7d06"],["e340","\u7d02\u7d1c\u7d15\u7d0a\u7d45\u7d4b\u7d2e\u7d32\u7d3f\u7d35\u7d46\u7d73\u7d56\u7d4e\u7d72\u7d68\u7d6e\u7d4f\u7d63\u7d93\u7d89\u7d5b\u7d8f\u7d7d\u7d9b\u7dba\u7dae\u7da3\u7db5\u7dc7\u7dbd\u7dab\u7e3d\u7da2\u7daf\u7ddc\u7db8\u7d9f\u7db0\u7dd8\u7ddd\u7de4\u7dde\u7dfb\u7df2\u7de1\u7e05\u7e0a\u7e23\u7e21\u7e12\u7e31\u7e1f\u7e09\u7e0b\u7e22\u7e46\u7e66\u7e3b\u7e35\u7e39\u7e43\u7e37"],["e380","\u7e32\u7e3a\u7e67\u7e5d\u7e56\u7e5e\u7e59\u7e5a\u7e79\u7e6a\u7e69\u7e7c\u7e7b\u7e83\u7dd5\u7e7d\u8fae\u7e7f\u7e88\u7e89\u7e8c\u7e92\u7e90\u7e93\u7e94\u7e96\u7e8e\u7e9b\u7e9c\u7f38\u7f3a\u7f45\u7f4c\u7f4d\u7f4e\u7f50\u7f51\u7f55\u7f54\u7f58\u7f5f\u7f60\u7f68\u7f69\u7f67\u7f78\u7f82\u7f86\u7f83\u7f88\u7f87\u7f8c\u7f94\u7f9e\u7f9d\u7f9a\u7fa3\u7faf\u7fb2\u7fb9\u7fae\u7fb6\u7fb8\u8b71\u7fc5\u7fc6\u7fca\u7fd5\u7fd4\u7fe1\u7fe6\u7fe9\u7ff3\u7ff9\u98dc\u8006\u8004\u800b\u8012\u8018\u8019\u801c\u8021\u8028\u803f\u803b\u804a\u8046\u8052\u8058\u805a\u805f\u8062\u8068\u8073\u8072\u8070\u8076\u8079\u807d\u807f\u8084\u8086\u8085\u809b\u8093\u809a\u80ad\u5190\u80ac\u80db\u80e5\u80d9\u80dd\u80c4\u80da\u80d6\u8109\u80ef\u80f1\u811b\u8129\u8123\u812f\u814b"],["e440","\u968b\u8146\u813e\u8153\u8151\u80fc\u8171\u816e\u8165\u8166\u8174\u8183\u8188\u818a\u8180\u8182\u81a0\u8195\u81a4\u81a3\u815f\u8193\u81a9\u81b0\u81b5\u81be\u81b8\u81bd\u81c0\u81c2\u81ba\u81c9\u81cd\u81d1\u81d9\u81d8\u81c8\u81da\u81df\u81e0\u81e7\u81fa\u81fb\u81fe\u8201\u8202\u8205\u8207\u820a\u820d\u8210\u8216\u8229\u822b\u8238\u8233\u8240\u8259\u8258\u825d\u825a\u825f\u8264"],["e480","\u8262\u8268\u826a\u826b\u822e\u8271\u8277\u8278\u827e\u828d\u8292\u82ab\u829f\u82bb\u82ac\u82e1\u82e3\u82df\u82d2\u82f4\u82f3\u82fa\u8393\u8303\u82fb\u82f9\u82de\u8306\u82dc\u8309\u82d9\u8335\u8334\u8316\u8332\u8331\u8340\u8339\u8350\u8345\u832f\u832b\u8317\u8318\u8385\u839a\u83aa\u839f\u83a2\u8396\u8323\u838e\u8387\u838a\u837c\u83b5\u8373\u8375\u83a0\u8389\u83a8\u83f4\u8413\u83eb\u83ce\u83fd\u8403\u83d8\u840b\u83c1\u83f7\u8407\u83e0\u83f2\u840d\u8422\u8420\u83bd\u8438\u8506\u83fb\u846d\u842a\u843c\u855a\u8484\u8477\u846b\u84ad\u846e\u8482\u8469\u8446\u842c\u846f\u8479\u8435\u84ca\u8462\u84b9\u84bf\u849f\u84d9\u84cd\u84bb\u84da\u84d0\u84c1\u84c6\u84d6\u84a1\u8521\u84ff\u84f4\u8517\u8518\u852c\u851f\u8515\u8514\u84fc\u8540\u8563\u8558\u8548"],["e540","\u8541\u8602\u854b\u8555\u8580\u85a4\u8588\u8591\u858a\u85a8\u856d\u8594\u859b\u85ea\u8587\u859c\u8577\u857e\u8590\u85c9\u85ba\u85cf\u85b9\u85d0\u85d5\u85dd\u85e5\u85dc\u85f9\u860a\u8613\u860b\u85fe\u85fa\u8606\u8622\u861a\u8630\u863f\u864d\u4e55\u8654\u865f\u8667\u8671\u8693\u86a3\u86a9\u86aa\u868b\u868c\u86b6\u86af\u86c4\u86c6\u86b0\u86c9\u8823\u86ab\u86d4\u86de\u86e9\u86ec"],["e580","\u86df\u86db\u86ef\u8712\u8706\u8708\u8700\u8703\u86fb\u8711\u8709\u870d\u86f9\u870a\u8734\u873f\u8737\u873b\u8725\u8729\u871a\u8760\u875f\u8778\u874c\u874e\u8774\u8757\u8768\u876e\u8759\u8753\u8763\u876a\u8805\u87a2\u879f\u8782\u87af\u87cb\u87bd\u87c0\u87d0\u96d6\u87ab\u87c4\u87b3\u87c7\u87c6\u87bb\u87ef\u87f2\u87e0\u880f\u880d\u87fe\u87f6\u87f7\u880e\u87d2\u8811\u8816\u8815\u8822\u8821\u8831\u8836\u8839\u8827\u883b\u8844\u8842\u8852\u8859\u885e\u8862\u886b\u8881\u887e\u889e\u8875\u887d\u88b5\u8872\u8882\u8897\u8892\u88ae\u8899\u88a2\u888d\u88a4\u88b0\u88bf\u88b1\u88c3\u88c4\u88d4\u88d8\u88d9\u88dd\u88f9\u8902\u88fc\u88f4\u88e8\u88f2\u8904\u890c\u890a\u8913\u8943\u891e\u8925\u892a\u892b\u8941\u8944\u893b\u8936\u8938\u894c\u891d\u8960\u895e"],["e640","\u8966\u8964\u896d\u896a\u896f\u8974\u8977\u897e\u8983\u8988\u898a\u8993\u8998\u89a1\u89a9\u89a6\u89ac\u89af\u89b2\u89ba\u89bd\u89bf\u89c0\u89da\u89dc\u89dd\u89e7\u89f4\u89f8\u8a03\u8a16\u8a10\u8a0c\u8a1b\u8a1d\u8a25\u8a36\u8a41\u8a5b\u8a52\u8a46\u8a48\u8a7c\u8a6d\u8a6c\u8a62\u8a85\u8a82\u8a84\u8aa8\u8aa1\u8a91\u8aa5\u8aa6\u8a9a\u8aa3\u8ac4\u8acd\u8ac2\u8ada\u8aeb\u8af3\u8ae7"],["e680","\u8ae4\u8af1\u8b14\u8ae0\u8ae2\u8af7\u8ade\u8adb\u8b0c\u8b07\u8b1a\u8ae1\u8b16\u8b10\u8b17\u8b20\u8b33\u97ab\u8b26\u8b2b\u8b3e\u8b28\u8b41\u8b4c\u8b4f\u8b4e\u8b49\u8b56\u8b5b\u8b5a\u8b6b\u8b5f\u8b6c\u8b6f\u8b74\u8b7d\u8b80\u8b8c\u8b8e\u8b92\u8b93\u8b96\u8b99\u8b9a\u8c3a\u8c41\u8c3f\u8c48\u8c4c\u8c4e\u8c50\u8c55\u8c62\u8c6c\u8c78\u8c7a\u8c82\u8c89\u8c85\u8c8a\u8c8d\u8c8e\u8c94\u8c7c\u8c98\u621d\u8cad\u8caa\u8cbd\u8cb2\u8cb3\u8cae\u8cb6\u8cc8\u8cc1\u8ce4\u8ce3\u8cda\u8cfd\u8cfa\u8cfb\u8d04\u8d05\u8d0a\u8d07\u8d0f\u8d0d\u8d10\u9f4e\u8d13\u8ccd\u8d14\u8d16\u8d67\u8d6d\u8d71\u8d73\u8d81\u8d99\u8dc2\u8dbe\u8dba\u8dcf\u8dda\u8dd6\u8dcc\u8ddb\u8dcb\u8dea\u8deb\u8ddf\u8de3\u8dfc\u8e08\u8e09\u8dff\u8e1d\u8e1e\u8e10\u8e1f\u8e42\u8e35\u8e30\u8e34\u8e4a"],["e740","\u8e47\u8e49\u8e4c\u8e50\u8e48\u8e59\u8e64\u8e60\u8e2a\u8e63\u8e55\u8e76\u8e72\u8e7c\u8e81\u8e87\u8e85\u8e84\u8e8b\u8e8a\u8e93\u8e91\u8e94\u8e99\u8eaa\u8ea1\u8eac\u8eb0\u8ec6\u8eb1\u8ebe\u8ec5\u8ec8\u8ecb\u8edb\u8ee3\u8efc\u8efb\u8eeb\u8efe\u8f0a\u8f05\u8f15\u8f12\u8f19\u8f13\u8f1c\u8f1f\u8f1b\u8f0c\u8f26\u8f33\u8f3b\u8f39\u8f45\u8f42\u8f3e\u8f4c\u8f49\u8f46\u8f4e\u8f57\u8f5c"],["e780","\u8f62\u8f63\u8f64\u8f9c\u8f9f\u8fa3\u8fad\u8faf\u8fb7\u8fda\u8fe5\u8fe2\u8fea\u8fef\u9087\u8ff4\u9005\u8ff9\u8ffa\u9011\u9015\u9021\u900d\u901e\u9016\u900b\u9027\u9036\u9035\u9039\u8ff8\u904f\u9050\u9051\u9052\u900e\u9049\u903e\u9056\u9058\u905e\u9068\u906f\u9076\u96a8\u9072\u9082\u907d\u9081\u9080\u908a\u9089\u908f\u90a8\u90af\u90b1\u90b5\u90e2\u90e4\u6248\u90db\u9102\u9112\u9119\u9132\u9130\u914a\u9156\u9158\u9163\u9165\u9169\u9173\u9172\u918b\u9189\u9182\u91a2\u91ab\u91af\u91aa\u91b5\u91b4\u91ba\u91c0\u91c1\u91c9\u91cb\u91d0\u91d6\u91df\u91e1\u91db\u91fc\u91f5\u91f6\u921e\u91ff\u9214\u922c\u9215\u9211\u925e\u9257\u9245\u9249\u9264\u9248\u9295\u923f\u924b\u9250\u929c\u9296\u9293\u929b\u925a\u92cf\u92b9\u92b7\u92e9\u930f\u92fa\u9344\u932e"],["e840","\u9319\u9322\u931a\u9323\u933a\u9335\u933b\u935c\u9360\u937c\u936e\u9356\u93b0\u93ac\u93ad\u9394\u93b9\u93d6\u93d7\u93e8\u93e5\u93d8\u93c3\u93dd\u93d0\u93c8\u93e4\u941a\u9414\u9413\u9403\u9407\u9410\u9436\u942b\u9435\u9421\u943a\u9441\u9452\u9444\u945b\u9460\u9462\u945e\u946a\u9229\u9470\u9475\u9477\u947d\u945a\u947c\u947e\u9481\u947f\u9582\u9587\u958a\u9594\u9596\u9598\u9599"],["e880","\u95a0\u95a8\u95a7\u95ad\u95bc\u95bb\u95b9\u95be\u95ca\u6ff6\u95c3\u95cd\u95cc\u95d5\u95d4\u95d6\u95dc\u95e1\u95e5\u95e2\u9621\u9628\u962e\u962f\u9642\u964c\u964f\u964b\u9677\u965c\u965e\u965d\u965f\u9666\u9672\u966c\u968d\u9698\u9695\u9697\u96aa\u96a7\u96b1\u96b2\u96b0\u96b4\u96b6\u96b8\u96b9\u96ce\u96cb\u96c9\u96cd\u894d\u96dc\u970d\u96d5\u96f9\u9704\u9706\u9708\u9713\u970e\u9711\u970f\u9716\u9719\u9724\u972a\u9730\u9739\u973d\u973e\u9744\u9746\u9748\u9742\u9749\u975c\u9760\u9764\u9766\u9768\u52d2\u976b\u9771\u9779\u9785\u977c\u9781\u977a\u9786\u978b\u978f\u9790\u979c\u97a8\u97a6\u97a3\u97b3\u97b4\u97c3\u97c6\u97c8\u97cb\u97dc\u97ed\u9f4f\u97f2\u7adf\u97f6\u97f5\u980f\u980c\u9838\u9824\u9821\u9837\u983d\u9846\u984f\u984b\u986b\u986f\u9870"],["e940","\u9871\u9874\u9873\u98aa\u98af\u98b1\u98b6\u98c4\u98c3\u98c6\u98e9\u98eb\u9903\u9909\u9912\u9914\u9918\u9921\u991d\u991e\u9924\u9920\u992c\u992e\u993d\u993e\u9942\u9949\u9945\u9950\u994b\u9951\u9952\u994c\u9955\u9997\u9998\u99a5\u99ad\u99ae\u99bc\u99df\u99db\u99dd\u99d8\u99d1\u99ed\u99ee\u99f1\u99f2\u99fb\u99f8\u9a01\u9a0f\u9a05\u99e2\u9a19\u9a2b\u9a37\u9a45\u9a42\u9a40\u9a43"],["e980","\u9a3e\u9a55\u9a4d\u9a5b\u9a57\u9a5f\u9a62\u9a65\u9a64\u9a69\u9a6b\u9a6a\u9aad\u9ab0\u9abc\u9ac0\u9acf\u9ad1\u9ad3\u9ad4\u9ade\u9adf\u9ae2\u9ae3\u9ae6\u9aef\u9aeb\u9aee\u9af4\u9af1\u9af7\u9afb\u9b06\u9b18\u9b1a\u9b1f\u9b22\u9b23\u9b25\u9b27\u9b28\u9b29\u9b2a\u9b2e\u9b2f\u9b32\u9b44\u9b43\u9b4f\u9b4d\u9b4e\u9b51\u9b58\u9b74\u9b93\u9b83\u9b91\u9b96\u9b97\u9b9f\u9ba0\u9ba8\u9bb4\u9bc0\u9bca\u9bb9\u9bc6\u9bcf\u9bd1\u9bd2\u9be3\u9be2\u9be4\u9bd4\u9be1\u9c3a\u9bf2\u9bf1\u9bf0\u9c15\u9c14\u9c09\u9c13\u9c0c\u9c06\u9c08\u9c12\u9c0a\u9c04\u9c2e\u9c1b\u9c25\u9c24\u9c21\u9c30\u9c47\u9c32\u9c46\u9c3e\u9c5a\u9c60\u9c67\u9c76\u9c78\u9ce7\u9cec\u9cf0\u9d09\u9d08\u9ceb\u9d03\u9d06\u9d2a\u9d26\u9daf\u9d23\u9d1f\u9d44\u9d15\u9d12\u9d41\u9d3f\u9d3e\u9d46\u9d48"],["ea40","\u9d5d\u9d5e\u9d64\u9d51\u9d50\u9d59\u9d72\u9d89\u9d87\u9dab\u9d6f\u9d7a\u9d9a\u9da4\u9da9\u9db2\u9dc4\u9dc1\u9dbb\u9db8\u9dba\u9dc6\u9dcf\u9dc2\u9dd9\u9dd3\u9df8\u9de6\u9ded\u9def\u9dfd\u9e1a\u9e1b\u9e1e\u9e75\u9e79\u9e7d\u9e81\u9e88\u9e8b\u9e8c\u9e92\u9e95\u9e91\u9e9d\u9ea5\u9ea9\u9eb8\u9eaa\u9ead\u9761\u9ecc\u9ece\u9ecf\u9ed0\u9ed4\u9edc\u9ede\u9edd\u9ee0\u9ee5\u9ee8\u9eef"],["ea80","\u9ef4\u9ef6\u9ef7\u9ef9\u9efb\u9efc\u9efd\u9f07\u9f08\u76b7\u9f15\u9f21\u9f2c\u9f3e\u9f4a\u9f52\u9f54\u9f63\u9f5f\u9f60\u9f61\u9f66\u9f67\u9f6c\u9f6a\u9f77\u9f72\u9f76\u9f95\u9f9c\u9fa0\u582f\u69c7\u9059\u7464\u51dc\u7199"],["ed40","\u7e8a\u891c\u9348\u9288\u84dc\u4fc9\u70bb\u6631\u68c8\u92f9\u66fb\u5f45\u4e28\u4ee1\u4efc\u4f00\u4f03\u4f39\u4f56\u4f92\u4f8a\u4f9a\u4f94\u4fcd\u5040\u5022\u4fff\u501e\u5046\u5070\u5042\u5094\u50f4\u50d8\u514a\u5164\u519d\u51be\u51ec\u5215\u529c\u52a6\u52c0\u52db\u5300\u5307\u5324\u5372\u5393\u53b2\u53dd\ufa0e\u549c\u548a\u54a9\u54ff\u5586\u5759\u5765\u57ac\u57c8\u57c7\ufa0f"],["ed80","\ufa10\u589e\u58b2\u590b\u5953\u595b\u595d\u5963\u59a4\u59ba\u5b56\u5bc0\u752f\u5bd8\u5bec\u5c1e\u5ca6\u5cba\u5cf5\u5d27\u5d53\ufa11\u5d42\u5d6d\u5db8\u5db9\u5dd0\u5f21\u5f34\u5f67\u5fb7\u5fde\u605d\u6085\u608a\u60de\u60d5\u6120\u60f2\u6111\u6137\u6130\u6198\u6213\u62a6\u63f5\u6460\u649d\u64ce\u654e\u6600\u6615\u663b\u6609\u662e\u661e\u6624\u6665\u6657\u6659\ufa12\u6673\u6699\u66a0\u66b2\u66bf\u66fa\u670e\uf929\u6766\u67bb\u6852\u67c0\u6801\u6844\u68cf\ufa13\u6968\ufa14\u6998\u69e2\u6a30\u6a6b\u6a46\u6a73\u6a7e\u6ae2\u6ae4\u6bd6\u6c3f\u6c5c\u6c86\u6c6f\u6cda\u6d04\u6d87\u6d6f\u6d96\u6dac\u6dcf\u6df8\u6df2\u6dfc\u6e39\u6e5c\u6e27\u6e3c\u6ebf\u6f88\u6fb5\u6ff5\u7005\u7007\u7028\u7085\u70ab\u710f\u7104\u715c\u7146\u7147\ufa15\u71c1\u71fe\u72b1"],["ee40","\u72be\u7324\ufa16\u7377\u73bd\u73c9\u73d6\u73e3\u73d2\u7407\u73f5\u7426\u742a\u7429\u742e\u7462\u7489\u749f\u7501\u756f\u7682\u769c\u769e\u769b\u76a6\ufa17\u7746\u52af\u7821\u784e\u7864\u787a\u7930\ufa18\ufa19\ufa1a\u7994\ufa1b\u799b\u7ad1\u7ae7\ufa1c\u7aeb\u7b9e\ufa1d\u7d48\u7d5c\u7db7\u7da0\u7dd6\u7e52\u7f47\u7fa1\ufa1e\u8301\u8362\u837f\u83c7\u83f6\u8448\u84b4\u8553\u8559"],["ee80","\u856b\ufa1f\u85b0\ufa20\ufa21\u8807\u88f5\u8a12\u8a37\u8a79\u8aa7\u8abe\u8adf\ufa22\u8af6\u8b53\u8b7f\u8cf0\u8cf4\u8d12\u8d76\ufa23\u8ecf\ufa24\ufa25\u9067\u90de\ufa26\u9115\u9127\u91da\u91d7\u91de\u91ed\u91ee\u91e4\u91e5\u9206\u9210\u920a\u923a\u9240\u923c\u924e\u9259\u9251\u9239\u9267\u92a7\u9277\u9278\u92e7\u92d7\u92d9\u92d0\ufa27\u92d5\u92e0\u92d3\u9325\u9321\u92fb\ufa28\u931e\u92ff\u931d\u9302\u9370\u9357\u93a4\u93c6\u93de\u93f8\u9431\u9445\u9448\u9592\uf9dc\ufa29\u969d\u96af\u9733\u973b\u9743\u974d\u974f\u9751\u9755\u9857\u9865\ufa2a\ufa2b\u9927\ufa2c\u999e\u9a4e\u9ad9\u9adc\u9b75\u9b72\u9b8f\u9bb1\u9bbb\u9c00\u9d70\u9d6b\ufa2d\u9e19\u9ed1"],["eeef","\u2170",9,"\uffe2\uffe4\uff07\uff02"],["f040","\ue000",62],["f080","\ue03f",124],["f140","\ue0bc",62],["f180","\ue0fb",124],["f240","\ue178",62],["f280","\ue1b7",124],["f340","\ue234",62],["f380","\ue273",124],["f440","\ue2f0",62],["f480","\ue32f",124],["f540","\ue3ac",62],["f580","\ue3eb",124],["f640","\ue468",62],["f680","\ue4a7",124],["f740","\ue524",62],["f780","\ue563",124],["f840","\ue5e0",62],["f880","\ue61f",124],["f940","\ue69c"],["fa40","\u2170",9,"\u2160",9,"\uffe2\uffe4\uff07\uff02\u3231\u2116\u2121\u2235\u7e8a\u891c\u9348\u9288\u84dc\u4fc9\u70bb\u6631\u68c8\u92f9\u66fb\u5f45\u4e28\u4ee1\u4efc\u4f00\u4f03\u4f39\u4f56\u4f92\u4f8a\u4f9a\u4f94\u4fcd\u5040\u5022\u4fff\u501e\u5046\u5070\u5042\u5094\u50f4\u50d8\u514a"],["fa80","\u5164\u519d\u51be\u51ec\u5215\u529c\u52a6\u52c0\u52db\u5300\u5307\u5324\u5372\u5393\u53b2\u53dd\ufa0e\u549c\u548a\u54a9\u54ff\u5586\u5759\u5765\u57ac\u57c8\u57c7\ufa0f\ufa10\u589e\u58b2\u590b\u5953\u595b\u595d\u5963\u59a4\u59ba\u5b56\u5bc0\u752f\u5bd8\u5bec\u5c1e\u5ca6\u5cba\u5cf5\u5d27\u5d53\ufa11\u5d42\u5d6d\u5db8\u5db9\u5dd0\u5f21\u5f34\u5f67\u5fb7\u5fde\u605d\u6085\u608a\u60de\u60d5\u6120\u60f2\u6111\u6137\u6130\u6198\u6213\u62a6\u63f5\u6460\u649d\u64ce\u654e\u6600\u6615\u663b\u6609\u662e\u661e\u6624\u6665\u6657\u6659\ufa12\u6673\u6699\u66a0\u66b2\u66bf\u66fa\u670e\uf929\u6766\u67bb\u6852\u67c0\u6801\u6844\u68cf\ufa13\u6968\ufa14\u6998\u69e2\u6a30\u6a6b\u6a46\u6a73\u6a7e\u6ae2\u6ae4\u6bd6\u6c3f\u6c5c\u6c86\u6c6f\u6cda\u6d04\u6d87\u6d6f"],["fb40","\u6d96\u6dac\u6dcf\u6df8\u6df2\u6dfc\u6e39\u6e5c\u6e27\u6e3c\u6ebf\u6f88\u6fb5\u6ff5\u7005\u7007\u7028\u7085\u70ab\u710f\u7104\u715c\u7146\u7147\ufa15\u71c1\u71fe\u72b1\u72be\u7324\ufa16\u7377\u73bd\u73c9\u73d6\u73e3\u73d2\u7407\u73f5\u7426\u742a\u7429\u742e\u7462\u7489\u749f\u7501\u756f\u7682\u769c\u769e\u769b\u76a6\ufa17\u7746\u52af\u7821\u784e\u7864\u787a\u7930\ufa18\ufa19"],["fb80","\ufa1a\u7994\ufa1b\u799b\u7ad1\u7ae7\ufa1c\u7aeb\u7b9e\ufa1d\u7d48\u7d5c\u7db7\u7da0\u7dd6\u7e52\u7f47\u7fa1\ufa1e\u8301\u8362\u837f\u83c7\u83f6\u8448\u84b4\u8553\u8559\u856b\ufa1f\u85b0\ufa20\ufa21\u8807\u88f5\u8a12\u8a37\u8a79\u8aa7\u8abe\u8adf\ufa22\u8af6\u8b53\u8b7f\u8cf0\u8cf4\u8d12\u8d76\ufa23\u8ecf\ufa24\ufa25\u9067\u90de\ufa26\u9115\u9127\u91da\u91d7\u91de\u91ed\u91ee\u91e4\u91e5\u9206\u9210\u920a\u923a\u9240\u923c\u924e\u9259\u9251\u9239\u9267\u92a7\u9277\u9278\u92e7\u92d7\u92d9\u92d0\ufa27\u92d5\u92e0\u92d3\u9325\u9321\u92fb\ufa28\u931e\u92ff\u931d\u9302\u9370\u9357\u93a4\u93c6\u93de\u93f8\u9431\u9445\u9448\u9592\uf9dc\ufa29\u969d\u96af\u9733\u973b\u9743\u974d\u974f\u9751\u9755\u9857\u9865\ufa2a\ufa2b\u9927\ufa2c\u999e\u9a4e\u9ad9"],["fc40","\u9adc\u9b75\u9b72\u9b8f\u9bb1\u9bbb\u9c00\u9d70\u9d6b\ufa2d\u9e19\u9ed1"]]')}},Pt={};function st(b){var A=Pt[b];if(void 0!==A)return A.exports;var n=Pt[b]={id:b,loaded:!1,exports:{}};return br[b].call(n.exports,n,n.exports,st),n.loaded=!0,n.exports}return st.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch{if("object"==typeof window)return window}}(),st.nmd=function(b){return b.paths=[],b.children||(b.children=[]),b},st(36164)}()},7235:function(){this.b=this.b||{},this.b.vfs={"Roboto-Italic.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAddgAAACWEdQT1N/jKrdAAHZuAAAWMBHU1VCm18k/AACMngAABX2T1MvMpeDsUwAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHXVAAAAAxnbHlmNN3JWAAAOswAAZmmaGVhZAh9pEIAAAEcAAAANmhoZWEMnBKkAAABVAAAACRobXR4VUzdowAAAfgAABSkbG9jYV8SwLgAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lOSJt5gAB1HQAAALAcG9zdP9hAGQAAdc0AAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCDJn8J2NfDzz1ABsIAAAAAADE8BEuAAAAAODgRcL6N/3VCUMIcwACAAkAAgAAAAAAAAABAAAHbP4MAAAJA/o3/mwJQwgAAbMAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/1AAIFsAAAAgAAAAAEdPT0cAAQAA//0GAP4AAGYHmgIAIAABnwAAAAAEOgWwAAAAIAADA5YAZAAAAAAAAAAAAfcAAAH3AAACAABEAnwAyQTHAFIEXABJBa8AugTUADkBWwCsAqgAbQK0/5ADWABrBGcATAGH/48CJQAaAgwANAM0/5AEXABqBFwA+gRcABgEXAA1BFwABQRcAHIEXABtBFwAnQRcAEAEXACUAesAKQGu/5sD8gBCBEIAcAQPADsDqwClBvgAQQUQ/68E1gA7BQ0AcAUYADsEaQA7BEoAOwVJAHQFiQA7AhwASQRIAAcE3gA7BC4AOwbGADsFiQA7BVcAcwTlADsFVwBrBMgAOwScACkEoQCpBQgAYwTxAKUG4gDDBN3/1ASpAKgEpv/sAg8AAAMwAMACD/97Az4ATwOA/4ECZgDQBDkAMQRcAB8EEABGBGAARwQdAEUCswB1BFwAAwRGACAB4wAvAdv/EwPvACAB4wAvBs4AHgRJACAEbQBGBFz/1wRpAEYCoQAgBAEALgKKAEMERwBbA8IAbgXVAIAD2v/FA6z/qgPa/+4CoAA3AeUAIgKg/40FRwBpAeX/8QQ/AFAEg//zBYkAEgQUAEMB3f/4BML/2gM/ANoGGQBeA3kAwwOuAFYETACBBhoAXQOPAPgC5gDoBCYAJgLiAF0C4gBvAm8A1QRm/+YDzAB4AgcApQHt/8gC4gDgA4gAvwOtABEFuQC6Bg8AtQYTAJ4Drf/RB0H/gwQkACgFVwAgBJYAOQSdAB8GjgATBI0AXARvAEQEZgA6BHn/4ASjAEYFcAA2AewALwRSAC4ELgAjAhkAJAVgADUEZgAlB2YAVQcMAEcB7QA0BV0AUgKl/0cFVQBmBHAAQwVlAGMEzQBbAfX/CQQYAD8DpwEYA3MBKAOZAPgDUQEHAeMBDgKZAQECGv+uA6kA3gLlAMMCSP/pAAD9agAA/eoAAP0LAAD99AAA/NsAAPy6Af4BIwPtAPQCEQClBFEARAV5/7IFSABnBRf/xARvAAwFiQBEBG//2wWPAFYFXgCFBSkACgRjAEgEmf/xA+QAhQRmAEUEMAApBAUAigRmACUEawB1AoQAhARN/7gDzgBABKAAYARm/90ELQBKBGUASAQMAIcEPABoBXgAQAVvAE4GZABnBH4AUgQiAGcGGABoBdIAogU8AHMIUP/NCGMARAZRALQFiABCBO4ANgXW/4wHC/+rBJwAJQWJAEQFf//LBOEAlAX+AFsFrQBBBVAAywdNAEIHhABCBeMAigbAAEQE3gA2BTwAdgb6AEkE8f/pBEsARwRwADEDQgAuBK//jQXy/6cD8QAgBHsAMAQyADAEfP/IBcEAMQR6ADAEewAwA7sAYAWhAEkEmgAwBDkAeQZHADAGbAAlBNEAVgYQADEENwAxBC0AMgZWADEEQv+/BEYAIAQtAE4Glf/DBq8AMARwACAEewAwBtMAbgX9AE8ENgAvBvUASgXLAC0Erv+6BCb/ogbWAFsF3gBPBp4AJgW1ACoIwABJB5UALwQE/80Dvf/JBUgAZwRpAEME5ACtA+UAhQVIAGcEZgBDBssAdAX1AFIG0wBuBf0ATwUKAGkEJwBMBNgAQAAA/OcAAP0KAAD+FgAA/jsAAPo3AAD6TgXlAEQE0QAwBDYALwT0ADsEZ//XBEIANQN2ACUEwABEA+cAJQdx/6sGOv+nBXkARASeADAE4wA2BFwALgZaALwFWgB2BdsAOwS+ADAHkwA7BYgAJQf8AEIGvwAlBcEAawSvAFwE+//UBBT/xQb2AKwFNABXBZoAywR9AHkFRgDKBEkAlAVGABwGAACIBJoABATjADYEOQAuBdr/ywTT/8gFhwBEBGYAJQXtADsE0AAwByEAOwYYADEFXQBSBIQAPASE//0Env/5A5n/6QUQ/9QEKf/FBNEALgZiADEGsABIBiYArQUEAGgEKQCwA+kAoAeG/+AGRP/aB74APAZvACME0QBlA/4ATQWCAJsE+gB9BTwAaAXe/8sE1//IAwkA8wP/AAAH9AAAA/8AAAf0AAACrgAAAgQAAAFcAAAEZgAAAikAAAGfAAABAgAAANUAAAAAAAACLQAaAi0AGgUiAKYGGQCYA4r/XgGOALABjgCJAYz/lwGOANICyAC4AtAAlQKt/5QESAB3BG3/9gKeAKEDsQA4BTsAOAF0AFIHbwCWAlUAXQJVAAQDh//wAuIAjwLiAGQC4gCKAuIAkALiAKIC4gB7AuIAqgMfAIgC4QCJAuEAcwHiAI8B4gA+A0cAfgLi/9wC4gAtAuL/qwLi/7wC4v+yAuL/2ALi/94C4v/wAuL/yQLi//gDKf/cAuv/3QLr/8cB4v/oAeL/nQSD//MGJQAKBl8AOQg/ADsFvgAJBfwAHwRcAFEFrQBDBAMASgRSAAsFH//yBSb/5QW7AMwDsQBLB/sANQTbAOsE8QB/BgEAtgasAJIGpQCQBkMAvgRtAE0FZAAkBIv/rQRwAKsEoABBB/sASwH9/xUEXwAzBEIAcAP8/9MEGQAYA+kAQgJEAHcCfABxAfX/5ATXAHUETQBZBGgAdQagAHUGoAB1BMgAdQZoACgAAAAAB/X/qwg1AFwC2P/qAtgAbALYABwD8QBpA/EAJwPxAHAD8ABLA/EASgPx//cD8QAXA/H//QPxAL0D8QBGBAP/3QQLAHUEM/+3BeYAlARGAHkEWwBCBAcAbgQAABIEKQAdBJgARgQ7AB4EmABMBL0AHgXUAB4DmQAeBDQAHgOy//YB2gArBL4AHgSIAEwDrwAeBAAAEgQUAAYDhQAZA5MAHgRG/7AEmABMBEb/sANu/9MEqgAeA9L/1gU+AFIE8AB9BM0ADgVJAG0EWgBIBwr/wwcYAB4FSgBuBKkAHgQ5ACAE/f+JBd3/rwQfABIExgAgBC0AHwSc/8QEAABaBQEAHgRIAFYGIAAeBnkAHgT2AFEFzQAgBC4AIARaACAGRQAeBGT/4APz//oGGP+vBFcAHwTjAB8FDwBqBZcAUARHAHUEhP+3BjEAbQRIAFUESAAeBZgALgSmAEAEHwASBJwARgQUAAADxgAfB+QAHgSH/94C2P/7Atj/8QLYABcC2AAdAtgALwLYAAgC2AA3A3sAkwKgAQsDyAAeBBr/mQSfAEgFIwBEBP0ARAP1ACYFFQBEA/AAJgRdAB4EWgBIBDAAHgRj/6YB7wD8A4kBEgAA/SoD0gDTA9YAIgPwAM4D1wDNA5MAHgOEARIDgwETAuIAjwLiAGQC4gCKAuIAkALiAKIC4gB7AuIAqgVYAIAFgwCBBWgARAWzAIMFtgCDA7gAvARfADkEN/+BBKr/0wRJ/9UEDgArA4kBFAGG/74GcQBMBJYAPgHt/w8EZv+sBGb/4wRm/7gEZgAsBGYAVgRmACQEZgBmBGYAGwRmAEAEZgENAgD/CQH//wkB9gAvAfb/eAH2AC8EMAAeBNoAZAQBAGIEXAAfBBMARARwAEMEaQAjBHwAQgRr/9cEeQBCBB0ARgRcADUETv+/A2gAqQSxACwDmf/pBgr/mgPaAB4EmP/0BL0AHgS9AB4B9wAAAiUAGgU2AC8FNgAvBGQAPgShAKkCiv/0BRD/rwUQ/68FEP+vBRD/rwUQ/68FEP+vBRD/rwUNAHAEaQA7BGkAOwRpADsEaQA7AhwASQIcAEkCHABJAhwASQWJADsFVwBzBVcAcwVXAHMFVwBzBVcAcwUIAGMFCABjBQgAYwUIAGMEqQCoBDkAMQQ5ADEEOQAxBDkAMQQ5ADEEOQAxBDkAMQQQAEYEHQBFBB0ARQQdAEUEHQBFAewALwHsAC8B7AAvAewALwRJACAEbQBGBG0ARgRtAEYEbQBGBG0ARgRHAFsERwBbBEcAWwRHAFsDrP+qA6z/qgUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUNAHAEEABGBQ0AcAQQAEYFDQBwBBAARgUNAHAEEABGBRgAOwT2AEcEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBUkAdARcAAMFSQB0BFwAAwVJAHQEXAADBUkAdARcAAMFiQA7BEYAIAIcAEkB7AARAhwASQHsAC4CHABJAewALwIc/4sB4/9tAhwASQZkAEkDvgAvBEgABwH1/wkE3gA7A+8AIAQuADsB4wAvBC4AOwHj/6IELgA7AnkALwQuADsCvwAvBYkAOwRJACAFiQA7BEkAIAWJADsESQAgBEkAIAVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgTIADsCoQAgBMgAOwKh/58EyAA7AqEAIAScACkEAQAuBJwAKQQBAC4EnAApBAEALgScACkEAQAuBJwAKQQBAC4EoQCpAooAQwShAKkCigBDBKEAqQKyAEMFCABjBEcAWwUIAGMERwBbBQgAYwRHAFsFCABjBEcAWwUIAGMERwBbBQgAYwRHAFsG4gDDBdUAgASpAKgDrP+qBKkAqASm/+wD2v/uBKb/7APa/+4Epv/sA9r/7gdB/4MGjgATBVcAIARmADoEXf+vBF3/rwQHAG4EY/+mBGP/pgRj/6YEY/+mBGP/pgRj/6YEY/+mBFoASAPIAB4DyAAeA8gAHgPIAB4B2gArAdoAKwHaACsB2gArBL0AHgSYAEwEmABMBJgATASYAEwEmABMBFsAQgRbAEIEWwBCBFsAQgQLAHUEY/+mBGP/pgRj/6YEWgBIBFoASARaAEgEWgBIBF0AHgPIAB4DyAAeA8gAHgPIAB4DyAAeBIgATASIAEwEiABMBIgATAS+AB4B2gAOAdoAKwHaACsB5P+CAdoAKwOy//YENAAeA5kAHgOZAB4DmQAeA5kAHgS9AB4EvQAeBL0AHgSYAEwEmABMBJgATAQpAB0EKQAdBCkAHQQAABIEAAASBAAAEgQAABIEBwBuBAcAbgQHAG4EWwBCBFsAQgRbAEIEWwBCBFsAQgRbAEIF5gCUBAsAdQQLAHUEA//dBAP/3QQD/90FEP+vBM0AAwXtABECgAAXBWsAawUN/+0FPQAeAoQAIAUQ/68E1gA7BGkAOwSm/+wFiQA7AhwASQTeADsGxgA7BYkAOwVXAHME5QA7BKEAqQSpAKgE3f/UAhwASQSpAKgEYwBIBDAAKQRmACUChACEBDwAaARSAC4EbQBGBGb/5gPCAG4ETv+/AoQAZQQ8AGgEbQBGBDwAaAZkAGcEaQA7BFEARAScACkCHABJAhwASQRIAAcE/QBEBN4AOwThAJQFEP+vBNYAOwRRAEQEaQA7BYkARAbGADsFiQA7BVcAcwWJAEQE5QA7BQ0AcAShAKkE3f/UBDkAMQQdAEUEewAwBG0ARgRc/9cEEABGA6z/qgPa/8UEHQBFA0IALgQBAC4B4wAvAewALwHb/xMEMgAwA6z/qgbiAMMF1QCABuIAwwXVAIAG4gDDBdUAgASpAKgDrP+qAVsArAJ8AMkEAABEAfX/CQGOAIkGxgA7Bs4AHgUQ/68EOQAxBGkAOwWJAEQEHQBFBHsAMAVeAIUFbwBOBOQArQPlAIUIGQBGCQMAcwScACUD8QAgBQ0AcAQQAEYEqQCoA+QAhQIcAEkHC/+rBfL/pwIcAEkFEP+vBDkAMQUQ/68EOQAxB0H/gwaOABMEaQA7BB0ARQVdAFIEGAA/BBgAPwcL/6sF8v+nBJwAJQPxACAFiQBEBHsAMAWJAEQEewAwBVcAcwRtAEYFSABnBGkAQwVIAGcEaQBDBTwAdgQtADIE4QCUA6z/qgThAJQDrP+qBOEAlAOs/6oFUADLBDkAeQbAAEQGEAAxBGAARwUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQUQ/68EOQAxBRD/rwQ5ADEFEP+vBDkAMQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUEaQA7BB0ARQRpADsEHQBFBGkAOwQdAEUCHABJAewALwIcAA0B4//wBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYFVwBzBG0ARgVXAHMEbQBGBVcAcwRtAEYFVQBmBHAAQwVVAGYEcABDBVUAZgRwAEMFVQBmBHAAQwVVAGYEcABDBQgAYwRHAFsFCABjBEcAWwVlAGMEzQBbBWUAYwTNAFsFZQBjBM0AWwVlAGMEzQBbBWUAYwTNAFsEqQCoA6z/qgSpAKgDrP+qBKkAqAOs/6oEfgAABKEAqQO7AGAFUADLBDkAeQRRAEQDQgAuBgAAiASaAAQERgAgBN4ALATeACwEUQARA0L/5wURAFgECQA6BKkAqAPkAF4E3f/UA9r/xQQwACkESv/XBhkAmARcABgEXAA1BFwABQRcAHIEcACBBIQAVARwAJQEhAB+BUkAdARcAAMFiQA7BEkAIAUQ/68EOQAxBGkAOwQdAEUCHP/gAez/jQVXAHMEbQBGBMgAOwKhACAFCABjBEcAWwSG/7EE1gA7BFwAHwUYADsEYABHBRgAOwRgAEcFiQA7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AGUAcwAvAEwASQBDAEUATgBTAEUALQAyAC4AMAADAAD/9AAA/2oAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAgAIAAj//wAPAAEAAgAOAAAAAAAAAigAAgBZACUAPgABAEQAXgABAGoAagABAHAAcAABAHUAdQABAIEAgQABAIMAgwABAIYAhgABAIkAiQABAIsAlgABAJgAnwABAKEAowABAKUApgABAKgArQADALEAsQABALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAdUB2wACAewCAAABAgQCBAABAg0CDQABAg8CDwABAhYCGAABAhoCGwABAh0CHQABAiECIQABAiMCJQABAisCKwABAjACMgABAjQCNAABAkICQgABAkUCRQABAkcCRwABAkoCTQABAnkCfQABAo0CkgABApUC/QABAwADvwABA8EDwQABA8MDzQABA88D2AABA9oD9QABA/kD+QABA/sEAgABBAQEBgABBAkEDQABBA8EmgABBJ0EngABBKAEoQABBKMEpgABBLAFDAABBQ4FGAABBRsFKAABAAEAAwAAABAAAAAWAAAAIAABAAEArQACAAEAqACsAAAAAgACAKgArAAAASQBJwAFAAEAAAAWADAACgAFAEYATgBYAGIAbAAEREZMVABqY3lybABuZ3JlawBybGF0bgB2AAVjcHNwAGBrZXJuAGxrZXJuAGZrZXJuAHRrZXJuAHwAAQAAAAEAZAACAAgAAgEyCAgAAgAIAAIAzAQuAAIACAACAjIP/AACAAgAAgBIAIAATgAAAFQAAABaAAAAYAAAAAAAAQAAAAAAAQAEAAAAAgAEAAMAAAACAAQAAQAAAAIABAACAAErTAAFACQASAABGRIABAAAAAMZBhkcGQwAAP//AAIAAAACAAD//wACAAAAAwAA//8AAgAAAAQAAP//AAIAAAABAAIZDgAEAAAZVBt4AAQABQAA/5UAAAAA/4gAAP9WAAAAAAAAAAAAAAAAAAAAAAAA/4gAAAAAAAAAARv2AAQAAAApGXwZihlKGtgZ2BmmGgQZtBnuGlYafBj+GcYZBByiGRYdBBukGqoZChkQHWoZVBoaGgQZphxMGgQZXhloGaYZmBsKHEwaNBxMGRYZchnGGXIZpgABLrQABAAAAIUeQh4IHYwdkh3QHwYgAjbCMNQ08ih8Hn4x6izCH9AlEB5+Hn4hHB5+Hn4efimMJBQefh+mJJIjJB5cJ9IiZB28JzQdmB98I5ovwh4sIN4lkiG4HyweLCIOH1IhZiA4HywgpB7CHewdsh98HiwmHB28H9AdmCBuIG4gbh5+H9AdmB5+Hn4d+h28H9AdmCLCJhwefh5+IG4gbiEcIKQdniYcHn4efh36Hd4eGiamH9AeoB2oHsIeLB2yHZgdqB28HbIdqB3sHbIeGh7kHbIefh/QHZgefiCkHqAgpB6gHagdqB2oH9AdmB36HsIewh4sIRwdsiEcHbIhHB2yJqYmHB28HcYfpiYcIG4e5AABOcYABAAAAPQswChIKEgy9CzWK2goTit2PCArhCzsKE4objUkMi4tMiyuLQIoWjHwK6AycBemN8IXpjccF6YXphemK5IzOihULRgoVDKyKE4ziCycKEg4nChIKEgoSChCLVQteig8KGQoNitaKDYraChOKE4oTihOLTIs1izWLNYs1izWLNYs1itoK3Yrdit2K3YoTihOKE4oTihOMfAXphemF6YXphemF6YXphemF6YXpihUKFQs1izWLNYraCtoK2graChOK3YXpit2F6YrdhemK3YXpit2F6YXpiuELOws7CzsLOwXphemF6YXpihOF6YoThemKE4XpiuSK5Irki0yLTItMi0CMfAoVDHwK6AroCugKDwoPChCKDYoNig2KDYoNig2KDYoPCg8KDwoPCg8KDYoNig2KDwoZChkKGQoZCg8KDwoPChCLQItAi0CMfAoVChIKEgoSBemLNYs1izWLNYs1izWLNYs1izWLNYs1izWLNYrdhemK3YXpit2F6YrdhemK3YXpit2F6YrdhemK3YXpihOF6YoThemKE4XpihOF6YoThemKE4XpihOF6YXpjHwKFQx8ChUMfAoVBemLNYrdihO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/58AOgCyAA8A0v/mANQADgDW/+YA2QATANoADgDdAA4A3gALAOH/5QDm/+YA5//0AO0AEgDyAA8A9v/nAPn/6AD+AAABBAAPAQ0ADwEZ/+YBMwAOATn/5gE6/+cBQwAOAUX/5gFH/+UBSP/oAUn/5QFK/+gBTP/kAVAADgFRAA8BXQAOAWL/5gFk/+YBZgAOAWz/5gFt/+cBbwAOAXAADwPQAAsD0QAPA9z/5gPdAA4EBf/mBA3/5gQQAA4EEwAPBBUADwQeAA4ELgALBDAACwQyAAsENP/lBDX/6ASS/+YElP/lBJX/6ASh/+YAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQAAwHv//UB8P/uA5v/9QADAA3/5gBB//QAYf/vAAMASv/uAFv/6gHw//AAAwBb/8EB///mAkv/6AADAEoADwBYADIAWwARAAMAW//lAf//6wJL/+0AOwCyABAA0v/gANP/6ADUABAA1v/gANkAFADdABAA4f/hAOb/4ADtABMA8gAQAPn/4AEEABABCP/oAQ0AEAEX/+gBGf/gARv/6AEd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/8oBif/KA9D/7QPc/9ID3f/0A+D/0QPi/9ED5P/mA+X/7wPn/9ED7P/RA+3/5gP2/8oD9//KA/r/ygQC/9EEBf/UBAb/5gQN/9MEDv/mBBD/9AQR/+8EHv/0BB//7wQj/9EEJf/RBC7/7QQv/+YEMP/tBDH/5gQy/+0EM//mBDT/4QQ3/9EEkv/SBJT/4QSX/9EEof/TACkAR//sAEj/7ABJ/+wAS//sAFX/7ACU/+wAmf/sArz/7AK9/+wCvv/sAr//7ALA/+wC2P/sAtr/7ALc/+wC3v/sAuD/7ALi/+wC5P/sAub/7ALo/+wC6v/sAuz/7ALu/+wC8P/sAvL/7ARS/+wEVP/sBFb/7ARY/+wEWv/sBFz/7ARe/+wEYP/sBHT/7AR2/+wEeP/sBHz/7AS3/+wExP/sBMb/7AA2AAYAEAALABAADQAUAEEAEgBH/+gASP/oAEn/6ABL/+gAVf/oAGEAEwCU/+gAmf/oAYQAEAGFABABhwAQAYgAEAGJABACvP/oAr3/6AK+/+gCv//oAsD/6ALY/+gC2v/oAtz/6ALe/+gC4P/oAuL/6ALk/+gC5v/oAuj/6ALq/+gC7P/oAu7/6ALw/+gC8v/oA/YAEAP3ABAD+gAQBFL/6ARU/+gEVv/oBFj/6ARa/+gEXP/oBF7/6ARg/+gEdP/oBHb/6AR4/+gEfP/oBLf/6ATE/+gExv/oAEoAR//FAEj/xQBJ/8UAS//FAEwAIABPACAAUAAgAFP/gABV/8UAV/+QAFsACwCU/8UAmf/FAdv/kAK8/8UCvf/FAr7/xQK//8UCwP/FAsb/gALH/4ACyP+AAsn/gALK/4AC2P/FAtr/xQLc/8UC3v/FAuD/xQLi/8UC5P/FAub/xQLo/8UC6v/FAuz/xQLu/8UC8P/FAvL/xQMU/4ADFv+AAxj/gAMg/5ADIv+QAyT/kAMm/5ADKP+QBFL/xQRU/8UEVv/FBFj/xQRa/8UEXP/FBF7/xQRg/8UEZv+ABGj/gARq/4AEbP+ABG7/gARw/4AEcv+ABHT/xQR2/8UEeP/FBHr/gAR8/8UEt//FBLv/gATE/8UExv/FBMgAIATKACAEzAAgBNn/kAABAPQABAAGAAsADAAlACcAKAApACoALwAwADMANAA1ADYAOAA6ADsAPAA9AD4APwBJAEoATABPAFEAUgBTAFYAWABaAFsAXQBfAJYAnQCyAYQBhQGHAYgBiQHyAfQB9QH3AfoCBQJKAk0CXwJhAmIClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCqwKsAq0CrgKvArQCvQK+Ar8CwALFAsYCxwLIAskCygLPAtAC0QLTAtUC1wLZAtsC3QLfAuEC4gLjAuQC5QLmAucC6ALpAuoC9AMCAwQDBgMIAwoDDQMPAxEDEgMTAxQDFQMWAxcDGAMaAxwDHgMpAysDLQM7Az0DPgM/A0ADQgNEA0oDSwNMA00DTgNPA1ADUQNSA1MDXgNfA2ADYQNiA2gDaQNqA28DgQOCA4MDhAOIA4kDigOTA+4D8APyA/QD9QP2A/cD+gP8A/0EOQQ7BD0EPwRBBEMERQRHBEkESwRNBE8EUQRSBFMEVARVBFYEVwRYBFkEWgRbBFwEXQReBF8EYARlBGYEZwRoBGkEagRrBGwEbQRuBG8EcARxBHIEegSLBIwEjQSOBI8EkASzBLQEtgS6BLsEvQTDBMUEyATJBMsEzQTQBNIE0wTUBNcE2gTdBN4E3wTgBOEE4wABADUABgALAJYAsQCyALMAtAC9AMEAxwGEAYUBhwGIAYkCBQIGAgcDoQOiA6MDpAOlA6YDqQOqA6sDrAOtA64DrwOwA7EDsgOzA7QDtQO2A7cDuAO7A78DwQPFA/YD9wP6BOUE5gTqBO0E8wT4AKcAEP8WABL/FgAl/1YALv74ADgAFABF/94AR//rAEj/6wBJ/+sAS//rAFP/6wBV/+sAVv/mAFn/6gBa/+gAXf/oAJT/6wCZ/+sAm//qALL/VgGG/xYBiv8WAY7/FgGP/xYCBf/AAk3/wAKa/1YCm/9WApz/VgKd/1YCnv9WAp//VgKg/1YCtf/eArb/3gK3/94CuP/eArn/3gK6/94Cu//eArz/6wK9/+sCvv/rAr//6wLA/+sCxv/rAsf/6wLI/+sCyf/rAsr/6wLL/+oCzP/qAs3/6gLO/+oCz//oAtD/6ALR/1YC0v/eAtP/VgLU/94C1f9WAtb/3gLY/+sC2v/rAtz/6wLe/+sC4P/rAuL/6wLk/+sC5v/rAuj/6wLq/+sC7P/rAu7/6wLw/+sC8v/rAwD++AMU/+sDFv/rAxj/6wMpABQDKwAUAy0AFAMw/+oDMv/qAzT/6gM2/+oDOP/qAzr/6gM+/+gDTf/A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AiQCJQIOAg8CEAIRAhICEwJVAicCKAIpAioFEwIrAi0CLgIvAjECMwKRA0wDTQNOA08DUANRA1IDUwNUA1UDVgNXA1gDWQNaA1sDXANdA14DXwNgA2EDYgNjA2QDZQNmA2cDnQNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9BRoDfwOAA4EDggODA4QDhQOGA4cDiAOJA4oDiwOMA40DjgOPA5AFHQORA5IDlAOTA5UDlgOXA5gDmQOaA5sDnAOeA58DoAUbBRwE5gTnBOgE6QTzBPYE9AT1BPoE+wT8BOoE6wTsBQUFCAUJBQwFDgUPAhsFEQT9BP4E/wUABQEFAgUDBQQFHgUfBSAFIQUSBRQFFQIyBRcCNAUYBRYCMAImAiwFJgUnAAIHAAD6AgECjAHrAeoB6QHoAecB5gHlAeQB4wHiAk0CTAJLAkoCQgIAAf8B/gH9AfwB+wH6AfkB+AH3AfYB9QH0AfMB8gHxAfAB7wHuAe0B7AICAgMCjgKQAo8CkQKNApICbAIEAgUCBgIHAggCCQIKAgsCDAINAg4CDwIQAhECEgITAhQCFQIWAhcCGAIaAhsFGQIcAh0CHgIfAiACIQIiAiMCJAIlAlUCJwIoAikCKgUTAisCLQIuAi8CMAIxAjICMwI1AjYCOAI3A0oDSwNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA2gDaQNqA2sDbANtA24DbwNwA3EDcgNzA3QDdQN2A3cDeAN5A3oDewN8A30DfgUaA38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sDjAONA44DjwOQBR0DkQOSA5QDkwOVA5YDlwOYA5kDmgObA5wDnQOeA58DoAUbBRwE5gTnBOgE6QTqBOsE7ATtBO4E7wTwBPEE8gTzBPQE9QT2BPcE+AT5BPoE+wT8BP0E/gT/BQAFAQUCAhkFAwUEBQUFBgUHBQgFCQUKBQsFDAUNBQ4FDwUQBREFHgUfBSAFIQUSBRQFFQUXAjQFGAUWAiYCLAUmBScAAQABAXsAAQABAEsAAQABALsAAQABADYAAQABABMAAQACAyMDJAACBuQG2AACBuYG2AABBu4AAQbwAAEG8gACAAEAFAAdAAAAAQACAC8ATwABAAMASQBLAoQAAgAAAAEG3gABAAYC1QLWAucC6ANqA3MAAQAGAE0ATgL8A+kD6wRkAAIAAwGUAZQAAAHfAeEAAQI5Aj8ABAACAAIAqACsAAEBJAEnAAEAAQAMACcAKAArADMANQBGAEcASABLAFMAVABVAAIAAgAUAB0AAAJvAngACgACAAYATQBNAAYATgBOAAQC/AL8AAUD6QPpAAMD6wPrAAIEZARkAAEAAgAEABQAHQAAAoACgAAKAosCiwALBKgErwAMAAIABgAaABoAAAAcABwAAQJkAmkAAgJtAm0ACAJvAngACQJ/An8AEwABABQAGgAcAmQCZQJmAmcCaAJpAm0CfwKAAosEqASpBKoEqwSsBK0ErgSvAAEF3gABBeAAAQXiAAEF5AABBeYAAQXoAAEF6gABBewAAQXuAAEF8AABBfIAAQX0AAEF9gABBfgAAQX6AAIF/AYCAAIGAgYIAAIGCAYOAAIGDgYUAAIGFAYaAAIGGgYgAAIGIAYmAAIGJgYsAAIGLAYyAAIGMgY4AAIGOAY+AAMGPgZEBkoAAwZIBk4GVAADBlIGWAZeAAMGXAZiBmgAAwZmBmwGcgADBnAGdgZ8AAMGegaABoYAAwaEBooGkAAEBo4GlAaaBqAABAacBqIGqAauAAUGqgawBrYGvAbCAAUGvAbCBsgGzgbUAAUGzgbUBtoG4AbmAAUG4AbmBuwG8gb4AAUG8gb4Bv4HBAcKAAUHBAcKBxAHFgccAAUHFgccByIHKAcuAAUHKAcuBzQHOgdAAAUHOgdAB0YHTAdSAAYHTAdSB1gHXgdkB2oABgdiB2gHbgd0B3oHgAAGB3gHfgeEB4oHkAeWAAYHjgeUB5oHoAemB6wABgekB6oHsAe2B7wHwgAGB7oHwAfGB8wH0gfYAAYH0AfWB9wH4gfoB+4ABwguB+YH7AfyB/gH/ggEAAcIJgf6CAAIBggMCBIIGAABAOsACgBFAEYARwBIAEkASgBLAEwATQBOAE8AUABRAFIAUwBUAFUAVgBXAFgAWQBaAFsAXABdAF4AhQCGAIcAiQCKAIsAjQCQAJIAlAC7ALwAvQC+AL8AwADBAMIAwwDEAMUAxgDHAMgAyQDKAMsAzADNAM4A6gDrAOwA7QDuAO8A8ADxAPIA8wD0APUA9gD3APgA+QD6APsA/AD9AP4A/wEAAQEBAgEDAQQBBQEGAQcBMAE0ATYBOAE6ATwBQgFEAUYBSgFNAVoClwKZArUCtgK3ArgCuQK6ArsCvAK9Ar4CvwLAAsECwgLDAsQCxQLGAscCyALJAsoCywLMAs0CzgLPAtAC0gLUAtYC2ALaAtwC3gLgAuIC5ALmAugC6gLsAu4C8ALyAvQC9gL4AvoC/AL/AwEDAwMFAwcDCQMLAw0DDwMRAxQDFgMYAxoDHAMeAyADIgMkAyYDKAMqAywDLgMwAzIDNAM2AzgDOgM8Az4DQQNDA0UDRwNJA7kDugO7A7wDvgO/A8ADwQPCA8MDxAPFA8YDxwPeA98D4APhA+ID4wPkA+UD5gPnA+gD6QPqA+sD7APtA+8D8QPzA/UECgQMBA4EHAQjBCkELwSZBJoEngSiBSMFJQABAPoACAAKABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2ALcAuAC5ALoA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkBLwEzATUBNwE5ATsBQQFDAUUBSQFLAUwBWAFZAbEBtwG8Ab8ClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAqsCrAKtAq4CrwKwArECsgKzArQC0QLTAtUC1wLZAtsC3QLfAuEC4wLlAucC6QLrAu0C7wLxAvMC9QL3AvkC+wL9Av4DAAMCAwQDBgMIAwoDDAMOAxADEwMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNwM5AzsDPQM/A0ADQgNEA0YDSAOhA6IDowOkA6UDpgOnA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPuA/AD8gP0BAkECwQNBCIEKAQuBJgEnQShBSIFJAHWAAIATQHXAAIAUAHYAAMASgBNAdkAAwBKAFAAAQABAEoB1QACAEoB2wACAFgB2gACAFgAAQADAEoAVwCVAAAAAQABAAEAAQAAAAMEwQACAK0C1wACAKkExwACAK0E1AACAKkEwgACAK0C2AACAKkEsQACAKkEyAACAK0EZAACAK0E1QACAKkDRgACAKkDSAACAKkDRwACAKkDSQACAKkEwAACAKkExQACAdQEwwACAK0EsAACAKkC8QACAdQD+wACAKkEzwACAK0DKQACAdQE2gACAK0E3wACAK0E3QACAKoDQAACAKkE4wACAK0ExgACAdQExAACAK0D/AACAKkE0AACAK0DKgACAdQE2wACAK0E4AACAK0E3gACAKoDQQACAKkE5AACAK0EyQACAKkDAgACAdQEywACAK0DBAACAKkDBgACAdQEzQACAK0DHwACAKkDJQACAdQE2AACAK0D8AACAKkE4QACAK0D7gACAKgEygACAKkDAwACAdQEzAACAK0DBQACAKkDBwACAdQEzgACAK0DIAACAKkDJgACAdQE2QACAK0D8QACAKkE4gACAK0D7wACAKgDGQACAKkDGwACAdQE1gACAK0EvAACAKwDGgACAKkDHAACAdQE1wACAK0EvQACAKwDDAACAKkDDgACAdQE0QACAK0EsgACAKgCqgACAKoCtAACAKkEiwACAK0D9AACAKgEjQACAKsEjwACAKoDDQACAKkDDwACAdQE0gACAK0EswACAKgCxQACAKoCzwACAKkEjAACAK0D9QACAKgEjgACAKsEkAACAKoCwgACAKkCwQACAKgEYgACAKsC9gACAKoEuQACAKwEcwACAKkEewACAK0EdQACAKgEdwACAKsEeQACAKoEdAACAKkEfAACAK0EdgACAKgEeAACAKsEegACAKoEgQACAKkEiQACAK0EgwACAKgEhQACAKsEhwACAKoEggACAKkEigACAK0EhAACAKgEhgACAKsEiAACAKoCmwACAKkEOQACAK0CmgACAKgEOwACAKsCnQACAKoEtAACAKwCowACAKkEUQACAK0CogACAKgEUwACAKsEVQACAKoEtgACAKwCpwACAKkEYwACAK0CpgACAKgEYQACAKsC9QACAKoEuAACAKwCtgACAKkEOgACAK0CtQACAKgEPAACAKsCuAACAKoEtQACAKwCvgACAKkEUgACAK0CvQACAKgEVAACAKsEVgACAKoEtwACAKwCxwACAKkEZgACAK0CxgACAKgEaAACAKsCyQACAKoEuwACAKwCzAACAKkEfgACAK0CywACAKgEgAACAKsDMAACAKoEvwACAKwCrAACAKkEZQACAK0CqwACAKgEZwACAKsCrgACAKoEugACAKwCsQACAKkEfQACAK0CsAACAKgEfwACAKsDLwACAKoEvgACAKwE0wADAKoAqQTcAAMAqgCpAAIAEQAlACkAAAArAC0ABQAvADQACAA2ADsADgA9AD4AFABFAEkAFgBLAE0AGwBPAFQAHgBWAFsAJABdAF4AKgCBAIEALACDAIMALQCGAIYALgCJAIkALwCNAI0AMACYAJsAMQDQANAANQAA","Roboto-Medium.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAcGUAAACWEdQT1OYN0PaAAHD7AAAWPxHU1VCm18k/AACHOgAABX2T1MvMpfnsYsAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHBiAAAAAxnbHlml3ag9QAAOswAAYOyaGVhZAiGpEQAAAEcAAAANmhoZWEK9griAAABVAAAACRobXR4QNtY9AAAAfgAABSkbG9jYcJrHvoAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lQmB1PgABvoAAAALmcG9zdP9tAGQAAcFoAAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCDPWGK6FfDzz1ABkIAAAAAADE8BEuAAAAAODgRcT6Jv3VCWEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJbvom/j4JYQABAAAAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQH0AAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/1AAIFsAAAAgAAAAAEdPT0cAQAAA//0GAP4AAGYHmgIAIAABnwAAAAAEOgWwAAAAIAADA4wAZAAAAAAAAAAAAf0AAAH9AAACHgCMAo4AYATTAFYEjABkBeQAZAUhAFUBVwBSAsUAgQLMACcDjAAcBHEAQgHKACICuABQAjkAhgMfAAEEjABoBIwAqgSMAFIEjABOBIwANwSMAH8EjABzBIwARASMAGcEjABdAhwAfwHrADMEEgA+BIAAjwQoAH4D5AA7By0AWwVOABEFDQCUBTkAZgU5AJQEhQCUBGgAlAVzAGsFrQCUAkQApQRyAC8FDgCUBFIAlAb/AJQFrQCUBYMAZQUbAJQFgwBgBQkAlATYAEsE4AAtBTwAgAUqABEHCwAvBQ0AJgTjAAgE0wBQAiwAhQNVABICLAALA24ANgOVAAICkAA4BFAAVgR/AH0ELQBOBIIAUARJAFEC0wArBIkAUgRyAHoCCgB8AgL/qwQsAH0CCgCMBvgAfAR0AHoEigBOBH8AfQSHAFAC1AB9BB4ASQKqAAoEcwB3A/gAFgXwACMEBgAfA+sADAQGAFECqwA4Af0ArwKrABwFTQB1Ah8AhQSCAGcEtQBfBZ4AXARAAA0B+ACJBPkAXAOSAGMGSQBaA5AAjgPjAFcEawB/BkoAWQPaAJ0DDwCBBEoAXAL1AD0C9QA3ApQAbwTBAJMD6gBJAkQAkAITAGwC9QCCA6cAeQPjAF4FygBfBiIAUwZcAGYD5QBGB37//ARCAEwFgQBpBM8AlQTrAIoGwgBIBKQAaASRAEMEhgBOBJEAgQTsAFAFsAAfAhcAkASaAI0EZAAgAlIAIAWXAJAEhgB9B7AAZQc+AFkCBwCJBY0AVQLQ/94FkQBbBJ0ATQWjAIAE5gB3AiX/rgQ5AFcD3gCQA6oAbgPaAJ0DfgB1AgoAgQKqAHgCTAApA84AdwMoAEsCcwCJAAD8kwAA/WIAAPx0AAD9OgAA/AgAAP0eAmsAzQQ7AG4CRACQBHQAmQXCABoFegBcBTUAIASMAGoFrgCZBIwARwX5AEwFsQBGBVkAbASEAFYEyACXBA0AHgSGAFEEZQBiBA8AWQSGAH0EpwB2AqUAowRoABUEGgBnBPwAMASGAIAEMwBQBI4AUAQqADwEXQB/BdEARgXMAFIGlABlBLQAeASH/+EGeQArBf0AJAVTAGcIgQAtCIwAmQZRAC0FpQCPBQcAkAX9ACYHqQAVBNsASQWmAJIFqAAsBQsAMgZfAE4F+ACOBYUAkQeaAJUH+gCVBiEAFQbwAJkFAgCQBUgAYwdiAKEE6AAXBIAAWgSLAI8DWwCDBPIAJwaHACAEFwBOBJIAhARsAI8ElAAgBgIAjwSRAIQEkgCEA/oAIwXUAFMEzwCEBGUAYAaNAIQG8QB9BSEAIAZvAI8EaQCPBDkAUAaCAJIEcAAuBHL/1wQ5AFIG1gAdBuQAhASG/+gEkgCEB1gAiAZqAHIEaP/hBygAmAYCAIYFFgAaBGMACwdLAKwGPQCaBuUAfgXdAIEJKgClB+4AkAQgACgD9QAyBXoAYASIAE0FGAAQBA0AHgV6AGAEhgBOB1QAiAZWAHUHWACIBmoAcgUQAGcERwBdBPsAcAAA/HAAAPx1AAD9gQAA/aYAAPomAAD6UQYgAJIFEwCEBGj/4QUQAJQEhgB9BGsAjwOjAH0E6gCZBCQAfQgjABUG4AAgBckAmQT7AI8FLgCRBKwAjQaUADQFoAA8BiAAlAUHAIQH3QCUBa0AfQhJAJcG7wB9BjcAZwUEAGAFOQAmBEEAHwcoACkFbwAnBfIAkQTcAGAFcACBBHQAdQWFAIkGGwAKBMT/ywUgAJEEeACNBh8ALAUUACAFrQCZBIYAfQYqAJQFEQCEB3UAlAZ0AI8FjQBVBKMAWwSkAF0EwwAsA6oAJAVpACYEcQAfBPkATwbzAGgG2wBfBlEAPQUoAC8EgwBKBEgAcwe8AEIGpAA/B/UAlAaeAHQFBgBcBC8AVQWoACEFHQBEBU4AfQZGACwFOwAgAxsAZAQUAAAIKQAABBQAAAgpAAACuQAAAgoAAAFcAAAEfwAAAjAAAAGiAAABAAAAANEAAAAAAAACtwBQArcAUAUjAJwGKgB7A5oACAG/AGUBugA3Ac4ANQGjAEsDCwBtAxMAQwMAADUEWwA/BJoAXQLMAIoD/QCNBaoAjQHPAF4HrgBQAnQAbAJpAFUDmQArAvUATAL1ADYC9QBQAvUATgL1ADcC9QBLAvUARwM5AFAC8wBQAvMAUAIDAFMCAwBQA1wAZwL1AEwC9QCCAvUAPQL1ADcC9QA2AvUAUAL1AE4C9QA3AvUASwL1AEcDOQBQAvMAUALzAFACAwBTAgMAUAS1AGIGbgAjBr8AmQiVAJQGOwAjBpsAfQSMAFwF6gAjBC0AKgSbACQFYgBPBX4AKwXkAG4D4wBFCCkAkAUIAG8FFACWBjcAXAbeAFYG0ABeBqwAXASTAGEFigCmBN4APwSAAJwEnQA7CFIAYQIy/6cEkQBlBIAAjwQSAD0EKAB9BA4AJQJRAJwCjgBkAekARwUZACsErQAaBL0AKwcoACsHKAArBQ8AKwa3AEkAAAAACDAAWQg1AFwC9QA9AvUAggL1AEwEHQBPBB0AVwQdADgEHQBfBB0AZgQdADMEHQA9BB0AQwQdAJgEHQBYBCsAQQQ+AAYEXAATBgkAJwR5AAgEiABpBD8AJQQ3AD8EZAB1BL0ATQRrAHYEvQBOBNwAdgYFAHYDtwB2BF4AdgPWACYB/gCGBN0AdgSnAFYDyAB2BDcAPwRoADoDpQAKA7wAdgR5AAgEvQBOBHkACAOdAEYE2QB2BB4ARAWmAE8FWABPBOAAXgWSACMEgABPB1YAJAdYAHYFmQAlBNgAdgRyAHYFXgAnBkUAGwRGAEME4gB2BF0AdgTLACQETAAfBWIAdgSNAEMGhAB2Bw4AdgVhAAkGFgB2BGcAdgSAAD0GjwB2BIQAQgQoAAsGowAbBKAAdgUNAHYFdAAhBfgATgRWAAYExAATBpcAIwSNAEMEjQB2BgAADgTOAE0ERwBDBL0ATgRoADoD9ABFCC0AdgT0ACgC9QA3AvUANgL1AFAC9QBOAvUANwL1AEsC9QBHA7YAjQKuAJgD4AB2BDoADAS2AFYFQQCZBSgAmQQwAIEFNQCZBCgAgQR6AHYEgABPBGAAdgSaAAgB/gCQA6EAdQAA/J4D9wB6A/r/UQQLAHkD+gB5A7wAdgOdAHUDnQB1AvUATAL1ADYC9QBQAvUATgL1ADcC9QBLAvUARwVzAGkFngBpBX8AmQXZAGkF2gBpBCgAlgSCAGsEWAAPBLsANARrAGcELgBCA6EAdgG6AGIGmABOBK8AbgIM/6cEjAA4BIwAaASMACwEjABiBIwAXwSMADQEjABsBIwAWQSMAGcEjADmAib/rgIl/64CFwCQAhf/+gIXAJAEYAB2BOYAYAQwADkEiAB9BD4ATwSVAE4EkQBOBJ0ASQSSAH0EmgBOBEkAUQSJAFAEWQA0A60AYQUMAF8DxAAFBkb/7AQHAHYEvQBOBQ4ANATcAHYB/QAAArgAUAVXABcFVwAXBJD/9QTgAC0Cqv/rBU4AEQVOABEFTgARBU4AEQVOABEFTgARBU4AEQU5AGYEhQCUBIUAlASFAJQEhQCUAkT/ywJEAKUCRP/KAkT/vgWtAJQFgwBlBYMAZQWDAGUFgwBlBYMAZQU8AIAFPACABTwAgAU8AIAE4wAIBFAAVgRQAFYEUABWBFAAVgRQAFYEUABWBFAAVgQtAE4ESQBRBEkAUQRJAFEESQBRAhf/tQIXAJACF/+zAhf/qAR0AHoEigBOBIoATgSKAE4EigBOBIoATgRzAHcEcwB3BHMAdwRzAHcD6wAMA+sADAVOABEEUABWBU4AEQRQAFYFTgARBFAAVgU5AGYELQBOBTkAZgQtAE4FOQBmBC0ATgU5AGYELQBOBTkAlAUYAFAEhQCUBEkAUQSFAJQESQBRBIUAlARJAFEEhQCUBEkAUQSFAJQESQBRBXMAawSJAFIFcwBrBIkAUgVzAGsEiQBSBXMAawSJAFIFrQCUBHIAegJE/7QCF/+dAkT/0QIX/7sCRP/dAhf/xgJEABgCCv//AkQAnwa1AKUECwB8BHIALwIl/64FDgCUBCwAfQRSAJQCCgCMBFIAlAIKAFkEUgCUAqAAjARSAJQC5gCMBa0AlAR0AHoFrQCUBHQAegWtAJQEdAB6BHT/owWDAGUEigBOBYMAZQSKAE4FgwBlBIoATgUJAJQC1AB9BQkAlALUAFIFCQCUAtQANwTYAEsEHgBJBNgASwQeAEkE2ABLBB4ASQTYAEsEHgBJBNgASwQeAEkE4AAtAqoACgTgAC0CqgAKBOAALQLSAAoFPACABHMAdwU8AIAEcwB3BTwAgARzAHcFPACABHMAdwU8AIAEcwB3BTwAgARzAHcHCwAvBfAAIwTjAAgD6wAMBOMACATTAFAEBgBRBNMAUAQGAFEE0wBQBAYAUQd+//wGwgBIBYEAaQSGAE4Eev+lBHr/pQQ/ACUEmgAIBJoACASaAAgEmgAIBJoACASaAAgEmgAIBIAATwPgAHYD4AB2A+AAdgPgAHYB/v+pAf4AhgH+/6cB/v+cBNwAdgS9AE4EvQBOBL0ATgS9AE4EvQBOBIgAaQSIAGkEiABpBIgAaQQ+AAYEmgAIBJoACASaAAgEgABPBIAATwSAAE8EgABPBHoAYQPgAHYD4AB2A+AAdgPgAHYD4AB2BKcAVgSnAFYEpwBWBKcAVgTdAHYB/v+RAf7/rwH+/7oB/gAXAf4AfQPWACYEXgB2A7cAdgO3AHYDtwB2A7cAdgTcAHYE3AB2BNwAdgS9AE4EvQBOBL0ATgRkAHUEZAB1BGQAdQQ3AD8ENwA/BDcAPwQ3AD8EPwAlBD8AJQQ/ACUEiABpBIgAaQSIAGkEiABpBIgAaQSIAGkGCQAnBD4ABgQ+AAYEKwBBBCsAQQQrAEEFTgARBOn/QgYR/0oCqP9OBZf/tAVH/0EFbf/CAqX/hQVOABEFDQCUBIUAlATTAFAFrQCUAkQApQUOAJQG/wCUBa0AlAWDAGUFGwCUBOAALQTjAAgFDQAmAkT/vgTjAAgEhABWBGUAYgSGAH0CpQCjBF0AfwSaAI0EigBOBMEAkwP4ABYEWQA0AqX/wwRdAH8EigBOBF0AfwaUAGUEhQCUBHQAmQTYAEsCRAClAkT/vgRyAC8FKACZBQ4AlAULADIFTgARBQ0AlAR0AJkEhQCUBaYAkgb/AJQFrQCUBYMAZQWuAJkFGwCUBTkAZgTgAC0FDQAmBFAAVgRJAFEEkgCEBIoATgR/AH0ELQBOA+sADAQGAB8ESQBR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ALoAuwABAL8AvwABAMEAwQABAMMAxAABAMcAxwABAMsAywABAM0AzgABANAA0QABANMA0wABANoA3gABAOEA4QABAOUA5QABAOcA6QABAOsA+wABAP0A/QABAP8BAQABAQMBAwABAQgBCQABARYBGgABARwBHAABASABIgABASQBJwADASoBKwABATMBNAABATYBNgABATsBPAABAUEBRAABAUcBSAABAUsBTQABAVEBUQABAVQBWAABAV0BXgABAWIBYgABAWQBZAABAWgBaAABAWoBbAABAW4BbgABAXABcAABAdUB2wACAewCAAABAgQCBAABAg0CDQABAg8CDwABAhYCGAABAhoCGwABAh0CHQABAiECIQABAiMCJQABAisCKwABAjACMgABAjQCNAABAkICQgABAkUCRQABAkcCRwABAkoCTQABAnkCfQABAo0CkgABApUC/QABAwADvwABA8EDwQABA8MDzQABA88D2AABA9oD9QABA/kD+QABA/sEAgABBAQEBgABBAkEDQABBA8EmgABBJ0EngABBKAEoQABBKMEpgABBLAFDAABBQ4FGAABBRsFKAABAAEAAwAAABAAAAAWAAAAIAABAAEArQACAAEAqACsAAAAAgACAKgArAAAASQBJwAFAAEAAAAWADAACgAFAEYATgBYAGIAbAAEREZMVABqY3lybABuZ3JlawBybGF0bgB2AAVjcHNwAGBrZXJuAGxrZXJuAGZrZXJuAHRrZXJuAHwAAQAAAAEAZAACAAgAAgEyCAgAAgAIAAIAzAQuAAIACAACAjIP/AACAAgAAgBIAIAATgAAAFQAAABaAAAAYAAAAAAAAQAAAAAAAQAEAAAAAgAEAAMAAAACAAQAAQAAAAIABAACAAEriAAFACQASAABGRIABAAAAAMZBhkcGQwAAP//AAIAAAACAAD//wACAAAAAwAA//8AAgAAAAQAAP//AAIAAAABAAIZDgAEAAAZVBt4AAQABQAA/68AAAAA/4gAAP8sAAAAAAAAAAAAAAAAAAAAAAAA/4gAAAAAAAAAARv2AAQAAAApGXwZihlKGtgZ2BmmGgQZtBnuGlYafBj+GcYZBByiGRYdBBukGqoZChkQHWoZVBoaGgQZphxMGgQZXhloGaYZmBsKHEwaNBxMGRYZchnGGXIZpgABLvAABAAAAIUeQh4I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AVAADgFRAA8BXQAOAWL/5gFk/+YBZgAOAWz/5gFt/+cBbwAOAXAADwPQAAsD0QAPA9z/5gPdAA4EBf/mBA3/5gQQAA4EEwAPBBUADwQeAA4ELgALBDAACwQyAAsENP/lBDX/6ASS/+YElP/lBJX/6ASh/+YAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQAAwHv//UB8P/uA5v/9QADAA3/5gBB//QAYf/vAAMASv/uAFv/6gHw//AAAwBb/8EB///mAkv/6AADAEoAEQBYADIAWwARAAMAW//lAf//6wJL/+0AOwCyABAA0v/gANP/6ADUABAA1v/gANkAFADdABAA4f/hAOb/4ADtABMA8gAQAPn/4AEEABABCP/oAQ0AEAEX/+gBGf/gARv/6AEd/+gBH//oASH/6AE5/+ABQf/oAUX/4AFH/+EBSP/gAUn/4QFK/+ABTf/hAVAAEAFRABABWP/pAWL/3wFk/94BZgAQAWr/6AFs/98Bbv/yAW8AEAFwABAD0QAQA9j/6APb/+gD3P/gBAX/4AQI/+gEC//oBA3/3wQTABAEFQAQBCb/6AQo/+gEKv/oBDT/4QQ1/+AEkv/gBJT/4QSV/+AEof/fAAQAWP/vAFv/3wCa/+4B8P/NAAQADQAUAEEAEQBW/+IAYQATAAUAOP/RAyn/0QMr/9EDLf/RBNr/0QAFACP/vABY/+8AW//fAJr/7gHw/80ABQBb/7MB8P95AfX/8QH///ECS//zAAUADQAPAEEADABW/+sAYQAOAkv/6QAGABD/hAAS/4QBhv+EAYr/hAGO/4QBj/+EAAgABP/RAFb/uQBb/8sAbf76AHz/QgCB/0kAhv+ZAIn/oQAJAe3/7gHv//UB8P/xAfL/8gNn/+4Dk//yA5v/9QOc/+4Dnf/uAAkB7f/lAe//8QHw/+sB8v/pA2f/5QOT/+kDm//xA5z/5QOd/+UAAQCFAAQADAA/AF8AlgCdALIA0gDUANUA1gDXANgA2QDaANsA3ADdAN4A4ADhAOIA4wDkAOUA5gDnAOgA6QDqAOsA7ADtAO4A7wDxAPYA9wD4APsA/AD+AP8BAAEDAQQBBQEKAQ0BGAEZARoBIgEuAS8BMAEzATQBNQE3ATkBOwFDAUQBVAFWAVgBXAFdAV4BhQPJA8sDzAPOA88D0APRA9ID0wPWA9cD2APaA9sD3APdA94D3wPhA+ID5APlA+YD5wPtBAEEBQQGBAsEDQQOBA8EEAQRBBIEEwQUBBUEFgQaBBwEHQQeBB8EJgQnBCsELQQuBC8EMAQxBDIEMwSSBJYElwSaBJwEnQSfBKEARAAGAA0ACwANAO3/tQDy/74A9/+2AQP/tgEE/74BGP/aARoACwEc/+YBHv+2ASAADAEi/7YBQv+2AVH/vgFg/7YBYf+2AWMACwFlAAsBa/+2AXD/vgGEAA0BhQANAYcADQGIAA0BiQANAgX/vwIOAA4CD//tAhIADgIqAA4CK//tAiwADQIuAA4CNP/tA97/8APf/7YD4f/aA+P/tgPkAAsD5v+2A+0ACwP2AA0D9wANA/oADQQB/7YEBgALBAf/tgQM/7YEDgALBBT/8AQW//AEGv+2BBz/tgQd/7YEJ//aBCn/tgQr/9oELwALBDEACwQzAAsEOP+2BQX/vwUM/+0FD//tBRAADgUU/+0FFQANAEUA0v8zANT/9QDW/zMA2v/wAN3/9QDe/+sA4f/mAOb/wgDs/+8A8P/vAPH/7wDz/+8A9P/vAPX/7wD2/84A+P/vAPr/7wD7/+8A/v/vAQD/7wEF/+8BGf/IASv/7wEz//ABNv/vATn/MwE6/80BPP/vAT7/7wFD//ABRf8zAUf/5gFJ/+YBTP/fAVD/9QFT/+8BVf/vAVf/7wFc/+8BXf/wAWL/0AFk/+sBZv/1AWz/nwFt/9ABb//1A9D/6wPc/zMD3f/wA+D/7wPi/+8D5//vA+z/7wQC/+8EBf/IBA3/rAQQ//AEHv/wBCP/7wQl/+8ELv/rBDD/6wQy/+sENP/mBDf/7wSS/zMElP/mBJf/7wSh/6wARgDS/+YA1v/mANr/8gDe/+4A4f/oAOb/5gDs//EA7v/xAPD/8QDx//EA8//xAPT/8QD1//EA9v/QAPj/8QD6//EA+//xAP7/8QEA//EBBf/xARn/5wEr//EBM//yATT/8QE2//EBOf/mATr/zgE8//EBPv/xAUP/8gFE//EBRf/mAUf/6AFJ/+gBU//xAVX/8QFX//EBXP/xAV3/8gFe//EBYv/nAWT/7QFs/+YBbf/QA9D/7gPc/+YD3f/yA+D/8QPi//ED5f/xA+f/8QPs//EEAv/xBAX/5wQN/+cEEP/yBBH/8QQe//IEH//xBCP/8QQl//EELv/uBDD/7gQy/+4ENP/oBDf/8QSS/+YElP/oBJf/8QSh/+cADwAK/+IADQAUAA7/zwBBABIASv/qAFb/2ABY/+oAYQATAG3/rgB8/80Agf+gAIb/wQCJ/8ABjf/TAkv/zQAQADj/uwA6/+0APf/QArT/0AMp/7sDK/+7Ay3/uwM9/9ADP//QA/T/0ASL/9AEjf/QBI//0ATa/7sE3f/tBN//7QAQAC7/7gA5/+4CsP/uArH/7gKy/+4Cs//uAwD/7gMv/+4DMf/uAzP/7gM1/+4DN//uAzn/7gR9/+4Ef//uBNz/7gAQAC7/7AA5/+wCsP/sArH/7AKy/+wCs//sAwD/7AMv/+wDMf/sAzP/7AM1/+wDN//sAzn/7AR9/+wEf//sBNz/7AARADoAFAA7ABkAPQAWArQAFgM7ABkDPQAWAz8AFgPuABkD8AAZA/IAGQP0ABYEiwAWBI0AFgSPABYE3QAUBN8AFAThABkAEwBT/+gBhQAJAsb/6ALH/+gCyP/oAsn/6ALK/+gDFP/oAxb/6AMY/+gEZv/oBGj/6ARq/+gEbP/oBG7/6ARw/+gEcv/oBHr/6AS7/+gAFQAG//IAC//yAFr/8wBd//MBhP/yAYX/8gGH//IBiP/yAYn/8gLP//MC0P/zAz7/8wP1//MD9v/yA/f/8gP6//IEjP/zBI7/8wSQ//ME3v/zBOD/8wBRAAb/ugAL/7oA0v8zANb/MwDa//EA3v/rAOH/5QDm/8MA7P/uAO7/1wDw/+4A8f/uAPP/7gD0/+4A9f/uAPb/zAD4/+4A+v/uAPv/7gD+/+4BAP/uAQX/7gEZ/8cBK//uATP/8QE0/9cBNv/uATn/MwE6/8kBPP/uAT7/7gFD//EBRP/XAUX/MwFH/+UBSf/lAUz/3wFT/+4BVf/uAVf/7gFc/+4BXf/xAV7/1wFi/9ABZP/rAWz/oAFt/80BhP+6AYX/ugGH/7oBiP+6AYn/ugPQ/+sD3P8zA93/8QPg/+4D4v/uA+X/1wPn/+4D7P/uA/b/ugP3/7oD+v+6BAL/7gQF/8cEDf+rBBD/8QQR/9cEHv/xBB//1wQj/+4EJf/uBC7/6wQw/+sEMv/rBDT/5QQ3/+4Ekv8zBJT/5QSX/+4Eof+rACIAOP/ZADr/5AA7/+wAPf/dAgUADgJNAA4CtP/dAyn/2QMr/9kDLf/ZAzv/7AM9/90DP//dA00ADgNOAA4DTwAOA1AADgNRAA4DUgAOA1MADgNoAA4DaQAOA2oADgPu/+wD8P/sA/L/7AP0/90Ei//dBI3/3QSP/90E2v/ZBN3/5ATf/+QE4f/sAFsABv/KAAv/ygDS/9IA1v/SANr/9ADe/+0A4f/hAOb/1ADs/+IA7v/vAPD/4gDx/+IA8//iAPT/4gD1/+IA9v/JAPj/4gD6/+IA+//iAP7/0QEA/+IBBf/iAQn/5QEZ/9QBGv/mASD/4wEr/+IBM//0ATT/7wE2/+IBOf/SATr/xAE8/+IBPv/iAUP/9AFE/+8BRf/SAUf/4QFJ/+EBU//iAVX/4gFX/+IBXP/iAV3/9AFe/+8BYv/UAWP/9QFk/+cBbP+qAW3/yQGE/8oBhf/KAYf/ygGI/8oBif/KA9D/7QPc/9ID3f/0A+D/4gPi/+ID5P/mA+X/7wPn/+ID7P/iA+3/5gP2/8oD9//KA/r/ygQC/+IEBf/UBAb/5gQN/9MEDv/mBBD/9AQR/+8EHv/0BB//7wQj/+IEJf/iBC7/7QQv/+YEMP/tBDH/5gQy/+0EM//mBDT/4QQ3/+IEkv/SBJT/4QSX/+IEof/TACkAR//sAEj/7ABJ/+wAS//sAFX/7ACU/+wAmf/sArz/7AK9/+wCvv/sAr//7ALA/+wC2P/sAtr/7ALc/+wC3v/sAuD/7ALi/+wC5P/sAub/7ALo/+wC6v/sAuz/7ALu/+wC8P/sAvL/7ARS/+wEVP/sBFb/7ARY/+wEWv/sBFz/7ARe/+wEYP/sBHT/7AR2/+wEeP/sBHz/7AS3/+wExP/sBMb/7AA2AAYAEAALABAADQAUAEEAEgBH/+gASP/oAEn/6ABL/+gAVf/oAGEAEwCU/+gAmf/oAYQAEAGFABABhwAQAYgAEAGJABACvP/oAr3/6AK+/+gCv//oAsD/6ALY/+gC2v/oAtz/6ALe/+gC4P/oAuL/6ALk/+gC5v/oAuj/6ALq/+gC7P/oAu7/6ALw/+gC8v/oA/YAEAP3ABAD+gAQBFL/6ARU/+gEVv/oBFj/6ARa/+gEXP/oBF7/6ARg/+gEdP/oBHb/6AR4/+gEfP/oBLf/6ATE/+gExv/oAEoAR/+0AEj/tABJ/7QAS/+0AEwAFABPABQAUAAUAFP/egBV/7QAV/9kAFsACwCU/7QAmf+0Adv/ZAK8/7QCvf+0Ar7/tAK//7QCwP+0Asb/egLH/3oCyP96Asn/egLK/3oC2P+0Atr/tALc/7QC3v+0AuD/tALi/7QC5P+0Aub/tALo/7QC6v+0Auz/tALu/7QC8P+0AvL/tAMU/3oDFv96Axj/egMg/2QDIv9kAyT/ZAMm/2QDKP9kBFL/tARU/7QEVv+0BFj/tARa/7QEXP+0BF7/tARg/7QEZv96BGj/egRq/3oEbP96BG7/egRw/3oEcv96BHT/tAR2/7QEeP+0BHr/egR8/7QEt/+0BLv/egTE/7QExv+0BMgAFATKABQEzAAUBNn/ZAABAPQABAAGAAsADAAlACcAKAApACoALwAwADMANAA1ADYAOAA6ADsAPAA9AD4APwBJAEoATABPAFEAUgBTAFYAWABaAFsAXQBfAJYAnQCyAYQBhQGHAYgBiQHyAfQB9QH3AfoCBQJKAk0CXwJhAmIClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCqwKsAq0CrgKvArQCvQK+Ar8CwALFAsYCxwLIAskCygLPAtAC0QLTAtUC1wLZAtsC3QLfAuEC4gLjAuQC5QLmAucC6ALpAuoC9AMCAwQDBgMIAwoDDQMPAxEDEgMTAxQDFQMWAxcDGAMaAxwDHgMpAysDLQM7Az0DPgM/A0ADQgNEA0oDSwNMA00DTgNPA1ADUQNSA1MDXgNfA2ADYQNiA2gDaQNqA28DgQOCA4MDhAOIA4kDigOTA+4D8APyA/QD9QP2A/cD+gP8A/0EOQQ7BD0EPwRBBEMERQRHBEkESwRNBE8EUQRSBFMEVARVBFYEVwRYBFkEWgRbBFwEXQReBF8EYARlBGYEZwRoBGkEagRrBGwEbQRuBG8EcARxBHIEegSLBIwEjQSOBI8EkASzBLQEtgS6BLsEvQTDBMUEyATJBMsEzQTQBNIE0wTUBNcE2gTdBN4E3wTgBOEE4wABADUABgALAJYAsQCyALMAtAC9AMEAxwGEAYUBhwGIAYkCBQIGAgcDoQOiA6MDpAOlA6YDqQOqA6sDrAOtA64DrwOwA7EDsgOzA7QDtQO2A7cDuAO7A78DwQPFA/YD9wP6BOUE5gTqBO0E8wT4AKcAEP8HABL/BwAl/04ALv8NADgAFABF/94AR//rAEj/6wBJ/+sAS//rAFP/6wBV/+sAVv/mAFn/6gBa/+gAXf/oAJT/6wCZ/+sAm//qALL/TgGG/wcBiv8HAY7/BwGP/wcCBf/AAk3/wAKa/04Cm/9OApz/TgKd/04Cnv9OAp//TgKg/04Ctf/eArb/3gK3/94CuP/eArn/3gK6/94Cu//eArz/6wK9/+sCvv/rAr//6wLA/+sCxv/rAsf/6wLI/+sCyf/rAsr/6wLL/+oCzP/qAs3/6gLO/+oCz//oAtD/6ALR/04C0v/eAtP/TgLU/94C1f9OAtb/3gLY/+sC2v/rAtz/6wLe/+sC4P/rAuL/6wLk/+sC5v/rAuj/6wLq/+sC7P/rAu7/6wLw/+sC8v/rAwD/DQMU/+sDFv/rAxj/6wMpABQDKwAUAy0AFAMw/+oDMv/qAzT/6gM2/+oDOP/qAzr/6gM+/+gDTf/AA07/wANP/8ADUP/AA1H/wANS/8ADU//AA2j/wANp/8ADav/AA/X/6AP9/04D/v/eBDn/TgQ6/94EO/9OBDz/3gQ9/04EPv/eBD//TgRA/94EQf9OBEL/3gRD/04ERP/eBEX/TgRG/94ER/9OBEj/3gRJ/04ESv/e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AK0E3wACAK0E3QACAKoDQAACAKkE4wACAK0ExgACAdQExAACAK0D/AACAKkE0AACAK0DKgACAdQE2wACAK0E4AACAK0E3gACAKoDQQACAKkE5AACAK0EyQACAKkDAgACAdQEywACAK0DBAACAKkDBgACAdQEzQACAK0DHwACAKkDJQACAdQE2AACAK0D8AACAKkE4QACAK0D7gACAKgEygACAKkDAwACAdQEzAACAK0DBQACAKkDBwACAdQEzgACAK0DIAACAKkDJgACAdQE2QACAK0D8QACAKkE4gACAK0D7wACAKgDGQACAKkDGwACAdQE1gACAK0EvAACAKwDGgACAKkDHAACAdQE1wACAK0EvQACAKwDDAACAKkDDgACAdQE0QACAK0EsgACAKgCqgACAKoCtAACAKkEiwACAK0D9AACAKgEjQACAKsEjwACAKoDDQACAKkDDwACAdQE0gACAK0EswACAKgCxQACAKoCzwACAKkEjAACAK0D9QACAKgEjgACAKsEkAACAKoCwgACAKkCwQACAKgEYgACAKsC9gACAKoEuQACAKwEcwACAKkEewACAK0EdQACAKgEdwACAKsEeQACAKoEdAACAKkEfAACAK0EdgACAKgEeAACAKsEegACAKoEgQACAKkEiQACAK0EgwACAKgEhQACAKsEhwACAKoEggACAKkEigACAK0EhAACAKgEhgACAKsEiAACAKoCmwACAKkEOQACAK0CmgACAKgEOwACAKsCnQACAKoEtAACAKwCowACAKkEUQACAK0CogACAKgEUwACAKsEVQACAKoEtgACAKwCpwACAKkEYwACAK0CpgACAKgEYQACAKsC9QACAKoEuAACAKwCtgACAKkEOgACAK0CtQACAKgEPAACAKsCuAACAKoEtQACAKwCvgACAKkEUgACAK0CvQACAKgEVAACAKsEVgACAKoEtwACAKwCxwACAKkEZgACAK0CxgACAKgEaAACAKsCyQACAKoEuwACAKwCzAACAKkEfgACAK0CywACAKgEgAACAKsDMAACAKoEvwACAKwCrAACAKkEZQACAK0CqwACAKgEZwACAKsCrgACAKoEugACAKwCsQACAKkEfQACAK0CsAACAKgEfwACAKsDLwACAKoEvgACAKwE0wADAKoAqQTcAAMAqgCpAAIAEQAlACkAAAArAC0ABQAvADQACAA2ADsADgA9AD4AFABFAEkAFgBLAE0AGwBPAFQAHgBWAFsAJABdAF4AKgCBAIEALACDAIMALQCGAIYALgCJAIkALwCNAI0AMACYAJsAMQDQANAANQAA","Roboto-MediumItalic.ttf":"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BGH/0QQI//YGcP+qBHwACgTmAAoFSgBgBcoAPgQ/AGwEn/+iBmUAYgRqAFsEagAJBdIAOwSpADIEJgAOBJwANARGAAcD1gAeB+8ACQTO/9oC3v/1At7/8wLeAAsC3gAWAt4AJQLeAAUC3gA0A5kAkQKaAQgDwgAJBBr/hwSSADsFGQArBQAAKwQQABQFDQArBAkAFARXAAkEXgA5BD8ACQR2/5oB7wDoA4UBBAAA/ScD2QDcA9sAFgPsANwD3ADbA58ACQOBAQQDgQEFAugAiQLoAGYC6AB+AugAiQLoAJgC6AB4AugApwVKAGwFcwBrBVUAKwWsAG4FrgBtBAkAqwRfABwEN/+BBJf/0QRJ/9gEDgAxA4UBBQGt/7gGZgA7BIsARQH8/wAEc/+pBHP/2QRz/8kEcwATBHMATARzACIEcwBXBHMAMQRzADcEcwD4Ah//BAIf/wQCEQAjAhH/fAIRACMEPwAJBMEATAQQAFYEZgAQBB4ANgRyADcEbgAtBHoAMgRv/8gEdwA2BCgAOgRmAC4EOP+fA5sAqwTmACQDp//vBhX/fgPoAAkEmf/bBOcAIgS2AAkB+AAAAqMAQAUvACAFLwAgBG4AKwS6AJ0Clv/lBSX/owUl/6MFJf+jBSX/owUl/6MFJf+jBSX/owURAF8EYwAmBGMAJgRjACYEYwAmAjIANwIyADcCMgA3AjIANwWBACYFWQBiBVkAYgVZAGIFWQBiBVkAYgUUAFgFFABYBRQAWAUUAFgEvQChBC8AHAQvABwELwAcBC8AHAQvABwELwAcBC8AHAQNADcEKAA6BCgAOgQoADoEKAA6AgcAIwIHACMCBwAjAgcAIwRSAA0EZwA4BGcAOARnADgEZwA4BGcAOARRAEoEUQBKBFEASgRRAEoDzf+8A83/vAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAURAF8EDQA3BREAXwQNADcFEQBfBA0ANwURAF8EDQA3BREAJgT1ADgEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BUkAZgRm//kFSQBmBGb/+QVJAGYEZv/5BUkAZgRm//kFgQAmBFAADQIyADcCBwATAjIANwIHACMCMgA3AgcAIwIy/44B+v91AjIANwaCADcD7AAgBE8ABAIV/wQE5wAmBAwAEQQxACYB+gAgBDEAJgH6/6YEMQAmApAAIAQxACYC1gAgBYEAJgRSAA0FgQAmBFIADQWBACYEUgANBFIADQVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOATiACYCvgARBOIAJgK+/58E4gAmAr4AEQS0ACYD/wAbBLQAJgP/ABsEtAAmA/8AGwS0ACYD/wAbBLQAJgP/ABsEugCdApYAPwS6AJ0ClgA/BLoAnQK+AD8FFABYBFEASgUUAFgEUQBKBRQAWARRAEoFFABYBFEASgUUAFgEUQBKBRQAWARRAEoG1QC1BcIAeQS9AKEDzf+8BL0AoQSu/+UD6P/mBK7/5QPo/+YErv/lA+j/5gdF/40GjgAOBVcAFgRjACoEV/+WBFf/lgQeAGMEdv+aBHb/mgR2/5oEdv+aBHb/mgR2/5oEdv+aBF4AOQPCAAkDwgAJA8IACQPCAAkB7wAaAe8AGgHvABoB7wAaBLYACQSZADsEmQA7BJkAOwSZADsEmQA7BGYAOARmADgEZgA4BGYAOAQeAGwEdv+aBHb/mgR2/5oEXgA5BF4AOQReADkEXgA5BFcACQPCAAkDwgAJA8IACQPCAAkDwgAJBIMAPwSDAD8EgwA/BIMAPwS3AAkB7wAOAe8AGgHvABoB+f+XAe8AGgO5//MEPAAJA5sACQObAAkDmwAJA5sACQS2AAkEtgAJBLYACQSZADsEmQA7BJkAOwRDAAkEQwAJBEMACQQWAA8EFgAPBBYADwQWAA8EHgBjBB4AYwQeAGMEZgA4BGYAOARmADgEZgA4BGYAOARmADgF2gCLBB4AbAQeAGwEC//WBAv/1gQL/9YFJf+jBMf/ugXl/8IClv/GBW0AJgUh/7gFRAAeApAACQUl/6ME5gAmBGMAJgSu/+UFgQAmAjIANwTnACYGyQAmBYEAJgVZAGIE9AAmBLoAnQS9AKEE5v/AAjIANwS9AKEEYQA7BEMAKARjABECkABmBDwAVwR3ACEEZwA4BJ3/3gPaAGQEOP+fApAARAQ8AFcEZwA4BDwAVwZhAFIEYwAmBFIAKwS0ACYCMgA3AjIANwRPAAQFAAArBOcAJgTkAJkFJf+jBOYAJgRSACsEYwAmBXoAJQbJACYFgQAmBVkAYgWCACsE9AAmBREAXwS6AJ0E5v/ABC8AHAQoADoEbwAXBGcAOARd/8gEDQA3A83/vAPo/7oEKAA6A0EAFgP/ABsB+gAgAgcAIwHy/wIESgAiA83/vAbVALUFwgB5BtUAtQXCAHkG1QC1BcIAeQS9AKEDzf+8AUwAkQJ6AJ0EGwAzAhX/BAGtAI0GyQAmBsMADwUl/6MELwAcBGMAJgV6ACUEKAA6BG8AFwWFAHYFnwA/BPEAqAPuAHUINAA4CSYAYgS2AB8D+AAXBREAXwQNADcEvQChA+0AdQIyADcHbv+kBlX/sAIyADcFJf+jBC8AHAUl/6MELwAcB0X/jQaOAA4EYwAmBCgAOgViAEsEGQA0BBkANAdu/6QGVf+wBLYAHwP4ABcFegAlBG8AFwV6ACUEbwAXBVkAYgRnADgFUABhBGUANAVQAGEEZQA0BSAASAQZACAE5ACZA83/vATkAJkDzf+8BOQAmQPN/7wFWgDEBEMAbQbFACwGSAAjBF8AOAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHAUl/6MELwAcBSX/owQvABwFJf+jBC8AHARjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoEYwAmBCgAOgRjACYEKAA6BGMAJgQoADoCMgA3AgcAIwIy//8B+v/jBVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgFWQBiBGcAOAVZAGIEZwA4BVkAYgRnADgFZgBcBHoANAVmAFwEegA0BWYAXAR6ADQFZgBcBHoANAVmAFwEegA0BRQAWARRAEoFFABYBFEASgV3AFgEwABKBXcAWATAAEoFdwBYBMAASgV3AFgEwABKBXcAWATAAEoEvQChA83/vAS9AKEDzf+8BL0AoQPN/7wEff/0BLoAnQPbAFQFWgDEBEMAbQRSACsDQQAWBewAVQSg//IEUAANBNsAJATbACQEUgAAA0H/xwUUAD8EJAAoBL0AoQPtAFIE5v/AA+j/ugRDACgERv/CBgQAfARpAA0EaQAmBGkADQRpAFgEfQBxBJEASwR9AIwEkQBzBUkAZgRm//kFgQAmBFIADQUl/6MELwAcBGMAJgQoADoCMv/PAgf/gAVZAGIEZwA4BOIAJgK+AAwFFABYBFEASgTI/4UE5gAmBF0AEAURACYEXwA4BREAJgRfADgFgQAm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BiYB7QAAAAcARACXAB7///+j/lgEqwWwBiYAJQAAAQcApAFrAAMAC7YDDgUBATlWACs0AP//ABz+XQPRBFAGJgBFAAABBwCkAKYACAALtgI7MQAATVYAKzQA//8AJv5fBLwFsAYmACkAAAEHAKQBMAAKAAu2BBACAABDVgArNAD//wA6/lUD8ARRBiYASQAAAQcApAD9AAAAC7YBLAAAAE1WACs0AP///5r+VQQBBI0GJgJNAAAABwCkAQ8AAP//AAn+XQP7BI0GJgJCAAAABwCkAOAACP///+P+nwHKBDoGJgCNAAABBwCtA0IACgAOtAEHAgEBuP9/sFYAKzQAAAAAABEA0gADAAEECQAAAF4AAAADAAEECQABABoAXgADAAEECQACAAwAeAADAAEECQADACgAhAADAAEECQAEACgAhAADAAEECQAFACYArAADAAEECQAGACYA0gADAAEECQAHAEAA+AADAAEECQAIAAwBOAADAAEECQAJACYBRAADAAEECQALABQBagADAAEECQAMABQBagADAAEECQANAFwBfgADAAEECQAOAFQB2gADAAEECQAQAAwCLgADAAEECQARABoCOgADAAEECQAZAAwCLgBDAG8AcAB5AHIAaQBnAGgAdAAgADIAMAAxADEAIABHAG8AbwBnAGwAZQAgAEkAbgBjAC4AIABBAGwAbAAgAFIAaQBnAGgAdABzACAAUgBlAHMAZQByAHYAZQBkAC4AUgBvAGIAbwB0AG8AIABNAGUAZABpAHUAbQBJAHQAYQBsAGkAYwBSAG8AYgBvAHQAbwAgAE0AZQBkAGkAdQBtACAASQB0AGEAbABpAGMAVgBlAHIAcwBpAG8AbgAgADMALgAwADAAOAA7ACAAMgAwADIAMwBSAG8AYgBvAHQAbwAtAE0AZQBkAGkAdQBtAEkAdABhAGwAaQBjAFIAbwBiAG8AdABvACAAaQBzACAAYQAgAHQAcgBhAGQAZQBtAGEAcgBrACAAbwBmACAARwBvAG8AZwBsAGUALgBHAG8AbwBnAGwAZQBDAGgAcgBpAHMAdABpAGEAbgAgAFIAbwBiAGUAcgB0AHMAbwBuAEcAbwBvAGcAbABlAC4AYwBvAG0ATABpAGMAZQBuAHMAZQBkACAAdQBuAGQAZQByACAAdABoAGUAIABBAHAAYQBjAGgAZQAg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//QA3v/tAOH/4QDm/9QA7P/iAO7/7wDw/+IA8f/iAPP/4gD0/+IA9f/iAPb/yQD4/+IA+v/iAPv/4gD+/9EBAP/iAQX/4gEJ/+UBGf/UARr/5gEg/+MBK//iATP/9AE0/+8BNv/iATn/0gE6/8QBPP/iAT7/4gFD//QBRP/vAUX/0gFH/+EBSf/hAVP/4gFV/+IBV//iAVz/4gFd//QBXv/vAWL/1AFj//UBZP/nAWz/qgFt/8kBhP/KAYX/ygGH/8oBiP/KAYn/ygPQ/+0D3P/SA93/9APg/+ID4v/iA+T/5gPl/+8D5//iA+z/4gPt/+YD9v/KA/f/ygP6/8oEAv/iBAX/1AQG/+YEDf/TBA7/5gQQ//QEEf/vBB7/9AQf/+8EI//iBCX/4gQu/+0EL//mBDD/7QQx/+YEMv/tBDP/5gQ0/+EEN//iBJL/0gSU/+EEl//iBKH/0wApAEf/7ABI/+wASf/sAEv/7ABV/+wAlP/sAJn/7AK8/+wCvf/sAr7/7AK//+wCwP/sAtj/7ALa/+wC3P/sAt7/7ALg/+wC4v/sAuT/7ALm/+wC6P/sAur/7ALs/+wC7v/sAvD/7ALy/+wEUv/sBFT/7ARW/+wEWP/sBFr/7ARc/+wEXv/sBGD/7AR0/+wEdv/sBHj/7AR8/+wEt//sBMT/7ATG/+wANgAGABAACwAQAA0AFABBABIAR//oAEj/6ABJ/+gAS//oAFX/6ABhABMAlP/oAJn/6AGEABABhQAQAYcAEAGIABABiQAQArz/6AK9/+gCvv/oAr//6ALA/+gC2P/oAtr/6ALc/+gC3v/oAuD/6ALi/+gC5P/oAub/6ALo/+gC6v/oAuz/6ALu/+gC8P/oAvL/6AP2ABAD9wAQA/oAEARS/+gEVP/oBFb/6ARY/+gEWv/oBFz/6ARe/+gEYP/oBHT/6AR2/+gEeP/oBHz/6AS3/+gExP/oBMb/6ABKAEf/tABI/7QASf+0AEv/tABMABQATwAUAFAAFABT/3oAVf+0AFf/ZABbAAsAlP+0AJn/tAHb/2QCvP+0Ar3/tAK+/7QCv/+0AsD/tALG/3oCx/96Asj/egLJ/3oCyv96Atj/tALa/7QC3P+0At7/tALg/7QC4v+0AuT/tALm/7QC6P+0Aur/tALs/7QC7v+0AvD/tALy/7QDFP96Axb/egMY/3oDIP9kAyL/ZAMk/2QDJv9kAyj/ZARS/7QEVP+0BFb/tARY/7QEWv+0BFz/tARe/7QEYP+0BGb/egRo/3oEav96BGz/egRu/3oEcP96BHL/egR0/7QEdv+0BHj/tAR6/3oEfP+0BLf/tAS7/3oExP+0BMb/tATIABQEygAUBMwAFATZ/2QAAQD0AAQABgALAAwAJQAnACgAKQAqAC8AMAAzADQANQA2ADgAOgA7ADwAPQA+AD8ASQBKAEwATwBRAFIAUwBWAFgAWgBbAF0AXwCWAJ0AsgGEAYUBhwGIAYkB8gH0AfUB9wH6AgUCSgJNAl8CYQJiApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqsCrAKtAq4CrwK0Ar0CvgK/AsACxQLGAscCyALJAsoCzwLQAtEC0wLVAtcC2QLbAt0C3wLhAuIC4wLkAuUC5gLnAugC6QLqAvQDAgMEAwYDCAMKAw0DDwMRAxIDEwMUAxUDFgMXAxgDGgMcAx4DKQMrAy0DOwM9Az4DPwNAA0IDRANKA0sDTANNA04DTwNQA1EDUgNTA14DXwNgA2EDYgNoA2kDagNvA4EDggODA4QDiAOJA4oDkwPuA/AD8gP0A/UD9gP3A/oD/AP9BDkEOwQ9BD8EQQRDBEUERwRJBEsETQRPBFEEUgRTBFQEVQRWBFcEWARZBFoEWwRcBF0EXgRfBGAEZQRmBGcEaARpBGoEawRsBG0EbgRvBHAEcQRyBHoEiwSMBI0EjgSPBJAEswS0BLYEugS7BL0EwwTFBMgEyQTLBM0E0ATSBNME1ATXBNoE3QTeBN8E4AThBOMAAQA1AAYACwCWALEAsgCzALQAvQDBAMcBhAGFAYcBiAGJAgUCBgIHA6EDogOjA6QDpQOmA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDuwO/A8EDxQP2A/cD+gTlBOYE6gTtBPME+ACnABD/BwAS/wcAJf9OAC7/DQA4ABQARf/eAEf/6wBI/+sASf/rAEv/6wBT/+sAVf/rAFb/5gBZ/+oAWv/oAF3/6ACU/+sAmf/rAJv/6gCy/04Bhv8HAYr/BwGO/wcBj/8HAgX/wAJN/8ACmv9OApv/TgKc/04Cnf9OAp7/TgKf/04CoP9OArX/3gK2/94Ct//eArj/3gK5/94Cuv/eArv/3gK8/+sCvf/r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ARgBGAATARkBGQAXARoBGgAFARsBGwADAR0BHQADAR4BHgACAR8BHwADASEBIQADASIBIgACASsBKwABATMBMwAGATQBNAAHATYBNgABATkBOQAKATwBPAABAT4BPgABAUEBQQADAUIBQgACAUMBQwAGAUQBRAAHAUUBRQAKAUcBRwARAUgBSAAUAVABUAANAVEBUQASAVMBUwABAVUBVQABAVcBVwABAVwBXAABAV0BXQAGAV4BXgAHAWABYQACAWYBZgANAWoBagADAWsBawACAW8BbwANAXABcAASAYEBggALAYQBhQAEAYYBhgAIAYcBiQAEAYoBigAIAY4BjwAIAgUCBQAZAg4CDgAMAg8CDwAJAhICEgAMAhYCFgAPAicCJwAPAioCKgAMAisCKwAJAiwCLAAWAi0CLQAPAi4CLgAMAjQCNAAJApQClAALA80DzQAcA9AD0AAOA9ED0QAQA9gD2AADA9sD2wADA9wD3AAKA90D3QAGA94D3gAVA98D3wACA+AD4AABA+ED4QATA+ID4gABA+MD4wACA+QD5AAFA+UD5QAHA+YD5gACA+cD5wABA+gD6AAdA+wD7AABA+0D7QAFA/YD9wAEA/oD+gAEBAEEAQACBAIEAgABBAUEBQAXBAYEBgAFBAcEBwACBAgECAADBAsECwADBAwEDAACBA0EDQAYBA4EDgAFBBAEEAAGBBEEEQAHBBMEEwAQBBQEFAAVBBUEFQAQBBYEFgAVBBoEGgACBBwEHQACBB4EHgAGBB8EHwAHBCMEIwABBCUEJQABBCYEJgADBCcEJwATBCgEKAADBCkEKQACBCoEKgADBCsEKwATBC4ELgAOBC8ELwAFBDAEMAAOBDEEMQAFBDIEMgAOBDMEMwAFBDQENAARBDUENQAUBDcENwABBDgEOAACBJIEkgAKBJQElAARBJUElQAUBJcElwABBKEEoQAYBKcEpwALBQUFBQAaBQwFDAAJBQ8FDwAJBRAFEAAMBREFEQAPBRQFFAAJBRUFFQAWAAIA7AAGAAYADAALAAsADAAlACUAAgAmACYAGwAnACcADgApACkABAAsAC0AAQAuAC4ABwAvAC8AGAAwADAADwAxADIAAQA0ADQAHAA4ADgAEAA5ADkABwA6ADoAGQA7ADsAEQA8ADwAHgA9AD0ADQA+AD4AFABFAEUAAwBGAEYAFQBHAEcAEgBJAEkABQBMAEwACABRAFIACABTAFMABgBUAFQAFQBWAFYAEwBaAFoACwBcAFwAIgBdAF0ACwBeAF4AFwCKAIoAFQCWAJYAIACyALIAIQGEAYUADAGHAYkADAHyAfIAGgH3AfcACQH6AfoAFgH7AfsAHQIFAgUAHwJKAkoACQJNAk0ACgJfAl8ADgKYApgAEAKaAqAAAgKhAqEADgKiAqUABAKmAqoAAQKwArMABwK0ArQADQK1ArsAAwK8ArwAEgK9AsAABQLFAsUACALGAsoABgLPAtAACwLRAtEAAgLSAtIAAwLTAtMAAgLUAtQAAwLVAtUAAgLWAtYAAwLXAtcADgLYAtgAEgLZAtkADgLaAtoAEgLbAtsADgLcAtwAEgLdAt0ADgLeAt4AEgLhAuEABALiAuIABQLjAuMABALkAuQABQLlAuUABALmAuYABQLnAucABALoAugABQLpAukABALqAuoABQLzAvMAAQL0AvQACAL1AvUAAQL3AvcAAQL5AvkAAQL7AvsAAQL9Av0AAQMAAwAABwMCAwIAGAMEAwQADwMGAwYADwMIAwgADwMKAwoADwMMAwwAAQMNAw0ACAMOAw4AAQMPAw8ACAMQAxAAAQMRAxIACAMUAxQABgMWAxYABgMYAxgABgMaAxoAEwMcAxwAEwMeAx4AEwMpAykAEAMrAysAEAMtAy0AEAMvAy8ABwMxAzEABwMzAzMABwM1AzUABwM3AzcABwM5AzkABwM7AzsAEQM9Az0ADQM+Az4ACwM/Az8ADQNAA0AAFANBA0EAFwNCA0IAFANDA0MAFwNEA0QAFANFA0UAFwNKA0sACQNMA0wAGgNNA1MACgNeA2IACQNoA2oACgNvA28ACQOAA4AAHQOBA4QAFgOIA4oACQOTA5MAGgPuA+4AEQPwA/AAEQPyA/IAEQP0A/QADQP1A/UACwP2A/cADAP6A/oADAP7A/sAAQP8A/wACAP9A/0AAgP+A/4AAwQ5BDkAAgQ6BDoAAwQ7BDsAAgQ8BDwAAwQ9BD0AAgQ+BD4AAwQ/BD8AAgRABEAAAwRBBEEAAgRCBEIAAwRDBEMAAgREBEQAAwRFBEUAAgRGBEYAAwRHBEcAAgRIBEgAAwRJBEkAAgRKBEoAAwRLBEsAAgRMBEwAAwRNBE0AAgROBE4AAwRPBE8AAgRQBFAAAwRRBFEABARSBFIABQRTBFMABARUBFQABQRVBFUABARWBFYABQRXBFcABARYBFgABQRZBFkABARaBFoABQRbBFsABARcBFwABQRdBF0ABAReBF4ABQRfBF8ABARgBGAABQRhBGEAAQRjBGMAAQRmBGYABgRoBGgABgRqBGoABgRsBGwABgRuBG4ABgRwBHAABgRyBHIABgR6BHoABgR9BH0ABwR/BH8ABwSLBIsADQSMBIwACwSNBI0ADQSOBI4ACwSPBI8ADQSQBJAACwSyBLIAAQSzBLMACAS0BLQAAgS1BLUAAwS2BLYABAS4BLgAAQS7BLsABgS9BL0AEwTBBMEAGwTCBMIAFQTHBMcAAQTIBMgACATJBMkAGATLBMsAGATNBM0ADwTPBM8AAQTQBNAACATRBNEAAQTSBNIACATUBNQAHATVBNUAFQTXBNcAEwTaBNoAEATcBNwABwTdBN0AGQTeBN4ACwTfBN8AGQTgBOAACwThBOEAEQTjBOMAFATkBOQAFwACAQkABgAGAA0ACwALAA0AEAAQABIAEQARABUAEgASABIAJQAlAAMAJwAnAAEAKwArAAEALgAuABoAMwAzAAEANQA1AAEANwA3ABAAOAA4ABMAOQA5AAgAOgA6ABkAOwA7ABEAPAA8AB0APQA9AA4APgA+ABQARQBFAAQARwBJAAIASwBLAAIAUQBSAAkAUwBTAAcAVABUAAkAVQBVAAIAVwBXAA8AWQBZAAYAWgBaAAwAXABcACEAXQBdAAwAXgBeABcAgwCDAAEAkwCTAAEAlACUAAIAmACYAAEAmQCZAAIAmwCbAAYAsgCyACABgQGCABUBhAGFAA0BhgGGABIBhwGJAA0BigGKABIBjgGPABIB2wHbAA8B7QHtABgB7gHuAB4B7wHvABsB8QHxAAoB8gHyABwB8wHzABYB9QH1AAUB9wH3AAUB/wH/AAUCBQIFAB8CSwJLAAUCTQJNAAsCXwJgAAECYgJjAAEClAKUABUCmgKgAAMCoQKhAAECqwKvAAECsAKzAAgCtAK0AA4CtQK7AAQCvALAAAICxQLFAAkCxgLKAAcCywLOAAYCzwLQAAwC0QLRAAMC0gLSAAQC0wLTAAMC1ALUAAQC1QLVAAMC1gLWAAQC1wLXAAEC2ALYAAIC2QLZAAEC2gLaAAIC2wLbAAEC3ALcAAIC3QLdAAEC3gLeAAIC4ALgAAIC4gLiAAIC5ALkAAIC5gLmAAIC6ALoAAIC6gLqAAIC6wLrAAEC7ALsAAIC7QLtAAEC7gLuAAIC7wLvAAEC8ALwAAIC8QLxAAEC8gLyAAIDAAMAABoDDQMNAAkDDwMPAAkDEQMSAAkDEwMTAAEDFAMUAAcDFQMVAAEDFgMWAAcDFwMXAAEDGAMYAAcDHwMfABADIAMgAA8DIQMhABADIgMiAA8DIwMjABADJAMkAA8DJQMlABADJgMmAA8DJwMnABADKAMoAA8DKQMpABMDKwMrABMDLQMtABMDLwMvAAgDMAMwAAYDMQMxAAgDMgMyAAYDMwMzAAgDNAM0AAYDNQM1AAgDNgM2AAYDNwM3AAgDOAM4AAYDOQM5AAgDOgM6AAYDOwM7ABEDPQM9AA4DPgM+AAwDPwM/AA4DQANAABQDQQNBABcDQgNCABQDQwNDABcDRANEABQDRQNFABcDSANIAAEDTQNTAAsDVANUAAUDXgNiAAUDYwNmAAoDZwNnABgDaANqAAsDawNuAAUDdQN4AAUDiAOKAAUDjgORABYDkwOTABwDlQOaAAoDmwObABsDnAOdABgD7gPuABED8APwABED8gPyABED9AP0AA4D9QP1AAwD9gP3AA0D+gP6AA0D/AP8AAkD/QP9AAMD/gP+AAQEOQQ5AAMEOgQ6AAQEOwQ7AAMEPAQ8AAQEPQQ9AAMEPgQ+AAQEPwQ/AAMEQARAAAQEQQRBAAMEQgRCAAQEQwRDAAMERAREAAQERQRFAAMERgRGAAQERwRHAAMESARIAAQESQRJAAMESgRKAAQESwRLAAMETARMAAQETQRNAAMETgROAAQETwRPAAMEUARQAAQEUgRSAAIEVARUAAIEVgRWAAIEWARYAAIEWgRaAAIEXARcAAIEXgReAAIEYARgAAIEZQRlAAEEZgRmAAcEZwRnAAEEaARoAAcEaQRpAAEEagRqAAcEawRrAAEEbARsAAcEbQRtAAEEbgRuAAcEbwRvAAEEcARwAAcEcQRxAAEEcgRyAAcEcwRzAAEEdAR0AAIEdQR1AAEEdgR2AAIEdwR3AAEEeAR4AAIEeQR5AAEEegR6AAcEewR7AAEEfAR8AAIEfQR9AAgEfgR+AAYEfwR/AAgEgASAAAYEggSCAAYEhASEAAYEhgSGAAYEiASIAAYEigSKAAYEiwSLAA4EjASMAAwEjQSNAA4EjgSOAAwEjwSPAA4EkASQAAwEpwSnABUEswSzAAkEtAS0AAMEtQS1AAQEtwS3AAIEugS6AAEEuwS7AAcEvwS/AAYExATEAAIExgTGAAIE0ATQAAkE0gTSAAkE0wTTAAEE2ATYABAE2QTZAA8E2gTaABME3ATcAAgE3QTdABkE3gTeAAwE3wTfABkE4ATgAAwE4QThABEE4wTjABQE5ATkABcAAQAAAAoAZAAkAARERkxUAP5jeXJsAP5ncmVrAP5sYXRuAQIAHwEWAR4BJgEuATYBPgE+AUYBTgFWAV4BZgFuAXYBfgGGAY4BlgGeAaYBrgG2Ab4BxgHOAdYB3gHWAd4B5gHuABtjMnNjAbZjY21wAkBkbGlnAbxkbm9tAcJmcmFjAlBsaWdhAchsaWdhAlpsaWdhAkhsbnVtAc5sb2NsAdRsb2NsAdpsb2NsAeBsb2NsAeZudW1yAexvbnVtAfJwbnVtAfhzbWNwAf5zczAxAgRzczAyAgpzczAzAhBzczA0AhZzczA1AhxzczA2AiJzczA3AihzdWJzAi5zdXBzAjR0bnVtAjoBwgAAA8YAB0FaRSAD9kNSVCAD9kZSQSAEJk1PTCAEWE5BViAEilJPTSAEvFRSSyAD9gABAAAAAQcOAAEAAAABBSoABgAAAAECSgABAAAAAQIMAAQAAAABBKAAAQAAAAEBlgABAAAAAQIGAAEAAAABAYwABAAAAAEBqAAEAAAAAQGoAAQAAAABAbwAAQAAAAEBcgABAAAAAQFwAAEAAAABAW4AAQAAAAEBiAABAAAAAQGKAAEAAAABAkIAAQAAAAEBkAABAAAAAQJQAAEAAAABAnYAAQAAAAECnAABAAAAAQLCAAEAAAABASwABgAAAAEBkAABAAAAAQG0AAEAAAABAcYAAQAAAAEB2AABAAAAAQEKAAAAAQAAAAAAAQALAAAAAQAbAAAAAQAKAAAAAQAWAAAAAQAIAAAAAQAFAAAAAQAHAAAAAQAGAAAAAQAcAAAAAQATAAAAAQAUAAAAAQABAAAAAQAMAAAAAQANAAAAAQAOAAAAAQAPAAAAAQAQAAAAAQARAAAAAQASAAAAAQAeAAAAAQAdAAAAAQAVAAAAAgACAAQAAAACAAkACgAAAAMAFwAYABoAAAAEAAkACgAJAAoAAP//ABQAAAABAAIAAwAEAAgADQAOAA8AEAARABIAEwAUABUAFgAXABgAGQAaAAEHaAACAAEHRAABAAEHRAH4AAEHRAGJAAEHRAIPAAEHRAGBAAEHZAGOAAEOOgABB0YAAQ4yAAEHRAACB1gAAgJGAkcAAgdOAAICSAJJAAEOLgADBy4HMgc2AAIHQAADAogCiQKJAAIHVgAGAnsCeQJ8An0CegUoAAIHNAAGBSIFIwUkBSUFJgUnAAMAAQdCAAEG/gAAAAEAAAAZAAIHIAcIB4IHRgAHAAAHDAcMBwwHDAcMBwwAAgbSAAoB4QHgAd8COQI6AjsCPAI9Aj4CPwACBrgACgJYAHoAcwB0AlkCWgJbAlwCXQJeAAIGngAKAZUAegBzAHQBlgGXAZgBmQGaAZsAAgbuAAwCXwJhAmACYgJjAoECggKDAoQChQKGAocAAgckABQCdAJ4AnICbwJxAnACdQJzAncCdgJpAmQCZQJmAmcCaAAaABwCbQJ/AAIGvgAUBK8CiwSoBKkEqgSrBKwCgAStBK4CZgJoAmcCZQJpAn8AGgJtABwCZAACBwwAFAJ1AncCeAJyAm8CcQJwAnMCdgJ0ABsAFQAWABcAGAAZABoAHAAdABQAAga2ABQErAStAosEqASpBKoEqwKABK4AFwAZABgAFgAbABQAGgAdABwAFQSvAAD//wAVAAAAAQACAAMABAAHAAgADQAOAA8AEAARABIAEwAUABUAFgAXABgAGQAaAAD//wAVAAAAAQACAAMABAAFAAgADQAOAA8AEAARABIAEwAUABUAFgAXABgAGQAaAAD//wAWAAAAAQACAAMABAAGAAgACQANAA4ADwAQABEAEgATABQAFQAWABcAGAAZABoAAP//ABYAAAABAAIAAwAEAAYACAAKAA0ADgAPABAAEQASABMAFAAVABYAFwAYABkAGgAA//8AFgAAAAEAAgADAAQABgAIAAsADQAOAA8AEAARABIAEwAUABUAFgAXABgAGQAaAAD//wAWAAAAAQACAAMABAAGAAgADAANAA4ADwAQABEAEgATABQAFQAWABcAGAAZABoAAQ+SADYG8gW0BbgF8AcABfYFvAcOBjIGOgX8BoYHVAXABnIGQgYCB2QGCAZKBpIGDgccBcQFyAYUByoFzAXQBdQGUgZaBhoGngc4BdgGfAZiBiAHRgYmBmoGqgYsBdwF4AXkBegGtgbCBs4G2gbmBewAAgcCAOsCjAJNAkwCSwJKAkICAAH/Af4B/QH8AfsB+gH5AfgB9wH2AfUB9AHzAfIB8QHwAe8B7gHtAewCfgKOA0sCkAKPA0oB/QKNApICbATtBO4CBAIFBO8E8ATxAgYE8gIHAggCCQT3AgoCCgT4BPkCCwIMAg0CFAUGBQcCFQIWAhcCGAIZAhoFCgULBQ0FEAUZAhwCHQIeAh8CIAIhAiICIwIkAiUCDgIPAhACEQISAhMCVQInAigCKQIqBRMCKwItAi4CLwIxAjMCkQNMA00DTgNPA1ADUQNSA1MDVANVA1YDVwNYA1kDWgNbA1wDXQNeA18DYANhA2IDYwNkA2UDZgNnA50DaANpA2oDawNsA20DbgNvA3ADcQNyA3MDdAN1A3YDdwN4A3kDegN7A3wDfQUaA38DgAOBA4IDgwOEA4UDhgOHA4gDiQOKA4sDjAONA44DjwOQBR0DkQOSA5QDkwOVA5YDlwOYA5kDmgObA5wDngOfA6AFGwUcBOYE5wToBOkE8wT2BPQE9QT6BPsE/ATqBOsE7AUFBQgFCQUMBQ4FDwIbBREE/QT+BP8FAAUBBQIFAwUEBR4FHwUgBSEFEgUUBRUCMgUXAjQFGAUWAjACJgIsBSYFJwACBwAA+gIBAowB6wHqAekB6AHnAeYB5QHkAeMB4gJNAkwCSwJKAkICAAH/Af4B/QH8AfsB+gH5AfgB9wH2AfUB9AHzAfIB8QHwAe8B7gHtAewCAgIDAo4CkAKPApECjQKSAmwCBAIFAgYCBwIIAgkCCgILAgwCDQIOAg8CEAIRAhICEwIUAhUCFgIXAhgCGgIbBRkCHAIdAh4CHwIgAiECIgIjAiQCJQJVAicCKAIpAioFEwIrAi0CLgIvAjACMQIyAjMCNQI2AjgCNwNKA0sDTANNA04DTwNQA1EDUgNTA1QDVQNWA1cDWANZA1oDWwNcA10DXgNfA2ADYQNiA2MDZANlA2YDZwNoA2kDagNrA2wDbQNuA28DcANxA3IDcwN0A3UDdgN3A3gDeQN6A3sDfAN9A34FGgN/A4ADgQOCA4MDhAOFA4YDhwOIA4kDigOLA4wDjQOOA48DkAUdA5EDkgOUA5MDlQOWA5cDmAOZA5oDmwOcA50DngOfA6AFGwUcBOYE5wToBOkE6gTrBOwE7QTuBO8E8ATxBPIE8wT0BPUE9gT3BPgE+QT6BPsE/AT9BP4E/wUABQEFAgIZBQMFBAUFBQYFBwUIBQkFCgULBQwFDQUOBQ8FEAURBR4FHwUgBSEFEgUUBRUFFwI0BRgFFgImAiwFJgUnAAEAAQF7AAEAAQBLAAEAAQC7AAEAAQA2AAEAAQATAAEAAgMjAyQAAgbkBtgAAgbmBtgAAQbuAAEG8AABBvIAAgABABQAHQAAAAEAAgAvAE8AAQADAEkASwKEAAIAAAABBt4AAQAGAtUC1gLnAugDagNzAAEABgBNAE4C/APpA+sEZAACAAMBlAGUAAAB3wHhAAECOQI/AAQAAgACAKgArAABASQBJwABAAEADAAnACgAKwAzADUARgBHAEgASwBTAFQAVQACAAIAFAAdAAACbwJ4AAoAAgAGAE0ATQAGAE4ATgAEAvwC/AAFA+kD6QADA+sD6wACBGQEZAABAAIABAAUAB0AAAKAAoAACgKLAosACwSoBK8ADAACAAYAGgAaAAAAHAAcAAECZAJpAAICbQJtAAgCbwJ4AAkCfwJ/ABMAAQAUABoAHAJkAmUCZgJnAmgCaQJtAn8CgAKLBKgEqQSqBKsErAStBK4ErwABBd4AAQXgAAEF4gABBeQAAQXmAAEF6AABBeoAAQXsAAEF7gABBfAAAQXyAAEF9AABBfYAAQX4AAEF+gACBfwGAgACBgIGCAACBggGDgACBg4GFAACBhQGGgACBhoGIAACBiAGJgACBiYGLAACBiwGMgACBjIGOAACBjgGPgADBj4GRAZKAAMGSAZOBlQAAwZSBlgGXgADBlwGYgZoAAMGZgZsBnIAAwZwBnYGfAADBnoGgAaGAAMGhAaKBpAABAaOBpQGmgagAAQGnAaiBqgGrgAFBqoGsAa2BrwGwgAFBrwGwgbIBs4G1AAFBs4G1AbaBuAG5gAFBuAG5gbsBvIG+AAFBvIG+Ab+BwQHCgAFBwQHCgcQBxYHHAAFBxYHHAciBygHLgAFBygHLgc0BzoHQAAFBzoHQAdGB0wHUgAGB0wHUgdYB14HZAdqAAYHYgdoB24HdAd6B4AABgd4B34HhAeKB5AHlgAGB44HlAeaB6AHpgesAAYHpAeqB7AHtge8B8IABge6B8AHxgfMB9IH2AAGB9AH1gfcB+IH6AfuAAcILgfmB+wH8gf4B/4IBAAHCCYH+ggACAYIDAgSCBgAAQDrAAoARQBGAEcASABJAEoASwBMAE0ATgBPAFAAUQBSAFMAVABVAFYAVwBYAFkAWgBbAFwAXQBeAIUAhgCHAIkAigCLAI0AkACSAJQAuwC8AL0AvgC/AMAAwQDCAMMAxADFAMYAxwDIAMkAygDLAMwAzQDOAOoA6wDsAO0A7gDvAPAA8QDyAPMA9AD1APYA9wD4APkA+gD7APwA/QD+AP8BAAEBAQIBAwEEAQUBBgEHATABNAE2ATgBOgE8AUIBRAFGAUoBTQFaApcCmQK1ArYCtwK4ArkCugK7ArwCvQK+Ar8CwALBAsICwwLEAsUCxgLHAsgCyQLKAssCzALNAs4CzwLQAtIC1ALWAtgC2gLcAt4C4ALiAuQC5gLoAuoC7ALuAvAC8gL0AvYC+AL6AvwC/wMBAwMDBQMHAwkDCwMNAw8DEQMUAxYDGAMaAxwDHgMgAyIDJAMmAygDKgMsAy4DMAMyAzQDNgM4AzoDPAM+A0EDQwNFA0cDSQO5A7oDuwO8A74DvwPAA8EDwgPDA8QDxQPGA8cD3gPfA+AD4QPiA+MD5APlA+YD5wPoA+kD6gPrA+wD7QPvA/ED8wP1BAoEDAQOBBwEIwQpBC8EmQSaBJ4EogUjBSUAAQD6AAgACgAUABUAFgAXABgAGQAaABsAHAAdACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgBlAGcAgQCDAIQAjACPAJEAkwCxALIAswC0ALUAtgC3ALgAuQC6ANIA0wDUANUA1gDXANgA2QDaANsA3ADdAN4A3wDgAOEA4gDjAOQA5QDmAOcA6ADpAS8BMwE1ATcBOQE7AUEBQwFFAUkBSwFMAVgBWQGxAbcBvAG/ApUClgKYApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0AtEC0wLVAtcC2QLbAt0C3wLhAuMC5QLnAukC6wLtAu8C8QLzAvUC9wL5AvsC/QL+AwADAgMEAwYDCAMKAwwDDgMQAxMDFQMXAxkDGwMdAx8DIQMjAyUDJwMpAysDLQMvAzEDMwM1AzcDOQM7Az0DPwNAA0IDRANGA0gDoQOiA6MDpAOlA6YDpwOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A8gDyQPKA8sDzAPNA84DzwPQA9ED0gPTA9QD1QPWA9cD2APZA9oD2wPcA90D7gPwA/ID9AQJBAsEDQQiBCgELgSYBJ0EoQUiBSQB1gACAE0B1wACAFAB2AADAEoATQHZAAMASgBQAAEAAQBKAdUAAgBKAdsAAgBYAdoAAgBYAAEAAwBKAFcAlQAAAAEAAQABAAEAAAADBMEAAgCtAtcAAgCpBMcAAgCtBNQAAgCpBMIAAgCtAtgAAgCpBLEAAgCpBMgAAgCtBGQAAgCtBNUAAgCpA0YAAgCpA0gAAgCpA0cAAgCpA0kAAgCpBMAAAgCpBMUAAgHUBMMAAgCtBLAAAgCpAvEAAgHUA/sAAgCpBM8AAgCtAykAAgHUBNoAAgCtBN8AAgCtBN0AAgCqA0AAAgCpBOMAAgCtBMYAAgHUBMQAAgCtA/wAAgCpBNAAAgCtAyoAAgHUBNsAAgCtBOAAAgCtBN4AAgCqA0EAAgCpBOQAAgCtBMkAAgCpAwIAAgHUBMsAAgCtAwQAAgCpAwYAAgHUBM0AAgCtAx8AAgCpAyUAAgHUBNgAAgCtA/AAAgCpBOEAAgCtA+4AAgCoBMoAAgCpAwMAAgHUBMwAAgCtAwUAAgCpAwcAAgHUBM4AAgCtAyAAAgCpAyYAAgHUBNkAAgCtA/EAAgCpBOIAAgCtA+8AAgCoAxkAAgCpAxsAAgHUBNYAAgCtBLwAAgCsAxoAAgCpAxwAAgHUBNcAAgCtBL0AAgCsAwwAAgCpAw4AAgHUBNEAAgCtBLIAAgCoAqoAAgCqArQAAgCpBIsAAgCtA/QAAgCoBI0AAgCrBI8AAgCqAw0AAgCpAw8AAgHUBNIAAgCtBLMAAgCoAsUAAgCqAs8AAgCpBIwAAgCtA/UAAgCoBI4AAgCrBJAAAgCqAsIAAgCpAsEAAgCoBGIAAgCrAvYAAgCqBLkAAgCsBHMAAgCpBHsAAgCtBHUAAgCoBHcAAgCrBHkAAgCqBHQAAgCpBHwAAgCtBHYAAgCoBHgAAgCrBHoAAgCqBIEAAgCpBIkAAgCtBIMAAgCoBIUAAgCrBIcAAgCqBIIAAgCpBIoAAgCtBIQAAgCoBIYAAgCrBIgAAgCqApsAAgCpBDkAAgCtApoAAgCoBDsAAgCrAp0AAgCqBLQAAgCsAqMAAgCpBFEAAgCtAqIAAgCoBFMAAgCrBFUAAgCqBLYAAgCsAqcAAgCpBGMAAgCtAqYAAgCoBGEAAgCrAvUAAgCqBLgAAgCsArYAAgCpBDoAAgCtArUAAgCoBDwAAgCrArgAAgCqBLUAAgCsAr4AAgCpBFIAAgCtAr0AAgCoBFQAAgCrBFYAAgCqBLcAAgCsAscAAgCpBGYAAgCtAsYAAgCoBGgAAgCrAskAAgCqBLsAAgCsAswAAgCpBH4AAgCtAssAAgCoBIAAAgCrAzAAAgCqBL8AAgCsAqwAAgCpBGUAAgCtAqsAAgCoBGcAAgCrAq4AAgCqBLoAAgCsArEAAgCpBH0AAgCtArAAAgCoBH8AAgCrAy8AAgCqBL4AAgCsBNMAAwCqAKkE3AADAKoAqQACABEAJQApAAAAKwAtAAUALwA0AAgANgA7AA4APQA+ABQARQBJABYASwBNABsATwBUAB4AVgBbACQAXQBeACoAgQCBACwAgwCDAC0AhgCGAC4AiQCJAC8AjQCNADAAmACbADEA0ADQADUAAA==","Roboto-Regular.ttf":"AAEAAAARAQAABAAQR0RFRqbzo4gAAcFUAAACWEdQT1N/jKrdAAHDrAAAWMBHU1VCm18k/AACHGwAABX2T1MvMpeDsYsAAAGYAAAAYGNtYXDTfF9iAAAWnAAABoJjdnQgO/gmfQAAL3gAAAD+ZnBnbagFhDIAAB0gAAAPhmdhc3AACAAZAAHBSAAAAAxnbHlm5vV0AgAAOswAAYOwaGVhZAhMpEUAAAEcAAAANmhoZWEKugrKAAABVAAAACRobXR4//meUgAAAfgAABSkbG9jYadOA+EAADB4AAAKVG1heHAI2RDGAAABeAAAACBuYW1lOEJpwQABvnwAAAKqcG9zdP9tAGQAAcEoAAAAIHByZXB5WM7TAAAsqAAAAs4AAQAAAAMCDFXLfBlfDzz1ABsIAAAAAADE8BEuAAAAAODgRcX6Gv3VCTEIcwAAAAkAAgAAAAAAAAABAAAHbP4MAAAJSvoa/koJMQABAAAAAAAAAAAAAAAAAAAFKQABAAAFKQCpABUAdgAHAAIAEAAvAJoAAALmD3UAAwABAAQEiQGQAAUAAAWaBTMAAAEfBZoFMwAAA9EAZgIAAAACAAAAAAAAAAAA4AAC/1AAIFsAAAAgAAAAAEdPT0cAQAAA//0GAP4AAGYHmgIAIAABnwAAAAAEOgWwAAAAIAADA4wAZAAAAAAAAAAAAfwAAAH8AAACEAChApAAiQTtAHcEfwBuBdwAaQT6AGYBZgBoAr0AhgLJACcDcgAcBIoATgGTAB0CNgAmAhwAkANNABMEfwBzBH8AqwR/AF4EfwBfBH8ANQR/AJoEfwCFBH8ATgR/AHEEfwBkAfAAhQGxACkEEQBIBGQAmAQvAIcDyABLBy8AbQU4AB0E/ACpBTUAeAVAAKkEjACpBGwAqQVzAHoFtQCpAi0AtwRqADUFBQCpBE8AqQb8AKkFtQCpBYEAdwUMAKkFgQBuBO4AqQTAAFEExgAyBTAAjAUYAB0HGQA9BQQAOgTOAA8EywBXAh8AkwNJACkCHwAKA1gAQAOcAAQCeQA5BFoAbQR+AIwEMABdBIMAXwQ+AF0CyAA9BH4AYQRoAI0B8gCOAer/vgQOAI0B8gCcBwQAiwRrAI0EkABcBH4AjASMAF8CtgCNBCEAXwKeAAkEaQCJA+AAIQYDACsD+AAqA8kAFgP4AFkCtQBAAfQAsAK1ABQFcQCDAfQAiwRhAGkEpwBbBbUAaQQ0AA8B7ACUBOgAWwNZAGUGSQBcA5QAkwPBAGUEbgB/BkoAWwOrAI8C/QCDBEcAYQLvAEIC7wA/AoIAewSJAJsD6gBEAhcAlAH8AHQC7wB7A6QAewPAAGcF3ABVBjUAUAY5AHADygBEB3r/8QRFAFkFgQB3BLoApwTCAIwGwgBPBLEAfgSSAEcEiQBcBJwAlQTIAF8FmwAeAfsAnAR0AJsETwAjAioAIwWLAKIEiQCSB6EAaQdEAGEB/AChBYcAXgK6/+MFfwBmBJMAXAWQAIwE8wCJAgT/tAQ4AGMDxACqA44AjgOrAI8DawCCAfIAjgKuAHkCKwAyA8YAewL8AF8CWgB/AAD8pwAA/W4AAPyKAAD9XQAA/CcAAP04Ag4AuAQMAHICFwCUBHMAsgWkACAFcgBnBT8AMgSSAHgFtQCyBJIARgW7AE4FiQBaBVIAcgSGAGQEvQChBAMALwSJAGEEUQBkBCUAbQSJAJIEjwB7ApgAwwRvACYD7ABmBMUAKQSJAJIETgBlBIgAYQQsAFEEXgCQBaMAWAWaAGAGlwB6BKIAegRD/9oGSABLBgAAKwVlAHsIkgAyCKUAsgaDAD4FtACwBQsAowYEADMHQwAbBMAAUAW1ALIFqgAwBQgATQYtAFQF2gCvBXoAlweHALAHwACwBhIAEQbrALIFBQCjBWUAlAcnALcFGABaBG0AYgSTAJ4DXACbBNQALgYhABYEEABYBJ4AnQRTAJ0EoAAsBe8AngSdAJ0EngCdA9kAKAXOAGQEvgCdBFoAaAZ5AJ0GnwCSBPcAHgY2AJ4EWACeBE4AZAaIAJ4EZAAvBGj/5wROAGcGyQAnBuQAnQSJ//0EngCdBwkAnAYsAIEEV//bBywAuAX5AJoE0wAoBEcADwcMAMoGDAC9BtIAkwXiAJcJBQC3B9EAnAQkAFAD2wBMBXIAZwSMAFwFCwAWBAQALwVyAGcEiQBcBwEAnAYkAH4HCQCcBiwAgQUyAHYESABkBP4AdAAA/GYAAPxwAAD9ZQAA/aQAAPoaAAD6KwYJALIE7QCdBFf/2wUbAKkEigCMBGQAogORAJIE2wCyBAYAkgeiABsGYQAWBZoAsgS4AJ0FCgCkBH4AmwaMAEUFhAA/Bf8AqQTZAJ0HzwCpBbQAkggxALAG9ACSBe8AcQTUAG4FGAA6BCoAKgctADQFXQAfBbwAlwSWAGgFcACXBGsAhAVwAIkGMAA/BL7/3QUKAKQEWgCbBf4AMATvACwFswCyBIkAkgYSAKkE7ACdB08AqQY+AJ4FhwBeBKgAaASoAGoEuAA5A6sAOgUuADoEQAAqBPcAVwaVAFoG5QBkBlcANgUsADEESgBTBAgAeQfCAEUGdgA/B/sAqgaiAJAE9wB2BB4AZgWuACQFIQBGBWUAlwYCADAE8wAsAyEAcAQUAAAIKQAABBQAAAgpAAACuQAAAgoAAAFcAAAEfwAAAjAAAAGiAAABAAAAANEAAAAAAAACNAAmAjQAJgVAAKIGPwCQA6YADQGaAGEBmgAwAZgAJAGaAE8C1ABpAtwAPALCACQEagBGBJAAVwKzAIsDxACUBVoAlAF/AFIHqgBEAmcAbAJnAFoDowA8Au8AUQLvADYC7wBcAu8AVgLvADsC7wBPAu8ASgM4AFAC+ABQAvgAUAHxAFQB8QBQA2EAegLvAFEC7wB7Au8AQgLvAD8C7wA2Au8AXALvAFYC7wA7Au8ATwLvAEoDOABQAvgAUAL4AFAB8QBUAfEAUASnAFsGVgAfBpEApwh2AKkF6wAfBisAjAR/AF8F2gAfBCMAKwR0ACEFSABdBU8AHwXoAHsDzgBoCDoAogUBAGgFGACYBiYAVAbXAGUGzwBkBmoAWgSQAGoFjwCpBK8ARgSTAKgExQA/CDoAYwIN/68EggBlBGQAmAQRAD0ELwCEBAgALAJMALUCkABvAgQAXQTzAD0EbwAgBIsAPQbUAD0G1AA9BO4APQabAF8AAAAACDQAWwg1AFwC7wBCAu8AewLvAFEEEABWBBAAYQQQAEIEDwByBBAAgQQQADEEEABPBBAATwQQAJkEEABjBCMASAQrAA4EVAAnBhUAMQRoABQEfQB1BCcAKQQgAEQESgCKBLwAWgRdAIsEvABgBOMAiwYCAIsDtQCLBFUAiwPPACwB6QCYBOQAiwSsAGQDzACLBCAARAQ0ADEDoQAOA68AiwRoABQEvABgBGgAFAOJAD4EzwCLA/AAQAVnAGEFFwBhBPMAdgVzACcEfABhB0IAKAdQAIsFdAApBM4AiwRaAIsFJQAuBgsAHwRAAEgE7ACLBE4AjATBACgEIAAjBSkAiwRqAD0GUQCLBqwAiwUdAAkF8QCLBE8AiwR8AEsGdwCLBIcAUAQSAAsGSAAfBHkAjAUKAIwFNwAkBcMAYARfAA4EqAAnBmIAJwRqAD0EagCLBcQAAgTLAF4EQABIBLwAYAQ0ADED5ABDCCIAiwSrACgC7wA/Au8ANgLvAFwC7wBWAu8AOwLvAE8C7wBKA5cAjwK1AJ8D5gCLBDoAHwTEAGQFTACyBSQAsgQUAJMFPQCyBA8AkwSAAIsEfABhBFEAiwSGABQB/gCfA6UAggAA/KMD8ABvA/T/XQQPAGkD9QBpA68AiwOgAIIDnwCCAu8AUQLvADYC7wBcAu8AVgLvADsC7wBPAu8ASgWCAH4FrwB+BZMAsgXgAH4F4wB+A9UAoASCAIMEWAAPBM8APgRrAGUELgBKA6UAhAGSAGgGpABgBLoAggH8/7YEfwA7BH8AcwR/ACIEfwB2BH8AdgR/ADYEfwB+BH8AXgR/AHEEfwD0Agb/tAIE/7QB+wCcAfv/+QH7AJwEUQCLBQAAeAQhADsEfgCMBDMAXQSTAFsEjABbBJ8AWgSOAIwEnABbBD4AXQR+AGEEcABaA3kAVwTWAGgDtQABBjoACQP5AIsEvABgBOMAMATjAIsB/AAAAjYAJgVeACUFXgAlBIYAAQTGADICnv/0BTgAHQU4AB0FOAAdBTgAHQU4AB0FOAAdBTgAHQU1AHgEjACpBIwAqQSMAKkEjACpAi3/3wItALECLf/qAi3/1QW1AKkFgQB3BYEAdwWBAHcFgQB3BYEAdwUwAIwFMACMBTAAjAUwAIwEzgAPBFoAbQRaAG0EWgBtBFoAbQRaAG0EWgBtBFoAbQQwAF0EPgBdBD4AXQQ+AF0EPgBdAfv/xAH7AJYB+//PAfv/ugRrAI0EkABcBJAAXASQAFwEkABcBJAAXARpAIkEaQCJBGkAiQRpAIkDyQAWA8kAFgU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU1AHgEMABdBTUAeAQwAF0FNQB4BDAAXQU1AHgEMABdBUAAqQUZAF8EjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdBXMAegR+AGEFcwB6BH4AYQVzAHoEfgBhBXMAegR+AGEFtQCpBGgAjQIt/7YB+/+bAi3/zQH7/7ICLf/sAfv/0QItABcB8v/6Ai0AqgaXALcD3ACOBGoANQIE/7QFBQCpBA4AjQRPAKIB8gCTBE8AqQHyAFYETwCpAogAnARPAKkCzgCcBbUAqQRrAI0FtQCpBGsAjQW1AKkEawCNBGv/uwWBAHcEkABcBYEAdwSQAFwFgQB3BJAAXATuAKkCtgCNBO4AqQK2AFME7gCpArYAZATAAFEEIQBfBMAAUQQhAF8EwABRBCEAXwTAAFEEIQBfBMAAUQQhAF8ExgAyAp4ACQTGADICngAJBMYAMgLGAAkFMACMBGkAiQUwAIwEaQCJBTAAjARpAIkFMACMBGkAiQUwAIwEaQCJBTAAjARpAIkHGQA9BgMAKwTOAA8DyQAWBM4ADwTLAFcD+ABZBMsAVwP4AFkEywBXA/gAWQd6//EGwgBPBYEAdwSJAFwEgP+9BID/vQQnACkEhgAUBIYAFASGABQEhgAUBIYAFASGABQEhgAUBHwAYQPmAIsD5gCLA+YAiwPmAIsB6f+8AekAjgHp/8cB6f+yBOMAiwS8AGAEvABgBLwAYAS8AGAEvABgBH0AdQR9AHUEfQB1BH0AdQQrAA4EhgAUBIYAFASGABQEfABhBHwAYQR8AGEEfABhBIAAiwPmAIsD5gCLA+YAiwPmAIsD5gCLBKwAZASsAGQErABkBKwAZATkAIsB6f+TAen/qgHp/8kB6QAFAekAhwPPACwEVQCLA7UAgwO1AIsDtQCLA7UAiwTjAIsE4wCLBOMAiwS8AGAEvABgBLwAYARKAIoESgCKBEoAigQgAEQEIABEBCAARAQgAEQEJwApBCcAKQQnACkEfQB1BH0AdQR9AHUEfQB1BH0AdQR9AHUGFQAxBCsADgQrAA4EIwBIBCMASAQjAEgFOAAdBPD/jAYZ/5oCkf+gBZX/+gUy/3YFZv/8Apj/mwU4AB0E/ACpBIwAqQTLAFcFtQCpAi0AtwUFAKkG/ACpBbUAqQWBAHcFDACpBMYAMgTOAA8FBAA6Ai3/1QTOAA8EhgBkBFEAZASJAJICmADDBF4AkAR0AJsEkABcBIkAmwPgACEEcABaApj/5AReAJAEkABcBF4AkAaXAHoEjACpBHMAsgTAAFECLQC3Ai3/1QRqADUFJACyBQUAqQUIAE0FOAAdBPwAqQRzALIEjACpBbUAsgb8AKkFtQCpBYEAdwW1ALIFDACpBTUAeATGADIFBAA6BFoAbQQ+AF0EngCdBJAAXAR+AIwEMABdA8kAFgP4ACoEPgBdA1wAmwQhAF8B8gCOAfv/ugHq/74EUwCdA8kAFgcZAD0GAwArBxkAPQYDACsHGQA9BgMAKwTOAA8DyQAWAWYAaAKQAIkEIAChAgT/tAGaADAG/ACpBwQAiwU4AB0EWgBtBIwAqQW1ALIEPgBdBJ4AnQWJAFoFmgBgBQsAFgQE//sIWQBcCUoAdwTAAFAEEABYBTUAeAQwAF0EzgAPBAMALwItALcHQwAbBiEAFgItALcFOAAdBFoAbQU4AB0EWgBtB3r/8QbCAE8EjACpBD4AXQWHAF4EOABjBDgAYwdDABsGIQAWBMAAUAQQAFgFtQCyBJ4AnQW1ALIEngCdBYEAdwSQAFwFcgBnBIwAXAVyAGcEjABcBWUAlAROAGQFCABNA8kAFgUIAE0DyQAWBQgATQPJABYFegCXBFoAaAbrALIGNgCeBIMAXwU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWv/JBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQU4AB0EWgBtBTgAHQRaAG0FOAAdBFoAbQSMAKkEPgBdBIwAqQQ+AF0EjACpBD4AXQSMAKkEPgBdBIz/7gQ+/7gEjACpBD4AXQSMAKkEPgBdBIwAqQQ+AF0CLQC3AfsAnAItAKQB8gCGBYEAdwSQAFwFgQB3BJAAXAWBAHcEkABcBYEARgSQ/8IFgQB3BJAAXAWBAHcEkABcBYEAdwSQAFwFfwBmBJMAXAV/AGYEkwBcBX8AZgSTAFwFfwBmBJMAXAV/AGYEkwBcBTAAjARpAIkFMACMBGkAiQWQAIwE8wCJBZAAjATzAIkFkACMBPMAiQWQAIwE8wCJBZAAjATzAIkEzgAPA8kAFgTOAA8DyQAWBM4ADwPJABYEoQBfBMYAMgPZACgFegCXBFoAaARzALIDXACbBjAAPwS+/90EaACNBQX/1AUF/9QEcwADA1z//QU4AAsEKP/TBM4ADwQDAC8FBAA6A/gAKgRRAGQEbAASBj8AkAR/AF4EfwBfBH8ANQR/AJoEkwCZBKcAhQSTAGQEpwCHBXMAegR+AGEFtQCpBGsAjQU4AB0EWgA6BIwAXwQ+ACkCLf8LAfv+8AWBAHcEkAAzBO4AVgK2/4wFMACMBGkAKwSn/zgE/ACpBH4AjAVAAKkEgwBfBUAAqQSDAF8FtQCp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ABQAFQAWABcAGAAZABoAGwAcAB0AJQAmACcAKAApACoAKwAsAC0ALgAvADAAMQAyADMANAA1ADYANwA4ADkAOgA7ADwAPQA+AGUAZwCBAIMAhACMAI8AkQCTALEAsgCzALQAtQC2ALcAuAC5ALoA0gDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDiAOMA5ADlAOYA5wDoAOkBLwEzATUBNwE5ATsBQQFDAUUBSQFLAUwBWAFZAbEBtwG8Ab8ClQKWApgCmgKbApwCnQKeAp8CoAKhAqICowKkAqUCpgKnAqgCqQKqAqsCrAKtAq4CrwKwArECsgKzArQC0QLTAtUC1wLZAtsC3QLfAuEC4wLlAucC6QLrAu0C7wLxAvMC9QL3AvkC+wL9Av4DAAMCAwQDBgMIAwoDDAMOAxADEwMVAxcDGQMbAx0DHwMhAyMDJQMnAykDKwMtAy8DMQMzAzUDNwM5AzsDPQM/A0ADQgNEA0YDSAOhA6IDowOkA6UDpgOnA6kDqgOrA6wDrQOuA68DsAOxA7IDswO0A7UDtgO3A7gDyAPJA8oDywPMA80DzgPPA9AD0QPSA9MD1APVA9YD1wPYA9kD2gPbA9wD3QPuA/AD8gP0BAkECwQNBCIEKAQuBJgEnQShBSIFJAADAe//9QHw/+4Dm//1AAMADf/mAEH/9ABh/+8AAwBK/+4AW//qAfD/8AADAFv/wQH//+YCS//oAAMASgAPAFgAMgBbABEAAwBb/+UB///rAkv/7QA7ALIAEADS/+AA0//oANQAEADW/+AA2QAUAN0AEADh/+EA5v/gAO0AEwDyABAA+f/gAQQAEAEI/+gBDQAQARf/6AEZ/+ABG//oAR3/6AEf/+gBIf/oATn/4AFB/+gBRf/gAUf/4QFI/+ABSf/hAUr/4AFN/+EBUAAQAVEAEAFY/+kBYv/fAWT/3gFmABABav/oAWz/3wFu//IBbwAQAXAAEAPRABAD2P/oA9v/6APc/+AEBf/gBAj/6AQL/+gEDf/fBBMAEAQVABAEJv/oBCj/6AQq/+gENP/hBDX/4ASS/+AElP/hBJX/4ASh/98ABABY/+8AW//fAJr/7gHw/80ABAANABQAQQARAFb/4gBhABMABQA4/9gDKf/YAyv/2AMt/9gE2v/YAAUAI//DAFj/7wBb/98Amv/uAfD/zQAF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Au7/7ALw/+wC8v/sBFL/7ARU/+wEVv/sBFj/7ARa/+wEXP/sBF7/7ARg/+wEdP/sBHb/7AR4/+wEfP/sBLf/7ATE/+wExv/sADYABgAQAAsAEAANABQAQQASAEf/6ABI/+gASf/oAEv/6ABV/+gAYQATAJT/6ACZ/+gBhAAQAYUAEAGHABABiAAQAYkAEAK8/+gCvf/oAr7/6AK//+gCwP/oAtj/6ALa/+gC3P/oAt7/6ALg/+gC4v/oAuT/6ALm/+gC6P/oAur/6ALs/+gC7v/oAvD/6ALy/+gD9gAQA/cAEAP6ABAEUv/oBFT/6ARW/+gEWP/oBFr/6ARc/+gEXv/oBGD/6AR0/+gEdv/oBHj/6AR8/+gEt//oBMT/6ATG/+gASgBH/8UASP/FAEn/xQBL/8UATAAgAE8AIABQACAAU/+AAFX/xQBX/5AAWwALAJT/xQCZ/8UB2/+QArz/xQK9/8UCvv/FAr//xQLA/8UCxv+AAsf/gALI/4ACyf+AAsr/gALY/8UC2v/FAtz/xQLe/8UC4P/FAuL/xQLk/8UC5v/FAuj/xQLq/8UC7P/FAu7/xQLw/8UC8v/FAxT/gAMW/4ADGP+AAyD/kAMi/5ADJP+QAyb/kAMo/5AEUv/FBFT/xQRW/8UEWP/FBFr/xQRc/8UEXv/FBGD/xQRm/4AEaP+ABGr/gARs/4AEbv+ABHD/gARy/4AEdP/FBHb/xQR4/8UEev+ABHz/xQS3/8UEu/+ABMT/xQTG/8UEyAAgBMoAIATMACAE2f+QAAEA9AAEAAYACwAMACUAJwAoACkAKgAvADAAMwA0ADUANgA4ADoAOwA8AD0APgA/AEkASgBMAE8AUQBSAFMAVgBYAFoAWwBdAF8AlgCdALIBhAGFAYcBiAGJAfIB9AH1AfcB+gIFAkoCTQJfAmECYgKVApYCmAKaApsCnAKdAp4CnwKgAqECogKjAqQCpQKrAqwCrQKuAq8CtAK9Ar4CvwLAAsUCxgLHAsgCyQLKAs8C0ALRAtMC1QLXAtkC2wLdAt8C4QLiAuMC5ALlAuYC5wLoAukC6gL0AwIDBAMGAwgDCgMNAw8DEQMSAxMDFAMVAxYDFwMYAxoDHAMeAykDKwMtAzsDPQM+Az8DQANCA0QDSgNLA0wDTQNOA08DUANRA1IDUwNeA18DYANhA2IDaANpA2oDbwOBA4IDgwOEA4gDiQOKA5MD7gPwA/ID9AP1A/YD9wP6A/wD/QQ5BDsEPQQ/BEEEQwRFBEcESQRLBE0ETwRRBFIEUwRUBFUEVgRXBFgEWQRaBFsEXARdBF4EXwRgBGUEZgRnBGgEaQRqBGsEbARtBG4EbwRwBHEEcgR6BIsEjASNBI4EjwSQBLMEtAS2BLoEuwS9BMMExQTIBMkEywTNBNAE0gTTBNQE1wTaBN0E3gTfBOAE4QTjAAEANQAGAAsAlgCxALIAswC0AL0AwQDHAYQBhQGHAYgBiQIFAgYCBwOhA6IDowOkA6UDpgOpA6oDqwOsA60DrgOvA7ADsQOyA7MDtAO1A7YDtwO4A7sDvwPBA8UD9gP3A/oE5QTmBOoE7QTzBPgApwAQ/xYAEv8WACX/VgAu/vgAOAAUAEX/3gBH/+sASP/rAEn/6wBL/+sAU//rAFX/6wBW/+YAWf/qAFr/6ABd/+gAlP/rAJn/6wCb/+oAsv9WAYb/FgGK/xYBjv8WAY//FgIF/8ACTf/AApr/VgKb/1YCnP9WAp3/VgKe/1YCn/9WAqD/VgK1/94Ctv/eArf/3gK4/94Cuf/eArr/3gK7/94CvP/rAr3/6wK+/+sCv//rAsD/6wLG/+sCx//rAsj/6wLJ/+sCyv/rAsv/6gLM/+oCzf/qAs7/6gLP/+gC0P/oAtH/VgLS/94C0/9WAtT/3gLV/1YC1v/eAtj/6wLa/+sC3P/rAt7/6wLg/+sC4v/rAuT/6wLm/+sC6P/rAur/6wLs/+sC7v/rAvD/6wLy/+sDAP74AxT/6wMW/+sDGP/rAykAFAMrABQDLQAUAzD/6gMy/+oDNP/qAzb/6gM4/+oDOv/qAz7/6ANN/8ADTv/AA0//wANQ/8ADUf/AA1L/wANT/8ADaP/AA2n/wANq/8AD9f/oA/3/VgP+/94EOf9WBDr/3gQ7/1YEPP/eBD3/VgQ+/94EP/9WBED/3gRB/1YEQv/eBEP/VgRE/94ERf9WBEb/3gRH/1YESP/eBEn/VgRK/94ES/9WBEz/3gRN/1YETv/eBE//VgRQ/94EUv/rBFT/6wRW/+sEWP/rBFr/6wRc/+sEXv/rBGD/6wRm/+sEaP/rBGr/6wRs/+sEbv/rBHD/6wRy/+sEdP/rBHb/6wR4/+sEev/rBHz/6wR+/+oEgP/qBIL/6gSE/+oEhv/q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"}}}]); \ No newline at end of file diff --git a/frontend/853.e46ed60b577aec33.js b/frontend/853.e46ed60b577aec33.js new file mode 100644 index 00000000..22253620 --- /dev/null +++ b/frontend/853.e46ed60b577aec33.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[853],{4853(Pi,Wi,We){"use strict";We.d(Wi,{CLNModule:()=>jw});var de=We(2200),Sn=We(8132),xt=We(3694),Mn=We(9881),A=We(3664),eA=We(7575),Q=We(2920);function f(n,l){1&n&&A.nrm(0,"mat-progress-bar",3)}let t=(()=>{var n;class l{constructor(i){this.router=i,this.loading=!1,this.router.events.subscribe(o=>{switch(!0){case o instanceof xt.Z:this.loading=!0;break;case o instanceof xt.wF:case o instanceof xt.j5:case o instanceof xt.L6:this.loading=!1}})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-root"]],standalone:!1,decls:4,vars:1,consts:[["outlet","outlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["color","primary","mode","indeterminate",4,"ngIf"],["color","primary","mode","indeterminate"]],template:function(o,r){1&o&&(A.j41(0,"div",1),A.DNE(1,f,1,0,"mat-progress-bar",2),A.nrm(2,"router-outlet",null,0),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",r.loading))},dependencies:[de.bT,eA.HM,Q.DJ,Q.sA,Q.UI,xt.n3],encapsulation:2,data:{animation:[Mn.E]}}))}return n(),l})();var g=We(1413),I=We(6977),N=We(3993),K=We(614),v=We(5383),B=We(4416),j=We(9647),tA=We(9584),w=We(2615),aA=We(8570),AA=We(9640),L=We(2571),P=We(60),rA=We(2598),QA=We(5596),NA=We(2885),oA=We(2629),uA=We(9115),dA=We(6038),RA=We(6850),nA=We(5964),H=We(6695),pA=We(2042),z=We(1676),OA=We(6183),wA=We(1585),VA=We(8430),kA=We(1747),hA=We(9417),fA=We(8834),UA=We(3746),yA=We(9588),xA=We(3029),Ee=We(450),HA=We(455),cA=We(9587),J=We(6114);function U(n,l){1&n&&(A.j41(0,"span",31),A.EFF(1,"= "),A.k0s())}function O(n,l){if(1&n&&(A.j41(0,"span",32),A.nrm(1,"fa-icon",33),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function lA(n,l){if(1&n&&A.nrm(0,"span",34),2&n){const e=A.XpG();A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function LA(n,l){if(1&n&&(A.j41(0,"mat-option",35),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.JRh(A.bMT(2,2,e))}}function JA(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.invoiceError)}}function $A(n,l){if(1&n&&(A.j41(0,"div",36),A.nrm(1,"fa-icon",37),A.DNE(2,JA,2,1,"span",38),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.invoiceError)}}let IA=(()=>{var n;class l{constructor(i,o,r,iA,ne,re){this.dialogRef=i,this.data=o,this.store=r,this.decimalPipe=iA,this.commonService=ne,this.actions=re,this.faExclamationTriangle=v.zpE,this.convertedCurrency=null,this.description="",this.invoiceValueHint="",this.invoicePaymentReq="",this.information={},this.private=!1,this.expiryStep=100,this.pageSize=B.md,this.timeUnitEnum=B.F7,this.timeUnits=B.SY,this.selTimeUnit=B.F7.SECS,this.invoiceError="",this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.actions.pipe((0,I.Q)(this.unSubs[2]),(0,nA.p)(i=>i.type===B.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewInvoice"===i.payload.action&&(i.payload.status===B.wn.ERROR&&(this.invoiceError=i.payload.message),i.payload.status===B.wn.COMPLETED&&this.dialogRef.close())})}onAddInvoice(i){this.invoiceError="",this.invoiceValue||(this.invoiceValue=0);let o=this.expiry?this.expiry:B.It;this.selTimeUnit!==B.F7.SECS&&this.expiry&&(o=this.commonService.convertTime(this.expiry,this.selTimeUnit,B.F7.SECS)),this.store.dispatch((0,VA.VK)({payload:{label:"ulbl"+Math.random().toString(36).slice(2)+Date.now(),amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:o,exposeprivatechannels:this.private}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint="",this.selTimeUnit=B.F7.SECS,this.invoiceError=""}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&(this.invoiceValueHint="",this.invoiceValue&&this.invoiceValue>99&&this.commonService.convertCurrency(this.invoiceValue,B.BQ.SATS,B.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[3])).subscribe({next:i=>{this.convertedCurrency=i,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,B.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.invoiceValueHint="Conversion Error: "+i}}))}onTimeUnitChange(i){this.expiry&&this.selTimeUnit!==i.value&&(this.expiry=this.commonService.convertTime(this.expiry,this.selTimeUnit,i.value)),this.selTimeUnit=i.value}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(AA.il),A.rXU(de.QX),A.rXU(L.h),A.rXU(kA.En))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-create-invoices"]],standalone:!1,decls:50,vars:19,consts:[["addInvoiceForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","name","description",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","name","invoiceValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","expiry","type","number",3,"ngModelChange","step","min","ngModel"],["fxLayout","column","fxFlex","26"],["name","timeUnit",3,"selectionChange","value"],[3,"value",4,"ngFor","ngForOf"],["fxFlex","50","fxLayoutAlign","start center",1,"ml-2"],["color","primary","name","private",3,"ngModelChange","ngModel"],["matTooltip","Include routing hints for private channels","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],[3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Create Invoice"),A.k0s()(),A.j41(6,"button",6),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),A.EFF(13,"Description"),A.k0s(),A.j41(14,"input",10),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.description,re)||(r.description=re),w.Njj(re)}),A.k0s()(),A.j41(15,"div",11)(16,"mat-form-field",12)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",13),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.invoiceValue,re)||(r.invoiceValue=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onInvoiceValueChange())}),A.k0s(),A.j41(20,"span",14),A.EFF(21,"Sats "),A.k0s(),A.j41(22,"mat-hint",15),A.DNE(23,U,2,0,"span",16)(24,O,2,1,"span",17)(25,lA,1,1,"span",18),A.EFF(26),A.k0s()(),A.j41(27,"mat-form-field",19)(28,"mat-label"),A.EFF(29,"Expiry"),A.k0s(),A.j41(30,"input",20),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.expiry,re)||(r.expiry=re),w.Njj(re)}),A.k0s(),A.j41(31,"span",14),A.EFF(32),A.nI1(33,"titlecase"),A.k0s()(),A.j41(34,"mat-form-field",21)(35,"mat-label"),A.EFF(36,"Time Unit"),A.k0s(),A.j41(37,"mat-select",22),A.bIt("selectionChange",function(re){return w.eBV(iA),w.Njj(r.onTimeUnitChange(re))}),A.DNE(38,LA,3,4,"mat-option",23),A.k0s()()(),A.j41(39,"div",24)(40,"mat-slide-toggle",25),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.private,re)||(r.private=re),w.Njj(re)}),A.EFF(41,"Private Routing Hints"),A.k0s(),A.j41(42,"mat-icon",26),A.EFF(43,"info_outline"),A.k0s()(),A.DNE(44,$A,3,2,"div",27),A.j41(45,"div",28)(46,"button",29),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(47,"Clear Field"),A.k0s(),A.j41(48,"button",30),A.bIt("click",function(){w.eBV(iA);const re=A.sdS(10);return w.Njj(r.onAddInvoice(re))}),A.EFF(49,"Create Invoice"),A.k0s()()()()()()}2&o&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",r.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",r.invoiceValue),A.R7$(4),A.Y8G("ngIf",""!==r.invoiceValueHint),A.R7$(),A.Y8G("ngIf",r.convertedCurrency&&"FA"===r.convertedCurrency.iconType&&""!==r.invoiceValueHint),A.R7$(),A.Y8G("ngIf",r.convertedCurrency&&"SVG"===r.convertedCurrency.iconType&&""!==r.invoiceValueHint),A.R7$(),A.SpI(" ",r.invoiceValueHint," "),A.R7$(4),A.Y8G("step",r.selTimeUnit===r.timeUnitEnum.SECS?300:r.selTimeUnit===r.timeUnitEnum.MINS?10:r.selTimeUnit===r.timeUnitEnum.HOURS?2:1)("min",1),A.R50("ngModel",r.expiry),A.R7$(2),A.SpI("",A.bMT(33,17,r.selTimeUnit)," "),A.R7$(5),A.Y8G("value",r.selTimeUnit),A.R7$(),A.Y8G("ngForOf",r.timeUnits),A.R7$(2),A.R50("ngModel",r.private),A.R7$(4),A.Y8G("ngIf",""!==r.invoiceError))},dependencies:[de.Sq,de.bT,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.VZ,hA.vS,hA.cV,P.aY,wA.tx,fA.$z,QA.m2,QA.MM,oA.An,UA.fg,yA.rl,yA.nJ,yA.MV,yA.yw,Q.DJ,Q.sA,Q.UI,OA.VO,xA.wT,Ee.sG,HA.oV,cA.N,J.V,de.PV],encapsulation:2}))}return n(),l})();var gA=We(8321),C=We(1771),b=We(7541),R=We(2929),M=We(497);const D=()=>["all"],X=n=>({"error-border":n}),YA=()=>["no_invoice"],KA=n=>({"mr-0":n}),bA=n=>({width:n}),le=n=>({"display-none":n});function ve(n,l){1&n&&(A.j41(0,"span",19),A.EFF(1,"= "),A.k0s())}function Ne(n,l){if(1&n&&(A.j41(0,"span",20),A.nrm(1,"fa-icon",21),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function Te(n,l){if(1&n&&A.nrm(0,"span",22),2&n){const e=A.XpG(2);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function ze(n,l){if(1&n){const e=A.RV6();A.j41(0,"form",6,0)(2,"mat-form-field",7)(3,"mat-label"),A.EFF(4,"Description"),A.k0s(),A.j41(5,"input",8),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.description,o)||(r.description=o),w.Njj(o)}),A.k0s()(),A.j41(6,"mat-form-field",9)(7,"mat-label"),A.EFF(8,"Amount"),A.k0s(),A.j41(9,"input",10),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.invoiceValue,o)||(r.invoiceValue=o),w.Njj(o)}),A.bIt("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onInvoiceValueChange())}),A.k0s(),A.j41(10,"span",11),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",12),A.DNE(13,ve,2,0,"span",13)(14,Ne,2,1,"span",14)(15,Te,1,1,"span",15),A.EFF(16),A.k0s()(),A.j41(17,"div",16)(18,"button",17),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.resetData())}),A.EFF(19,"Clear Field"),A.k0s(),A.j41(20,"button",18),A.bIt("click",function(){w.eBV(e);const o=A.sdS(1),r=A.XpG();return w.Njj(r.onAddInvoice(o))}),A.EFF(21,"Create Invoice"),A.k0s()()()}if(2&n){const e=A.XpG();A.R7$(5),A.R50("ngModel",e.description),A.R7$(4),A.Y8G("step",100)("min",1),A.R50("ngModel",e.invoiceValue),A.R7$(4),A.Y8G("ngIf",""!==e.invoiceValueHint),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.invoiceValueHint),A.R7$(),A.SpI(" ",e.invoiceValueHint," ")}}function Oe(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",23)(1,"button",24),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDeleteExpiredInvoices())}),A.EFF(2,"Delete Expired"),A.k0s(),A.j41(3,"button",25),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.openCreateInvoiceModal())}),A.EFF(4,"Create Invoice"),A.k0s()()}}function oe(n,l){if(1&n&&(A.j41(0,"mat-option",62),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function sA(n,l){1&n&&A.nrm(0,"mat-progress-bar",63)}function S(n,l){1&n&&A.nrm(0,"th",64)}function Y(n,l){if(1&n&&A.nrm(0,"span",69),2&n){const e=A.XpG(3);A.Y8G("ngClass",A.eq3(1,KA,e.screenSize===e.screenSizeEnum.XS))}}function k(n,l){if(1&n&&A.nrm(0,"span",70),2&n){const e=A.XpG(3);A.Y8G("ngClass",A.eq3(1,KA,e.screenSize===e.screenSizeEnum.XS))}}function m(n,l){if(1&n&&A.nrm(0,"span",71),2&n){const e=A.XpG(3);A.Y8G("ngClass",A.eq3(1,KA,e.screenSize===e.screenSizeEnum.XS))}}function E(n,l){if(1&n&&(A.j41(0,"td",65),A.DNE(1,Y,1,3,"span",66)(2,k,1,3,"span",67)(3,m,1,3,"span",68),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf","paid"===(null==e?null:e.status)),A.R7$(),A.Y8G("ngIf","unpaid"===(null==e?null:e.status)),A.R7$(),A.Y8G("ngIf","expired"===(null==e?null:e.status))}}function mA(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Expiry Date"),A.k0s())}function ie(n,l){if(1&n&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==e?null:e.expires_at),"dd/MMM/y HH:mm")," ")}}function DA(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Date Settled"),A.k0s())}function Ae(n,l){if(1&n&&(A.j41(0,"td",65),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.paid_at),"dd/MMM/y HH:mm")||"-")}}function pe(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Type"),A.k0s())}function MA(n,l){if(1&n&&(A.j41(0,"td",65),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null!=e&&e.bolt12?"Bolt12":null!=e&&e.bolt11&&e.label.includes("keysend-")?"Keysend":"Bolt11")}}function Pe(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Description"),A.k0s())}function At(n,l){if(1&n&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,bA,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.description)}}function _(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Label"),A.k0s())}function be(n,l){if(1&n&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,bA,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.label)}}function Re(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Payment Hash"),A.k0s())}function SA(n,l){if(1&n&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,bA,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function we(n,l){1&n&&(A.j41(0,"th",72),A.EFF(1,"Invoice"),A.k0s())}function Fe(n,l){if(1&n&&(A.j41(0,"td",65)(1,"div",73)(2,"span",74),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,bA,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.bolt11)}}function et(n,l){1&n&&(A.j41(0,"th",75),A.EFF(1,"Amount (Sats)"),A.k0s())}function Ke(n,l){if(1&n&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_msat)/1e3,(null==e?null:e.amount_msat)<1e3?"1.0-4":"1.0-0"))}}function $e(n,l){1&n&&(A.j41(0,"th",75),A.EFF(1,"Amount Settled (Sats)"),A.k0s())}function ht(n,l){if(1&n&&(A.j41(0,"td",65)(1,"span",76),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_received_msat)/1e3,(null==e?null:e.amount_received_msat)<1e3?"1.0-4":"1.0-0"))}}function cn(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",77)(1,"div",78)(2,"mat-select",79),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",80),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function at(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",81)(1,"div",78)(2,"mat-select",82),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",80),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2);return w.Njj(r.onInvoiceClick(o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",80),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2);return w.Njj(r.onRefreshInvoice(o))}),A.EFF(7,"Refresh"),A.k0s()()()()}}function It(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No invoice available."),A.k0s())}function mt(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting invoices..."),A.k0s())}function Tt(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function Lt(n,l){if(1&n&&(A.j41(0,"td",83),A.DNE(1,It,2,0,"p",84)(2,mt,2,0,"p",84)(3,Tt,2,1,"p",84),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.invoices&&e.invoices.data)||(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function Qn(n,l){if(1&n&&A.nrm(0,"tr",85),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,le,(null==e.invoices?null:e.invoices.data)&&(null==e.invoices||null==e.invoices.data?null:e.invoices.data.length)>0))}}function pn(n,l){1&n&&A.nrm(0,"tr",86)}function Gt(n,l){1&n&&A.nrm(0,"tr",87)}function Mt(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",26)(1,"div",27)(2,"div",28),A.nrm(3,"fa-icon",29),A.j41(4,"span",30),A.EFF(5,"Invoices History"),A.k0s()(),A.j41(6,"div",31)(7,"mat-form-field",32)(8,"mat-label"),A.EFF(9,"Filter By"),A.k0s(),A.j41(10,"mat-select",33),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),w.Njj(o)}),A.bIt("selectionChange",function(){w.eBV(e);const o=A.XpG();return o.selFilter="",w.Njj(o.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,oe,2,2,"mat-option",34),A.k0s()()(),A.j41(13,"mat-form-field",32)(14,"mat-label"),A.EFF(15,"Filter"),A.k0s(),A.j41(16,"input",35),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),w.Njj(o)}),A.bIt("input",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())})("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())}),A.k0s()()()(),A.j41(17,"div",36),A.DNE(18,sA,1,0,"mat-progress-bar",37),A.j41(19,"table",38,1),A.qex(21,39),A.DNE(22,S,1,0,"th",40)(23,E,4,3,"td",41),A.bVm(),A.qex(24,42),A.DNE(25,mA,2,0,"th",43)(26,ie,3,4,"td",41),A.bVm(),A.qex(27,44),A.DNE(28,DA,2,0,"th",43)(29,Ae,3,4,"td",41),A.bVm(),A.qex(30,45),A.DNE(31,pe,2,0,"th",43)(32,MA,2,1,"td",41),A.bVm(),A.qex(33,46),A.DNE(34,Pe,2,0,"th",43)(35,At,4,4,"td",41),A.bVm(),A.qex(36,47),A.DNE(37,_,2,0,"th",43)(38,be,4,4,"td",41),A.bVm(),A.qex(39,48),A.DNE(40,Re,2,0,"th",43)(41,SA,4,4,"td",41),A.bVm(),A.qex(42,49),A.DNE(43,we,2,0,"th",43)(44,Fe,4,4,"td",41),A.bVm(),A.qex(45,50),A.DNE(46,et,2,0,"th",51)(47,Ke,4,4,"td",41),A.bVm(),A.qex(48,52),A.DNE(49,$e,2,0,"th",51)(50,ht,4,4,"td",41),A.bVm(),A.qex(51,53),A.DNE(52,cn,6,0,"th",54)(53,at,8,0,"td",55),A.bVm(),A.qex(54,56),A.DNE(55,Lt,4,3,"td",57),A.bVm(),A.DNE(56,Qn,1,3,"tr",58)(57,pn,1,0,"tr",59)(58,Gt,1,0,"tr",60),A.k0s()(),A.nrm(59,"mat-paginator",61),A.k0s()}if(2&n){const e=A.XpG();A.R7$(3),A.Y8G("icon",e.faHistory),A.R7$(7),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,D).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter),A.R7$(2),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.invoices)("ngClass",A.eq3(16,X,""!==e.errorMessage)),A.R7$(37),A.Y8G("matFooterRowDef",A.lJ4(18,YA)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns),A.R7$(),A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Ot=(()=>{var n;class l{constructor(i,o,r,iA,ne,re,ln,Qt){this.logger=i,this.store=o,this.decimalPipe=r,this.commonService=iA,this.rtlEffects=ne,this.datePipe=re,this.actions=ln,this.camelCaseWithReplace=Qt,this.calledFrom="transactions",this.faHistory=v.Int,this.nodePageDefs=B.Jd,this.convertedCurrency=null,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"invoices",recordsPerPage:B.md,sortBy:"expires_at",sortOrder:B.oi.DESCENDING},this.newlyAddedInvoiceMemo="",this.newlyAddedInvoiceValue=0,this.description="",this.invoiceValue=null,this.invoiceValueHint="",this.displayedColumns=[],this.invoicePaymentReq="",this.invoices=new z.I6([]),this.invoiceJSONArr=[],this.information={},this.private=!1,this.expiryStep=100,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.Pj).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.invoiceJSONArr=i.listInvoices.invoices||[],this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr),this.logger.info(i)}),this.actions.pipe((0,I.Q)(this.unSubs[4]),(0,nA.p)(i=>i.type===B.TC.SET_LOOKUP_CLN||i.type===B.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{i.type===B.TC.SET_LOOKUP_CLN&&this.invoiceJSONArr&&this.sort&&this.paginator&&i.payload&&(this.updateInvoicesData(JSON.parse(JSON.stringify(i.payload))),this.loadInvoicesTable(this.invoiceJSONArr))})}ngAfterViewInit(){this.invoiceJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadInvoicesTable(this.invoiceJSONArr)}openCreateInvoiceModal(){this.store.dispatch((0,C.xO)({payload:{data:{pageSize:this.pageSize,component:IA}}}))}onAddInvoice(i){this.invoiceValue||(this.invoiceValue=0);const o=this.expiry?this.expiry:B.It;this.newlyAddedInvoiceMemo="ulbl"+Math.random().toString(36).slice(2)+Date.now(),this.newlyAddedInvoiceValue=this.invoiceValue,this.store.dispatch((0,VA.VK)({payload:{label:this.newlyAddedInvoiceMemo,amount_msat:this.invoiceValue?1e3*this.invoiceValue:"any",description:this.description,expiry:o,exposeprivatechannels:this.private}})),this.resetData()}onDeleteExpiredInvoices(){this.store.dispatch((0,C.I1)({payload:{data:{type:"CONFIRM",titleMessage:"Delete Expired Invoices",noBtnText:"Cancel",yesBtnText:"Delete Invoices"}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[5])).subscribe(i=>{i&&this.store.dispatch((0,VA.a5)({payload:null}))})}onInvoiceClick(i){this.store.dispatch((0,C.xO)({payload:{data:{invoice:{amount_msat:i.amount_msat,label:i.label,expires_at:i.expires_at,paid_at:i.paid_at,bolt11:i.bolt11,payment_hash:i.payment_hash,description:i.description,status:i.status,amount_received_msat:i.amount_received_msat},newlyAdded:!1,component:gA.y}}}))}resetData(){this.description="",this.invoiceValue=null,this.private=!1,this.expiry=null,this.invoiceValueHint=""}applyFilter(){this.invoices.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.invoices.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=this.datePipe.transform(new Date(1e3*(i.paid_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+this.datePipe.transform(new Date(1e3*(i.expires_at||0)),"dd/MMM/y HH:mm")?.toLowerCase()+(i.bolt12?"bolt12":i.bolt11?"bolt11":"keysend")+JSON.stringify(i).toLowerCase();break;case"status":r="paid"===i?.status?"paid":"unpaid"===i?.status?"unpaid":"expired";break;case"expires_at":case"paid_at":r=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"type":r=i?.bolt12?"bolt12":i?.bolt11&&i?.label?.includes("keysend-")?"keysend":"bolt11";break;case"msatoshi":r=((i.amount_msat||0)/1e3).toString()||"";break;case"msatoshi_received":r=((i.amount_received_msat||0)/1e3).toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"status"===this.selFilterBy||"type"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}onInvoiceValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.invoiceValue>99&&(this.invoiceValueHint="",this.commonService.convertCurrency(this.invoiceValue,B.BQ.SATS,B.BQ.OTHER,this.selNode?.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[6])).subscribe({next:i=>{this.convertedCurrency=i,this.invoiceValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,B.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.invoiceValueHint="Conversion Error: "+i}}))}onRefreshInvoice(i){this.store.dispatch((0,VA.Yi)({payload:i.label}))}updateInvoicesData(i){this.invoiceJSONArr=this.invoiceJSONArr?.map(o=>o.label===i.label?i:o)}loadInvoicesTable(i){this.invoices=new z.I6(i?[...i]:[]),this.invoices.sort=this.sort,this.invoices.sortingDataAccessor=(o,r)=>{switch(r){case"msatoshi":return o.amount_msat;case"msatoshi_received":return o.amount_received_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.invoices.paginator=this.paginator,this.applyFilter(),this.setFilterPredicate()}onDownloadCSV(){this.invoices.data&&this.invoices.data.length>0&&this.commonService.downloadFile(this.invoices.data,"Invoices")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(de.QX),A.rXU(L.h),A.rXU(b.H),A.rXU(de.vh),A.rXU(kA.En),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-lightning-invoices-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Invoices")}])],decls:4,vars:3,consts:[["addInvoiceForm","ngForm"],["table",""],["fxLayout","column","fxFlex","110","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","stretch start","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["matInput","","tabindex","2","name","description",3,"ngModelChange","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","name","invoiceValue","type","number","tabindex","3",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","row wrap","fxFlex","100"],["class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","9","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],[1,"mr-3px"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["mat-stroked-button","","color","warn","tabindex","7","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","expires_at"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","paid_at"],["matColumnDef","type"],["matColumnDef","description"],["matColumnDef","label"],["matColumnDef","payment_hash"],["matColumnDef","bolt11"],["matColumnDef","msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi_received"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_invoice"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Paid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Expired","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Paid","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Expired","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){1&o&&(A.j41(0,"div",2),A.DNE(1,ze,22,8,"form",3)(2,Oe,5,0,"div",4)(3,Mt,60,19,"div",5),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf","home"===r.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===r.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===r.calledFrom))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.VZ,hA.vS,hA.cV,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,yA.MV,yA.yw,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld,J.V,de.QX,de.vh],styles:[".mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();var bt=We(6697),Dt=We(1534),Ze=We(2765),qe=We(5951);const Et=["sendPaymentForm"],ct=["paymentAmt"],Ht=["offerAmt"],Jt=["paymentReq"],GA=["offerReq"];function zA(n,l){if(1&n&&(A.j41(0,"mat-radio-button",26),A.EFF(1,"Offer"),A.k0s()),2&n){const e=A.XpG();A.Y8G("value",A.mNQ(e.paymentTypes.OFFER))}}function vA(n,l){1&n&&A.eu8(0)}function qA(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.paymentError)}}function ZA(n,l){if(1&n&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,qA,2,1,"span",29),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.paymentError)}}function jA(n,l){if(1&n&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function ue(n,l){if(1&n&&A.nrm(0,"span",39),2&n){const e=A.XpG(3);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function WA(n,l){if(1&n&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,jA,2,1,"span",35)(3,ue,1,1,"span",36),A.EFF(4),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI(" ",e.paymentDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),A.R7$(),A.SpI(" ",e.paymentDecodedHintPost," ")}}function ae(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function ce(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.paymentDecodedHint)}}function ye(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Payment amount is required."),A.k0s())}function ke(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",10)(1,"mat-label"),A.EFF(2,"Amount (Sats)"),A.k0s(),A.j41(3,"input",40,5),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG(2);return A.DH7(r.paymentAmount,o)||(r.paymentAmount=o),w.Njj(o)}),A.bIt("change",function(o){w.eBV(e);const r=A.XpG(2);return w.Njj(r.onAmountChange(o))}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6,"It is a zero amount invoice, enter amount to be paid."),A.k0s(),A.DNE(7,ye,2,0,"mat-error",29),A.k0s()}if(2&n){const e=A.XpG(2);A.R7$(3),A.R50("ngModel",e.paymentAmount),A.R7$(4),A.Y8G("ngIf",!e.paymentAmount)}}function Je(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Payment Request"),A.k0s(),A.j41(3,"textarea",31,4),A.bIt("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onPaymentRequestEntry(o))})("matTextareaAutosize",function(){return w.eBV(e),w.Njj(!0)}),A.k0s(),A.DNE(5,WA,5,4,"mat-hint",32)(6,ae,2,0,"mat-error",29)(7,ce,2,1,"mat-error",29),A.k0s(),A.DNE(8,ke,8,2,"mat-form-field",33)}if(2&n){const e=A.sdS(4),i=A.XpG();A.R7$(3),A.Y8G("ngModel",i.paymentRequest),A.R7$(2),A.Y8G("ngIf",i.paymentRequest&&""!==i.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",!i.paymentRequest),A.R7$(),A.Y8G("ngIf",null==e.errors?null:e.errors.decodeError),A.R7$(),A.Y8G("ngIf",i.zeroAmtInvoice)}}function tt(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Pubkey is required."),A.k0s())}function je(n,l){1&n&&(A.j41(0,"span",45),A.EFF(1,"= "),A.k0s())}function Ce(n,l){if(1&n&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function _e(n,l){if(1&n&&A.nrm(0,"span",39),2&n){const e=A.XpG(2);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function st(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Keysend amount is required."),A.k0s())}function lt(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Pubkey"),A.k0s(),A.j41(3,"input",41),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.pubkey,o)||(r.pubkey=o),w.Njj(o)}),A.k0s(),A.DNE(4,tt,2,0,"mat-error",29),A.k0s(),A.j41(5,"mat-form-field",30)(6,"mat-label"),A.EFF(7,"Amount"),A.k0s(),A.j41(8,"input",42,6),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.keysendAmount,o)||(r.keysendAmount=o),w.Njj(o)}),A.bIt("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onKeysendAmountChange())}),A.k0s(),A.j41(10,"span",43),A.EFF(11,"Sats "),A.k0s(),A.j41(12,"mat-hint",34),A.DNE(13,je,2,0,"span",44)(14,Ce,2,1,"span",35)(15,_e,1,1,"span",36),A.EFF(16),A.k0s(),A.DNE(17,st,2,0,"mat-error",29),A.k0s()}if(2&n){const e=A.XpG();A.R7$(3),A.R50("ngModel",e.pubkey),A.R7$(),A.Y8G("ngIf",!e.pubkey),A.R7$(4),A.R50("ngModel",e.keysendAmount),A.R7$(5),A.Y8G("ngIf",""!==e.keysendValueHint),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.keysendValueHint),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.keysendValueHint),A.R7$(),A.SpI(" ",e.keysendValueHint," "),A.R7$(),A.Y8G("ngIf",!e.keysendAmount)}}function wt(n,l){if(1&n&&(A.j41(0,"span",37),A.nrm(1,"fa-icon",38),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function Bt(n,l){if(1&n&&A.nrm(0,"span",39),2&n){const e=A.XpG(3);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function pt(n,l){if(1&n&&(A.j41(0,"mat-hint",34),A.EFF(1),A.DNE(2,wt,2,1,"span",35)(3,Bt,1,1,"span",36),A.EFF(4),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI(" ",e.offerDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.offerDecodedHintPre),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.offerDecodedHintPre),A.R7$(),A.SpI(" ",e.offerDecodedHintPost," ")}}function ot(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Offer request is required."),A.k0s())}function ut(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.offerDecodedHint)}}function an(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Offer amount is required."),A.k0s())}function Wt(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",10)(1,"mat-label"),A.EFF(2,"Amount (Sats)"),A.k0s(),A.j41(3,"input",51,8),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG(2);return A.DH7(r.offerAmount,o)||(r.offerAmount=o),w.Njj(o)}),A.bIt("change",function(o){w.eBV(e);const r=A.XpG(2);return w.Njj(r.onAmountChange(o))}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6,"It is a zero amount offer, enter amount to be paid."),A.k0s(),A.DNE(7,an,2,0,"mat-error",29),A.k0s()}if(2&n){const e=A.XpG(2);A.R7$(3),A.R50("ngModel",e.offerAmount),A.R7$(4),A.Y8G("ngIf",!e.offerAmount)}}function _t(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",52)(1,"mat-label"),A.EFF(2,"Title to Save"),A.k0s(),A.j41(3,"input",53),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG(2);return A.DH7(r.offerTitle,o)||(r.offerTitle=o),w.Njj(o)}),A.k0s()()}if(2&n){const e=A.XpG(2);A.R7$(3),A.R50("ngModel",e.offerTitle)}}function Pt(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",30)(1,"mat-label"),A.EFF(2,"Offer Request"),A.k0s(),A.j41(3,"textarea",46,7),A.bIt("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onPaymentRequestEntry(o))})("matTextareaAutosize",function(){return w.eBV(e),w.Njj(!0)}),A.k0s(),A.DNE(5,pt,5,4,"mat-hint",32)(6,ot,2,0,"mat-error",29)(7,ut,2,1,"mat-error",29),A.k0s(),A.DNE(8,Wt,8,2,"mat-form-field",33),A.j41(9,"div",47)(10,"mat-checkbox",48),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.flgSaveToDB,o)||(r.flgSaveToDB=o),w.Njj(o)}),A.EFF(11,"Bookmark Offer"),A.k0s(),A.j41(12,"mat-icon",49),A.EFF(13,"info_outline"),A.k0s()(),A.DNE(14,_t,4,1,"mat-form-field",50)}if(2&n){const e=A.sdS(4),i=A.XpG();A.R7$(3),A.Y8G("ngModel",i.offerRequest),A.R7$(2),A.Y8G("ngIf",i.offerRequest&&""!==i.offerDecodedHintPre),A.R7$(),A.Y8G("ngIf",!i.offerRequest),A.R7$(),A.Y8G("ngIf",null==e.errors?null:e.errors.decodeError),A.R7$(),A.Y8G("ngIf",i.zeroAmtOffer),A.R7$(2),A.R50("ngModel",i.flgSaveToDB),A.R7$(4),A.Y8G("ngIf",i.flgSaveToDB||""!==i.offerTitle)}}let Bn=(()=>{var n;class l{set payReq(i){i&&(this.paymentReq=i)}set offrReq(i){i&&(this.offerReq=i)}constructor(i,o,r,iA,ne,re,ln,Qt){this.dialogRef=i,this.data=o,this.store=r,this.logger=iA,this.commonService=ne,this.decimalPipe=re,this.actions=ln,this.dataService=Qt,this.faExclamationTriangle=v.zpE,this.convertedCurrency=null,this.paymentTypes=B.Y0,this.paymentType=B.Y0.INVOICE,this.offerDecoded={},this.offerRequest="",this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.offerDescription="",this.offerIssuer="",this.offerTitle="",this.zeroAmtOffer=!1,this.offerInvoice=null,this.offerAmount=null,this.flgSaveToDB=!1,this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentAmount=null,this.pubkey="",this.keysendAmount=null,this.keysendValueHint="",this.selActiveChannel={},this.activeChannels={},this.feeLimit=null,this.selFeeLimitType=B.nv[0],this.feeLimitTypes=B.nv,this.paymentError="",this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B]}ngOnInit(){if(this.data&&this.data.paymentType)switch(this.paymentType=this.data.paymentType,this.paymentType){case B.Y0.INVOICE:this.paymentRequest=this.data.invoiceBolt11;break;case B.Y0.KEYSEND:this.pubkey=this.data.pubkeyKeysend;break;case B.Y0.OFFER:this.onPaymentRequestEntry(this.data.bolt12),this.offerTitle=this.data.offerTitle,this.flgSaveToDB=!1}this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.activeChannels=i.activeChannels,this.logger.info(i)}),this.actions.pipe((0,I.Q)(this.unSubs[3]),(0,nA.p)(i=>i.type===B.TC.UPDATE_API_CALL_STATUS_CLN||i.type===B.TC.SEND_PAYMENT_STATUS_CLN||i.type===B.TC.SET_OFFER_INVOICE_CLN)).subscribe(i=>{i.type===B.TC.SEND_PAYMENT_STATUS_CLN&&this.dialogRef.close(),i.type===B.TC.SET_OFFER_INVOICE_CLN&&(this.offerInvoice=i.payload,this.sendPayment()),i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===B.wn.ERROR&&("SendPayment"===i.payload.action&&(delete this.paymentDecoded.amount_msat,this.paymentError=i.payload.message),"DecodePayment"===i.payload.action&&(this.paymentType===B.Y0.INVOICE&&(this.paymentDecodedHintPre="ERROR: "+i.payload.message,this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})),this.paymentType===B.Y0.OFFER&&(this.offerDecodedHintPre="ERROR: "+i.payload.message,this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})),this.paymentType===B.Y0.KEYSEND&&(this.keysendValueHint="ERROR: "+i.payload.message)),"FetchOfferInvoice"===i.payload.action&&this.paymentType===B.Y0.OFFER&&(this.paymentError=i.payload.message))})}onSendPayment(){switch(this.paymentType){case B.Y0.KEYSEND:if(!this.pubkey||""===this.pubkey.trim()||!this.keysendAmount||this.keysendAmount<=0)return!0;this.keysendPayment();break;case B.Y0.INVOICE:if(!this.paymentRequest||this.zeroAmtInvoice&&(0===this.paymentAmount||!this.paymentAmount))return this.paymentReq.control.markAsTouched(),this.paymentAmt.control.markAsTouched(),!0;this.paymentDecoded.created_at?this.sendPayment():(this.resetInvoiceDetails(),this.dataService.decodePayment(this.paymentRequest,!0).pipe((0,I.Q)(this.unSubs[4])).subscribe(i=>{"bolt12 offer"===i.type&&i.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=i,this.setPaymentDecodedDetails())}));break;case B.Y0.OFFER:if(!this.offerRequest||this.zeroAmtOffer&&(0===this.offerAmount||!this.offerAmount))return this.offerReq.control.markAsTouched(),this.offerAmt.control.markAsTouched(),!0;this.offerDecoded.offer_id?this.sendPayment():(this.resetOfferDetails(),this.dataService.decodePayment(this.offerRequest,!0).pipe((0,I.Q)(this.unSubs[5])).subscribe(i=>{"bolt11 invoice"===i.type&&i.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=i,this.setOfferDecodedDetails())}))}}keysendPayment(){this.keysendAmount&&this.store.dispatch((0,VA.Fd)({payload:{uiMessage:B.MZ.SEND_KEYSEND,paymentType:B.Y0.KEYSEND,destination:this.pubkey,amount_msat:1e3*this.keysendAmount,fromDialog:!0}}))}sendPayment(){this.paymentError="",this.paymentType===B.Y0.INVOICE?this.store.dispatch((0,VA.Fd)(this.zeroAmtInvoice&&this.paymentAmount?{payload:{uiMessage:B.MZ.SEND_PAYMENT,paymentType:B.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*this.paymentAmount,fromDialog:!0}}:{payload:{uiMessage:B.MZ.SEND_PAYMENT,paymentType:B.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!0}})):this.paymentType===B.Y0.OFFER&&(this.offerInvoice?this.offerAmount&&this.store.dispatch((0,VA.Fd)({payload:{uiMessage:B.MZ.SEND_PAYMENT,paymentType:B.Y0.OFFER,bolt11:this.offerInvoice.invoice,saveToDB:this.flgSaveToDB,bolt12:this.offerRequest,amount_msat:1e3*this.offerAmount,zeroAmtOffer:this.zeroAmtOffer,title:this.offerTitle,issuer:this.offerIssuer,description:this.offerDescription,fromDialog:!0}})):this.store.dispatch((0,VA.Ew)(this.zeroAmtOffer&&this.offerAmount?{payload:{offer:this.offerRequest,amount_msat:1e3*this.offerAmount}}:{payload:{offer:this.offerRequest}})))}onPaymentRequestEntry(i){this.paymentType===B.Y0.INVOICE?(this.paymentRequest=i,this.resetInvoiceDetails()):this.paymentType===B.Y0.OFFER&&(this.offerRequest=i,this.resetOfferDetails()),i.length>100&&this.dataService.decodePayment(i,!0).pipe((0,I.Q)(this.unSubs[6])).subscribe(o=>{this.paymentType===B.Y0.INVOICE?"bolt12 offer"===o.type&&o.offer_id?(this.paymentDecodedHintPre="ERROR: Select Offer option to pay the bolt12 offer invoice.",this.paymentDecodedHintPost="",this.paymentReq.control.setErrors({decodeError:!0})):(this.paymentDecoded=o,this.setPaymentDecodedDetails()):this.paymentType===B.Y0.OFFER&&("bolt11 invoice"===o.type&&o.payment_hash?(this.offerDecodedHintPre="ERROR: Select Invoice option to pay the bolt11 invoice.",this.offerDecodedHintPost="",this.offerReq.control.setErrors({decodeError:!0})):(this.offerDecoded=o,this.setOfferDecodedDetails()))})}resetOfferDetails(){this.offerInvoice=null,this.offerAmount=null,this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.zeroAmtOffer=!1,this.paymentError="",this.offerReq&&this.offerReq.control.setErrors(null)}resetInvoiceDetails(){this.paymentAmount=null,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.zeroAmtInvoice=!1,this.paymentError="",this.paymentReq&&this.paymentReq.control.setErrors(null)}onAmountChange(i){this.paymentType===B.Y0.INVOICE&&(delete this.paymentDecoded.amount_msat,this.paymentDecoded.amount_msat=+i.target.value),this.paymentType===B.Y0.OFFER&&(delete this.offerDecoded.offer_amount_msat,this.offerDecoded.offer_amount_msat=i.target.value)}onPaymentTypeChange(){this.paymentError="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.offerDecodedHintPre="",this.offerDecodedHintPost="",this.offerInvoice=null}setOfferDecodedDetails(){this.offerDecoded.offer_id&&!this.offerDecoded.offer_amount_msat?(this.offerDecoded.offer_amount_msat=0,this.zeroAmtOffer=!0,this.offerDescription=this.offerDecoded.offer_description||"",this.offerIssuer=this.offerDecoded.offer_issuer?this.offerDecoded.offer_issuer:"",this.offerDecodedHintPre="Zero Amount Offer | Description: "+this.offerDecoded.offer_description,this.offerDecodedHintPost=""):(this.zeroAmtOffer=!1,this.offerAmount=this.offerDecoded.offer_amount_msat?this.offerDecoded.offer_amount_msat/1e3:0,this.offerDescription=this.offerDecoded.offer_description||"",this.offerIssuer=this.offerDecoded.offer_issuer?this.offerDecoded.offer_issuer:"",this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(this.offerAmount,B.BQ.SATS,B.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[7])).subscribe({next:i=>{this.convertedCurrency=i,this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats (",this.offerDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,B.k.OTHER)+" "+this.convertedCurrency.unit+") | Description: "+this.offerDecoded.offer_description},error:i=>{this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.offer_description+". Unable to convert currency.",this.offerDecodedHintPost=""}}):(this.offerDecodedHintPre="Sending: "+this.decimalPipe.transform(this.offerAmount)+" Sats | Description: "+this.offerDecoded.offer_description,this.offerDecodedHintPost=""))}setPaymentDecodedDetails(){this.paymentDecoded.created_at&&!this.paymentDecoded.amount_msat?(this.paymentDecoded.amount_msat=0,this.zeroAmtInvoice=!0,this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.zeroAmtInvoice=!1,this.selNode&&this.selNode.settings.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0,B.BQ.SATS,B.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[8])).subscribe({next:i=>{this.convertedCurrency=i,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,B.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:i=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""))}resetData(){switch(this.paymentType){case B.Y0.KEYSEND:this.pubkey="",this.keysendValueHint="",this.keysendAmount=null;break;case B.Y0.INVOICE:this.paymentRequest="",this.paymentDecoded={},this.selActiveChannel=null,this.feeLimit=null,this.selFeeLimitType=B.nv[0],this.resetInvoiceDetails();break;case B.Y0.OFFER:this.offerRequest="",this.offerDecoded={},this.flgSaveToDB=!1,this.resetOfferDetails()}this.paymentError=""}onKeysendAmountChange(){this.selNode&&this.selNode.settings.fiatConversion&&(this.keysendValueHint="",this.keysendAmount&&this.keysendAmount>99&&this.commonService.convertCurrency(this.keysendAmount,B.BQ.SATS,B.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[3])).subscribe({next:i=>{this.convertedCurrency=i,this.keysendValueHint=this.decimalPipe.transform(this.convertedCurrency.OTHER,B.k.OTHER)+" "+this.convertedCurrency.unit},error:i=>{this.keysendValueHint="Conversion Error: "+i}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(AA.il),A.rXU(aA.gP),A.rXU(L.h),A.rXU(de.QX),A.rXU(kA.En),A.rXU(Dt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-lightning-send-payments"]],viewQuery:function(o,r){if(1&o&&(A.GBs(Et,5),A.GBs(ct,5),A.GBs(Ht,5),A.GBs(Jt,5),A.GBs(GA,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first),A.mGM(iA=A.lsd())&&(r.paymentAmt=iA.first),A.mGM(iA=A.lsd())&&(r.offerAmt=iA.first),A.mGM(iA=A.lsd())&&(r.payReq=iA.first),A.mGM(iA=A.lsd())&&(r.offrReq=iA.first)}},standalone:!1,decls:30,vars:9,consts:[["sendPaymentForm","ngForm"],["invoiceBlock",""],["keysendBlock",""],["offerBlock",""],["paymentReq","ngModel"],["paymentAmt","ngModel"],["keysendAmt","ngModel"],["offerReq","ngModel"],["offerAmt","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","12","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["color","primary","name","paymentType","fxFlex","100","fxLayoutAlign","start start",1,"my-1",3,"ngModelChange","change","ngModel"],["fxFlex","20","tabindex","1",3,"value"],["fxFlex","20","tabindex","2",3,"value"],["fxFlex","20","tabindex","3",3,"value",4,"ngIf"],["fxLayoutAlign","space-between stretch","fxLayout","column",3,"submit","reset"],[4,"ngTemplateOutlet"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","9","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit","tabindex","8"],["fxFlex","20","tabindex","3",3,"value"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","rows","4","name","paymentRequest","tabindex","4","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["matInput","","name","amount","tabindex","5","required","",3,"ngModelChange","change","ngModel"],["autoFocus","","matInput","","name","pubkey","tabindex","4","required","",3,"ngModelChange","ngModel"],["matInput","","name","keysendAmount","tabindex","5","required","",3,"ngModelChange","keyup","ngModel"],["matSuffix",""],["class","mr-3px",4,"ngIf"],[1,"mr-3px"],["autoFocus","","matInput","","rows","4","name","offerRequest","tabindex","4","required","",3,"ngModelChange","matTextareaAutosize","ngModel"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["fxFlex","none","tabindex","6","color","primary",3,"ngModelChange","ngModel"],["matTooltip","Save offer in database for future payments","matTooltipPosition","below","fxFlex","none",1,"info-icon"],["fxFlex","100","class","mt-1",4,"ngIf"],["matInput","","name","amountoffer","tabindex","5","required","",3,"ngModelChange","change","ngModel"],["fxFlex","100",1,"mt-1"],["matInput","","tabindex","7",3,"ngModelChange","ngModel"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",9)(1,"div",10)(2,"mat-card-header",11)(3,"div",12)(4,"span",13),A.EFF(5,"Send Payment"),A.k0s()(),A.j41(6,"button",14),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",15)(9,"mat-radio-group",16),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.paymentType,re)||(r.paymentType=re),w.Njj(re)}),A.bIt("change",function(){return w.eBV(iA),w.Njj(r.onPaymentTypeChange())}),A.j41(10,"mat-radio-button",17),A.EFF(11,"Invoice"),A.k0s(),A.j41(12,"mat-radio-button",18),A.EFF(13,"Keysend"),A.k0s(),A.DNE(14,zA,2,2,"mat-radio-button",19),A.k0s(),A.j41(15,"form",20,0),A.bIt("submit",function(){return w.eBV(iA),w.Njj(r.onSendPayment())})("reset",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.DNE(17,vA,1,0,"ng-container",21)(18,ZA,3,2,"div",22),A.j41(19,"div",23)(20,"button",24),A.EFF(21,"Clear Fields"),A.k0s(),A.j41(22,"button",25),A.EFF(23,"Send Payment"),A.k0s()()()()()(),A.DNE(24,Je,9,5,"ng-template",null,1,A.C5r)(26,lt,18,8,"ng-template",null,2,A.C5r)(28,Pt,15,7,"ng-template",null,3,A.C5r)}if(2&o){const iA=A.sdS(25),ne=A.sdS(27),re=A.sdS(29);A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.R50("ngModel",r.paymentType),A.R7$(),A.Y8G("value",A.mNQ(r.paymentTypes.INVOICE)),A.R7$(2),A.Y8G("value",A.mNQ(r.paymentTypes.KEYSEND)),A.R7$(2),A.Y8G("ngIf",r.selNode.settings.enableOffers),A.R7$(3),A.Y8G("ngTemplateOutlet",r.paymentType===r.paymentTypes.KEYSEND?ne:r.paymentType===r.paymentTypes.OFFER?re:iA),A.R7$(),A.Y8G("ngIf",""!==r.paymentError)}},dependencies:[de.bT,de.T3,hA.qT,hA.me,hA.BC,hA.cb,hA.YS,hA.vS,hA.cV,P.aY,wA.tx,fA.$z,QA.m2,QA.MM,Ze.So,oA.An,UA.fg,yA.rl,yA.nJ,yA.MV,yA.TL,yA.yw,qe.VT,qe._g,Q.DJ,Q.sA,Q.UI,HA.oV,cA.N],encapsulation:2}))}return n(),l})();const In=["sendPaymentForm"],Dn=()=>["all"],Cn=n=>({"error-border":n}),Nn=()=>["no_payment"],St=n=>({width:n}),vn=n=>({"display-none":n});function Un(n,l){if(1&n&&(A.j41(0,"span",18),A.nrm(1,"fa-icon",19),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("icon",e.convertedCurrency.symbol)}}function Ln(n,l){if(1&n&&A.nrm(0,"span",20),2&n){const e=A.XpG(3);A.Y8G("innerHTML",e.convertedCurrency.symbol,A.npT)}}function Fn(n,l){if(1&n&&(A.j41(0,"mat-hint",15),A.EFF(1),A.DNE(2,Un,2,1,"span",16)(3,Ln,1,1,"span",17),A.EFF(4),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI(" ",e.paymentDecodedHintPre," "),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"FA"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",e.convertedCurrency&&"SVG"===e.convertedCurrency.iconType&&""!==e.paymentDecodedHintPre),A.R7$(),A.SpI(" ",e.paymentDecodedHintPost," ")}}function On(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Payment request is required."),A.k0s())}function Ei(n,l){if(1&n){const e=A.RV6();A.j41(0,"form",7,0)(2,"mat-form-field",8)(3,"mat-label"),A.EFF(4,"Payment Request"),A.k0s(),A.j41(5,"textarea",9,1),A.bIt("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onPaymentRequestEntry(o))})("matTextareaAutosize",function(){return w.eBV(e),w.Njj(!0)}),A.k0s(),A.DNE(7,Fn,5,4,"mat-hint",10)(8,On,2,0,"mat-error",11),A.k0s(),A.j41(9,"div",12)(10,"button",13),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.resetData())}),A.EFF(11,"Clear Field"),A.k0s(),A.j41(12,"button",14),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onSendPayment())}),A.EFF(13,"Send Payment"),A.k0s()()()}if(2&n){const e=A.XpG();A.R7$(5),A.Y8G("ngModel",e.paymentRequest),A.R7$(2),A.Y8G("ngIf",e.paymentRequest&&""!==e.paymentDecodedHintPre),A.R7$(),A.Y8G("ngIf",!e.paymentRequest)}}function wi(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",21)(1,"button",14),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.openSendPaymentModal())}),A.EFF(2,"Send Payment"),A.k0s()()}}function Ci(n,l){if(1&n&&(A.j41(0,"mat-option",70),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function di(n,l){1&n&&A.nrm(0,"mat-progress-bar",71)}function ri(n,l){1&n&&A.nrm(0,"th",72)}function xn(n,l){1&n&&A.nrm(0,"span",76)}function ai(n,l){1&n&&A.nrm(0,"span",77)}function Ki(n,l){if(1&n&&(A.j41(0,"td",73),A.DNE(1,xn,1,0,"span",74)(2,ai,1,0,"span",75),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf","complete"===e.status),A.R7$(),A.Y8G("ngIf","complete"!==e.status)}}function Qi(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Created At"),A.k0s())}function Xi(n,l){if(1&n&&(A.j41(0,"td",73),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*(null==e?null:e.created_at),"dd/MMM/y HH:mm")," ")}}function mi(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Type"),A.k0s())}function fn(n,l){if(1&n&&(A.j41(0,"td",73),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null!=e&&e.bolt12?"Bolt12":null!=e&&e.bolt11?"Bolt11":"Keysend")}}function ms(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Payment Hash"),A.k0s())}function Ms(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function Mi(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Invoice"),A.k0s())}function pi(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.bolt11)}}function Zi(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Label"),A.k0s())}function qi(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.label)}}function $i(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Destination"),A.k0s())}function ps(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.destination)}}function As(n,l){1&n&&(A.j41(0,"th",78),A.EFF(1,"Memo"),A.k0s())}function Is(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",79)(2,"span",80),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.memo)}}function Ui(n,l){1&n&&(A.j41(0,"th",81),A.EFF(1,"Sats Sent"),A.k0s())}function es(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_sent_msat)/1e3,"1.0-4"))}}function Zn(n,l){1&n&&(A.j41(0,"th",81),A.EFF(1,"Sats Received"),A.k0s())}function Ds(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",82),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.amount_msat)/1e3,"1.0-4"))}}function Fs(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",83)(1,"div",84)(2,"mat-select",85),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",86),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Li(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",87)(1,"button",88),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2);return w.Njj(r.onPaymentClick(o))}),A.EFF(2,"View Info"),A.k0s()()}}function Gi(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No payment available."),A.k0s())}function un(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting payments..."),A.k0s())}function Ii(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function qn(n,l){if(1&n&&(A.j41(0,"td",89),A.DNE(1,Gi,2,0,"p",11)(2,un,2,0,"p",11)(3,Ii,2,1,"p",11),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",!(null!=e.payments&&e.payments.data&&null!=e.payments&&null!=e.payments.data&&e.payments.data.length||(null==e.apiCallStatus?null:e.apiCallStatus.status)!==e.apiCallStatusEnum.COMPLETED)),A.R7$(),A.Y8G("ngIf",!(null!=e.payments&&e.payments.data&&null!=e.payments&&null!=e.payments.data&&e.payments.data.length||(null==e.apiCallStatus?null:e.apiCallStatus.status)!==e.apiCallStatusEnum.INITIATED)),A.R7$(),A.Y8G("ngIf",!(null!=e.payments&&e.payments.data&&null!=e.payments&&null!=e.payments.data&&e.payments.data.length||(null==e.apiCallStatus?null:e.apiCallStatus.status)!==e.apiCallStatusEnum.ERROR))}}function ys(n,l){1&n&&A.nrm(0,"span",76)}function xs(n,l){1&n&&A.nrm(0,"span",77)}function Di(n,l){1&n&&A.nrm(0,"span",76)}function oi(n,l){1&n&&A.nrm(0,"span",77)}function Ys(n,l){if(1&n&&(A.j41(0,"span",90),A.DNE(1,Di,1,0,"span",74)(2,oi,1,0,"span",75),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf","complete"===e.status),A.R7$(),A.Y8G("ngIf","complete"!==e.status)}}function bs(n,l){if(1&n&&(A.qex(0),A.DNE(1,Ys,3,2,"span",91),A.bVm()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function zi(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",90),A.DNE(2,ys,1,0,"span",74)(3,xs,1,0,"span",75),A.k0s(),A.DNE(4,bs,2,1,"ng-container",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.Y8G("ngIf","complete"===e.status),A.R7$(),A.Y8G("ngIf","complete"!==e.status),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function vs(n,l){if(1&n&&(A.j41(0,"span",90),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,1e3*e.created_at,"dd/MMM/y HH:mm")," ")}}function ts(n,l){if(1&n&&(A.qex(0),A.DNE(1,vs,3,4,"span",91),A.bVm()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function Rs(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,ts,2,1,"ng-container",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" Total Attempts: ",null==e?null:e.total_parts," "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function ns(n,l){1&n&&A.nrm(0,"span",90)}function Ss(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,ns,1,0,"span",91),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function li(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",90),A.EFF(2),A.k0s(),A.DNE(3,Ss,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(null!=e&&e.bolt12?"Bolt12":null!=e&&e.bolt11?"Bolt11":"Keysend"),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Ns(n,l){if(1&n&&(A.j41(0,"span",90),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" Part ID ",e.partid?e.partid:0," ")}}function is(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Ns,2,1,"span",91),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function Ts(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,is,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Ps(n,l){if(1&n&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&n){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,St,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function Fi(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Ps,2,3,"span",93),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function ki(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Fi,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.bolt11),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Us(n,l){if(1&n&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&n){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,St,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function zn(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Us,2,3,"span",93),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function Ls(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,zn,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.label),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function ss(n,l){if(1&n&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&n){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,St,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function Gs(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,ss,2,3,"span",93),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function yi(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,Gs,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.destination),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Yn(n,l){if(1&n&&(A.j41(0,"span",94),A.nrm(1,"span",80),A.k0s()),2&n){const e=A.XpG(4);A.Y8G("ngStyle",A.eq3(1,St,e.screenSize===e.screenSizeEnum.XS?"6rem":e.colWidth))}}function h(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Yn,2,3,"span",93),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function c(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",92)(2,"span",80),A.EFF(3),A.k0s()(),A.DNE(4,h,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(3,St,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.memo),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function y(n,l){if(1&n&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,e.amount_sent_msat/1e3,e.amount_sent_msat<1e3?"1.0-4":"1.0-0")," ")}}function p(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,y,3,4,"span",96),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function q(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,p,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,2,(null==e?null:e.amount_sent_msat)/1e3,(null==e?null:e.amount_sent_msat)<1e3?"1.0-4":"1.0-0")),A.R7$(2),A.Y8G("ngIf",e.is_expanded)}}function CA(n,l){if(1&n&&(A.j41(0,"span",95),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,e.amount_msat/1e3,e.amount_msat<1e3?"1.0-4":"1.0-0")," ")}}function _A(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,CA,3,4,"span",96),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function ee(n,l){if(1&n&&(A.j41(0,"td",73)(1,"span",95),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.DNE(4,_A,2,1,"span",11),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,2,(null==e?null:e.amount_msat)/1e3,(null==e?null:e.amount_msat)<1e3?"1.0-4":"1.0-0")),A.R7$(2),A.Y8G("ngIf",e.is_expanded)}}function he(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",100)(1,"button",101),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(4);return w.Njj(r.onPaymentClick(o))}),A.EFF(2),A.k0s()()}if(2&n){const e=l.$implicit;A.R7$(2),A.SpI("View ",e.partid?e.partid:0)}}function Ie(n,l){if(1&n&&(A.j41(0,"div"),A.DNE(1,he,3,1,"div",99),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.mpps)}}function xe(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",73)(1,"span",97)(2,"button",98),A.bIt("click",function(){const o=w.eBV(e).$implicit;return w.Njj(o.is_expanded=!o.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,Ie,2,1,"div",11),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(3),A.JRh(e.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function $(n,l){1&n&&A.nrm(0,"tr",102)}function s(n,l){if(1&n&&A.nrm(0,"tr",103),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,vn,(null==e.payments?null:e.payments.data)&&(null==e.payments||null==e.payments.data?null:e.payments.data.length)&&(null==e.payments||null==e.payments.data?null:e.payments.data.length)>0))}}function d(n,l){1&n&&A.nrm(0,"tr",104)}function F(n,l){1&n&&A.nrm(0,"tr",102)}function W(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",22)(1,"div",23)(2,"div",24),A.nrm(3,"fa-icon",25),A.j41(4,"span",26),A.EFF(5,"Payments History"),A.k0s()(),A.j41(6,"div",27)(7,"mat-form-field",28)(8,"mat-label"),A.EFF(9,"Filter By"),A.k0s(),A.j41(10,"mat-select",29),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),w.Njj(o)}),A.bIt("selectionChange",function(){w.eBV(e);const o=A.XpG();return o.selFilter="",w.Njj(o.applyFilter())}),A.j41(11,"perfect-scrollbar"),A.DNE(12,Ci,2,2,"mat-option",30),A.k0s()()(),A.j41(13,"mat-form-field",28)(14,"mat-label"),A.EFF(15,"Filter"),A.k0s(),A.j41(16,"input",31),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),w.Njj(o)}),A.bIt("input",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())})("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())}),A.k0s()()()(),A.j41(17,"div",32)(18,"div",33),A.DNE(19,di,1,0,"mat-progress-bar",34),A.j41(20,"table",35,2),A.qex(22,36),A.DNE(23,ri,1,0,"th",37)(24,Ki,3,2,"td",38),A.bVm(),A.qex(25,39),A.DNE(26,Qi,2,0,"th",40)(27,Xi,3,4,"td",38),A.bVm(),A.qex(28,41),A.DNE(29,mi,2,0,"th",40)(30,fn,2,1,"td",38),A.bVm(),A.qex(31,42),A.DNE(32,ms,2,0,"th",40)(33,Ms,4,4,"td",38),A.bVm(),A.qex(34,43),A.DNE(35,Mi,2,0,"th",40)(36,pi,4,4,"td",38),A.bVm(),A.qex(37,44),A.DNE(38,Zi,2,0,"th",40)(39,qi,4,4,"td",38),A.bVm(),A.qex(40,45),A.DNE(41,$i,2,0,"th",40)(42,ps,4,4,"td",38),A.bVm(),A.qex(43,46),A.DNE(44,As,2,0,"th",40)(45,Is,4,4,"td",38),A.bVm(),A.qex(46,47),A.DNE(47,Ui,2,0,"th",48)(48,es,4,4,"td",38),A.bVm(),A.qex(49,49),A.DNE(50,Zn,2,0,"th",48)(51,Ds,4,4,"td",38),A.bVm(),A.qex(52,50),A.DNE(53,Fs,6,0,"th",51)(54,Li,3,0,"td",52),A.bVm(),A.qex(55,53),A.DNE(56,qn,4,3,"td",54),A.bVm(),A.qex(57,55),A.DNE(58,zi,5,3,"td",38),A.bVm(),A.qex(59,56),A.DNE(60,Rs,4,2,"td",38),A.bVm(),A.qex(61,57),A.DNE(62,li,4,2,"td",38),A.bVm(),A.qex(63,58),A.DNE(64,Ts,5,5,"td",38),A.bVm(),A.qex(65,59),A.DNE(66,ki,5,5,"td",38),A.bVm(),A.qex(67,60),A.DNE(68,Ls,5,5,"td",38),A.bVm(),A.qex(69,61),A.DNE(70,yi,5,5,"td",38),A.bVm(),A.qex(71,62),A.DNE(72,c,5,5,"td",38),A.bVm(),A.qex(73,63),A.DNE(74,q,5,5,"td",38),A.bVm(),A.qex(75,64),A.DNE(76,ee,5,5,"td",38),A.bVm(),A.qex(77,65),A.DNE(78,xe,5,2,"td",38),A.bVm(),A.DNE(79,$,1,0,"tr",66)(80,s,1,3,"tr",67)(81,d,1,0,"tr",68)(82,F,1,0,"tr",66),A.k0s()()(),A.nrm(83,"mat-paginator",69),A.k0s()}if(2&n){const e=A.XpG();A.R7$(3),A.Y8G("icon",e.faHistory),A.R7$(7),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(18,Dn).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter),A.R7$(3),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.payments)("ngClass",A.eq3(19,Cn,""!==e.errorMessage)),A.R7$(59),A.Y8G("matRowDefColumns",e.mppColumns)("matRowDefWhen",e.is_group),A.R7$(),A.Y8G("matFooterRowDef",A.lJ4(21,Nn)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)("matRowDefWhen",!e.is_group),A.R7$(),A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Z=(()=>{var n;class l{constructor(i,o,r,iA,ne,re,ln,Qt,wn){this.logger=i,this.commonService=o,this.store=r,this.rtlEffects=iA,this.decimalPipe=ne,this.titleCasePipe=re,this.datePipe=ln,this.dataService=Qt,this.camelCaseWithReplace=wn,this.calledFrom="transactions",this.convertedCurrency=null,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"payments",recordsPerPage:B.md,sortBy:"created_at",sortOrder:B.oi.DESCENDING},this.faHistory=v.Int,this.newlyAddedPayment="",this.information={},this.payments=new z.I6([]),this.paymentJSONArr=[],this.displayedColumns=[],this.mppColumns=[],this.paymentDecoded={},this.paymentRequest="",this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.mppColumns=[],this.displayedColumns.map(o=>this.mppColumns.push("group_"+o)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns),this.logger.info(this.mppColumns)}),this.store.select(tA.KT).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.paymentJSONArr=i.payments||[],this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.paymentJSONArr.length&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPaymentsTable(this.paymentJSONArr)}is_group(i,o){return o.is_group||!1}onSendPayment(){if(!this.paymentRequest)return!0;this.paymentDecoded.created_at?this.sendPayment():this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,I.Q)(this.unSubs[4])).subscribe(i=>{this.paymentDecoded=i,this.paymentDecoded.created_at?(this.paymentDecoded.amount_msat||(this.paymentDecoded.amount_msat=0),this.sendPayment()):this.resetData()})}sendPayment(){this.newlyAddedPayment=this.paymentDecoded?.payment_hash||"",this.paymentDecoded.amount_msat&&0!==this.paymentDecoded.amount_msat?(this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Confirm Send Payment",noBtnText:"Cancel",yesBtnText:"Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"payee",value:this.paymentDecoded.payee,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"created_at",value:this.paymentDecoded.created_at,title:"Creation Date",width:50,type:B.UN.DATE_TIME},{key:"num_satoshis",value:this.paymentDecoded.amount_msat/1e3,title:"Amount (Sats)",width:50,type:B.UN.NUMBER}],[{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:50,type:B.UN.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:50}]]}}})),this.rtlEffects.closeConfirm.pipe((0,bt.s)(1)).subscribe(o=>{o&&(this.store.dispatch((0,VA.Fd)({payload:{uiMessage:B.MZ.SEND_PAYMENT,paymentType:B.Y0.INVOICE,bolt11:this.paymentRequest,fromDialog:!1}})),this.resetData())})):(this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Enter Amount and Confirm Send Payment",message:[[{key:"payment_hash",value:this.paymentDecoded.payment_hash,title:"Payment Hash",width:100}],[{key:"payee",value:this.paymentDecoded.payee,title:"Payee",width:100}],[{key:"description",value:this.paymentDecoded.description,title:"Description",width:100}],[{key:"created_at",value:this.paymentDecoded.created_at,title:"Creation Date",width:40,type:B.UN.DATE_TIME},{key:"expiry",value:this.paymentDecoded.expiry,title:"Expiry",width:30,type:B.UN.NUMBER},{key:"min_finaltv_expiry",value:this.paymentDecoded.min_final_cltv_expiry,title:"CLTV Expiry",width:30}]],noBtnText:"Cancel",yesBtnText:"Send Payment",flgShowInput:!0,titleMessage:"It is a zero amount invoice. Enter the amount (Sats) to pay.",getInputs:[{placeholder:"Amount (Sats)",inputType:B.UN.NUMBER,inputValue:"",width:30}]}}})),this.rtlEffects.closeConfirm.pipe((0,bt.s)(1)).subscribe(r=>{r&&(this.paymentDecoded.amount_msat=r[0].inputValue,this.store.dispatch((0,VA.Fd)({payload:{uiMessage:B.MZ.SEND_PAYMENT,paymentType:B.Y0.INVOICE,bolt11:this.paymentRequest,amount_msat:1e3*r[0].inputValue,fromDialog:!1}})),this.resetData())}))}onPaymentRequestEntry(i){this.paymentRequest=i,this.paymentDecodedHintPre="",this.paymentDecodedHintPost="",this.paymentRequest&&this.paymentRequest.length>100&&this.dataService.decodePayment(this.paymentRequest,!1).pipe((0,I.Q)(this.unSubs[5])).subscribe(o=>{this.paymentDecoded=o,this.paymentDecoded.amount_msat?this.selNode?.settings.fiatConversion?this.commonService.convertCurrency(this.paymentDecoded.amount_msat/1e3||0,B.BQ.SATS,B.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[6])).subscribe({next:r=>{this.convertedCurrency=r,this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats (",this.paymentDecodedHintPost=this.decimalPipe.transform(this.convertedCurrency.OTHER?this.convertedCurrency.OTHER:0,B.k.OTHER)+" "+this.convertedCurrency.unit+") | Memo: "+this.paymentDecoded.description},error:r=>{this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description+". Unable to convert currency.",this.paymentDecodedHintPost=""}}):(this.paymentDecodedHintPre="Sending: "+this.decimalPipe.transform(this.paymentDecoded.amount_msat?this.paymentDecoded.amount_msat/1e3:0)+" Sats | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost=""):(this.paymentDecodedHintPre="Zero Amount Invoice | Memo: "+this.paymentDecoded.description,this.paymentDecodedHintPost="")})}openSendPaymentModal(){this.store.dispatch((0,C.xO)({payload:{data:{component:Bn}}}))}resetData(){this.paymentDecoded={},this.paymentRequest="",this.form.resetForm()}onPaymentClick(i){const o=[[{key:"payment_preimage",value:i.payment_preimage,title:"Payment Preimage",width:100,type:B.UN.STRING}],[{key:"id",value:i.id,title:"ID",width:20,type:B.UN.STRING},{key:"destination",value:i.destination,title:"Destination",width:80,type:B.UN.STRING}],[{key:"created_at",value:i.created_at,title:"Creation Date",width:50,type:B.UN.DATE_TIME},{key:"status",value:this.titleCasePipe.transform(i.status),title:"Status",width:50,type:B.UN.STRING}],[{key:"amount_msat",value:i.amount_msat,title:"Amount (mSats)",width:50,type:B.UN.NUMBER},{key:"amount_sent_msat",value:i.amount_sent_msat,title:"Amount Sent (mSats)",width:50,type:B.UN.NUMBER}]];i.bolt11&&""!==i.bolt11&&o?.unshift([{key:"bolt11",value:i.bolt11,title:"Bolt 11",width:100,type:B.UN.STRING}]),i.bolt12&&""!==i.bolt12&&o?.unshift([{key:"bolt12",value:i.bolt12,title:"Bolt 12",width:100,type:B.UN.STRING}]),i.memo&&""!==i.memo&&o?.splice(2,0,[{key:"memo",value:i.memo,title:"Memo",width:100,type:B.UN.STRING}]),i.hasOwnProperty("partid")?o?.unshift([{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:80,type:B.UN.STRING},{key:"partid",value:i.partid,title:"Part ID",width:20,type:B.UN.STRING}]):o?.unshift([{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:B.UN.STRING}]),this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Payment Information",message:o}}}))}applyFilter(){this.payments.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.payments.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.created_at?this.datePipe.transform(new Date(1e3*i.created_at),"dd/MMM/y HH:mm")?.toLowerCase():"")+(i.bolt12?"bolt12":i.bolt11?"bolt11":"keysend")+JSON.stringify(i).toLowerCase();break;case"status":r="complete"===i?.status?"completed":"incomplete/failed";break;case"created_at":r=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"msatoshi_sent":r=((i.amount_sent_msat||0)/1e3).toString()||"";break;case"msatoshi":r=((i.amount_msat||0)/1e3).toString()||"";break;case"type":r=i?.bolt12?"bolt12":i?.bolt11?"bolt11":"keysend";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"status"===this.selFilterBy||"type"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadPaymentsTable(i){this.payments=new z.I6(i?[...i]:[]),this.payments.sort=this.sort,this.payments.sortingDataAccessor=(o,r)=>{switch(r){case"msatoshi_sent":return o.amount_sent_msat;case"msatoshi":return o.amount_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.payments.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){if(this.payments.data&&this.payments.data.length>0){const o=JSON.parse(JSON.stringify(this.payments.data))?.reduce((r,iA)=>iA.mpps?r.concat(iA.mpps):(delete iA.is_group,delete iA.is_expanded,delete iA.total_parts,r.concat(iA)),[]);this.commonService.downloadFile(o,"Payments")}}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(b.H),A.rXU(de.QX),A.rXU(de.PV),A.rXU(de.vh),A.rXU(Dt.u),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-lightning-payments"]],viewQuery:function(o,r){if(1&o&&(A.GBs(In,5),A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first),A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},inputs:{calledFrom:"calledFrom"},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Payments")}])],decls:4,vars:3,consts:[["sendPaymentForm","ngForm"],["paymentReq","ngModel"],["table",""],["fxLayout","column","fxFlex","110","fxLayoutAlign","space-between stretch",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100"],["matInput","","name","paymentRequest","tabindex","1","required","",3,"ngModelChange","matTextareaAutosize","perfectScrollbar","ngModel"],["fxLayout","row wrap","fxFlex","100",4,"ngIf"],[4,"ngIf"],["fxLayout","row",1,"mt-3"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],["fxLayout","row wrap","fxFlex","100"],["fxLayoutAlign","center center","class","mr-3px",4,"ngIf"],["fxLayoutAlign","center center","class","mr-3px",3,"innerHTML",4,"ngIf"],["fxLayoutAlign","center center",1,"mr-3px"],[3,"icon"],["fxLayoutAlign","center center",1,"mr-3px",3,"innerHTML"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","created_at"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","type"],["matColumnDef","payment_hash"],["matColumnDef","bolt11"],["matColumnDef","label"],["matColumnDef","destination"],["matColumnDef","memo"],["matColumnDef","msatoshi_sent"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_payment"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["matColumnDef","group_status"],["matColumnDef","group_created_at"],["matColumnDef","group_type"],["matColumnDef","group_payment_hash"],["matColumnDef","group_bolt11"],["matColumnDef","group_label"],["matColumnDef","group_destination"],["matColumnDef","group_memo"],["matColumnDef","group_msatoshi_sent"],["matColumnDef","group_msatoshi"],["matColumnDef","group_actions"],["mat-row","",4,"matRowDef","matRowDefColumns","matRowDefWhen"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["mat-cell",""],["class","dot green","matTooltip","Completed","matTooltipPosition","right",4,"ngIf"],["class","dot yellow","matTooltip","Incomplete/Failed","matTooltipPosition","right",4,"ngIf"],["matTooltip","Completed","matTooltipPosition","right",1,"dot","green"],["matTooltip","Incomplete/Failed","matTooltipPosition","right",1,"dot","yellow"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],["fxLayoutAlign","start center",1,"mpp-row-span"],["fxLayoutAlign","start center","class","mpp-row-span",4,"ngFor","ngForOf"],["fxLayout","row",1,"ellipsis-parent","mpp-row-span",3,"ngStyle"],["fxLayoutAlign","start center","class","ellipsis-parent mpp-row-span",3,"ngStyle",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","mpp-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"mpp-row-span"],["fxLayoutAlign","end center","class","mpp-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"mpp-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-mpp-expand",3,"click"],["class","mpp-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"mpp-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-mpp-info",3,"click"],["mat-row",""],["mat-footer-row","",3,"ngClass"],["mat-header-row",""]],template:function(o,r){1&o&&(A.j41(0,"div",3),A.DNE(1,Ei,14,3,"form",4)(2,wi,3,0,"div",5)(3,W,84,22,"div",6),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf","home"===r.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===r.calledFrom),A.R7$(),A.Y8G("ngIf","transactions"===r.calledFrom))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.qT,hA.me,hA.BC,hA.cb,hA.YS,hA.vS,hA.cV,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,yA.MV,yA.TL,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld,de.QX,de.vh],styles:[".mat-column-status[_ngcontent-%COMP%], .mat-column-group_status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-group_actions[_ngcontent-%COMP%] .mpp-group-head[_ngcontent-%COMP%], .mat-column-group_actions[_ngcontent-%COMP%] .mpp-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-group_actions[_ngcontent-%COMP%] .btn-mpp-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}.mat-column-group_status[_ngcontent-%COMP%] .mpp-row-span[_ngcontent-%COMP%]:not(:first-of-type), .mat-column-group_created_at[_ngcontent-%COMP%] .mpp-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem}.mpp-row-span[_ngcontent-%COMP%]{min-height:3rem}.mpp-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mpp-row-span[_ngcontent-%COMP%] .dot[_ngcontent-%COMP%]{margin-top:-.3rem;position:absolute}.mat-column-group_created_at[_ngcontent-%COMP%]{min-width:11rem}"]}))}return n(),l})();const EA=n=>({backgroundColor:n});function PA(n,l){if(1&n&&A.nrm(0,"span",6),2&n){const e=A.XpG();A.Y8G("ngStyle",A.eq3(1,EA,"#"+(null==e.information?null:e.information.color)))}}function FA(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",1),A.EFF(2,"Color"),A.k0s(),A.j41(3,"div",2),A.nrm(4,"span",7),A.EFF(5),A.nI1(6,"uppercase"),A.k0s()()),2&n){const e=A.XpG();A.R7$(4),A.Y8G("ngStyle",A.eq3(4,EA,"#"+(null==e.information?null:e.information.color))),A.R7$(),A.SpI(" ",A.bMT(6,2,null==e.information?null:e.information.color)," ")}}function te(n,l){if(1&n&&(A.j41(0,"span",2),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}let ge=(()=>{var n;class l{constructor(i){this.commonService=i,this.chains=[""]}ngOnChanges(){this.information&&this.information.chains&&this.information.chains.length>0&&(this.chains=[""],this.information.chains.forEach(i=>{this.chains.push(this.commonService.titleCase(i.chain||"")+" "+this.commonService.titleCase(i.network||""))}))}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(L.h))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-node-info"]],inputs:{information:"information",showColorFieldSeparately:"showColorFieldSeparately"},standalone:!1,features:[A.OA$],decls:17,vars:5,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-2"],[1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["class","dashboard-node-dot dot",3,"ngStyle",4,"ngIf"],[4,"ngIf"],["class","overflow-wrap dashboard-info-value",4,"ngFor","ngForOf"],[1,"dashboard-node-dot","dot",3,"ngStyle"],[1,"dashboard-node-square",3,"ngStyle"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"div")(2,"h4",1),A.EFF(3,"Alias"),A.k0s(),A.j41(4,"div",2),A.EFF(5),A.DNE(6,PA,1,3,"span",3),A.k0s()(),A.DNE(7,FA,7,6,"div",4),A.j41(8,"div")(9,"h4",1),A.EFF(10,"Implementation"),A.k0s(),A.j41(11,"div",2),A.EFF(12),A.k0s()(),A.j41(13,"div")(14,"h4",1),A.EFF(15,"Chain"),A.k0s(),A.DNE(16,te,2,1,"span",5),A.k0s()()),2&o&&(A.R7$(5),A.SpI(" ",null==r.information?null:r.information.alias," "),A.R7$(),A.Y8G("ngIf",!r.showColorFieldSeparately),A.R7$(),A.Y8G("ngIf",r.showColorFieldSeparately),A.R7$(5),A.JRh(null!=r.information&&r.information.lnImplementation||null!=r.information&&r.information.version?(null==r.information?null:r.information.lnImplementation)+" "+(null==r.information?null:r.information.version):""),A.R7$(4),A.Y8G("ngForOf",r.chains))},dependencies:[de.Sq,de.bT,de.B3,Q.DJ,Q.sA,Q.UI,dA.eI,de.Pc],encapsulation:2}))}return n(),l})();function Me(n,l){if(1&n&&(A.j41(0,"div",2)(1,"div")(2,"h4",3),A.EFF(3,"Lightning"),A.k0s(),A.j41(4,"div",4),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.nrm(7,"mat-progress-bar",5),A.k0s(),A.j41(8,"div")(9,"h4",3),A.EFF(10,"On-chain"),A.k0s(),A.j41(11,"div",4),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.nrm(14,"mat-progress-bar",5),A.k0s(),A.j41(15,"div")(16,"h4",3),A.EFF(17,"Total"),A.k0s(),A.j41(18,"div",4),A.EFF(19),A.nI1(20,"number"),A.k0s()()()),2&n){const e=A.XpG();A.R7$(5),A.SpI("",A.i5U(6,7,e.balances.lightning,"1.0-0")," Sats"),A.R7$(2),A.Y8G("value",A.mNQ(e.balances.lightning/e.balances.total*100)),A.R7$(5),A.SpI("",A.i5U(13,10,e.balances.onchain,"1.0-0")," Sats"),A.R7$(2),A.Y8G("value",A.mNQ(e.balances.onchain/e.balances.total*100)),A.R7$(5),A.SpI("",A.i5U(20,13,e.balances.total,"1.0-0")," Sats")}}function Qe(n,l){if(1&n&&(A.j41(0,"div",6)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let me=(()=>{var n;class l{constructor(){this.balances={onchain:0,lightning:0,total:0}}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-balances-info"]],inputs:{balances:"balances",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["class","mt-1","fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,Me,21,16,"div",1)(1,Qe,3,1,"ng-template",null,0,A.C5r),2&o){const iA=A.sdS(2);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.bT,eA.HM,Q.DJ,Q.sA,Q.UI,de.QX],encapsulation:2}))}return n(),l})();const Ye=()=>["../routing"];function Ue(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",4),A.EFF(2,"Transactions"),A.k0s(),A.j41(3,"div",5),A.EFF(4),A.nI1(5,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(4),A.JRh(A.bMT(5,1,null==e.fees?null:e.fees.totalTxCount))}}function De(n,l){1&n&&(A.j41(0,"div")(1,"h4",4),A.EFF(2,"Transactions"),A.k0s(),A.j41(3,"a",8),A.EFF(4," Go to Routing "),A.k0s()()),2&n&&(A.R7$(3),A.Y8G("routerLink",A.lJ4(1,Ye)))}function Le(n,l){if(1&n&&(A.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A.EFF(4,"Total"),A.k0s(),A.j41(5,"div",5),A.EFF(6),A.nI1(7,"number"),A.k0s()()(),A.j41(8,"div",6),A.DNE(9,Ue,6,3,"div",7)(10,De,5,2,"div",7),A.k0s()()),2&n){const e=A.XpG();A.R7$(6),A.SpI("",A.bMT(7,3,(null==e.fees?null:e.fees.feeCollected)/1e3)," Sats"),A.R7$(3),A.Y8G("ngIf",null==e.fees?null:e.fees.totalTxCount),A.R7$(),A.Y8G("ngIf",!(null!=e.fees&&e.fees.totalTxCount))}}function Se(n,l){if(1&n&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let it=(()=>{var n;class l{constructor(){this.totalFees=[{name:"Total",value:0}]}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-fee-info"]],inputs:{fees:"fees",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["class","mt-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-2"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],[4,"ngIf"],[1,"overflow-wrap","dashboard-info-value",3,"routerLink"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,Le,11,5,"div",1)(1,Se,3,1,"ng-template",null,0,A.C5r),2&o){const iA=A.sdS(2);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.bT,Q.DJ,Q.sA,Q.UI,Sn.Wk,de.QX],encapsulation:2}))}return n(),l})();function Ve(n,l){if(1&n&&(A.j41(0,"div",2)(1,"div",3)(2,"div")(3,"h4",4),A.EFF(4,"Active"),A.k0s(),A.j41(5,"div",5),A.nrm(6,"span",6),A.EFF(7),A.nI1(8,"number"),A.k0s()(),A.j41(9,"div")(10,"h4",4),A.EFF(11,"Pending"),A.k0s(),A.j41(12,"div",5),A.nrm(13,"span",7),A.EFF(14),A.nI1(15,"number"),A.k0s()(),A.j41(16,"div")(17,"h4",4),A.EFF(18,"Inactive"),A.k0s(),A.j41(19,"div",5),A.nrm(20,"span",8),A.EFF(21),A.nI1(22,"number"),A.k0s()()(),A.j41(23,"div",3)(24,"div")(25,"h4",4),A.EFF(26,"Capacity"),A.k0s(),A.j41(27,"div",5),A.EFF(28),A.nI1(29,"number"),A.k0s()(),A.j41(30,"div")(31,"h4",4),A.EFF(32,"Capacity"),A.k0s(),A.j41(33,"div",5),A.EFF(34),A.nI1(35,"number"),A.k0s()(),A.j41(36,"div")(37,"h4",4),A.EFF(38,"Capacity"),A.k0s(),A.j41(39,"div",5),A.EFF(40),A.nI1(41,"number"),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(7),A.JRh(A.bMT(8,6,(null==e.channelsStatus||null==e.channelsStatus.active?null:e.channelsStatus.active.channels)||0)),A.R7$(7),A.JRh(A.bMT(15,8,(null==e.channelsStatus||null==e.channelsStatus.pending?null:e.channelsStatus.pending.channels)||0)),A.R7$(7),A.JRh(A.bMT(22,10,(null==e.channelsStatus||null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.channels)||0)),A.R7$(7),A.SpI("",A.i5U(29,12,(null==e.channelsStatus||null==e.channelsStatus.active?null:e.channelsStatus.active.capacity)||0,"1.0-0")," Sats"),A.R7$(6),A.SpI("",A.i5U(35,15,(null==e.channelsStatus||null==e.channelsStatus.pending?null:e.channelsStatus.pending.capacity)||0,"1.0-0")," Sats"),A.R7$(6),A.SpI("",A.i5U(41,18,(null==e.channelsStatus||null==e.channelsStatus.inactive?null:e.channelsStatus.inactive.capacity)||0,"1.0-0")," Sats")}}function vt(n,l){if(1&n&&(A.j41(0,"div",9)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let zt=(()=>{var n;class l{constructor(){this.channelsStatus={active:{},pending:{},inactive:{}}}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-status-info"]],inputs:{channelsStatus:"channelsStatus",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["class","mt-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf","ngIfElse"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-2"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch"],["fxLayoutAlign","start",1,"dashboard-info-title"],[1,"overflow-wrap","dashboard-info-value"],[1,"dot","tiny-dot","green"],[1,"dot","tiny-dot","yellow"],[1,"dot","tiny-dot","grey"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,Ve,42,21,"div",1)(1,vt,3,1,"ng-template",null,0,A.C5r),2&o){const iA=A.sdS(2);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.bT,Q.DJ,Q.sA,Q.UI,de.QX],encapsulation:2}))}return n(),l})();var sn=We(1997);const gn=()=>["../connections/channels/open"],Tn=(n,l)=>({filterColumn:n,filterValue:l});function rs(n,l){if(1&n&&(A.j41(0,"div",19)(1,"a",20),A.EFF(2),A.nI1(3,"slice"),A.k0s(),A.j41(4,"div",6)(5,"mat-hint",21)(6,"strong",8),A.EFF(7,"Local:"),A.k0s(),A.EFF(8),A.nI1(9,"number"),A.k0s(),A.j41(10,"mat-hint",22),A.nrm(11,"fa-icon",23),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.j41(14,"mat-hint",24)(15,"strong",8),A.EFF(16,"Remote:"),A.k0s(),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.nrm(19,"mat-progress-bar",25),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(3);A.R7$(),A.Y8G("matTooltip",A.mNQ(e.alias||e.peer_id))("matTooltipDisabled",A.mNQ((e.alias||e.peer_id).length<26))("routerLink",A.lJ4(26,gn))("state",A.l_i(27,Tn,e.alias?"alias":"peer_id",e.alias||e.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,14,(null==e?null:e.alias)||(null==e?null:e.peer_id)||"",0,24),"",(e.alias||e.peer_id||"").length>25?"...":""," "),A.R7$(6),A.SpI("",A.i5U(9,18,e.to_us_msat/1e3||0,"1.0-0")," Sats"),A.R7$(3),A.Y8G("icon",i.faBalanceScale),A.R7$(),A.SpI(" (",A.bMT(13,21,e.balancedness||0),") "),A.R7$(5),A.SpI("",A.i5U(18,23,e.to_them_msat/1e3||0,"1.0-0")," Sats"),A.R7$(2),A.Y8G("value",A.mNQ(e.to_us_msat&&e.to_us_msat>0?e.to_us_msat/(e.to_us_msat+e.to_them_msat)*100:0))}}function kn(n,l){if(1&n&&(A.j41(0,"div",17),A.DNE(1,rs,20,30,"div",18),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngForOf",e.activeChannels)}}function Jn(n,l){if(1&n&&(A.j41(0,"div",3)(1,"div",4)(2,"span",5),A.EFF(3,"Total Capacity"),A.k0s(),A.j41(4,"div",6)(5,"mat-hint",7)(6,"strong",8),A.EFF(7,"Local:"),A.k0s(),A.EFF(8),A.nI1(9,"number"),A.k0s(),A.j41(10,"mat-hint",9),A.nrm(11,"fa-icon",10),A.EFF(12),A.nI1(13,"number"),A.k0s(),A.j41(14,"mat-hint",11)(15,"strong",8),A.EFF(16,"Remote:"),A.k0s(),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.nrm(19,"mat-progress-bar",12),A.k0s(),A.j41(20,"div",13),A.nrm(21,"mat-divider",14),A.k0s(),A.j41(22,"div",15),A.DNE(23,kn,2,1,"div",16),A.k0s()()),2&n){const e=A.XpG(),i=A.sdS(2);A.R7$(8),A.SpI("",A.i5U(9,8,(null==e.channelBalances?null:e.channelBalances.localBalance)||0,"1.0-0")," Sats"),A.R7$(3),A.Y8G("icon",e.faBalanceScale),A.R7$(),A.SpI(" (",A.bMT(13,11,(null==e.channelBalances?null:e.channelBalances.balancedness)||0),") "),A.R7$(5),A.SpI("",A.i5U(18,13,(null==e.channelBalances?null:e.channelBalances.remoteBalance)||0,"1.0-0")," Sats"),A.R7$(2),A.Y8G("value",A.mNQ(null!=e.channelBalances&&e.channelBalances.localBalance&&(null==e.channelBalances?null:e.channelBalances.localBalance)>0?+(null==e.channelBalances?null:e.channelBalances.localBalance)/(+(null==e.channelBalances?null:e.channelBalances.localBalance)+ +(null==e.channelBalances?null:e.channelBalances.remoteBalance))*100:0)),A.R7$(4),A.Y8G("ngIf",e.activeChannels&&e.activeChannels.length>0)("ngIfElse",i)}}function Xt(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",26),A.EFF(1," No channels available. "),A.j41(2,"button",27),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.goToChannels())}),A.EFF(3,"Open Channel"),A.k0s()()}}function dn(n,l){if(1&n&&(A.j41(0,"div",28)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let Zt=(()=>{var n;class l{constructor(i){this.router=i,this.faBalanceScale=v.GR4,this.faDumbbell=v.VwO,this.sortBy="Balance Score"}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-capacity-info"]],inputs:{channelBalances:"channelBalances",activeChannels:"activeChannels",sortBy:"sortBy",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90"],[1,"font-weight-900","mr-5px"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90"],["matTooltip","Balance Score",1,"mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90"],["mode","determinate","color","accent",1,"dashboard-progress-bar","this-channel-bar",3,"value"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],[1,"channels-capacity-scroll",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxFlex","40","fxLayoutAlign","start center",1,"font-size-90","color-primary"],["fxFlex","20","fxLayoutAlign","center center",1,"font-size-90","color-primary"],["matTooltip","Balance Score",1,"color-primary","mr-3px",3,"icon"],["fxFlex","40","fxLayoutAlign","end center",1,"font-size-90","color-primary"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",1,"mt-1","w-100"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,Jn,24,16,"div",2)(1,Xt,4,0,"ng-template",null,0,A.C5r)(3,dn,3,1,"ng-template",null,1,A.C5r),2&o){const iA=A.sdS(4);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.Sq,de.bT,P.aY,fA.$z,yA.MV,sn.q,eA.HM,Q.DJ,Q.sA,Q.UI,HA.oV,M.Ld,Sn.Wk,de.P9,de.QX],styles:[".channels-capacity-scroll[_ngcontent-%COMP%]{width:100%;height:100%;overflow-y:hidden}"]}))}return n(),l})();const _n=(n,l,e)=>({"mb-4":n,"mb-2":l,"mb-1":e}),Yt=()=>["../connections/channels/open"],mn=(n,l)=>({filterColumn:n,filterValue:l});function ci(n,l){if(1&n&&(A.j41(0,"mat-hint",19)(1,"strong",20),A.EFF(2,"Capacity: "),A.k0s(),A.EFF(3),A.nI1(4,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(3),A.SpI("",A.i5U(4,1,e.to_them_msat/1e3||0,"1.0-0")," Sats")}}function $n(n,l){if(1&n&&(A.j41(0,"mat-hint",19)(1,"strong",20),A.EFF(2,"Capacity: "),A.k0s(),A.EFF(3),A.nI1(4,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(3),A.SpI("",A.i5U(4,1,e.to_us_msat/1e3||0,"1.0-0")," Sats")}}function zs(n,l){if(1&n&&A.nrm(0,"mat-progress-bar",21),2&n){const e=A.XpG().$implicit,i=A.XpG(3);A.Y8G("value",A.mNQ(i.totalLiquidity>0?(e.to_them_msat/1e3||0)/i.totalLiquidity*100:0))}}function ks(n,l){if(1&n&&A.nrm(0,"mat-progress-bar",21),2&n){const e=A.XpG().$implicit,i=A.XpG(3);A.Y8G("value",A.mNQ(i.totalLiquidity>0?(e.to_us_msat/1e3||0)/i.totalLiquidity*100:0))}}function qs(n,l){if(1&n&&(A.j41(0,"div",14)(1,"a",15),A.EFF(2),A.nI1(3,"slice"),A.k0s(),A.j41(4,"div",16),A.DNE(5,ci,5,4,"mat-hint",17)(6,$n,5,4,"mat-hint",17),A.k0s(),A.DNE(7,zs,1,2,"mat-progress-bar",18)(8,ks,1,2,"mat-progress-bar",18),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(3);A.R7$(),A.Y8G("matTooltip",A.mNQ(e.alias||e.peer_id))("matTooltipDisabled",A.mNQ((e.alias||e.peer_id).length<26))("routerLink",A.lJ4(16,Yt))("state",A.l_i(17,mn,e.alias?"alias":"peer_id",e.alias||e.peer_id)),A.R7$(),A.Lme(" ",A.brH(3,12,e.alias||e.peer_id||"",0,24),"",(e.alias||e.peer_id||"").length>25?"...":""," "),A.R7$(3),A.Y8G("ngIf","In"===i.direction),A.R7$(),A.Y8G("ngIf","Out"===i.direction),A.R7$(),A.Y8G("ngIf","In"===i.direction),A.R7$(),A.Y8G("ngIf","Out"===i.direction)}}function $s(n,l){if(1&n&&(A.j41(0,"div",12),A.DNE(1,qs,9,20,"div",13),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngForOf",e.activeChannels)}}function as(n,l){if(1&n&&(A.j41(0,"div",3)(1,"div",4)(2,"span",5),A.EFF(3,"Total Capacity"),A.k0s(),A.j41(4,"mat-hint",6),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.nrm(7,"mat-progress-bar",7),A.k0s(),A.j41(8,"div",8),A.nrm(9,"mat-divider",9),A.k0s(),A.j41(10,"div",10),A.DNE(11,$s,2,1,"div",11),A.k0s()()),2&n){const e=A.XpG(),i=A.sdS(2);A.Y8G("ngClass",A.sMw(7,_n,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD,e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),A.R7$(5),A.SpI("",A.i5U(6,4,e.totalLiquidity,"1.0-0")," Sats"),A.R7$(6),A.Y8G("ngIf",e.activeChannels&&e.activeChannels.length>0)("ngIfElse",i)}}function Ir(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",25),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.goToChannels())}),A.EFF(1,"Open Channel"),A.k0s()}}function Hn(n,l){if(1&n&&(A.j41(0,"div",22)(1,"div",23)(2,"div"),A.EFF(3,"No channels available."),A.k0s(),A.DNE(4,Ir,2,0,"button",24),A.k0s()()),2&n){const e=A.XpG();A.R7$(4),A.Y8G("ngIf","Out"===e.direction)}}function xi(n,l){if(1&n&&(A.j41(0,"div",26)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let Ar=(()=>{var n;class l{constructor(i,o){this.router=i,this.commonService=o,this.screenSize="",this.screenSizeEnum=B.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}goToChannels(){this.router.navigateByUrl("/cln/connections")}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix),A.rXU(L.h))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-liquidity-info"]],inputs:{direction:"direction",totalLiquidity:"totalLiquidity",activeChannels:"activeChannels",errorMessage:"errorMessage"},standalone:!1,decls:5,vars:2,consts:[["noChannelBlock",""],["errorBlock",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxFlex","100",3,"ngClass"],["fxLayout","column","fxFlex","8","fxLayoutAlign","end start"],[1,"dashboard-capacity-header","this-channel-capacity"],[1,"font-size-90"],["mode","determinate","color","accent","value","100",1,"dashboard-progress-bar","this-channel-bar"],["fxLayout","column","fxFlex","3","fxLayoutAlign","end stretch"],[1,"dashboard-divider"],["fxLayout","column","fxFlex.gt-sm","88","fxFlex","84","fxLayoutAlign","start start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","class","w-100",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100",1,"w-100"],["class","mt-2",4,"ngFor","ngForOf"],[1,"mt-2"],[1,"dashboard-capacity-header",3,"matTooltip","matTooltipDisabled","routerLink","state"],["fxLayout","row","fxLayoutAlign","space-between start",1,"w-100"],["fxFlex","100","fxLayoutAlign","start center","class","font-size-90 color-primary",4,"ngIf"],["class","dashboard-progress-bar","mode","determinate",3,"value",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"font-size-90","color-primary"],[1,"font-weight-900","mr-5px"],["mode","determinate",1,"dashboard-progress-bar",3,"value"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"w-100","mt-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stroked-button","","color","primary","tabindex","1",3,"click",4,"ngIf"],["mat-stroked-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,as,12,11,"div",2)(1,Hn,5,1,"ng-template",null,0,A.C5r)(3,xi,3,1,"ng-template",null,1,A.C5r),2&o){const iA=A.sdS(4);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.YU,de.Sq,de.bT,fA.$z,yA.MV,sn.q,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,HA.oV,M.Ld,Sn.Wk,de.P9,de.QX],encapsulation:2}))}return n(),l})();const Dr=n=>({"dashboard-card-content":!0,"error-border":n}),Na=n=>({"p-0":n});function Ta(n,l){if(1&n&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&n){A.XpG();const e=A.sdS(11);A.Y8G("matMenuTriggerFor",e)}}function Pa(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const o=w.eBV(e).index,r=A.XpG().$implicit,iA=A.XpG(2);return w.Njj(iA.onNavigateTo(r.links[o]))}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}function Ua(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){w.eBV(e);const o=A.XpG(3);return w.Njj(o.onsortChannelsBy())}),A.EFF(1),A.k0s()}if(2&n){const e=A.XpG(3);A.R7$(),A.SpI("Sort By ","Balance Score"===e.sortField?"Capacity":"Balance Score")}}function La(n,l){1&n&&A.nrm(0,"mat-progress-bar",30)}function Ga(n,l){if(1&n&&A.nrm(0,"rtl-cln-node-info",31),2&n){const e=A.XpG(3);A.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function za(n,l){if(1&n&&A.nrm(0,"rtl-cln-balances-info",32),2&n){const e=A.XpG(3);A.Y8G("balances",e.balances)("errorMessage",e.errorMessages[1])}}function ka(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-capacity-info",33),2&n){const e=A.XpG(3);A.Y8G("sortBy",e.sortField)("channelBalances",e.channelBalances)("activeChannels",e.activeChannelsCapacity)("errorMessage",e.errorMessages[2]+" "+e.errorMessages[1])}}function Ha(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-info",34),2&n){const e=A.XpG(3);A.Y8G("fees",e.fees)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[2]+" "+e.errorMessages[3])}}function ja(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-status-info",35),2&n){const e=A.XpG(3);A.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[1]+" "+e.errorMessages[2])}}function Ct(n,l){1&n&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function er(n,l){if(1&n&&(A.j41(0,"mat-grid-tile",11)(1,"mat-card",12)(2,"mat-card-header")(3,"mat-card-title",13)(4,"div"),A.nrm(5,"fa-icon",14),A.j41(6,"span"),A.EFF(7),A.k0s()(),A.j41(8,"div"),A.DNE(9,Ta,3,1,"button",15),A.j41(10,"mat-menu",16,1),A.DNE(12,Pa,2,1,"button",17)(13,Ua,2,1,"button",18),A.k0s()()()(),A.j41(14,"mat-card-content",19),A.DNE(15,La,1,0,"mat-progress-bar",20),A.j41(16,"div",21),A.DNE(17,Ga,1,2,"rtl-cln-node-info",22)(18,za,1,2,"rtl-cln-balances-info",23)(19,ka,1,4,"rtl-cln-channel-capacity-info",24)(20,Ha,1,2,"rtl-cln-fee-info",25)(21,ja,1,2,"rtl-cln-channel-status-info",26)(22,Ct,2,0,"h3",27),A.k0s()()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("colspan",e.cols)("rowspan",e.rows),A.R7$(5),A.Y8G("icon",e.icon),A.R7$(2),A.JRh(e.title),A.R7$(2),A.Y8G("ngIf",e.links[0]),A.R7$(3),A.Y8G("ngForOf",e.goToOptions),A.R7$(),A.Y8G("ngIf","capacity"===e.id),A.R7$(),A.Y8G("fxFlex",A.mNQ("capacity"===e.id?90:70))("ngClass",A.eq3(17,Dr,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&i.apiCallStatusBalances.status===i.apiCallStatusEnum.ERROR||"capacity"===e.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBalances.status===i.apiCallStatusEnum.ERROR)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.ERROR)||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusBalances.status===i.apiCallStatusEnum.ERROR))),A.R7$(),A.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&i.apiCallStatusBalances.status===i.apiCallStatusEnum.INITIATED||"capacity"===e.id&&(i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBalances.status===i.apiCallStatusEnum.INITIATED)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.INITIATED)||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusBalances.status===i.apiCallStatusEnum.INITIATED)),A.R7$(),A.Y8G("ngSwitch",e.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","balance"),A.R7$(),A.Y8G("ngSwitchCase","capacity"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","status")}}function Oa(n,l){if(1&n&&(A.j41(0,"div",5)(1,"div",6),A.nrm(2,"fa-icon",7),A.j41(3,"span",8),A.EFF(4),A.k0s()(),A.j41(5,"mat-grid-list",9),A.DNE(6,er,23,19,"mat-grid-tile",10),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.Y8G("icon",e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.ERROR?e.faFrown:e.faSmile),A.R7$(2),A.JRh(e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.COMPLETED?"Welcome "+e.information.alias+"! Your node is up and running.":e.apiCallStatusNodeInfo.status===e.apiCallStatusEnum.INITIATED?"Wait! Getting your node information...":"Error! Please check the server connection."),A.R7$(),A.Y8G("rowHeight",e.operatorCardHeight),A.R7$(),A.Y8G("ngForOf",e.operatorCards)}}function Fr(n,l){if(1&n&&(A.j41(0,"button",28)(1,"mat-icon"),A.EFF(2,"more_vert"),A.k0s()()),2&n){A.XpG();const e=A.sdS(9);A.Y8G("matMenuTriggerFor",e)}}function Or(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const o=w.eBV(e).index,r=A.XpG(2).$implicit,iA=A.XpG(2);return w.Njj(iA.onNavigateTo(r.links[o]))}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}function tr(n,l){if(1&n&&(A.j41(0,"mat-card-header")(1,"mat-card-title",13)(2,"div"),A.nrm(3,"fa-icon",14),A.j41(4,"span"),A.EFF(5),A.k0s()(),A.j41(6,"div"),A.DNE(7,Fr,3,1,"button",15),A.j41(8,"mat-menu",16,2),A.DNE(10,Or,2,1,"button",17),A.k0s()()()()),2&n){const e=A.XpG().$implicit;A.R7$(3),A.Y8G("icon",e.icon),A.R7$(2),A.JRh(e.title),A.R7$(2),A.Y8G("ngIf",e.links[0]),A.R7$(3),A.Y8G("ngForOf",e.goToOptions)}}function os(n,l){1&n&&A.nrm(0,"mat-progress-bar",30)}function nr(n,l){if(1&n&&A.nrm(0,"rtl-cln-node-info",45),2&n){const e=A.XpG(3);A.Y8G("information",e.information)}}function Jr(n,l){if(1&n&&A.nrm(0,"rtl-cln-balances-info",32),2&n){const e=A.XpG(3);A.Y8G("balances",e.balances)("errorMessage",e.errorMessages[1])}}function Hs(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-liquidity-info",46),2&n){const e=A.XpG(3);A.Y8G("totalLiquidity",e.totalInboundLiquidity)("activeChannels",e.allInboundChannels)("errorMessage",e.errorMessages[2])}}function yr(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-liquidity-info",47),2&n){const e=A.XpG(3);A.Y8G("totalLiquidity",e.totalOutboundLiquidity)("activeChannels",e.allOutboundChannels)("errorMessage",e.errorMessages[2])}}function xr(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){const o=w.eBV(e).index,r=A.XpG(2).$implicit,iA=A.XpG(2);return w.Njj(iA.onNavigateTo(r.links[o]))}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}function Ja(n,l){if(1&n&&(A.j41(0,"span",48)(1,"mat-tab-group",49)(2,"mat-tab",50),A.nrm(3,"rtl-cln-lightning-invoices-table",51),A.k0s(),A.j41(4,"mat-tab",52),A.nrm(5,"rtl-cln-lightning-payments",53),A.k0s()(),A.j41(6,"div",54)(7,"button",28)(8,"mat-icon"),A.EFF(9,"more_vert"),A.k0s()(),A.j41(10,"mat-menu",16,3),A.DNE(12,xr,2,1,"button",17),A.k0s()()()),2&n){const e=A.sdS(11),i=A.XpG().$implicit;A.R7$(7),A.Y8G("matMenuTriggerFor",e),A.R7$(5),A.Y8G("ngForOf",i.goToOptions)}}function _a(n,l){1&n&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find information!"),A.k0s())}function Yi(n,l){if(1&n&&(A.j41(0,"mat-grid-tile",11)(1,"mat-card",38),A.DNE(2,tr,11,4,"mat-card-header",39),A.j41(3,"mat-card-content",40),A.DNE(4,os,1,0,"mat-progress-bar",20),A.j41(5,"div",21),A.DNE(6,nr,1,1,"rtl-cln-node-info",41)(7,Jr,1,2,"rtl-cln-balances-info",23)(8,Hs,1,3,"rtl-cln-channel-liquidity-info",42)(9,yr,1,3,"rtl-cln-channel-liquidity-info",43)(10,Ja,13,2,"span",44)(11,_a,2,0,"h3",27),A.k0s()()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("colspan",e.cols)("rowspan",e.rows),A.R7$(),A.Y8G("ngClass",A.eq3(14,Na,"transactions"===e.id)),A.R7$(),A.Y8G("ngIf","transactions"!==e.id),A.R7$(),A.Y8G("fxFlex",A.mNQ("transactions"===e.id?100:"balance"===e.id?70:90))("ngClass",A.eq3(16,Dr,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"balance"===e.id&&i.apiCallStatusBalances.status===i.apiCallStatusEnum.ERROR||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"balance"===e.id&&i.apiCallStatusBalances.status===i.apiCallStatusEnum.INITIATED||("inboundLiq"===e.id||"outboundLiq"===e.id)&&i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",e.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","balance"),A.R7$(),A.Y8G("ngSwitchCase","inboundLiq"),A.R7$(),A.Y8G("ngSwitchCase","outboundLiq"),A.R7$(),A.Y8G("ngSwitchCase","transactions")}}function Hi(n,l){if(1&n&&(A.j41(0,"div",36),A.nrm(1,"fa-icon",7),A.j41(2,"span",8),A.EFF(3),A.k0s()(),A.j41(4,"mat-grid-list",37),A.DNE(5,Yi,12,18,"mat-grid-tile",10),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faSmile),A.R7$(2),A.SpI("Welcome ",e.information.alias,"! Your node is up and running."),A.R7$(),A.Y8G("rowHeight",e.merchantCardHeight),A.R7$(),A.Y8G("ngForOf",e.merchantCards)}}let Yr=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.store=o,this.commonService=r,this.router=iA,this.faSmile=K.Qpm,this.faFrown=K.wB1,this.faAngleDoubleDown=v.WxX,this.faAngleDoubleUp=v.$sC,this.faChartPie=v.W1p,this.faBolt=v.zm_,this.faServer=v.D6w,this.faNetworkWired=v.eGi,this.userPersonaEnum=B.HW,this.channelBalances={localBalance:0,remoteBalance:0,balancedness:0},this.information={},this.totalBalance={},this.balances={onchain:-1,lightning:-1,total:0},this.activeChannels=[],this.channelsStatus={active:{},pending:{},inactive:{}},this.activeChannelsCapacity=[],this.allInboundChannels=[],this.allOutboundChannels=[],this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.operatorCards=[],this.merchantCards=[],this.screenSize="",this.operatorCardHeight="390px",this.merchantCardHeight="62px",this.sortField="Balance Score",this.errorMessages=["","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusBalances=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===B.f7.XS?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:10,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:10,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:10,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:10,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:6,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:6,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:6,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:6,rows:8}]):this.screenSize===B.f7.SM||this.screenSize===B.f7.MD?(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:5,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:5,rows:1},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:5,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:5,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:10,rows:2}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:4},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:3,rows:4},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:3,rows:8},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:3,rows:8}]):(this.operatorCards=[{id:"node",goToOptions:[],links:[],icon:this.faServer,title:"Node Information",cols:3,rows:1},{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:3,rows:1},{id:"capacity",goToOptions:["Channels"],links:["connections"],icon:this.faNetworkWired,title:"Channels Capacity",cols:4,rows:2},{id:"fee",goToOptions:["Routing","Fees Summary"],links:["routing","reports"],icon:this.faBolt,title:"Routing Fee",cols:3,rows:1},{id:"status",goToOptions:["Channels","Inactive Channels"],links:["connections","connections/channels/pending"],icon:this.faNetworkWired,title:"Channels",cols:3,rows:1}],this.merchantCards=[{id:"balance",goToOptions:["On-Chain"],links:["onchain"],icon:this.faChartPie,title:"Balances",cols:2,rows:5},{id:"inboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleDown,title:"In-Bound Liquidity",cols:2,rows:10},{id:"outboundLiq",goToOptions:["Channels"],links:["connections"],icon:this.faAngleDoubleUp,title:"Out-Bound Liquidity",cols:2,rows:10},{id:"transactions",goToOptions:["Transactions","Transactions Summary"],links:["transactions","reports/transactions"],title:"",cols:2,rows:5}])}ngOnInit(){this.store.select(tA.RQ).pipe((0,I.Q)(this.unSubs[0]),(0,N.E)(this.store.select(j._c))).subscribe(([i,o])=>{this.errorMessages[0]="",this.errorMessages[3]="",this.apiCallStatusNodeInfo=i.apisCallStatus[0],this.apiCallStatusFHistory=i.apisCallStatus[1],this.apiCallStatusNodeInfo.status===B.wn.ERROR&&(this.errorMessages[0]=this.apiCallStatusNodeInfo.message?"object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message:""),this.apiCallStatusFHistory.status===B.wn.ERROR&&(this.errorMessages[3]=this.apiCallStatusFHistory.message?"object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message:""),this.selNode=o,this.information=i.information,this.fees=i.fees}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessages[2]="",this.apiCallStatusChannels=i.apiCallStatus,this.apiCallStatusChannels.status===B.wn.ERROR&&(this.errorMessages[2]=this.apiCallStatusChannels.message?"object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message:""),this.totalInboundLiquidity=0,this.totalOutboundLiquidity=0,this.activeChannels=i.activeChannels,this.activeChannelsCapacity=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels,"balancedness")))||[],this.allInboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels?.filter(o=>!!o.to_them_msat&&o.to_them_msat>0),"to_them_msat")))||[],this.allOutboundChannels=JSON.parse(JSON.stringify(this.commonService.sortDescByKey(this.activeChannels?.filter(o=>!!o.to_us_msat&&o.to_us_msat>0),"to_us_msat")))||[],this.activeChannels.forEach(o=>{this.totalInboundLiquidity=this.totalInboundLiquidity+Math.ceil((o.to_them_msat||0)/1e3),this.totalOutboundLiquidity=this.totalOutboundLiquidity+Math.floor((o.to_us_msat||0)/1e3)}),this.channelsStatus.active.channels=i.activeChannels.length||0,this.channelsStatus.pending.channels=i.pendingChannels.length||0,this.channelsStatus.inactive.channels=i.inactiveChannels.length||0,this.logger.info(i)}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessages[1]="",this.apiCallStatusBalances=i.apiCallStatus,this.apiCallStatusBalances.status===B.wn.ERROR&&(this.errorMessages[1]=this.apiCallStatusBalances.message?"object"==typeof this.apiCallStatusBalances.message?JSON.stringify(this.apiCallStatusBalances.message):this.apiCallStatusBalances.message:""),this.totalBalance=i.balance,this.balances.onchain=i.balance.totalBalance||0,this.balances.lightning=i.localRemoteBalance.localBalance,this.balances.total=this.balances.lightning+this.balances.onchain,this.balances=Object.assign({},this.balances);const o=i.localRemoteBalance.localBalance?+i.localRemoteBalance.localBalance:0,r=i.localRemoteBalance.remoteBalance?+i.localRemoteBalance.remoteBalance:0;this.channelBalances={localBalance:o,remoteBalance:r,balancedness:+(1-Math.abs((o-r)/(o+r))).toFixed(3)},this.channelsStatus.active.capacity=i.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=i.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=i.localRemoteBalance.inactiveBalance||0,this.logger.info(i)})}onNavigateTo(i){this.router.navigateByUrl("/cln/"+i)}onsortChannelsBy(){"Balance Score"===this.sortField?(this.sortField="Capacity",this.activeChannelsCapacity=this.activeChannels.sort((i,o)=>{const r=(i.to_us_msat?+i.to_us_msat:0)+(i.to_them_msat?+i.to_them_msat:0),iA=(o.to_them_msat?+o.to_them_msat:0)+(o.to_them_msat?+o.to_them_msat:0);return r>iA?-1:r{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(L.h),A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-home"]],standalone:!1,decls:3,vars:2,consts:[["merchantDashboard",""],["menuOperator","matMenu"],["menuMerchant","matMenu"],["menuTransactions","matMenu"],["fxLayout","column",4,"ngIf","ngIfElse"],["fxLayout","column"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","mb-2"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["cols","10","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan",4,"ngFor","ngForOf"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",3,"colspan","rowspan"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card"],["fxLayoutAlign","space-between center"],[1,"mr-1",3,"icon"],["mat-icon-button","","class","more-button","aria-label","Toggle menu",3,"matMenuTriggerFor",4,"ngIf"],["xPosition","before",1,"dashboard-vert-menu"],["mat-menu-item","",3,"click",4,"ngFor","ngForOf"],["mat-menu-item","",3,"click",4,"ngIf"],["fxLayout","column",3,"fxFlex","ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"balances","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"sortBy","channelBalances","activeChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["mat-icon-button","","aria-label","Toggle menu",1,"more-button",3,"matMenuTriggerFor"],["mat-menu-item","",3,"click"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"balances","errorMessage"],["fxFlex","100",3,"sortBy","channelBalances","activeChannels","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxLayout","row","fxLayoutAlign","start end",1,"page-title-container","mb-2"],["cols","6","gutterSize","20px",3,"rowHeight"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch",1,"h-100","dashboard-card",3,"ngClass"],[4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch",3,"fxFlex","ngClass"],["fxFlex","100",3,"information",4,"ngSwitchCase"],["fxFlex","100","direction","In",3,"totalLiquidity","activeChannels","errorMessage",4,"ngSwitchCase"],["fxFlex","100","direction","Out",3,"totalLiquidity","activeChannels","errorMessage",4,"ngSwitchCase"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start",4,"ngSwitchCase"],["fxFlex","100",3,"information"],["fxFlex","100","direction","In",3,"totalLiquidity","activeChannels","errorMessage"],["fxFlex","100","direction","Out",3,"totalLiquidity","activeChannels","errorMessage"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["mat-stretch-tabs","false","mat-align-tabs","start","fxLayout","column",1,"dashboard-tabs-group"],["label","Receive"],["calledFrom","home",1,"h-100"],["label","Pay"],["calledFrom","home"],[1,"underline"]],template:function(o,r){if(1&o&&A.DNE(0,Oa,7,4,"div",4)(1,Hi,6,4,"ng-template",null,0,A.C5r),2&o){const iA=A.sdS(2);A.Y8G("ngIf",(null==r.selNode?null:r.selNode.settings.userPersona)===r.userPersonaEnum.OPERATOR)("ngIfElse",iA)}},dependencies:[de.YU,de.Sq,de.bT,de.ux,de.e1,de.fG,P.aY,rA.iY,QA.RN,QA.m2,QA.MM,QA.dh,NA.B_,NA.NS,oA.An,uA.kk,uA.fb,uA.Cp,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,RA.mq,RA.T8,Ot,Z,ge,me,it,zt,Zt,Ar],encapsulation:2}))}return n(),l})();var Va=We(4572),Wa=We(2852),js=We(5416),gi=We(9454),ji=We(6013);const _r=["form"],Ka=["formSweepAll"],Xa=["stepper"],bi=(n,l)=>({"mr-6":n,"mr-2":l});function Xe(n,l){if(1&n&&(A.j41(0,"div",16),A.nrm(1,"fa-icon",17),A.j41(2,"span",18)(3,"div"),A.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(5,"span",19)(6,"span"),A.EFF(7),A.k0s(),A.j41(8,"span"),A.EFF(9),A.k0s(),A.j41(10,"span"),A.EFF(11),A.k0s(),A.j41(12,"span"),A.EFF(13),A.k0s(),A.j41(14,"span"),A.EFF(15),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faInfoCircle),A.R7$(6),A.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),A.R7$(2),A.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),A.R7$(2),A.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),A.R7$(2),A.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),A.R7$(2),A.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function ir(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function Oi(n,l){1&n&&(A.j41(0,"mat-hint"),A.EFF(1,"Amount replaced by UTXO balance"),A.k0s())}function Za(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.amountError)}}function Vr(n,l){if(1&n&&(A.j41(0,"mat-option",51),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.JRh(e)}}function qa(n,l){if(1&n&&(A.j41(0,"mat-option",51),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function Os(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function $a(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",52)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.j41(3,"input",53,5),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG(2);return A.DH7(r.customFeeRate,o)||(r.customFeeRate=o),w.Njj(o)}),A.k0s(),A.DNE(5,Os,2,0,"mat-error",23),A.k0s()}if(2&n){const e=A.XpG(2);A.R7$(3),A.Y8G("step",1)("min",0)("required","customperkb"===e.selFeeRate&&!e.flgMinConf),A.R50("ngModel",e.customFeeRate),A.R7$(2),A.Y8G("ngIf","customperkb"===e.selFeeRate&&!e.flgMinConf&&!e.customFeeRate)}}function Mc(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function Wr(n,l){if(1&n&&(A.j41(0,"mat-option",51),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.SpI("",A.i5U(2,2,e.amount_msat/1e3,"1.0-0")," Sats")}}function Kr(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.sendFundError)}}function Xr(n,l){if(1&n&&(A.j41(0,"div",54),A.nrm(1,"fa-icon",17),A.DNE(2,Kr,2,1,"span",23),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.sendFundError)}}function pc(n,l){if(1&n){const e=A.RV6();A.j41(0,"form",20,1),A.bIt("submit",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onSendFunds())})("reset",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.resetData())}),A.j41(2,"mat-form-field",21)(3,"mat-label"),A.EFF(4,"Bitcoin Address"),A.k0s(),A.j41(5,"input",22,2),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.transaction.destination,o)||(r.transaction.destination=o),w.Njj(o)}),A.k0s(),A.DNE(7,ir,2,0,"mat-error",23),A.k0s(),A.j41(8,"mat-form-field",24)(9,"mat-label"),A.EFF(10,"Amount"),A.k0s(),A.j41(11,"input",25,3),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.transaction.satoshi,o)||(r.transaction.satoshi=o),w.Njj(o)}),A.k0s(),A.DNE(13,Oi,2,0,"mat-hint",23),A.j41(14,"span",26),A.EFF(15),A.k0s(),A.DNE(16,Za,2,1,"mat-error",23),A.k0s(),A.j41(17,"mat-form-field",27)(18,"mat-label"),A.EFF(19,"Amount Unit"),A.k0s(),A.j41(20,"mat-select",28),A.bIt("selectionChange",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onAmountUnitChange(o))}),A.DNE(21,Vr,2,2,"mat-option",29),A.k0s()(),A.j41(22,"div",30)(23,"div",31)(24,"div",32)(25,"mat-form-field",33)(26,"mat-label"),A.EFF(27,"Fee Rate"),A.k0s(),A.j41(28,"mat-select",34),A.mxI("valueChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFeeRate,o)||(r.selFeeRate=o),w.Njj(o)}),A.bIt("selectionChange",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.customFeeRate=null)}),A.DNE(29,qa,2,2,"mat-option",29),A.k0s()(),A.DNE(30,$a,6,5,"mat-form-field",35),A.k0s(),A.j41(31,"div",36)(32,"mat-checkbox",37),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.flgMinConf,o)||(r.flgMinConf=o),w.Njj(o)}),A.bIt("change",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.flgMinConf?o.selFeeRate=null:o.minConfValue=null)}),A.k0s(),A.j41(33,"mat-form-field",38)(34,"mat-label"),A.EFF(35,"Min Confirmation Blocks"),A.k0s(),A.j41(36,"input",39,4),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.minConfValue,o)||(r.minConfValue=o),w.Njj(o)}),A.k0s(),A.DNE(38,Mc,2,0,"mat-error",23),A.k0s()()(),A.j41(39,"mat-expansion-panel",40),A.bIt("closed",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onAdvancedPanelToggle(!0))})("opened",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onAdvancedPanelToggle(!1))}),A.j41(40,"mat-expansion-panel-header")(41,"mat-panel-title")(42,"span"),A.EFF(43),A.k0s()()(),A.j41(44,"div",30)(45,"div",41)(46,"mat-form-field",42)(47,"mat-label"),A.EFF(48,"Coin Selection"),A.k0s(),A.j41(49,"mat-select",43),A.mxI("valueChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selUTXOs,o)||(r.selUTXOs=o),w.Njj(o)}),A.bIt("selectionChange",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onUTXOSelectionChange(o))}),A.j41(50,"mat-select-trigger"),A.EFF(51),A.nI1(52,"number"),A.k0s(),A.DNE(53,Wr,3,5,"mat-option",29),A.k0s()(),A.j41(54,"div",44)(55,"mat-slide-toggle",45),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.flgUseAllBalance,o)||(r.flgUseAllBalance=o),w.Njj(o)}),A.bIt("change",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onUTXOAllBalanceChange())}),A.EFF(56," Use selected UTXOs balance "),A.k0s(),A.j41(57,"mat-icon",46),A.EFF(58,"info_outline"),A.k0s()()()()(),A.nrm(59,"div",30),A.DNE(60,Xr,3,2,"div",47),A.j41(61,"div",48)(62,"button",49),A.EFF(63,"Clear Fields"),A.k0s(),A.j41(64,"button",50),A.EFF(65,"Send Funds"),A.k0s()()()()}if(2&n){const e=A.XpG();A.R7$(5),A.R50("ngModel",e.transaction.destination),A.R7$(2),A.Y8G("ngIf",!e.transaction.destination),A.R7$(4),A.Y8G("type",e.flgUseAllBalance?"text":"number")("step",100)("min",0)("disabled",e.flgUseAllBalance),A.R50("ngModel",e.transaction.satoshi),A.R7$(2),A.Y8G("ngIf",e.flgUseAllBalance),A.R7$(2),A.SpI("",e.selAmountUnit," "),A.R7$(),A.Y8G("ngIf",!e.transaction.satoshi),A.R7$(4),A.Y8G("value",e.selAmountUnit)("disabled",e.flgUseAllBalance),A.R7$(),A.Y8G("ngForOf",e.amountUnits),A.R7$(4),A.Y8G("ngClass","customperkb"!==e.selFeeRate||e.flgMinConf?"flex-100":"flex-48"),A.R7$(3),A.Y8G("disabled",e.flgMinConf),A.R50("value",e.selFeeRate),A.R7$(),A.Y8G("ngForOf",e.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===e.selFeeRate&&!e.flgMinConf),A.R7$(2),A.Y8G("ngClass",A.l_i(36,bi,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD||e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),A.R50("ngModel",e.flgMinConf),A.R7$(4),A.Y8G("step",1)("min",0)("required",e.flgMinConf)("disabled",!e.flgMinConf),A.R50("ngModel",e.minConfValue),A.R7$(2),A.Y8G("ngIf",e.flgMinConf&&!e.minConfValue),A.R7$(5),A.JRh(e.advancedTitle),A.R7$(6),A.R50("value",e.selUTXOs),A.R7$(2),A.Lme("",A.bMT(52,34,e.totalSelectedUTXOAmount)," Sats (",e.selUTXOs.length>1?e.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.R7$(2),A.Y8G("ngForOf",e.utxos),A.R7$(2),A.Y8G("disabled",e.selUTXOs.length<1),A.R50("ngModel",e.flgUseAllBalance),A.R7$(5),A.Y8G("ngIf",""!==e.sendFundError)}}function Ao(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG(3);A.JRh(e.passwordFormLabel)}}function eo(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Password is required."),A.k0s())}function to(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-step",58)(1,"form",76),A.DNE(2,Ao,1,1,"ng-template",70),A.j41(3,"div",7)(4,"mat-form-field",18)(5,"mat-label"),A.EFF(6,"Password"),A.k0s(),A.nrm(7,"input",77),A.DNE(8,eo,2,0,"mat-error",23),A.k0s()(),A.j41(9,"div",78)(10,"button",73),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.onAuthenticate())}),A.EFF(11,"Confirm"),A.k0s()()()()}if(2&n){const e=A.XpG(2);A.Y8G("stepControl",e.passwordFormGroup)("editable",e.flgEditable),A.R7$(),A.Y8G("formGroup",e.passwordFormGroup),A.R7$(7),A.Y8G("ngIf",null==e.passwordFormGroup.controls.password.errors?null:e.passwordFormGroup.controls.password.errors.required)}}function no(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG(2);A.JRh(e.sendFundFormLabel)}}function io(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Bitcoin address is required."),A.k0s())}function Zr(n,l){if(1&n&&(A.j41(0,"mat-option",51),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function so(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function ro(n,l){if(1&n&&(A.j41(0,"mat-form-field",52)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.nrm(3,"input",79),A.DNE(4,so,2,0,"mat-error",23),A.k0s()),2&n){const e=A.XpG(2);A.R7$(3),A.Y8G("step",1)("min",0),A.R7$(),A.Y8G("ngIf","customperkb"===e.sendFundFormGroup.controls.selFeeRate.value&&!e.sendFundFormGroup.controls.flgMinConf.value&&!e.sendFundFormGroup.controls.customFeeRate.value)}}function ao(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function oo(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG(2);A.JRh(e.confirmFormLabel)}}function lo(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.sendFundError)}}function Ic(n,l){if(1&n&&(A.j41(0,"div",54),A.nrm(1,"fa-icon",17),A.DNE(2,lo,2,1,"span",23),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.sendFundError)}}function qr(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",55)(1,"mat-vertical-stepper",56,6),A.bIt("selectionChange",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.stepSelectionChanged(o))}),A.DNE(3,to,12,4,"mat-step",57),A.j41(4,"mat-step",58)(5,"form",59),A.DNE(6,no,1,1,"ng-template",60),A.j41(7,"div",30)(8,"mat-form-field",18)(9,"mat-label"),A.EFF(10,"Bitcoin Address"),A.k0s(),A.nrm(11,"input",61),A.DNE(12,io,2,0,"mat-error",23),A.k0s(),A.j41(13,"div",62)(14,"div",32)(15,"mat-form-field",33)(16,"mat-label"),A.EFF(17,"Fee Rate"),A.k0s(),A.j41(18,"mat-select",63),A.DNE(19,Zr,2,2,"mat-option",29),A.k0s()(),A.DNE(20,ro,5,3,"mat-form-field",35),A.k0s(),A.j41(21,"div",36),A.nrm(22,"mat-checkbox",64),A.j41(23,"mat-form-field",38)(24,"mat-label"),A.EFF(25,"Min Confirmation Blocks"),A.k0s(),A.nrm(26,"input",65),A.DNE(27,ao,2,0,"mat-error",23),A.k0s()()()(),A.j41(28,"div",66)(29,"button",67),A.EFF(30,"Next"),A.k0s()()()(),A.j41(31,"mat-step",68)(32,"form",69),A.DNE(33,oo,1,1,"ng-template",70),A.j41(34,"div",55)(35,"div",71),A.nrm(36,"fa-icon",72),A.j41(37,"span"),A.EFF(38,"You are about to sweep all funds from RTL. Are you sure?"),A.k0s()(),A.DNE(39,Ic,3,2,"div",47),A.j41(40,"div",66)(41,"button",73),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onSendFunds())}),A.EFF(42,"Sweep All Funds"),A.k0s()()()()()(),A.j41(43,"div",74)(44,"button",75),A.EFF(45),A.k0s()()()}if(2&n){const e=A.XpG();A.R7$(),A.Y8G("linear",!0),A.R7$(2),A.Y8G("ngIf",!e.appConfig.SSO.rtlSSO),A.R7$(),A.Y8G("stepControl",e.sendFundFormGroup)("editable",e.flgEditable),A.R7$(),A.Y8G("formGroup",e.sendFundFormGroup),A.R7$(7),A.Y8G("ngIf",null==e.sendFundFormGroup.controls.transactionAddress.errors?null:e.sendFundFormGroup.controls.transactionAddress.errors.required),A.R7$(3),A.Y8G("ngClass","customperkb"!==e.sendFundFormGroup.controls.selFeeRate.value||e.sendFundFormGroup.controls.flgMinConf.value?"flex-100":"flex-48"),A.R7$(4),A.Y8G("ngForOf",e.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===e.sendFundFormGroup.controls.selFeeRate.value&&!e.sendFundFormGroup.controls.flgMinConf.value),A.R7$(2),A.Y8G("ngClass",A.l_i(20,bi,e.screenSize===e.screenSizeEnum.XS||e.screenSize===e.screenSizeEnum.SM,e.screenSize===e.screenSizeEnum.MD||e.screenSize===e.screenSizeEnum.LG||e.screenSize===e.screenSizeEnum.XL)),A.R7$(4),A.Y8G("step",1)("min",0)("required",e.sendFundFormGroup.controls.flgMinConf.value),A.R7$(),A.Y8G("ngIf",e.sendFundFormGroup.controls.flgMinConf.value&&!e.sendFundFormGroup.controls.minConfValue.value),A.R7$(4),A.Y8G("stepControl",e.confirmFormGroup),A.R7$(),A.Y8G("formGroup",e.confirmFormGroup),A.R7$(4),A.Y8G("icon",e.faExclamationTriangle),A.R7$(3),A.Y8G("ngIf",""!==e.sendFundError),A.R7$(5),A.Y8G("mat-dialog-close",!1),A.R7$(),A.JRh(e.flgValidated?"Close":"Cancel")}}let co=(()=>{var n;class l{constructor(i,o,r,iA,ne,re,ln,Qt,wn,Ow,Jw){this.dialogRef=i,this.data=o,this.logger=r,this.dataService=iA,this.store=ne,this.commonService=re,this.decimalPipe=ln,this.actions=Qt,this.formBuilder=wn,this.rtlEffects=Ow,this.snackBar=Jw,this.faExclamationTriangle=v.zpE,this.faInfoCircle=v.iW_,this.sweepAll=!1,this.addressTypes=[],this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=null,this.selectedAddress=B.Ld[1],this.blockchainBalance={},this.information={},this.newAddress="",this.transaction={},this.feeRateTypes=B.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.sendFundError="",this.fiatConversion=!1,this.amountUnits=B.A0,this.selAmountUnit=B.A0[0],this.currConvertorRate={},this.unitConversionValue=0,this.currencyUnitFormats=B.k,this.advancedTitle="Advanced Options",this.flgValidated=!1,this.flgEditable=!0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds",this.confirmFormLabel="Confirm sweep",this.amountError="Amount is Required.",this.screenSize="",this.screenSizeEnum=B.f7,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.dataService.getRecommendedFeeRates().pipe((0,I.Q)(this.unSubs[0])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}}),this.sweepAll=this.data.sweepAll,this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[hA.k0.required]],password:["",[hA.k0.required]]}),this.sendFundFormGroup=this.formBuilder.group({transactionAddress:["",hA.k0.required],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}]}),this.confirmFormGroup=this.formBuilder.group({}),this.sendFundFormGroup.controls.flgMinConf.valueChanges.pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{i?(this.sendFundFormGroup.controls.selFeeRate.disable(),this.sendFundFormGroup.controls.selFeeRate.setValue(null),this.sendFundFormGroup.controls.minConfValue.reset(),this.sendFundFormGroup.controls.minConfValue.enable(),this.sendFundFormGroup.controls.minConfValue.setValidators([hA.k0.required]),this.sendFundFormGroup.controls.minConfValue.setValue(null)):(this.sendFundFormGroup.controls.selFeeRate.enable(),this.sendFundFormGroup.controls.selFeeRate.setValue(null),this.sendFundFormGroup.controls.minConfValue.setValue(null),this.sendFundFormGroup.controls.minConfValue.disable(),this.sendFundFormGroup.controls.minConfValue.setValidators(null),this.sendFundFormGroup.controls.minConfValue.setErrors(null))}),this.sendFundFormGroup.controls.selFeeRate.valueChanges.pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.sendFundFormGroup.controls.customFeeRate.setValue(null),this.sendFundFormGroup.controls.customFeeRate.reset(),this.sendFundFormGroup.controls.customFeeRate.setValidators("customperkb"!==i||this.sendFundFormGroup.controls.flgMinConf.value?null:[hA.k0.required])}),(0,Va.z)([this.store.select(j._c),this.store.select(j.qv)]).pipe((0,I.Q)(this.unSubs[3])).subscribe(([i,o])=>{this.fiatConversion=i.settings.fiatConversion,this.amountUnits=i.settings.currencyUnits,this.appConfig=o}),this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[4])).subscribe(i=>{this.information=i}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[5])).subscribe(i=>{this.utxos=this.commonService.sortAscByKey(i.utxos?.filter(o=>"confirmed"===o.status),"value"),this.logger.info(i)}),this.actions.pipe((0,I.Q)(this.unSubs[6]),(0,nA.p)(i=>i.type===B.TC.UPDATE_API_CALL_STATUS_CLN||i.type===B.TC.SET_CHANNEL_TRANSACTION_RES_CLN)).subscribe(i=>{i.type===B.TC.SET_CHANNEL_TRANSACTION_RES_CLN&&(this.store.dispatch((0,C.UI)({payload:"Fund Sent Successfully!"})),this.dialogRef.close()),i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===B.wn.ERROR&&"SetChannelTransaction"===i.payload.action&&(this.sendFundError=i.payload.message)})}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,C.oz)({payload:Wa(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,bt.s)(1)).subscribe(i=>{"ERROR"!==i?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onSendFunds(){if(this.sendFundError="",this.flgUseAllBalance&&(this.transaction.satoshi="all"),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.transaction.utxos=[],this.selUTXOs.forEach(i=>this.transaction.utxos?.push(i.txid+":"+i.output))),this.sweepAll){if(!this.sendFundFormGroup.controls.transactionAddress.value||""===this.sendFundFormGroup.controls.transactionAddress.value||this.sendFundFormGroup.controls.flgMinConf.value&&(!this.sendFundFormGroup.controls.minConfValue.value||this.sendFundFormGroup.controls.minConfValue.value<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshi="all",this.transaction.destination=this.sendFundFormGroup.controls.transactionAddress.value,this.sendFundFormGroup.controls.flgMinConf.value?(delete this.transaction.feerate,this.transaction.minconf=this.sendFundFormGroup.controls.flgMinConf.value?this.sendFundFormGroup.controls.minConfValue.value:null):(delete this.transaction.minconf,this.transaction.feerate="customperkb"===this.sendFundFormGroup.controls.selFeeRate.value&&!this.sendFundFormGroup.controls.flgMinConf.value&&this.sendFundFormGroup.controls.customFeeRate.value?1e3*this.sendFundFormGroup.controls.customFeeRate.value+"perkb":this.sendFundFormGroup.controls.selFeeRate.value),delete this.transaction.utxos,this.store.dispatch((0,VA.aB)({payload:this.transaction}))}else{if(this.transaction.minconf=this.flgMinConf?this.minConfValue:null,this.transaction.feerate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":""!==this.selFeeRate?this.selFeeRate:null,!this.transaction.destination||""===this.transaction.destination||!this.transaction.satoshi||+this.transaction.satoshi<=0||this.flgMinConf&&(!this.transaction.minconf||this.transaction.minconf<=0)||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate)return!0;this.transaction.satoshi&&"all"!==this.transaction.satoshi&&this.selAmountUnit!==B.BQ.SATS?this.commonService.convertCurrency(+this.transaction.satoshi,this.selAmountUnit===this.amountUnits[2]?B.BQ.OTHER:this.selAmountUnit,B.BQ.SATS,this.amountUnits[2],this.fiatConversion).pipe((0,I.Q)(this.unSubs[7])).subscribe({next:i=>{this.transaction.satoshi=i[B.BQ.SATS],this.selAmountUnit=B.BQ.SATS,this.store.dispatch((0,VA.aB)({payload:this.transaction}))},error:i=>{this.transaction.satoshi=null,this.selAmountUnit=B.BQ.SATS,this.amountError="Conversion Error: "+i}}):this.store.dispatch((0,VA.aB)({payload:this.transaction}))}}resetData(){this.sendFundError="",this.transaction={},this.flgMinConf=!1,this.totalSelectedUTXOAmount=null,this.selUTXOs=[],this.flgUseAllBalance=!1,this.selAmountUnit=B.A0[0]}stepSelectionChanged(i){switch(this.sendFundError="",i.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password",this.sendFundFormLabel="Sweep funds";break;case 1:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds";break;case 2:this.passwordFormLabel="User authenticated successfully",this.sendFundFormLabel="Sweep funds | Address: "+this.sendFundFormGroup.controls.transactionAddress.value+(this.sendFundFormGroup.controls.flgMinConf.value?" | Min Confirmation Blocks: "+this.sendFundFormGroup.controls.minConfValue.value:this.sendFundFormGroup.controls.selFeeRate.value?" | Fee Rate: "+this.feeRateTypes.find(o=>o.feeRateId===this.sendFundFormGroup.controls.selFeeRate.value)?.feeRateType:"")}i.selectedIndex0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((o,r)=>o+(r.amount_msat||0)/1e3,0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=null,this.transaction.satoshi=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.flgUseAllBalance?(this.transaction.satoshi=this.totalSelectedUTXOAmount,this.selAmountUnit=B.A0[0]):this.transaction.satoshi=null}onAmountUnitChange(i){const o=this,r=this.selAmountUnit===this.amountUnits[2]?B.BQ.OTHER:this.selAmountUnit;let iA=i.value===this.amountUnits[2]?B.BQ.OTHER:i.value;this.transaction.satoshi&&this.selAmountUnit!==i.value&&this.commonService.convertCurrency(+this.transaction.satoshi,r,iA,this.amountUnits[2],this.fiatConversion).pipe((0,I.Q)(this.unSubs[8])).subscribe({next:ne=>{this.selAmountUnit=i.value,o.transaction.satoshi=o.decimalPipe.transform(ne[iA],o.currencyUnitFormats[iA])?.replace(/,/g,"")},error:ne=>{o.transaction.satoshi=null,this.amountError="Conversion Error: "+ne,this.selAmountUnit=r,iA=r}})}onAdvancedPanelToggle(i){this.advancedTitle=i&&this.selUTXOs.length&&this.selUTXOs.length>0?"Advanced Options | Selected UTXOs: "+this.selUTXOs.length+" | Selected UTXO Amount: "+this.decimalPipe.transform(this.totalSelectedUTXOAmount)+" Sats":"Advanced Options"}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(aA.gP),A.rXU(Dt.u),A.rXU(AA.il),A.rXU(L.h),A.rXU(de.QX),A.rXU(kA.En),A.rXU(hA.ze),A.rXU(b.H),A.rXU(js.UG))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain-send-modal"]],viewQuery:function(o,r){if(1&o&&(A.GBs(_r,7),A.GBs(Ka,5),A.GBs(Xa,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first),A.mGM(iA=A.lsd())&&(r.formSweepAll=iA.first),A.mGM(iA=A.lsd())&&(r.stepper=iA.first)}},standalone:!1,decls:13,vars:5,consts:[["sweepAllBlock",""],["form","ngForm"],["address","ngModel"],["amount","ngModel"],["blocks","ngModel"],["custFeeRate","ngModel"],["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],["fxLayout","column",1,"padding-gap-x-large"],["fxFlex","100","class","alert alert-info mb-2",4,"ngIf"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100","class","overflow-x-hidden",3,"submit","reset",4,"ngIf","ngIfElse"],["fxFlex","100",1,"alert","alert-info","mb-2"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxLayout","row wrap","fxLayoutAlign","space-between start","fxFlex","100",1,"overflow-x-hidden",3,"submit","reset"],["fxLayout","column","fxFlex","55"],["matInput","","autoFocus","","name","address","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","30"],["matInput","","name","amount","required","",3,"ngModelChange","type","step","min","disabled","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","10","fxLayoutAlign","start end"],["required","","name","amountUnit",3,"selectionChange","value","disabled"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","48","fxLayoutAlign","space-between start"],["fxLayout","column","fxLayoutAlign","start center",3,"ngClass"],[3,"valueChange","selectionChange","disabled","value"],["fxFlex","48","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","48","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModelChange","change","ngClass","ngModel"],["fxLayout","column","fxFlex","93"],["matInput","","type","number","name","blocks",3,"ngModelChange","step","min","required","disabled","ngModel"],["fxLayout","column","fxFlex","100","expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","35","fxLayoutAlign","start end"],["multiple","",3,"valueChange","selectionChange","value"],["fxFlex","60","fxLayout","row","fxLayoutAlign","start center"],["color","primary","name","flgUseAllBalance",3,"ngModelChange","change","disabled","ngModel"],["matTooltip","Use selected UTXOs balance as the amount to be sent. Final amount sent will be less the mining fee.","matTooltipPosition","above",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","type","reset",1,"mr-1"],["mat-button","","color","primary","type","submit"],[3,"value"],["fxFlex","48","fxLayoutAlign","end center"],["matInput","","type","number","name","custFeeRate",3,"ngModelChange","step","min","required","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl","editable"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["matInput","","formControlName","transactionAddress","name","address","required",""],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["formControlName","selFeeRate"],["fxFlex","7","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["matInput","","formControlName","minConfValue","type","number","name","blocks",3,"step","min","required"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","type","button ","matStepperNext",""],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxFlex","100",1,"w-100","alert","alert-warn"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["mat-button","","color","primary","type","button",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["autoFocus","","matInput","","type","password","formControlName","password","required",""],["fxLayout","row",1,"mt-2"],["matInput","","formControlName","customFeeRate","type","number","name","custFeeRate",3,"step","min"]],template:function(o,r){if(1&o&&(A.j41(0,"div",7)(1,"div",8)(2,"mat-card-header",9)(3,"div",10)(4,"span",11),A.EFF(5),A.k0s()(),A.j41(6,"button",12),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",13),A.DNE(9,Xe,16,6,"div",14)(10,pc,66,39,"form",15),A.k0s()()(),A.DNE(11,qr,46,23,"ng-template",null,0,A.C5r)),2&o){const iA=A.sdS(12);A.R7$(5),A.JRh(r.sweepAll?"Sweep All Funds":"Send Funds"),A.R7$(),A.Y8G("mat-dialog-close",!1),A.R7$(3),A.Y8G("ngIf",r.recommendedFee.minimumFee),A.R7$(),A.Y8G("ngIf",!r.sweepAll)("ngIfElse",iA)}},dependencies:[de.YU,de.Sq,de.bT,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.VZ,hA.vS,hA.cV,hA.j4,hA.JD,P.aY,wA.tx,fA.$z,QA.m2,QA.MM,Ze.So,gi.GK,gi.Z2,gi.WN,oA.An,UA.fg,yA.rl,yA.nJ,yA.MV,yA.TL,yA.yw,Q.DJ,Q.sA,Q.UI,dA.PW,OA.VO,OA.$2,xA.wT,Ee.sG,HA.oV,ji.V5,ji.Ti,ji.M6,ji.F7,cA.N,J.V,de.QX],encapsulation:2}))}return n(),l})();var $r=We(5837),Aa=We(1975);const go=()=>["all"],Bo=n=>({"error-border":n}),fo=()=>["no_utxo"],br=n=>({width:n}),ea=n=>({"display-none":n});function Pn(n,l){if(1&n&&(A.j41(0,"mat-option",37),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function uo(n,l){1&n&&A.nrm(0,"mat-progress-bar",38)}function ho(n,l){1&n&&A.nrm(0,"th",39)}function Eo(n,l){1&n&&(A.j41(0,"span",42)(1,"mat-icon",43),A.EFF(2,"warning"),A.k0s()())}function wo(n,l){if(1&n&&(A.j41(0,"td",40),A.DNE(1,Eo,3,0,"span",41),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(),o=A.sdS(56);A.R7$(),A.Y8G("ngIf",i.numDustUTXOs>0&&!i.isDustUTXO&&(null==e?null:e.amount_msat)/1e30||0===e.amount_msat),A.R7$(),A.Y8G("ngIf",e.amount_msat<0)}}function kt(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Blockheight"),A.k0s())}function Do(n,l){if(1&n&&(A.j41(0,"td",40)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.bMT(3,1,null==e?null:e.blockheight)," ")}}function Si(n,l){1&n&&(A.j41(0,"th",49),A.EFF(1,"Reserved"),A.k0s())}function Fo(n,l){if(1&n&&(A.j41(0,"td",40)(1,"span"),A.EFF(2),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(e.reserved?"Yes":"No")}}function yo(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",57)(1,"div",58)(2,"mat-select",59),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",60),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function xo(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",61)(1,"button",62),A.bIt("click",function(o){const r=w.eBV(e).$implicit,iA=A.XpG();return w.Njj(iA.onUTXOClick(r,o))}),A.EFF(2,"View Info"),A.k0s()()}}function or(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No utxos available."),A.k0s())}function Kn(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting utxos..."),A.k0s())}function na(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function ls(n,l){if(1&n&&(A.j41(0,"td",63),A.DNE(1,or,2,0,"p",64)(2,Kn,2,0,"p",64)(3,na,2,1,"p",64),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.listUTXOs&&e.listUTXOs.data)||(null==e.listUTXOs||null==e.listUTXOs.data?null:e.listUTXOs.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.listUTXOs&&e.listUTXOs.data)||(null==e.listUTXOs||null==e.listUTXOs.data?null:e.listUTXOs.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.listUTXOs&&e.listUTXOs.data)||(null==e.listUTXOs||null==e.listUTXOs.data?null:e.listUTXOs.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function ia(n,l){if(1&n&&A.nrm(0,"tr",65),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,ea,(null==e.listUTXOs?null:e.listUTXOs.data)&&(null==e.listUTXOs||null==e.listUTXOs.data?null:e.listUTXOs.data.length)>0))}}function Yo(n,l){1&n&&A.nrm(0,"tr",66)}function lr(n,l){1&n&&A.nrm(0,"tr",67)}function cr(n,l){1&n&&A.nrm(0,"mat-icon",68)}let Ni=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.commonService=o,this.store=r,this.camelCaseWithReplace=iA,this.numDustUTXOs=0,this.isDustUTXO=!1,this.dustAmount=1e3,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="on_chain",this.tableSetting={tableId:"utxos",recordsPerPage:B.md,sortBy:"status",sortOrder:B.oi.DESCENDING},this.displayedColumns=[],this.listUTXOs=new z.I6([]),this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.tableSetting.tableId=this.isDustUTXO?"dust_utxos":"utxos",this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("status"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),i.utxos&&i.utxos.length>0&&(this.dustUtxos=i.utxos?.filter(o=>+(o.amount_msat||0)/1e30&&this.loadUTXOsTable(this.dustUtxos):(this.displayedColumns.unshift("is_dust"),this.utxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos))),this.logger.info(i)})}ngAfterViewInit(){setTimeout(()=>{this.isDustUTXO?this.dustUtxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.dustUtxos):this.utxos&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadUTXOsTable(this.utxos)},0)}onUTXOClick(i,o){const r=[[{key:"txid",value:i.txid,title:"Transaction ID",width:100,type:B.UN.STRING,explorerLink:"tx"}],[{key:"output",value:i.output,title:"Output",width:50,type:B.UN.NUMBER},{key:"amount_msat",value:(i.amount_msat||0)/1e3,title:"Value (Sats)",width:50,type:B.UN.NUMBER}],[{key:"status",value:this.commonService.titleCase(i.status||""),title:"Status",width:50,type:B.UN.STRING},{key:"blockheight",value:i.blockheight,title:"Blockheight",width:50,type:B.UN.NUMBER}],[{key:"address",value:i.address,title:"Address",width:100}]];this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"UTXO Information",message:r}}}))}applyFilter(){this.listUTXOs.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):"is_dust"===i?"Dust":this.commonService.titleCase(i)}setFilterPredicate(){this.listUTXOs.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=JSON.stringify(i).toLowerCase();break;case"is_dust":r=(i?.amount_msat||0)/1e3"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"is_dust"===this.selFilterBy||"status"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadUTXOsTable(i){this.listUTXOs=new z.I6([...i]),this.listUTXOs.sort=this.sort,this.listUTXOs.sortingDataAccessor=(o,r)=>{switch(r){case"is_dust":return(o.amount_msat||0)/1e30&&this.commonService.downloadFile(this.listUTXOs.data,"UTXOs")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain-utxos"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},inputs:{numDustUTXOs:"numDustUTXOs",isDustUTXO:"isDustUTXO",dustAmount:"dustAmount"},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("UTXOs")}])],decls:57,vars:18,consts:[["table",""],["emptySpace",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start start"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","is_dust"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Dust/Nondust",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status",4,"matHeaderCellDef"],["matColumnDef","txid"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","address"],["matColumnDef","scriptpubkey"],["matColumnDef","output"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","value"],["matColumnDef","blockheight"],["matColumnDef","reserved"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_utxo"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Dust/Nondust"],["mat-cell",""],["matTooltip","Risk of dust attack","matTooltipPosition","right",4,"ngIf","ngIfElse"],["matTooltip","Risk of dust attack","matTooltipPosition","right"],["fxLayoutAlign","start center","color","warn",1,"small-icon"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Status"],["class","dot green","matTooltip","Confirmed","matTooltipPosition","right",4,"ngIf"],["class","dot yellow","matTooltipPosition","right",3,"matTooltip",4,"ngIf"],["matTooltip","Confirmed","matTooltipPosition","right",1,"dot","green"],["matTooltipPosition","right",1,"dot","yellow",3,"matTooltip"],["mat-header-cell","","mat-sort-header",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["fxLayoutAlign","end center","class","red",4,"ngIf"],["fxLayoutAlign","end center",1,"red"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],["fxLayoutAlign","start center","color","warn",1,"mr-1"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",2)(1,"div",3),A.nrm(2,"div",4),A.j41(3,"div",5)(4,"mat-form-field",6)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",7),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,Pn,2,2,"mat-option",8),A.k0s()()(),A.j41(10,"mat-form-field",6)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",9),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(14,"div",10)(15,"div",11),A.DNE(16,uo,1,0,"mat-progress-bar",12),A.j41(17,"table",13,0),A.qex(19,14),A.DNE(20,ho,1,0,"th",15)(21,wo,2,2,"td",16),A.bVm(),A.qex(22,17),A.DNE(23,Co,1,0,"th",18)(24,Dc,3,2,"td",16),A.bVm(),A.qex(25,19),A.DNE(26,Mo,2,0,"th",20)(27,vi,4,4,"td",16),A.bVm(),A.qex(28,21),A.DNE(29,po,2,0,"th",20)(30,ta,4,4,"td",16),A.bVm(),A.qex(31,22),A.DNE(32,vr,2,0,"th",20)(33,qt,4,4,"td",16),A.bVm(),A.qex(34,23),A.DNE(35,Ri,2,0,"th",24)(36,Rr,4,3,"td",16),A.bVm(),A.qex(37,25),A.DNE(38,Io,2,0,"th",24)(39,ar,3,2,"td",16),A.bVm(),A.qex(40,26),A.DNE(41,kt,2,0,"th",24)(42,Do,4,3,"td",16),A.bVm(),A.qex(43,27),A.DNE(44,Si,2,0,"th",20)(45,Fo,3,1,"td",16),A.bVm(),A.qex(46,28),A.DNE(47,yo,6,0,"th",29)(48,xo,3,0,"td",30),A.bVm(),A.qex(49,31),A.DNE(50,ls,4,3,"td",32),A.bVm(),A.DNE(51,ia,1,3,"tr",33)(52,Yo,1,0,"tr",34)(53,lr,1,0,"tr",35),A.k0s(),A.nrm(54,"mat-paginator",36),A.k0s()()(),A.DNE(55,cr,1,0,"ng-template",null,1,A.C5r)}2&o&&(A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,go).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(3),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.listUTXOs)("ngClass",A.eq3(15,Bo,""!==r.errorMessage)),A.R7$(34),A.Y8G("matFooterRowDef",A.lJ4(17,fo)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,fA.$z,oA.An,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld,de.QX,de.PV],styles:[".mat-column-is_dust[_ngcontent-%COMP%]{max-width:3rem;width:3rem;text-overflow:unset}.mat-column-status[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();function bo(n,l){if(1&n&&(A.j41(0,"span",4),A.EFF(1,"UTXOs"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.numUtxos))}}function gr(n,l){if(1&n&&(A.j41(0,"span",5),A.EFF(1,"Dust UTXOs"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.numDustUtxos))}}let Js=(()=>{var n;class l{constructor(i,o){this.logger=i,this.store=o,this.selectedTableIndex=0,this.selectedTableIndexChange=new A.bkB,this.numUtxos=0,this.numDustUtxos=0,this.DUST_AMOUNT=1e3,this.unSubs=[new g.B,new g.B]}ngOnInit(){this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{i.utxos&&i.utxos.length>0&&(this.numUtxos=i.utxos.length||0,this.numDustUtxos=i.utxos?.filter(o=>+(o.amount_msat||0)/1e3{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-utxo-tables"]],inputs:{selectedTableIndex:"selectedTableIndex"},outputs:{selectedTableIndexChange:"selectedTableIndexChange"},standalone:!1,decls:8,vars:7,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"bordered-box","my-2"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedIndex"],["mat-tab-label",""],["fxLayout","row","fxFlex","100",3,"numDustUTXOs","isDustUTXO","dustAmount"],["matBadgeOverlap","false","matBadgeColor","primary",1,"tab-badge",3,"matBadge"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"mat-tab-group",1),A.bIt("selectedIndexChange",function(ne){return r.onSelectedIndexChanged(ne)}),A.j41(2,"mat-tab"),A.DNE(3,bo,2,2,"ng-template",2),A.nrm(4,"rtl-cln-on-chain-utxos",3),A.k0s(),A.j41(5,"mat-tab"),A.DNE(6,gr,2,2,"ng-template",2),A.nrm(7,"rtl-cln-on-chain-utxos",3),A.k0s()()()),2&o&&(A.R7$(),A.Y8G("selectedIndex",r.selectedTableIndex),A.R7$(3),A.Y8G("numDustUTXOs",r.numDustUtxos)("isDustUTXO",!1)("dustAmount",r.DUST_AMOUNT),A.R7$(3),A.Y8G("numDustUTXOs",r.numDustUtxos)("isDustUTXO",!0)("dustAmount",r.DUST_AMOUNT))},dependencies:[Q.DJ,Q.sA,Q.UI,Aa.k,RA.ES,RA.mq,RA.T8,Ni],encapsulation:2}))}return n(),l})();const vo=(n,l)=>[n,l];function Ro(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",13),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.activeLink=null==o?null:o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("active",i.activeLink===(null==e?null:e.link))("routerLink",A.l_i(3,vo,null==e?null:e.link,null==i.selectedTable?null:i.selectedTable.name)),A.R7$(),A.JRh(null==e?null:e.name)}}let So=(()=>{var n;class l{constructor(i,o,r){this.store=i,this.router=o,this.activatedRoute=r,this.faExchangeAlt=v._qq,this.faChartPie=v.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"receive",name:"Receive"},{link:"send",name:"Send"},{link:"sweep",name:"Sweep All"}],this.activeLink=this.links[0].link,this.tables=[{id:0,name:"utxos"},{id:1,name:"dustUtxos"}],this.selectedTable=this.tables[0],this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.selectedTable=this.tables.find(o=>o.name===this.router.url.substring(this.router.url.lastIndexOf("/")+1))||this.tables[0],this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(o=>o instanceof xt.gx)).subscribe({next:o=>{const r=this.links.find(iA=>o.urlAfterRedirects.includes(iA.link));this.activeLink=r?r.link:this.links[0].link,this.selectedTable=this.tables.find(iA=>iA.name===o.urlAfterRedirects.substring(o.urlAfterRedirects.lastIndexOf("/")+1))||this.tables[0]}}),this.store.select(j._c).pipe((0,I.Q)(this.unSubs[1])).subscribe(o=>{this.selNode=o}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[2])).subscribe(o=>{this.balances=[{title:"Total Balance",dataValue:o.balance.totalBalance||0},{title:"Confirmed",dataValue:o.balance.confBalance||0},{title:"Unconfirmed",dataValue:o.balance.unconfBalance||0}]})}openSendFundsModal(i){this.store.dispatch((0,C.xO)({payload:{data:{sweepAll:i,component:co}}}))}onSelectedTableIndexChanged(i){this.selectedTable=this.tables.find(o=>o.id===i)||this.tables[0],this.router.navigate(["./",this.activeLink,this.selectedTable.name],{relativeTo:this.activatedRoute})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(AA.il),A.rXU(xt.Ix),A.rXU(xt.nX))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain"]],standalone:!1,decls:23,vars:6,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["fxLayout","row","fxFlex","100",3,"selectedTableIndexChange","selectedTableIndex"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"On-chain Balance"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),A.nrm(7,"rtl-currency-unit-converter",6),A.k0s()()(),A.j41(8,"div",1),A.nrm(9,"fa-icon",2),A.j41(10,"span",3),A.EFF(11,"On-chain Transactions"),A.k0s()(),A.j41(12,"div",7)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",8),A.DNE(16,Ro,2,6,"div",9),A.k0s(),A.nrm(17,"mat-tab-nav-panel",null,0),A.j41(19,"div",10),A.nrm(20,"router-outlet"),A.k0s(),A.j41(21,"div",11)(22,"rtl-cln-utxo-tables",12),A.bIt("selectedTableIndexChange",function(re){return w.eBV(iA),w.Njj(r.onSelectedTableIndexChanged(re))}),A.k0s()()()()()}if(2&o){const iA=A.sdS(18);A.R7$(),A.Y8G("icon",r.faChartPie),A.R7$(6),A.Y8G("values",r.balances),A.R7$(2),A.Y8G("icon",r.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",iA),A.R7$(),A.Y8G("ngForOf",r.links),A.R7$(6),A.Y8G("selectedTableIndex",null==r.selectedTable?null:r.selectedTable.id)}},dependencies:[de.Sq,P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,Q.UI,RA.Bu,RA.hQ,RA.Ql,$r.f,xt.n3,Sn.Wk,Js],encapsulation:2}))}return n(),l})();function sa(n,l){if(1&n&&(A.j41(0,"span",10),A.EFF(1,"Channels"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.activeChannels))}}function No(n,l){if(1&n&&(A.j41(0,"span",10),A.EFF(1,"Peers"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.activePeers))}}let To=(()=>{var n;class l{constructor(i,o,r){this.store=i,this.logger=o,this.router=r,this.activePeers=0,this.activeChannels=0,this.faUsers=v.gdJ,this.faChartPie=v.W1p,this.balances=[{title:"Total Balance",dataValue:0},{title:"Confirmed",dataValue:0},{title:"Unconfirmed",dataValue:0}],this.links=[{link:"channels",name:"Channels"},{link:"peers",name:"Peers"}],this.activeLink=0,this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.activeLink=this.links.findIndex(i=>i.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(i=>i instanceof xt.gx)).subscribe({next:i=>{this.activeLink=this.links.findIndex(o=>o.link===i.urlAfterRedirects.substring(i.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.activeChannels=i.activeChannels.length||0}),this.store.select(tA.os).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.activePeers=i.peers&&i.peers.length?i.peers.length:0,this.logger.info(i)}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.balances=[{title:"Total Balance",dataValue:i.balance.totalBalance||0},{title:"Confirmed",dataValue:i.balance.confBalance||0},{title:"Unconfirmed",dataValue:i.balance.unconfBalance||0}]})}onSelectedTabChange(i){this.router.navigateByUrl("/cln/connections/"+this.links[i.index].link)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(AA.il),A.rXU(aA.gP),A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-connections"]],standalone:!1,decls:22,vars:4,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","column",1,"padding-gap-x"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,r){1&o&&(A.j41(0,"div",0),A.nrm(1,"fa-icon",1),A.j41(2,"span",2),A.EFF(3,"On-chain Balance"),A.k0s()(),A.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4),A.nrm(7,"rtl-currency-unit-converter",5),A.k0s()()(),A.j41(8,"div",0),A.nrm(9,"fa-icon",1),A.j41(10,"span",2),A.EFF(11,"Connections"),A.k0s()(),A.j41(12,"div",6)(13,"mat-card")(14,"mat-card-content",4)(15,"mat-tab-group",7),A.mxI("selectedIndexChange",function(ne){return A.DH7(r.activeLink,ne)||(r.activeLink=ne),ne}),A.bIt("selectedTabChange",function(ne){return r.onSelectedTabChange(ne)}),A.j41(16,"mat-tab"),A.DNE(17,sa,2,2,"ng-template",8),A.k0s(),A.j41(18,"mat-tab"),A.DNE(19,No,2,2,"ng-template",8),A.k0s()(),A.j41(20,"div",9),A.nrm(21,"router-outlet"),A.k0s()()()()),2&o&&(A.R7$(),A.Y8G("icon",r.faChartPie),A.R7$(6),A.Y8G("values",r.balances),A.R7$(2),A.Y8G("icon",r.faUsers),A.R7$(6),A.R50("selectedIndex",r.activeLink))},dependencies:[P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,Q.UI,Aa.k,RA.ES,RA.mq,RA.T8,$r.f,xt.n3],encapsulation:2}))}return n(),l})();function Po(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let Uo=(()=>{var n;class l{constructor(i,o,r){this.logger=i,this.store=o,this.router=r,this.faExchangeAlt=v._qq,this.faChartPie=v.W1p,this.currencyUnits=[],this.routerUrl="",this.balances=[{title:"Local Capacity",dataValue:0,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:0,tooltip:"Amount you can receive"}],this.links=[{link:"payments",name:"Payments"},{link:"invoices",name:"Invoices"}],this.activeLink=this.links[0].link,this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(o=>o instanceof xt.gx)).subscribe({next:o=>{const r=this.links.find(iA=>o.urlAfterRedirects.includes(iA.link));this.activeLink=r?r.link:this.links[0].link,this.routerUrl=o.urlAfterRedirects}}),this.store.select(j._c).pipe((0,I.Q)(this.unSubs[1])).subscribe(o=>{if(this.selNode=o,this.selNode&&this.selNode.settings.enableOffers){this.store.dispatch((0,VA.Eb)()),this.store.dispatch((0,VA.Ml)()),this.links.push({link:"offers",name:"Offers"}),this.links.push({link:"offrBookmarks",name:"Paid Offer Bookmarks"});const r=this.links.find(iA=>this.router.url.includes(iA.link));this.activeLink=r?r.link:this.links[0].link}}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[2]),(0,N.E)(this.store.select(j._c))).subscribe(([o,r])=>{this.currencyUnits=r?.settings.currencyUnits||[],this.balances=r&&r.settings.userPersona===B.HW.OPERATOR?[{title:"Local Capacity",dataValue:o.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Remote Capacity",dataValue:o.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}]:[{title:"Outbound Capacity",dataValue:o.localRemoteBalance.localBalance,tooltip:"Amount you can send"},{title:"Inbound Capacity",dataValue:o.localRemoteBalance.remoteBalance,tooltip:"Amount you can receive"}],this.logger.info(o)})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-transactions"]],standalone:!1,decls:21,vars:5,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x","mb-4"],["fxLayout","column"],[3,"values"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["fxLayout","column",1,"padding-gap-x"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Lightning Balance"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5),A.nrm(7,"rtl-currency-unit-converter",6),A.k0s()()(),A.j41(8,"div",7),A.nrm(9,"fa-icon",2),A.j41(10,"span",3),A.EFF(11,"Lightning Transactions"),A.k0s()(),A.j41(12,"div",8)(13,"mat-card")(14,"mat-card-content",5)(15,"nav",9),A.DNE(16,Po,2,4,"div",10),A.k0s(),A.nrm(17,"mat-tab-nav-panel",null,0),A.j41(19,"div",11),A.nrm(20,"router-outlet"),A.k0s()()()()),2&o){const iA=A.sdS(18);A.R7$(),A.Y8G("icon",r.faChartPie),A.R7$(6),A.Y8G("values",r.balances),A.R7$(2),A.Y8G("icon",r.faExchangeAlt),A.R7$(6),A.Y8G("tabPanel",iA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[de.Sq,P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,Q.UI,RA.Bu,RA.hQ,RA.Ql,$r.f,xt.n3,Sn.Wk],encapsulation:2}))}return n(),l})();function Lo(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",12),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let Go=(()=>{var n;class l{constructor(i){this.router=i,this.faMapSigns=v.knH,this.links=[{link:"forwardinghistory",name:"Forwarding History"},{link:"routingpeers",name:"Routing Peers"},{link:"failedtransactions",name:"Failed Transactions"},{link:"localfail",name:"Local Failed Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new g.B,new g.B,new g.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(o=>o instanceof xt.gx)).subscribe({next:o=>{const r=this.links.find(iA=>o.urlAfterRedirects.includes(iA.link));this.activeLink=r?r.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-routing"]],standalone:!1,decls:15,vars:3,consts:[["tabPanel",""],["fxLayout","column",1,"mb-2"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start","fxFlex","100",3,"tabPanel"],["tabindex","1","mat-tab-link","","role","tab","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["tabindex","1","mat-tab-link","","role","tab",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1)(1,"div",2),A.nrm(2,"fa-icon",3),A.j41(3,"span",4),A.EFF(4,"Routing"),A.k0s()(),A.j41(5,"div",5)(6,"mat-card",6)(7,"mat-card-content",7)(8,"div",8)(9,"nav",9),A.DNE(10,Lo,2,4,"div",10),A.k0s(),A.nrm(11,"mat-tab-nav-panel",null,0),A.k0s(),A.j41(13,"div",11),A.nrm(14,"router-outlet"),A.k0s()()()()()),2&o){const iA=A.sdS(12);A.R7$(2),A.Y8G("icon",r.faMapSigns),A.R7$(7),A.Y8G("tabPanel",iA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[de.Sq,P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,Q.UI,RA.Bu,RA.hQ,RA.Ql,xt.n3,Sn.Wk],encapsulation:2}))}return n(),l})();function zo(n,l){1&n&&(A.j41(0,"h3",9),A.EFF(1,"Node 1"),A.k0s())}function ko(n,l){1&n&&(A.j41(0,"h3",9),A.EFF(1,"Node 1 (Your Node)"),A.k0s())}function Ho(n,l){1&n&&(A.j41(0,"h3",9),A.EFF(1,"Node 2"),A.k0s())}function jo(n,l){1&n&&(A.j41(0,"h3",9),A.EFF(1,"Node 2 (Your Node)"),A.k0s())}function Oo(n,l){if(1&n&&(A.j41(0,"div",1),A.nrm(1,"mat-divider"),A.j41(2,"div",2)(3,"div",3)(4,"div",4),A.DNE(5,zo,2,0,"h3",5)(6,ko,2,0,"h3",5),A.k0s(),A.nrm(7,"mat-divider",6),A.j41(8,"div",4)(9,"h4",7),A.EFF(10,"Short Channel ID"),A.k0s(),A.j41(11,"span",8),A.EFF(12),A.k0s()(),A.nrm(13,"mat-divider",6),A.j41(14,"div",4)(15,"h4",7),A.EFF(16,"Active"),A.k0s(),A.j41(17,"span",8),A.EFF(18),A.k0s()(),A.nrm(19,"mat-divider",6),A.j41(20,"div",4)(21,"h4",7),A.EFF(22,"Last Update"),A.k0s(),A.j41(23,"span",8),A.EFF(24),A.nI1(25,"date"),A.k0s()(),A.nrm(26,"mat-divider",6),A.j41(27,"div",4)(28,"h4",7),A.EFF(29,"Amount (Sats)"),A.k0s(),A.j41(30,"span",8),A.EFF(31),A.nI1(32,"number"),A.k0s()(),A.nrm(33,"mat-divider",6),A.j41(34,"div",4)(35,"h4",7),A.EFF(36,"Base Fee (mSats)"),A.k0s(),A.j41(37,"span",8),A.EFF(38),A.nI1(39,"number"),A.k0s()(),A.nrm(40,"mat-divider",6),A.j41(41,"div",4)(42,"h4",7),A.EFF(43,"Fee/Millionth"),A.k0s(),A.j41(44,"span",8),A.EFF(45),A.nI1(46,"number"),A.k0s()(),A.nrm(47,"mat-divider",6),A.j41(48,"div",4)(49,"h4",7),A.EFF(50,"Channel Flags"),A.k0s(),A.j41(51,"span",8),A.EFF(52),A.nI1(53,"number"),A.k0s()(),A.nrm(54,"mat-divider",6),A.j41(55,"div",4)(56,"h4",7),A.EFF(57,"Delay"),A.k0s(),A.j41(58,"span",8),A.EFF(59),A.nI1(60,"number"),A.k0s()(),A.nrm(61,"mat-divider",6),A.j41(62,"div",4)(63,"h4",7),A.EFF(64,"Max Htlc (mSat)"),A.k0s(),A.j41(65,"span",8),A.EFF(66),A.nI1(67,"number"),A.k0s()(),A.nrm(68,"mat-divider",6),A.j41(69,"div",4)(70,"h4",7),A.EFF(71,"Min Htlc (mSat)"),A.k0s(),A.j41(72,"span",8),A.EFF(73),A.nI1(74,"number"),A.k0s()(),A.nrm(75,"mat-divider",6),A.j41(76,"div",4)(77,"h4",7),A.EFF(78,"Message Flags"),A.k0s(),A.j41(79,"span",8),A.EFF(80),A.nI1(81,"number"),A.k0s()(),A.nrm(82,"mat-divider",6),A.j41(83,"div",4)(84,"h4",7),A.EFF(85,"Public"),A.k0s(),A.j41(86,"span",8),A.EFF(87),A.k0s()(),A.nrm(88,"mat-divider",6),A.j41(89,"div",4)(90,"h4",7),A.EFF(91,"Source"),A.k0s(),A.j41(92,"span",8),A.EFF(93),A.k0s()(),A.nrm(94,"mat-divider",6),A.j41(95,"div",4)(96,"h4",7),A.EFF(97,"Destination"),A.k0s(),A.j41(98,"span",8),A.EFF(99),A.k0s()()(),A.j41(100,"div",3)(101,"div"),A.DNE(102,Ho,2,0,"h3",5)(103,jo,2,0,"h3",5),A.k0s(),A.nrm(104,"mat-divider",6),A.j41(105,"div",4)(106,"h4",7),A.EFF(107,"Short Channel ID"),A.k0s(),A.j41(108,"span",8),A.EFF(109),A.k0s()(),A.nrm(110,"mat-divider",6),A.j41(111,"div",4)(112,"h4",7),A.EFF(113,"Active"),A.k0s(),A.j41(114,"span",8),A.EFF(115),A.k0s()(),A.nrm(116,"mat-divider",6),A.j41(117,"div",4)(118,"h4",7),A.EFF(119,"Last Update"),A.k0s(),A.j41(120,"span",8),A.EFF(121),A.nI1(122,"date"),A.k0s()(),A.nrm(123,"mat-divider",6),A.j41(124,"div",4)(125,"h4",7),A.EFF(126,"Amount (Sats)"),A.k0s(),A.j41(127,"span",8),A.EFF(128),A.nI1(129,"number"),A.k0s()(),A.nrm(130,"mat-divider",6),A.j41(131,"div",4)(132,"h4",7),A.EFF(133,"Base Fee (mSats)"),A.k0s(),A.j41(134,"span",8),A.EFF(135),A.nI1(136,"number"),A.k0s()(),A.nrm(137,"mat-divider",6),A.j41(138,"div",4)(139,"h4",7),A.EFF(140,"Fee/Millionth"),A.k0s(),A.j41(141,"span",8),A.EFF(142),A.nI1(143,"number"),A.k0s()(),A.nrm(144,"mat-divider",6),A.j41(145,"div",4)(146,"h4",7),A.EFF(147,"Channel Flags"),A.k0s(),A.j41(148,"span",8),A.EFF(149),A.nI1(150,"number"),A.k0s()(),A.nrm(151,"mat-divider",6),A.j41(152,"div",4)(153,"h4",7),A.EFF(154,"Delay"),A.k0s(),A.j41(155,"span",8),A.EFF(156),A.nI1(157,"number"),A.k0s()(),A.nrm(158,"mat-divider",6),A.j41(159,"div",4)(160,"h4",7),A.EFF(161,"Max Htlc (mSat)"),A.k0s(),A.j41(162,"span",8),A.EFF(163),A.nI1(164,"number"),A.k0s()(),A.nrm(165,"mat-divider",6),A.j41(166,"div",4)(167,"h4",7),A.EFF(168,"Min Htlc (mSat)"),A.k0s(),A.j41(169,"span",8),A.EFF(170),A.nI1(171,"number"),A.k0s()(),A.nrm(172,"mat-divider",6),A.j41(173,"div",4)(174,"h4",7),A.EFF(175,"Message Flags"),A.k0s(),A.j41(176,"span",8),A.EFF(177),A.nI1(178,"number"),A.k0s()(),A.nrm(179,"mat-divider",6),A.j41(180,"div",4)(181,"h4",7),A.EFF(182,"Public"),A.k0s(),A.j41(183,"span",8),A.EFF(184),A.k0s()(),A.nrm(185,"mat-divider",6),A.j41(186,"div",4)(187,"h4",7),A.EFF(188,"Source"),A.k0s(),A.j41(189,"span",8),A.EFF(190),A.k0s()(),A.nrm(191,"mat-divider",6),A.j41(192,"div",4)(193,"h4",7),A.EFF(194,"Destination"),A.k0s(),A.j41(195,"span",8),A.EFF(196),A.k0s()()()()()),2&n){const e=A.XpG();A.R7$(5),A.Y8G("ngIf",!e.node1_match),A.R7$(),A.Y8G("ngIf",e.node1_match),A.R7$(6),A.JRh(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].short_channel_id),A.R7$(6),A.JRh(null!=e.lookupResult.channels[0]&&e.lookupResult.channels[0].active?"True":"False"),A.R7$(6),A.JRh(A.i5U(25,32,1e3*(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].last_update),"dd/MMM/y HH:mm")),A.R7$(7),A.JRh(A.i5U(32,35,(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].amount_msat)/1e3,"1.0-0")),A.R7$(7),A.JRh(A.bMT(39,38,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].base_fee_millisatoshi)),A.R7$(7),A.JRh(A.bMT(46,40,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].fee_per_millionth)),A.R7$(7),A.JRh(A.bMT(53,42,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].channel_flags)),A.R7$(7),A.JRh(A.bMT(60,44,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].delay)),A.R7$(7),A.JRh(A.bMT(67,46,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].htlc_maximum_msat)),A.R7$(7),A.JRh(A.bMT(74,48,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].htlc_minimum_msat)),A.R7$(7),A.JRh(A.bMT(81,50,null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].message_flags)),A.R7$(7),A.JRh(null!=e.lookupResult.channels[0]&&e.lookupResult.channels[0].public?"Yes":"No"),A.R7$(6),A.JRh(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].source),A.R7$(6),A.JRh(null==e.lookupResult.channels[0]?null:e.lookupResult.channels[0].destination),A.R7$(3),A.Y8G("ngIf",!e.node2_match),A.R7$(),A.Y8G("ngIf",e.node2_match),A.R7$(6),A.JRh(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].short_channel_id),A.R7$(6),A.JRh(null!=e.lookupResult.channels[1]&&e.lookupResult.channels[1].active?"True":"False"),A.R7$(6),A.JRh(A.i5U(122,52,1e3*(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].last_update),"dd/MMM/y HH:mm")),A.R7$(7),A.JRh(A.i5U(129,55,(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].amount_msat)/1e3,"1.0-0")),A.R7$(7),A.JRh(A.bMT(136,58,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].base_fee_millisatoshi)),A.R7$(7),A.JRh(A.bMT(143,60,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].fee_per_millionth)),A.R7$(7),A.JRh(A.bMT(150,62,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].channel_flags)),A.R7$(7),A.JRh(A.bMT(157,64,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].delay)),A.R7$(7),A.JRh(A.bMT(164,66,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].htlc_maximum_msat)),A.R7$(7),A.JRh(A.bMT(171,68,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].htlc_minimum_msat)),A.R7$(7),A.JRh(A.bMT(178,70,null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].message_flags)),A.R7$(7),A.JRh(null!=e.lookupResult.channels[1]&&e.lookupResult.channels[1].public?"Yes":"No"),A.R7$(6),A.JRh(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].source),A.R7$(6),A.JRh(null==e.lookupResult.channels[1]?null:e.lookupResult.channels[1].destination)}}let Br=(()=>{var n;class l{constructor(i){this.store=i,this.lookupResult={},this.node1_match=!1,this.node2_match=!1,this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.lookupResult.channels&&this.lookupResult.channels.length>0&&this.lookupResult.channels[0].source===i.id&&(this.node1_match=!0),this.lookupResult.channels&&this.lookupResult.channels.length>1&&this.lookupResult.channels[1].source===i.id&&(this.node2_match=!0)})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(AA.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-lookup"]],inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch",1,"mt-1","bordered-box","padding-gap-large"],["fxLayout","column"],["class","page-title font-bold-500",4,"ngIf"],[1,"my-1"],[1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"page-title","font-bold-500"]],template:function(o,r){1&o&&A.DNE(0,Oo,197,72,"div",0),2&o&&A.Y8G("ngIf",r.lookupResult)},dependencies:[de.bT,sn.q,Q.DJ,Q.sA,Q.UI,de.QX,de.vh],styles:[".mat-list-base[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%], .mat-list-base[_ngcontent-%COMP%] .mat-list-option[_ngcontent-%COMP%]{height:38px!important}"]}))}return n(),l})();const Sr=["peersForm"],fr=["stepper"],ra=(n,l)=>({"mr-6":n,"mr-2":l});function Jo(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG();A.JRh(e.peerFormLabel)}}function ur(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Address is required."),A.k0s())}function Gn(n,l){if(1&n&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(2),A.JRh(e.peerConnectionError)}}function Bi(n,l){if(1&n&&A.EFF(0),2&n){const e=A.XpG();A.JRh(e.channelFormLabel)}}function Nr(n,l){if(1&n&&(A.j41(0,"div",44),A.nrm(1,"fa-icon",43),A.j41(2,"span",13)(3,"div"),A.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(5,"span",45)(6,"span"),A.EFF(7),A.k0s(),A.j41(8,"span"),A.EFF(9),A.k0s(),A.j41(10,"span"),A.EFF(11),A.k0s(),A.j41(12,"span"),A.EFF(13),A.k0s(),A.j41(14,"span"),A.EFF(15),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faInfoCircle),A.R7$(6),A.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),A.R7$(2),A.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),A.R7$(2),A.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),A.R7$(2),A.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),A.R7$(2),A.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function Tr(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function Pr(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Amount must be a positive number."),A.k0s())}function _o(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function _s(n,l){if(1&n&&(A.j41(0,"mat-option",46),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function aa(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Vo(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function Wo(n,l){if(1&n&&(A.j41(0,"mat-form-field",47)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.nrm(3,"input",48),A.j41(4,"mat-hint"),A.EFF(5),A.k0s(),A.DNE(6,aa,2,0,"mat-error",15)(7,Vo,2,1,"mat-error",15),A.k0s()),2&n){const e=A.XpG();A.R7$(3),A.Y8G("step",1)("min",e.recommendedFee.minimumFee||0),A.R7$(2),A.SpI("Mempool Min: ",e.recommendedFee.minimumFee," (Sats/vByte)"),A.R7$(),A.Y8G("ngIf","customperkb"===e.channelFormGroup.controls.selFeeRate.value&&!e.channelFormGroup.controls.flgMinConf.value&&!e.channelFormGroup.controls.customFeeRate.value),A.R7$(),A.Y8G("ngIf",e.channelFormGroup.controls.customFeeRate.value&&(null==e.channelFormGroup.controls.customFeeRate.errors?null:e.channelFormGroup.controls.customFeeRate.errors.minimum))}}function Ko(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Min Confirmation Blocks is required."),A.k0s())}function Xo(n,l){if(1&n&&(A.j41(0,"div",42),A.nrm(1,"fa-icon",43),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(2),A.JRh(e.channelConnectionError)}}let Ur=(()=>{var n;class l{constructor(i,o,r,iA,ne,re,ln,Qt){this.dialogRef=i,this.data=o,this.store=r,this.formBuilder=iA,this.actions=ne,this.logger=re,this.commonService=ln,this.dataService=Qt,this.faExclamationTriangle=v.zpE,this.faInfoCircle=v.iW_,this.peerAddress="",this.totalBalance=0,this.feeRateTypes=B.G,this.flgChannelOpened=!1,this.channelOpenStatus=null,this.newlyAddedPeer=null,this.flgEditable=!0,this.peerConnectionError="",this.channelConnectionError="",this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)",this.screenSize="",this.screenSizeEnum=B.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.data.message?(this.totalBalance=this.data.message.balance,this.peerAddress=this.data.message.peer&&this.data.message.peer.id&&this.data.message.peer.netaddr?this.data.message.peer.id+"@"+this.data.message.peer.netaddr:this.data.message.peer&&this.data.message.peer.id&&!this.data.message.peer.netaddr?this.data.message.peer.id:""):(this.totalBalance=0,this.peerAddress=""),this.peerFormGroup=this.formBuilder.group({hiddenAddress:["",[hA.k0.required]],peerAddress:[this.peerAddress,[hA.k0.required]]}),this.channelFormGroup=this.formBuilder.group({fundingAmount:["",[hA.k0.required,hA.k0.min(1),hA.k0.max(this.totalBalance)]],isPrivate:[!!this.selNode?.settings.unannouncedChannels],selFeeRate:[null],customFeeRate:[null],flgMinConf:[!1],minConfValue:[{value:null,disabled:!0}],hiddenAmount:["",[hA.k0.required]]}),this.statusFormGroup=this.formBuilder.group({}),this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.channelFormGroup.controls.isPrivate.setValue(!!i?.settings.unannouncedChannels)}),this.channelFormGroup.controls.flgMinConf.valueChanges.pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{i?(this.channelFormGroup.controls.selFeeRate.setValue(null),this.channelFormGroup.controls.selFeeRate.disable(),this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.minConfValue.reset(),this.channelFormGroup.controls.minConfValue.enable(),this.channelFormGroup.controls.minConfValue.setValidators([hA.k0.required])):(this.channelFormGroup.controls.selFeeRate.enable(),this.channelFormGroup.controls.minConfValue.setValue(null),this.channelFormGroup.controls.minConfValue.disable(),this.channelFormGroup.controls.minConfValue.setValidators(null))}),this.channelFormGroup.controls.selFeeRate.valueChanges.pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.channelFormGroup.controls.customFeeRate.setValue(null),this.channelFormGroup.controls.customFeeRate.reset(),this.channelFormGroup.controls.customFeeRate.setValidators("customperkb"!==i||this.channelFormGroup.controls.flgMinConf.value?null:[hA.k0.required])}),this.actions.pipe((0,I.Q)(this.unSubs[3]),(0,nA.p)(i=>i.type===B.TC.NEWLY_ADDED_PEER_CLN||i.type===B.TC.FETCH_CHANNELS_CLN||i.type===B.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{i.type===B.TC.NEWLY_ADDED_PEER_CLN&&(this.logger.info(i.payload),this.flgEditable=!1,this.newlyAddedPeer=i.payload.peer,this.peerFormGroup.controls.hiddenAddress.setValue(this.peerFormGroup.controls.peerAddress.value),this.stepper.next()),i.type===B.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close(),i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===B.wn.ERROR&&("SaveNewPeer"===i.payload.action?this.peerConnectionError=i.payload.message:"SaveNewChannel"===i.payload.action&&(this.channelConnectionError=i.payload.message))}),this.dataService.getRecommendedFeeRates().pipe((0,I.Q)(this.unSubs[4])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}})}onConnectPeer(){if(!this.peerFormGroup.controls.peerAddress.value)return!0;this.peerConnectionError="",this.store.dispatch((0,VA.sq)({payload:{id:this.peerFormGroup.controls.peerAddress.value}}))}onOpenChannel(){return"customperkb"===this.channelFormGroup.controls.selFeeRate.value&&this.recommendedFee.minimumFee>this.channelFormGroup.controls.customFeeRate.value?(this.channelFormGroup.controls.customFeeRate.setErrors({minimum:!0}),!0):!!(!this.channelFormGroup.controls.fundingAmount.value||this.totalBalance-this.channelFormGroup.controls.fundingAmount.value<0||this.channelFormGroup.controls.flgMinConf.value&&!this.channelFormGroup.controls.minConfValue.value)||(this.channelConnectionError="",void this.store.dispatch((0,VA.vL)({payload:{peerId:this.newlyAddedPeer?.id,amount:this.channelFormGroup.controls.fundingAmount.value,announce:!this.channelFormGroup.controls.isPrivate.value,feeRate:"customperkb"===this.channelFormGroup.controls.selFeeRate.value&&!this.channelFormGroup.controls.flgMinConf.value&&this.channelFormGroup.controls.customFeeRate.value?1e3*this.channelFormGroup.controls.customFeeRate.value+"perkb":this.channelFormGroup.controls.selFeeRate.value,minconf:this.channelFormGroup.controls.flgMinConf.value?this.channelFormGroup.controls.minConfValue.value:null}})))}onClose(){this.dialogRef.close(!1)}stepSelectionChanged(i){switch(i.selectedIndex){case 0:default:this.peerFormLabel="Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 1:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer.alias:this.newlyAddedPeer?.id):"Peer Details",this.channelFormLabel="Open Channel (Optional)";break;case 2:this.peerFormLabel=this.peerFormGroup.controls.peerAddress.value?"Peer Added: "+(this.newlyAddedPeer?.alias?this.newlyAddedPeer?.alias:this.newlyAddedPeer?.id):"Peer Details",this.channelFormLabel=this.channelFormGroup.controls.fundingAmount.value?"Opening Channel for "+this.channelFormGroup.controls.fundingAmount.value+" Sats":"Open Channel (Optional)"}i.selectedIndex{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(AA.il),A.rXU(hA.ze),A.rXU(kA.En),A.rXU(aA.gP),A.rXU(L.h),A.rXU(Dt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-connect-peer"]],viewQuery:function(o,r){if(1&o&&(A.GBs(Sr,5),A.GBs(fr,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first),A.mGM(iA=A.lsd())&&(r.stepper=iA.first)}},standalone:!1,decls:67,vars:33,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","formControlName","peerAddress","tabindex","1","required",""],[4,"ngIf"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"mb-1",3,"ngSubmit","formGroup"],["matStepLabel","","disabled","true"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["fxLayout","column","fxFlex","53","fxLayoutAlign","start end"],["matInput","","autoFocus","","formControlName","fundingAmount","type","number","tabindex","1","required","",3,"step"],["matSuffix",""],["fxFlex","45","fxLayoutAlign","start center"],["tabindex","2","color","primary","formControlName","isPrivate","name","isPrivate"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center"],["fxFlex","53","fxLayoutAlign","space-between end"],["fxLayout","column","fxLayoutAlign","start center",3,"ngClass"],["tabindex","4","formControlName","selFeeRate"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","45","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","tabindex","5","color","primary","formControlName","flgMinConf","fxLayoutAlign","stretch start",3,"ngClass"],["fxLayout","column","fxFlex","93"],["matInput","","formControlName","minConfValue","type","number","name","blocks","tabindex","8",3,"step","min","required"],["mat-button","","color","primary","tabindex","8","type","submit"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],[3,"value"],["fxLayout","column","fxFlex","70","fxLayoutAlign","end center"],["matInput","","formControlName","customFeeRate","type","number","name","custFeeRate","tabindex","4",3,"step","min"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Connect to a new peer"),A.k0s()(),A.j41(6,"button",6),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),A.bIt("selectionChange",function(re){return w.eBV(iA),w.Njj(r.stepSelectionChanged(re))}),A.j41(12,"mat-step",10)(13,"form",11),A.DNE(14,Jo,1,1,"ng-template",12),A.j41(15,"mat-form-field",13)(16,"mat-label"),A.EFF(17,"Lightning Address (pubkey OR pubkey@ip:port)"),A.k0s(),A.nrm(18,"input",14),A.DNE(19,ur,2,0,"mat-error",15),A.k0s(),A.DNE(20,Gn,4,2,"div",16),A.j41(21,"div",17)(22,"button",18),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onConnectPeer())}),A.EFF(23),A.k0s()()()(),A.j41(24,"mat-step",10)(25,"form",19),A.bIt("ngSubmit",function(){return w.eBV(iA),w.Njj(r.onOpenChannel())}),A.DNE(26,Bi,1,1,"ng-template",20),A.j41(27,"div",21),A.DNE(28,Nr,16,6,"div",22),A.j41(29,"div",23)(30,"mat-form-field",24)(31,"mat-label"),A.EFF(32,"Amount"),A.k0s(),A.nrm(33,"input",25),A.j41(34,"mat-hint"),A.EFF(35),A.nI1(36,"number"),A.k0s(),A.j41(37,"span",26),A.EFF(38," Sats "),A.k0s(),A.DNE(39,Tr,2,0,"mat-error",15)(40,Pr,2,0,"mat-error",15)(41,_o,2,1,"mat-error",15),A.k0s(),A.j41(42,"div",27)(43,"mat-slide-toggle",28),A.EFF(44,"Private Channel"),A.k0s()()(),A.j41(45,"div",29)(46,"div",30)(47,"mat-form-field",31)(48,"mat-label"),A.EFF(49,"Fee Rate"),A.k0s(),A.j41(50,"mat-select",32),A.DNE(51,_s,2,2,"mat-option",33),A.k0s()(),A.DNE(52,Wo,8,5,"mat-form-field",34),A.k0s(),A.j41(53,"div",35),A.nrm(54,"mat-checkbox",36),A.j41(55,"mat-form-field",37)(56,"mat-label"),A.EFF(57,"Min Confirmation Blocks"),A.k0s(),A.nrm(58,"input",38),A.DNE(59,Ko,2,0,"mat-error",15),A.k0s()()()(),A.DNE(60,Xo,4,2,"div",16),A.j41(61,"div",17)(62,"button",39),A.EFF(63),A.k0s()()()()(),A.j41(64,"div",40)(65,"button",41),A.EFF(66),A.k0s()()()()()()}2&o&&(A.R7$(10),A.Y8G("linear",!0),A.R7$(2),A.Y8G("stepControl",r.peerFormGroup)("editable",r.flgEditable),A.R7$(),A.Y8G("formGroup",r.peerFormGroup),A.R7$(6),A.Y8G("ngIf",null==r.peerFormGroup.controls.peerAddress.errors?null:r.peerFormGroup.controls.peerAddress.errors.required),A.R7$(),A.Y8G("ngIf",""!==r.peerConnectionError),A.R7$(3),A.JRh(""!==r.peerConnectionError?"Retry":"Add Peer"),A.R7$(),A.Y8G("stepControl",r.channelFormGroup)("editable",r.flgEditable),A.R7$(),A.Y8G("formGroup",r.channelFormGroup),A.R7$(3),A.Y8G("ngIf",r.recommendedFee.minimumFee),A.R7$(5),A.Y8G("step",1e3),A.R7$(2),A.SpI("Remaining: ",A.bMT(36,28,r.totalBalance-(r.channelFormGroup.controls.fundingAmount.value?r.channelFormGroup.controls.fundingAmount.value:0))),A.R7$(4),A.Y8G("ngIf",null==r.channelFormGroup.controls.fundingAmount.errors?null:r.channelFormGroup.controls.fundingAmount.errors.required),A.R7$(),A.Y8G("ngIf",null==r.channelFormGroup.controls.fundingAmount.errors?null:r.channelFormGroup.controls.fundingAmount.errors.min),A.R7$(),A.Y8G("ngIf",null==r.channelFormGroup.controls.fundingAmount.errors?null:r.channelFormGroup.controls.fundingAmount.errors.max),A.R7$(6),A.Y8G("ngClass","customperkb"!==r.channelFormGroup.controls.selFeeRate.value||r.channelFormGroup.controls.flgMinConf.value?"flex-100":"flex-25"),A.R7$(4),A.Y8G("ngForOf",r.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===r.channelFormGroup.controls.selFeeRate.value&&!r.channelFormGroup.controls.flgMinConf.value),A.R7$(2),A.Y8G("ngClass",A.l_i(30,ra,r.screenSize===r.screenSizeEnum.XS||r.screenSize===r.screenSizeEnum.SM,r.screenSize===r.screenSizeEnum.MD||r.screenSize===r.screenSizeEnum.LG||r.screenSize===r.screenSizeEnum.XL)),A.R7$(4),A.Y8G("step",1)("min",0)("required",r.channelFormGroup.controls.flgMinConf.value),A.R7$(),A.Y8G("ngIf",r.channelFormGroup.controls.flgMinConf.value&&!r.channelFormGroup.controls.minConfValue.value),A.R7$(),A.Y8G("ngIf",""!==r.channelConnectionError),A.R7$(3),A.JRh(""!==r.channelConnectionError?"Retry":"Open Channel"),A.R7$(2),A.Y8G("mat-dialog-close",!1),A.R7$(),A.JRh(null!=r.newlyAddedPeer&&r.newlyAddedPeer.id?"Do It Later":"Close"))},dependencies:[de.YU,de.Sq,de.bT,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.VZ,hA.j4,hA.JD,P.aY,wA.tx,fA.$z,QA.m2,QA.MM,Ze.So,UA.fg,yA.rl,yA.nJ,yA.MV,yA.TL,yA.yw,Q.DJ,Q.sA,Q.UI,dA.PW,OA.VO,xA.wT,Ee.sG,ji.V5,ji.Ti,ji.M6,cA.N,J.V,de.QX],encapsulation:2}))}return n(),l})();var Ji=We(9157);const Nt=n=>({"background-color":n});function ft(n,l){if(1&n&&(A.j41(0,"span",7),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(e)}}function Zo(n,l){1&n&&(A.j41(0,"th",27),A.EFF(1,"Type"),A.k0s())}function oa(n,l){if(1&n&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.type)}}function Vs(n,l){1&n&&(A.j41(0,"th",27),A.EFF(1,"Address"),A.k0s())}function la(n,l){if(1&n&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.address)}}function qo(n,l){1&n&&(A.j41(0,"th",27),A.EFF(1,"Port"),A.k0s())}function $o(n,l){if(1&n&&(A.j41(0,"td",28),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.port)}}function ca(n,l){1&n&&(A.j41(0,"th",29)(1,"div",30),A.EFF(2,"Actions"),A.k0s()())}function Al(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",31)(1,"div",32)(2,"mat-select",33),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",34),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2);return w.Njj(r.onConnectNode(o))}),A.EFF(5,"Connect"),A.k0s(),A.j41(6,"mat-option",35),A.bIt("copied",function(o){w.eBV(e);const r=A.XpG(2);return w.Njj(r.onCopyNodeURI(o))}),A.EFF(7,"Copy URI"),A.k0s()()()()}if(2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(6),A.Y8G("payload",(null==i.lookupResult?null:i.lookupResult.nodeid)+"@"+e.address+":"+e.port)}}function hn(n,l){1&n&&A.nrm(0,"tr",36)}function Lr(n,l){1&n&&A.nrm(0,"tr",37)}function ga(n,l){if(1&n&&(A.j41(0,"div",2),A.nrm(1,"mat-divider",3),A.j41(2,"div",4)(3,"div",5)(4,"h4",6),A.EFF(5,"Alias"),A.k0s(),A.j41(6,"span",7),A.EFF(7),A.j41(8,"span",8),A.EFF(9),A.k0s()()(),A.j41(10,"div",9)(11,"h4",6),A.EFF(12,"Pub Key"),A.k0s(),A.j41(13,"span",10),A.EFF(14),A.k0s()()(),A.nrm(15,"mat-divider",11),A.j41(16,"div",4)(17,"div",5)(18,"h4",6),A.EFF(19,"Last Update"),A.k0s(),A.j41(20,"span",7),A.EFF(21),A.nI1(22,"date"),A.k0s()(),A.j41(23,"div",9)(24,"h4",6),A.EFF(25,"Features"),A.k0s(),A.DNE(26,ft,2,1,"span",12),A.k0s()(),A.nrm(27,"mat-divider",11),A.j41(28,"div",13)(29,"h4",14),A.EFF(30,"Addresses"),A.k0s(),A.j41(31,"div",15)(32,"table",16,0),A.qex(34,17),A.DNE(35,Zo,2,0,"th",18)(36,oa,2,1,"td",19),A.bVm(),A.qex(37,20),A.DNE(38,Vs,2,0,"th",18)(39,la,2,1,"td",19),A.bVm(),A.qex(40,21),A.DNE(41,qo,2,0,"th",18)(42,$o,2,1,"td",19),A.bVm(),A.qex(43,22),A.DNE(44,ca,3,0,"th",23)(45,Al,8,1,"td",24),A.bVm(),A.DNE(46,hn,1,0,"tr",25)(47,Lr,1,0,"tr",26),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(7),A.JRh(null==e.lookupResult?null:e.lookupResult.alias),A.R7$(),A.Y8G("ngStyle",A.eq3(12,Nt,"#"+(null==e.lookupResult?null:e.lookupResult.color))),A.R7$(),A.JRh(null!=e.lookupResult&&e.lookupResult.color?"#"+(null==e.lookupResult?null:e.lookupResult.color):""),A.R7$(5),A.JRh(null==e.lookupResult?null:e.lookupResult.nodeid),A.R7$(7),A.JRh(A.i5U(22,9,1e3*(null==e.lookupResult?null:e.lookupResult.last_timestamp),"dd/MMM/y HH:mm")),A.R7$(5),A.Y8G("ngForOf",e.featureDescriptions),A.R7$(6),A.Y8G("dataSource",e.addresses),A.R7$(14),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}let hr=(()=>{var n;class l{constructor(i,o,r){this.logger=i,this.snackBar=o,this.store=r,this.featureDescriptions=[],this.addresses=new z.I6([]),this.displayedColumns=["type","address","port","actions"],this.information={},this.availableBalance=0,this.unSubs=[new g.B]}ngOnInit(){if(this.addresses=new z.I6(this.lookupResult&&this.lookupResult.addresses?[...this.lookupResult.addresses]:[]),this.addresses.data=this.lookupResult.addresses||[],this.addresses.sort=this.sort,this.addresses.sortingDataAccessor=(i,o)=>i[o]&&isNaN(i[o])?i[o].toLocaleLowerCase():i[o]?+i[o]:null,this.lookupResult.features&&""!==this.lookupResult.features.trim()){this.lookupResult.features=this.lookupResult.features.substring(this.lookupResult.features.length-40);const i=parseInt(this.lookupResult.features,16);B.TH.forEach(o=>{i&1<{this.information=i.information,this.availableBalance=i.balance.totalBalance||0})}onConnectNode(i){this.store.dispatch((0,C.xO)({payload:{data:{message:{peer:{id:this.lookupResult.nodeid+"@"+i.address+":"+i.port},information:this.information,balance:this.availableBalance},component:Ur}}}))}onCopyNodeURI(i){this.snackBar.open("Node URI copied."),this.logger.info("Copied Text: "+i)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(js.UG),A.rXU(AA.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-node-lookup"]],viewQuery:function(o,r){if(1&o&&A.GBs(pA.B4,5),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first)}},inputs:{lookupResult:"lookupResult"},standalone:!1,decls:1,vars:1,consts:[["table",""],["fxLayout","column","class","mt-1",4,"ngIf"],["fxLayout","column",1,"mt-1"],[1,"mb-1"],["fxLayout","row"],["fxFlex","30"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"ml-2",3,"ngStyle"],["fxFlex","70"],[1,"foreground-secondary-text","w-100"],[1,"my-1"],["class","foreground-secondary-text",4,"ngFor","ngForOf"],["fxLayout","column"],["fxFlex","100","fxLayoutAlign","start",1,"font-bold-500","mb-1"],["fxLayout","row","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",3,"dataSource"],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","port"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select","btn-action"],["mat-cell","","fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["rtlClipboard","",3,"copied","payload"],["mat-header-row",""],["mat-row",""]],template:function(o,r){1&o&&A.DNE(0,ga,48,14,"div",1),2&o&&A.Y8G("ngIf",r.lookupResult)},dependencies:[de.Sq,de.bT,de.B3,sn.q,Q.DJ,Q.sA,Q.UI,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.KS,z.$R,z.YZ,z.NB,M.Ld,Ji.U,de.vh],encapsulation:2}))}return n(),l})();const el=["form"],_i=n=>({"mt-1":!0,"mt-2":n});function Ai(n,l){if(1&n&&(A.j41(0,"mat-radio-button",17),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e.id)("checked",i.selectedFieldId===e.id),A.R7$(),A.SpI(" ",e.name," ")}}function fi(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.SpI("",null==e.lookupFields[e.selectedFieldId]?null:e.lookupFields[e.selectedFieldId].placeholder," is required.")}}function ui(n,l){if(1&n&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-node-lookup",26),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("lookupResult",e.nodeLookupValue)}}function tl(n,l){if(1&n&&(A.j41(0,"span",24),A.DNE(1,ui,2,1,"div",25),A.k0s()),2&n){const e=A.XpG(2),i=A.sdS(21);A.R7$(),A.Y8G("ngIf",""!==e.nodeLookupValue.nodeid)("ngIfElse",i)}}function nl(n,l){if(1&n&&(A.j41(0,"div"),A.nrm(1,"rtl-cln-channel-lookup",26),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.Y8G("lookupResult",e.channelLookupValue)}}function il(n,l){if(1&n&&(A.j41(0,"span",24),A.DNE(1,nl,2,1,"div",25),A.k0s()),2&n){const e=A.XpG(2),i=A.sdS(21);A.R7$(),A.Y8G("ngIf",e.channelLookupValue.channels&&e.channelLookupValue.channels.length>0)("ngIfElse",i)}}function Er(n,l){1&n&&(A.j41(0,"span"),A.EFF(1,' fxFlex="100"'),A.j41(2,"h3"),A.EFF(3,"Error! Unable to find details!"),A.k0s()())}function sl(n,l){if(1&n&&(A.j41(0,"div",18)(1,"div",19)(2,"span",20),A.EFF(3),A.k0s()(),A.j41(4,"div",21),A.DNE(5,tl,2,2,"span",22)(6,il,2,2,"span",22)(7,Er,4,0,"span",23),A.k0s()()),2&n){const e=A.XpG();A.R7$(3),A.SpI("",e.lookupFields[e.selectedFieldId].name," Details"),A.R7$(),A.Y8G("ngSwitch",e.selectedFieldId),A.R7$(),A.Y8G("ngSwitchCase",0),A.R7$(),A.Y8G("ngSwitchCase",1)}}function Ba(n,l){1&n&&(A.j41(0,"h3"),A.EFF(1,"Error! Unable to find details!"),A.k0s())}let rl=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.commonService=o,this.store=r,this.actions=iA,this.lookupKey="",this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.flgSetLookupValue=!1,this.messageObj=[],this.selectedFieldId=0,this.lookupFields=[{id:0,name:"Node",placeholder:"Pubkey"},{id:1,name:"Channel",placeholder:"Short Channel ID"}],this.flgLoading=[!0],this.faSearch=v.MjD,this.screenSize="",this.screenSizeEnum=B.f7,this.unSubs=[new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.lookupType||window.history.state.lookupValue)&&(this.selectedFieldId=+window.history.state.lookupType||0,this.lookupKey=window.history.state.lookupValue||""),this.actions.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(i=>i.type===B.TC.SET_LOOKUP_CLN||i.type===B.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{if(i.type===B.TC.SET_LOOKUP_CLN){switch(this.flgLoading[0]=!0,this.selectedFieldId){case 0:this.nodeLookupValue="object"!=typeof i.payload[0]?{nodeid:""}:JSON.parse(JSON.stringify(i.payload[0]));break;case 1:this.channelLookupValue=i.payload.channels&&"object"!=typeof i.payload.channels?{channels:[]}:JSON.parse(JSON.stringify(i.payload))}this.flgSetLookupValue=!0,this.logger.info(this.nodeLookupValue),this.logger.info(this.channelLookupValue)}i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===B.wn.ERROR&&"Lookup"===i.payload.action&&(this.flgLoading[0]="error")})}onLookup(){if(!this.lookupKey)return!0;switch(this.flgSetLookupValue=!1,this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.selectedFieldId){case 0:this.store.dispatch((0,VA.zU)({payload:this.lookupKey.trim()}));break;case 1:this.store.dispatch((0,VA.ij)({payload:{uiMessage:B.MZ.SEARCHING_CHANNEL,shortChannelID:this.lookupKey.trim(),showError:!1}}))}}onSelectChange(i){this.resetData(),this.selectedFieldId=i.value}resetData(){this.flgSetLookupValue=!1,this.selectedFieldId=0,this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.form.resetForm()}clearLookupValue(){this.nodeLookupValue={nodeid:""},this.channelLookupValue=[],this.flgSetLookupValue=!1}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(kA.En))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-lookups"]],viewQuery:function(o,r){if(1&o&&A.GBs(el,7),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first)}},standalone:!1,decls:22,vars:9,consts:[["form","ngForm"],["key",""],["errorBlock",""],["fxLayout","column"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start space-between",1,"w-100"],["fxFlex","100","fxLayoutAlign","start end"],["color","primary","tabindex","1","name","lookupField",3,"ngModelChange","change","ngModel"],["class","mr-4",3,"value","checked",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end",3,"ngClass"],["matInput","","name","lookupKey","tabindex","2","required","",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","button",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch","class","w-100 mt-2",4,"ngIf"],[1,"mr-4",3,"value","checked"],["fxFlex","100","fxLayout","column","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"w-100","mt-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],[1,"page-title","font-bold-500"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",3,"ngSwitch"],["fxFlex","100",4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxFlex","100"],[4,"ngIf","ngIfElse"],[3,"lookupResult"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",3)(1,"div",4)(2,"mat-card-content",5)(3,"form",6,0)(5,"div",7)(6,"mat-radio-group",8),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selectedFieldId,re)||(r.selectedFieldId=re),w.Njj(re)}),A.bIt("change",function(re){return w.eBV(iA),w.Njj(r.onSelectChange(re))}),A.DNE(7,Ai,2,3,"mat-radio-button",9),A.k0s()(),A.j41(8,"mat-form-field",10)(9,"mat-label"),A.EFF(10),A.k0s(),A.j41(11,"input",11,1),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.lookupKey,re)||(r.lookupKey=re),w.Njj(re)}),A.bIt("change",function(){return w.eBV(iA),w.Njj(r.clearLookupValue())}),A.k0s(),A.DNE(13,fi,2,1,"mat-error",12),A.k0s(),A.j41(14,"div",13)(15,"button",14),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(16,"Clear"),A.k0s(),A.j41(17,"button",15),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onLookup())}),A.EFF(18,"Lookup"),A.k0s()()(),A.DNE(19,sl,8,4,"div",16),A.k0s()()(),A.DNE(20,Ba,2,0,"ng-template",null,2,A.C5r)}2&o&&(A.R7$(6),A.R50("ngModel",r.selectedFieldId),A.R7$(),A.Y8G("ngForOf",r.lookupFields),A.R7$(),A.Y8G("ngClass",A.eq3(7,_i,r.screenSize===r.screenSizeEnum.XS||r.screenSize===r.screenSizeEnum.SM)),A.R7$(2),A.JRh((null==r.lookupFields[r.selectedFieldId]?null:r.lookupFields[r.selectedFieldId].placeholder)||"Lookup Key"),A.R7$(),A.R50("ngModel",r.lookupKey),A.R7$(2),A.Y8G("ngIf",!r.lookupKey),A.R7$(6),A.Y8G("ngIf",r.flgSetLookupValue))},dependencies:[de.YU,de.Sq,de.bT,de.ux,de.e1,de.fG,hA.qT,hA.me,hA.BC,hA.cb,hA.YS,hA.vS,hA.cV,fA.$z,QA.m2,UA.fg,yA.rl,yA.nJ,yA.TL,qe.VT,qe._g,Q.DJ,Q.sA,Q.UI,dA.PW,Br,hr],styles:[".tree-invisible[_ngcontent-%COMP%]{display:none}.lookup-tree[_ngcontent-%COMP%] ul[_ngcontent-%COMP%], .lookup-tree[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{margin-top:0;margin-bottom:0;list-style-type:none}"]}))}return n(),l})();var Gr=function(n){return n.KB="KB",n.KW="KW",n}(Gr||{});function Rt(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 2 Blocks "),A.j41(3,"mat-icon",16),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==e.perkbw?null:e.perkbw.estimates[0].smoothed_feerate))}}function fa(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 6 Blocks "),A.j41(3,"mat-icon",17),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==e.perkbw?null:e.perkbw.estimates[1].smoothed_feerate))}}function al(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 12 Blocks "),A.j41(3,"mat-icon",18),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==e.perkbw?null:e.perkbw.estimates[2].smoothed_feerate))}}function ol(n,l){if(1&n&&(A.j41(0,"div")(1,"h4",5),A.EFF(2," 100 Blocks "),A.j41(3,"mat-icon",19),A.EFF(4,"info_outline"),A.k0s()(),A.j41(5,"div",7),A.EFF(6),A.nI1(7,"number"),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh(A.bMT(7,1,null==e.perkbw?null:e.perkbw.estimates[3].smoothed_feerate))}}function ua(n,l){if(1&n&&(A.j41(0,"div",2)(1,"div",3)(2,"div",4)(3,"div")(4,"h4",5),A.EFF(5," Opening "),A.j41(6,"mat-icon",6),A.EFF(7,"info_outline"),A.k0s()(),A.j41(8,"div",7),A.EFF(9),A.nI1(10,"number"),A.k0s()(),A.j41(11,"div")(12,"h4",5),A.EFF(13," Mutual Close "),A.j41(14,"mat-icon",8),A.EFF(15,"info_outline"),A.k0s()(),A.j41(16,"div",7),A.EFF(17),A.nI1(18,"number"),A.k0s()(),A.j41(19,"div")(20,"h4",5),A.EFF(21," Unilateral Close "),A.j41(22,"mat-icon",9),A.EFF(23,"info_outline"),A.k0s()(),A.j41(24,"div",7),A.EFF(25),A.nI1(26,"number"),A.k0s()(),A.j41(27,"div")(28,"h4",5),A.EFF(29," Delayed To Us "),A.j41(30,"mat-icon",10),A.EFF(31,"info_outline"),A.k0s()(),A.j41(32,"div",7),A.EFF(33),A.nI1(34,"number"),A.k0s()(),A.j41(35,"div")(36,"h4",5),A.EFF(37," Minimum Acceptable "),A.j41(38,"mat-icon",11),A.EFF(39,"info_outline"),A.k0s()(),A.j41(40,"div",7),A.EFF(41),A.nI1(42,"number"),A.k0s()(),A.j41(43,"div")(44,"h4",5),A.EFF(45," Maximum Acceptable "),A.j41(46,"mat-icon",12),A.EFF(47,"info_outline"),A.k0s()(),A.j41(48,"div",7),A.EFF(49),A.nI1(50,"number"),A.k0s()()(),A.j41(51,"div",4)(52,"div")(53,"h4",5),A.EFF(54," HTLC Resolution "),A.j41(55,"mat-icon",13),A.EFF(56,"info_outline"),A.k0s()(),A.j41(57,"div",7),A.EFF(58),A.nI1(59,"number"),A.k0s()(),A.j41(60,"div")(61,"h4",5),A.EFF(62," Penalty "),A.j41(63,"mat-icon",14),A.EFF(64,"info_outline"),A.k0s()(),A.j41(65,"div",7),A.EFF(66),A.nI1(67,"number"),A.k0s()(),A.DNE(68,Rt,8,3,"div",15)(69,fa,8,3,"div",15)(70,al,8,3,"div",15)(71,ol,8,3,"div",15),A.k0s()()()),2&n){const e=A.XpG();A.R7$(9),A.JRh(A.bMT(10,12,null==e.perkbw?null:e.perkbw.opening)),A.R7$(8),A.JRh(A.bMT(18,14,null==e.perkbw?null:e.perkbw.mutual_close)),A.R7$(8),A.JRh(A.bMT(26,16,null==e.perkbw?null:e.perkbw.unilateral_close)),A.R7$(8),A.JRh(A.bMT(34,18,null==e.perkbw?null:e.perkbw.delayed_to_us)),A.R7$(8),A.JRh(A.bMT(42,20,null==e.perkbw?null:e.perkbw.min_acceptable)),A.R7$(8),A.JRh(A.bMT(50,22,null==e.perkbw?null:e.perkbw.max_acceptable)),A.R7$(9),A.JRh(A.bMT(59,24,null==e.perkbw?null:e.perkbw.htlc_resolution)),A.R7$(8),A.JRh(A.bMT(67,26,null==e.perkbw?null:e.perkbw.penalty)),A.R7$(2),A.Y8G("ngIf",(null==e.perkbw?null:e.perkbw.estimates)&&(null==e.perkbw?null:e.perkbw.estimates.length)&&(null==e.perkbw?null:e.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==e.perkbw?null:e.perkbw.estimates)&&(null==e.perkbw?null:e.perkbw.estimates.length)&&(null==e.perkbw?null:e.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==e.perkbw?null:e.perkbw.estimates)&&(null==e.perkbw?null:e.perkbw.estimates.length)&&(null==e.perkbw?null:e.perkbw.estimates.length)>3),A.R7$(),A.Y8G("ngIf",(null==e.perkbw?null:e.perkbw.estimates)&&(null==e.perkbw?null:e.perkbw.estimates.length)&&(null==e.perkbw?null:e.perkbw.estimates.length)>3)}}function ll(n,l){if(1&n&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let cl=(()=>{var n;class l{constructor(){this.perkbw={},this.displayedColumns=["blockcount","feerate"]}ngAfterContentChecked(){this.feeRateStyle===Gr.KB?this.perkbw=this.feeRates.perkb||{}:this.feeRateStyle===Gr.KW&&(this.perkbw=this.feeRates.perkw||{})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-fee-rates"]],inputs:{feeRateStyle:"feeRateStyle",feeRates:"feeRates",errorMessage:"errorMessage"},standalone:!1,decls:3,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch",1,"mt-2"],["fxLayoutAlign","start start",1,"dashboard-info-title"],["matTooltip","Default feerate for fundchannel and withdraw","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[1,"overflow-wrap","dashboard-info-value"],["matTooltip","Feerate to aim for in cooperative shutdown. Note that since mutual close is a negotiation, the actual feerate used in mutual close will be somewhere between this and the corresponding mutual close feerate of the peer","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for commitment transaction in a live channel which we originally funded","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for returning unilateral close funds to our wallet","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","The smallest feerate that you can use, usually the minimum relayed feerate of the backend","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","The largest feerate we will accept from remote negotiations. If a peer attempts to set the feerate higher than this we will unilaterally close the channel (or simply forget it if it's not open yet)","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate for returning unilateral close HTLC outputs to our wallet","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Feerate to start at when penalizing a cheat attempt","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[4,"ngIf"],["matTooltip","Fee rate estimate for 2 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 6 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 12 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Fee rate estimate for 100 blocks","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&A.DNE(0,ua,72,28,"div",1)(1,ll,3,1,"ng-template",null,0,A.C5r),2&o){const iA=A.sdS(2);A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.bT,oA.An,Q.DJ,Q.sA,Q.UI,HA.oV,de.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]}))}return n(),l})();function gl(n,l){if(1&n&&(A.j41(0,"div",3)(1,"div",4)(2,"div")(3,"h4",5),A.EFF(4," Opening Channel "),A.j41(5,"mat-icon",6),A.EFF(6,"info_outline"),A.k0s()(),A.j41(7,"div",7),A.EFF(8),A.nI1(9,"number"),A.k0s()(),A.j41(10,"div")(11,"h4",5),A.EFF(12," Mutual Close "),A.j41(13,"mat-icon",8),A.EFF(14,"info_outline"),A.k0s()(),A.j41(15,"div",7),A.EFF(16),A.nI1(17,"number"),A.k0s()(),A.j41(18,"div")(19,"h4",5),A.EFF(20," Unilateral Close "),A.j41(21,"mat-icon",9),A.EFF(22,"info_outline"),A.k0s()(),A.j41(23,"div",7),A.EFF(24),A.nI1(25,"number"),A.k0s()(),A.j41(26,"div",10),A.nrm(27,"h4",5)(28,"div",7),A.k0s()(),A.j41(29,"div",4)(30,"div")(31,"h4",5),A.EFF(32," HTLC Timeout "),A.j41(33,"mat-icon",11),A.EFF(34,"info_outline"),A.k0s()(),A.j41(35,"div",7),A.EFF(36),A.nI1(37,"number"),A.k0s()(),A.j41(38,"div")(39,"h4",5),A.EFF(40," HTLC Success "),A.j41(41,"mat-icon",12),A.EFF(42,"info_outline"),A.k0s()(),A.j41(43,"div",7),A.EFF(44),A.nI1(45,"number"),A.k0s()(),A.j41(46,"div",10),A.nrm(47,"h4",5)(48,"div",7),A.k0s(),A.j41(49,"div",10),A.nrm(50,"h4",5)(51,"div",7),A.k0s()()()),2&n){const e=A.XpG();A.R7$(8),A.JRh(A.bMT(9,5,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.opening_channel_satoshis)),A.R7$(8),A.JRh(A.bMT(17,7,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.mutual_close_satoshis)),A.R7$(8),A.JRh(A.bMT(25,9,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.unilateral_close_satoshis)),A.R7$(12),A.JRh(A.bMT(37,11,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.htlc_timeout_satoshis)),A.R7$(8),A.JRh(A.bMT(45,13,null==e.feeRates||null==e.feeRates.onchain_fee_estimates?null:e.feeRates.onchain_fee_estimates.htlc_success_satoshis))}}function ha(n,l){if(1&n&&(A.j41(0,"div",13)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG();A.R7$(2),A.JRh(e.errorMessage)}}let wr=(()=>{var n;class l{constructor(){}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-onchain-fee-estimates"]],inputs:{feeRates:"feeRates",errorMessage:"errorMessage"},standalone:!1,decls:4,vars:2,consts:[["errorBlock",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","62","fxLayoutAlign","stretch stretch",4,"ngIf","ngIfElse"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","62","fxLayoutAlign","stretch stretch"],["fxLayout","column","fxFlex","50","fxLayoutAlign","space-between stretch",1,"mt-2"],["fxLayoutAlign","start start",1,"dashboard-info-title"],["matTooltip","Estimated cost of typical channel open","matTooltipPosition","below",1,"info-icon","info-icon-primary"],[1,"overflow-wrap","dashboard-info-value"],["matTooltip","Estimated cost of typical channel close","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Estimated cost of typical unilateral close (without HTLCs)","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxFlex","12"],["matTooltip","Estimated cost of typical HTLC timeout transaction","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["matTooltip","Estimated cost of typical HTLC fulfillment transaction","matTooltipPosition","below",1,"info-icon","info-icon-primary"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between",1,"p-2"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.DNE(1,gl,52,15,"div",2)(2,ha,3,1,"ng-template",null,0,A.C5r),A.k0s()),2&o){const iA=A.sdS(3);A.R7$(),A.Y8G("ngIf",""===(null==r.errorMessage?null:r.errorMessage.trim()))("ngIfElse",iA)}},dependencies:[de.bT,oA.An,Q.DJ,Q.sA,Q.UI,HA.oV,de.QX],styles:[".fee-rate-list[_ngcontent-%COMP%] .mat-list-item[_ngcontent-%COMP%]{height:44px}"]}))}return n(),l})();const zr=n=>({"dashboard-card-content":!0,"error-border":n});function Bl(n,l){1&n&&A.nrm(0,"mat-progress-bar",20)}function fl(n,l){if(1&n&&A.nrm(0,"rtl-cln-node-info",21),2&n){const e=A.XpG(3);A.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function ul(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-status-info",22),2&n){const e=A.XpG(3);A.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[1])}}function hl(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-info",23),2&n){const e=A.XpG(3);A.Y8G("fees",e.fees)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[2]+" "+e.errorMessages[3])}}function El(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-rates",24),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKB)("errorMessage",e.errorMessages[4])}}function wl(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-rates",25),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[5])}}function Cl(n,l){if(1&n&&A.nrm(0,"rtl-cln-onchain-fee-estimates",26),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[4])}}function cs(n,l){if(1&n&&(A.j41(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",7),A.nrm(4,"fa-icon",8),A.j41(5,"span"),A.EFF(6),A.k0s()()(),A.j41(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.DNE(10,Bl,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,fl,1,2,"rtl-cln-node-info",14)(13,ul,1,2,"rtl-cln-channel-status-info",15)(14,hl,1,2,"rtl-cln-fee-info",16)(15,El,1,2,"rtl-cln-fee-rates",17)(16,wl,1,2,"rtl-cln-fee-rates",18)(17,Cl,1,2,"rtl-cln-onchain-fee-estimates",19),A.k0s()()()()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("colspan",e.cols)("rowspan",e.rows),A.R7$(4),A.Y8G("icon",e.icon),A.R7$(2),A.JRh(e.title),A.R7$(3),A.Y8G("ngClass",A.eq3(13,zr,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusLRBal.status===i.apiCallStatusEnum.ERROR)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.ERROR)||"feeRatesKB"===e.id&&i.apiCallStatusPerKB.status===i.apiCallStatusEnum.ERROR||"feeRatesKW"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusLRBal.status===i.apiCallStatusEnum.INITIATED)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.INITIATED)||"feeRatesKB"===e.id&&i.apiCallStatusPerKB.status===i.apiCallStatusEnum.INITIATED||"feeRatesKW"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",e.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","status"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKB"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKW"),A.R7$(),A.Y8G("ngSwitchCase","onChainFeeEstimates")}}function Ws(n,l){if(1&n&&(A.j41(0,"mat-grid-list",2),A.DNE(1,cs,18,15,"mat-grid-tile",3),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngForOf",e.nodeCardsOperator)}}function ei(n,l){1&n&&A.nrm(0,"mat-progress-bar",20)}function Ea(n,l){if(1&n&&A.nrm(0,"rtl-cln-node-info",21),2&n){const e=A.XpG(3);A.Y8G("information",e.information)("showColorFieldSeparately",!1)}}function dl(n,l){if(1&n&&A.nrm(0,"rtl-cln-channel-status-info",22),2&n){const e=A.XpG(3);A.Y8G("channelsStatus",e.channelsStatus)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[1])}}function Ql(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-info",23),2&n){const e=A.XpG(3);A.Y8G("fees",e.fees)("errorMessage",e.errorMessages[0]+" "+e.errorMessages[2]+" "+e.errorMessages[3])}}function ml(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-rates",24),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKB)("errorMessage",e.errorMessages[4])}}function Ml(n,l){if(1&n&&A.nrm(0,"rtl-cln-fee-rates",25),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[4])}}function pl(n,l){if(1&n&&A.nrm(0,"rtl-cln-onchain-fee-estimates",26),2&n){const e=A.XpG(3);A.Y8G("feeRates",e.feeRatesPerKW)("errorMessage",e.errorMessages[4])}}function Il(n,l){if(1&n&&(A.j41(0,"mat-grid-tile",4)(1,"div",5)(2,"div",6)(3,"div",27),A.nrm(4,"fa-icon",8),A.j41(5,"span"),A.EFF(6),A.k0s()()(),A.j41(7,"div",9)(8,"mat-card",10)(9,"mat-card-content",11),A.DNE(10,ei,1,0,"mat-progress-bar",12),A.j41(11,"div",13),A.DNE(12,Ea,1,2,"rtl-cln-node-info",14)(13,dl,1,2,"rtl-cln-channel-status-info",15)(14,Ql,1,2,"rtl-cln-fee-info",16)(15,ml,1,2,"rtl-cln-fee-rates",17)(16,Ml,1,2,"rtl-cln-fee-rates",18)(17,pl,1,2,"rtl-cln-onchain-fee-estimates",19),A.k0s()()()()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("colspan",e.cols)("rowspan",e.rows),A.R7$(4),A.Y8G("icon",e.icon),A.R7$(2),A.JRh(e.title),A.R7$(3),A.Y8G("ngClass",A.eq3(13,zr,"node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusLRBal.status===i.apiCallStatusEnum.ERROR)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusChannels.status===i.apiCallStatusEnum.ERROR||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.ERROR)||"feeRatesKB"===e.id&&i.apiCallStatusPerKB.status===i.apiCallStatusEnum.ERROR||"feeRatesKW"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.ERROR||"onChainFeeEstimates"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.ERROR)),A.R7$(),A.Y8G("ngIf","node"===e.id&&i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||"status"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusLRBal.status===i.apiCallStatusEnum.INITIATED)||"fee"===e.id&&(i.apiCallStatusNodeInfo.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusChannels.status===i.apiCallStatusEnum.INITIATED||i.apiCallStatusFHistory.status===i.apiCallStatusEnum.INITIATED)||"feeRatesKB"===e.id&&i.apiCallStatusPerKB.status===i.apiCallStatusEnum.INITIATED||"feeRatesKW"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.INITIATED||"onChainFeeEstimates"===e.id&&i.apiCallStatusPerKW.status===i.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngSwitch",e.id),A.R7$(),A.Y8G("ngSwitchCase","node"),A.R7$(),A.Y8G("ngSwitchCase","status"),A.R7$(),A.Y8G("ngSwitchCase","fee"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKB"),A.R7$(),A.Y8G("ngSwitchCase","feeRatesKW"),A.R7$(),A.Y8G("ngSwitchCase","onChainFeeEstimates")}}function Dl(n,l){if(1&n&&(A.j41(0,"mat-grid-list",2),A.DNE(1,Il,18,15,"mat-grid-tile",3),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngForOf",e.nodeCardsMerchant)}}let Fc=(()=>{var n;class l{constructor(i,o,r){this.logger=i,this.commonService=o,this.store=r,this.faBolt=v.zm_,this.faServer=v.D6w,this.faNetworkWired=v.eGi,this.faLink=v.CQO,this.information={},this.channelsStatus={active:{},pending:{},inactive:{}},this.feeRatesPerKB={},this.feeRatesPerKW={},this.nodeCardsOperator=[],this.nodeCardsMerchant=[],this.screenSize="",this.screenSizeEnum=B.f7,this.userPersonaEnum=B.HW,this.errorMessages=["","","","","",""],this.apiCallStatusNodeInfo=null,this.apiCallStatusLRBal=null,this.apiCallStatusChannels=null,this.apiCallStatusFHistory=null,this.apiCallStatusPerKB=null,this.apiCallStatusPerKW=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize(),this.screenSize===B.f7.XS?(this.nodeCardsMerchant=[{id:"node",icon:this.faServer,title:"Node Information",cols:6,rows:3},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:6,rows:3},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:6,rows:1},{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:6}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:4,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:4,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:4,rows:6}]):(this.nodeCardsMerchant=[{id:"node",icon:this.faServer,title:"Node Information",cols:2,rows:3},{id:"status",icon:this.faNetworkWired,title:"Channels",cols:2,rows:3},{id:"fee",icon:this.faBolt,title:"Routing Fee",cols:2,rows:3},{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:6}],this.nodeCardsOperator=[{id:"feeRatesKB",icon:this.faServer,title:"Fee Rate Per KB",cols:2,rows:6},{id:"feeRatesKW",icon:this.faNetworkWired,title:"Fee Rate Per KW",cols:2,rows:6},{id:"onChainFeeEstimates",icon:this.faLink,title:"Onchain Fee Estimates (Sats)",cols:2,rows:6}])}ngOnInit(){this.store.select(tA.RQ).pipe((0,I.Q)(this.unSubs[0]),(0,N.E)(this.store.select(j._c))).subscribe(([i,o])=>{this.errorMessages[0]="",this.apiCallStatusNodeInfo=i.apisCallStatus[0],this.apiCallStatusNodeInfo.status===B.wn.ERROR&&(this.errorMessages[0]="object"==typeof this.apiCallStatusNodeInfo.message?JSON.stringify(this.apiCallStatusNodeInfo.message):this.apiCallStatusNodeInfo.message?this.apiCallStatusNodeInfo.message:""),this.selNode=o,this.information=i.information,this.fees=i.fees,this.logger.info(i)}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[1]),(0,N.E)(this.store.select(tA.Al))).subscribe(([i,o])=>{this.errorMessages[1]="",this.errorMessages[2]="",this.apiCallStatusLRBal=o.apiCallStatus,this.apiCallStatusChannels=i.apiCallStatus,this.apiCallStatusLRBal.status===B.wn.ERROR&&(this.errorMessages[1]="object"==typeof this.apiCallStatusLRBal.message?JSON.stringify(this.apiCallStatusLRBal.message):this.apiCallStatusLRBal.message?this.apiCallStatusLRBal.message:""),this.apiCallStatusChannels.status===B.wn.ERROR&&(this.errorMessages[2]="object"==typeof this.apiCallStatusChannels.message?JSON.stringify(this.apiCallStatusChannels.message):this.apiCallStatusChannels.message?this.apiCallStatusChannels.message:""),this.channelsStatus.active.channels=i.activeChannels.length||0,this.channelsStatus.pending.channels=i.pendingChannels.length||0,this.channelsStatus.inactive.channels=i.inactiveChannels.length||0,this.channelsStatus.active.capacity=o.localRemoteBalance.localBalance||0,this.channelsStatus.pending.capacity=o.localRemoteBalance.pendingBalance||0,this.channelsStatus.inactive.capacity=o.localRemoteBalance.inactiveBalance||0}),this.store.select(tA.Ie).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessages[3]="",this.apiCallStatusFHistory=i.apiCallStatus,this.apiCallStatusFHistory.status===B.wn.ERROR&&(this.errorMessages[3]="object"==typeof this.apiCallStatusFHistory.message?JSON.stringify(this.apiCallStatusFHistory.message):this.apiCallStatusFHistory.message?this.apiCallStatusFHistory.message:""),i.forwardingHistory&&i.forwardingHistory.listForwards&&i.forwardingHistory.listForwards.length&&(this.fees.totalTxCount=i.forwardingHistory.listForwards.length)}),this.store.select(tA.kr).pipe((0,I.Q)(this.unSubs[4])).subscribe(i=>{this.errorMessages[4]="",this.apiCallStatusPerKB=i.apiCallStatus,this.apiCallStatusPerKB.status===B.wn.ERROR&&(this.errorMessages[4]="object"==typeof this.apiCallStatusPerKB.message?JSON.stringify(this.apiCallStatusPerKB.message):this.apiCallStatusPerKB.message?this.apiCallStatusPerKB.message:""),this.feeRatesPerKB=i.feeRatesPerKB}),this.store.select(tA.RB).pipe((0,I.Q)(this.unSubs[5])).subscribe(i=>{this.errorMessages[5]="",this.apiCallStatusPerKW=i.apiCallStatus,this.apiCallStatusPerKW.status===B.wn.ERROR&&(this.errorMessages[5]="object"==typeof this.apiCallStatusPerKW.message?JSON.stringify(this.apiCallStatusPerKW.message):this.apiCallStatusPerKW.message?this.apiCallStatusPerKW.message:""),this.feeRatesPerKW=i.feeRatesPerKW})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-network-info"]],standalone:!1,decls:3,vars:2,consts:[["fxLayout","column","fxLayoutAlign","space-between stretch",1,"mb-4"],["cols","6","rowHeight","100px",4,"ngIf"],["cols","6","rowHeight","100px"],["class","node-grid-tile",3,"colspan","rowspan",4,"ngFor","ngForOf"],[1,"node-grid-tile",3,"colspan","rowspan"],["fxLayout","column","fxLayoutAlign","stretch start","fxFlex","100",1,"h-100"],["fxLayout","row","fxLayoutAlign","start start",1,"w-100"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-2"],[1,"mr-1",3,"icon"],["fxLayout","column","fxLayoutAlign","stretch center","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","center stretch",1,"w-100","h-93"],["fxLayout","row","fxFlex","95","fxLayoutAlign","start stretch",1,"dashboard-card","w-96","h-93"],["fxLayout","column","fxFlex","100",3,"ngClass"],["mode","indeterminate",4,"ngIf"],["fxLayout","column","fxFlex","100",3,"ngSwitch"],["fxFlex","100",3,"information","showColorFieldSeparately",4,"ngSwitchCase"],["fxFlex","100",3,"channelsStatus","errorMessage",4,"ngSwitchCase"],["fxFlex","100",3,"fees","errorMessage",4,"ngSwitchCase"],["class","h-100","feeRateStyle","KB",3,"feeRates","errorMessage",4,"ngSwitchCase"],["class","h-100","feeRateStyle","KW",3,"feeRates","errorMessage",4,"ngSwitchCase"],["class","h-100",3,"feeRates","errorMessage",4,"ngSwitchCase"],["mode","indeterminate"],["fxFlex","100",3,"information","showColorFieldSeparately"],["fxFlex","100",3,"channelsStatus","errorMessage"],["fxFlex","100",3,"fees","errorMessage"],["feeRateStyle","KB",1,"h-100",3,"feeRates","errorMessage"],["feeRateStyle","KW",1,"h-100",3,"feeRates","errorMessage"],[1,"h-100",3,"feeRates","errorMessage"],["fxLayout","row","fxLayoutAlign","start start",1,"page-title-container","pl-15px"]],template:function(o,r){1&o&&(A.j41(0,"div",0),A.DNE(1,Ws,2,1,"mat-grid-list",1)(2,Dl,2,1,"mat-grid-list",1),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",r.selNode.settings.userPersona===r.userPersonaEnum.OPERATOR),A.R7$(),A.Y8G("ngIf",r.selNode.settings.userPersona===r.userPersonaEnum.MERCHANT))},dependencies:[de.YU,de.Sq,de.bT,de.ux,de.e1,P.aY,QA.RN,QA.m2,NA.B_,NA.NS,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,ge,it,zt,cl,wr],encapsulation:2}))}return n(),l})();function yc(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let Fl=(()=>{var n;class l{constructor(i){this.router=i,this.faUserCheck=v.pCJ,this.links=[{link:"sign",name:"Sign"},{link:"verify",name:"Verify"}],this.activeLink=this.links[0].link,this.unSubs=[new g.B,new g.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(o=>o instanceof xt.gx)).subscribe({next:o=>{const r=this.links.find(iA=>o.urlAfterRedirects.includes(iA.link));this.activeLink=r?r.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-sign-verify-message"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","role","tab","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["tabindex","1","mat-tab-link","","role","tab",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Sign/Verify Message"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,yc,2,4,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0),A.j41(11,"div",8),A.nrm(12,"router-outlet"),A.k0s()()()()),2&o){const iA=A.sdS(10);A.R7$(),A.Y8G("icon",r.faUserCheck),A.R7$(6),A.Y8G("tabPanel",iA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[de.Sq,P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,Q.UI,RA.Bu,RA.hQ,RA.Ql,xt.n3,Sn.Wk],encapsulation:2}))}return n(),l})();var wa=We(396),kr=We(283);function yl(n,l){if(1&n&&(A.j41(0,"mat-option",6),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.SpI(" ",e.addressTp," ")}}let xl=(()=>{var n;class l{constructor(i,o){this.store=i,this.clnEffects=o,this.addressTypes=B.Ld,this.selectedAddressType=B.Ld[2],this.newAddress=""}onGenerateAddress(){this.store.dispatch((0,VA.XT)({payload:this.selectedAddressType})),this.clnEffects.setNewAddressCL.pipe((0,bt.s)(1)).subscribe(i=>{this.newAddress=i,setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{address:this.newAddress,addressType:this.selectedAddressType.addressTp,component:wa.f}}}))},0)})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(AA.il),A.rXU(kr.i))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain-receive"]],standalone:!1,decls:10,vars:2,consts:[["fxLayout","column"],["fxLayout","row","fxLayoutAlign","space-between center","fxLayoutAlign.gt-sm","start center"],["fxLayout","column","fxFlex","48","fxFlex.gt-md","25","fxLayoutAlign","start end",1,"mr-2"],["name","address_type","tabindex","1",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["mat-flat-button","","color","primary","tabindex","2",3,"click"],[3,"value"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"div",1)(2,"mat-form-field",2)(3,"mat-label"),A.EFF(4,"Address Type"),A.k0s(),A.j41(5,"mat-select",3),A.mxI("ngModelChange",function(ne){return A.DH7(r.selectedAddressType,ne)||(r.selectedAddressType=ne),ne}),A.DNE(6,yl,2,2,"mat-option",4),A.k0s()(),A.j41(7,"div")(8,"button",5),A.bIt("click",function(){return r.onGenerateAddress()}),A.EFF(9,"Generate Address"),A.k0s()()()()),2&o&&(A.R7$(5),A.R50("ngModel",r.selectedAddressType),A.R7$(),A.Y8G("ngForOf",r.addressTypes))},dependencies:[de.Sq,hA.BC,hA.vS,fA.$z,yA.rl,yA.nJ,Q.DJ,Q.sA,Q.UI,OA.VO,xA.wT],encapsulation:2}))}return n(),l})(),Yl=(()=>{var n;class l{constructor(i,o){this.store=i,this.activatedRoute=o,this.sweepAll=!1,this.unSubs=[new g.B,new g.B]}ngOnInit(){this.activatedRoute.data.pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.sweepAll=i.sweepAll})}openSendFundsModal(){this.store.dispatch((0,C.xO)({payload:{data:{sweepAll:this.sweepAll,component:co}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(AA.il),A.rXU(xt.nX))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-on-chain-send"]],standalone:!1,decls:4,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x"],["fxLayout","row"],["mat-flat-button","","color","primary","type","button","tabindex","1",3,"click"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return r.openSendFundsModal()}),A.EFF(3),A.k0s()()()),2&o&&(A.R7$(3),A.JRh(r.sweepAll?"Sweep All":"Send Funds"))},dependencies:[fA.$z,Q.DJ,Q.sA,Q.UI],encapsulation:2}))}return n(),l})();var xc=We(9172),bl=We(6354),vl=We(2628),Vn=We(92);const Rl=["form"],Cr=(n,l)=>({"mr-6":n,"mr-2":l});function Sl(n,l){if(1&n&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e),A.R7$(),A.JRh(e.alias?e.alias:e.id?e.id:"")}}function Nl(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Peer alias is required."),A.k0s())}function Tl(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Peer not found in the list."),A.k0s())}function Ca(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",7)(1,"mat-label"),A.EFF(2,"Peer Alias"),A.k0s(),A.j41(3,"input",46),A.bIt("change",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onSelectedPeerChanged())}),A.k0s(),A.j41(4,"mat-autocomplete",47,4),A.bIt("optionSelected",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onSelectedPeerChanged())}),A.DNE(6,Sl,2,2,"mat-option",31),A.nI1(7,"async"),A.k0s(),A.DNE(8,Nl,2,0,"mat-error",21)(9,Tl,2,0,"mat-error",21),A.k0s()}if(2&n){const e=A.sdS(5),i=A.XpG();A.R7$(3),A.Y8G("formControl",i.selectedPeer)("matAutocomplete",e),A.R7$(),A.Y8G("displayWith",i.displayFn),A.R7$(2),A.Y8G("ngForOf",A.bMT(7,6,i.filteredPeers)),A.R7$(2),A.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.required),A.R7$(),A.Y8G("ngIf",null==i.selectedPeer.errors?null:i.selectedPeer.errors.notfound)}}function Pl(n,l){1&n&&A.eu8(0)}function Ul(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function Ll(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.SpI("Amount must be less than or equal to ",e.totalBalance,".")}}function Gl(n,l){if(1&n&&(A.j41(0,"div",49),A.nrm(1,"fa-icon",50),A.j41(2,"span",51)(3,"div"),A.EFF(4,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(5,"span",52)(6,"span"),A.EFF(7),A.k0s(),A.j41(8,"span"),A.EFF(9),A.k0s(),A.j41(10,"span"),A.EFF(11),A.k0s(),A.j41(12,"span"),A.EFF(13),A.k0s(),A.j41(14,"span"),A.EFF(15),A.k0s()()()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faInfoCircle),A.R7$(6),A.SpI("- High: ",e.recommendedFee.fastestFee||"Unknown"),A.R7$(2),A.SpI("- Medium: ",e.recommendedFee.halfHourFee||"Unknown"),A.R7$(2),A.SpI("- Low: ",e.recommendedFee.hourFee||"Unknown"),A.R7$(2),A.SpI("- Economy: ",e.recommendedFee.economyFee||"Unknown"),A.R7$(2),A.SpI("- Minimum: ",e.recommendedFee.minimumFee||"Unknown")}}function da(n,l){if(1&n&&(A.j41(0,"mat-option",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.Y8G("value",e.feeRateId),A.R7$(),A.SpI(" ",e.feeRateType," ")}}function zl(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee Rate is required."),A.k0s())}function Qa(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.SpI("Lower than min feerate ",e.recommendedFee.minimumFee," in the mempool.")}}function ma(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-form-field",53)(1,"mat-label"),A.EFF(2,"Fee Rate (Sats/vByte)"),A.k0s(),A.j41(3,"input",54,5),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.customFeeRate,o)||(r.customFeeRate=o),w.Njj(o)}),A.k0s(),A.j41(5,"mat-hint"),A.EFF(6),A.k0s(),A.DNE(7,zl,2,0,"mat-error",21)(8,Qa,2,1,"mat-error",21),A.k0s()}if(2&n){const e=A.XpG();A.R7$(3),A.Y8G("step",1)("min",e.recommendedFee.minimumFee)("required","customperkb"===e.selFeeRate&&!e.flgMinConf),A.R50("ngModel",e.customFeeRate),A.R7$(3),A.SpI("Mempool Min: ",e.recommendedFee.minimumFee," (Sats/vByte)"),A.R7$(),A.Y8G("ngIf","customperkb"===e.selFeeRate&&!e.flgMinConf&&!e.customFeeRate),A.R7$(),A.Y8G("ngIf","customperkb"===e.selFeeRate&&!e.flgMinConf&&e.customFeeRate&&e.customFeeRate{var n;class l{constructor(i,o,r,iA,ne,re,ln,Qt){this.logger=i,this.dialogRef=o,this.data=r,this.store=iA,this.actions=ne,this.decimalPipe=re,this.commonService=ln,this.dataService=Qt,this.selectedPeer=new hA.hs,this.faExclamationTriangle=v.zpE,this.faInfoCircle=v.iW_,this.utxos=[],this.selUTXOs=[],this.flgUseAllBalance=!1,this.totalSelectedUTXOAmount=0,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.totalBalance=0,this.fundingAmount=null,this.selectedPubkey="",this.isPrivate=!1,this.feeRateTypes=B.G,this.selFeeRate="",this.customFeeRate=null,this.flgMinConf=!1,this.minConfValue=null,this.screenSize="",this.screenSizeEnum=B.f7,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.data.message?(this.information=this.data.message.information,this.totalBalance=this.data.message.balance,this.utxos=this.data.message.utxos,this.peer=this.data.message.peer||null,this.peers=this.data.message.peers||[]):(this.information={},this.totalBalance=0,this.utxos=[],this.peer=null,this.peers=[]),this.alertTitle=this.data.alertTitle||"Alert",this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(r=>{this.selNode=r,this.isPrivate=!!r?.settings.unannouncedChannels}),this.actions.pipe((0,I.Q)(this.unSubs[1]),(0,nA.p)(r=>r.type===B.TC.UPDATE_API_CALL_STATUS_CLN||r.type===B.TC.FETCH_CHANNELS_CLN)).subscribe(r=>{r.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&r.payload.status===B.wn.ERROR&&"SaveNewChannel"===r.payload.action&&(this.channelConnectionError=r.payload.message),r.type===B.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close()});let i="",o="";this.sortedPeers=this.peers.sort((r,iA)=>(i=r.alias?r.alias.toLowerCase():r.id?r.id.toLowerCase():"",o=iA.alias?iA.alias.toLowerCase():r.id?r.id.toLowerCase():"",io?1:0)),this.filteredPeers=this.selectedPeer.valueChanges.pipe((0,I.Q)(this.unSubs[2]),(0,xc.Z)(""),(0,bl.T)(r=>"string"==typeof r?r:r.alias?r.alias:r.id),(0,bl.T)(r=>r?this.filterPeers(r):this.sortedPeers.slice()))}filterPeers(i){return this.sortedPeers?.filter(o=>0===o.alias?.toLowerCase().indexOf(i?i.toLowerCase():""))}displayFn(i){return i&&i.alias?i.alias:i&&i.id?i.id:""}onSelectedPeerChanged(){if(this.channelConnectionError="",this.selectedPubkey=this.selectedPeer.value&&this.selectedPeer.value.id?this.selectedPeer.value.id:null,"string"==typeof this.selectedPeer.value){const i=this.peers?.filter(o=>o.alias?.length===this.selectedPeer.value.length&&0===o.alias?.toLowerCase().indexOf(this.selectedPeer.value?this.selectedPeer.value.toLowerCase():""));1===i.length&&i[0].id&&(this.selectedPubkey=i[0].id)}this.selectedPeer.setErrors(this.selectedPeer.value&&!this.selectedPubkey?{notfound:!0}:null)}onClose(){this.dialogRef.close(!1)}resetData(){this.flgMinConf=!1,this.selFeeRate="",this.minConfValue=null,this.selectedPeer.setValue(""),this.fundingAmount=null,this.isPrivate=!!this.selNode?.settings.unannouncedChannels,this.channelConnectionError="",this.advancedTitle="Advanced Options",this.form.resetForm()}onAdvancedPanelToggle(i){i?this.flgMinConf||this.selFeeRate||this.selUTXOs.length&&0!==this.selUTXOs.length?(this.advancedTitle="Advanced Options",this.flgMinConf&&(this.advancedTitle=this.advancedTitle+" | Min Confirmation Blocks: "+this.minConfValue),this.selFeeRate&&(this.advancedTitle=this.advancedTitle+" | Fee Rate: "+(this.customFeeRate?this.customFeeRate+" (Sats/vByte)":this.feeRateTypes.find(o=>o.feeRateId===this.selFeeRate)?.feeRateType)),this.selUTXOs.length&&this.selUTXOs.length>0&&(this.advancedTitle=this.advancedTitle+" | Total Selected: "+this.selUTXOs.length+" | Selected UTXOs: "+this.decimalPipe.transform(this.totalSelectedUTXOAmount)+" Sats")):this.advancedTitle="Advanced Options":(this.advancedTitle="Advanced Options",this.dataService.getRecommendedFeeRates().pipe((0,I.Q)(this.unSubs[3])).subscribe({next:o=>{this.recommendedFee=o},error:o=>{this.logger.error(o)}}))}onUTXOSelectionChange(i){this.selUTXOs.length&&this.selUTXOs.length>0?(this.totalSelectedUTXOAmount=this.selUTXOs?.reduce((o,r)=>o+(r.amount_msat||0)/1e3,0),this.flgUseAllBalance&&this.onUTXOAllBalanceChange()):(this.totalSelectedUTXOAmount=0,this.fundingAmount=null,this.flgUseAllBalance=!1)}onUTXOAllBalanceChange(){this.fundingAmount=this.flgUseAllBalance?this.totalSelectedUTXOAmount:null}onOpenChannel(){if(!this.peer&&!this.selectedPubkey||!this.fundingAmount||this.totalBalance-this.fundingAmount<0||this.flgMinConf&&!this.minConfValue||"customperkb"===this.selFeeRate&&!this.flgMinConf&&!this.customFeeRate||"customperkb"===this.selFeeRate&&this.recommendedFee.minimumFee>this.customFeeRate)return!0;const i={peerId:this.peer&&this.peer.id?this.peer.id:this.selectedPubkey,amount:this.flgUseAllBalance?"all":this.fundingAmount.toString(),announce:!this.isPrivate,minconf:this.flgMinConf?this.minConfValue:null};i.feeRate="customperkb"===this.selFeeRate&&!this.flgMinConf&&this.customFeeRate?1e3*this.customFeeRate+"perkb":this.selFeeRate,this.selUTXOs.length&&this.selUTXOs.length>0&&(i.utxos=[],this.selUTXOs.forEach(o=>i.utxos.push(o.txid+":"+o.output))),this.store.dispatch((0,VA.vL)({payload:i}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(AA.il),A.rXU(kA.En),A.rXU(de.QX),A.rXU(L.h),A.rXU(Dt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-open-channel"]],viewQuery:function(o,r){if(1&o&&A.GBs(Rl,7),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first)}},standalone:!1,decls:75,vars:42,consts:[["form","ngForm"],["amount","ngModel"],["blocks","ngModel"],["peerDetailsExpansionBlock",""],["auto","matAutocomplete"],["custFeeRate","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column",3,"submit","reset"],["fxLayout","column"],["fxFlex","100",4,"ngIf"],[4,"ngTemplateOutlet"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","start end"],["matInput","","type","number","required","","name","amount",3,"ngModelChange","step","min","max","disabled","ngModel"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","25","fxLayoutAlign","center start"],["fxLayout","column","fxLayoutAlign","center start","color","primary","name","isPrivate",3,"ngModelChange","ngModel"],["expanded","false",1,"flat-expansion-panel","mt-2",3,"closed","opened"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxFlex","64","fxLayout","row","fxLayoutAlign","space-between center"],["fxLayout","column","fxLayoutAlign","start center",3,"ngClass"],[3,"valueChange","disabled","value"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","58","fxLayoutAlign","end center",4,"ngIf"],["fxFlex","32","fxLayout","row","fxLayoutAlign","start center"],["fxFlex","7","color","primary","name","flgMinConf","fxLayoutAlign","stretch start",3,"ngModelChange","change","ngClass","ngModel"],["fxLayout","column","fxFlex","93"],["matInput","","type","number","name","blocks",3,"ngModelChange","step","min","required","disabled","ngModel"],["fxLayout","column","fxFlex","54","fxLayoutAlign","start end"],["multiple","",3,"valueChange","selectionChange","value"],["fxFlex","41","fxLayout","row","fxLayoutAlign","start center"],["color","primary","name","flgUseAllBalance",3,"ngModelChange","change","disabled","ngModel"],["matTooltip","Use selected UTXOs balance as the amount to be sent. Final amount sent will be less the mining fee.","matTooltipPosition","before",1,"info-icon"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","type","reset",1,"mr-1"],["autoFocus","","mat-button","","color","primary","type","submit"],["type","text","aria-label","Peers","matInput","","required","",3,"change","formControl","matAutocomplete"],[3,"optionSelected","displayWith"],[3,"value"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between start",1,"pr-2"],["fxLayout","column","fxFlex","58","fxLayoutAlign","end center"],["matInput","","type","number","name","custFeeRate",3,"ngModelChange","step","min","required","ngModel"],["fxFlex","100",1,"alert","alert-danger","mt-1"],["class","flat-expansion-panel my-1","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","my-1"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","50"],[1,"overflow-wrap","foreground-secondary-text"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",6)(1,"div",7)(2,"mat-card-header",8)(3,"div",9)(4,"span",10),A.EFF(5),A.k0s()(),A.j41(6,"button",11),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.bIt("submit",function(){return w.eBV(iA),w.Njj(r.onOpenChannel())})("reset",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.j41(11,"div",14),A.DNE(12,Ca,10,8,"mat-form-field",15),A.k0s(),A.DNE(13,Pl,1,0,"ng-container",16),A.j41(14,"div",14)(15,"div",17)(16,"mat-form-field",18)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",19,1),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.fundingAmount,re)||(r.fundingAmount=re),w.Njj(re)}),A.k0s(),A.j41(21,"mat-hint"),A.EFF(22),A.nI1(23,"number"),A.k0s(),A.j41(24,"span",20),A.EFF(25," Sats "),A.k0s(),A.DNE(26,Ul,2,0,"mat-error",21)(27,Ll,2,1,"mat-error",21),A.k0s(),A.j41(28,"div",22)(29,"mat-slide-toggle",23),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.isPrivate,re)||(r.isPrivate=re),w.Njj(re)}),A.EFF(30,"Private Channel"),A.k0s()()(),A.j41(31,"mat-expansion-panel",24),A.bIt("closed",function(){return w.eBV(iA),w.Njj(r.onAdvancedPanelToggle(!0))})("opened",function(){return w.eBV(iA),w.Njj(r.onAdvancedPanelToggle(!1))}),A.j41(32,"mat-expansion-panel-header")(33,"mat-panel-title")(34,"span"),A.EFF(35),A.k0s()()(),A.j41(36,"div",25),A.DNE(37,Gl,16,6,"div",26),A.j41(38,"div",27)(39,"div",28)(40,"mat-form-field",29)(41,"mat-label"),A.EFF(42,"Fee Rate"),A.k0s(),A.j41(43,"mat-select",30),A.mxI("valueChange",function(re){return w.eBV(iA),A.DH7(r.selFeeRate,re)||(r.selFeeRate=re),w.Njj(re)}),A.DNE(44,da,2,2,"mat-option",31),A.k0s()(),A.DNE(45,ma,9,7,"mat-form-field",32),A.k0s(),A.j41(46,"div",33)(47,"mat-checkbox",34),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.flgMinConf,re)||(r.flgMinConf=re),w.Njj(re)}),A.bIt("change",function(){return w.eBV(iA),w.Njj(r.flgMinConf?r.selFeeRate=null:r.minConfValue=null)}),A.k0s(),A.j41(48,"mat-form-field",35)(49,"mat-label"),A.EFF(50,"Min Confirmation Blocks"),A.k0s(),A.j41(51,"input",36,2),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.minConfValue,re)||(r.minConfValue=re),w.Njj(re)}),A.k0s(),A.DNE(53,Ma,2,0,"mat-error",21),A.k0s()()(),A.j41(54,"mat-form-field",37)(55,"mat-label"),A.EFF(56,"Coin Selection"),A.k0s(),A.j41(57,"mat-select",38),A.mxI("valueChange",function(re){return w.eBV(iA),A.DH7(r.selUTXOs,re)||(r.selUTXOs=re),w.Njj(re)}),A.bIt("selectionChange",function(re){return w.eBV(iA),w.Njj(r.onUTXOSelectionChange(re))}),A.j41(58,"mat-select-trigger"),A.EFF(59),A.nI1(60,"number"),A.k0s(),A.DNE(61,kl,3,5,"mat-option",31),A.k0s()(),A.j41(62,"div",39)(63,"mat-slide-toggle",40),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.flgUseAllBalance,re)||(r.flgUseAllBalance=re),w.Njj(re)}),A.bIt("change",function(){return w.eBV(iA),w.Njj(r.onUTXOAllBalanceChange())}),A.EFF(64," Use selected UTXOs balance "),A.k0s(),A.j41(65,"mat-icon",41),A.EFF(66,"info_outline"),A.k0s()()()()(),A.DNE(67,jl,3,2,"div",42),A.j41(68,"div",43)(69,"button",44),A.EFF(70,"Clear Fields"),A.k0s(),A.j41(71,"button",45),A.EFF(72,"Open Channel"),A.k0s()()()()()(),A.DNE(73,Yc,1,1,"ng-template",null,3,A.C5r)}if(2&o){const iA=A.sdS(20),ne=A.sdS(74);A.R7$(5),A.JRh(r.alertTitle),A.R7$(7),A.Y8G("ngIf",!r.peer&&r.peers&&r.peers.length>0),A.R7$(),A.Y8G("ngTemplateOutlet",ne),A.R7$(6),A.Y8G("step",1e3)("min",1)("max",r.totalBalance)("disabled",r.flgUseAllBalance),A.R50("ngModel",r.fundingAmount),A.R7$(3),A.Lme("Remaining: ",A.bMT(23,35,r.totalBalance-(r.fundingAmount?r.fundingAmount:0)),"",r.flgUseAllBalance?". Amount replaced by UTXO balance":""),A.R7$(4),A.Y8G("ngIf",(null==iA.errors?null:iA.errors.required)||!r.fundingAmount),A.R7$(),A.Y8G("ngIf",null==iA.errors?null:iA.errors.max),A.R7$(2),A.R50("ngModel",r.isPrivate),A.R7$(6),A.JRh(r.advancedTitle),A.R7$(2),A.Y8G("ngIf",r.recommendedFee.minimumFee),A.R7$(3),A.Y8G("ngClass","customperkb"!==r.selFeeRate||r.flgMinConf?"flex-100":"flex-40"),A.R7$(3),A.Y8G("disabled",r.flgMinConf),A.R50("value",r.selFeeRate),A.R7$(),A.Y8G("ngForOf",r.feeRateTypes),A.R7$(),A.Y8G("ngIf","customperkb"===r.selFeeRate&&!r.flgMinConf),A.R7$(2),A.Y8G("ngClass",A.l_i(39,Cr,r.screenSize===r.screenSizeEnum.XS||r.screenSize===r.screenSizeEnum.SM,r.screenSize===r.screenSizeEnum.MD||r.screenSize===r.screenSizeEnum.LG||r.screenSize===r.screenSizeEnum.XL)),A.R50("ngModel",r.flgMinConf),A.R7$(4),A.Y8G("step",1)("min",0)("required",r.flgMinConf)("disabled",!r.flgMinConf),A.R50("ngModel",r.minConfValue),A.R7$(2),A.Y8G("ngIf",r.flgMinConf&&!r.minConfValue),A.R7$(4),A.R50("value",r.selUTXOs),A.R7$(2),A.Lme("",A.bMT(60,37,r.totalSelectedUTXOAmount)," Sats (",r.selUTXOs.length>1?r.selUTXOs.length+" UTXOs":"1 UTXO",")"),A.R7$(2),A.Y8G("ngForOf",r.utxos),A.R7$(2),A.Y8G("disabled",r.selUTXOs.length<1),A.R50("ngModel",r.flgUseAllBalance),A.R7$(4),A.Y8G("ngIf",""!==r.channelConnectionError)}},dependencies:[de.YU,de.Sq,de.bT,de.T3,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.VZ,hA.zX,hA.vS,hA.cV,hA.l_,P.aY,fA.$z,QA.m2,QA.MM,Ze.So,gi.GK,gi.Z2,gi.WN,oA.An,UA.fg,yA.rl,yA.nJ,yA.MV,yA.TL,yA.yw,sn.q,Q.DJ,Q.sA,Q.UI,dA.PW,OA.VO,OA.$2,xA.wT,Ee.sG,HA.oV,vl.$3,vl.pN,cA.N,Vn.z,J.V,de.Jj,de.QX],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}))}return n(),l})();function Jl(n,l){if(1&n&&(A.j41(0,"span",7),A.EFF(1,"Open"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.openChannels))}}function _l(n,l){if(1&n&&(A.j41(0,"span",7),A.EFF(1,"Pending/Inactive"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.pendingChannels))}}function Vl(n,l){if(1&n&&(A.j41(0,"span",7),A.EFF(1,"Active HTLCs"),A.k0s()),2&n){const e=A.XpG();A.Y8G("matBadge",A.mNQ(e.activeHTLCs))}}let Wl=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.store=o,this.commonService=r,this.router=iA,this.openChannels=0,this.pendingChannels=0,this.activeHTLCs=0,this.information={},this.peers=[],this.utxos=[],this.totalBalance=0,this.links=[{link:"open",name:"Open"},{link:"pending",name:"Pending/Inactive"},{link:"activehtlcs",name:"Active HTLCs"}],this.activeLink=0,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.activeLink=this.links.findIndex(i=>i.link===this.router.url.substring(this.router.url.lastIndexOf("/")+1)),this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(i=>i instanceof xt.gx)).subscribe({next:i=>{this.activeLink=this.links.findIndex(o=>o.link===i.urlAfterRedirects.substring(i.urlAfterRedirects.lastIndexOf("/")+1))}}),this.store.select(tA.kQ).pipe((0,I.Q)(this.unSubs[1]),(0,N.E)(this.store.select(j._c))).subscribe(([i,o])=>{this.selNode=o,this.information=i.information,this.totalBalance=i.balance.totalBalance||0,this.logger.info(i)}),this.store.select(tA.os).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.peers=i.peers}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.utxos=this.commonService.sortAscByKey(i.utxos?.filter(o=>"confirmed"===o.status),"value")}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[4])).subscribe(i=>{this.openChannels=i.activeChannels.length||0,this.pendingChannels=i.pendingChannels.length+i.inactiveChannels.length||0;const o=[...i.activeChannels,...i.pendingChannels,...i.inactiveChannels];this.activeHTLCs=o?.reduce((r,iA)=>r+(iA.htlcs&&iA.htlcs.length>0?iA.htlcs.length:0),0),this.logger.info(i)})}onOpenChannel(){this.store.dispatch((0,C.xO)({payload:{data:{alertTitle:"Open Channel",message:{peers:this.peers,information:this.information,balance:this.totalBalance,utxos:this.utxos},component:Hr}}}))}onSelectedTabChange(i){this.router.navigateByUrl("/cln/connections/channels/"+this.links[i.index].link)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(L.h),A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channels-tables"]],standalone:!1,decls:14,vars:1,consts:[["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column","fxFlex","100",1,"bordered-box"],["mat-stretch-tabs","false","mat-align-tabs","start",3,"selectedIndexChange","selectedTabChange","selectedIndex"],["mat-tab-label",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"padding-gap-x-large"],["matBadgeOverlap","false",1,"tab-badge",3,"matBadge"]],template:function(o,r){1&o&&(A.j41(0,"div",0)(1,"div",1)(2,"button",2),A.bIt("click",function(){return r.onOpenChannel()}),A.EFF(3,"Open Channel"),A.k0s()(),A.j41(4,"div",3)(5,"mat-tab-group",4),A.mxI("selectedIndexChange",function(ne){return A.DH7(r.activeLink,ne)||(r.activeLink=ne),ne}),A.bIt("selectedTabChange",function(ne){return r.onSelectedTabChange(ne)}),A.j41(6,"mat-tab"),A.DNE(7,Jl,2,2,"ng-template",5),A.k0s(),A.j41(8,"mat-tab"),A.DNE(9,_l,2,2,"ng-template",5),A.k0s(),A.j41(10,"mat-tab"),A.DNE(11,Vl,2,2,"ng-template",5),A.k0s()(),A.j41(12,"div",6),A.nrm(13,"router-outlet"),A.k0s()()()),2&o&&(A.R7$(5),A.R50("selectedIndex",r.activeLink))},dependencies:[fA.$z,Q.DJ,Q.sA,Q.UI,Aa.k,RA.ES,RA.mq,RA.T8,xt.n3],encapsulation:2}))}return n(),l})();const Kl=n=>({"xs-scroll-y":n}),Xl=(n,l)=>({"mt-2":n,"mt-1":l});function pa(n,l){if(1&n){const e=A.RV6();A.j41(0,"fa-icon",27),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onExplorerClicked())}),A.k0s()}if(2&n){const e=A.XpG();A.Y8G("matTooltip",A.mNQ("Link to "+(null==e.selNode||null==e.selNode.settings?null:e.selNode.settings.blockExplorerUrl)))("icon",e.faUpRightFromSquare)}}function Ia(n,l){if(1&n&&(A.j41(0,"div")(1,"div",10)(2,"div",11)(3,"h4",12),A.EFF(4,"Receivable (Sats)"),A.k0s(),A.j41(5,"span",19),A.EFF(6),A.nI1(7,"number"),A.k0s()(),A.j41(8,"div",11)(9,"h4",12),A.EFF(10,"Spendable (Sats)"),A.k0s(),A.j41(11,"span",19),A.EFF(12),A.nI1(13,"number"),A.k0s()()(),A.nrm(14,"mat-divider",15),A.j41(15,"div",10)(16,"div",11)(17,"h4",12),A.EFF(18,"Their Reserve (Sats)"),A.k0s(),A.j41(19,"span",19),A.EFF(20),A.nI1(21,"number"),A.k0s()(),A.j41(22,"div",11)(23,"h4",12),A.EFF(24,"Our Reserve (Sats)"),A.k0s(),A.j41(25,"span",19),A.EFF(26),A.nI1(27,"number"),A.k0s()()(),A.nrm(28,"mat-divider",15),A.k0s()),2&n){const e=A.XpG();A.R7$(6),A.JRh(A.i5U(7,4,e.channel.receivable_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(13,7,e.channel.spendable_msat/1e3,"1.0-0")),A.R7$(8),A.JRh(A.i5U(21,10,e.channel.their_reserve_msat/1e3,"1.0-2")),A.R7$(6),A.JRh(A.i5U(27,13,e.channel.our_reserve_msat/1e3,"1.0-2"))}}function Zl(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Show Advanced"),A.k0s())}function ql(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Hide Advanced"),A.k0s())}function $l(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",28),A.bIt("copied",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onCopyChanID(o))}),A.EFF(1,"Copy Short Channel ID"),A.k0s()}if(2&n){const e=A.XpG();A.Y8G("payload",e.channel.short_channel_id)}}function Rn(n,l){if(1&n){const e=A.RV6();A.j41(0,"button",29),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onClose())}),A.EFF(1,"OK"),A.k0s()}}let Da=(()=>{var n;class l{constructor(i,o,r,iA,ne,re){this.dialogRef=i,this.data=o,this.logger=r,this.commonService=iA,this.snackBar=ne,this.router=re,this.faReceipt=v.Mf0,this.faUpRightFromSquare=v.k02,this.showAdvanced=!1,this.showCopy=!0,this.showCopyField=null,this.screenSize="",this.screenSizeEnum=B.f7}ngOnInit(){this.channel=this.data.channel,this.showCopy=!!this.data.showCopy,this.selNode=this.data.selNode,this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyChanID(i){this.snackBar.open("Short channel ID "+i+" copied."),this.logger.info("Copied Text: "+i)}onGoToLink(i,o){this.router.navigateByUrl("/cln/graph/lookups",{state:{lookupType:i,lookupValue:o}}),this.onClose()}onExplorerClicked(){this.selNode?.settings?.blockExplorerUrl&&window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+this.channel.funding_txid,"_blank")}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(aA.gP),A.rXU(L.h),A.rXU(js.UG),A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-information"]],standalone:!1,decls:91,vars:37,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],["tabindex","4","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],[1,"foreground-secondary-text"],[1,"my-1"],["tabindex","5","matTooltip","Go To Graph Lookup",1,"foreground-secondary-text","go-to-link",3,"click"],["class","ml-1 fa-icon-primary",3,"matTooltip","icon","click",4,"ngIf"],["fxFlex","33"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","34"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","6",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","7","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","8","type","button",3,"click",4,"ngIf"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["autoFocus","","mat-button","","color","primary","tabindex","7","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","8","type","button",3,"click"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4),A.nrm(4,"fa-icon",5),A.j41(5,"span",6),A.EFF(6,"Channel Information"),A.k0s()(),A.j41(7,"button",7),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onClose())}),A.EFF(8,"X"),A.k0s()(),A.j41(9,"mat-card-content",8)(10,"div",9)(11,"div",10)(12,"div",11)(13,"h4",12),A.EFF(14,"Short Channel ID"),A.k0s(),A.j41(15,"span",13),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onGoToLink("1",r.channel.short_channel_id))}),A.EFF(16),A.k0s()(),A.j41(17,"div",11)(18,"h4",12),A.EFF(19,"Peer Alias"),A.k0s(),A.j41(20,"span",14),A.EFF(21),A.k0s()()(),A.nrm(22,"mat-divider",15),A.j41(23,"div",10)(24,"div",2)(25,"h4",12),A.EFF(26,"Channel ID"),A.k0s(),A.j41(27,"span",14),A.EFF(28),A.k0s()()(),A.nrm(29,"mat-divider",15),A.j41(30,"div",10)(31,"div",2)(32,"h4",12),A.EFF(33,"Peer Public Key"),A.k0s(),A.j41(34,"span",16),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onGoToLink("0",r.channel.peer_id))}),A.EFF(35),A.k0s()()(),A.nrm(36,"mat-divider",15),A.j41(37,"div",10)(38,"div",2)(39,"h4",12),A.EFF(40,"Funding Transaction ID"),A.k0s(),A.j41(41,"span",14),A.EFF(42),A.DNE(43,pa,1,3,"fa-icon",17),A.k0s()()(),A.nrm(44,"mat-divider",15),A.j41(45,"div",10)(46,"div",18)(47,"h4",12),A.EFF(48,"State"),A.k0s(),A.j41(49,"span",19),A.EFF(50),A.nI1(51,"camelcaseWithReplace"),A.k0s()(),A.j41(52,"div",18)(53,"h4",12),A.EFF(54,"Connected"),A.k0s(),A.j41(55,"span",19),A.EFF(56),A.k0s()(),A.j41(57,"div",20)(58,"h4",12),A.EFF(59,"Private"),A.k0s(),A.j41(60,"span",19),A.EFF(61),A.k0s()()(),A.nrm(62,"mat-divider",15),A.j41(63,"div",10)(64,"div",18)(65,"h4",12),A.EFF(66,"Remote Balance (Sats)"),A.k0s(),A.j41(67,"span",19),A.EFF(68),A.nI1(69,"number"),A.k0s()(),A.j41(70,"div",18)(71,"h4",12),A.EFF(72,"Local Balance (Sats)"),A.k0s(),A.j41(73,"span",19),A.EFF(74),A.nI1(75,"number"),A.k0s()(),A.j41(76,"div",20)(77,"h4",12),A.EFF(78,"Total (Sats)"),A.k0s(),A.j41(79,"span",19),A.EFF(80),A.nI1(81,"number"),A.k0s()()(),A.nrm(82,"mat-divider",15),A.DNE(83,Ia,29,16,"div",21),A.j41(84,"div",22)(85,"button",23),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onShowAdvanced())}),A.DNE(86,Zl,2,0,"p",24)(87,ql,2,0,"ng-template",null,0,A.C5r),A.k0s(),A.DNE(89,$l,2,1,"button",25)(90,Rn,2,0,"button",26),A.k0s()()()()()}if(2&o){const iA=A.sdS(88);A.R7$(4),A.Y8G("icon",r.faReceipt),A.R7$(5),A.Y8G("ngClass",A.eq3(32,Kl,r.screenSize===r.screenSizeEnum.XS)),A.R7$(7),A.SpI(" ",r.channel.short_channel_id," "),A.R7$(5),A.JRh(r.channel.alias),A.R7$(7),A.JRh(r.channel.channel_id),A.R7$(7),A.SpI(" ",r.channel.peer_id," "),A.R7$(7),A.SpI(" ",r.channel.funding_txid," "),A.R7$(),A.Y8G("ngIf",null==r.selNode||null==r.selNode.settings?null:r.selNode.settings.blockExplorerUrl),A.R7$(7),A.JRh(A.i5U(51,20,null==r.channel?null:r.channel.state,"_")),A.R7$(6),A.JRh(r.channel.peer_connected?"Yes":"No"),A.R7$(5),A.JRh(r.channel.private?"Yes":"No"),A.R7$(7),A.JRh(A.i5U(69,23,r.channel.to_them_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(75,26,r.channel.to_us_msat/1e3,"1.0-0")),A.R7$(6),A.JRh(A.i5U(81,29,r.channel.total_msat/1e3,"1.0-0")),A.R7$(3),A.Y8G("ngIf",r.showAdvanced),A.R7$(),A.Y8G("ngClass",A.l_i(34,Xl,!r.showAdvanced,r.showAdvanced)),A.R7$(2),A.Y8G("ngIf",!r.showAdvanced)("ngIfElse",iA),A.R7$(3),A.Y8G("ngIf",r.showCopy),A.R7$(),A.Y8G("ngIf",!r.showCopy)}},dependencies:[de.YU,de.bT,P.aY,fA.$z,QA.m2,QA.MM,sn.q,Q.DJ,Q.sA,Q.UI,dA.PW,HA.oV,Ji.U,cA.N,de.QX,R.VD],encapsulation:2}))}return n(),l})();const Fa=()=>["all"],Ac=n=>({"error-border":n}),ec=()=>["no_peer"],Ks=n=>({width:n}),ya=n=>({"display-none":n});function tc(n,l){if(1&n&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function nc(n,l){1&n&&A.nrm(0,"mat-progress-bar",40)}function xa(n,l){1&n&&A.nrm(0,"th",41)}function ic(n,l){if(1&n&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEyeSlash)}}function sc(n,l){if(1&n&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEye)}}function Vi(n,l){if(1&n&&(A.j41(0,"td",42),A.DNE(1,ic,2,1,"span",43)(2,sc,2,1,"span",44),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",e.private),A.R7$(),A.Y8G("ngIf",!e.private)}}function rc(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Short Channel ID"),A.k0s())}function ac(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ks,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.short_channel_id)}}function oc(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function lc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ks,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function Ya(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function jr(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ks,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function ti(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function cc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ks,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.channel_id)}}function gc(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function Bc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Ks,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.funding_txid)}}function fc(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function bc(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null!=e&&e.peer_connected?"Connected":"Disconnected")}}function uc(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function hc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.our_reserve_msat)/1e3,"1.0-0")," ")}}function Ec(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function wc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.their_reserve_msat)/1e3,"1.0-0")," ")}}function ba(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Total (Sats)"),A.k0s())}function Cc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.total_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function BA(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Spendable (Sats)"),A.k0s())}function a(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.spendable_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function u(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function x(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.to_us_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function T(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function V(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",52),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.to_them_msat)/1e3,(null==e?null:e.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function G(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Balance Score"),A.k0s())}function TA(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",53)(2,"mat-hint",54),A.EFF(3),A.nI1(4,"number"),A.k0s()(),A.nrm(5,"mat-progress-bar",55),A.k0s()),2&n){const e=l.$implicit;A.R7$(3),A.JRh(A.bMT(4,3,e.balancedness||0)),A.R7$(2),A.Y8G("value",A.mNQ(e.to_us_msat&&e.to_us_msat>0?e.to_us_msat/(e.to_us_msat+e.to_them_msat)*100:0))}}function XA(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",56)(1,"div",57)(2,"mat-select",58),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",59),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onChannelUpdate("all"))}),A.EFF(5,"Update Fee Policy"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(7,"Download CSV"),A.k0s()()()()}}function se(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",60)(1,"div",57)(2,"mat-select",61),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",59),A.bIt("click",function(o){const r=w.eBV(e).$implicit,iA=A.XpG();return w.Njj(iA.onChannelClick(r,o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",59),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onViewRemotePolicy(o))}),A.EFF(7,"View Remote Fee"),A.k0s(),A.j41(8,"mat-option",59),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onChannelUpdate(o))}),A.EFF(9,"Update Fee Policy"),A.k0s(),A.j41(10,"mat-option",59),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onChannelClose(o))}),A.EFF(11,"Close Channel"),A.k0s()()()()}}function fe(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function Be(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No channel available."),A.k0s())}function He(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting channels..."),A.k0s())}function nt(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function rt(n,l){if(1&n&&(A.j41(0,"td",62),A.DNE(1,fe,2,0,"p",63)(2,Be,2,0,"p",63)(3,He,2,0,"p",63)(4,nt,2,1,"p",63),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",e.numPeers<1&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",e.numPeers>0&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Ft(n,l){if(1&n&&A.nrm(0,"tr",64),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,ya,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function rn(n,l){1&n&&A.nrm(0,"tr",65)}function dt(n,l){1&n&&A.nrm(0,"tr",66)}let Ut=(()=>{var n;class l{constructor(i,o,r,iA,ne,re){this.logger=i,this.store=o,this.rtlEffects=r,this.clnEffects=iA,this.commonService=ne,this.camelCaseWithReplace=re,this.faEye=v.pS3,this.faEyeSlash=v.k6j,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"open_channels",recordsPerPage:B.md,sortBy:"alias",sortOrder:B.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new z.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=B.G,this.selFilter="",this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){window.history.state&&(window.history.state.filterColumn||window.history.state.filterValue)&&(this.selFilterBy=window.history.state.filterColumn||"all",this.selFilter=window.history.state.filterValue||""),this.store.select(tA.GX).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.information=i.information,this.numPeers=i.numPeers,this.totalBalance=i.balance.totalBalance||0,this.logger.info(i)}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=i.activeChannels,this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(i)}),this.store.select(j._c).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.selNode=i})}ngAfterViewInit(){this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onViewRemotePolicy(i){this.store.dispatch((0,VA.ij)({payload:{uiMessage:B.MZ.GET_REMOTE_POLICY,shortChannelID:i.short_channel_id||"",showError:!0}})),this.clnEffects.setLookupCL.pipe((0,bt.s)(1)).subscribe(o=>{if(o.channels&&0===o.channels.length)return!1;let r={};r=o.channels[0].source!==this.information.id?o.channels[0]:o.channels[1];const iA=[[{key:"base_fee_millisatoshi",value:r.base_fee_millisatoshi,title:"Base Fees (mSats)",width:34,type:B.UN.NUMBER},{key:"fee_per_millionth",value:r.fee_per_millionth,title:"Fee/Millionth",width:33,type:B.UN.NUMBER},{key:"delay",value:r.delay,title:"Delay",width:33,type:B.UN.NUMBER}]],ne="Remote policy for Channel: "+(i.alias||i.short_channel_id?i.alias&&i.short_channel_id?i.alias+" ("+i.short_channel_id+")":i.alias?i.alias:i.short_channel_id:i.channel_id);setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Remote Channel Policy",titleMessage:ne,message:iA}}}))},0)})}onChannelUpdate(i){"all"!==i&&"ONCHAIN"===i.state||("all"===i?(this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update All",message:[],titleMessage:"Update fee policy for all channels",flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:B.UN.NUMBER,inputValue:1e3,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:B.UN.NUMBER,inputValue:1,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[4])).subscribe(o=>{o&&this.store.dispatch((0,VA.fy)({payload:{feebase:o[0].inputValue,feeppm:o[1].inputValue,id:"all"}}))})):(this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Update Fee Policy",noBtnText:"Cancel",yesBtnText:"Update",message:[],titleMessage:"Update fee policy for Channel: "+(i.alias||i.short_channel_id?i.alias&&i.short_channel_id?i.alias+" ("+i.short_channel_id+")":i.alias?i.alias:i.short_channel_id:i.channel_id),flgShowInput:!0,getInputs:[{placeholder:"Base Fee (mSats)",inputType:B.UN.NUMBER,inputValue:""===i.fee_base_msat?0:i.fee_base_msat,step:100,width:48},{placeholder:"Fee Rate (mili mSats)",inputType:B.UN.NUMBER,inputValue:i.fee_proportional_millionths,min:1,width:48,hintFunction:this.percentHintFunction}]}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[5])).subscribe(iA=>{iA&&this.store.dispatch((0,VA.fy)({payload:{feebase:iA[0].inputValue,feeppm:iA[1].inputValue,id:i.channel_id}}))})),this.applyFilter())}percentHintFunction(i){return(i/1e4).toString()+"%"}onChannelClose(i){this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Close Channel",titleMessage:"Closing channel: "+(i.alias||i.short_channel_id?i.alias&&i.short_channel_id?i.alias+" ("+i.short_channel_id+")":i.alias?i.alias:i.short_channel_id:i.channel_id),noBtnText:"Cancel",yesBtnText:"Close Channel"}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[6])).subscribe(o=>{o&&this.store.dispatch((0,VA.w0)({payload:{id:i.id||"",channelId:i.channel_id||"",force:!1}}))})}onChannelClick(i,o){this.store.dispatch((0,C.xO)({payload:{data:{channel:i,selNode:this.selNode,showCopy:!0,component:Da}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.peer_connected?"connected":"disconnected")+(i.channel_id?i.channel_id.toLowerCase():"")+(i.short_channel_id?i.short_channel_id.toLowerCase():"")+(i.id?i.id.toLowerCase():"")+(i.alias?i.alias.toLowerCase():"")+(i.private?"private":"public")+(i.state?i.state.toLowerCase():"")+(i.funding_txid?i.funding_txid.toLowerCase():"")+(i.to_them_msat?i.to_them_msat/1e3:"")+(i.to_us_msat?i.to_us_msat/1e3:"")+(i.total_msat?i.total_msat/1e3:"")+(i.their_reserve_msat?i.their_reserve_msat/1e3:"")+(i.our_reserve_msat?i.our_reserve_msat/1e3:"")+(i.spendable_msat?i.spendable_msat/1e3:"");break;case"private":r=i?.private?"private":"public";break;case"connected":r=i?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":r=((i.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":r=((i.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":r=((i.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":r=((i.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":r=((i.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":r=((i.their_reserve_msat||0)/1e3).toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"connected"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadChannelsTable(i){this.channels=new z.I6([...i]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,r)=>{switch(r){case"msatoshi_total":return o.total_msat;case"spendable_msatoshi":return o.spendable_msat;case"msatoshi_to_us":return o.to_us_msat;case"msatoshi_to_them":return o.to_them_msat;case"our_channel_reserve_satoshis":return o.our_reserve_msat;case"their_channel_reserve_satoshis":return o.their_reserve_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Open-channels")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(b.H),A.rXU(kr.i),A.rXU(L.h),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-open-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Channels")}])],decls:69,vars:18,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","short_channel_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","alias"],["matColumnDef","id"],["matColumnDef","channel_id"],["matColumnDef","funding_txid"],["matColumnDef","connected"],["matColumnDef","our_channel_reserve_satoshis"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","their_channel_reserve_satoshis"],["matColumnDef","msatoshi_total"],["matColumnDef","spendable_msatoshi"],["matColumnDef","msatoshi_to_us"],["matColumnDef","msatoshi_to_them"],["matColumnDef","balancedness"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout","row"],["fxFlex","100","fxLayoutAlign","center center",1,"font-size-80"],["mode","determinate",3,"value"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","2",1,"mr-0"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,tc,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.DNE(14,nc,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,xa,1,0,"th",13)(20,Vi,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,rc,2,0,"th",16)(23,ac,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,oc,2,0,"th",16)(26,lc,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,Ya,2,0,"th",16)(29,jr,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,ti,2,0,"th",16)(32,cc,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,gc,2,0,"th",16)(35,Bc,4,4,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,fc,2,0,"th",16)(38,bc,2,1,"td",14),A.bVm(),A.qex(39,22),A.DNE(40,uc,2,0,"th",23)(41,hc,4,4,"td",14),A.bVm(),A.qex(42,24),A.DNE(43,Ec,2,0,"th",23)(44,wc,4,4,"td",14),A.bVm(),A.qex(45,25),A.DNE(46,ba,2,0,"th",23)(47,Cc,4,4,"td",14),A.bVm(),A.qex(48,26),A.DNE(49,BA,2,0,"th",23)(50,a,4,4,"td",14),A.bVm(),A.qex(51,27),A.DNE(52,u,2,0,"th",23)(53,x,4,4,"td",14),A.bVm(),A.qex(54,28),A.DNE(55,T,2,0,"th",23)(56,V,4,4,"td",14),A.bVm(),A.qex(57,29),A.DNE(58,G,2,0,"th",16)(59,TA,6,5,"td",14),A.bVm(),A.qex(60,30),A.DNE(61,XA,8,0,"th",31)(62,se,12,0,"td",32),A.bVm(),A.qex(63,33),A.DNE(64,rt,5,4,"td",34),A.bVm(),A.DNE(65,Ft,1,3,"tr",35)(66,rn,1,0,"tr",36)(67,dt,1,0,"tr",37),A.k0s()(),A.nrm(68,"mat-paginator",38),A.k0s()}2&o&&(A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,Fa).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(),A.Y8G("ngIf",r.apiCallStatus.status===r.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.channels)("ngClass",A.eq3(15,Ac,""!==r.errorMessage)),A.R7$(49),A.Y8G("matFooterRowDef",A.lJ4(17,ec)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,P.aY,UA.fg,yA.rl,yA.nJ,yA.MV,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld,de.QX],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}.mat-column-balancedness[_ngcontent-%COMP%]{padding-left:2rem;min-width:15rem;max-width:30rem}"]}))}return n(),l})();const Ge=["outputIdx"];function gt(n,l){if(1&n&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",15),A.j41(2,"span"),A.EFF(3,"Change output balance "),A.j41(4,"strong"),A.EFF(5),A.nI1(6,"number"),A.k0s(),A.EFF(7," (Sats) may be insufficient for fee bumping, depending on the prevailing fee rates."),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(4),A.JRh(A.bMT(6,2,e.dustOutputValue))}}function yt(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Output Index required."),A.k0s())}function En(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Invalid index value."),A.k0s())}function bn(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fees is required."),A.k0s())}function Kt(n,l){if(1&n&&(A.j41(0,"div",28),A.nrm(1,"fa-icon",15),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(2),A.JRh(e.bumpFeeError)}}let jn=(()=>{var n;class l{set outputIndx(i){i&&(this.outputIdx=i)}constructor(i,o,r,iA,ne,re){this.actions=i,this.dialogRef=o,this.data=r,this.store=iA,this.logger=ne,this.dataService=re,this.faUpRightFromSquare=v.k02,this.newAddress="",this.fees=null,this.outputIndex=null,this.faCopy=v.jPR,this.faInfoCircle=v.iW_,this.faExclamationTriangle=v.zpE,this.bumpFeeError="",this.flgShowDustWarning=!1,this.dustOutputValue=0,this.recommendedFee={fastestFee:0,halfHourFee:0,hourFee:0},this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.bumpFeeChannel=this.data.channel,this.logger.info(this.bumpFeeChannel),this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i,this.logger.info(this.selNode)}),this.dataService.getRecommendedFeeRates().pipe((0,I.Q)(this.unSubs[1])).subscribe({next:i=>{this.recommendedFee=i},error:i=>{this.logger.error(i)}}),this.dataService.getBlockExplorerTransaction(this.bumpFeeChannel.funding_txid).pipe((0,I.Q)(this.unSubs[2])).subscribe({next:i=>{this.outputIndex=0===i.vout.findIndex(o=>o.value===this.bumpFeeChannel.to_us_msat)?1:0,this.dustOutputValue=i.vout[this.outputIndex].value,this.flgShowDustWarning=this.dustOutputValue<1e3},error:i=>{this.logger.error(i)}})}onBumpFee(){if(!this.outputIndex&&0!==this.outputIndex||!this.fees)return!0;this.bumpFeeError="",this.store.dispatch((0,VA.XT)({payload:B.Ld[0]})),this.actions.pipe((0,nA.p)(i=>i.type===B.TC.SET_NEW_ADDRESS_CLN),(0,bt.s)(1)).subscribe(i=>{this.store.dispatch((0,VA.aB)({payload:{destination:i.payload,satoshi:"all",feerate:(1e3*+(this.fees||0)).toString()+"perkb",utxos:[this.bumpFeeChannel.funding_txid+":"+(this.outputIndex||"").toString()]}}))}),this.actions.pipe((0,nA.p)(i=>i.type===B.TC.SET_CHANNEL_TRANSACTION_RES_CLN),(0,bt.s)(1)).subscribe(i=>{this.store.dispatch((0,C.UI)({payload:"Successfully bumped the fee. Use the block explorer to verify transaction."})),this.dialogRef.close()}),this.actions.pipe((0,nA.p)(i=>i.type===B.TC.UPDATE_API_CALL_STATUS_CLN),(0,I.Q)(this.unSubs[3])).subscribe(i=>{i.payload.status===B.wn.ERROR&&("SetChannelTransaction"===i.payload.action||"GenerateNewAddress"===i.payload.action)&&(this.logger.error(i.payload.message),this.bumpFeeError=i.payload.message)})}onExplorerClicked(i){window.open(this.selNode.settings.blockExplorerUrl+"/tx/"+i,"_blank")}resetData(){this.bumpFeeError="",this.fees=null,this.outputIndex=null,this.flgShowDustWarning=!1,this.outputIdx.control.setErrors(null)}onClose(){this.dialogRef.close(!1)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(kA.En),A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(AA.il),A.rXU(aA.gP),A.rXU(Dt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-bump-fee"]],viewQuery:function(o,r){if(1&o&&A.GBs(Ge,5),2&o){let iA;A.mGM(iA=A.lsd())&&(r.outputIndx=iA.first)}},standalone:!1,decls:47,vars:20,consts:[["outputIndx","ngModel"],["fee","ngModel"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxLayout","column",1,"bordered-box","mb-1","p-2"],["fxLayoutAlign","start center",1,"pb-1","word-break"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"alert","alert-info"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","100"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between center"],["fxLayout","column","fxFlex","49"],["autoFocus","","matInput","","type","number","required","","name","outputIndx",3,"ngModelChange","step","min","ngModel"],[4,"ngIf"],["matInput","","type","number","name","fees","required","",3,"ngModelChange","step","min","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","default","",1,"mr-1",3,"click"],["mat-button","","color","primary","type","submit",3,"click"],["fxFlex","100",1,"alert","alert-warn"],["fxFlex","100",1,"alert","alert-danger","mt-1"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),A.EFF(5,"Bump Fee"),A.k0s()(),A.j41(6,"button",7),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",8)(9,"form",9)(10,"div",10)(11,"p",11),A.EFF(12),A.j41(13,"fa-icon",12),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onExplorerClicked(null==r.bumpFeeChannel?null:r.bumpFeeChannel.funding_txid))}),A.k0s()(),A.j41(14,"div",13)(15,"div",14),A.nrm(16,"fa-icon",15),A.j41(17,"span",16)(18,"div"),A.EFF(19,"Fee rates recommended by mempool (sat/vByte):"),A.k0s(),A.j41(20,"div"),A.EFF(21),A.k0s(),A.j41(22,"div"),A.EFF(23),A.k0s(),A.j41(24,"div"),A.EFF(25),A.k0s()()(),A.DNE(26,gt,8,4,"div",17),A.j41(27,"div",18)(28,"mat-form-field",19)(29,"mat-label"),A.EFF(30,"Output Index"),A.k0s(),A.j41(31,"input",20,0),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.outputIndex,re)||(r.outputIndex=re),w.Njj(re)}),A.k0s(),A.DNE(33,yt,2,0,"mat-error",21)(34,En,2,0,"mat-error",21),A.k0s(),A.j41(35,"mat-form-field",19)(36,"mat-label"),A.EFF(37,"Fees (Sats/vByte)"),A.k0s(),A.j41(38,"input",22,1),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.fees,re)||(r.fees=re),w.Njj(re)}),A.k0s(),A.DNE(40,bn,2,0,"mat-error",21),A.k0s()(),A.DNE(41,Kt,4,2,"div",23),A.k0s()(),A.j41(42,"div",24)(43,"button",25),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(44,"Clear"),A.k0s(),A.j41(45,"button",26),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onBumpFee())}),A.EFF(46),A.k0s()()()()()()}if(2&o){const iA=A.sdS(32);A.R7$(12),A.SpI("Bump fee for transaction id: ",null==r.bumpFeeChannel?null:r.bumpFeeChannel.funding_txid," "),A.R7$(),A.Y8G("matTooltip",A.mNQ("Link to "+r.selNode.settings.blockExplorerUrl))("icon",r.faUpRightFromSquare),A.R7$(3),A.Y8G("icon",r.faInfoCircle),A.R7$(5),A.SpI("- High: ",r.recommendedFee.fastestFee||"Unknown"),A.R7$(2),A.SpI("- Medium: ",r.recommendedFee.halfHourFee||"Unknown"),A.R7$(2),A.SpI("- Low: ",r.recommendedFee.hourFee||"Unknown"),A.R7$(),A.Y8G("ngIf",r.flgShowDustWarning),A.R7$(5),A.Y8G("step",1)("min",0),A.R50("ngModel",r.outputIndex),A.R7$(2),A.Y8G("ngIf",null==iA.errors?null:iA.errors.required),A.R7$(),A.Y8G("ngIf",null==iA.errors?null:iA.errors.pendingChannelOutputIndex),A.R7$(4),A.Y8G("step",1)("min",0),A.R50("ngModel",r.fees),A.R7$(2),A.Y8G("ngIf",!r.fees),A.R7$(),A.Y8G("ngIf",""!==r.bumpFeeError),A.R7$(5),A.JRh(""!==r.bumpFeeError?"Retry Bump Fee":"Bump Fee")}},dependencies:[de.bT,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.VZ,hA.vS,hA.cV,P.aY,fA.$z,QA.m2,QA.MM,UA.fg,yA.rl,yA.nJ,yA.TL,Q.DJ,Q.sA,Q.UI,HA.oV,cA.N,J.V,de.QX],encapsulation:2}))}return n(),l})();const $t=()=>["all"],Xn=n=>({"error-border":n}),ni=()=>["no_peer"],yn=n=>({width:n}),gs=n=>({"display-none":n});function ii(n,l){if(1&n&&(A.j41(0,"mat-option",39),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function Ti(n,l){1&n&&A.nrm(0,"mat-progress-bar",40)}function An(n,l){1&n&&A.nrm(0,"th",41)}function en(n,l){if(1&n&&(A.j41(0,"span",45),A.nrm(1,"fa-icon",46),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEyeSlash)}}function tn(n,l){if(1&n&&(A.j41(0,"span",47),A.nrm(1,"fa-icon",46),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("icon",e.faEye)}}function nn(n,l){if(1&n&&(A.j41(0,"td",42),A.DNE(1,en,2,1,"span",43)(2,tn,2,1,"span",44),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",e.private),A.R7$(),A.Y8G("ngIf",!e.private)}}function Bs(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Alias"),A.k0s())}function fs(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,yn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function us(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"ID"),A.k0s())}function hs(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,yn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function Es(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Channel ID"),A.k0s())}function ws(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,yn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.channel_id)}}function Cs(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Funding Transaction ID"),A.k0s())}function ds(n,l){if(1&n&&(A.j41(0,"td",42)(1,"div",49)(2,"span",50),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,yn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.funding_txid)}}function hi(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"Connected"),A.k0s())}function jt(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null!=e&&e.peer_connected?"Connected":"Disconnected")}}function on(n,l){1&n&&(A.j41(0,"th",48),A.EFF(1,"State"),A.k0s())}function dr(n,l){if(1&n&&(A.j41(0,"td",51),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("ngStyle",A.eq3(2,yn,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(),A.JRh(i.CLNChannelPendingState[null==e?null:e.state])}}function Wn(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Local Reserve (Sats)"),A.k0s())}function Qr(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.our_reserve_msat)/1e3,"1.0-0")," ")}}function Qs(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Remote Reserve (Sats)"),A.k0s())}function mr(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.their_reserve_msat)/1e3,"1.0-0")," ")}}function Xs(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Total (Sats)"),A.k0s())}function Mr(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.total_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Zs(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Spendable (Sats)"),A.k0s())}function va(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.spendable_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Ra(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Local Balance (Sats)"),A.k0s())}function si(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.to_us_msat)/1e3,(null==e?null:e.to_us_msat)<1e3?"1.0-4":"1.0-0")," ")}}function pr(n,l){1&n&&(A.j41(0,"th",52),A.EFF(1,"Remote Balance (Sats)"),A.k0s())}function Vc(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",53),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.to_them_msat)/1e3,(null==e?null:e.to_them_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Wc(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",54)(1,"div",55)(2,"mat-select",56),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",57),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Kc(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){w.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return w.Njj(r.onChannelClose(o))}),A.EFF(1,"Close Channel"),A.k0s()}}function Xc(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",57),A.bIt("click",function(){w.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return w.Njj(r.onBumpFee(o))}),A.EFF(1,"Bump Fee"),A.k0s()}}function Zc(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",58)(1,"div",55)(2,"mat-select",59),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",57),A.bIt("click",function(o){const r=w.eBV(e).$implicit,iA=A.XpG();return w.Njj(iA.onChannelClick(r,o))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,Kc,2,0,"mat-option",60)(7,Xc,2,0,"mat-option",60),A.k0s()()()}if(2&n){const e=l.$implicit;A.R7$(6),A.Y8G("ngIf","CHANNELD_SHUTTING_DOWN"===e.state||"CLOSINGD_SIGEXCHANGE"===e.state||!e.peer_connected&&"CHANNELD_NORMAL"===e.state),A.R7$(),A.Y8G("ngIf","CHANNELD_AWAITING_LOCKIN"===e.state)}}function qc(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No peers connected. Add a peer in order to open a channel."),A.k0s())}function $c(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No pending/inactive channel available."),A.k0s())}function A0(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting pending/inactive channels..."),A.k0s())}function e0(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function t0(n,l){if(1&n&&(A.j41(0,"td",61),A.DNE(1,qc,2,0,"p",62)(2,$c,2,0,"p",62)(3,A0,2,0,"p",62)(4,e0,2,1,"p",62),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",e.numPeers<1&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",e.numPeers>0&&(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function n0(n,l){if(1&n&&A.nrm(0,"tr",63),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,gs,e.numPeers>0&&(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function i0(n,l){1&n&&A.nrm(0,"tr",64)}function s0(n,l){1&n&&A.nrm(0,"tr",65)}let r0=(()=>{var n;class l{constructor(i,o,r,iA,ne){this.logger=i,this.store=o,this.rtlEffects=r,this.commonService=iA,this.camelCaseWithReplace=ne,this.faEye=v.pS3,this.faEyeSlash=v.k6j,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"pending_inactive_channels",recordsPerPage:B.md,sortBy:"alias",sortOrder:B.oi.DESCENDING},this.totalBalance=0,this.displayedColumns=[],this.channelsData=[],this.channels=new z.I6([]),this.myChanPolicy={},this.information={},this.numPeers=-1,this.feeRateTypes=B.G,this.selFilter="",this.CLNChannelPendingState=B.Zb,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.selNode=null,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(tA.GX).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.information=i.information,this.numPeers=i.numPeers,this.totalBalance=i.balance.totalBalance||0,this.logger.info(i)}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("private"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.channelsData=[...i.pendingChannels,...i.inactiveChannels],this.channelsData=this.channelsData.sort((o,r)=>this.CLNChannelPendingState[o.state||""]>=this.CLNChannelPendingState[r.state||""]?1:-1),this.channelsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadChannelsTable(this.channelsData),this.logger.info(i)}),this.store.select(j._c).pipe((0,I.Q)(this.unSubs[4])).subscribe(i=>{this.selNode=i})}ngAfterViewInit(){this.channelsData&&this.channelsData.length>0&&this.loadChannelsTable(this.channelsData)}onBumpFee(i){this.store.dispatch((0,C.xO)({payload:{data:{channel:i,component:jn}}}))}onChannelClick(i,o){this.store.dispatch((0,C.xO)({payload:{data:{channel:i,selNode:this.selNode,showCopy:!0,component:Da}}}))}onChannelClose(i){this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Force Close Channel",titleMessage:"Force closing channel: "+(i.alias||i.short_channel_id?i.alias&&i.short_channel_id?i.alias+" ("+i.short_channel_id+")":i.alias?i.alias:i.short_channel_id:i.channel_id),noBtnText:"Cancel",yesBtnText:"Force Close"}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[3])).subscribe(o=>{o&&this.store.dispatch((0,VA.w0)({payload:{id:i.id,channelId:i.channel_id,force:!0}}))})}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.peer_connected?"connected":"disconnected")+(i.channel_id?i.channel_id.toLowerCase():"")+(i.short_channel_id?i.short_channel_id.toLowerCase():"")+(i.id?i.id.toLowerCase():"")+(i.alias?i.alias.toLowerCase():"")+(i.private?"private":"public")+(i.state&&this.CLNChannelPendingState[i.state]?this.CLNChannelPendingState[i.state].toLowerCase():"")+(i.funding_txid?i.funding_txid.toLowerCase():"")+(i.to_us_msat?i.to_us_msat:"")+(i.to_them_msat?i.to_them_msat/1e3:"")+(i.total_msat?i.total_msat/1e3:"")+(i.their_reserve_msat?i.their_reserve_msat/1e3:"")+(i.our_reserve_msat?i.our_reserve_msat/1e3:"")+(i.spendable_msat?i.spendable_msat/1e3:"");break;case"private":r=i?.private?"private":"public";break;case"connected":r=i?.peer_connected?"connected":"disconnected";break;case"msatoshi_total":r=((i.total_msat||0)/1e3).toString()||"";break;case"spendable_msatoshi":r=((i.spendable_msat||0)/1e3).toString()||"";break;case"msatoshi_to_us":r=((i.to_us_msat||0)/1e3).toString()||"";break;case"msatoshi_to_them":r=((i.to_them_msat||0)/1e3).toString()||"";break;case"our_channel_reserve_satoshis":r=((i.our_reserve_msat||0)/1e3).toString()||"";break;case"their_channel_reserve_satoshis":r=((i.their_reserve_msat||0)/1e3).toString()||"";break;case"state":r=i?.state?this.CLNChannelPendingState[i?.state]:"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"connected"===this.selFilterBy||"state"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadChannelsTable(i){this.channels=new z.I6([...i]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,r)=>{switch(r){case"msatoshi_total":return o.total_msat;case"spendable_msatoshi":return o.spendable_msat;case"msatoshi_to_us":return o.to_us_msat;case"msatoshi_to_them":return o.to_them_msat;case"our_channel_reserve_satoshis":return o.our_reserve_msat;case"their_channel_reserve_satoshis":return o.their_reserve_msat;case"state":return this.CLNChannelPendingState[o.state];default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.channels)}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.channels.data,"Pending-inactive-channels")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(b.H),A.rXU(L.h),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-pending-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Channels")}])],decls:66,vars:18,consts:[["table",""],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["mode","indeterminate",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"table-container","w-100",3,"perfectScrollbar"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","private"],["mat-header-cell","","mat-sort-header","","matTooltip","Private",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","id"],["matColumnDef","channel_id"],["matColumnDef","funding_txid"],["matColumnDef","connected"],["matColumnDef","state"],["mat-cell","",3,"ngStyle",4,"matCellDef"],["matColumnDef","our_channel_reserve_satoshis"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","their_channel_reserve_satoshis"],["matColumnDef","msatoshi_total"],["matColumnDef","spendable_msatoshi"],["matColumnDef","msatoshi_to_us"],["matColumnDef","msatoshi_to_them"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","5",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","matTooltip","Private"],["mat-cell",""],["class","mr-1","matTooltip","Private","matTooltipPosition","right",4,"ngIf"],["class","mr-1","matTooltip","Public","matTooltipPosition","right",4,"ngIf"],["matTooltip","Private","matTooltipPosition","right",1,"mr-1"],[3,"icon"],["matTooltip","Public","matTooltipPosition","right",1,"mr-1"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-cell","",3,"ngStyle"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","5"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,ii,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.DNE(14,Ti,1,0,"mat-progress-bar",9),A.j41(15,"div",10)(16,"table",11,0),A.qex(18,12),A.DNE(19,An,1,0,"th",13)(20,nn,3,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,Bs,2,0,"th",16)(23,fs,4,4,"td",14),A.bVm(),A.qex(24,17),A.DNE(25,us,2,0,"th",16)(26,hs,4,4,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,Es,2,0,"th",16)(29,ws,4,4,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,Cs,2,0,"th",16)(32,ds,4,4,"td",14),A.bVm(),A.qex(33,20),A.DNE(34,hi,2,0,"th",16)(35,jt,2,1,"td",14),A.bVm(),A.qex(36,21),A.DNE(37,on,2,0,"th",16)(38,dr,2,4,"td",22),A.bVm(),A.qex(39,23),A.DNE(40,Wn,2,0,"th",24)(41,Qr,4,4,"td",14),A.bVm(),A.qex(42,25),A.DNE(43,Qs,2,0,"th",24)(44,mr,4,4,"td",14),A.bVm(),A.qex(45,26),A.DNE(46,Xs,2,0,"th",24)(47,Mr,4,4,"td",14),A.bVm(),A.qex(48,27),A.DNE(49,Zs,2,0,"th",24)(50,va,4,4,"td",14),A.bVm(),A.qex(51,28),A.DNE(52,Ra,2,0,"th",24)(53,si,4,4,"td",14),A.bVm(),A.qex(54,29),A.DNE(55,pr,2,0,"th",24)(56,Vc,4,4,"td",14),A.bVm(),A.qex(57,30),A.DNE(58,Wc,6,0,"th",31)(59,Zc,8,2,"td",32),A.bVm(),A.qex(60,33),A.DNE(61,t0,5,4,"td",34),A.bVm(),A.DNE(62,n0,1,3,"tr",35)(63,i0,1,0,"tr",36)(64,s0,1,0,"tr",37),A.k0s()(),A.nrm(65,"mat-paginator",38),A.k0s()}2&o&&(A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,$t).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(),A.Y8G("ngIf",r.apiCallStatus.status===r.apiCallStatusEnum.INITIATED),A.R7$(2),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.channels)("ngClass",A.eq3(15,Xn,""!==r.errorMessage)),A.R7$(46),A.Y8G("matFooterRowDef",A.lJ4(17,ni)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,P.aY,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld,de.QX],styles:[".mat-column-private[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();const a0=()=>["all"],o0=n=>({"error-border":n}),l0=()=>["no_peer"],vc=n=>({"mr-0":n}),dc=n=>({width:n}),c0=n=>({"display-none":n});function g0(n,l){if(1&n&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function B0(n,l){1&n&&A.nrm(0,"mat-progress-bar",35)}function f0(n,l){1&n&&A.nrm(0,"th",36)}function u0(n,l){if(1&n&&A.nrm(0,"span",40),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,vc,e.screenSize===e.screenSizeEnum.XS))}}function h0(n,l){if(1&n&&A.nrm(0,"span",41),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,vc,e.screenSize===e.screenSizeEnum.XS))}}function E0(n,l){if(1&n&&(A.j41(0,"td",37),A.DNE(1,u0,1,3,"span",38)(2,h0,1,3,"span",39),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",null==e?null:e.connected),A.R7$(),A.Y8G("ngIf",!(null!=e&&e.connected))}}function w0(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Alias"),A.k0s())}function C0(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,dc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function d0(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"ID"),A.k0s())}function Q0(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,dc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function m0(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Network Address"),A.k0s())}function M0(n,l){1&n&&(A.j41(0,"span"),A.EFF(1,","),A.nrm(2,"br"),A.k0s())}function p0(n,l){if(1&n&&(A.j41(0,"span",44),A.EFF(1),A.DNE(2,M0,3,0,"span",46),A.k0s()),2&n){const e=l.$implicit,i=l.last;A.R7$(),A.JRh(e),A.R7$(),A.Y8G("ngIf",!i)}}function I0(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43),A.DNE(2,p0,3,2,"span",45),A.k0s()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,dc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(),A.Y8G("ngForOf",null==e?null:e.netaddr)}}function D0(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function F0(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){w.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return w.Njj(r.onPeerDetach(o))}),A.EFF(1,"Disconnect"),A.k0s()}}function y0(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",50),A.bIt("click",function(){w.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return w.Njj(r.onConnectPeer(o))}),A.EFF(1,"Reconnect"),A.k0s()}}function x0(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",51)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(o){const r=w.eBV(e).$implicit,iA=A.XpG();return w.Njj(iA.onPeerClick(r,o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",50),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onOpenChannel(o))}),A.EFF(7,"Open Channel"),A.k0s(),A.DNE(8,F0,2,0,"mat-option",52)(9,y0,2,0,"mat-option",52),A.k0s()()()}if(2&n){const e=l.$implicit;A.R7$(8),A.Y8G("ngIf",e.connected),A.R7$(),A.Y8G("ngIf",!e.connected)}}function Y0(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No connected peer."),A.k0s())}function b0(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting peers..."),A.k0s())}function v0(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function R0(n,l){if(1&n&&(A.j41(0,"td",53),A.DNE(1,Y0,2,0,"p",46)(2,b0,2,0,"p",46)(3,v0,2,1,"p",46),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.peers&&e.peers.data)||(null==e.peers||null==e.peers.data?null:e.peers.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function S0(n,l){if(1&n&&A.nrm(0,"tr",54),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,c0,(null==e.peers?null:e.peers.data)&&(null==e.peers||null==e.peers.data?null:e.peers.data.length)>0))}}function N0(n,l){1&n&&A.nrm(0,"tr",55)}function T0(n,l){1&n&&A.nrm(0,"tr",56)}let P0=(()=>{var n;class l{constructor(i,o,r,iA,ne,re){this.logger=i,this.store=o,this.rtlEffects=r,this.actions=iA,this.commonService=ne,this.camelCaseWithReplace=re,this.faUsers=v.gdJ,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"peers",recordsPerPage:B.md,sortBy:"alias",sortOrder:B.oi.DESCENDING},this.newlyAddedPeer="",this.displayedColumns=[],this.peerAddress="",this.peersData=[],this.peers=new z.I6([]),this.utxos=[],this.information={},this.availableBalance=0,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(tA.kQ).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.information=i.information,this.availableBalance=i.balance.totalBalance||0}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("connected"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.os).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.peersData=i.peers||[],this.peersData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadPeersTable(this.peersData),this.logger.info(i)}),this.store.select(tA.Al).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.utxos=this.commonService.sortAscByKey(i.utxos?.filter(o=>"confirmed"===o.status),"value")}),this.actions.pipe((0,I.Q)(this.unSubs[4]),(0,nA.p)(i=>i.type===B.TC.SET_PEERS_CLN)).subscribe(i=>{this.peerAddress=null})}ngAfterViewInit(){this.peersData.length>0&&this.loadPeersTable(this.peersData)}onPeerClick(i,o){this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Peer Information",goToFieldValue:i.id,goToName:"Graph lookup",goToLink:"/cln/graph/lookups",showQRName:"Public Key",showQRField:i.id,message:[[{key:"id",value:i.id,title:"Public Key",width:100}],[{key:"netaddr",value:i.netaddr,title:"Address",width:100}],[{key:"alias",value:i.alias,title:"Alias",width:50},{key:"connected",value:i.connected?"True":"False",title:"Connected",width:50}]]}}}))}onConnectPeer(i){this.store.dispatch((0,C.xO)({payload:{data:{message:{peer:i.id?i:null,information:this.information,balance:this.availableBalance},component:Ur}}}))}onOpenChannel(i){this.store.dispatch((0,C.xO)({payload:{data:{alertTitle:"Open Channel",message:{peer:i,information:this.information,balance:this.availableBalance,utxos:this.utxos},newlyAdded:!1,component:Hr}}}))}onPeerDetach(i){this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Disconnect Peer",titleMessage:"Disconnect peer: "+(i.alias?i.alias:i.id),noBtnText:"Cancel",yesBtnText:"Disconnect"}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[5])).subscribe(r=>{r&&this.store.dispatch((0,VA.ed)({payload:{id:i.id,force:!1}}))})}applyFilter(){this.peers.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.peers.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=JSON.stringify(i).toLowerCase();break;case"connected":r=i?.connected?"connected":"disconnected";break;case"netaddr":r=i.netaddr?i.netaddr.reduce((iA,ne)=>iA+ne," "):"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"connected"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadPeersTable(i){this.peers=new z.I6([...i]),this.peers.sort=this.sort,this.peers.sortingDataAccessor=(o,r)=>{if("netaddr"===r){if(o.netaddr&&o.netaddr[0]){const iA=o.netaddr[0].toString().split(".");return iA[0]?+iA[0]:o.netaddr[0]}return""}return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null},this.peers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.peers.data&&this.peers.data.length>0&&this.commonService.downloadFile(this.peers.data,"Peers")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(b.H),A.rXU(kA.En),A.rXU(L.h),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-peers"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Peers")}])],decls:47,vars:19,consts:[["peersForm","ngForm"],["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["mat-flat-button","","color","primary","type","submit","tabindex","1",3,"click"],["fxLayout","column"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-x-hidden","overflow-y-hidden",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","connected"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Connected",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","id"],["matColumnDef","netaddr"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_peer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Connected"],["mat-cell",""],["class","dot green","matTooltip","Connected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Disconnected","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Connected","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Disconnected","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["class","ellipsis-child",4,"ngFor","ngForOf"],[4,"ngIf"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",2)(1,"form",3,0)(3,"button",4),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onConnectPeer({}))}),A.EFF(4,"Add Peer"),A.k0s()(),A.j41(5,"div",5)(6,"div",6)(7,"div",7),A.nrm(8,"fa-icon",8),A.j41(9,"span",9),A.EFF(10,"Connected Peers"),A.k0s()(),A.j41(11,"div",10)(12,"mat-form-field",11)(13,"mat-label"),A.EFF(14,"Filter By"),A.k0s(),A.j41(15,"mat-select",12),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(16,"perfect-scrollbar"),A.DNE(17,g0,2,2,"mat-option",13),A.k0s()()(),A.j41(18,"mat-form-field",11)(19,"mat-label"),A.EFF(20,"Filter"),A.k0s(),A.j41(21,"input",14),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(22,"div",15),A.DNE(23,B0,1,0,"mat-progress-bar",16),A.j41(24,"table",17,1),A.qex(26,18),A.DNE(27,f0,1,0,"th",19)(28,E0,3,2,"td",20),A.bVm(),A.qex(29,21),A.DNE(30,w0,2,0,"th",22)(31,C0,4,4,"td",20),A.bVm(),A.qex(32,23),A.DNE(33,d0,2,0,"th",22)(34,Q0,4,4,"td",20),A.bVm(),A.qex(35,24),A.DNE(36,m0,2,0,"th",22)(37,I0,3,4,"td",20),A.bVm(),A.qex(38,25),A.DNE(39,D0,6,0,"th",26)(40,x0,10,2,"td",27),A.bVm(),A.qex(41,28),A.DNE(42,R0,4,3,"td",29),A.bVm(),A.DNE(43,S0,1,3,"tr",30)(44,N0,1,0,"tr",31)(45,T0,1,0,"tr",32),A.k0s()(),A.nrm(46,"mat-paginator",33),A.k0s()()}2&o&&(A.R7$(8),A.Y8G("icon",r.faUsers),A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,a0).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",r.apiCallStatus.status===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.peers)("ngClass",A.eq3(16,o0,""!==r.errorMessage)),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(18,l0)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.qT,hA.me,hA.BC,hA.cb,hA.vS,hA.cV,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld],styles:[".mat-column-connected[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();const U0=["queryRoutesForm"],L0=n=>({"overflow-auto error-border":n,"overflow-auto":!0}),Rc=n=>({width:n});function G0(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Destination pubkey is required."),A.k0s())}function z0(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Amount is required."),A.k0s())}function k0(n,l){1&n&&A.nrm(0,"mat-progress-bar",36)}function H0(n,l){1&n&&(A.j41(0,"th",37),A.EFF(1,"ID"),A.k0s())}function j0(n,l){if(1&n&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Rc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.id)}}function O0(n,l){1&n&&(A.j41(0,"th",37),A.EFF(1,"Alias"),A.k0s())}function J0(n,l){if(1&n&&(A.j41(0,"td",38)(1,"div",39)(2,"span",40),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Rc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.alias)}}function _0(n,l){1&n&&(A.j41(0,"th",37),A.EFF(1,"Channel"),A.k0s())}function V0(n,l){if(1&n&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.channel)}}function W0(n,l){1&n&&(A.j41(0,"th",37),A.EFF(1,"Direction"),A.k0s())}function K0(n,l){if(1&n&&(A.j41(0,"td",38),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.direction)}}function X0(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Delay"),A.k0s())}function Z0(n,l){if(1&n&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI("",A.bMT(3,1,null==e?null:e.delay)," ")}}function q0(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Amount (Sats)"),A.k0s())}function $0(n,l){if(1&n&&(A.j41(0,"td",38)(1,"span",42),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,(null==e?null:e.amount_msat)/1e3))}}function Ag(n,l){1&n&&(A.j41(0,"th",43)(1,"div",44),A.EFF(2,"Actions"),A.k0s()())}function eg(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",45)(1,"button",46),A.bIt("click",function(o){const r=w.eBV(e).$implicit,iA=A.XpG();return w.Njj(iA.onHopClick(r,o))}),A.EFF(2,"View Info"),A.k0s()()}}function tg(n,l){1&n&&A.nrm(0,"tr",47)}function ng(n,l){1&n&&A.nrm(0,"tr",48)}let ig=(()=>{var n;class l{constructor(i,o,r){this.store=i,this.clnEffects=o,this.commonService=r,this.PAGE_ID="graph_lookup",this.tableSetting={tableId:"query_routes",recordsPerPage:B.md,sortBy:"id",sortOrder:B.oi.ASCENDING},this.destinationPubkey="",this.amount=null,this.qrHops=new z.I6([]),this.displayedColumns=[],this.flgLoading=[!1],this.faRoute=v.TBz,this.faExclamationTriangle=v.zpE,this.screenSize="",this.screenSizeEnum=B.f7,this.unSubs=[new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions")}),this.clnEffects.setQueryRoutesCL.pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.qrHops.data=[],i.route&&i.route.length&&i.route.length>0?(this.flgLoading[0]=!1,this.qrHops=new z.I6([...i.route])):this.flgLoading[0]="error",this.qrHops.sort=this.sort,this.qrHops.sortingDataAccessor=(o,r)=>o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null})}onQueryRoutes(){if(!this.destinationPubkey||!this.amount)return!0;this.flgLoading[0]=!0,this.store.dispatch((0,VA.T4)({payload:{destPubkey:this.destinationPubkey,amount:1e3*this.amount}}))}resetData(){this.destinationPubkey="",this.amount=null,this.flgLoading[0]=!1,this.qrHops.data=[],this.form.resetForm()}onHopClick(i,o){this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Route Information",message:[[{key:"id",value:i.id,title:"ID",width:100,type:B.UN.STRING}],[{key:"channel",value:i.channel,title:"Channel",width:50,type:B.UN.STRING},{key:"alias",value:i.alias,title:"Peer Alias",width:50,type:B.UN.STRING}],[{key:"amount_msat",value:i.amount_msat,title:"Amount (mSat)",width:34,type:B.UN.NUMBER},{key:"direction",value:i.direction,title:"Direction",width:33,type:B.UN.STRING},{key:"delay",value:i.delay,title:"Delay",width:33,type:B.UN.NUMBER}]]}}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(AA.il),A.rXU(kr.i),A.rXU(L.h))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-query-routes"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(U0,7)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.form=iA.first)}},standalone:!1,decls:55,vars:17,consts:[["queryRoutesForm","ngForm"],["destPubkey","ngModel"],["table",""],["fxLayout","column","fxFlex","100",1,"padding-gap"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",3,"ngSubmit"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxFlex","69","fxLayoutAlign","start end"],["matInput","","name","destinationPubkey","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","column","fxFlex","29","fxLayoutAlign","start end"],["matInput","","name","amount","tabindex","2","type","number","required","",3,"ngModelChange","step","min","ngModel"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","4"],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","mt-2","mb-1"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"table-container","mb-6",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","channel"],["matColumnDef","direction"],["matColumnDef","delay"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","msatoshi"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",3)(1,"form",4,0),A.bIt("ngSubmit",function(){w.eBV(iA);const re=A.sdS(2);return w.Njj(re.form.valid&&r.onQueryRoutes())}),A.j41(3,"div",5),A.nrm(4,"fa-icon",6),A.j41(5,"span"),A.EFF(6,"The actual routing fee on a payment can be different from the fee shown on query routes."),A.k0s()(),A.j41(7,"mat-form-field",7)(8,"mat-label"),A.EFF(9,"Destination Pubkey"),A.k0s(),A.j41(10,"input",8,1),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.destinationPubkey,re)||(r.destinationPubkey=re),w.Njj(re)}),A.k0s(),A.DNE(12,G0,2,0,"mat-error",9),A.k0s(),A.j41(13,"mat-form-field",10)(14,"mat-label"),A.EFF(15,"Amount (Sats)"),A.k0s(),A.j41(16,"input",11),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.amount,re)||(r.amount=re),w.Njj(re)}),A.k0s(),A.DNE(17,z0,2,0,"mat-error",9),A.k0s(),A.j41(18,"div",12)(19,"button",13),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(20,"Clear"),A.k0s(),A.j41(21,"button",14),A.EFF(22,"Query Route"),A.k0s()()(),A.j41(23,"div",15)(24,"div",16),A.nrm(25,"fa-icon",17),A.j41(26,"span",18),A.EFF(27,"Transaction Route"),A.k0s()()(),A.j41(28,"div",19),A.DNE(29,k0,1,0,"mat-progress-bar",20),A.j41(30,"table",21,2),A.qex(32,22),A.DNE(33,H0,2,0,"th",23)(34,j0,4,4,"td",24),A.bVm(),A.qex(35,25),A.DNE(36,O0,2,0,"th",23)(37,J0,4,4,"td",24),A.bVm(),A.qex(38,26),A.DNE(39,_0,2,0,"th",23)(40,V0,2,1,"td",24),A.bVm(),A.qex(41,27),A.DNE(42,W0,2,0,"th",23)(43,K0,2,1,"td",24),A.bVm(),A.qex(44,28),A.DNE(45,X0,2,0,"th",29)(46,Z0,4,3,"td",24),A.bVm(),A.qex(47,30),A.DNE(48,q0,2,0,"th",29)(49,$0,4,3,"td",24),A.bVm(),A.qex(50,31),A.DNE(51,Ag,3,0,"th",32)(52,eg,3,0,"td",33),A.bVm(),A.DNE(53,tg,1,0,"tr",34)(54,ng,1,0,"tr",35),A.k0s()()()}2&o&&(A.R7$(4),A.Y8G("icon",r.faExclamationTriangle),A.R7$(6),A.R50("ngModel",r.destinationPubkey),A.R7$(2),A.Y8G("ngIf",!r.destinationPubkey),A.R7$(4),A.Y8G("step",1e3)("min",0),A.R50("ngModel",r.amount),A.R7$(),A.Y8G("ngIf",!r.amount),A.R7$(8),A.Y8G("icon",r.faRoute),A.R7$(4),A.Y8G("ngIf",!0===r.flgLoading[0]),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.qrHops)("ngClass",A.eq3(15,L0,"error"===r.flgLoading[0])),A.R7$(23),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns))},dependencies:[de.YU,de.bT,de.B3,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.VZ,hA.vS,hA.cV,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,yA.TL,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.KS,z.$R,z.YZ,z.NB,M.Ld,J.V,de.QX],encapsulation:2}))}return n(),l})();function sg(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}let rg=(()=>{var n;class l{constructor(i,o,r){this.dataService=i,this.snackBar=o,this.logger=r,this.message="",this.signedMessage="",this.signature="",this.unSubs=[new g.B,new g.B]}onSign(){if(!this.message||""===this.message)return!0;this.dataService.signMessage(this.message).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.signedMessage=this.message,this.signature=i.zbase})}onMessageChange(){this.signedMessage!==this.message&&(this.signature="")}onCopyField(i){this.snackBar.open("Signature copied."),this.logger.info("Copied Text: "+i)}resetData(){this.message="",this.signature="",this.signedMessage=""}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Dt.u),A.rXU(js.UG),A.rXU(aA.gP))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-sign"]],standalone:!1,decls:22,vars:4,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],[1,"my-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","row","fxLayoutAlign","start center",1,"signature-box","bordered-box","read-only"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","4","rtlClipboard","","type","button",3,"copied","payload"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"form",2,0)(3,"mat-form-field",3)(4,"mat-label"),A.EFF(5,"Message to sign"),A.k0s(),A.j41(6,"textarea",4),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.message,re)||(r.message=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onMessageChange())}),A.k0s(),A.DNE(7,sg,2,0,"mat-error",5),A.k0s(),A.j41(8,"div",6)(9,"button",7),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(10,"Clear Field"),A.k0s(),A.j41(11,"button",8),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onSign())}),A.EFF(12,"Sign"),A.k0s()(),A.nrm(13,"mat-divider",9),A.j41(14,"div",10)(15,"p"),A.EFF(16,"Generated Signature"),A.k0s()(),A.j41(17,"div",11),A.EFF(18),A.k0s(),A.j41(19,"div",12)(20,"button",13),A.bIt("copied",function(re){return w.eBV(iA),w.Njj(r.onCopyField(re))}),A.EFF(21,"Copy Signature"),A.k0s()()()()}2&o&&(A.R7$(6),A.R50("ngModel",r.message),A.R7$(),A.Y8G("ngIf",!r.message),A.R7$(11),A.JRh(r.signature),A.R7$(2),A.Y8G("payload",r.signature))},dependencies:[de.bT,hA.qT,hA.me,hA.BC,hA.cb,hA.YS,hA.vS,hA.cV,fA.$z,UA.fg,yA.rl,yA.nJ,yA.TL,sn.q,Q.DJ,Q.sA,Q.UI,Ji.U,cA.N],styles:[".signature-box[_ngcontent-%COMP%]{padding:1rem}"]}))}return n(),l})();function ag(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Message is required."),A.k0s())}function og(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Signature is required."),A.k0s())}function lg(n,l){1&n&&(A.j41(0,"p",13)(1,"mat-icon",14),A.EFF(2,"close"),A.k0s(),A.EFF(3,"Verification failed, please check message and signature"),A.k0s())}function cg(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Pubkey Used"),A.k0s())}function gg(n,l){if(1&n&&(A.j41(0,"div",20)(1,"p"),A.EFF(2),A.k0s()()),2&n){const e=A.XpG(2);A.R7$(2),A.JRh(null==e.verifyRes?null:e.verifyRes.pubkey)}}function Bg(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",21)(1,"button",22),A.bIt("copied",function(o){w.eBV(e);const r=A.XpG(2);return w.Njj(r.onCopyField(o))}),A.EFF(2,"Copy Pubkey"),A.k0s()()}if(2&n){const e=A.XpG(2);A.R7$(),A.Y8G("payload",null==e.verifyRes?null:e.verifyRes.pubkey)}}function fg(n,l){if(1&n&&(A.j41(0,"div",15),A.nrm(1,"mat-divider",16),A.j41(2,"div",17),A.DNE(3,cg,2,0,"p",6),A.k0s(),A.DNE(4,gg,3,1,"div",18)(5,Bg,3,1,"div",19),A.k0s()),2&n){const e=A.XpG();A.R7$(3),A.Y8G("ngIf",e.verifyRes.verified),A.R7$(),A.Y8G("ngIf",e.verifyRes.verified),A.R7$(),A.Y8G("ngIf",e.verifyRes.verified)}}let ug=(()=>{var n;class l{constructor(i,o,r){this.dataService=i,this.snackBar=o,this.logger=r,this.message="",this.verifiedMessage="",this.signature="",this.verifiedSignature="",this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null},this.unSubs=[new g.B,new g.B]}onVerify(){if(!this.message||""===this.message||!this.signature||""===this.signature)return!0;this.dataService.verifyMessage(this.message,this.signature).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.verifyRes=i,this.showVerifyStatus=!0,this.verifiedMessage=this.message,this.verifiedSignature=this.signature})}onChange(){(this.verifiedMessage!==this.message||this.verifiedSignature!==this.signature)&&(this.showVerifyStatus=!1,this.verifyRes={pubkey:"",verified:null})}resetData(){this.message="",this.signature="",this.verifyRes=null,this.showVerifyStatus=!1}onCopyField(i){this.snackBar.open("Pubkey copied."),this.logger.info("Copied Text: "+i)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(Dt.u),A.rXU(js.UG),A.rXU(aA.gP))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-verify"]],standalone:!1,decls:21,vars:6,consts:[["form","ngForm"],["sign","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["autoFocus","","matInput","","rows","1","required","","tabindex","1","name","message",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","signature","tabindex","2","required","",3,"ngModelChange","keyup","ngModel"],["fxFlex","100","class","color-warn","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","3","type","reset",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","4","type","submit",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap",4,"ngIf"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn"],[1,"mr-1","icon-small"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap"],[1,"my-2"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start","class","bordered-box read-only padding-gap",4,"ngIf"],["fxLayout","row","class","mt-2",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"bordered-box","read-only","padding-gap"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","5","rtlClipboard","","type","button",3,"copied","payload"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",2)(1,"form",3,0)(3,"mat-form-field",4)(4,"mat-label"),A.EFF(5,"Message to verify"),A.k0s(),A.j41(6,"textarea",5),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.message,re)||(r.message=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onChange())}),A.k0s(),A.DNE(7,ag,2,0,"mat-error",6),A.k0s(),A.j41(8,"mat-form-field",4)(9,"mat-label"),A.EFF(10,"Signature provided"),A.k0s(),A.j41(11,"input",7,1),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.signature,re)||(r.signature=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onChange())}),A.k0s(),A.DNE(13,og,2,0,"mat-error",6),A.k0s(),A.DNE(14,lg,4,0,"p",8),A.j41(15,"div",9)(16,"button",10),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(17,"Clear Fields"),A.k0s(),A.j41(18,"button",11),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onVerify())}),A.EFF(19,"Verify"),A.k0s()(),A.DNE(20,fg,6,3,"div",12),A.k0s()()}2&o&&(A.R7$(6),A.R50("ngModel",r.message),A.R7$(),A.Y8G("ngIf",!r.message),A.R7$(4),A.R50("ngModel",r.signature),A.R7$(2),A.Y8G("ngIf",!r.signature),A.R7$(),A.Y8G("ngIf",r.showVerifyStatus&&!r.verifyRes.verified),A.R7$(6),A.Y8G("ngIf",r.showVerifyStatus&&r.verifyRes.verified))},dependencies:[de.bT,hA.qT,hA.me,hA.BC,hA.cb,hA.YS,hA.vS,hA.cV,fA.$z,oA.An,UA.fg,yA.rl,yA.nJ,yA.TL,sn.q,Q.DJ,Q.sA,Q.UI,Ji.U,cA.N],encapsulation:2}))}return n(),l})();const hg=()=>["all"],Eg=()=>["no_event"],Qc=n=>({width:n}),wg=n=>({"display-none":n});function Cg(n,l){if(1&n&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function dg(n,l){if(1&n&&(A.j41(0,"mat-option",14),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function Qg(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",7),A.nrm(1,"div",8),A.j41(2,"div",9)(3,"mat-form-field",10)(4,"mat-label"),A.EFF(5,"Filter By"),A.k0s(),A.j41(6,"mat-select",11),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),w.Njj(o)}),A.bIt("selectionChange",function(){w.eBV(e);const o=A.XpG();return o.selFilter="",w.Njj(o.applyFilter())}),A.j41(7,"perfect-scrollbar"),A.DNE(8,dg,2,2,"mat-option",12),A.k0s()()(),A.j41(9,"mat-form-field",10)(10,"mat-label"),A.EFF(11,"Filter"),A.k0s(),A.j41(12,"input",13),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),w.Njj(o)}),A.bIt("input",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())})("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())}),A.k0s()()()()}if(2&n){const e=A.XpG();A.R7$(6),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(3,hg).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter)}}function mg(n,l){1&n&&A.nrm(0,"mat-progress-bar",39)}function Mg(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Received Time"),A.k0s())}function pg(n,l){if(1&n&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.received_time),"dd/MMM/y HH:mm"))}}function Ig(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Resolved Time"),A.k0s())}function Dg(n,l){if(1&n&&(A.j41(0,"td",41),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.resolved_time),"dd/MMM/y HH:mm"))}}function Fg(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"In Channel ID"),A.k0s())}function yg(n,l){if(1&n&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.in_channel)}}function xg(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"In Channel"),A.k0s())}function Yg(n,l){if(1&n&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Qc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.in_channel_alias)}}function bg(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Out Channel ID"),A.k0s())}function vg(n,l){if(1&n&&(A.j41(0,"td",41),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.out_channel)}}function Rg(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Out Channel"),A.k0s())}function Sg(n,l){if(1&n&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Qc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.out_channel_alias)}}function Ng(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Payment Hash"),A.k0s())}function Tg(n,l){if(1&n&&(A.j41(0,"td",41)(1,"div",42)(2,"span",43),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Qc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function Pg(n,l){1&n&&(A.j41(0,"th",44),A.EFF(1,"Amount In (Sats)"),A.k0s())}function Ug(n,l){if(1&n&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.in_msat)/1e3,(null==e?null:e.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function Lg(n,l){1&n&&(A.j41(0,"th",44),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function Gg(n,l){if(1&n&&(A.j41(0,"td",41)(1,"span",45),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.out_msat)/1e3,(null==e?null:e.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function zg(n,l){1&n&&(A.j41(0,"th",44),A.EFF(1,"Fee (mSat)"),A.k0s())}function kg(n,l){if(1&n&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.fee)," ")}}function Hg(n,l){if(1&n&&(A.j41(0,"span",45),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.fee_msat)," ")}}function jg(n,l){if(1&n&&(A.j41(0,"td",41),A.DNE(1,kg,3,3,"span",46)(2,Hg,3,3,"span",46),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",null==e?null:e.fee),A.R7$(),A.Y8G("ngIf",!(null!=e&&e.fee)&&(null==e?null:e.fee_msat))}}function Og(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Jg(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(o){const r=w.eBV(e).$implicit,iA=A.XpG(2);return w.Njj(iA.onForwardingEventClick(r,o))}),A.EFF(2,"View Info"),A.k0s()()}}function _g(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No forwarding history available."),A.k0s())}function Vg(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting forwarding history..."),A.k0s())}function Wg(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function Kg(n,l){if(1&n&&(A.j41(0,"td",53),A.DNE(1,_g,2,0,"p",54)(2,Vg,2,0,"p",54)(3,Wg,2,1,"p",54),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.forwardingHistoryEvents&&e.forwardingHistoryEvents.data)||(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function Xg(n,l){if(1&n&&A.nrm(0,"tr",55),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,wg,(null==e.forwardingHistoryEvents?null:e.forwardingHistoryEvents.data)&&(null==e.forwardingHistoryEvents||null==e.forwardingHistoryEvents.data?null:e.forwardingHistoryEvents.data.length)>0))}}function Zg(n,l){1&n&&A.nrm(0,"tr",56)}function qg(n,l){1&n&&A.nrm(0,"tr",57)}function $g(n,l){if(1&n&&(A.j41(0,"div",15),A.DNE(1,mg,1,0,"mat-progress-bar",16),A.j41(2,"table",17,0),A.qex(4,18),A.DNE(5,Mg,2,0,"th",19)(6,pg,3,4,"td",20),A.bVm(),A.qex(7,21),A.DNE(8,Ig,2,0,"th",19)(9,Dg,3,4,"td",20),A.bVm(),A.qex(10,22),A.DNE(11,Fg,2,0,"th",19)(12,yg,2,1,"td",20),A.bVm(),A.qex(13,23),A.DNE(14,xg,2,0,"th",19)(15,Yg,4,4,"td",20),A.bVm(),A.qex(16,24),A.DNE(17,bg,2,0,"th",19)(18,vg,2,1,"td",20),A.bVm(),A.qex(19,25),A.DNE(20,Rg,2,0,"th",19)(21,Sg,4,4,"td",20),A.bVm(),A.qex(22,26),A.DNE(23,Ng,2,0,"th",19)(24,Tg,4,4,"td",20),A.bVm(),A.qex(25,27),A.DNE(26,Pg,2,0,"th",28)(27,Ug,4,4,"td",20),A.bVm(),A.qex(28,29),A.DNE(29,Lg,2,0,"th",28)(30,Gg,4,4,"td",20),A.bVm(),A.qex(31,30),A.DNE(32,zg,2,0,"th",28)(33,jg,3,2,"td",20),A.bVm(),A.qex(34,31),A.DNE(35,Og,6,0,"th",32)(36,Jg,3,0,"td",33),A.bVm(),A.qex(37,34),A.DNE(38,Kg,4,3,"td",35),A.bVm(),A.DNE(39,Xg,1,3,"tr",36)(40,Zg,1,0,"tr",37)(41,qg,1,0,"tr",38),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.forwardingHistoryEvents),A.R7$(37),A.Y8G("matFooterRowDef",A.lJ4(7,Eg)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function AB(n,l){if(1&n&&A.nrm(0,"mat-paginator",58),2&n){const e=A.XpG();A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Sc=(()=>{var n;class l{constructor(i,o,r,iA,ne){this.logger=i,this.commonService=o,this.store=r,this.datePipe=iA,this.camelCaseWithReplace=ne,this.pageId="routing",this.tableId="forwarding_history",this.eventsData=[],this.selFilter="",this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.tableSetting={tableId:"forwarding_history",recordsPerPage:B.md,sortBy:"received_time",sortOrder:B.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.forwardingHistoryEvents=new z.I6([]),this.totalForwardedTransactions=0,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(i){i.eventsData&&(this.apiCallStatus={status:B.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=i.eventsData.currentValue,this.successfulEvents=this.eventsData,this.totalForwardedTransactions=this.eventsData.length,this.paginator&&this.paginator.firstPage(),i.eventsData.firstChange||this.loadForwardingEventsTable(this.successfulEvents)),i.selFilter&&!i.selFilter.firstChange&&(this.selFilterBy="all",this.applyFilter())}ngOnInit(){this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting.tableId=this.tableId,this.tableSetting=i.pageSettings.find(o=>o.pageId===this.pageId)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.pageId)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.pipe((0,bt.s)(1)).subscribe(i=>{i.cln.apisCallStatus.FetchForwardingHistoryS.status===B.wn.UN_INITIATED&&!i.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,VA.uK)({payload:{status:B.xk.SETTLED}}))}),this.store.select(tA.Ie).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.eventsData.length<=0&&i.forwardingHistory.listForwards&&(this.totalForwardedTransactions=i.forwardingHistory.totalForwards||0,this.successfulEvents=i.forwardingHistory.listForwards||[],this.successfulEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadForwardingEventsTable(this.successfulEvents),this.logger.info(i))})}ngAfterViewInit(){setTimeout(()=>{this.successfulEvents.length>0&&this.loadForwardingEventsTable(this.successfulEvents)},0)}onForwardingEventClick(i,o){const r=[[{key:"status",value:"Settled",title:"Status",width:50,type:B.UN.STRING},{key:"fee",value:i.fee_msat,title:"Fee (mSats)",width:50,type:B.UN.NUMBER}],[{key:"received_time",value:i.received_time,title:"Received Time",width:50,type:B.UN.DATE_TIME},{key:"resolved_time",value:i.resolved_time,title:"Resolved Time",width:50,type:B.UN.DATE_TIME}],[{key:"in_channel",value:i.in_channel_alias,title:"Inbound Channel",width:50,type:B.UN.STRING},{key:"out_channel",value:i.out_channel_alias,title:"Outbound Channel",width:50,type:B.UN.STRING}],[{key:"in_msatoshi",value:i.in_msat,title:"In (mSats)",width:50,type:B.UN.NUMBER},{key:"out_msatoshi",value:i.out_msat,title:"Out (mSats)",width:50,type:B.UN.NUMBER}]];i.payment_hash&&r.unshift([{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:B.UN.STRING}]),this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Event Information",message:r}}}))}applyFilter(){this.forwardingHistoryEvents&&(this.forwardingHistoryEvents.filter=this.selFilter.trim().toLowerCase())}getLabel(i){const o=this.nodePageDefs[this.pageId][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.forwardingHistoryEvents.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.received_time?this.datePipe.transform(new Date(1e3*i.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(i.resolved_time?this.datePipe.transform(new Date(1e3*i.resolved_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(i.in_channel?i.in_channel.toLowerCase()+" ":"")+(i.out_channel?i.out_channel.toLowerCase()+" ":"")+(i.in_channel_alias?i.in_channel_alias.toLowerCase()+" ":"")+(i.out_channel_alias?i.out_channel_alias.toLowerCase()+" ":"")+(i.in_msat?+i.in_msat/1e3+" ":"")+(i.out_msat?+i.out_msat/1e3+" ":"")+(i.fee_msat?i.fee_msat+" ":"");break;case"received_time":case"resolved_time":r=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":r=(+(i.fee_msat||0)).toString()||"";break;case"in_msatoshi":r=(+(i.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":r=(+(i.out_msat||0)/1e3).toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadForwardingEventsTable(i){this.forwardingHistoryEvents=new z.I6([...i]),this.forwardingHistoryEvents.sort=this.sort,this.forwardingHistoryEvents.sortingDataAccessor=(o,r)=>{switch(r){case"in_msatoshi":return o.in_msat;case"out_msatoshi":return o.out_msat;case"fee":return o.fee_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.forwardingHistoryEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.forwardingHistoryEvents)}onDownloadCSV(){this.forwardingHistoryEvents&&this.forwardingHistoryEvents.data&&this.forwardingHistoryEvents.data.length>0&&this.commonService.downloadFile(this.forwardingHistoryEvents.data,"Forwarding-history")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(de.vh),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-forwarding-history"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},inputs:{pageId:"pageId",tableId:"tableId",eventsData:"eventsData",selFilter:"selFilter"},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Events")}]),A.OA$],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","resolved_time"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","payment_hash"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","out_msatoshi"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(o,r){1&o&&(A.j41(0,"div",1),A.DNE(1,Cg,2,1,"div",2)(2,Qg,13,4,"div",3)(3,$g,42,8,"div",4)(4,AB,1,3,"mat-paginator",5),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",""!==r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,fA.$z,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,H.iy,M.ZF,M.Ld,de.QX,de.vh],encapsulation:2}))}return n(),l})();const eB=()=>["all"],tB=()=>["no_event"],Nc=n=>({width:n}),nB=n=>({"display-none":n});function iB(n,l){if(1&n&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function sB(n,l){if(1&n&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function rB(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",7)(1,"div",8),A.nrm(2,"fa-icon",9),A.j41(3,"span"),A.EFF(4,"Maximum 1,000 failed transactions only."),A.k0s()(),A.j41(5,"div",10),A.nrm(6,"div",11),A.j41(7,"div",12)(8,"mat-form-field",13)(9,"mat-label"),A.EFF(10,"Filter By"),A.k0s(),A.j41(11,"mat-select",14),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),w.Njj(o)}),A.bIt("selectionChange",function(){w.eBV(e);const o=A.XpG();return o.selFilter="",w.Njj(o.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,sB,2,2,"mat-option",15),A.k0s()()(),A.j41(14,"mat-form-field",13)(15,"mat-label"),A.EFF(16,"Filter"),A.k0s(),A.j41(17,"input",16),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),w.Njj(o)}),A.bIt("input",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())})("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())}),A.k0s()()()()()}if(2&n){const e=A.XpG();A.R7$(2),A.Y8G("icon",e.faExclamationTriangle),A.R7$(9),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(4,eB).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter)}}function aB(n,l){1&n&&A.nrm(0,"mat-progress-bar",41)}function oB(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Received Time"),A.k0s())}function lB(n,l){if(1&n&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.received_time),"dd/MMM/y HH:mm"))}}function cB(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Resolved Time"),A.k0s())}function gB(n,l){if(1&n&&(A.j41(0,"td",43),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.resolved_time),"dd/MMM/y HH:mm"))}}function BB(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"In Channel ID"),A.k0s())}function fB(n,l){if(1&n&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.in_channel)}}function uB(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"In Channel"),A.k0s())}function hB(n,l){if(1&n&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Nc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.in_channel_alias)}}function EB(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Out Channel ID"),A.k0s())}function wB(n,l){if(1&n&&(A.j41(0,"td",43),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.out_channel)}}function CB(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Out Channel"),A.k0s())}function dB(n,l){if(1&n&&(A.j41(0,"td",43)(1,"span",44)(2,"span",45),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Nc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.out_channel_alias)}}function QB(n,l){1&n&&(A.j41(0,"th",46),A.EFF(1,"Amount In (Sats)"),A.k0s())}function mB(n,l){if(1&n&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.in_msat)/1e3,(null==e?null:e.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function MB(n,l){1&n&&(A.j41(0,"th",46),A.EFF(1,"Amount Out (Sats)"),A.k0s())}function pB(n,l){if(1&n&&(A.j41(0,"td",43)(1,"span",47),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.out_msat)/1e3,(null==e?null:e.out_msat)<1e3?"1.0-4":"1.0-0")," ")}}function IB(n,l){1&n&&(A.j41(0,"th",46),A.EFF(1,"Fee (mSat)"),A.k0s())}function DB(n,l){if(1&n&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.fee,"1.0-0")," ")}}function FB(n,l){if(1&n&&(A.j41(0,"span",47),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.fee_msat,"1.0-0")," ")}}function yB(n,l){if(1&n&&(A.j41(0,"td",43),A.DNE(1,DB,3,4,"span",48)(2,FB,3,4,"span",48),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",null==e?null:e.fee),A.R7$(),A.Y8G("ngIf",!(null!=e&&e.fee)&&(null==e?null:e.fee_msat))}}function xB(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",49)(1,"div",50)(2,"mat-select",51),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",52),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function YB(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",53)(1,"button",54),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2);return w.Njj(r.onFailedEventClick(o))}),A.EFF(2,"View Info"),A.k0s()()}}function bB(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function vB(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function RB(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function SB(n,l){if(1&n&&(A.j41(0,"td",55),A.DNE(1,bB,2,0,"p",56)(2,vB,2,0,"p",56)(3,RB,2,1,"p",56),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.failedForwardingEvents&&e.failedForwardingEvents.data)||(null==e.failedForwardingEvents||null==e.failedForwardingEvents.data?null:e.failedForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.failedForwardingEvents&&e.failedForwardingEvents.data)||(null==e.failedForwardingEvents||null==e.failedForwardingEvents.data?null:e.failedForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.failedForwardingEvents&&e.failedForwardingEvents.data)||(null==e.failedForwardingEvents||null==e.failedForwardingEvents.data?null:e.failedForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function NB(n,l){if(1&n&&A.nrm(0,"tr",57),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,nB,(null==e.failedForwardingEvents?null:e.failedForwardingEvents.data)&&(null==e.failedForwardingEvents||null==e.failedForwardingEvents.data?null:e.failedForwardingEvents.data.length)>0))}}function TB(n,l){1&n&&A.nrm(0,"tr",58)}function PB(n,l){1&n&&A.nrm(0,"tr",59)}function UB(n,l){if(1&n&&(A.j41(0,"div",18),A.DNE(1,aB,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,oB,2,0,"th",22)(6,lB,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,cB,2,0,"th",22)(9,gB,3,4,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,BB,2,0,"th",22)(12,fB,2,1,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,uB,2,0,"th",22)(15,hB,4,4,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,EB,2,0,"th",22)(18,wB,2,1,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,CB,2,0,"th",22)(21,dB,4,4,"td",23),A.bVm(),A.qex(22,29),A.DNE(23,QB,2,0,"th",30)(24,mB,4,4,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,MB,2,0,"th",30)(27,pB,4,4,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,IB,2,0,"th",30)(30,yB,3,2,"td",23),A.bVm(),A.qex(31,33),A.DNE(32,xB,6,0,"th",34)(33,YB,3,0,"td",35),A.bVm(),A.qex(34,36),A.DNE(35,SB,4,3,"td",37),A.bVm(),A.DNE(36,NB,1,3,"tr",38)(37,TB,1,0,"tr",39)(38,PB,1,0,"tr",40),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.failedForwardingEvents),A.R7$(34),A.Y8G("matFooterRowDef",A.lJ4(7,tB)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function LB(n,l){if(1&n&&A.nrm(0,"mat-paginator",60),2&n){const e=A.XpG();A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let GB=(()=>{var n;class l{constructor(i,o,r,iA,ne){this.logger=i,this.commonService=o,this.store=r,this.datePipe=iA,this.camelCaseWithReplace=ne,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"failed",recordsPerPage:B.md,sortBy:"received_time",sortOrder:B.oi.DESCENDING},this.faExclamationTriangle=v.zpE,this.failedEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedForwardingEvents=new z.I6([]),this.selFilter="",this.totalFailedTransactions=0,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,VA.uK)({payload:{status:B.xk.FAILED}})),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.Dv).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalFailedTransactions=i.failedForwardingHistory.totalForwards||0,this.failedEvents=i.failedForwardingHistory.listForwards||[],this.failedEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadFailedEventsTable(this.failedEvents),this.logger.info(i)})}ngAfterViewInit(){this.failedEvents.length>0&&this.loadFailedEventsTable(this.failedEvents)}onFailedEventClick(i){const o=[[{key:"received_time",value:i.received_time,title:"Received Time",width:50,type:B.UN.DATE_TIME},{key:"resolved_time",value:i.resolved_time,title:"Resolved Time",width:50,type:B.UN.DATE_TIME}],[{key:"in_channel_alias",value:i.in_channel_alias,title:"Inbound Channel",width:50,type:B.UN.STRING},{key:"out_channel_alias",value:i.out_channel_alias,title:"Outbound Channel",width:50,type:B.UN.STRING}],[{key:"in_msatoshi",value:i.in_msat,title:"Amount In (mSats)",width:33,type:B.UN.NUMBER},{key:"out_msatoshi",value:i.out_msat,title:"Amount Out (mSats)",width:33,type:B.UN.NUMBER},{key:"fee",value:i.fee_msat,title:"Fee (mSats)",width:34,type:B.UN.NUMBER}]];i.payment_hash&&o?.unshift([{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:B.UN.STRING}]),this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Failed Event Information",message:o}}}))}applyFilter(){this.failedForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.failedForwardingEvents.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.received_time?this.datePipe.transform(new Date(1e3*i.received_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(i.resolved_time?this.datePipe.transform(new Date(1e3*i.resolved_time),"dd/MMM/y HH:mm")?.toLowerCase()+" ":"")+(i.in_channel?i.in_channel.toLowerCase()+" ":"")+(i.out_channel?i.out_channel.toLowerCase()+" ":"")+(i.in_channel_alias?i.in_channel_alias.toLowerCase()+" ":"")+(i.out_channel_alias?i.out_channel_alias.toLowerCase()+" ":"")+(i.fee_msat?i.fee_msat+" ":"")+(i.in_msat?+i.in_msat/1e3+" ":"")+(i.out_msat?+i.out_msat/1e3+" ":"")+(i.fee_msat?i.fee_msat+" ":"");break;case"received_time":case"resolved_time":r=this.datePipe.transform(new Date(1e3*(i[this.selFilterBy]||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"fee":r=(i.fee_msat||0)?.toString()||"";break;case"in_msatoshi":r=(+(i.in_msat||0)/1e3).toString()||"";break;case"out_msatoshi":r=(+(i.out_msat||0)/1e3).toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadFailedEventsTable(i){this.failedForwardingEvents=new z.I6([...i]),this.failedForwardingEvents.sort=this.sort,this.failedForwardingEvents.sortingDataAccessor=(o,r)=>{switch(r){case"in_msatoshi":return o.in_msat;case"out_msatoshi":return o.out_msat;case"fee":return o.fee_msat;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.failedForwardingEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.failedForwardingEvents)}onDownloadCSV(){this.failedForwardingEvents&&this.failedForwardingEvents.data&&this.failedForwardingEvents.data.length>0&&this.commonService.downloadFile(this.failedForwardingEvents.data,"Failed-transactions")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(de.vh),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-failed-history"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Failed events")}])],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-warn","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","resolved_time"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","out_msatoshi"],["matColumnDef","fee"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","end center",4,"ngIf"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(o,r){1&o&&(A.j41(0,"div",1),A.DNE(1,iB,2,1,"div",2)(2,rB,18,5,"div",3)(3,UB,39,8,"div",4)(4,LB,1,3,"mat-paginator",5),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",""!==r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,H.iy,M.ZF,M.Ld,de.QX,de.vh],encapsulation:2}))}return n(),l})();const zB=["tableIn"],kB=["tableOut"],HB=["paginatorIn"],jB=["paginatorOut"],OB=(n,l)=>({"mt-2":n,"mt-1":l}),JB=()=>["no_incoming_event"],_B=n=>({"mt-2":n}),VB=()=>["no_outgoing_event"],Sa=n=>({width:n}),Tc=n=>({"display-none":n});function WB(n,l){if(1&n&&(A.j41(0,"div",7),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function KB(n,l){1&n&&A.nrm(0,"mat-progress-bar",34)}function XB(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function ZB(n,l){if(1&n&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Sa,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.channel_id)}}function qB(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function $B(n,l){if(1&n&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Sa,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.alias)}}function Af(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function ef(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,e.events))}}function tf(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function nf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.total_amount)/1e3,(null==e?null:e.total_amount)<1e3?"1.0-4":"1.0-0"))}}function sf(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function rf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.total_fee)/1e3,(null==e?null:e.total_fee)<1e3?"1.0-4":"1.0-0"))}}function af(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No incoming routing peer available."),A.k0s())}function of(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting incoming routing peers..."),A.k0s())}function lf(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function cf(n,l){if(1&n&&(A.j41(0,"td",41),A.DNE(1,af,2,0,"p",42)(2,of,2,0,"p",42)(3,lf,2,1,"p",42),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersIncoming&&e.routingPeersIncoming.data)||(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function gf(n,l){if(1&n&&A.nrm(0,"tr",43),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Tc,(null==e.routingPeersIncoming?null:e.routingPeersIncoming.data)&&(null==e.routingPeersIncoming||null==e.routingPeersIncoming.data?null:e.routingPeersIncoming.data.length)>0))}}function Bf(n,l){1&n&&A.nrm(0,"tr",44)}function ff(n,l){1&n&&A.nrm(0,"tr",45)}function uf(n,l){1&n&&A.nrm(0,"mat-progress-bar",34)}function hf(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Channel ID"),A.k0s())}function Ef(n,l){if(1&n&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Sa,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.channel_id)}}function wf(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Peer Alias"),A.k0s())}function Cf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"div",37)(2,"span",38),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,Sa,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.alias)}}function df(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Events"),A.k0s())}function Qf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.bMT(3,1,e.events))}}function mf(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Amount (Sats)"),A.k0s())}function Mf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.total_amount)/1e3,(null==e?null:e.total_amount)<1e3?"1.0-4":"1.0-0"))}}function pf(n,l){1&n&&(A.j41(0,"th",39),A.EFF(1,"Fee (Sats)"),A.k0s())}function If(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(A.i5U(3,1,(null==e?null:e.total_fee)/1e3,(null==e?null:e.total_fee)<1e3?"1.0-4":"1.0-0"))}}function Df(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No outgoing routing peer available."),A.k0s())}function Ff(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting outgoing routing peers..."),A.k0s())}function yf(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function xf(n,l){if(1&n&&(A.j41(0,"td",41),A.DNE(1,Df,2,0,"p",42)(2,Ff,2,0,"p",42)(3,yf,2,1,"p",42),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.routingPeersOutgoing&&e.routingPeersOutgoing.data)||(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function Yf(n,l){if(1&n&&A.nrm(0,"tr",43),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,Tc,(null==e.routingPeersOutgoing?null:e.routingPeersOutgoing.data)&&(null==e.routingPeersOutgoing||null==e.routingPeersOutgoing.data?null:e.routingPeersOutgoing.data.length)>0))}}function bf(n,l){1&n&&A.nrm(0,"tr",44)}function vf(n,l){1&n&&A.nrm(0,"tr",45)}function Rf(n,l){if(1&n&&(A.j41(0,"div",8)(1,"div",9)(2,"div",10)(3,"div",11),A.EFF(4,"Incoming"),A.k0s(),A.nrm(5,"div",12),A.k0s(),A.j41(6,"div",13),A.DNE(7,KB,1,0,"mat-progress-bar",14),A.j41(8,"table",15,0),A.qex(10,16),A.DNE(11,XB,2,0,"th",17)(12,ZB,4,4,"td",18),A.bVm(),A.qex(13,19),A.DNE(14,qB,2,0,"th",17)(15,$B,4,4,"td",18),A.bVm(),A.qex(16,20),A.DNE(17,Af,2,0,"th",21)(18,ef,4,3,"td",18),A.bVm(),A.qex(19,22),A.DNE(20,tf,2,0,"th",21)(21,nf,4,4,"td",18),A.bVm(),A.qex(22,23),A.DNE(23,sf,2,0,"th",21)(24,rf,4,4,"td",18),A.bVm(),A.qex(25,24),A.DNE(26,cf,4,3,"td",25),A.bVm(),A.DNE(27,gf,1,3,"tr",26)(28,Bf,1,0,"tr",27)(29,ff,1,0,"tr",28),A.k0s()(),A.nrm(30,"mat-paginator",29,1),A.k0s(),A.j41(32,"div",30)(33,"div",10)(34,"div",11),A.EFF(35,"Outgoing"),A.k0s(),A.nrm(36,"div",12),A.k0s(),A.j41(37,"div",31),A.DNE(38,uf,1,0,"mat-progress-bar",14),A.j41(39,"table",32,2),A.qex(41,16),A.DNE(42,hf,2,0,"th",17)(43,Ef,4,4,"td",18),A.bVm(),A.qex(44,19),A.DNE(45,wf,2,0,"th",17)(46,Cf,4,4,"td",18),A.bVm(),A.qex(47,20),A.DNE(48,df,2,0,"th",21)(49,Qf,4,3,"td",18),A.bVm(),A.qex(50,22),A.DNE(51,mf,2,0,"th",21)(52,Mf,4,4,"td",18),A.bVm(),A.qex(53,23),A.DNE(54,pf,2,0,"th",21)(55,If,4,4,"td",18),A.bVm(),A.qex(56,33),A.DNE(57,xf,4,3,"td",25),A.bVm(),A.DNE(58,Yf,1,3,"tr",26)(59,bf,1,0,"tr",27)(60,vf,1,0,"tr",28),A.k0s(),A.nrm(61,"mat-paginator",29,3),A.k0s()()()),2&n){const e=A.XpG();A.R7$(2),A.Y8G("ngClass",A.l_i(22,OB,e.screenSize===e.screenSizeEnum.XS,e.screenSize===e.screenSizeEnum.SM)),A.R7$(5),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersIncoming),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(25,JB)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns),A.R7$(),A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS),A.R7$(3),A.Y8G("ngClass",A.eq3(26,_B,e.screenSize!==e.screenSizeEnum.LG)),A.R7$(5),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.routingPeersOutgoing),A.R7$(19),A.Y8G("matFooterRowDef",A.lJ4(28,VB)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns),A.R7$(),A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let Sf=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.commonService=o,this.store=r,this.camelCaseWithReplace=iA,this.eventsData=[],this.selFilter="",this.nodePageDefs=B.Jd,this.selFilterByIn="all",this.selFilterByOut="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"routing_peers",recordsPerPage:B.md,sortBy:"total_fee",sortOrder:B.oi.DESCENDING},this.successfulEvents=[],this.displayedColumns=[],this.routingPeersIncoming=new z.I6([]),this.routingPeersOutgoing=new z.I6([]),this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.filterIn="",this.filterOut="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(i){i.eventsData&&(this.apiCallStatus={status:B.wn.COMPLETED,action:"FetchForwardingHistory"},this.eventsData=i.eventsData.currentValue,this.successfulEvents=this.eventsData,i.eventsData.firstChange||this.loadRoutingPeersTable(this.successfulEvents))}ngOnInit(){this.store.pipe((0,bt.s)(1)).subscribe(i=>{i.cln.apisCallStatus.FetchForwardingHistoryS.status===B.wn.UN_INITIATED&&!i.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,VA.uK)({payload:{status:B.xk.SETTLED}}))}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/(2*this.displayedColumns.length)/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.Ie).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.eventsData.length<=0&&(this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.successfulEvents=i.forwardingHistory.listForwards||[],this.successfulEvents.length>0&&this.sortIn&&this.paginatorIn&&this.sortOut&&this.paginatorOut&&this.loadRoutingPeersTable(this.successfulEvents),this.logger.info(i))})}ngAfterViewInit(){this.successfulEvents.length>0&&this.loadRoutingPeersTable(this.successfulEvents)}applyIncomingFilter(){this.routingPeersIncoming.filter=this.filterIn.toLowerCase()}applyOutgoingFilter(){this.routingPeersOutgoing.filter=this.filterOut.toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):"all"}setFilterPredicate(){this.routingPeersIncoming.filterPredicate=(i,o)=>JSON.stringify(i).toLowerCase().includes(o),this.routingPeersOutgoing.filterPredicate=(i,o)=>JSON.stringify(i).toLowerCase().includes(o)}loadRoutingPeersTable(i){if(i.length>0){const o=this.groupRoutingPeers(i);this.routingPeersIncoming=new z.I6(o[0]),this.routingPeersIncoming.sort=this.sortIn,this.routingPeersIncoming.paginator=this.paginatorIn,this.logger.info(this.routingPeersIncoming),this.routingPeersOutgoing=new z.I6(o[1]),this.routingPeersOutgoing.sort=this.sortOut,this.routingPeersOutgoing.paginator=this.paginatorOut,this.logger.info(this.routingPeersOutgoing)}else this.routingPeersIncoming=new z.I6([]),this.routingPeersOutgoing=new z.I6([]);this.setFilterPredicate(),this.applyIncomingFilter(),this.applyOutgoingFilter(),this.logger.info(this.routingPeersIncoming),this.logger.info(this.routingPeersOutgoing)}groupRoutingPeers(i){const o=[],r=[];return i.forEach(iA=>{const ne=o?.find(ln=>ln.channel_id===iA.in_channel),re=r?.find(ln=>ln.channel_id===iA.out_channel);ne?(ne.events++,ne.total_amount=+ne.total_amount+ +(iA.in_msat||0),ne.total_fee=+(iA.in_msat||0)-+(iA.out_msat||0)+ +ne.total_fee):o.push({channel_id:iA.in_channel,alias:iA.in_channel_alias,events:1,total_amount:+(iA.in_msat||0),total_fee:+(iA.in_msat||0)-+(iA.out_msat||0)}),re?(re.events++,re.total_amount=+re.total_amount+ +(iA.out_msat||0),re.total_fee=+(iA.in_msat||0)-+(iA.out_msat||0)+ +re.total_fee):r.push({channel_id:iA.out_channel,alias:iA.out_channel_alias,events:1,total_amount:+(iA.out_msat||0),total_fee:+(iA.in_msat||0)-+(iA.out_msat||0)})}),[this.commonService.sortDescByKey(o,"total_fee"),this.commonService.sortDescByKey(r,"total_fee")]}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-routing-peers"]],viewQuery:function(o,r){if(1&o&&(A.GBs(zB,5,pA.B4),A.GBs(kB,5,pA.B4),A.GBs(HB,5),A.GBs(jB,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sortIn=iA.first),A.mGM(iA=A.lsd())&&(r.sortOut=iA.first),A.mGM(iA=A.lsd())&&(r.paginatorIn=iA.first),A.mGM(iA=A.lsd())&&(r.paginatorOut=iA.first)}},inputs:{eventsData:"eventsData",selFilter:"selFilter"},standalone:!1,features:[A.Jv_([{provide:H.xX,useValue:(0,B.on)("Peers")}]),A.OA$],decls:3,vars:2,consts:[["tableIn",""],["paginatorIn",""],["tableOut",""],["paginatorOut",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch","class","page-sub-title-container mt-2",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayout.gt-md","row","fxFlex","100","fxLayoutAlign","space-between stretch",1,"page-sub-title-container","mt-2"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","w-100",3,"ngClass"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",1,"overflow-auto","incoming-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","channel_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","alias"],["matColumnDef","events"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","total_amount"],["matColumnDef","total_fee"],["matColumnDef","no_incoming_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],["fxLayout","column","fxFlex","49","fxLayoutAlign","end stretch"],["fxLayout","column","fxLayoutAlign","start end","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mat-table","","matSort","",1,"overflow-auto","outgoing-table",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","no_outgoing_event"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){1&o&&(A.j41(0,"div",4),A.DNE(1,WB,2,1,"div",5)(2,Rf,63,29,"div",6),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",""!==r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage))},dependencies:[de.YU,de.bT,de.B3,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,H.iy,M.Ld,de.QX],encapsulation:2}))}return n(),l})();const Nf=()=>["all"],Tf=n=>({"error-border":n}),Pf=()=>["no_channel"],Pc=n=>({width:n}),Uf=n=>({"display-none":n});function Lf(n,l){if(1&n&&(A.j41(0,"mat-option",33),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function Gf(n,l){1&n&&A.nrm(0,"mat-progress-bar",34)}function zf(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Amount (Sats)"),A.k0s())}function kf(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,(null==e?null:e.amount_msat)/1e3,"1.0-2")," ")}}function Hf(n,l){if(1&n&&(A.qex(0),A.DNE(1,kf,3,4,"span",39),A.bVm()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function jf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,Hf,2,1,"ng-container",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" Active HTLCs: ",null==e||null==e.htlcs?null:e.htlcs.length," "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Of(n,l){1&n&&(A.j41(0,"th",35),A.EFF(1,"Alias/Direction"),A.k0s())}function Jf(n,l){if(1&n&&(A.j41(0,"span",37),A.EFF(1),A.nI1(2,"titlecase"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.direction)," ")}}function _f(n,l){if(1&n&&(A.qex(0),A.DNE(1,Jf,3,3,"span",41),A.bVm()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function Vf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",37),A.EFF(2),A.k0s(),A.DNE(3,_f,2,1,"ng-container",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(null==e?null:e.alias),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Wf(n,l){1&n&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"HTLC ID"),A.k0s()())}function Kf(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.bMT(2,1,null==e?null:e.id)," ")}}function Xf(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,Kf,3,3,"span",39),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function Zf(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Xf,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(null==e?null:e.id),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function qf(n,l){1&n&&(A.j41(0,"th",42)(1,"span",40),A.EFF(2,"Expiry"),A.k0s()())}function $f(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.expiry,"1.0-0")," ")}}function Au(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,$f,3,4,"span",39),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function eu(n,l){if(1&n&&(A.j41(0,"td",36)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,Au,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function tu(n,l){1&n&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"State"),A.k0s()())}function nu(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.nI1(2,"camelcaseWithReplace"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",A.i5U(2,1,null==e?null:e.state,"_")," ")}}function iu(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,nu,3,4,"span",39),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function su(n,l){if(1&n&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,iu,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function ru(n,l){1&n&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Local Trimmed"),A.k0s()())}function au(n,l){if(1&n&&(A.j41(0,"span",40),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",null!=e&&e.local_trimmed?"Yes":"No"," ")}}function ou(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,au,2,1,"span",39),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function lu(n,l){if(1&n&&(A.j41(0,"td",44)(1,"span",40),A.EFF(2),A.k0s(),A.DNE(3,ou,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function cu(n,l){1&n&&(A.j41(0,"th",43)(1,"span",40),A.EFF(2,"Payment Hash"),A.k0s()())}function gu(n,l){if(1&n&&(A.j41(0,"span",48)(1,"span",49),A.EFF(2),A.k0s()()),2&n){const e=l.$implicit,i=A.XpG(3);A.Y8G("ngStyle",A.eq3(2,Pc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.payment_hash)}}function Bu(n,l){if(1&n&&(A.j41(0,"span"),A.DNE(1,gu,3,4,"span",47),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function fu(n,l){if(1&n&&(A.j41(0,"td",44)(1,"span",45)(2,"span",46),A.EFF(3),A.k0s()(),A.DNE(4,Bu,2,1,"span",38),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,Pc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(" "),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function uu(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",50)(1,"div",51)(2,"mat-select",52),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",53),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function hu(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",58)(1,"button",59),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2).$implicit,iA=A.XpG();return w.Njj(iA.onHTLCClick(o,r))}),A.EFF(2),A.k0s()()}if(2&n){const e=l.index;A.R7$(2),A.SpI("View ",e+1)}}function Eu(n,l){if(1&n&&(A.j41(0,"div"),A.DNE(1,hu,3,1,"div",57),A.k0s()),2&n){const e=A.XpG().$implicit;A.R7$(),A.Y8G("ngForOf",null==e?null:e.htlcs)}}function wu(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",54)(1,"span",55)(2,"button",56),A.bIt("click",function(){const o=w.eBV(e).$implicit;return w.Njj(o.is_expanded=!o.is_expanded)}),A.EFF(3),A.k0s()(),A.DNE(4,Eu,2,1,"div",38),A.k0s()}if(2&n){const e=l.$implicit;A.R7$(3),A.JRh(e.is_expanded?"Hide":"Show"),A.R7$(),A.Y8G("ngIf",e.is_expanded)}}function Cu(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No active htlc available."),A.k0s())}function du(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting active htlcs..."),A.k0s())}function Qu(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function mu(n,l){if(1&n&&(A.j41(0,"td",60),A.DNE(1,Cu,2,0,"p",38)(2,du,2,0,"p",38)(3,Qu,2,1,"p",38),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.channels&&e.channels.data)||(null==e.channels||null==e.channels.data?null:e.channels.data.length)<1)&&e.apiCallStatus.status===e.apiCallStatusEnum.ERROR)}}function Mu(n,l){if(1&n&&A.nrm(0,"tr",61),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,Uf,(null==e.channels?null:e.channels.data)&&(null==e.channels||null==e.channels.data?null:e.channels.data.length)>0))}}function pu(n,l){1&n&&A.nrm(0,"tr",62)}function Iu(n,l){1&n&&A.nrm(0,"tr",63)}let Du=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.commonService=o,this.store=r,this.camelCaseWithReplace=iA,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="peers_channels",this.tableSetting={tableId:"active_HTLCs",recordsPerPage:B.md,sortBy:"expiry",sortOrder:B.oi.DESCENDING},this.channels=new z.I6([]),this.channelsJSONArr=[],this.displayedColumns=[],this.htlcColumns=[],this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.BM).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"");const o=[...i.activeChannels,...i.pendingChannels,...i.inactiveChannels];this.channelsJSONArr=o?.filter(r=>r.htlcs&&r.htlcs.length>0)||[],this.channelsJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadHTLCsTable(this.channelsJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.channelsJSONArr.length>0&&this.loadHTLCsTable(this.channelsJSONArr)}onHTLCClick(i,o){const r=[[{key:"alias",value:o.alias,title:"Alias",width:100,type:B.UN.STRING}],[{key:"amount_msat",value:(i.amount_msat||0)/1e3,title:"Amount (Sats)",width:50,type:B.UN.NUMBER},{key:"direction",value:this.commonService.titleCase(i.direction||""),title:"Direction",width:50,type:B.UN.STRING}],[{key:"expiry",value:i.expiry,title:"Expiry",width:50,type:B.UN.NUMBER},{key:"state",value:this.camelCaseWithReplace.transform(i.state||"","_"),title:"State",width:50,type:B.UN.STRING}],[{key:"id",value:i.id,title:"HTLC ID",width:50,type:B.UN.STRING},{key:"local_trimmed",value:i.local_trimmed,title:"Local Trimmed",width:50,type:B.UN.BOOLEAN}],[{key:"payment_hash",value:i.payment_hash,title:"Payment Hash",width:100,type:B.UN.STRING}]];this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"HTLC Information",message:r}}}))}applyFilter(){this.channels.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):this.commonService.titleCase(i)}setFilterPredicate(){this.channels.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.alias?i.alias.toLowerCase():"")+i.htlcs?.map(iA=>JSON.stringify(iA).toLowerCase()+(iA.local_trimmed?" yes ":" no "));break;case"direction":r=i.htlcs?.map(iA=>iA.direction+" ").toString()||"";break;case"id":r=i.htlcs?.map(iA=>iA.id+" ").toString()||"";break;case"expiry":r=i.htlcs?.map(iA=>iA.expiry+" ").toString()||"";break;case"state":r=i.htlcs?.map(iA=>this.camelCaseWithReplace.transform(iA.state||"","_").toLowerCase()+" ").toString()||"";break;case"payment_hash":r=i.htlcs?.map(iA=>iA.payment_hash+" ").toString()||"";break;case"local_trimmed":r=i.htlcs?.map(iA=>iA.local_trimmed?" yes ":" no ").toString()||"";break;case"amount_msat":r=i.htlcs?.map(iA=>(iA.amount_msat||0)/1e3)?.toString()||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadHTLCsTable(i){this.channels=new z.I6(i?[...i]:[]),this.channels.sort=this.sort,this.channels.sortingDataAccessor=(o,r)=>{switch(r){case"amount_msat":return this.commonService.sortByKey(o.htlcs,r,"number",this.sort?.direction),o.htlcs&&o.htlcs.length?o.htlcs.length:null;case"id":case"payment_hash":case"state":return this.commonService.sortByKey(o.htlcs,r,"string",this.sort?.direction),o;case"direction":return this.commonService.sortByKey(o.htlcs,r,"string",this.sort?.direction),o.alias?o.alias:o.id?o.id:null;case"expiry":return this.commonService.sortByKey(o.htlcs,r,"number",this.sort?.direction),o;case"local_trimmed":return this.commonService.sortByKey(o.htlcs,r,"boolean",this.sort?.direction),o;default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.channels.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.channels.data&&this.channels.data.length>0&&this.commonService.downloadFile(this.flattenHTLCs(),"ActiveHTLCs")}flattenHTLCs(){return JSON.parse(JSON.stringify(this.channels.data))?.reduce((r,iA)=>r.concat(iA.htlcs?iA.htlcs:iA),[])}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-channel-active-htlcs-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("HTLCs")}])],decls:48,vars:18,consts:[["table",""],["fxLayout","column",1,"padding-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","amount_msat"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","direction"],["matColumnDef","id"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","expiry"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","class","pl-3 htlc-row-span",4,"matHeaderCellDef"],["mat-cell","","class","pl-3",4,"matCellDef"],["matColumnDef","local_trimmed"],["matColumnDef","payment_hash"],["matColumnDef","actions"],["mat-header-cell","","class","px-2",4,"matHeaderCellDef"],["mat-cell","","class","px-2","fxLayout","column","fxLayoutAlign","center end",4,"matCellDef"],["matColumnDef","no_channel"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayoutAlign","start center",1,"htlc-row-span"],[4,"ngIf"],["fxLayoutAlign","end center","class","htlc-row-span",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-row-span"],["fxLayoutAlign","start center","class","htlc-row-span",4,"ngFor","ngForOf"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",1,"pl-3","htlc-row-span"],["mat-cell","",1,"pl-3"],["fxLayout","row",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],["fxLayoutAlign","end center",1,"ellipsis-child"],["fxLayoutAlign","start center","class","ellipsis-parent htlc-row-span",3,"ngStyle",4,"ngFor","ngForOf"],["fxLayoutAlign","start center",1,"ellipsis-parent","htlc-row-span",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","",1,"px-2"],["fxLayoutAlign","end center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayout","column","fxLayoutAlign","center end",1,"px-2"],["fxLayoutAlign","end center",1,"htlc-group-head"],["mat-flat-button","","color","primary","type","button","tabindex","5",1,"btn-htlc-expand",3,"click"],["class","htlc-group-details","fxLayoutAlign","end center",4,"ngFor","ngForOf"],["fxLayoutAlign","end center",1,"htlc-group-details"],["mat-stroked-button","","color","primary","type","button","tabindex","6",1,"btn-htlc-info",3,"click"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2),A.nrm(2,"div",3),A.j41(3,"div",4)(4,"mat-form-field",5)(5,"mat-label"),A.EFF(6,"Filter By"),A.k0s(),A.j41(7,"mat-select",6),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(8,"perfect-scrollbar"),A.DNE(9,Lf,2,2,"mat-option",7),A.k0s()()(),A.j41(10,"mat-form-field",5)(11,"mat-label"),A.EFF(12,"Filter"),A.k0s(),A.j41(13,"input",8),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(14,"div",9),A.DNE(15,Gf,1,0,"mat-progress-bar",10),A.j41(16,"table",11,0),A.qex(18,12),A.DNE(19,zf,2,0,"th",13)(20,jf,4,2,"td",14),A.bVm(),A.qex(21,15),A.DNE(22,Of,2,0,"th",13)(23,Vf,4,2,"td",14),A.bVm(),A.qex(24,16),A.DNE(25,Wf,3,0,"th",17)(26,Zf,4,2,"td",14),A.bVm(),A.qex(27,18),A.DNE(28,qf,3,0,"th",17)(29,eu,4,2,"td",14),A.bVm(),A.qex(30,19),A.DNE(31,tu,3,0,"th",20)(32,su,4,2,"td",21),A.bVm(),A.qex(33,22),A.DNE(34,ru,3,0,"th",20)(35,lu,4,2,"td",21),A.bVm(),A.qex(36,23),A.DNE(37,cu,3,0,"th",20)(38,fu,5,5,"td",21),A.bVm(),A.qex(39,24),A.DNE(40,uu,6,0,"th",25)(41,wu,5,2,"td",26),A.bVm(),A.qex(42,27),A.DNE(43,mu,4,3,"td",28),A.bVm(),A.DNE(44,Mu,1,3,"tr",29)(45,pu,1,0,"tr",30)(46,Iu,1,0,"tr",31),A.k0s()(),A.nrm(47,"mat-paginator",32),A.k0s()}2&o&&(A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(14,Nf).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",r.apiCallStatus.status===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.channels)("ngClass",A.eq3(15,Tf,""!==r.errorMessage)),A.R7$(28),A.Y8G("matFooterRowDef",A.lJ4(17,Pf)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,fA.$z,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,H.iy,M.ZF,M.Ld,de.QX,de.PV,R.VD],styles:[".mat-column-amount_msat[_ngcontent-%COMP%] .htlc-row-span[_ngcontent-%COMP%]:not(:first-of-type){padding-left:2rem;padding-right:2rem}.htlc-row-span[_ngcontent-%COMP%]{min-height:3rem}.htlc-row-span.ellipsis-parent[_ngcontent-%COMP%]{display:flex;align-items:center}.mat-column-actions[_ngcontent-%COMP%] .htlc-group-head[_ngcontent-%COMP%], .mat-column-actions[_ngcontent-%COMP%] .htlc-group-details[_ngcontent-%COMP%]{min-height:3rem}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-expand[_ngcontent-%COMP%]{min-width:8rem;width:8rem;margin:0}.mat-column-actions[_ngcontent-%COMP%] .btn-htlc-info[_ngcontent-%COMP%]{min-width:7rem;margin:0}"]}))}return n(),l})();function Fu(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",8),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let yu=(()=>{var n;class l{constructor(i){this.router=i,this.faChartBar=v.$Fj,this.links=[{link:"routingreport",name:"Routing"},{link:"transactions",name:"Transactions"}],this.activeLink=this.links[0].link,this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(o=>o instanceof xt.gx)).subscribe({next:o=>{const r=this.links.find(iA=>o.urlAfterRedirects.includes(iA.link));this.activeLink=r?r.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-reports"]],standalone:!1,decls:12,vars:3,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Reports"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,Fu,2,4,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0)(11,"router-outlet"),A.k0s()()()),2&o){const iA=A.sdS(10);A.R7$(),A.Y8G("icon",r.faChartBar),A.R7$(6),A.Y8G("tabPanel",iA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[de.Sq,P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,RA.Bu,RA.hQ,RA.Ql,xt.n3,Sn.Wk],encapsulation:2}))}return n(),l})();var Uc=We(1001),Lc=We(1993),Gc=We(4655);function xu(n,l){1&n&&(A.j41(0,"div",15),A.nrm(1,"mat-progress-bar",16),A.j41(2,"p"),A.EFF(3,"Getting Forwarding History..."),A.k0s()())}function Yu(n,l){if(1&n&&(A.j41(0,"div",17),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function bu(n,l){if(1&n&&(A.j41(0,"div",18),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=A.XpG();A.Y8G("@fadeIn",e.totalFeeMsat),A.R7$(),A.Lme("",A.i5U(2,3,e.totalFeeMsat/1e3||0,"1.0-2")," Sats/",A.bMT(3,6,e.filteredEventsBySelectedPeriod.length||0)," Events")}}function vu(n,l){1&n&&(A.j41(0,"div",15),A.EFF(1,"No routing report for the selected period"),A.k0s())}function Ru(n,l){if(1&n&&(A.j41(0,"span")(1,"span",20),A.EFF(2),A.nI1(3,"number"),A.k0s(),A.j41(4,"span",20),A.EFF(5),A.nI1(6,"number"),A.k0s()()),2&n){const e=l.model,i=A.XpG(2);A.R7$(2),A.SpI("Events: ",A.bMT(3,2,(i.selReportBy===i.reportBy.EVENTS?e.value:e.extra.totalEvents)||0)),A.R7$(3),A.SpI("Fee: ",A.i5U(6,4,(i.selReportBy===i.reportBy.EVENTS?e.extra.totalFees:e.value)||0,"1.0-2"))}}function Su(n,l){if(1&n){const e=A.RV6();A.j41(0,"ngx-charts-bar-vertical",19),A.bIt("select",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onChartBarSelected(o))})("mouseup",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onChartMouseUp(o))}),A.DNE(1,Ru,7,7,"ng-template",null,0,A.C5r),A.k0s()}if(2&n){const e=A.XpG();A.Y8G("view",e.view)("results",e.routingReportData)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)}}function Nu(n,l){if(1&n&&A.nrm(0,"rtl-cln-forwarding-history",21),2&n){const e=A.XpG();A.Y8G("eventsData",e.filteredEventsBySelectedPeriod)("selFilter",e.eventFilterValue)}}let Tu=(()=>{var n;class l{constructor(i,o,r,iA){this.logger=i,this.commonService=o,this.store=r,this.dataService=iA,this.reportPeriod=B.rs[0],this.secondsInADay=86400,this.events=[],this.filteredEventsBySelectedPeriod=[],this.eventFilterValue="",this.reportBy=B.aR,this.selReportBy=B.aR.FEES,this.totalFeeMsat=null,this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.routingReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Fee (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===B.f7.XS||this.screenSize===B.f7.SM),this.store.pipe((0,bt.s)(1)).subscribe(i=>{i.cln.apisCallStatus.FetchForwardingHistoryS.status===B.wn.UN_INITIATED&&!i.cln.forwardingHistory.listForwards?.length&&this.store.dispatch((0,VA.uK)({payload:{status:B.xk.SETTLED}}))}),this.store.select(tA.Ie).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{i.forwardingHistory.status===B.xk.SETTLED&&(this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR?this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:"":this.apiCallStatus.status===B.wn.COMPLETED&&(this.events=i.forwardingHistory.listForwards||[],this.filterForwardingEvents(this.startDate,this.endDate)),this.logger.info(i))}),this.commonService.containerSizeUpdated.pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{switch(this.screenSize){case B.f7.MD:this.screenPaddingX=i.width/10;break;case B.f7.LG:this.screenPaddingX=i.width/16;break;default:this.screenPaddingX=i.width/20}this.view=[i.width-this.screenPaddingX,i.height/2.2],this.logger.info("Container Size: "+JSON.stringify(i)),this.logger.info("View: "+JSON.stringify(this.view))})}filterForwardingEvents(i,o){const r=Math.round(i.getTime()/1e3),iA=Math.round(o.getTime()/1e3);this.filteredEventsBySelectedPeriod=[],this.routingReportData=[],this.totalFeeMsat=null,this.events&&this.events.length>0&&(this.events.forEach(ne=>{ne.received_time&&ne.received_time>=r&&ne.received_time0&&"ngx-charts"===i.srcElement.classList[0]&&(this.eventFilterValue="")}onChartBarSelected(i){this.eventFilterValue=this.reportPeriod===B.rs[1]?i.name+"/"+this.startDate.getFullYear():i.name.toString().padStart(2,"0")+"/"+B.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}prepareFeeReport(i){const o=Math.round(i.getTime()/1e3),r=[];if(this.totalFeeMsat=0,this.reportPeriod===B.rs[1]){for(let iA=0;iA<12;iA++)r.push({name:B.KR[iA].name,value:0,extra:{totalEvents:0}});this.filteredEventsBySelectedPeriod?.map(iA=>{const ne=iA.received_time?new Date(1e3*+iA.received_time).getMonth():12;return r[ne].extra.totalEvents=r[ne].extra.totalEvents+1,r[ne].value=r[ne].value+ +(iA.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(iA.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let iA=0;iA{const ne=iA.received_time?Math.floor((+iA.received_time-o)/this.secondsInADay):0;return r[ne].extra.totalEvents=r[ne].extra.totalEvents+1,r[ne].value=r[ne].value+ +(iA.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(iA.fee_msat||0),this.filteredEventsBySelectedPeriod})}return r}prepareEventsReport(i){const o=Math.round(i.getTime()/1e3),r=[];if(this.totalFeeMsat=0,this.reportPeriod===B.rs[1]){for(let iA=0;iA<12;iA++)r.push({name:B.KR[iA].name,value:0,extra:{totalFees:0}});this.filteredEventsBySelectedPeriod?.map(iA=>{const ne=iA.received_time?new Date(1e3*+iA.received_time).getMonth():12;return r[ne].value=r[ne].value+1,r[ne].extra.totalFees=r[ne].extra.totalFees+ +(iA.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(iA.fee_msat||0),this.filteredEventsBySelectedPeriod})}else{for(let iA=0;iA{const ne=iA.received_time?Math.floor((+iA.received_time-o)/this.secondsInADay):0;return r[ne].value=r[ne].value+1,r[ne].extra.totalFees=r[ne].extra.totalFees+ +(iA.fee_msat||0)/1e3,this.totalFeeMsat=(this.totalFeeMsat||0)+ +(iA.fee_msat||0),this.filteredEventsBySelectedPeriod})}return r}onSelectionChange(i){const o=i.selDate.getMonth(),r=i.selDate.getFullYear();this.reportPeriod=i.selScrollRange,this.reportPeriod===B.rs[1]?(this.startDate=new Date(r,0,1,0,0,0),this.endDate=new Date(r,11,31,23,59,59)):(this.startDate=new Date(r,o,1,0,0,0),this.endDate=new Date(r,o,this.getMonthDays(o,r),23,59,59)),this.filterForwardingEvents(this.startDate,this.endDate),this.eventFilterValue=""}getMonthDays(i,o){return 1===i&&o%4==0?B.KR[i].days+1:B.KR[i].days}onSelReportByChange(){this.yAxisLabel=this.selReportBy===this.reportBy.EVENTS?"Events":"Fee (Sats)",this.routingReportData=this.selReportBy===this.reportBy.EVENTS?this.prepareEventsReport(this.startDate):this.prepareFeeReport(this.startDate)}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(Dt.u))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-routing-report"]],hostBindings:function(o,r){1&o&&A.bIt("mouseup",function(ne){return r.onChartMouseUp(ne)})},standalone:!1,decls:19,vars:11,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-x"],["color","primary","name","selReportBy","fxFlex","100","fxLayoutAlign","start center",1,"my-1",3,"ngModelChange","change","ngModel"],[1,"mr-2"],["tabindex","1",1,"mr-2",3,"value"],["tabindex","2",3,"value"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1 error-border",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],[1,"mt-1"],["class","one-color",3,"view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","select","mouseup",4,"ngIf"],["pageId","reports","tableId","routing",3,"eventsData","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],["mode","indeterminate"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1","error-border"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],[1,"one-color",3,"select","mouseup","view","results","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel"],[1,"tooltip-label"],["pageId","reports","tableId","routing",3,"eventsData","selFilter"]],template:function(o,r){1&o&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(ne){return r.onSelectionChange(ne)}),A.k0s(),A.j41(2,"div",3)(3,"mat-radio-group",4),A.mxI("ngModelChange",function(ne){return A.DH7(r.selReportBy,ne)||(r.selReportBy=ne),ne}),A.bIt("change",function(){return r.onSelReportByChange()}),A.j41(4,"span",5),A.EFF(5,"Report By: "),A.k0s(),A.j41(6,"mat-radio-button",6),A.EFF(7,"Fees"),A.k0s(),A.j41(8,"mat-radio-button",7),A.EFF(9,"Events"),A.k0s()()(),A.j41(10,"div",8),A.DNE(11,xu,4,0,"div",9)(12,Yu,2,1,"div",10)(13,bu,4,8,"div",11)(14,vu,2,0,"div",9),A.j41(15,"div",12),A.DNE(16,Su,3,11,"ngx-charts-bar-vertical",13),A.k0s(),A.j41(17,"div",12),A.DNE(18,Nu,1,2,"rtl-cln-forwarding-history",14),A.k0s()()()),2&o&&(A.R7$(3),A.R50("ngModel",r.selReportBy),A.R7$(3),A.Y8G("value",A.mNQ(r.reportBy.FEES)),A.R7$(2),A.Y8G("value",A.mNQ(r.reportBy.EVENTS)),A.R7$(3),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.ERROR),A.R7$(),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.COMPLETED&&r.routingReportData.length>0&&r.filteredEventsBySelectedPeriod.length>0),A.R7$(),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.COMPLETED&&(r.routingReportData.length<=0||r.filteredEventsBySelectedPeriod.length<=0)),A.R7$(2),A.Y8G("ngIf",r.routingReportData.length>0&&r.filteredEventsBySelectedPeriod.length>0),A.R7$(2),A.Y8G("ngIf",r.filteredEventsBySelectedPeriod&&r.filteredEventsBySelectedPeriod.length>0))},dependencies:[de.bT,hA.BC,hA.vS,eA.HM,qe.VT,qe._g,Q.DJ,Q.sA,Q.UI,Lc.L8,Gc.m,Sc,de.QX],encapsulation:2,data:{animation:[Uc.q]}}))}return n(),l})();var Pu=We(5085);function Uu(n,l){if(1&n&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Lme(" Paid ",A.i5U(2,2,e.transactionsReportSummary.amountPaidSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.bMT(3,5,e.transactionsReportSummary.paymentsSelectedPeriod)," Payments ")}}function Lu(n,l){if(1&n&&(A.j41(0,"div",11),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Lme(" Received ",A.i5U(2,2,e.transactionsReportSummary.amountReceivedSelectedPeriod/1e3||0,"1.0-2")," Sats/",A.bMT(3,5,e.transactionsReportSummary.invoicesSelectedPeriod)," Invoices ")}}function Gu(n,l){if(1&n&&(A.j41(0,"div",9),A.DNE(1,Uu,4,7,"div",10)(2,Lu,4,7,"div",10),A.k0s()),2&n){const e=A.XpG();A.Y8G("@fadeIn",e.transactionsReportSummary),A.R7$(),A.Y8G("ngIf",e.transactionsReportSummary.paymentsSelectedPeriod),A.R7$(),A.Y8G("ngIf",e.transactionsReportSummary.invoicesSelectedPeriod)}}function zu(n,l){1&n&&(A.j41(0,"div",12),A.EFF(1,"No transactions report for the selected period"),A.k0s())}function ku(n,l){if(1&n&&(A.j41(0,"span",14),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=l.model;A.R7$(),A.LHq("",e.name,": ",A.i5U(2,4,e.value||0,"1.0-2"),"/# ","Paid"===e.name?"Payments":"Invoices",": ",A.bMT(3,7,(null==e.extra?null:e.extra.total)||0))}}function Hu(n,l){if(1&n){const e=A.RV6();A.j41(0,"ngx-charts-bar-vertical-2d",13),A.bIt("select",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onChartBarSelected(o))})("mouseup",function(o){w.eBV(e);const r=A.XpG();return w.Njj(r.onChartMouseUp(o))}),A.DNE(1,ku,4,9,"ng-template",null,0,A.C5r),A.k0s()}if(2&n){const e=A.XpG();A.Y8G("view",e.view)("results",e.transactionsReportData)("noBarWhenZero",!1)("gradient",!1)("xAxis",!0)("yAxis",!0)("showXAxisLabel",!0)("showYAxisLabel",e.showYAxisLabel)("xAxisLabel",e.xAxisLabel)("yAxisLabel",e.yAxisLabel)("showGridLines",!1)("showDataLabel",!1)("groupPadding",e.reportPeriod===e.scrollRanges[0]?2:4)}}function ju(n,l){if(1&n&&A.nrm(0,"rtl-transactions-report-table",15),2&n){const e=A.XpG();A.Y8G("displayedColumns",e.displayedColumns)("tableSetting",e.tableSetting)("dataList",e.transactionsNonZeroReportData)("dataRange",e.reportPeriod)("selFilter",e.transactionFilterValue)}}let Ou=(()=>{var n;class l{constructor(i,o,r){this.logger=i,this.commonService=o,this.store=r,this.scrollRanges=B.rs,this.reportPeriod=B.rs[0],this.secondsInADay=86400,this.payments=[],this.invoices=[],this.colWidth="20rem",this.PAGE_ID="reports",this.tableSetting={tableId:"transactions",recordsPerPage:B.md,sortBy:"date",sortOrder:B.oi.DESCENDING},this.displayedColumns=["date","amount_paid","num_payments","amount_received","num_invoices"],this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0},this.transactionFilterValue="",this.today=new Date(Date.now()),this.startDate=new Date(this.today.getFullYear(),this.today.getMonth(),1,0,0,0),this.endDate=new Date(this.today.getFullYear(),this.today.getMonth(),this.getMonthDays(this.today.getMonth(),this.today.getFullYear()),23,59,59),this.transactionsReportData=[],this.transactionsNonZeroReportData=[],this.view=[350,350],this.screenPaddingX=100,this.gradient=!0,this.xAxisLabel="Date",this.yAxisLabel="Amount (Sats)",this.showYAxisLabel=!0,this.screenSize="",this.screenSizeEnum=B.f7,this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.showYAxisLabel=!(this.screenSize===B.f7.XS||this.screenSize===B.f7.SM),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.KT).pipe((0,I.Q)(this.unSubs[1]),(0,N.E)(this.store.select(tA.Pj))).subscribe(([i,o])=>{this.payments=i.payments,this.invoices=o.listInvoices.invoices||[],this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData()}),this.commonService.containerSizeUpdated.pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{switch(this.screenSize){case B.f7.MD:this.screenPaddingX=i.width/10;break;case B.f7.LG:this.screenPaddingX=i.width/16;break;default:this.screenPaddingX=i.width/20}this.view=[i.width-this.screenPaddingX,i.height/2.2],this.logger.info("Container Size: "+JSON.stringify(i)),this.logger.info("View: "+JSON.stringify(this.view))})}onChartMouseUp(i){"svg"===i.srcElement.tagName&&i.srcElement.classList.length>0&&"ngx-charts"===i.srcElement.classList[0]&&(this.transactionFilterValue="")}onChartBarSelected(i){this.transactionFilterValue=this.reportPeriod===B.rs[1]?i.series+"/"+this.startDate.getFullYear():i.series.toString().padStart(2,"0")+"/"+B.KR[this.startDate.getMonth()].name+"/"+this.startDate.getFullYear()}filterTransactionsForSelectedPeriod(i,o){const r=Math.round(i.getTime()/1e3),iA=Math.round(o.getTime()/1e3),ne=[];this.transactionsReportSummary={paymentsSelectedPeriod:0,invoicesSelectedPeriod:0,amountPaidSelectedPeriod:0,amountReceivedSelectedPeriod:0};const re=this.payments?.filter(Qt=>"complete"===Qt.status&&Qt.created_at&&Qt.created_at>=r&&Qt.created_at"paid"===Qt.status&&Qt.paid_at&&Qt.paid_at>=r&&Qt.paid_at{const wn=new Date(1e3*(Qt.created_at||0)).getMonth();return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(Qt.amount_sent_msat||0),ne[wn].series[0].value=ne[wn].series[0].value+(Qt.amount_sent_msat||0)/1e3,ne[wn].series[0].extra.total=ne[wn].series[0].extra.total+1,this.transactionsReportSummary}),ln?.map(Qt=>{const wn=new Date(1e3*+(Qt.paid_at||0)).getMonth();return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(Qt.amount_received_msat||0),ne[wn].series[1].value=ne[wn].series[1].value+(Qt.amount_received_msat||0)/1e3,ne[wn].series[1].extra.total=ne[wn].series[1].extra.total+1,this.transactionsReportSummary})}else{for(let Qt=0;Qt{const wn=Math.floor((+(Qt.created_at||0)-r)/this.secondsInADay);return this.transactionsReportSummary.amountPaidSelectedPeriod=this.transactionsReportSummary.amountPaidSelectedPeriod+(Qt.amount_sent_msat||0),ne[wn].series[0].value=ne[wn].series[0].value+(Qt.amount_sent_msat||0)/1e3,ne[wn].series[0].extra.total=ne[wn].series[0].extra.total+1,this.transactionsReportSummary}),ln?.map(Qt=>{const wn=Math.floor((+(Qt.paid_at||0)-r)/this.secondsInADay);return this.transactionsReportSummary.amountReceivedSelectedPeriod=this.transactionsReportSummary.amountReceivedSelectedPeriod+(Qt.amount_received_msat||0),ne[wn].series[1].value=ne[wn].series[1].value+(Qt.amount_received_msat||0)/1e3,ne[wn].series[1].extra.total=ne[wn].series[1].extra.total+1,this.transactionsReportSummary})}return ne}prepareTableData(){return this.transactionsReportData?.reduce((i,o)=>o.series[0].extra.total>0||o.series[1].extra.total>0?i.concat({date:o.date,amount_paid:o.series[0].value,num_payments:o.series[0].extra.total,amount_received:o.series[1].value,num_invoices:o.series[1].extra.total}):i,[])}onSelectionChange(i){const o=i.selDate.getMonth(),r=i.selDate.getFullYear();this.reportPeriod=i.selScrollRange,this.reportPeriod===B.rs[1]?(this.startDate=new Date(r,0,1,0,0,0),this.endDate=new Date(r,11,31,23,59,59)):(this.startDate=new Date(r,o,1,0,0,0),this.endDate=new Date(r,o,this.getMonthDays(o,r),23,59,59)),this.transactionsReportData=this.filterTransactionsForSelectedPeriod(this.startDate,this.endDate),this.transactionsNonZeroReportData=this.prepareTableData(),this.transactionFilterValue=""}getMonthDays(i,o){return 1===i&&o%4==0?B.KR[i].days+1:B.KR[i].days}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-transactions-report"]],hostBindings:function(o,r){1&o&&A.bIt("mouseup",function(ne){return r.onChartMouseUp(ne)})},standalone:!1,decls:9,vars:4,consts:[["tooltipTemplate",""],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x-large"],[3,"stepChanged"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"padding-gap-x"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 font-bold-700 mt-1",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100","class","font-size-120 mt-1",4,"ngIf"],[1,"mt-1"],["class","two-color",3,"view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding","select","mouseup",4,"ngIf"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter",4,"ngIf"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","font-bold-700","mt-1"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","column","fxLayoutAlign","center center","fxFlex","100",1,"font-size-120","mt-1"],[1,"two-color",3,"select","mouseup","view","results","noBarWhenZero","gradient","xAxis","yAxis","showXAxisLabel","showYAxisLabel","xAxisLabel","yAxisLabel","showGridLines","showDataLabel","groupPadding"],[1,"tooltip-label"],[3,"displayedColumns","tableSetting","dataList","dataRange","selFilter"]],template:function(o,r){1&o&&(A.j41(0,"div",1)(1,"rtl-horizontal-scroller",2),A.bIt("stepChanged",function(ne){return r.onSelectionChange(ne)}),A.k0s(),A.j41(2,"div",3),A.DNE(3,Gu,3,3,"div",4)(4,zu,2,0,"div",5),A.j41(5,"div",6),A.DNE(6,Hu,3,13,"ngx-charts-bar-vertical-2d",7),A.k0s(),A.j41(7,"div",6),A.DNE(8,ju,1,5,"rtl-transactions-report-table",8),A.k0s()()()),2&o&&(A.R7$(3),A.Y8G("ngIf",r.transactionsNonZeroReportData.length>0),A.R7$(),A.Y8G("ngIf",r.transactionsNonZeroReportData.length<=0),A.R7$(2),A.Y8G("ngIf",r.transactionsNonZeroReportData.length>0),A.R7$(2),A.Y8G("ngIf",r.transactionsNonZeroReportData.length>0))},dependencies:[de.bT,Q.DJ,Q.sA,Q.UI,Lc.Dl,Gc.m,Pu.T,de.QX],encapsulation:2,data:{animation:[Uc.q]}}))}return n(),l})();var Vt=We(7186),Ju=We(13);function _u(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",9),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.activeLink=o.link)}),A.EFF(1),A.k0s()}if(2&n){const e=l.$implicit,i=A.XpG();A.Y8G("routerLink",A.mNQ(e.link))("active",i.activeLink===e.link),A.R7$(),A.JRh(e.name)}}let Vu=(()=>{var n;class l{constructor(i){this.router=i,this.faSearch=v.MjD,this.links=[{link:"lookups",name:"Lookup"},{link:"queryroutes",name:"Query Routes"}],this.activeLink=this.links[0].link,this.unSubs=[new g.B,new g.B,new g.B,new g.B]}ngOnInit(){const i=this.links.find(o=>this.router.url.includes(o.link));this.activeLink=i?i.link:this.links[0].link,this.router.events.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(o=>o instanceof xt.gx)).subscribe({next:o=>{const r=this.links.find(iA=>o.urlAfterRedirects.includes(iA.link));this.activeLink=r?r.link:this.links[0].link}})}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(xt.Ix))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-graph"]],standalone:!1,decls:13,vars:3,consts:[["tabPanel",""],["fxLayout","row wrap","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(o,r){if(1&o&&(A.j41(0,"div",1),A.nrm(1,"fa-icon",2),A.j41(2,"span",3),A.EFF(3,"Graph Lookups"),A.k0s()(),A.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),A.DNE(8,_u,2,4,"div",7),A.k0s(),A.nrm(9,"mat-tab-nav-panel",null,0),A.j41(11,"div",8),A.nrm(12,"router-outlet"),A.k0s()()()()),2&o){const iA=A.sdS(10);A.R7$(),A.Y8G("icon",r.faSearch),A.R7$(6),A.Y8G("tabPanel",iA),A.R7$(),A.Y8G("ngForOf",r.links)}},dependencies:[de.Sq,P.aY,QA.RN,QA.m2,Q.DJ,Q.sA,Q.UI,RA.Bu,RA.hQ,RA.Ql,xt.n3,Sn.Wk],encapsulation:2}))}return n(),l})();var Wu=We(2643),Ku=We(7235);function Xu(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.offerError)}}function Zu(n,l){if(1&n&&(A.j41(0,"div",21),A.nrm(1,"fa-icon",22),A.DNE(2,Xu,2,1,"span",23),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.offerError)}}let qu=(()=>{var n;class l{constructor(i,o,r,iA,ne,re){this.dialogRef=i,this.data=o,this.store=r,this.decimalPipe=iA,this.commonService=ne,this.actions=re,this.faExclamationTriangle=v.zpE,this.description="",this.issuer="",this.offerValueHint="",this.information={},this.pageSize=B.md,this.offerError="",this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B]}ngOnInit(){this.pageSize=this.data.pageSize,this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.information=i,this.issuer=this.information.alias}),this.actions.pipe((0,I.Q)(this.unSubs[2]),(0,nA.p)(i=>i.type===B.TC.UPDATE_API_CALL_STATUS_CLN)).subscribe(i=>{i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&"SaveNewOffer"===i.payload.action&&(i.payload.status===B.wn.ERROR&&(this.offerError=i.payload.message),i.payload.status===B.wn.COMPLETED&&this.dialogRef.close())})}onAddOffer(){this.offerError="";const i=this.offerValue?(1e3*this.offerValue).toString():"any";this.store.dispatch((0,VA.y0)({payload:{amount:i,description:this.description,issuer:this.issuer}}))}resetData(){this.description="",this.issuer=this.information.alias,this.offerValue=null,this.offerValueHint="",this.offerError=""}onOfferValueChange(){this.selNode&&this.selNode.settings.fiatConversion&&this.offerValue&&this.offerValue>99&&(this.offerValueHint="",this.commonService.convertCurrency(this.offerValue,B.BQ.SATS,B.BQ.OTHER,this.selNode.settings.currencyUnits&&this.selNode.settings.currencyUnits.length>2?this.selNode.settings.currencyUnits[2]:"",this.selNode.settings.fiatConversion).pipe((0,I.Q)(this.unSubs[3])).subscribe({next:i=>{this.offerValueHint="= "+this.decimalPipe.transform(i.OTHER,B.k.OTHER)+" "+i.unit},error:i=>{this.offerValueHint="Conversion Error: "+i}}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(AA.il),A.rXU(de.QX),A.rXU(L.h),A.rXU(kA.En))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-create-offer"]],standalone:!1,decls:34,vars:8,consts:[["addOfferForm","ngForm"],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","6","fxFlex","5","fxLayoutAlign","center center","default","","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","row wrap","fxLayoutAlign","start space-between","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start end"],["matInput","","autoFocus","","tabindex","1","name","description",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","space-between start","fxFlex","100"],["fxLayout","column","fxFlex","40"],["matInput","","type","number","tabindex","2","name","offerValue",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],["fxLayout","column","fxFlex","58","fxLayoutAlign","start end"],["matInput","","tabindex","3","name","issuer",3,"ngModelChange","ngModel"],["fxFlex","100","class","alert alert-danger mt-1",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","4","type","reset",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","5",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-1"],[1,"mr-1","alert-icon",3,"icon"],[4,"ngIf"]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),A.EFF(5,"Create Offer"),A.k0s()(),A.j41(6,"button",6),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",7)(9,"form",8,0)(11,"mat-form-field",9)(12,"mat-label"),A.EFF(13,"Description"),A.k0s(),A.j41(14,"input",10),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.description,re)||(r.description=re),w.Njj(re)}),A.k0s()(),A.j41(15,"div",11)(16,"mat-form-field",12)(17,"mat-label"),A.EFF(18,"Amount"),A.k0s(),A.j41(19,"input",13),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.offerValue,re)||(r.offerValue=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onOfferValueChange())}),A.k0s(),A.j41(20,"span",14),A.EFF(21,"Sats "),A.k0s(),A.j41(22,"mat-hint"),A.EFF(23),A.k0s()(),A.j41(24,"mat-form-field",15)(25,"mat-label"),A.EFF(26,"Issuer"),A.k0s(),A.j41(27,"input",16),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.issuer,re)||(r.issuer=re),w.Njj(re)}),A.k0s()()(),A.DNE(28,Zu,3,2,"div",17),A.j41(29,"div",18)(30,"button",19),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(31,"Clear Field"),A.k0s(),A.j41(32,"button",20),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onAddOffer())}),A.EFF(33,"Create Offer"),A.k0s()()()()()()}2&o&&(A.R7$(6),A.Y8G("mat-dialog-close",!1),A.R7$(8),A.R50("ngModel",r.description),A.R7$(5),A.Y8G("step",100)("min",1),A.R50("ngModel",r.offerValue),A.R7$(4),A.JRh(r.offerValueHint),A.R7$(4),A.R50("ngModel",r.issuer),A.R7$(),A.Y8G("ngIf",""!==r.offerError))},dependencies:[de.bT,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.VZ,hA.vS,hA.cV,P.aY,wA.tx,fA.$z,QA.m2,QA.MM,UA.fg,yA.rl,yA.nJ,yA.MV,yA.yw,Q.DJ,Q.sA,Q.UI,cA.N,J.V],encapsulation:2}))}return n(),l})();var zc=We(2142);const $u=()=>["all"],Ah=n=>({"error-border":n}),eh=()=>["no_offer"],kc=n=>({"mr-0":n}),Hc=n=>({width:n}),th=n=>({"display-none":n});function nh(n,l){if(1&n&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function ih(n,l){1&n&&A.nrm(0,"mat-progress-bar",35)}function sh(n,l){1&n&&A.nrm(0,"th",36)}function rh(n,l){if(1&n&&A.nrm(0,"span",40),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,kc,e.screenSize===e.screenSizeEnum.XS))}}function ah(n,l){if(1&n&&A.nrm(0,"span",41),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,kc,e.screenSize===e.screenSizeEnum.XS))}}function oh(n,l){if(1&n&&(A.j41(0,"td",37),A.DNE(1,rh,1,3,"span",38)(2,ah,1,3,"span",39),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Y8G("ngIf",e.active),A.R7$(),A.Y8G("ngIf",!e.active)}}function lh(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Offer ID"),A.k0s())}function ch(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Hc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.SpI(" ",e.offer_id," ")}}function gh(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Single Use"),A.k0s())}function Bh(n,l){if(1&n&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(e.single_use?"Yes":"No")}}function fh(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Used"),A.k0s())}function uh(n,l){if(1&n&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ",e.used?"Yes":"No"," ")}}function hh(n,l){1&n&&(A.j41(0,"th",42),A.EFF(1,"Invoice"),A.k0s())}function Eh(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Hc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.SpI(" ",e.bolt12," ")}}function wh(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",48),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Ch(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){w.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return w.Njj(r.onDisableOffer(o))}),A.EFF(1,"Disable Offer"),A.k0s()}}function dh(n,l){if(1&n){const e=A.RV6();A.j41(0,"mat-option",48),A.bIt("click",function(){w.eBV(e);const o=A.XpG().$implicit,r=A.XpG();return w.Njj(r.onPrintOffer(o))}),A.EFF(1,"Export QR code"),A.k0s()}}function Qh(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",49)(1,"div",46)(2,"mat-select",50),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",48),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onOfferClick(o))}),A.EFF(5,"View Info"),A.k0s(),A.DNE(6,Ch,2,0,"mat-option",51)(7,dh,2,0,"mat-option",51),A.k0s()()()}if(2&n){const e=l.$implicit;A.R7$(6),A.Y8G("ngIf",e.active),A.R7$(),A.Y8G("ngIf",e.active)}}function mh(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No offer available."),A.k0s())}function Mh(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting offers..."),A.k0s())}function ph(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function Ih(n,l){if(1&n&&(A.j41(0,"td",52),A.DNE(1,mh,2,0,"p",53)(2,Mh,2,0,"p",53)(3,ph,2,1,"p",53),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.offers&&e.offers.data)||(null==e.offers||null==e.offers.data?null:e.offers.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.offers&&e.offers.data)||(null==e.offers||null==e.offers.data?null:e.offers.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.offers&&e.offers.data)||(null==e.offers||null==e.offers.data?null:e.offers.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function Dh(n,l){if(1&n&&A.nrm(0,"tr",54),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,th,(null==e.offers?null:e.offers.data)&&(null==e.offers||null==e.offers.data?null:e.offers.data.length)>0))}}function Fh(n,l){1&n&&A.nrm(0,"tr",55)}function yh(n,l){1&n&&A.nrm(0,"tr",56)}let xh=(()=>{var n;class l{constructor(i,o,r,iA,ne,re,ln){this.logger=i,this.store=o,this.commonService=r,this.rtlEffects=iA,this.dataService=ne,this.decimalPipe=re,this.camelCaseWithReplace=ln,this.faHistory=v.Int,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offers",recordsPerPage:B.md,sortBy:"offer_id",sortOrder:B.oi.DESCENDING},this.newlyAddedOfferMemo="",this.newlyAddedOfferValue=0,this.description="",this.offerValue=null,this.offerValueHint="",this.displayedColumns=[],this.offerPaymentReq="",this.offerJSONArr=[],this.information={},this.private=!1,this.expiryStep=100,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(j._c).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.selNode=i}),this.store.select(tA.mH).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.information=i}),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[2])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.unshift("active"),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.O5).pipe((0,I.Q)(this.unSubs[3])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offerJSONArr=i.offers||[],this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.offerJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offerJSONArr)}openCreateOfferModal(){this.store.dispatch((0,C.xO)({payload:{data:{pageSize:this.pageSize,component:qu}}}))}onOfferClick(i){this.store.dispatch((0,C.xO)({payload:{data:{offer:{used:i.used,single_use:i.single_use,active:i.active,offer_id:i.offer_id,bolt12:i.bolt12,created:i.created,label:i.label},newlyAdded:!1,component:zc.f}}}))}onDisableOffer(i){this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Disable Offer",titleMessage:"Disabling Offer: "+(i.offer_id||i.bolt12),noBtnText:"Cancel",yesBtnText:"Disable"}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[4])).subscribe(o=>{o&&this.store.dispatch((0,VA.jQ)({payload:{offer_id:i.offer_id}}))})}onPrintOffer(i){this.dataService.decodePayment(i.bolt12,!1).pipe((0,bt.s)(1)).subscribe(o=>{o.offer_id&&!o.offer_amount_msat&&(o.offer_amount_msat=0);const r={pageSize:"A5",pageOrientation:"portrait",pageMargins:[10,50,10,50],background:{svg:'\n \n \n \n \n \n ',width:249,height:333,absolutePosition:{x:84,y:160}},header:{text:o.offer_issuer||"",alignment:"center",fontSize:25,color:"#272727",margin:[0,20,0,0]},content:[{svg:'',width:249,height:40,alignment:"center"},{text:o.offer_description?o.offer_description.substring(0,160):"",alignment:"center",fontSize:16,color:"#5C5C5C"},{qr:i.bolt12,eccLevel:"M",fit:"227",alignment:"center",absolutePosition:{x:7,y:205}},{text:o?.offer_amount_msat&&0!==o?.offer_amount_msat?this.decimalPipe.transform((o.offer_amount_msat||0)/1e3)+" SATS":"Open amount",fontSize:20,bold:!1,color:"white",alignment:"center",absolutePosition:{x:0,y:430}},{text:"SCAN TO PAY",fontSize:22,bold:!0,color:"white",alignment:"center",absolutePosition:{x:0,y:455}}],footer:{svg:'\n \n \n \n \n ',alignment:"center"}};Wu.createPdf(r,null,null,Ku.pdfMake.vfs).download("Offer-"+(o&&o.offer_description?o.offer_description:i.bolt12))})}applyFilter(){this.offers.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.offers.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.active?" active":" inactive")+(i.used?" yes":" no")+(i.single_use?" single":" multiple")+JSON.stringify(i).toLowerCase(),("active"===o||"inactive"===o||"single"===o||"multiple"===o)&&(o=" "+o);break;case"active":r=i?.active?"active":"inactive";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"active"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadOffersTable(i){this.offers=new z.I6(i?[...i]:[]),this.offers.sort=this.sort,this.offers.sortingDataAccessor=(o,r)=>o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null,this.offers.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.offers.data&&this.offers.data.length>0&&this.commonService.downloadFile(this.offers.data,"Offers")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(L.h),A.rXU(b.H),A.rXU(Dt.u),A.rXU(de.QX),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-offers-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Offers")}])],decls:49,vars:19,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row"],["mat-flat-button","","color","primary","tabindex","1",3,"click"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","active"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","offer_id"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["matColumnDef","single_use"],["matColumnDef","used"],["matColumnDef","bolt12"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_offer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header","","arrowPosition","before","matTooltip","Active"],["mat-cell",""],["class","dot green","matTooltip","Active","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Inactive","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["matTooltip","Active","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Inactive","matTooltipPosition","right",1,"dot","red",3,"ngClass"],["mat-header-cell","","mat-sort-header",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],[3,"click",4,"ngIf"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1)(1,"div",2)(2,"button",3),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.openCreateOfferModal())}),A.EFF(3,"Create Offer"),A.k0s()(),A.j41(4,"div",4)(5,"div",5)(6,"div",6),A.nrm(7,"fa-icon",7),A.j41(8,"span",8),A.EFF(9,"Offers History"),A.k0s()(),A.j41(10,"div",9)(11,"mat-form-field",10)(12,"mat-label"),A.EFF(13,"Filter By"),A.k0s(),A.j41(14,"mat-select",11),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(15,"perfect-scrollbar"),A.DNE(16,nh,2,2,"mat-option",12),A.k0s()()(),A.j41(17,"mat-form-field",10)(18,"mat-label"),A.EFF(19,"Filter"),A.k0s(),A.j41(20,"input",13),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(21,"div",14),A.DNE(22,ih,1,0,"mat-progress-bar",15),A.j41(23,"table",16,0),A.qex(25,17),A.DNE(26,sh,1,0,"th",18)(27,oh,3,2,"td",19),A.bVm(),A.qex(28,20),A.DNE(29,lh,2,0,"th",21)(30,ch,4,4,"td",19),A.bVm(),A.qex(31,22),A.DNE(32,gh,2,0,"th",21)(33,Bh,2,1,"td",19),A.bVm(),A.qex(34,23),A.DNE(35,fh,2,0,"th",21)(36,uh,2,1,"td",19),A.bVm(),A.qex(37,24),A.DNE(38,hh,2,0,"th",21)(39,Eh,4,4,"td",19),A.bVm(),A.qex(40,25),A.DNE(41,wh,6,0,"th",26)(42,Qh,8,2,"td",27),A.bVm(),A.qex(43,28),A.DNE(44,Ih,4,3,"td",29),A.bVm(),A.DNE(45,Dh,1,3,"tr",30)(46,Fh,1,0,"tr",31)(47,yh,1,0,"tr",32),A.k0s()(),A.nrm(48,"mat-paginator",33),A.k0s()()}2&o&&(A.R7$(7),A.Y8G("icon",r.faHistory),A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,$u).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.offers)("ngClass",A.eq3(16,Ah,""!==r.errorMessage)),A.R7$(22),A.Y8G("matFooterRowDef",A.lJ4(18,eh)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld],styles:[".mat-column-active[_ngcontent-%COMP%]{max-width:2.2rem;width:2.2rem;text-overflow:unset}"]}))}return n(),l})();const Yh=()=>["all"],bh=n=>({"error-border":n}),vh=()=>["no_offer"],mc=n=>({width:n}),Rh=n=>({"display-none":n});function Sh(n,l){if(1&n&&(A.j41(0,"mat-option",34),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function Nh(n,l){1&n&&A.nrm(0,"mat-progress-bar",35)}function Th(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Updated At"),A.k0s())}function Ph(n,l){if(1&n&&(A.j41(0,"td",37),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,e.lastUpdatedAt,"dd/MMM/y HH:mm"))}}function Uh(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Title"),A.k0s())}function Lh(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,mc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.title)}}function Gh(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Description"),A.k0s())}function zh(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,mc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.description)}}function kh(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Issuer"),A.k0s())}function Hh(n,l){if(1&n&&(A.j41(0,"td",37),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(e.issuer)}}function jh(n,l){1&n&&(A.j41(0,"th",36),A.EFF(1,"Invoice"),A.k0s())}function Oh(n,l){if(1&n&&(A.j41(0,"td",37)(1,"div",38)(2,"span",39),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,mc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(e.bolt12)}}function Jh(n,l){1&n&&(A.j41(0,"th",40),A.EFF(1,"Amount (Sats)"),A.k0s())}function _h(n,l){if(1&n&&(A.j41(0,"td",37)(1,"span",41),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.JRh(0===e.amountMSat?"Open":A.bMT(3,1,e.amountMSat/1e3))}}function Vh(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",42)(1,"div",43)(2,"mat-select",44),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",45),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function Wh(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",46)(1,"div",43)(2,"mat-select",47),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",45),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onOfferBookmarkClick(o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",45),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onRePayOffer(o))}),A.EFF(7,"Pay Again"),A.k0s(),A.j41(8,"mat-option",45),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onDeleteBookmark(o))}),A.EFF(9,"Delete Bookmark"),A.k0s()()()()}}function Kh(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No offer bookmarked."),A.k0s())}function Xh(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting offer bookmarks..."),A.k0s())}function Zh(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function qh(n,l){if(1&n&&(A.j41(0,"td",48),A.DNE(1,Kh,2,0,"p",49)(2,Xh,2,0,"p",49)(3,Zh,2,1,"p",49),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.offersBookmarks&&e.offersBookmarks.data)||(null==e.offersBookmarks||null==e.offersBookmarks.data?null:e.offersBookmarks.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.offersBookmarks&&e.offersBookmarks.data)||(null==e.offersBookmarks||null==e.offersBookmarks.data?null:e.offersBookmarks.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.offersBookmarks&&e.offersBookmarks.data)||(null==e.offersBookmarks||null==e.offersBookmarks.data?null:e.offersBookmarks.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function $h(n,l){if(1&n&&A.nrm(0,"tr",50),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,Rh,(null==e.offersBookmarks?null:e.offersBookmarks.data)&&(null==e.offersBookmarks||null==e.offersBookmarks.data?null:e.offersBookmarks.data.length)>0))}}function AE(n,l){1&n&&A.nrm(0,"tr",51)}function eE(n,l){1&n&&A.nrm(0,"tr",52)}let tE=(()=>{var n;class l{constructor(i,o,r,iA,ne,re){this.logger=i,this.store=o,this.commonService=r,this.rtlEffects=iA,this.datePipe=ne,this.camelCaseWithReplace=re,this.faHistory=v.Int,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="transactions",this.tableSetting={tableId:"offer_bookmarks",recordsPerPage:B.md,sortBy:"lastUpdatedAt",sortOrder:B.oi.DESCENDING},this.displayedColumns=[],this.offersBookmarks=new z.I6([]),this.offersBookmarksJSONArr=[],this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.selFilter="",this.errorMessage="",this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.ip).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.offersBookmarksJSONArr=i.offersBookmarks||[],this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr),this.logger.info(i)})}ngAfterViewInit(){this.offersBookmarksJSONArr&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadOffersTable(this.offersBookmarksJSONArr)}onOfferBookmarkClick(i){this.store.dispatch((0,C.xO)({payload:{data:{offer:{bolt12:i.bolt12},newlyAdded:!1,component:zc.f}}}))}onDeleteBookmark(i){this.store.dispatch((0,C.I1)({payload:{data:{type:B.A$.CONFIRM,alertTitle:"Delete Bookmark",titleMessage:"Deleting Bookmark: "+(i.title||i.description),noBtnText:"Cancel",yesBtnText:"Delete"}}})),this.rtlEffects.closeConfirm.pipe((0,I.Q)(this.unSubs[2])).subscribe(o=>{o&&this.store.dispatch((0,VA.ED)({payload:{bolt12:i.bolt12}}))})}onRePayOffer(i){this.store.dispatch((0,C.xO)({payload:{data:{paymentType:B.Y0.OFFER,bolt12:i.bolt12,offerTitle:i.title,component:Bn}}}))}applyFilter(){this.offersBookmarks.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.offersBookmarks.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=JSON.stringify(i).toLowerCase();break;case"lastUpdatedAt":r=this.datePipe.transform(new Date(i.lastUpdatedAt||0),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"amountMSat":r=(i.amountMSat&&0!==i.amountMSat?(i.amountMSat/1e3).toString():"Open")||"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadOffersTable(i){this.offersBookmarks=new z.I6(i?[...i]:[]),this.offersBookmarks.sort=this.sort,this.offersBookmarks.sortingDataAccessor=(o,r)=>o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null,this.offersBookmarks.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter()}onDownloadCSV(){this.offersBookmarks.data&&this.offersBookmarks.data.length>0&&this.commonService.downloadFile(this.offersBookmarks.data,"OfferBookmarks")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(L.h),A.rXU(b.H),A.rXU(de.vh),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-offer-bookmarks-table"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Offer Bookmarks")}])],decls:50,vars:19,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap"],["fxLayout","row"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxLayout","column","fxLayoutAlign","start stretch","fxLayout.gt-sm","row wrap",1,"page-sub-title-container","mt-1"],["fxFlex","70","fxLayoutAlign","start start","fxLayoutAlign.gt-sm","start center"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","lastUpdatedAt"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","title"],["matColumnDef","description"],["matColumnDef","issuer"],["matColumnDef","bolt12"],["matColumnDef","amountMSat"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_offer"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["placeholder","Actions","tabindex","4",1,"mr-0"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",1),A.nrm(1,"div",2),A.j41(2,"div",3)(3,"div",4)(4,"div",5),A.nrm(5,"fa-icon",6),A.j41(6,"span",7),A.EFF(7,"Offer Bookmarks"),A.k0s()(),A.j41(8,"div",8)(9,"mat-form-field",9)(10,"mat-label"),A.EFF(11,"Filter By"),A.k0s(),A.j41(12,"mat-select",10),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(13,"perfect-scrollbar"),A.DNE(14,Sh,2,2,"mat-option",11),A.k0s()()(),A.j41(15,"mat-form-field",9)(16,"mat-label"),A.EFF(17,"Filter"),A.k0s(),A.j41(18,"input",12),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(19,"div",13),A.DNE(20,Nh,1,0,"mat-progress-bar",14),A.j41(21,"table",15,0),A.qex(23,16),A.DNE(24,Th,2,0,"th",17)(25,Ph,3,4,"td",18),A.bVm(),A.qex(26,19),A.DNE(27,Uh,2,0,"th",17)(28,Lh,4,4,"td",18),A.bVm(),A.qex(29,20),A.DNE(30,Gh,2,0,"th",17)(31,zh,4,4,"td",18),A.bVm(),A.qex(32,21),A.DNE(33,kh,2,0,"th",17)(34,Hh,2,1,"td",18),A.bVm(),A.qex(35,22),A.DNE(36,jh,2,0,"th",17)(37,Oh,4,4,"td",18),A.bVm(),A.qex(38,23),A.DNE(39,Jh,2,0,"th",24)(40,_h,4,3,"td",18),A.bVm(),A.qex(41,25),A.DNE(42,Vh,6,0,"th",26)(43,Wh,10,0,"td",27),A.bVm(),A.qex(44,28),A.DNE(45,qh,4,3,"td",29),A.bVm(),A.DNE(46,$h,1,3,"tr",30)(47,AE,1,0,"tr",31)(48,eE,1,0,"tr",32),A.k0s()(),A.nrm(49,"mat-paginator",33),A.k0s()()}2&o&&(A.R7$(5),A.Y8G("icon",r.faHistory),A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(15,Yh).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",(null==r.apiCallStatus?null:r.apiCallStatus.status)===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.offersBookmarks)("ngClass",A.eq3(16,bh,""!==r.errorMessage)),A.R7$(25),A.Y8G("matFooterRowDef",A.lJ4(18,vh)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,P.aY,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,H.iy,M.ZF,M.Ld,de.QX,de.vh],encapsulation:2}))}return n(),l})();const nE=()=>["all"],iE=()=>["no_event"],jc=n=>({width:n}),sE=n=>({"display-none":n});function rE(n,l){if(1&n&&(A.j41(0,"div",6),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.JRh(e.errorMessage)}}function aE(n,l){if(1&n&&(A.j41(0,"mat-option",17),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function oE(n,l){if(1&n){const e=A.RV6();A.j41(0,"div",7)(1,"div",8),A.nrm(2,"fa-icon",9),A.j41(3,"span"),A.EFF(4,"Maximum 1,000 local failed transactions only."),A.k0s()(),A.j41(5,"div",10),A.nrm(6,"div",11),A.j41(7,"div",12)(8,"mat-form-field",13)(9,"mat-label"),A.EFF(10,"Filter By"),A.k0s(),A.j41(11,"mat-select",14),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilterBy,o)||(r.selFilterBy=o),w.Njj(o)}),A.bIt("selectionChange",function(){w.eBV(e);const o=A.XpG();return o.selFilter="",w.Njj(o.applyFilter())}),A.j41(12,"perfect-scrollbar"),A.DNE(13,aE,2,2,"mat-option",15),A.k0s()()(),A.j41(14,"mat-form-field",13)(15,"mat-label"),A.EFF(16,"Filter"),A.k0s(),A.j41(17,"input",16),A.mxI("ngModelChange",function(o){w.eBV(e);const r=A.XpG();return A.DH7(r.selFilter,o)||(r.selFilter=o),w.Njj(o)}),A.bIt("input",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())})("keyup",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.applyFilter())}),A.k0s()()()()()}if(2&n){const e=A.XpG();A.R7$(2),A.Y8G("icon",e.faExclamationTriangle),A.R7$(9),A.R50("ngModel",e.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(4,nE).concat(e.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",e.selFilter)}}function lE(n,l){1&n&&A.nrm(0,"mat-progress-bar",40)}function cE(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Received Time"),A.k0s())}function gE(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.received_time),"dd/MMM/y HH:mm"))}}function BE(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"In Channel ID"),A.k0s())}function fE(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.in_channel)}}function uE(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"In Channel"),A.k0s())}function hE(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,jc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.in_channel_alias)}}function EE(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Out Channel ID"),A.k0s())}function wE(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.out_channel)}}function CE(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Out Channel"),A.k0s())}function dE(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",43)(2,"span",44),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.Y8G("ngStyle",A.eq3(2,jc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.out_channel_alias)}}function QE(n,l){1&n&&(A.j41(0,"th",45),A.EFF(1,"Amount In (Sats)"),A.k0s())}function mE(n,l){if(1&n&&(A.j41(0,"td",42)(1,"span",46),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,(null==e?null:e.in_msat)/1e3,(null==e?null:e.in_msat)<1e3?"1.0-4":"1.0-0")," ")}}function ME(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Style"),A.k0s())}function pE(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.style)}}function IE(n,l){1&n&&(A.j41(0,"th",41),A.EFF(1,"Fail Reason"),A.k0s())}function DE(n,l){if(1&n&&(A.j41(0,"td",42),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG(2);A.R7$(),A.JRh(i.CLNFailReason[null==e?null:e.failreason])}}function FE(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",47)(1,"div",48)(2,"mat-select",49),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",50),A.bIt("click",function(){w.eBV(e);const o=A.XpG(2);return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function yE(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",51)(1,"button",52),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG(2);return w.Njj(r.onFailedLocalEventClick(o))}),A.EFF(2,"View Info"),A.k0s()()}}function xE(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No failed transaction available."),A.k0s())}function YE(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting failed transactions..."),A.k0s())}function bE(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(3);A.R7$(),A.JRh(e.errorMessage)}}function vE(n,l){if(1&n&&(A.j41(0,"td",53),A.DNE(1,xE,2,0,"p",54)(2,YE,2,0,"p",54)(3,bE,2,1,"p",54),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.Y8G("ngIf",(!(null!=e.failedLocalForwardingEvents&&e.failedLocalForwardingEvents.data)||(null==e.failedLocalForwardingEvents||null==e.failedLocalForwardingEvents.data?null:e.failedLocalForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.failedLocalForwardingEvents&&e.failedLocalForwardingEvents.data)||(null==e.failedLocalForwardingEvents||null==e.failedLocalForwardingEvents.data?null:e.failedLocalForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.failedLocalForwardingEvents&&e.failedLocalForwardingEvents.data)||(null==e.failedLocalForwardingEvents||null==e.failedLocalForwardingEvents.data?null:e.failedLocalForwardingEvents.data.length)<1)&&(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.ERROR)}}function RE(n,l){if(1&n&&A.nrm(0,"tr",55),2&n){const e=A.XpG(2);A.Y8G("ngClass",A.eq3(1,sE,(null==e.failedLocalForwardingEvents?null:e.failedLocalForwardingEvents.data)&&(null==e.failedLocalForwardingEvents||null==e.failedLocalForwardingEvents.data?null:e.failedLocalForwardingEvents.data.length)>0))}}function SE(n,l){1&n&&A.nrm(0,"tr",56)}function NE(n,l){1&n&&A.nrm(0,"tr",57)}function TE(n,l){if(1&n&&(A.j41(0,"div",18),A.DNE(1,lE,1,0,"mat-progress-bar",19),A.j41(2,"table",20,0),A.qex(4,21),A.DNE(5,cE,2,0,"th",22)(6,gE,3,4,"td",23),A.bVm(),A.qex(7,24),A.DNE(8,BE,2,0,"th",22)(9,fE,2,1,"td",23),A.bVm(),A.qex(10,25),A.DNE(11,uE,2,0,"th",22)(12,hE,4,4,"td",23),A.bVm(),A.qex(13,26),A.DNE(14,EE,2,0,"th",22)(15,wE,2,1,"td",23),A.bVm(),A.qex(16,27),A.DNE(17,CE,2,0,"th",22)(18,dE,4,4,"td",23),A.bVm(),A.qex(19,28),A.DNE(20,QE,2,0,"th",29)(21,mE,4,4,"td",23),A.bVm(),A.qex(22,30),A.DNE(23,ME,2,0,"th",22)(24,pE,2,1,"td",23),A.bVm(),A.qex(25,31),A.DNE(26,IE,2,0,"th",22)(27,DE,2,1,"td",23),A.bVm(),A.qex(28,32),A.DNE(29,FE,6,0,"th",33)(30,yE,3,0,"td",34),A.bVm(),A.qex(31,35),A.DNE(32,vE,4,3,"td",36),A.bVm(),A.DNE(33,RE,1,3,"tr",37)(34,SE,1,0,"tr",38)(35,NE,1,0,"tr",39),A.k0s()()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(null==e.apiCallStatus?null:e.apiCallStatus.status)===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",e.tableSetting.sortBy)("matSortDirection",e.tableSetting.sortOrder)("dataSource",e.failedLocalForwardingEvents),A.R7$(31),A.Y8G("matFooterRowDef",A.lJ4(7,iE)),A.R7$(),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function PE(n,l){if(1&n&&A.nrm(0,"mat-paginator",58),2&n){const e=A.XpG();A.Y8G("pageSize",e.pageSize)("pageSizeOptions",e.pageSizeOptions)("showFirstLastButtons",e.screenSize!==e.screenSizeEnum.XS)}}let UE=(()=>{var n;class l{constructor(i,o,r,iA,ne){this.logger=i,this.commonService=o,this.store=r,this.datePipe=iA,this.camelCaseWithReplace=ne,this.faExclamationTriangle=v.zpE,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="routing",this.tableSetting={tableId:"local_failed",recordsPerPage:B.md,sortBy:"received_time",sortOrder:B.oi.DESCENDING},this.CLNFailReason=B.iI,this.failedLocalEvents=[],this.errorMessage="",this.displayedColumns=[],this.failedLocalForwardingEvents=new z.I6([]),this.selFilter="",this.totalLocalFailedTransactions=0,this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.apiCallStatus=null,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.dispatch((0,VA.uK)({payload:{status:B.xk.LOCAL_FAILED}})),this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),this.store.select(tA.aJ).pipe((0,I.Q)(this.unSubs[1])).subscribe(i=>{this.errorMessage="",this.apiCallStatus=i.apiCallStatus,this.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=this.apiCallStatus.message?"object"==typeof this.apiCallStatus.message?JSON.stringify(this.apiCallStatus.message):this.apiCallStatus.message:""),this.totalLocalFailedTransactions=i.localFailedForwardingHistory.totalForwards||0,this.failedLocalEvents=i.localFailedForwardingHistory.listForwards||[],this.failedLocalEvents&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents),this.logger.info(i)})}ngAfterViewInit(){this.failedLocalEvents.length>0&&this.loadLocalfailedLocalEventsTable(this.failedLocalEvents)}onFailedLocalEventClick(i){this.store.dispatch((0,C.xO)({payload:{data:{type:B.A$.INFORMATION,alertTitle:"Local Failed Event Information",message:[[{key:"received_time",value:i.received_time,title:"Received Time",width:50,type:B.UN.DATE_TIME},{key:"in_channel_alias",value:i.in_channel_alias,title:"Inbound Channel",width:50,type:B.UN.STRING}],[{key:"in_msatoshi",value:i.in_msat,title:"Amount In (mSats)",width:100,type:B.UN.NUMBER}],[{key:"failreason",value:i.failreason?this.CLNFailReason[i.failreason]:"",title:"Reason for Failure",width:100,type:B.UN.STRING}]]}}}))}applyFilter(){this.failedLocalForwardingEvents.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column,"_"):this.commonService.titleCase(i)}setFilterPredicate(){this.failedLocalForwardingEvents.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.received_time?this.datePipe.transform(new Date(1e3*i.received_time),"dd/MMM/y HH:mm")?.toLowerCase():"")+(i.in_channel_alias?i.in_channel_alias.toLowerCase():"")+(i.failreason&&this.CLNFailReason[i.failreason]?this.CLNFailReason[i.failreason].toLowerCase():"")+(i.in_msat?i.in_msat:"");break;case"received_time":r=this.datePipe.transform(new Date(1e3*(i.received_time||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"in_msatoshi":r=(+(i.in_msat||0)/1e3).toString()||"";break;case"failreason":r=i?.failreason?this.CLNFailReason[i?.failreason]:"";break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return"failreason"===this.selFilterBy?0===r.indexOf(o):r.includes(o)}}loadLocalfailedLocalEventsTable(i){this.failedLocalForwardingEvents=new z.I6([...i]),this.failedLocalForwardingEvents.sort=this.sort,this.failedLocalForwardingEvents.sortingDataAccessor=(o,r)=>{switch(r){case"in_msatoshi":return o.in_msat;case"failreason":return o.failreason?this.CLNFailReason[o.failreason]:"";default:return o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null}},this.failedLocalForwardingEvents.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.failedLocalForwardingEvents)}onDownloadCSV(){this.failedLocalForwardingEvents&&this.failedLocalForwardingEvents.data&&this.failedLocalForwardingEvents.data.length>0&&this.commonService.downloadFile(this.failedLocalForwardingEvents.data,"Local-failed-transactions")}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(L.h),A.rXU(AA.il),A.rXU(de.vh),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-local-failed-history"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Local failed events")}])],decls:5,vars:4,consts:[["table",""],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x"],["class","p-2 error-border my-2",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100","class","table-container",3,"perfectScrollbar",4,"ngIf"],["class","mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons",4,"ngIf"],[1,"p-2","error-border","my-2"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-warn","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],[3,"value"],["fxLayout","column","fxLayoutAlign","start center","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","fxFlex","100","matSort","",1,"overflow-auto",3,"matSortActive","matSortDirection","dataSource"],["matColumnDef","received_time"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","in_channel"],["matColumnDef","in_channel_alias"],["matColumnDef","out_channel"],["matColumnDef","out_channel_alias"],["matColumnDef","in_msatoshi"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","style"],["matColumnDef","failreason"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_event"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"]],template:function(o,r){1&o&&(A.j41(0,"div",1),A.DNE(1,rE,2,1,"div",2)(2,oE,18,5,"div",3)(3,TE,36,8,"div",4)(4,PE,1,3,"mat-paginator",5),A.k0s()),2&o&&(A.R7$(),A.Y8G("ngIf",""!==r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage),A.R7$(),A.Y8G("ngIf",""===r.errorMessage))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.me,hA.BC,hA.vS,P.aY,fA.$z,UA.fg,yA.rl,yA.nJ,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,H.iy,M.ZF,M.Ld,de.QX,de.vh],encapsulation:2}))}return n(),l})();const LE=["form"];function GE(n,l){1&n&&A.eu8(0)}function zE(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Requested amount is required."),A.k0s())}function kE(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Fee rate is required."),A.k0s())}function HE(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Local amount is required."),A.k0s())}function jE(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Local amount must be greater than or equal to 20,000 Sats. It's required to cover the channel force close fee, if needed."),A.k0s())}function OE(n,l){if(1&n&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.SpI("Local amount must be less than or equal to ",e.totalBalance,".")}}function JE(n,l){if(1&n&&(A.j41(0,"span"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.channelConnectionError)}}function _E(n,l){if(1&n&&(A.j41(0,"div",27),A.nrm(1,"fa-icon",28),A.DNE(2,JE,2,1,"span",19),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("icon",e.faExclamationTriangle),A.R7$(),A.Y8G("ngIf",""!==e.channelConnectionError)}}function VE(n,l){1&n&&(A.j41(0,"th",47),A.EFF(1,"Type"),A.k0s())}function WE(n,l){if(1&n&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.type)}}function KE(n,l){1&n&&(A.j41(0,"th",47),A.EFF(1,"Address"),A.k0s())}function XE(n,l){if(1&n&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.address)}}function ZE(n,l){1&n&&(A.j41(0,"th",47),A.EFF(1,"Port"),A.k0s())}function qE(n,l){if(1&n&&(A.j41(0,"td",48),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e?null:e.port)}}function $E(n,l){1&n&&A.nrm(0,"tr",49)}function Aw(n,l){1&n&&A.nrm(0,"tr",50)}function ew(n,l){if(1&n&&(A.j41(0,"mat-expansion-panel",30)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span"),A.EFF(4,"Node: \xa0"),A.k0s(),A.j41(5,"strong",31),A.EFF(6),A.k0s()()(),A.j41(7,"div",13)(8,"div",6)(9,"div",7)(10,"h4",32),A.EFF(11,"Pubkey"),A.k0s(),A.j41(12,"span",33),A.EFF(13),A.k0s()()(),A.nrm(14,"mat-divider",34),A.j41(15,"div",6)(16,"div",7)(17,"h4",32),A.EFF(18,"Last Timestamp"),A.k0s(),A.j41(19,"span",35),A.EFF(20),A.nI1(21,"date"),A.k0s()()(),A.nrm(22,"mat-divider",34),A.j41(23,"div",36)(24,"h4",37),A.EFF(25,"Addresses"),A.k0s(),A.j41(26,"div",38)(27,"table",39,5),A.qex(29,40),A.DNE(30,VE,2,0,"th",41)(31,WE,2,1,"td",42),A.bVm(),A.qex(32,43),A.DNE(33,KE,2,0,"th",41)(34,XE,2,1,"td",42),A.bVm(),A.qex(35,44),A.DNE(36,ZE,2,0,"th",41)(37,qE,2,1,"td",42),A.bVm(),A.DNE(38,$E,1,0,"tr",45)(39,Aw,1,0,"tr",46),A.k0s()()()()()),2&n){const e=A.XpG(2);A.R7$(6),A.JRh((null==e.node?null:e.node.alias)||(null==e.node?null:e.node.nodeid)),A.R7$(7),A.JRh(e.node.nodeid),A.R7$(7),A.JRh(A.i5U(21,6,1e3*e.node.last_timestamp,"dd/MMM/y HH:mm")),A.R7$(7),A.Y8G("dataSource",e.node.addresses),A.R7$(11),A.Y8G("matHeaderRowDef",e.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",e.displayedColumns)}}function tw(n,l){if(1&n&&A.DNE(0,ew,40,9,"mat-expansion-panel",29),2&n){const e=A.XpG();A.Y8G("ngIf",e.node)}}let nw=(()=>{var n;class l{constructor(i,o,r,iA){this.dialogRef=i,this.data=o,this.actions=r,this.store=iA,this.faExclamationTriangle=v.zpE,this.totalBalance=0,this.node={},this.requestedAmount=0,this.feeRate=0,this.localAmount=0,this.channelConnectionError="",this.displayedColumns=["type","address","port"],this.unSubs=[new g.B,new g.B]}ngOnInit(){this.alertTitle=this.data.alertTitle||"",this.totalBalance=this.data.message?.balance||0,this.node=this.data.message?.node||{},this.requestedAmount=this.data.message?.requestedAmount||0,this.feeRate=this.data.message?.feeRate||0,this.localAmount=this.data.message?.localAmount||0,this.actions.pipe((0,I.Q)(this.unSubs[0]),(0,nA.p)(i=>i.type===B.TC.UPDATE_API_CALL_STATUS_CLN||i.type===B.TC.FETCH_CHANNELS_CLN)).subscribe(i=>{i.type===B.TC.UPDATE_API_CALL_STATUS_CLN&&i.payload.status===B.wn.ERROR&&"SaveNewChannel"===i.payload.action&&(this.channelConnectionError=i.payload.message),i.type===B.TC.FETCH_CHANNELS_CLN&&this.dialogRef.close()})}onClose(){this.dialogRef.close(!1)}resetData(){this.form.resetForm(),this.form.controls.ramount.setValue(this.data.message?.requestedAmount),this.form.controls.feerate.setValue(this.data.message?.feeRate),this.form.controls.lamount.setValue(this.data.message?.localAmount),this.calculateFee(),this.channelConnectionError=""}calculateFee(){this.node.channel_opening_fee=+(this.node.option_will_fund?.lease_fee_base_msat||0)/1e3+this.requestedAmount*+(this.node.option_will_fund?.lease_fee_basis||0)/1e4+ +(this.node.option_will_fund?.funding_weight||0)/4*this.feeRate}onOpenChannel(){if(!this.node||!this.node.option_will_fund||!this.requestedAmount||!this.feeRate||!this.localAmount||this.localAmount<2e4)return!0;const i={peerId:this.node.nodeid||"",amount:this.localAmount.toString(),feeRate:this.feeRate+"perkb",requestAmount:this.requestedAmount.toString(),compactLease:this.node.option_will_fund.compact_lease,announce:!0};this.store.dispatch((0,VA.vL)({payload:i}))}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(wA.CP),A.rXU(wA.Vh),A.rXU(kA.En),A.rXU(AA.il))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-open-liquidity-channel"]],viewQuery:function(o,r){if(1&o&&A.GBs(LE,7),2&o){let iA;A.mGM(iA=A.lsd())&&(r.form=iA.first)}},standalone:!1,decls:54,vars:24,consts:[["form","ngForm"],["ramount","ngModel"],["feeRt","ngModel"],["lamount","ngModel"],["nodeDetailsExpansionBlock",""],["table",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","6","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[4,"ngTemplateOutlet"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-sm","space-between center","fxLayout.gt-sm","row wrap"],["fxLayout","column","fxFlex","30","fxLayoutAlign","start end"],["autoFocus","","matInput","","type","number","tabindex","1","required","","name","ramount",3,"ngModelChange","keyup","step","min","ngModel"],["matSuffix",""],[4,"ngIf"],["matInput","","type","number","tabindex","2","required","","name","feerate",3,"ngModelChange","keyup","step","min","ngModel"],["matInput","","type","number","tabindex","3","required","","name","lamount",3,"ngModelChange","step","min","max","ngModel"],["fxFlex","100",1,"alert","alert-info","mt-4"],["fxFlex","100","class","alert alert-danger mt-2",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["mat-button","","color","primary","tabindex","4",1,"mr-1",3,"click"],["autoFocus","","mat-button","","color","primary","tabindex","5",3,"click"],["fxFlex","100",1,"alert","alert-danger","mt-2"],[1,"mr-1","alert-icon",3,"icon"],["class","flat-expansion-panel mt-1 mb-2","expanded","false",4,"ngIf"],["expanded","false",1,"flat-expansion-panel","mt-1","mb-2"],[1,"font-weight-900"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],[1,"overflow-wrap","foreground-secondary-text"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxFlex","100",1,"font-bold-500","mb-1"],[1,"table-container"],["mat-table","","matSort","",1,"overflow-auto",3,"dataSource"],["matColumnDef","type"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","address"],["matColumnDef","port"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",6)(1,"div",7)(2,"mat-card-header",8)(3,"div",9)(4,"span",10),A.EFF(5),A.k0s()(),A.j41(6,"button",11),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onClose())}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",12)(9,"form",13,0),A.DNE(11,GE,1,0,"ng-container",14),A.j41(12,"div",15)(13,"mat-form-field",16)(14,"mat-label"),A.EFF(15,"Requested Amount"),A.k0s(),A.j41(16,"input",17,1),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.requestedAmount,re)||(r.requestedAmount=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.calculateFee())}),A.k0s(),A.j41(18,"span",18),A.EFF(19," Sats "),A.k0s(),A.DNE(20,zE,2,0,"mat-error",19),A.k0s(),A.j41(21,"mat-form-field",16)(22,"mat-label"),A.EFF(23,"Fee Rate"),A.k0s(),A.j41(24,"input",20,2),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.feeRate,re)||(r.feeRate=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.calculateFee())}),A.k0s(),A.j41(26,"span",18),A.EFF(27," Sats/vByte "),A.k0s(),A.DNE(28,kE,2,0,"mat-error",19),A.k0s(),A.j41(29,"mat-form-field",16)(30,"mat-label"),A.EFF(31,"Local Amount"),A.k0s(),A.j41(32,"input",21,3),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.localAmount,re)||(r.localAmount=re),w.Njj(re)}),A.k0s(),A.j41(34,"mat-hint"),A.EFF(35),A.nI1(36,"number"),A.k0s(),A.j41(37,"span",18),A.EFF(38," Sats "),A.k0s(),A.DNE(39,HE,2,0,"mat-error",19)(40,jE,2,0,"mat-error",19)(41,OE,2,1,"mat-error",19),A.k0s()(),A.j41(42,"div",22)(43,"span"),A.EFF(44),A.nI1(45,"number"),A.k0s()(),A.DNE(46,_E,3,2,"div",23),A.j41(47,"div",24)(48,"button",25),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.resetData())}),A.EFF(49,"Clear"),A.k0s(),A.j41(50,"button",26),A.bIt("click",function(){return w.eBV(iA),w.Njj(r.onOpenChannel())}),A.EFF(51,"Execute"),A.k0s()()()()()(),A.DNE(52,tw,1,1,"ng-template",null,4,A.C5r)}if(2&o){const iA=A.sdS(17),ne=A.sdS(25),re=A.sdS(33),ln=A.sdS(53);A.R7$(5),A.JRh(r.alertTitle),A.R7$(6),A.Y8G("ngTemplateOutlet",ln),A.R7$(5),A.Y8G("step",1e4)("min",0),A.R50("ngModel",r.requestedAmount),A.R7$(4),A.Y8G("ngIf",null==iA.errors?null:iA.errors.required),A.R7$(4),A.Y8G("step",10)("min",0),A.R50("ngModel",r.feeRate),A.R7$(4),A.Y8G("ngIf",null==ne.errors?null:ne.errors.required),A.R7$(4),A.Y8G("step",1e4)("min",2e4)("max",r.totalBalance),A.R50("ngModel",r.localAmount),A.R7$(3),A.SpI("Remaining: ",A.bMT(36,20,r.totalBalance-(r.localAmount?r.localAmount:0))),A.R7$(4),A.Y8G("ngIf",null==re.errors?null:re.errors.required),A.R7$(),A.Y8G("ngIf",null==re.errors?null:re.errors.min),A.R7$(),A.Y8G("ngIf",null==re.errors?null:re.errors.max),A.R7$(3),A.SpI("Total cost to lease ",A.bMT(45,22,r.node.channel_opening_fee)," (Sats)"),A.R7$(2),A.Y8G("ngIf",""!==r.channelConnectionError)}},dependencies:[de.bT,de.T3,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.VZ,hA.zX,hA.vS,hA.cV,P.aY,fA.$z,QA.m2,QA.MM,gi.GK,gi.Z2,gi.WN,UA.fg,yA.rl,yA.nJ,yA.MV,yA.TL,yA.yw,sn.q,Q.DJ,Q.sA,Q.UI,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.KS,z.$R,z.YZ,z.NB,cA.N,Vn.z,J.V,de.QX,de.vh],styles:[".open-inputs-box[_ngcontent-%COMP%]{padding:1.2rem 2.4rem .8rem!important}"]}))}return n(),l})();var iw=We(6471);const sw=()=>["all"],rw=n=>({"error-border":n}),aw=()=>["no_lqNode"],Oc=n=>({width:n}),ow=n=>({"display-none":n});function lw(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Channel amount is required."),A.k0s())}function cw(n,l){1&n&&(A.j41(0,"mat-error"),A.EFF(1,"Channel opening fee rate is required."),A.k0s())}function gw(n,l){if(1&n&&(A.j41(0,"mat-option",49),A.EFF(1),A.k0s()),2&n){const e=l.$implicit,i=A.XpG();A.Y8G("value",e),A.R7$(),A.JRh(i.getLabel(e))}}function Bw(n,l){1&n&&A.nrm(0,"mat-progress-bar",50)}function fw(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Alias"),A.k0s())}function uw(n,l){if(1&n&&(A.j41(0,"mat-chip",57),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.SpI(" ","tor"===e?"Tor":"ipv"===e?"Clearnet":e," ")}}function hw(n,l){if(1&n&&(A.j41(0,"td",52)(1,"div",53)(2,"span",54),A.EFF(3),A.j41(4,"mat-chip-list",55),A.DNE(5,uw,2,1,"mat-chip",56),A.k0s()()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(3,Oc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.SpI(" ",null==e?null:e.alias," "),A.R7$(2),A.Y8G("ngForOf",e.address_types)}}function Ew(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Node ID"),A.k0s())}function ww(n,l){if(1&n&&(A.j41(0,"td",52)(1,"div",53)(2,"span",58),A.EFF(3),A.k0s()()()),2&n){const e=l.$implicit,i=A.XpG();A.R7$(),A.Y8G("ngStyle",A.eq3(2,Oc,i.screenSize===i.screenSizeEnum.XS?"6rem":i.colWidth)),A.R7$(2),A.JRh(null==e?null:e.nodeid)}}function Cw(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Last Announcement At"),A.k0s())}function dw(n,l){if(1&n&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"date"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*(null==e?null:e.last_timestamp),"dd/MMM/y HH:mm")||"-")}}function Qw(n,l){1&n&&(A.j41(0,"th",51),A.EFF(1,"Compact Lease"),A.k0s())}function mw(n,l){if(1&n&&(A.j41(0,"td",52),A.EFF(1),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.JRh(null==e||null==e.option_will_fund?null:e.option_will_fund.compact_lease)}}function Mw(n,l){1&n&&(A.j41(0,"th",59),A.EFF(1," Lease Fee"),A.k0s())}function pw(n,l){if(1&n&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Lme(" ",A.i5U(2,2,(null==e||null==e.option_will_fund?null:e.option_will_fund.lease_fee_base_msat)/1e3,"1.0-0")," Sats + ",A.i5U(3,5,(null==e||null==e.option_will_fund?null:e.option_will_fund.lease_fee_basis)/100,"1.2-2"),"% ")}}function Iw(n,l){1&n&&(A.j41(0,"th",59),A.EFF(1," Routing Fee"),A.k0s())}function Dw(n,l){if(1&n&&(A.j41(0,"td",52),A.EFF(1),A.nI1(2,"number"),A.nI1(3,"number"),A.k0s()),2&n){const e=l.$implicit;A.R7$(),A.Lme(" ",A.i5U(2,2,(null==e||null==e.option_will_fund?null:e.option_will_fund.channel_fee_max_base_msat)/1e3,"1.0-0")," Sats + ",A.i5U(3,5,1e3*(null==e||null==e.option_will_fund?null:e.option_will_fund.channel_fee_max_proportional_thousandths),"1.0-0")," ppm ")}}function Fw(n,l){1&n&&(A.j41(0,"th",60),A.EFF(1,"Channel Opening Fee (Sats)"),A.k0s())}function yw(n,l){if(1&n&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,e.channel_opening_fee,"1.0-0")," ")}}function xw(n,l){1&n&&(A.j41(0,"th",60),A.EFF(1,"Funding Weight"),A.k0s())}function Yw(n,l){if(1&n&&(A.j41(0,"td",52)(1,"span",61),A.EFF(2),A.nI1(3,"number"),A.k0s()()),2&n){const e=l.$implicit;A.R7$(2),A.SpI(" ",A.i5U(3,1,null==e||null==e.option_will_fund?null:e.option_will_fund.funding_weight,"1.0-0")," ")}}function bw(n,l){if(1&n){const e=A.RV6();A.j41(0,"th",59)(1,"div",62)(2,"mat-select",63),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",64),A.bIt("click",function(){w.eBV(e);const o=A.XpG();return w.Njj(o.onDownloadCSV())}),A.EFF(5,"Download CSV"),A.k0s()()()()}}function vw(n,l){if(1&n){const e=A.RV6();A.j41(0,"td",65)(1,"div",62)(2,"mat-select",63),A.nrm(3,"mat-select-trigger"),A.j41(4,"mat-option",64),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onViewLeaseInfo(o))}),A.EFF(5,"View Info"),A.k0s(),A.j41(6,"mat-option",64),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.onOpenChannel(o))}),A.EFF(7,"Open Channel"),A.k0s(),A.j41(8,"mat-option",64),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.viewLeaseOn(o,"LN"))}),A.EFF(9,"View on Lnrouter"),A.k0s(),A.j41(10,"mat-option",64),A.bIt("click",function(){const o=w.eBV(e).$implicit,r=A.XpG();return w.Njj(r.viewLeaseOn(o,"AM"))}),A.EFF(11,"View on Amboss"),A.k0s()()()()}}function Rw(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"No node with liquidity."),A.k0s())}function Sw(n,l){1&n&&(A.j41(0,"p"),A.EFF(1,"Getting nodes with liquidity..."),A.k0s())}function Nw(n,l){if(1&n&&(A.j41(0,"p"),A.EFF(1),A.k0s()),2&n){const e=A.XpG(2);A.R7$(),A.JRh(e.errorMessage)}}function Tw(n,l){if(1&n&&(A.j41(0,"td",66),A.DNE(1,Rw,2,0,"p",17)(2,Sw,2,0,"p",17)(3,Nw,2,1,"p",17),A.k0s()),2&n){const e=A.XpG();A.R7$(),A.Y8G("ngIf",(!(null!=e.liquidityNodes&&e.liquidityNodes.data)||(null==e.liquidityNodes||null==e.liquidityNodes.data?null:e.liquidityNodes.data.length)<1)&&e.listNodesCallStatus===e.apiCallStatusEnum.COMPLETED),A.R7$(),A.Y8G("ngIf",(!(null!=e.liquidityNodes&&e.liquidityNodes.data)||(null==e.liquidityNodes||null==e.liquidityNodes.data?null:e.liquidityNodes.data.length)<1)&&e.listNodesCallStatus===e.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("ngIf",(!(null!=e.liquidityNodes&&e.liquidityNodes.data)||(null==e.liquidityNodes||null==e.liquidityNodes.data?null:e.liquidityNodes.data.length)<1)&&e.listNodesCallStatus===e.apiCallStatusEnum.ERROR)}}function Pw(n,l){if(1&n&&A.nrm(0,"tr",67),2&n){const e=A.XpG();A.Y8G("ngClass",A.eq3(1,ow,(null==e.liquidityNodes?null:e.liquidityNodes.data)&&(null==e.liquidityNodes||null==e.liquidityNodes.data?null:e.liquidityNodes.data.length)>0))}}function Uw(n,l){1&n&&A.nrm(0,"tr",68)}function Lw(n,l){1&n&&A.nrm(0,"tr",69)}let Gw=(()=>{var n;class l{constructor(i,o,r,iA,ne,re,ln){this.logger=i,this.store=o,this.dataService=r,this.commonService=iA,this.rtlEffects=ne,this.datePipe=re,this.camelCaseWithReplace=ln,this.nodePageDefs=B.Jd,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="liquidity_ads",this.tableSetting={tableId:"liquidity_ads",recordsPerPage:B.md,sortBy:"channel_opening_fee",sortOrder:B.oi.ASCENDING},this.askTooltipMsg="",this.nodesTooltipMsg="",this.displayedColumns=[],this.faBullhorn=v.e4L,this.faExclamationTriangle=v.zpE,this.faUsers=v.gdJ,this.totalBalance=0,this.channelAmount=1e5,this.channel_opening_feeRate=10,this.node_capacity=5e5,this.channel_count=5,this.liquidityNodesData=[],this.liquidityNodes=new z.I6([]),this.pageSize=B.md,this.pageSizeOptions=B.xp,this.screenSize="",this.screenSizeEnum=B.f7,this.errorMessage="",this.selFilter="",this.listNodesCallStatus=B.wn.INITIATED,this.apiCallStatusEnum=B.wn,this.unSubs=[new g.B,new g.B,new g.B,new g.B,new g.B,new g.B],this.askTooltipMsg="Specify the liquidity requirements for your node: \n 1. Channel Amount - Amount in Sats you need on the channel opened to your node \n 2. Channel opening fee rate - Rate in Sats/vByte that you are willing to pay to open the channel to you",this.nodesTooltipMsg="These nodes are advertising their liquidity offering on the network.\nYou should pay attention to the following aspects to evaluate each node offer: \n- The total bitcoin deployed on the node, the more the better\n",this.nodesTooltipMsg=this.nodesTooltipMsg+"- The number of channels open on the node, the more the better\n- The channel open fee which the node will charge from you\n- The routing fee which the node will charge on the payments, the lesser the better\n- The reliability of the node, ideally uptime. Refer to the information being provided by the node explorers",this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(tA.av).pipe((0,I.Q)(this.unSubs[0])).subscribe(i=>{this.errorMessage="",i.apiCallStatus.status===B.wn.ERROR&&(this.errorMessage=i.apiCallStatus.message||""),this.tableSetting=i.pageSettings.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId)||B.mu.find(o=>o.pageId===this.PAGE_ID)?.tables.find(o=>o.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===B.f7.XS||this.screenSize===B.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:B.md,this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)}),(0,Va.z)([this.store.select(tA.kQ),this.dataService.listNetworkNodes({liquidity_ads:!0})]).pipe((0,I.Q)(this.unSubs[1])).subscribe({next:([i,o])=>{this.information=i.information,this.totalBalance=i.balance.totalBalance||0,this.logger.info(i),o&&!o.length&&(o=[]),this.logger.info("Received Liquidity Ads Enabled Nodes: "+JSON.stringify(o)),this.listNodesCallStatus=B.wn.COMPLETED,o.forEach(r=>{r.address_types=Array.from(new Set(r.addresses?.reduce((ne,re)=>((re.type?.includes("ipv")||re.type?.includes("tor"))&&ne.push(re.type?.substring(0,3)),ne),[])))}),this.liquidityNodesData=o.filter(r=>r.nodeid!==this.information.id),this.onCalculateOpeningFee(),this.loadLiqNodesTable(this.liquidityNodesData)},error:i=>{this.logger.error("Liquidity Ads Nodes Error: "+JSON.stringify(i)),this.listNodesCallStatus=B.wn.ERROR,this.errorMessage=JSON.stringify(i)}})}onCalculateOpeningFee(){this.liquidityNodesData.forEach(i=>{i.option_will_fund&&(i.channel_opening_fee=+(i.option_will_fund.lease_fee_base_msat||0)/1e3+this.channelAmount*+(i.option_will_fund.lease_fee_basis||0)/1e4+ +(i.option_will_fund.funding_weight||0)/4*this.channel_opening_feeRate)}),this.paginator&&this.paginator.firstPage()}onFilter(){}applyFilter(){this.liquidityNodes.filter=this.selFilter.trim().toLowerCase()}getLabel(i){const o=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(r=>r.column===i);return o?o.label?o.label:this.camelCaseWithReplace.transform(o.column||"","_"):this.commonService.titleCase(i)}setFilterPredicate(){this.liquidityNodes.filterPredicate=(i,o)=>{let r="";switch(this.selFilterBy){case"all":r=(i.alias?i.alias.toLocaleLowerCase():"")+(i.channel_opening_fee?i.channel_opening_fee+" Sats":"")+(i.option_will_fund?.lease_fee_base_msat?i.option_will_fund?.lease_fee_base_msat/1e3+" Sats":"")+(i.option_will_fund?.lease_fee_basis?i.option_will_fund?.lease_fee_basis/100+"%":"")+(i.option_will_fund?.channel_fee_max_base_msat?i.option_will_fund?.channel_fee_max_base_msat/1e3+" Sats":"")+(i.option_will_fund?.channel_fee_max_proportional_thousandths?1e3*i.option_will_fund?.channel_fee_max_proportional_thousandths+" ppm":"")+(i.address_types?i.address_types.reduce((iA,ne)=>iA+("tor"===ne?" tor":"ipv"===ne?" clearnet":" "+ne.toLowerCase()),""):"");break;case"alias":r=(i?.alias?.toLowerCase()||" ")+i?.address_types?.reduce((iA,ne)=>iA+(ne?"ipv"===ne?"clearnet":ne:"")," ")||"";break;case"last_timestamp":r=this.datePipe.transform(new Date(1e3*(i.last_timestamp||0)),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;case"compact_lease":r=i?.option_will_fund?.compact_lease?.toLowerCase()||"";break;case"lease_fee":r=((i.option_will_fund?.lease_fee_base_msat||0)/1e3+" sats "||0)+((i.option_will_fund?.lease_fee_basis||0)/100+"%")||0;break;case"routing_fee":r=((i.option_will_fund?.channel_fee_max_base_msat||0)/1e3+" sats "||0)+(1e3*(i.option_will_fund?.channel_fee_max_proportional_thousandths||0)+" ppm")||0;break;default:r=typeof i[this.selFilterBy]>"u"?"":"string"==typeof i[this.selFilterBy]?i[this.selFilterBy].toLowerCase():"boolean"==typeof i[this.selFilterBy]?i[this.selFilterBy]?"yes":"no":i[this.selFilterBy].toString()}return r.includes(o)}}loadLiqNodesTable(i){this.liquidityNodes=new z.I6([...i]),this.liquidityNodes.sort=this.sort,this.liquidityNodes.sortingDataAccessor=(o,r)=>o[r]&&isNaN(o[r])?o[r].toLocaleLowerCase():o[r]?+o[r]:null,this.setFilterPredicate(),this.applyFilter(),this.liquidityNodes.paginator=this.paginator}viewLeaseOn(i,o){"LN"===o?window.open("https://lnrouter.app/node/"+i.nodeid,"_blank"):"AM"===o&&window.open("https://amboss.space/node/"+i.nodeid,"_blank")}onOpenChannel(i){this.store.dispatch((0,C.xO)({payload:{data:{alertTitle:"Open Channel",message:{node:i,balance:this.totalBalance,requestedAmount:this.channelAmount,feeRate:this.channel_opening_feeRate,localAmount:2e4},component:nw}}}))}onViewLeaseInfo(i){const o=i.addresses?.reduce((ne,re)=>(re.address&&re.address.length>40&&(re.address=re.address.substring(0,39)+"..."),ne.concat(JSON.stringify(re).replace("{","").replace("}","").replace(/:/g,": ").replace(/,/g,"        ").replace(/"/g,""))),[]),r=[];if(i.features&&""!==i.features.trim()){const ne=parseInt(i.features,16);B.TH.forEach(re=>{ne&1<{ne&&this.onOpenChannel(i)})}onDownloadCSV(){this.liquidityNodes.data&&this.liquidityNodes.data.length>0&&this.commonService.downloadFile(this.liquidityNodes.data,"LiquidityNodes")}onFilterReset(){this.node_capacity=0,this.channel_count=0}ngOnDestroy(){this.unSubs.forEach(i=>{i.next(null),i.complete()})}static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)(A.rXU(aA.gP),A.rXU(AA.il),A.rXU(Dt.u),A.rXU(L.h),A.rXU(b.H),A.rXU(de.vh),A.rXU(R.VD))},this.\u0275cmp=A.VBU({type:l,selectors:[["rtl-cln-liquidity-ads-list"]],viewQuery:function(o,r){if(1&o&&(A.GBs(pA.B4,5),A.GBs(H.iy,5)),2&o){let iA;A.mGM(iA=A.lsd())&&(r.sort=iA.first),A.mGM(iA=A.lsd())&&(r.paginator=iA.first)}},standalone:!1,features:[A.Jv_([{provide:OA.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:H.xX,useValue:(0,B.on)("Liquidity Ads")}])],decls:83,vars:26,consts:[["formAsk","ngForm"],["table",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],[1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","space-between stretch"],["fxFlex","100","fxLayout","column","fxLayoutAlign","start stretch","fxLayoutAlign.gt-sm","space-between stretch","fxLayout.gt-sm","row wrap"],["fxFlex.gt-xs","100","fxLayout","row",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayout.gt-sm","row wrap","fxFlex","100","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","30"],[1,"page-text"],["matTooltipPosition","above","matTooltipClass","pre-wrap",1,"info-icon","info-icon-primary",3,"matTooltip"],["fxLayout","column","fxFlex","34"],["autoFocus","","matInput","","name","channelAmount","tabindex","1","type","number","step","10000","required","",3,"ngModelChange","keyup","ngModel"],[4,"ngIf"],["matInput","","name","channel_opening_feeRate","type","number","step","10","tabindex","2","required","",3,"ngModelChange","keyup","ngModel"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-2"],["fxFlex","70"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","column","fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","alias"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","nodeid"],["matColumnDef","last_timestamp"],["matColumnDef","compact_lease"],["matColumnDef","lease_fee"],["mat-header-cell","",4,"matHeaderCellDef"],["matColumnDef","routing_fee"],["matColumnDef","channel_opening_fee"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","funding_weight"],["matColumnDef","actions"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_lqNode"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],[1,"ellipsis-parent",3,"ngStyle"],["fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center",1,"ellipsis-child"],["aria-label","Address Types",1,"ml-half"],["color","primary","selected","",4,"ngFor","ngForOf"],["color","primary","selected",""],[1,"ellipsis-child"],["mat-header-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-footer-cell","","colspan","4"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(o,r){if(1&o){const iA=A.RV6();A.j41(0,"div",2),A.nrm(1,"fa-icon",3),A.j41(2,"span",4),A.EFF(3,"Liquidity Ads"),A.k0s()(),A.j41(4,"div",5)(5,"mat-card")(6,"mat-card-content",6)(7,"div",7)(8,"form",8,0)(10,"div",9),A.nrm(11,"fa-icon",10),A.j41(12,"span"),A.EFF(13,"Ads should be supplemented with additional research of the node, before buying liquidity."),A.k0s()(),A.j41(14,"div",11)(15,"div",12)(16,"span",13),A.EFF(17,"Liquidity Ask"),A.k0s(),A.j41(18,"mat-icon",14),A.EFF(19,"info_outline"),A.k0s()(),A.j41(20,"mat-form-field",15)(21,"mat-label"),A.EFF(22,"Channel Amount (Sats)"),A.k0s(),A.j41(23,"input",16),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.channelAmount,re)||(r.channelAmount=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onCalculateOpeningFee())}),A.k0s(),A.DNE(24,lw,2,0,"mat-error",17),A.k0s(),A.j41(25,"mat-form-field",15)(26,"mat-label"),A.EFF(27,"Channel Opening Fee Rate (Sats/vByte)"),A.k0s(),A.j41(28,"input",18),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.channel_opening_feeRate,re)||(r.channel_opening_feeRate=re),w.Njj(re)}),A.bIt("keyup",function(){return w.eBV(iA),w.Njj(r.onCalculateOpeningFee())}),A.k0s(),A.DNE(29,cw,2,0,"mat-error",17),A.k0s()()(),A.j41(30,"div",19)(31,"div",20),A.nrm(32,"fa-icon",3),A.j41(33,"span",4),A.EFF(34,"Liquidity Providing Peers"),A.k0s()(),A.j41(35,"div",21)(36,"mat-form-field",22)(37,"mat-label"),A.EFF(38,"Filter By"),A.k0s(),A.j41(39,"mat-select",23),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilterBy,re)||(r.selFilterBy=re),w.Njj(re)}),A.bIt("selectionChange",function(){return w.eBV(iA),r.selFilter="",w.Njj(r.applyFilter())}),A.j41(40,"perfect-scrollbar"),A.DNE(41,gw,2,2,"mat-option",24),A.k0s()()(),A.j41(42,"mat-form-field",22)(43,"mat-label"),A.EFF(44,"Filter"),A.k0s(),A.j41(45,"input",25),A.mxI("ngModelChange",function(re){return w.eBV(iA),A.DH7(r.selFilter,re)||(r.selFilter=re),w.Njj(re)}),A.bIt("input",function(){return w.eBV(iA),w.Njj(r.applyFilter())})("keyup",function(){return w.eBV(iA),w.Njj(r.applyFilter())}),A.k0s()()()(),A.j41(46,"div",26),A.DNE(47,Bw,1,0,"mat-progress-bar",27),A.j41(48,"table",28,1),A.qex(50,29),A.DNE(51,fw,2,0,"th",30)(52,hw,6,5,"td",31),A.bVm(),A.qex(53,32),A.DNE(54,Ew,2,0,"th",30)(55,ww,4,4,"td",31),A.bVm(),A.qex(56,33),A.DNE(57,Cw,2,0,"th",30)(58,dw,3,4,"td",31),A.bVm(),A.qex(59,34),A.DNE(60,Qw,2,0,"th",30)(61,mw,2,1,"td",31),A.bVm(),A.qex(62,35),A.DNE(63,Mw,2,0,"th",36)(64,pw,4,8,"td",31),A.bVm(),A.qex(65,37),A.DNE(66,Iw,2,0,"th",36)(67,Dw,4,8,"td",31),A.bVm(),A.qex(68,38),A.DNE(69,Fw,2,0,"th",39)(70,yw,4,4,"td",31),A.bVm(),A.qex(71,40),A.DNE(72,xw,2,0,"th",39)(73,Yw,4,4,"td",31),A.bVm(),A.qex(74,41),A.DNE(75,bw,6,0,"th",36)(76,vw,12,0,"td",42),A.bVm(),A.qex(77,43),A.DNE(78,Tw,4,3,"td",44),A.bVm(),A.DNE(79,Pw,1,3,"tr",45)(80,Uw,1,0,"tr",46)(81,Lw,1,0,"tr",47),A.k0s()(),A.nrm(82,"mat-paginator",48),A.k0s()()()()}2&o&&(A.R7$(),A.Y8G("icon",r.faBullhorn),A.R7$(10),A.Y8G("icon",r.faExclamationTriangle),A.R7$(7),A.Y8G("matTooltip",r.askTooltipMsg),A.R7$(5),A.R50("ngModel",r.channelAmount),A.R7$(),A.Y8G("ngIf",!r.channelAmount),A.R7$(4),A.R50("ngModel",r.channel_opening_feeRate),A.R7$(),A.Y8G("ngIf",!r.channel_opening_feeRate),A.R7$(3),A.Y8G("icon",r.faUsers),A.R7$(7),A.R50("ngModel",r.selFilterBy),A.R7$(2),A.Y8G("ngForOf",A.lJ4(22,sw).concat(r.displayedColumns.slice(0,-1))),A.R7$(4),A.R50("ngModel",r.selFilter),A.R7$(2),A.Y8G("ngIf",r.listNodesCallStatus===r.apiCallStatusEnum.INITIATED),A.R7$(),A.Y8G("matSortActive",r.tableSetting.sortBy)("matSortDirection",r.tableSetting.sortOrder)("dataSource",r.liquidityNodes)("ngClass",A.eq3(23,rw,""!==r.errorMessage)),A.R7$(31),A.Y8G("matFooterRowDef",A.lJ4(25,aw)),A.R7$(),A.Y8G("matHeaderRowDef",r.displayedColumns),A.R7$(),A.Y8G("matRowDefColumns",r.displayedColumns),A.R7$(),A.Y8G("pageSize",r.pageSize)("pageSizeOptions",r.pageSizeOptions)("showFirstLastButtons",r.screenSize!==r.screenSizeEnum.XS))},dependencies:[de.YU,de.Sq,de.bT,de.B3,hA.qT,hA.me,hA.Q0,hA.BC,hA.cb,hA.YS,hA.vS,hA.cV,P.aY,QA.RN,QA.m2,oA.An,UA.fg,yA.rl,yA.nJ,yA.TL,eA.HM,Q.DJ,Q.sA,Q.UI,dA.PW,dA.eI,iw.Jl,OA.VO,OA.$2,xA.wT,pA.B4,pA.aE,z.Zl,z.tL,z.ji,z.cC,z.YV,z.iL,z.Zq,z.xW,z.KS,z.$R,z.Qo,z.YZ,z.NB,z.iF,HA.oV,H.iy,M.ZF,M.Ld,cA.N,de.QX,de.vh],encapsulation:2}))}return n(),l})();const zw=[{path:"",component:t,children:[{path:"",pathMatch:"full",redirectTo:"home"},{path:"home",component:Yr,canActivate:[(0,Vt.Wz)()]},{path:"onchain",component:So,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"receive/utxos"},{path:"receive/:selTab",component:xl,canActivate:[(0,Vt.Wz)()]},{path:"send/:selTab",component:Yl,data:{sweepAll:!1},canActivate:[(0,Vt.Wz)()]},{path:"sweep/:selTab",component:Yl,data:{sweepAll:!0},canActivate:[(0,Vt.Wz)()]}]},{path:"connections",component:To,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"channels"},{path:"channels",component:Wl,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"open"},{path:"open",component:Ut,canActivate:[(0,Vt.Wz)()]},{path:"pending",component:r0,canActivate:[(0,Vt.Wz)()]},{path:"activehtlcs",component:Du,canActivate:[(0,Vt.Wz)()]}]},{path:"peers",component:P0,data:{sweepAll:!1},canActivate:[(0,Vt.Wz)()]}]},{path:"liquidityads",component:Gw,canActivate:[(0,Vt.Wz)()]},{path:"transactions",component:Uo,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"payments"},{path:"payments",component:Z,canActivate:[(0,Vt.Wz)()]},{path:"invoices",component:Ot,canActivate:[(0,Vt.Wz)()]},{path:"offers",component:xh,canActivate:[(0,Vt.Wz)()]},{path:"offrBookmarks",component:tE,canActivate:[(0,Vt.Wz)()]}]},{path:"messages",component:Fl,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"sign"},{path:"sign",component:rg,canActivate:[(0,Vt.Wz)()]},{path:"verify",component:ug,canActivate:[(0,Vt.Wz)()]}]},{path:"routing",component:Go,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"forwardinghistory"},{path:"forwardinghistory",component:Sc,canActivate:[(0,Vt.Wz)()]},{path:"failedtransactions",component:GB,canActivate:[(0,Vt.Wz)()]},{path:"localfail",component:UE,canActivate:[(0,Vt.Wz)()]},{path:"routingpeers",component:Sf,canActivate:[(0,Vt.Wz)()]}]},{path:"reports",component:yu,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"routingreport"},{path:"routingreport",component:Tu,canActivate:[(0,Vt.Wz)()]},{path:"transactions",component:Ou,canActivate:[(0,Vt.Wz)()]}]},{path:"graph",component:Vu,canActivate:[(0,Vt.Wz)()],children:[{path:"",pathMatch:"full",redirectTo:"lookups"},{path:"lookups",component:rl,canActivate:[(0,Vt.Wz)()]},{path:"queryroutes",component:ig,canActivate:[(0,Vt.Wz)()]}]},{path:"rates",component:Fc,canActivate:[(0,Vt.Wz)()]},{path:"**",component:Ju.X},{path:"network",redirectTo:"rates"},{path:"wallet",redirectTo:"home"},{path:"backup",redirectTo:"home"}]}],kw=Sn.iI.forChild(zw);var Hw=We(9029);let jw=(()=>{var n;class l{static#A=n=()=>(this.\u0275fac=function(o){return new(o||l)},this.\u0275mod=A.$C({type:l,bootstrap:[t]}),this.\u0275inj=w.G2t({imports:[de.MD,Hw.G,kw]}))}return n(),l})()},2643(Pi,Wi,We){var Mn,de=We(9293).default;Object(typeof self<"u"?self:this),Mn=()=>(()=>{var Sn={7133(eA,Q,f){"use strict";f.d(Q,{default:()=>xe}),f(187);var g=f(1771);function I($){return"string"==typeof $||$ instanceof String}function N($){return("number"==typeof $||$ instanceof Number)&&!Number.isNaN($)}function K($){return!(!N($)||!Number.isInteger($)||$<=0)}function v($){return null!==$&&!Array.isArray($)&&!I($)&&!N($)&&"object"==typeof $}function B($){return v($)&&0===Object.keys($).length}function j($){return null!=$}var tA=f(783).Buffer;const AA=class aA extends g.A{constructor(s,d,F,W,Z,EA,PA){void 0===s&&(s={}),void 0===d&&(d={}),void 0===F&&(F={}),void 0===W&&(W={}),void 0===Z&&(Z={}),void 0===EA&&(EA=null),void 0===PA&&(PA=void 0),super(Z),this.fonts={},this.fontCache={};for(let FA in s)if(s.hasOwnProperty(FA)){let te=s[FA];this.fonts[FA]={normal:te.normal,bold:te.bold,italics:te.italics,bolditalics:te.bolditalics}}this.patterns={};for(let FA in F)if(F.hasOwnProperty(FA)){let te=F[FA];this.patterns[FA]=this.pattern(te.boundingBox,te.xStep,te.yStep,te.pattern,te.colored)}this.images=d,this.attachments=W,this.virtualfs=EA,this.localAccessPolicy=PA}getFontType(s,d){return(($,s)=>{let d="normal";return $&&s?d="bolditalics":$?d="bold":s&&(d="italics"),d})(s,d)}getFontFile(s,d,F){let W=this.getFontType(d,F);return this.fonts[s]&&this.fonts[s][W]?this.fonts[s][W]:null}provideFont(s,d,F){let W=this.getFontType(d,F);if(null===this.getFontFile(s,d,F))throw new Error(`Font '${s}' in style '${W}' is not defined in the font section of the document definition.`);if(this.fontCache[s]=this.fontCache[s]||{},!this.fontCache[s][W]){let Z=this.fonts[s][W];Array.isArray(Z)||(Z=[Z]),this.virtualfs&&this.virtualfs.existsSync(Z[0])?Z[0]=this.virtualfs.readFileSync(Z[0]):this.validateLocalFile(Z[0]),this.fontCache[s][W]=this.font(...Z)._font}return this.fontCache[s][W]}provideImage(s){if(this._imageRegistry[s])return this._imageRegistry[s];let F,W=(Z=>{let EA=this.images[Z];if(!EA)return Z;if(this.virtualfs&&this.virtualfs.existsSync(EA))return this.virtualfs.readFileSync(EA);let PA=EA.indexOf("base64,");return PA<0?this.images[Z]:tA.from(EA.substring(PA+7),"base64")})(s);this.validateLocalFile(W);try{if(F=this.openImage(W),!F)throw new Error("No image")}catch(Z){throw new Error(`Invalid image: ${Z.toString()}\nImages dictionary should contain dataURL entries (or local file paths in node.js)`,{cause:Z})}return F.embed(this),this._imageRegistry[s]=F,F}providePattern(s){return Array.isArray(s)&&2===s.length?[this.patterns[s[0]],s[1]]:null}provideAttachment(s){const d=W=>{if(!W)throw new Error("No attachment");if(!W.src)throw new Error('The "src" key is required for attachments');return W};if("object"==typeof s)return d(s);let F=d(this.attachments[s]);return this.virtualfs&&this.virtualfs.existsSync(F.src)?this.virtualfs.readFileSync(F.src):(this.validateLocalFile(F.src),F)}resolveColor(s,d){return s=s||d,"function"==typeof this._normalizeColor&&I(s)&&null===this._normalizeColor(s)?d:s}setOpenActionAsPrint(){let s=this.ref({Type:"Action",S:"Named",N:"Print"});this._root.data.OpenAction=s,s.end()}file(s,d){return void 0===d&&(d={}),this.validateLocalFile(s),super.file(s,d)}validateLocalFile(s){if(!(typeof this.localAccessPolicy>"u")&&I(s)&&!/^data:/.test(s)&&!0!==this.localAccessPolicy(s))throw new Error(`Access to local file denied by resource access policy: ${s}`)}};function L($,s){return"font"===$?"font":s}function P($){return JSON.stringify($,L)}function rA($){if($.id)return $.id;if(Array.isArray($.text))for(let s of $.text){let d=rA(s);if(d)return d}return null}var NA=f(783).Buffer;const oA=$=>I($)?$.replace(/\t/g," "):N($)||"boolean"==typeof $?$.toString():!j($)||B($)?"":$,dA=class uA{preprocessDocument(s){return this.parentNode=null,this.tocs=[],this.nodeReferences=[],this.preprocessNode(s,!0)}preprocessBlock(s){return this.parentNode=null,this.tocs=[],this.nodeReferences=[],this.preprocessNode(s)}preprocessNode(s,d){if(void 0===d&&(d=!1),Array.isArray(s)?s={stack:s}:I(s)||N(s)||"boolean"==typeof s||!j(s)||B(s)?s={text:oA(s)}:"text"in s&&(s.text=oA(s.text)),s.section){if(!d)throw new Error(`Incorrect document structure, section node is only allowed at the root level of document structure: ${P(s)}`);return this.preprocessSection(s)}if(s.columns)return this.preprocessColumns(s);if(s.stack)return this.preprocessVerticalContainer(s,d);if(s.ul)return this.preprocessList(s);if(s.ol)return this.preprocessList(s);if(s.table)return this.preprocessTable(s);if(void 0!==s.text)return this.preprocessText(s);if(s.toc)return this.preprocessToc(s);if(s.image)return this.preprocessImage(s);if(s.svg)return this.preprocessSVG(s);if(s.canvas)return this.preprocessCanvas(s);if(s.qr)return this.preprocessQr(s);if(s.attachment)return this.preprocessAttachment(s);if(s.pageReference||s.textReference)return this.preprocessText(s);throw new Error(`Unrecognized document structure: ${P(s)}`)}preprocessSection(s){return s.section=this.preprocessNode(s.section),s}preprocessColumns(s){let d=s.columns;for(let F=0,W=d.length;F{s.styleOverrides.push(d)}),s}push(s){this.styleOverrides.push(s)}pop(s){for(void 0===s&&(s=1);s-- >0;)this.styleOverrides.pop()}autopush(s){if(I(s)||typeof s.section<"u")return 0;let d=[];s.style&&(d=Array.isArray(s.style)?s.style:[s.style]);for(let F=0,W=d.length;F0&&this.pop(F),W}getProperty(s){var d=this;const F=function(W,Z,EA){if(void 0===EA&&(EA=new Set),EA.has(W))return;EA.add(W);const PA=d.styleDictionary[W];if(PA){if(j(PA[Z]))return PA[Z];if(PA.extends){let FA=Array.isArray(PA.extends)?PA.extends:[PA.extends];for(let te=FA.length-1;te>=0;te--){let ge=F(FA[te],Z,EA);if(j(ge))return ge}}}};if(this.styleOverrides)for(let W=this.styleOverrides.length-1;W>=0;W--){let Z=this.styleOverrides[W];if(I(Z)){let EA=F(Z,s);if(j(EA))return EA}else if(j(Z[s]))return Z[s]}return this.defaultStyle&&this.defaultStyle[s]}static getStyleProperty(s,d,F,W){let Z;return j(s[F])?s[F]:d?(d.auto(s,()=>{Z=d.getProperty(F)}),j(Z)?Z:W):W}static copyStyle(s,d){void 0===s&&(s={}),void 0===d&&(d={});for(let F in s)"text"!=F&&s.hasOwnProperty(F)&&(d[F]=s[F]);return d}}const SA=Re,we=function($,s,d){void 0===d&&(d=!1);let F=[];if($=null==$?"":String($),s)return F.push({text:$}),F;if(d)return $.split("").map(PA=>PA.match(/^\n$|^\r$/)?{text:"",lineEnd:!0}:{text:PA});if(0===$.length)return F.push({text:""}),F;let EA,W=new H($),Z=0;for(;EA=W.nextBreak();){let PA=$.slice(Z,EA.position);EA.required||PA.match(/\r?\n$|\r$/)?(PA=PA.replace(/\r?\n$|\r$/,""),F.push({text:PA,lineEnd:!0})):F.push({text:PA}),Z=EA.position}return F},Fe=($,s)=>{let d=$[0];if(void 0===d)return null;if(s){let F=we(d.text,!1);if(void 0===F[0])return null;d=F[0]}return d.text},et=($,s)=>{let d=$[$.length-1];if(void 0===d||d.lineEnd)return null;if(s){let F=we(d.text,!1);if(void 0===F[F.length-1])return null;d=F[F.length-1]}return d.text},$e=class Ke{getBreaks(s,d){let F=[];Array.isArray(s)||(s=[s]);let W=null;for(let Z=0,EA=s.length;ZMath.max(0,Me.width-Me.leadingCut-Me.trailingCut);let EA,W=0,Z=0,PA=($=s,Array.isArray($)||($=[$]),$=function s(d){return d.reduce((F,W)=>{let Z=Array.isArray(W.text)?s(W.text):W,EA=[].concat(Z).some(Array.isArray);return F.concat(EA?s(Z):Z)},[])}($),$),te=(new $e).getBreaks(PA,d),ge=this.measure(te,d);var $;return ge.forEach(Me=>{W=Math.max(W,F(Me)),EA||(EA={width:0,leadingCut:Me.leadingCut,trailingCut:0}),EA.width+=Me.width,EA.trailingCut=Me.trailingCut,Z=Math.max(Z,F(EA)),Me.lineEnd&&(EA=null)}),SA.getStyleProperty({},d,"noWrap",!1)&&(W=Z),{items:ge,minWidth:W,maxWidth:Z}}measure(s,d){if(s.length){let F=SA.getStyleProperty(s[0],d,"leadingIndent",0);F&&(s[0].leadingCut=-F,s[0].leadingIndent=F)}return s.forEach(F=>{let W=SA.getStyleProperty(F,d,"font","Roboto"),Z=SA.getStyleProperty(F,d,"bold",!1),EA=SA.getStyleProperty(F,d,"italics",!1);F.font=this.pdfDocument.provideFont(W,Z,EA),F.alignment=SA.getStyleProperty(F,d,"alignment","left"),F.fontSize=SA.getStyleProperty(F,d,"fontSize",12),F.fontFeatures=SA.getStyleProperty(F,d,"fontFeatures",null),F.characterSpacing=SA.getStyleProperty(F,d,"characterSpacing",0),F.color=SA.getStyleProperty(F,d,"color","black"),F.decoration=SA.getStyleProperty(F,d,"decoration",null),F.decorationColor=SA.getStyleProperty(F,d,"decorationColor",null),F.decorationStyle=SA.getStyleProperty(F,d,"decorationStyle",null),F.decorationThickness=SA.getStyleProperty(F,d,"decorationThickness",null),F.background=SA.getStyleProperty(F,d,"background",null),F.link=SA.getStyleProperty(F,d,"link",null),F.linkToPage=SA.getStyleProperty(F,d,"linkToPage",null),F.linkToDestination=SA.getStyleProperty(F,d,"linkToDestination",null),F.noWrap=SA.getStyleProperty(F,d,"noWrap",null),F.opacity=SA.getStyleProperty(F,d,"opacity",1),F.sup=SA.getStyleProperty(F,d,"sup",!1),F.sub=SA.getStyleProperty(F,d,"sub",!1),(F.sup||F.sub)&&(F.fontSize*=.58);let PA=SA.getStyleProperty(F,d,"lineHeight",1);if(F.width=this.widthOfText(F.text,F),F.height=F.font.lineHeight(F.fontSize)*PA,F.leadingCut||(F.leadingCut=0),!SA.getStyleProperty(F,d,"preserveLeadingSpaces",!1)){let ge=F.text.match(ht);ge&&(F.leadingCut+=this.widthOfText(ge[0],F))}if(F.trailingCut=0,!SA.getStyleProperty(F,d,"preserveTrailingSpaces",!1)){let ge=F.text.match(cn);ge&&(F.trailingCut=this.widthOfText(ge[0],F))}},this),s}widthOfText(s,d){return d.font.widthOfString(s,d.fontSize,d.fontFeatures)+(d.characterSpacing||0)*(s.length-1)}sizeOfText(s,d){let F=SA.getStyleProperty({},d,"font","Roboto"),W=SA.getStyleProperty({},d,"fontSize",12),Z=SA.getStyleProperty({},d,"fontFeatures",null),EA=SA.getStyleProperty({},d,"bold",!1),PA=SA.getStyleProperty({},d,"italics",!1),FA=SA.getStyleProperty({},d,"lineHeight",1),te=SA.getStyleProperty({},d,"characterSpacing",0),ge=this.pdfDocument.provideFont(F,EA,PA);return{width:this.widthOfText(s,{font:ge,fontSize:W,characterSpacing:te,fontFeatures:Z}),height:ge.lineHeight(W)*FA,fontSize:W,lineHeight:FA,ascender:ge.ascender/1e3*W,descender:ge.descender/1e3*W}}sizeOfRotatedText(s,d,F){let W=d*Math.PI/-180,Z=this.sizeOfText(s,F);return{width:Math.abs(Z.height*Math.sin(W))+Math.abs(Z.width*Math.cos(W)),height:Math.abs(Z.width*Math.sin(W))+Math.abs(Z.height*Math.cos(W))}}};function Lt($){return"auto"===$.width}function Qn($){return null==$.width||"*"===$.width||"star"===$.width}const Gt_buildColumnWidths=function Tt($,s,d,F){void 0===d&&(d=0);let W=[],Z=0,EA=0,PA=[],FA=0,te=0,ge=[],Me=s;$.forEach(Ye=>{Lt(Ye)?(W.push(Ye),Z+=Ye._minWidth,EA+=Ye._maxWidth):Qn(Ye)?(PA.push(Ye),FA=Math.max(FA,Ye._minWidth),te=Math.max(te,Ye._maxWidth)):ge.push(Ye)}),ge.forEach((Ye,Ue)=>{if(I(Ye.width)&&/\d+%/.test(Ye.width)){let De=0;if(F){const Se=F._layout.paddingLeft(Ue,F),it=F._layout.paddingRight(Ue,F),Ve=F._layout.vLineWidth(Ue,F),vt=F._layout.vLineWidth(Ue+1,F);De=0===Ue?Se+it+Ve+vt/2:Ue===ge.length-1?Se+it+Ve/2+vt:Se+it+Ve/2+vt/2}const Le=Me+d;Ye.width=parseFloat(Ye.width)*Le/100-De}Ye._calcWidth=Ye.width=s)W.forEach(Ye=>{Ye._calcWidth=Ye._minWidth}),PA.forEach(Ye=>{Ye._calcWidth=FA});else{if(me{Ye._calcWidth=Ye._maxWidth,s-=Ye._calcWidth});else{let Ye=s-Qe,Ue=me-Qe;W.forEach(De=>{De._calcWidth=De._minWidth+(De._maxWidth-De._minWidth)*Ye/Ue,s-=De._calcWidth})}if(PA.length>0){let Ye=s/PA.length;PA.forEach(Ue=>{Ue._calcWidth=Ye})}}},Gt_measureMinMax=function pn($){let s={min:0,max:0},d={min:0,max:0},F=0;for(let W=0,Z=$.length;W0,vLineWidth:$=>0,paddingLeft:$=>$?4:0,paddingRight:($,s)=>$0===$||$===s.table.body.length?0:$===s.table.headerRows?2:0,vLineWidth:$=>0,paddingLeft:$=>0===$?0:8,paddingRight:($,s)=>$===s.table.widths.length-1?0:8},lightHorizontalLines:{hLineWidth:($,s)=>0===$||$===s.table.body.length?0:$===s.table.headerRows?2:1,vLineWidth:$=>0,hLineColor:$=>1===$?"black":"#aaa",paddingLeft:$=>0===$?0:8,paddingRight:($,s)=>$===s.table.widths.length-1?0:8}},Ot={hLineWidth:($,s)=>1,vLineWidth:($,s)=>1,hLineColor:($,s)=>"black",vLineColor:($,s)=>"black",hLineStyle:($,s)=>null,vLineStyle:($,s)=>null,paddingLeft:($,s)=>4,paddingRight:($,s)=>4,paddingTop:($,s)=>2,paddingBottom:($,s)=>2,fillColor:($,s)=>null,fillOpacity:($,s)=>1,defaultBorder:!0};function bt(){let $={};for(let s=0,d=arguments.length;sJSON.parse(JSON.stringify($))}for(var qe=[null,[[10,7,17,13],[1,1,1,1],[]],[[16,10,28,22],[1,1,1,1],[4,16]],[[26,15,22,18],[1,1,2,2],[4,20]],[[18,20,16,26],[2,1,4,2],[4,24]],[[24,26,22,18],[2,1,4,4],[4,28]],[[16,18,28,24],[4,2,4,4],[4,32]],[[18,20,26,18],[4,2,5,6],[4,20,36]],[[22,24,26,22],[4,2,6,6],[4,22,40]],[[22,30,24,20],[5,2,8,8],[4,24,44]],[[26,18,28,24],[5,4,8,8],[4,26,48]],[[30,20,24,28],[5,4,11,8],[4,28,52]],[[22,24,28,26],[8,4,11,10],[4,30,56]],[[22,26,22,24],[9,4,16,12],[4,32,60]],[[24,30,24,20],[9,4,16,16],[4,24,44,64]],[[24,22,24,30],[10,6,18,12],[4,24,46,68]],[[28,24,30,24],[10,6,16,17],[4,24,48,72]],[[28,28,28,28],[11,6,19,16],[4,28,52,76]],[[26,30,28,28],[13,6,21,18],[4,28,54,80]],[[26,28,26,26],[14,7,25,21],[4,28,56,84]],[[26,28,28,30],[16,8,25,20],[4,32,60,88]],[[26,28,30,28],[17,8,25,23],[4,26,48,70,92]],[[28,28,24,30],[17,9,34,23],[4,24,48,72,96]],[[28,30,30,30],[18,9,30,25],[4,28,52,76,100]],[[28,30,30,30],[20,10,32,27],[4,26,52,78,104]],[[28,26,30,30],[21,12,35,29],[4,30,56,82,108]],[[28,28,30,28],[23,12,37,34],[4,28,56,84,112]],[[28,30,30,30],[25,12,40,34],[4,32,60,88,116]],[[28,30,30,30],[26,13,42,35],[4,24,48,72,96,120]],[[28,30,30,30],[28,14,45,38],[4,28,52,76,100,124]],[[28,30,30,30],[29,15,48,40],[4,24,50,76,102,128]],[[28,30,30,30],[31,16,51,43],[4,28,54,80,106,132]],[[28,30,30,30],[33,17,54,45],[4,32,58,84,110,136]],[[28,30,30,30],[35,18,57,48],[4,28,56,84,112,140]],[[28,30,30,30],[37,19,60,51],[4,32,60,88,116,144]],[[28,30,30,30],[38,19,63,53],[4,28,52,76,100,124,148]],[[28,30,30,30],[40,20,66,56],[4,22,48,74,100,126,152]],[[28,30,30,30],[43,21,70,59],[4,26,52,78,104,130,156]],[[28,30,30,30],[45,22,74,62],[4,30,56,82,108,134,160]],[[28,30,30,30],[47,24,77,65],[4,24,52,80,108,136,164]],[[28,30,30,30],[49,25,81,68],[4,28,56,84,112,140,168]]],zA=/^\d*$/,vA=/^[A-Za-z0-9 $%*+\-./:]*$/,qA=/^[A-Z0-9 $%*+\-./:]*$/,ae=[],ce=[-1],ye=0,ke=1;ye<255;++ye)ae.push(ke),ce[ke]=ye,ke=2*ke^(ke>=128?285:0);var Je=[[]];for(ye=0;ye<30;++ye){for(var tt=Je[ye],je=[],Ce=0;Ce<=ye;++Ce)je.push(ce[(Ce6},ut=function($,s){var d=-8&function($){var s=qe[$],d=16*$*$+128*$+64;return Bt($)&&(d-=36),s[2].length&&(d-=25*s[2].length*s[2].length-10*s[2].length-55),d}($),F=qe[$];return d-8*F[0][s]*F[1][s]},an=function($,s){switch(s){case 1:return $<10?10:$<27?12:14;case 2:return $<10?9:$<27?11:13;case 4:return $<10?8:16;case 8:return $<10?8:$<27?10:12}},Wt=function($,s,d){var F=ut($,d)-4-an($,s);switch(s){case 1:return 3*(F/10|0)+(F%10<4?0:F%10<7?1:2);case 2:return 2*(F/11|0)+(F%11<6?0:1);case 4:return F/8|0;case 8:return F/13|0}},Bn=function($,s){for(var d=$.slice(0),F=$.length,W=s.length,Z=0;Z=0)for(var PA=0;PA=0;--Z)W>>F+Z&1&&(W^=d<>EA&1;return $},Un=function($){for(var Z=function(De){for(var Le=0,Se=0;Se=5&&(Le+=De[Se]-5+3);for(Se=5;Se=4*it||De[Se+1]>=4*it)&&(Le+=40)}return Le},EA=$.length,PA=0,FA=0,te=0;te>6,128|63&W):W<65536?d.push(224|W>>12,128|W>>6&63,128|63&W):d.push(240|W>>18,128|W>>12&63,128|W>>6&63,128|63&W)}return d}return s}}(EA,$),null===$)throw"invalid data format";if(Z<0||Z>3)throw"invalid ECC level";if(W<0){for(W=1;W<=40&&!($.length<=Wt(W,EA,Z));++W);if(W>40)throw"too large data for the Qr format"}else if(W<1||W>40)throw"invalid Qr version! should be between 1 and 40";if(-1!=PA&&(PA<0||PA>8))throw"invalid mask";return function($,s,d,F,W){var Z=qe[s],EA=function($,s,d,F){var W=[],Z=0,EA=8,PA=d.length,FA=function(Me,Qe){if(Qe>=EA){for(W.push(Z|Me>>(Qe-=EA));Qe>=8;)W.push(Me>>(Qe-=8)&255);Z=0,EA=8}Qe>0&&(Z|=(Me&(1<>3);EA=function($,s,d){for(var F=[],W=$.length/s|0,Z=0,EA=s-$.length%s,PA=0;PA>Ve&1,W[Ye+it][Ue+Ve]=1};for(EA(0,0,9,9,[127,65,93,93,93,65,383,0,64]),EA(d-8,0,8,9,[256,127,65,93,93,93,65,127]),EA(0,d-8,9,8,[254,130,186,186,186,130,254,0,0]),Z=9;Z>me++&1,W[Z][d-11+Me]=W[d-11+Me][Z]=1}return{matrix:F,reserved:W}}(s),FA=PA.matrix,te=PA.reserved;if(function($,s,d){for(var F=$.length,W=0,Z=-1,EA=F-1;EA>=0;EA-=2){6==EA&&--EA;for(var PA=Z<0?F-1:0,FA=0;FAEA-2;--te)s[PA][te]||($[PA][te]=d[W>>3]>>(7&~W)&1,++W);PA+=Z}Z=-Z}}(FA,te,EA),W<0){St(FA,te,0),vn(FA,0,F,0);var ge=0,Me=Un(FA);for(St(FA,te,0),W=1;W<8;++W){St(FA,te,W),vn(FA,0,F,W);var Qe=Un(FA);Me>Qe&&(Me=Qe,ge=W),St(FA,te,W)}W=ge}return St(FA,te,W),vn(FA,0,F,W),FA}($,W,EA,Z,PA)}const wi_measure=function Ei($){var s=function On($,s){var d=[],F=s.background||"#fff",W=s.foreground||"#000",Z=s.padding||0,EA=Fn($,s),PA=EA.length,FA=Math.floor(s.fit?s.fit/PA:5),te=PA*FA+FA*Z*2,ge=FA*Z;d.push({type:"rect",x:0,y:0,w:te,h:te,lineWidth:0,color:F});for(var Me=0;Me{if(s._margin=function QA($,s){function d(EA,PA,FA){return void 0===FA&&(FA=0),void 0!==EA.marginLeft||void 0!==EA.marginTop||void 0!==EA.marginRight||void 0!==EA.marginBottom?[EA.marginLeft??PA[0]??FA,EA.marginTop??PA[1]??FA,EA.marginRight??PA[2]??FA,EA.marginBottom??PA[3]??FA]:PA}function W(EA){return N(EA)?EA=[EA,EA,EA,EA]:Array.isArray(EA)&&2===EA.length&&(EA=[EA[0],EA[1],EA[0],EA[1]]),EA}let Z=[void 0,void 0,void 0,void 0];if($.style){let PA=function F(EA,PA,FA){if(void 0===FA&&(FA=new Set),!(EA=Array.isArray(EA)?EA:[EA]).every(ge=>I(ge)))return{};let te={};for(let ge=0;ges.fit[0]/s.fit[1]?s.fit[0]/d.width:s.fit[1]/d.height;s._width=s._minWidth=s._maxWidth=d.width*F,s._height=d.height*F}else if(s.cover)s._width=s._minWidth=s._maxWidth=s.cover.width,s._height=s._minHeight=s._maxHeight=s.cover.height;else{let F=N(s.width)?s.width:void 0,W=N(s.height)?s.height:void 0,Z=d.width/d.height;s._width=s._minWidth=s._maxWidth=F||(W?W*Z:d.width),s._height=W||(F?F/Z:d.height),N(s.maxWidth)&&s.maxWidths._width&&(s._width=s._minWidth=s._maxWidth=s.minWidth,s._height=s._width*d.height/d.width),N(s.minHeight)&&s.minHeight>s._height&&(s._height=s.minHeight,s._width=s._minWidth=s._maxWidth=s._height*d.width/d.height)}s._alignment=this.styleStack.getProperty("alignment")}convertIfBase64Image(s){if(/^data:image\/(jpeg|jpg|png);base64,/.test(s.image)){let d="$$pdfmake$$"+this.autoImageIndex++;this.pdfDocument.images[d]=s.image,s.image=d}}measureImage(s){this.convertIfBase64Image(s);let d=this.pdfDocument.provideImage(s.image),F={width:d.width,height:d.height};return d.orientation>4&&(F={width:d.height,height:d.width}),this.measureImageWithDimensions(s,F),s}measureSVG(s){let d=this.svgMeasure.measureSVG(s.svg);if(this.measureImageWithDimensions(s,d),s.font=this.styleStack.getProperty("font"),!N(s._width)&&!N(s._height))throw new Error("SVG is missing defined width and height.");if(!N(s._width))throw new Error("SVG is missing defined width.");if(!N(s._height))throw new Error("SVG is missing defined height.");return s.svg=this.svgMeasure.writeDimensions(s.svg,{width:s._width,height:s._height}),s}measureLeaf(s){s._textRef&&s._textRef._textNodeRef.text&&(s.text=s._textRef._textNodeRef.text);let d=this.styleStack.clone();d.push(s);let F=this.textInlines.buildInlines(s.text,d);return s._inlines=F.items,s._minWidth=F.minWidth,s._maxWidth=F.maxWidth,s}measureToc(s){if(s.toc.title&&(s.toc.title=this.measureNode(s.toc.title)),s.toc._items.length>0){let d=[],F=s.toc.textStyle||{},W=s.toc.numberStyle||F,Z=s.toc.textMargin||[0,0,0,0];"title"===s.toc.sortBy&&s.toc._items.sort((EA,PA)=>EA._textNodeRef.text.localeCompare(PA._textNodeRef.text,s.toc.sortLocale));for(let EA=0,PA=s.toc._items.length;EA=26?me((Ye/26|0)-1):"")+"abcdefghijklmnopqrstuvwxyz"[Ye%26|0]}(Qe-1)}function PA(Qe){if(Qe<1||Qe>4999)return Qe.toString();let me=Qe,Ye={M:1e3,CM:900,D:500,CD:400,C:100,XC:90,L:50,XL:40,X:10,IX:9,V:5,IV:4,I:1},Ue="";for(let De in Ye)for(;me>=Ye[De];)Ue+=De,me-=Ye[De];return Ue}let te;switch(W){case"none":te=null;break;case"upper-alpha":te=EA(d).toUpperCase();break;case"lower-alpha":te=EA(d);break;case"upper-roman":te=PA(d);break;case"lower-roman":te=PA(d).toLowerCase();break;default:te=function FA(Qe){return Qe.toString()}(d)}if(null===te)return{};Z&&(Array.isArray(Z)?(Z[0]&&(te=Z[0]+te),Z[1]&&(te+=Z[1]),te+=" "):te+=`${Z} `);let ge=SA.getStyleProperty(s,F,"markerColor",void 0)||F.getProperty("color")||"black";return{_inlines:this.textInlines.buildInlines({text:te,color:ge},F).items}}measureUnorderedList(s){let d=this.styleStack.clone(),F=s.ul;s.type=s.type||"disc",s._gapSize=this.gapSizeForList(),s._minWidth=0,s._maxWidth=0;for(let W=0,Z=F.length;W0?d.length-1:0;return s._minWidth=F.min+s._gap*W,s._maxWidth=F.max+s._gap*W,s}measureTable(s){(function Ue(De){if(De.table.widths||(De.table.widths="auto"),I(De.table.widths))for(De.table.widths=[De.table.widths];De.table.widths.length1?(me(Le,F,Se.colSpan),d.push({col:F,span:Se.colSpan,minWidth:Se._minWidth,maxWidth:Se._maxWidth})):(De._minWidth=Math.max(De._minWidth,Se._minWidth),De._maxWidth=Math.max(De._maxWidth,Se._maxWidth))),Se.rowSpan&&Se.rowSpan>1&&Ye(s.table,W,F,Se.rowSpan)}}!function Me(){let De,Le;for(let Se=0,it=d.length;Se0)for(De=zt/Ve.span,Le=0;Le0)for(De=sn/Ve.span,Le=0;Le(v(Le)&&(Le.fillColor=De.styleStack.getProperty("fillColor"),Le.fillOpacity=De.styleStack.getProperty("fillOpacity")),De.measureNode(Le))}function Qe(De,Le,Se){let it={minWidth:0,maxWidth:0};for(let Ve=0;Ves.page?$:s.page>$.page?s:$.y>s.y?$:s,{page:d.page,x:d.x,y:d.y,availableHeight:d.availableHeight,availableWidth:d.availableWidth}}const Xi=class xn extends ri.EventEmitter{constructor(){super(),this.pages=[],this.pageMargins=void 0,this.x=void 0,this.availableWidth=void 0,this.availableHeight=void 0,this.page=-1,this.snapshots=[],this.backgroundLength=[]}beginColumnGroup(s,d,F,W,Z){void 0===d&&(d={}),void 0===F&&(F=!1),void 0===W&&(W=0),void 0===Z&&(Z=null),this.snapshots.push({x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,page:this.page,bottomByPage:d||{},bottomMost:{x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,page:this.page},lastColumnWidth:this.lastColumnWidth,snakingColumns:F,gap:W,columnWidths:Z}),this.lastColumnWidth=0,s&&(this.marginXTopParent=s)}updateBottomByPage(){const s=this.snapshots[this.snapshots.length-1];if(!s)return;const d=this.page;let F=-Number.MIN_VALUE;s.bottomByPage&&s.bottomByPage[d]&&(F=s.bottomByPage[d]),s.bottomByPage&&(s.bottomByPage[d]=Math.max(F,this.y))}resetMarginXTopParent(){this.marginXTopParent=null}getSnakingSnapshot(){for(let s=this.snapshots.length-1;s>=0;s--)if(this.snapshots[s].snakingColumns)return this.snapshots[s];return null}inSnakingColumns(){return!!this.getSnakingSnapshot()}isInNestedNonSnakingGroup(){for(let s=this.snapshots.length-1;s>=0;s--){let d=this.snapshots[s];if(d.snakingColumns)return!1;if(!d.overflowed)return!0}return!1}beginColumn(s,d,F){let W=this.snapshots[this.snapshots.length-1];if(W&&W.overflowed)for(let Z=this.snapshots.length-1;Z>=0;Z--)if(!this.snapshots[Z].overflowed){W=this.snapshots[Z];break}this.calculateBottomMost(W,F),this.page=W.page,this.x=this.x+this.lastColumnWidth+(d||0),this.y=W.y,this.availableWidth=s,this.availableHeight=W.availableHeight,this.lastColumnWidth=s}calculateBottomMost(s,d){d?this.saveContextInEndingCell(d):s.bottomMost=Qi(this,s.bottomMost)}markEnding(s,d,F){this.page=s._columnEndingContext.page,this.x=s._columnEndingContext.x+d,this.y=s._columnEndingContext.y-F,this.availableWidth=s._columnEndingContext.availableWidth,this.availableHeight=s._columnEndingContext.availableHeight,this.lastColumnWidth=s._columnEndingContext.lastColumnWidth}saveContextInEndingCell(s){s._columnEndingContext={page:this.page,x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,lastColumnWidth:this.lastColumnWidth}}completeColumnGroup(s,d){let F=this.snapshots.pop(),W=this.y,Z=this.page,EA=this.availableHeight,PA=F.overflowed;for(;F&&F.overflowed;){let te=Qi({page:Z,y:W,availableHeight:EA},F.bottomMost||{});Z=te.page,W=te.y,EA=te.availableHeight,F=this.snapshots.pop()}if(!F)return{};PA&&(Z>F.bottomMost.page||Z===F.bottomMost.page&&W>F.bottomMost.y)&&(F.bottomMost={x:F.x,y:W,page:Z,availableHeight:EA,availableWidth:F.availableWidth}),this.calculateBottomMost(F,d),this.x=F.x;let FA=F.bottomMost.y;return s&&(F.page===F.bottomMost.page?F.y+s>FA&&(FA=F.y+s):FA+=s),this.y=FA,this.page=F.bottomMost.page,this.availableWidth=F.availableWidth,this.availableHeight=F.bottomMost.availableHeight,s&&(this.availableHeight-=FA-F.bottomMost.y),this.height=s&&F.bottomMost.y-F.y=0&&this.snapshots[FA].overflowed;FA--)F++;let W=d.columnWidths&&d.columnWidths[F]||this.lastColumnWidth||this.availableWidth,Z=d.columnWidths&&d.columnWidths[F+1]||W;this.lastColumnWidth=Z;let EA=this.x+(W||0)+(d.gap||0),PA=d.y;this.snapshots.push({x:EA,y:PA,availableHeight:d.availableHeight,availableWidth:Z,page:this.page,overflowed:!0,bottomMost:{x:EA,y:PA,availableHeight:d.availableHeight,availableWidth:Z,page:this.page},lastColumnWidth:Z,snakingColumns:!0,gap:d.gap,columnWidths:d.columnWidths}),this.x=EA,this.y=PA,this.availableHeight=d.availableHeight,this.availableWidth=Z;for(let FA=this.snapshots.length-2;FA>=0;FA--){let te=this.snapshots[FA];if(te.overflowed||te.snakingColumns)break;te.x=EA,te.y=PA,te.page=this.page,te.availableHeight=d.availableHeight,te.bottomMost&&(te.bottomMost.x=EA,te.bottomMost.y=PA,te.bottomMost.page=this.page,te.bottomMost.availableHeight=d.availableHeight)}return{prevY:s,y:this.y}}resetSnakingColumnsForNewPage(){let s=this.getSnakingSnapshot();if(!s)return;let d=this.pageMargins.top,F=this.getCurrentPage().pageSize.height-this.pageMargins.top-this.pageMargins.bottom,W=s.columnWidths?s.columnWidths[0]:this.lastColumnWidth||this.availableWidth;for(;this.snapshots.length>1&&this.snapshots[this.snapshots.length-1].overflowed;)this.snapshots.pop();this.x=this.marginXTopParent?this.pageMargins.left+this.marginXTopParent[0]:this.pageMargins.left,this.availableWidth=W,this.lastColumnWidth=W;for(let Z=0;Z0}initializePage(){this.y=this.pageMargins.top,this.availableHeight=this.getCurrentPage().pageSize.height-this.pageMargins.top-this.pageMargins.bottom;const s=this.pageSnapshot(),d=s.pageCtx,F=s.isSnapshot;d.availableWidth=this.getCurrentPage().pageSize.width-this.pageMargins.left-this.pageMargins.right,F&&this.marginXTopParent&&(d.availableWidth-=this.marginXTopParent[0],d.availableWidth-=this.marginXTopParent[1])}pageSnapshot(){return this.snapshots[0]?{pageCtx:this.snapshots[0],isSnapshot:!0}:{pageCtx:this,isSnapshot:!1}}moveTo(s,d){null!=s&&(this.x=s,this.availableWidth=this.getCurrentPage().pageSize.width-this.x-this.pageMargins.right),null!=d&&(this.y=d,this.availableHeight=this.getCurrentPage().pageSize.height-this.y-this.pageMargins.bottom)}moveToRelative(s,d){null!=s&&(this.x=this.x+s),null!=d&&(this.y=this.y+d)}beginDetachedBlock(){this.snapshots.push({x:this.x,y:this.y,availableHeight:this.availableHeight,availableWidth:this.availableWidth,page:this.page,lastColumnWidth:this.lastColumnWidth})}endDetachedBlock(){let s=this.snapshots.pop();this.x=s.x,this.y=s.y,this.availableWidth=s.availableWidth,this.availableHeight=s.availableHeight,this.page=s.page,this.lastColumnWidth=s.lastColumnWidth}moveToNextPage(s){let d=this.page+1,F=this.page,W=this.y;if(this.snapshots.length>0){let EA=this.snapshots[this.snapshots.length-1];EA.bottomMost&&EA.bottomMost.y&&(W=Math.max(this.y,EA.bottomMost.y))}let Z=d>=this.pages.length;if(Z){let EA=this.availableWidth,PA=this.getCurrentPage().pageSize.orientation,FA=(($,s)=>(s=function ai($,s){return void 0===$?s:I($)&&"landscape"===$.toLowerCase()?"landscape":"portrait"}(s,$.pageSize.orientation),s!==$.pageSize.orientation?{orientation:s,width:$.pageSize.height,height:$.pageSize.width}:{orientation:$.pageSize.orientation,width:$.pageSize.width,height:$.pageSize.height}))(this.getCurrentPage(),s);this.addPage(FA,null,this.getCurrentPage().customProperties),PA===FA.orientation&&(this.availableWidth=EA)}else this.page=d,this.initializePage();return{newPageCreated:Z,prevPage:F,prevY:W,y:this.y}}addPage(s,d,F){void 0===d&&(d=null),void 0===F&&(F={}),null!==d&&(this.pageMargins=d,this.x=d.left,this.availableWidth=s.width-d.left-d.right);let W={items:[],pageSize:s,pageMargins:this.pageMargins,customProperties:F};return this.pages.push(W),this.backgroundLength.push(0),this.page=this.pages.length-1,this.initializePage(),this.emit("pageAdded",W),W}getCurrentPage(){return this.page<0||this.page>=this.pages.length?null:this.pages[this.page]}getCurrentPosition(){let s=this.getCurrentPage().pageSize,d=s.height-this.pageMargins.top-this.pageMargins.bottom,F=s.width-this.pageMargins.left-this.pageMargins.right;return{pageNumber:this.page+1,pageOrientation:s.orientation,pageInnerHeight:d,pageInnerWidth:F,left:this.x,top:this.y,verticalRatio:(this.y-this.pageMargins.top)/d,horizontalRatio:(this.x-this.pageMargins.left)/F}}};function fn($,s,d){null==d||d<0||d>$.items.length?$.items.push(s):$.items.splice(d,0,s)}const ms=class mi extends ri.EventEmitter{constructor(s){super(),this._context=s,this.contextStack=[]}context(){return this._context}addLine(s,d,F){let W=s.getHeight(),Z=this.context(),EA=Z.getCurrentPage(),PA=this.getCurrentPositionOnPage();return!(Z.availableHeight0&&s.inlines[0].alignment,Z=0;switch(W){case"right":Z=d-F;break;case"center":Z=(d-F)/2}if(Z&&(s.x=(s.x||0)+Z),"justify"===W&&!s.newLineForced&&!s.lastLineInParagraph&&s.inlines.length>1){let EA=(d-F)/(s.inlines.length-1);for(let PA=1,FA=s.inlines.length;PA0)&&(void 0===s._x&&(s._x=s.x||0),s.x=F.x+s._x,s.y=F.y,this.alignImage(s),fn(W,{type:"image",item:s},d),F.moveDown(s._height),Z)}addCanvas(s,d){let F=this.context(),W=F.getCurrentPage(),Z=[],EA=s._minHeight;return!(!W||void 0===s.absolutePosition&&F.availableHeight0)&&(void 0===s._x&&(s._x=s.x||0),s.x=F.x+s._x,s.y=F.y,this.alignImage(s),fn(W,{type:"svg",item:s},d),F.moveDown(s._height),Z)}addQr(s,d){let F=this.context(),W=F.getCurrentPage(),Z=this.getCurrentPositionOnPage();if(!W||void 0===s.absolutePosition&&F.availableHeight0)&&(void 0===s._x&&(s._x=s.x||0),s.x=F.x+s._x,s.y=F.y,fn(W,{type:"attachment",item:s},d),F.moveDown(s._height),Z)}alignImage(s){let d=this.context().availableWidth,F=s._minWidth,W=0;switch(s._alignment){case"right":W=d-F;break;case"center":W=(d-F)/2}W&&(s.x=(s.x||0)+W)}alignCanvas(s){let d=this.context().availableWidth,F=s._minWidth,W=0;switch(s._alignment){case"right":W=d-F;break;case"center":W=(d-F)/2}W&&s.canvas.forEach(Z=>{Dt(Z,W,0)})}addVector(s,d,F,W,Z){let EA=this.context(),PA=EA.getCurrentPage();N(Z)&&(PA=EA.pages[Z]);let FA=this.getCurrentPositionOnPage();if(PA)return Dt(s,d?0:EA.x,F?0:EA.y),fn(PA,{type:"vector",item:s},W),FA}beginClip(s,d){let F=this.context();return F.getCurrentPage().items.push({type:"beginClip",item:{x:F.x,y:F.y,width:s,height:d}}),!0}endClip(){return this.context().getCurrentPage().items.push({type:"endClip"}),!0}beginVerticalAlignment(s){let F={type:"beginVerticalAlignment",item:{verticalAlignment:s}};return this.context().getCurrentPage().items.push(F),F}endVerticalAlignment(s){let F={type:"endVerticalAlignment",item:{verticalAlignment:s}};return this.context().getCurrentPage().items.push(F),F}addFragment(s,d,F,W){let Z=this.context(),EA=Z.getCurrentPage();return!(!d&&s.height>Z.availableHeight||(s.items.forEach(PA=>{switch(PA.type){case"line":var FA=PA.item.clone();FA._node&&(FA._node.positions[0].pageNumber=Z.page+1),FA.x=(FA.x||0)+(d?s.xOffset||0:Z.x),FA.y=(FA.y||0)+(F?s.yOffset||0:Z.y),EA.items.push({type:"line",item:FA});break;case"vector":var te=bt(PA.item);Dt(te,d?s.xOffset||0:Z.x,F?s.yOffset||0:Z.y),te._isFillColorFromUnbreakable?(delete te._isFillColorFromUnbreakable,EA.items.splice(Z.backgroundLength[Z.page],0,{type:"vector",item:te})):EA.items.push({type:"vector",item:te});break;case"image":case"svg":case"beginClip":case"endClip":case"beginVerticalAlignment":case"endVerticalAlignment":var ge=bt(PA.item);ge.x=(ge.x||0)+(d?s.xOffset||0:Z.x),ge.y=(ge.y||0)+(F?s.yOffset||0:Z.y),EA.items.push({type:PA.type,item:ge})}}),W||Z.moveDown(s.height),0))}pushContext(s,d){if(void 0===s&&(d=this.context().getCurrentPage().height-this.context().pageMargins.top-this.context().pageMargins.bottom,s=this.context().availableWidth),N(s)){let F=s;(s=new Xi).addPage({width:F,height:d},{left:0,right:0,top:0,bottom:0})}this.contextStack.push(this.context()),this._context=s}popContext(){this._context=this.contextStack.pop()}getCurrentPositionOnPage(){return(this.contextStack[0]||this.context()).getCurrentPosition()}},Ms={"4A0":[4767.87,6740.79],"2A0":[3370.39,4767.87],A0:[2383.94,3370.39],A1:[1683.78,2383.94],A2:[1190.55,1683.78],A3:[841.89,1190.55],A4:[595.28,841.89],A5:[419.53,595.28],A6:[297.64,419.53],A7:[209.76,297.64],A8:[147.4,209.76],A9:[104.88,147.4],A10:[73.7,104.88],B0:[2834.65,4008.19],B1:[2004.09,2834.65],B2:[1417.32,2004.09],B3:[1000.63,1417.32],B4:[708.66,1000.63],B5:[498.9,708.66],B6:[354.33,498.9],B7:[249.45,354.33],B8:[175.75,249.45],B9:[124.72,175.75],B10:[87.87,124.72],C0:[2599.37,3676.54],C1:[1836.85,2599.37],C2:[1298.27,1836.85],C3:[918.43,1298.27],C4:[649.13,918.43],C5:[459.21,649.13],C6:[323.15,459.21],C7:[229.61,323.15],C8:[161.57,229.61],C9:[113.39,161.57],C10:[79.37,113.39],RA0:[2437.8,3458.27],RA1:[1729.13,2437.8],RA2:[1218.9,1729.13],RA3:[864.57,1218.9],RA4:[609.45,864.57],SRA0:[2551.18,3628.35],SRA1:[1814.17,2551.18],SRA2:[1275.59,1814.17],SRA3:[907.09,1275.59],SRA4:[637.8,907.09],EXECUTIVE:[521.86,756],FOLIO:[612,936],LEGAL:[612,1008],LETTER:[612,792],TABLOID:[792,1224]};function Mi($,s){$&&"auto"===$.height&&($.height=1/0);let W=function F(Z){if(I(Z)){let EA=Ms[Z.toUpperCase()];if(!EA)throw new Error(`Page size ${Z} not recognized`);return{width:EA[0],height:EA[1]}}return Z}($||"A4");return function d(Z){return!!I(Z)&&("portrait"===(Z=Z.toLowerCase())&&W.width>W.height||"landscape"===Z&&W.widthW.height?"landscape":"portrait",W}function pi($){if(N($))$={left:$,right:$,top:$,bottom:$};else if(Array.isArray($))if(2===$.length)$={left:$[0],top:$[1],right:$[0],bottom:$[1]};else{if(4!==$.length)throw new Error("Invalid pageMargins definition");$={left:$[0],top:$[1],right:$[2],bottom:$[3]}}return $}const qi=class Zi extends ms{constructor(s){super(s),this.transactionLevel=0,this.repeatables=[]}addLine(s,d,F){return this._fitOnPage(()=>super.addLine(s,d,F))}addImage(s,d){return this._fitOnPage(()=>super.addImage(s,d))}addCanvas(s,d){return this._fitOnPage(()=>super.addCanvas(s,d))}addSVG(s,d){return this._fitOnPage(()=>super.addSVG(s,d))}addQr(s,d){return this._fitOnPage(()=>super.addQr(s,d))}addAttachment(s,d){return this._fitOnPage(()=>super.addAttachment(s,d))}addVector(s,d,F,W,Z){return super.addVector(s,d,F,W,Z)}beginClip(s,d){return super.beginClip(s,d)}endClip(){return super.endClip()}beginVerticalAlignment(s){return super.beginVerticalAlignment(s)}endVerticalAlignment(s){return super.endVerticalAlignment(s)}addFragment(s,d,F,W){return this._fitOnPage(()=>super.addFragment(s,d,F,W))}moveToNextPage(s){let d=this.context().moveToNextPage(s);this.repeatables.forEach(function(F){void 0===F.insertedOnPages[this.context().page]?(F.insertedOnPages[this.context().page]=!0,this.addFragment(F,!0)):this.context().moveDown(F.height)},this),this.emit("pageChanged",{prevPage:d.prevPage,prevY:d.prevY,y:this.context().y})}addPage(s,d,F,W){void 0===W&&(W={});let Z=this.page,EA=this.y;this.context().addPage(Mi(s,d),pi(F),W),this.emit("pageChanged",{prevPage:Z,prevY:EA,y:this.context().y})}beginUnbreakableBlock(s,d){0===this.transactionLevel++&&(this.originalX=this.context().x,this.pushContext(s,d))}commitUnbreakableBlock(s,d){if(0===--this.transactionLevel){let F=this.context();this.popContext();let W=F.pages.length;if(W>0){let Z=F.pages[0];if(Z.xOffset=s,Z.yOffset=d,W>1)if(void 0!==s||void 0!==d)Z.height=F.getCurrentPage().pageSize.height-F.pageMargins.top-F.pageMargins.bottom;else{Z.height=this.context().getCurrentPage().pageSize.height-this.context().pageMargins.top-this.context().pageMargins.bottom;for(let EA=0,PA=this.repeatables.length;EA{d.items.push(F)}),d.xOffset=this.originalX,d.height=s.y,d.insertedOnPages=[],d}pushToRepeatables(s){this.repeatables.push(s)}popFromRepeatables(){this.repeatables.pop()}moveToNextColumn(){let s=this.context().moveToNextColumn();this.repeatables.forEach(function(d){this.addFragment(d,!1)},this),this.emit("columnChanged",{prevY:s.prevY,y:this.context().y})}canMoveToNextColumn(){let s=this.context(),d=s.getSnakingSnapshot();if(d){for(let Qe=s.snapshots.length-1;Qe>=0;Qe--){let me=s.snapshots[Qe];if(me.snakingColumns)break;if(!me.overflowed)return!1}let F=0;for(let Qe=s.snapshots.length-1;Qe>=0&&s.snapshots[Qe].overflowed;Qe--)F++;if(d.columnWidths&&F>=d.columnWidths.length-1)return!1;let W=s.availableWidth||s.lastColumnWidth||0,Z=d.columnWidths?d.columnWidths[F+1]:W,EA=s.x+W+(d.gap||0),PA=s.getCurrentPage();return EA+Z<=PA.pageSize.width-(PA.pageMargins?PA.pageMargins.right:0)-(s.marginXTopParent?s.marginXTopParent[1]:0)+1}return!1}_fitOnPage(s){let d=s();if(!d&&(this.canMoveToNextColumn()&&(this.moveToNextColumn(),d=s()),!d)){let F=this.context();if(F.getSnakingSnapshot()){if(F.isInNestedNonSnakingGroup())this.moveToNextPage();else{this.moveToNextPage();let Z=F.lastColumnWidth;F.resetSnakingColumnsForNewPage(),F.lastColumnWidth=Z}d=s()}else{for(;F.snapshots.length>0&&F.snapshots[F.snapshots.length-1].overflowed;){let Z=F.snapshots.pop(),EA=F.snapshots[F.snapshots.length-1];EA&&(F.x=EA.x,F.y=EA.y,F.availableHeight=EA.availableHeight,F.availableWidth=Z.availableWidth,F.lastColumnWidth=EA.lastColumnWidth)}this.moveToNextPage(),d=s()}}return d}},$i=new Set(["before","beforeOdd","beforeEven","after","afterOdd","afterEven"]),ps=$=>!(!$||"object"!=typeof $)&&$i.has($.pageBreak),Is=class As{constructor(s){this.tableNode=s,this._isCurrentRowUnbreakable=!1}beginTable(s){let Z,EA;Z=this.tableNode,this.offsets=Z._offsets,this.layout=Z._layout,EA=s.context().availableWidth-this.offsets.total,Gt_buildColumnWidths(Z.table.widths,EA,this.offsets.total,Z),this.tableWidth=Z._offsets.total+(()=>{let FA=0;return Z.table.widths.forEach(te=>{FA+=te._calcWidth}),FA})(),this.rowSpanData=(()=>{let ge,FA=[],te=0;FA.push({left:0,rowSpan:0});for(let Me=0,Qe=this.tableNode.table.body[0].length;MeZ.table.body.length)throw new Error(`Too few rows in the table. Property headerRows requires at least ${this.headerRows}, contains only ${Z.table.body.length}`);this.rowsWithoutPageBreak=this.headerRows;const FA=Z.table.keepWithHeaderRows;K(FA)&&(this.rowsWithoutPageBreak+=FA)}this.dontBreakRows=Z.table.dontBreakRows||!1,(this.rowsWithoutPageBreak||this.dontBreakRows)&&(s.beginUnbreakableBlock(),this.drawHorizontalLine(0,s),this.rowsWithoutPageBreak&&this.dontBreakRows&&s.beginUnbreakableBlock()),(FA=>{for(let ge=0;ge0&&te(ge+De,Qe,0,me.border[0]),void 0!==me.border[2]&&te(ge+De,Qe+Ue-1,2,me.border[2]);for(let De=0;De0&&te(ge,Qe+De,1,me.border[1]),void 0!==me.border[3]&&te(ge+Ye-1,Qe+De,3,me.border[3])}}}function te(ge,Me,Qe,me){let Ye=FA[ge][Me];Ye.border=Ye.border||{},Ye.border[Qe]=me}})(this.tableNode.table.body)}onRowBreak(s,d){return()=>{let F=this.rowPaddingTop+(this.headerRows?0:this.topLineWidth);d.context().availableHeight-=this.reservedAtBottom,d.context().moveDown(F)}}beginRow(s,d){this.topLineWidth=this.layout.hLineWidth(s,this.tableNode),this.rowPaddingTop=this.layout.paddingTop(s,this.tableNode),this.bottomLineWidth=this.layout.hLineWidth(s+1,this.tableNode),this.rowPaddingBottom=this.layout.paddingBottom(s,this.tableNode),this.rowCallback=this.onRowBreak(s,d),d.addListener("pageChanged",this.rowCallback),0==s&&!this.dontBreakRows&&!this.rowsWithoutPageBreak&&(this._tableTopBorderY=d.context().y,d.context().moveDown(this.topLineWidth)),this.rowTopPageY=d.context().y+this.rowPaddingTop;const W=(this.tableNode.table.body[s]||[]).some(ps);this._isCurrentRowUnbreakable=this.dontBreakRows&&s>0&&!W,this._isCurrentRowUnbreakable&&d.beginUnbreakableBlock(),this.rowTopY=d.context().y,this.reservedAtBottom=this.bottomLineWidth+this.rowPaddingBottom,d.context().availableHeight-=this.reservedAtBottom,d.context().moveDown(this.rowPaddingTop)}drawHorizontalLine(s,d,F,W,Z){void 0===W&&(W=!0);let EA=this.layout.hLineWidth(s,this.tableNode);if(EA){let Me,ge=this.layout.hLineStyle(s,this.tableNode);ge&&ge.dash&&(Me=ge.dash);let Ue,De,Le,Qe=EA/2,me=null,Ye=this.tableNode.table.body;for(let Se=0,it=this.rowSpanData.length;Se0&&(Ue=Ye[s-1][Se],(FA=Ue.border?Ue.border[3]:this.layout.defaultBorder)&&Ue.borderColor&&(zt=Ue.borderColor[3])),sgn;)me.width+=this.rowSpanData[Se+gn++].width||0;Se+=gn-1}else if(Ue&&Ue.colSpan&&FA){for(;Ue.colSpan>gn;)me.width+=this.rowSpanData[Se+gn++].width||0;Se+=gn-1}else if(De&&De.colSpan&&PA){for(;De.colSpan>gn;)me.width+=this.rowSpanData[Se+gn++].width||0;Se+=gn-1}else me.width+=this.rowSpanData[Se].width||0}let sn=(F||0)+Qe;vt&&me&&me.width&&(d.addVector({type:"line",x1:me.left,x2:me.left+me.width,y1:sn,y2:sn,lineWidth:EA,dash:Me,lineColor:zt},!1,N(F),null,Z),me=null,Ue=null,De=null,Le=null)}W&&d.context().moveDown(EA)}}drawVerticalLine(s,d,F,W,Z,EA,PA){let FA=this.layout.vLineWidth(W,this.tableNode);if(0===FA)return;let ge,te=this.layout.vLineStyle(W,this.tableNode);te&&te.dash&&(ge=te.dash);let Qe,me,Ye,Me=this.tableNode.table.body;if(W>0&&(Qe=Me[EA][PA],Qe&&Qe.borderColor&&(Qe.border?Qe.border[2]:this.layout.defaultBorder)&&(Ye=Qe.borderColor[2])),null==Ye&&W{let Se=[],it=0;for(let Ve=0,vt=this.tableNode.table.body[s].length;Ve0&&it--}return Se.push({x:this.rowSpanData[this.rowSpanData.length-1].left,index:this.rowSpanData.length-1}),Se})(),FA=[],te=F&&F.length>0,ge=this.tableNode.table.body;if(FA.push({y0:this.rowTopY,page:te?F[0].prevPage:Z}),te)for(let Se=0,it=F.length;Se0&&(Se=F[0].prevPage),this.drawHorizontalLine(0,d,this._tableTopBorderY,!1,Se)}for(let Se=Me?1:0,it=FA.length;Se0&&!this.headerRows,zt=vt?0:this.topLineWidth,sn=FA[Se].y0,gn=FA[Se].y1;Ve&&(gn+=this.rowPaddingBottom),d.context().page!=FA[Se].page&&(d.context().page=FA[Se].page,this.reservedAtBottom=0),Ve&&!1!==this.layout.hLineWhenBroken&&this.drawHorizontalLine(s+1,d,gn),vt&&!1!==this.layout.hLineWhenBroken&&this.drawHorizontalLine(s,d,sn);for(let Tn=0,rs=PA.length;Tn0&&!kn){let dn=ge[s][Xt-1];kn=dn.border?dn.border[2]:this.layout.defaultBorder}if(Xt+11)for(let Ve=1;Ve1)for(let Ve=1;Ve0&&this.rowSpanData[Se].rowSpan--}if(this.drawHorizontalLine(s+1,d),this.headerRows&&s===this.headerRows-1&&(this.headerRepeatable=d.currentBlockToRepeatable()),this.dontBreakRows&&(0===s||this._isCurrentRowUnbreakable)){const Se=()=>{s>0&&!this.headerRows&&!1!==this.layout.hLineWhenBroken&&this.drawHorizontalLine(s,d)};d.addListener("pageChanged",Se),d.commitUnbreakableBlock(),d.removeListener("pageChanged",Se)}this._isCurrentRowUnbreakable=!1,this.headerRepeatable&&(s===this.rowsWithoutPageBreak-1||s===this.tableNode.table.body.length-1)&&(d.commitUnbreakableBlock(),d.pushToRepeatables(this.headerRepeatable),this.cleanUpRepeatables=!0,this.headerRepeatable=null)}};class Ui{constructor(s){this.maxWidth=s,this.leadingCut=0,this.trailingCut=0,this.inlineWidths=0,this.inlines=[]}addInline(s){0===this.inlines.length&&(this.leadingCut=s.leadingCut||0),this.trailingCut=s.trailingCut||0,s.x=this.inlineWidths-this.leadingCut,this.inlines.push(s),this.inlineWidths+=s.width,s.lineEnd&&(this.newLineForced=!0)}getHeight(){let s=0;return this.inlines.forEach(d=>{s=Math.max(s,d.height||0)}),s}getAscenderHeight(){let s=0;return this.inlines.forEach(d=>{s=Math.max(s,d.font.ascender/1e3*d.fontSize)}),s}getWidth(){return this.inlineWidths-this.leadingCut-this.trailingCut}getAvailableWidth(){return this.maxWidth-this.getWidth()}hasEnoughSpaceForInline(s,d){if(void 0===d&&(d=[]),0===this.inlines.length)return!0;if(this.newLineForced)return!1;let F=s.width,W=s.trailingCut||0;if(s.noNewLine)for(let Z=0,EA=d.length;Z{$.push(d)})}const Li=class Ds{constructor(s,d,F){this.pageSize=s,this.pageMargins=d,this.svgMeasure=F,this.tableLayouts={},this.nestedLevel=0,this.verticalAlignmentItemStack=[]}registerTableLayouts(s){this.tableLayouts=bt(this.tableLayouts,s)}layoutDocument(s,d,F,W,Z,EA,PA,FA,te){function ge(me,Ye){if("function"!=typeof te)return!1;(me=me.filter(De=>!(!De||0===De.positions.length||""===De.text&&!De.listMarker))).forEach(De=>{let Le={};["id","text","ul","ol","table","image","qr","canvas","svg","columns","headlineLevel","style","pageBreak","pageOrientation","width","height"].forEach(Se=>{void 0!==De[Se]&&(Le[Se]=De[Se])}),Le.startPosition=De.positions[0],Le.pageNumbers=Array.from(new Set(De.positions.map(Se=>Se.pageNumber))),Le.pages=Ye.length,Le.stack=Array.isArray(De.stack),De.nodeInfo=Le});for(let De=0;De{let it=[];for(let Ve=De+1,vt=me.length;Ve-1&&it.push(me[Ve].nodeInfo);return it},getNodesOnNextPage:()=>{let it=[];for(let Ve=De+1,vt=me.length;Ve-1&&it.push(me[Ve].nodeInfo);return it},getPreviousNodesOnPage:()=>{let it=[];for(let Ve=0;Ve-1&&it.push(me[Ve].nodeInfo);return it}}))return Le.pageBreak="before",!0}}return!1}function Me(me){me.linearNodeList.forEach(Ye=>{Ye.resetXY()})}this.docPreprocessor=new dA,this.docMeasure=new di(d,F,W,this.svgMeasure,this.tableLayouts);let Qe=this.tryLayoutDocument(s,d,F,W,Z,EA,PA,FA);for(;ge(Qe.linearNodeList,Qe.pages);)Me(Qe),Qe=this.tryLayoutDocument(s,d,F,W,Z,EA,PA,FA);return Qe.pages}tryLayoutDocument(s,d,F,W,Z,EA,PA,FA){return this.linearNodeList=[],s=this.docPreprocessor.preprocessDocument(s),s=this.docMeasure.measureDocument(s),this.writer=new qi(new Xi),this.writer.context().addListener("pageAdded",ge=>{let Me=Z;(ge.customProperties.background||null===ge.customProperties.background)&&(Me=ge.customProperties.background),this.addBackground(Me)}),!((ge=s).stack&&ge.stack.length>0&&ge.stack[0].section||ge.section)&&this.writer.addPage(this.pageSize,null,this.pageMargins),this.processNode(s),this.addHeadersAndFooters(EA,PA),this.addWatermark(FA,d,W),{pages:this.writer.context().pages,linearNodeList:this.linearNodeList};var ge}addBackground(s){let d="function"==typeof s?s:()=>s,F=this.writer.context(),W=F.getCurrentPage().pageSize,Z=d(F.page+1,W);Z&&(this.writer.beginUnbreakableBlock(W.width,W.height),Z=this.docPreprocessor.preprocessBlock(Z),this.processNode(this.docMeasure.measureBlock(Z)),this.writer.commitUnbreakableBlock(0,0),F.backgroundLength[F.page]+=Z.positions.length)}addDynamicRepeatable(s,d,F){for(let Z=0,EA=this.writer.context().pages.length;Z"u"||null===FA)continue;let te=FA(Z+1,EA,this.writer.context().pages[Z].pageSize);if(te){let ge=d(this.writer.context().getCurrentPage().pageSize,this.writer.context().getCurrentPage().pageMargins);this.writer.beginUnbreakableBlock(ge.width,ge.height),te=this.docPreprocessor.preprocessBlock(te),this.processNode(this.docMeasure.measureBlock(te)),this.writer.commitUnbreakableBlock(ge.x,ge.y)}}}addHeadersAndFooters(s,d){this.addDynamicRepeatable(s,(Z,EA)=>({x:0,y:0,width:Z.width,height:EA.top}),"header"),this.addDynamicRepeatable(d,(Z,EA)=>({x:0,y:Z.height-EA.bottom,width:Z.width,height:EA.bottom}),"footer")}addWatermark(s,d,F){let W=this.writer.context().pages;for(let FA=0,te=W.length;FA1;)Qe.push({fontSize:De}),me=Me.sizeOfRotatedText(te.text,te.angle,Qe),me.width>FA.width?(Ue=De,De=(Ye+Ue)/2):me.widthFA.height?(Ue=De,De=(Ye+Ue)/2):(Ye=De,De=(Ye+Ue)/2)),Qe.pop();return De}(te,FA,ge));let Qe={text:FA.text,font:ge.provideFont(FA.font,FA.bold,FA.italics),fontSize:FA.fontSize,color:FA.color,opacity:FA.opacity,angle:FA.angle};return Qe._size=function EA(FA,te){let ge=new mt(te),Me=new SA(null,{font:FA.font,bold:FA.bold,italics:FA.italics});return Me.push({fontSize:FA.fontSize}),{size:ge.sizeOfText(FA.text,Me),rotatedSize:ge.sizeOfRotatedText(FA.text,FA.angle,Me)}}(FA,ge),Qe}}processNode(s,d){if(void 0===d&&(d=!1),this.linearNodeList.push(s),function Fs($){let s=$.x,d=$.y;$.positions=[],Array.isArray($.canvas)&&$.canvas.forEach(F=>{let W=F.x,Z=F.y,EA=F.x1,PA=F.y1,FA=F.x2,te=F.y2;F.resetXY=()=>{F.x=W,F.y=Z,F.x1=EA,F.y1=PA,F.x2=FA,F.y2=te}}),$.resetXY=()=>{$.x=s,$.y=d,Array.isArray($.canvas)&&$.canvas.forEach(F=>{F.resetXY()})}}(s),null!==this.writer.context().getCurrentPage())var W=this.writer.context().getCurrentPosition().top;(Z=>{let EA=s._margin;"before"===s.pageBreak?this.writer.moveToNextPage(s.pageOrientation):"beforeOdd"===s.pageBreak?(this.writer.moveToNextPage(s.pageOrientation),(this.writer.context().page+1)%2==1&&this.writer.moveToNextPage(s.pageOrientation)):"beforeEven"===s.pageBreak&&(this.writer.moveToNextPage(s.pageOrientation),(this.writer.context().page+1)%2==0&&this.writer.moveToNextPage(s.pageOrientation));const PA=s.relativePosition||s.absolutePosition;if(EA&&!PA){const FA=this.writer.context().availableHeight;FA-EA[1]<0?(this.writer.context().moveDown(FA),this.writer.context().inSnakingColumns()&&!this.writer.context().isInNestedNonSnakingGroup()?this.snakingAwarePageBreak(s.pageOrientation):this.writer.moveToNextPage(s.pageOrientation)):this.writer.context().moveDown(EA[1]),this.writer.context().addMargin(EA[0],EA[2])}if(Z(),EA&&!PA){const FA=this.writer.context().availableHeight;FA-EA[3]<0?(this.writer.context().moveDown(FA),this.writer.context().inSnakingColumns()&&!this.writer.context().isInNestedNonSnakingGroup()?this.snakingAwarePageBreak(s.pageOrientation):this.writer.moveToNextPage(s.pageOrientation)):this.writer.context().moveDown(EA[3]),this.writer.context().addMargin(-EA[0],-EA[2])}"after"===s.pageBreak?this.writer.moveToNextPage(s.pageOrientation):"afterOdd"===s.pageBreak?(this.writer.moveToNextPage(s.pageOrientation),(this.writer.context().page+1)%2==1&&this.writer.moveToNextPage(s.pageOrientation)):"afterEven"===s.pageBreak&&(this.writer.moveToNextPage(s.pageOrientation),(this.writer.context().page+1)%2==0&&this.writer.moveToNextPage(s.pageOrientation))})(()=>{let Z=s.verticalAlignment;if(d&&Z)var EA=this.writer.beginVerticalAlignment(Z);let PA=s.unbreakable;PA&&this.writer.beginUnbreakableBlock();let FA=s.absolutePosition;FA&&(this.writer.context().beginDetachedBlock(),this.writer.context().moveTo(FA.x||0,FA.y||0));let te=s.relativePosition;if(te&&(this.writer.context().beginDetachedBlock(),this.writer.context().moveToRelative(te.x||0,te.y||0)),s.stack)this.processVerticalContainer(s);else if(s.section)this.processSection(s);else if(s.columns)this.processColumns(s);else if(s.ul)this.processList(!1,s);else if(s.ol)this.processList(!0,s);else if(s.table)this.processTable(s);else if(void 0!==s.text)this.processLeaf(s);else if(s.toc)this.processToc(s);else if(s.image)this.processImage(s);else if(s.svg)this.processSVG(s);else if(s.canvas)this.processCanvas(s);else if(s.qr)this.processQr(s);else if(s.attachment)this.processAttachment(s);else if(!s._span)throw new Error(`Unrecognized document structure: ${P(s)}`);(FA||te)&&this.writer.context().endDetachedBlock(),PA&&this.writer.commitUnbreakableBlock(),d&&Z&&this.verticalAlignmentItemStack.push({begin:EA,end:this.writer.endVerticalAlignment(Z)})}),void 0!==W&&(s.__height=this.writer.context().getCurrentPosition().top-W)}snakingAwarePageBreak(s){let d=this.writer.context();if(!d.getSnakingSnapshot())return;if(this.writer.canMoveToNextColumn())return void this.writer.moveToNextColumn();this.writer.moveToNextPage(s);let W=d.lastColumnWidth;d.resetSnakingColumnsForNewPage(),d.lastColumnWidth=W}processVerticalContainer(s){s.stack.forEach(d=>{this.processNode(d),Zn(s.positions,d.positions)},this)}processSection(s){let d=this.writer.context().getCurrentPage();if(!d||d&&d.items.length){"inherit"===s.pageSize&&(s.pageSize=d?{width:d.pageSize.width,height:d.pageSize.height}:void 0),"inherit"===s.pageOrientation&&(s.pageOrientation=d?d.pageSize.orientation:void 0),"inherit"===s.pageMargins&&(s.pageMargins=d?d.pageMargins:void 0),"inherit"===s.header&&(s.header=d?d.customProperties.header:void 0),"inherit"===s.footer&&(s.footer=d?d.customProperties.footer:void 0),"inherit"===s.background&&(s.background=d?d.customProperties.background:void 0),"inherit"===s.watermark&&(s.watermark=d?d.customProperties.watermark:void 0),s.header&&"function"!=typeof s.header&&null!==s.header&&(s.header=Ze(s.header)),s.footer&&"function"!=typeof s.footer&&null!==s.footer&&(s.footer=Ze(s.footer));let F={};typeof s.header<"u"&&(F.header=s.header),typeof s.footer<"u"&&(F.footer=s.footer),typeof s.background<"u"&&(F.background=s.background),typeof s.watermark<"u"&&(F.watermark=s.watermark),this.writer.addPage(s.pageSize||this.pageSize,s.pageOrientation,s.pageMargins||this.pageMargins,F)}this.processNode(s.section)}processColumns(s){this.nestedLevel++;let d=s.columns,F=this.writer.context().availableWidth,W=function EA(PA){if(!PA)return null;let FA=[];FA.push(0);for(let te=d.length-1;te>0;te--)FA.push(PA);return FA}(s._gap);W&&(F-=(W.length-1)*s._gap),Gt_buildColumnWidths(d,F);let Z=this.processRow({marginX:s._margin?[s._margin[0],s._margin[2]]:[0,0],cells:d,widths:d,gaps:W,snakingColumns:s.snakingColumns});Zn(s.positions,Z.positions),this.nestedLevel--,0===this.nestedLevel&&this.writer.context().resetMarginXTopParent()}_findStartingRowSpanCell(s,d){let F=1;for(let W=d-1;W>=0;W--){if(!s[W]._span)return s[W].rowSpan>1&&(s[W].colSpan||1)===F?s[W]:null;F++}return null}_getPageBreak(s,d){return s.find(F=>F.prevPage===d)}_getPageBreakListBySpan(s,d,F){if(!s||!s._breaksBySpan)return null;const W=s._breaksBySpan.filter(PA=>PA.prevPage===d&&F<=PA.rowIndexOfSpanEnd);let Z=Number.MAX_VALUE,EA=Number.MIN_VALUE;return W.forEach(PA=>{EA=Math.max(PA.prevY,EA),Z=Math.min(PA.y,Z)}),{prevPage:d,prevY:EA,y:Z}}_findSameRowPageBreakByRowSpanData(s,d,F){return s?s.find(W=>W.prevPage===d&&F===W.rowIndexOfSpanEnd):null}_updatePageBreaksData(s,d,F){Object.keys(d._bottomByPage).forEach(W=>{const Z=Number(W),EA=this._getPageBreak(s,Z);if(EA&&(EA.prevY=Math.max(EA.prevY,d._bottomByPage[Z])),d._breaksBySpan&&d._breaksBySpan.length>0){const PA=d._breaksBySpan.filter(FA=>FA.prevPage===Z&&F<=FA.rowIndexOfSpanEnd);PA&&PA.length>0&&PA.forEach(FA=>{FA.prevY=Math.max(FA.prevY,d._bottomByPage[Z])})}})}_resolveBreakY(s,d,F){F.prevY=Math.max(s.prevY,d.prevY),F.y=Math.min(s.y,d.y)}_storePageBreakData(s,d,F,W){if(d){let EA=this._findSameRowPageBreakByRowSpanData(W&&W._breaksBySpan||null,s.prevPage,s.rowIndex);EA||(EA={...s,rowIndexOfSpanEnd:s.rowIndex+s.rowSpan-1},W._breaksBySpan||(W._breaksBySpan=[]),W._breaksBySpan.push(EA)),EA.prevY=Math.max(EA.prevY,s.prevY),EA.y=Math.min(EA.y,s.y);let PA=this._getPageBreak(F,s.prevPage);PA&&this._resolveBreakY(PA,EA,PA)}else{let Z=this._getPageBreak(F,s.prevPage),EA=this._getPageBreakListBySpan(W,s.prevPage,s.rowIndex);Z||(Z={...s},F.push(Z)),EA&&this._resolveBreakY(Z,EA,Z),this._resolveBreakY(Z,s,Z)}}_colLeftOffset(s,d){return d&&d.length>s?d[s]:0}_getRowSpanEndingCell(s,d,F,W){if(F.rowSpan&&F.rowSpan>1){let Z=d+F.rowSpan-1;if(Z>=s.length)throw new Error(`Row span for column ${W} (with indexes starting from 0) exceeded row count`);return s[Z][W]}return null}processRow(s){let d=s.marginX,F=void 0===d?[0,0]:d,W=s.dontBreakRows,Z=void 0!==W&&W,EA=s.rowsWithoutPageBreak,FA=s.cells,te=s.widths,ge=s.gaps,Me=s.tableNode,Qe=s.tableBody,me=s.rowIndex,Ye=s.height,Ue=s.snakingColumns,De=void 0!==Ue&&Ue;const Le=Z||me<=(void 0===EA?0:EA)-1;let Se=[],Ve=[],vt=!1,zt={};te=te||FA,!Le&&Ye>this.writer.context().availableHeight&&(vt=!0);const sn=1===this.nestedLevel?F:null,gn=Me?Me._bottomByPage:null,Tn=ge&&ge.length>1?ge[1]:0,rs=te.map(Zt=>Zt._calcWidth);this.writer.context().beginColumnGroup(sn,gn,De,Tn,rs);for(let Zt=0,_n=FA.length;Zt<_n;Zt++){let Yt=FA[Zt],mn=Zt;const ci=Hn=>{const xi=Yt.rowSpan&&Yt.rowSpan>1;xi&&(Hn.rowSpan=Yt.rowSpan),Hn.rowIndex=me,this._storePageBreakData(Hn,xi,Se,Me)};this.writer.addListener("pageChanged",ci);let $n=te[Zt]._calcWidth,zs=this._colLeftOffset(Zt,ge),ks=this._findStartingRowSpanCell(FA,Zt);if(Yt.colSpan&&Yt.colSpan>1)for(let Hn=1;Hn0&&(as._isUnbreakableContext=!0,as._originalXOffset=this.writer.originalX)),this.writer.context().beginColumn($n,zs,as),Yt._span||De&&Zt>0){if(Yt._columnEndingContext){let Hn=0;if(Z){const Ar=this.writer.contextStack[this.writer.contextStack.length-1];"number"==typeof Yt._startingRowSpanPage&&Yt._startingRowSpanPage===Ar.page&&"number"==typeof Yt._startingRowSpanY&&(Hn=Ar.y-Yt._startingRowSpanY),Hn=Math.max(0,Hn)}let xi=0;Yt._isUnbreakableContext&&!this.writer.transactionLevel&&(xi=Yt._originalXOffset),this.writer.context().markEnding(Yt,xi,Hn)}}else this.processNode(Yt,!0),this.writer.context().updateBottomByPage(),Yt.verticalAlignment&&(zt[mn]=this.verticalAlignmentItemStack.length-1),Zn(Ve,Yt.positions);this.writer.removeListener("pageChanged",ci)}let kn=null;const Jn=FA.length>0?FA[FA.length-1]:null;if(Jn)if(Jn._endingCell)kn=Jn._endingCell;else if(!0===Jn._span){const Zt=this._findStartingRowSpanCell(FA,FA.length);Zt&&(kn=Zt._endingCell,this.writer.transactionLevel>0&&(kn._isUnbreakableContext=!0,kn._originalXOffset=this.writer.originalX))}vt&&!Le&&0===Se.length&&(this.writer.context().moveDown(this.writer.context().availableHeight),De?this.snakingAwarePageBreak():this.writer.moveToNextPage());const Xt=this.writer.context().completeColumnGroup(Ye,kn);Me&&(Me._bottomByPage=Xt,this._updatePageBreaksData(Se,Me,me));let dn=this.writer.context().height;for(let Zt=0,_n=FA.length;Zt<_n;Zt++){let Yt=FA[Zt];if(!Yt._span&&Yt.verticalAlignment){let mn=this.verticalAlignmentItemStack[zt[Zt]].begin.item;mn.viewHeight=dn,mn.nodeHeight=Yt.__height,mn.cell=Yt,mn.bottomY=this.writer.context().y,mn.isCellContentMultiPage=!mn.cell.positions.every($n=>$n.pageNumber===mn.cell.positions[0].pageNumber),mn.getViewHeight=function(){return this.cell._willBreak?this.cell._bottomY-this.cell._rowTopPageY:this.cell.rowSpan&&this.cell.rowSpan>1?Z?this.cell._leftEndingCell._rowTopPageY-(this.cell._leftEndingCell._startingRowSpanY+this.cell._leftEndingCell._rowTopPageYPadding)+this.cell._leftEndingCell._bottomY:this.cell.positions[0].pageNumber!==this.cell._leftEndingCell._lastPageNumber?this.bottomY-this.cell._leftEndingCell._bottomY:this.viewHeight+this.cell._leftEndingCell._bottomY-this.bottomY:this.viewHeight},mn.getNodeHeight=function(){return this.nodeHeight},this.verticalAlignmentItemStack[zt[Zt]].end.item.isCellContentMultiPage=mn.isCellContentMultiPage}}return{pageBreaksBySpan:[],pageBreaks:Se,positions:Ve}}processList(s,d){const F=PA=>{if(EA){let FA=EA;if(EA=null,FA.canvas){let te=FA.canvas[0];Dt(te,-FA._minWidth,0),this.writer.addVector(te)}else if(FA._inlines){let te=new es(this.pageSize.width);te.addInline(FA._inlines[0]),te.x=-FA._minWidth,te.y=PA.getAscenderHeight()-te.getAscenderHeight(),this.writer.addLine(te,!0)}}};let EA,W=s?d.ol:d.ul,Z=d._gapSize;this.writer.context().addMargin(Z.width),this.writer.addListener("lineAdded",F),W.forEach(PA=>{EA=PA.listMarker,this.processNode(PA),Zn(d.positions,PA.positions)}),this.writer.removeListener("lineAdded",F),this.writer.context().addMargin(-Z.width)}processTable(s){this.nestedLevel++;let d=new Is(s);d.beginTable(this.writer);let F=s.table.heights,W=0;for(let Z=0,EA=s.table.body.length;Z0&&this.writer.context().inSnakingColumns()){let Qe=W>0?W:d.rowPaddingTop+14+d.rowPaddingBottom+d.bottomLineWidth+d.topLineWidth;this.writer.context().availableHeight{Qe.rowSpan&&Qe.rowSpan>1&&(Qe._startingRowSpanY=this.writer.context().y,Qe._startingRowSpanPage=this.writer.context().page)}),d.beginRow(Z,this.writer),FA="function"==typeof F?F(Z):Array.isArray(F)?F[Z]:F,"auto"===FA&&(FA=void 0);const te=this.writer.context().page;let ge=this.processRow({marginX:s._margin?[s._margin[0],s._margin[2]]:[0,0],dontBreakRows:d.dontBreakRows,rowsWithoutPageBreak:d.rowsWithoutPageBreak,cells:s.table.body[Z],widths:s.table.widths,gaps:s._offsets.offsets,tableBody:s.table.body,tableNode:s,rowIndex:Z,height:FA});if(Zn(s.positions,ge.positions),!ge.pageBreaks||0===ge.pageBreaks.length){const me=this._findSameRowPageBreakByRowSpanData(s&&s._breaksBySpan||null,te,Z);if(me){const Ye=this._getPageBreakListBySpan(s,me.prevPage,Z);ge.pageBreaks.push(Ye)}}d.endRow(Z,this.writer,ge.pageBreaks);let Me=this.writer.context().y;this.writer.context().page===te&&(W=Me-PA)}d.endTable(this.writer),this.nestedLevel--,0===this.nestedLevel&&this.writer.context().resetMarginXTopParent()}processLeaf(s){let d=this.buildNextLine(s);d&&(s.tocItem||s.id)&&(d._node=s);let F=d?d.getHeight():0,W=s.maxHeight||-1;if(d){let Z=rA(s);Z&&(d.id=Z)}if(s.outline)d._outline={id:s.id,parentId:s.outlineParentId,text:s.outlineText||s.text,expanded:s.outlineExpanded||!1};else if(Array.isArray(s.text))for(let Z=0,EA=s.text.length;Zthis.writer.context().availableHeight&&this.writer.context().y>this.writer.context().pageMargins.top){if(this.writer.context().inSnakingColumns()&&!this.writer.context().isInNestedNonSnakingGroup()){this.snakingAwarePageBreak(s.pageOrientation),d.inlines&&d.inlines.length>0&&s._inlines.unshift(...d.inlines),d=this.buildNextLine(s);continue}this.writer.moveToNextPage(s.pageOrientation)}let Z=this.writer.addLine(d);s.positions.push(Z),d=this.buildNextLine(s),d&&(F+=d.getHeight())}}processToc(s){!s.toc._table&&!0===s.toc.hideEmpty||(s.toc.title&&this.processNode(s.toc.title),s.toc._table&&this.processNode(s.toc._table))}buildNextLine(s){function d(PA){let FA=PA.constructor();for(let te in PA)FA[te]=PA[te];return FA}function F(PA,FA,te){let ge=1,Me=PA.length,Qe=1;for(;ge<=Me;){const me=Math.floor((ge+Me)/2);te(PA.substring(0,me))<=FA?(Qe=me,ge=me+1):Me=me-1}return Qe}if(!s._inlines||0===s._inlines.length)return null;let W=new es(this.writer.context().availableWidth);const Z=new mt(null);let EA=!1;for(;s._inlines&&s._inlines.length>0&&(W.hasEnoughSpaceForInline(s._inlines[0],s._inlines.slice(1))||EA);){let PA=!1,FA=s._inlines.shift();if(!FA.noWrap&&FA.text.length>1&&FA.width>W.getAvailableWidth()){let te=F(FA.text,W.getAvailableWidth(),ge=>Z.widthOfText(ge,FA));if(te{let s=parseFloat($);if("number"==typeof s&&!isNaN(s))return s},Ii=$=>{let s;try{s=new Gi.XmlDocument($)}catch(d){throw new Error("Invalid svg document ("+d+")",{cause:d})}if("svg"!==s.name)throw new Error("Invalid svg document (expected )");return s},ys=class qn{constructor(){}measureSVG(s){let d,F,W;if(I(s)){let PA=Ii(s);d=PA.attr.width,F=PA.attr.height,W=PA.attr.viewBox}else{if(!(typeof SVGElement<"u"&&s instanceof SVGElement&&"function"==typeof getComputedStyle))throw new Error("Invalid SVG document");d=s.getAttribute("width"),F=s.getAttribute("height"),W=s.getAttribute("viewBox")}let Z=un(d),EA=un(F);if((void 0===Z||void 0===EA)&&"string"==typeof W){let PA=W.split(/[,\s]+/);if(4!==PA.length)throw new Error("Unexpected svg viewBox format, should have 4 entries but found: '"+W+"'");void 0===Z&&(Z=un(PA[2])),void 0===EA&&(EA=un(PA[3]))}return{width:Z,height:EA}}writeDimensions(s,d){if(I(s)){let F=Ii(s);return"string"!=typeof F.attr.viewBox&&(F.attr.viewBox=`0 0 ${un(F.attr.width)} ${un(F.attr.height)}`),F.attr.width=""+d.width,F.attr.height=""+d.height,F.toString()}return s.hasAttribute("viewBox")||s.setAttribute("viewBox",`0 0 ${un(s.getAttribute("width"))} ${un(s.getAttribute("height"))}`),s.setAttribute("width",""+d.width),s.setAttribute("height",""+d.height),s}},oi=class Di{constructor(s){this.pdfDocument=s}drawBackground(s,d,F){let W=s.getHeight();for(let Z=0,EA=s.inlines.length;Z{let d=[],F=null;for(let W=0,Z=$.inlines.length;W{let Ye=0;for(let Ue=0,De=s.inlines.length;UeYe?Ue:Ye;return s.inlines[Ye]})(),FA=(()=>{let Ye=0;for(let Ue=0,De=s.inlines.length;Ue{let d=$;return s.sup&&(d-=.75*s.fontSize),s.sub&&(d+=.35*s.fontSize),d},ts=class vs{constructor(s,d){this.pdfDocument=s,this.progressCallback=d,this.outlineMap=[]}renderPages(s){this.pdfDocument._pdfMakePages=s;let d=0;this.progressCallback&&s.forEach(W=>{d+=W.items.length});let F=0;for(let W=0;W1){let EA=s.points[0],PA=s.points[s.points.length-1];(s.closePath||EA.x===PA.x&&EA.y===PA.y)&&this.pdfDocument.closePath()}break;case"path":this.pdfDocument.path(s.d)}if(s.linearGradient&&d){let EA=1/(s.linearGradient.length-1);for(let PA=0;PA{let EA=F.split(",").map(te=>te.trim().replace(/('|")/g,"")),PA=(($,s,d)=>{for(let F=0;F-1&&(PA=PA.slice(0,FA)),PA.forEach(ge=>{ge.pageSize.height===1/0&&(ge.pageSize.height=function li($,s){let W=pi(s||40),Z=W.top;return $.items.forEach(EA=>{let PA=function F(EA){return(EA.item.y||0)+function d(EA){return"function"==typeof EA.item.getHeight?EA.item.getHeight():EA.item._height?EA.item._height:"vector"===EA.type?typeof EA.item.y1<"u"?EA.item.y1>EA.item.y2?EA.item.y1:EA.item.y2:EA.item.h:0}(EA)}(EA);PA>Z&&(Z=PA)}),Z+=W.bottom,Z}(ge,ge.pageMargins))}),new ts(F.pdfKitDoc,d.progressCallback).renderPages(PA),F.pdfKitDoc})()}resolveUrls(s){var d=this;return de(function*(){const F=W=>"object"==typeof W?{url:W.url,headers:W.headers}:{url:W,headers:{}};for(let W in d.fontDescriptors)if(d.fontDescriptors.hasOwnProperty(W)){if(d.fontDescriptors[W].normal)if(Array.isArray(d.fontDescriptors[W].normal)){let Z=F(d.fontDescriptors[W].normal[0]);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].normal[0]=Z.url}else{let Z=F(d.fontDescriptors[W].normal);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].normal=Z.url}if(d.fontDescriptors[W].bold)if(Array.isArray(d.fontDescriptors[W].bold)){let Z=F(d.fontDescriptors[W].bold[0]);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].bold[0]=Z.url}else{let Z=F(d.fontDescriptors[W].bold);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].bold=Z.url}if(d.fontDescriptors[W].italics)if(Array.isArray(d.fontDescriptors[W].italics)){let Z=F(d.fontDescriptors[W].italics[0]);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].italics[0]=Z.url}else{let Z=F(d.fontDescriptors[W].italics);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].italics=Z.url}if(d.fontDescriptors[W].bolditalics)if(Array.isArray(d.fontDescriptors[W].bolditalics)){let Z=F(d.fontDescriptors[W].bolditalics[0]);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].bolditalics[0]=Z.url}else{let Z=F(d.fontDescriptors[W].bolditalics);d.urlResolver.resolve(Z.url,Z.headers),d.fontDescriptors[W].bolditalics=Z.url}}if(s.images)for(let W in s.images)if(s.images.hasOwnProperty(W)){let Z=F(s.images[W]);d.urlResolver.resolve(Z.url,Z.headers),s.images[W]=Z.url}if(s.attachments)for(let W in s.attachments)if(s.attachments.hasOwnProperty(W)&&s.attachments[W].src){let Z=F(s.attachments[W].src);d.urlResolver.resolve(Z.url,Z.headers),s.attachments[W].src=Z.url}if(s.files)for(let W in s.files)if(s.files.hasOwnProperty(W)&&s.files[W].src){let Z=F(s.files[W].src);d.urlResolver.resolve(Z.url,Z.headers),s.files[W].src=Z.url}yield d.urlResolver.resolved()})()}};var is=f(6811);function Fi(){return(Fi=de(function*($,s,d){void 0===s&&(s={});for(let F=0;F<=30;F++){if(typeof d<"u"&&!0!==d($))throw new Error(`Access to URL denied by resource access policy: ${$}`);try{let W=yield fetch($,{headers:s,redirect:"manual"});if(W.status>=300&&W.status<400){let Z=W.headers.get("location");if(!Z)throw new Error("Redirect response missing Location header");$=new URL(Z,$).href;continue}if("opaqueredirect"===W.type&&(W=yield fetch($,{headers:s})),!W.ok)throw new Error(`Failed to fetch (status code: ${W.status})`);return W}catch(W){throw new Error(`Network request failed (url: "${$}", error: ${W.message})`,{cause:W})}}throw new Error(`Network request failed (url: "${$}", error: Too many redirects)`)})).apply(this,arguments)}const Us=class ki{constructor(s){this.fs=s,this.resolving={},this.urlAccessPolicy=void 0}setUrlAccessPolicy(s){this.urlAccessPolicy=s}resolve(s,d){var F=this;void 0===d&&(d={});const W=function(){var Z=de(function*(){if(s.toLowerCase().startsWith("https://")||s.toLowerCase().startsWith("http://")){if(F.fs.existsSync(s))return;const EA=yield function Ps($,s,d){return Fi.apply(this,arguments)}(s,d,F.urlAccessPolicy);if(EA.redirected&&typeof F.urlAccessPolicy<"u"&&!0!==F.urlAccessPolicy(EA.url))throw new Error(`Access to URL denied by resource access policy: ${EA.url}`);const PA=yield EA.arrayBuffer();F.fs.writeFileSync(s,PA)}});return function(){return Z.apply(this,arguments)}}();return this.resolving[s]||(this.resolving[s]=W()),this.resolving[s]}resolved(){return Promise.all(Object.values(this.resolving))}};var zn=f(9964);const ss=class Ls{constructor(){this.virtualfs=is.default,this.urlAccessPolicy=void 0,this.localAccessPolicy=void 0}createPdf(s,d){if(void 0===d&&(d={}),!v(s))throw new Error("Parameter 'docDefinition' has an invalid type. Object expected.");if(!v(d))throw new Error("Parameter 'options' has an invalid type. Object expected.");d.progressCallback=this.progressCallback,d.tableLayouts=this.tableLayouts;const F=typeof zn<"u"&&zn?.versions?.node;typeof this.urlAccessPolicy>"u"&&F&&console.warn("No URL access policy defined. Consider using setUrlAccessPolicy() to restrict external resource downloads."),typeof this.localAccessPolicy>"u"&&F&&console.warn("No local access policy defined. Consider using setLocalAccessPolicy() to restrict local file system access.");let W=new Us(this.virtualfs);W.setUrlAccessPolicy(this.urlAccessPolicy);const EA=new Ns(this.fonts,this.virtualfs,W,this.localAccessPolicy).createPdfKitDocument(s,d);return this._transformToDocument(EA)}setUrlAccessPolicy(s){if(void 0!==s&&"function"!=typeof s)throw new Error("Parameter 'callback' has an invalid type. Function or undefined expected.");this.urlAccessPolicy=s}setProgressCallback(s){this.progressCallback=s}addTableLayouts(s){this.tableLayouts=bt(this.tableLayouts,s)}setTableLayouts(s){this.tableLayouts=s}clearTableLayouts(){this.tableLayouts={}}addFonts(s){this.fonts=bt(this.fonts,s)}setFonts(s){this.fonts=s}clearFonts(){this.fonts={}}_transformToDocument(s){return s}};var Gs=f(783).Buffer;const Yn=class yi{constructor(s){this.bufferSize=1073741824,this.pdfDocumentPromise=s,this.bufferPromise=null}getStream(){return this.pdfDocumentPromise}getBuffer(){var s=this;const d=function(){var F=de(function*(){const W=yield s.getStream();return new Promise(Z=>{let EA=[];W.on("readable",()=>{let PA;for(;null!==(PA=W.read(s.bufferSize));)EA.push(PA)}),W.on("end",()=>{Z(Gs.concat(EA))}),W.end()})});return function(){return F.apply(this,arguments)}}();return null===this.bufferPromise&&(this.bufferPromise=d()),this.bufferPromise}getBase64(){var s=this;return de(function*(){return(yield s.getBuffer()).toString("base64")})()}getDataUrl(){var s=this;return de(function*(){return"data:application/pdf;base64,"+(yield s.getBase64())})()}};var h=f(5127);const p=class y extends Yn{getBlob(){var s=this;return de(function*(){const d=yield s.getBuffer();return new Blob([d],{type:"application/pdf"})})()}download(s){var d=this;return de(function*(){void 0===s&&(s="file.pdf");const F=yield d.getBlob();(0,h.saveAs)(F,s)})()}open(s){var d=this;return de(function*(){void 0===s&&(s=null),s||(s=(()=>{let $=window.open("","_blank");if(null===$)throw new Error("Open PDF in new window blocked by browser");return $})());const F=yield d.getBlob();try{let Z=(window.URL||window.webkitURL).createObjectURL(F);s.location.href=Z}catch(W){throw s.close(),W}})()}print(s){var d=this;return de(function*(){void 0===s&&(s=null),(yield d.getStream()).setOpenActionAsPrint(),yield d.open(s)})()}};var q=f(2416),CA=f.n(q),_A=f(890);f.n(_A)()({useNative:["Promise"]});let he={Roboto:{normal:"Roboto-Regular.ttf",bold:"Roboto-Medium.ttf",italics:"Roboto-Italic.ttf",bolditalics:"Roboto-MediumItalic.ttf"}};const xe=new class Ie extends ss{constructor(){super(),this.fonts=he}addFontContainer(s){this.addVirtualFileSystem(s.vfs),this.addFonts(s.fonts)}addVirtualFileSystem(s){for(let d in s)if(s.hasOwnProperty(d)){let F,W;"object"==typeof s[d]?(F=s[d].data,W=s[d].encoding||"base64"):(F=s[d],W="base64"),CA().writeFileSync(d,F,W)}}_transformToDocument(s){return new p(s)}}},2736(eA,Q,f){eA.exports=f(7133).default},2416(eA,Q,f){eA.exports=f(6811).default},6811(eA,Q,f){"use strict";f.d(Q,{default:()=>K});var g=f(783).Buffer;const I=v=>(0===v.indexOf("/")&&(v=v.substring(1)),0===v.indexOf("/")&&(v=v.substring(1)),v),K=new class N{constructor(){this.storage={}}existsSync(B){const j=I(B);return typeof this.storage[j]<"u"}readFileSync(B,j){const tA=I(B),w="object"==typeof j?j.encoding:j;if(!this.existsSync(tA))throw new Error(`File '${tA}' not found in virtual file system`);const aA=this.storage[tA];return w?aA.toString(w):aA}writeFileSync(B,j,tA){const w=I(B),aA="object"==typeof tA?tA.encoding:tA;if(!j&&!tA)throw new Error("No content");this.storage[w]=aA||"string"==typeof j?new g(j,aA):j}}},6582(eA,Q,f){"use strict";Q.A=void 0;var g=function I(K){return K&&K.__esModule?K:{default:K}}(f(7696));Q.A=g.default},7696(eA,Q,f){"use strict";(eA=f.nmd(eA))&&typeof eA.exports<"u"&&(eA.exports=function(g,I,N,K,v){const B={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],darkgrey:[169,169,169],darkgreen:[0,100,0],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],grey:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],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],lightgrey:[211,211,211],lightgreen:[144,238,144],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]},j={black:[B.black,1],white:[B.white,1],transparent:[B.black,0]},tA={quot:34,amp:38,lt:60,gt:62,apos:39,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,circ:710,tilde:732,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,permil:8240,lsaquo:8249,rsaquo:8250,euro:8364,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,copy:169,ordf:170,laquo:171,not:172,shy:173,reg:174,macr:175,deg:176,plusmn:177,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,sup1:185,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,Agrave:192,Aacute:193,Acirc:194,Atilde:195,Auml:196,Aring:197,AElig:198,Ccedil:199,Egrave:200,Eacute:201,Ecirc:202,Euml:203,Igrave:204,Iacute:205,Icirc:206,Iuml:207,ETH:208,Ntilde:209,Ograve:210,Oacute:211,Ocirc:212,Otilde:213,Ouml:214,times:215,Oslash:216,Ugrave:217,Uacute:218,Ucirc:219,Uuml:220,Yacute:221,THORN:222,szlig:223,agrave:224,aacute:225,acirc:226,atilde:227,auml:228,aring:229,aelig:230,ccedil:231,egrave:232,eacute:233,ecirc:234,euml:235,igrave:236,iacute:237,icirc:238,iuml:239,eth:240,ntilde:241,ograve:242,oacute:243,ocirc:244,otilde:245,ouml:246,divide:247,oslash:248,ugrave:249,uacute:250,ucirc:251,uuml:252,yacute:253,thorn:254,yuml:255,fnof:402,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,bull:8226,hellip:8230,prime:8242,Prime:8243,oline:8254,frasl:8260,weierp:8472,image:8465,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},w={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0},aA={A3:!0,A4:!0,a3:!0,a4:!0},AA={color:{inherit:!0,initial:void 0},visibility:{inherit:!0,initial:"visible",values:{hidden:"hidden",collapse:"hidden",visible:"visible"}},fill:{inherit:!0,initial:j.black},stroke:{inherit:!0,initial:"none"},"stop-color":{inherit:!1,initial:j.black},"fill-opacity":{inherit:!0,initial:1},"stroke-opacity":{inherit:!0,initial:1},"stop-opacity":{inherit:!1,initial:1},"fill-rule":{inherit:!0,initial:"nonzero",values:{nonzero:"nonzero",evenodd:"evenodd"}},"clip-rule":{inherit:!0,initial:"nonzero",values:{nonzero:"nonzero",evenodd:"evenodd"}},"stroke-width":{inherit:!0,initial:1},"stroke-dasharray":{inherit:!0,initial:[]},"stroke-dashoffset":{inherit:!0,initial:0},"stroke-miterlimit":{inherit:!0,initial:4},"stroke-linejoin":{inherit:!0,initial:"miter",values:{miter:"miter",round:"round",bevel:"bevel"}},"stroke-linecap":{inherit:!0,initial:"butt",values:{butt:"butt",round:"round",square:"square"}},"font-size":{inherit:!0,initial:16,values:{"xx-small":9,"x-small":10,small:13,medium:16,large:18,"x-large":24,"xx-large":32}},"font-family":{inherit:!0,initial:"sans-serif"},"font-weight":{inherit:!0,initial:"normal",values:{600:"bold",700:"bold",800:"bold",900:"bold",bold:"bold",bolder:"bold",500:"normal",400:"normal",300:"normal",200:"normal",100:"normal",normal:"normal",lighter:"normal"}},"font-style":{inherit:!0,initial:"normal",values:{italic:"italic",oblique:"italic",normal:"normal"}},"text-anchor":{inherit:!0,initial:"start",values:{start:"start",middle:"middle",end:"end"}},direction:{inherit:!0,initial:"ltr",values:{ltr:"ltr",rtl:"rtl"}},"dominant-baseline":{inherit:!0,initial:"baseline",values:{auto:"baseline",baseline:"baseline","before-edge":"before-edge","text-before-edge":"before-edge",middle:"middle",central:"central","after-edge":"after-edge","text-after-edge":"after-edge",ideographic:"ideographic",alphabetic:"alphabetic",hanging:"hanging",mathematical:"mathematical"}},"alignment-baseline":{inherit:!1,initial:void 0,values:{auto:"baseline",baseline:"baseline","before-edge":"before-edge","text-before-edge":"before-edge",middle:"middle",central:"central","after-edge":"after-edge","text-after-edge":"after-edge",ideographic:"ideographic",alphabetic:"alphabetic",hanging:"hanging",mathematical:"mathematical"}},"baseline-shift":{inherit:!0,initial:"baseline",values:{baseline:"baseline",sub:"sub",super:"super"}},"word-spacing":{inherit:!0,initial:0,values:{normal:0}},"letter-spacing":{inherit:!0,initial:0,values:{normal:0}},"text-decoration":{inherit:!1,initial:"none",values:{none:"none",underline:"underline",overline:"overline","line-through":"line-through"}},"xml:space":{inherit:!0,initial:"default",css:"white-space",values:{preserve:"preserve",default:"default",pre:"preserve","pre-line":"preserve","pre-wrap":"preserve",nowrap:"default"}},"marker-start":{inherit:!0,initial:"none"},"marker-mid":{inherit:!0,initial:"none"},"marker-end":{inherit:!0,initial:"none"},opacity:{inherit:!1,initial:1},transform:{inherit:!1,initial:[1,0,0,1,0,0]},display:{inherit:!1,initial:"inline",values:{none:"none",inline:"inline",block:"inline"}},"clip-path":{inherit:!1,initial:"none"},mask:{inherit:!1,initial:"none"},overflow:{inherit:!1,initial:"hidden",values:{hidden:"hidden",scroll:"hidden",visible:"visible"}},"vector-effect":{inherit:!0,initial:"none",values:{none:"none","non-scaling-stroke":"non-scaling-stroke"}}};function L(GA){let zA=new function(){};return zA.name="G"+(g._groupCount=(g._groupCount||0)+1),zA.resources=g.ref(),zA.xobj=g.ref({Type:"XObject",Subtype:"Form",FormType:1,BBox:GA,Group:{S:"Transparency",CS:"DeviceRGB",I:!0,K:!1},Resources:zA.resources}),zA.xobj.write(""),zA.savedMatrix=g._ctm,zA.savedPage=g.page,Et.push(zA),g._ctm=[1,0,0,1,0,0],g.page={width:g.page.width,height:g.page.height,write:function(vA){zA.xobj.write(vA)},fonts:{},xobjects:{},ext_gstates:{},patterns:{}},zA}function P(GA){if(GA!==Et.pop())throw"Group not matching";Object.keys(g.page.fonts).length&&(GA.resources.data.Font=g.page.fonts),Object.keys(g.page.xobjects).length&&(GA.resources.data.XObject=g.page.xobjects),Object.keys(g.page.ext_gstates).length&&(GA.resources.data.ExtGState=g.page.ext_gstates),Object.keys(g.page.patterns).length&&(GA.resources.data.Pattern=g.page.patterns),GA.resources.end(),GA.xobj.end(),g._ctm=GA.savedMatrix,g.page=GA.savedPage}function rA(GA){g.page.xobjects[GA.name]=GA.xobj,g.addContent("/"+GA.name+" Do")}function QA(GA,zA){let vA="M"+(g._maskCount=(g._maskCount||0)+1),qA=g.ref({Type:"ExtGState",CA:1,ca:1,BM:"Normal",SMask:{S:"Luminosity",G:GA.xobj,BC:zA?[0,0,0]:[1,1,1]}});qA.end(),g.page.ext_gstates[vA]=qA,g.addContent("/"+vA+" gs")}function NA(GA,zA,vA,qA){return{type:"PDFPattern",group:GA,dx:zA,dy:vA,matrix:qA||[1,0,0,1,0,0]}}function oA(GA,zA){let vA="P"+(g._patternCount=(g._patternCount||0)+1),qA=g.ref({Type:"Pattern",PatternType:1,PaintType:1,TilingType:2,BBox:[0,0,GA.dx,GA.dy],XStep:GA.dx,YStep:GA.dy,Matrix:UA(g._ctm,GA.matrix),Resources:{ProcSet:["PDF","Text","ImageB","ImageC","ImageI"],XObject:function(){let ZA={};return ZA[GA.group.name]=GA.group.xobj,ZA}()}});qA.write("/"+GA.group.name+" Do"),qA.end(),g.page.patterns[vA]=qA,zA?(g.addContent("/Pattern CS"),g.addContent("/"+vA+" SCN")):(g.addContent("/Pattern cs"),g.addContent("/"+vA+" scn"))}function uA(GA,zA){g.page.fonts[GA.id]||(g.page.fonts[GA.id]=GA.ref()),g.addContent("BT").addContent("/"+GA.id+" "+zA+" Tf")}function dA(GA,zA,vA,qA,ZA,jA){g.addContent(JA(GA)+" "+JA(zA)+" "+JA(-vA)+" "+JA(-qA)+" "+JA(ZA)+" "+JA(jA)+" Tm")}function RA(GA,zA){g.addContent((GA&&zA?2:zA?1:GA?0:3)+" Tr")}function nA(GA,zA){let vA=[],qA="";const ZA=zA.fauxItalic?-.25:0;function jA(WA){qA+=WA.glyph,0!==WA.kern&&(vA.push(`<${qA}> ${JA(WA.kern)}`),qA="")}function ue(){qA.length&&(vA.push(`<${qA}> 0`),qA=""),vA.length&&(g.addContent(`[${vA.join(" ")}] TJ`),vA=[])}for(let WA=0;WA0)for(;zA<0;)zA+=qA;g.dash(GA,{phase:zA})}function VA(GA){let zA=function(WA,ae,ce,ye){this.error=ye,this.nodeName=WA,this.nodeValue=ce,this.nodeType=ae,this.attributes=Object.create(null),this.childNodes=[],this.parentNode=null,this.id="",this.textContent="",this.classList=[]};zA.prototype.getAttribute=function(WA){return null!=this.attributes[WA]?this.attributes[WA]:null},zA.prototype.getElementById=function(WA){let ae=null;return function ce(ye){if(!ae&&1===ye.nodeType){ye.id===WA&&(ae=ye);for(let ke=0;ke/)){for(;ae=ue();)ce.childNodes.push(ae),ae.parentNode=ce,ce.textContent+=3===ae.nodeType||4===ae.nodeType?ae.nodeValue:ae.textContent;return(WA=vA.match(/^<\/([\w:.-]+)\s*>/,!0))?(WA[1]===ce.nodeName||(Mt('parseXml: tag not matching, opening "'+ce.nodeName+'" & closing "'+WA[1]+'"'),jA=!0),ce):(Mt('parseXml: tag not matching, opening "'+ce.nodeName+'" & not closing'),jA=!0,ce)}if(vA.match(/^\/>/))return ce;Mt('parseXml: tag could not be parsed "'+ce.nodeName+'"'),jA=!0}else{if(WA=vA.match(/^/))return new zA(null,8,WA,jA);if(WA=vA.match(/^<\?[\s\S]*?\?>/))return new zA(null,7,WA,jA);if(WA=vA.match(/^/))return new zA(null,10,WA,jA);if(WA=vA.match(/^/,!0))return new zA("#cdata-section",4,WA[1],jA);if(WA=vA.match(/^([^<]+)/,!0))return new zA("#text",3,kA(WA[1]),jA)}};for(;ZA=ue();)1!==ZA.nodeType||qA?(1===ZA.nodeType||3===ZA.nodeType&&""!==ZA.nodeValue.trim())&&Mt("parseXml: data after document end has been discarded"):qA=ZA;return vA.matchAll()&&Mt("parseXml: parsing error"),qA}function kA(GA){return GA.replace(/&(?:#([0-9]+)|#[xX]([0-9A-Fa-f]+)|([0-9A-Za-z]+));/g,function(zA,vA,qA,ZA){return vA?String.fromCharCode(parseInt(vA,10)):qA?String.fromCharCode(parseInt(qA,16)):ZA&&tA[ZA]?String.fromCharCode(tA[ZA]):zA})}function hA(GA){let zA,vA;return GA=(GA||"").trim(),(zA=B[GA])?vA=[zA.slice(),1]:(zA=GA.match(/^cmyk\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i))?(zA[1]=parseInt(zA[1]),zA[2]=parseInt(zA[2]),zA[3]=parseInt(zA[3]),zA[4]=parseFloat(zA[4]),zA[1]<=100&&zA[2]<=100&&zA[3]<=100&&zA[4]<=100&&(vA=[zA.slice(1,5),1])):(zA=GA.match(/^rgba\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9.]+)\s*\)$/i))?(zA[1]=parseInt(zA[1]),zA[2]=parseInt(zA[2]),zA[3]=parseInt(zA[3]),zA[4]=parseFloat(zA[4]),zA[1]<256&&zA[2]<256&&zA[3]<256&&zA[4]<=1&&(vA=[zA.slice(1,4),zA[4]])):(zA=GA.match(/^rgb\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)$/i))?(zA[1]=parseInt(zA[1]),zA[2]=parseInt(zA[2]),zA[3]=parseInt(zA[3]),zA[1]<256&&zA[2]<256&&zA[3]<256&&(vA=[zA.slice(1,4),1])):(zA=GA.match(/^rgb\(\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*\)$/i))?(zA[1]=2.55*parseFloat(zA[1]),zA[2]=2.55*parseFloat(zA[2]),zA[3]=2.55*parseFloat(zA[3]),zA[1]<256&&zA[2]<256&&zA[3]<256&&(vA=[zA.slice(1,4),1])):(zA=GA.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i))?vA=[[parseInt(zA[1],16),parseInt(zA[2],16),parseInt(zA[3],16)],1]:(zA=GA.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&(vA=[[17*parseInt(zA[1],16),17*parseInt(zA[2],16),17*parseInt(zA[3],16)],1]),Dt?Dt(vA,GA):vA}function fA(GA,zA,vA){let qA=GA[0].slice(),ZA=GA[1]*zA;if(vA){for(let jA=0;jA=0;zA--)GA=UA(Et[zA].savedMatrix,GA);return GA}function Ee(){return(new oe).M(0,0).L(g.page.width,0).L(g.page.width,g.page.height).L(0,g.page.height).transform(cA(xA())).getBoundingBox()}function cA(GA){let zA=GA[0]*GA[3]-GA[1]*GA[2];return[GA[3]/zA,-GA[1]/zA,-GA[2]/zA,GA[0]/zA,(GA[2]*GA[5]-GA[3]*GA[4])/zA,(GA[1]*GA[4]-GA[0]*GA[5])/zA]}function J(GA){let zA=JA(GA[0]),vA=JA(GA[1]),qA=JA(GA[2]),ZA=JA(GA[3]),jA=JA(GA[4]),ue=JA(GA[5]);if(LA(zA*ZA-vA*qA,0))return[zA,vA,qA,ZA,jA,ue]}function U(GA){let zA=GA[2]||0,vA=GA[1]||0,qA=GA[0]||0;if(lA(zA,0)&&lA(vA,0))return[];if(lA(zA,0))return[-qA/vA];{let ZA=vA*vA-4*zA*qA;return LA(ZA,0)&&ZA>0?[(-vA+Math.sqrt(ZA))/(2*zA),(-vA-Math.sqrt(ZA))/(2*zA)]:lA(ZA,0)?[-vA/(2*zA)]:[]}}function O(GA,zA){return(zA[0]||0)+(zA[1]||0)*GA+(zA[2]||0)*GA*GA+(zA[3]||0)*GA*GA*GA}function lA(GA,zA){return Math.abs(GA-zA)<1e-10}function LA(GA,zA){return Math.abs(GA-zA)>=1e-10}function JA(GA){return GA>-1e21&&GA<1e21?Math.round(1e6*GA)/1e6:0}function IA(GA){let qA,zA=new Te((GA||"").trim()),vA=[1,0,0,1,0,0];for(;qA=zA.match(/^([A-Za-z]+)\s*[(]([^(]+)[)]/,!0);){let WA,ZA=qA[1],jA=[],ue=new Te(qA[2].trim());for(;WA=ue.matchNumber();)jA.push(Number(WA)),ue.matchSeparator();if("matrix"===ZA&&6===jA.length)vA=UA(vA,[jA[0],jA[1],jA[2],jA[3],jA[4],jA[5]]);else if("translate"===ZA&&2===jA.length)vA=UA(vA,[1,0,0,1,jA[0],jA[1]]);else if("translate"===ZA&&1===jA.length)vA=UA(vA,[1,0,0,1,jA[0],0]);else if("scale"===ZA&&2===jA.length)vA=UA(vA,[jA[0],0,0,jA[1],0,0]);else if("scale"===ZA&&1===jA.length)vA=UA(vA,[jA[0],0,0,jA[0],0,0]);else if("rotate"===ZA&&3===jA.length){let ae=jA[0]*Math.PI/180;vA=UA(vA,[1,0,0,1,jA[1],jA[2]],[Math.cos(ae),Math.sin(ae),-Math.sin(ae),Math.cos(ae),0,0],[1,0,0,1,-jA[1],-jA[2]])}else if("rotate"===ZA&&1===jA.length){let ae=jA[0]*Math.PI/180;vA=UA(vA,[Math.cos(ae),Math.sin(ae),-Math.sin(ae),Math.cos(ae),0,0])}else if("skewX"===ZA&&1===jA.length){let ae=jA[0]*Math.PI/180;vA=UA(vA,[1,0,Math.tan(ae),1,0,0])}else{if("skewY"!==ZA||1!==jA.length)return;{let ae=jA[0]*Math.PI/180;vA=UA(vA,[1,Math.tan(ae),0,1,0,0])}}zA.matchSeparator()}if(!zA.matchAll())return vA}function gA(GA,zA,vA,qA,ZA,jA){let ue=(GA||"").trim().match(/^(none)$|^x(Min|Mid|Max)Y(Min|Mid|Max)(?:\s+(meet|slice))?$/)||[],WA=ue[1]||ue[4]||"meet",ye=zA/qA,ke=vA/ZA,Je={Min:0,Mid:.5,Max:1}[ue[2]||"Mid"]-(jA||0),tt={Min:0,Mid:.5,Max:1}[ue[3]||"Mid"]-(jA||0);return"slice"===WA?ke=ye=Math.max(ye,ke):"meet"===WA&&(ke=ye=Math.min(ye,ke)),[ye,0,0,ke,Je*(zA-qA*ye),tt*(vA-ZA*ke)]}function C(GA){let zA=Object.create(null);GA=(GA||"").trim().split(/;/);for(let vA=0;vAst&&(je=st,st=Ce,Ce=je),_e>lt&&(je=lt,lt=_e,_e=je);let wt=U(ke);for(let pt=0;pt=0&&wt[pt]<=1){let ot=O(wt[pt],ce);otst&&(st=ot)}let Bt=U(Je);for(let pt=0;pt=0&&Bt[pt]<=1){let ot=O(Bt[pt],ye);ot<_e&&(_e=ot),ot>lt&&(lt=ot)}return[Ce,_e,st,lt]},this.getPointAtLength=function(je){if(lA(je,0))return this.startPoint;if(lA(je,this.totalLength))return this.endPoint;if(!(je<0||je>this.totalLength))for(let Ce=1;Ce<=ae;Ce++){let _e=tt[Ce-1],st=tt[Ce];if(_e<=je&&je<=st){let lt=(Ce-(st-je)/(st-_e))/ae,wt=O(lt,ce),Bt=O(lt,ye),pt=O(lt,ke),ot=O(lt,Je);return[wt,Bt,Math.atan2(ot,pt)]}}}},Oe=function(GA,zA,vA,qA){this.totalLength=Math.sqrt((vA-GA)*(vA-GA)+(qA-zA)*(qA-zA)),this.startPoint=[GA,zA,Math.atan2(qA-zA,vA-GA)],this.endPoint=[vA,qA,Math.atan2(qA-zA,vA-GA)],this.getBoundingBox=function(){return[Math.min(this.startPoint[0],this.endPoint[0]),Math.min(this.startPoint[1],this.endPoint[1]),Math.max(this.startPoint[0],this.endPoint[0]),Math.max(this.startPoint[1],this.endPoint[1])]},this.getPointAtLength=function(ZA){if(ZA>=0&&ZA<=this.totalLength){let jA=ZA/this.totalLength||0;return[this.startPoint[0]+jA*(this.endPoint[0]-this.startPoint[0]),this.startPoint[1]+jA*(this.endPoint[1]-this.startPoint[1]),this.startPoint[2]]}}},oe=function(){this.pathCommands=[],this.pathSegments=[],this.startPoint=null,this.endPoint=null,this.totalLength=0;let ZA,jA,ue,GA=0,zA=0,vA=0,qA=0;this.move=function(WA,ae){return GA=vA=WA,zA=qA=ae,null},this.line=function(WA,ae){let ce=new Oe(vA,qA,WA,ae);return vA=WA,qA=ae,ce},this.curve=function(WA,ae,ce,ye,ke,Je){let tt=new ze(vA,qA,WA,ae,ce,ye,ke,Je);return vA=ke,qA=Je,tt},this.close=function(){let WA=new Oe(vA,qA,GA,zA);return vA=GA,qA=zA,WA},this.addCommand=function(WA){this.pathCommands.push(WA);let ae=this[WA[0]].apply(this,WA.slice(3));ae&&(ae.hasStart=WA[1],ae.hasEnd=WA[2],this.startPoint=this.startPoint||ae.startPoint,this.endPoint=ae.endPoint,this.pathSegments.push(ae),this.totalLength+=ae.totalLength)},this.M=function(WA,ae){return this.addCommand(["move",!0,!0,WA,ae]),ZA="M",this},this.m=function(WA,ae){return this.M(vA+WA,qA+ae)},this.Z=this.z=function(){return this.addCommand(["close",!0,!0]),ZA="Z",this},this.L=function(WA,ae){return this.addCommand(["line",!0,!0,WA,ae]),ZA="L",this},this.l=function(WA,ae){return this.L(vA+WA,qA+ae)},this.H=function(WA){return this.L(WA,qA)},this.h=function(WA){return this.L(vA+WA,qA)},this.V=function(WA){return this.L(vA,WA)},this.v=function(WA){return this.L(vA,qA+WA)},this.C=function(WA,ae,ce,ye,ke,Je){return this.addCommand(["curve",!0,!0,WA,ae,ce,ye,ke,Je]),ZA="C",jA=ce,ue=ye,this},this.c=function(WA,ae,ce,ye,ke,Je){return this.C(vA+WA,qA+ae,vA+ce,qA+ye,vA+ke,qA+Je)},this.S=function(WA,ae,ce,ye){return this.C(vA+("C"===ZA?vA-jA:0),qA+("C"===ZA?qA-ue:0),WA,ae,ce,ye)},this.s=function(WA,ae,ce,ye){return this.C(vA+("C"===ZA?vA-jA:0),qA+("C"===ZA?qA-ue:0),vA+WA,qA+ae,vA+ce,qA+ye)},this.Q=function(WA,ae,ce,ye){return this.addCommand(["curve",!0,!0,vA+.6666666666666666*(WA-vA),qA+2/3*(ae-qA),ce+2/3*(WA-ce),ye+2/3*(ae-ye),ce,ye]),ZA="Q",jA=WA,ue=ae,this},this.q=function(WA,ae,ce,ye){return this.Q(vA+WA,qA+ae,vA+ce,qA+ye)},this.T=function(WA,ae){return this.Q(vA+("Q"===ZA?vA-jA:0),qA+("Q"===ZA?qA-ue:0),WA,ae)},this.t=function(WA,ae){return this.Q(vA+("Q"===ZA?vA-jA:0),qA+("Q"===ZA?qA-ue:0),vA+WA,qA+ae)},this.A=function(WA,ae,ce,ye,ke,Je,tt){if(lA(WA,0)||lA(ae,0))this.addCommand(["line",!0,!0,Je,tt]);else{ce*=Math.PI/180,WA=Math.abs(WA),ae=Math.abs(ae),ye=1*!!ye,ke=1*!!ke;let je=Math.cos(ce)*(vA-Je)/2+Math.sin(ce)*(qA-tt)/2,Ce=Math.cos(ce)*(qA-tt)/2-Math.sin(ce)*(vA-Je)/2,_e=je*je/(WA*WA)+Ce*Ce/(ae*ae);_e>1&&(WA*=Math.sqrt(_e),ae*=Math.sqrt(_e));let st=Math.sqrt(Math.max(0,WA*WA*ae*ae-WA*WA*Ce*Ce-ae*ae*je*je)/(WA*WA*Ce*Ce+ae*ae*je*je)),lt=(ye===ke?-1:1)*st*WA*Ce/ae,wt=(ye===ke?1:-1)*st*ae*je/WA,Bt=Math.cos(ce)*lt-Math.sin(ce)*wt+(vA+Je)/2,pt=Math.sin(ce)*lt+Math.cos(ce)*wt+(qA+tt)/2,ot=Math.atan2((Ce-wt)/ae,(je-lt)/WA),ut=Math.atan2((-Ce-wt)/ae,(-je-lt)/WA);0===ke&&ut-ot>0?ut-=2*Math.PI:1===ke&&ut-ot<0&&(ut+=2*Math.PI);let an=Math.ceil(Math.abs(ut-ot)/(Math.PI/qe));for(let Wt=0;WtWA[2]&&(WA[2]=ce[2]),ce[1]WA[3]&&(WA[3]=ce[3])}for(let ce=0;ce=0&&WA<=this.totalLength){let ae;for(let ce=0;ceZA.selector.specificity||(zA[jA]=ZA.css[jA],vA[jA]=ZA.selector.specificity)}return zA}(GA),this.allowedChildren=[],this.attr=function(ZA){if("function"==typeof GA.getAttribute)return GA.getAttribute(ZA)},this.resolveUrl=function(ZA){let jA=(ZA||"").match(/^\s*(?:url\("(.*)#(.*)"\)|url\('(.*)#(.*)'\)|url\((.*)#(.*)\)|(.*)#(.*))\s*$/)||[],ue=jA[1]||jA[3]||jA[5]||jA[7],WA=jA[2]||jA[4]||jA[6]||jA[8];if(WA){if(!ue){let ae=I.getElementById(WA);if(ae)return-1===this.stack.indexOf(ae)?ae:void Mt('SVGtoPDF: loop of circular references for id "'+WA+'"')}if(Ze){let ae=ct[ue];if(!ae){ae=Ze(ue),function $A(GA){return"object"==typeof GA&&null!==GA&&"number"==typeof GA.length}(ae)||(ae=[ae]);for(let ce=0;ce=0&&ue[3]>=0?ue:jA},this.getPercent=function(ZA,jA){let ue=this.attr(ZA),WA=new Te((ue||"").trim()),ye=WA.matchNumber();return!ye||(WA.match("%")&&(ye*=.01),WA.matchAll())?jA:Math.max(0,Math.min(1,ye))},this.chooseValue=function(ZA){for(let jA=0;jA=0&&(WA=ce);break;case"stroke-miterlimit":ce=parseFloat(ue),null!=ce&&ce>=1&&(WA=ce);break;case"word-spacing":case"letter-spacing":case"stroke-dashoffset":WA=this.computeLength(ue,this.getViewport())}if(null!=WA)return vA[ZA]=WA}}return vA[ZA]=jA.inherit&&this.inherits?this.inherits.get(ZA):jA.initial},this.getChildren=function(){if(null!=qA)return qA;let ZA=[];for(let jA=0;jA0?jA:this.ref?this.ref.getChildren():[]},this.getPaint=function(jA,ue,WA,ae){let ce="userSpaceOnUse"!==this.attr("patternUnits"),ye="objectBoundingBox"===this.attr("patternContentUnits"),ke=this.getLength("x",ce?1:this.getParentVWidth(),0),Je=this.getLength("y",ce?1:this.getParentVHeight(),0),tt=this.getLength("width",ce?1:this.getParentVWidth(),0),je=this.getLength("height",ce?1:this.getParentVHeight(),0);ye&&!ce?(ke=(ke-jA[0])/(jA[2]-jA[0])||0,Je=(Je-jA[1])/(jA[3]-jA[1])||0,tt=tt/(jA[2]-jA[0])||0,je=je/(jA[3]-jA[1])||0):!ye&&ce&&(ke=jA[0]+ke*(jA[2]-jA[0]),Je=jA[1]+Je*(jA[3]-jA[1]),tt*=jA[2]-jA[0],je*=jA[3]-jA[1]);let Ce=this.getViewbox("viewBox",[0,0,tt,je]),st=UA(gA((this.attr("preserveAspectRatio")||"").trim(),tt,je,Ce[2],Ce[3],0),[1,0,0,1,-Ce[0],-Ce[1]]),lt=IA(this.attr("patternTransform"));if(ye&&(lt=UA([jA[2]-jA[0],0,0,jA[3]-jA[1],jA[0],jA[1]],lt)),lt=UA(lt,[1,0,0,1,ke,Je]),(lt=J(lt))&&(st=J(st))&&(tt=JA(tt))&&(je=JA(je))){let wt=L([0,0,tt,je]);return g.transform.apply(g,st),this.drawChildren(WA,ae),P(wt),[NA(wt,tt,je,lt),ue]}return vA?[vA[0],vA[1]*ue]:void 0},this.getVWidth=function(){let jA="userSpaceOnUse"!==this.attr("patternUnits"),ue=this.getLength("width",jA?1:this.getParentVWidth(),0);return this.getViewbox("viewBox",[0,0,ue,0])[2]},this.getVHeight=function(){let jA="userSpaceOnUse"!==this.attr("patternUnits"),ue=this.getLength("height",jA?1:this.getParentVHeight(),0);return this.getViewbox("viewBox",[0,0,0,ue])[3]}},MA=function(GA,zA,vA){sA.call(this,GA,zA),this.allowedChildren=["stop"],this.ref=function(){let jA=this.getUrl("href")||this.getUrl("xlink:href");if(jA&&jA.nodeName===GA.nodeName)return new MA(jA,zA,vA)}.call(this);let qA=this.attr;this.attr=function(jA){let ue=qA.call(this,jA);return null!=ue||"href"===jA||"xlink:href"===jA?ue:this.ref?this.ref.attr(jA):null};let ZA=this.getChildren;this.getChildren=function(){let jA=ZA.call(this);return jA.length>0?jA:this.ref?this.ref.getChildren():[]},this.getPaint=function(jA,ue,WA,ae){let ce=this.getChildren();if(0===ce.length)return;if(1===ce.length){let ot=ce[0],ut=ot.get("stop-color");return"none"===ut?void 0:fA(ut,ot.get("stop-opacity")*ue,ae)}let tt,je,Ce,_e,st,lt,ye="userSpaceOnUse"!==this.attr("gradientUnits"),ke=IA(this.attr("gradientTransform")),Je=this.attr("spreadMethod"),wt=0,Bt=0,pt=1;if(ye&&(ke=UA([jA[2]-jA[0],0,0,jA[3]-jA[1],jA[0],jA[1]],ke)),ke=J(ke)){if("linearGradient"===this.name)je=this.getLength("x1",ye?1:this.getVWidth(),0),Ce=this.getLength("x2",ye?1:this.getVWidth(),ye?1:this.getVWidth()),_e=this.getLength("y1",ye?1:this.getVHeight(),0),st=this.getLength("y2",ye?1:this.getVHeight(),0);else{Ce=this.getLength("cx",ye?1:this.getVWidth(),ye?.5:.5*this.getVWidth()),st=this.getLength("cy",ye?1:this.getVHeight(),ye?.5:.5*this.getVHeight()),lt=this.getLength("r",ye?1:this.getViewport(),ye?.5:.5*this.getViewport()),je=this.getLength("fx",ye?1:this.getVWidth(),Ce),_e=this.getLength("fy",ye?1:this.getVHeight(),st),lt<0&&Mt("SvgElemGradient: negative r value");let ot=Math.sqrt(Math.pow(Ce-je,2)+Math.pow(st-_e,2)),ut=1;ot>lt&&(ut=lt/ot,je=Ce+(je-Ce)*ut,_e=st+(_e-st)*ut),lt=Math.max(lt,ot*ut*1.000001)}if("reflect"===Je||"repeat"===Je){let ot=cA(ke),ut=yA([jA[0],jA[1]],ot),an=yA([jA[2],jA[1]],ot),Wt=yA([jA[2],jA[3]],ot),_t=yA([jA[0],jA[3]],ot);"linearGradient"===this.name?(wt=Math.max((ut[0]-Ce)*(Ce-je)+(ut[1]-st)*(st-_e),(an[0]-Ce)*(Ce-je)+(an[1]-st)*(st-_e),(Wt[0]-Ce)*(Ce-je)+(Wt[1]-st)*(st-_e),(_t[0]-Ce)*(Ce-je)+(_t[1]-st)*(st-_e))/(Math.pow(Ce-je,2)+Math.pow(st-_e,2)),Bt=Math.max((ut[0]-je)*(je-Ce)+(ut[1]-_e)*(_e-st),(an[0]-je)*(je-Ce)+(an[1]-_e)*(_e-st),(Wt[0]-je)*(je-Ce)+(Wt[1]-_e)*(_e-st),(_t[0]-je)*(je-Ce)+(_t[1]-_e)*(_e-st))/(Math.pow(Ce-je,2)+Math.pow(st-_e,2))):wt=Math.sqrt(Math.max(Math.pow(ut[0]-Ce,2)+Math.pow(ut[1]-st,2),Math.pow(an[0]-Ce,2)+Math.pow(an[1]-st,2),Math.pow(Wt[0]-Ce,2)+Math.pow(Wt[1]-st,2),Math.pow(_t[0]-Ce,2)+Math.pow(_t[1]-st,2)))/lt-1,wt=Math.ceil(wt+.5),Bt=Math.ceil(Bt+.5),pt=Bt+1+wt}tt="linearGradient"===this.name?g.linearGradient(je-Bt*(Ce-je),_e-Bt*(st-_e),Ce+wt*(Ce-je),st+wt*(st-_e)):g.radialGradient(je,_e,0,Ce,st,lt+wt*lt);for(let ot=0;ot0&&tt.stop((ot+0)/pt,Pt[0],Pt[1]),tt.stop((ot+ut)/(wt+Bt+1),Pt[0],Pt[1]),Wt===ce.length-1&&ut<1&&tt.stop((ot+1)/pt,Pt[0],Pt[1])}}return tt.setTransform.apply(tt,ke),[tt,1]}return vA?[vA[0],vA[1]*ue]:void 0}},Pe=function(GA,zA){S.call(this,GA,zA),this.dashScale=1,this.getBoundingShape=function(){return this.shape},this.getTransformation=function(){return this.get("transform")},this.drawInDocument=function(vA,qA){if("hidden"!==this.get("visibility")&&this.shape){if(g.save(),"non-scaling-stroke"===this.get("vector-effect")?this.shape.transform(this.getTransformation()):this.transform(),this.clip(),vA)this.shape.insertInDocument(),pA(j.white),g.fill(this.get("clip-rule"));else{let jA;this.mask()&&(jA=L(Ee()));let ue=this.shape.getSubPaths(),WA=this.getFill(vA,qA),ae=this.getStroke(vA,qA),ce=this.get("stroke-width"),ye=this.get("stroke-linecap");if("non-scaling-stroke"===this.get("vector-effect")&&(ce/=function HA(){const GA=Ee();return g.page.width/GA[2]}()),WA||ae){if(WA&&pA(WA),ae){for(let _e=0;_e0&&ue[_e].startPoint&&ue[_e].startPoint.length>1){let st=ue[_e].startPoint[0],lt=ue[_e].startPoint[1];pA(ae),"square"===ye?g.rect(st-.5*ce,lt-.5*ce,ce,ce):"round"===ye&&g.circle(st,lt,.5*ce),g.fill()}let je=this.get("stroke-dasharray"),Ce=this.get("stroke-dashoffset");if(LA(this.dashScale,1)){for(let _e=0;_e0&&ue[je].insertInDocument();WA&&ae?g.fillAndStroke(this.get("fill-rule")):WA?g.fill(this.get("fill-rule")):ae&&g.stroke()}let ke=this.get("marker-start"),Je=this.get("marker-mid"),tt=this.get("marker-end");if("none"!==ke||"none"!==Je||"none"!==tt){let je=this.shape.getMarkers();if("none"!==ke&&je.length>0&&new et(ke,null).drawMarker(!1,qA,je[0],ce),"none"!==Je)for(let Ce=1;Ce0&&new et(tt,null).drawMarker(!1,qA,je[je.length-1],ce)}jA&&(P(jA),rA(jA))}g.restore()}}},At=function(GA,zA){Pe.call(this,GA,zA);let vA=this.getLength("x",this.getVWidth(),0),qA=this.getLength("y",this.getVHeight(),0),ZA=this.getLength("width",this.getVWidth(),0),jA=this.getLength("height",this.getVHeight(),0),ue=this.getLength("rx",this.getVWidth()),WA=this.getLength("ry",this.getVHeight());void 0===ue&&void 0===WA?ue=WA=0:void 0===ue&&void 0!==WA?ue=WA:void 0!==ue&&void 0===WA&&(WA=ue),ZA>0&&jA>0?ue&&WA?(ue=Math.min(ue,.5*ZA),WA=Math.min(WA,.5*jA),this.shape=(new oe).M(vA+ue,qA).L(vA+ZA-ue,qA).A(ue,WA,0,0,1,vA+ZA,qA+WA).L(vA+ZA,qA+jA-WA).A(ue,WA,0,0,1,vA+ZA-ue,qA+jA).L(vA+ue,qA+jA).A(ue,WA,0,0,1,vA,qA+jA-WA).L(vA,qA+WA).A(ue,WA,0,0,1,vA+ue,qA).Z()):this.shape=(new oe).M(vA,qA).L(vA+ZA,qA).L(vA+ZA,qA+jA).L(vA,qA+jA).Z():this.shape=new oe},_=function(GA,zA){Pe.call(this,GA,zA);let vA=this.getLength("cx",this.getVWidth(),0),qA=this.getLength("cy",this.getVHeight(),0),ZA=this.getLength("r",this.getViewport(),0);this.shape=ZA>0?(new oe).M(vA+ZA,qA).A(ZA,ZA,0,0,1,vA-ZA,qA).A(ZA,ZA,0,0,1,vA+ZA,qA).Z():new oe},be=function(GA,zA){Pe.call(this,GA,zA);let vA=this.getLength("cx",this.getVWidth(),0),qA=this.getLength("cy",this.getVHeight(),0),ZA=this.getLength("rx",this.getVWidth(),0),jA=this.getLength("ry",this.getVHeight(),0);this.shape=ZA>0&&jA>0?(new oe).M(vA+ZA,qA).A(ZA,jA,0,0,1,vA-ZA,qA).A(ZA,jA,0,0,1,vA+ZA,qA).Z():new oe},Re=function(GA,zA){Pe.call(this,GA,zA);let vA=this.getLength("x1",this.getVWidth(),0),qA=this.getLength("y1",this.getVHeight(),0),ZA=this.getLength("x2",this.getVWidth(),0),jA=this.getLength("y2",this.getVHeight(),0);this.shape=(new oe).M(vA,qA).L(ZA,jA)},SA=function(GA,zA){Pe.call(this,GA,zA);let vA=this.getNumberList("points");this.shape=new oe;for(let qA=0;qA0?vA:void 0,this.dashScale=void 0!==this.pathLength?this.shape.totalLength/this.pathLength:1},et=function(GA,zA){Y.call(this,GA,zA);let vA=this.getLength("markerWidth",this.getParentVWidth(),3),qA=this.getLength("markerHeight",this.getParentVHeight(),3),ZA=this.getViewbox("viewBox",[0,0,vA,qA]);this.getVWidth=function(){return ZA[2]},this.getVHeight=function(){return ZA[3]},this.drawMarker=function(jA,ue,WA,ae){g.save();let ce=this.attr("orient"),ye=this.attr("markerUnits"),ke="auto"===ce?WA[2]:(parseFloat(ce)||0)*Math.PI/180,Je="userSpaceOnUse"===ye?1:ae;g.transform(Math.cos(ke)*Je,Math.sin(ke)*Je,-Math.sin(ke)*Je,Math.cos(ke)*Je,WA[0],WA[1]);let _e,tt=this.getLength("refX",this.getVWidth(),0),je=this.getLength("refY",this.getVHeight(),0),Ce=gA(this.attr("preserveAspectRatio"),vA,qA,ZA[2],ZA[3],.5);"hidden"===this.get("overflow")&&g.rect(Ce[0]*(ZA[0]+ZA[2]/2-tt)-vA/2,Ce[3]*(ZA[1]+ZA[3]/2-je)-qA/2,vA,qA).clip(),g.transform.apply(g,Ce),g.translate(-tt,-je),this.get("opacity")<1&&!jA&&(_e=L(Ee())),this.drawChildren(jA,ue),_e&&(P(_e),g.fillOpacity(this.get("opacity")),rA(_e)),g.restore()}},Ke=function(GA,zA){Y.call(this,GA,zA),this.useMask=function(vA){let qA=L(Ee());g.save(),g.transform.apply(g,this.get("transform")),"objectBoundingBox"===this.attr("clipPathUnits")&&g.transform(vA[2]-vA[0],0,0,vA[3]-vA[1],vA[0],vA[1]),this.clip(),this.drawChildren(!0,!1),g.restore(),P(qA),QA(qA,!0)}},$e=function(GA,zA){Y.call(this,GA,zA),this.useMask=function(vA){let ZA,jA,ue,WA,qA=L(Ee());g.save(),"userSpaceOnUse"===this.attr("maskUnits")?(ZA=this.getLength("x",this.getVWidth(),-.1*(vA[2]-vA[0])+vA[0]),jA=this.getLength("y",this.getVHeight(),-.1*(vA[3]-vA[1])+vA[1]),ue=this.getLength("width",this.getVWidth(),1.2*(vA[2]-vA[0])),WA=this.getLength("height",this.getVHeight(),1.2*(vA[3]-vA[1]))):(ZA=this.getLength("x",this.getVWidth(),-.1)*(vA[2]-vA[0])+vA[0],jA=this.getLength("y",this.getVHeight(),-.1)*(vA[3]-vA[1])+vA[1],ue=this.getLength("width",this.getVWidth(),1.2)*(vA[2]-vA[0]),WA=this.getLength("height",this.getVHeight(),1.2)*(vA[3]-vA[1])),"objectBoundingBox"===this.attr("maskContentUnits")&&g.transform(vA[2]-vA[0],0,0,vA[3]-vA[1],vA[0],vA[1]),this.clip(),this.drawChildren(!1,!0),g.restore(),P(qA),QA(qA,!0)}},ht=function(GA,zA){S.call(this,GA,zA),this.allowedChildren=["tspan","#text","#cdata-section","a"],this.isText=!0,this.getBoundingShape=function(){let vA=new oe;for(let qA=0;qA0?jA:this.pathObject.totalLength,this.pathScale=this.pathObject.totalLength/this.pathLength}else if((ZA=this.getUrl("href")||this.getUrl("xlink:href"))&&"path"===ZA.nodeName){let jA=new Fe(ZA,this);this.pathObject=jA.shape.clone().transform(jA.get("transform")),this.pathLength=this.chooseValue(jA.pathLength,this.pathObject.totalLength),this.pathScale=this.pathObject.totalLength/this.pathLength}},mt=function(GA,zA){ht.call(this,GA,zA),this.allowedChildren=["textPath","tspan","#text","#cdata-section","a"],function(vA){let WA,ae,qA="",ZA=GA.textContent,jA=[],ue=[],ce=0,ye=0;function ke(){if(ue.length){let Ce=ue[ue.length-1],lt={startltr:0,middleltr:.5,endltr:1,startrtl:1,middlertl:.5,endrtl:0}[WA+ae]*(Ce.x+Ce.width-ue[0].x)||0;for(let wt=0;wtst||pt<0)Ce._pos[Bt].hidden=!0;else{let ot=_e.getPointAtLength(pt*lt);LA(lt,1)&&(Ce._pos[Bt].scale*=lt,Ce._pos[Bt].width*=lt),Ce._pos[Bt].x=ot[0]-.5*Ce._pos[Bt].width*Math.cos(ot[2])-Ce._pos[Bt].y*Math.sin(ot[2]),Ce._pos[Bt].y=ot[1]-.5*Ce._pos[Bt].width*Math.sin(ot[2])+Ce._pos[Bt].y*Math.cos(ot[2]),Ce._pos[Bt].rotate=ot[2]+Ce._pos[Bt].rotate,Ce._pos[Bt].continuous=!1}}}else for(let wt=0;wt0&&ot<1/0)for(let ut=0;ut=2){let ot=(_e-(pt-Bt))/(Ce.length-1);for(let ut=0;utN)throw new RangeError('The value "'+sA+'" is invalid for option "size"');const S=new Uint8Array(sA);return Object.setPrototypeOf(S,B.prototype),S}function B(sA,S,Y){if("number"==typeof sA){if("string"==typeof S)throw new TypeError('The "string" argument must be of type string. Received type number');return aA(sA)}return j(sA,S,Y)}function j(sA,S,Y){if("string"==typeof sA)return function AA(sA,S){if(("string"!=typeof S||""===S)&&(S="utf8"),!B.isEncoding(S))throw new TypeError("Unknown encoding: "+S);const Y=0|uA(sA,S);let k=v(Y);const m=k.write(sA,S);return m!==Y&&(k=k.slice(0,m)),k}(sA,S);if(ArrayBuffer.isView(sA))return function P(sA){if(Ne(sA,Uint8Array)){const S=new Uint8Array(sA);return rA(S.buffer,S.byteOffset,S.byteLength)}return L(sA)}(sA);if(null==sA)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof sA);if(Ne(sA,ArrayBuffer)||sA&&Ne(sA.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(Ne(sA,SharedArrayBuffer)||sA&&Ne(sA.buffer,SharedArrayBuffer)))return rA(sA,S,Y);if("number"==typeof sA)throw new TypeError('The "value" argument must not be of type number. Received type number');const k=sA.valueOf&&sA.valueOf();if(null!=k&&k!==sA)return B.from(k,S,Y);const m=function QA(sA){if(B.isBuffer(sA)){const S=0|NA(sA.length),Y=v(S);return 0===Y.length||sA.copy(Y,0,0,S),Y}return void 0!==sA.length?"number"!=typeof sA.length||Te(sA.length)?v(0):L(sA):"Buffer"===sA.type&&Array.isArray(sA.data)?L(sA.data):void 0}(sA);if(m)return m;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof sA[Symbol.toPrimitive])return B.from(sA[Symbol.toPrimitive]("string"),S,Y);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof sA)}function tA(sA){if("number"!=typeof sA)throw new TypeError('"size" argument must be of type number');if(sA<0)throw new RangeError('The value "'+sA+'" is invalid for option "size"')}function aA(sA){return tA(sA),v(sA<0?0:0|NA(sA))}function L(sA){const S=sA.length<0?0:0|NA(sA.length),Y=v(S);for(let k=0;k=N)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+N.toString(16)+" bytes");return 0|sA}function uA(sA,S){if(B.isBuffer(sA))return sA.length;if(ArrayBuffer.isView(sA)||Ne(sA,ArrayBuffer))return sA.byteLength;if("string"!=typeof sA)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof sA);const Y=sA.length,k=arguments.length>2&&!0===arguments[2];if(!k&&0===Y)return 0;let m=!1;for(;;)switch(S){case"ascii":case"latin1":case"binary":return Y;case"utf8":case"utf-8":return YA(sA).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*Y;case"hex":return Y>>>1;case"base64":return le(sA).length;default:if(m)return k?-1:YA(sA).length;S=(""+S).toLowerCase(),m=!0}}function dA(sA,S,Y){let k=!1;if((void 0===S||S<0)&&(S=0),S>this.length||((void 0===Y||Y>this.length)&&(Y=this.length),Y<=0)||(Y>>>=0)<=(S>>>=0))return"";for(sA||(sA="utf8");;)switch(sA){case"hex":return Ee(this,S,Y);case"utf8":case"utf-8":return hA(this,S,Y);case"ascii":return yA(this,S,Y);case"latin1":case"binary":return xA(this,S,Y);case"base64":return kA(this,S,Y);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return HA(this,S,Y);default:if(k)throw new TypeError("Unknown encoding: "+sA);sA=(sA+"").toLowerCase(),k=!0}}function RA(sA,S,Y){const k=sA[S];sA[S]=sA[Y],sA[Y]=k}function nA(sA,S,Y,k,m){if(0===sA.length)return-1;if("string"==typeof Y?(k=Y,Y=0):Y>2147483647?Y=2147483647:Y<-2147483648&&(Y=-2147483648),Te(Y=+Y)&&(Y=m?0:sA.length-1),Y<0&&(Y=sA.length+Y),Y>=sA.length){if(m)return-1;Y=sA.length-1}else if(Y<0){if(!m)return-1;Y=0}if("string"==typeof S&&(S=B.from(S,k)),B.isBuffer(S))return 0===S.length?-1:H(sA,S,Y,k,m);if("number"==typeof S)return S&=255,"function"==typeof Uint8Array.prototype.indexOf?m?Uint8Array.prototype.indexOf.call(sA,S,Y):Uint8Array.prototype.lastIndexOf.call(sA,S,Y):H(sA,[S],Y,k,m);throw new TypeError("val must be string, number or Buffer")}function H(sA,S,Y,k,m){let Ae,E=1,mA=sA.length,ie=S.length;if(void 0!==k&&("ucs2"===(k=String(k).toLowerCase())||"ucs-2"===k||"utf16le"===k||"utf-16le"===k)){if(sA.length<2||S.length<2)return-1;E=2,mA/=2,ie/=2,Y/=2}function DA(pe,MA){return 1===E?pe[MA]:pe.readUInt16BE(MA*E)}if(m){let pe=-1;for(Ae=Y;AemA&&(Y=mA-ie),Ae=Y;Ae>=0;Ae--){let pe=!0;for(let MA=0;MAm&&(k=m):k=m;const E=S.length;let mA;for(k>E/2&&(k=E/2),mA=0;mA>8,m=Y%256,E.push(m),E.push(k);return E}(S,sA.length-Y),sA,Y,k)}function kA(sA,S,Y){return t.fromByteArray(0===S&&Y===sA.length?sA:sA.slice(S,Y))}function hA(sA,S,Y){Y=Math.min(sA.length,Y);const k=[];let m=S;for(;m239?4:E>223?3:E>191?2:1;if(m+ie<=Y){let DA,Ae,pe,MA;switch(ie){case 1:E<128&&(mA=E);break;case 2:DA=sA[m+1],128==(192&DA)&&(MA=(31&E)<<6|63&DA,MA>127&&(mA=MA));break;case 3:DA=sA[m+1],Ae=sA[m+2],128==(192&DA)&&128==(192&Ae)&&(MA=(15&E)<<12|(63&DA)<<6|63&Ae,MA>2047&&(MA<55296||MA>57343)&&(mA=MA));break;case 4:DA=sA[m+1],Ae=sA[m+2],pe=sA[m+3],128==(192&DA)&&128==(192&Ae)&&128==(192&pe)&&(MA=(15&E)<<18|(63&DA)<<12|(63&Ae)<<6|63&pe,MA>65535&&MA<1114112&&(mA=MA))}}null===mA?(mA=65533,ie=1):mA>65535&&(mA-=65536,k.push(mA>>>10&1023|55296),mA=56320|1023&mA),k.push(mA),m+=ie}return function UA(sA){const S=sA.length;if(S<=4096)return String.fromCharCode.apply(String,sA);let Y="",k=0;for(;kk)&&(Y=k);let m="";for(let E=S;EY)throw new RangeError("Trying to access beyond buffer length")}function J(sA,S,Y,k,m,E){if(!B.isBuffer(sA))throw new TypeError('"buffer" argument must be a Buffer instance');if(S>m||SsA.length)throw new RangeError("Index out of range")}function U(sA,S,Y,k,m){b(S,k,m,sA,Y,7);let E=Number(S&BigInt(4294967295));sA[Y++]=E,E>>=8,sA[Y++]=E,E>>=8,sA[Y++]=E,E>>=8,sA[Y++]=E;let mA=Number(S>>BigInt(32)&BigInt(4294967295));return sA[Y++]=mA,mA>>=8,sA[Y++]=mA,mA>>=8,sA[Y++]=mA,mA>>=8,sA[Y++]=mA,Y}function O(sA,S,Y,k,m){b(S,k,m,sA,Y,7);let E=Number(S&BigInt(4294967295));sA[Y+7]=E,E>>=8,sA[Y+6]=E,E>>=8,sA[Y+5]=E,E>>=8,sA[Y+4]=E;let mA=Number(S>>BigInt(32)&BigInt(4294967295));return sA[Y+3]=mA,mA>>=8,sA[Y+2]=mA,mA>>=8,sA[Y+1]=mA,mA>>=8,sA[Y]=mA,Y+8}function lA(sA,S,Y,k,m,E){if(Y+k>sA.length)throw new RangeError("Index out of range");if(Y<0)throw new RangeError("Index out of range")}function LA(sA,S,Y,k,m){return S=+S,Y>>>=0,m||lA(sA,0,Y,4),g.write(sA,S,Y,k,23,4),Y+4}function JA(sA,S,Y,k,m){return S=+S,Y>>>=0,m||lA(sA,0,Y,8),g.write(sA,S,Y,k,52,8),Y+8}Q.kMaxLength=N,!(B.TYPED_ARRAY_SUPPORT=function K(){try{const sA=new Uint8Array(1),S={foo:function(){return 42}};return Object.setPrototypeOf(S,Uint8Array.prototype),Object.setPrototypeOf(sA,S),42===sA.foo()}catch{return!1}}())&&typeof console<"u"&&"function"==typeof console.error&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(B.prototype,"parent",{enumerable:!0,get:function(){if(B.isBuffer(this))return this.buffer}}),Object.defineProperty(B.prototype,"offset",{enumerable:!0,get:function(){if(B.isBuffer(this))return this.byteOffset}}),B.poolSize=8192,B.from=function(sA,S,Y){return j(sA,S,Y)},Object.setPrototypeOf(B.prototype,Uint8Array.prototype),Object.setPrototypeOf(B,Uint8Array),B.alloc=function(sA,S,Y){return function w(sA,S,Y){return tA(sA),sA<=0?v(sA):void 0!==S?"string"==typeof Y?v(sA).fill(S,Y):v(sA).fill(S):v(sA)}(sA,S,Y)},B.allocUnsafe=function(sA){return aA(sA)},B.allocUnsafeSlow=function(sA){return aA(sA)},B.isBuffer=function(S){return null!=S&&!0===S._isBuffer&&S!==B.prototype},B.compare=function(S,Y){if(Ne(S,Uint8Array)&&(S=B.from(S,S.offset,S.byteLength)),Ne(Y,Uint8Array)&&(Y=B.from(Y,Y.offset,Y.byteLength)),!B.isBuffer(S)||!B.isBuffer(Y))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(S===Y)return 0;let k=S.length,m=Y.length;for(let E=0,mA=Math.min(k,m);Em.length?(B.isBuffer(mA)||(mA=B.from(mA)),mA.copy(m,E)):Uint8Array.prototype.set.call(m,mA,E);else{if(!B.isBuffer(mA))throw new TypeError('"list" argument must be an Array of Buffers');mA.copy(m,E)}E+=mA.length}return m},B.byteLength=uA,B.prototype._isBuffer=!0,B.prototype.swap16=function(){const S=this.length;if(S%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let Y=0;YY&&(S+=" ... "),""},I&&(B.prototype[I]=B.prototype.inspect),B.prototype.compare=function(S,Y,k,m,E){if(Ne(S,Uint8Array)&&(S=B.from(S,S.offset,S.byteLength)),!B.isBuffer(S))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof S);if(void 0===Y&&(Y=0),void 0===k&&(k=S?S.length:0),void 0===m&&(m=0),void 0===E&&(E=this.length),Y<0||k>S.length||m<0||E>this.length)throw new RangeError("out of range index");if(m>=E&&Y>=k)return 0;if(m>=E)return-1;if(Y>=k)return 1;if(this===S)return 0;let mA=(E>>>=0)-(m>>>=0),ie=(k>>>=0)-(Y>>>=0);const DA=Math.min(mA,ie),Ae=this.slice(m,E),pe=S.slice(Y,k);for(let MA=0;MA>>=0,isFinite(k)?(k>>>=0,void 0===m&&(m="utf8")):(m=k,k=void 0)}const E=this.length-Y;if((void 0===k||k>E)&&(k=E),S.length>0&&(k<0||Y<0)||Y>this.length)throw new RangeError("Attempt to write outside buffer bounds");m||(m="utf8");let mA=!1;for(;;)switch(m){case"hex":return pA(this,S,Y,k);case"utf8":case"utf-8":return z(this,S,Y,k);case"ascii":case"latin1":case"binary":return OA(this,S,Y,k);case"base64":return wA(this,S,Y,k);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return VA(this,S,Y,k);default:if(mA)throw new TypeError("Unknown encoding: "+m);m=(""+m).toLowerCase(),mA=!0}},B.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},B.prototype.slice=function(S,Y){const k=this.length;(S=~~S)<0?(S+=k)<0&&(S=0):S>k&&(S=k),(Y=void 0===Y?k:~~Y)<0?(Y+=k)<0&&(Y=0):Y>k&&(Y=k),Y>>=0,Y>>>=0,k||cA(S,Y,this.length);let m=this[S],E=1,mA=0;for(;++mA>>=0,Y>>>=0,k||cA(S,Y,this.length);let m=this[S+--Y],E=1;for(;Y>0&&(E*=256);)m+=this[S+--Y]*E;return m},B.prototype.readUint8=B.prototype.readUInt8=function(S,Y){return S>>>=0,Y||cA(S,1,this.length),this[S]},B.prototype.readUint16LE=B.prototype.readUInt16LE=function(S,Y){return S>>>=0,Y||cA(S,2,this.length),this[S]|this[S+1]<<8},B.prototype.readUint16BE=B.prototype.readUInt16BE=function(S,Y){return S>>>=0,Y||cA(S,2,this.length),this[S]<<8|this[S+1]},B.prototype.readUint32LE=B.prototype.readUInt32LE=function(S,Y){return S>>>=0,Y||cA(S,4,this.length),(this[S]|this[S+1]<<8|this[S+2]<<16)+16777216*this[S+3]},B.prototype.readUint32BE=B.prototype.readUInt32BE=function(S,Y){return S>>>=0,Y||cA(S,4,this.length),16777216*this[S]+(this[S+1]<<16|this[S+2]<<8|this[S+3])},B.prototype.readBigUInt64LE=Oe(function(S){R(S>>>=0,"offset");const Y=this[S],k=this[S+7];(void 0===Y||void 0===k)&&M(S,this.length-8);const m=Y+256*this[++S]+65536*this[++S]+this[++S]*2**24,E=this[++S]+256*this[++S]+65536*this[++S]+k*2**24;return BigInt(m)+(BigInt(E)<>>=0,"offset");const Y=this[S],k=this[S+7];(void 0===Y||void 0===k)&&M(S,this.length-8);const m=Y*2**24+65536*this[++S]+256*this[++S]+this[++S],E=this[++S]*2**24+65536*this[++S]+256*this[++S]+k;return(BigInt(m)<>>=0,Y>>>=0,k||cA(S,Y,this.length);let m=this[S],E=1,mA=0;for(;++mA=E&&(m-=Math.pow(2,8*Y)),m},B.prototype.readIntBE=function(S,Y,k){S>>>=0,Y>>>=0,k||cA(S,Y,this.length);let m=Y,E=1,mA=this[S+--m];for(;m>0&&(E*=256);)mA+=this[S+--m]*E;return E*=128,mA>=E&&(mA-=Math.pow(2,8*Y)),mA},B.prototype.readInt8=function(S,Y){return S>>>=0,Y||cA(S,1,this.length),128&this[S]?-1*(255-this[S]+1):this[S]},B.prototype.readInt16LE=function(S,Y){S>>>=0,Y||cA(S,2,this.length);const k=this[S]|this[S+1]<<8;return 32768&k?4294901760|k:k},B.prototype.readInt16BE=function(S,Y){S>>>=0,Y||cA(S,2,this.length);const k=this[S+1]|this[S]<<8;return 32768&k?4294901760|k:k},B.prototype.readInt32LE=function(S,Y){return S>>>=0,Y||cA(S,4,this.length),this[S]|this[S+1]<<8|this[S+2]<<16|this[S+3]<<24},B.prototype.readInt32BE=function(S,Y){return S>>>=0,Y||cA(S,4,this.length),this[S]<<24|this[S+1]<<16|this[S+2]<<8|this[S+3]},B.prototype.readBigInt64LE=Oe(function(S){R(S>>>=0,"offset");const Y=this[S],k=this[S+7];return(void 0===Y||void 0===k)&&M(S,this.length-8),(BigInt(this[S+4]+256*this[S+5]+65536*this[S+6]+(k<<24))<>>=0,"offset");const Y=this[S],k=this[S+7];(void 0===Y||void 0===k)&&M(S,this.length-8);const m=(Y<<24)+65536*this[++S]+256*this[++S]+this[++S];return(BigInt(m)<>>=0,Y||cA(S,4,this.length),g.read(this,S,!0,23,4)},B.prototype.readFloatBE=function(S,Y){return S>>>=0,Y||cA(S,4,this.length),g.read(this,S,!1,23,4)},B.prototype.readDoubleLE=function(S,Y){return S>>>=0,Y||cA(S,8,this.length),g.read(this,S,!0,52,8)},B.prototype.readDoubleBE=function(S,Y){return S>>>=0,Y||cA(S,8,this.length),g.read(this,S,!1,52,8)},B.prototype.writeUintLE=B.prototype.writeUIntLE=function(S,Y,k,m){S=+S,Y>>>=0,k>>>=0,m||J(this,S,Y,k,Math.pow(2,8*k)-1,0);let E=1,mA=0;for(this[Y]=255&S;++mA>>=0,k>>>=0,m||J(this,S,Y,k,Math.pow(2,8*k)-1,0);let E=k-1,mA=1;for(this[Y+E]=255&S;--E>=0&&(mA*=256);)this[Y+E]=S/mA&255;return Y+k},B.prototype.writeUint8=B.prototype.writeUInt8=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,1,255,0),this[Y]=255&S,Y+1},B.prototype.writeUint16LE=B.prototype.writeUInt16LE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,2,65535,0),this[Y]=255&S,this[Y+1]=S>>>8,Y+2},B.prototype.writeUint16BE=B.prototype.writeUInt16BE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,2,65535,0),this[Y]=S>>>8,this[Y+1]=255&S,Y+2},B.prototype.writeUint32LE=B.prototype.writeUInt32LE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,4,4294967295,0),this[Y+3]=S>>>24,this[Y+2]=S>>>16,this[Y+1]=S>>>8,this[Y]=255&S,Y+4},B.prototype.writeUint32BE=B.prototype.writeUInt32BE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,4,4294967295,0),this[Y]=S>>>24,this[Y+1]=S>>>16,this[Y+2]=S>>>8,this[Y+3]=255&S,Y+4},B.prototype.writeBigUInt64LE=Oe(function(S,Y){return void 0===Y&&(Y=0),U(this,S,Y,BigInt(0),BigInt("0xffffffffffffffff"))}),B.prototype.writeBigUInt64BE=Oe(function(S,Y){return void 0===Y&&(Y=0),O(this,S,Y,BigInt(0),BigInt("0xffffffffffffffff"))}),B.prototype.writeIntLE=function(S,Y,k,m){if(S=+S,Y>>>=0,!m){const DA=Math.pow(2,8*k-1);J(this,S,Y,k,DA-1,-DA)}let E=0,mA=1,ie=0;for(this[Y]=255&S;++E>>=0,!m){const DA=Math.pow(2,8*k-1);J(this,S,Y,k,DA-1,-DA)}let E=k-1,mA=1,ie=0;for(this[Y+E]=255&S;--E>=0&&(mA*=256);)S<0&&0===ie&&0!==this[Y+E+1]&&(ie=1),this[Y+E]=(S/mA|0)-ie&255;return Y+k},B.prototype.writeInt8=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,1,127,-128),S<0&&(S=255+S+1),this[Y]=255&S,Y+1},B.prototype.writeInt16LE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,2,32767,-32768),this[Y]=255&S,this[Y+1]=S>>>8,Y+2},B.prototype.writeInt16BE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,2,32767,-32768),this[Y]=S>>>8,this[Y+1]=255&S,Y+2},B.prototype.writeInt32LE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,4,2147483647,-2147483648),this[Y]=255&S,this[Y+1]=S>>>8,this[Y+2]=S>>>16,this[Y+3]=S>>>24,Y+4},B.prototype.writeInt32BE=function(S,Y,k){return S=+S,Y>>>=0,k||J(this,S,Y,4,2147483647,-2147483648),S<0&&(S=4294967295+S+1),this[Y]=S>>>24,this[Y+1]=S>>>16,this[Y+2]=S>>>8,this[Y+3]=255&S,Y+4},B.prototype.writeBigInt64LE=Oe(function(S,Y){return void 0===Y&&(Y=0),U(this,S,Y,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),B.prototype.writeBigInt64BE=Oe(function(S,Y){return void 0===Y&&(Y=0),O(this,S,Y,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),B.prototype.writeFloatLE=function(S,Y,k){return LA(this,S,Y,!0,k)},B.prototype.writeFloatBE=function(S,Y,k){return LA(this,S,Y,!1,k)},B.prototype.writeDoubleLE=function(S,Y,k){return JA(this,S,Y,!0,k)},B.prototype.writeDoubleBE=function(S,Y,k){return JA(this,S,Y,!1,k)},B.prototype.copy=function(S,Y,k,m){if(!B.isBuffer(S))throw new TypeError("argument should be a Buffer");if(k||(k=0),!m&&0!==m&&(m=this.length),Y>=S.length&&(Y=S.length),Y||(Y=0),m>0&&m=this.length)throw new RangeError("Index out of range");if(m<0)throw new RangeError("sourceEnd out of bounds");m>this.length&&(m=this.length),S.length-Y>>=0,k=void 0===k?this.length:k>>>0,S||(S=0),"number"==typeof S)for(E=Y;E=k+4;Y-=3)S=`_${sA.slice(Y-3,Y)}${S}`;return`${sA.slice(0,Y)}${S}`}function b(sA,S,Y,k,m,E){if(sA>Y||sA3?0===S||S===BigInt(0)?`>= 0${mA} and < 2${mA} ** ${8*(E+1)}${mA}`:`>= -(2${mA} ** ${8*(E+1)-1}${mA}) and < 2 ** ${8*(E+1)-1}${mA}`:`>= ${S}${mA} and <= ${Y}${mA}`,new $A.ERR_OUT_OF_RANGE("value",ie,sA)}!function C(sA,S,Y){R(S,"offset"),(void 0===sA[S]||void 0===sA[S+Y])&&M(S,sA.length-(Y+1))}(k,m,E)}function R(sA,S){if("number"!=typeof sA)throw new $A.ERR_INVALID_ARG_TYPE(S,"number",sA)}function M(sA,S,Y){throw Math.floor(sA)!==sA?(R(sA,Y),new $A.ERR_OUT_OF_RANGE(Y||"offset","an integer",sA)):S<0?new $A.ERR_BUFFER_OUT_OF_BOUNDS:new $A.ERR_OUT_OF_RANGE(Y||"offset",`>= ${Y?1:0} and <= ${S}`,sA)}IA("ERR_BUFFER_OUT_OF_BOUNDS",function(sA){return sA?`${sA} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),IA("ERR_INVALID_ARG_TYPE",function(sA,S){return`The "${sA}" argument must be of type number. Received type ${typeof S}`},TypeError),IA("ERR_OUT_OF_RANGE",function(sA,S,Y){let k=`The value of "${sA}" is out of range.`,m=Y;return Number.isInteger(Y)&&Math.abs(Y)>4294967296?m=gA(String(Y)):"bigint"==typeof Y&&(m=String(Y),(Y>BigInt(2)**BigInt(32)||Y<-(BigInt(2)**BigInt(32)))&&(m=gA(m)),m+="n"),k+=` It must be ${S}. Received ${m}`,k},RangeError);const D=/[^+/0-9A-Za-z-_]/g;function YA(sA,S){let Y;S=S||1/0;const k=sA.length;let m=null;const E=[];for(let mA=0;mA55295&&Y<57344){if(!m){if(Y>56319){(S-=3)>-1&&E.push(239,191,189);continue}if(mA+1===k){(S-=3)>-1&&E.push(239,191,189);continue}m=Y;continue}if(Y<56320){(S-=3)>-1&&E.push(239,191,189),m=Y;continue}Y=65536+(m-55296<<10|Y-56320)}else m&&(S-=3)>-1&&E.push(239,191,189);if(m=null,Y<128){if((S-=1)<0)break;E.push(Y)}else if(Y<2048){if((S-=2)<0)break;E.push(Y>>6|192,63&Y|128)}else if(Y<65536){if((S-=3)<0)break;E.push(Y>>12|224,Y>>6&63|128,63&Y|128)}else{if(!(Y<1114112))throw new Error("Invalid code point");if((S-=4)<0)break;E.push(Y>>18|240,Y>>12&63|128,Y>>6&63|128,63&Y|128)}}return E}function le(sA){return t.toByteArray(function X(sA){if((sA=(sA=sA.split("=")[0]).trim().replace(D,"")).length<2)return"";for(;sA.length%4!=0;)sA+="=";return sA}(sA))}function ve(sA,S,Y,k){let m;for(m=0;m=S.length||m>=sA.length);++m)S[m+Y]=sA[m];return m}function Ne(sA,S){return sA instanceof S||null!=sA&&null!=sA.constructor&&null!=sA.constructor.name&&sA.constructor.name===S.name}function Te(sA){return sA!=sA}const ze=function(){const sA="0123456789abcdef",S=new Array(256);for(let Y=0;Y<16;++Y){const k=16*Y;for(let m=0;m<16;++m)S[k+m]=sA[Y]+sA[m]}return S}();function Oe(sA){return typeof BigInt>"u"?oe:sA}function oe(){throw new Error("BigInt not supported")}},4406(eA){"use strict";eA.exports=class t{constructor(I){this.stateTable=I.stateTable,this.accepting=I.accepting,this.tags=I.tags}match(I){var N=this;return{*[Symbol.iterator](){for(var K=1,v=null,B=null,j=null,tA=0;tA=v&&(yield[v,B,N.tags[j]]),K=N.stateTable[1][w],v=null),0!==K&&null==v&&(v=tA),N.accepting[K]&&(B=tA),0===K&&(K=1)}null!=v&&null!=B&&B>=v&&(yield[v,B,N.tags[K]])}}}apply(I,N){for(var K of this.match(I)){var v=K[0],B=K[1],j=K[2];for(var tA of j)"function"==typeof N[tA]&&N[tA](v,B,I.slice(v,B+1))}}}},3915(eA,Q,f){"use strict";f(8376),f(6401),f(2017),function(g){var I=typeof Uint8Array<"u"?Uint8Array:Array;function aA(P){var rA=P.charCodeAt(0);return 43===rA||45===rA?62:47===rA||95===rA?63:rA<48?-1:rA<58?rA-48+26+26:rA<91?rA-65:rA<123?rA-97+26:void 0}g.toByteArray=function AA(P){var rA,QA,NA,oA,uA,dA;if(P.length%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var RA=P.length;uA="="===P.charAt(RA-2)?2:"="===P.charAt(RA-1)?1:0,dA=new I(3*P.length/4-uA),NA=uA>0?P.length-4:P.length;var nA=0;function H(pA){dA[nA++]=pA}for(rA=0,QA=0;rA>16),H((65280&oA)>>8),H(255&oA);return 2===uA?H(255&(oA=aA(P.charAt(rA))<<2|aA(P.charAt(rA+1))>>4)):1===uA&&(H((oA=aA(P.charAt(rA))<<10|aA(P.charAt(rA+1))<<4|aA(P.charAt(rA+2))>>2)>>8&255),H(255&oA)),dA},g.fromByteArray=function L(P){var rA,oA,uA,QA=P.length%3,NA="";function dA(nA){return"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(nA)}function RA(nA){return dA(nA>>18&63)+dA(nA>>12&63)+dA(nA>>6&63)+dA(63&nA)}for(rA=0,uA=P.length-QA;rA>2),NA+=dA(oA<<4&63),NA+="==";break;case 2:NA+=dA((oA=(P[P.length-2]<<8)+P[P.length-1])>>10),NA+=dA(oA>>4&63),NA+=dA(oA<<2&63),NA+="="}return NA}}(Q)},182(eA,Q,f){"use strict";function t(rA,QA){var NA=Object.keys(rA);if(Object.getOwnPropertySymbols){var oA=Object.getOwnPropertySymbols(rA);QA&&(oA=oA.filter(function(uA){return Object.getOwnPropertyDescriptor(rA,uA).enumerable})),NA.push.apply(NA,oA)}return NA}function g(rA){for(var QA=1;QA0?this.tail.next=oA:this.head=oA,this.tail=oA,++this.length}},{key:"unshift",value:function(NA){var oA={data:NA,next:this.head};0===this.length&&(this.tail=oA),this.head=oA,++this.length}},{key:"shift",value:function(){if(0!==this.length){var NA=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,NA}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(NA){if(0===this.length)return"";for(var oA=this.head,uA=""+oA.data;oA=oA.next;)uA+=NA+oA.data;return uA}},{key:"concat",value:function(NA){if(0===this.length)return w.alloc(0);for(var oA=w.allocUnsafe(NA>>>0),uA=this.head,dA=0;uA;)P(uA.data,oA,dA),dA+=uA.data.length,uA=uA.next;return oA}},{key:"consume",value:function(NA,oA){var uA;return NARA.length?RA.length:NA;if(dA+=nA===RA.length?RA:RA.slice(0,NA),0===(NA-=nA)){nA===RA.length?(++uA,this.head=oA.next?oA.next:this.tail=null):(this.head=oA,oA.data=RA.slice(nA));break}++uA}return this.length-=uA,dA}},{key:"_getBuffer",value:function(NA){var oA=w.allocUnsafe(NA),uA=this.head,dA=1;for(uA.data.copy(oA),NA-=uA.data.length;uA=uA.next;){var RA=uA.data,nA=NA>RA.length?RA.length:NA;if(RA.copy(oA,oA.length-NA,0,nA),0===(NA-=nA)){nA===RA.length?(++dA,this.head=uA.next?uA.next:this.tail=null):(this.head=uA,uA.data=RA.slice(nA));break}++dA}return this.length-=dA,oA}},{key:L,value:function(NA,oA){return AA(this,g(g({},oA),{},{depth:0,customInspect:!1}))}}]),rA}()},5691(eA,Q,f){"use strict";var t=f(783),g=t.Buffer;function I(K,v){for(var B in K)v[B]=K[B]}function N(K,v,B){return g(K,v,B)}g.from&&g.alloc&&g.allocUnsafe&&g.allocUnsafeSlow?eA.exports=t:(I(t,Q),Q.Buffer=N),I(g,N),N.from=function(K,v,B){if("number"==typeof K)throw new TypeError("Argument must not be a number");return g(K,v,B)},N.alloc=function(K,v,B){if("number"!=typeof K)throw new TypeError("Argument must be a number");var j=g(K);return void 0!==v?"string"==typeof B?j.fill(v,B):j.fill(v):j.fill(0),j},N.allocUnsafe=function(K){if("number"!=typeof K)throw new TypeError("Argument must be a number");return g(K)},N.allocUnsafeSlow=function(K){if("number"!=typeof K)throw new TypeError("Argument must be a number");return t.SlowBuffer(K)}},7571(eA,Q,f){"use strict";f(8376),f(6401),f(2017);const t=f(3483),I=f(6016).swap32LE;eA.exports=class dA{constructor(nA){const H="function"==typeof nA.readUInt32BE&&"function"==typeof nA.slice;if(H||nA instanceof Uint8Array){let z;if(H)this.highStart=nA.readUInt32LE(0),this.errorValue=nA.readUInt32LE(4),z=nA.readUInt32LE(8),nA=nA.slice(12);else{const OA=new DataView(nA.buffer);this.highStart=OA.getUint32(0,!0),this.errorValue=OA.getUint32(4,!0),z=OA.getUint32(8,!0),nA=nA.subarray(12)}nA=t(nA,new Uint8Array(z)),nA=t(nA,new Uint8Array(z)),I(nA),this.data=new Uint32Array(nA.buffer)}else{var pA=nA;this.data=pA.data,this.highStart=pA.highStart,this.errorValue=pA.errorValue}}get(nA){let H;return nA<0||nA>1114111?this.errorValue:nA<55296||nA>56319&&nA<=65535?(H=(this.data[nA>>5]<<2)+(31&nA),this.data[H]):nA<=65535?(H=(this.data[2048+(nA-55296>>5)]<<2)+(31&nA),this.data[H]):nA>11)],H=this.data[H+(nA>>5&63)],H=(H<<2)+(31&nA),this.data[H]):this.data[this.data.length-4]}}},6016(eA,Q,f){"use strict";f(8376),f(6401),f(2017);const t=18===new Uint8Array(new Uint32Array([305419896]).buffer)[0],g=(K,v,B)=>{let j=K[v];K[v]=K[B],K[B]=j};eA.exports={swap32LE:K=>{t&&(K=>{const v=K.length;for(let B=0;Bthis._compareKeys(p,q)),y=["<<"];if(this.limits&&c.length>1){const q=c[c.length-1];y.push(` /Limits ${pA.convert([this._dataForKey(c[0]),this._dataForKey(q)])}`)}y.push(` /${this._keysName()} [`);for(let p of c)y.push(` ${pA.convert(this._dataForKey(p))} ${pA.convert(this._items[p])}`);return y.push("]"),y.push(">>"),y.join("\n")}_compareKeys(){throw new Error("Must be implemented by subclasses")}_keysName(){throw new Error("Must be implemented by subclasses")}_dataForKey(){throw new Error("Must be implemented by subclasses")}}class NA{constructor(c,y,p,q,CA,_A){this.id="CS"+Object.keys(c.spotColors).length,this.name=y,this.values=[p,q,CA,_A],this.ref=c.ref(["Separation",nA(this.name),"DeviceCMYK",{Range:[0,1,0,1,0,1,0,1],C0:[0,0,0,0],C1:this.values.map(ee=>ee/100),FunctionType:2,Domain:[0,1],N:1}]),this.ref.end()}toString(){return`${this.ref.id} 0 R`}}const oA=(h,c)=>(Array(c+1).join("0")+h).slice(-c),uA=h=>h>127||h>32&&127!==h&&35!==h&&37!==h&&40!==h&&41!==h&&47!==h&&60!==h&&62!==h&&91!==h&&93!==h&&123!==h&&125!==h,dA=/[\n\r\t\b\f()\\]/g,RA={"\n":"\\n","\r":"\\r","\t":"\\t","\b":"\\b","\f":"\\f","\\":"\\\\","(":"\\(",")":"\\)"},nA=function(h){let c="";for(const y of h){const p=y.charCodeAt(0);uA(p)?c+=y:c+=`#${p.toString(16).toUpperCase().padStart(2,"0")}`}return c};class pA{static convert(c,y){if(void 0===y&&(y=null),"string"==typeof c)return`/${c}`;if(c instanceof String){let CA,p=c,q=!1;for(let _A=0,ee=p.length;_A127){q=!0;break}return CA=q?function(h){const c=h.length;if(1&c)throw new Error("Buffer length must be even");for(let y=0,p=c-1;yRA[_A]),`(${p})`}if(I.isBuffer(c))return`<${c.toString("hex")}>`;if(c instanceof rA||c instanceof QA||c instanceof NA)return c.toString();if(c instanceof Date){let p=`D:${oA(c.getUTCFullYear(),4)}`+oA(c.getUTCMonth()+1,2)+oA(c.getUTCDate(),2)+oA(c.getUTCHours(),2)+oA(c.getUTCMinutes(),2)+oA(c.getUTCSeconds(),2)+"Z";return y&&(p=y(I.from(p,"ascii")).toString("binary"),p=p.replace(dA,q=>RA[q])),`(${p})`}if(Array.isArray(c))return`[${c.map(q=>pA.convert(q,y)).join(" ")}]`;if("[object Object]"==={}.toString.call(c)){const p=["<<"];for(let q in c)p.push(`/${q} ${pA.convert(c[q],y)}`);return p.push(">>"),p.join("\n")}return"number"==typeof c?pA.number(c):`${c}`}static number(c){if(c>-1e21&&c<1e21)return Math.round(1e6*c)/1e6;throw new Error(`unsupported number: ${c}`)}}class z extends rA{constructor(c,y,p){void 0===p&&(p={}),super(),this.document=c,this.id=y,this.data=p,this.gen=0,this.compress=this.document.compress&&!this.data.Filter,this.uncompressedLength=0,this.buffer=[]}write(c){c instanceof Uint8Array||(c=I.from(c+"\n","binary")),this.uncompressedLength+=c.length,null==this.data.Length&&(this.data.Length=0),this.buffer.push(c),this.data.Length+=c.length,this.compress&&(this.data.Filter="FlateDecode")}end(c){c&&this.write(c),this.finalize()}finalize(){this.offset=this.document._offset;const c=this.document._security?this.document._security.getEncryptFn(this.id,this.gen):null;this.buffer.length&&(this.buffer=I.concat(this.buffer),this.compress&&(this.buffer=K.default.deflateSync(this.buffer)),c&&(this.buffer=c(this.buffer)),this.data.Length=this.buffer.length),this.document._write(`${this.id} ${this.gen} obj`),this.document._write(pA.convert(this.data,c)),this.buffer.length&&(this.document._write("stream"),this.document._write(this.buffer),this.buffer=[],this.document._write("\nendstream")),this.document._write("endobj"),this.document._refEnd(this)}toString(){return`${this.id} ${this.gen} R`}}const OA=new Float32Array(1),wA=new Uint32Array(OA.buffer);function VA(h){const c=Math.fround(h);return c<=h?c:(OA[0]=h,h<=0?wA[0]+=1:wA[0]-=1,OA[0])}function kA(h,c,y){return void 0===c&&(c=void 0),void 0===y&&(y=p=>p),(null==h||"object"==typeof h&&0===Object.keys(h).length)&&(h=c),null==h||"object"!=typeof h?h={top:h,right:h,bottom:h,left:h}:Array.isArray(h)&&(h=2===h.length?{vertical:h[0],horizontal:h[1]}:{top:h[0],right:h[1],bottom:h[2],left:h[3]}),("vertical"in h||"horizontal"in h)&&(h={top:h.vertical,right:h.horizontal,bottom:h.vertical,left:h.horizontal}),{top:y(h.top),right:y(h.right),bottom:y(h.bottom),left:y(h.left)}}const fA=1/2.54;function Ee(h){return 0===h?1:90===h?0:180===h?-1:270===h?0:Math.cos(h*Math.PI/180)}function HA(h){return 0===h?0:90===h?1:180===h?0:270===h?-1:Math.sin(h*Math.PI/180)}const cA={top:72,left:72,bottom:72,right:72},J={"4A0":[4767.87,6740.79],"2A0":[3370.39,4767.87],A0:[2383.94,3370.39],A1:[1683.78,2383.94],A2:[1190.55,1683.78],A3:[841.89,1190.55],A4:[595.28,841.89],A5:[419.53,595.28],A6:[297.64,419.53],A7:[209.76,297.64],A8:[147.4,209.76],A9:[104.88,147.4],A10:[73.7,104.88],B0:[2834.65,4008.19],B1:[2004.09,2834.65],B2:[1417.32,2004.09],B3:[1000.63,1417.32],B4:[708.66,1000.63],B5:[498.9,708.66],B6:[354.33,498.9],B7:[249.45,354.33],B8:[175.75,249.45],B9:[124.72,175.75],B10:[87.87,124.72],C0:[2599.37,3676.54],C1:[1836.85,2599.37],C2:[1298.27,1836.85],C3:[918.43,1298.27],C4:[649.13,918.43],C5:[459.21,649.13],C6:[323.15,459.21],C7:[229.61,323.15],C8:[161.57,229.61],C9:[113.39,161.57],C10:[79.37,113.39],RA0:[2437.8,3458.27],RA1:[1729.13,2437.8],RA2:[1218.9,1729.13],RA3:[864.57,1218.9],RA4:[609.45,864.57],SRA0:[2551.18,3628.35],SRA1:[1814.17,2551.18],SRA2:[1275.59,1814.17],SRA3:[907.09,1275.59],SRA4:[637.8,907.09],EXECUTIVE:[521.86,756],FOLIO:[612,936],LEGAL:[612,1008],LETTER:[612,792],TABLOID:[792,1224]};class U{constructor(c,y){void 0===y&&(y={}),this.document=c,this._options=y,this.size=y.size||"letter",this.layout=y.layout||"portrait",this.userUnit=y.userUnit||1;const p=Array.isArray(this.size)?this.size:J[this.size.toUpperCase()];this.width=p["portrait"===this.layout?0:1],this.height=p["portrait"===this.layout?1:0],this.content=this.document.ref(),y.font&&c.font(y.font,y.fontFamily),y.fontSize&&c.fontSize(y.fontSize),this.margins=kA(y.margin??y.margins,cA,q=>c.sizeToPoint(q,0,this)),this.resources=this.document.ref({ProcSet:["PDF","Text","ImageB","ImageC","ImageI"]}),this.dictionary=this.document.ref({Type:"Page",Parent:this.document._root.data.Pages,MediaBox:[0,0,this.width,this.height],Contents:this.content,Resources:this.resources,UserUnit:this.userUnit}),this.markings=[]}get fonts(){const c=this.resources.data;return null!=c.Font?c.Font:c.Font={}}get xobjects(){const c=this.resources.data;return null!=c.XObject?c.XObject:c.XObject={}}get ext_gstates(){const c=this.resources.data;return null!=c.ExtGState?c.ExtGState:c.ExtGState={}}get patterns(){const c=this.resources.data;return null!=c.Pattern?c.Pattern:c.Pattern={}}get colorSpaces(){const c=this.resources.data;return c.ColorSpace||(c.ColorSpace={})}get annotations(){const c=this.dictionary.data;return null!=c.Annots?c.Annots:c.Annots=[]}get structParentTreeKey(){const c=this.dictionary.data;return null!=c.StructParents?c.StructParents:c.StructParents=this.document.createStructParentTreeNextKey()}get contentWidth(){return this.width-this.margins.left-this.margins.right}get contentHeight(){return this.height-this.margins.top-this.margins.bottom}maxY(){return this.height-this.margins.bottom}write(c){return this.content.write(c)}_setTabOrder(){!this.dictionary.Tabs&&this.document.hasMarkInfoDictionary()&&(this.dictionary.data.Tabs="S")}end(){this._setTabOrder(),this.dictionary.end(),this.resources.data.ColorSpace=this.resources.data.ColorSpace||{};for(let c of Object.values(this.document.spotColors))this.resources.data.ColorSpace[c.id]=c;return this.resources.end(),this.content.end()}}class O extends QA{_compareKeys(c,y){return c.localeCompare(y)}_keysName(){return"Names"}_dataForKey(c){return new String(c)}}function lA(h){return new Uint8Array(B.default.arrayBuffer(h))}function JA(h){return(0,j.sha256)(h)}function $A(h,c,y,p){return void 0===p&&(p=!0),(0,tA.cbc)(c,y,{disablePadding:!p}).encrypt(h)}function gA(h,c){const y=new Uint8Array(256);for(let ee=0;ee<256;ee++)y[ee]=ee;let p=0;for(let ee=0;ee<256;ee++){p=p+y[ee]+c[ee%c.length]&255;var q=[y[p],y[ee]];y[ee]=q[0],y[p]=q[1]}const CA=new Uint8Array(h.length);for(let ee=0,he=0,Ie=0;Ie=c[CA]&&h<=c[CA+1])return!0;h>c[CA+1]?y=q+1:p=q-1}return!1}const R=[545,545,564,591,686,687,751,767,848,863,880,883,886,889,891,893,895,899,907,907,909,909,930,930,975,975,1015,1023,1159,1159,1231,1231,1270,1271,1274,1279,1296,1328,1367,1368,1376,1376,1416,1416,1419,1424,1442,1442,1466,1466,1477,1487,1515,1519,1525,1547,1549,1562,1564,1566,1568,1568,1595,1599,1622,1631,1774,1775,1791,1791,1806,1806,1837,1839,1867,1919,1970,2304,2308,2308,2362,2363,2382,2383,2389,2391,2417,2432,2436,2436,2445,2446,2449,2450,2473,2473,2481,2481,2483,2485,2490,2491,2493,2493,2501,2502,2505,2506,2510,2518,2520,2523,2526,2526,2532,2533,2555,2561,2563,2564,2571,2574,2577,2578,2601,2601,2609,2609,2612,2612,2615,2615,2618,2619,2621,2621,2627,2630,2633,2634,2638,2648,2653,2653,2655,2661,2677,2688,2692,2692,2700,2700,2702,2702,2706,2706,2729,2729,2737,2737,2740,2740,2746,2747,2758,2758,2762,2762,2766,2767,2769,2783,2785,2789,2800,2816,2820,2820,2829,2830,2833,2834,2857,2857,2865,2865,2868,2869,2874,2875,2884,2886,2889,2890,2894,2901,2904,2907,2910,2910,2914,2917,2929,2945,2948,2948,2955,2957,2961,2961,2966,2968,2971,2971,2973,2973,2976,2978,2981,2983,2987,2989,2998,2998,3002,3005,3011,3013,3017,3017,3022,3030,3032,3046,3059,3072,3076,3076,3085,3085,3089,3089,3113,3113,3124,3124,3130,3133,3141,3141,3145,3145,3150,3156,3159,3167,3170,3173,3184,3201,3204,3204,3213,3213,3217,3217,3241,3241,3252,3252,3258,3261,3269,3269,3273,3273,3278,3284,3287,3293,3295,3295,3298,3301,3312,3329,3332,3332,3341,3341,3345,3345,3369,3369,3386,3389,3396,3397,3401,3401,3406,3414,3416,3423,3426,3429,3440,3457,3460,3460,3479,3481,3506,3506,3516,3516,3518,3519,3527,3529,3531,3534,3541,3541,3543,3543,3552,3569,3573,3584,3643,3646,3676,3712,3715,3715,3717,3718,3721,3721,3723,3724,3726,3731,3736,3736,3744,3744,3748,3748,3750,3750,3752,3753,3756,3756,3770,3770,3774,3775,3781,3781,3783,3783,3790,3791,3802,3803,3806,3839,3912,3912,3947,3952,3980,3983,3992,3992,4029,4029,4045,4046,4048,4095,4130,4130,4136,4136,4139,4139,4147,4149,4154,4159,4186,4255,4294,4303,4345,4346,4348,4351,4442,4446,4515,4519,4602,4607,4615,4615,4679,4679,4681,4681,4686,4687,4695,4695,4697,4697,4702,4703,4743,4743,4745,4745,4750,4751,4783,4783,4785,4785,4790,4791,4799,4799,4801,4801,4806,4807,4815,4815,4823,4823,4847,4847,4879,4879,4881,4881,4886,4887,4895,4895,4935,4935,4955,4960,4989,5023,5109,5120,5751,5759,5789,5791,5873,5887,5901,5901,5909,5919,5943,5951,5972,5983,5997,5997,6001,6001,6004,6015,6109,6111,6122,6143,6159,6159,6170,6175,6264,6271,6314,7679,7836,7839,7930,7935,7958,7959,7966,7967,8006,8007,8014,8015,8024,8024,8026,8026,8028,8028,8030,8030,8062,8063,8117,8117,8133,8133,8148,8149,8156,8156,8176,8177,8181,8181,8191,8191,8275,8278,8280,8286,8292,8297,8306,8307,8335,8351,8370,8399,8427,8447,8507,8508,8524,8530,8580,8591,9167,9215,9255,9279,9291,9311,9471,9471,9748,9749,9752,9752,9854,9855,9866,9984,9989,9989,9994,9995,10024,10024,10060,10060,10062,10062,10067,10069,10071,10071,10079,10080,10133,10135,10160,10160,10175,10191,10220,10223,11008,11903,11930,11930,12020,12031,12246,12271,12284,12287,12352,12352,12439,12440,12544,12548,12589,12592,12687,12687,12728,12783,12829,12831,12868,12880,12924,12926,13004,13007,13055,13055,13175,13178,13278,13279,13311,13311,19894,19967,40870,40959,42125,42127,42183,44031,55204,55295,64046,64047,64107,64255,64263,64274,64280,64284,64311,64311,64317,64317,64319,64319,64322,64322,64325,64325,64434,64466,64832,64847,64912,64913,64968,64975,65021,65023,65040,65055,65060,65071,65095,65096,65107,65107,65127,65127,65132,65135,65141,65141,65277,65278,65280,65280,65471,65473,65480,65481,65488,65489,65496,65497,65501,65503,65511,65511,65519,65528,65536,66303,66335,66335,66340,66351,66379,66559,66598,66599,66638,118783,119030,119039,119079,119081,119262,119807,119893,119893,119965,119965,119968,119969,119971,119972,119975,119976,119981,119981,119994,119994,119996,119996,120001,120001,120004,120004,120070,120070,120075,120076,120085,120085,120093,120093,120122,120122,120127,120127,120133,120133,120135,120137,120145,120145,120484,120487,120778,120781,120832,131069,173783,194559,195102,196605,196608,262141,262144,327677,327680,393213,393216,458749,458752,524285,524288,589821,589824,655357,655360,720893,720896,786429,786432,851965,851968,917501,917504,917504,917506,917535,917632,983037],M=h=>b(h,R),D=[173,173,847,847,6150,6150,6155,6155,6156,6156,6157,6157,8203,8203,8204,8204,8205,8205,8288,8288,65024,65024,65025,65025,65026,65026,65027,65027,65028,65028,65029,65029,65030,65030,65031,65031,65032,65032,65033,65033,65034,65034,65035,65035,65036,65036,65037,65037,65038,65038,65039,65039,65279,65279],YA=[160,160,5760,5760,8192,8192,8193,8193,8194,8194,8195,8195,8196,8196,8197,8197,8198,8198,8199,8199,8200,8200,8201,8201,8202,8202,8203,8203,8239,8239,8287,8287,12288,12288],bA=[128,159,1757,1757,1807,1807,6158,6158,8204,8204,8205,8205,8232,8232,8233,8233,8288,8288,8289,8289,8290,8290,8291,8291,8298,8303,65279,65279,65529,65532,119155,119162],le=[64976,65007,65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1114110,1114111],ve=[0,31,127,127,832,832,833,833,8206,8206,8207,8207,8234,8234,8235,8235,8236,8236,8237,8237,8238,8238,8298,8298,8299,8299,8300,8300,8301,8301,8302,8302,8303,8303,12272,12283,55296,57343,57344,63743,65529,65529,65530,65530,65531,65531,65532,65532,65533,65533,917505,917505,917536,917631,983040,1048573,1048576,1114109],Ne=h=>b(h,YA)||b(h,ve)||b(h,bA)||b(h,le),Te=[1470,1470,1472,1472,1475,1475,1488,1514,1520,1524,1563,1563,1567,1567,1569,1594,1600,1610,1645,1647,1649,1749,1757,1757,1765,1766,1786,1790,1792,1805,1808,1808,1810,1836,1920,1957,1969,1969,8207,8207,64285,64285,64287,64296,64298,64310,64312,64316,64318,64318,64320,64321,64323,64324,64326,64433,64467,64829,64848,64911,64914,64967,65008,65020,65136,65140,65142,65276],ze=h=>b(h,Te),Oe=[65,90,97,122,170,170,181,181,186,186,192,214,216,246,248,544,546,563,592,685,688,696,699,705,720,721,736,740,750,750,890,890,902,902,904,906,908,908,910,929,931,974,976,1013,1024,1154,1162,1230,1232,1269,1272,1273,1280,1295,1329,1366,1369,1375,1377,1415,1417,1417,2307,2307,2309,2361,2365,2368,2377,2380,2384,2384,2392,2401,2404,2416,2434,2435,2437,2444,2447,2448,2451,2472,2474,2480,2482,2482,2486,2489,2494,2496,2503,2504,2507,2508,2519,2519,2524,2525,2527,2529,2534,2545,2548,2554,2565,2570,2575,2576,2579,2600,2602,2608,2610,2611,2613,2614,2616,2617,2622,2624,2649,2652,2654,2654,2662,2671,2674,2676,2691,2691,2693,2699,2701,2701,2703,2705,2707,2728,2730,2736,2738,2739,2741,2745,2749,2752,2761,2761,2763,2764,2768,2768,2784,2784,2790,2799,2818,2819,2821,2828,2831,2832,2835,2856,2858,2864,2866,2867,2870,2873,2877,2878,2880,2880,2887,2888,2891,2892,2903,2903,2908,2909,2911,2913,2918,2928,2947,2947,2949,2954,2958,2960,2962,2965,2969,2970,2972,2972,2974,2975,2979,2980,2984,2986,2990,2997,2999,3001,3006,3007,3009,3010,3014,3016,3018,3020,3031,3031,3047,3058,3073,3075,3077,3084,3086,3088,3090,3112,3114,3123,3125,3129,3137,3140,3168,3169,3174,3183,3202,3203,3205,3212,3214,3216,3218,3240,3242,3251,3253,3257,3262,3262,3264,3268,3271,3272,3274,3275,3285,3286,3294,3294,3296,3297,3302,3311,3330,3331,3333,3340,3342,3344,3346,3368,3370,3385,3390,3392,3398,3400,3402,3404,3415,3415,3424,3425,3430,3439,3458,3459,3461,3478,3482,3505,3507,3515,3517,3517,3520,3526,3535,3537,3544,3551,3570,3572,3585,3632,3634,3635,3648,3654,3663,3675,3713,3714,3716,3716,3719,3720,3722,3722,3725,3725,3732,3735,3737,3743,3745,3747,3749,3749,3751,3751,3754,3755,3757,3760,3762,3763,3773,3773,3776,3780,3782,3782,3792,3801,3804,3805,3840,3863,3866,3892,3894,3894,3896,3896,3902,3911,3913,3946,3967,3967,3973,3973,3976,3979,4030,4037,4039,4044,4047,4047,4096,4129,4131,4135,4137,4138,4140,4140,4145,4145,4152,4152,4160,4183,4256,4293,4304,4344,4347,4347,4352,4441,4447,4514,4520,4601,4608,4614,4616,4678,4680,4680,4682,4685,4688,4694,4696,4696,4698,4701,4704,4742,4744,4744,4746,4749,4752,4782,4784,4784,4786,4789,4792,4798,4800,4800,4802,4805,4808,4814,4816,4822,4824,4846,4848,4878,4880,4880,4882,4885,4888,4894,4896,4934,4936,4954,4961,4988,5024,5108,5121,5750,5761,5786,5792,5872,5888,5900,5902,5905,5920,5937,5941,5942,5952,5969,5984,5996,5998,6e3,6016,6070,6078,6085,6087,6088,6100,6106,6108,6108,6112,6121,6160,6169,6176,6263,6272,6312,7680,7835,7840,7929,7936,7957,7960,7965,7968,8005,8008,8013,8016,8023,8025,8025,8027,8027,8029,8029,8031,8061,8064,8116,8118,8124,8126,8126,8130,8132,8134,8140,8144,8147,8150,8155,8160,8172,8178,8180,8182,8188,8206,8206,8305,8305,8319,8319,8450,8450,8455,8455,8458,8467,8469,8469,8473,8477,8484,8484,8486,8486,8488,8488,8490,8493,8495,8497,8499,8505,8509,8511,8517,8521,8544,8579,9014,9082,9109,9109,9372,9449,12293,12295,12321,12329,12337,12341,12344,12348,12353,12438,12445,12447,12449,12538,12540,12543,12549,12588,12593,12686,12688,12727,12784,12828,12832,12867,12896,12923,12927,12976,12992,13003,13008,13054,13056,13174,13179,13277,13280,13310,13312,19893,19968,40869,40960,42124,44032,55203,55296,64045,64048,64106,64256,64262,64275,64279,65313,65338,65345,65370,65382,65470,65474,65479,65482,65487,65490,65495,65498,65500,66304,66334,66336,66339,66352,66378,66560,66597,66600,66637,118784,119029,119040,119078,119082,119142,119146,119154,119171,119172,119180,119209,119214,119261,119808,119892,119894,119964,119966,119967,119970,119970,119973,119974,119977,119980,119982,119993,119995,119995,119997,12e4,120002,120003,120005,120069,120071,120074,120077,120084,120086,120092,120094,120121,120123,120126,120128,120132,120134,120134,120138,120144,120146,120483,120488,120777,131072,173782,194560,195101,983040,1048573,1048576,1114109],oe=h=>b(h,Oe),Y=h=>h.codePointAt(0);function E(h){const c=[],y=h.length;for(let p=0;p=55296&&q<=56319&&y>p+1){const CA=h.charCodeAt(p+1);if(CA>=56320&&CA<=57343){c.push(1024*(q-55296)+CA-56320+65536),p+=1;continue}}c.push(q)}return c}class ie{static generateFileID(c){void 0===c&&(c={});let y=`${c.CreationDate.getTime()}\n`;for(let p in c)c.hasOwnProperty(p)&&(y+=`${p}: ${c[p].valueOf()}\n`);return I.from(lA(y))}static generateRandomWordArray(c){return function C(h){const c=new Uint8Array(h);return globalThis.crypto.getRandomValues(c),c}(c)}static create(c,y){return void 0===y&&(y={}),y.ownerPassword||y.userPassword?new ie(c,y):null}constructor(c,y){if(void 0===y&&(y={}),!y.ownerPassword&&!y.userPassword)throw new Error("None of owner password and user password is defined.");this.document=c,this._setupEncryption(y)}_setupEncryption(c){switch(c.pdfVersion){case"1.4":case"1.5":this.version=2;break;case"1.6":case"1.7":this.version=4;break;case"1.7ext3":this.version=5;break;default:this.version=1}const y={Filter:"Standard"};switch(this.version){case 1:case 2:case 4:this._setupEncryptionV1V2V4(this.version,y,c);break;case 5:this._setupEncryptionV5(y,c)}this.dictionary=this.document.ref(y)}_setupEncryptionV1V2V4(c,y,p){let q,CA;switch(c){case 1:q=2,this.keyBits=40,CA=function DA(h){void 0===h&&(h={});let c=-64;return h.printing&&(c|=4),h.modifying&&(c|=8),h.copying&&(c|=16),h.annotating&&(c|=32),c}(p.permissions);break;case 2:q=3,this.keyBits=128,CA=Ae(p.permissions);break;case 4:q=4,this.keyBits=128,CA=Ae(p.permissions)}const _A=et(p.userPassword),ee=p.ownerPassword?et(p.ownerPassword):_A,he=function Pe(h,c,y,p){let q=p,CA=h>=3?51:1;for(let Ie=0;Ie=3?20:1;for(let Ie=0;Ie>8&255,CA>>16&255,CA>>24&255]);let ee=(0,v.concatBytes)(p,q,_A,new Uint8Array(y));const he=h>=3?51:1,Ie=c/8;for(let xe=0;xe=2&&(y.Length=this.keyBits),4===c&&(y.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV2",Length:this.keyBits/8}},y.StmF="StdCF",y.StrF="StdCF"),y.R=q,y.O=I.from(he),y.U=I.from(Ie),y.P=CA}_setupEncryptionV5(c,y){this.keyBits=256;const p=Ae(y.permissions),q=Ke(y.userPassword),CA=y.ownerPassword?Ke(y.ownerPassword):q;this.encryptionKey=function we(h){return h(32)}(ie.generateRandomWordArray);const _A=function _(h,c){const y=c(8),p=c(8),q=JA((0,v.concatBytes)(h,y));return(0,v.concatBytes)(q,y,p)}(q,ie.generateRandomWordArray),he=function be(h,c,y){return $A(y,JA((0,v.concatBytes)(h,c)),new Uint8Array(16),!1)}(q,_A.slice(40,48),this.encryptionKey),Ie=function Re(h,c,y){const p=y(8),q=y(8),CA=JA((0,v.concatBytes)(h,p,c));return(0,v.concatBytes)(CA,p,q)}(CA,_A,ie.generateRandomWordArray),$=function SA(h,c,y,p){return $A(p,JA((0,v.concatBytes)(h,c,y)),new Uint8Array(16),!1)}(CA,Ie.slice(40,48),_A,this.encryptionKey),s=function Fe(h,c,y){const p=new Uint8Array(16);p[0]=255&h,p[1]=h>>8&255,p[2]=h>>16&255,p[3]=h>>24&255,p[4]=255,p[5]=255,p[6]=255,p[7]=255,p[8]=84,p[9]=97,p[10]=100,p[11]=98;const q=y(4);return p.set(q,12),function IA(h,c){return(0,tA.ecb)(c,{disablePadding:!0}).encrypt(h)}(p,c)}(p,this.encryptionKey,ie.generateRandomWordArray);c.V=5,c.Length=this.keyBits,c.CF={StdCF:{AuthEvent:"DocOpen",CFM:"AESV3",Length:this.keyBits/8}},c.StmF="StdCF",c.StrF="StdCF",c.R=5,c.O=I.from(Ie),c.OE=I.from($),c.U=I.from(_A),c.UE=I.from(he),c.P=p,c.Perms=I.from(s)}getEncryptFn(c,y){let p,q;if(this.version<5){const _A=new Uint8Array([255&c,c>>8&255,c>>16&255,255&y,y>>8&255]);p=(0,v.concatBytes)(this.encryptionKey,_A)}if(1===this.version||2===this.version){let _A=lA(p);const ee=Math.min(16,this.keyBits/8+5);return _A=_A.slice(0,ee),he=>I.from(gA(new Uint8Array(he),_A))}if(4===this.version){const _A=new Uint8Array([115,65,108,84]);q=lA((0,v.concatBytes)(p,_A))}else q=this.encryptionKey;const CA=ie.generateRandomWordArray(16);return _A=>{const ee=$A(new Uint8Array(_A),q,CA,!0);return I.from((0,v.concatBytes)(CA,ee))}}end(){this.dictionary.end()}}function Ae(h){void 0===h&&(h={});let c=-3904;return"lowResolution"===h.printing&&(c|=4),"highResolution"===h.printing&&(c|=2052),h.modifying&&(c|=8),h.copying&&(c|=16),h.annotating&&(c|=32),h.fillingForms&&(c|=256),h.contentAccessibility&&(c|=512),h.documentAssembly&&(c|=1024),c}function et(h){void 0===h&&(h="");const c=new Uint8Array(32),y=h.length;let p=0;for(;p255)throw new Error("Password contains one or more invalid characters.");c[p]=q,p++}for(;p<32;)c[p]=$e[p-y],p++;return c}function Ke(h){void 0===h&&(h=""),h=unescape(encodeURIComponent(function mA(h,c){if(void 0===c&&(c={}),"string"!=typeof h)throw new TypeError("Expected string.");if(0===h.length)return"";const y=E(h).map(xe=>(h=>b(h,YA))(xe)?32:xe).filter(xe=>!(h=>b(h,D))(xe)),p=String.fromCodePoint.apply(null,y).normalize("NFKC"),q=E(p);if(q.some(Ne))throw new Error("Prohibited character, see https://tools.ietf.org/html/rfc4013#section-2.3");if(!0!==c.allowUnassigned&&q.some(M))throw new Error("Unassigned code point, see https://tools.ietf.org/html/rfc4013#section-2.5");const _A=q.some(ze),ee=q.some(oe);if(_A&&ee)throw new Error("String must not contain RandALCat and LCat at the same time, see https://tools.ietf.org/html/rfc3454#section-6");const he=ze(Y((h=>h[0])(p))),Ie=ze(Y((h=>h[h.length-1])(p)));if(_A&&(!he||!Ie))throw new Error("Bidirectional RandALCat character must be the first and the last character of the string, see https://tools.ietf.org/html/rfc3454#section-6");return p}(h)));const c=Math.min(127,h.length),y=new Uint8Array(c);for(let p=0;pxe[2]<1)){let xe=this.opacityGradient();xe._colorSpace="DeviceGray";for(let W of this.stops)xe.stop(W[0],[W[2]]);xe=xe.embed(this.matrix);const $=[0,0,this.doc.page.width,this.doc.page.height],s=this.doc.ref({Type:"XObject",Subtype:"Form",FormType:1,BBox:$,Group:{Type:"Group",S:"Transparency",CS:"DeviceGray"},Resources:{ProcSet:["PDF","Text","ImageB","ImageC","ImageI"],Pattern:{Sh1:xe}}});s.write("/Pattern cs /Sh1 scn"),s.end(`${$.join(" ")} re f`);const d=this.doc.ref({Type:"ExtGState",SMask:{Type:"Mask",S:"Luminosity",G:s}});d.end();const F=this.doc.ref({Type:"Pattern",PatternType:1,PaintType:1,TilingType:2,BBox:$,XStep:$[2],YStep:$[3],Resources:{ProcSet:["PDF","Text","ImageB","ImageC","ImageI"],Pattern:{Sh1:Ie},ExtGState:{Gs1:d}}});F.write("/Gs1 gs /Pattern cs /Sh1 scn"),F.end(`${$.join(" ")} re f`),this.doc.page.patterns[this.id]=F}else this.doc.page.patterns[this.id]=Ie;return Ie}apply(c){const y=this.doc._ctm,p=y[0],q=y[1],CA=y[2],_A=y[3],Ie=this.transform,xe=Ie[0],$=Ie[1],s=Ie[2],d=Ie[3],F=Ie[4],W=Ie[5],Z=[p*xe+CA*$,q*xe+_A*$,p*s+CA*d,q*s+_A*d,p*F+CA*W+y[4],q*F+_A*W+y[5]];return(!this.embedded||Z.join(" ")!==this.matrix.join(" "))&&this.embed(Z),this.doc._setColorSpace("Pattern",c),this.doc.addContent(`/${this.id} ${c?"SCN":"scn"}`)}};const Tt=["DeviceCMYK","DeviceRGB"],pn=cn,Gt=class Jc extends cn{constructor(c,y,p,q,CA){super(c),this.x1=y,this.y1=p,this.x2=q,this.y2=CA}shader(c){return this.doc.ref({ShadingType:2,ColorSpace:this._colorSpace,Coords:[this.x1,this.y1,this.x2,this.y2],Function:c,Extend:[!0,!0]})}opacityGradient(){return new Jc(this.doc,this.x1,this.y1,this.x2,this.y2)}},Mt=class _c extends cn{constructor(c,y,p,q,CA,_A,ee){super(c),this.doc=c,this.x1=y,this.y1=p,this.r1=q,this.x2=CA,this.y2=_A,this.r2=ee}shader(c){return this.doc.ref({ShadingType:3,ColorSpace:this._colorSpace,Coords:[this.x1,this.y1,this.r1,this.x2,this.y2,this.r2],Function:c,Extend:[!0,!0]})}opacityGradient(){return new _c(this.doc,this.x1,this.y1,this.r1,this.x2,this.y2,this.r2)}},Ot=class{constructor(c,y,p,q,CA){this.doc=c,this.bBox=y,this.xStep=p,this.yStep=q,this.stream=CA}createPattern(){const c=this.doc.ref();c.end();const y=this.doc._ctm,p=y[0],q=y[1],CA=y[2],_A=y[3],Z=this.doc.ref({Type:"Pattern",PatternType:1,PaintType:2,TilingType:2,BBox:this.bBox,XStep:this.xStep,YStep:this.yStep,Matrix:[1*p+0*CA,1*q+0*_A,0*p+1*CA,0*q+1*_A,0*p+0*CA+y[4],0*q+0*_A+y[5]].map(EA=>+EA.toFixed(5)),Resources:c});return Z.end(this.stream),Z}embedPatternColorSpaces(){Tt.forEach(c=>{const y=this.getPatternColorSpaceId(c);if(this.doc.page.colorSpaces[y])return;const p=this.doc.ref(["Pattern",c]);p.end(),this.doc.page.colorSpaces[y]=p})}getPatternColorSpaceId(c){return`CsP${c}`}embed(){this.id||(this.doc._patternCount=this.doc._patternCount+1,this.id="P"+this.doc._patternCount,this.pattern=this.createPattern()),this.doc.page.patterns[this.id]||(this.doc.page.patterns[this.id]=this.pattern)}apply(c,y){this.embedPatternColorSpaces(),this.embed();const p=this.doc._normalizeColor(y);if(!p)throw Error(`invalid pattern color. (value: ${y})`);const q=this.getPatternColorSpaceId(this.doc._getColorSpace(p));this.doc._setColorSpace(q,c);const CA=c?"SCN":"scn";return this.doc.addContent(`${p.join(" ")} /${this.id} ${CA}`)}};var bt={initColor(){this.spotColors={},this._opacityRegistry={},this._opacityCount=0,this._patternCount=0,this._gradCount=0},_normalizeColor(h){if("string"==typeof h)if("#"===h.charAt(0)){4===h.length&&(h=h.replace(/#([0-9A-F])([0-9A-F])([0-9A-F])/i,"#$1$1$2$2$3$3"));const c=parseInt(h.slice(1),16);h=[c>>16,c>>8&255,255&c]}else if(Dt[h])h=Dt[h];else if(this.spotColors[h])return this.spotColors[h];return Array.isArray(h)?(3===h.length?h=h.map(c=>c/255):4===h.length&&(h=h.map(c=>c/100)),h):null},_setColor(h,c){return h instanceof pn?(h.apply(c),!0):Array.isArray(h)&&h[0]instanceof Ot?(h[0].apply(c,h[1]),!0):this._setColorCore(h,c)},_setColorCore(h,c){if(!(h=this._normalizeColor(h)))return!1;const y=c?"SCN":"scn",p=this._getColorSpace(h);return this._setColorSpace(p,c),h instanceof NA?(this.page.colorSpaces[h.id]=h.ref,this.addContent(`1 ${y}`)):this.addContent(`${h.join(" ")} ${y}`),!0},_setColorSpace(h,c){return this.addContent(`/${h} ${c?"CS":"cs"}`)},_getColorSpace:h=>h instanceof NA?h.id:4===h.length?"DeviceCMYK":"DeviceRGB",fillColor(h,c){return this._setColor(h,!1)&&this.fillOpacity(c),this._fillColor=[h,c],this},strokeColor(h,c){return this._setColor(h,!0)&&this.strokeOpacity(c),this},opacity(h){return this._doOpacity(h,h),this},fillOpacity(h){return this._doOpacity(h,null),this},strokeOpacity(h){return this._doOpacity(null,h),this},_doOpacity(h,c){let y,p;if(null==h&&null==c)return;null!=h&&(h=Math.max(0,Math.min(1,h))),null!=c&&(c=Math.max(0,Math.min(1,c)));const q=`${h}_${c}`;if(this._opacityRegistry[q]){var CA=this._opacityRegistry[q];y=CA[0],p=CA[1]}else y={Type:"ExtGState"},null!=h&&(y.ca=h),null!=c&&(y.CA=c),y=this.ref(y),y.end(),p="Gs"+ ++this._opacityCount,this._opacityRegistry[q]=[y,p];return this.page.ext_gstates[p]=y,this.addContent(`/${p} gs`)},linearGradient(h,c,y,p){return new Gt(this,h,c,y,p)},radialGradient(h,c,y,p,q,CA){return new Mt(this,h,c,y,p,q,CA)},pattern(h,c,y,p){return new Ot(this,h,c,y,p)},addSpotColor(h,c,y,p,q){const CA=new NA(this,h,c,y,p,q);return this.spotColors[h]=CA,this}},Dt={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],grey:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],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],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]};let Ze,qe,Et,ct,Ht,Jt;Ze=qe=Et=ct=Ht=Jt=0;const GA={A:7,a:7,C:6,c:6,H:1,h:1,L:2,l:2,M:2,m:2,Q:4,q:4,S:4,s:4,T:2,t:2,V:1,v:1,Z:0,z:0},zA=function(h){return h in GA},vA=function(h){const c=h.codePointAt(0);return 32===c||9===c||13===c||10===c},qA=function(h){const c=h.codePointAt(0);return null!=c&&48<=c&&c<=57},ZA=function(h,c){let y=c,p="",q="none";for(;y(Ze=c[0],qe=c[1],Et=ct=null,Ht=Ze,Jt=qe,h.moveTo(Ze,qe)),m:(h,c)=>(Ze+=c[0],qe+=c[1],Et=ct=null,Ht=Ze,Jt=qe,h.moveTo(Ze,qe)),C:(h,c)=>(Ze=c[4],qe=c[5],Et=c[2],ct=c[3],h.bezierCurveTo(...c)),c:(h,c)=>(h.bezierCurveTo(c[0]+Ze,c[1]+qe,c[2]+Ze,c[3]+qe,c[4]+Ze,c[5]+qe),Et=Ze+c[2],ct=qe+c[3],Ze+=c[4],qe+=c[5]),S:(h,c)=>(null===Et&&(Et=Ze,ct=qe),h.bezierCurveTo(Ze-(Et-Ze),qe-(ct-qe),c[0],c[1],c[2],c[3]),Et=c[0],ct=c[1],Ze=c[2],qe=c[3]),s:(h,c)=>(null===Et&&(Et=Ze,ct=qe),h.bezierCurveTo(Ze-(Et-Ze),qe-(ct-qe),Ze+c[0],qe+c[1],Ze+c[2],qe+c[3]),Et=Ze+c[0],ct=qe+c[1],Ze+=c[2],qe+=c[3]),Q:(h,c)=>(Et=c[0],ct=c[1],Ze=c[2],qe=c[3],h.quadraticCurveTo(c[0],c[1],Ze,qe)),q:(h,c)=>(h.quadraticCurveTo(c[0]+Ze,c[1]+qe,c[2]+Ze,c[3]+qe),Et=Ze+c[0],ct=qe+c[1],Ze+=c[2],qe+=c[3]),T:(h,c)=>(null===Et?(Et=Ze,ct=qe):(Et=Ze-(Et-Ze),ct=qe-(ct-qe)),h.quadraticCurveTo(Et,ct,c[0],c[1]),Et=Ze-(Et-Ze),ct=qe-(ct-qe),Ze=c[0],qe=c[1]),t:(h,c)=>(null===Et?(Et=Ze,ct=qe):(Et=Ze-(Et-Ze),ct=qe-(ct-qe)),h.quadraticCurveTo(Et,ct,Ze+c[0],qe+c[1]),Ze+=c[0],qe+=c[1]),A:(h,c)=>(ae(h,Ze,qe,c),Ze=c[5],qe=c[6]),a:(h,c)=>(c[5]+=Ze,c[6]+=qe,ae(h,Ze,qe,c),Ze=c[5],qe=c[6]),L:(h,c)=>(Ze=c[0],qe=c[1],Et=ct=null,h.lineTo(Ze,qe)),l:(h,c)=>(Ze+=c[0],qe+=c[1],Et=ct=null,h.lineTo(Ze,qe)),H:(h,c)=>(Ze=c[0],Et=ct=null,h.lineTo(Ze,qe)),h:(h,c)=>(Ze+=c[0],Et=ct=null,h.lineTo(Ze,qe)),V:(h,c)=>(qe=c[0],Et=ct=null,h.lineTo(Ze,qe)),v:(h,c)=>(qe+=c[0],Et=ct=null,h.lineTo(Ze,qe)),Z:h=>(h.closePath(),Ze=Ht,qe=Jt),z:h=>(h.closePath(),Ze=Ht,qe=Jt)},ae=function(h,c,y,p){const $=ce(p[5],p[6],p[0],p[1],p[3],p[4],p[2],c,y);for(let s of $){const d=ye(...s);h.bezierCurveTo(...d)}},ce=function(h,c,y,p,q,CA,_A,ee,he){const Ie=_A*(Math.PI/180),xe=Math.sin(Ie),$=Math.cos(Ie);y=Math.abs(y),p=Math.abs(p),Et=$*(ee-h)*.5+xe*(he-c)*.5,ct=$*(he-c)*.5-xe*(ee-h)*.5;let s=Et*Et/(y*y)+ct*ct/(p*p);s>1&&(s=Math.sqrt(s),y*=s,p*=s);const d=$/y,F=xe/y,W=-xe/p,Z=$/p,EA=d*ee+F*he,PA=W*ee+Z*he,FA=d*h+F*c,te=W*h+Z*c;let Me=1/((FA-EA)*(FA-EA)+(te-PA)*(te-PA))-.25;Me<0&&(Me=0);let Qe=Math.sqrt(Me);CA===q&&(Qe=-Qe);const me=.5*(EA+FA)-Qe*(te-PA),Ye=.5*(PA+te)+Qe*(FA-EA),Ue=Math.atan2(PA-Ye,EA-me);let Le=Math.atan2(te-Ye,FA-me)-Ue;Le<0&&1===CA?Le+=2*Math.PI:Le>0&&0===CA&&(Le-=2*Math.PI);const Se=Math.ceil(Math.abs(Le/(.5*Math.PI+.001))),it=[];for(let Ve=0;VeNumber.isFinite(q)&&q>0))throw new Error(`dash(${JSON.stringify(y)}, ${JSON.stringify(c)}) invalid, lengths must be numeric and greater than zero`);return h=h.map(Je).join(" "),this.addContent(`[${h}] ${Je(c.phase||0)} d`)},undash(){return this.addContent("[] 0 d")},moveTo(h,c){return this.addContent(`${Je(h)} ${Je(c)} m`)},lineTo(h,c){return this.addContent(`${Je(h)} ${Je(c)} l`)},bezierCurveTo(h,c,y,p,q,CA){return this.addContent(`${Je(h)} ${Je(c)} ${Je(y)} ${Je(p)} ${Je(q)} ${Je(CA)} c`)},quadraticCurveTo(h,c,y,p){return this.addContent(`${Je(h)} ${Je(c)} ${Je(y)} ${Je(p)} v`)},rect(h,c,y,p){return this.addContent(`${Je(h)} ${Je(c)} ${Je(y)} ${Je(p)} re`)},roundedRect(h,c,y,p,q){let CA;null==q&&(q=0),CA=Array.isArray(q)?q.slice(0,4):[q,q,q,q];const _A=Math.min(.5*y,.5*p),ee=Math.max(0,Math.min(CA[0]||0,_A)),he=Math.max(0,Math.min(CA[1]||0,_A)),Ie=Math.max(0,Math.min(CA[2]||0,_A)),xe=Math.max(0,Math.min(CA[3]||0,_A)),$=he*(1-tt),s=Ie*(1-tt),d=xe*(1-tt),F=ee*(1-tt);return this.moveTo(h+ee,c),this.lineTo(h+y-he,c),he>0&&this.bezierCurveTo(h+y-$,c,h+y,c+$,h+y,c+he),this.lineTo(h+y,c+p-Ie),Ie>0&&this.bezierCurveTo(h+y,c+p-s,h+y-s,c+p,h+y-Ie,c+p),this.lineTo(h+xe,c+p),xe>0&&this.bezierCurveTo(h+d,c+p,h,c+p-d,h,c+p-xe),this.lineTo(h,c+ee),ee>0&&this.bezierCurveTo(h,c+F,h+F,c,h+ee,c),this.closePath()},ellipse(h,c,y,p){null==p&&(p=y);const q=y*tt,CA=p*tt,_A=(h-=y)+2*y,ee=(c-=p)+2*p,he=h+y,Ie=c+p;return this.moveTo(h,Ie),this.bezierCurveTo(h,Ie-CA,he-q,c,he,c),this.bezierCurveTo(he+q,c,_A,Ie-CA,_A,Ie),this.bezierCurveTo(_A,Ie+CA,he+q,ee,he,ee),this.bezierCurveTo(he-q,ee,h,Ie+CA,h,Ie),this.closePath()},circle(h,c,y){return this.ellipse(h,c,y)},arc(h,c,y,p,q,CA){null==CA&&(CA=!1);const _A=2*Math.PI,ee=.5*Math.PI;let he=q-p;Math.abs(he)>_A?he=_A:0!==he&&CA!==he<0&&(he=(CA?-1:1)*_A+he);const Ie=Math.ceil(Math.abs(he)/ee),xe=he/Ie,$=xe/ee*tt*y;let s=p,d=-Math.sin(s)*$,F=Math.cos(s)*$,W=h+Math.cos(s)*y,Z=c+Math.sin(s)*y;this.moveTo(W,Z);for(let EA=0;EA/even-?odd/.test(h)?"*":"",fill(h,c){return/(even-?odd)|(non-?zero)/.test(h)&&(c=h,h=null),h&&this.fillColor(h),this.addContent(`f${this._windingRule(c)}`)},stroke(h){return h&&this.strokeColor(h),this.addContent("S")},fillAndStroke(h,c,y){null==c&&(c=h);const p=/(even-?odd)|(non-?zero)/;return p.test(h)&&(y=h,h=null),p.test(c)&&(y=c,c=h),h&&(this.fillColor(h),this.strokeColor(c)),this.addContent(`B${this._windingRule(y)}`)},clip(h){return this.addContent(`W${this._windingRule(h)} n`)},transform(h,c,y,p,q,CA){if(1===h&&0===c&&0===y&&1===p&&0===q&&0===CA)return this;const _A=this._ctm,ee=_A[0],he=_A[1],Ie=_A[2],xe=_A[3],$=_A[4],s=_A[5];_A[0]=ee*h+Ie*c,_A[1]=he*h+xe*c,_A[2]=ee*y+Ie*p,_A[3]=he*y+xe*p,_A[4]=ee*q+Ie*CA+$,_A[5]=he*q+xe*CA+s;const d=[h,c,y,p,q,CA].map(F=>Je(F)).join(" ");return this.addContent(`${d} cm`)},translate(h,c){return this.transform(1,0,0,1,h,c)},rotate(h,c){let y;void 0===c&&(c={});const p=h*Math.PI/180,q=Math.cos(p),CA=Math.sin(p);let _A=y=0;if(null!=c.origin){var ee=c.origin;_A=ee[0],y=ee[1];const Ie=_A*CA+y*q;_A-=_A*q-y*CA,y-=Ie}return this.transform(q,CA,-CA,q,_A,y)},scale(h,c,y){let p;void 0===y&&(y={}),null==c&&(c=h),"object"==typeof c&&(y=c,c=h);let q=p=0;if(null!=y.origin){var CA=y.origin;q=CA[0],p=CA[1],q-=h*q,p-=c*p}return this.transform(h,0,0,c,q,p)}};const Ce={402:131,8211:150,8212:151,8216:145,8217:146,8218:130,8220:147,8221:148,8222:132,8224:134,8225:135,8226:149,8230:133,8364:128,8240:137,8249:139,8250:155,710:136,8482:153,338:140,339:156,732:152,352:138,353:154,376:159,381:142,382:158},_e=".notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n.notdef .notdef .notdef .notdef\n \nspace exclam quotedbl numbersign\ndollar percent ampersand quotesingle\nparenleft parenright asterisk plus\ncomma hyphen period slash\nzero one two three\nfour five six seven\neight nine colon semicolon\nless equal greater question\n \nat A B C\nD E F G\nH I J K\nL M N O\nP Q R S\nT U V W\nX Y Z bracketleft\nbackslash bracketright asciicircum underscore\n \ngrave a b c\nd e f g\nh i j k\nl m n o\np q r s\nt u v w\nx y z braceleft\nbar braceright asciitilde .notdef\n \nEuro .notdef quotesinglbase florin\nquotedblbase ellipsis dagger daggerdbl\ncircumflex perthousand Scaron guilsinglleft\nOE .notdef Zcaron .notdef\n.notdef quoteleft quoteright quotedblleft\nquotedblright bullet endash emdash\ntilde trademark scaron guilsinglright\noe .notdef zcaron ydieresis\n \nspace exclamdown cent sterling\ncurrency yen brokenbar section\ndieresis copyright ordfeminine guillemotleft\nlogicalnot hyphen registered macron\ndegree plusminus twosuperior threesuperior\nacute mu paragraph periodcentered\ncedilla onesuperior ordmasculine guillemotright\nonequarter onehalf threequarters questiondown\n \nAgrave Aacute Acircumflex Atilde\nAdieresis Aring AE Ccedilla\nEgrave Eacute Ecircumflex Edieresis\nIgrave Iacute Icircumflex Idieresis\nEth Ntilde Ograve Oacute\nOcircumflex Otilde Odieresis multiply\nOslash Ugrave Uacute Ucircumflex\nUdieresis Yacute Thorn germandbls\n \nagrave aacute acircumflex atilde\nadieresis aring ae ccedilla\negrave eacute ecircumflex edieresis\nigrave iacute icircumflex idieresis\neth ntilde ograve oacute\nocircumflex otilde odieresis divide\noslash ugrave uacute ucircumflex\nudieresis yacute thorn ydieresis".split(/\s+/);class st{constructor(c){this.attributes={},this.glyphWidths={},this.boundingBoxes={},this.kernPairs={},this.parse(c),this.bbox=this.attributes.FontBBox.split(/\s+/).map(y=>+y),this.ascender=+(this.attributes.Ascender||0),this.descender=+(this.attributes.Descender||0),this.xHeight=+(this.attributes.XHeight||0),this.capHeight=+(this.attributes.CapHeight||0),this.lineGap=this.bbox[3]-this.bbox[1]-(this.ascender-this.descender)}parse(c){let y="";for(let he of c.split("\n")){var p,q;if(p=he.match(/^Start(\w+)/))y=p[1];else if(he.match(/^End(\w+)/))y="";else switch(y){case"FontMetrics":var CA=(p=he.match(/(^\w+)\s+(.*)/))[1],_A=p[2];(q=this.attributes[CA])?(Array.isArray(q)||(q=this.attributes[CA]=[q]),q.push(_A)):this.attributes[CA]=_A;break;case"CharMetrics":if(!/^CH?\s/.test(he))continue;var ee=he.match(/\bN\s+(\.?\w+)\s*;/)[1];this.glyphWidths[ee]=+he.match(/\bWX\s+(\d+)\s*;/)[1];break;case"KernPairs":(p=he.match(/^KPX\s+(\.?\w+)\s+(\.?\w+)\s+(-?\d+)/))&&(this.kernPairs[p[1]+"\0"+p[2]]=parseInt(p[3]))}}}encodeText(c){const y=[];for(let p=0,q=c.length;pP.readFileSync("//data/Courier.afm","utf8"),"Courier-Bold":()=>P.readFileSync("//data/Courier-Bold.afm","utf8"),"Courier-Oblique":()=>P.readFileSync("//data/Courier-Oblique.afm","utf8"),"Courier-BoldOblique":()=>P.readFileSync("//data/Courier-BoldOblique.afm","utf8"),Helvetica:()=>P.readFileSync("//data/Helvetica.afm","utf8"),"Helvetica-Bold":()=>P.readFileSync("//data/Helvetica-Bold.afm","utf8"),"Helvetica-Oblique":()=>P.readFileSync("//data/Helvetica-Oblique.afm","utf8"),"Helvetica-BoldOblique":()=>P.readFileSync("//data/Helvetica-BoldOblique.afm","utf8"),"Times-Roman":()=>P.readFileSync("//data/Times-Roman.afm","utf8"),"Times-Bold":()=>P.readFileSync("//data/Times-Bold.afm","utf8"),"Times-Italic":()=>P.readFileSync("//data/Times-Italic.afm","utf8"),"Times-BoldItalic":()=>P.readFileSync("//data/Times-BoldItalic.afm","utf8"),Symbol:()=>P.readFileSync("//data/Symbol.afm","utf8"),ZapfDingbats:()=>P.readFileSync("//data/ZapfDingbats.afm","utf8")};class Bt extends lt{constructor(c,y,p){super(),this.document=c,this.name=y,this.id=p,this.font=new st(wt[this.name]());var q=this.font;this.ascender=q.ascender,this.descender=q.descender,this.bbox=q.bbox,this.lineGap=q.lineGap,this.xHeight=q.xHeight,this.capHeight=q.capHeight}embed(){return this.dictionary.data={Type:"Font",BaseFont:this.name,Subtype:"Type1",Encoding:"WinAnsiEncoding"},this.dictionary.end()}encode(c){const y=this.font.encodeText(c),p=this.font.glyphsForString(`${c}`),q=this.font.advancesForGlyphs(p),CA=[];for(let _A=0;_A>8;let q=0;this.font.post.isFixedPitch&&(q|=1),1<=p&&p<=7&&(q|=2),q|=4,10===p&&(q|=8),this.font.head.macStyle.italic&&(q|=64);const _A=[1,2,3,4,5,6].map($=>String.fromCharCode((this.id.charCodeAt($)||73)+17)).join("")+"+"+this.font.postscriptName?.replaceAll(" ","_"),ee=this.font.bbox,he=this.document.ref({Type:"FontDescriptor",FontName:_A,Flags:q,FontBBox:[ee.minX*this.scale,ee.minY*this.scale,ee.maxX*this.scale,ee.maxY*this.scale],ItalicAngle:this.font.italicAngle,Ascent:this.ascender,Descent:this.descender,CapHeight:(this.font.capHeight||this.font.ascent)*this.scale,XHeight:(this.font.xHeight||0)*this.scale,StemV:0});if(c?he.data.FontFile3=y:he.data.FontFile2=y,this.document.subset&&1===this.document.subset){const $=this.widths.length-1,s=I.alloc(Math.ceil(($+1)/8),0);for(let F=0;F<=$;F++)null!=this.widths[F]&&(s[Math.floor(F/8)]|=128>>F%8);const d=this.document.ref();d.write(s),d.end(),he.data.CIDSet=d}he.end();const Ie={Type:"Font",Subtype:"CIDFontType0",BaseFont:_A,CIDSystemInfo:{Registry:new String("Adobe"),Ordering:new String("Identity"),Supplement:0},FontDescriptor:he,W:[0,this.widths]};c||(Ie.Subtype="CIDFontType2",Ie.CIDToGIDMap="Identity");const xe=this.document.ref(Ie);return xe.end(),this.dictionary.data={Type:"Font",Subtype:"Type0",BaseFont:_A,Encoding:"Identity-H",DescendantFonts:[xe],ToUnicode:this.toUnicodeCmap()},this.dictionary.end()}toUnicodeCmap(){const c=this.document.ref(),y=[];for(let _A of this.unicode){const ee=[];for(let he of _A)he>65535&&(he-=65536,ee.push(pt(he>>>10&1023|55296)),he=56320|1023&he),ee.push(pt(he));y.push(`<${ee.join(" ")}>`)}const q=Math.ceil(y.length/256),CA=[];for(let _A=0;_A <${pt(he-1)}> [${y.slice(ee,he).join(" ")}]`)}return c.end(`/CIDInit /ProcSet findresource begin\n12 dict begin\nbegincmap\n/CIDSystemInfo <<\n /Registry (Adobe)\n /Ordering (UCS)\n /Supplement 0\n>> def\n/CMapName /Adobe-Identity-UCS def\n/CMapType 2 def\n1 begincodespacerange\n<0000>\nendcodespacerange\n${CA.length} beginbfrange\n${CA.join("\n")}\nendbfrange\nendcmap\nCMapName currentdict /CMap defineresource pop\nend\nend`),c}}class ut{static open(c,y,p,q){let CA;if("string"==typeof y){if(Bt.isStandardFont(y))return new Bt(c,y,q);y=P.readFileSync(y)}if(y instanceof Uint8Array?CA=(0,w.create)(y,p):y instanceof ArrayBuffer&&(CA=(0,w.create)(new Uint8Array(y),p)),null==CA)throw new Error("Not a supported font format or standard PDF font.");return new ot(c,CA,q)}}var Wt={initFonts(h,c,y){void 0===h&&(h="Helvetica"),void 0===c&&(c=null),void 0===y&&(y=12),this._fontFamilies={},this._fontCount=0,this._fontSource=h,this._fontFamily=c,this._fontSize=y,this._font=null,this._remSize=y,this._registeredFonts={},h&&this.font(h,c)},font(h,c,y){let p,q;if("number"==typeof c&&(y=c,c=null),"string"==typeof h&&this._registeredFonts[h]){p=h;var CA=this._registeredFonts[h];h=CA.src,c=CA.family}else p=c||h,"string"!=typeof p&&(p=null);if(this._fontSource=h,this._fontFamily=c,null!=y&&this.fontSize(y),q=this._fontFamilies[p])return this._font=q,this;const _A="F"+ ++this._fontCount;return this._font=ut.open(this,h,c,_A),(q=this._fontFamilies[this._font.name])&&((h,c)=>!(h.font._tables?.head?.checkSumAdjustment!==c.font._tables?.head?.checkSumAdjustment||JSON.stringify(h.font._tables?.name?.records)!==JSON.stringify(c.font._tables?.name?.records)))(this._font,q)?(this._font=q,this):(p&&(this._fontFamilies[p]=this._font),this._font.name&&!this._fontFamilies[this._font.name]&&(this._fontFamilies[this._font.name]=this._font),!p&&(!this._font.name||this._fontFamilies[this._font.name]!==this._font)&&(this._fontFamilies[this._font.id]=this._font),this)},fontSize(h){return this._fontSize=this.sizeToPoint(h),this},currentLineHeight(h){return this._font.lineHeight(this._fontSize,h)},registerFont(h,c,y){return this._registeredFonts[h]={src:c,family:y},this},sizeToPoint(h,c,y,p){if(void 0===c&&(c=0),void 0===y&&(y=this.page),void 0===p&&(p=void 0),p||(p=this._fontSize),"number"!=typeof c&&(c=this.sizeToPoint(c)),void 0===h)return c;if("number"==typeof h)return h;if("boolean"==typeof h)return Number(h);const q=String(h).match(/((\d+)?(\.\d+)?)(em|in|px|cm|mm|pc|ex|ch|rem|vw|vh|vmin|vmax|%|pt)?/);if(!q)throw new Error(`Unsupported size '${h}'`);let CA;switch(q[4]){case"em":CA=this._fontSize;break;case"in":CA=72;break;case"px":CA=.75;break;case"cm":CA=72*fA;break;case"mm":CA=.1*fA*72;break;case"pc":CA=12;break;case"ex":CA=this.currentLineHeight();break;case"ch":CA=this.widthOfString("0");break;case"rem":CA=this._remSize;break;case"vw":CA=y.width/100;break;case"vh":CA=y.height/100;break;case"vmin":CA=Math.min(y.width,y.height)/100;break;case"vmax":CA=Math.max(y.width,y.height)/100;break;case"%":CA=p/100;break;default:CA=1}return CA*Number(q[1])}};class Bn{constructor(c,y){this._listeners=Object.create(null),this.document=c,this.horizontalScaling=y.horizontalScaling||100,this.indent=(y.indent||0)*this.horizontalScaling/100,this.indentAllLines=y.indentAllLines||!1,this.characterSpacing=(y.characterSpacing||0)*this.horizontalScaling/100,this.wordSpacing=(0===y.wordSpacing)*this.horizontalScaling/100,this.columns=y.columns||1,this.columnGap=(null!=y.columnGap?y.columnGap:18)*this.horizontalScaling/100,this.lineWidth=(y.width*this.horizontalScaling/100-this.columnGap*(this.columns-1))/this.columns,this.spaceLeft=this.lineWidth,this.startX=this.document.x,this.startY=this.document.y,this.column=1,this.ellipsis=y.ellipsis,this.continuedX=0,this.features=y.features,null!=y.height?(this.height=y.height,this.maxY=VA(this.startY+y.height)):this.maxY=VA(this.document.page.maxY()),this.on("firstLine",p=>{const q=this.continuedX||this.indent;this.document.x+=q,this.lineWidth-=q,!p.indentAllLines&&this.once("line",()=>{this.document.x-=q,this.lineWidth+=q,p.continued&&!this.continuedX&&(this.continuedX=this.indent),p.continued||(this.continuedX=0)})}),this.on("lastLine",p=>{const q=p.align;"justify"===q&&(p.align="left"),this.lastLine=!0,this.once("line",()=>(this.document.y+=p.paragraphGap||0,p.align=q,this.lastLine=!1))})}on(c,y){(this._listeners[c]||(this._listeners[c]=[])).push(y)}once(c,y){var p=this;const q=function(){const CA=p._listeners[c];CA.splice(CA.indexOf(q),1),y(...arguments)};this.on(c,q)}emit(c){const y=this._listeners[c];if(y){for(var p=arguments.length,q=new Array(p>1?p-1:0),CA=1;CAthis.lineWidth+this.continuedX){let s=CA;const d={};for(;xe.length;){var he,Ie;$>this.spaceLeft?(he=Math.ceil(this.spaceLeft/($/xe.length)),$=this.wordWidth(xe.slice(0,he)),Ie=$<=this.spaceLeft&&hethis.spaceLeft&&he>0;for(;F||Ie;)F?($=this.wordWidth(xe.slice(0,--he)),F=$>this.spaceLeft&&he>0):($=this.wordWidth(xe.slice(0,++he)),F=$>this.spaceLeft&&he>0,Ie=$<=this.spaceLeft&&hethis.maxY||q>this.maxY)&&this.nextSection();let CA="",_A=0,ee=0,he=0,Ie=p.y;const xe=()=>(y.textWidth=_A+this.wordSpacing*(ee-1),y.wordCount=ee,y.lineWidth=this.lineWidth,Ie=p.y,this.emit("line",CA,y,this),he++);this.emit("sectionStart",y,this),this.eachWord(c,($,s,d,F)=>{if((null==F||F.required)&&(this.emit("firstLine",y,this),this.spaceLeft=this.lineWidth),this.canFit($,s)&&(CA+=$,_A+=s,ee++),d.required||!this.canFit($,s)){const W=p.currentLineHeight(!0);if(null!=this.height&&this.ellipsis&&VA(p.y+2*W)>this.maxY&&this.column>=this.columns){for(!0===this.ellipsis&&(this.ellipsis="\u2026"),CA=CA.replace(/\s+$/,""),_A=this.wordWidth(CA+this.ellipsis);CA&&_A>this.lineWidth;)CA=CA.slice(0,-1).replace(/\s+$/,""),_A=this.wordWidth(CA+this.ellipsis);_A<=this.lineWidth&&(CA+=this.ellipsis),_A=this.wordWidth(CA)}if(d.required&&(s>this.spaceLeft&&(xe(),CA=$,_A=s,ee=1),this.emit("lastLine",y,this)),"\xad"==CA[CA.length-1]&&(CA=CA.slice(0,-1)+"-",this.spaceLeft-=this.wordWidth("-")),xe(),VA(p.y+W)>this.maxY){if(this.emit("sectionEnd",y,this),!this.nextSection())return ee=0,CA="",!1;this.emit("sectionStart",y,this)}return d.required?(this.spaceLeft=this.lineWidth,CA="",_A=0,ee=0):(this.spaceLeft=this.lineWidth-s,CA=$,_A=s,ee=1)}return this.spaceLeft-=s}),ee>0&&(this.emit("lastLine",y,this),xe()),this.emit("sectionEnd",y,this),!0===y.continued?(he>1&&(this.continuedX=0),this.continuedX+=y.textWidth||0,p.y=Ie):p.x=this.startX}nextSection(c){if(++this.column>this.columns){if(null!=this.height)return!1;if(this.document.continueOnNewPage(),this.column=1,this.startY=this.document.page.margins.top,this.maxY=this.document.page.maxY(),this.indentAllLines){const y=this.continuedX||this.indent;this.document.x+=y,this.lineWidth-=y}else this.document.x=this.startX;this.document._fillColor&&this.document.fillColor(...this.document._fillColor),this.emit("pageBreak",c,this)}else this.document.x+=this.lineWidth+this.columnGap,this.document.y=this.startY,this.emit("columnBreak",c,this);return!0}}const In=pA.number;var Cn={initText(){this._line=this._line.bind(this),this.x=0,this.y=0,this._lineGap=0},lineGap(h){return this._lineGap=h,this},moveDown(h){return null==h&&(h=1),this.y+=this.currentLineHeight(!0)*h+this._lineGap,this},moveUp(h){return null==h&&(h=1),this.y-=this.currentLineHeight(!0)*h+this._lineGap,this},_text(h,c,y,p,q){h=null==h?"":`${h}`,(p=this._initOptions(c,y,p)).wordSpacing&&(h=h.replace(/\s{2,}/g," "));const CA=()=>{p.structParent&&p.structParent.add(this.struct(p.structType||"P",[this.markStructureContent(p.structType||"P")]))};if(0!==p.rotation&&(this.save(),this.rotate(-p.rotation,{origin:[this.x,this.y]})),p.width){let _A=this._wrapper;_A||(_A=new Bn(this,p),_A.on("line",q),_A.on("firstLine",CA)),this._wrapper=p.continued?_A:null,this._textOptions=p.continued?p:null,_A.wrap(h,p)}else for(let _A of h.split("\n"))CA(),q(_A,p);return 0!==p.rotation&&this.restore(),this},text(h,c,y,p){return this._text(h,c,y,p,this._line)},widthOfString(h,c){void 0===c&&(c={});const y=c.horizontalScaling||100;return(this._font.widthOfString(h,this._fontSize,c.features)+(c.characterSpacing||0)*(h.length-1))*y/100},boundsOfString(h,c,y,p){p=this._initOptions(c,y,p),c=this.x,y=this.y;const q=p.lineGap??this._lineGap??0,CA=this.currentLineHeight(!0)+q;let _A=0;if(h=String(h??""),p.wordSpacing&&(h=h.replace(/\s{2,}/g," ")),p.width){let Me=new Bn(this,p);Me.on("line",(Qe,me)=>{if(this.y+=CA,(Qe=Qe.replace(/\n/g,"")).length){let Ye=me.wordSpacing??0;const Ue=me.characterSpacing??0;if(me.width&&"justify"===me.align){const De=Qe.trim().split(/\s+/),Le=this.widthOfString(Qe.replace(/\s+/g,""),me),Se=this.widthOfString(" ")+Ue;Ye=Math.max(0,(me.lineWidth-Le)/Math.max(1,De.length-1)-Se)}_A=Math.max(_A,me.textWidth+Ye*(me.wordCount-1)+Ue*(Qe.length-1))}}),Me.wrap(h,p)}else for(let Me of h.split("\n")){const Qe=this.widthOfString(Me,p);this.y+=CA,_A=Math.max(_A,Qe)}let ee=this.y-y;if(p.height&&(ee=Math.min(ee,p.height)),this.x=c,this.y=y,0===p.rotation)return{x:c,y,width:_A,height:ee};if(90===p.rotation)return{x:c,y:y-_A,width:ee,height:_A};if(180===p.rotation)return{x:c-_A,y:y-ee,width:_A,height:ee};if(270===p.rotation)return{x:c-ee,y,width:ee,height:_A};const he=Ee(p.rotation),Ie=HA(p.rotation),xe=c,$=y,s=c+_A*he,d=y-_A*Ie,F=c+_A*he+ee*Ie,W=y-_A*Ie+ee*he,Z=c+ee*Ie,EA=y+ee*he,PA=Math.min(xe,s,F,Z),FA=Math.max(xe,s,F,Z),te=Math.min($,d,W,EA);return{x:PA,y:te,width:FA-PA,height:Math.max($,d,W,EA)-te}},heightOfString(h,c){const y=this.x,p=this.y;(c=this._initOptions(c)).height=1/0;const q=c.lineGap||this._lineGap||0;this._text(h,this.x,this.y,c,()=>{this.y+=this.currentLineHeight(!0)+q});const CA=this.y-p;return this.x=y,this.y=p,CA},list(h,c,y,p){const q=(p=this._initOptions(c,y,p)).listType||"bullet",CA=Math.round(this._font.ascender/1e3*this._fontSize),_A=CA/2,ee=p.bulletRadius||CA/3,he=p.textIndent||("bullet"===q?5*ee:2*CA),Ie=p.bulletIndent||("bullet"===q?8*ee:2*CA);let xe=1;const $=[],s=[],d=[];var F=function(Z){let EA=1;for(let PA=0;PA{let FA,te,ge,Me,me;if(p.structParent)if(p.structTypes){var Qe=p.structTypes;te=Qe[0],ge=Qe[1],Me=Qe[2]}else te="LI",ge="Lbl",Me="LBody";if(te?(FA=this.struct(te),p.structParent.add(FA)):p.structParent&&(FA=p.structParent),(me=s[EA++])!==xe){const Ue=Ie*(me-xe);this.x+=Ue,PA.lineWidth-=Ue,xe=me}switch(FA&&(ge||Me)&&FA.add(this.struct(ge||Me,[this.markStructureContent(ge||Me)])),q){case"bullet":this.circle(this.x-he+ee,this.y+_A,ee),this.fill();break;case"numbered":case"lettered":var Ye=function Dn(h,c){if("numbered"===c)return`${h}.`;var y=String.fromCharCode((h-1)%26+65),p=Math.floor((h-1)/26+1);return`${Array(p+1).join(y)}.`}(d[EA-1],q);this._fragment(Ye,this.x-he,this.y,p)}FA&&ge&&Me&&FA.add(this.struct(Me,[this.markStructureContent(Me)])),FA&&FA!==p.structParent&&FA.end()}),PA.on("sectionStart",()=>{const FA=he+Ie*(xe-1);this.x+=FA,PA.lineWidth-=FA}),PA.on("sectionEnd",()=>{const FA=he+Ie*(xe-1);this.x-=FA,PA.lineWidth+=FA}),PA.wrap(Z,p)};for(let Z=0;Z<$.length;Z++)W.call(this,$[Z],Z);return this},_initOptions(h,c,y){void 0===h&&(h={}),void 0===y&&(y={}),h&&"object"==typeof h&&(y=h,h=null);const p=Object.assign({},y);if(this._textOptions)for(let q in this._textOptions)"continued"!==q&&void 0===p[q]&&(p[q]=this._textOptions[q]);return null!=h&&(this.x=h),null!=c&&(this.y=c),!1!==p.lineBreak&&(null==p.width&&(p.width=this.page.width-this.x-this.page.margins.right),p.width=Math.max(p.width,0)),p.columns||(p.columns=0),null==p.columnGap&&(p.columnGap=18),p.rotation=Number(p.rotation??0)%360,p.rotation<0&&(p.rotation+=360),p},_line(h,c,y){if(void 0===c&&(c={}),this._fragment(h,this.x,this.y,c),y){const p=c.lineGap||this._lineGap||0;this.y+=this.currentLineHeight(!0)+p}else this.x+=this.widthOfString(h,c)},_fragment(h,c,y,p){let q,CA,_A,ee,he,Ie;if(0===(h=`${h}`.replace(/\n/g,"")).length)return;let $=p.wordSpacing||0;const s=p.characterSpacing||0,d=p.horizontalScaling||100;if(p.width)switch(p.align||"left"){case"right":he=this.widthOfString(h.replace(/\s+$/,""),p),c+=p.lineWidth-he;break;case"center":c+=p.lineWidth/2-p.textWidth/2;break;case"justify":Ie=h.trim().split(/\s+/),he=this.widthOfString(h.replace(/\s+/g,""),p);var F=this.widthOfString(" ")+s;$=Math.max(0,(p.lineWidth-he)/Math.max(1,Ie.length-1)-F)}if("number"==typeof p.baseline)q=-p.baseline;else{switch(p.baseline){case"svg-middle":q=.5*this._font.xHeight;break;case"middle":case"svg-central":q=.5*(this._font.descender+this._font.ascender);break;case"bottom":case"ideographic":q=this._font.descender;break;case"alphabetic":q=0;break;case"mathematical":q=.5*this._font.ascender;break;case"hanging":q=.8*this._font.ascender;break;default:q=this._font.ascender}q=q/1e3*this._fontSize}const W=p.textWidth+$*(p.wordCount-1)+s*(h.length-1);if(null!=p.link){const me={};this._currentStructureElement&&"Link"===this._currentStructureElement.dictionary.data.S&&(me.structParent=this._currentStructureElement),this.link(c,y,W,this.currentLineHeight(),p.link,me)}if(null!=p.goTo&&this.goTo(c,y,W,this.currentLineHeight(),p.goTo),null!=p.destination&&this.addNamedDestination(p.destination,"XYZ",c,y,null),p.underline){this.save(),p.stroke||this.strokeColor(...this._fillColor||[]);const me=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(me);let Ye=y+this.currentLineHeight()-me;this.moveTo(c,Ye),this.lineTo(c+W,Ye),this.stroke(),this.restore()}if(p.strike){this.save(),p.stroke||this.strokeColor(...this._fillColor||[]);const me=this._fontSize<10?.5:Math.floor(this._fontSize/10);this.lineWidth(me);let Ye=y+this.currentLineHeight()/2;this.moveTo(c,Ye),this.lineTo(c+W,Ye),this.stroke(),this.restore()}if(this.save(),p.oblique){let me;me="number"==typeof p.oblique?-Math.tan(p.oblique*Math.PI/180):-.25,this.transform(1,0,0,1,c,y),this.transform(1,0,me,1,-me*q,0),this.transform(1,0,0,1,-c,-y)}this.transform(1,0,0,-1,0,this.page.height),y=this.page.height-y-q,null==this.page.fonts[this._font.id]&&(this.page.fonts[this._font.id]=this._font.ref()),this.addContent("BT"),this.addContent(`1 0 0 1 ${In(c)} ${In(y)} Tm`),this.addContent(`/${this._font.id} ${In(this._fontSize)} Tf`);const Z=p.fill&&p.stroke?2:p.stroke?1:0;if(Z&&this.addContent(`${Z} Tr`),s&&this.addContent(`${In(s)} Tc`),100!==d&&this.addContent(`${d} Tz`),$){Ie=h.trim().split(/\s+/),$+=this.widthOfString(" ")+s,$*=1e3/this._fontSize,CA=[],ee=[];for(let me of Ie){const Ye=this._font.encode(me,p.features),De=Ye[1];CA=CA.concat(Ye[0]),ee=ee.concat(De);const Le={},Se=ee[ee.length-1];for(let it in Se)Le[it]=Se[it];Le.xAdvance+=$,ee[ee.length-1]=Le}}else{var EA=this._font.encode(h,p.features);CA=EA[0],ee=EA[1]}const PA=this._fontSize/1e3,FA=[];let te=0,ge=!1;const Me=me=>{if(te ${In(-(ee[me-1].xAdvance-ee[me-1].advanceWidth))}`)}te=me},Qe=me=>{Me(me),FA.length>0&&(this.addContent(`[${FA.join(" ")}] TJ`),FA.length=0)};for(_A=0;_A{let y="";for(let p=0;p>>0},vn=function(h,c){return void 0===c&&(c=0),(h[c+1]<<8|h[c])>>>0},Un=function(h,c){return void 0===c&&(c=0),16777216*h[c]+(h[c+1]<<16|h[c+2]<<8|h[c+3])>>>0},Ln=function(h,c){return void 0===c&&(c=0),(h[c]|h[c+1]<<8|h[c+2]<<16)+16777216*h[c+3]>>>0},On=[65472,65473,65474,65475,65477,65478,65479,65480,65481,65482,65483,65484,65485,65486,65487],Ei={1:"DeviceGray",3:"DeviceRGB",4:"DeviceCMYK"};class wi{constructor(c,y){let p;if(this.data=c,this.label=y,65496!==this.data.readUInt16BE(0))throw"SOI not found in JPEG";this.orientation=(h=>{if(!h||h.length<20)return null;let c=2;for(;c=h.length-4)return null;const y=St(h,c);if(c+=2,65498===y)return null;if(y>=65488&&y<=65497||65281===y)continue;if(c+2>h.length)return null;const p=St(h,c);if(65505===y&&c+8<=h.length&&"Exif\0\0"===Nn(h.subarray(c+2,c+8))){const CA=c+8;if(CA+8>h.length)return null;const _A=Nn(h.subarray(CA,CA+2)),ee="II"===_A;if(!ee&&"MM"!==_A)return null;const he=ee?s=>vn(h,s):s=>St(h,s),Ie=ee?s=>Ln(h,s):s=>Un(h,s);if(42!==he(CA+2))return null;const xe=CA+Ie(CA+4);if(xe+2>h.length)return null;const $=he(xe);for(let s=0;s<$;s++){const d=xe+2+12*s;if(d+12>h.length)return null;if(274===he(d)){const F=he(d+8);return F>=1&&F<=8?F:null}}return null}c+=p}return null})(this.data)||1;let q=2;for(;q=this.data.length||(p=this.data.readUInt16BE(q),q+=2,On.includes(p)))break;q+=this.data.readUInt16BE(q)}if(!On.includes(p))throw"Invalid JPEG.";q+=2,this.bits=this.data[q++],this.height=this.data.readUInt16BE(q),q+=2,this.width=this.data.readUInt16BE(q),q+=2,this.colorSpace=Ei[this.data[q]],this.obj=null}embed(c){if(!this.obj)return this.obj=c.ref({Type:"XObject",Subtype:"Image",BitsPerComponent:this.bits,Width:this.width,Height:this.height,ColorSpace:this.colorSpace,Filter:"DCTDecode"}),"DeviceCMYK"===this.colorSpace&&(this.obj.data.Decode=[1,0,1,0,1,0,1,0]),this.obj.end(this.data),this.data=null}}class Ci{constructor(c,y){this.label=y,this.image=new AA.default(c),this.width=this.image.width,this.height=this.image.height,this.imgData=this.image.imgData,this.obj=null}embed(c){if(this.document=c,this.obj)return;const y=this.image,q=this.width,CA=y.hasAlphaChannel,_A=1===y.interlaceMethod,ee=this.obj=c.ref({Type:"XObject",Subtype:"Image",BitsPerComponent:CA?8:y.bits,Width:q,Height:this.height,Filter:"FlateDecode"});if(!CA){const he=c.ref({Predictor:_A?1:15,Colors:y.colors,BitsPerComponent:y.bits,Columns:q});ee.data.DecodeParms=he,he.end()}if(0===y.palette.length)ee.data.ColorSpace=y.colorSpace;else{const he=c.ref();he.end(I.from(y.palette)),ee.data.ColorSpace=["Indexed","DeviceRGB",y.palette.length/3-1,he]}if(null!=y.transparency.grayscale){const he=y.transparency.grayscale;ee.data.Mask=[he,he]}else if(y.transparency.rgb){const he=y.transparency.rgb,Ie=[];for(let xe of he)Ie.push(xe,xe);ee.data.Mask=Ie}else{if(y.transparency.indexed)return this.loadIndexedAlphaChannel();if(CA)return this.splitAlphaChannel()}if(_A)return this.decodeData();this.finalize()}finalize(){if(this.alphaChannel){const c=this.document.ref({Type:"XObject",Subtype:"Image",Height:this.height,Width:this.width,BitsPerComponent:8,Filter:"FlateDecode",ColorSpace:"DeviceGray",Decode:[0,1]});c.end(this.alphaChannel),this.obj.data.SMask=c}return this.obj.end(this.imgData),this.image=null,this.imgData=null}splitAlphaChannel(){return this.image.decodePixels(c=>{let y,p;const q=this.image.colors,CA=this.width*this.height,_A=I.alloc(CA*q),ee=I.alloc(CA);let he=p=y=0;const Ie=c.length,xe=16===this.image.bits?1:0;for(;he{const q=I.alloc(this.width*this.height);let CA=0;for(let _A=0,ee=p.length;_A{this.imgData=K.default.deflateSync(c),this.finalize()})}}class di{static open(c,y){let p;if(I.isBuffer(c))p=c;else if(c instanceof ArrayBuffer)p=I.from(new Uint8Array(c));else{const q=/^data:.+?;base64,(.*)$/.exec(c);if(q)p=I.from(q[1],"base64");else if(p=P.readFileSync(c),!p)return}if(255===p[0]&&216===p[1])return new wi(p,y);if(137===p[0]&&80===p[1]&&78===p[2]&&71===p[3])return new Ci(p,y);throw new Error("Unknown image format.")}}var ri={initImages(){this._imageRegistry={},this._imageCount=0},image(h,c,y,p){let q,CA,_A,ee,he,Ie,xe,$,s;void 0===p&&(p={}),"object"==typeof c&&(p=c,c=null);const d=p.ignoreOrientation||!1!==p.ignoreOrientation&&this.options.ignoreOrientation,F="number"!=typeof y;c=null!=(Ie=c??p.x)?Ie:this.x,y=null!=(xe=y??p.y)?xe:this.y,"string"==typeof h&&(ee=this._imageRegistry[h]),ee||(ee=h.width&&h.height?h:this.openImage(h)),ee.obj||ee.embed(this),null==this.page.xobjects[ee.label]&&(this.page.xobjects[ee.label]=ee.obj);let Z=ee.width,EA=ee.height;if(!d&&ee.orientation>4){var PA=[EA,Z];Z=PA[0],EA=PA[1]}let FA=p.width||Z,te=p.height||EA;if(p.width&&!p.height){const Le=FA/Z;FA=Z*Le,te=EA*Le}else if(p.height&&!p.width){const Le=te/EA;FA=Z*Le,te=EA*Le}else if(p.scale)FA=Z*p.scale,te=EA*p.scale;else if(p.fit){var ge=p.fit;_A=ge[0],q=ge[1],CA=_A/q,he=Z/EA,he>CA?(FA=_A,te=_A/he):(te=q,FA=q*he)}else if(p.cover){var Me=p.cover;_A=Me[0],q=Me[1],CA=_A/q,he=Z/EA,he>CA?(te=q,FA=q*he):(FA=_A,te=_A/he)}(p.fit||p.cover)&&("center"===p.align?c=c+_A/2-FA/2:"right"===p.align&&(c=c+_A-FA),"center"===p.valign?y=y+q/2-te/2:"bottom"===p.valign&&(y=y+q-te));let Qe=0,me=c,Ye=y,Ue=te,De=FA;if(d)Ue=-te,Ye+=te;else switch(ee.orientation){default:case 1:Ue=-te,Ye+=te;break;case 2:De=-FA,Ue=-te,me+=FA,Ye+=te;break;case 3:$=c,s=y,Ue=-te,me-=FA,Qe=180;break;case 4:break;case 5:$=c,s=y,De=te,Ue=FA,Ye-=Ue,Qe=90;break;case 6:$=c,s=y,De=te,Ue=-FA,Qe=90;break;case 7:$=c,s=y,Ue=-FA,De=-te,me+=te,Qe=90;break;case 8:$=c,s=y,De=te,Ue=-FA,me-=te,Ye+=FA,Qe=-90}return null!=p.link&&this.link(c,y,FA,te,p.link),null!=p.goTo&&this.goTo(c,y,FA,te,p.goTo),null!=p.destination&&this.addNamedDestination(p.destination,"XYZ",c,y,null),F&&(this.y+=te),this.save(),null!=p.opacity&&this._doOpacity(p.opacity,null),Qe&&this.rotate(Qe,{origin:[$,s]}),this.transform(De,0,0,Ue,me,Ye),this.addContent(`/${ee.label} Do`),this.restore(),this},openImage(h){let c;return"string"==typeof h&&(c=this._imageRegistry[h]),c||(c=di.open(h,"I"+ ++this._imageCount),"string"==typeof h&&(this._imageRegistry[h]=c)),c}};class xn{constructor(c){this.annotationRef=c}}var ai={annotate(h,c,y,p,q){q.Type="Annot",q.Rect=this._convertRect(h,c,y,p),q.Border=[0,0,0],"Link"===q.Subtype&&typeof q.F>"u"&&(q.F=4),"Link"!==q.Subtype&&null==q.C&&(q.C=this._normalizeColor(q.color||[0,0,0])),delete q.color,"string"==typeof q.Dest&&(q.Dest=new String(q.Dest));const CA=q.structParent;delete q.structParent;for(let ee in q){const he=q[ee];q[ee[0].toUpperCase()+ee.slice(1)]=he}const _A=this.ref(q);if(this.page.annotations.push(_A),CA&&"function"==typeof CA.add){const ee=new xn(_A);CA.add(ee)}return _A.end(),this},note(h,c,y,p,q,CA){return void 0===CA&&(CA={}),CA.Subtype="Text",CA.Contents=new String(q),null==CA.Name&&(CA.Name="Comment"),null==CA.color&&(CA.color=[243,223,92]),this.annotate(h,c,y,p,CA)},goTo(h,c,y,p,q,CA){return void 0===CA&&(CA={}),CA.Subtype="Link",CA.A=this.ref({S:"GoTo",D:new String(q)}),CA.A.end(),this.annotate(h,c,y,p,CA)},link(h,c,y,p,q,CA){if(void 0===CA&&(CA={}),CA.Subtype="Link","number"==typeof q){const _A=this._root.data.Pages.data;if(!(q>=0&&q<_A.Kids.length))throw new Error(`The document has no page ${q}`);CA.A=this.ref({S:"GoTo",D:[_A.Kids[q],"XYZ",null,null,null]}),CA.A.end()}else CA.A=this.ref({S:"URI",URI:new String(q)}),CA.A.end();return CA.structParent&&!CA.Contents&&(CA.Contents=new String("")),this.annotate(h,c,y,p,CA)},_markup(h,c,y,p,q){void 0===q&&(q={});const CA=this._convertRect(h,c,y,p),_A=CA[0],ee=CA[1],he=CA[2],Ie=CA[3];return q.QuadPoints=[_A,Ie,he,Ie,_A,ee,he,ee],q.Contents=new String,this.annotate(h,c,y,p,q)},highlight(h,c,y,p,q){return void 0===q&&(q={}),q.Subtype="Highlight",null==q.color&&(q.color=[241,238,148]),this._markup(h,c,y,p,q)},underline(h,c,y,p,q){return void 0===q&&(q={}),q.Subtype="Underline",this._markup(h,c,y,p,q)},strike(h,c,y,p,q){return void 0===q&&(q={}),q.Subtype="StrikeOut",this._markup(h,c,y,p,q)},lineAnnotation(h,c,y,p,q){return void 0===q&&(q={}),q.Subtype="Line",q.Contents=new String,q.L=[h,this.page.height-c,y,this.page.height-p],this.annotate(h,c,y,p,q)},rectAnnotation(h,c,y,p,q){return void 0===q&&(q={}),q.Subtype="Square",q.Contents=new String,this.annotate(h,c,y,p,q)},ellipseAnnotation(h,c,y,p,q){return void 0===q&&(q={}),q.Subtype="Circle",q.Contents=new String,this.annotate(h,c,y,p,q)},textAnnotation(h,c,y,p,q,CA){return void 0===CA&&(CA={}),CA.Subtype="FreeText",CA.Contents=new String(q),CA.DA=new String,this.annotate(h,c,y,p,CA)},fileAnnotation(h,c,y,p,q,CA){void 0===q&&(q={}),void 0===CA&&(CA={});const _A=this.file(q.src,Object.assign({hidden:!0},q));return CA.Subtype="FileAttachment",CA.FS=_A,CA.Contents?CA.Contents=new String(CA.Contents):_A.data.Desc&&(CA.Contents=_A.data.Desc),this.annotate(h,c,y,p,CA)},_convertRect(h,c,y,p){let q=c,CA=h+y;const _A=this._ctm,ee=_A[0],he=_A[1],Ie=_A[2],xe=_A[3],$=_A[4],s=_A[5];return CA=ee*CA+Ie*q+$,q=he*CA+xe*q+s,[h=ee*h+Ie*(c+=p)+$,c=he*h+xe*c+s,CA,q]}};const Ki={top:0,left:0,zoom:0,fit:!0,pageNumber:null,expanded:!1};class Qi{constructor(c,y,p,q,CA){void 0===CA&&(CA=Ki),this.document=c,this.options=CA,this.outlineData={},null!==q&&(this.outlineData.Dest=CA.fit?[q,"Fit"]:[q,"XYZ",q.data.MediaBox[2]-(CA.left||0),q.data.MediaBox[3]-(CA.top||0),CA.zoom||0]),null!==y&&(this.outlineData.Parent=y),null!==p&&(this.outlineData.Title=new String(p)),this.dictionary=this.document.ref(this.outlineData),this.children=[]}addItem(c,y){void 0===y&&(y=Ki);const CA=new Qi(this.document,this.dictionary,c,null!=y.pageNumber?this.document._root.data.Pages.data.Kids[y.pageNumber]:this.document.page.dictionary,y);return this.children.push(CA),CA}endOutline(){if(this.children.length>0){this.options.expanded&&(this.outlineData.Count=this.children.length);const y=this.children[this.children.length-1];this.outlineData.First=this.children[0].dictionary,this.outlineData.Last=y.dictionary;for(let p=0,q=this.children.length;p0&&(CA.outlineData.Prev=this.children[p-1].dictionary),p0)return this._root.data.Outlines=this.outline.dictionary,this._root.data.PageMode=this._root.data.PageMode||"UseOutlines"}};class mi{constructor(c,y){this.refs=[{pageRef:c,mcid:y}]}push(c){c.refs.forEach(y=>this.refs.push(y))}}class fn{constructor(c,y,p,q){void 0===p&&(p={}),void 0===q&&(q=null),this.document=c,this._attached=!1,this._ended=!1,this._flushed=!1,this.dictionary=c.ref({S:y});const CA=this.dictionary.data;(Array.isArray(p)||this._isValidChild(p))&&(q=p,p={}),p.title&&(CA.T=new String(p.title)),p.lang&&(CA.Lang=new String(p.lang)),p.alt&&(CA.Alt=new String(p.alt)),p.expanded&&(CA.E=new String(p.expanded)),p.actual&&(CA.ActualText=new String(p.actual));const _A=Array.isArray(p.bbox)&&4===p.bbox.length,ee="string"==typeof p.placement;if(_A||ee){const he={O:"Layout"};if(he.Placement=ee?p.placement:"Block",_A){const Ie=c.page.height;he.BBox=[p.bbox[0],Ie-p.bbox[3],p.bbox[2],Ie-p.bbox[1]]}CA.A=he}p.scope&&(CA.A={...CA.A||{},O:"Table",Scope:p.scope}),this._children=[],q&&(Array.isArray(q)||(q=[q]),q.forEach(he=>this.add(he)),this.end())}add(c){if(this._ended)throw new Error("Cannot add child to already-ended structure element");if(!this._isValidChild(c))throw new Error("Invalid structure element child");return c instanceof fn&&(c.setParent(this.dictionary),this._attached&&c.setAttached()),c instanceof mi&&this._addContentToParentTree(c),c instanceof xn&&this._addAnnotationToParentTree(c.annotationRef),"function"==typeof c&&this._attached&&(c=this._contentForClosure(c)),this._children.push(c),this}_addContentToParentTree(c){c.refs.forEach(y=>{let p=y.pageRef,q=y.mcid;this.document.getStructParentTree().get(p.data.StructParents)[q]=this.dictionary})}_addAnnotationToParentTree(c){const y=this.document.createStructParentTreeNextKey();c.data.StructParent=y,this.document.getStructParentTree().add(y,this.dictionary)}setParent(c){if(this.dictionary.data.P)throw new Error("Structure element added to more than one parent");this.dictionary.data.P=c,this._flush()}setAttached(){this._attached||(this._children.forEach((c,y)=>{c instanceof fn&&c.setAttached(),"function"==typeof c&&(this._children[y]=this._contentForClosure(c))}),this._attached=!0,this._flush())}end(){this._ended||(this._children.filter(c=>c instanceof fn).forEach(c=>c.end()),this._ended=!0,this._flush())}_isValidChild(c){return c instanceof fn||c instanceof mi||c instanceof xn||"function"==typeof c}_contentForClosure(c){const y=this.document.markStructureContent(this.dictionary.data.S),p=this.document._currentStructureElement;this.document._currentStructureElement=this;const q=this._ended;return this._ended=!1,c(),this._ended=q,this.document._currentStructureElement=p,this.document.endMarkedContent(),this._addContentToParentTree(y),y}_isFlushable(){return!(!this.dictionary.data.P||!this._ended)&&this._children.every(c=>"function"!=typeof c&&(!(c instanceof fn)||c._isFlushable()))}_flush(){this._flushed||!this._isFlushable()||(this.dictionary.data.K=[],this._children.forEach(c=>this._flushChild(c)),this.dictionary.end(),this._children=[],this.dictionary.data.K=null,this._flushed=!0)}_flushChild(c){c instanceof fn&&this.dictionary.data.K.push(c.dictionary),c instanceof mi&&c.refs.forEach(y=>{let p=y.pageRef,q=y.mcid;this.dictionary.data.Pg||(this.dictionary.data.Pg=p),this.dictionary.data.K.push(this.dictionary.data.Pg===p?q:{Type:"MCR",Pg:p,MCID:q})}),c instanceof xn&&this.dictionary.data.K.push({Type:"OBJR",Obj:c.annotationRef,Pg:this.document.page.dictionary})}}class ms extends QA{_compareKeys(c,y){return parseInt(c)-parseInt(y)}_keysName(){return"Nums"}_dataForKey(c){return parseInt(c)}}var Ms={initMarkings(h){this.structChildren=[],h.tagged&&(this.getMarkInfoDictionary().data.Marked=!0,this.getStructTreeRoot())},markContent(h,c){if(void 0===c&&(c=null),"Artifact"===h||c&&c.mcid){let p=0;for(this.page.markings.forEach(q=>{(p||q.structContent||"Artifact"===q.tag)&&p++});p--;)this.endMarkedContent()}if(!c)return this.page.markings.push({tag:h}),this.addContent(`/${h} BMC`),this;this.page.markings.push({tag:h,options:c});const y={};return typeof c.mcid<"u"&&(y.MCID=c.mcid),"Artifact"===h&&("string"==typeof c.type&&(y.Type=c.type),Array.isArray(c.bbox)&&(y.BBox=[c.bbox[0],this.page.height-c.bbox[3],c.bbox[2],this.page.height-c.bbox[1]]),Array.isArray(c.attached)&&c.attached.every(p=>"string"==typeof p)&&(y.Attached=c.attached)),"Span"===h&&(c.lang&&(y.Lang=new String(c.lang)),c.alt&&(y.Alt=new String(c.alt)),c.expanded&&(y.E=new String(c.expanded)),c.actual&&(y.ActualText=new String(c.actual))),this.addContent(`/${h} ${pA.convert(y)} BDC`),this},markStructureContent(h,c){void 0===c&&(c={});const y=this.getStructParentTree().get(this.page.structParentTreeKey),p=y.length;y.push(null),this.markContent(h,{...c,mcid:p});const q=new mi(this.page.dictionary,p);return this.page.markings.slice(-1)[0].structContent=q,q},endMarkedContent(){return this.page.markings.pop(),this.addContent("EMC"),this._textOptions&&(delete this._textOptions.link,delete this._textOptions.goTo,delete this._textOptions.destination,delete this._textOptions.underline,delete this._textOptions.strike),this},struct(h,c,y){return void 0===c&&(c={}),void 0===y&&(y=null),new fn(this,h,c,y)},addStructure(h){const c=this.getStructTreeRoot();return h.setParent(c),h.setAttached(),this.structChildren.push(h),c.data.K||(c.data.K=[]),c.data.K.push(h.dictionary),this},initPageMarkings(h){h.forEach(c=>{if(c.structContent){const y=c.structContent,p=this.markStructureContent(c.tag,c.options);y.push(p),this.page.markings.slice(-1)[0].structContent=y}else this.markContent(c.tag,c.options)})},endPageMarkings(h){const c=h.markings;return c.forEach(()=>h.write("EMC")),h.markings=[],c},getMarkInfoDictionary(){return this._root.data.MarkInfo||(this._root.data.MarkInfo=this.ref({})),this._root.data.MarkInfo},hasMarkInfoDictionary(){return!!this._root.data.MarkInfo},getStructTreeRoot(){return this._root.data.StructTreeRoot||(this._root.data.StructTreeRoot=this.ref({Type:"StructTreeRoot",ParentTree:new ms,ParentTreeNextKey:0})),this._root.data.StructTreeRoot},getStructParentTree(){return this.getStructTreeRoot().data.ParentTree},createStructParentTreeNextKey(){this.getMarkInfoDictionary();const h=this.getStructTreeRoot(),c=h.data.ParentTreeNextKey++;return h.data.ParentTree.add(c,[]),c},endMarkings(){const h=this._root.data.StructTreeRoot;h&&(h.end(),this.structChildren.forEach(c=>c.end())),this._root.data.MarkInfo&&this._root.data.MarkInfo.end()}};const Mi={readOnly:1,required:2,noExport:4,multiline:4096,password:8192,toggleToOffButton:16384,radioButton:32768,pushButton:65536,combo:131072,edit:262144,sort:524288,multiSelect:2097152,noSpell:4194304},pi={left:0,center:1,right:2},Zi={value:"V",defaultValue:"DV"},qi={zip:"0",zipPlus4:"1",zip4:"1",phone:"2",ssn:"3"},$i_number={nDec:0,sepComma:!1,negStyle:"MinusBlack",currency:"",currencyPrepend:!0},$i_percent={nDec:0,sepComma:!1};var ps={initForm(){if(!this._font)throw new Error("Must set a font before calling initForm method");this._acroform={fonts:{},defaultFont:this._font.name},this._acroform.fonts[this._font.id]=this._font.ref();let h={Fields:[],NeedAppearances:!0,DA:new String(`/${this._font.id} 0 Tf 0 g`),DR:{Font:{}}};h.DR.Font[this._font.id]=this._font.ref();const c=this.ref(h);return this._root.data.AcroForm=c,this},endAcroForm(){if(this._root.data.AcroForm){if(!Object.keys(this._acroform.fonts).length&&!this._acroform.defaultFont)throw new Error("No fonts specified for PDF form");let h=this._root.data.AcroForm.data.DR.Font;Object.keys(this._acroform.fonts).forEach(c=>{h[c]=this._acroform.fonts[c]}),this._root.data.AcroForm.data.Fields.forEach(c=>{this._endChild(c)}),this._root.data.AcroForm.end()}return this},_endChild(h){return Array.isArray(h.data.Kids)&&(h.data.Kids.forEach(c=>{this._endChild(c)}),h.end()),this},formField(h,c){void 0===c&&(c={});let y=this._fieldDict(h,null,c),p=this.ref(y);return this._addToParent(p),p},formAnnotation(h,c,y,p,q,CA,_A){void 0===_A&&(_A={});let ee=this._fieldDict(h,c,_A);return ee.Subtype="Widget",void 0===ee.F&&(ee.F=4),this.annotate(y,p,q,CA,ee),this._addToParent(this.page.annotations[this.page.annotations.length-1])},formText(h,c,y,p,q,CA){return void 0===CA&&(CA={}),this.formAnnotation(h,"text",c,y,p,q,CA)},formPushButton(h,c,y,p,q,CA){return void 0===CA&&(CA={}),this.formAnnotation(h,"pushButton",c,y,p,q,CA)},formCombo(h,c,y,p,q,CA){return void 0===CA&&(CA={}),this.formAnnotation(h,"combo",c,y,p,q,CA)},formList(h,c,y,p,q,CA){return void 0===CA&&(CA={}),this.formAnnotation(h,"list",c,y,p,q,CA)},formRadioButton(h,c,y,p,q,CA){return void 0===CA&&(CA={}),this.formAnnotation(h,"radioButton",c,y,p,q,CA)},formCheckbox(h,c,y,p,q,CA){return void 0===CA&&(CA={}),this.formAnnotation(h,"checkbox",c,y,p,q,CA)},_addToParent(h){let c=h.data.Parent;return c?(c.data.Kids||(c.data.Kids=[]),c.data.Kids.push(h)):this._root.data.AcroForm.data.Fields.push(h),this},_fieldDict(h,c,y){if(void 0===y&&(y={}),!this._acroform)throw new Error("Call document.initForm() method before adding form elements to document");let p=Object.assign({},y);return null!==c&&(p=this._resolveType(c,y)),p=this._resolveFlags(p),p=this._resolveJustify(p),p=this._resolveFont(p),p=this._resolveStrings(p),p=this._resolveColors(p),p=this._resolveFormat(p),p.T=new String(h),p.parent&&(p.Parent=p.parent,delete p.parent),p},_resolveType(h,c){if("text"===h)c.FT="Tx";else if("pushButton"===h)c.FT="Btn",c.pushButton=!0;else if("radioButton"===h)c.FT="Btn",c.radioButton=!0;else if("checkbox"===h)c.FT="Btn";else if("combo"===h)c.FT="Ch",c.combo=!0;else{if("list"!==h)throw new Error(`Invalid form annotation type '${h}'`);c.FT="Ch"}return c},_resolveFormat(h){const c=h.format;if(c&&c.type){let y,p,q="";if(void 0!==qi[c.type])y="AFSpecial_Keystroke",p="AFSpecial_Format",q=qi[c.type];else{let CA=c.type.charAt(0).toUpperCase()+c.type.slice(1);if(y=`AF${CA}_Keystroke`,p=`AF${CA}_Format`,"date"===c.type)y+="Ex",q=String(c.param);else if("time"===c.type)q=String(c.param);else if("number"===c.type){let _A=Object.assign({},$i_number,c);q=String([String(_A.nDec),_A.sepComma?"0":"1",'"'+_A.negStyle+'"',"null",'"'+_A.currency+'"',String(_A.currencyPrepend)].join(","))}else if("percent"===c.type){let _A=Object.assign({},$i_percent,c);q=String([String(_A.nDec),_A.sepComma?"0":"1"].join(","))}}h.AA=h.AA?h.AA:{},h.AA.K={S:"JavaScript",JS:new String(`${y}(${q});`)},h.AA.F={S:"JavaScript",JS:new String(`${p}(${q});`)}}return delete h.format,h},_resolveColors(h){let c=this._normalizeColor(h.backgroundColor);return c&&(h.MK||(h.MK={}),h.MK.BG=c),c=this._normalizeColor(h.borderColor),c&&(h.MK||(h.MK={}),h.MK.BC=c),delete h.backgroundColor,delete h.borderColor,h},_resolveFlags(h){let c=0;return Object.keys(h).forEach(y=>{Mi[y]&&(h[y]&&(c|=Mi[y]),delete h[y])}),0!==c&&(h.Ff=h.Ff?h.Ff:0,h.Ff|=c),h},_resolveJustify(h){let c=0;return void 0!==h.align&&("number"==typeof pi[h.align]&&(c=pi[h.align]),delete h.align),0!==c&&(h.Q=c),h},_resolveFont(h){if(null==this._acroform.fonts[this._font.id]&&(this._acroform.fonts[this._font.id]=this._font.ref()),this._acroform.defaultFont!==this._font.name){h.DR={Font:{}};const c=h.fontSize||0;h.DR.Font[this._font.id]=this._font.ref(),h.DA=new String(`/${this._font.id} ${c} Tf 0 g`)}return h},_resolveStrings(h){let c=[];function y(p){if(Array.isArray(p))for(let q=0;q{void 0!==h[p]&&(h[Zi[p]]=h[p],delete h[p])}),["V","DV"].forEach(p=>{"string"==typeof h[p]&&(h[p]=new String(h[p]))}),h.MK&&h.MK.CA&&(h.MK.CA=new String(h.MK.CA)),h.label&&(h.MK=h.MK?h.MK:{},h.MK.CA=new String(h.label),delete h.label),h}},As={file(h,c){void 0===c&&(c={}),c.name=c.name||h,c.relationship=c.relationship||"Unspecified";const y={Type:"EmbeddedFile",Params:{}};let p;if(!h)throw new Error("No src specified");if(I.isBuffer(h))p=h;else if(h instanceof ArrayBuffer)p=I.from(new Uint8Array(h));else{const Ie=/^data:(.*?);base64,(.*)$/.exec(h);if(Ie)Ie[1]&&(y.Subtype=nA(Ie[1])),p=I.from(Ie[2],"base64");else{if(p=P.readFileSync(h),!p)throw new Error(`Could not read contents of file at filepath ${h}`);const xe=P.statSync(h),s=xe.ctime;y.Params.CreationDate=xe.birthtime,y.Params.ModDate=s}}c.creationDate instanceof Date&&(y.Params.CreationDate=c.creationDate),c.modifiedDate instanceof Date&&(y.Params.ModDate=c.modifiedDate),c.type&&(y.Subtype=nA(c.type));const q=function LA(h){return(0,B.default)(h)}(new Uint8Array(p));let CA;y.Params.CheckSum=new String(q),y.Params.Size=p.byteLength,this._fileRegistry||(this._fileRegistry={});let _A=this._fileRegistry[c.name];_A&&function Is(h,c){return h.Subtype===c.Subtype&&h.Params.CheckSum.toString()===c.Params.CheckSum.toString()&&h.Params.Size===c.Params.Size&&h.Params.CreationDate.getTime()===c.Params.CreationDate.getTime()&&(void 0===h.Params.ModDate&&void 0===c.Params.ModDate||h.Params.ModDate.getTime()===c.Params.ModDate.getTime())}(y,_A)?CA=_A.ref:(CA=this.ref(y),CA.end(p),this._fileRegistry[c.name]={...y,ref:CA});const ee={Type:"Filespec",AFRelationship:c.relationship,F:new String(c.name),EF:{F:CA},UF:new String(c.name)};c.description&&(ee.Desc=new String(c.description));const he=this.ref(ee);return he.end(),c.hidden||this.addNamedEmbeddedFile(c.name,he),this._root.data.AF?this._root.data.AF.push(he):this._root.data.AF=[he],he}},Ui={initPDFA(h){"-"===h.charAt(h.length-3)?(this.subset_conformance=h.charAt(h.length-1).toUpperCase(),this.subset=parseInt(h.charAt(h.length-2))):(this.subset_conformance="B",this.subset=parseInt(h.charAt(h.length-1)))},endSubset(){this._addPdfaMetadata(),this._addColorOutputIntent()},_addColorOutputIntent(){const h=I("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","base64"),c=this.ref({Length:h.length,N:3});c.write(h),c.end();const y=this.ref({Type:"OutputIntent",S:"GTS_PDFA1",Info:new String("sRGB IEC61966-2.1"),OutputConditionIdentifier:new String("sRGB IEC61966-2.1"),DestOutputProfile:c});y.end(),this._root.data.OutputIntents=[y]},_getPdfaid(){return`\n \n ${this.subset}\n ${this.subset_conformance}\n \n `},_addPdfaMetadata(){this.appendXML(this._getPdfaid())}},es={initPDFUA(){this.subset=1},endSubset(){this._addPdfuaMetadata()},_addPdfuaMetadata(){this.appendXML(this._getPdfuaid())},_getPdfuaid(){return`\n \n ${this.subset}\n \n `}},Zn={_importSubset(h){Object.assign(this,h)},initSubset(h){switch(h.subset){case"PDF/A-1":case"PDF/A-1a":case"PDF/A-1b":case"PDF/A-2":case"PDF/A-2a":case"PDF/A-2b":case"PDF/A-3":case"PDF/A-3a":case"PDF/A-3b":this._importSubset(Ui),this.initPDFA(h.subset);break;case"PDF/UA":this._importSubset(es),this.initPDFUA()}}};const Ds=["height","minHeight","maxHeight"],Fs=["width","minWidth","maxWidth"];function Li(h,c){const y=new Map;return function(){const p=arguments.length<=0?void 0:arguments[0];return y.has(p)||(y.set(p,h(...arguments)),y.size>c&&y.delete(y.keys().next())),y.get(p)}}function Gi(h){return h&&"object"==typeof h&&!Array.isArray(h)}function un(h){if(!Gi(h))return h;h=Ii(h);for(var c=arguments.length,y=new Array(c>1?c-1:0),p=1;pDs.includes(q[0]))),p=Object.fromEntries(Object.entries(c).filter(q=>Fs.includes(q[0])));return c.padding=kA(c.padding),c.border=kA(c.border),c.borderColor=kA(c.borderColor),c.align=Di(c.align),{defaultStyle:c,defaultRowStyle:y,defaultColStyle:p}}(c.defaultStyle),CA=p.defaultColStyle,_A=p.defaultRowStyle;let ee,he;this._defaultStyle=p.defaultStyle,c.columnStyles&&(Array.isArray(c.columnStyles)?ee=Ie=>c.columnStyles[Ie]:"function"==typeof c.columnStyles?ee=Li(Ie=>c.columnStyles(Ie),1/0):"object"==typeof c.columnStyles&&(ee=()=>c.columnStyles)),ee||(ee=()=>({})),this._colStyle=xs.bind(this,CA,ee),c.rowStyles&&(Array.isArray(c.rowStyles)?he=Ie=>c.rowStyles[Ie]:"function"==typeof c.rowStyles?he=Li(Ie=>c.rowStyles(Ie),10):"object"==typeof c.rowStyles&&(he=()=>c.rowStyles)),he||(he=()=>({})),this._rowStyle=ys.bind(this,_A,he)}function bs(h,c,y){const p=this._colStyle(y);let q=this._rowStyle(c);const CA=un({},p.font,q.font,h.font),_A=Object.values(CA).filter(s=>null!=s).length>0,ee=this.document,he=ee._fontSource,Ie=ee._fontSize,xe=ee._fontFamily;_A&&(CA.src&&ee.font(CA.src,CA.family),CA.size&&ee.fontSize(CA.size),q=this._rowStyle(c)),h.padding=kA(h.padding),h.border=kA(h.border),h.borderColor=kA(h.borderColor);const $=un(this._defaultStyle,p,q,h);return $.rowIndex=c,$.colIndex=y,$.font=CA??{},$.customFont=_A,$.text=function Ys(h){return null!=h&&(h=`${h}`),h}($.text),$.rowSpan=$.rowSpan??1,$.colSpan=$.colSpan??1,$.padding=kA($.padding,"0.25em",s=>ee.sizeToPoint(s,"0.25em")),$.border=kA($.border,1,s=>ee.sizeToPoint(s,1)),$.borderColor=kA($.borderColor,"black",s=>s??"black"),$.align=Di($.align),$.align.x=$.align.x??"left",$.align.y=$.align.y??"top",$.textStroke=ee.sizeToPoint($.textStroke,0),$.textStrokeColor=$.textStrokeColor??"black",$.textColor=$.textColor??"black",$.textOptions=$.textOptions??{},$.id=new String($.id??`${this._id}-${c}-${y}`),$.type="TH"===$.type?.toUpperCase()?"TH":"TD",$.scope&&($.scope=$.scope.toLowerCase(),"row"===$.scope?$.scope="Row":"both"===$.scope?$.scope="Both":"column"===$.scope&&($.scope="Column")),"boolean"==typeof this.opts.debug&&($.debug=this.opts.debug),_A&&ee.font(he,xe,Ie),$}function zi(h,c){this._cellClaim||(this._cellClaim=new Set);let y=0;return h.map(p=>{for((null==p||"object"!=typeof p)&&(p={text:p});this._cellClaim.has(`${c},${y}`);)y++;p=bs.call(this,p,c,y);for(let q=0;qc+y.colSpan,0)),this._rowHeights=[],this._rowYPos=[this._position.y],this._rowBuffer=new Set}function ts(h){let c=[],y=0,p=this._maxWidth;for(let _A=0;_A_A+1,0);y>=p?c.forEach((_A,ee)=>{this._columnWidths[ee]=_A.minWidth}):q>0&&c.forEach((_A,ee)=>{this._columnWidths[ee]=Math.max(p/q,_A.minWidth),_A.maxWidth>0&&(this._columnWidths[ee]=Math.min(this._columnWidths[ee],_A.maxWidth)),p-=this._columnWidths[ee],q--});let CA=this._position.x;this._columnXPos=Array.from(this._columnWidths,_A=>{const ee=CA;return CA+=_A,ee})}function Rs(h,c){h.forEach(_A=>this._rowBuffer.add(_A)),c>0&&(this._rowYPos[c]=this._rowYPos[c-1]+this._rowHeights[c-1]);const y=this._rowStyle(c);let p=[];this._rowBuffer.forEach(_A=>{_A.rowIndex+_A.rowSpan-1===c&&(p.push(ns.call(this,_A,y.height)),this._rowBuffer.delete(_A))});let q=y.height;"auto"===q&&(q=p.reduce((_A,ee)=>{let he=ee.textBounds.height+ee.padding.top+ee.padding.bottom;for(let Ie=0;Ie0&&(q=Math.min(q,y.maxHeight)),this._rowHeights[c]=q;let CA=!1;return q>this.document.page.contentHeight?(console.warn(new Error(`Row ${c} requested more than the safe page height, row has been clamped`).stack.slice(7)),this._rowHeights[c]=this.document.page.maxY()-this._rowYPos[c]):this._rowYPos[c]+q>=this.document.page.maxY()&&(this._rowYPos[c]=this.document.page.margins.top,CA=!0),{newPage:CA,toRender:p.map(_A=>ns.call(this,_A,q))}}function ns(h,c){let y=0;for(let s=0;s180&&h<270?(p=c/(2*CA),q=c/(2*_A)):(q=c/(2*CA),p=c/(2*_A));if(_A*p+CA*q>y){const Ie=CA*CA-_A*_A;0===h||180===h?(p=c,q=y):90===h||270===h?(p=y,q=c):h<90||h>180&&h<270?(p=(c*CA-y*_A)/Ie,q=(y*CA-c*_A)/Ie):(q=(c*CA-y*_A)/Ie,p=(y*CA-c*_A)/Ie)}return{width:Math.abs(p),height:Math.abs(q)}}(_A,q,CA),xe={align:h.align.x,ellipsis:!0,stroke:h.textStroke>0,fill:!0,width:ee.width,height:ee.height,rotation:_A,...h.textOptions};let $={x:0,y:0,width:0,height:0};if(h.text){const s=this.document._fontSource,d=this.document._fontSize,F=this.document._fontFamily;h.font?.src&&this.document.font(h.font.src,h.font?.family),h.font?.size&&this.document.fontSize(h.font.size);const W=this.document.boundsOfString(h.text,0,0,{...xe,rotation:0});xe.width=W.width,xe.height=W.height,$=this.document.boundsOfString(h.text,0,0,xe),this.document.font(s,F,d)}return{...h,textOptions:xe,x:this._columnXPos[h.colIndex],y:this._rowYPos[h.rowIndex],textX:this._columnXPos[h.colIndex]+h.padding.left,textY:this._rowYPos[h.rowIndex]+h.padding.top,width:y,height:p,textAllocatedHeight:CA,textAllocatedWidth:q,textBounds:$}}function li(){const h=this.opts.structParent;h&&(this._tableStruct=this.document.struct("Table"),this._tableStruct.dictionary.data.ID=this._id,h instanceof fn?h.add(this._tableStruct):h instanceof yi&&h.addStructure(this._tableStruct),this._headerRowLookup={},this._headerColumnLookup={})}function Ns(){this._tableStruct&&this._tableStruct.end()}function is(h,c,y){const p=this.document.struct("TR");p.dictionary.data.ID=new String(`${this._id}-${c}`),this._tableStruct.add(p),h.forEach(q=>y(q,p)),p.end()}function Ts(h,c,y){const p=this.document,q=p.struct(h.type,{title:h.title});q.dictionary.data.ID=h.id,c.add(q);const CA=h.padding,_A=h.border,ee={O:"Table",Width:h.width,Height:h.height,Padding:[CA.top,CA.bottom,CA.left,CA.right],RowSpan:h.rowSpan>1?h.rowSpan:void 0,ColSpan:h.colSpan>1?h.colSpan:void 0,BorderThickness:[_A.top,_A.bottom,_A.left,_A.right]};if("TH"===h.type){if("Row"===h.scope||"Both"===h.scope){for(let $=0;$this._headerColumnLookup[h.colIndex+s]).flat(),...Array.from({length:h.rowSpan},($,s)=>this._headerRowLookup[h.rowIndex+s]).flat()].filter(Boolean));he.size&&(ee.Headers=Array.from(he));const Ie=p._normalizeColor;null!=h.backgroundColor&&(ee.BackgroundColor=Ie(h.backgroundColor));const xe=[_A.top,_A.bottom,_A.left,_A.right];if(xe.some($=>$)){const $=h.borderColor;ee.BorderColor=[xe[0]?Ie($.top):null,xe[1]?Ie($.bottom):null,xe[2]?Ie($.left):null,xe[3]?Ie($.right):null]}Object.keys(ee).forEach($=>void 0===ee[$]&&delete ee[$]),q.dictionary.data.A=p.ref(ee),q.add(y),q.end(),q.dictionary.data.A.end()}function Ps(h,c){return this._tableStruct?is.call(this,h,c,Fi.bind(this)):h.forEach(y=>Fi.call(this,y)),this._rowYPos[c]+this._rowHeights[c]}function Fi(h,c){const y=()=>{null!=h.backgroundColor&&this.document.save().fillColor(h.backgroundColor).rect(h.x,h.y,h.width,h.height).fill().restore(),Us.call(this,h.border,h.borderColor,h.x,h.y,h.width,h.height),h.debug&&(this.document.save(),this.document.dash(1,{space:1}).lineWidth(1).strokeOpacity(.3),this.document.rect(h.x,h.y,h.width,h.height).stroke("green"),this.document.restore()),h.text&&ki.call(this,h)};c?Ts.call(this,h,c,y):y()}function ki(h){const c=this.document,y=c._fontSource,p=c._fontSize,q=c._fontFamily;h.customFont&&(h.font.src&&c.font(h.font.src,h.font.family),h.font.size&&c.fontSize(h.font.size));const CA=h.textX,_A=h.textY,ee=h.textAllocatedHeight,he=h.textAllocatedWidth,Ie=h.textBounds.width,xe=h.textBounds.height,F=(he-Ie)*("right"===h.align.x?1:"center"===h.align.x?.5:0),Z=(ee-xe)*("bottom"===h.align.y?1:"center"===h.align.y?.5:0),EA=F+-h.textBounds.x,PA=Z+-h.textBounds.y;h.debug&&(c.save(),c.dash(1,{space:1}).lineWidth(1).strokeOpacity(.3),h.text&&c.moveTo(CA+F,_A).lineTo(CA+F,_A+ee).moveTo(CA+F+Ie,_A).lineTo(CA+F+Ie,_A+ee).stroke("blue").moveTo(CA,_A+Z).lineTo(CA+he,_A+Z).moveTo(CA,_A+Z+xe).lineTo(CA+he,_A+Z+xe).stroke("green"),c.rect(CA,_A,he,ee).stroke("orange"),c.restore()),c.save().rect(CA,_A,he,ee).clip(),c.fillColor(h.textColor).strokeColor(h.textStrokeColor),h.textStroke>0&&c.lineWidth(h.textStroke),c.text(h.text,CA+EA,_A+PA,h.textOptions),c.restore(),h.font&&c.font(y,q,p)}function Us(h,c,y,p,q,CA,_A){h=Object.fromEntries(Object.entries(h).map(he=>{let Ie=he[0];return[Ie,_A&&!_A[Ie]?0:he[1]]}));const ee=this.document;[h.right,h.bottom,h.left].every(he=>he===h.top)?h.top>0&&ee.save().lineWidth(h.top).strokeColor(c.top).rect(y,p,q,CA).stroke().restore():(h.top>0&&ee.save().lineWidth(h.top).moveTo(y,p).strokeColor(c.top).lineTo(y+q,p).stroke().restore(),h.right>0&&ee.save().lineWidth(h.right).moveTo(y+q,p).strokeColor(c.right).lineTo(y+q,p+CA).stroke().restore(),h.bottom>0&&ee.save().lineWidth(h.bottom).moveTo(y+q,p+CA).strokeColor(c.bottom).lineTo(y,p+CA).stroke().restore(),h.left>0&&ee.save().lineWidth(h.left).moveTo(y,p+CA).strokeColor(c.left).lineTo(y,p).stroke().restore())}class zn{constructor(c,y){if(void 0===y&&(y={}),this.document=c,this.opts=Object.freeze(y),oi.call(this),li.call(this),this._currRowIndex=0,this._ended=!1,y.data){for(const p of y.data)this.row(p);return this.end()}}row(c,y){if(void 0===y&&(y=!1),this._ended)throw new Error(`Table was marked as ended on row ${this._currRowIndex}`);c=Array.from(c),c=zi.call(this,c,this._currRowIndex),0===this._currRowIndex&&vs.call(this,c);const p=Rs.call(this,c,this._currRowIndex),CA=p.toRender;p.newPage&&this.document.continueOnNewPage();const _A=Ps.call(this,CA,this._currRowIndex);return this.document.x=this._position.x,this.document.y=_A,y?this.end():(this._currRowIndex++,this)}end(){for(;this._rowBuffer?.size;)this.row([]);return this._ended=!0,Ns.call(this),this.document}}var Ls={initTables(){this._tableIndex=0},table(h){return new zn(this,h)}};class ss{constructor(){this._metadata='\n \n \n \n '}_closeTags(){this._metadata=this._metadata.concat('\n \n \n \n ')}append(c,y){void 0===y&&(y=!0),this._metadata=this._metadata.concat(c),y&&(this._metadata=this._metadata.concat("\n"))}getXML(){return this._metadata}getLength(){return this._metadata.length}end(){this._closeTags(),this._metadata=this._metadata.trim()}}var Gs={initMetadata(){this.metadata=new ss},appendXML(h,c){void 0===c&&(c=!0),this.metadata.append(h,c)},_addInfo(){this.appendXML(`\n \n ${this.info.CreationDate.toISOString().split(".")[0]+"Z"}\n ${this.info.Creator}\n \n `),(this.info.Title||this.info.Author||this.info.Subject)&&(this.appendXML('\n \n '),this.info.Title&&this.appendXML(`\n \n \n ${this.info.Title}\n \n \n `),this.info.Author&&this.appendXML(`\n \n \n ${this.info.Author}\n \n \n `),this.info.Subject&&this.appendXML(`\n \n \n ${this.info.Subject}\n \n \n `),this.appendXML("\n \n ")),this.appendXML(`\n \n ${this.info.Producer}`,!1),this.info.Keywords&&this.appendXML(`\n ${this.info.Keywords}`,!1),this.appendXML("\n \n ")},endMetadata(){this._addInfo(),this.metadata.end(),1.3!=this.version&&(this.metadataRef=this.ref({length:this.metadata.getLength(),Type:"Metadata",Subtype:"XML"}),this.metadataRef.compress=!1,this.metadataRef.write(I.from(this.metadata.getXML(),"utf-8")),this.metadataRef.end(),this._root.data.Metadata=this.metadataRef)}};class yi extends N.default.Readable{constructor(c){switch(void 0===c&&(c={}),super(c),this.options=c,c.pdfVersion){case"1.4":this.version=1.4;break;case"1.5":this.version=1.5;break;case"1.6":this.version=1.6;break;case"1.7":case"1.7ext3":this.version=1.7;break;default:this.version=1.3}this.compress=null==this.options.compress||this.options.compress,this._pageBuffer=[],this._pageBufferStart=0,this._offsets=[],this._waiting=0,this._ended=!1,this._offset=0;const y=this.ref({Type:"Pages",Count:0,Kids:[]}),p=this.ref({Dests:new O});if(this._root=this.ref({Type:"Catalog",Pages:y,Names:p}),this.options.lang&&(this._root.data.Lang=new String(this.options.lang)),this.options.pageLayout){const q=this.options.pageLayout;this._root.data.PageLayout=q.charAt(0).toUpperCase()+q.slice(1)}if(this.page=null,this.initMetadata(),this.initColor(),this.initVector(),this.initFonts(c.font),this.initText(),this.initImages(),this.initOutline(),this.initMarkings(c),this.initTables(),this.initSubset(c),this.info={Producer:"PDFKit",Creator:"PDFKit",CreationDate:new Date},this.options.info)for(let q in this.options.info)this.info[q]=this.options.info[q];this.options.displayTitle&&(this._root.data.ViewerPreferences=this.ref({DisplayDocTitle:!0})),this._id=ie.generateFileID(this.info),this._security=ie.create(this,c),this._write(`%PDF-${this.version}`),this._write("%\xff\xff\xff\xff"),!1!==this.options.autoFirstPage&&this.addPage()}addPage(c){null==c&&(c=this.options),this.options.bufferPages||this.flushPages(),this.page=new U(this,c),this._pageBuffer.push(this.page);const y=this._root.data.Pages.data;return y.Kids.push(this.page.dictionary),y.Count++,this.x=this.page.margins.left,this.y=this.page.margins.top,this._ctm=[1,0,0,1,0,0],this.transform(1,0,0,-1,0,this.page.height),this.emit("pageAdded"),this}continueOnNewPage(c){const y=this.endPageMarkings(this.page);return this.addPage(c??this.page._options),this.initPageMarkings(y),this}bufferedPageRange(){return{start:this._pageBufferStart,count:this._pageBuffer.length}}switchToPage(c){let y;if(!(y=this._pageBuffer[c-this._pageBufferStart]))throw new Error(`switchToPage(${c}) out of bounds, current buffer covers pages ${this._pageBufferStart} to ${this._pageBufferStart+this._pageBuffer.length-1}`);return this.page=y}flushPages(){const c=this._pageBuffer;this._pageBuffer=[],this._pageBufferStart+=c.length;for(let y of c)this.endPageMarkings(y),y.end()}addNamedDestination(c){for(var y=arguments.length,p=new Array(y>1?y-1:0),q=1;q{Object.assign(yi.prototype,h)};Yn(Gs),Yn(bt),Yn(je),Yn(Wt),Yn(Cn),Yn(ri),Yn(ai),Yn(Xi),Yn(Ms),Yn(ps),Yn(As),Yn(Zn),Yn(Ls),yi.LineWrapper=Bn},6092(eA,Q,f){var t=f(2736),g=f(2022);typeof g.pdfMake>"u"&&(g.pdfMake=t),eA.exports=t},656(eA,Q,f){"use strict";Q.polyval=Q.ghash=void 0;const g=f(5181),I=16,N=new Uint8Array(16),K=(0,g.u32)(N),B=(P,rA,QA,NA)=>({s3:QA<<31|NA>>>1,s2:rA<<31|QA>>>1,s1:P<<31|rA>>>1,s0:P>>>1^225<<24&-(1&NA)}),j=P=>(P>>>0&255)<<24|(P>>>8&255)<<16|(P>>>16&255)<<8|P>>>24&255;class aA{constructor(rA,QA){this.blockLen=I,this.outputLen=I,this.s0=0,this.s1=0,this.s2=0,this.s3=0,this.finished=!1,rA=(0,g.toBytes)(rA),(0,g.abytes)(rA,16);const NA=(0,g.createView)(rA);let oA=NA.getUint32(0,!1),uA=NA.getUint32(4,!1),dA=NA.getUint32(8,!1),RA=NA.getUint32(12,!1);const nA=[];for(let VA=0;VA<128;VA++)nA.push({s0:j(oA),s1:j(uA),s2:j(dA),s3:j(RA)}),({s0:oA,s1:uA,s2:dA,s3:RA}=B(oA,uA,dA,RA));const H=(P=QA||1024)>65536?8:P>1024?4:2;var P;if(![1,2,4,8].includes(H))throw new Error("ghash: invalid window size, expected 2, 4 or 8");this.W=H;const z=128/H,OA=this.windowSize=2**H,wA=[];for(let VA=0;VA>>H-xA-1&1))continue;const{s0:HA,s1:cA,s2:J,s3:U}=nA[H*VA+xA];hA^=HA,fA^=cA,UA^=J,yA^=U}wA.push({s0:hA,s1:fA,s2:UA,s3:yA})}this.t=wA}_updateBlock(rA,QA,NA,oA){rA^=this.s0,QA^=this.s1,NA^=this.s2,oA^=this.s3;const{W:uA,t:dA,windowSize:RA}=this;let nA=0,H=0,pA=0,z=0;const OA=(1<>>8*kA&255;for(let fA=8/uA-1;fA>=0;fA--){const UA=hA>>>uA*fA&OA,{s0:yA,s1:xA,s2:Ee,s3:HA}=dA[wA*RA+UA];nA^=yA,H^=xA,pA^=Ee,z^=HA,wA+=1}}this.s0=nA,this.s1=H,this.s2=pA,this.s3=z}update(rA){(0,g.aexists)(this),rA=(0,g.toBytes)(rA),(0,g.abytes)(rA);const QA=(0,g.u32)(rA),NA=Math.floor(rA.length/I),oA=rA.length%I;for(let uA=0;uA>>1|QA,QA=(1&oA)<<7}return P[0]^=225&-rA,P}((0,g.copyBytes)(rA));super(NA,QA),(0,g.clean)(NA)}update(rA){rA=(0,g.toBytes)(rA),(0,g.aexists)(this);const QA=(0,g.u32)(rA),NA=rA.length%I,oA=Math.floor(rA.length/I);for(let uA=0;uAP(oA,NA.length).update((0,g.toBytes)(NA)).digest(),QA=P(new Uint8Array(16),0);return rA.outputLen=QA.outputLen,rA.blockLen=QA.blockLen,rA.create=(NA,oA)=>P(NA,oA),rA}Q.ghash=L((P,rA)=>new aA(P,rA)),Q.polyval=L((P,rA)=>new AA(P,rA))},2651(eA,Q,f){"use strict";Object.defineProperty(Q,"__esModule",{value:!0}),Q.unsafe=Q.aeskwp=Q.aeskw=Q.siv=Q.gcmsiv=Q.gcm=Q.cfb=Q.cbc=Q.ecb=Q.ctr=void 0;const t=f(656),g=f(5181),I=16,K=new Uint8Array(I);function B(J){return J<<1^283&-(J>>7)}function j(J,U){let O=0;for(;U>0;U>>=1)O^=J&-(1&U),J=B(J);return O}const tA=(()=>{const J=new Uint8Array(256);for(let O=0,lA=1;O<256;O++,lA^=B(lA))J[O]=lA;const U=new Uint8Array(256);U[0]=99;for(let O=0;O<255;O++){let lA=J[255-O];lA|=lA<<8,U[J[O]]=255&(lA^lA>>4^lA>>5^lA>>6^lA>>7^99)}return(0,g.clean)(J),U})(),w=tA.map((J,U)=>tA.indexOf(U)),aA=J=>J<<24|J>>>8,AA=J=>J<<8|J>>>24,L=J=>J<<24&4278190080|J<<8&16711680|J>>>8&65280|J>>>24&255;function P(J,U){if(256!==J.length)throw new Error("Wrong sbox length");const O=new Uint32Array(256).map((C,b)=>U(J[b])),lA=O.map(AA),LA=lA.map(AA),JA=LA.map(AA),$A=new Uint32Array(65536),IA=new Uint32Array(65536),gA=new Uint16Array(65536);for(let C=0;C<256;C++)for(let b=0;b<256;b++){const R=256*C+b;$A[R]=O[C]^lA[b],IA[R]=LA[C]^JA[b],gA[R]=J[C]<<8|J[b]}return{sbox:J,sbox2:gA,T0:O,T1:lA,T2:LA,T3:JA,T01:$A,T23:IA}}const rA=P(tA,J=>j(J,3)<<24|J<<16|J<<8|j(J,2)),QA=P(w,J=>j(J,11)<<24|j(J,13)<<16|j(J,9)<<8|j(J,14)),NA=(()=>{const J=new Uint8Array(16);for(let U=0,O=1;U<16;U++,O=B(O))J[U]=O;return J})();function oA(J){(0,g.abytes)(J);const U=J.length;if(![16,24,32].includes(U))throw new Error("aes: invalid key size, should be 16, 24 or 32, got "+U);const{sbox2:O}=rA,lA=[];(0,g.isAligned32)(J)||lA.push(J=(0,g.copyBytes)(J));const LA=(0,g.u32)(J),JA=LA.length,$A=gA=>RA(O,gA,gA,gA,gA),IA=new Uint32Array(U+28);IA.set(LA);for(let gA=JA;gA6&&gA%JA===4&&(C=$A(C)),IA[gA]=IA[gA-JA]^C}return(0,g.clean)(...lA),IA}function uA(J){const U=oA(J),O=U.slice(),lA=U.length,{sbox2:LA}=rA,{T0:JA,T1:$A,T2:IA,T3:gA}=QA;for(let C=0;C>>8&255]^IA[R>>>16&255]^gA[R>>>24]}return O}function dA(J,U,O,lA,LA,JA){return J[O<<8&65280|lA>>>8&255]^U[LA>>>8&65280|JA>>>24&255]}function RA(J,U,O,lA,LA){return J[255&U|65280&O]|J[lA>>>16&255|LA>>>16&65280]<<16}function nA(J,U,O,lA,LA){const{sbox2:JA,T01:$A,T23:IA}=rA;let gA=0;U^=J[gA++],O^=J[gA++],lA^=J[gA++],LA^=J[gA++];const C=J.length/4-2;for(let X=0;X=0;KA--)YA=YA+(255&JA[KA])|0,JA[KA]=255&YA,YA>>>=8;({s0:IA,s1:gA,s2:C,s3:b}=nA(J,$A[0],$A[1],$A[2],$A[3]))}const D=I*Math.floor(R.length/4);if(D>>0,IA.setUint32(b,M,U),({s0:D,s1:X,s2:YA,s3:KA}=nA(J,$A[0],$A[1],$A[2],$A[3]));const bA=I*Math.floor(gA.length/4);if(bA16)throw new Error("aes/pcks5: wrong padding");const LA=J.subarray(0,-lA);for(let JA=0;JAlA(LA,JA),decrypt:(LA,JA)=>lA(LA,JA)}}),Q.ecb=(0,g.wrapCipher)({blockSize:16},function(U,O={}){const lA=!O.disablePadding;return{encrypt(LA,JA){const{b:$A,o:IA,out:gA}=wA(LA,lA,JA),C=oA(U);let b=0;for(;b+4<=$A.length;){const{s0:R,s1:M,s2:D,s3:X}=nA(C,$A[b+0],$A[b+1],$A[b+2],$A[b+3]);IA[b++]=R,IA[b++]=M,IA[b++]=D,IA[b++]=X}if(lA){const R=kA(LA.subarray(4*b)),{s0:M,s1:D,s2:X,s3:YA}=nA(C,R[0],R[1],R[2],R[3]);IA[b++]=M,IA[b++]=D,IA[b++]=X,IA[b++]=YA}return(0,g.clean)(C),gA},decrypt(LA,JA){OA(LA);const $A=uA(U);JA=(0,g.getOutput)(LA.length,JA);const IA=[$A];(0,g.isAligned32)(LA)||IA.push(LA=(0,g.copyBytes)(LA)),(0,g.complexOverlapBytes)(LA,JA);const gA=(0,g.u32)(LA),C=(0,g.u32)(JA);for(let b=0;b+4<=gA.length;){const{s0:R,s1:M,s2:D,s3:X}=H($A,gA[b+0],gA[b+1],gA[b+2],gA[b+3]);C[b++]=R,C[b++]=M,C[b++]=D,C[b++]=X}return(0,g.clean)(...IA),VA(JA,lA)}}}),Q.cbc=(0,g.wrapCipher)({blockSize:16,nonceLength:16},function(U,O,lA={}){const LA=!lA.disablePadding;return{encrypt(JA,$A){const IA=oA(U),{b:gA,o:C,out:b}=wA(JA,LA,$A);let R=O;const M=[IA];(0,g.isAligned32)(R)||M.push(R=(0,g.copyBytes)(R));const D=(0,g.u32)(R);let X=D[0],YA=D[1],KA=D[2],bA=D[3],le=0;for(;le+4<=gA.length;)X^=gA[le+0],YA^=gA[le+1],KA^=gA[le+2],bA^=gA[le+3],({s0:X,s1:YA,s2:KA,s3:bA}=nA(IA,X,YA,KA,bA)),C[le++]=X,C[le++]=YA,C[le++]=KA,C[le++]=bA;if(LA){const ve=kA(JA.subarray(4*le));X^=ve[0],YA^=ve[1],KA^=ve[2],bA^=ve[3],({s0:X,s1:YA,s2:KA,s3:bA}=nA(IA,X,YA,KA,bA)),C[le++]=X,C[le++]=YA,C[le++]=KA,C[le++]=bA}return(0,g.clean)(...M),b},decrypt(JA,$A){OA(JA);const IA=uA(U);let gA=O;const C=[IA];(0,g.isAligned32)(gA)||C.push(gA=(0,g.copyBytes)(gA));const b=(0,g.u32)(gA);$A=(0,g.getOutput)(JA.length,$A),(0,g.isAligned32)(JA)||C.push(JA=(0,g.copyBytes)(JA)),(0,g.complexOverlapBytes)(JA,$A);const R=(0,g.u32)(JA),M=(0,g.u32)($A);let D=b[0],X=b[1],YA=b[2],KA=b[3];for(let bA=0;bA+4<=R.length;){const le=D,ve=X,Ne=YA,Te=KA;D=R[bA+0],X=R[bA+1],YA=R[bA+2],KA=R[bA+3];const{s0:ze,s1:Oe,s2:oe,s3:sA}=H(IA,D,X,YA,KA);M[bA++]=ze^le,M[bA++]=Oe^ve,M[bA++]=oe^Ne,M[bA++]=sA^Te}return(0,g.clean)(...C),VA($A,LA)}}}),Q.cfb=(0,g.wrapCipher)({blockSize:16,nonceLength:16},function(U,O){function lA(LA,JA,$A){(0,g.abytes)(LA);const IA=LA.length;if($A=(0,g.getOutput)(IA,$A),(0,g.overlapBytes)(LA,$A))throw new Error("overlapping src and dst not supported.");const gA=oA(U);let C=O;const b=[gA];(0,g.isAligned32)(C)||b.push(C=(0,g.copyBytes)(C)),(0,g.isAligned32)(LA)||b.push(LA=(0,g.copyBytes)(LA));const R=(0,g.u32)(LA),M=(0,g.u32)($A),D=JA?M:R,X=(0,g.u32)(C);let YA=X[0],KA=X[1],bA=X[2],le=X[3];for(let Ne=0;Ne+4<=R.length;){const{s0:Te,s1:ze,s2:Oe,s3:oe}=nA(gA,YA,KA,bA,le);M[Ne+0]=R[Ne+0]^Te,M[Ne+1]=R[Ne+1]^ze,M[Ne+2]=R[Ne+2]^Oe,M[Ne+3]=R[Ne+3]^oe,YA=D[Ne++],KA=D[Ne++],bA=D[Ne++],le=D[Ne++]}const ve=I*Math.floor(R.length/4);if(velA(LA,!0,JA),decrypt:(LA,JA)=>lA(LA,!1,JA)}}),Q.gcm=(0,g.wrapCipher)({blockSize:16,nonceLength:12,tagLength:16,varSizeNonce:!0},function(U,O,lA){if(O.length<8)throw new Error("aes/gcm: invalid nonce length");function JA(IA,gA,C){const b=hA(t.ghash,!1,IA,C,lA);for(let R=0;RlA=>{if(!Number.isSafeInteger(lA)||U>lA||lA>O)throw new Error(J+": expected value in range ["+U+".."+O+"], got "+lA)};function UA(J){return J instanceof Uint32Array||ArrayBuffer.isView(J)&&"Uint32Array"===J.constructor.name}function yA(J,U){if((0,g.abytes)(U,16),!UA(J))throw new Error("_encryptBlock accepts result of expandKeyLE");const O=(0,g.u32)(U);let{s0:lA,s1:LA,s2:JA,s3:$A}=nA(J,O[0],O[1],O[2],O[3]);return O[0]=lA,O[1]=LA,O[2]=JA,O[3]=$A,U}function xA(J,U){if((0,g.abytes)(U,16),!UA(J))throw new Error("_decryptBlock accepts result of expandKeyLE");const O=(0,g.u32)(U);let{s0:lA,s1:LA,s2:JA,s3:$A}=H(J,O[0],O[1],O[2],O[3]);return O[0]=lA,O[1]=LA,O[2]=JA,O[3]=$A,U}Q.gcmsiv=(0,g.wrapCipher)({blockSize:16,nonceLength:12,tagLength:16,varSizeNonce:!0},function(U,O,lA){const JA=fA("AAD",0,68719476736),$A=fA("plaintext",0,2**36),IA=fA("nonce",12,12),gA=fA("ciphertext",16,2**36+16);function C(){const M=oA(U),D=new Uint8Array(U.length),X=new Uint8Array(16),YA=[M,D];let KA=O;(0,g.isAligned32)(KA)||YA.push(KA=(0,g.copyBytes)(KA));const bA=(0,g.u32)(KA);let le=0,ve=bA[0],Ne=bA[1],Te=bA[2],ze=0;for(const oe of[X,D].map(g.u32)){const sA=(0,g.u32)(oe);for(let S=0;S=2**32)throw new Error("plaintext should be less than 4gb");const O=oA(J);if(16===U.length)yA(O,U);else{const lA=(0,g.u32)(U);let LA=lA[0],JA=lA[1];for(let $A=0,IA=1;$A<6;$A++)for(let gA=2;gA=2**32)throw new Error("ciphertext should be less than 4gb");const O=uA(J),lA=U.length/8-1;if(1===lA)xA(O,U);else{const LA=(0,g.u32)(U);let JA=LA[0],$A=LA[1];for(let IA=0,gA=6*lA;IA<6;IA++)for(let C=2*lA;C>=1;C-=2,gA--){$A^=L(gA);const{s0:b,s1:R,s2:M,s3:D}=H(O,JA,$A,LA[C],LA[C+1]);JA=b,$A=R,LA[C]=M,LA[C+1]=D}LA[0]=JA,LA[1]=$A}O.fill(0)}},HA=new Uint8Array(8).fill(166);Q.aeskw=(0,g.wrapCipher)({blockSize:8},J=>({encrypt(U){if(!U.length||U.length%8!=0)throw new Error("invalid plaintext length");if(8===U.length)throw new Error("8-byte keys not allowed in AESKW, use AESKWP instead");const O=(0,g.concatBytes)(HA,U);return Ee.encrypt(J,O),O},decrypt(U){if(U.length%8!=0||U.length<24)throw new Error("invalid ciphertext length");const O=(0,g.copyBytes)(U);if(Ee.decrypt(J,O),!(0,g.equalBytes)(O.subarray(0,8),HA))throw new Error("integrity check failed");return O.subarray(0,8).fill(0),O.subarray(8)}}));const cA=2790873510;Q.aeskwp=(0,g.wrapCipher)({blockSize:8},J=>({encrypt(U){if(!U.length)throw new Error("invalid plaintext length");const O=8*Math.ceil(U.length/8),lA=new Uint8Array(8+O);lA.set(U,8);const LA=(0,g.u32)(lA);return LA[0]=cA,LA[1]=L(U.length),Ee.encrypt(J,lA),lA},decrypt(U){if(U.length<16)throw new Error("invalid ciphertext length");const O=(0,g.copyBytes)(U),lA=(0,g.u32)(O);Ee.decrypt(J,O);const LA=L(lA[1])>>>0,JA=8*Math.ceil(LA/8);if(lA[0]!==cA||O.length-8!==JA)throw new Error("integrity check failed");for(let $A=LA;$A0&&!J.includes(cA.length))throw new Error("Uint8Array expected of length "+J+", got length="+cA.length)}function aA(cA){return new DataView(cA.buffer,cA.byteOffset,cA.byteLength)}function z(cA,J){return cA.buffer===J.buffer&&cA.byteOffset>lA&LA),$A=Number(U&LA),gA=O?0:4;cA.setUint32(J+(O?4:0),JA,O),cA.setUint32(J+gA,$A,O)}function Ee(cA){return cA.byteOffset%4==0}function HA(cA){return Uint8Array.from(cA)}Q.wrapCipher=Q.qv=void 0,Q.abytes=N,Q.aexists=function v(cA,J=!0){if(cA.destroyed)throw new Error("Hash instance has been destroyed");if(J&&cA.finished)throw new Error("Hash#digest() has already been called")},Q.aoutput=function B(cA,J){N(cA);const U=J.outputLen;if(cA.length{function U(O,...lA){if(N(O),!Q.qv)throw new Error("Non little-endian hardware is not yet supported");if(void 0!==cA.nonceLength){const C=lA[0];if(!C)throw new Error("nonce / iv required");cA.varSizeNonce?N(C):N(C,cA.nonceLength)}const LA=cA.tagLength;LA&&void 0!==lA[1]&&N(lA[1]);const JA=J(O,...lA),$A=(C,b)=>{if(void 0!==b){if(2!==C)throw new Error("cipher output not supported");N(b)}};let IA=!1;return{encrypt(C,b){if(IA)throw new Error("cannot encrypt() twice with same key + nonce");return IA=!0,N(C),$A(JA.encrypt.length,b),JA.encrypt(C,b)},decrypt(C,b){if(N(C),LA&&C.lengthaA-L&&(this.process(w,0),L=0);for(let oA=L;oA>aA&AA),P=Number(tA&AA),QA=w?0:4;B.setUint32(j+(w?4:0),L,w),B.setUint32(j+QA,P,w)})(w,aA-8,BigInt(8*this.length),AA),this.process(w,0);const P=(0,g.createView)(j),rA=this.outputLen;if(rA%4)throw new Error("_sha2: outputLen should be aligned to 32bit");const QA=rA/4,NA=this.get();if(QA>NA.length)throw new Error("_sha2: outputLen bigger than state");for(let oA=0;oA>>0)+(kA>>>0);return{h:OA+VA+(hA/4294967296|0)|0,l:0|hA}},Q.split=function N(OA,wA=!1){const VA=OA.length;let kA=new Uint32Array(VA),hA=new Uint32Array(VA);for(let fA=0;fA>g&t)}:{h:0|Number(OA>>g&t),l:0|Number(OA&t)}}Q.shrSH=(OA,wA,VA)=>OA>>>VA;Q.shrSL=(OA,wA,VA)=>OA<<32-VA|wA>>>VA;Q.rotrSH=(OA,wA,VA)=>OA>>>VA|wA<<32-VA;Q.rotrSL=(OA,wA,VA)=>OA<<32-VA|wA>>>VA;Q.rotrBH=(OA,wA,VA)=>OA<<64-VA|wA>>>VA-32;Q.rotrBL=(OA,wA,VA)=>OA>>>VA-32|wA<<64-VA;Q.add3L=(OA,wA,VA)=>(OA>>>0)+(wA>>>0)+(VA>>>0);Q.add3H=(OA,wA,VA,kA)=>wA+VA+kA+(OA/2**32|0)|0;Q.add4L=(OA,wA,VA,kA)=>(OA>>>0)+(wA>>>0)+(VA>>>0)+(kA>>>0);Q.add4H=(OA,wA,VA,kA,hA)=>wA+VA+kA+hA+(OA/2**32|0)|0;Q.add5L=(OA,wA,VA,kA,hA)=>(OA>>>0)+(wA>>>0)+(VA>>>0)+(kA>>>0)+(hA>>>0);Q.add5H=(OA,wA,VA,kA,hA,fA)=>wA+VA+kA+hA+fA+(OA/2**32|0)|0},2491(eA,Q){"use strict";Q.crypto=void 0,Q.crypto="object"==typeof globalThis&&"crypto"in globalThis?globalThis.crypto:void 0},2650(eA,Q,f){"use strict";Object.defineProperty(Q,"__esModule",{value:!0}),Q.sha512_224=Q.sha512_256=Q.sha384=Q.sha512=Q.sha224=Q.sha256=Q.SHA512_256=Q.SHA512_224=Q.SHA384=Q.SHA512=Q.SHA224=Q.SHA256=void 0;const t=f(6784),g=f(4996),I=f(3973),N=Uint32Array.from([1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298]),K=new Uint32Array(64);class v extends t.HashMD{constructor(dA=32){super(64,dA,8,!1),this.A=0|t.SHA256_IV[0],this.B=0|t.SHA256_IV[1],this.C=0|t.SHA256_IV[2],this.D=0|t.SHA256_IV[3],this.E=0|t.SHA256_IV[4],this.F=0|t.SHA256_IV[5],this.G=0|t.SHA256_IV[6],this.H=0|t.SHA256_IV[7]}get(){const{A:dA,B:RA,C:nA,D:H,E:pA,F:z,G:OA,H:wA}=this;return[dA,RA,nA,H,pA,z,OA,wA]}set(dA,RA,nA,H,pA,z,OA,wA){this.A=0|dA,this.B=0|RA,this.C=0|nA,this.D=0|H,this.E=0|pA,this.F=0|z,this.G=0|OA,this.H=0|wA}process(dA,RA){for(let hA=0;hA<16;hA++,RA+=4)K[hA]=dA.getUint32(RA,!1);for(let hA=16;hA<64;hA++){const fA=K[hA-15],UA=K[hA-2],yA=(0,I.rotr)(fA,7)^(0,I.rotr)(fA,18)^fA>>>3,xA=(0,I.rotr)(UA,17)^(0,I.rotr)(UA,19)^UA>>>10;K[hA]=xA+K[hA-7]+yA+K[hA-16]|0}let{A:nA,B:H,C:pA,D:z,E:OA,F:wA,G:VA,H:kA}=this;for(let hA=0;hA<64;hA++){const UA=kA+((0,I.rotr)(OA,6)^(0,I.rotr)(OA,11)^(0,I.rotr)(OA,25))+(0,t.Chi)(OA,wA,VA)+N[hA]+K[hA]|0,xA=((0,I.rotr)(nA,2)^(0,I.rotr)(nA,13)^(0,I.rotr)(nA,22))+(0,t.Maj)(nA,H,pA)|0;kA=VA,VA=wA,wA=OA,OA=z+UA|0,z=pA,pA=H,H=nA,nA=UA+xA|0}nA=nA+this.A|0,H=H+this.B|0,pA=pA+this.C|0,z=z+this.D|0,OA=OA+this.E|0,wA=wA+this.F|0,VA=VA+this.G|0,kA=kA+this.H|0,this.set(nA,H,pA,z,OA,wA,VA,kA)}roundClean(){(0,I.clean)(K)}destroy(){this.set(0,0,0,0,0,0,0,0),(0,I.clean)(this.buffer)}}Q.SHA256=v;class B extends v{constructor(){super(28),this.A=0|t.SHA224_IV[0],this.B=0|t.SHA224_IV[1],this.C=0|t.SHA224_IV[2],this.D=0|t.SHA224_IV[3],this.E=0|t.SHA224_IV[4],this.F=0|t.SHA224_IV[5],this.G=0|t.SHA224_IV[6],this.H=0|t.SHA224_IV[7]}}Q.SHA224=B;const j=g.split(["0x428a2f98d728ae22","0x7137449123ef65cd","0xb5c0fbcfec4d3b2f","0xe9b5dba58189dbbc","0x3956c25bf348b538","0x59f111f1b605d019","0x923f82a4af194f9b","0xab1c5ed5da6d8118","0xd807aa98a3030242","0x12835b0145706fbe","0x243185be4ee4b28c","0x550c7dc3d5ffb4e2","0x72be5d74f27b896f","0x80deb1fe3b1696b1","0x9bdc06a725c71235","0xc19bf174cf692694","0xe49b69c19ef14ad2","0xefbe4786384f25e3","0x0fc19dc68b8cd5b5","0x240ca1cc77ac9c65","0x2de92c6f592b0275","0x4a7484aa6ea6e483","0x5cb0a9dcbd41fbd4","0x76f988da831153b5","0x983e5152ee66dfab","0xa831c66d2db43210","0xb00327c898fb213f","0xbf597fc7beef0ee4","0xc6e00bf33da88fc2","0xd5a79147930aa725","0x06ca6351e003826f","0x142929670a0e6e70","0x27b70a8546d22ffc","0x2e1b21385c26c926","0x4d2c6dfc5ac42aed","0x53380d139d95b3df","0x650a73548baf63de","0x766a0abb3c77b2a8","0x81c2c92e47edaee6","0x92722c851482353b","0xa2bfe8a14cf10364","0xa81a664bbc423001","0xc24b8b70d0f89791","0xc76c51a30654be30","0xd192e819d6ef5218","0xd69906245565a910","0xf40e35855771202a","0x106aa07032bbd1b8","0x19a4c116b8d2d0c8","0x1e376c085141ab53","0x2748774cdf8eeb99","0x34b0bcb5e19b48a8","0x391c0cb3c5c95a63","0x4ed8aa4ae3418acb","0x5b9cca4f7763e373","0x682e6ff3d6b2b8a3","0x748f82ee5defb2fc","0x78a5636f43172f60","0x84c87814a1f0ab72","0x8cc702081a6439ec","0x90befffa23631e28","0xa4506cebde82bde9","0xbef9a3f7b2c67915","0xc67178f2e372532b","0xca273eceea26619c","0xd186b8c721c0c207","0xeada7dd6cde0eb1e","0xf57d4f7fee6ed178","0x06f067aa72176fba","0x0a637dc5a2c898a6","0x113f9804bef90dae","0x1b710b35131c471b","0x28db77f523047d84","0x32caab7b40c72493","0x3c9ebe0a15c9bebc","0x431d67c49c100d4c","0x4cc5d4becb3e42b6","0x597f299cfc657e2a","0x5fcb6fab3ad6faec","0x6c44198c4a475817"].map(uA=>BigInt(uA))),tA=j[0],w=j[1],aA=new Uint32Array(80),AA=new Uint32Array(80);class L extends t.HashMD{constructor(dA=64){super(128,dA,16,!1),this.Ah=0|t.SHA512_IV[0],this.Al=0|t.SHA512_IV[1],this.Bh=0|t.SHA512_IV[2],this.Bl=0|t.SHA512_IV[3],this.Ch=0|t.SHA512_IV[4],this.Cl=0|t.SHA512_IV[5],this.Dh=0|t.SHA512_IV[6],this.Dl=0|t.SHA512_IV[7],this.Eh=0|t.SHA512_IV[8],this.El=0|t.SHA512_IV[9],this.Fh=0|t.SHA512_IV[10],this.Fl=0|t.SHA512_IV[11],this.Gh=0|t.SHA512_IV[12],this.Gl=0|t.SHA512_IV[13],this.Hh=0|t.SHA512_IV[14],this.Hl=0|t.SHA512_IV[15]}get(){const{Ah:dA,Al:RA,Bh:nA,Bl:H,Ch:pA,Cl:z,Dh:OA,Dl:wA,Eh:VA,El:kA,Fh:hA,Fl:fA,Gh:UA,Gl:yA,Hh:xA,Hl:Ee}=this;return[dA,RA,nA,H,pA,z,OA,wA,VA,kA,hA,fA,UA,yA,xA,Ee]}set(dA,RA,nA,H,pA,z,OA,wA,VA,kA,hA,fA,UA,yA,xA,Ee){this.Ah=0|dA,this.Al=0|RA,this.Bh=0|nA,this.Bl=0|H,this.Ch=0|pA,this.Cl=0|z,this.Dh=0|OA,this.Dl=0|wA,this.Eh=0|VA,this.El=0|kA,this.Fh=0|hA,this.Fl=0|fA,this.Gh=0|UA,this.Gl=0|yA,this.Hh=0|xA,this.Hl=0|Ee}process(dA,RA){for(let J=0;J<16;J++,RA+=4)aA[J]=dA.getUint32(RA),AA[J]=dA.getUint32(RA+=4);for(let J=16;J<80;J++){const U=0|aA[J-15],O=0|AA[J-15],lA=g.rotrSH(U,O,1)^g.rotrSH(U,O,8)^g.shrSH(U,O,7),LA=g.rotrSL(U,O,1)^g.rotrSL(U,O,8)^g.shrSL(U,O,7),JA=0|aA[J-2],$A=0|AA[J-2],IA=g.rotrSH(JA,$A,19)^g.rotrBH(JA,$A,61)^g.shrSH(JA,$A,6),gA=g.rotrSL(JA,$A,19)^g.rotrBL(JA,$A,61)^g.shrSL(JA,$A,6),C=g.add4L(LA,gA,AA[J-7],AA[J-16]),b=g.add4H(C,lA,IA,aA[J-7],aA[J-16]);aA[J]=0|b,AA[J]=0|C}let{Ah:nA,Al:H,Bh:pA,Bl:z,Ch:OA,Cl:wA,Dh:VA,Dl:kA,Eh:hA,El:fA,Fh:UA,Fl:yA,Gh:xA,Gl:Ee,Hh:HA,Hl:cA}=this;for(let J=0;J<80;J++){const U=g.rotrSH(hA,fA,14)^g.rotrSH(hA,fA,18)^g.rotrBH(hA,fA,41),O=g.rotrSL(hA,fA,14)^g.rotrSL(hA,fA,18)^g.rotrBL(hA,fA,41),lA=hA&UA^~hA&xA,JA=g.add5L(cA,O,fA&yA^~fA&Ee,w[J],AA[J]),$A=g.add5H(JA,HA,U,lA,tA[J],aA[J]),IA=0|JA,gA=g.rotrSH(nA,H,28)^g.rotrBH(nA,H,34)^g.rotrBH(nA,H,39),C=g.rotrSL(nA,H,28)^g.rotrBL(nA,H,34)^g.rotrBL(nA,H,39),b=nA&pA^nA&OA^pA&OA,R=H&z^H&wA^z&wA;HA=0|xA,cA=0|Ee,xA=0|UA,Ee=0|yA,UA=0|hA,yA=0|fA,({h:hA,l:fA}=g.add(0|VA,0|kA,0|$A,0|IA)),VA=0|OA,kA=0|wA,OA=0|pA,wA=0|z,pA=0|nA,z=0|H;const M=g.add3L(IA,C,R);nA=g.add3H(M,$A,gA,b),H=0|M}({h:nA,l:H}=g.add(0|this.Ah,0|this.Al,0|nA,0|H)),({h:pA,l:z}=g.add(0|this.Bh,0|this.Bl,0|pA,0|z)),({h:OA,l:wA}=g.add(0|this.Ch,0|this.Cl,0|OA,0|wA)),({h:VA,l:kA}=g.add(0|this.Dh,0|this.Dl,0|VA,0|kA)),({h:hA,l:fA}=g.add(0|this.Eh,0|this.El,0|hA,0|fA)),({h:UA,l:yA}=g.add(0|this.Fh,0|this.Fl,0|UA,0|yA)),({h:xA,l:Ee}=g.add(0|this.Gh,0|this.Gl,0|xA,0|Ee)),({h:HA,l:cA}=g.add(0|this.Hh,0|this.Hl,0|HA,0|cA)),this.set(nA,H,pA,z,OA,wA,VA,kA,hA,fA,UA,yA,xA,Ee,HA,cA)}roundClean(){(0,I.clean)(aA,AA)}destroy(){(0,I.clean)(this.buffer),this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)}}Q.SHA512=L;class P extends L{constructor(){super(48),this.Ah=0|t.SHA384_IV[0],this.Al=0|t.SHA384_IV[1],this.Bh=0|t.SHA384_IV[2],this.Bl=0|t.SHA384_IV[3],this.Ch=0|t.SHA384_IV[4],this.Cl=0|t.SHA384_IV[5],this.Dh=0|t.SHA384_IV[6],this.Dl=0|t.SHA384_IV[7],this.Eh=0|t.SHA384_IV[8],this.El=0|t.SHA384_IV[9],this.Fh=0|t.SHA384_IV[10],this.Fl=0|t.SHA384_IV[11],this.Gh=0|t.SHA384_IV[12],this.Gl=0|t.SHA384_IV[13],this.Hh=0|t.SHA384_IV[14],this.Hl=0|t.SHA384_IV[15]}}Q.SHA384=P;const rA=Uint32Array.from([2352822216,424955298,1944164710,2312950998,502970286,855612546,1738396948,1479516111,258812777,2077511080,2011393907,79989058,1067287976,1780299464,286451373,2446758561]),QA=Uint32Array.from([573645204,4230739756,2673172387,3360449730,596883563,1867755857,2520282905,1497426621,2519219938,2827943907,3193839141,1401305490,721525244,746961066,246885852,2177182882]);class NA extends L{constructor(){super(28),this.Ah=0|rA[0],this.Al=0|rA[1],this.Bh=0|rA[2],this.Bl=0|rA[3],this.Ch=0|rA[4],this.Cl=0|rA[5],this.Dh=0|rA[6],this.Dl=0|rA[7],this.Eh=0|rA[8],this.El=0|rA[9],this.Fh=0|rA[10],this.Fl=0|rA[11],this.Gh=0|rA[12],this.Gl=0|rA[13],this.Hh=0|rA[14],this.Hl=0|rA[15]}}Q.SHA512_224=NA;class oA extends L{constructor(){super(32),this.Ah=0|QA[0],this.Al=0|QA[1],this.Bh=0|QA[2],this.Bl=0|QA[3],this.Ch=0|QA[4],this.Cl=0|QA[5],this.Dh=0|QA[6],this.Dl=0|QA[7],this.Eh=0|QA[8],this.El=0|QA[9],this.Fh=0|QA[10],this.Fl=0|QA[11],this.Gh=0|QA[12],this.Gl=0|QA[13],this.Hh=0|QA[14],this.Hl=0|QA[15]}}Q.SHA512_256=oA,Q.sha256=(0,I.createHasher)(()=>new v),Q.sha224=(0,I.createHasher)(()=>new B),Q.sha512=(0,I.createHasher)(()=>new L),Q.sha384=(0,I.createHasher)(()=>new P),Q.sha512_256=(0,I.createHasher)(()=>new oA),Q.sha512_224=(0,I.createHasher)(()=>new NA)},3973(eA,Q,f){"use strict";Object.defineProperty(Q,"__esModule",{value:!0}),Q.wrapXOFConstructorWithOpts=Q.wrapConstructorWithOpts=Q.wrapConstructor=Q.Hash=Q.nextTick=Q.swap32IfBE=Q.byteSwapIfBE=Q.swap8IfBE=Q.isLE=void 0,Q.isBytes=g,Q.anumber=I,Q.abytes=N,Q.ahash=function K(HA){if("function"!=typeof HA||"function"!=typeof HA.create)throw new Error("Hash should be wrapped by utils.createHasher");I(HA.outputLen),I(HA.blockLen)},Q.aexists=function v(HA,cA=!0){if(HA.destroyed)throw new Error("Hash instance has been destroyed");if(cA&&HA.finished)throw new Error("Hash#digest() has already been called")},Q.aoutput=function B(HA,cA){N(HA);const J=cA.outputLen;if(HA.length>>cA},Q.rotl=function L(HA,cA){return HA<>>32-cA>>>0},Q.byteSwap=P,Q.byteSwap32=rA,Q.bytesToHex=function oA(HA){if(N(HA),QA)return HA.toHex();let cA="";for(let J=0;J0&&!cA.includes(HA.length))throw new Error("Uint8Array expected of length "+cA+", got length="+HA.length)}function P(HA){return HA<<24&4278190080|HA<<8&16711680|HA>>>8&65280|HA>>>24&255}function rA(HA){for(let cA=0;cAHA:HA=>P(HA),Q.byteSwapIfBE=Q.swap8IfBE,Q.swap32IfBE=Q.isLE?HA=>HA:rA;const QA="function"==typeof Uint8Array.from([]).toHex&&"function"==typeof Uint8Array.fromHex,NA=Array.from({length:256},(HA,cA)=>cA.toString(16).padStart(2,"0"));function dA(HA){return HA>=48&&HA<=57?HA-48:HA>=65&&HA<=70?HA-55:HA>=97&&HA<=102?HA-87:void 0}const nA=function(){var HA=de(function*(){});return function(){return HA.apply(this,arguments)}}();function pA(){return(pA=de(function*(HA,cA,J){let U=Date.now();for(let O=0;O=0&&lAHA().update(wA(U)).digest(),J=HA();return cA.outputLen=J.outputLen,cA.blockLen=J.blockLen,cA.create=()=>HA(),cA}function yA(HA){const cA=(U,O)=>HA(O).update(wA(U)).digest(),J=HA({});return cA.outputLen=J.outputLen,cA.blockLen=J.blockLen,cA.create=U=>HA(U),cA}function xA(HA){const cA=(U,O)=>HA(O).update(wA(U)).digest(),J=HA({});return cA.outputLen=J.outputLen,cA.blockLen=J.blockLen,cA.create=U=>HA(U),cA}Q.nextTick=nA,Q.Hash=class fA{},Q.wrapConstructor=UA,Q.wrapConstructorWithOpts=yA,Q.wrapXOFConstructorWithOpts=xA},7801(eA,Q,f){"use strict";var t=f(9964);function g(X){return(g="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(YA){return typeof YA}:function(YA){return YA&&"function"==typeof Symbol&&YA.constructor===Symbol&&YA!==Symbol.prototype?"symbol":typeof YA})(X)}function I(X,YA){for(var KA=0;KA1?KA-1:0),le=1;le1?KA-1:0),le=1;le1?KA-1:0),le=1;le1?KA-1:0),le=1;le"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function oA(cA,J){return(oA=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(O,lA){return O.__proto__=lA,O})(cA,J)}function uA(cA){return(uA=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(U){return U.__proto__||Object.getPrototypeOf(U)})(cA)}function dA(cA){return(dA="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(J){return typeof J}:function(J){return J&&"function"==typeof Symbol&&J.constructor===Symbol&&J!==Symbol.prototype?"symbol":typeof J})(cA)}var nA=f(7187).inspect,pA=f(5403).codes.ERR_INVALID_ARG_TYPE;function z(cA,J,U){return(void 0===U||U>cA.length)&&(U=cA.length),cA.substring(U-J.length,U)===J}var wA="",VA="",kA="",hA="",fA={deepStrictEqual:"Expected values to be strictly deep-equal:",strictEqual:"Expected values to be strictly equal:",strictEqualObject:'Expected "actual" to be reference-equal to "expected":',deepEqual:"Expected values to be loosely deep-equal:",equal:"Expected values to be loosely equal:",notDeepStrictEqual:'Expected "actual" not to be strictly deep-equal to:',notStrictEqual:'Expected "actual" to be strictly unequal to:',notStrictEqualObject:'Expected "actual" not to be reference-equal to "expected":',notDeepEqual:'Expected "actual" not to be loosely deep-equal to:',notEqual:'Expected "actual" to be loosely unequal to:',notIdentical:"Values identical but not reference-equal:"};function yA(cA){var J=Object.keys(cA),U=Object.create(Object.getPrototypeOf(cA));return J.forEach(function(O){U[O]=cA[O]}),Object.defineProperty(U,"message",{value:cA.message}),U}function xA(cA){return nA(cA,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}var HA=function(cA,J){!function w(cA,J){if("function"!=typeof J&&null!==J)throw new TypeError("Super expression must either be null or a function");cA.prototype=Object.create(J&&J.prototype,{constructor:{value:cA,writable:!0,configurable:!0}}),Object.defineProperty(cA,"prototype",{writable:!1}),J&&oA(cA,J)}(O,cA);var U=function aA(cA){var J=QA();return function(){var lA,O=uA(cA);if(J){var LA=uA(this).constructor;lA=Reflect.construct(O,arguments,LA)}else lA=O.apply(this,arguments);return AA(this,lA)}}(O);function O(lA){var LA;if(function K(cA,J){if(!(cA instanceof J))throw new TypeError("Cannot call a class as a function")}(this,O),"object"!==dA(lA)||null===lA)throw new pA("options","Object",lA);var JA=lA.message,$A=lA.operator,IA=lA.stackStartFn,gA=lA.actual,C=lA.expected,b=Error.stackTraceLimit;if(Error.stackTraceLimit=0,null!=JA)LA=U.call(this,String(JA));else if(t.stderr&&t.stderr.isTTY&&(t.stderr&&t.stderr.getColorDepth&&1!==t.stderr.getColorDepth()?(wA="\x1b[34m",VA="\x1b[32m",hA="\x1b[39m",kA="\x1b[31m"):(wA="",VA="",hA="",kA="")),"object"===dA(gA)&&null!==gA&&"object"===dA(C)&&null!==C&&"stack"in gA&&gA instanceof Error&&"stack"in C&&C instanceof Error&&(gA=yA(gA),C=yA(C)),"deepStrictEqual"===$A||"strictEqual"===$A)LA=U.call(this,function Ee(cA,J,U){var O="",lA="",LA=0,JA="",$A=!1,IA=xA(cA),gA=IA.split("\n"),C=xA(J).split("\n"),b=0,R="";if("strictEqual"===U&&"object"===dA(cA)&&"object"===dA(J)&&null!==cA&&null!==J&&(U="strictEqualObject"),1===gA.length&&1===C.length&&gA[0]!==C[0]){var M=gA[0].length+C[0].length;if(M<=10){if(!("object"===dA(cA)&&null!==cA||"object"===dA(J)&&null!==J||0===cA&&0===J))return"".concat(fA[U],"\n\n")+"".concat(gA[0]," !== ").concat(C[0],"\n")}else if("strictEqualObject"!==U&&M<(t.stderr&&t.stderr.isTTY?t.stderr.columns:80)){for(;gA[0][b]===C[0][b];)b++;b>2&&(R="\n ".concat(function OA(cA,J){if(J=Math.floor(J),0==cA.length||0==J)return"";var U=cA.length*J;for(J=Math.floor(Math.log(J)/Math.log(2));J;)cA+=cA,J--;return cA+cA.substring(0,U-cA.length)}(" ",b),"^"),b=0)}}for(var X=gA[gA.length-1],YA=C[C.length-1];X===YA&&(b++<2?JA="\n ".concat(X).concat(JA):O=X,gA.pop(),C.pop(),0!==gA.length&&0!==C.length);)X=gA[gA.length-1],YA=C[C.length-1];var KA=Math.max(gA.length,C.length);if(0===KA){var bA=IA.split("\n");if(bA.length>30)for(bA[26]="".concat(wA,"...").concat(hA);bA.length>27;)bA.pop();return"".concat(fA.notIdentical,"\n\n").concat(bA.join("\n"),"\n")}b>3&&(JA="\n".concat(wA,"...").concat(hA).concat(JA),$A=!0),""!==O&&(JA="\n ".concat(O).concat(JA),O="");var le=0,ve=fA[U]+"\n".concat(VA,"+ actual").concat(hA," ").concat(kA,"- expected").concat(hA),Ne=" ".concat(wA,"...").concat(hA," Lines skipped");for(b=0;b1&&b>2&&(Te>4?(lA+="\n".concat(wA,"...").concat(hA),$A=!0):Te>3&&(lA+="\n ".concat(C[b-2]),le++),lA+="\n ".concat(C[b-1]),le++),LA=b,O+="\n".concat(kA,"-").concat(hA," ").concat(C[b]),le++;else if(C.length1&&b>2&&(Te>4?(lA+="\n".concat(wA,"...").concat(hA),$A=!0):Te>3&&(lA+="\n ".concat(gA[b-2]),le++),lA+="\n ".concat(gA[b-1]),le++),LA=b,lA+="\n".concat(VA,"+").concat(hA," ").concat(gA[b]),le++;else{var ze=C[b],Oe=gA[b],oe=Oe!==ze&&(!z(Oe,",")||Oe.slice(0,-1)!==ze);oe&&z(ze,",")&&ze.slice(0,-1)===Oe&&(oe=!1,Oe+=","),oe?(Te>1&&b>2&&(Te>4?(lA+="\n".concat(wA,"...").concat(hA),$A=!0):Te>3&&(lA+="\n ".concat(gA[b-2]),le++),lA+="\n ".concat(gA[b-1]),le++),LA=b,lA+="\n".concat(VA,"+").concat(hA," ").concat(Oe),O+="\n".concat(kA,"-").concat(hA," ").concat(ze),le+=2):(lA+=O,O="",(1===Te||0===b)&&(lA+="\n ".concat(Oe),le++))}if(le>20&&b30)for(M[26]="".concat(wA,"...").concat(hA);M.length>27;)M.pop();LA=U.call(this,1===M.length?"".concat(R," ").concat(M[0]):"".concat(R,"\n\n").concat(M.join("\n"),"\n"))}else{var D=xA(gA),X="",YA=fA[$A];"notDeepEqual"===$A||"notEqual"===$A?(D="".concat(fA[$A],"\n\n").concat(D)).length>1024&&(D="".concat(D.slice(0,1021),"...")):(X="".concat(xA(C)),D.length>512&&(D="".concat(D.slice(0,509),"...")),X.length>512&&(X="".concat(X.slice(0,509),"...")),"deepEqual"===$A||"equal"===$A?D="".concat(YA,"\n\n").concat(D,"\n\nshould equal\n\n"):X=" ".concat($A," ").concat(X)),LA=U.call(this,"".concat(D).concat(X))}return Error.stackTraceLimit=b,LA.generatedMessage=!JA,Object.defineProperty(L(LA),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),LA.code="ERR_ASSERTION",LA.actual=gA,LA.expected=C,LA.operator=$A,Error.captureStackTrace&&Error.captureStackTrace(L(LA),IA),LA.name="AssertionError",AA(LA)}return function B(cA,J,U){J&&v(cA.prototype,J),U&&v(cA,U),Object.defineProperty(cA,"prototype",{writable:!1})}(O,[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:J,value:function(LA,JA){return nA(this,I(I({},JA),{},{customInspect:!1,depth:0}))}}]),O}(P(Error),nA.custom);eA.exports=HA},5403(eA,Q,f){"use strict";function t(nA){return(t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(H){return typeof H}:function(H){return H&&"function"==typeof Symbol&&H.constructor===Symbol&&H!==Symbol.prototype?"symbol":typeof H})(nA)}function g(nA,H){for(var pA=0;pA"u"||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}();return function(){var OA,z=L(nA);if(H){var wA=L(this).constructor;OA=Reflect.construct(z,arguments,wA)}else OA=z.apply(this,arguments);return function w(nA,H){if(H&&("object"===t(H)||"function"==typeof H))return H;if(void 0!==H)throw new TypeError("Derived constructors may only return object or undefined");return function aA(nA){if(void 0===nA)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return nA}(nA)}(this,OA)}}(kA);function kA(hA,fA,UA){var yA;return function v(nA,H){if(!(nA instanceof H))throw new TypeError("Cannot call a class as a function")}(this,kA),yA=VA.call(this,function z(wA,VA,kA){return"string"==typeof H?H:H(wA,VA,kA)}(hA,fA,UA)),yA.code=nA,yA}return function I(nA,H,pA){return H&&g(nA.prototype,H),pA&&g(nA,pA),Object.defineProperty(nA,"prototype",{writable:!1}),nA}(kA)}(pA);P[nA]=OA}function oA(nA,H){if(Array.isArray(nA)){var pA=nA.length;return nA=nA.map(function(z){return String(z)}),pA>2?"one of ".concat(H," ").concat(nA.slice(0,pA-1).join(", "),", or ")+nA[pA-1]:2===pA?"one of ".concat(H," ").concat(nA[0]," or ").concat(nA[1]):"of ".concat(H," ").concat(nA[0])}return"of ".concat(H," ").concat(String(nA))}NA("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),NA("ERR_INVALID_ARG_TYPE",function(nA,H,pA){var z,OA;if(void 0===rA&&(rA=f(7801)),rA("string"==typeof nA,"'name' must be a string"),"string"==typeof H&&function uA(nA,H,pA){return nA.substr(!pA||pA<0?0:+pA,H.length)===H}(H,"not ")?(z="must not be",H=H.replace(/^not /,"")):z="must be",function dA(nA,H,pA){return(void 0===pA||pA>nA.length)&&(pA=nA.length),nA.substring(pA-H.length,pA)===H}(nA," argument"))OA="The ".concat(nA," ").concat(z," ").concat(oA(H,"type"));else{var wA=function RA(nA,H,pA){return"number"!=typeof pA&&(pA=0),!(pA+H.length>nA.length)&&-1!==nA.indexOf(H,pA)}(nA,".")?"property":"argument";OA='The "'.concat(nA,'" ').concat(wA," ").concat(z," ").concat(oA(H,"type"))}return OA+". Received type ".concat(t(pA))},TypeError),NA("ERR_INVALID_ARG_VALUE",function(nA,H){var pA=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===QA&&(QA=f(7187));var z=QA.inspect(H);return z.length>128&&(z="".concat(z.slice(0,128),"...")),"The argument '".concat(nA,"' ").concat(pA,". Received ").concat(z)},TypeError,RangeError),NA("ERR_INVALID_RETURN_VALUE",function(nA,H,pA){var z;return z=pA&&pA.constructor&&pA.constructor.name?"instance of ".concat(pA.constructor.name):"type ".concat(t(pA)),"Expected ".concat(nA,' to be returned from the "').concat(H,'"')+" function but got ".concat(z,".")},TypeError),NA("ERR_MISSING_ARGS",function(){for(var nA=arguments.length,H=new Array(nA),pA=0;pA0,"At least one arg needs to be specified");var z="The ",OA=H.length;switch(H=H.map(function(wA){return'"'.concat(wA,'"')}),OA){case 1:z+="".concat(H[0]," argument");break;case 2:z+="".concat(H[0]," and ").concat(H[1]," arguments");break;default:z+=H.slice(0,OA-1).join(", "),z+=", and ".concat(H[OA-1]," arguments")}return"".concat(z," must be specified")},TypeError),eA.exports.codes=P},6781(eA,Q,f){"use strict";function t(oe,sA){return function v(oe){if(Array.isArray(oe))return oe}(oe)||function K(oe,sA){var S=null==oe?null:typeof Symbol<"u"&&oe[Symbol.iterator]||oe["@@iterator"];if(null!=S){var Y,k,m,E,mA=[],ie=!0,DA=!1;try{if(m=(S=S.call(oe)).next,0===sA){if(Object(S)!==S)return;ie=!1}else for(;!(ie=(Y=m.call(S)).done)&&(mA.push(Y.value),mA.length!==sA);ie=!0);}catch(Ae){DA=!0,k=Ae}finally{try{if(!ie&&null!=S.return&&(E=S.return(),Object(E)!==E))return}finally{if(DA)throw k}}return mA}}(oe,sA)||function I(oe,sA){if(oe){if("string"==typeof oe)return N(oe,sA);var S=Object.prototype.toString.call(oe).slice(8,-1);if("Object"===S&&oe.constructor&&(S=oe.constructor.name),"Map"===S||"Set"===S)return Array.from(oe);if("Arguments"===S||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(S))return N(oe,sA)}}(oe,sA)||function g(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function N(oe,sA){(null==sA||sA>oe.length)&&(sA=oe.length);for(var S=0,Y=new Array(sA);S10)return!0;for(var sA=0;sA57)return!0}return 10===oe.length&&oe>=Math.pow(2,32)}function Ee(oe){return Object.keys(oe).filter(xA).concat(AA(oe).filter(Object.prototype.propertyIsEnumerable.bind(oe)))}function HA(oe,sA){if(oe===sA)return 0;for(var S=oe.length,Y=sA.length,k=0,m=Math.min(S,Y);k0?QA-4:QA;for(RA=0;RA>16&255,oA[uA++]=P>>8&255,oA[uA++]=255&P;return 2===NA&&(P=t[L.charCodeAt(RA)]<<2|t[L.charCodeAt(RA+1)]>>4,oA[uA++]=255&P),1===NA&&(P=t[L.charCodeAt(RA)]<<10|t[L.charCodeAt(RA+1)]<<4|t[L.charCodeAt(RA+2)]>>2,oA[uA++]=P>>8&255,oA[uA++]=255&P),oA},Q.fromByteArray=function AA(L){for(var P,rA=L.length,QA=rA%3,NA=[],uA=0,dA=rA-QA;uAdA?dA:uA+16383));return 1===QA?NA.push(f[(P=L[rA-1])>>2]+f[P<<4&63]+"=="):2===QA&&NA.push(f[(P=(L[rA-2]<<8)+L[rA-1])>>10]+f[P>>4&63]+f[P<<2&63]+"="),NA.join("")};for(var f=[],t=[],g=typeof Uint8Array<"u"?Uint8Array:Array,I="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",N=0;N<64;++N)f[N]=I[N],t[I.charCodeAt(N)]=N;function v(L){var P=L.length;if(P%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var rA=L.indexOf("=");return-1===rA&&(rA=P),[rA,rA===P?0:4-rA%4]}function w(L){return f[L>>18&63]+f[L>>12&63]+f[L>>6&63]+f[63&L]}function aA(L,P,rA){for(var NA=[],oA=P;oA0},I.prototype.readMoreInput=function(){if(!(this.bit_end_pos_>256))if(this.eos_){if(this.bit_pos_>this.bit_end_pos_)throw new Error("Unexpected end of input "+this.bit_pos_+" "+this.bit_end_pos_)}else{var N=this.buf_ptr_,K=this.input_.read(this.buf_,N,Q);if(K<0)throw new Error("Unexpected end of input");if(K=8;)this.val_>>>=8,this.val_|=this.buf_[8191&this.pos_]<<24,++this.pos_,this.bit_pos_=this.bit_pos_-8>>>0,this.bit_end_pos_=this.bit_end_pos_-8>>>0},I.prototype.readBits=function(N){32-this.bit_pos_>>this.bit_pos_&g[N];return this.bit_pos_+=N,K},eA.exports=I},7043(eA,Q){Q.lookup=new Uint8Array([0,0,0,0,0,0,0,0,0,4,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,12,16,12,12,20,12,16,24,28,12,12,32,12,36,12,44,44,44,44,44,44,44,44,44,44,32,32,24,40,28,12,12,48,52,52,52,48,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,48,52,52,52,52,52,24,12,28,12,12,12,56,60,60,60,56,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,56,60,60,60,60,60,24,12,28,12,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,0,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,16,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,40,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,56,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,12,12,12,12,13,13,13,13,14,14,14,14,15,15,15,15,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,22,22,22,22,23,23,23,23,24,24,24,24,25,25,25,25,26,26,26,26,27,27,27,27,28,28,28,28,29,29,29,29,30,30,30,30,31,31,31,31,32,32,32,32,33,33,33,33,34,34,34,34,35,35,35,35,36,36,36,36,37,37,37,37,38,38,38,38,39,39,39,39,40,40,40,40,41,41,41,41,42,42,42,42,43,43,43,43,44,44,44,44,45,45,45,45,46,46,46,46,47,47,47,47,48,48,48,48,49,49,49,49,50,50,50,50,51,51,51,51,52,52,52,52,53,53,53,53,54,54,54,54,55,55,55,55,56,56,56,56,57,57,57,57,58,58,58,58,59,59,59,59,60,60,60,60,61,61,61,61,62,62,62,62,63,63,63,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]),Q.lookupOffsets=new Uint16Array([1024,1536,1280,1536,0,256,768,512])},980(eA,Q,f){var g=f(8197).z,I=f(8197).y,N=f(4097),K=f(614),v=f(1561).z,B=f(1561).u,j=f(7043),tA=f(2210),w=f(7984),dA=1080,nA=new Uint8Array([1,2,3,4,0,5,17,6,16,7,8,9,10,11,12,13,14,15]),pA=new Uint8Array([3,2,1,0,3,3,3,3,3,3,2,2,2,2,2,2]),z=new Int8Array([0,0,0,0,-1,1,-2,2,-3,3,-1,1,-2,2,-3,3]),OA=new Uint16Array([256,402,436,468,500,534,566,598,630,662,694,726,758,790,822,854,886,920,952,984,1016,1048,1080]);function wA(gA){var C;return 0===gA.readBits(1)?16:(C=gA.readBits(3))>0?17+C:(C=gA.readBits(3))>0?8+C:17}function VA(gA){if(gA.readBits(1)){var C=gA.readBits(3);return 0===C?1:gA.readBits(C)+(1<1&&0===D)throw new Error("Invalid size byte");C.meta_block_length|=D<<8*M}}else for(M=0;M4&&0===X)throw new Error("Invalid size nibble");C.meta_block_length|=X<<4*M}return++C.meta_block_length,!C.input_end&&!C.is_metadata&&(C.is_uncompressed=gA.readBits(1)),C}function fA(gA,C,b){var M;return b.fillBitWindow(),(M=gA[C+=b.val_>>>b.bit_pos_&255].bits-8)>0&&(b.bit_pos_+=8,C+=gA[C].value,C+=b.val_>>>b.bit_pos_&(1<>=1,++bA;for(YA=0;YA0;++YA){var S,oe=nA[YA],sA=0;R.fillBitWindow(),R.bit_pos_+=Oe[sA+=R.val_>>>R.bit_pos_&15].bits,Ne[oe]=S=Oe[sA].value,0!==S&&(Te-=32>>S,++ze)}if(1!==ze&&0!==Te)throw new Error("[ReadHuffmanCode] invalid num_codes or space");!function UA(gA,C,b,R){for(var M=0,D=8,X=0,YA=0,KA=32768,bA=[],le=0;le<32;le++)bA.push(new v(0,0));for(B(bA,0,5,gA,18);M0;){var Ne,ve=0;if(R.readMoreInput(),R.fillBitWindow(),R.bit_pos_+=bA[ve+=R.val_>>>R.bit_pos_&31].bits,(Ne=255&bA[ve].value)<16)X=0,b[M++]=Ne,0!==Ne&&(D=Ne,KA-=32768>>Ne);else{var ze,Oe,Te=Ne-14,oe=0;if(16===Ne&&(oe=D),YA!==oe&&(X=0,YA=oe),ze=X,X>0&&(X-=2,X<<=Te),M+(Oe=(X+=R.readBits(Te)+3)-ze)>C)throw new Error("[ReadHuffmanCodeLengths] symbol + repeat_delta > num_symbols");for(var sA=0;sA>>5]),this.htrees=new Uint32Array(C)}function U(gA,C){var D,X,b={num_htrees:null,context_map:null},M=0;C.readMoreInput();var YA=b.num_htrees=VA(C)+1,KA=b.context_map=new Uint8Array(gA);if(YA<=1)return b;for(C.readBits(1)&&(M=C.readBits(4)+1),D=[],X=0;X=gA)throw new Error("[DecodeContextMap] i >= context_map_size");KA[X]=0,++X}else KA[X]=bA-M,++X}return C.readBits(1)&&function cA(gA,C){var R,b=new Uint8Array(256);for(R=0;R<256;++R)b[R]=R;for(R=0;R=gA&&(le-=gA),R[b]=le,M[YA+(1&D[KA])]=le,++D[KA]}function lA(gA,C,b,R,M,D){var bA,X=M+1,YA=b&M,KA=D.pos_&N.IBUF_MASK;if(C<8||D.bit_pos_+(C<<3)0;)D.readMoreInput(),R[YA++]=D.readBits(8),YA===X&&(gA.write(R,X),YA=0);else{if(D.bit_end_pos_<32)throw new Error("[CopyUncompressedBlockToOutput] br.bit_end_pos_ < 32");for(;D.bit_pos_<32;)R[YA]=D.val_>>>D.bit_pos_,D.bit_pos_+=8,++YA,--C;if(KA+(bA=D.bit_end_pos_-D.bit_pos_>>3)>N.IBUF_MASK){for(var le=N.IBUF_MASK+1-KA,ve=0;ve=X)for(gA.write(R,X),YA-=X,ve=0;ve=X;){if(D.input_.read(R,YA,bA=X-YA)C.buffer.length){var Gt=new Uint8Array(R+E);Gt.set(C.buffer),C.buffer=Gt}if(M=pn.input_end,mA=pn.is_uncompressed,pn.is_metadata)for(LA(Y);E>0;--E)Y.readMoreInput(),Y.readBits(8);else if(0!==E){if(mA){Y.bit_pos_=Y.bit_pos_+7&-8,lA(C,E,R,le,bA,Y),R+=E;continue}for(b=0;b<3;++b)Ae[b]=VA(Y)+1,Ae[b]>=2&&(yA(Ae[b]+2,sA,b*dA,Y),yA(26,S,b*dA,Y),ie[b]=xA(S,b*dA,Y),MA[b]=1);for(Y.readMoreInput(),_=(1<<(Pe=Y.readBits(2)))-1,be=(At=16+(Y.readBits(4)<0;){var bt,Dt,Ze,qe,Et,ct,Ht,Jt,zA,vA,qA,ZA;for(Y.readMoreInput(),0===ie[1]&&(O(Ae[1],sA,1,DA,pe,MA,Y),ie[1]=xA(S,dA,Y),Qn=oe[1].htrees[DA[1]]),--ie[1],(Dt=(bt=fA(oe[1].codes,Qn,Y))>>6)>=2?(Dt-=2,Ht=-1):Ht=0,qe=tA.kCopyRangeLut[Dt]+(7&bt),Et=tA.kInsertLengthPrefixCode[Ze=tA.kInsertRangeLut[Dt]+(bt>>3&7)].offset+Y.readBits(tA.kInsertLengthPrefixCode[Ze].nbits),ct=tA.kCopyLengthPrefixCode[qe].offset+Y.readBits(tA.kCopyLengthPrefixCode[qe].nbits),ze=le[R-1&bA],Oe=le[R-2&bA],zA=0;zA4?3:ct-2))]],Y))>=At&&(ZA=(Ht-=At)&_,Ht=At+((jA=(2+(1&(Ht>>=Pe))<<(qA=1+(Ht>>1)))-4)+Y.readBits(qA)<(YA=R=K.minDictionaryWordLength&&ct<=K.maxDictionaryWordLength))throw new Error("Invalid backward reference. pos: "+R+" distance: "+Jt+" len: "+ct+" bytes left: "+E);var jA=K.offsetsByLength[ct],ue=Jt-YA-1,WA=K.sizeBitsByLength[ct],ye=ue>>WA;if(jA+=(ue&(1<=ve){C.write(le,KA);for(var Je=0;Je0&&(Ne[3&Te]=Jt,++Te),ct>E)throw new Error("Invalid backward reference. pos: "+R+" distance: "+Jt+" len: "+ct+" bytes left: "+E);for(zA=0;zA>=1;return(K&B-1)+B}function I(K,v,B,j,tA){do{K[v+(j-=B)]=new f(tA.bits,tA.value)}while(j>0)}function N(K,v,B){for(var j=1<0;--nA[AA])I(K,v+P,rA,uA,new f(255&AA,65535&RA[L++])),P=g(P,AA);for(NA=dA-1,QA=-1,AA=B+1,rA=2;AA<=15;++AA,rA<<=1)for(;nA[AA]>0;--nA[AA])(P&NA)!==QA&&(v+=uA,dA+=uA=1<<(oA=N(nA,AA,B)),K[w+(QA=P&NA)]=new f(oA+B&255,v-w-QA&65535)),I(K,v+(P>>B),rA,uA,new f(AA-B&255,65535&RA[L++])),P=g(P,AA);return dA}},2210(eA,Q){function f(t,g){this.offset=t,this.nbits=g}Q.kBlockLengthPrefixCode=[new f(1,2),new f(5,2),new f(9,2),new f(13,2),new f(17,3),new f(25,3),new f(33,3),new f(41,3),new f(49,4),new f(65,4),new f(81,4),new f(97,4),new f(113,5),new f(145,5),new f(177,5),new f(209,5),new f(241,6),new f(305,6),new f(369,7),new f(497,8),new f(753,9),new f(1265,10),new f(2289,11),new f(4337,12),new f(8433,13),new f(16625,24)],Q.kInsertLengthPrefixCode=[new f(0,0),new f(1,0),new f(2,0),new f(3,0),new f(4,0),new f(5,0),new f(6,1),new f(8,1),new f(10,2),new f(14,2),new f(18,3),new f(26,3),new f(34,4),new f(50,4),new f(66,5),new f(98,5),new f(130,6),new f(194,7),new f(322,8),new f(578,9),new f(1090,10),new f(2114,12),new f(6210,14),new f(22594,24)],Q.kCopyLengthPrefixCode=[new f(2,0),new f(3,0),new f(4,0),new f(5,0),new f(6,0),new f(7,0),new f(8,0),new f(9,0),new f(10,1),new f(12,1),new f(14,2),new f(18,2),new f(22,3),new f(30,3),new f(38,4),new f(54,4),new f(70,5),new f(102,5),new f(134,6),new f(198,7),new f(326,8),new f(582,9),new f(1094,10),new f(2118,24)],Q.kInsertRangeLut=[0,0,8,8,0,16,8,16,16],Q.kCopyRangeLut=[0,8,0,8,16,0,16,8,16]},8197(eA,Q){function f(g){this.buffer=g,this.pos=0}function t(g){this.buffer=g,this.pos=0}f.prototype.read=function(g,I,N){this.pos+N>this.buffer.length&&(N=this.buffer.length-this.pos);for(var K=0;Kthis.buffer.length)throw new Error("Output buffer is not large enough");return this.buffer.set(g.subarray(0,I),this.pos),this.pos+=I,I},Q.y=t},7984(eA,Q,f){var t=f(614),L=11;function H(OA,wA,VA){this.prefix=new Uint8Array(OA.length),this.transform=wA,this.suffix=new Uint8Array(VA.length);for(var kA=0;kA'),new H("",0,"\n"),new H("",3,""),new H("",0,"]"),new H("",0," for "),new H("",14,""),new H("",2,""),new H("",0," a "),new H("",0," that "),new H(" ",10,""),new H("",0,". "),new H(".",0,""),new H(" ",0,", "),new H("",15,""),new H("",0," with "),new H("",0,"'"),new H("",0," from "),new H("",0," by "),new H("",16,""),new H("",17,""),new H(" the ",0,""),new H("",4,""),new H("",0,". The "),new H("",L,""),new H("",0," on "),new H("",0," as "),new H("",0," is "),new H("",7,""),new H("",1,"ing "),new H("",0,"\n\t"),new H("",0,":"),new H(" ",0,". "),new H("",0,"ed "),new H("",20,""),new H("",18,""),new H("",6,""),new H("",0,"("),new H("",10,", "),new H("",8,""),new H("",0," at "),new H("",0,"ly "),new H(" the ",0," of "),new H("",5,""),new H("",9,""),new H(" ",10,", "),new H("",10,'"'),new H(".",0,"("),new H("",L," "),new H("",10,'">'),new H("",0,'="'),new H(" ",0,"."),new H(".com/",0,""),new H(" the ",0," of the "),new H("",10,"'"),new H("",0,". This "),new H("",0,","),new H(".",0," "),new H("",10,"("),new H("",10,"."),new H("",0," not "),new H(" ",0,'="'),new H("",0,"er "),new H(" ",L," "),new H("",0,"al "),new H(" ",L,""),new H("",0,"='"),new H("",L,'"'),new H("",10,". "),new H(" ",0,"("),new H("",0,"ful "),new H(" ",10,". "),new H("",0,"ive "),new H("",0,"less "),new H("",L,"'"),new H("",0,"est "),new H(" ",10,"."),new H("",L,'">'),new H(" ",0,"='"),new H("",10,","),new H("",0,"ize "),new H("",L,"."),new H("\xc2\xa0",0,""),new H(" ",0,","),new H("",10,'="'),new H("",L,'="'),new H("",0,"ous "),new H("",L,", "),new H("",10,"='"),new H(" ",10,","),new H(" ",L,'="'),new H(" ",L,", "),new H("",L,","),new H("",L,"("),new H("",L,". "),new H(" ",L,"."),new H("",L,"='"),new H(" ",L,". "),new H(" ",10,'="'),new H(" ",L,"='"),new H(" ",10,"='")];function z(OA,wA){return OA[wA]<192?(OA[wA]>=97&&OA[wA]<=122&&(OA[wA]^=32),1):OA[wA]<224?(OA[wA+1]^=32,2):(OA[wA+2]^=5,3)}Q.kTransforms=pA,Q.kNumTransforms=pA.length,Q.transformDictionaryWord=function(OA,wA,VA,kA,hA){var cA,fA=pA[hA].prefix,UA=pA[hA].suffix,yA=pA[hA].transform,xA=yA<12?0:yA-11,Ee=0,HA=wA;xA>kA&&(xA=kA);for(var J=0;J0;){var U=z(OA,cA);cA+=U,kA-=U}for(var O=0;OQ.UNZIP)throw new TypeError("Bad argument");this.dictionary=null,this.err=0,this.flush=0,this.init_done=!1,this.level=0,this.memLevel=0,this.mode=AA,this.strategy=0,this.windowBits=0,this.write_in_progress=!1,this.pending_close=!1,this.gzip_id_bytes_read=0}Q.NONE=0,Q.DEFLATE=1,Q.INFLATE=2,Q.GZIP=3,Q.GUNZIP=4,Q.DEFLATERAW=5,Q.INFLATERAW=6,Q.UNZIP=7,aA.prototype.close=function(){this.write_in_progress?this.pending_close=!0:(this.pending_close=!1,I(this.init_done,"close before init"),I(this.mode<=Q.UNZIP),this.mode===Q.DEFLATE||this.mode===Q.GZIP||this.mode===Q.DEFLATERAW?K.deflateEnd(this.strm):(this.mode===Q.INFLATE||this.mode===Q.GUNZIP||this.mode===Q.INFLATERAW||this.mode===Q.UNZIP)&&v.inflateEnd(this.strm),this.mode=Q.NONE,this.dictionary=null)},aA.prototype.write=function(AA,L,P,rA,QA,NA,oA){return this._write(!0,AA,L,P,rA,QA,NA,oA)},aA.prototype.writeSync=function(AA,L,P,rA,QA,NA,oA){return this._write(!1,AA,L,P,rA,QA,NA,oA)},aA.prototype._write=function(AA,L,P,rA,QA,NA,oA,uA){if(I.equal(arguments.length,8),I(this.init_done,"write before init"),I(this.mode!==Q.NONE,"already finalized"),I.equal(!1,this.write_in_progress,"write already in progress"),I.equal(!1,this.pending_close,"close is pending"),this.write_in_progress=!0,I.equal(!1,void 0===L,"must provide flush value"),this.write_in_progress=!0,L!==Q.Z_NO_FLUSH&&L!==Q.Z_PARTIAL_FLUSH&&L!==Q.Z_SYNC_FLUSH&&L!==Q.Z_FULL_FLUSH&&L!==Q.Z_FINISH&&L!==Q.Z_BLOCK)throw new Error("Invalid flush value");if(null==P&&(P=t.alloc(0),QA=0,rA=0),this.strm.avail_in=QA,this.strm.input=P,this.strm.next_in=rA,this.strm.avail_out=uA,this.strm.output=NA,this.strm.next_out=oA,this.flush=L,!AA)return this._process(),this._checkError()?this._afterSync():void 0;var dA=this;return g.nextTick(function(){dA._process(),dA._after()}),this},aA.prototype._afterSync=function(){var AA=this.strm.avail_out,L=this.strm.avail_in;return this.write_in_progress=!1,[L,AA]},aA.prototype._process=function(){var AA=null;switch(this.mode){case Q.DEFLATE:case Q.GZIP:case Q.DEFLATERAW:this.err=K.deflate(this.strm,this.flush);break;case Q.UNZIP:switch(this.strm.avail_in>0&&(AA=this.strm.next_in),this.gzip_id_bytes_read){case 0:if(null===AA)break;if(31!==this.strm.input[AA]){this.mode=Q.INFLATE;break}if(this.gzip_id_bytes_read=1,AA++,1===this.strm.avail_in)break;case 1:if(null===AA)break;139===this.strm.input[AA]?(this.gzip_id_bytes_read=2,this.mode=Q.GUNZIP):this.mode=Q.INFLATE;break;default:throw new Error("invalid number of gzip magic number bytes read")}case Q.INFLATE:case Q.GUNZIP:case Q.INFLATERAW:for(this.err=v.inflate(this.strm,this.flush),this.err===Q.Z_NEED_DICT&&this.dictionary&&(this.err=v.inflateSetDictionary(this.strm,this.dictionary),this.err===Q.Z_OK?this.err=v.inflate(this.strm,this.flush):this.err===Q.Z_DATA_ERROR&&(this.err=Q.Z_NEED_DICT));this.strm.avail_in>0&&this.mode===Q.GUNZIP&&this.err===Q.Z_STREAM_END&&0!==this.strm.next_in[0];)this.reset(),this.err=v.inflate(this.strm,this.flush);break;default:throw new Error("Unknown mode "+this.mode)}},aA.prototype._checkError=function(){switch(this.err){case Q.Z_OK:case Q.Z_BUF_ERROR:if(0!==this.strm.avail_out&&this.flush===Q.Z_FINISH)return this._error("unexpected end of file"),!1;break;case Q.Z_STREAM_END:break;case Q.Z_NEED_DICT:return this._error(null==this.dictionary?"Missing dictionary":"Bad dictionary"),!1;default:return this._error("Zlib error"),!1}return!0},aA.prototype._after=function(){if(this._checkError()){var AA=this.strm.avail_out,L=this.strm.avail_in;this.write_in_progress=!1,this.callback(L,AA),this.pending_close&&this.close()}},aA.prototype._error=function(AA){this.strm.msg&&(AA=this.strm.msg),this.onerror(AA,this.err),this.write_in_progress=!1,this.pending_close&&this.close()},aA.prototype.init=function(AA,L,P,rA,QA){I(4===arguments.length||5===arguments.length,"init(windowBits, level, memLevel, strategy, [dictionary])"),I(AA>=8&&AA<=15,"invalid windowBits"),I(L>=-1&&L<=9,"invalid compression level"),I(P>=1&&P<=9,"invalid memlevel"),I(rA===Q.Z_FILTERED||rA===Q.Z_HUFFMAN_ONLY||rA===Q.Z_RLE||rA===Q.Z_FIXED||rA===Q.Z_DEFAULT_STRATEGY,"invalid strategy"),this._init(L,AA,P,rA,QA),this._setDictionary()},aA.prototype.params=function(){throw new Error("deflateParams Not supported")},aA.prototype.reset=function(){this._reset(),this._setDictionary()},aA.prototype._init=function(AA,L,P,rA,QA){switch(this.level=AA,this.windowBits=L,this.memLevel=P,this.strategy=rA,this.flush=Q.Z_NO_FLUSH,this.err=Q.Z_OK,(this.mode===Q.GZIP||this.mode===Q.GUNZIP)&&(this.windowBits+=16),this.mode===Q.UNZIP&&(this.windowBits+=32),(this.mode===Q.DEFLATERAW||this.mode===Q.INFLATERAW)&&(this.windowBits=-1*this.windowBits),this.strm=new N,this.mode){case Q.DEFLATE:case Q.GZIP:case Q.DEFLATERAW:this.err=K.deflateInit2(this.strm,this.level,Q.Z_DEFLATED,this.windowBits,this.memLevel,this.strategy);break;case Q.INFLATE:case Q.GUNZIP:case Q.INFLATERAW:case Q.UNZIP:this.err=v.inflateInit2(this.strm,this.windowBits);break;default:throw new Error("Unknown mode "+this.mode)}this.err!==Q.Z_OK&&this._error("Init error"),this.dictionary=QA,this.write_in_progress=!1,this.init_done=!0},aA.prototype._setDictionary=function(){if(null!=this.dictionary){switch(this.err=Q.Z_OK,this.mode){case Q.DEFLATE:case Q.DEFLATERAW:this.err=K.deflateSetDictionary(this.strm,this.dictionary)}this.err!==Q.Z_OK&&this._error("Failed to set dictionary")}},aA.prototype._reset=function(){switch(this.err=Q.Z_OK,this.mode){case Q.DEFLATE:case Q.DEFLATERAW:case Q.GZIP:this.err=K.deflateReset(this.strm);break;case Q.INFLATE:case Q.INFLATERAW:case Q.GUNZIP:this.err=v.inflateReset(this.strm)}this.err!==Q.Z_OK&&this._error("Failed to reset stream")},Q.Zlib=aA},6729(eA,Q,f){"use strict";var t=f(9964),g=f(783).Buffer,I=f(9760).Transform,N=f(2908),K=f(7187),v=f(7801).ok,B=f(783).kMaxLength,j="Cannot create final Buffer. It would be larger than 0x"+B.toString(16)+" bytes";N.Z_MIN_WINDOWBITS=8,N.Z_MAX_WINDOWBITS=15,N.Z_DEFAULT_WINDOWBITS=15,N.Z_MIN_CHUNK=64,N.Z_MAX_CHUNK=1/0,N.Z_DEFAULT_CHUNK=16384,N.Z_MIN_MEMLEVEL=1,N.Z_MAX_MEMLEVEL=9,N.Z_DEFAULT_MEMLEVEL=8,N.Z_MIN_LEVEL=-1,N.Z_MAX_LEVEL=9,N.Z_DEFAULT_LEVEL=N.Z_DEFAULT_COMPRESSION;for(var tA=Object.keys(N),w=0;w=B?J=new RangeError(j):cA=g.concat(UA,yA),UA=[],kA.close(),fA(J,cA)}kA.on("error",function Ee(cA){kA.removeListener("end",HA),kA.removeListener("readable",xA),fA(cA)}),kA.on("end",HA),kA.end(hA),xA()}function NA(kA,hA){if("string"==typeof hA&&(hA=g.from(hA)),!g.isBuffer(hA))throw new TypeError("Not a string or buffer");return kA._processChunk(hA,kA._finishFlushFlag)}function oA(kA){if(!(this instanceof oA))return new oA(kA);OA.call(this,kA,N.DEFLATE)}function uA(kA){if(!(this instanceof uA))return new uA(kA);OA.call(this,kA,N.INFLATE)}function dA(kA){if(!(this instanceof dA))return new dA(kA);OA.call(this,kA,N.GZIP)}function RA(kA){if(!(this instanceof RA))return new RA(kA);OA.call(this,kA,N.GUNZIP)}function nA(kA){if(!(this instanceof nA))return new nA(kA);OA.call(this,kA,N.DEFLATERAW)}function H(kA){if(!(this instanceof H))return new H(kA);OA.call(this,kA,N.INFLATERAW)}function pA(kA){if(!(this instanceof pA))return new pA(kA);OA.call(this,kA,N.UNZIP)}function z(kA){return kA===N.Z_NO_FLUSH||kA===N.Z_PARTIAL_FLUSH||kA===N.Z_SYNC_FLUSH||kA===N.Z_FULL_FLUSH||kA===N.Z_FINISH||kA===N.Z_BLOCK}function OA(kA,hA){var fA=this;if(this._opts=kA=kA||{},this._chunkSize=kA.chunkSize||Q.Z_DEFAULT_CHUNK,I.call(this,kA),kA.flush&&!z(kA.flush))throw new Error("Invalid flush flag: "+kA.flush);if(kA.finishFlush&&!z(kA.finishFlush))throw new Error("Invalid flush flag: "+kA.finishFlush);if(this._flushFlag=kA.flush||N.Z_NO_FLUSH,this._finishFlushFlag=typeof kA.finishFlush<"u"?kA.finishFlush:N.Z_FINISH,kA.chunkSize&&(kA.chunkSizeQ.Z_MAX_CHUNK))throw new Error("Invalid chunk size: "+kA.chunkSize);if(kA.windowBits&&(kA.windowBitsQ.Z_MAX_WINDOWBITS))throw new Error("Invalid windowBits: "+kA.windowBits);if(kA.level&&(kA.levelQ.Z_MAX_LEVEL))throw new Error("Invalid compression level: "+kA.level);if(kA.memLevel&&(kA.memLevelQ.Z_MAX_MEMLEVEL))throw new Error("Invalid memLevel: "+kA.memLevel);if(kA.strategy&&kA.strategy!=Q.Z_FILTERED&&kA.strategy!=Q.Z_HUFFMAN_ONLY&&kA.strategy!=Q.Z_RLE&&kA.strategy!=Q.Z_FIXED&&kA.strategy!=Q.Z_DEFAULT_STRATEGY)throw new Error("Invalid strategy: "+kA.strategy);if(kA.dictionary&&!g.isBuffer(kA.dictionary))throw new Error("Invalid dictionary: it should be a Buffer instance");this._handle=new N.Zlib(hA);var UA=this;this._hadError=!1,this._handle.onerror=function(Ee,HA){wA(UA),UA._hadError=!0;var cA=new Error(Ee);cA.errno=HA,cA.code=Q.codes[HA],UA.emit("error",cA)};var yA=Q.Z_DEFAULT_COMPRESSION;"number"==typeof kA.level&&(yA=kA.level);var xA=Q.Z_DEFAULT_STRATEGY;"number"==typeof kA.strategy&&(xA=kA.strategy),this._handle.init(kA.windowBits||Q.Z_DEFAULT_WINDOWBITS,yA,kA.memLevel||Q.Z_DEFAULT_MEMLEVEL,xA,kA.dictionary),this._buffer=g.allocUnsafe(this._chunkSize),this._offset=0,this._level=yA,this._strategy=xA,this.once("end",this.close),Object.defineProperty(this,"_closed",{get:function(){return!fA._handle},configurable:!0,enumerable:!0})}function wA(kA,hA){hA&&t.nextTick(hA),kA._handle&&(kA._handle.close(),kA._handle=null)}function VA(kA){kA.emit("close")}Object.defineProperty(Q,"codes",{enumerable:!0,value:Object.freeze(AA),writable:!1}),Q.Deflate=oA,Q.Inflate=uA,Q.Gzip=dA,Q.Gunzip=RA,Q.DeflateRaw=nA,Q.InflateRaw=H,Q.Unzip=pA,Q.createDeflate=function(kA){return new oA(kA)},Q.createInflate=function(kA){return new uA(kA)},Q.createDeflateRaw=function(kA){return new nA(kA)},Q.createInflateRaw=function(kA){return new H(kA)},Q.createGzip=function(kA){return new dA(kA)},Q.createGunzip=function(kA){return new RA(kA)},Q.createUnzip=function(kA){return new pA(kA)},Q.deflate=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new oA(hA),kA,fA)},Q.deflateSync=function(kA,hA){return NA(new oA(hA),kA)},Q.gzip=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new dA(hA),kA,fA)},Q.gzipSync=function(kA,hA){return NA(new dA(hA),kA)},Q.deflateRaw=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new nA(hA),kA,fA)},Q.deflateRawSync=function(kA,hA){return NA(new nA(hA),kA)},Q.unzip=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new pA(hA),kA,fA)},Q.unzipSync=function(kA,hA){return NA(new pA(hA),kA)},Q.inflate=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new uA(hA),kA,fA)},Q.inflateSync=function(kA,hA){return NA(new uA(hA),kA)},Q.gunzip=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new RA(hA),kA,fA)},Q.gunzipSync=function(kA,hA){return NA(new RA(hA),kA)},Q.inflateRaw=function(kA,hA,fA){return"function"==typeof hA&&(fA=hA,hA={}),QA(new H(hA),kA,fA)},Q.inflateRawSync=function(kA,hA){return NA(new H(hA),kA)},K.inherits(OA,I),OA.prototype.params=function(kA,hA,fA){if(kAQ.Z_MAX_LEVEL)throw new RangeError("Invalid compression level: "+kA);if(hA!=Q.Z_FILTERED&&hA!=Q.Z_HUFFMAN_ONLY&&hA!=Q.Z_RLE&&hA!=Q.Z_FIXED&&hA!=Q.Z_DEFAULT_STRATEGY)throw new TypeError("Invalid strategy: "+hA);if(this._level!==kA||this._strategy!==hA){var UA=this;this.flush(N.Z_SYNC_FLUSH,function(){v(UA._handle,"zlib binding closed"),UA._handle.params(kA,hA),UA._hadError||(UA._level=kA,UA._strategy=hA,fA&&fA())})}else t.nextTick(fA)},OA.prototype.reset=function(){return v(this._handle,"zlib binding closed"),this._handle.reset()},OA.prototype._flush=function(kA){this._transform(g.alloc(0),"",kA)},OA.prototype.flush=function(kA,hA){var fA=this,UA=this._writableState;("function"==typeof kA||void 0===kA&&!hA)&&(hA=kA,kA=N.Z_FULL_FLUSH),UA.ended?hA&&t.nextTick(hA):UA.ending?hA&&this.once("end",hA):UA.needDrain?hA&&this.once("drain",function(){return fA.flush(kA,hA)}):(this._flushFlag=kA,this.write(g.alloc(0),"",hA))},OA.prototype.close=function(kA){wA(this,kA),t.nextTick(VA,this)},OA.prototype._transform=function(kA,hA,fA){var UA,yA=this._writableState,Ee=(yA.ending||yA.ended)&&(!kA||yA.length===kA.length);return null===kA||g.isBuffer(kA)?this._handle?(Ee?UA=this._finishFlushFlag:(UA=this._flushFlag,kA.length>=yA.length&&(this._flushFlag=this._opts.flush||N.Z_NO_FLUSH)),void this._processChunk(kA,UA,fA)):fA(new Error("zlib binding closed")):fA(new Error("invalid input"))},OA.prototype._processChunk=function(kA,hA,fA){var UA=kA&&kA.length,yA=this._chunkSize-this._offset,xA=0,Ee=this,HA="function"==typeof fA;if(!HA){var U,cA=[],J=0;this.on("error",function($A){U=$A}),v(this._handle,"zlib binding closed");do{var O=this._handle.writeSync(hA,kA,xA,UA,this._buffer,this._offset,yA)}while(!this._hadError&&JA(O[0],O[1]));if(this._hadError)throw U;if(J>=B)throw wA(this),new RangeError(j);var lA=g.concat(cA,J);return wA(this),lA}v(this._handle,"zlib binding closed");var LA=this._handle.write(hA,kA,xA,UA,this._buffer,this._offset,yA);function JA($A,IA){if(this&&(this.buffer=null,this.callback=null),!Ee._hadError){var gA=yA-IA;if(v(gA>=0,"have should not go down"),gA>0){var C=Ee._buffer.slice(Ee._offset,Ee._offset+gA);Ee._offset+=gA,HA?Ee.push(C):(cA.push(C),J+=C.length)}if((0===IA||Ee._offset>=Ee._chunkSize)&&(yA=Ee._chunkSize,Ee._offset=0,Ee._buffer=g.allocUnsafe(Ee._chunkSize)),0===IA){if(xA+=UA-$A,UA=$A,!HA)return!0;var b=Ee._handle.write(hA,kA,xA,UA,Ee._buffer,Ee._offset,Ee._chunkSize);return b.callback=JA,void(b.buffer=kA)}if(!HA)return!1;fA()}}LA.buffer=kA,LA.callback=JA},K.inherits(oA,OA),K.inherits(uA,OA),K.inherits(dA,OA),K.inherits(RA,OA),K.inherits(nA,OA),K.inherits(H,OA),K.inherits(pA,OA)},7802(eA,Q,f){"use strict";var t=f(5049),g=f(3036),I=f(78),N=f(1909);eA.exports=N||t.call(I,g)},8619(eA,Q,f){"use strict";var t=f(5049),g=f(3036),I=f(7802);eA.exports=function(){return I(t,g,arguments)}},3036(eA){"use strict";eA.exports=Function.prototype.apply},78(eA){"use strict";eA.exports=Function.prototype.call},6688(eA,Q,f){"use strict";var t=f(5049),g=f(6785),I=f(78),N=f(7802);eA.exports=function(v){if(v.length<1||"function"!=typeof v[0])throw new g("a function is required");return N(t,I,v)}},1909(eA){"use strict";eA.exports=typeof Reflect<"u"&&Reflect&&Reflect.apply},7913(eA,Q,f){"use strict";var t=f(8651),g=f(6601),I=g(t("String.prototype.indexOf"));eA.exports=function(K,v){var B=t(K,!!v);return"function"==typeof B&&I(K,".prototype.")>-1?g(B):B}},6601(eA,Q,f){"use strict";var t=f(6255),g=f(6649),I=f(6688),N=f(8619);eA.exports=function(v){var B=I(arguments),j=1+v.length-(arguments.length-1);return t(B,j>0?j:0,!0)},g?g(eA.exports,"apply",{value:N}):eA.exports.apply=N},2774(eA,Q,f){"use strict";var t=f(8651),g=f(6688),I=g([t("%String.prototype.indexOf%")]);eA.exports=function(K,v){var B=t(K,!!v);return"function"==typeof B&&I(K,".prototype.")>-1?g([B]):B}},1613(eA,Q,f){var t=f(783).Buffer,g=function(){"use strict";function I(L,P){return null!=P&&L instanceof P}var N,K,v;try{N=Map}catch{N=function(){}}try{K=Set}catch{K=function(){}}try{v=Promise}catch{v=function(){}}function B(L,P,rA,QA,NA){"object"==typeof P&&(rA=P.depth,QA=P.prototype,NA=P.includeNonEnumerable,P=P.circular);var oA=[],uA=[],dA=typeof t<"u";return typeof P>"u"&&(P=!0),typeof rA>"u"&&(rA=1/0),function RA(nA,H){if(null===nA)return null;if(0===H)return nA;var pA,z;if("object"!=typeof nA)return nA;if(I(nA,N))pA=new N;else if(I(nA,K))pA=new K;else if(I(nA,v))pA=new v(function(xA,Ee){nA.then(function(HA){xA(RA(HA,H-1))},function(HA){Ee(RA(HA,H-1))})});else if(B.__isArray(nA))pA=[];else if(B.__isRegExp(nA))pA=new RegExp(nA.source,AA(nA)),nA.lastIndex&&(pA.lastIndex=nA.lastIndex);else if(B.__isDate(nA))pA=new Date(nA.getTime());else{if(dA&&t.isBuffer(nA))return pA=t.allocUnsafe?t.allocUnsafe(nA.length):new t(nA.length),nA.copy(pA),pA;I(nA,Error)?pA=Object.create(nA):typeof QA>"u"?(z=Object.getPrototypeOf(nA),pA=Object.create(z)):(pA=Object.create(QA),z=QA)}if(P){var OA=oA.indexOf(nA);if(-1!=OA)return uA[OA];oA.push(nA),uA.push(pA)}for(var wA in I(nA,N)&&nA.forEach(function(xA,Ee){var HA=RA(Ee,H-1),cA=RA(xA,H-1);pA.set(HA,cA)}),I(nA,K)&&nA.forEach(function(xA){var Ee=RA(xA,H-1);pA.add(Ee)}),nA){var VA;z&&(VA=Object.getOwnPropertyDescriptor(z,wA)),(!VA||null!=VA.set)&&(pA[wA]=RA(nA[wA],H-1))}if(Object.getOwnPropertySymbols){var kA=Object.getOwnPropertySymbols(nA);for(wA=0;wA3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new I("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new I("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new I("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new I("`loose`, if provided, must be a boolean");var tA=arguments.length>3?arguments[3]:null,w=arguments.length>4?arguments[4]:null,aA=arguments.length>5?arguments[5]:null,AA=arguments.length>6&&arguments[6],L=!!N&&N(v,B);if(t)t(v,B,{configurable:null===aA&&L?L.configurable:!aA,enumerable:null===tA&&L?L.enumerable:!tA,value:j,writable:null===w&&L?L.writable:!w});else{if(!AA&&(tA||w||aA))throw new g("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");v[B]=j}}},5421(eA,Q,f){"use strict";var t=f(5643),g="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),I=Object.prototype.toString,N=Array.prototype.concat,K=f(9295),B=f(8890)(),j=function(w,aA,AA,L){if(aA in w)if(!0===L){if(w[aA]===AA)return}else if(!function(w){return"function"==typeof w&&"[object Function]"===I.call(w)}(L)||!L())return;B?K(w,aA,AA,!0):K(w,aA,AA)},tA=function(w,aA){var AA=arguments.length>2?arguments[2]:{},L=t(aA);g&&(L=N.call(L,Object.getOwnPropertySymbols(aA)));for(var P=0;P0&&z.length>H&&!z.warned){z.warned=!0;var OA=new Error("Possible EventEmitter memory leak detected. "+z.length+" "+String(dA)+" listeners added. Use emitter.setMaxListeners() to increase limit");OA.name="MaxListenersExceededWarning",OA.emitter=uA,OA.type=dA,OA.count=z.length,function g(uA){console&&console.warn&&console.warn(uA)}(OA)}return uA}function tA(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function w(uA,dA,RA){var nA={fired:!1,wrapFn:void 0,target:uA,type:dA,listener:RA},H=tA.bind(nA);return H.listener=RA,nA.wrapFn=H,H}function aA(uA,dA,RA){var nA=uA._events;if(void 0===nA)return[];var H=nA[dA];return void 0===H?[]:"function"==typeof H?RA?[H.listener||H]:[H]:RA?function rA(uA){for(var dA=new Array(uA.length),RA=0;RA0&&(z=RA[0]),z instanceof Error)throw z;var OA=new Error("Unhandled error."+(z?" ("+z.message+")":""));throw OA.context=z,OA}var wA=pA[dA];if(void 0===wA)return!1;if("function"==typeof wA)f(wA,this,RA);else{var VA=wA.length,kA=L(wA,VA);for(nA=0;nA=0;z--)if(nA[z]===RA||nA[z].listener===RA){OA=nA[z].listener,pA=z;break}if(pA<0)return this;0===pA?nA.shift():function P(uA,dA){for(;dA+1=0;H--)this.removeListener(dA,RA[H]);return this},N.prototype.listeners=function(dA){return aA(this,dA,!0)},N.prototype.rawListeners=function(dA){return aA(this,dA,!1)},N.listenerCount=function(uA,dA){return"function"==typeof uA.listenerCount?uA.listenerCount(dA):AA.call(uA,dA)},N.prototype.listenerCount=AA,N.prototype.eventNames=function(){return this._eventsCount>0?t(this._events):[]}},2022(eA,Q,f){"use strict";eA.exports=function(){if("object"==typeof globalThis)return globalThis;var t;try{t=this||new Function("return this")()}catch{if("object"==typeof window)return window;if("object"==typeof self)return self;if(typeof f.g<"u")return f.g}return t}()},453(eA){"use strict";eA.exports=function Q(f,t){if(f===t)return!0;if(f&&t&&"object"==typeof f&&"object"==typeof t){if(f.constructor!==t.constructor)return!1;var g,I,N;if(Array.isArray(f)){if((g=f.length)!=t.length)return!1;for(I=g;0!==I--;)if(!Q(f[I],t[I]))return!1;return!0}if(f.constructor===RegExp)return f.source===t.source&&f.flags===t.flags;if(f.valueOf!==Object.prototype.valueOf)return f.valueOf()===t.valueOf();if(f.toString!==Object.prototype.toString)return f.toString()===t.toString();if((g=(N=Object.keys(f)).length)!==Object.keys(t).length)return!1;for(I=g;0!==I--;)if(!Object.prototype.hasOwnProperty.call(t,N[I]))return!1;for(I=g;0!==I--;){var K=N[I];if(!Q(f[K],t[K]))return!1}return!0}return f!=f&&t!=t}},8404(eA,Q,f){"use strict";var t=f(3746),g=Object.prototype.toString,I=Object.prototype.hasOwnProperty;eA.exports=function(tA,w,aA){if(!t(w))throw new TypeError("iterator must be a function");var AA;arguments.length>=3&&(AA=aA),function B(j){return"[object Array]"===g.call(j)}(tA)?function(tA,w,aA){for(var AA=0,L=tA.length;AAQ},8651(eA,Q,f){"use strict";var t,g=f(5846),I=f(5293),N=f(9055),K=f(8888),v=f(7900),B=f(7770),j=f(6785),tA=f(4055),w=f(716),aA=f(7450),AA=f(3774),L=f(7552),P=f(5874),rA=f(9292),QA=f(6071),NA=Function,oA=function(gA){try{return NA('"use strict"; return ('+gA+").constructor;")()}catch{}},uA=f(8109),dA=f(6649),RA=function(){throw new j},nA=uA?function(){try{return RA}catch{try{return uA(arguments,"callee").get}catch{return RA}}}():RA,H=f(3257)(),pA=f(7106),z=f(3766),OA=f(6822),wA=f(3036),VA=f(78),kA={},hA=typeof Uint8Array>"u"||!pA?t:pA(Uint8Array),fA={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?t:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?t:ArrayBuffer,"%ArrayIteratorPrototype%":H&&pA?pA([][Symbol.iterator]()):t,"%AsyncFromSyncIteratorPrototype%":t,"%AsyncFunction%":kA,"%AsyncGenerator%":kA,"%AsyncGeneratorFunction%":kA,"%AsyncIteratorPrototype%":kA,"%Atomics%":typeof Atomics>"u"?t:Atomics,"%BigInt%":typeof BigInt>"u"?t:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?t:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?t:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?t:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":I,"%eval%":eval,"%EvalError%":N,"%Float16Array%":typeof Float16Array>"u"?t:Float16Array,"%Float32Array%":typeof Float32Array>"u"?t:Float32Array,"%Float64Array%":typeof Float64Array>"u"?t:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?t:FinalizationRegistry,"%Function%":NA,"%GeneratorFunction%":kA,"%Int8Array%":typeof Int8Array>"u"?t:Int8Array,"%Int16Array%":typeof Int16Array>"u"?t:Int16Array,"%Int32Array%":typeof Int32Array>"u"?t:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":H&&pA?pA(pA([][Symbol.iterator]())):t,"%JSON%":"object"==typeof JSON?JSON:t,"%Map%":typeof Map>"u"?t:Map,"%MapIteratorPrototype%":typeof Map>"u"||!H||!pA?t:pA((new Map)[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":g,"%Object.getOwnPropertyDescriptor%":uA,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?t:Promise,"%Proxy%":typeof Proxy>"u"?t:Proxy,"%RangeError%":K,"%ReferenceError%":v,"%Reflect%":typeof Reflect>"u"?t:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?t:Set,"%SetIteratorPrototype%":typeof Set>"u"||!H||!pA?t:pA((new Set)[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?t:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":H&&pA?pA(""[Symbol.iterator]()):t,"%Symbol%":H?Symbol:t,"%SyntaxError%":B,"%ThrowTypeError%":nA,"%TypedArray%":hA,"%TypeError%":j,"%Uint8Array%":typeof Uint8Array>"u"?t:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?t:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?t:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?t:Uint32Array,"%URIError%":tA,"%WeakMap%":typeof WeakMap>"u"?t:WeakMap,"%WeakRef%":typeof WeakRef>"u"?t:WeakRef,"%WeakSet%":typeof WeakSet>"u"?t:WeakSet,"%Function.prototype.call%":VA,"%Function.prototype.apply%":wA,"%Object.defineProperty%":dA,"%Object.getPrototypeOf%":z,"%Math.abs%":w,"%Math.floor%":aA,"%Math.max%":AA,"%Math.min%":L,"%Math.pow%":P,"%Math.round%":rA,"%Math.sign%":QA,"%Reflect.getPrototypeOf%":OA};if(pA)try{null.error}catch(gA){var UA=pA(pA(gA));fA["%Error.prototype%"]=UA}var yA=function gA(C){var b;if("%AsyncFunction%"===C)b=oA("async function () {}");else if("%GeneratorFunction%"===C)b=oA("function* () {}");else if("%AsyncGeneratorFunction%"===C)b=oA("async function* () {}");else if("%AsyncGenerator%"===C){var R=gA("%AsyncGeneratorFunction%");R&&(b=R.prototype)}else if("%AsyncIteratorPrototype%"===C){var M=gA("%AsyncGenerator%");M&&pA&&(b=pA(M.prototype))}return fA[C]=b,b},xA={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},Ee=f(5049),HA=f(5215),cA=Ee.call(VA,Array.prototype.concat),J=Ee.call(wA,Array.prototype.splice),U=Ee.call(VA,String.prototype.replace),O=Ee.call(VA,String.prototype.slice),lA=Ee.call(VA,RegExp.prototype.exec),LA=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,JA=/\\(\\)?/g,IA=function(C,b){var M,R=C;if(HA(xA,R)&&(R="%"+(M=xA[R])[0]+"%"),HA(fA,R)){var D=fA[R];if(D===kA&&(D=yA(R)),typeof D>"u"&&!b)throw new j("intrinsic "+C+" exists, but is not available. Please file an issue!");return{alias:M,name:R,value:D}}throw new B("intrinsic "+C+" does not exist!")};eA.exports=function(C,b){if("string"!=typeof C||0===C.length)throw new j("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof b)throw new j('"allowMissing" argument must be a boolean');if(null===lA(/^%?[^%]*%?$/,C))throw new B("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var R=function(C){var b=O(C,0,1),R=O(C,-1);if("%"===b&&"%"!==R)throw new B("invalid intrinsic syntax, expected closing `%`");if("%"===R&&"%"!==b)throw new B("invalid intrinsic syntax, expected opening `%`");var M=[];return U(C,LA,function(D,X,YA,KA){M[M.length]=YA?U(KA,JA,"$1"):X||D}),M}(C),M=R.length>0?R[0]:"",D=IA("%"+M+"%",b),X=D.name,YA=D.value,KA=!1,bA=D.alias;bA&&(M=bA[0],J(R,cA([0,1],bA)));for(var le=1,ve=!0;le=R.length){var Oe=uA(YA,Ne);YA=(ve=!!Oe)&&"get"in Oe&&!("originalValue"in Oe.get)?Oe.get:YA[Ne]}else ve=HA(YA,Ne),YA=YA[Ne];ve&&!KA&&(fA[X]=YA)}}return YA}},3766(eA,Q,f){"use strict";var t=f(5846);eA.exports=t.getPrototypeOf||null},6822(eA){"use strict";eA.exports=typeof Reflect<"u"&&Reflect.getPrototypeOf||null},7106(eA,Q,f){"use strict";var t=f(6822),g=f(3766),I=f(9302);eA.exports=t?function(K){return t(K)}:g?function(K){if(!K||"object"!=typeof K&&"function"!=typeof K)throw new TypeError("getProto: not an object");return g(K)}:I?function(K){return I(K)}:null},5567(eA){"use strict";eA.exports=Object.getOwnPropertyDescriptor},8109(eA,Q,f){"use strict";var t=f(5567);if(t)try{t([],"length")}catch{t=null}eA.exports=t},8890(eA,Q,f){"use strict";var t=f(6649),g=function(){return!!t};g.hasArrayLengthDefineBug=function(){if(!t)return null;try{return 1!==t([],"length",{value:1}).length}catch{return!0}},eA.exports=g},3257(eA,Q,f){"use strict";var t=typeof Symbol<"u"&&Symbol,g=f(2843);eA.exports=function(){return"function"==typeof t&&"function"==typeof Symbol&&"symbol"==typeof t("foo")&&"symbol"==typeof Symbol("bar")&&g()}},2843(eA){"use strict";eA.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var f={},t=Symbol("test"),g=Object(t);if("string"==typeof t||"[object Symbol]"!==Object.prototype.toString.call(t)||"[object Symbol]"!==Object.prototype.toString.call(g))return!1;for(var N in f[t]=42,f)return!1;if("function"==typeof Object.keys&&0!==Object.keys(f).length||"function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(f).length)return!1;var K=Object.getOwnPropertySymbols(f);if(1!==K.length||K[0]!==t||!Object.prototype.propertyIsEnumerable.call(f,t))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var v=Object.getOwnPropertyDescriptor(f,t);if(42!==v.value||!0!==v.enumerable)return!1}return!0}},6626(eA,Q,f){"use strict";var t=f(2843);eA.exports=function(){return t()&&!!Symbol.toStringTag}},5215(eA,Q,f){"use strict";var t=Function.prototype.call,g=Object.prototype.hasOwnProperty,I=f(5049);eA.exports=I.call(t,g)},9029(eA,Q){Q.read=function(f,t,g,I,N){var K,v,B=8*N-I-1,j=(1<>1,w=-7,aA=g?N-1:0,AA=g?-1:1,L=f[t+aA];for(aA+=AA,K=L&(1<<-w)-1,L>>=-w,w+=B;w>0;K=256*K+f[t+aA],aA+=AA,w-=8);for(v=K&(1<<-w)-1,K>>=-w,w+=I;w>0;v=256*v+f[t+aA],aA+=AA,w-=8);if(0===K)K=1-tA;else{if(K===j)return v?NaN:1/0*(L?-1:1);v+=Math.pow(2,I),K-=tA}return(L?-1:1)*v*Math.pow(2,K-I)},Q.write=function(f,t,g,I,N,K){var v,B,j,tA=8*K-N-1,w=(1<>1,AA=23===N?Math.pow(2,-24)-Math.pow(2,-77):0,L=I?0:K-1,P=I?1:-1,rA=t<0||0===t&&1/t<0?1:0;for(t=Math.abs(t),isNaN(t)||t===1/0?(B=isNaN(t)?1:0,v=w):(v=Math.floor(Math.log(t)/Math.LN2),t*(j=Math.pow(2,-v))<1&&(v--,j*=2),(t+=v+aA>=1?AA/j:AA*Math.pow(2,1-aA))*j>=2&&(v++,j/=2),v+aA>=w?(B=0,v=w):v+aA>=1?(B=(t*j-1)*Math.pow(2,N),v+=aA):(B=t*Math.pow(2,aA-1)*Math.pow(2,N),v=0));N>=8;f[g+L]=255&B,L+=P,B/=256,N-=8);for(v=v<0;f[g+L]=255&v,L+=P,v/=256,tA-=8);f[g+L-P]|=128*rA}},9784(eA){eA.exports="function"==typeof Object.create?function(f,t){t&&(f.super_=t,f.prototype=Object.create(t.prototype,{constructor:{value:f,enumerable:!1,writable:!0,configurable:!0}}))}:function(f,t){if(t){f.super_=t;var g=function(){};g.prototype=t.prototype,f.prototype=new g,f.prototype.constructor=f}}},7906(eA,Q,f){"use strict";var t=f(6626)(),I=f(2774)("Object.prototype.toString"),N=function(j){return!(t&&j&&"object"==typeof j&&Symbol.toStringTag in j)&&"[object Arguments]"===I(j)},K=function(j){return!!N(j)||null!==j&&"object"==typeof j&&"length"in j&&"number"==typeof j.length&&j.length>=0&&"[object Array]"!==I(j)&&"callee"in j&&"[object Function]"===I(j.callee)},v=function(){return N(arguments)}();N.isLegacyArguments=K,eA.exports=v?N:K},3746(eA){"use strict";var t,g,Q=Function.prototype.toString,f="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof f&&"function"==typeof Object.defineProperty)try{t=Object.defineProperty({},"length",{get:function(){throw g}}),g={},f(function(){throw 42},null,t)}catch(NA){NA!==g&&(f=null)}else f=null;var I=/^\s*class\b/,N=function(oA){try{var uA=Q.call(oA);return I.test(uA)}catch{return!1}},K=function(oA){try{return!N(oA)&&(Q.call(oA),!0)}catch{return!1}},v=Object.prototype.toString,L="function"==typeof Symbol&&!!Symbol.toStringTag,P=!(0 in[,]),rA=function(){return!1};if("object"==typeof document){var QA=document.all;v.call(QA)===v.call(document.all)&&(rA=function(oA){if((P||!oA)&&(typeof oA>"u"||"object"==typeof oA))try{var uA=v.call(oA);return("[object HTMLAllCollection]"===uA||"[object HTML document.all class]"===uA||"[object HTMLCollection]"===uA||"[object Object]"===uA)&&null==oA("")}catch{}return!1})}eA.exports=f?function(oA){if(rA(oA))return!0;if(!oA||"function"!=typeof oA&&"object"!=typeof oA)return!1;try{f(oA,null,t)}catch(uA){if(uA!==g)return!1}return!N(oA)&&K(oA)}:function(oA){if(rA(oA))return!0;if(!oA||"function"!=typeof oA&&"object"!=typeof oA)return!1;if(L)return K(oA);if(N(oA))return!1;var uA=v.call(oA);return!("[object Function]"!==uA&&"[object GeneratorFunction]"!==uA&&!/^\[object HTML/.test(uA))&&K(oA)}},4610(eA,Q,f){"use strict";var t=f(2774),I=f(8843)(/^\s*(?:function)?\*/),N=f(6626)(),K=f(7106),v=t("Object.prototype.toString"),B=t("Function.prototype.toString"),j=f(9294).c;eA.exports=function(w){if("function"!=typeof w)return!1;if(I(B(w)))return!0;if(!N)return"[object GeneratorFunction]"===v(w);if(!K)return!1;var AA=j();return AA&&K(w)===AA.prototype}},2621(eA){"use strict";eA.exports=function(f){return f!=f}},7051(eA,Q,f){"use strict";var t=f(6601),g=f(5421),I=f(2621),N=f(1320),K=f(5074),v=t(N(),Number);g(v,{getPolyfill:N,implementation:I,shim:K}),eA.exports=v},1320(eA,Q,f){"use strict";var t=f(2621);eA.exports=function(){return Number.isNaN&&Number.isNaN(NaN)&&!Number.isNaN("a")?Number.isNaN:t}},5074(eA,Q,f){"use strict";var t=f(5421),g=f(1320);eA.exports=function(){var N=g();return t(Number,{isNaN:N},{isNaN:function(){return Number.isNaN!==N}}),N}},1689(eA,Q,f){"use strict";var K,t=f(2774),g=f(6626)(),I=f(5215),N=f(8109);if(g){var v=t("RegExp.prototype.exec"),B={},j=function(){throw B},tA={toString:j,valueOf:j};"symbol"==typeof Symbol.toPrimitive&&(tA[Symbol.toPrimitive]=j),K=function(L){if(!L||"object"!=typeof L)return!1;var P=N(L,"lastIndex");if(!P||!I(P,"value"))return!1;try{v(L,tA)}catch(QA){return QA===B}}}else{var w=t("Object.prototype.toString");K=function(L){return!(!L||"object"!=typeof L&&"function"!=typeof L)&&"[object RegExp]"===w(L)}}eA.exports=K},6094(eA,Q,f){"use strict";var t=f(3381);eA.exports=function(I){return!!t(I)}},1632(eA,Q,f){var g,t=f(9964);!function(){"use strict";var I="input is invalid type",K="object"==typeof window,v=K?window:{};v.JS_MD5_NO_WINDOW&&(K=!1);var B=!K&&"object"==typeof self,j=!v.JS_MD5_NO_NODE_JS&&"object"==typeof t&&t.versions&&t.versions.node;j?v=f.g:B&&(v=self);var oA,tA=!v.JS_MD5_NO_COMMON_JS&&eA.exports,w=f.amdO,aA=!v.JS_MD5_NO_ARRAY_BUFFER&&typeof ArrayBuffer<"u",AA="0123456789abcdef".split(""),L=[128,32768,8388608,-2147483648],P=[0,8,16,24],rA=["hex","array","digest","buffer","arrayBuffer","base64"],QA="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""),NA=[];if(aA){var uA=new ArrayBuffer(68);oA=new Uint8Array(uA),NA=new Uint32Array(uA)}var dA=Array.isArray;(v.JS_MD5_NO_NODE_JS||!dA)&&(dA=function(fA){return"[object Array]"===Object.prototype.toString.call(fA)});var RA=ArrayBuffer.isView;aA&&(v.JS_MD5_NO_ARRAY_BUFFER_IS_VIEW||!RA)&&(RA=function(fA){return"object"==typeof fA&&fA.buffer&&fA.buffer.constructor===ArrayBuffer});var nA=function(fA){var UA=typeof fA;if("string"===UA)return[fA,!0];if("object"!==UA||null===fA)throw new Error(I);if(aA&&fA.constructor===ArrayBuffer)return[new Uint8Array(fA),!1];if(!dA(fA)&&!RA(fA))throw new Error(I);return[fA,!1]},H=function(fA){return function(UA){return new VA(!0).update(UA)[fA]()}},OA=function(fA){return function(UA,yA){return new kA(UA,!0).update(yA)[fA]()}};function VA(fA){if(fA)NA[0]=NA[16]=NA[1]=NA[2]=NA[3]=NA[4]=NA[5]=NA[6]=NA[7]=NA[8]=NA[9]=NA[10]=NA[11]=NA[12]=NA[13]=NA[14]=NA[15]=0,this.blocks=NA,this.buffer8=oA;else if(aA){var UA=new ArrayBuffer(68);this.buffer8=new Uint8Array(UA),this.blocks=new Uint32Array(UA)}else this.blocks=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];this.h0=this.h1=this.h2=this.h3=this.start=this.bytes=this.hBytes=0,this.finalized=this.hashed=!1,this.first=!0}function kA(fA,UA){var yA,xA=nA(fA);if(fA=xA[0],xA[1]){var J,Ee=[],HA=fA.length,cA=0;for(yA=0;yA>>6,Ee[cA++]=128|63&J):J<55296||J>=57344?(Ee[cA++]=224|J>>>12,Ee[cA++]=128|J>>>6&63,Ee[cA++]=128|63&J):(J=65536+((1023&J)<<10|1023&fA.charCodeAt(++yA)),Ee[cA++]=240|J>>>18,Ee[cA++]=128|J>>>12&63,Ee[cA++]=128|J>>>6&63,Ee[cA++]=128|63&J);fA=Ee}fA.length>64&&(fA=new VA(!0).update(fA).array());var U=[],O=[];for(yA=0;yA<64;++yA){var lA=fA[yA]||0;U[yA]=92^lA,O[yA]=54^lA}VA.call(this,UA),this.update(O),this.oKeyPad=U,this.inner=!0,this.sharedMemory=UA}VA.prototype.update=function(fA){if(this.finalized)throw new Error("finalize already called");for(var xA,HA,UA=nA(fA),yA=UA[1],Ee=0,cA=(fA=UA[0]).length,J=this.blocks,U=this.buffer8;Ee>>6,U[HA++]=128|63&xA):xA<55296||xA>=57344?(U[HA++]=224|xA>>>12,U[HA++]=128|xA>>>6&63,U[HA++]=128|63&xA):(xA=65536+((1023&xA)<<10|1023&fA.charCodeAt(++Ee)),U[HA++]=240|xA>>>18,U[HA++]=128|xA>>>12&63,U[HA++]=128|xA>>>6&63,U[HA++]=128|63&xA);else for(HA=this.start;Ee>>2]|=xA<>>2]|=(192|xA>>>6)<>>2]|=(128|63&xA)<=57344?(J[HA>>>2]|=(224|xA>>>12)<>>2]|=(128|xA>>>6&63)<>>2]|=(128|63&xA)<>>2]|=(240|xA>>>18)<>>2]|=(128|xA>>>12&63)<>>2]|=(128|xA>>>6&63)<>>2]|=(128|63&xA)<>>2]|=fA[Ee]<=64?(this.start=HA-64,this.hash(),this.hashed=!0):this.start=HA}return this.bytes>4294967295&&(this.hBytes+=this.bytes/4294967296|0,this.bytes=this.bytes%4294967296),this},VA.prototype.finalize=function(){if(!this.finalized){this.finalized=!0;var fA=this.blocks,UA=this.lastByteIndex;fA[UA>>>2]|=L[3&UA],UA>=56&&(this.hashed||this.hash(),fA[0]=fA[16],fA[16]=fA[1]=fA[2]=fA[3]=fA[4]=fA[5]=fA[6]=fA[7]=fA[8]=fA[9]=fA[10]=fA[11]=fA[12]=fA[13]=fA[14]=fA[15]=0),fA[14]=this.bytes<<3,fA[15]=this.hBytes<<3|this.bytes>>>29,this.hash()}},VA.prototype.hash=function(){var fA,UA,yA,xA,Ee,HA,cA=this.blocks;this.first?UA=((UA=((fA=((fA=cA[0]-680876937)<<7|fA>>>25)-271733879|0)^(yA=((yA=(-271733879^(xA=((xA=(-1732584194^2004318071&fA)+cA[1]-117830708)<<12|xA>>>20)+fA|0)&(-271733879^fA))+cA[2]-1126478375)<<17|yA>>>15)+xA|0)&(xA^fA))+cA[3]-1316259209)<<22|UA>>>10)+yA|0:(fA=this.h0,UA=this.h1,UA=((UA+=((fA=((fA+=((xA=this.h3)^UA&((yA=this.h2)^xA))+cA[0]-680876936)<<7|fA>>>25)+UA|0)^(yA=((yA+=(UA^(xA=((xA+=(yA^fA&(UA^yA))+cA[1]-389564586)<<12|xA>>>20)+fA|0)&(fA^UA))+cA[2]+606105819)<<17|yA>>>15)+xA|0)&(xA^fA))+cA[3]-1044525330)<<22|UA>>>10)+yA|0),UA=((UA+=((fA=((fA+=(xA^UA&(yA^xA))+cA[4]-176418897)<<7|fA>>>25)+UA|0)^(yA=((yA+=(UA^(xA=((xA+=(yA^fA&(UA^yA))+cA[5]+1200080426)<<12|xA>>>20)+fA|0)&(fA^UA))+cA[6]-1473231341)<<17|yA>>>15)+xA|0)&(xA^fA))+cA[7]-45705983)<<22|UA>>>10)+yA|0,UA=((UA+=((fA=((fA+=(xA^UA&(yA^xA))+cA[8]+1770035416)<<7|fA>>>25)+UA|0)^(yA=((yA+=(UA^(xA=((xA+=(yA^fA&(UA^yA))+cA[9]-1958414417)<<12|xA>>>20)+fA|0)&(fA^UA))+cA[10]-42063)<<17|yA>>>15)+xA|0)&(xA^fA))+cA[11]-1990404162)<<22|UA>>>10)+yA|0,UA=((UA+=((fA=((fA+=(xA^UA&(yA^xA))+cA[12]+1804603682)<<7|fA>>>25)+UA|0)^(yA=((yA+=(UA^(xA=((xA+=(yA^fA&(UA^yA))+cA[13]-40341101)<<12|xA>>>20)+fA|0)&(fA^UA))+cA[14]-1502002290)<<17|yA>>>15)+xA|0)&(xA^fA))+cA[15]+1236535329)<<22|UA>>>10)+yA|0,UA=((UA+=((xA=((xA+=(UA^yA&((fA=((fA+=(yA^xA&(UA^yA))+cA[1]-165796510)<<5|fA>>>27)+UA|0)^UA))+cA[6]-1069501632)<<9|xA>>>23)+fA|0)^fA&((yA=((yA+=(fA^UA&(xA^fA))+cA[11]+643717713)<<14|yA>>>18)+xA|0)^xA))+cA[0]-373897302)<<20|UA>>>12)+yA|0,UA=((UA+=((xA=((xA+=(UA^yA&((fA=((fA+=(yA^xA&(UA^yA))+cA[5]-701558691)<<5|fA>>>27)+UA|0)^UA))+cA[10]+38016083)<<9|xA>>>23)+fA|0)^fA&((yA=((yA+=(fA^UA&(xA^fA))+cA[15]-660478335)<<14|yA>>>18)+xA|0)^xA))+cA[4]-405537848)<<20|UA>>>12)+yA|0,UA=((UA+=((xA=((xA+=(UA^yA&((fA=((fA+=(yA^xA&(UA^yA))+cA[9]+568446438)<<5|fA>>>27)+UA|0)^UA))+cA[14]-1019803690)<<9|xA>>>23)+fA|0)^fA&((yA=((yA+=(fA^UA&(xA^fA))+cA[3]-187363961)<<14|yA>>>18)+xA|0)^xA))+cA[8]+1163531501)<<20|UA>>>12)+yA|0,UA=((UA+=((xA=((xA+=(UA^yA&((fA=((fA+=(yA^xA&(UA^yA))+cA[13]-1444681467)<<5|fA>>>27)+UA|0)^UA))+cA[2]-51403784)<<9|xA>>>23)+fA|0)^fA&((yA=((yA+=(fA^UA&(xA^fA))+cA[7]+1735328473)<<14|yA>>>18)+xA|0)^xA))+cA[12]-1926607734)<<20|UA>>>12)+yA|0,UA=((UA+=((HA=(xA=((xA+=((Ee=UA^yA)^(fA=((fA+=(Ee^xA)+cA[5]-378558)<<4|fA>>>28)+UA|0))+cA[8]-2022574463)<<11|xA>>>21)+fA|0)^fA)^(yA=((yA+=(HA^UA)+cA[11]+1839030562)<<16|yA>>>16)+xA|0))+cA[14]-35309556)<<23|UA>>>9)+yA|0,UA=((UA+=((HA=(xA=((xA+=((Ee=UA^yA)^(fA=((fA+=(Ee^xA)+cA[1]-1530992060)<<4|fA>>>28)+UA|0))+cA[4]+1272893353)<<11|xA>>>21)+fA|0)^fA)^(yA=((yA+=(HA^UA)+cA[7]-155497632)<<16|yA>>>16)+xA|0))+cA[10]-1094730640)<<23|UA>>>9)+yA|0,UA=((UA+=((HA=(xA=((xA+=((Ee=UA^yA)^(fA=((fA+=(Ee^xA)+cA[13]+681279174)<<4|fA>>>28)+UA|0))+cA[0]-358537222)<<11|xA>>>21)+fA|0)^fA)^(yA=((yA+=(HA^UA)+cA[3]-722521979)<<16|yA>>>16)+xA|0))+cA[6]+76029189)<<23|UA>>>9)+yA|0,UA=((UA+=((HA=(xA=((xA+=((Ee=UA^yA)^(fA=((fA+=(Ee^xA)+cA[9]-640364487)<<4|fA>>>28)+UA|0))+cA[12]-421815835)<<11|xA>>>21)+fA|0)^fA)^(yA=((yA+=(HA^UA)+cA[15]+530742520)<<16|yA>>>16)+xA|0))+cA[2]-995338651)<<23|UA>>>9)+yA|0,UA=((UA+=((xA=((xA+=(UA^((fA=((fA+=(yA^(UA|~xA))+cA[0]-198630844)<<6|fA>>>26)+UA|0)|~yA))+cA[7]+1126891415)<<10|xA>>>22)+fA|0)^((yA=((yA+=(fA^(xA|~UA))+cA[14]-1416354905)<<15|yA>>>17)+xA|0)|~fA))+cA[5]-57434055)<<21|UA>>>11)+yA|0,UA=((UA+=((xA=((xA+=(UA^((fA=((fA+=(yA^(UA|~xA))+cA[12]+1700485571)<<6|fA>>>26)+UA|0)|~yA))+cA[3]-1894986606)<<10|xA>>>22)+fA|0)^((yA=((yA+=(fA^(xA|~UA))+cA[10]-1051523)<<15|yA>>>17)+xA|0)|~fA))+cA[1]-2054922799)<<21|UA>>>11)+yA|0,UA=((UA+=((xA=((xA+=(UA^((fA=((fA+=(yA^(UA|~xA))+cA[8]+1873313359)<<6|fA>>>26)+UA|0)|~yA))+cA[15]-30611744)<<10|xA>>>22)+fA|0)^((yA=((yA+=(fA^(xA|~UA))+cA[6]-1560198380)<<15|yA>>>17)+xA|0)|~fA))+cA[13]+1309151649)<<21|UA>>>11)+yA|0,UA=((UA+=((xA=((xA+=(UA^((fA=((fA+=(yA^(UA|~xA))+cA[4]-145523070)<<6|fA>>>26)+UA|0)|~yA))+cA[11]-1120210379)<<10|xA>>>22)+fA|0)^((yA=((yA+=(fA^(xA|~UA))+cA[2]+718787259)<<15|yA>>>17)+xA|0)|~fA))+cA[9]-343485551)<<21|UA>>>11)+yA|0,this.first?(this.h0=fA+1732584193|0,this.h1=UA-271733879|0,this.h2=yA-1732584194|0,this.h3=xA+271733878|0,this.first=!1):(this.h0=this.h0+fA|0,this.h1=this.h1+UA|0,this.h2=this.h2+yA|0,this.h3=this.h3+xA|0)},VA.prototype.toString=VA.prototype.hex=function(){this.finalize();var fA=this.h0,UA=this.h1,yA=this.h2,xA=this.h3;return AA[fA>>>4&15]+AA[15&fA]+AA[fA>>>12&15]+AA[fA>>>8&15]+AA[fA>>>20&15]+AA[fA>>>16&15]+AA[fA>>>28&15]+AA[fA>>>24&15]+AA[UA>>>4&15]+AA[15&UA]+AA[UA>>>12&15]+AA[UA>>>8&15]+AA[UA>>>20&15]+AA[UA>>>16&15]+AA[UA>>>28&15]+AA[UA>>>24&15]+AA[yA>>>4&15]+AA[15&yA]+AA[yA>>>12&15]+AA[yA>>>8&15]+AA[yA>>>20&15]+AA[yA>>>16&15]+AA[yA>>>28&15]+AA[yA>>>24&15]+AA[xA>>>4&15]+AA[15&xA]+AA[xA>>>12&15]+AA[xA>>>8&15]+AA[xA>>>20&15]+AA[xA>>>16&15]+AA[xA>>>28&15]+AA[xA>>>24&15]},VA.prototype.array=VA.prototype.digest=function(){this.finalize();var fA=this.h0,UA=this.h1,yA=this.h2,xA=this.h3;return[255&fA,fA>>>8&255,fA>>>16&255,fA>>>24&255,255&UA,UA>>>8&255,UA>>>16&255,UA>>>24&255,255&yA,yA>>>8&255,yA>>>16&255,yA>>>24&255,255&xA,xA>>>8&255,xA>>>16&255,xA>>>24&255]},VA.prototype.buffer=VA.prototype.arrayBuffer=function(){this.finalize();var fA=new ArrayBuffer(16),UA=new Uint32Array(fA);return UA[0]=this.h0,UA[1]=this.h1,UA[2]=this.h2,UA[3]=this.h3,fA},VA.prototype.base64=function(){for(var fA,UA,yA,xA="",Ee=this.array(),HA=0;HA<15;)fA=Ee[HA++],UA=Ee[HA++],yA=Ee[HA++],xA+=QA[fA>>>2]+QA[63&(fA<<4|UA>>>4)]+QA[63&(UA<<2|yA>>>6)]+QA[63&yA];return xA+(QA[(fA=Ee[HA])>>>2]+QA[fA<<4&63]+"==")},(kA.prototype=new VA).finalize=function(){if(VA.prototype.finalize.call(this),this.inner){this.inner=!1;var fA=this.array();VA.call(this,this.sharedMemory),this.update(this.oKeyPad),this.update(fA),VA.prototype.finalize.call(this)}};var hA=function(){var fA=H("hex");j&&(fA=function(fA){var xA,UA=f(8535),yA=f(6274).Buffer;return xA=yA.from&&!v.JS_MD5_NO_BUFFER_FROM?yA.from:function(HA){return new yA(HA)},function(HA){if("string"==typeof HA)return UA.createHash("md5").update(HA,"utf8").digest("hex");if(null==HA)throw new Error(I);return HA.constructor===ArrayBuffer&&(HA=new Uint8Array(HA)),dA(HA)||RA(HA)||HA.constructor===yA?UA.createHash("md5").update(xA(HA)).digest("hex"):fA(HA)}}(fA)),fA.create=function(){return new VA},fA.update=function(xA){return fA.create().update(xA)};for(var UA=0;UA"u")return!1;for(var L in window)try{if(!w["$"+L]&&g.call(window,L)&&null!==window[L]&&"object"==typeof window[L])try{tA(window[L])}catch{return!0}}catch{return!0}return!1}();t=function(P){var rA=null!==P&&"object"==typeof P,QA="[object Function]"===I.call(P),NA=N(P),oA=rA&&"[object String]"===I.call(P),uA=[];if(!rA&&!QA&&!NA)throw new TypeError("Object.keys called on a non-object");var dA=B&&QA;if(oA&&P.length>0&&!g.call(P,0))for(var RA=0;RA0)for(var nA=0;nA"u"||!aA)return tA(L);try{return tA(L)}catch{return!1}}(P),z=0;z=0&&"[object Function]"===Q.call(t.callee)),I}},6521(eA,Q,f){"use strict";var t=f(5643),g=f(2843)(),I=f(2774),N=f(5846),K=I("Array.prototype.push"),v=I("Object.prototype.propertyIsEnumerable"),B=g?N.getOwnPropertySymbols:null;eA.exports=function(tA,w){if(null==tA)throw new TypeError("target must be an object");var aA=N(tA);if(1===arguments.length)return aA;for(var AA=1;AA>>16&65535,v=0;0!==g;){g-=v=g>2e3?2e3:g;do{K=K+(N=N+t[I++]|0)|0}while(--v);N%=65521,K%=65521}return N|K<<16}},1607(eA){"use strict";eA.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},9049(eA){"use strict";var f=function Q(){for(var g,I=[],N=0;N<256;N++){g=N;for(var K=0;K<8;K++)g=1&g?3988292384^g>>>1:g>>>1;I[N]=g}return I}();eA.exports=function t(g,I,N,K){var v=f,B=K+N;g^=-1;for(var j=K;j>>8^v[255&(g^I[j])];return-1^g}},2925(eA,Q,f){"use strict";var k,t=f(2519),g=f(2367),I=f(6911),N=f(9049),K=f(6228),L=-2,HA=262;function M(_,be){return _.msg=K[be],be}function D(_){return(_<<1)-(_>4?9:0)}function X(_){for(var be=_.length;--be>=0;)_[be]=0}function YA(_){var be=_.state,Re=be.pending;Re>_.avail_out&&(Re=_.avail_out),0!==Re&&(t.arraySet(_.output,be.pending_buf,be.pending_out,Re,_.next_out),_.next_out+=Re,be.pending_out+=Re,_.total_out+=Re,_.avail_out-=Re,be.pending-=Re,0===be.pending&&(be.pending_out=0))}function KA(_,be){g._tr_flush_block(_,_.block_start>=0?_.block_start:-1,_.strstart-_.block_start,be),_.block_start=_.strstart,YA(_.strm)}function bA(_,be){_.pending_buf[_.pending++]=be}function le(_,be){_.pending_buf[_.pending++]=be>>>8&255,_.pending_buf[_.pending++]=255&be}function ve(_,be,Re,SA){var we=_.avail_in;return we>SA&&(we=SA),0===we?0:(_.avail_in-=we,t.arraySet(be,_.input,_.next_in,we,Re),1===_.state.wrap?_.adler=I(_.adler,be,we,Re):2===_.state.wrap&&(_.adler=N(_.adler,be,we,Re)),_.next_in+=we,_.total_in+=we,we)}function Ne(_,be){var we,Fe,Re=_.max_chain_length,SA=_.strstart,et=_.prev_length,Ke=_.nice_match,$e=_.strstart>_.w_size-HA?_.strstart-(_.w_size-HA):0,ht=_.window,cn=_.w_mask,at=_.prev,It=_.strstart+258,mt=ht[SA+et-1],Tt=ht[SA+et];_.prev_length>=_.good_match&&(Re>>=2),Ke>_.lookahead&&(Ke=_.lookahead);do{if(ht[(we=be)+et]===Tt&&ht[we+et-1]===mt&&ht[we]===ht[SA]&&ht[++we]===ht[SA+1]){SA+=2,we++;do{}while(ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&ht[++SA]===ht[++we]&&SAet){if(_.match_start=be,et=Fe,Fe>=Ke)break;mt=ht[SA+et-1],Tt=ht[SA+et]}}}while((be=at[be&cn])>$e&&0!==--Re);return et<=_.lookahead?et:_.lookahead}function Te(_){var Re,SA,we,Fe,et,be=_.w_size;do{if(Fe=_.window_size-_.lookahead-_.strstart,_.strstart>=be+(be-HA)){t.arraySet(_.window,_.window,be,be,0),_.match_start-=be,_.strstart-=be,_.block_start-=be,Re=SA=_.hash_size;do{we=_.head[--Re],_.head[Re]=we>=be?we-be:0}while(--SA);Re=SA=be;do{we=_.prev[--Re],_.prev[Re]=we>=be?we-be:0}while(--SA);Fe+=be}if(0===_.strm.avail_in)break;if(SA=ve(_.strm,_.window,_.strstart+_.lookahead,Fe),_.lookahead+=SA,_.lookahead+_.insert>=3)for(_.ins_h=_.window[et=_.strstart-_.insert],_.ins_h=(_.ins_h<<_.hash_shift^_.window[et+1])&_.hash_mask;_.insert&&(_.ins_h=(_.ins_h<<_.hash_shift^_.window[et+3-1])&_.hash_mask,_.prev[et&_.w_mask]=_.head[_.ins_h],_.head[_.ins_h]=et,et++,_.insert--,!(_.lookahead+_.insert<3)););}while(_.lookahead=3&&(_.ins_h=(_.ins_h<<_.hash_shift^_.window[_.strstart+3-1])&_.hash_mask,Re=_.prev[_.strstart&_.w_mask]=_.head[_.ins_h],_.head[_.ins_h]=_.strstart),0!==Re&&_.strstart-Re<=_.w_size-HA&&(_.match_length=Ne(_,Re)),_.match_length>=3)if(SA=g._tr_tally(_,_.strstart-_.match_start,_.match_length-3),_.lookahead-=_.match_length,_.match_length<=_.max_lazy_match&&_.lookahead>=3){_.match_length--;do{_.strstart++,_.ins_h=(_.ins_h<<_.hash_shift^_.window[_.strstart+3-1])&_.hash_mask,Re=_.prev[_.strstart&_.w_mask]=_.head[_.ins_h],_.head[_.ins_h]=_.strstart}while(0!==--_.match_length);_.strstart++}else _.strstart+=_.match_length,_.match_length=0,_.ins_h=_.window[_.strstart],_.ins_h=(_.ins_h<<_.hash_shift^_.window[_.strstart+1])&_.hash_mask;else SA=g._tr_tally(_,0,_.window[_.strstart]),_.lookahead--,_.strstart++;if(SA&&(KA(_,!1),0===_.strm.avail_out))return 1}return _.insert=_.strstart<2?_.strstart:2,4===be?(KA(_,!0),0===_.strm.avail_out?3:4):_.last_lit&&(KA(_,!1),0===_.strm.avail_out)?1:2}function oe(_,be){for(var Re,SA,we;;){if(_.lookahead=3&&(_.ins_h=(_.ins_h<<_.hash_shift^_.window[_.strstart+3-1])&_.hash_mask,Re=_.prev[_.strstart&_.w_mask]=_.head[_.ins_h],_.head[_.ins_h]=_.strstart),_.prev_length=_.match_length,_.prev_match=_.match_start,_.match_length=2,0!==Re&&_.prev_length<_.max_lazy_match&&_.strstart-Re<=_.w_size-HA&&(_.match_length=Ne(_,Re),_.match_length<=5&&(1===_.strategy||3===_.match_length&&_.strstart-_.match_start>4096)&&(_.match_length=2)),_.prev_length>=3&&_.match_length<=_.prev_length){we=_.strstart+_.lookahead-3,SA=g._tr_tally(_,_.strstart-1-_.prev_match,_.prev_length-3),_.lookahead-=_.prev_length-1,_.prev_length-=2;do{++_.strstart<=we&&(_.ins_h=(_.ins_h<<_.hash_shift^_.window[_.strstart+3-1])&_.hash_mask,Re=_.prev[_.strstart&_.w_mask]=_.head[_.ins_h],_.head[_.ins_h]=_.strstart)}while(0!==--_.prev_length);if(_.match_available=0,_.match_length=2,_.strstart++,SA&&(KA(_,!1),0===_.strm.avail_out))return 1}else if(_.match_available){if((SA=g._tr_tally(_,0,_.window[_.strstart-1]))&&KA(_,!1),_.strstart++,_.lookahead--,0===_.strm.avail_out)return 1}else _.match_available=1,_.strstart++,_.lookahead--}return _.match_available&&(SA=g._tr_tally(_,0,_.window[_.strstart-1]),_.match_available=0),_.insert=_.strstart<2?_.strstart:2,4===be?(KA(_,!0),0===_.strm.avail_out?3:4):_.last_lit&&(KA(_,!1),0===_.strm.avail_out)?1:2}function Y(_,be,Re,SA,we){this.good_length=_,this.max_lazy=be,this.nice_length=Re,this.max_chain=SA,this.func=we}function E(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=8,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new t.Buf16(1146),this.dyn_dtree=new t.Buf16(122),this.bl_tree=new t.Buf16(78),X(this.dyn_ltree),X(this.dyn_dtree),X(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new t.Buf16(16),this.heap=new t.Buf16(573),X(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new t.Buf16(573),X(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function mA(_){var be;return _&&_.state?(_.total_in=_.total_out=0,_.data_type=2,(be=_.state).pending=0,be.pending_out=0,be.wrap<0&&(be.wrap=-be.wrap),be.status=be.wrap?42:113,_.adler=2===be.wrap?0:1,be.last_flush=0,g._tr_init(be),0):M(_,L)}function ie(_){var be=mA(_);return 0===be&&function m(_){_.window_size=2*_.w_size,X(_.head),_.max_lazy_match=k[_.level].max_lazy,_.good_match=k[_.level].good_length,_.nice_match=k[_.level].nice_length,_.max_chain_length=k[_.level].max_chain,_.strstart=0,_.block_start=0,_.lookahead=0,_.insert=0,_.match_length=_.prev_length=2,_.match_available=0,_.ins_h=0}(_.state),be}function Ae(_,be,Re,SA,we,Fe){if(!_)return L;var et=1;if(-1===be&&(be=6),SA<0?(et=0,SA=-SA):SA>15&&(et=2,SA-=16),we<1||we>9||8!==Re||SA<8||SA>15||be<0||be>9||Fe<0||Fe>4)return M(_,L);8===SA&&(SA=9);var Ke=new E;return _.state=Ke,Ke.strm=_,Ke.wrap=et,Ke.gzhead=null,Ke.w_bits=SA,Ke.w_size=1<_.pending_buf_size-5&&(Re=_.pending_buf_size-5);;){if(_.lookahead<=1){if(Te(_),0===_.lookahead&&0===be)return 1;if(0===_.lookahead)break}_.strstart+=_.lookahead,_.lookahead=0;var SA=_.block_start+Re;if((0===_.strstart||_.strstart>=SA)&&(_.lookahead=_.strstart-SA,_.strstart=SA,KA(_,!1),0===_.strm.avail_out)||_.strstart-_.block_start>=_.w_size-HA&&(KA(_,!1),0===_.strm.avail_out))return 1}return _.insert=0,4===be?(KA(_,!0),0===_.strm.avail_out?3:4):(_.strstart>_.block_start&&KA(_,!1),1)}),new Y(4,4,8,4,Oe),new Y(4,5,16,8,Oe),new Y(4,6,32,32,Oe),new Y(4,4,16,16,oe),new Y(8,16,32,32,oe),new Y(8,16,128,128,oe),new Y(8,32,128,256,oe),new Y(32,128,258,1024,oe),new Y(32,258,258,4096,oe)],Q.deflateInit=function pe(_,be){return Ae(_,be,8,15,8,0)},Q.deflateInit2=Ae,Q.deflateReset=ie,Q.deflateResetKeep=mA,Q.deflateSetHeader=function DA(_,be){return _&&_.state&&2===_.state.wrap?(_.state.gzhead=be,0):L},Q.deflate=function MA(_,be){var Re,SA,we,Fe;if(!_||!_.state||be>5||be<0)return _?M(_,L):L;if(SA=_.state,!_.output||!_.input&&0!==_.avail_in||666===SA.status&&4!==be)return M(_,0===_.avail_out?-5:L);if(SA.strm=_,Re=SA.last_flush,SA.last_flush=be,42===SA.status)if(2===SA.wrap)_.adler=0,bA(SA,31),bA(SA,139),bA(SA,8),SA.gzhead?(bA(SA,(SA.gzhead.text?1:0)+(SA.gzhead.hcrc?2:0)+(SA.gzhead.extra?4:0)+(SA.gzhead.name?8:0)+(SA.gzhead.comment?16:0)),bA(SA,255&SA.gzhead.time),bA(SA,SA.gzhead.time>>8&255),bA(SA,SA.gzhead.time>>16&255),bA(SA,SA.gzhead.time>>24&255),bA(SA,9===SA.level?2:SA.strategy>=2||SA.level<2?4:0),bA(SA,255&SA.gzhead.os),SA.gzhead.extra&&SA.gzhead.extra.length&&(bA(SA,255&SA.gzhead.extra.length),bA(SA,SA.gzhead.extra.length>>8&255)),SA.gzhead.hcrc&&(_.adler=N(_.adler,SA.pending_buf,SA.pending,0)),SA.gzindex=0,SA.status=69):(bA(SA,0),bA(SA,0),bA(SA,0),bA(SA,0),bA(SA,0),bA(SA,9===SA.level?2:SA.strategy>=2||SA.level<2?4:0),bA(SA,3),SA.status=113);else{var et=8+(SA.w_bits-8<<4)<<8;et|=(SA.strategy>=2||SA.level<2?0:SA.level<6?1:6===SA.level?2:3)<<6,0!==SA.strstart&&(et|=32),et+=31-et%31,SA.status=113,le(SA,et),0!==SA.strstart&&(le(SA,_.adler>>>16),le(SA,65535&_.adler)),_.adler=1}if(69===SA.status)if(SA.gzhead.extra){for(we=SA.pending;SA.gzindex<(65535&SA.gzhead.extra.length)&&(SA.pending!==SA.pending_buf_size||(SA.gzhead.hcrc&&SA.pending>we&&(_.adler=N(_.adler,SA.pending_buf,SA.pending-we,we)),YA(_),we=SA.pending,SA.pending!==SA.pending_buf_size));)bA(SA,255&SA.gzhead.extra[SA.gzindex]),SA.gzindex++;SA.gzhead.hcrc&&SA.pending>we&&(_.adler=N(_.adler,SA.pending_buf,SA.pending-we,we)),SA.gzindex===SA.gzhead.extra.length&&(SA.gzindex=0,SA.status=73)}else SA.status=73;if(73===SA.status)if(SA.gzhead.name){we=SA.pending;do{if(SA.pending===SA.pending_buf_size&&(SA.gzhead.hcrc&&SA.pending>we&&(_.adler=N(_.adler,SA.pending_buf,SA.pending-we,we)),YA(_),we=SA.pending,SA.pending===SA.pending_buf_size)){Fe=1;break}Fe=SA.gzindexwe&&(_.adler=N(_.adler,SA.pending_buf,SA.pending-we,we)),0===Fe&&(SA.gzindex=0,SA.status=91)}else SA.status=91;if(91===SA.status)if(SA.gzhead.comment){we=SA.pending;do{if(SA.pending===SA.pending_buf_size&&(SA.gzhead.hcrc&&SA.pending>we&&(_.adler=N(_.adler,SA.pending_buf,SA.pending-we,we)),YA(_),we=SA.pending,SA.pending===SA.pending_buf_size)){Fe=1;break}Fe=SA.gzindexwe&&(_.adler=N(_.adler,SA.pending_buf,SA.pending-we,we)),0===Fe&&(SA.status=103)}else SA.status=103;if(103===SA.status&&(SA.gzhead.hcrc?(SA.pending+2>SA.pending_buf_size&&YA(_),SA.pending+2<=SA.pending_buf_size&&(bA(SA,255&_.adler),bA(SA,_.adler>>8&255),_.adler=0,SA.status=113)):SA.status=113),0!==SA.pending){if(YA(_),0===_.avail_out)return SA.last_flush=-1,0}else if(0===_.avail_in&&D(be)<=D(Re)&&4!==be)return M(_,-5);if(666===SA.status&&0!==_.avail_in)return M(_,-5);if(0!==_.avail_in||0!==SA.lookahead||0!==be&&666!==SA.status){var $e=2===SA.strategy?function S(_,be){for(var Re;;){if(0===_.lookahead&&(Te(_),0===_.lookahead)){if(0===be)return 1;break}if(_.match_length=0,Re=g._tr_tally(_,0,_.window[_.strstart]),_.lookahead--,_.strstart++,Re&&(KA(_,!1),0===_.strm.avail_out))return 1}return _.insert=0,4===be?(KA(_,!0),0===_.strm.avail_out?3:4):_.last_lit&&(KA(_,!1),0===_.strm.avail_out)?1:2}(SA,be):3===SA.strategy?function sA(_,be){for(var Re,SA,we,Fe,et=_.window;;){if(_.lookahead<=258){if(Te(_),_.lookahead<=258&&0===be)return 1;if(0===_.lookahead)break}if(_.match_length=0,_.lookahead>=3&&_.strstart>0&&(SA=et[we=_.strstart-1])===et[++we]&&SA===et[++we]&&SA===et[++we]){Fe=_.strstart+258;do{}while(SA===et[++we]&&SA===et[++we]&&SA===et[++we]&&SA===et[++we]&&SA===et[++we]&&SA===et[++we]&&SA===et[++we]&&SA===et[++we]&&we_.lookahead&&(_.match_length=_.lookahead)}if(_.match_length>=3?(Re=g._tr_tally(_,1,_.match_length-3),_.lookahead-=_.match_length,_.strstart+=_.match_length,_.match_length=0):(Re=g._tr_tally(_,0,_.window[_.strstart]),_.lookahead--,_.strstart++),Re&&(KA(_,!1),0===_.strm.avail_out))return 1}return _.insert=0,4===be?(KA(_,!0),0===_.strm.avail_out?3:4):_.last_lit&&(KA(_,!1),0===_.strm.avail_out)?1:2}(SA,be):k[SA.level].func(SA,be);if((3===$e||4===$e)&&(SA.status=666),1===$e||3===$e)return 0===_.avail_out&&(SA.last_flush=-1),0;if(2===$e&&(1===be?g._tr_align(SA):5!==be&&(g._tr_stored_block(SA,0,0,!1),3===be&&(X(SA.head),0===SA.lookahead&&(SA.strstart=0,SA.block_start=0,SA.insert=0))),YA(_),0===_.avail_out))return SA.last_flush=-1,0}return 4!==be?0:SA.wrap<=0?1:(2===SA.wrap?(bA(SA,255&_.adler),bA(SA,_.adler>>8&255),bA(SA,_.adler>>16&255),bA(SA,_.adler>>24&255),bA(SA,255&_.total_in),bA(SA,_.total_in>>8&255),bA(SA,_.total_in>>16&255),bA(SA,_.total_in>>24&255)):(le(SA,_.adler>>>16),le(SA,65535&_.adler)),YA(_),SA.wrap>0&&(SA.wrap=-SA.wrap),0!==SA.pending?0:1)},Q.deflateEnd=function Pe(_){var be;return _&&_.state?42!==(be=_.state.status)&&69!==be&&73!==be&&91!==be&&103!==be&&113!==be&&666!==be?M(_,L):(_.state=null,113===be?M(_,-3):0):L},Q.deflateSetDictionary=function At(_,be){var SA,we,Fe,et,Ke,$e,ht,cn,Re=be.length;if(!_||!_.state||2===(et=(SA=_.state).wrap)||1===et&&42!==SA.status||SA.lookahead)return L;for(1===et&&(_.adler=I(_.adler,be,Re,0)),SA.wrap=0,Re>=SA.w_size&&(0===et&&(X(SA.head),SA.strstart=0,SA.block_start=0,SA.insert=0),cn=new t.Buf8(SA.w_size),t.arraySet(cn,be,Re-SA.w_size,SA.w_size,0),be=cn,Re=SA.w_size),Ke=_.avail_in,$e=_.next_in,ht=_.input,_.avail_in=Re,_.next_in=0,_.input=be,Te(SA);SA.lookahead>=3;){we=SA.strstart,Fe=SA.lookahead-2;do{SA.ins_h=(SA.ins_h<>>=nA=RA>>>24,QA-=nA,0==(nA=RA>>>16&255))VA[B++]=65535&RA;else{if(!(16&nA)){if(64&nA){if(32&nA){N.mode=12;break A}g.msg="invalid literal/length code",N.mode=30;break A}RA=NA[(65535&RA)+(rA&(1<>>=nA,QA-=nA),QA<15&&(rA+=wA[K++]<>>=nA=RA>>>24,QA-=nA,16&(nA=RA>>>16&255)){if(pA=65535&RA,QA<(nA&=15)&&(rA+=wA[K++]<w){g.msg="invalid distance too far back",N.mode=30;break A}if(rA>>>=nA,QA-=nA,pA>(nA=B-j)){if((nA=pA-nA)>AA&&N.sane){g.msg="invalid distance too far back",N.mode=30;break A}if(z=0,OA=P,0===L){if(z+=aA-nA,nA2;)VA[B++]=OA[z++],VA[B++]=OA[z++],VA[B++]=OA[z++],H-=3;H&&(VA[B++]=OA[z++],H>1&&(VA[B++]=OA[z++]))}else{z=B-pA;do{VA[B++]=VA[z++],VA[B++]=VA[z++],VA[B++]=VA[z++],H-=3}while(H>2);H&&(VA[B++]=VA[z++],H>1&&(VA[B++]=VA[z++]))}break}if(64&nA){g.msg="invalid distance code",N.mode=30;break A}RA=oA[(65535&RA)+(rA&(1<>3)<<3))-1,g.next_in=K-=H,g.next_out=B,g.avail_in=K>>24&255)+(Ae>>>8&65280)+((65280&Ae)<<8)+((255&Ae)<<24)}function ve(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new t.Buf16(320),this.work=new t.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function Ne(Ae){var pe;return Ae&&Ae.state?(Ae.total_in=Ae.total_out=(pe=Ae.state).total=0,Ae.msg="",pe.wrap&&(Ae.adler=1&pe.wrap),pe.mode=1,pe.last=0,pe.havedict=0,pe.dmax=32768,pe.head=null,pe.hold=0,pe.bits=0,pe.lencode=pe.lendyn=new t.Buf32(852),pe.distcode=pe.distdyn=new t.Buf32(592),pe.sane=1,pe.back=-1,0):-2}function Te(Ae){var pe;return Ae&&Ae.state?((pe=Ae.state).wsize=0,pe.whave=0,pe.wnext=0,Ne(Ae)):-2}function ze(Ae,pe){var MA,Pe;return!Ae||!Ae.state||(Pe=Ae.state,pe<0?(MA=0,pe=-pe):(MA=1+(pe>>4),pe<48&&(pe&=15)),pe&&(pe<8||pe>15))?-2:(null!==Pe.window&&Pe.wbits!==pe&&(Pe.window=null),Pe.wrap=MA,Pe.wbits=pe,Te(Ae))}function Oe(Ae,pe){var MA,Pe;return Ae?(Pe=new ve,Ae.state=Pe,Pe.window=null,0!==(MA=ze(Ae,pe))&&(Ae.state=null),MA):-2}var S,Y,sA=!0;function k(Ae){if(sA){var pe;for(S=new t.Buf32(512),Y=new t.Buf32(32),pe=0;pe<144;)Ae.lens[pe++]=8;for(;pe<256;)Ae.lens[pe++]=9;for(;pe<280;)Ae.lens[pe++]=7;for(;pe<288;)Ae.lens[pe++]=8;for(K(1,Ae.lens,0,288,S,0,Ae.work,{bits:9}),pe=0;pe<32;)Ae.lens[pe++]=5;K(2,Ae.lens,0,32,Y,0,Ae.work,{bits:5}),sA=!1}Ae.lencode=S,Ae.lenbits=9,Ae.distcode=Y,Ae.distbits=5}function m(Ae,pe,MA,Pe){var At,_=Ae.state;return null===_.window&&(_.wsize=1<<_.wbits,_.wnext=0,_.whave=0,_.window=new t.Buf8(_.wsize)),Pe>=_.wsize?(t.arraySet(_.window,pe,MA-_.wsize,_.wsize,0),_.wnext=0,_.whave=_.wsize):((At=_.wsize-_.wnext)>Pe&&(At=Pe),t.arraySet(_.window,pe,MA-Pe,At,_.wnext),(Pe-=At)?(t.arraySet(_.window,pe,MA-Pe,Pe,0),_.wnext=Pe,_.whave=_.wsize):(_.wnext+=At,_.wnext===_.wsize&&(_.wnext=0),_.whave<_.wsize&&(_.whave+=At))),0}Q.inflateReset=Te,Q.inflateReset2=ze,Q.inflateResetKeep=Ne,Q.inflateInit=function oe(Ae){return Oe(Ae,15)},Q.inflateInit2=Oe,Q.inflate=function E(Ae,pe){var MA,Pe,At,_,be,Re,SA,we,Fe,et,Ke,$e,ht,cn,It,mt,Tt,Lt,Qn,pn,Gt,Mt,bt,Dt,at=0,Ot=new t.Buf8(4),Ze=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!Ae||!Ae.state||!Ae.output||!Ae.input&&0!==Ae.avail_in)return-2;12===(MA=Ae.state).mode&&(MA.mode=13),be=Ae.next_out,At=Ae.output,_=Ae.next_in,Pe=Ae.input,we=MA.hold,Fe=MA.bits,et=Re=Ae.avail_in,Ke=SA=Ae.avail_out,Mt=0;A:for(;;)switch(MA.mode){case 1:if(0===MA.wrap){MA.mode=13;break}for(;Fe<16;){if(0===Re)break A;Re--,we+=Pe[_++]<>>8&255,MA.check=I(MA.check,Ot,2,0),we=0,Fe=0,MA.mode=2;break}if(MA.flags=0,MA.head&&(MA.head.done=!1),!(1&MA.wrap)||(((255&we)<<8)+(we>>8))%31){Ae.msg="incorrect header check",MA.mode=R;break}if(8!=(15&we)){Ae.msg="unknown compression method",MA.mode=R;break}if(Fe-=4,Gt=8+(15&(we>>>=4)),0===MA.wbits)MA.wbits=Gt;else if(Gt>MA.wbits){Ae.msg="invalid window size",MA.mode=R;break}MA.dmax=1<>8&1),512&MA.flags&&(Ot[0]=255&we,Ot[1]=we>>>8&255,MA.check=I(MA.check,Ot,2,0)),we=0,Fe=0,MA.mode=3;case 3:for(;Fe<32;){if(0===Re)break A;Re--,we+=Pe[_++]<>>8&255,Ot[2]=we>>>16&255,Ot[3]=we>>>24&255,MA.check=I(MA.check,Ot,4,0)),we=0,Fe=0,MA.mode=4;case 4:for(;Fe<16;){if(0===Re)break A;Re--,we+=Pe[_++]<>8),512&MA.flags&&(Ot[0]=255&we,Ot[1]=we>>>8&255,MA.check=I(MA.check,Ot,2,0)),we=0,Fe=0,MA.mode=5;case 5:if(1024&MA.flags){for(;Fe<16;){if(0===Re)break A;Re--,we+=Pe[_++]<>>8&255,MA.check=I(MA.check,Ot,2,0)),we=0,Fe=0}else MA.head&&(MA.head.extra=null);MA.mode=6;case 6:if(1024&MA.flags&&(($e=MA.length)>Re&&($e=Re),$e&&(MA.head&&(Gt=MA.head.extra_len-MA.length,MA.head.extra||(MA.head.extra=new Array(MA.head.extra_len)),t.arraySet(MA.head.extra,Pe,_,$e,Gt)),512&MA.flags&&(MA.check=I(MA.check,Pe,$e,_)),Re-=$e,_+=$e,MA.length-=$e),MA.length))break A;MA.length=0,MA.mode=7;case 7:if(2048&MA.flags){if(0===Re)break A;$e=0;do{Gt=Pe[_+$e++],MA.head&&Gt&&MA.length<65536&&(MA.head.name+=String.fromCharCode(Gt))}while(Gt&&$e>9&1,MA.head.done=!0),Ae.adler=MA.check=0,MA.mode=12;break;case 10:for(;Fe<32;){if(0===Re)break A;Re--,we+=Pe[_++]<>>=7&Fe,Fe-=7&Fe,MA.mode=27;break}for(;Fe<3;){if(0===Re)break A;Re--,we+=Pe[_++]<>>=1)){case 0:MA.mode=14;break;case 1:if(k(MA),MA.mode=20,6===pe){we>>>=2,Fe-=2;break A}break;case 2:MA.mode=17;break;case 3:Ae.msg="invalid block type",MA.mode=R}we>>>=2,Fe-=2;break;case 14:for(we>>>=7&Fe,Fe-=7&Fe;Fe<32;){if(0===Re)break A;Re--,we+=Pe[_++]<>>16^65535)){Ae.msg="invalid stored block lengths",MA.mode=R;break}if(MA.length=65535&we,we=0,Fe=0,MA.mode=15,6===pe)break A;case 15:MA.mode=16;case 16:if($e=MA.length){if($e>Re&&($e=Re),$e>SA&&($e=SA),0===$e)break A;t.arraySet(At,Pe,_,$e,be),Re-=$e,_+=$e,SA-=$e,be+=$e,MA.length-=$e;break}MA.mode=12;break;case 17:for(;Fe<14;){if(0===Re)break A;Re--,we+=Pe[_++]<>>=5)),Fe-=5,MA.ncode=4+(15&(we>>>=5)),we>>>=4,Fe-=4,MA.nlen>286||MA.ndist>30){Ae.msg="too many length or distance symbols",MA.mode=R;break}MA.have=0,MA.mode=18;case 18:for(;MA.have>>=3,Fe-=3}for(;MA.have<19;)MA.lens[Ze[MA.have++]]=0;if(MA.lencode=MA.lendyn,MA.lenbits=7,Mt=K(0,MA.lens,0,19,MA.lencode,0,MA.work,bt={bits:MA.lenbits}),MA.lenbits=bt.bits,Mt){Ae.msg="invalid code lengths set",MA.mode=R;break}MA.have=0,MA.mode=19;case 19:for(;MA.have>>16&255,Tt=65535&at,!((It=at>>>24)<=Fe);){if(0===Re)break A;Re--,we+=Pe[_++]<>>=It,Fe-=It,MA.lens[MA.have++]=Tt;else{if(16===Tt){for(Dt=It+2;Fe>>=It,Fe-=It,0===MA.have){Ae.msg="invalid bit length repeat",MA.mode=R;break}Gt=MA.lens[MA.have-1],$e=3+(3&we),we>>>=2,Fe-=2}else if(17===Tt){for(Dt=It+3;Fe>>=It)),we>>>=3,Fe-=3}else{for(Dt=It+7;Fe>>=It)),we>>>=7,Fe-=7}if(MA.have+$e>MA.nlen+MA.ndist){Ae.msg="invalid bit length repeat",MA.mode=R;break}for(;$e--;)MA.lens[MA.have++]=Gt}}if(MA.mode===R)break;if(0===MA.lens[256]){Ae.msg="invalid code -- missing end-of-block",MA.mode=R;break}if(MA.lenbits=9,Mt=K(1,MA.lens,0,MA.nlen,MA.lencode,0,MA.work,bt={bits:MA.lenbits}),MA.lenbits=bt.bits,Mt){Ae.msg="invalid literal/lengths set",MA.mode=R;break}if(MA.distbits=6,MA.distcode=MA.distdyn,Mt=K(2,MA.lens,MA.nlen,MA.ndist,MA.distcode,0,MA.work,bt={bits:MA.distbits}),MA.distbits=bt.bits,Mt){Ae.msg="invalid distances set",MA.mode=R;break}if(MA.mode=20,6===pe)break A;case 20:MA.mode=21;case 21:if(Re>=6&&SA>=258){Ae.next_out=be,Ae.avail_out=SA,Ae.next_in=_,Ae.avail_in=Re,MA.hold=we,MA.bits=Fe,N(Ae,Ke),be=Ae.next_out,At=Ae.output,SA=Ae.avail_out,_=Ae.next_in,Pe=Ae.input,Re=Ae.avail_in,we=MA.hold,Fe=MA.bits,12===MA.mode&&(MA.back=-1);break}for(MA.back=0;mt=(at=MA.lencode[we&(1<>>16&255,Tt=65535&at,!((It=at>>>24)<=Fe);){if(0===Re)break A;Re--,we+=Pe[_++]<>Lt)])>>>16&255,Tt=65535&at,!(Lt+(It=at>>>24)<=Fe);){if(0===Re)break A;Re--,we+=Pe[_++]<>>=Lt,Fe-=Lt,MA.back+=Lt}if(we>>>=It,Fe-=It,MA.back+=It,MA.length=Tt,0===mt){MA.mode=26;break}if(32&mt){MA.back=-1,MA.mode=12;break}if(64&mt){Ae.msg="invalid literal/length code",MA.mode=R;break}MA.extra=15&mt,MA.mode=22;case 22:if(MA.extra){for(Dt=MA.extra;Fe>>=MA.extra,Fe-=MA.extra,MA.back+=MA.extra}MA.was=MA.length,MA.mode=23;case 23:for(;mt=(at=MA.distcode[we&(1<>>16&255,Tt=65535&at,!((It=at>>>24)<=Fe);){if(0===Re)break A;Re--,we+=Pe[_++]<>Lt)])>>>16&255,Tt=65535&at,!(Lt+(It=at>>>24)<=Fe);){if(0===Re)break A;Re--,we+=Pe[_++]<>>=Lt,Fe-=Lt,MA.back+=Lt}if(we>>>=It,Fe-=It,MA.back+=It,64&mt){Ae.msg="invalid distance code",MA.mode=R;break}MA.offset=Tt,MA.extra=15&mt,MA.mode=24;case 24:if(MA.extra){for(Dt=MA.extra;Fe>>=MA.extra,Fe-=MA.extra,MA.back+=MA.extra}if(MA.offset>MA.dmax){Ae.msg="invalid distance too far back",MA.mode=R;break}MA.mode=25;case 25:if(0===SA)break A;if(MA.offset>($e=Ke-SA)){if(($e=MA.offset-$e)>MA.whave&&MA.sane){Ae.msg="invalid distance too far back",MA.mode=R;break}ht=$e>MA.wnext?MA.wsize-($e-=MA.wnext):MA.wnext-$e,$e>MA.length&&($e=MA.length),cn=MA.window}else cn=At,ht=be-MA.offset,$e=MA.length;$e>SA&&($e=SA),SA-=$e,MA.length-=$e;do{At[be++]=cn[ht++]}while(--$e);0===MA.length&&(MA.mode=21);break;case 26:if(0===SA)break A;At[be++]=MA.length,SA--,MA.mode=21;break;case 27:if(MA.wrap){for(;Fe<32;){if(0===Re)break A;Re--,we|=Pe[_++]<=1&&0===O[z];z--);if(OA>z&&(OA=z),0===z)return NA[oA++]=20971520,NA[oA++]=20971520,dA.bits=1,0;for(pA=1;pA0&&(0===L||1!==z))return-1;for(lA[1]=0,nA=1;nA<15;nA++)lA[nA+1]=lA[nA]+O[nA];for(H=0;H852||2===L&&hA>592)return 1;for(;;){$A=nA-VA,uA[H]U?(IA=LA[JA+uA[H]],gA=cA[J+uA[H]]):(IA=96,gA=0),UA=1<>VA)+(yA-=UA)]=$A<<24|IA<<16|gA}while(0!==yA);for(UA=1<>=1;if(0!==UA?(fA&=UA-1,fA+=UA):fA=0,H++,0===--O[nA]){if(nA===z)break;nA=P[rA+uA[H]]}if(nA>OA&&(fA&Ee)!==xA){for(0===VA&&(VA=OA),HA+=pA,kA=1<<(wA=nA-VA);wA+VA852||2===L&&hA>592)return 1;NA[xA=fA&Ee]=OA<<24|wA<<16|HA-oA}}return 0!==fA&&(NA[HA+fA]=4194304|nA-VA<<24),dA.bits=OA,0}},6228(eA){"use strict";eA.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},2367(eA,Q,f){"use strict";var t=f(2519);function v(E){for(var mA=E.length;--mA>=0;)E[mA]=0}var z=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],OA=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],wA=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],VA=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],hA=new Array(576);v(hA);var fA=new Array(60);v(fA);var UA=new Array(512);v(UA);var yA=new Array(256);v(yA);var xA=new Array(29);v(xA);var cA,J,U,Ee=new Array(30);function HA(E,mA,ie,DA,Ae){this.static_tree=E,this.extra_bits=mA,this.extra_base=ie,this.elems=DA,this.max_length=Ae,this.has_stree=E&&E.length}function O(E,mA){this.dyn_tree=E,this.max_code=0,this.stat_desc=mA}function lA(E){return E<256?UA[E]:UA[256+(E>>>7)]}function LA(E,mA){E.pending_buf[E.pending++]=255&mA,E.pending_buf[E.pending++]=mA>>>8&255}function JA(E,mA,ie){E.bi_valid>16-ie?(E.bi_buf|=mA<>16-E.bi_valid,E.bi_valid+=ie-16):(E.bi_buf|=mA<>>=1,ie<<=1}while(--mA>0);return ie>>>1}function b(E,mA,ie){var pe,MA,DA=new Array(16),Ae=0;for(pe=1;pe<=15;pe++)DA[pe]=Ae=Ae+ie[pe-1]<<1;for(MA=0;MA<=mA;MA++){var Pe=E[2*MA+1];0!==Pe&&(E[2*MA]=IA(DA[Pe]++,Pe))}}function M(E){var mA;for(mA=0;mA<286;mA++)E.dyn_ltree[2*mA]=0;for(mA=0;mA<30;mA++)E.dyn_dtree[2*mA]=0;for(mA=0;mA<19;mA++)E.bl_tree[2*mA]=0;E.dyn_ltree[512]=1,E.opt_len=E.static_len=0,E.last_lit=E.matches=0}function D(E){E.bi_valid>8?LA(E,E.bi_buf):E.bi_valid>0&&(E.pending_buf[E.pending++]=E.bi_buf),E.bi_buf=0,E.bi_valid=0}function YA(E,mA,ie,DA){var Ae=2*mA,pe=2*ie;return E[Ae]>1;MA>=1;MA--)KA(E,ie,MA);_=pe;do{MA=E.heap[1],E.heap[1]=E.heap[E.heap_len--],KA(E,ie,1),Pe=E.heap[1],E.heap[--E.heap_max]=MA,E.heap[--E.heap_max]=Pe,ie[2*_]=ie[2*MA]+ie[2*Pe],E.depth[_]=(E.depth[MA]>=E.depth[Pe]?E.depth[MA]:E.depth[Pe])+1,ie[2*MA+1]=ie[2*Pe+1]=_,E.heap[1]=_++,KA(E,ie,1)}while(E.heap_len>=2);E.heap[--E.heap_max]=E.heap[1],function C(E,mA){var _,be,Re,SA,we,Fe,ie=mA.dyn_tree,DA=mA.max_code,Ae=mA.stat_desc.static_tree,pe=mA.stat_desc.has_stree,MA=mA.stat_desc.extra_bits,Pe=mA.stat_desc.extra_base,At=mA.stat_desc.max_length,et=0;for(SA=0;SA<=15;SA++)E.bl_count[SA]=0;for(ie[2*E.heap[E.heap_max]+1]=0,_=E.heap_max+1;_<573;_++)(SA=ie[2*ie[2*(be=E.heap[_])+1]+1]+1)>At&&(SA=At,et++),ie[2*be+1]=SA,!(be>DA)&&(E.bl_count[SA]++,we=0,be>=Pe&&(we=MA[be-Pe]),E.opt_len+=(Fe=ie[2*be])*(SA+we),pe&&(E.static_len+=Fe*(Ae[2*be+1]+we)));if(0!==et){do{for(SA=At-1;0===E.bl_count[SA];)SA--;E.bl_count[SA]--,E.bl_count[SA+1]+=2,E.bl_count[At]--,et-=2}while(et>0);for(SA=At;0!==SA;SA--)for(be=E.bl_count[SA];0!==be;)!((Re=E.heap[--_])>DA)&&(ie[2*Re+1]!==SA&&(E.opt_len+=(SA-ie[2*Re+1])*ie[2*Re],ie[2*Re+1]=SA),be--)}}(E,mA),b(ie,At,E.bl_count)}function ve(E,mA,ie){var DA,pe,Ae=-1,MA=mA[1],Pe=0,At=7,_=4;for(0===MA&&(At=138,_=3),mA[2*(ie+1)+1]=65535,DA=0;DA<=ie;DA++)pe=MA,MA=mA[2*(DA+1)+1],!(++Pe>=7;DA<30;DA++)for(Ee[DA]=Ae<<7,E=0;E<1<0?(2===E.strm.data_type&&(E.strm.data_type=function Oe(E){var ie,mA=4093624447;for(ie=0;ie<=31;ie++,mA>>>=1)if(1&mA&&0!==E.dyn_ltree[2*ie])return 0;if(0!==E.dyn_ltree[18]||0!==E.dyn_ltree[20]||0!==E.dyn_ltree[26])return 1;for(ie=32;ie<256;ie++)if(0!==E.dyn_ltree[2*ie])return 1;return 0}(E)),le(E,E.l_desc),le(E,E.d_desc),MA=function Te(E){var mA;for(ve(E,E.dyn_ltree,E.l_desc.max_code),ve(E,E.dyn_dtree,E.d_desc.max_code),le(E,E.bl_desc),mA=18;mA>=3&&0===E.bl_tree[2*VA[mA]+1];mA--);return E.opt_len+=3*(mA+1)+5+5+4,mA}(E),(pe=E.static_len+3+7>>>3)<=(Ae=E.opt_len+3+7>>>3)&&(Ae=pe)):Ae=pe=ie+5,ie+4<=Ae&&-1!==mA?S(E,mA,ie,DA):4===E.strategy||pe===Ae?(JA(E,2+(DA?1:0),3),bA(E,hA,fA)):(JA(E,4+(DA?1:0),3),function ze(E,mA,ie,DA){var Ae;for(JA(E,mA-257,5),JA(E,ie-1,5),JA(E,DA-4,4),Ae=0;Ae>>8&255,E.pending_buf[E.d_buf+2*E.last_lit+1]=255&mA,E.pending_buf[E.l_buf+E.last_lit]=255&ie,E.last_lit++,0===mA?E.dyn_ltree[2*ie]++:(E.matches++,mA--,E.dyn_ltree[2*(yA[ie]+256+1)]++,E.dyn_dtree[2*lA(mA)]++),E.last_lit===E.lit_bufsize-1},Q._tr_align=function Y(E){JA(E,2,3),$A(E,256,hA),function gA(E){16===E.bi_valid?(LA(E,E.bi_buf),E.bi_buf=0,E.bi_valid=0):E.bi_valid>=8&&(E.pending_buf[E.pending++]=255&E.bi_buf,E.bi_buf>>=8,E.bi_valid-=8)}(E)}},7468(eA){"use strict";eA.exports=function Q(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},884(eA){"use strict";eA.exports=["Float16Array","Float32Array","Float64Array","Int8Array","Int16Array","Int32Array","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array"]},9964(eA){var f,t,Q=eA.exports={};function g(){throw new Error("setTimeout has not been defined")}function I(){throw new Error("clearTimeout has not been defined")}function N(P){if(f===setTimeout)return setTimeout(P,0);if((f===g||!f)&&setTimeout)return f=setTimeout,setTimeout(P,0);try{return f(P,0)}catch{try{return f.call(null,P,0)}catch{return f.call(this,P,0)}}}!function(){try{f="function"==typeof setTimeout?setTimeout:g}catch{f=g}try{t="function"==typeof clearTimeout?clearTimeout:I}catch{t=I}}();var j,v=[],B=!1,tA=-1;function w(){!B||!j||(B=!1,j.length?v=j.concat(v):tA=-1,v.length&&aA())}function aA(){if(!B){var P=N(w);B=!0;for(var rA=v.length;rA;){for(j=v,v=[];++tA1)for(var QA=1;QA"===X?(xA(M,"onsgmldeclaration",M.sgmlDecl),M.sgmlDecl="",M.state=wA.TEXT):(H(X)&&(M.state=wA.SGML_DECL_QUOTED),M.sgmlDecl+=X);continue;case wA.SGML_DECL_QUOTED:X===M.q&&(M.state=wA.SGML_DECL,M.q=""),M.sgmlDecl+=X;continue;case wA.DOCTYPE:">"===X?(M.state=wA.TEXT,xA(M,"ondoctype",M.doctype),M.doctype=!0):(M.doctype+=X,"["===X?M.state=wA.DOCTYPE_DTD:H(X)&&(M.state=wA.DOCTYPE_QUOTED,M.q=X));continue;case wA.DOCTYPE_QUOTED:M.doctype+=X,X===M.q&&(M.q="",M.state=wA.DOCTYPE);continue;case wA.DOCTYPE_DTD:"]"===X?(M.doctype+=X,M.state=wA.DOCTYPE):"<"===X?(M.state=wA.OPEN_WAKA,M.startTagPosition=M.position):H(X)?(M.doctype+=X,M.state=wA.DOCTYPE_DTD_QUOTED,M.q=X):M.doctype+=X;continue;case wA.DOCTYPE_DTD_QUOTED:M.doctype+=X,X===M.q&&(M.state=wA.DOCTYPE_DTD,M.q="");continue;case wA.COMMENT:"-"===X?M.state=wA.COMMENT_ENDING:M.comment+=X;continue;case wA.COMMENT_ENDING:"-"===X?(M.state=wA.COMMENT_ENDED,M.comment=HA(M.opt,M.comment),M.comment&&xA(M,"oncomment",M.comment),M.comment=""):(M.comment+="-"+X,M.state=wA.COMMENT);continue;case wA.COMMENT_ENDED:">"!==X?(U(M,"Malformed comment"),M.comment+="--"+X,M.state=wA.COMMENT):M.state=M.doctype&&!0!==M.doctype?wA.DOCTYPE_DTD:wA.TEXT;continue;case wA.CDATA:for(KA=D-1;X&&"]"!==X;)(X=C(R,D++))&&M.trackPosition&&(M.position++,"\n"===X?(M.line++,M.column=0):M.column++);M.cdata+=R.substring(KA,D-1),"]"===X&&(M.state=wA.CDATA_ENDING);continue;case wA.CDATA_ENDING:"]"===X?M.state=wA.CDATA_ENDING_2:(M.cdata+="]"+X,M.state=wA.CDATA);continue;case wA.CDATA_ENDING_2:">"===X?(M.cdata&&xA(M,"oncdata",M.cdata),xA(M,"onclosecdata"),M.cdata="",M.state=wA.TEXT):"]"===X?M.cdata+="]":(M.cdata+="]]"+X,M.state=wA.CDATA);continue;case wA.PROC_INST:"?"===X?M.state=wA.PROC_INST_ENDING:nA(X)?M.state=wA.PROC_INST_BODY:M.procInstName+=X;continue;case wA.PROC_INST_BODY:if(!M.procInstBody&&nA(X))continue;"?"===X?M.state=wA.PROC_INST_ENDING:M.procInstBody+=X;continue;case wA.PROC_INST_ENDING:if(">"===X){const Ne={name:M.procInstName,body:M.procInstBody};yA(M,Ne),xA(M,"onprocessinginstruction",Ne),M.procInstName=M.procInstBody="",M.state=wA.TEXT}else M.procInstBody+="?"+X,M.state=wA.PROC_INST_BODY;continue;case wA.OPEN_TAG:z(uA,X)?M.tagName+=X:(O(M),">"===X?JA(M):"/"===X?M.state=wA.OPEN_TAG_SLASH:(nA(X)||U(M,"Invalid character in tag name"),M.state=wA.ATTRIB));continue;case wA.OPEN_TAG_SLASH:">"===X?(JA(M,!0),$A(M)):(U(M,"Forward-slash in opening tag not followed by >"),M.state=wA.ATTRIB);continue;case wA.ATTRIB:if(nA(X))continue;">"===X?JA(M):"/"===X?M.state=wA.OPEN_TAG_SLASH:z(oA,X)?(M.attribName=X,M.attribValue="",M.state=wA.ATTRIB_NAME):U(M,"Invalid attribute name");continue;case wA.ATTRIB_NAME:"="===X?M.state=wA.ATTRIB_VALUE:">"===X?(U(M,"Attribute without value"),M.attribValue=M.attribName,LA(M),JA(M)):nA(X)?M.state=wA.ATTRIB_NAME_SAW_WHITE:z(uA,X)?M.attribName+=X:U(M,"Invalid attribute name");continue;case wA.ATTRIB_NAME_SAW_WHITE:if("="===X)M.state=wA.ATTRIB_VALUE;else{if(nA(X))continue;U(M,"Attribute without value"),M.tag.attributes[M.attribName]="",M.attribValue="",xA(M,"onattribute",{name:M.attribName,value:""}),M.attribName="",">"===X?JA(M):z(oA,X)?(M.attribName=X,M.state=wA.ATTRIB_NAME):(U(M,"Invalid attribute name"),M.state=wA.ATTRIB)}continue;case wA.ATTRIB_VALUE:if(nA(X))continue;H(X)?(M.q=X,M.state=wA.ATTRIB_VALUE_QUOTED):(M.opt.unquotedAttributeValues||cA(M,"Unquoted attribute value"),M.state=wA.ATTRIB_VALUE_UNQUOTED,M.attribValue=X);continue;case wA.ATTRIB_VALUE_QUOTED:if(X!==M.q){"&"===X?M.state=wA.ATTRIB_VALUE_ENTITY_Q:M.attribValue+=X;continue}LA(M),M.q="",M.state=wA.ATTRIB_VALUE_CLOSED;continue;case wA.ATTRIB_VALUE_CLOSED:nA(X)?M.state=wA.ATTRIB:">"===X?JA(M):"/"===X?M.state=wA.OPEN_TAG_SLASH:z(oA,X)?(U(M,"No whitespace between attributes"),M.attribName=X,M.attribValue="",M.state=wA.ATTRIB_NAME):U(M,"Invalid attribute name");continue;case wA.ATTRIB_VALUE_UNQUOTED:if(!pA(X)){"&"===X?M.state=wA.ATTRIB_VALUE_ENTITY_U:M.attribValue+=X;continue}LA(M),">"===X?JA(M):M.state=wA.ATTRIB;continue;case wA.CLOSE_TAG:if(M.tagName)">"===X?$A(M):z(uA,X)?M.tagName+=X:M.script?(M.script+=""===X?$A(M):U(M,"Invalid characters in closing tag");continue;case wA.TEXT_ENTITY:case wA.ATTRIB_VALUE_ENTITY_Q:case wA.ATTRIB_VALUE_ENTITY_U:var bA,le;switch(M.state){case wA.TEXT_ENTITY:bA=wA.TEXT,le="textNode";break;case wA.ATTRIB_VALUE_ENTITY_Q:bA=wA.ATTRIB_VALUE_QUOTED,le="attribValue";break;case wA.ATTRIB_VALUE_ENTITY_U:bA=wA.ATTRIB_VALUE_UNQUOTED,le="attribValue"}if(";"===X){var ve=IA(M);M.opt.unparsedEntities&&!Object.values(g.XML_ENTITIES).includes(ve)?((M.entityCount+=1)>M.opt.maxEntityCount&&cA(M,"Parsed entity count exceeds max entity count"),(M.entityDepth+=1)>M.opt.maxEntityDepth&&cA(M,"Parsed entity depth exceeds max entity depth"),M.entity="",M.state=bA,M.write(ve),M.entityDepth-=1):(M[le]+=ve,M.entity="",M.state=bA)}else z(M.entity.length?RA:dA,X)?M.entity+=X:(U(M,"Invalid character in entity name"),M[le]+="&"+M.entity+X,M.entity="",M.state=bA);continue;default:throw new Error(M,"Unknown state: "+M.state)}return M.position>=M.bufferCheckPosition&&function K(R){for(var M=Math.max(g.MAX_BUFFER_LENGTH,10),D=0,X=0,YA=I.length;XM)switch(I[X]){case"textNode":Ee(R);break;case"cdata":xA(R,"oncdata",R.cdata),R.cdata="";break;case"script":xA(R,"onscript",R.script),R.script="";break;default:cA(R,"Max buffer length exceeded: "+I[X])}D=Math.max(D,KA)}R.bufferCheckPosition=g.MAX_BUFFER_LENGTH-D+R.position}(M),M},resume:function(){return this.error=null,this},close:function(){return this.write(null)},flush:function(){!function B(R){Ee(R),""!==R.cdata&&(xA(R,"oncdata",R.cdata),R.cdata=""),""!==R.script&&(xA(R,"onscript",R.script),R.script="")}(this)}};try{j=f(9760).Stream}catch{j=function(){}}j||(j=function(){});var tA=g.EVENTS.filter(function(R){return"error"!==R&&"end"!==R});function AA(R,M){if(!(this instanceof AA))return new AA(R,M);j.apply(this),this._parser=new N(R,M),this.writable=!0,this.readable=!0;var D=this;this._parser.onend=function(){D.emit("end")},this._parser.onerror=function(X){D.emit("error",X),D._parser.error=null},this._decoder=null,this._decoderBuffer=null,tA.forEach(function(X){Object.defineProperty(D,"on"+X,{get:function(){return D._parser["on"+X]},set:function(YA){if(!YA)return D.removeAllListeners(X),D._parser["on"+X]=YA,YA;D.on(X,YA)},enumerable:!0,configurable:!1})})}(AA.prototype=Object.create(j.prototype,{constructor:{value:AA}}))._decodeBuffer=function(R,M){if(this._decoderBuffer&&(R=t.concat([this._decoderBuffer,R]),this._decoderBuffer=null),!this._decoder){var D=function aA(R,M){if(R.length>=2){if(255===R[0]&&254===R[1])return"utf-16le";if(254===R[0]&&255===R[1])return"utf-16be"}return R.length>=3&&239===R[0]&&187===R[1]&&191===R[2]?"utf8":R.length>=4?60===R[0]&&0===R[1]&&63===R[2]&&0===R[3]?"utf-16le":0===R[0]&&60===R[1]&&0===R[2]&&63===R[3]?"utf-16be":"utf8":M?"utf8":null}(R,M);if(!D)return this._decoderBuffer=R,"";this._parser.encoding=D,this._decoder=new TextDecoder(D)}return this._decoder.decode(R,{stream:!M})},AA.prototype.write=function(R){if("function"==typeof t&&"function"==typeof t.isBuffer&&t.isBuffer(R))R=this._decodeBuffer(R,!1);else if(this._decoderBuffer){var M=this._decodeBuffer(t.alloc(0),!0);M&&(this._parser.write(M),this.emit("data",M))}return this._parser.write(R.toString()),this.emit("data",R),!0},AA.prototype.end=function(R){if(R&&R.length&&this.write(R),this._decoderBuffer){var M=this._decodeBuffer(t.alloc(0),!0);M&&(this._parser.write(M),this.emit("data",M))}else if(this._decoder){var D=this._decoder.decode();D&&(this._parser.write(D),this.emit("data",D))}return this._parser.end(),!0},AA.prototype.on=function(R,M){var D=this;return!D._parser["on"+R]&&-1!==tA.indexOf(R)&&(D._parser["on"+R]=function(){var X=1===arguments.length?[arguments[0]]:Array.apply(null,arguments);X.splice(0,0,R),D.emit.apply(D,X)}),j.prototype.on.call(D,R,M)};var L="[CDATA[",P="DOCTYPE",rA="http://www.w3.org/XML/1998/namespace",QA="http://www.w3.org/2000/xmlns/",NA={xml:rA,xmlns:QA},oA=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,uA=/[:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/,dA=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]/,RA=/[#:_A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\u00B7\u0300-\u036F\u203F-\u2040.\d-]/;function nA(R){return" "===R||"\n"===R||"\r"===R||"\t"===R}function H(R){return'"'===R||"'"===R}function pA(R){return">"===R||nA(R)}function z(R,M){return R.test(M)}function OA(R,M){return!z(R,M)}var R,M,D,wA=0;for(var VA in g.STATE={BEGIN:wA++,BEGIN_WHITESPACE:wA++,TEXT:wA++,TEXT_ENTITY:wA++,OPEN_WAKA:wA++,SGML_DECL:wA++,SGML_DECL_QUOTED:wA++,DOCTYPE:wA++,DOCTYPE_QUOTED:wA++,DOCTYPE_DTD:wA++,DOCTYPE_DTD_QUOTED:wA++,COMMENT_STARTING:wA++,COMMENT:wA++,COMMENT_ENDING:wA++,COMMENT_ENDED:wA++,CDATA:wA++,CDATA_ENDING:wA++,CDATA_ENDING_2:wA++,PROC_INST:wA++,PROC_INST_BODY:wA++,PROC_INST_ENDING:wA++,OPEN_TAG:wA++,OPEN_TAG_SLASH:wA++,ATTRIB:wA++,ATTRIB_NAME:wA++,ATTRIB_NAME_SAW_WHITE:wA++,ATTRIB_VALUE:wA++,ATTRIB_VALUE_QUOTED:wA++,ATTRIB_VALUE_CLOSED:wA++,ATTRIB_VALUE_UNQUOTED:wA++,ATTRIB_VALUE_ENTITY_Q:wA++,ATTRIB_VALUE_ENTITY_U:wA++,CLOSE_TAG:wA++,CLOSE_TAG_SAW_WHITE:wA++,SCRIPT:wA++,SCRIPT_ENDING:wA++},g.XML_ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},g.ENTITIES={amp:"&",gt:">",lt:"<",quot:'"',apos:"'",AElig:198,Aacute:193,Acirc:194,Agrave:192,Aring:197,Atilde:195,Auml:196,Ccedil:199,ETH:208,Eacute:201,Ecirc:202,Egrave:200,Euml:203,Iacute:205,Icirc:206,Igrave:204,Iuml:207,Ntilde:209,Oacute:211,Ocirc:212,Ograve:210,Oslash:216,Otilde:213,Ouml:214,THORN:222,Uacute:218,Ucirc:219,Ugrave:217,Uuml:220,Yacute:221,aacute:225,acirc:226,aelig:230,agrave:224,aring:229,atilde:227,auml:228,ccedil:231,eacute:233,ecirc:234,egrave:232,eth:240,euml:235,iacute:237,icirc:238,igrave:236,iuml:239,ntilde:241,oacute:243,ocirc:244,ograve:242,oslash:248,otilde:245,ouml:246,szlig:223,thorn:254,uacute:250,ucirc:251,ugrave:249,uuml:252,yacute:253,yuml:255,copy:169,reg:174,nbsp:160,iexcl:161,cent:162,pound:163,curren:164,yen:165,brvbar:166,sect:167,uml:168,ordf:170,laquo:171,not:172,shy:173,macr:175,deg:176,plusmn:177,sup1:185,sup2:178,sup3:179,acute:180,micro:181,para:182,middot:183,cedil:184,ordm:186,raquo:187,frac14:188,frac12:189,frac34:190,iquest:191,times:215,divide:247,OElig:338,oelig:339,Scaron:352,scaron:353,Yuml:376,fnof:402,circ:710,tilde:732,Alpha:913,Beta:914,Gamma:915,Delta:916,Epsilon:917,Zeta:918,Eta:919,Theta:920,Iota:921,Kappa:922,Lambda:923,Mu:924,Nu:925,Xi:926,Omicron:927,Pi:928,Rho:929,Sigma:931,Tau:932,Upsilon:933,Phi:934,Chi:935,Psi:936,Omega:937,alpha:945,beta:946,gamma:947,delta:948,epsilon:949,zeta:950,eta:951,theta:952,iota:953,kappa:954,lambda:955,mu:956,nu:957,xi:958,omicron:959,pi:960,rho:961,sigmaf:962,sigma:963,tau:964,upsilon:965,phi:966,chi:967,psi:968,omega:969,thetasym:977,upsih:978,piv:982,ensp:8194,emsp:8195,thinsp:8201,zwnj:8204,zwj:8205,lrm:8206,rlm:8207,ndash:8211,mdash:8212,lsquo:8216,rsquo:8217,sbquo:8218,ldquo:8220,rdquo:8221,bdquo:8222,dagger:8224,Dagger:8225,bull:8226,hellip:8230,permil:8240,prime:8242,Prime:8243,lsaquo:8249,rsaquo:8250,oline:8254,frasl:8260,euro:8364,image:8465,weierp:8472,real:8476,trade:8482,alefsym:8501,larr:8592,uarr:8593,rarr:8594,darr:8595,harr:8596,crarr:8629,lArr:8656,uArr:8657,rArr:8658,dArr:8659,hArr:8660,forall:8704,part:8706,exist:8707,empty:8709,nabla:8711,isin:8712,notin:8713,ni:8715,prod:8719,sum:8721,minus:8722,lowast:8727,radic:8730,prop:8733,infin:8734,ang:8736,and:8743,or:8744,cap:8745,cup:8746,int:8747,there4:8756,sim:8764,cong:8773,asymp:8776,ne:8800,equiv:8801,le:8804,ge:8805,sub:8834,sup:8835,nsub:8836,sube:8838,supe:8839,oplus:8853,otimes:8855,perp:8869,sdot:8901,lceil:8968,rceil:8969,lfloor:8970,rfloor:8971,lang:9001,rang:9002,loz:9674,spades:9824,clubs:9827,hearts:9829,diams:9830},Object.keys(g.ENTITIES).forEach(function(R){var M=g.ENTITIES[R],D="number"==typeof M?String.fromCharCode(M):M;g.ENTITIES[R]=D}),g.STATE)g.STATE[g.STATE[VA]]=VA;function kA(R,M,D){R[M]&&R[M](D)}function fA(R){return R?R.toLowerCase().replace(/[^a-z0-9]/g,""):null}function yA(R,M){if(R.strict&&R.encoding&&M&&"xml"===M.name){var D=function hA(R){var M=R&&R.match(/(?:^|\s)encoding\s*=\s*(['"])([^'"]+)\1/i);return M?M[2]:null}(M.body);D&&!function UA(R,M){const D=fA(R),X=fA(M);return!D||!X||("utf16"===X?"utf16le"===D||"utf16be"===D:D===X)}(R.encoding,D)&&U(R,"XML declaration encoding "+D+" does not match detected stream encoding "+R.encoding.toUpperCase())}}function xA(R,M,D){R.textNode&&Ee(R),kA(R,M,D)}function Ee(R){R.textNode=HA(R.opt,R.textNode),R.textNode&&kA(R,"ontext",R.textNode),R.textNode=""}function HA(R,M){return R.trim&&(M=M.trim()),R.normalize&&(M=M.replace(/\s+/g," ")),M}function cA(R,M){return Ee(R),R.trackPosition&&(M+="\nLine: "+R.line+"\nColumn: "+R.column+"\nChar: "+R.c),M=new Error(M),R.error=M,kA(R,"onerror",M),R}function J(R){return R.sawRoot&&!R.closedRoot&&U(R,"Unclosed root tag"),R.state!==wA.BEGIN&&R.state!==wA.BEGIN_WHITESPACE&&R.state!==wA.TEXT&&cA(R,"Unexpected end"),Ee(R),R.c="",R.closed=!0,kA(R,"onend"),N.call(R,R.strict,R.opt),R}function U(R,M){if("object"!=typeof R||!(R instanceof N))throw new Error("bad call to strictFail");R.strict&&cA(R,M)}function O(R){R.strict||(R.tagName=R.tagName[R.looseCase]());var M=R.tags[R.tags.length-1]||R,D=R.tag={name:R.tagName,attributes:{}};R.opt.xmlns&&(D.ns=M.ns),R.attribList.length=0,xA(R,"onopentagstart",D)}function lA(R,M){var X=R.indexOf(":")<0?["",R]:R.split(":"),YA=X[0],KA=X[1];return M&&"xmlns"===R&&(YA="xmlns",KA=""),{prefix:YA,local:KA}}function LA(R){if(R.strict||(R.attribName=R.attribName[R.looseCase]()),-1!==R.attribList.indexOf(R.attribName)||R.tag.attributes.hasOwnProperty(R.attribName))R.attribName=R.attribValue="";else{if(R.opt.xmlns){var M=lA(R.attribName,!0),X=M.local;if("xmlns"===M.prefix)if("xml"===X&&R.attribValue!==rA)U(R,"xml: prefix must be bound to "+rA+"\nActual: "+R.attribValue);else if("xmlns"===X&&R.attribValue!==QA)U(R,"xmlns: prefix must be bound to "+QA+"\nActual: "+R.attribValue);else{var YA=R.tag,KA=R.tags[R.tags.length-1]||R;YA.ns===KA.ns&&(YA.ns=Object.create(KA.ns)),YA.ns[X]=R.attribValue}R.attribList.push([R.attribName,R.attribValue])}else R.tag.attributes[R.attribName]=R.attribValue,xA(R,"onattribute",{name:R.attribName,value:R.attribValue});R.attribName=R.attribValue=""}}function JA(R,M){if(R.opt.xmlns){var D=R.tag,X=lA(R.tagName);D.prefix=X.prefix,D.local=X.local,D.uri=D.ns[X.prefix]||"",D.prefix&&!D.uri&&(U(R,"Unbound namespace prefix: "+JSON.stringify(R.tagName)),D.uri=X.prefix),D.ns&&(R.tags[R.tags.length-1]||R).ns!==D.ns&&Object.keys(D.ns).forEach(function(S){xA(R,"onopennamespace",{prefix:S,uri:D.ns[S]})});for(var KA=0,bA=R.attribList.length;KA",R.tagName="",void(R.state=wA.SCRIPT);xA(R,"onscript",R.script),R.script=""}var M=R.tags.length,D=R.tagName;R.strict||(D=D[R.looseCase]());for(var X=D;M--&&R.tags[M].name!==X;)U(R,"Unexpected close tag");if(M<0)return U(R,"Unmatched closing tag: "+R.tagName),R.textNode+="",void(R.state=wA.TEXT);R.tagName=D;for(var KA=R.tags.length;KA-- >M;){var bA=R.tag=R.tags.pop();R.tagName=R.tag.name,xA(R,"onclosetag",R.tagName);var le={};for(var ve in bA.ns)le[ve]=bA.ns[ve];R.opt.xmlns&&bA.ns!==(R.tags[R.tags.length-1]||R).ns&&Object.keys(bA.ns).forEach(function(Te){xA(R,"onclosenamespace",{prefix:Te,uri:bA.ns[Te]})})}0===M&&(R.closedRoot=!0),R.tagName=R.attribValue=R.attribName="",R.attribList.length=0,R.state=wA.TEXT}function IA(R){var X,M=R.entity,D=M.toLowerCase(),YA="";return R.ENTITIES[M]?R.ENTITIES[M]:R.ENTITIES[D]?R.ENTITIES[D]:("#"===(M=D).charAt(0)&&("x"===M.charAt(1)?(M=M.slice(2),YA=(X=parseInt(M,16)).toString(16)):(M=M.slice(1),YA=(X=parseInt(M,10)).toString(10))),M=M.replace(/^0+/,""),isNaN(X)||YA.toLowerCase()!==M||X<0||X>1114111?(U(R,"Invalid character entity"),"&"+R.entity+";"):String.fromCodePoint(X))}function gA(R,M){"<"===M?(R.state=wA.OPEN_WAKA,R.startTagPosition=R.position):nA(M)||(U(R,"Non-whitespace before first tag."),R.textNode=M,R.state=wA.TEXT)}function C(R,M){var D="";return M1114111||M(Te)!==Te)throw RangeError("Invalid code point: "+Te);Te<=65535?YA.push(Te):YA.push(55296+((Te-=65536)>>10),Te%1024+56320),(le+1===ve||YA.length>16384)&&(Ne+=R.apply(null,YA),YA.length=0)}return Ne},Object.defineProperty?Object.defineProperty(String,"fromCodePoint",{value:D,configurable:!0,writable:!0}):String.fromCodePoint=D)}(Q)},6255(eA,Q,f){"use strict";var t=f(8651),g=f(9295),I=f(8890)(),N=f(8109),K=f(6785),v=t("%Math.floor%");eA.exports=function(j,tA){if("function"!=typeof j)throw new K("`fn` is not a function");if("number"!=typeof tA||tA<0||tA>4294967295||v(tA)!==tA)throw new K("`length` must be a positive 32-bit integer");var w=arguments.length>2&&!!arguments[2],aA=!0,AA=!0;if("length"in j&&N){var L=N(j,"length");L&&!L.configurable&&(aA=!1),L&&!L.writable&&(AA=!1)}return(aA||AA||!w)&&(I?g(j,"length",tA,!0,!0):g(j,"length",tA)),j}},9760(eA,Q,f){eA.exports=I;var t=f(4785).EventEmitter;function I(){t.call(this)}f(9784)(I,t),I.Readable=f(8261),I.Writable=f(9781),I.Duplex=f(4903),I.Transform=f(8569),I.PassThrough=f(7723),I.finished=f(2167),I.pipeline=f(3765),I.Stream=I,I.prototype.pipe=function(N,K){var v=this;function B(P){N.writable&&!1===N.write(P)&&v.pause&&v.pause()}function j(){v.readable&&v.resume&&v.resume()}v.on("data",B),N.on("drain",j),!N._isStdio&&(!K||!1!==K.end)&&(v.on("end",w),v.on("close",aA));var tA=!1;function w(){tA||(tA=!0,N.end())}function aA(){tA||(tA=!0,"function"==typeof N.destroy&&N.destroy())}function AA(P){if(L(),0===t.listenerCount(this,"error"))throw P}function L(){v.removeListener("data",B),N.removeListener("drain",j),v.removeListener("end",w),v.removeListener("close",aA),v.removeListener("error",AA),N.removeListener("error",AA),v.removeListener("end",L),v.removeListener("close",L),N.removeListener("close",L)}return v.on("error",AA),N.on("error",AA),v.on("end",L),v.on("close",L),N.on("close",L),N.emit("pipe",v),N}},3797(eA){"use strict";var f={};function t(v,B,j){j||(j=Error);var w=function(aA){function AA(L,P,rA){return aA.call(this,function tA(aA,AA,L){return"string"==typeof B?B:B(aA,AA,L)}(L,P,rA))||this}return function Q(v,B){v.prototype=Object.create(B.prototype),v.prototype.constructor=v,v.__proto__=B}(AA,aA),AA}(j);w.prototype.name=j.name,w.prototype.code=v,f[v]=w}function g(v,B){if(Array.isArray(v)){var j=v.length;return v=v.map(function(tA){return String(tA)}),j>2?"one of ".concat(B," ").concat(v.slice(0,j-1).join(", "),", or ")+v[j-1]:2===j?"one of ".concat(B," ").concat(v[0]," or ").concat(v[1]):"of ".concat(B," ").concat(v[0])}return"of ".concat(B," ").concat(String(v))}t("ERR_INVALID_OPT_VALUE",function(v,B){return'The value "'+B+'" is invalid for option "'+v+'"'},TypeError),t("ERR_INVALID_ARG_TYPE",function(v,B,j){var tA,w;if("string"==typeof B&&function I(v,B,j){return v.substr(!j||j<0?0:+j,B.length)===B}(B,"not ")?(tA="must not be",B=B.replace(/^not /,"")):tA="must be",function N(v,B,j){return(void 0===j||j>v.length)&&(j=v.length),v.substring(j-B.length,j)===B}(v," argument"))w="The ".concat(v," ").concat(tA," ").concat(g(B,"type"));else{var aA=function K(v,B,j){return"number"!=typeof j&&(j=0),!(j+B.length>v.length)&&-1!==v.indexOf(B,j)}(v,".")?"property":"argument";w='The "'.concat(v,'" ').concat(aA," ").concat(tA," ").concat(g(B,"type"))}return w+". Received type ".concat(typeof j)},TypeError),t("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),t("ERR_METHOD_NOT_IMPLEMENTED",function(v){return"The "+v+" method is not implemented"}),t("ERR_STREAM_PREMATURE_CLOSE","Premature close"),t("ERR_STREAM_DESTROYED",function(v){return"Cannot call "+v+" after a stream was destroyed"}),t("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),t("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),t("ERR_STREAM_WRITE_AFTER_END","write after end"),t("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),t("ERR_UNKNOWN_ENCODING",function(v){return"Unknown encoding: "+v},TypeError),t("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),eA.exports.F=f},4903(eA,Q,f){"use strict";var t=f(9964),g=Object.keys||function(aA){var AA=[];for(var L in aA)AA.push(L);return AA};eA.exports=j;var I=f(8261),N=f(9781);f(9784)(j,I);for(var K=g(N.prototype),v=0;v0)if("string"!=typeof D&&!bA.objectMode&&Object.getPrototypeOf(D)!==v.prototype&&(D=function j(M){return v.from(M)}(D)),YA)bA.endEmitted?pA(M,new dA):hA(M,bA,D,!0);else if(bA.ended)pA(M,new oA);else{if(bA.destroyed)return!1;bA.reading=!1,bA.decoder&&!X?(D=bA.decoder.write(D),bA.objectMode||0!==D.length?hA(M,bA,D,!1):J(M,bA)):hA(M,bA,D,!1)}else YA||(bA.reading=!1,J(M,bA));return!bA.ended&&(bA.lengthD.highWaterMark&&(D.highWaterMark=function yA(M){return M>=UA?M=UA:(M--,M|=M>>>1,M|=M>>>2,M|=M>>>4,M|=M>>>8,M|=M>>>16,M++),M}(M)),M<=D.length?M:D.ended?D.length:(D.needReadable=!0,0))}function HA(M){var D=M._readableState;aA("emitReadable",D.needReadable,D.emittedReadable),D.needReadable=!1,D.emittedReadable||(aA("emitReadable",D.flowing),D.emittedReadable=!0,t.nextTick(cA,M))}function cA(M){var D=M._readableState;aA("emitReadable_",D.destroyed,D.length,D.ended),!D.destroyed&&(D.length||D.ended)&&(M.emit("readable"),D.emittedReadable=!1),D.needReadable=!D.flowing&&!D.ended&&D.length<=D.highWaterMark,IA(M)}function J(M,D){D.readingMore||(D.readingMore=!0,t.nextTick(U,M,D))}function U(M,D){for(;!D.reading&&!D.ended&&(D.length0,D.resumeScheduled&&!D.paused?D.flowing=!0:M.listenerCount("data")>0&&M.resume()}function LA(M){aA("readable nexttick read 0"),M.read(0)}function $A(M,D){aA("resume",D.reading),D.reading||M.read(0),D.resumeScheduled=!1,M.emit("resume"),IA(M),D.flowing&&!D.reading&&M.read(0)}function IA(M){var D=M._readableState;for(aA("flow",D.flowing);D.flowing&&null!==M.read(););}function gA(M,D){return 0===D.length?null:(D.objectMode?X=D.buffer.shift():!M||M>=D.length?(X=D.decoder?D.buffer.join(""):1===D.buffer.length?D.buffer.first():D.buffer.concat(D.length),D.buffer.clear()):X=D.buffer.consume(M,D.decoder),X);var X}function C(M){var D=M._readableState;aA("endReadable",D.endEmitted),D.endEmitted||(D.ended=!0,t.nextTick(b,D,M))}function b(M,D){if(aA("endReadableNT",M.endEmitted,M.length),!M.endEmitted&&0===M.length&&(M.endEmitted=!0,D.readable=!1,D.emit("end"),M.autoDestroy)){var X=D._writableState;(!X||X.autoDestroy&&X.finished)&&D.destroy()}}function R(M,D){for(var X=0,YA=M.length;X=D.highWaterMark:D.length>0)||D.ended))return aA("read: emitReadable",D.length,D.ended),0===D.length&&D.ended?C(this):HA(this),null;if(0===(M=xA(M,D))&&D.ended)return 0===D.length&&C(this),null;var KA,YA=D.needReadable;return aA("need readable",YA),(0===D.length||D.length-M0?gA(M,D):null)?(D.needReadable=D.length<=D.highWaterMark,M=0):(D.length-=M,D.awaitDrain=0),0===D.length&&(D.ended||(D.needReadable=!0),X!==M&&D.ended&&C(this)),null!==KA&&this.emit("data",KA),KA},VA.prototype._read=function(M){pA(this,new uA("_read()"))},VA.prototype.pipe=function(M,D){var X=this,YA=this._readableState;switch(YA.pipesCount){case 0:YA.pipes=M;break;case 1:YA.pipes=[YA.pipes,M];break;default:YA.pipes.push(M)}YA.pipesCount+=1,aA("pipe count=%d opts=%j",YA.pipesCount,D);var bA=D&&!1===D.end||M===t.stdout||M===t.stderr?Y:ve;function ve(){aA("onend"),M.end()}YA.endEmitted?t.nextTick(bA):X.once("end",bA),M.on("unpipe",function le(k,m){aA("onunpipe"),k===X&&m&&!1===m.hasUnpiped&&(m.hasUnpiped=!0,function ze(){aA("cleanup"),M.removeListener("close",sA),M.removeListener("finish",S),M.removeListener("drain",Ne),M.removeListener("error",oe),M.removeListener("unpipe",le),X.removeListener("end",ve),X.removeListener("end",Y),X.removeListener("data",Oe),Te=!0,YA.awaitDrain&&(!M._writableState||M._writableState.needDrain)&&Ne()}())});var Ne=function O(M){return function(){var X=M._readableState;aA("pipeOnDrain",X.awaitDrain),X.awaitDrain&&X.awaitDrain--,0===X.awaitDrain&&N(M,"data")&&(X.flowing=!0,IA(M))}}(X);M.on("drain",Ne);var Te=!1;function Oe(k){aA("ondata");var m=M.write(k);aA("dest.write",m),!1===m&&((1===YA.pipesCount&&YA.pipes===M||YA.pipesCount>1&&-1!==R(YA.pipes,M))&&!Te&&(aA("false write response, pause",YA.awaitDrain),YA.awaitDrain++),X.pause())}function oe(k){aA("onerror",k),Y(),M.removeListener("error",oe),0===N(M,"error")&&pA(M,k)}function sA(){M.removeListener("finish",S),Y()}function S(){aA("onfinish"),M.removeListener("close",sA),Y()}function Y(){aA("unpipe"),X.unpipe(M)}return X.on("data",Oe),function OA(M,D,X){if("function"==typeof M.prependListener)return M.prependListener(D,X);M._events&&M._events[D]?Array.isArray(M._events[D])?M._events[D].unshift(X):M._events[D]=[X,M._events[D]]:M.on(D,X)}(M,"error",oe),M.once("close",sA),M.once("finish",S),M.emit("pipe",X),YA.flowing||(aA("pipe resume"),X.resume()),M},VA.prototype.unpipe=function(M){var D=this._readableState,X={hasUnpiped:!1};if(0===D.pipesCount)return this;if(1===D.pipesCount)return M&&M!==D.pipes||(M||(M=D.pipes),D.pipes=null,D.pipesCount=0,D.flowing=!1,M&&M.emit("unpipe",this,X)),this;if(!M){var YA=D.pipes,KA=D.pipesCount;D.pipes=null,D.pipesCount=0,D.flowing=!1;for(var bA=0;bA0,!1!==YA.flowing&&this.resume()):"readable"===M&&!YA.endEmitted&&!YA.readableListening&&(YA.readableListening=YA.needReadable=!0,YA.flowing=!1,YA.emittedReadable=!1,aA("on readable",YA.length,YA.reading),YA.length?HA(this):YA.reading||t.nextTick(LA,this)),X},VA.prototype.removeListener=function(M,D){var X=K.prototype.removeListener.call(this,M,D);return"readable"===M&&t.nextTick(lA,this),X},VA.prototype.removeAllListeners=function(M){var D=K.prototype.removeAllListeners.apply(this,arguments);return("readable"===M||void 0===M)&&t.nextTick(lA,this),D},VA.prototype.resume=function(){var M=this._readableState;return M.flowing||(aA("resume"),M.flowing=!M.readableListening,function JA(M,D){D.resumeScheduled||(D.resumeScheduled=!0,t.nextTick($A,M,D))}(this,M)),M.paused=!1,this},VA.prototype.pause=function(){return aA("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(aA("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},VA.prototype.wrap=function(M){var D=this,X=this._readableState,YA=!1;for(var KA in M.on("end",function(){if(aA("wrapped end"),X.decoder&&!X.ended){var le=X.decoder.end();le&&le.length&&D.push(le)}D.push(null)}),M.on("data",function(le){aA("wrapped data"),X.decoder&&(le=X.decoder.write(le)),X.objectMode&&null==le||!(X.objectMode||le&&le.length)||D.push(le)||(YA=!0,M.pause())}),M)void 0===this[KA]&&"function"==typeof M[KA]&&(this[KA]=function(ve){return function(){return M[ve].apply(M,arguments)}}(KA));for(var bA=0;bA-1))throw new nA(gA);return this._writableState.defaultEncoding=gA,this},Object.defineProperty(wA.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(wA.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),wA.prototype._write=function(IA,gA,C){C(new QA("_write()"))},wA.prototype._writev=null,wA.prototype.end=function(IA,gA,C){var b=this._writableState;return"function"==typeof IA?(C=IA,IA=null,gA=null):"function"==typeof gA&&(C=gA,gA=null),null!=IA&&this.write(IA,gA),b.corked&&(b.corked=1,this.uncork()),b.ending||function JA(IA,gA,C){gA.ending=!0,LA(IA,gA),C&&(gA.finished?t.nextTick(C):IA.once("finish",C)),gA.ended=!0,IA.writable=!1}(this,b,C),this},Object.defineProperty(wA.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(wA.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(gA){this._writableState&&(this._writableState.destroyed=gA)}}),wA.prototype.destroy=aA.destroy,wA.prototype._undestroy=aA.undestroy,wA.prototype._destroy=function(IA,gA){gA(IA)}},9676(eA,Q,f){"use strict";var g,t=f(9964);function I(RA,nA,H){return nA=function N(RA){var nA=function K(RA,nA){if("object"!=typeof RA||null===RA)return RA;var H=RA[Symbol.toPrimitive];if(void 0!==H){var pA=H.call(RA,nA||"default");if("object"!=typeof pA)return pA;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===nA?String:Number)(RA)}(RA,"string");return"symbol"==typeof nA?nA:String(nA)}(nA),nA in RA?Object.defineProperty(RA,nA,{value:H,enumerable:!0,configurable:!0,writable:!0}):RA[nA]=H,RA}var v=f(2167),B=Symbol("lastResolve"),j=Symbol("lastReject"),tA=Symbol("error"),w=Symbol("ended"),aA=Symbol("lastPromise"),AA=Symbol("handlePromise"),L=Symbol("stream");function P(RA,nA){return{value:RA,done:nA}}function rA(RA){var nA=RA[B];if(null!==nA){var H=RA[L].read();null!==H&&(RA[aA]=null,RA[B]=null,RA[j]=null,nA(P(H,!1)))}}function QA(RA){t.nextTick(rA,RA)}var oA=Object.getPrototypeOf(function(){}),uA=Object.setPrototypeOf((I(g={get stream(){return this[L]},next:function(){var nA=this,H=this[tA];if(null!==H)return Promise.reject(H);if(this[w])return Promise.resolve(P(void 0,!0));if(this[L].destroyed)return new Promise(function(wA,VA){t.nextTick(function(){nA[tA]?VA(nA[tA]):wA(P(void 0,!0))})});var z,pA=this[aA];if(pA)z=new Promise(function NA(RA,nA){return function(H,pA){RA.then(function(){nA[w]?H(P(void 0,!0)):nA[AA](H,pA)},pA)}}(pA,this));else{var OA=this[L].read();if(null!==OA)return Promise.resolve(P(OA,!1));z=new Promise(this[AA])}return this[aA]=z,z}},Symbol.asyncIterator,function(){return this}),I(g,"return",function(){var nA=this;return new Promise(function(H,pA){nA[L].destroy(null,function(z){z?pA(z):H(P(void 0,!0))})})}),g),oA);eA.exports=function(nA){var H,pA=Object.create(uA,(I(H={},L,{value:nA,writable:!0}),I(H,B,{value:null,writable:!0}),I(H,j,{value:null,writable:!0}),I(H,tA,{value:null,writable:!0}),I(H,w,{value:nA._readableState.endEmitted,writable:!0}),I(H,AA,{value:function(OA,wA){var VA=pA[L].read();VA?(pA[aA]=null,pA[B]=null,pA[j]=null,OA(P(VA,!1))):(pA[B]=OA,pA[j]=wA)},writable:!0}),H));return pA[aA]=null,v(nA,function(z){if(z&&"ERR_STREAM_PREMATURE_CLOSE"!==z.code){var OA=pA[j];return null!==OA&&(pA[aA]=null,pA[B]=null,pA[j]=null,OA(z)),void(pA[tA]=z)}var wA=pA[B];null!==wA&&(pA[aA]=null,pA[B]=null,pA[j]=null,wA(P(void 0,!0))),pA[w]=!0}),nA.on("readable",QA.bind(null,pA)),pA}},7385(eA,Q,f){"use strict";var t=f(9964);function I(j,tA){v(j,tA),N(j)}function N(j){j._writableState&&!j._writableState.emitClose||j._readableState&&!j._readableState.emitClose||j.emit("close")}function v(j,tA){j.emit("error",tA)}eA.exports={destroy:function g(j,tA){var w=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(tA?tA(j):j&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,t.nextTick(v,this,j)):t.nextTick(v,this,j)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(j||null,function(L){!tA&&L?w._writableState?w._writableState.errorEmitted?t.nextTick(N,w):(w._writableState.errorEmitted=!0,t.nextTick(I,w,L)):t.nextTick(I,w,L):tA?(t.nextTick(N,w),tA(L)):t.nextTick(N,w)}),this)},undestroy:function K(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function B(j,tA){var w=j._readableState,aA=j._writableState;w&&w.autoDestroy||aA&&aA.autoDestroy?j.destroy(tA):j.emit("error",tA)}}},2167(eA,Q,f){"use strict";var t=f(3797).F.ERR_STREAM_PREMATURE_CLOSE;function I(){}eA.exports=function K(v,B,j){if("function"==typeof B)return K(v,null,B);B||(B={}),j=function g(v){var B=!1;return function(){if(!B){B=!0;for(var j=arguments.length,tA=new Array(j),w=0;w0,function(H){NA||(NA=H),H&&oA.forEach(tA),!RA&&(oA.forEach(tA),QA(NA))})});return P.reduce(w)}},8130(eA,Q,f){"use strict";var t=f(3797).F.ERR_INVALID_OPT_VALUE;eA.exports={getHighWaterMark:function I(N,K,v,B){var j=function g(N,K,v){return null!=N.highWaterMark?N.highWaterMark:K?N[v]:null}(K,B,v);if(null!=j){if(!isFinite(j)||Math.floor(j)!==j||j<0)throw new t(B?v:"highWaterMark",j);return Math.floor(j)}return N.objectMode?16:16384}}},9018(eA,Q,f){eA.exports=f(4785).EventEmitter},3143(eA,Q,f){"use strict";var t=f(5691).Buffer,g=t.isEncoding||function(oA){switch((oA=""+oA)&&oA.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function K(oA){var uA;switch(this.encoding=function N(oA){var uA=function I(oA){if(!oA)return"utf8";for(var uA;;)switch(oA){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return oA;default:if(uA)return;oA=(""+oA).toLowerCase(),uA=!0}}(oA);if("string"!=typeof uA&&(t.isEncoding===g||!g(oA)))throw new Error("Unknown encoding: "+oA);return uA||oA}(oA),this.encoding){case"utf16le":this.text=AA,this.end=L,uA=4;break;case"utf8":this.fillLast=tA,uA=4;break;case"base64":this.text=P,this.end=rA,uA=3;break;default:return this.write=QA,void(this.end=NA)}this.lastNeed=0,this.lastTotal=0,this.lastChar=t.allocUnsafe(uA)}function v(oA){return oA<=127?0:oA>>5==6?2:oA>>4==14?3:oA>>3==30?4:oA>>6==2?-1:-2}function tA(oA){var uA=this.lastTotal-this.lastNeed,dA=function j(oA,uA){if(128!=(192&uA[0]))return oA.lastNeed=0,"\ufffd";if(oA.lastNeed>1&&uA.length>1){if(128!=(192&uA[1]))return oA.lastNeed=1,"\ufffd";if(oA.lastNeed>2&&uA.length>2&&128!=(192&uA[2]))return oA.lastNeed=2,"\ufffd"}}(this,oA);return void 0!==dA?dA:this.lastNeed<=oA.length?(oA.copy(this.lastChar,uA,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(oA.copy(this.lastChar,uA,0,oA.length),void(this.lastNeed-=oA.length))}function AA(oA,uA){if((oA.length-uA)%2==0){var dA=oA.toString("utf16le",uA);if(dA){var RA=dA.charCodeAt(dA.length-1);if(RA>=55296&&RA<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=oA[oA.length-2],this.lastChar[1]=oA[oA.length-1],dA.slice(0,-1)}return dA}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=oA[oA.length-1],oA.toString("utf16le",uA,oA.length-1)}function L(oA){var uA=oA&&oA.length?this.write(oA):"";return this.lastNeed?uA+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):uA}function P(oA,uA){var dA=(oA.length-uA)%3;return 0===dA?oA.toString("base64",uA):(this.lastNeed=3-dA,this.lastTotal=3,1===dA?this.lastChar[0]=oA[oA.length-1]:(this.lastChar[0]=oA[oA.length-2],this.lastChar[1]=oA[oA.length-1]),oA.toString("base64",uA,oA.length-dA))}function rA(oA){var uA=oA&&oA.length?this.write(oA):"";return this.lastNeed?uA+this.lastChar.toString("base64",0,3-this.lastNeed):uA}function QA(oA){return oA.toString(this.encoding)}function NA(oA){return oA&&oA.length?this.write(oA):""}Q.I=K,K.prototype.write=function(oA){if(0===oA.length)return"";var uA,dA;if(this.lastNeed){if(void 0===(uA=this.fillLast(oA)))return"";dA=this.lastNeed,this.lastNeed=0}else dA=0;return dA=0?(nA>0&&(oA.lastNeed=nA-1),nA):--RA=0?(nA>0&&(oA.lastNeed=nA-2),nA):--RA=0?(nA>0&&(2===nA?nA=0:oA.lastNeed=nA-3),nA):0}(this,oA,uA);if(!this.lastNeed)return oA.toString("utf8",uA);this.lastTotal=dA;var RA=oA.length-(dA-this.lastNeed);return oA.copy(this.lastChar,0,RA),oA.toString("utf8",uA,RA)},K.prototype.fillLast=function(oA){if(this.lastNeed<=oA.length)return oA.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);oA.copy(this.lastChar,this.lastTotal-this.lastNeed,0,oA.length),this.lastNeed-=oA.length}},3483(eA){function t(){this.table=new Uint16Array(16),this.trans=new Uint16Array(288)}function g(H,pA){this.source=H,this.sourceIndex=0,this.tag=0,this.bitcount=0,this.dest=pA,this.destLen=0,this.ltree=new t,this.dtree=new t}var I=new t,N=new t,K=new Uint8Array(30),v=new Uint16Array(30),B=new Uint8Array(30),j=new Uint16Array(30),tA=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),w=new t,aA=new Uint8Array(320);function AA(H,pA,z,OA){var wA,VA;for(wA=0;wA>>=1,pA}function NA(H,pA,z){if(!pA)return z;for(;H.bitcount<24;)H.tag|=H.source[H.sourceIndex++]<>>16-pA;return H.tag>>>=pA,H.bitcount-=pA,OA+z}function oA(H,pA){for(;H.bitcount<24;)H.tag|=H.source[H.sourceIndex++]<>>=1,++wA,z+=pA.table[wA],OA-=pA.table[wA]}while(OA>=0);return H.tag=VA,H.bitcount-=wA,pA.trans[z+OA]}function uA(H,pA,z){var OA,wA,VA,kA,hA,fA;for(OA=NA(H,5,257),wA=NA(H,5,1),VA=NA(H,4,4),kA=0;kA<19;++kA)aA[kA]=0;for(kA=0;kA8;)H.sourceIndex--,H.bitcount-=8;if((pA=256*(pA=H.source[H.sourceIndex+1])+H.source[H.sourceIndex])!==(65535&~(256*H.source[H.sourceIndex+3]+H.source[H.sourceIndex+2])))return-3;for(H.sourceIndex+=4,OA=pA;OA;--OA)H.dest[H.destLen++]=H.source[H.sourceIndex++];return H.bitcount=0,0}(function L(H,pA){var z;for(z=0;z<7;++z)H.table[z]=0;for(H.table[7]=24,H.table[8]=152,H.table[9]=112,z=0;z<24;++z)H.trans[z]=256+z;for(z=0;z<144;++z)H.trans[24+z]=z;for(z=0;z<8;++z)H.trans[168+z]=280+z;for(z=0;z<112;++z)H.trans[176+z]=144+z;for(z=0;z<5;++z)pA.table[z]=0;for(pA.table[5]=32,z=0;z<32;++z)pA.trans[z]=z})(I,N),AA(K,v,4,3),AA(B,j,2,1),K[28]=0,v[28]=258,eA.exports=function nA(H,pA){var OA,VA,z=new g(H,pA);do{switch(OA=QA(z),NA(z,2,0)){case 0:VA=RA(z);break;case 1:VA=dA(z,I,N);break;case 2:uA(z,z.ltree,z.dtree),VA=dA(z,z.ltree,z.dtree);break;default:VA=-3}if(0!==VA)throw new Error("Data error")}while(!OA);return z.destLen"u")&&(HA.working?HA(bA):bA instanceof ArrayBuffer)}function J(bA){return"[object DataView]"===j(bA)}function U(bA){return!(typeof DataView>"u")&&(J.working?J(bA):bA instanceof DataView)}Q.isArgumentsObject=t,Q.isGeneratorFunction=g,Q.isTypedArray=N,Q.isPromise=function rA(bA){return typeof Promise<"u"&&bA instanceof Promise||null!==bA&&"object"==typeof bA&&"function"==typeof bA.then&&"function"==typeof bA.catch},Q.isArrayBufferView=function QA(bA){return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?ArrayBuffer.isView(bA):N(bA)||U(bA)},Q.isUint8Array=function NA(bA){return"Uint8Array"===I(bA)},Q.isUint8ClampedArray=function oA(bA){return"Uint8ClampedArray"===I(bA)},Q.isUint16Array=function uA(bA){return"Uint16Array"===I(bA)},Q.isUint32Array=function dA(bA){return"Uint32Array"===I(bA)},Q.isInt8Array=function RA(bA){return"Int8Array"===I(bA)},Q.isInt16Array=function nA(bA){return"Int16Array"===I(bA)},Q.isInt32Array=function H(bA){return"Int32Array"===I(bA)},Q.isFloat32Array=function pA(bA){return"Float32Array"===I(bA)},Q.isFloat64Array=function z(bA){return"Float64Array"===I(bA)},Q.isBigInt64Array=function OA(bA){return"BigInt64Array"===I(bA)},Q.isBigUint64Array=function wA(bA){return"BigUint64Array"===I(bA)},VA.working=typeof Map<"u"&&VA(new Map),Q.isMap=function kA(bA){return!(typeof Map>"u")&&(VA.working?VA(bA):bA instanceof Map)},hA.working=typeof Set<"u"&&hA(new Set),Q.isSet=function fA(bA){return!(typeof Set>"u")&&(hA.working?hA(bA):bA instanceof Set)},UA.working=typeof WeakMap<"u"&&UA(new WeakMap),Q.isWeakMap=function yA(bA){return!(typeof WeakMap>"u")&&(UA.working?UA(bA):bA instanceof WeakMap)},xA.working=typeof WeakSet<"u"&&xA(new WeakSet),Q.isWeakSet=function Ee(bA){return xA(bA)},HA.working=typeof ArrayBuffer<"u"&&HA(new ArrayBuffer),Q.isArrayBuffer=cA,J.working=typeof ArrayBuffer<"u"&&typeof DataView<"u"&&J(new DataView(new ArrayBuffer(1),0,1)),Q.isDataView=U;var O=typeof SharedArrayBuffer<"u"?SharedArrayBuffer:void 0;function lA(bA){return"[object SharedArrayBuffer]"===j(bA)}function LA(bA){return!(typeof O>"u")&&(typeof lA.working>"u"&&(lA.working=lA(new O)),lA.working?lA(bA):bA instanceof O)}function b(bA){return P(bA,tA)}function R(bA){return P(bA,w)}function M(bA){return P(bA,aA)}function D(bA){return v&&P(bA,AA)}function X(bA){return B&&P(bA,L)}Q.isSharedArrayBuffer=LA,Q.isAsyncFunction=function JA(bA){return"[object AsyncFunction]"===j(bA)},Q.isMapIterator=function $A(bA){return"[object Map Iterator]"===j(bA)},Q.isSetIterator=function IA(bA){return"[object Set Iterator]"===j(bA)},Q.isGeneratorObject=function gA(bA){return"[object Generator]"===j(bA)},Q.isWebAssemblyCompiledModule=function C(bA){return"[object WebAssembly.Module]"===j(bA)},Q.isNumberObject=b,Q.isStringObject=R,Q.isBooleanObject=M,Q.isBigIntObject=D,Q.isSymbolObject=X,Q.isBoxedPrimitive=function YA(bA){return b(bA)||R(bA)||M(bA)||D(bA)||X(bA)},Q.isAnyArrayBuffer=function KA(bA){return typeof Uint8Array<"u"&&(cA(bA)||LA(bA))},["isProxy","isExternal","isModuleNamespaceObject"].forEach(function(bA){Object.defineProperty(Q,bA,{enumerable:!1,value:function(){throw new Error(bA+" is not supported in userland")}})})},7187(eA,Q,f){var t=f(9964),g=Object.getOwnPropertyDescriptors||function(O){for(var lA=Object.keys(O),LA={},JA=0;JA=JA)return gA;switch(gA){case"%s":return String(LA[lA++]);case"%d":return Number(LA[lA++]);case"%j":try{return JSON.stringify(LA[lA++])}catch{return"[Circular]"}default:return gA}}),IA=LA[lA];lA"u")return function(){return Q.deprecate(U,O).apply(this,arguments)};var lA=!1;return function LA(){if(!lA){if(t.throwDeprecation)throw new Error(O);t.traceDeprecation?console.trace(O):console.error(O),lA=!0}return U.apply(this,arguments)}};var N={},K=/^$/;if(t.env.NODE_DEBUG){var v=t.env.NODE_DEBUG;v=v.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase(),K=new RegExp("^"+v+"$","i")}function B(U,O){var lA={seen:[],stylize:tA};return arguments.length>=3&&(lA.depth=arguments[2]),arguments.length>=4&&(lA.colors=arguments[3]),oA(O)?lA.showHidden=O:O&&Q._extend(lA,O),pA(lA.showHidden)&&(lA.showHidden=!1),pA(lA.depth)&&(lA.depth=2),pA(lA.colors)&&(lA.colors=!1),pA(lA.customInspect)&&(lA.customInspect=!0),lA.colors&&(lA.stylize=j),aA(lA,U,lA.depth)}function j(U,O){var lA=B.styles[O];return lA?"\x1b["+B.colors[lA][0]+"m"+U+"\x1b["+B.colors[lA][1]+"m":U}function tA(U,O){return U}function aA(U,O,lA){if(U.customInspect&&O&&kA(O.inspect)&&O.inspect!==Q.inspect&&(!O.constructor||O.constructor.prototype!==O)){var LA=O.inspect(lA,U);return nA(LA)||(LA=aA(U,LA,lA)),LA}var JA=function AA(U,O){if(pA(O))return U.stylize("undefined","undefined");if(nA(O)){var lA="'"+JSON.stringify(O).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return U.stylize(lA,"string")}return RA(O)?U.stylize(""+O,"number"):oA(O)?U.stylize(""+O,"boolean"):uA(O)?U.stylize("null","null"):void 0}(U,O);if(JA)return JA;var $A=Object.keys(O),IA=function w(U){var O={};return U.forEach(function(lA,LA){O[lA]=!0}),O}($A);if(U.showHidden&&($A=Object.getOwnPropertyNames(O)),VA(O)&&($A.indexOf("message")>=0||$A.indexOf("description")>=0))return L(O);if(0===$A.length){if(kA(O))return U.stylize("[Function"+(O.name?": "+O.name:"")+"]","special");if(z(O))return U.stylize(RegExp.prototype.toString.call(O),"regexp");if(wA(O))return U.stylize(Date.prototype.toString.call(O),"date");if(VA(O))return L(O)}var D,C="",b=!1,R=["{","}"];return NA(O)&&(b=!0,R=["[","]"]),kA(O)&&(C=" [Function"+(O.name?": "+O.name:"")+"]"),z(O)&&(C=" "+RegExp.prototype.toString.call(O)),wA(O)&&(C=" "+Date.prototype.toUTCString.call(O)),VA(O)&&(C=" "+L(O)),0!==$A.length||b&&0!=O.length?lA<0?z(O)?U.stylize(RegExp.prototype.toString.call(O),"regexp"):U.stylize("[Object]","special"):(U.seen.push(O),D=b?function P(U,O,lA,LA,JA){for(var $A=[],IA=0,gA=O.length;IA60?lA[0]+(""===O?"":O+"\n ")+" "+U.join(",\n ")+" "+lA[1]:lA[0]+O+" "+U.join(", ")+" "+lA[1]}(D,C,R)):R[0]+C+R[1]}function L(U){return"["+Error.prototype.toString.call(U)+"]"}function rA(U,O,lA,LA,JA,$A){var IA,gA,C;if((C=Object.getOwnPropertyDescriptor(O,JA)||{value:O[JA]}).get?gA=U.stylize(C.set?"[Getter/Setter]":"[Getter]","special"):C.set&&(gA=U.stylize("[Setter]","special")),Ee(LA,JA)||(IA="["+JA+"]"),gA||(U.seen.indexOf(C.value)<0?(gA=uA(lA)?aA(U,C.value,null):aA(U,C.value,lA-1)).indexOf("\n")>-1&&(gA=$A?gA.split("\n").map(function(b){return" "+b}).join("\n").slice(2):"\n"+gA.split("\n").map(function(b){return" "+b}).join("\n")):gA=U.stylize("[Circular]","special")),pA(IA)){if($A&&JA.match(/^\d+$/))return gA;(IA=JSON.stringify(""+JA)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(IA=IA.slice(1,-1),IA=U.stylize(IA,"name")):(IA=IA.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),IA=U.stylize(IA,"string"))}return IA+": "+gA}function NA(U){return Array.isArray(U)}function oA(U){return"boolean"==typeof U}function uA(U){return null===U}function RA(U){return"number"==typeof U}function nA(U){return"string"==typeof U}function pA(U){return void 0===U}function z(U){return OA(U)&&"[object RegExp]"===fA(U)}function OA(U){return"object"==typeof U&&null!==U}function wA(U){return OA(U)&&"[object Date]"===fA(U)}function VA(U){return OA(U)&&("[object Error]"===fA(U)||U instanceof Error)}function kA(U){return"function"==typeof U}function fA(U){return Object.prototype.toString.call(U)}function UA(U){return U<10?"0"+U.toString(10):U.toString(10)}Q.debuglog=function(U){if(U=U.toUpperCase(),!N[U])if(K.test(U)){var O=t.pid;N[U]=function(){var lA=Q.format.apply(Q,arguments);console.error("%s %d: %s",U,O,lA)}}else N[U]=function(){};return N[U]},Q.inspect=B,B.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},B.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},Q.types=f(9490),Q.isArray=NA,Q.isBoolean=oA,Q.isNull=uA,Q.isNullOrUndefined=function dA(U){return null==U},Q.isNumber=RA,Q.isString=nA,Q.isSymbol=function H(U){return"symbol"==typeof U},Q.isUndefined=pA,Q.isRegExp=z,Q.types.isRegExp=z,Q.isObject=OA,Q.isDate=wA,Q.types.isDate=wA,Q.isError=VA,Q.types.isNativeError=VA,Q.isFunction=kA,Q.isPrimitive=function hA(U){return null===U||"boolean"==typeof U||"number"==typeof U||"string"==typeof U||"symbol"==typeof U||typeof U>"u"},Q.isBuffer=f(1201);var yA=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function Ee(U,O){return Object.prototype.hasOwnProperty.call(U,O)}Q.log=function(){console.log("%s - %s",function xA(){var U=new Date,O=[UA(U.getHours()),UA(U.getMinutes()),UA(U.getSeconds())].join(":");return[U.getDate(),yA[U.getMonth()],O].join(" ")}(),Q.format.apply(Q,arguments))},Q.inherits=f(9784),Q._extend=function(U,O){if(!O||!OA(O))return U;for(var lA=Object.keys(O),LA=lA.length;LA--;)U[lA[LA]]=O[lA[LA]];return U};var HA=typeof Symbol<"u"?Symbol("util.promisify.custom"):void 0;function cA(U,O){if(!U){var lA=new Error("Promise was rejected with a falsy value");lA.reason=U,U=lA}return O(U)}Q.promisify=function(O){if("function"!=typeof O)throw new TypeError('The "original" argument must be of type Function');if(HA&&O[HA]){var lA;if("function"!=typeof(lA=O[HA]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(lA,HA,{value:lA,enumerable:!1,writable:!1,configurable:!0}),lA}function lA(){for(var LA,JA,$A=new Promise(function(C,b){LA=C,JA=b}),IA=[],gA=0;gA"u"?f.g:globalThis,w=g(),aA=N("String.prototype.slice"),AA=N("Array.prototype.indexOf",!0)||function(oA,uA){for(var dA=0;dA-1}(uA)?uA:"Object"===uA&&function rA(NA){var oA=!1;return t(L,function(uA,dA){if(!oA)try{uA(NA),oA=aA(dA,1)}catch{}}),oA}(oA)}return K?function P(NA){var oA=!1;return t(L,function(uA,dA){if(!oA)try{"$"+uA(NA)===dA&&(oA=aA(dA,1))}catch{}}),oA}(oA):null}},5127(eA,Q,f){var t,I;void 0!==(I="function"==typeof(t=function(){"use strict";function K(aA,AA,L){var P=new XMLHttpRequest;P.open("GET",aA),P.responseType="blob",P.onload=function(){w(P.response,AA,L)},P.onerror=function(){console.error("could not download file")},P.send()}function v(aA){var AA=new XMLHttpRequest;AA.open("HEAD",aA,!1);try{AA.send()}catch{}return 200<=AA.status&&299>=AA.status}function B(aA){try{aA.dispatchEvent(new MouseEvent("click"))}catch{var AA=document.createEvent("MouseEvents");AA.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),aA.dispatchEvent(AA)}}var j="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof f.g&&f.g.global===f.g?f.g:void 0,tA=j.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),w=j.saveAs||("object"!=typeof window||window!==j?function(){}:typeof HTMLAnchorElement<"u"&&"download"in HTMLAnchorElement.prototype&&!tA?function(aA,AA,L){var P=j.URL||j.webkitURL,rA=document.createElement("a");rA.download=AA=AA||aA.name||"download",rA.rel="noopener","string"==typeof aA?(rA.href=aA,rA.origin===location.origin?B(rA):v(rA.href)?K(aA,AA,L):B(rA,rA.target="_blank")):(rA.href=P.createObjectURL(aA),setTimeout(function(){P.revokeObjectURL(rA.href)},4e4),setTimeout(function(){B(rA)},0))}:"msSaveOrOpenBlob"in navigator?function(aA,AA,L){if(AA=AA||aA.name||"download","string"!=typeof aA)navigator.msSaveOrOpenBlob(function N(aA,AA){return typeof AA>"u"?AA={autoBom:!1}:"object"!=typeof AA&&(console.warn("Deprecated: Expected third argument to be a object"),AA={autoBom:!AA}),AA.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(aA.type)?new Blob(["\ufeff",aA],{type:aA.type}):aA}(aA,L),AA);else if(v(aA))K(aA,AA,L);else{var P=document.createElement("a");P.href=aA,P.target="_blank",setTimeout(function(){B(P)})}}:function(aA,AA,L,P){if((P=P||open("","_blank"))&&(P.document.title=P.document.body.innerText="downloading..."),"string"==typeof aA)return K(aA,AA,L);var rA="application/octet-stream"===aA.type,QA=/constructor/i.test(j.HTMLElement)||j.safari,NA=/CriOS\/[\d]+/.test(navigator.userAgent);if((NA||rA&&QA||tA)&&typeof FileReader<"u"){var oA=new FileReader;oA.onloadend=function(){var RA=oA.result;RA=NA?RA:RA.replace(/^data:[^;]*;/,"data:attachment/file;"),P?P.location.href=RA:location=RA,P=null},oA.readAsDataURL(aA)}else{var uA=j.URL||j.webkitURL,dA=uA.createObjectURL(aA);P?P.location=dA:location.href=dA,P=null,setTimeout(function(){uA.revokeObjectURL(dA)},4e4)}});j.saveAs=w.saveAs=w,eA.exports=w})?t.apply(Q,[]):t)&&(eA.exports=I)},6274(){},8535(){},3779(){},7199(){},5117(eA){"use strict";eA.exports=typeof ArrayBuffer<"u"&&typeof DataView<"u"},4074(eA,Q,f){"use strict";var yA,xA,Ee,t=f(5117),g=f(5144),I=f(7756),N=f(8681),K=f(3598),v=f(6341),B=f(9391),j=f(8819),tA=f(5719),w=f(4092),aA=f(1182),AA=f(9877),L=f(8607),P=f(443),rA=f(8663),QA=f(6044),NA=f(6921),oA=NA.enforce,uA=NA.get,dA=I.Int8Array,RA=dA&&dA.prototype,nA=I.Uint8ClampedArray,H=nA&&nA.prototype,pA=dA&&L(dA),z=RA&&L(RA),OA=Object.prototype,wA=I.TypeError,VA=rA("toStringTag"),kA=QA("TYPED_ARRAY_TAG"),hA="TypedArrayConstructor",fA=t&&!!P&&"Opera"!==B(I.opera),UA=!1,HA={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},cA={BigInt64Array:8,BigUint64Array:8},U=function(IA){var gA=L(IA);if(K(gA)){var C=uA(gA);return C&&v(C,hA)?C[hA]:U(gA)}},O=function(IA){if(!K(IA))return!1;var gA=B(IA);return v(HA,gA)||v(cA,gA)};for(yA in HA)(Ee=(xA=I[yA])&&xA.prototype)?oA(Ee)[hA]=xA:fA=!1;for(yA in cA)(Ee=(xA=I[yA])&&xA.prototype)&&(oA(Ee)[hA]=xA);if((!fA||!N(pA)||pA===Function.prototype)&&(pA=function(){throw new wA("Incorrect invocation")},fA))for(yA in HA)I[yA]&&P(I[yA],pA);if((!fA||!z||z===OA)&&(z=pA.prototype,fA))for(yA in HA)I[yA]&&P(I[yA].prototype,z);if(fA&&L(H)!==z&&P(H,z),g&&!v(z,VA))for(yA in UA=!0,aA(z,VA,{configurable:!0,get:function(){return K(this)?this[kA]:void 0}}),HA)I[yA]&&tA(I[yA].prototype,kA,yA);eA.exports={NATIVE_ARRAY_BUFFER_VIEWS:fA,TYPED_ARRAY_TAG:UA&&kA,aTypedArray:function(IA){if(O(IA))return IA;throw new wA("Target is not a typed array")},aTypedArrayConstructor:function(IA){if(N(IA)&&(!P||AA(pA,IA)))return IA;throw new wA(j(IA)+" is not a typed array constructor")},exportTypedArrayMethod:function(IA,gA,C,b){if(g){if(C)for(var R in HA){var M=I[R];if(M&&v(M.prototype,IA))try{delete M.prototype[IA]}catch{try{M.prototype[IA]=gA}catch{}}}(!z[IA]||C)&&w(z,IA,C?gA:fA&&RA[IA]||gA,b)}},exportTypedArrayStaticMethod:function(IA,gA,C){var b,R;if(g){if(P){if(C)for(b in HA)if((R=I[b])&&v(R,IA))try{delete R[IA]}catch{}if(pA[IA]&&!C)return;try{return w(pA,IA,C?gA:fA&&pA[IA]||gA)}catch{}}for(b in HA)(R=I[b])&&(!R[IA]||C)&&w(R,IA,gA)}},getTypedArrayConstructor:U,isView:function(gA){if(!K(gA))return!1;var C=B(gA);return"DataView"===C||v(HA,C)||v(cA,C)},isTypedArray:O,TypedArray:pA,TypedArrayPrototype:z}},4415(eA,Q){"use strict";Q._=function f(t,g,I){return g in t?Object.defineProperty(t,g,{value:I,enumerable:!0,configurable:!0,writable:!0}):t[g]=I,t}},8395(eA,Q,f){"use strict";Q._=f(1635).__decorate},821(eA,Q,f){"use strict";var t=f(884),g=typeof globalThis>"u"?f.g:globalThis;eA.exports=function(){for(var N=[],K=0;K1?arguments[1]:void 0,B),w=j>2?arguments[2]:void 0,aA=void 0===w?B:g(w,B);aA>tA;)v[tA++]=K;return v}},789(eA,Q,f){"use strict";var t=f(5137),g=f(4918),I=f(4730),N=function(K){return function(v,B,j){var tA=t(v),w=I(tA);if(0===w)return!K&&-1;var AA,aA=g(j,w);if(K&&B!=B){for(;w>aA;)if((AA=tA[aA++])!=AA)return!0}else for(;w>aA;aA++)if((K||aA in tA)&&tA[aA]===B)return K||aA||0;return!K&&-1}};eA.exports={includes:N(!0),indexOf:N(!1)}},2740(eA,Q,f){"use strict";var t=f(1212);eA.exports=t([].slice)},644(eA,Q,f){"use strict";var t=f(2740),g=Math.floor,I=function(N,K){var v=N.length;if(v<8)for(var j,tA,B=1;B0;)N[tA]=N[--tA];tA!==B++&&(N[tA]=j)}else for(var w=g(v/2),aA=I(t(N,0,w),K),AA=I(t(N,w),K),L=aA.length,P=AA.length,rA=0,QA=0;rA0&&B[0]<4?1:+(B[0]+B[1])),!j&&g&&(!(B=g.match(/Edge\/(\d+)/))||B[1]>=74)&&(B=g.match(/Chrome\/(\d+)/))&&(j=+B[1]),eA.exports=j},4507(eA,Q,f){"use strict";var g=f(8115).match(/AppleWebKit\/(\d+)\./);eA.exports=!!g&&+g[1]},3762(eA,Q,f){"use strict";var t=f(7756),g=f(423).f,I=f(5719),N=f(4092),K=f(7309),v=f(8032),B=f(5888);eA.exports=function(j,tA){var P,rA,QA,NA,oA,w=j.target,aA=j.global,AA=j.stat;if(P=aA?t:AA?t[w]||K(w,{}):t[w]&&t[w].prototype)for(rA in tA){if(NA=tA[rA],QA=j.dontCallGetSet?(oA=g(P,rA))&&oA.value:P[rA],!B(aA?rA:w+(AA?".":"#")+rA,j.forced)&&void 0!==QA){if(typeof NA==typeof QA)continue;v(NA,QA)}(j.sham||QA&&QA.sham)&&I(NA,"sham",!0),N(P,rA,NA,j)}}},299(eA){"use strict";eA.exports=function(Q){try{return!!Q()}catch{return!0}}},1676(eA,Q,f){"use strict";var t=f(299);eA.exports=!t(function(){var g=function(){}.bind();return"function"!=typeof g||g.hasOwnProperty("prototype")})},8993(eA,Q,f){"use strict";var t=f(1676),g=Function.prototype.call;eA.exports=t?g.bind(g):function(){return g.apply(g,arguments)}},4378(eA,Q,f){"use strict";var t=f(5144),g=f(6341),I=Function.prototype,N=t&&Object.getOwnPropertyDescriptor,K=g(I,"name"),v=K&&"something"===function(){}.name,B=K&&(!t||t&&N(I,"name").configurable);eA.exports={EXISTS:K,PROPER:v,CONFIGURABLE:B}},4494(eA,Q,f){"use strict";var t=f(1212),g=f(1078);eA.exports=function(I,N,K){try{return t(g(Object.getOwnPropertyDescriptor(I,N)[K]))}catch{}}},5336(eA,Q,f){"use strict";var t=f(8420),g=f(1212);eA.exports=function(I){if("Function"===t(I))return g(I)}},1212(eA,Q,f){"use strict";var t=f(1676),g=Function.prototype,I=g.call,N=t&&g.bind.bind(I,I);eA.exports=t?N:function(K){return function(){return I.apply(K,arguments)}}},7139(eA,Q,f){"use strict";var t=f(7756),g=f(8681);eA.exports=function(N,K){return arguments.length<2?function(N){return g(N)?N:void 0}(t[N]):t[N]&&t[N][K]}},9738(eA,Q,f){"use strict";var t=f(1078),g=f(6297);eA.exports=function(I,N){var K=I[N];return g(K)?void 0:t(K)}},7756(eA,Q,f){"use strict";var t=function(g){return g&&g.Math===Math&&g};eA.exports=t("object"==typeof globalThis&&globalThis)||t("object"==typeof window&&window)||t("object"==typeof self&&self)||t("object"==typeof f.g&&f.g)||t("object"==typeof this&&this)||function(){return this}()||Function("return this")()},6341(eA,Q,f){"use strict";var t=f(1212),g=f(3297),I=t({}.hasOwnProperty);eA.exports=Object.hasOwn||function(K,v){return I(g(K),v)}},2993(eA){"use strict";eA.exports={}},4329(eA,Q,f){"use strict";var t=f(7139);eA.exports=t("document","documentElement")},7657(eA,Q,f){"use strict";var t=f(5144),g=f(299),I=f(2283);eA.exports=!t&&!g(function(){return 7!==Object.defineProperty(I("div"),"a",{get:function(){return 7}}).a})},2203(eA,Q,f){"use strict";var t=f(1212),g=f(299),I=f(8420),N=Object,K=t("".split);eA.exports=g(function(){return!N("z").propertyIsEnumerable(0)})?function(v){return"String"===I(v)?K(v,""):N(v)}:N},4550(eA,Q,f){"use strict";var t=f(1212),g=f(8681),I=f(3793),N=t(Function.toString);g(I.inspectSource)||(I.inspectSource=function(K){return N(K)}),eA.exports=I.inspectSource},6921(eA,Q,f){"use strict";var AA,L,P,t=f(1194),g=f(7756),I=f(3598),N=f(5719),K=f(6341),v=f(3793),B=f(7099),j=f(2993),tA="Object already initialized",w=g.TypeError;if(t||v.state){var NA=v.state||(v.state=new(0,g.WeakMap));NA.get=NA.get,NA.has=NA.has,NA.set=NA.set,AA=function(uA,dA){if(NA.has(uA))throw new w(tA);return dA.facade=uA,NA.set(uA,dA),dA},L=function(uA){return NA.get(uA)||{}},P=function(uA){return NA.has(uA)}}else{var oA=B("state");j[oA]=!0,AA=function(uA,dA){if(K(uA,oA))throw new w(tA);return dA.facade=uA,N(uA,oA,dA),dA},L=function(uA){return K(uA,oA)?uA[oA]:{}},P=function(uA){return K(uA,oA)}}eA.exports={set:AA,get:L,has:P,enforce:function(uA){return P(uA)?L(uA):AA(uA,{})},getterFor:function(uA){return function(dA){var RA;if(!I(dA)||(RA=L(dA)).type!==uA)throw new w("Incompatible receiver, "+uA+" required");return RA}}}},8468(eA,Q,f){"use strict";var t=f(8420);eA.exports=Array.isArray||function(I){return"Array"===t(I)}},8681(eA){"use strict";var Q="object"==typeof document&&document.all;eA.exports=typeof Q>"u"&&void 0!==Q?function(f){return"function"==typeof f||f===Q}:function(f){return"function"==typeof f}},5888(eA,Q,f){"use strict";var t=f(299),g=f(8681),I=/#|\.prototype\./,N=function(tA,w){var aA=v[K(tA)];return aA===j||aA!==B&&(g(w)?t(w):!!w)},K=N.normalize=function(tA){return String(tA).replace(I,".").toLowerCase()},v=N.data={},B=N.NATIVE="N",j=N.POLYFILL="P";eA.exports=N},6297(eA){"use strict";eA.exports=function(Q){return null==Q}},3598(eA,Q,f){"use strict";var t=f(8681);eA.exports=function(g){return"object"==typeof g?null!==g:t(g)}},2657(eA,Q,f){"use strict";var t=f(3598);eA.exports=function(g){return t(g)||null===g}},7695(eA){"use strict";eA.exports=!1},5985(eA,Q,f){"use strict";var t=f(7139),g=f(8681),I=f(9877),N=f(8300),K=Object;eA.exports=N?function(v){return"symbol"==typeof v}:function(v){var B=t("Symbol");return g(B)&&I(B.prototype,K(v))}},4730(eA,Q,f){"use strict";var t=f(8266);eA.exports=function(g){return t(g.length)}},3383(eA,Q,f){"use strict";var t=f(1212),g=f(299),I=f(8681),N=f(6341),K=f(5144),v=f(4378).CONFIGURABLE,B=f(4550),j=f(6921),tA=j.enforce,w=j.get,aA=String,AA=Object.defineProperty,L=t("".slice),P=t("".replace),rA=t([].join),QA=K&&!g(function(){return 8!==AA(function(){},"length",{value:8}).length}),NA=String(String).split("String"),oA=eA.exports=function(uA,dA,RA){"Symbol("===L(aA(dA),0,7)&&(dA="["+P(aA(dA),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),RA&&RA.getter&&(dA="get "+dA),RA&&RA.setter&&(dA="set "+dA),(!N(uA,"name")||v&&uA.name!==dA)&&(K?AA(uA,"name",{value:dA,configurable:!0}):uA.name=dA),QA&&RA&&N(RA,"arity")&&uA.length!==RA.arity&&AA(uA,"length",{value:RA.arity});try{RA&&N(RA,"constructor")&&RA.constructor?K&&AA(uA,"prototype",{writable:!1}):uA.prototype&&(uA.prototype=void 0)}catch{}var nA=tA(uA);return N(nA,"source")||(nA.source=rA(NA,"string"==typeof dA?dA:"")),uA};Function.prototype.toString=oA(function(){return I(this)&&w(this).source||B(this)},"toString")},2537(eA){"use strict";var Q=Math.ceil,f=Math.floor;eA.exports=Math.trunc||function(g){var I=+g;return(I>0?f:Q)(I)}},4860(eA,Q,f){"use strict";var NA,t=f(2091),g=f(2197),I=f(2555),N=f(2993),K=f(4329),v=f(2283),B=f(7099),w="prototype",AA=B("IE_PROTO"),L=function(){},P=function(uA){return" RTL @@ -12,8 +12,8 @@ - + - + diff --git a/frontend/main.86bc6d8e9eec4faf.js b/frontend/main.86bc6d8e9eec4faf.js deleted file mode 100644 index 717f82da..00000000 --- a/frontend/main.86bc6d8e9eec4faf.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[792],{8430:(Qe,te,g)=>{"use strict";g.d(te,{$6:()=>ne,$J:()=>r,$Q:()=>D,Aw:()=>I,C2:()=>y,CK:()=>ie,Db:()=>Xt,Do:()=>N,Dq:()=>qe,ED:()=>ye,EM:()=>ce,Eb:()=>mt,Ew:()=>fe,Fd:()=>ae,GZ:()=>ke,Gy:()=>z,Gz:()=>_t,Hm:()=>de,Jx:()=>ze,Ml:()=>at,N4:()=>Me,NS:()=>x,NU:()=>ue,Qj:()=>W,Qv:()=>pt,Sn:()=>f,T4:()=>Te,Uj:()=>ge,VK:()=>Ee,We:()=>Q,XT:()=>F,Yi:()=>_,Zi:()=>ee,a5:()=>Ke,aB:()=>se,cR:()=>C,dv:()=>n,ed:()=>J,fy:()=>c,g6:()=>me,gf:()=>S,ij:()=>L,jQ:()=>Ze,kQ:()=>pe,kX:()=>T,kv:()=>V,lg:()=>l,no:()=>w,qw:()=>_e,sq:()=>$,uK:()=>v,vL:()=>m,w0:()=>h,x1:()=>d,y0:()=>be,zU:()=>k});var e=g(9640),t=g(4416);const w=(0,e.VP)(t.TC.UPDATE_API_CALL_STATUS_CLN,(0,e.xk)()),S=(0,e.VP)(t.TC.RESET_CLN_STORE),l=(0,e.VP)(t.TC.FETCH_PAGE_SETTINGS_CLN),x=(0,e.VP)(t.TC.SET_PAGE_SETTINGS_CLN,(0,e.xk)()),f=(0,e.VP)(t.TC.SAVE_PAGE_SETTINGS_CLN,(0,e.xk)()),I=(0,e.VP)(t.TC.FETCH_INFO_CLN,(0,e.xk)()),d=(0,e.VP)(t.TC.SET_INFO_CLN,(0,e.xk)()),T=(0,e.VP)(t.TC.FETCH_FEE_RATES_CLN,(0,e.xk)()),y=(0,e.VP)(t.TC.SET_FEE_RATES_CLN,(0,e.xk)()),F=(0,e.VP)(t.TC.GET_NEW_ADDRESS_CLN,(0,e.xk)()),z=((0,e.VP)(t.TC.SET_NEW_ADDRESS_CLN,(0,e.xk)()),(0,e.VP)(t.TC.FETCH_PEERS_CLN)),W=(0,e.VP)(t.TC.SET_PEERS_CLN,(0,e.xk)()),$=(0,e.VP)(t.TC.SAVE_NEW_PEER_CLN,(0,e.xk)()),Q=((0,e.VP)(t.TC.NEWLY_ADDED_PEER_CLN,(0,e.xk)()),(0,e.VP)(t.TC.ADD_PEER_CLN,(0,e.xk)())),J=(0,e.VP)(t.TC.DETACH_PEER_CLN,(0,e.xk)()),ee=(0,e.VP)(t.TC.REMOVE_PEER_CLN,(0,e.xk)()),ie=(0,e.VP)(t.TC.FETCH_PAYMENTS_CLN),ge=(0,e.VP)(t.TC.SET_PAYMENTS_CLN,(0,e.xk)()),ae=(0,e.VP)(t.TC.SEND_PAYMENT_CLN,(0,e.xk)()),Me=(0,e.VP)(t.TC.SEND_PAYMENT_STATUS_CLN,(0,e.xk)()),Te=(0,e.VP)(t.TC.GET_QUERY_ROUTES_CLN,(0,e.xk)()),de=(0,e.VP)(t.TC.SET_QUERY_ROUTES_CLN,(0,e.xk)()),D=(0,e.VP)(t.TC.FETCH_CHANNELS_CLN),n=(0,e.VP)(t.TC.SET_CHANNELS_CLN,(0,e.xk)()),c=(0,e.VP)(t.TC.UPDATE_CHANNEL_CLN,(0,e.xk)()),m=(0,e.VP)(t.TC.SAVE_NEW_CHANNEL_CLN,(0,e.xk)()),h=(0,e.VP)(t.TC.CLOSE_CHANNEL_CLN,(0,e.xk)()),C=(0,e.VP)(t.TC.REMOVE_CHANNEL_CLN,(0,e.xk)()),k=(0,e.VP)(t.TC.PEER_LOOKUP_CLN,(0,e.xk)()),L=(0,e.VP)(t.TC.CHANNEL_LOOKUP_CLN,(0,e.xk)()),_=(0,e.VP)(t.TC.INVOICE_LOOKUP_CLN,(0,e.xk)()),r=(0,e.VP)(t.TC.SET_LOOKUP_CLN,(0,e.xk)()),v=(0,e.VP)(t.TC.GET_FORWARDING_HISTORY_CLN,(0,e.xk)()),V=(0,e.VP)(t.TC.SET_FORWARDING_HISTORY_CLN,(0,e.xk)()),N=(0,e.VP)(t.TC.FETCH_INVOICES_CLN),ne=(0,e.VP)(t.TC.SET_INVOICES_CLN,(0,e.xk)()),Ee=(0,e.VP)(t.TC.SAVE_NEW_INVOICE_CLN,(0,e.xk)()),ze=(0,e.VP)(t.TC.ADD_INVOICE_CLN,(0,e.xk)()),qe=(0,e.VP)(t.TC.UPDATE_INVOICE_CLN,(0,e.xk)()),Ke=(0,e.VP)(t.TC.DELETE_EXPIRED_INVOICE_CLN,(0,e.xk)()),se=(0,e.VP)(t.TC.SET_CHANNEL_TRANSACTION_CLN,(0,e.xk)()),me=((0,e.VP)(t.TC.SET_CHANNEL_TRANSACTION_RES_CLN,(0,e.xk)()),(0,e.VP)(t.TC.FETCH_UTXO_BALANCES_CLN)),ce=(0,e.VP)(t.TC.SET_UTXO_BALANCES_CLN,(0,e.xk)()),fe=(0,e.VP)(t.TC.FETCH_OFFER_INVOICE_CLN,(0,e.xk)()),ke=(0,e.VP)(t.TC.SET_OFFER_INVOICE_CLN,(0,e.xk)()),mt=(0,e.VP)(t.TC.FETCH_OFFERS_CLN),_e=(0,e.VP)(t.TC.SET_OFFERS_CLN,(0,e.xk)()),be=(0,e.VP)(t.TC.SAVE_NEW_OFFER_CLN,(0,e.xk)()),pe=(0,e.VP)(t.TC.ADD_OFFER_CLN,(0,e.xk)()),Ze=(0,e.VP)(t.TC.DISABLE_OFFER_CLN,(0,e.xk)()),_t=(0,e.VP)(t.TC.UPDATE_OFFER_CLN,(0,e.xk)()),at=(0,e.VP)(t.TC.FETCH_OFFER_BOOKMARKS_CLN),pt=(0,e.VP)(t.TC.SET_OFFER_BOOKMARKS_CLN,(0,e.xk)()),Xt=(0,e.VP)(t.TC.ADD_UPDATE_OFFER_BOOKMARK_CLN,(0,e.xk)()),ye=(0,e.VP)(t.TC.DELETE_OFFER_BOOKMARK_CLN,(0,e.xk)()),ue=(0,e.VP)(t.TC.REMOVE_OFFER_BOOKMARK_CLN,(0,e.xk)())},283:(Qe,te,g)=>{"use strict";g.d(te,{i:()=>Me});var e=g(4054),t=g(1413),w=g(7673),S=g(1397),l=g(6977),x=g(6354),f=g(9437),I=g(2462),d=g(8321),T=g(4416),y=g(1771),F=g(8430),R=g(9584),z=g(2142),W=g(4438),$=g(1626),j=g(9640),Q=g(3202),J=g(2571),ee=g(8570),ie=g(1188),ge=g(7879),ae=g(177);let Me=(()=>{class Te{constructor(D,n,c,m,h,C,k,L,_){this.actions=D,this.httpClient=n,this.store=c,this.sessionService=m,this.commonService=h,this.logger=C,this.router=k,this.wsService=L,this.location=_,this.CHILD_API_URL=T.H$+"/cln",this.CLN_VERISON="",this.flgInitialized=!1,this.unSubs=[new t.B,new t.B,new t.B],this.infoFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_INFO_CLN),(0,S.Z)(r=>(this.flgInitialized=!1,this.store.dispatch((0,y.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,F.no)({payload:{action:"FetchInfo",status:T.wn.INITIATED}})),this.store.dispatch((0,y.mt)({payload:T.MZ.GET_NODE_INFO})),this.httpClient.get(this.CHILD_API_URL+T.rl.GETINFO_API).pipe((0,l.Q)(this.actions.pipe((0,e.gp)(T.aU.SET_SELECTED_NODE))),(0,x.T)(v=>(this.logger.info(v),this.CLN_VERISON=v.version||"",v.chains&&v.chains.length&&v.chains[0]&&"object"==typeof v.chains[0]&&v.chains[0].hasOwnProperty("chain")&&v?.chains[0].chain&&v?.chains[0].chain.toLowerCase().indexOf("bitcoin")<0&&v?.chains[0].chain.toLowerCase().indexOf("liquid")<0?(this.store.dispatch((0,F.no)({payload:{action:"FetchInfo",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.GET_NODE_INFO})),this.store.dispatch((0,y.Jh)()),setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{type:T.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}}))},500),{type:T.aU.LOGOUT,payload:"Sorry Not Sorry, RTL is Bitcoin Only!"}):(this.initializeRemainingData(v,r.payload.loadPage),this.store.dispatch((0,F.no)({payload:{action:"FetchInfo",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.GET_NODE_INFO})),{type:T.TC.SET_INFO_CLN,payload:v||{}}))),(0,f.W)(v=>{const V=this.commonService.extractErrorCode(v),N="ETIMEDOUT"===V?"Unable to Connect to Core Lightning Server.":this.commonService.extractErrorMessage(v);return this.router.navigate(["/login"],{state:{logoutReason:JSON.stringify(N)}}),this.handleErrorWithoutAlert("FetchInfo",T.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:V,error:N}),(0,w.of)({type:T.aU.VOID})})))))),this.fetchFeeRatesCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_FEE_RATES_CLN),(0,S.Z)(r=>(this.store.dispatch((0,F.no)({payload:{action:"FetchFeeRates"+r.payload,status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.NETWORK_API+"/feeRates",{style:r.payload}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"FetchFeeRates"+r.payload,status:T.wn.COMPLETED}})),{type:T.TC.SET_FEE_RATES_CLN,payload:v||{}})),(0,f.W)(v=>(this.handleErrorWithoutAlert("FetchFeeRates"+r.payload,T.MZ.NO_SPINNER,"Fetching Fee Rates Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.getNewAddressCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.GET_NEW_ADDRESS_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.post(this.CHILD_API_URL+T.rl.ON_CHAIN_API+"/newaddr",{addresstype:r.payload.addressCode}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:T.MZ.GENERATE_NEW_ADDRESS})),{type:T.TC.SET_NEW_ADDRESS_CLN,payload:v&&v[r.payload.addressCode]?v[r.payload.addressCode]:{}})),(0,f.W)(v=>(this.handleErrorWithAlert("GenerateNewAddress",T.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+T.rl.ON_CHAIN_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.setNewAddressCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_NEW_ADDRESS_CLN),(0,x.T)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.peersFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_PEERS_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchPeers",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.PEERS_API).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchPeers",status:T.wn.COMPLETED}})),{type:T.TC.SET_PEERS_CLN,payload:r||[]})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchPeers",T.MZ.NO_SPINNER,"Fetching Peers Failed.",r),(0,w.of)({type:T.aU.VOID})))))))),this.saveNewPeerCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_NEW_PEER_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.CONNECT_PEER})),this.store.dispatch((0,F.no)({payload:{action:"SaveNewPeer",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.PEERS_API,{id:r.payload.id}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SaveNewPeer",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.CONNECT_PEER})),this.store.dispatch((0,F.Qj)({payload:v||[]})),{type:T.TC.NEWLY_ADDED_PEER_CLN,payload:{peer:v.find(V=>0===r.payload.id.indexOf(V.id?V.id:""))}})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SaveNewPeer",T.MZ.CONNECT_PEER,"Peer Connection Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.detachPeerCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.DETACH_PEER_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.DISCONNECT_PEER})),this.httpClient.post(this.CHILD_API_URL+T.rl.PEERS_API+"/disconnect",{id:r.payload.id,force:r.payload.force}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:T.MZ.DISCONNECT_PEER})),this.store.dispatch((0,y.UI)({payload:"Peer Disconnected Successfully!"})),{type:T.TC.REMOVE_PEER_CLN,payload:{id:r.payload.id}})),(0,f.W)(v=>(this.handleErrorWithAlert("PeerDisconnect",T.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+T.rl.PEERS_API+"/"+r.payload.id,v),(0,w.of)({type:T.aU.VOID})))))))),this.channelsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_CHANNELS_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchChannels",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.CHANNELS_API+"/listPeerChannels"))),(0,x.T)(r=>{this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchChannels",status:T.wn.COMPLETED}}));const v={activeChannels:[],pendingChannels:[],inactiveChannels:[]};return r.forEach(V=>{"CHANNELD_NORMAL"===V.state?V.peer_connected?v.activeChannels.push(V):v.inactiveChannels.push(V):v.pendingChannels.push(V)}),{type:T.TC.SET_CHANNELS_CLN,payload:v}}),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchChannels",T.MZ.NO_SPINNER,"Fetching Channels Failed.",r),(0,w.of)({type:T.aU.VOID}))))),this.openNewChannelCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_NEW_CHANNEL_CLN),(0,S.Z)(r=>{this.store.dispatch((0,y.mt)({payload:T.MZ.OPEN_CHANNEL})),this.store.dispatch((0,F.no)({payload:{action:"SaveNewChannel",status:T.wn.INITIATED}}));const v={id:r.payload.peerId,amount:r.payload.amount,feerate:r.payload.feeRate,announce:r.payload.announce};return r.payload.minconf&&(v.minconf=r.payload.minconf),r.payload.utxos&&(v.utxos=r.payload.utxos),r.payload.requestAmount&&(v.request_amt=r.payload.requestAmount),r.payload.compactLease&&(v.compact_lease=r.payload.compactLease),this.httpClient.post(this.CHILD_API_URL+T.rl.CHANNELS_API,v).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,F.no)({payload:{action:"SaveNewChannel",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.OPEN_CHANNEL})),this.store.dispatch((0,y.UI)({payload:"Channel Added Successfully!"})),this.store.dispatch((0,F.g6)()),{type:T.TC.FETCH_CHANNELS_CLN})),(0,f.W)(V=>(this.handleErrorWithoutAlert("SaveNewChannel",T.MZ.OPEN_CHANNEL,"Opening Channel Failed.",V),(0,w.of)({type:T.aU.VOID}))))}))),this.updateChannelCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.UPDATE_CHANNEL_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+T.rl.CHANNELS_API+"/setChannelFee",r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:T.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,y.UI)("all"===r.payload.id?{payload:{message:"All Channels Updated Successfully. Fee policy updates may take some time to reflect on the channel.",duration:5e3}}:{payload:{message:"Channel Updated Successfully. Fee policy updates may take some time to reflect on the channel.",duration:5e3}})),{type:T.TC.FETCH_CHANNELS_CLN})),(0,f.W)(v=>(this.handleErrorWithAlert("UpdateChannel",T.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+T.rl.CHANNELS_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.closeChannelCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.CLOSE_CHANNEL_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:r.payload.force?T.MZ.FORCE_CLOSE_CHANNEL:T.MZ.CLOSE_CHANNEL})),this.httpClient.post(this.CHILD_API_URL+T.rl.CHANNELS_API+"/close",{id:r.payload.channelId,unilateraltimeout:r.payload.force?1:null}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:r.payload.force?T.MZ.FORCE_CLOSE_CHANNEL:T.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,F.$Q)()),this.store.dispatch((0,F.g6)()),this.store.dispatch((0,y.UI)({payload:"Channel Closed Successfully!"})),{type:T.TC.REMOVE_CHANNEL_CLN,payload:r.payload})),(0,f.W)(v=>(this.handleErrorWithAlert("CloseChannel",r.payload.force?T.MZ.FORCE_CLOSE_CHANNEL:T.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+T.rl.CHANNELS_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.paymentsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_PAYMENTS_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchPayments",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.PAYMENTS_API))),(0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchPayments",status:T.wn.COMPLETED}})),{type:T.TC.SET_PAYMENTS_CLN,payload:r||[]})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchPayments",T.MZ.NO_SPINNER,"Fetching Payments Failed.",r),(0,w.of)({type:T.aU.VOID}))))),this.fetchOfferInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_OFFER_INVOICE_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.FETCH_INVOICE})),this.store.dispatch((0,F.no)({payload:{action:"FetchOfferInvoice",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.OFFERS_API+"/fetchOfferInvoice",r.payload).pipe((0,x.T)(v=>{this.logger.info(v),setTimeout(()=>{this.store.dispatch((0,F.no)({payload:{action:"FetchOfferInvoice",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.FETCH_INVOICE})),this.store.dispatch((0,F.GZ)({payload:v||{}}))},500)}),(0,f.W)(v=>(this.handleErrorWithoutAlert("FetchOfferInvoice",T.MZ.FETCH_INVOICE,"Offer Invoice Fetch Failed",v),(0,w.of)({type:T.aU.VOID}))))))),{dispatch:!1}),this.setOfferInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_OFFER_INVOICE_CLN),(0,x.T)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.sendPaymentCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SEND_PAYMENT_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:r.payload.uiMessage})),this.store.dispatch((0,F.no)({payload:{action:"SendPayment",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.PAYMENTS_API,r.payload).pipe((0,x.T)(v=>{this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SendPayment",status:T.wn.COMPLETED}}));let V="Payment Sent Successfully!";v.saveToDBError&&(V="Payment Sent Successfully but Offer Saving to Database Failed."),v.saveToDBResponse&&"NA"!==v.saveToDBResponse&&(this.store.dispatch((0,F.Db)({payload:v.saveToDBResponse})),V="Payment Sent Successfully and Offer Saved to Database."),setTimeout(()=>{this.store.dispatch((0,F.$Q)()),this.store.dispatch((0,F.g6)()),this.store.dispatch((0,F.CK)()),this.store.dispatch((0,y.y0)({payload:r.payload.uiMessage})),this.store.dispatch((0,y.UI)({payload:V})),this.store.dispatch((0,F.N4)({payload:v.paymentResponse}))},1e3)}),(0,f.W)(v=>(this.logger.error("Error: "+JSON.stringify(v)),r.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",r.payload.uiMessage,"Send Payment Failed.",v):this.handleErrorWithAlert("SendPayment",r.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+T.rl.PAYMENTS_API,v),(0,w.of)({type:T.aU.VOID}))))))),{dispatch:!1}),this.queryRoutesFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.GET_QUERY_ROUTES_CLN),(0,S.Z)(r=>(this.store.dispatch((0,F.no)({payload:{action:"GetQueryRoutes",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.NETWORK_API+"/getRoute",{id:r.payload.destPubkey,amount_msat:r.payload.amount,riskfactor:0}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"GetQueryRoutes",status:T.wn.COMPLETED}})),{type:T.TC.SET_QUERY_ROUTES_CLN,payload:v})),(0,f.W)(v=>(this.store.dispatch((0,F.Hm)({payload:{route:[]}})),this.handleErrorWithAlert("GetQueryRoutes",T.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+T.rl.NETWORK_API+"/getRoute",v),(0,w.of)({type:T.aU.VOID})))))))),this.setQueryRoutesCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_QUERY_ROUTES_CLN),(0,x.T)(r=>r.payload)),{dispatch:!1}),this.peerLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.PEER_LOOKUP_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.SEARCHING_NODE})),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.NETWORK_API+"/listNodes",{id:r.payload}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.SEARCHING_NODE})),{type:T.TC.SET_LOOKUP_CLN,payload:v})),(0,f.W)(v=>(this.handleErrorWithAlert("Lookup",T.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+T.rl.NETWORK_API+"/listNodes/"+r.payload,v),(0,w.of)({type:T.aU.VOID})))))))),this.channelLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.CHANNEL_LOOKUP_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:r.payload.uiMessage})),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.NETWORK_API+"/listChannels",{short_channel_id:r.payload.shortChannelID}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:r.payload.uiMessage})),{type:T.TC.SET_LOOKUP_CLN,payload:v})),(0,f.W)(v=>(r.payload.showError?this.handleErrorWithAlert("Lookup",r.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+T.rl.NETWORK_API+"/listChannels/"+r.payload.shortChannelID,v):this.store.dispatch((0,y.y0)({payload:r.payload.uiMessage})),this.store.dispatch((0,F.$J)({payload:[]})),(0,w.of)({type:T.aU.VOID})))))))),this.invoiceLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.INVOICE_LOOKUP_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.INVOICES_API+"/lookup",{label:r.payload}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"Lookup",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.SEARCHING_INVOICE})),v.invoices&&v.invoices.length&&v.invoices.length>0&&this.store.dispatch((0,F.Dq)({payload:v.invoices[0]})),{type:T.TC.SET_LOOKUP_CLN,payload:v.invoices&&v.invoices.length&&v.invoices.length>0?v.invoices[0]:v})),(0,f.W)(v=>(this.handleErrorWithoutAlert("Lookup",T.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",v),this.store.dispatch((0,y.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,w.of)({type:T.aU.VOID})))))))),this.setLookupCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_LOOKUP_CLN),(0,x.T)(r=>(this.logger.info(r.payload),r.payload))),{dispatch:!1}),this.fetchForwardingHistoryCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.GET_FORWARDING_HISTORY_CLN),(0,S.Z)(r=>{const v=r.payload.status.charAt(0).toUpperCase();return this.store.dispatch((0,F.no)({payload:{action:"FetchForwardingHistory"+v,status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.CHANNELS_API+"/listForwards",r.payload).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,F.no)({payload:{action:"FetchForwardingHistory"+v,status:T.wn.COMPLETED}})),r.payload.status===T.xk.FAILED?this.store.dispatch((0,F.kv)({payload:{status:T.xk.FAILED,totalForwards:V.length,listForwards:V}})):r.payload.status===T.xk.LOCAL_FAILED?this.store.dispatch((0,F.kv)({payload:{status:T.xk.LOCAL_FAILED,totalForwards:V.length,listForwards:V}})):r.payload.status===T.xk.SETTLED&&this.store.dispatch((0,F.kv)({payload:{status:T.xk.SETTLED,totalForwards:V.length,listForwards:V}})),{type:T.aU.VOID})),(0,f.W)(V=>(this.handleErrorWithAlert("FetchForwardingHistory"+v,T.MZ.NO_SPINNER,"Get "+r.payload.status+" Forwarding History Failed",this.CHILD_API_URL+T.rl.CHANNELS_API+"/listForwards",V),(0,w.of)({type:T.aU.VOID}))))}))),this.deleteExpiredInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.DELETE_EXPIRED_INVOICE_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.DELETE_INVOICE})),this.httpClient.post(this.CHILD_API_URL+T.rl.INVOICES_API+"/delete",{maxexpiry:r.payload}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,y.y0)({payload:T.MZ.DELETE_INVOICE})),this.store.dispatch((0,y.UI)({payload:"Invoices Deleted Successfully!"})),{type:T.TC.FETCH_INVOICES_CLN})),(0,f.W)(v=>(this.handleErrorWithAlert("DeleteInvoices",T.MZ.DELETE_INVOICE,"Delete Invoice Failed",this.CHILD_API_URL+T.rl.INVOICES_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.saveNewInvoiceCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_NEW_INVOICE_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.ADD_INVOICE})),this.store.dispatch((0,F.no)({payload:{action:"SaveNewInvoice",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.INVOICES_API,r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SaveNewInvoice",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.ADD_INVOICE})),v.amount_msat=r.payload.amount_msat,v.label=r.payload.label,v.expires_at=Math.round((new Date).getTime()/1e3+r.payload.expiry),v.description=r.payload.description,v.status="unpaid",setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{invoice:v,newlyAdded:!0,component:d.y}}}))},200),{type:T.TC.ADD_INVOICE_CLN,payload:v})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SaveNewInvoice",T.MZ.ADD_INVOICE,"Add Invoice Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.saveNewOfferCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_NEW_OFFER_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.CREATE_OFFER})),this.store.dispatch((0,F.no)({payload:{action:"SaveNewOffer",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.OFFERS_API,r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SaveNewOffer",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.CREATE_OFFER})),setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{offer:v,newlyAdded:!0,component:z.f}}}))},100),{type:T.TC.ADD_OFFER_CLN,payload:v})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SaveNewOffer",T.MZ.CREATE_OFFER,"Create Offer Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.invoicesFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_INVOICES_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchInvoices",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.INVOICES_API+"/lookup",null))),(0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchInvoices",status:T.wn.COMPLETED}})),{type:T.TC.SET_INVOICES_CLN,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchInvoices",T.MZ.NO_SPINNER,"Fetching Invoices Failed.",r),(0,w.of)({type:T.aU.VOID}))))),this.offersFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_OFFERS_CLN),(0,S.Z)(r=>(this.store.dispatch((0,F.no)({payload:{action:"FetchOffers",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.OFFERS_API).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"FetchOffers",status:T.wn.COMPLETED}})),{type:T.TC.SET_OFFERS_CLN,payload:v.offers?v.offers:[]})),(0,f.W)(v=>(this.handleErrorWithoutAlert("FetchOffers",T.MZ.NO_SPINNER,"Fetching Offers Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.offersDisableCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.DISABLE_OFFER_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.DISABLE_OFFER})),this.store.dispatch((0,F.no)({payload:{action:"DisableOffer",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.OFFERS_API+"/disableOffer",{offer_id:r.payload.offer_id}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"DisableOffer",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.DISABLE_OFFER})),this.store.dispatch((0,y.UI)({payload:"Offer Disabled Successfully!"})),{type:T.TC.UPDATE_OFFER_CLN,payload:{offer:v}})),(0,f.W)(v=>(this.handleErrorWithoutAlert("DisableOffer",T.MZ.DISABLE_OFFER,"Disabling Offer Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.offerBookmarksFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_OFFER_BOOKMARKS_CLN),(0,S.Z)(r=>(this.store.dispatch((0,F.no)({payload:{action:"FetchOfferBookmarks",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.OFFERS_API+"/offerbookmarks").pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"FetchOfferBookmarks",status:T.wn.COMPLETED}})),{type:T.TC.SET_OFFER_BOOKMARKS_CLN,payload:v||[]})),(0,f.W)(v=>(this.handleErrorWithoutAlert("FetchOfferBookmarks",T.MZ.NO_SPINNER,"Fetching Offer Bookmarks Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.peidOffersDeleteCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.DELETE_OFFER_BOOKMARK_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,F.no)({payload:{action:"DeleteOfferBookmark",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.OFFERS_API+"/offerbookmark/delete",{offer_str:r.payload.bolt12}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"DeleteOfferBookmark",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,y.UI)({payload:"Offer Bookmark Deleted Successfully!"})),{type:T.TC.REMOVE_OFFER_BOOKMARK_CLN,payload:{bolt12:r.payload.bolt12}})),(0,f.W)(v=>(this.handleErrorWithAlert("DeleteOfferBookmark",T.MZ.DELETE_OFFER_BOOKMARK,"Deleting Offer Bookmark Failed.",this.CHILD_API_URL+T.rl.OFFERS_API+"/offerbookmark/"+r.payload.bolt12,v),(0,w.of)({type:T.aU.VOID})))))))),this.SetChannelTransactionCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SET_CHANNEL_TRANSACTION_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.SEND_FUNDS})),this.store.dispatch((0,F.no)({payload:{action:"SetChannelTransaction",status:T.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+T.rl.ON_CHAIN_API,r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SetChannelTransaction",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.SEND_FUNDS})),this.store.dispatch((0,F.g6)()),{type:T.TC.SET_CHANNEL_TRANSACTION_RES_CLN,payload:v})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SetChannelTransaction",T.MZ.SEND_FUNDS,"Sending Fund Failed.",v),(0,w.of)({type:T.aU.VOID})))))))),this.utxoBalancesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_UTXO_BALANCES_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchUTXOBalances",status:T.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+T.rl.ON_CHAIN_API+"/utxos"))),(0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchUTXOBalances",status:T.wn.COMPLETED}})),{type:T.TC.SET_UTXO_BALANCES_CLN,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchUTXOBalances",T.MZ.NO_SPINNER,"Fetching UTXO and Balances Failed.",r),(0,w.of)({type:T.aU.VOID}))))),this.pageSettingsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.FETCH_PAGE_SETTINGS_CLN),(0,S.Z)(()=>(this.store.dispatch((0,F.no)({payload:{action:"FetchPageSettings",status:T.wn.INITIATED}})),this.httpClient.get(T.rl.PAGE_SETTINGS_API).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.no)({payload:{action:"FetchPageSettings",status:T.wn.COMPLETED}})),{type:T.TC.SET_PAGE_SETTINGS_CLN,payload:r||[]})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchPageSettings",T.MZ.NO_SPINNER,"Fetching Page Settings Failed.",r),(0,w.of)({type:T.aU.VOID})))))))),this.savePageSettingsCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(T.TC.SAVE_PAGE_SETTINGS_CLN),(0,S.Z)(r=>(this.store.dispatch((0,y.mt)({payload:T.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,F.no)({payload:{action:"SavePageSettings",status:T.wn.INITIATED}})),this.httpClient.post(T.rl.PAGE_SETTINGS_API,r.payload).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.no)({payload:{action:"SavePageSettings",status:T.wn.COMPLETED}})),this.store.dispatch((0,y.y0)({payload:T.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,y.UI)({payload:"Page Layout Updated Successfully!"})),{type:T.TC.SET_PAGE_SETTINGS_CLN,payload:v||[]})),(0,f.W)(v=>(this.handleErrorWithAlert("SavePageSettings",T.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",T.rl.PAGE_SETTINGS_API,v),(0,w.of)({type:T.aU.VOID})))))))),this.store.select(R.ru).pipe((0,l.Q)(this.unSubs[0])).subscribe(r=>{r.FetchInfo.status!==T.wn.COMPLETED&&r.FetchInfo.status!==T.wn.ERROR||r.FetchChannels.status!==T.wn.COMPLETED&&r.FetchChannels.status!==T.wn.ERROR||r.FetchUTXOBalances.status!==T.wn.COMPLETED&&r.FetchUTXOBalances.status!==T.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,y.y0)({payload:T.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.clWSMessages.pipe((0,l.Q)(this.unSubs[1])).subscribe(r=>{this.logger.info("Received new message from the service: "+JSON.stringify(r)),r&&r.data&&r.data[T.Jr.INVOICE_PAYMENT]&&r.data[T.Jr.INVOICE_PAYMENT].label&&this.store.dispatch((0,F.Dq)({payload:r.data[T.Jr.INVOICE_PAYMENT]}))})}initializeRemainingData(D,n){this.sessionService.setItem("clnUnlocked","true");const c={identity_pubkey:D.id,alias:D.alias,testnet:"testnet"===D.network.toLowerCase(),chains:D.chains,uris:D.uris,version:D.version,api_version:D.api_version,numberOfPendingChannels:D.num_pending_channels};this.store.dispatch((0,y.mt)({payload:T.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,y.Fl)({payload:c}));let m=this.location.path();m.includes("/lnd/")?m=m?.replace("/lnd/","/cln/"):m.includes("/ecl/")&&(m=m?.replace("/ecl/","/cln/")),(m.includes("/login")||m.includes("/error")||""===m||"HOME"===n||m.includes("?access-key="))&&(m="/cln/home"),this.router.navigate([m]),this.store.dispatch((0,F.Do)()),this.store.dispatch((0,F.$Q)()),this.store.dispatch((0,F.g6)()),this.store.dispatch((0,F.kX)({payload:"perkw"})),this.store.dispatch((0,F.kX)({payload:"perkb"})),this.store.dispatch((0,F.Gy)()),this.store.dispatch((0,F.CK)())}handleErrorWithoutAlert(D,n,c,m){if(this.logger.error("ERROR IN: "+D+"\n"+JSON.stringify(m)),401===m.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.Jh)()),this.store.dispatch((0,y.ri)({payload:"Authentication Failed: "+JSON.stringify(m.error)}));else{this.store.dispatch((0,y.y0)({payload:n}));const h=this.commonService.extractErrorMessage(m,c);this.store.dispatch((0,F.no)({payload:{action:D,status:T.wn.ERROR,statusCode:m.status.toString(),message:h}}))}}handleErrorWithAlert(D,n,c,m,h){if(this.logger.error(h),401===h.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.Jh)()),this.store.dispatch((0,y.ri)({payload:"Authentication Failed: "+JSON.stringify(h.error)})),this.store.dispatch((0,y.UI)({payload:"Authentication Failed: "+h.error}));else{this.store.dispatch((0,y.y0)({payload:n}));const C=this.commonService.extractErrorMessage(h);this.store.dispatch((0,y.xO)({payload:{data:{type:"ERROR",alertTitle:c,message:{code:h.status,message:C,URL:m},component:I.f}}})),this.store.dispatch((0,F.no)({payload:{action:D,status:T.wn.ERROR,statusCode:h.status.toString(),message:C,URL:m}}))}}ngOnDestroy(){this.unSubs.forEach(D=>{D.next(null),D.complete()})}static#e=this.\u0275fac=function(n){return new(n||Te)(W.KVO(e.En),W.KVO($.Qq),W.KVO(j.il),W.KVO(Q.Q),W.KVO(J.h),W.KVO(ee.gP),W.KVO(ie.Ix),W.KVO(ge.I),W.KVO(ae.aZ))};static#t=this.\u0275prov=W.jDH({token:Te,factory:Te.\u0275fac})}return Te})()},9584:(Qe,te,g)=>{"use strict";g.d(te,{Al:()=>F,BM:()=>R,Dv:()=>W,GX:()=>j,Ie:()=>z,KT:()=>f,O5:()=>ee,Pj:()=>y,RB:()=>T,RQ:()=>J,aJ:()=>$,av:()=>w,ip:()=>ie,kQ:()=>Q,kr:()=>d,mH:()=>S,os:()=>I,ru:()=>x});var e=g(9640);const t=(0,e.UX)("cln"),w=(0,e.Mz)(t,ae=>({pageSettings:ae.pageSettings,apiCallStatus:ae.apisCallStatus.FetchPageSettings})),S=(0,e.Mz)(t,ae=>ae.information),x=((0,e.Mz)(t,ae=>ae.apisCallStatus.FetchInfo),(0,e.Mz)(t,ae=>ae.apisCallStatus)),f=(0,e.Mz)(t,ae=>({payments:ae.payments,apiCallStatus:ae.apisCallStatus.FetchPayments})),I=(0,e.Mz)(t,ae=>({peers:ae.peers,apiCallStatus:ae.apisCallStatus.FetchPeers})),d=(0,e.Mz)(t,ae=>({feeRatesPerKB:ae.feeRatesPerKB,apiCallStatus:ae.apisCallStatus.FetchFeeRatesperkb})),T=(0,e.Mz)(t,ae=>({feeRatesPerKW:ae.feeRatesPerKW,apiCallStatus:ae.apisCallStatus.FetchFeeRatesperkw})),y=(0,e.Mz)(t,ae=>({listInvoices:ae.invoices,apiCallStatus:ae.apisCallStatus.FetchInvoices})),F=(0,e.Mz)(t,ae=>({utxos:ae.utxos,balance:ae.balance,localRemoteBalance:ae.localRemoteBalance,apiCallStatus:ae.apisCallStatus.FetchUTXOBalances})),R=(0,e.Mz)(t,ae=>({activeChannels:ae.activeChannels,pendingChannels:ae.pendingChannels,inactiveChannels:ae.inactiveChannels,apiCallStatus:ae.apisCallStatus.FetchChannels})),z=(0,e.Mz)(t,ae=>({forwardingHistory:ae.forwardingHistory,apiCallStatus:ae.apisCallStatus.FetchForwardingHistoryS})),W=(0,e.Mz)(t,ae=>({failedForwardingHistory:ae.failedForwardingHistory,apiCallStatus:ae.apisCallStatus.FetchForwardingHistoryF})),$=(0,e.Mz)(t,ae=>({localFailedForwardingHistory:ae.localFailedForwardingHistory,apiCallStatus:ae.apisCallStatus.FetchForwardingHistoryL})),j=(0,e.Mz)(t,ae=>({information:ae.information,balance:ae.balance,numPeers:ae.peers.length})),Q=(0,e.Mz)(t,ae=>({information:ae.information,balance:ae.balance})),J=(0,e.Mz)(t,ae=>({information:ae.information,fees:ae.fees,apisCallStatus:[ae.apisCallStatus.FetchInfo,ae.apisCallStatus.FetchForwardingHistoryS]})),ee=(0,e.Mz)(t,ae=>({offers:ae.offers,apiCallStatus:ae.apisCallStatus.FetchOffers})),ie=(0,e.Mz)(t,ae=>({offersBookmarks:ae.offersBookmarks,apiCallStatus:ae.apisCallStatus.FetchOfferBookmarks}))},8321:(Qe,te,g)=>{"use strict";g.d(te,{y:()=>mt});var e=g(5351),t=g(5383),w=g(1413),S=g(6977),l=g(4416),x=g(9584),f=g(4438),I=g(8570),d=g(2571),T=g(5416),y=g(9640),F=g(177),R=g(60),z=g(2920),W=g(6038),$=g(8834),j=g(5596),Q=g(1997),J=g(9183),ee=g(4823),ie=g(8288),ge=g(9157),ae=g(9587);const Me=_e=>({"display-none":_e}),Te=_e=>({"xs-scroll-y":_e}),de=(_e,be)=>({"mt-2":_e,"mt-1":be}),D=_e=>({"mr-0":_e}),n=()=>[];function c(_e,be){if(1&_e&&f.nrm(0,"qr-code",33),2&_e){const pe=f.XpG();f.Y8G("value",(null==pe.invoice?null:pe.invoice.bolt11)||(null==pe.invoice?null:pe.invoice.bolt12))("size",pe.qrWidth)("errorCorrectionLevel","L")}}function m(_e,be){1&_e&&(f.j41(0,"span",34),f.EFF(1,"N/A"),f.k0s())}function h(_e,be){if(1&_e&&f.nrm(0,"span",35),2&_e){const pe=f.XpG();f.Y8G("ngClass",f.eq3(1,D,pe.screenSize===pe.screenSizeEnum.XS))}}function C(_e,be){if(1&_e&&f.nrm(0,"span",36),2&_e){const pe=f.XpG();f.Y8G("ngClass",f.eq3(1,D,pe.screenSize===pe.screenSizeEnum.XS))}}function k(_e,be){if(1&_e&&f.nrm(0,"span",37),2&_e){const pe=f.XpG();f.Y8G("ngClass",f.eq3(1,D,pe.screenSize===pe.screenSizeEnum.XS))}}function L(_e,be){if(1&_e&&f.nrm(0,"qr-code",33),2&_e){const pe=f.XpG();f.Y8G("value",(null==pe.invoice?null:pe.invoice.bolt11)||(null==pe.invoice?null:pe.invoice.bolt12))("size",pe.qrWidth)("errorCorrectionLevel","L")}}function _(_e,be){1&_e&&(f.j41(0,"span",38),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function r(_e,be){1&_e&&f.nrm(0,"mat-divider",39)}function v(_e,be){if(1&_e&&(f.j41(0,"div",20)(1,"div",40),f.nrm(2,"fa-icon",41),f.j41(3,"span"),f.EFF(4),f.k0s()()()),2&_e){const pe=f.XpG();f.R7$(2),f.Y8G("icon",pe.faExclamationTriangle),f.R7$(2),f.JRh(null==pe.invoice?null:pe.invoice.warning_capacity)}}function V(_e,be){1&_e&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function N(_e,be){1&_e&&f.nrm(0,"span",47)}function ne(_e,be){if(1&_e&&(f.j41(0,"div",43)(1,"div",44)(2,"span",45),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,N,1,0,"span",46),f.k0s()()),2&_e){const pe=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,(null==pe.invoice?null:pe.invoice.amount_received_msat)/1e3)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,n).constructor(35))}}function Ee(_e,be){if(1&_e&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&_e){const pe=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,(null==pe.invoice?null:pe.invoice.amount_received_msat)/1e3)," Sats")}}function ze(_e,be){if(1&_e&&(f.qex(0),f.DNE(1,ne,6,5,"div",42)(2,Ee,3,3,"div",24),f.bVm()),2&_e){const pe=f.XpG();f.R7$(),f.Y8G("ngIf",pe.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!pe.flgInvoicePaid)}}function qe(_e,be){1&_e&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function Ke(_e,be){1&_e&&f.nrm(0,"mat-spinner",49),2&_e&&f.Y8G("diameter",20)}function se(_e,be){if(1&_e&&(f.qex(0),f.DNE(1,qe,2,0,"span",24)(2,Ke,1,1,"mat-spinner",48),f.bVm()),2&_e){const pe=f.XpG();f.R7$(),f.Y8G("ngIf","unpaid"!==(null==pe.invoice?null:pe.invoice.status)),f.R7$(),f.Y8G("ngIf","unpaid"===(null==pe.invoice?null:pe.invoice.status))}}function X(_e,be){if(1&_e&&(f.j41(0,"div"),f.nrm(1,"mat-divider",26),f.j41(2,"div",20)(3,"div",27)(4,"h4",22),f.EFF(5,"Payment Hash"),f.k0s(),f.j41(6,"span",25),f.EFF(7),f.k0s()()(),f.nrm(8,"mat-divider",26),f.j41(9,"div",20)(10,"div",27)(11,"h4",22),f.EFF(12,"Label"),f.k0s(),f.j41(13,"span",25),f.EFF(14),f.k0s()()(),f.nrm(15,"mat-divider",26),f.k0s()),2&_e){const pe=f.XpG();f.R7$(7),f.JRh(null==pe.invoice?null:pe.invoice.payment_hash),f.R7$(7),f.JRh(null==pe.invoice?null:pe.invoice.label)}}function me(_e,be){1&_e&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function ce(_e,be){1&_e&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function fe(_e,be){if(1&_e){const pe=f.RV6();f.j41(0,"button",50),f.bIt("copied",function(_t){f.eBV(pe);const at=f.XpG();return f.Njj(at.onCopyPayment(_t))}),f.EFF(1,"Copy Invoice"),f.k0s()}if(2&_e){const pe=f.XpG();f.Y8G("payload",(null==pe.invoice?null:pe.invoice.bolt11)||(null==pe.invoice?null:pe.invoice.bolt12))}}function ke(_e,be){if(1&_e){const pe=f.RV6();f.j41(0,"button",51),f.bIt("click",function(){f.eBV(pe);const _t=f.XpG();return f.Njj(_t.onClose())}),f.EFF(1,"OK"),f.k0s()}}let mt=(()=>{class _e{constructor(pe,Ze,_t,at,pt,Xt){this.dialogRef=pe,this.data=Ze,this.logger=_t,this.commonService=at,this.snackBar=pt,this.store=Xt,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.invoiceStatus="",this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgInvoicePaid=!1,this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B]}ngOnInit(){this.invoice=this.data.invoice,this.invoiceStatus=this.invoice.status,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.store.select(x.Pj).pipe((0,S.Q)(this.unSubs[1])).subscribe(pe=>{const _t=(pe.listInvoices.invoices||[])?.find(at=>at.payment_hash===this.invoice.payment_hash)||null;_t&&(this.invoice=_t),this.invoiceStatus!==this.invoice.status&&"paid"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(this.invoice),this.logger.info(this.invoiceStatus),this.logger.info(_t),this.logger.info(pe)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(pe){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+pe)}ngOnDestroy(){this.unSubs.forEach(pe=>{pe.next(null),pe.complete()})}static#e=this.\u0275fac=function(Ze){return new(Ze||_e)(f.rXU(e.CP),f.rXU(e.Vh),f.rXU(I.gP),f.rXU(d.h),f.rXU(T.UG),f.rXU(y.il))};static#t=this.\u0275cmp=f.VBU({type:_e,selectors:[["rtl-cln-invoice-information"]],decls:72,vars:49,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["class","dot green ml-1","matTooltip","Paid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow ml-1","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red ml-1","matTooltip","Expired","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"overflow-wrap","foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],["matTooltip","Paid","matTooltipPosition","right",1,"dot","green","ml-1",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow","ml-1",3,"ngClass"],["matTooltip","Expired","matTooltipPosition","right",1,"dot","red","ml-1",3,"ngClass"],[1,"font-size-120"],[1,"my-1"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(Ze,_t){if(1&Ze){const at=f.RV6();f.j41(0,"div",1)(1,"div",2),f.DNE(2,c,1,3,"qr-code",3)(3,m,2,0,"span",4),f.k0s(),f.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),f.nrm(7,"fa-icon",8),f.j41(8,"span",9),f.EFF(9),f.DNE(10,h,1,3,"span",10)(11,C,1,3,"span",11)(12,k,1,3,"span",12),f.k0s()(),f.j41(13,"button",13),f.bIt("click",function(){return f.eBV(at),f.Njj(_t.onClose())}),f.EFF(14,"X"),f.k0s()(),f.j41(15,"mat-card-content",14)(16,"div",15)(17,"div",16),f.DNE(18,L,1,3,"qr-code",3)(19,_,2,0,"span",17),f.k0s(),f.DNE(20,r,1,0,"mat-divider",18)(21,v,5,2,"div",19),f.j41(22,"div",20)(23,"div",21)(24,"h4",22),f.EFF(25),f.k0s(),f.j41(26,"span",23),f.EFF(27),f.nI1(28,"number"),f.DNE(29,V,2,0,"ng-container",24),f.k0s()(),f.j41(30,"div",21)(31,"h4",22),f.EFF(32,"Amount Received"),f.k0s(),f.j41(33,"span",25),f.DNE(34,ze,3,2,"ng-container",24)(35,se,3,2,"ng-container",24),f.k0s()()(),f.nrm(36,"mat-divider",26),f.j41(37,"div",20)(38,"div",21)(39,"h4",22),f.EFF(40,"Date Expiry"),f.k0s(),f.j41(41,"span",23),f.EFF(42),f.nI1(43,"date"),f.k0s()(),f.j41(44,"div",21)(45,"h4",22),f.EFF(46,"Date Settled"),f.k0s(),f.j41(47,"span",23),f.EFF(48),f.nI1(49,"date"),f.k0s()()(),f.nrm(50,"mat-divider",26),f.j41(51,"div",20)(52,"div",27)(53,"h4",22),f.EFF(54,"Description"),f.k0s(),f.j41(55,"span",23),f.EFF(56),f.k0s()()(),f.nrm(57,"mat-divider",26),f.j41(58,"div",20)(59,"div",27)(60,"h4",22),f.EFF(61),f.k0s(),f.j41(62,"span",25),f.EFF(63),f.k0s()()(),f.DNE(64,X,16,2,"div",24),f.j41(65,"div",28)(66,"button",29),f.bIt("click",function(){return f.eBV(at),f.Njj(_t.onShowAdvanced())}),f.DNE(67,me,2,0,"p",30)(68,ce,2,0,"ng-template",null,0,f.C5r),f.k0s(),f.DNE(70,fe,2,1,"button",31)(71,ke,2,0,"button",32),f.k0s()()()()()}if(2&Ze){const at=f.sdS(69);f.R7$(),f.Y8G("fxLayoutAlign",null!=_t.invoice&&_t.invoice.bolt11&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||null!=_t.invoice&&_t.invoice.bolt12&&""!==(null==_t.invoice?null:_t.invoice.bolt12)?"center start":"center center")("ngClass",f.eq3(40,Me,_t.screenSize===_t.screenSizeEnum.XS||_t.screenSize===_t.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==_t.invoice?null:_t.invoice.bolt11)&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||(null==_t.invoice?null:_t.invoice.bolt12)&&""!==(null==_t.invoice?null:_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=_t.invoice&&_t.invoice.bolt11||null!=_t.invoice&&_t.invoice.bolt12)),f.R7$(4),f.Y8G("icon",_t.faReceipt),f.R7$(2),f.SpI(" ",_t.screenSize===_t.screenSizeEnum.XS?_t.newlyAdded?"Created":"Invoice":_t.newlyAdded?"Invoice Created":"Invoice Information"," "),f.R7$(),f.Y8G("ngIf","paid"===(null==_t.invoice?null:_t.invoice.status)),f.R7$(),f.Y8G("ngIf","unpaid"===(null==_t.invoice?null:_t.invoice.status)),f.R7$(),f.Y8G("ngIf","expired"===(null==_t.invoice?null:_t.invoice.status)),f.R7$(3),f.Y8G("ngClass",f.eq3(42,Te,_t.screenSize===_t.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=_t.invoice&&_t.invoice.bolt11&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||null!=_t.invoice&&_t.invoice.bolt12&&""!==(null==_t.invoice?null:_t.invoice.bolt12)?"center start":"center center")("ngClass",f.eq3(44,Me,_t.screenSize!==_t.screenSizeEnum.XS&&_t.screenSize!==_t.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==_t.invoice?null:_t.invoice.bolt11)&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||(null==_t.invoice?null:_t.invoice.bolt12)&&""!==(null==_t.invoice?null:_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=_t.invoice&&_t.invoice.bolt11||null!=_t.invoice&&_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",_t.screenSize===_t.screenSizeEnum.XS||_t.screenSize===_t.screenSizeEnum.SM),f.R7$(),f.Y8G("ngIf",null==_t.invoice?null:_t.invoice.warning_capacity),f.R7$(4),f.JRh(_t.screenSize===_t.screenSizeEnum.XS?"Amount":"Amount Requested"),f.R7$(2),f.SpI(" ",f.bMT(28,32,(null==_t.invoice?null:_t.invoice.amount_msat)/1e3||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=_t.invoice&&_t.invoice.amount_msat)||"0"===(null==_t.invoice?null:_t.invoice.amount_msat)||"any"===(null==_t.invoice?null:_t.invoice.amount_msat)),f.R7$(5),f.Y8G("ngIf","paid"===(null==_t.invoice?null:_t.invoice.status)),f.R7$(),f.Y8G("ngIf","paid"!==(null==_t.invoice?null:_t.invoice.status)),f.R7$(7),f.JRh(f.i5U(43,34,1e3*(null==_t.invoice?null:_t.invoice.expires_at),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.i5U(49,37,1e3*(null==_t.invoice?null:_t.invoice.paid_at),"dd/MMM/y HH:mm")||"-"),f.R7$(8),f.JRh((null==_t.invoice?null:_t.invoice.description)||"-"),f.R7$(5),f.SpI("",null!=_t.invoice&&_t.invoice.bolt12?"Bolt12":null!=_t.invoice&&_t.invoice.bolt11&&!_t.invoice.label.includes("keysend-")?"Bolt11":"Keysend"," Invoice"),f.R7$(2),f.JRh((null==_t.invoice?null:_t.invoice.bolt11)||(null==_t.invoice?null:_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",_t.showAdvanced),f.R7$(),f.Y8G("ngClass",f.l_i(46,de,!_t.showAdvanced,_t.showAdvanced)),f.R7$(2),f.Y8G("ngIf",!_t.showAdvanced)("ngIfElse",at),f.R7$(3),f.Y8G("ngIf",(null==_t.invoice?null:_t.invoice.bolt11)&&""!==(null==_t.invoice?null:_t.invoice.bolt11)||(null==_t.invoice?null:_t.invoice.bolt12)&&""!==(null==_t.invoice?null:_t.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=_t.invoice&&_t.invoice.bolt11||null!=_t.invoice&&_t.invoice.bolt12))}},dependencies:[F.YU,F.Sq,F.bT,R.aY,z.DJ,z.sA,z.UI,W.PW,$.$z,j.m2,j.MM,Q.q,J.LG,ee.oV,ie.Um,ge.U,ae.N,F.QX,F.vh]})}return _e})()},2142:(Qe,te,g)=>{"use strict";g.d(te,{f:()=>ne});var e=g(5351),t=g(5383),w=g(1413),S=g(6977),l=g(4416),x=g(4438),f=g(8570),I=g(2571),d=g(5416),T=g(1534),y=g(177),F=g(60),R=g(2920),z=g(6038),W=g(8834),$=g(5596),j=g(1997),Q=g(8288),J=g(9157),ee=g(9587);const ie=Ee=>({"display-none":Ee}),ge=Ee=>({"xs-scroll-y":Ee}),ae=(Ee,ze)=>({"mt-2":Ee,"mt-1":ze});function Me(Ee,ze){if(1&Ee&&x.nrm(0,"qr-code",28),2&Ee){const qe=x.XpG();x.Y8G("value",null==qe.offer?null:qe.offer.bolt12)("size",qe.qrWidth)("errorCorrectionLevel","L")}}function Te(Ee,ze){1&Ee&&(x.j41(0,"span",29),x.EFF(1,"N/A"),x.k0s())}function de(Ee,ze){if(1&Ee&&x.nrm(0,"qr-code",28),2&Ee){const qe=x.XpG();x.Y8G("value",null==qe.offer?null:qe.offer.bolt12)("size",qe.qrWidth)("errorCorrectionLevel","L")}}function D(Ee,ze){1&Ee&&(x.j41(0,"span",30),x.EFF(1,"QR Code Not Applicable"),x.k0s())}function n(Ee,ze){1&Ee&&x.nrm(0,"mat-divider",31),2&Ee&&x.Y8G("inset",!0)}function c(Ee,ze){1&Ee&&x.nrm(0,"mat-divider",20)}function m(Ee,ze){if(1&Ee&&(x.j41(0,"div",16)(1,"div",17)(2,"h4",18),x.EFF(3,"Used"),x.k0s(),x.j41(4,"span",19),x.EFF(5),x.k0s()(),x.j41(6,"div",17)(7,"h4",18),x.EFF(8,"Single Use"),x.k0s(),x.j41(9,"span",19),x.EFF(10),x.k0s()()()),2&Ee){const qe=x.XpG(2);x.R7$(5),x.SpI(" ",null!=qe.offer&&qe.offer.used?null!=qe.offer&&qe.offer.used?"Yes":"No":"N/K"," "),x.R7$(5),x.SpI(" ",null!=qe.offer&&qe.offer.single_use?null!=qe.offer&&qe.offer.single_use?"Yes":"No":"N/K"," ")}}function h(Ee,ze){1&Ee&&x.nrm(0,"mat-divider",20)}function C(Ee,ze){if(1&Ee&&(x.j41(0,"div",16)(1,"div",21)(2,"h4",18),x.EFF(3,"Issuer"),x.k0s(),x.j41(4,"span",34),x.EFF(5),x.k0s()()()),2&Ee){const qe=x.XpG(2);x.R7$(5),x.JRh(null==qe.offerDecoded?null:qe.offerDecoded.offer_issuer)}}function k(Ee,ze){1&Ee&&x.nrm(0,"mat-divider",20)}function L(Ee,ze){if(1&Ee&&(x.j41(0,"div",16)(1,"div",21)(2,"h4",18),x.EFF(3,"Label"),x.k0s(),x.j41(4,"span",19),x.EFF(5),x.k0s()()()),2&Ee){const qe=x.XpG(2);x.R7$(5),x.JRh(qe.offer.label)}}function _(Ee,ze){if(1&Ee&&(x.j41(0,"div"),x.DNE(1,c,1,0,"mat-divider",32)(2,m,11,2,"div",33)(3,h,1,0,"mat-divider",32)(4,C,6,1,"div",33)(5,k,1,0,"mat-divider",32)(6,L,6,1,"div",33),x.nrm(7,"mat-divider",20),x.j41(8,"div",16)(9,"div",21)(10,"h4",18),x.EFF(11,"Offer ID"),x.k0s(),x.j41(12,"span",19),x.EFF(13),x.k0s()()(),x.nrm(14,"mat-divider",20),x.j41(15,"div",16)(16,"div",21)(17,"h4",18),x.EFF(18,"Offer Node ID"),x.k0s(),x.j41(19,"span",19),x.EFF(20),x.k0s()()(),x.nrm(21,"mat-divider",20),x.k0s()),2&Ee){const qe=x.XpG();x.R7$(),x.Y8G("ngIf",(null==qe.offer?null:qe.offer.used)||(null==qe.offer?null:qe.offer.single_use)),x.R7$(),x.Y8G("ngIf",(null==qe.offer?null:qe.offer.used)||(null==qe.offer?null:qe.offer.single_use)),x.R7$(),x.Y8G("ngIf",null==qe.offerDecoded?null:qe.offerDecoded.issuer),x.R7$(),x.Y8G("ngIf",null==qe.offerDecoded?null:qe.offerDecoded.issuer),x.R7$(),x.Y8G("ngIf",qe.offer.label),x.R7$(),x.Y8G("ngIf",qe.offer.label),x.R7$(7),x.JRh(qe.offerDecoded.offer_id),x.R7$(7),x.JRh(null==qe.offerDecoded?null:qe.offerDecoded.offer_node_id)}}function r(Ee,ze){1&Ee&&(x.j41(0,"p"),x.EFF(1,"Show Advanced"),x.k0s())}function v(Ee,ze){1&Ee&&(x.j41(0,"p"),x.EFF(1,"Hide Advanced"),x.k0s())}function V(Ee,ze){if(1&Ee){const qe=x.RV6();x.j41(0,"button",35),x.bIt("copied",function(se){x.eBV(qe);const X=x.XpG();return x.Njj(X.onCopyOffer(se))}),x.EFF(1,"Copy Offer"),x.k0s()}if(2&Ee){const qe=x.XpG();x.Y8G("payload",null==qe.offer?null:qe.offer.bolt12)}}function N(Ee,ze){if(1&Ee){const qe=x.RV6();x.j41(0,"button",36),x.bIt("click",function(){x.eBV(qe);const se=x.XpG();return x.Njj(se.onClose())}),x.EFF(1,"OK"),x.k0s()}}let ne=(()=>{class Ee{constructor(qe,Ke,se,X,me,ce){this.dialogRef=qe,this.data=Ke,this.logger=se,this.commonService=X,this.snackBar=me,this.dataService=ce,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.offerDecoded={},this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgOfferPaid=!1,this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B]}ngOnInit(){this.offer=this.data.offer,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.dataService.decodePayment(this.offer.bolt12,!0).pipe((0,S.Q)(this.unSubs[1])).subscribe(qe=>{this.offerDecoded=qe,this.offerDecoded.offer_id&&!this.offerDecoded.offer_amount_msat&&(this.offerDecoded.offer_amount_msat=0)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyOffer(qe){this.snackBar.open("Offer copied."),this.logger.info("Copied Text: "+qe)}ngOnDestroy(){this.unSubs.forEach(qe=>{qe.next(null),qe.complete()})}static#e=this.\u0275fac=function(Ke){return new(Ke||Ee)(x.rXU(e.CP),x.rXU(e.Vh),x.rXU(f.gP),x.rXU(I.h),x.rXU(d.UG),x.rXU(T.u))};static#t=this.\u0275cmp=x.VBU({type:Ee,selectors:[["rtl-cln-offer-information"]],decls:52,vars:33,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","100"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],[1,"overflow-wrap","foreground-secondary-text"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(Ke,se){if(1&Ke){const X=x.RV6();x.j41(0,"div",1)(1,"div",2),x.DNE(2,Me,1,3,"qr-code",3)(3,Te,2,0,"span",4),x.k0s(),x.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),x.nrm(7,"fa-icon",8),x.j41(8,"span",9),x.EFF(9),x.k0s()(),x.j41(10,"button",10),x.bIt("click",function(){return x.eBV(X),x.Njj(se.onClose())}),x.EFF(11,"X"),x.k0s()(),x.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),x.DNE(15,de,1,3,"qr-code",3)(16,D,2,0,"span",14),x.k0s(),x.DNE(17,n,1,1,"mat-divider",15),x.j41(18,"div",16)(19,"div",17)(20,"h4",18),x.EFF(21,"Amount Requested (Sats)"),x.k0s(),x.j41(22,"span",19),x.EFF(23),x.nI1(24,"number"),x.k0s()(),x.j41(25,"div",17)(26,"h4",18),x.EFF(27,"Valid"),x.k0s(),x.j41(28,"span",19),x.EFF(29),x.k0s()()(),x.nrm(30,"mat-divider",20),x.j41(31,"div",16)(32,"div",21)(33,"h4",18),x.EFF(34,"Description"),x.k0s(),x.j41(35,"span",19),x.EFF(36),x.k0s()()(),x.nrm(37,"mat-divider",20),x.j41(38,"div",16)(39,"div",21)(40,"h4",18),x.EFF(41,"Offer"),x.k0s(),x.j41(42,"span",19),x.EFF(43),x.k0s()()(),x.DNE(44,_,22,8,"div",22),x.j41(45,"div",23)(46,"button",24),x.bIt("click",function(){return x.eBV(X),x.Njj(se.onShowAdvanced())}),x.DNE(47,r,2,0,"p",25)(48,v,2,0,"ng-template",null,0,x.C5r),x.k0s(),x.DNE(50,V,2,1,"button",26)(51,N,2,0,"button",27),x.k0s()()()()()}if(2&Ke){const X=x.sdS(49);x.R7$(),x.Y8G("fxLayoutAlign",null!=se.offer&&se.offer.bolt12&&""!==(null==se.offer?null:se.offer.bolt12)?"center start":"center center")("ngClass",x.eq3(24,ie,se.screenSize===se.screenSizeEnum.XS||se.screenSize===se.screenSizeEnum.SM)),x.R7$(),x.Y8G("ngIf",(null==se.offer?null:se.offer.bolt12)&&""!==(null==se.offer?null:se.offer.bolt12)),x.R7$(),x.Y8G("ngIf",!(null!=se.offer&&se.offer.bolt12)||""===(null==se.offer?null:se.offer.bolt12)),x.R7$(4),x.Y8G("icon",se.faReceipt),x.R7$(2),x.JRh(se.screenSize===se.screenSizeEnum.XS?se.newlyAdded?"Created":"Offer":se.newlyAdded?"Offer Created":"Offer Information"),x.R7$(3),x.Y8G("ngClass",x.eq3(26,ge,se.screenSize===se.screenSizeEnum.XS)),x.R7$(2),x.Y8G("fxLayoutAlign",null!=se.offer&&se.offer.bolt12&&""!==(null==se.offer?null:se.offer.bolt12)?"center start":"center center")("ngClass",x.eq3(28,ie,se.screenSize!==se.screenSizeEnum.XS&&se.screenSize!==se.screenSizeEnum.SM)),x.R7$(),x.Y8G("ngIf",(null==se.offer?null:se.offer.bolt12)&&""!==(null==se.offer?null:se.offer.bolt12)),x.R7$(),x.Y8G("ngIf",!(null!=se.offer&&se.offer.bolt12)||""===(null==se.offer?null:se.offer.bolt12)),x.R7$(),x.Y8G("ngIf",se.screenSize===se.screenSizeEnum.XS||se.screenSize===se.screenSizeEnum.SM),x.R7$(6),x.SpI(" ",null!=se.offerDecoded&&se.offerDecoded.offer_amount_msat&&0!==(null==se.offerDecoded?null:se.offerDecoded.offer_amount_msat)?x.bMT(24,22,(null==se.offerDecoded?null:se.offerDecoded.offer_amount_msat)/1e3):"Open Offer"," "),x.R7$(6),x.SpI(" ",null!=se.offerDecoded&&se.offerDecoded.valid?null!=se.offerDecoded&&se.offerDecoded.valid?"Yes":"No":"N/K"," "),x.R7$(7),x.SpI(" ",null==se.offerDecoded?null:se.offerDecoded.offer_description," "),x.R7$(7),x.JRh(null==se.offer?null:se.offer.bolt12),x.R7$(),x.Y8G("ngIf",se.showAdvanced),x.R7$(),x.Y8G("ngClass",x.l_i(30,ae,!se.showAdvanced,se.showAdvanced)),x.R7$(2),x.Y8G("ngIf",!se.showAdvanced)("ngIfElse",X),x.R7$(3),x.Y8G("ngIf",(null==se.offer?null:se.offer.bolt12)&&""!==(null==se.offer?null:se.offer.bolt12)),x.R7$(),x.Y8G("ngIf",!(null!=se.offer&&se.offer.bolt12)||""===(null==se.offer?null:se.offer.bolt12))}},dependencies:[y.YU,y.bT,F.aY,R.DJ,R.sA,R.UI,z.PW,W.$z,$.m2,$.MM,j.q,Q.Um,J.U,ee.N,y.QX]})}return Ee})()},5428:(Qe,te,g)=>{"use strict";g.d(te,{$6:()=>Ke,$Q:()=>F,As:()=>ne,CK:()=>k,Do:()=>qe,Dq:()=>me,Fd:()=>v,Gy:()=>ee,Hh:()=>S,Hm:()=>r,I6:()=>W,Jx:()=>X,Lc:()=>Te,Lz:()=>Ee,N4:()=>V,N8:()=>Q,NS:()=>x,Qj:()=>ie,Sn:()=>f,T4:()=>_,Tp:()=>R,Uj:()=>L,Uo:()=>y,XT:()=>D,Xx:()=>j,Yi:()=>fe,ZE:()=>J,Zi:()=>de,cR:()=>C,cU:()=>z,fy:()=>m,gZ:()=>mt,iO:()=>se,jJ:()=>$,lg:()=>l,mh:()=>N,sq:()=>ge,uL:()=>w,vL:()=>c,w0:()=>h,x1:()=>d,yn:()=>_e,yp:()=>T,zR:()=>I,zU:()=>ce});var e=g(9640),t=g(4416);const w=(0,e.VP)(t.Uu.UPDATE_API_CALL_STATUS_ECL,(0,e.xk)()),S=(0,e.VP)(t.Uu.RESET_ECL_STORE),l=(0,e.VP)(t.Uu.FETCH_PAGE_SETTINGS_ECL),x=(0,e.VP)(t.Uu.SET_PAGE_SETTINGS_ECL,(0,e.xk)()),f=(0,e.VP)(t.Uu.SAVE_PAGE_SETTINGS_ECL,(0,e.xk)()),I=(0,e.VP)(t.Uu.FETCH_INFO_ECL,(0,e.xk)()),d=(0,e.VP)(t.Uu.SET_INFO_ECL,(0,e.xk)()),T=(0,e.VP)(t.Uu.FETCH_FEES_ECL),y=(0,e.VP)(t.Uu.SET_FEES_ECL,(0,e.xk)()),F=(0,e.VP)(t.Uu.FETCH_CHANNELS_ECL),R=(0,e.VP)(t.Uu.SET_ACTIVE_CHANNELS_ECL,(0,e.xk)()),z=(0,e.VP)(t.Uu.SET_PENDING_CHANNELS_ECL,(0,e.xk)()),W=(0,e.VP)(t.Uu.SET_INACTIVE_CHANNELS_ECL,(0,e.xk)()),$=(0,e.VP)(t.Uu.FETCH_ONCHAIN_BALANCE_ECL),j=(0,e.VP)(t.Uu.SET_ONCHAIN_BALANCE_ECL,(0,e.xk)()),Q=(0,e.VP)(t.Uu.SET_LIGHTNING_BALANCE_ECL,(0,e.xk)()),J=(0,e.VP)(t.Uu.SET_CHANNELS_STATUS_ECL,(0,e.xk)()),ee=(0,e.VP)(t.Uu.FETCH_PEERS_ECL),ie=(0,e.VP)(t.Uu.SET_PEERS_ECL,(0,e.xk)()),ge=(0,e.VP)(t.Uu.SAVE_NEW_PEER_ECL,(0,e.xk)()),Te=((0,e.VP)(t.Uu.NEWLY_ADDED_PEER_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.ADD_PEER_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.DETACH_PEER_ECL,(0,e.xk)())),de=(0,e.VP)(t.Uu.REMOVE_PEER_ECL,(0,e.xk)()),D=(0,e.VP)(t.Uu.GET_NEW_ADDRESS_ECL),c=((0,e.VP)(t.Uu.SET_NEW_ADDRESS_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.SAVE_NEW_CHANNEL_ECL,(0,e.xk)())),m=(0,e.VP)(t.Uu.UPDATE_CHANNEL_ECL,(0,e.xk)()),h=(0,e.VP)(t.Uu.CLOSE_CHANNEL_ECL,(0,e.xk)()),C=(0,e.VP)(t.Uu.REMOVE_CHANNEL_ECL,(0,e.xk)()),k=(0,e.VP)(t.Uu.FETCH_PAYMENTS_ECL,(0,e.xk)()),L=(0,e.VP)(t.Uu.SET_PAYMENTS_ECL,(0,e.xk)()),_=(0,e.VP)(t.Uu.GET_QUERY_ROUTES_ECL,(0,e.xk)()),r=(0,e.VP)(t.Uu.SET_QUERY_ROUTES_ECL,(0,e.xk)()),v=(0,e.VP)(t.Uu.SEND_PAYMENT_ECL,(0,e.xk)()),V=(0,e.VP)(t.Uu.SEND_PAYMENT_STATUS_ECL,(0,e.xk)()),N=(0,e.VP)(t.Uu.FETCH_TRANSACTIONS_ECL,(0,e.xk)()),ne=(0,e.VP)(t.Uu.SET_TRANSACTIONS_ECL,(0,e.xk)()),Ee=(0,e.VP)(t.Uu.SEND_ONCHAIN_FUNDS_ECL,(0,e.xk)()),qe=((0,e.VP)(t.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.FETCH_INVOICES_ECL,(0,e.xk)())),Ke=(0,e.VP)(t.Uu.SET_INVOICES_ECL,(0,e.xk)()),se=(0,e.VP)(t.Uu.CREATE_INVOICE_ECL,(0,e.xk)()),X=(0,e.VP)(t.Uu.ADD_INVOICE_ECL,(0,e.xk)()),me=(0,e.VP)(t.Uu.UPDATE_INVOICE_ECL,(0,e.xk)()),ce=(0,e.VP)(t.Uu.PEER_LOOKUP_ECL,(0,e.xk)()),fe=(0,e.VP)(t.Uu.INVOICE_LOOKUP_ECL,(0,e.xk)()),mt=((0,e.VP)(t.Uu.SET_LOOKUP_ECL,(0,e.xk)()),(0,e.VP)(t.Uu.UPDATE_CHANNEL_STATE_ECL,(0,e.xk)())),_e=(0,e.VP)(t.Uu.UPDATE_RELAYED_PAYMENT_ECL,(0,e.xk)())},3017:(Qe,te,g)=>{"use strict";g.d(te,{B:()=>ae});var e=g(4054),t=g(1413),w=g(7673),S=g(1397),l=g(6977),x=g(6354),f=g(9437),I=g(2462),d=g(4416),T=g(1771),y=g(6439),F=g(5428),R=g(2730),z=g(4438),W=g(1626),$=g(9640),j=g(3202),Q=g(2571),J=g(8570),ee=g(1188),ie=g(7879),ge=g(177);let ae=(()=>{class Me{constructor(de,D,n,c,m,h,C,k,L){this.actions=de,this.httpClient=D,this.store=n,this.sessionService=c,this.commonService=m,this.logger=h,this.router=C,this.wsService=k,this.location=L,this.CHILD_API_URL=d.H$+"/ecl",this.invoicesPageSettings=d.X8.find(_=>"transactions"===_.pageId)?.tables.find(_=>"invoices"===_.tableId),this.paymentsPageSettings=d.X8.find(_=>"transactions"===_.pageId)?.tables.find(_=>"payments"===_.tableId),this.flgInitialized=!1,this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.rawChannelsList=[],this.unSubs=[new t.B,new t.B,new t.B],this.infoFetchECL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_INFO_ECL),(0,S.Z)(_=>(this.flgInitialized=!1,this.store.dispatch((0,T.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,T.mt)({payload:d.MZ.GET_NODE_INFO})),this.store.dispatch((0,F.uL)({payload:{action:"FetchInfo",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.GETINFO_API).pipe((0,l.Q)(this.actions.pipe((0,e.gp)(d.aU.SET_SELECTED_NODE))),(0,x.T)(r=>(this.logger.info(r),this.initializeRemainingData(r,_.payload.loadPage),this.store.dispatch((0,F.uL)({payload:{action:"FetchInfo",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.GET_NODE_INFO})),{type:d.Uu.SET_INFO_ECL,payload:r||{}})),(0,f.W)(r=>{const v=this.commonService.extractErrorCode(r),V=503===v?"Unable to Connect to Eclair Server.":this.commonService.extractErrorMessage(r);return this.router.navigate(["/error"],{state:{errorCode:v,errorMessage:V}}),this.handleErrorWithoutAlert("FetchInfo",d.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:v,error:V}),(0,w.of)({type:d.aU.VOID})})))))),this.fetchFees=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_FEES_ECL),(0,S.Z)(()=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchFees",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.FEES_API+"/fees").pipe((0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchFees",status:d.wn.COMPLETED}})),{type:d.Uu.SET_FEES_ECL,payload:_||{}})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchFees",d.MZ.NO_SPINNER,"Fetching Fees Failed.",_),(0,w.of)({type:d.aU.VOID})))))))),this.fetchPayments=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_PAYMENTS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchPayments",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.FEES_API+"/payments?count="+_.payload.count+"&skip="+_.payload.skip).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"FetchPayments",status:d.wn.COMPLETED}})),{type:d.Uu.SET_PAYMENTS_ECL,payload:r||{}})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchPayments",d.MZ.NO_SPINNER,"Fetching Payments Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.channelsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_CHANNELS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchChannels",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.CHANNELS_API).pipe((0,x.T)(r=>(this.logger.info(r),this.rawChannelsList=r,this.setChannelsAndStatusAndBalances(),this.store.dispatch((0,F.uL)({payload:{action:"FetchChannels",status:d.wn.COMPLETED}})),{type:d.aU.VOID})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchChannels",d.MZ.NO_SPINNER,"Fetching Channels Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.fetchOnchainBalance=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_ONCHAIN_BALANCE_ECL),(0,S.Z)(()=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchOnchainBalance",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.ON_CHAIN_API+"/balance"))),(0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchOnchainBalance",status:d.wn.COMPLETED}})),{type:d.Uu.SET_ONCHAIN_BALANCE_ECL,payload:_||{}})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchOnchainBalance",d.MZ.NO_SPINNER,"Fetching Onchain Balances Failed.",_),(0,w.of)({type:d.aU.VOID}))))),this.peersFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_PEERS_ECL),(0,S.Z)(()=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchPeers",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.PEERS_API).pipe((0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchPeers",status:d.wn.COMPLETED}})),{type:d.Uu.SET_PEERS_ECL,payload:_||[]})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchPeers",d.MZ.NO_SPINNER,"Fetching Peers Failed.",_),(0,w.of)({type:d.aU.VOID})))))))),this.getNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.GET_NEW_ADDRESS_ECL),(0,S.Z)(()=>(this.store.dispatch((0,T.mt)({payload:d.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+d.rl.ON_CHAIN_API).pipe((0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,T.y0)({payload:d.MZ.GENERATE_NEW_ADDRESS})),{type:d.Uu.SET_NEW_ADDRESS_ECL,payload:_})),(0,f.W)(_=>(this.handleErrorWithAlert("GetNewAddress",d.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+d.rl.ON_CHAIN_API,_),(0,w.of)({type:d.aU.VOID})))))))),this.setNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SET_NEW_ADDRESS_ECL),(0,x.T)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.saveNewPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SAVE_NEW_PEER_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.CONNECT_PEER})),this.store.dispatch((0,F.uL)({payload:{action:"SaveNewPeer",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.PEERS_API+(_.payload.id.includes("@")?"?uri=":"?nodeId=")+_.payload.id,{}).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"SaveNewPeer",status:d.wn.COMPLETED}})),r=r||[],this.store.dispatch((0,T.y0)({payload:d.MZ.CONNECT_PEER})),this.store.dispatch((0,F.Qj)({payload:r})),{type:d.Uu.NEWLY_ADDED_PEER_ECL,payload:{peer:r.find(v=>v.nodeId===(_.payload.id.includes("@")?_.payload.id.substring(0,_.payload.id.indexOf("@")):_.payload.id))}})),(0,f.W)(r=>(this.handleErrorWithoutAlert("SaveNewPeer",d.MZ.CONNECT_PEER,"Peer Connection Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.detachPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.DETACH_PEER_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+d.rl.PEERS_API+"/"+_.payload.nodeId).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,T.y0)({payload:d.MZ.DISCONNECT_PEER})),this.store.dispatch((0,T.UI)({payload:"Disconnecting Peer!"})),{type:d.Uu.REMOVE_PEER_ECL,payload:{nodeId:_.payload.nodeId}})),(0,f.W)(r=>(this.handleErrorWithAlert("DisconnectPeer",d.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+d.rl.PEERS_API+"/"+_.payload.nodeId,r),(0,w.of)({type:d.aU.VOID})))))))),this.openNewChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SAVE_NEW_CHANNEL_ECL),(0,S.Z)(_=>{this.store.dispatch((0,T.mt)({payload:d.MZ.OPEN_CHANNEL})),this.store.dispatch((0,F.uL)({payload:{action:"SaveNewChannel",status:d.wn.INITIATED}}));const r={nodeId:_.payload.nodeId,fundingSatoshis:_.payload.amount,announceChannel:!_.payload.private};return _.payload.feeRate&&_.payload.feeRate>0&&(r.fundingFeerateSatByte=_.payload.feeRate),this.httpClient.post(this.CHILD_API_URL+d.rl.CHANNELS_API,r).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,F.uL)({payload:{action:"SaveNewChannel",status:d.wn.COMPLETED}})),this.store.dispatch((0,F.Gy)()),this.store.dispatch((0,F.jJ)()),this.store.dispatch((0,T.y0)({payload:d.MZ.OPEN_CHANNEL})),this.store.dispatch((0,T.UI)({payload:"Channel Added Successfully!"})),{type:d.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,f.W)(v=>(this.handleErrorWithoutAlert("SaveNewChannel",d.MZ.OPEN_CHANNEL,"Opening Channel Failed.",v),(0,w.of)({type:d.aU.VOID}))))}))),this.updateChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.UPDATE_CHANNEL_ECL),(0,S.Z)(_=>{this.store.dispatch((0,T.mt)({payload:d.MZ.UPDATE_CHAN_POLICY}));let r="?feeBaseMsat="+_.payload.baseFeeMsat+"&feeProportionalMillionths="+_.payload.feeRate;return r=_.payload.nodeIds?r+"&nodeIds="+_.payload.nodeIds:_.payload.nodeId?r+"&nodeId="+_.payload.nodeId:_.payload.channelIds?r+"&channelIds="+_.payload.channelIds:r+"&channelId="+_.payload.channelId,this.httpClient.post(this.CHILD_API_URL+d.rl.CHANNELS_API+"/updateRelayFee"+r,{}).pipe((0,x.T)(v=>(this.logger.info(v),this.store.dispatch((0,T.y0)({payload:d.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,T.UI)(_.payload.nodeIds||_.payload.channelIds?{payload:"Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:d.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,f.W)(v=>(this.handleErrorWithAlert("UpdateChannels",d.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+d.rl.CHANNELS_API,v),(0,w.of)({type:d.aU.VOID}))))}))),this.closeChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.CLOSE_CHANNEL_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:_.payload.force?d.MZ.FORCE_CLOSE_CHANNEL:d.MZ.CLOSE_CHANNEL})),this.httpClient.delete(this.CHILD_API_URL+d.rl.CHANNELS_API+"?channelId="+_.payload.channelId+"&force="+_.payload.force).pipe((0,x.T)(r=>(this.logger.info(r),setTimeout(()=>{this.store.dispatch((0,T.y0)({payload:_.payload.force?d.MZ.FORCE_CLOSE_CHANNEL:d.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,T.UI)({payload:_.payload.force?"Channel Force Closed Successfully!":"Channel Closed Successfully!"}))},2e3),{type:d.aU.VOID})),(0,f.W)(r=>(this.handleErrorWithAlert("CloseChannel",_.payload.force?d.MZ.FORCE_CLOSE_CHANNEL:d.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+d.rl.CHANNELS_API,r),(0,w.of)({type:d.aU.VOID})))))))),this.queryRoutesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.GET_QUERY_ROUTES_ECL),(0,S.Z)(_=>this.httpClient.get(this.CHILD_API_URL+d.rl.PAYMENTS_API+"/route?nodeId="+_.payload.nodeId+"&amountMsat="+_.payload.amount).pipe((0,x.T)(r=>(this.logger.info(r),{type:d.Uu.SET_QUERY_ROUTES_ECL,payload:r})),(0,f.W)(r=>(this.store.dispatch((0,F.Hm)({payload:[]})),this.handleErrorWithAlert("GetQueryRoutes",d.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+d.rl.PAYMENTS_API+"/route?nodeId="+_.payload.nodeId+"&amountMsat="+_.payload.amount,r),(0,w.of)({type:d.aU.VOID}))))))),this.setQueryRoutes=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SET_QUERY_ROUTES_ECL),(0,x.T)(_=>_.payload)),{dispatch:!1}),this.sendPayment=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SEND_PAYMENT_ECL),(0,S.Z)(_=>(this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.store.dispatch((0,T.mt)({payload:d.MZ.SEND_PAYMENT})),this.store.dispatch((0,F.uL)({payload:{action:"SendPayment",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.PAYMENTS_API,_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.latestPaymentRes=r,setTimeout(()=>{this.flgReceivedPaymentUpdateFromWS||this.handleSendPaymentStatus("Payment Submitted!")},3e3),{type:d.aU.VOID})),(0,f.W)(r=>(this.logger.error("Error: "+JSON.stringify(r)),_.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",d.MZ.SEND_PAYMENT,"Send Payment Failed.",r):this.handleErrorWithAlert("SendPayment",d.MZ.SEND_PAYMENT,"Send Payment Failed",this.CHILD_API_URL+d.rl.PAYMENTS_API,r),(0,w.of)({type:d.aU.VOID})))))))),this.transactionsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_TRANSACTIONS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchTransactions",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.ON_CHAIN_API+"/transactions?count="+_.payload.count+"&skip="+_.payload.skip))),(0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchTransactions",status:d.wn.COMPLETED}})),{type:d.Uu.SET_TRANSACTIONS_ECL,payload:_||[]})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchTransactions",d.MZ.NO_SPINNER,"Fetching Transactions Failed.",_),(0,w.of)({type:d.aU.VOID}))))),this.SendOnchainFunds=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SEND_ONCHAIN_FUNDS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.SEND_FUNDS})),this.store.dispatch((0,F.uL)({payload:{action:"SendOnchainFunds",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.ON_CHAIN_API,_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"SendOnchainFunds",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.SEND_FUNDS})),this.store.dispatch((0,F.jJ)()),{type:d.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("SendOnchainFunds",d.MZ.SEND_FUNDS,"Sending Fund Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.createInvoice=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.CREATE_INVOICE_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.CREATE_INVOICE})),this.store.dispatch((0,F.uL)({payload:{action:"CreateInvoice",status:d.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+d.rl.INVOICES_API,_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"CreateInvoice",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.CREATE_INVOICE})),r.timestamp=Math.round((new Date).getTime()/1e3),r.expiresAt=Math.round(r.timestamp+_.payload.expireIn),r.description=_.payload.description,r.status="unpaid",setTimeout(()=>{this.store.dispatch((0,T.xO)({payload:{data:{invoice:r,newlyAdded:!0,component:y.Z}}}))},200),{type:d.Uu.ADD_INVOICE_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("CreateInvoice",d.MZ.CREATE_INVOICE,"Create Invoice Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.invoicesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_INVOICES_ECL),(0,S.Z)(_=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchInvoices",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.INVOICES_API+"?count="+_.payload.count+"&skip="+_.payload.skip).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"FetchInvoices",status:d.wn.COMPLETED}})),{type:d.Uu.SET_INVOICES_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("FetchInvoices",d.MZ.NO_SPINNER,"Fetching Invoices Failed.",r),(0,w.of)({type:d.aU.VOID})))))))),this.peerLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.PEER_LOOKUP_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.SEARCHING_NODE})),this.store.dispatch((0,F.uL)({payload:{action:"Lookup",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.NETWORK_API+"/nodes/"+_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"Lookup",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.SEARCHING_NODE})),{type:d.Uu.SET_LOOKUP_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithAlert("Lookup",d.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+d.rl.NETWORK_API+"/nodes/"+_.payload,r),(0,w.of)({type:d.aU.VOID})))))))),this.invoiceLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.INVOICE_LOOKUP_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,F.uL)({payload:{action:"Lookup",status:d.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+d.rl.INVOICES_API+"/"+_.payload).pipe((0,x.T)(r=>(this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"Lookup",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,F.Dq)({payload:r})),{type:d.Uu.SET_LOOKUP_ECL,payload:r})),(0,f.W)(r=>(this.handleErrorWithoutAlert("Lookup",d.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",r),this.store.dispatch((0,T.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,w.of)({type:d.aU.VOID})))))))),this.setLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SET_LOOKUP_ECL),(0,x.T)(_=>(this.logger.info(_.payload),_.payload))),{dispatch:!1}),this.pageSettingsFetchCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.FETCH_PAGE_SETTINGS_ECL),(0,S.Z)(()=>(this.store.dispatch((0,F.uL)({payload:{action:"FetchPageSettings",status:d.wn.INITIATED}})),this.httpClient.get(d.rl.PAGE_SETTINGS_API).pipe((0,x.T)(_=>(this.logger.info(_),this.store.dispatch((0,F.uL)({payload:{action:"FetchPageSettings",status:d.wn.COMPLETED}})),this.invoicesPageSettings=_&&Object.keys(_).length>0?_.find(r=>"transactions"===r.pageId)?.tables.find(r=>"invoices"===r.tableId):d.X8.find(r=>"transactions"===r.pageId)?.tables.find(r=>"invoices"===r.tableId),this.paymentsPageSettings=_&&Object.keys(_).length>0?_.find(r=>"transactions"===r.pageId)?.tables.find(r=>"payments"===r.tableId):d.X8.find(r=>"transactions"===r.pageId)?.tables.find(r=>"payments"===r.tableId),{type:d.Uu.SET_PAGE_SETTINGS_ECL,payload:_||[]})),(0,f.W)(_=>(this.handleErrorWithoutAlert("FetchPageSettings",d.MZ.NO_SPINNER,"Fetching Page Settings Failed.",_),(0,w.of)({type:d.aU.VOID})))))))),this.savePageSettingsCL=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(d.Uu.SAVE_PAGE_SETTINGS_ECL),(0,S.Z)(_=>(this.store.dispatch((0,T.mt)({payload:d.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,F.uL)({payload:{action:"SavePageSettings",status:d.wn.INITIATED}})),this.httpClient.post(d.rl.PAGE_SETTINGS_API,_.payload).pipe((0,x.T)(r=>{this.logger.info(r),this.store.dispatch((0,F.uL)({payload:{action:"SavePageSettings",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,T.UI)({payload:"Page Layout Updated Successfully!"}));const v=(r.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId)||d.X8.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId))?.recordsPerPage,V=(r.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId)||d.X8.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId))?.recordsPerPage;return this.invoicesPageSettings&&v!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=v),this.paymentsPageSettings&&V!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=V),{type:d.Uu.SET_PAGE_SETTINGS_ECL,payload:r||[]}}),(0,f.W)(r=>(this.handleErrorWithAlert("SavePageSettings",d.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",d.rl.PAGE_SETTINGS_API,r),(0,w.of)({type:d.aU.VOID})))))))),this.handleSendPaymentStatus=_=>{this.store.dispatch((0,F.uL)({payload:{action:"SendPayment",status:d.wn.COMPLETED}})),this.store.dispatch((0,T.y0)({payload:d.MZ.SEND_PAYMENT})),this.store.dispatch((0,F.N4)({payload:this.latestPaymentRes})),this.store.dispatch((0,T.UI)({payload:_}))},this.store.select(R.ru).pipe((0,l.Q)(this.unSubs[0])).subscribe(_=>{_.FetchInfo.status!==d.wn.COMPLETED&&_.FetchInfo.status!==d.wn.ERROR||_.FetchFees.status!==d.wn.COMPLETED&&_.FetchFees.status!==d.wn.ERROR||_.FetchOnchainBalance.status!==d.wn.COMPLETED&&_.FetchOnchainBalance.status!==d.wn.ERROR||_.FetchChannels.status!==d.wn.COMPLETED&&_.FetchChannels.status!==d.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,T.y0)({payload:d.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.eclWSMessages.pipe((0,l.Q)(this.unSubs[1])).subscribe(_=>{this.logger.info("Received new message from the service: "+JSON.stringify(_));let r="";if(_)switch(_.type){case d.ck.PAYMENT_SENT:_&&_.id&&this.latestPaymentRes===_.id&&(this.flgReceivedPaymentUpdateFromWS=!0,r="Payment Sent: "+(_.paymentHash?"with payment hash "+_.paymentHash:JSON.stringify(_)),this.handleSendPaymentStatus(r));break;case d.ck.PAYMENT_FAILED:_&&_.id&&this.latestPaymentRes===_.id&&(this.flgReceivedPaymentUpdateFromWS=!0,r="Payment Failed: "+(_.failures&&_.failures.length&&_.failures.length>0&&_.failures[0].t?_.failures[0].t:_.failures&&_.failures.length&&_.failures.length>0&&_.failures[0].e&&_.failures[0].e.failureMessage?_.failures[0].e.failureMessage:JSON.stringify(_)),this.handleSendPaymentStatus(r));break;case d.ck.PAYMENT_RECEIVED:this.store.dispatch((0,F.Dq)({payload:_}));break;case d.ck.PAYMENT_RELAYED:delete _.source,_.amountIn=Math.round((_.amountIn||0)/1e3),_.amountOut=Math.round((_.amountOut||0)/1e3),_.timestamp.unix&&(_.timestamp=1e3*_.timestamp.unix),this.store.dispatch((0,F.yn)({payload:_}));break;case d.ck.CHANNEL_STATE_CHANGED:"NORMAL"===_.currentState||"CLOSED"===_.currentState?(this.rawChannelsList=this.rawChannelsList?.map(v=>(v.channelId===_.channelId&&v.nodeId===_.remoteNodeId&&(v.state=_.currentState),v)),this.setChannelsAndStatusAndBalances()):this.store.dispatch((0,F.gZ)({payload:_}));break;default:this.logger.info("Received Event from WS: "+JSON.stringify(_))}})}setChannelsAndStatusAndBalances(){let de=0,D=0,n=0,c={localBalance:0,remoteBalance:0},m=[];const h=[],C=[],k={active:{channels:0,capacity:0},inactive:{channels:0,capacity:0},pending:{channels:0,capacity:0}};this.rawChannelsList.forEach((L,_)=>{L&&("NORMAL"===L.state?(de=(L.toLocal||0)+(L.toRemote||0),D+=L.toLocal||0,n+=L.toRemote||0,L.balancedness=0===de?1:+(1-Math.abs(((L.toLocal||0)-(L.toRemote||0))/de)).toFixed(3),m.push(L),k.active.channels=k.active.channels+1,k.active.capacity=k.active.capacity+(L.toLocal||0)):L.state?.includes("WAIT")||L.state?.includes("CLOSING")||L.state?.includes("SYNCING")?(L.state=L.state?.replace(/_/g," "),h.push(L),k.pending.channels=k.pending.channels+1,k.pending.capacity=k.pending.capacity+(L.toLocal||0)):(L.state=L.state?.replace(/_/g," "),C.push(L),k.inactive.channels=k.inactive.channels+1,k.inactive.capacity=k.inactive.capacity+(L.toLocal||0)))}),c={localBalance:D,remoteBalance:n},m=this.commonService.sortDescByKey(m,"balancedness"),this.logger.info("Active Channels: "+JSON.stringify(m)),this.logger.info("Pending Channels: "+JSON.stringify(h)),this.logger.info("Inactive Channels: "+JSON.stringify(C)),this.logger.info("Lightning Balances: "+JSON.stringify(c)),this.logger.info("Channels Status: "+JSON.stringify(k)),this.logger.info("Channel, status and balances: "+JSON.stringify({active:m,pending:h,inactive:C,balances:c,status:k})),this.store.dispatch((0,F.Tp)({payload:m})),this.store.dispatch((0,F.cU)({payload:h})),this.store.dispatch((0,F.I6)({payload:C})),this.store.dispatch((0,F.N8)({payload:c})),this.store.dispatch((0,F.ZE)({payload:k}))}initializeRemainingData(de,D){this.sessionService.setItem("eclUnlocked","true");const n={identity_pubkey:de.nodeId,alias:de.alias,testnet:"testnet"===de.network,chains:de.publicAddresses,uris:de.uris,version:de.version,numberOfPendingChannels:0};this.store.dispatch((0,T.mt)({payload:d.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,T.Fl)({payload:n}));let c=this.location.path();c.includes("/lnd/")?c=c?.replace("/lnd/","/ecl/"):c.includes("/cln/")&&(c=c?.replace("/cln/","/ecl/")),(c.includes("/login")||c.includes("/error")||""===c||"HOME"===D||c.includes("?access-key="))&&(c="/ecl/home"),this.router.navigate([c]),this.store.dispatch((0,F.$Q)()),this.store.dispatch((0,F.yp)()),this.store.dispatch((0,F.jJ)()),this.store.dispatch((0,F.Gy)())}handleErrorWithoutAlert(de,D,n,c){this.logger.error("ERROR IN: "+de+"\n"+JSON.stringify(c)),401===c.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,T.Jh)()),this.store.dispatch((0,T.ri)({payload:"Authentication Failed: "+JSON.stringify(c.error)}))):(this.store.dispatch((0,T.y0)({payload:D})),this.store.dispatch((0,F.uL)({payload:{action:de,status:d.wn.ERROR,statusCode:c.status.toString(),message:this.commonService.extractErrorMessage(c,n)}})))}handleErrorWithAlert(de,D,n,c,m){if(this.logger.error(m),401===m.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,T.Jh)()),this.store.dispatch((0,T.ri)({payload:"Authentication Failed: "+JSON.stringify(m.error)}));else{this.store.dispatch((0,T.y0)({payload:D}));const h=this.commonService.extractErrorMessage(m);this.store.dispatch((0,T.xO)({payload:{data:{type:"ERROR",alertTitle:n,message:{code:m.status,message:h,URL:c},component:I.f}}})),this.store.dispatch((0,F.uL)({payload:{action:de,status:d.wn.ERROR,statusCode:m.status.toString(),message:h,URL:c}}))}}ngOnDestroy(){this.unSubs.forEach(de=>{de.next(null),de.complete()})}static#e=this.\u0275fac=function(D){return new(D||Me)(z.KVO(e.En),z.KVO(W.Qq),z.KVO($.il),z.KVO(j.Q),z.KVO(Q.h),z.KVO(J.gP),z.KVO(ee.Ix),z.KVO(ie.I),z.KVO(ge.aZ))};static#t=this.\u0275prov=z.jDH({token:Me,factory:Me.\u0275fac})}return Me})()},2730:(Qe,te,g)=>{"use strict";g.d(te,{DW:()=>j,KT:()=>I,Ou:()=>R,b_:()=>l,gN:()=>z,jZ:()=>w,oR:()=>d,os:()=>$,p3:()=>S,rN:()=>W,ru:()=>f});var e=g(9640);const t=(0,e.UX)("ecl"),w=(0,e.Mz)(t,Q=>({pageSettings:Q.pageSettings,apiCallStatus:Q.apisCallStatus.FetchPageSettings})),S=(0,e.Mz)(t,Q=>Q.information),l=(0,e.Mz)(t,Q=>({information:Q.information,apiCallStatus:Q.apisCallStatus.FetchInfo})),f=((0,e.Mz)(t,Q=>Q.apisCallStatus.FetchInfo),(0,e.Mz)(t,Q=>Q.apisCallStatus)),I=(0,e.Mz)(t,Q=>({payments:Q.payments,apiCallStatus:Q.apisCallStatus.FetchPayments})),d=(0,e.Mz)(t,Q=>({fees:Q.fees,apiCallStatus:Q.apisCallStatus.FetchFees})),R=((0,e.Mz)(t,Q=>({activeChannels:Q.activeChannels,apiCallStatus:Q.apisCallStatus.FetchChannels})),(0,e.Mz)(t,Q=>({pendingChannels:Q.pendingChannels,apiCallStatus:Q.apisCallStatus.FetchChannels})),(0,e.Mz)(t,Q=>({inactiveChannels:Q.inactiveChannels,apiCallStatus:Q.apisCallStatus.FetchChannels})),(0,e.Mz)(t,Q=>({activeChannels:Q.activeChannels,pendingChannels:Q.pendingChannels,inactiveChannels:Q.inactiveChannels,lightningBalance:Q.lightningBalance,channelsStatus:Q.channelsStatus,apiCallStatus:Q.apisCallStatus.FetchChannels}))),z=(0,e.Mz)(t,Q=>({transactions:Q.transactions,apiCallStatus:Q.apisCallStatus.FetchTransactions})),W=(0,e.Mz)(t,Q=>({invoices:Q.invoices,apiCallStatus:Q.apisCallStatus.FetchInvoices})),$=(0,e.Mz)(t,Q=>({peers:Q.peers,apiCallStatus:Q.apisCallStatus.FetchPeers})),j=(0,e.Mz)(t,Q=>({onchainBalance:Q.onchainBalance,apiCallStatus:Q.apisCallStatus.FetchOnchainBalance}))},6439:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>se});var e=g(5351),t=g(5383),w=g(1413),S=g(6977),l=g(4416),x=g(2730),f=g(4438),I=g(8570),d=g(2571),T=g(5416),y=g(9640),F=g(177),R=g(60),z=g(2920),W=g(6038),$=g(8834),j=g(5596),Q=g(1997),J=g(9183),ee=g(8288),ie=g(9157),ge=g(9587);const ae=X=>({"display-none":X}),Me=X=>({"xs-scroll-y":X}),Te=(X,me)=>({"mt-2":X,"mt-1":me}),de=()=>[];function D(X,me){if(1&X&&f.nrm(0,"qr-code",29),2&X){const ce=f.XpG();f.Y8G("value",null==ce.invoice?null:ce.invoice.serialized)("size",ce.qrWidth)("errorCorrectionLevel","L")}}function n(X,me){1&X&&(f.j41(0,"span",30),f.EFF(1,"N/A"),f.k0s())}function c(X,me){if(1&X&&f.nrm(0,"qr-code",29),2&X){const ce=f.XpG();f.Y8G("value",null==ce.invoice?null:ce.invoice.serialized)("size",ce.qrWidth)("errorCorrectionLevel","L")}}function m(X,me){1&X&&(f.j41(0,"span",31),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function h(X,me){1&X&&f.nrm(0,"mat-divider",32),2&X&&f.Y8G("inset",!0)}function C(X,me){1&X&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function k(X,me){1&X&&f.nrm(0,"span",38)}function L(X,me){if(1&X&&(f.j41(0,"div",34)(1,"div",35)(2,"span",36),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,k,1,0,"span",37),f.k0s()()),2&X){const ce=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,null==ce.invoice?null:ce.invoice.amountSettled)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,de).constructor(35))}}function _(X,me){if(1&X&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&X){const ce=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,null==ce.invoice?null:ce.invoice.amountSettled)," Sats")}}function r(X,me){if(1&X&&(f.qex(0),f.DNE(1,L,6,5,"div",33)(2,_,3,3,"div",20),f.bVm()),2&X){const ce=f.XpG();f.R7$(),f.Y8G("ngIf",ce.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!ce.flgInvoicePaid)}}function v(X,me){1&X&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function V(X,me){1&X&&f.nrm(0,"mat-spinner",40),2&X&&f.Y8G("diameter",20)}function N(X,me){if(1&X&&(f.qex(0),f.DNE(1,v,2,0,"span",20)(2,V,1,1,"mat-spinner",39),f.bVm()),2&X){const ce=f.XpG();f.R7$(),f.Y8G("ngIf","unpaid"!==(null==ce.invoice?null:ce.invoice.status)||!ce.flgVersionCompatible),f.R7$(),f.Y8G("ngIf","unpaid"===(null==ce.invoice?null:ce.invoice.status)&&ce.flgVersionCompatible)}}function ne(X,me){if(1&X&&(f.j41(0,"div"),f.nrm(1,"mat-divider",21),f.j41(2,"div",16)(3,"div",41)(4,"h4",18),f.EFF(5,"Date Expiry"),f.k0s(),f.j41(6,"span",19),f.EFF(7),f.nI1(8,"date"),f.k0s()(),f.j41(9,"div",42)(10,"h4",18),f.EFF(11,"Date Settled"),f.k0s(),f.j41(12,"span",22),f.EFF(13),f.nI1(14,"date"),f.k0s()()(),f.nrm(15,"mat-divider",21),f.j41(16,"div",16)(17,"div",23)(18,"h4",18),f.EFF(19,"Payment Hash"),f.k0s(),f.j41(20,"span",22),f.EFF(21),f.k0s()()(),f.nrm(22,"mat-divider",21),f.j41(23,"div",16)(24,"div",23)(25,"h4",18),f.EFF(26,"Node ID"),f.k0s(),f.j41(27,"span",22),f.EFF(28),f.k0s()()(),f.nrm(29,"mat-divider",21),f.k0s()),2&X){const ce=f.XpG();f.R7$(7),f.JRh(f.i5U(8,4,1e3*(null==ce.invoice?null:ce.invoice.expiresAt),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.i5U(14,7,1e3*(null==ce.invoice?null:ce.invoice.receivedAt),"dd/MMM/y HH:mm")),f.R7$(8),f.JRh(null==ce.invoice?null:ce.invoice.paymentHash),f.R7$(7),f.JRh(null==ce.invoice?null:ce.invoice.nodeId)}}function Ee(X,me){1&X&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function ze(X,me){1&X&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function qe(X,me){if(1&X){const ce=f.RV6();f.j41(0,"button",43),f.bIt("copied",function(ke){f.eBV(ce);const mt=f.XpG();return f.Njj(mt.onCopyPayment(ke))}),f.EFF(1,"Copy Invoice"),f.k0s()}if(2&X){const ce=f.XpG();f.Y8G("payload",null==ce.invoice?null:ce.invoice.serialized)}}function Ke(X,me){if(1&X){const ce=f.RV6();f.j41(0,"button",44),f.bIt("click",function(){f.eBV(ce);const ke=f.XpG();return f.Njj(ke.onClose())}),f.EFF(1,"OK"),f.k0s()}}let se=(()=>{class X{constructor(ce,fe,ke,mt,_e,be){this.dialogRef=ce,this.data=fe,this.logger=ke,this.commonService=mt,this.snackBar=_e,this.store=be,this.faReceipt=t.Mf0,this.faExclamationTriangle=t.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B]}ngOnInit(){this.invoice=this.data.invoice,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.store.select(x.p3).pipe((0,S.Q)(this.unSubs[0])).subscribe(ce=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(ce.version,"0.5.0")}),this.store.select(x.rN).pipe((0,S.Q)(this.unSubs[1])).subscribe(ce=>{const fe=this.invoice.status,mt=(ce.invoices&&ce.invoices.length>0?ce.invoices:[])?.find(_e=>_e.paymentHash===this.invoice.paymentHash)||null;mt&&(this.invoice=mt),fe!==this.invoice.status&&"received"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(ce)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(ce){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+ce)}ngOnDestroy(){this.unSubs.forEach(ce=>{ce.next(null),ce.complete()})}static#e=this.\u0275fac=function(fe){return new(fe||X)(f.rXU(e.CP),f.rXU(e.Vh),f.rXU(I.gP),f.rXU(d.h),f.rXU(T.UG),f.rXU(y.il))};static#t=this.\u0275cmp=f.VBU({type:X,selectors:[["rtl-ecl-invoice-information"]],decls:68,vars:42,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"w-100","my-1"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],["fxFlex","40"],["fxFlex","60"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(fe,ke){if(1&fe){const mt=f.RV6();f.j41(0,"div",1)(1,"div",2),f.DNE(2,D,1,3,"qr-code",3)(3,n,2,0,"span",4),f.k0s(),f.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),f.nrm(7,"fa-icon",8),f.j41(8,"span",9),f.EFF(9),f.k0s()(),f.j41(10,"button",10),f.bIt("click",function(){return f.eBV(mt),f.Njj(ke.onClose())}),f.EFF(11,"X"),f.k0s()(),f.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),f.DNE(15,c,1,3,"qr-code",3)(16,m,2,0,"span",14),f.k0s(),f.DNE(17,h,1,1,"mat-divider",15),f.j41(18,"div",16)(19,"div",17)(20,"h4",18),f.EFF(21,"Amount Requested"),f.k0s(),f.j41(22,"span",19),f.EFF(23),f.nI1(24,"number"),f.DNE(25,C,2,0,"ng-container",20),f.k0s()(),f.j41(26,"div",17)(27,"h4",18),f.EFF(28,"Amount Settled"),f.k0s(),f.j41(29,"span",19),f.DNE(30,r,3,2,"ng-container",20)(31,N,3,2,"ng-container",20),f.k0s()()(),f.nrm(32,"mat-divider",21),f.j41(33,"div",16)(34,"div",17)(35,"h4",18),f.EFF(36,"Date Created"),f.k0s(),f.j41(37,"span",22),f.EFF(38),f.nI1(39,"date"),f.k0s()(),f.j41(40,"div",17)(41,"h4",18),f.EFF(42,"Status"),f.k0s(),f.j41(43,"span",22),f.EFF(44),f.nI1(45,"titlecase"),f.k0s()()(),f.nrm(46,"mat-divider",21),f.j41(47,"div",16)(48,"div",23)(49,"h4",18),f.EFF(50,"Description"),f.k0s(),f.j41(51,"span",19),f.EFF(52),f.k0s()()(),f.nrm(53,"mat-divider",21),f.j41(54,"div",16)(55,"div",23)(56,"h4",18),f.EFF(57,"Invoice"),f.k0s(),f.j41(58,"span",22),f.EFF(59),f.k0s()()(),f.DNE(60,ne,30,10,"div",20),f.j41(61,"div",24)(62,"button",25),f.bIt("click",function(){return f.eBV(mt),f.Njj(ke.onShowAdvanced())}),f.DNE(63,Ee,2,0,"p",26)(64,ze,2,0,"ng-template",null,0,f.C5r),f.k0s(),f.DNE(66,qe,2,1,"button",27)(67,Ke,2,0,"button",28),f.k0s()()()()()}if(2&fe){const mt=f.sdS(65);f.R7$(),f.Y8G("fxLayoutAlign",null!=ke.invoice&&ke.invoice.serialized&&""!==(null==ke.invoice?null:ke.invoice.serialized)?"center start":"center center")("ngClass",f.eq3(33,ae,ke.screenSize===ke.screenSizeEnum.XS||ke.screenSize===ke.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==ke.invoice?null:ke.invoice.serialized)&&""!==(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.serialized)||""===(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(4),f.Y8G("icon",ke.faReceipt),f.R7$(2),f.JRh(ke.screenSize===ke.screenSizeEnum.XS?ke.newlyAdded?"Created":"Invoice":ke.newlyAdded?"Invoice Created":"Invoice Information"),f.R7$(3),f.Y8G("ngClass",f.eq3(35,Me,ke.screenSize===ke.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=ke.invoice&&ke.invoice.serialized&&""!==(null==ke.invoice?null:ke.invoice.serialized)?"center start":"center center")("ngClass",f.eq3(37,ae,ke.screenSize!==ke.screenSizeEnum.XS&&ke.screenSize!==ke.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==ke.invoice?null:ke.invoice.serialized)&&""!==(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.serialized)||""===(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(),f.Y8G("ngIf",ke.screenSize===ke.screenSizeEnum.XS||ke.screenSize===ke.screenSizeEnum.SM),f.R7$(6),f.SpI("",f.bMT(24,26,(null==ke.invoice?null:ke.invoice.amount)||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.amount)||"0"===(null==ke.invoice?null:ke.invoice.amount)),f.R7$(5),f.Y8G("ngIf",null==ke.invoice?null:ke.invoice.amountSettled),f.R7$(),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.amountSettled)),f.R7$(7),f.JRh(f.i5U(39,28,1e3*(null==ke.invoice?null:ke.invoice.timestamp),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.bMT(45,31,null==ke.invoice?null:ke.invoice.status)),f.R7$(8),f.JRh((null==ke.invoice?null:ke.invoice.description)||"-"),f.R7$(7),f.JRh((null==ke.invoice?null:ke.invoice.serialized)||"N/A"),f.R7$(),f.Y8G("ngIf",ke.showAdvanced),f.R7$(),f.Y8G("ngClass",f.l_i(39,Te,!ke.showAdvanced,ke.showAdvanced)),f.R7$(2),f.Y8G("ngIf",!ke.showAdvanced)("ngIfElse",mt),f.R7$(3),f.Y8G("ngIf",(null==ke.invoice?null:ke.invoice.serialized)&&""!==(null==ke.invoice?null:ke.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=ke.invoice&&ke.invoice.serialized)||""===(null==ke.invoice?null:ke.invoice.serialized))}},dependencies:[F.YU,F.Sq,F.bT,R.aY,z.DJ,z.sA,z.UI,W.PW,$.$z,j.m2,j.MM,Q.q,J.LG,ee.Um,ie.U,ge.N,F.QX,F.PV,F.vh]})}return X})()},190:(Qe,te,g)=>{"use strict";g.d(te,{$6:()=>se,$J:()=>ne,$Q:()=>de,As:()=>fe,Br:()=>d,CK:()=>_e,DI:()=>ae,DY:()=>ge,Do:()=>Ke,Dq:()=>X,Fd:()=>pe,GZ:()=>Xe,Gy:()=>y,H2:()=>r,Hm:()=>zt,J9:()=>Te,Jx:()=>J,L:()=>v,Lf:()=>ze,NS:()=>f,O8:()=>mt,Qj:()=>F,SM:()=>ke,Sn:()=>I,T4:()=>$t,Uj:()=>be,Uo:()=>ie,VK:()=>j,WE:()=>Ye,X9:()=>x,XT:()=>pt,Yi:()=>Nt,Zi:()=>$,_$:()=>me,aB:()=>ye,ar:()=>n,b1:()=>St,cR:()=>_,cU:()=>c,dv:()=>D,e8:()=>w,ed:()=>W,fy:()=>C,ij:()=>Yt,jk:()=>Et,kv:()=>tt,lg:()=>l,mh:()=>ce,oX:()=>Ie,p1:()=>S,pL:()=>m,sq:()=>R,t0:()=>_t,t5:()=>Ee,tG:()=>Jt,tf:()=>Me,uK:()=>oe,vL:()=>k,w0:()=>L,x1:()=>T,yp:()=>ee,z2:()=>h,zU:()=>rt});var e=g(9640),t=g(4416);const w=(0,e.VP)(t.QP.UPDATE_API_CALL_STATUS_LND,(0,e.xk)()),S=(0,e.VP)(t.QP.RESET_LND_STORE),l=(0,e.VP)(t.QP.FETCH_PAGE_SETTINGS_LND),x=(0,e.VP)(t.QP.UPDATE_SELECTED_NODE_OPTIONS),f=(0,e.VP)(t.QP.SET_PAGE_SETTINGS_LND,(0,e.xk)()),I=(0,e.VP)(t.QP.SAVE_PAGE_SETTINGS_LND,(0,e.xk)()),d=(0,e.VP)(t.QP.FETCH_INFO_LND,(0,e.xk)()),T=(0,e.VP)(t.QP.SET_INFO_LND,(0,e.xk)()),y=(0,e.VP)(t.QP.FETCH_PEERS_LND),F=(0,e.VP)(t.QP.SET_PEERS_LND,(0,e.xk)()),R=(0,e.VP)(t.QP.SAVE_NEW_PEER_LND,(0,e.xk)()),W=((0,e.VP)(t.QP.NEWLY_ADDED_PEER_LND,(0,e.xk)()),(0,e.VP)(t.QP.DETACH_PEER_LND,(0,e.xk)())),$=(0,e.VP)(t.QP.REMOVE_PEER_LND,(0,e.xk)()),j=(0,e.VP)(t.QP.SAVE_NEW_INVOICE_LND,(0,e.xk)()),J=((0,e.VP)(t.QP.NEWLY_SAVED_INVOICE_LND,(0,e.xk)()),(0,e.VP)(t.QP.ADD_INVOICE_LND,(0,e.xk)())),ee=(0,e.VP)(t.QP.FETCH_FEES_LND),ie=(0,e.VP)(t.QP.SET_FEES_LND,(0,e.xk)()),ge=(0,e.VP)(t.QP.FETCH_BLOCKCHAIN_BALANCE_LND),ae=(0,e.VP)(t.QP.SET_BLOCKCHAIN_BALANCE_LND,(0,e.xk)()),Me=(0,e.VP)(t.QP.FETCH_NETWORK_LND),Te=(0,e.VP)(t.QP.SET_NETWORK_LND,(0,e.xk)()),de=(0,e.VP)(t.QP.FETCH_CHANNELS_LND),D=(0,e.VP)(t.QP.SET_CHANNELS_LND,(0,e.xk)()),n=(0,e.VP)(t.QP.FETCH_PENDING_CHANNELS_LND),c=(0,e.VP)(t.QP.SET_PENDING_CHANNELS_LND,(0,e.xk)()),m=(0,e.VP)(t.QP.FETCH_CLOSED_CHANNELS_LND),h=(0,e.VP)(t.QP.SET_CLOSED_CHANNELS_LND,(0,e.xk)()),C=(0,e.VP)(t.QP.UPDATE_CHANNEL_LND,(0,e.xk)()),k=(0,e.VP)(t.QP.SAVE_NEW_CHANNEL_LND,(0,e.xk)()),L=(0,e.VP)(t.QP.CLOSE_CHANNEL_LND,(0,e.xk)()),_=(0,e.VP)(t.QP.REMOVE_CHANNEL_LND,(0,e.xk)()),r=(0,e.VP)(t.QP.BACKUP_CHANNELS_LND,(0,e.xk)()),v=(0,e.VP)(t.QP.VERIFY_CHANNEL_LND,(0,e.xk)()),ne=((0,e.VP)(t.QP.BACKUP_CHANNELS_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.VERIFY_CHANNEL_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.RESTORE_CHANNELS_LIST_LND)),Ee=(0,e.VP)(t.QP.SET_RESTORE_CHANNELS_LIST_LND,(0,e.xk)()),ze=(0,e.VP)(t.QP.RESTORE_CHANNELS_LND,(0,e.xk)()),Ke=((0,e.VP)(t.QP.RESTORE_CHANNELS_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.FETCH_INVOICES_LND,(0,e.xk)())),se=(0,e.VP)(t.QP.SET_INVOICES_LND,(0,e.xk)()),X=(0,e.VP)(t.QP.UPDATE_INVOICE_LND,(0,e.xk)()),me=(0,e.VP)(t.QP.UPDATE_PAYMENT_LND,(0,e.xk)()),ce=(0,e.VP)(t.QP.FETCH_TRANSACTIONS_LND),fe=(0,e.VP)(t.QP.SET_TRANSACTIONS_LND,(0,e.xk)()),ke=(0,e.VP)(t.QP.FETCH_UTXOS_LND),mt=(0,e.VP)(t.QP.SET_UTXOS_LND,(0,e.xk)()),_e=(0,e.VP)(t.QP.FETCH_PAYMENTS_LND,(0,e.xk)()),be=(0,e.VP)(t.QP.SET_PAYMENTS_LND,(0,e.xk)()),pe=(0,e.VP)(t.QP.SEND_PAYMENT_LND,(0,e.xk)()),_t=((0,e.VP)(t.QP.SEND_PAYMENT_STATUS_LND,(0,e.xk)()),(0,e.VP)(t.QP.FETCH_GRAPH_NODE_LND,(0,e.xk)())),pt=((0,e.VP)(t.QP.SET_GRAPH_NODE_LND,(0,e.xk)()),(0,e.VP)(t.QP.GET_NEW_ADDRESS_LND,(0,e.xk)())),ye=((0,e.VP)(t.QP.SET_NEW_ADDRESS_LND,(0,e.xk)()),(0,e.VP)(t.QP.SET_CHANNEL_TRANSACTION_LND,(0,e.xk)())),Ie=((0,e.VP)(t.QP.SET_CHANNEL_TRANSACTION_RES_LND,(0,e.xk)()),(0,e.VP)(t.QP.GEN_SEED_LND,(0,e.xk)())),Xe=((0,e.VP)(t.QP.GEN_SEED_RESPONSE_LND,(0,e.xk)()),(0,e.VP)(t.QP.INIT_WALLET_LND,(0,e.xk)())),Ye=((0,e.VP)(t.QP.INIT_WALLET_RESPONSE_LND,(0,e.xk)()),(0,e.VP)(t.QP.UNLOCK_WALLET_LND,(0,e.xk)())),rt=(0,e.VP)(t.QP.PEER_LOOKUP_LND,(0,e.xk)()),Yt=(0,e.VP)(t.QP.CHANNEL_LOOKUP_LND,(0,e.xk)()),Nt=(0,e.VP)(t.QP.INVOICE_LOOKUP_LND,(0,e.xk)()),Et=(0,e.VP)(t.QP.PAYMENT_LOOKUP_LND,(0,e.xk)()),oe=((0,e.VP)(t.QP.SET_LOOKUP_LND,(0,e.xk)()),(0,e.VP)(t.QP.GET_FORWARDING_HISTORY_LND,(0,e.xk)())),tt=(0,e.VP)(t.QP.SET_FORWARDING_HISTORY_LND,(0,e.xk)()),$t=(0,e.VP)(t.QP.GET_QUERY_ROUTES_LND,(0,e.xk)()),zt=(0,e.VP)(t.QP.SET_QUERY_ROUTES_LND,(0,e.xk)()),Jt=(0,e.VP)(t.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),St=(0,e.VP)(t.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,(0,e.xk)())},9579:(Qe,te,g)=>{"use strict";g.d(te,{L:()=>Te});var e=g(4054),t=g(1413),w=g(7673),S=g(1397),l=g(6977),x=g(6354),f=g(9437),I=g(3993),d=g(6391),T=g(2462),y=g(4416),F=g(1771),R=g(190),z=g(3536),W=g(4438),$=g(1626),j=g(9640),Q=g(8570),J=g(2571),ee=g(3202),ie=g(5351),ge=g(1188),ae=g(7879),Me=g(177);let Te=(()=>{class de{constructor(n,c,m,h,C,k,L,_,r,v){this.actions=n,this.httpClient=c,this.store=m,this.logger=h,this.commonService=C,this.sessionService=k,this.dialog=L,this.router=_,this.wsService=r,this.location=v,this.CHILD_API_URL=y.H$+"/lnd",this.invoicesPageSettings=y.ZC.find(V=>"transactions"===V.pageId)?.tables.find(V=>"invoices"===V.tableId),this.paymentsPageSettings=y.ZC.find(V=>"transactions"===V.pageId)?.tables.find(V=>"payments"===V.tableId),this.flgInitialized=!1,this.unSubs=[new t.B,new t.B],this.infoFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_INFO_LND),(0,S.Z)(V=>(this.flgInitialized=!1,this.store.dispatch((0,F.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,F.Jh)()),this.store.dispatch((0,F.mt)({payload:y.MZ.GET_NODE_INFO})),this.store.dispatch((0,R.e8)({payload:{action:"FetchInfo",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.GETINFO_API).pipe((0,l.Q)(this.actions.pipe((0,e.gp)(y.aU.SET_SELECTED_NODE))),(0,x.T)(N=>(this.logger.info(N),N.chains&&N.chains.length&&N.chains[0]&&("string"==typeof N.chains[0]&&N.chains[0].toLowerCase().indexOf("bitcoin")<0||"object"==typeof N.chains[0]&&N.chains[0].hasOwnProperty("chain")&&N.chains[0].chain&&N.chains[0].chain.toLowerCase().indexOf("bitcoin")<0)?(this.store.dispatch((0,R.e8)({payload:{action:"FetchInfo",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.Jh)()),this.store.dispatch((0,F.xO)({payload:{data:{type:y.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}})),{type:y.aU.LOGOUT}):N.identity_pubkey?(N.lnImplementation="LND",this.initializeRemainingData(N,V.payload.loadPage),this.store.dispatch((0,R.e8)({payload:{action:"FetchInfo",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.Jh)()),{type:y.QP.SET_INFO_LND,payload:N||{}}):(this.store.dispatch((0,R.e8)({payload:{action:"FetchInfo",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.Jh)()),this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),{type:y.QP.SET_INFO_LND,payload:{}}))),(0,f.W)(N=>{if("string"==typeof N.error.error&&N.error.error.includes("Not Found")||"string"==typeof N.error.error&&N.error.error.includes("wallet locked")||502===N.status&&!N.error.message.includes("Bad or Missing Macaroon"))this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),this.handleErrorWithoutAlert("FetchInfo",y.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",N);else if("string"==typeof N.error.error&&N.error.error.includes("starting up")&&500===N.status)setTimeout(()=>{this.store.dispatch((0,R.Br)({payload:{loadPage:"HOME"}}))},2e3);else{const ne=this.commonService.extractErrorCode(N),Ee=503===ne?"Unable to Connect to LND Server.":this.commonService.extractErrorMessage(N);this.router.navigate(["/error"],{state:{errorCode:ne,errorMessage:Ee}}),this.handleErrorWithoutAlert("FetchInfo",y.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:ne,error:Ee})}return(0,w.of)({type:y.aU.VOID})})))))),this.peersFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PEERS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchPeers",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PEERS_API).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchPeers",status:y.wn.COMPLETED}})),{type:y.QP.SET_PEERS_LND,payload:V||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchPeers",y.MZ.NO_SPINNER,"Fetching Peers Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.saveNewPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_NEW_PEER_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.CONNECT_PEER})),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewPeer",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.PEERS_API,{pubkey:V.payload.pubkey,host:V.payload.host,perm:V.payload.perm}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewPeer",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.CONNECT_PEER})),this.store.dispatch((0,R.Qj)({payload:N||[]})),{type:y.QP.NEWLY_ADDED_PEER_LND,payload:{peer:N[0]}})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SaveNewPeer",y.MZ.CONNECT_PEER,"Peer Connection Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.detachPeer=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.DETACH_PEER_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+y.rl.PEERS_API+"/"+V.payload.pubkey).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.DISCONNECT_PEER})),this.store.dispatch((0,F.UI)({payload:"Peer Disconnected Successfully."})),{type:y.QP.REMOVE_PEER_LND,payload:{pubkey:V.payload.pubkey}})),(0,f.W)(N=>(this.handleErrorWithAlert("DetachPeer",y.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+y.rl.PEERS_API+"/"+V.payload.pubkey,N),(0,w.of)({type:y.aU.VOID})))))))),this.saveNewInvoice=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_NEW_INVOICE_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewInvoice",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.INVOICES_API,{memo:V.payload.memo,value:V.payload.value,private:V.payload.private,expiry:V.payload.expiry,is_amp:V.payload.is_amp}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewInvoice",status:y.wn.COMPLETED}})),this.store.dispatch((0,R.Do)({payload:{num_max_invoices:V.payload.pageSize,reversed:!0}})),V.payload.openModal?(N.memo=V.payload.memo,N.value=V.payload.value,N.expiry=V.payload.expiry,N.private=V.payload.private,N.is_amp=V.payload.is_amp,N.cltv_expiry="144",N.creation_date=Math.round((new Date).getTime()/1e3).toString(),setTimeout(()=>{this.store.dispatch((0,F.xO)({payload:{data:{invoice:N,newlyAdded:!0,component:d.H}}}))},200),{type:y.aU.CLOSE_SPINNER,payload:V.payload.uiMessage}):{type:y.QP.NEWLY_SAVED_INVOICE_LND,payload:{paymentRequest:N.payment_request}})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SaveNewInvoice",V.payload.uiMessage,"Add Invoice Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.openNewChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_NEW_CHANNEL_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.OPEN_CHANNEL})),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewChannel",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_API,{node_pubkey:V.payload.selectedPeerPubkey,local_funding_amount:V.payload.fundingAmount,private:V.payload.private,trans_type:V.payload.transType,trans_type_value:V.payload.transTypeValue,spend_unconfirmed:V.payload.spendUnconfirmed,commitment_type:V.payload.commitmentType}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SaveNewChannel",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.OPEN_CHANNEL})),this.store.dispatch((0,R.DY)()),this.store.dispatch((0,R.$Q)()),this.store.dispatch((0,R.H2)({payload:{uiMessage:y.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:"Channel Added Successfully!"}})),{type:y.QP.FETCH_PENDING_CHANNELS_LND})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SaveNewChannel",y.MZ.OPEN_CHANNEL,"Opening Channel Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.updateChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.UPDATE_CHANNEL_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_API+"/chanPolicy",{baseFeeMsat:V.payload.baseFeeMsat,feeRate:V.payload.feeRate,timeLockDelta:V.payload.timeLockDelta,max_htlc_msat:V.payload.maxHtlcMsat,min_htlc_msat:V.payload.minHtlcMsat,chanPoint:V.payload.chanPoint}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,F.UI)("all"===V.payload.chanPoint?{payload:"All Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:y.QP.FETCH_CHANNELS_LND})),(0,f.W)(N=>(this.handleErrorWithAlert("UpdateChannels",y.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+y.rl.CHANNELS_API+"/chanPolicy",N),(0,w.of)({type:y.aU.VOID})))))))),this.closeChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.CLOSE_CHANNEL_LND),(0,S.Z)(V=>{this.store.dispatch((0,F.mt)({payload:V.payload.forcibly?y.MZ.FORCE_CLOSE_CHANNEL:y.MZ.CLOSE_CHANNEL}));let N=this.CHILD_API_URL+y.rl.CHANNELS_API+"/"+V.payload.channelPoint+"?force="+V.payload.forcibly;return V.payload.targetConf&&(N=N+"&target_conf="+V.payload.targetConf),V.payload.satPerByte&&(N=N+"&sat_per_byte="+V.payload.satPerByte),this.httpClient.delete(N).pipe((0,x.T)(ne=>(this.logger.info(ne),this.store.dispatch((0,F.y0)({payload:V.payload.forcibly?y.MZ.FORCE_CLOSE_CHANNEL:y.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,R.$Q)()),this.store.dispatch((0,R.ar)()),this.store.dispatch((0,R.H2)({payload:{uiMessage:y.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:ne.message}})),{type:y.aU.VOID})),(0,f.W)(ne=>(this.handleErrorWithAlert("CloseChannel",V.payload.forcibly?y.MZ.FORCE_CLOSE_CHANNEL:y.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_API+"/"+V.payload.channelPoint+"?force="+V.payload.forcibly,ne),(0,w.of)({type:y.aU.VOID}))))}))),this.backupChannels=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.BACKUP_CHANNELS_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"BackupChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/"+V.payload.channelPoint).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"BackupChannels",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:V.payload.uiMessage})),this.store.dispatch((0,F.UI)({payload:V.payload.showMessage+" "+N.message})),{type:y.QP.BACKUP_CHANNELS_RES_LND,payload:N.message})),(0,f.W)(N=>(this.handleErrorWithAlert("BackupChannels",V.payload.uiMessage,V.payload.showMessage+" Unable to Backup Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/"+V.payload.channelPoint,N),(0,w.of)({type:y.aU.VOID})))))))),this.verifyChannel=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.VERIFY_CHANNEL_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,R.e8)({payload:{action:"VerifyChannel",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/verify/"+V.payload.channelPoint,{}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"VerifyChannel",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,F.UI)({payload:N.message})),{type:y.QP.VERIFY_CHANNEL_RES_LND,payload:N.message})),(0,f.W)(N=>(this.handleErrorWithAlert("VerifyChannel",y.MZ.VERIFY_CHANNEL,"Unable to Verify Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/verify/"+V.payload.channelPoint,N),(0,w.of)({type:y.aU.VOID})))))))),this.restoreChannels=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.RESTORE_CHANNELS_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,R.e8)({payload:{action:"RestoreChannels",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/restore/"+V.payload.channelPoint,{}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"RestoreChannels",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,F.UI)({payload:N.message})),this.store.dispatch((0,R.t5)({payload:N.list})),{type:y.QP.RESTORE_CHANNELS_RES_LND,payload:N.message})),(0,f.W)(N=>(this.handleErrorWithAlert("RestoreChannels",y.MZ.RESTORE_CHANNEL,"Unable to Restore Channel. Try again later.",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/restore/"+V.payload.channelPoint,N),(0,w.of)({type:y.aU.VOID})))))))),this.fetchFees=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_FEES_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchFees",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.FEES_API))),(0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchFees",status:y.wn.COMPLETED}})),V.forwarding_events_history&&(this.store.dispatch((0,R.kv)({payload:V.forwarding_events_history})),delete V.forwarding_events_history),{type:y.QP.SET_FEES_LND,payload:V||{}})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchFees",y.MZ.NO_SPINNER,"Fetching Fees Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.balanceBlockchainFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_BLOCKCHAIN_BALANCE_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchBalance",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.BALANCE_API))),(0,x.T)(V=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchBalance",status:y.wn.COMPLETED}})),this.logger.info(V),{type:y.QP.SET_BLOCKCHAIN_BALANCE_LND,payload:V||{total_balance:""}})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchBalance",y.MZ.NO_SPINNER,"Fetching Blockchain Balance Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.networkInfoFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_NETWORK_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchNetwork",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/info"))),(0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchNetwork",status:y.wn.COMPLETED}})),{type:y.QP.SET_NETWORK_LND,payload:V||{}})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchNetwork",y.MZ.NO_SPINNER,"Fetching Network Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.channelsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_CHANNELS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_API).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchChannels",status:y.wn.COMPLETED}})),{type:y.QP.SET_CHANNELS_LND,payload:V.channels||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchChannels",y.MZ.NO_SPINNER,"Fetching Channels Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.channelsPendingFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PENDING_CHANNELS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchPendingChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_API+"/pending").pipe((0,x.T)(V=>{this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchPendingChannels",status:y.wn.COMPLETED}}));const N={open:{num_channels:0,limbo_balance:0},closing:{num_channels:0,limbo_balance:0},force_closing:{num_channels:0,limbo_balance:0},waiting_close:{num_channels:0,limbo_balance:0},total_channels:0,total_limbo_balance:0};return V&&(N.total_limbo_balance=V.total_limbo_balance,V.pending_closing_channels&&(N.closing.num_channels=V.pending_closing_channels.length,N.total_channels=N.total_channels+V.pending_closing_channels.length,V.pending_closing_channels.forEach(ne=>{N.closing.limbo_balance=+N.closing.limbo_balance+(ne.channel.local_balance?+ne.channel.local_balance:0)})),V.pending_force_closing_channels&&(N.force_closing.num_channels=V.pending_force_closing_channels.length,N.total_channels=N.total_channels+V.pending_force_closing_channels.length,V.pending_force_closing_channels.forEach(ne=>{N.force_closing.limbo_balance=+N.force_closing.limbo_balance+(ne.channel.local_balance?+ne.channel.local_balance:0)})),V.pending_open_channels&&(N.open.num_channels=V.pending_open_channels.length,N.total_channels=N.total_channels+V.pending_open_channels.length,V.pending_open_channels.forEach(ne=>{N.open.limbo_balance=+N.open.limbo_balance+(ne.channel.local_balance?+ne.channel.local_balance:0)})),V.waiting_close_channels&&(N.waiting_close.num_channels=V.waiting_close_channels.length,N.total_channels=N.total_channels+V.waiting_close_channels.length,V.waiting_close_channels.forEach(ne=>{N.waiting_close.limbo_balance=+N.waiting_close.limbo_balance+(ne.channel.local_balance?+ne.channel.local_balance:0)}))),{type:y.QP.SET_PENDING_CHANNELS_LND,payload:V?{pendingChannels:V,pendingChannelsSummary:N}:{pendingChannels:{},pendingChannelsSummary:N}}}),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchPendingChannels",y.MZ.NO_SPINNER,"Fetching Pending Channels Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.channelsClosedFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_CLOSED_CHANNELS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchClosedChannels",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_API+"/closed").pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchClosedChannels",status:y.wn.COMPLETED}})),{type:y.QP.SET_CLOSED_CHANNELS_LND,payload:V.channels||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchClosedChannels",y.MZ.NO_SPINNER,"Fetching Closed Channels Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.invoicesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_INVOICES_LND),(0,S.Z)(V=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchInvoices",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.INVOICES_API+"?num_max_invoices="+(V.payload.num_max_invoices?V.payload.num_max_invoices:100)+"&index_offset="+(V.payload.index_offset?V.payload.index_offset:0)+"&reversed="+(!!V.payload.reversed&&V.payload.reversed)).pipe((0,x.T)(ze=>(this.logger.info(ze),this.store.dispatch((0,R.e8)({payload:{action:"FetchInvoices",status:y.wn.COMPLETED}})),V.payload.reversed&&!V.payload.index_offset&&(ze.total_invoices=+(ze.last_index_offset||0)),{type:y.QP.SET_INVOICES_LND,payload:ze})),(0,f.W)(ze=>(this.handleErrorWithoutAlert("FetchInvoices",y.MZ.NO_SPINNER,"Fetching Invoices Failed.",ze),(0,w.of)({type:y.aU.VOID})))))))),this.transactionsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_TRANSACTIONS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchTransactions",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.TRANSACTIONS_API))),(0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchTransactions",status:y.wn.COMPLETED}})),{type:y.QP.SET_TRANSACTIONS_LND,payload:V||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchTransactions",y.MZ.NO_SPINNER,"Fetching Transactions Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.utxosFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_UTXOS_LND),(0,I.E)(this.store.select(z.pI)),(0,S.Z)(([V,N])=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchUTXOs",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.WALLET_API+"/getUTXOs?max_confs="+(N&&N.block_height?N.block_height:1e9)))),(0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchUTXOs",status:y.wn.COMPLETED}})),{type:y.QP.SET_UTXOS_LND,payload:V||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchUTXOs",y.MZ.NO_SPINNER,"Fetching UTXOs Failed.",V),(0,w.of)({type:y.aU.VOID}))))),this.paymentsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PAYMENTS_LND),(0,S.Z)(V=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchPayments",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PAYMENTS_API+"?max_payments="+(V.payload.max_payments?V.payload.max_payments:100)+"&index_offset="+(V.payload.index_offset?V.payload.index_offset:0)+"&reversed="+(!!V.payload.reversed&&V.payload.reversed)).pipe((0,x.T)(ze=>(this.logger.info(ze),this.store.dispatch((0,R.e8)({payload:{action:"FetchPayments",status:y.wn.COMPLETED}})),this.commonService.sortByKey(ze.payments||[],this.paymentsPageSettings?.sortBy||"creation_date","number",this.paymentsPageSettings?.sortOrder),{type:y.QP.SET_PAYMENTS_LND,payload:ze})),(0,f.W)(ze=>(this.handleErrorWithoutAlert("FetchPayments",y.MZ.NO_SPINNER,"Fetching Payments Failed.",ze),(0,w.of)({type:y.QP.SET_PAYMENTS_LND,payload:{payments:[]}})))))))),this.sendPayment=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SEND_PAYMENT_LND),(0,S.Z)(V=>{this.store.dispatch((0,F.mt)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"SendPayment",status:y.wn.INITIATED}}));const N={};return N.paymentReq=V.payload.paymentReq,V.payload.paymentAmount&&(N.paymentAmount=V.payload.paymentAmount),V.payload.outgoingChannel&&(N.outgoingChannel=V.payload.outgoingChannel.chan_id),V.payload.allowSelfPayment&&(N.allowSelfPayment=V.payload.allowSelfPayment),V.payload.lastHopPubkey&&(N.lastHopPubkey=V.payload.lastHopPubkey),V.payload.feeLimitType&&V.payload.feeLimitType!==y.nv[0].id&&(N.feeLimit={},N.feeLimit[V.payload.feeLimitType]=V.payload.feeLimit),this.httpClient.post(this.CHILD_API_URL+y.rl.CHANNELS_API+"/transactions",N).pipe((0,x.T)(ne=>{if(this.logger.info(ne),this.store.dispatch((0,F.y0)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"SendPayment",status:y.wn.COMPLETED}})),ne.payment_error)return V.payload.allowSelfPayment?(this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),{type:y.QP.SEND_PAYMENT_STATUS_LND,payload:ne}):(V.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed.",ne.payment_error):this.handleErrorWithAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+y.rl.CHANNELS_API+"/transactions",ne.payment_error),{type:y.aU.VOID});if(this.store.dispatch((0,F.y0)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"SendPayment",status:y.wn.COMPLETED}})),this.store.dispatch((0,R.$Q)()),this.store.dispatch((0,R.CK)({payload:{max_payments:this.paymentsPageSettings?.recordsPerPage,reversed:!0}})),V.payload.allowSelfPayment)this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}));else{let Ee="Payment Sent Successfully.";ne.payment_route&&ne.payment_route.total_fees_msat&&(Ee="Payment sent successfully with the total fee "+ne.payment_route.total_fees_msat+" (mSats)."),this.store.dispatch((0,F.UI)({payload:Ee}))}return{type:y.QP.SEND_PAYMENT_STATUS_LND,payload:ne}}),(0,f.W)(ne=>(this.logger.error("Error: "+JSON.stringify(ne)),V.payload.allowSelfPayment?(this.handleErrorWithoutAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed.",ne),this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),(0,w.of)({type:y.QP.SEND_PAYMENT_STATUS_LND,payload:{error:this.commonService.extractErrorMessage(ne)}})):(V.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed.",ne):this.handleErrorWithAlert("SendPayment",V.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+y.rl.CHANNELS_API+"/transactions",ne),(0,w.of)({type:y.aU.VOID})))))}))),this.graphNodeFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_GRAPH_NODE_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,R.e8)({payload:{action:"FetchGraphNode",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/node/"+V.payload.pubkey).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,R.e8)({payload:{action:"FetchGraphNode",status:y.wn.COMPLETED}})),{type:y.QP.SET_GRAPH_NODE_LND,payload:N&&N.node?{node:N.node}:{node:null}})),(0,f.W)(N=>(this.handleErrorWithoutAlert("FetchGraphNode",y.MZ.GET_NODE_ADDRESS,"Fetching Graph Node Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.setGraphNode=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_GRAPH_NODE_LND),(0,x.T)(V=>(this.logger.info(V.payload),V.payload))),{dispatch:!1}),this.getNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_NEW_ADDRESS_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+y.rl.NEW_ADDRESS_API+"?type="+V.payload.addressId).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.GENERATE_NEW_ADDRESS})),{type:y.QP.SET_NEW_ADDRESS_LND,payload:N&&N.address?N.address:{}})),(0,f.W)(N=>(this.handleErrorWithAlert("GetNewAddress",y.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+y.rl.NEW_ADDRESS_API+"?type="+V.payload.addressId,N),(0,w.of)({type:y.aU.VOID})))))))),this.setNewAddress=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_NEW_ADDRESS_LND),(0,x.T)(V=>(this.logger.info(V.payload),V.payload))),{dispatch:!1}),this.SetChannelTransaction=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_CHANNEL_TRANSACTION_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.SEND_FUNDS})),this.store.dispatch((0,R.e8)({payload:{action:"SetChannelTransaction",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.TRANSACTIONS_API,{amount:V.payload.amount,address:V.payload.address,sendAll:V.payload.sendAll,fees:V.payload.fees,blocks:V.payload.blocks}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SetChannelTransaction",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.SEND_FUNDS})),this.store.dispatch((0,R.mh)()),this.store.dispatch((0,R.DY)()),this.store.dispatch((0,R.$Q)()),{type:y.QP.SET_CHANNEL_TRANSACTION_RES_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithoutAlert("SetChannelTransaction",y.MZ.SEND_FUNDS,"Sending Fund Failed.",N),(0,w.of)({type:y.aU.VOID})))))))),this.fetchForwardingHistory=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_FORWARDING_HISTORY_LND),(0,S.Z)(V=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchForwardingHistory",status:y.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+y.rl.SWITCH_API,{num_max_events:V.payload.num_max_events,index_offset:V.payload.index_offset,end_time:V.payload.end_time,start_time:V.payload.start_time}).pipe((0,x.T)(ne=>(this.logger.info(ne),this.store.dispatch((0,R.e8)({payload:{action:"FetchForwardingHistory",status:y.wn.COMPLETED}})),{type:y.QP.SET_FORWARDING_HISTORY_LND,payload:ne})),(0,f.W)(ne=>(this.handleErrorWithAlert("FetchForwardingHistory",y.MZ.NO_SPINNER,"Get Forwarding History Failed",this.CHILD_API_URL+y.rl.SWITCH_API,ne),(0,w.of)({type:y.aU.VOID})))))))),this.queryRoutesFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_QUERY_ROUTES_LND),(0,S.Z)(V=>{let N=this.CHILD_API_URL+y.rl.NETWORK_API+"/routes/"+V.payload.destPubkey+"/"+V.payload.amount;return V.payload.outgoingChanId&&(N=N+"?outgoing_chan_id="+V.payload.outgoingChanId),this.httpClient.get(N).pipe((0,x.T)(ne=>(this.logger.info(ne),{type:y.QP.SET_QUERY_ROUTES_LND,payload:ne})),(0,f.W)(ne=>(this.store.dispatch((0,R.Hm)({payload:{routes:[]}})),this.handleErrorWithAlert("GetQueryRoutes",y.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+y.rl.NETWORK_API,ne),(0,w.of)({type:y.aU.VOID}))))}))),this.setQueryRoutes=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_QUERY_ROUTES_LND),(0,x.T)(V=>V.payload)),{dispatch:!1}),this.genSeed=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GEN_SEED_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.GEN_SEED})),this.httpClient.get(this.CHILD_API_URL+y.rl.WALLET_API+"/genseed/"+V.payload).pipe((0,x.T)(N=>(this.logger.info("Generated GenSeed!"),this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.GEN_SEED})),{type:y.QP.GEN_SEED_RESPONSE_LND,payload:N.cipher_seed_mnemonic})),(0,f.W)(N=>(this.handleErrorWithAlert("GenSeed",y.MZ.GEN_SEED,"Genseed Generation Failed",this.CHILD_API_URL+y.rl.WALLET_API+"/genseed/"+V.payload,N),(0,w.of)({type:y.aU.VOID})))))))),this.updateSelNodeOptions=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.UPDATE_SELECTED_NODE_OPTIONS),(0,S.Z)(()=>this.httpClient.get(this.CHILD_API_URL+y.rl.WALLET_API+"/updateSelNodeOptions").pipe((0,x.T)(V=>(this.logger.info("Update Sel Node Successfull"),this.logger.info(V),{type:y.aU.VOID})),(0,f.W)(V=>(this.handleErrorWithAlert("UpdateSelectedNodeOptions",y.MZ.NO_SPINNER,"Update macaroon for newly initialized node failed! Please check the macaroon path and restart the server!","Update Macaroon",V),(0,w.of)({type:y.aU.VOID}))))))),this.genSeedResponse=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GEN_SEED_RESPONSE_LND),(0,x.T)(V=>V.payload)),{dispatch:!1}),this.initWalletRes=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.INIT_WALLET_RESPONSE_LND),(0,x.T)(V=>V.payload)),{dispatch:!1}),this.initWallet=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.INIT_WALLET_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.INITIALIZE_WALLET})),this.httpClient.post(this.CHILD_API_URL+y.rl.WALLET_API+"/wallet/initwallet",{wallet_password:V.payload.pwd,cipher_seed_mnemonic:V.payload.cipher?V.payload.cipher:"",aezeed_passphrase:V.payload.passphrase?V.payload.passphrase:""}).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.INITIALIZE_WALLET})),{type:y.QP.INIT_WALLET_RESPONSE_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithAlert("InitWallet",y.MZ.INITIALIZE_WALLET,"Wallet Initialization Failed",this.CHILD_API_URL+y.rl.WALLET_API+"/initwallet",N),(0,w.of)({type:y.aU.VOID})))))))),this.unlockWallet=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.UNLOCK_WALLET_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.UNLOCK_WALLET})),this.httpClient.post(this.CHILD_API_URL+y.rl.WALLET_API+"/wallet/unlockwallet",{wallet_password:V.payload.pwd}).pipe((0,x.T)(N=>(this.logger.info(N),this.logger.info("Successfully Unlocked!"),this.sessionService.setItem("lndUnlocked","true"),this.store.dispatch((0,F.y0)({payload:y.MZ.UNLOCK_WALLET})),this.store.dispatch((0,F.mt)({payload:y.MZ.WAIT_SYNC_NODE})),setTimeout(()=>{this.store.dispatch((0,F.y0)({payload:y.MZ.WAIT_SYNC_NODE})),this.store.dispatch((0,R.Br)({payload:{loadPage:"HOME"}}))},5e3),{type:y.aU.VOID})),(0,f.W)(N=>(this.handleErrorWithAlert("UnlockWallet",y.MZ.UNLOCK_WALLET,"Unlock Wallet Failed",this.CHILD_API_URL+y.rl.WALLET_API+"/unlockwallet",N),(0,w.of)({type:y.aU.VOID}))))))),{dispatch:!1}),this.peerLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.PEER_LOOKUP_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.SEARCHING_NODE})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/node/"+V.payload).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.SEARCHING_NODE})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),{type:y.QP.SET_LOOKUP_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithAlert("Lookup",y.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+y.rl.NETWORK_API+"/node/"+V.payload,N),(0,w.of)({type:y.aU.VOID})))))))),this.channelLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.CHANNEL_LOOKUP_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.NETWORK_API+"/edge/"+V.payload.channelID).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:V.payload.uiMessage})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),{type:y.QP.SET_LOOKUP_LND,payload:N})),(0,f.W)(N=>(this.handleErrorWithAlert("Lookup",V.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+y.rl.NETWORK_API+"/edge/"+V.payload.channelID,N),(0,w.of)({type:y.aU.VOID})))))))),this.invoiceLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.INVOICE_LOOKUP_LND),(0,S.Z)(V=>{this.store.dispatch((0,F.mt)({payload:y.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}}));let N=this.CHILD_API_URL+y.rl.INVOICES_API+"/lookup";return N=V.payload.paymentAddress&&""!==V.payload.paymentAddress?N+"?payment_addr="+V.payload.paymentAddress:N+"?payment_hash="+V.payload.paymentHash,this.httpClient.get(N).pipe((0,x.T)(ne=>(this.logger.info(ne),this.store.dispatch((0,F.y0)({payload:y.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),this.store.dispatch((0,R.Dq)({payload:ne})),{type:y.QP.SET_LOOKUP_LND,payload:ne})),(0,f.W)(ne=>(this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",y.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",ne),V.payload.openSnackBar&&this.store.dispatch((0,F.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,w.of)({type:y.QP.SET_LOOKUP_LND,payload:{error:ne}}))))}))),this.paymentLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.PAYMENT_LOOKUP_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PAYMENTS_API+"/lookup/"+V.payload).pipe((0,x.T)(N=>(this.logger.info(N),this.store.dispatch((0,F.y0)({payload:y.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.COMPLETED}})),this.store.dispatch((0,R._$)({payload:N})),{type:y.QP.SET_LOOKUP_LND,payload:N})),(0,f.W)(N=>(this.store.dispatch((0,R.e8)({payload:{action:"Lookup",status:y.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",y.MZ.SEARCHING_PAYMENT,"Payment Lookup Failed",N),(0,w.of)({type:y.QP.SET_LOOKUP_LND,payload:{error:N}})))))))),this.setLookup=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_LOOKUP_LND),(0,x.T)(V=>(this.logger.info(V.payload),V.payload))),{dispatch:!1}),this.getRestoreChannelList=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.RESTORE_CHANNELS_LIST_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"RestoreChannelsList",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API+"/restore/list").pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"RestoreChannelsList",status:y.wn.COMPLETED}})),{type:y.QP.SET_RESTORE_CHANNELS_LIST_LND,payload:V||{all_restore_exists:!1,files:[]}})),(0,f.W)(V=>(this.handleErrorWithAlert("RestoreChannelsList",y.MZ.NO_SPINNER,"Restore Channels List Failed",this.CHILD_API_URL+y.rl.CHANNELS_BACKUP_API,V),(0,w.of)({type:y.aU.VOID})))))))),this.setRestoreChannelList=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SET_RESTORE_CHANNELS_LIST_LND),(0,x.T)(V=>(this.logger.info(V.payload),V.payload))),{dispatch:!1}),this.allLightningTransactionsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchLightningTransactions",status:y.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+y.rl.PAYMENTS_API+"/alltransactions").pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchLightningTransactions",status:y.wn.COMPLETED}})),{type:y.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,payload:V})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchLightningTransactions",y.MZ.NO_SPINNER,"Fetching All Lightning Transaction Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.pageSettingsFetch=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.FETCH_PAGE_SETTINGS_LND),(0,S.Z)(()=>(this.store.dispatch((0,R.e8)({payload:{action:"FetchPageSettings",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.PAGE_SETTINGS_API).pipe((0,x.T)(V=>(this.logger.info(V),this.store.dispatch((0,R.e8)({payload:{action:"FetchPageSettings",status:y.wn.COMPLETED}})),this.invoicesPageSettings=V&&Object.keys(V).length>0?V.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId):y.ZC.find(N=>"transactions"===N.pageId)?.tables.find(N=>"invoices"===N.tableId),this.paymentsPageSettings=V&&Object.keys(V).length>0?V.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId):y.ZC.find(N=>"transactions"===N.pageId)?.tables.find(N=>"payments"===N.tableId),{type:y.QP.SET_PAGE_SETTINGS_LND,payload:V||[]})),(0,f.W)(V=>(this.handleErrorWithoutAlert("FetchPageSettings",y.MZ.NO_SPINNER,"Fetching Page Settings Failed.",V),(0,w.of)({type:y.aU.VOID})))))))),this.savePageSettings=(0,e.EH)(()=>this.actions.pipe((0,e.gp)(y.QP.SAVE_PAGE_SETTINGS_LND),(0,S.Z)(V=>(this.store.dispatch((0,F.mt)({payload:y.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,R.e8)({payload:{action:"SavePageSettings",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.PAGE_SETTINGS_API,V.payload).pipe((0,x.T)(N=>{this.logger.info(N),this.store.dispatch((0,R.e8)({payload:{action:"SavePageSettings",status:y.wn.COMPLETED}})),this.store.dispatch((0,F.y0)({payload:y.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,F.UI)({payload:"Page Layout Updated Successfully!"}));const ne=(N.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"invoices"===ze.tableId)||y.ZC.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"invoices"===ze.tableId)).recordsPerPage,Ee=(N.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"payments"===ze.tableId)||y.ZC.find(ze=>"transactions"===ze.pageId)?.tables.find(ze=>"payments"===ze.tableId)).recordsPerPage;return this.invoicesPageSettings&&ne!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=ne,this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))),this.paymentsPageSettings&&Ee!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=Ee),{type:y.QP.SET_PAGE_SETTINGS_LND,payload:N||[]}}),(0,f.W)(N=>(this.handleErrorWithAlert("SavePageSettings",y.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",y.rl.PAGE_SETTINGS_API,N),(0,w.of)({type:y.aU.VOID})))))))),this.store.select(z.ru).pipe((0,l.Q)(this.unSubs[0])).subscribe(V=>{V.FetchInfo.status!==y.wn.COMPLETED&&V.FetchInfo.status!==y.wn.ERROR||V.FetchFees.status!==y.wn.COMPLETED&&V.FetchFees.status!==y.wn.ERROR||V.FetchBalanceBlockchain.status!==y.wn.COMPLETED&&V.FetchBalanceBlockchain.status!==y.wn.ERROR||V.FetchAllChannels.status!==y.wn.COMPLETED&&V.FetchAllChannels.status!==y.wn.ERROR||V.FetchPendingChannels.status!==y.wn.COMPLETED&&V.FetchPendingChannels.status!==y.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,F.y0)({payload:y.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.lndWSMessages.pipe((0,l.Q)(this.unSubs[1])).subscribe(V=>{this.logger.info("Received new message from the service: "+JSON.stringify(V)),V&&(V.type===y.o1.INVOICE?(this.logger.info(V),V&&V.result&&V.result.payment_request&&this.store.dispatch((0,R.Dq)({payload:V.result}))):this.logger.info("Received Event from WS: "+JSON.stringify(V)))})}initializeRemainingData(n,c){this.sessionService.setItem("lndUnlocked","true");const m={identity_pubkey:n.identity_pubkey,alias:n.alias,testnet:n.testnet,chains:n.chains,uris:n.uris,version:n.version?n.version.split(" ")[0]:""};this.store.dispatch((0,F.mt)({payload:y.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,F.Fl)({payload:m}));let h=this.location.path();h.includes("/cln/")?h=h?.replace("/cln/","/lnd/"):h.includes("/ecl/")&&(h=h?.replace("/ecl/","/lnd/")),(h.includes("/unlock")||h.includes("/login")||h.includes("/error")||""===h||"HOME"===c||h.includes("?access-key="))&&(h="/lnd/home"),this.router.navigate([h]),this.store.dispatch((0,R.DY)()),this.store.dispatch((0,R.$Q)()),this.store.dispatch((0,R.ar)()),this.store.dispatch((0,R.pL)()),this.store.dispatch((0,R.Gy)()),this.store.dispatch((0,R.tf)()),this.store.dispatch((0,R.yp)()),this.store.dispatch((0,R.CK)({payload:{max_payments:1e5,reversed:!0}})),this.store.dispatch((0,R.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))}handleErrorWithoutAlert(n,c,m,h){this.logger.error("ERROR IN: "+n+"\n"+JSON.stringify(h)),401===h.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,F.Jh)()),this.store.dispatch((0,F.ri)({payload:"Authentication Failed: "+JSON.stringify(h.error)}))):(this.store.dispatch((0,F.y0)({payload:c})),this.store.dispatch((0,R.e8)({payload:{action:n,status:y.wn.ERROR,statusCode:h.status.toString(),message:this.commonService.extractErrorMessage(h,m)}})))}handleErrorWithAlert(n,c,m,h,C){if(this.logger.error(C),401===C.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,F.Jh)()),this.store.dispatch((0,F.ri)({payload:"Authentication Failed: "+JSON.stringify(C.error)}));else{this.store.dispatch((0,F.y0)({payload:c}));const k=this.commonService.extractErrorMessage(C);this.store.dispatch((0,F.xO)({payload:{data:{type:"ERROR",alertTitle:m,message:{code:C.status,message:k,URL:h},component:T.f}}})),this.store.dispatch((0,R.e8)({payload:{action:n,status:y.wn.ERROR,statusCode:C.status.toString(),message:k,URL:h}}))}}ngOnDestroy(){this.unSubs.forEach(n=>{n.next(null),n.complete()})}static#e=this.\u0275fac=function(c){return new(c||de)(W.KVO(e.En),W.KVO($.Qq),W.KVO(j.il),W.KVO(Q.gP),W.KVO(J.h),W.KVO(ee.Q),W.KVO(ie.bZ),W.KVO(ge.Ix),W.KVO(ae.I),W.KVO(Me.aZ))};static#t=this.\u0275prov=W.jDH({token:de,factory:de.\u0275fac})}return de})()},3536:(Qe,te,g)=>{"use strict";g.d(te,{$7:()=>j,$G:()=>w,BM:()=>R,Bw:()=>$,Ie:()=>f,KT:()=>I,Uv:()=>W,ah:()=>J,eO:()=>ge,gN:()=>y,gj:()=>ae,n_:()=>ie,oR:()=>d,os:()=>T,pI:()=>S,rN:()=>F,ru:()=>x,tA:()=>ee});var e=g(9640);const t=(0,e.UX)("lnd"),w=(0,e.Mz)(t,Me=>({pageSettings:Me.pageSettings,apiCallStatus:Me.apisCallStatus.FetchPageSettings})),S=(0,e.Mz)(t,Me=>Me.information),x=((0,e.Mz)(t,Me=>({information:Me.information,apiCallStatus:Me.apisCallStatus.FetchInfo})),(0,e.Mz)(t,Me=>Me.apisCallStatus)),f=(0,e.Mz)(t,Me=>({forwardingHistory:Me.forwardingHistory,apiCallStatus:Me.apisCallStatus.FetchForwardingHistory})),I=(0,e.Mz)(t,Me=>({listPayments:Me.listPayments,apiCallStatus:Me.apisCallStatus.FetchPayments})),d=(0,e.Mz)(t,Me=>({fees:Me.fees,apiCallStatus:Me.apisCallStatus.FetchFees})),T=(0,e.Mz)(t,Me=>({peers:Me.peers,apiCallStatus:Me.apisCallStatus.FetchPeers})),y=(0,e.Mz)(t,Me=>({transactions:Me.transactions,apiCallStatus:Me.apisCallStatus.FetchTransactions})),F=(0,e.Mz)(t,Me=>({listInvoices:Me.listInvoices,apiCallStatus:Me.apisCallStatus.FetchInvoices})),R=(0,e.Mz)(t,Me=>({channels:Me.channels,channelsSummary:Me.channelsSummary,lightningBalance:Me.lightningBalance,apiCallStatus:Me.apisCallStatus.FetchAllChannels})),W=((0,e.Mz)(t,Me=>({channelsSummary:Me.channelsSummary,pendingChannels:Me.pendingChannels,closedChannels:Me.closedChannels,apiCallStatus:Me.apisCallStatus.FetchAllChannels})),(0,e.Mz)(t,Me=>({pendingChannels:Me.pendingChannels,pendingChannelsSummary:Me.pendingChannelsSummary,apiCallStatus:Me.apisCallStatus.FetchPendingChannels}))),$=(0,e.Mz)(t,Me=>({closedChannels:Me.closedChannels,apiCallStatus:Me.apisCallStatus.FetchClosedChannels})),j=(0,e.Mz)(t,Me=>({blockchainBalance:Me.blockchainBalance,apiCallStatus:Me.apisCallStatus.FetchBalanceBlockchain})),J=((0,e.Mz)(t,Me=>({lightningBalance:Me.lightningBalance,apiCallStatus:Me.apisCallStatus.FetchAllChannels})),(0,e.Mz)(t,Me=>({utxos:Me.utxos,apiCallStatus:Me.apisCallStatus.FetchUTXOs}))),ee=(0,e.Mz)(t,Me=>({networkInfo:Me.networkInfo,apiCallStatus:Me.apisCallStatus.FetchNetwork})),ie=(0,e.Mz)(t,Me=>({allLightningTransactions:Me.allLightningTransactions,apiCallStatus:Me.apisCallStatus.FetchLightningTransactions})),ge=(0,e.Mz)(t,Me=>({channels:Me.channels,pendingChannels:Me.pendingChannels,closedChannels:Me.closedChannels})),ae=(0,e.Mz)(t,Me=>({information:Me.information,apiCallStatus:Me.apisCallStatus.FetchInfo}))},6391:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>Xt});var e=g(5351),t=g(5383),w=g(1413),S=g(6977),l=g(4416),x=g(3536),f=g(4438),I=g(8570),d=g(2571),T=g(5416),y=g(9640),F=g(177),R=g(60),z=g(2920),W=g(6038),$=g(8834),j=g(5596),Q=g(9454),J=g(9213),ee=g(1997),ie=g(9183),ge=g(4823),ae=g(8288),Me=g(9157),Te=g(9587);const de=["scrollContainer"],D=ye=>({"display-none":ye}),n=ye=>({"xs-scroll-y":ye}),c=ye=>({"h-50":ye}),m=()=>[],h=ye=>({"mr-0":ye});function C(ye,ue){if(1&ye&&f.nrm(0,"qr-code",33),2&ye){const Ie=f.XpG();f.Y8G("value",null==Ie.invoice?null:Ie.invoice.payment_request)("size",Ie.qrWidth)("errorCorrectionLevel","L")}}function k(ye,ue){1&ye&&(f.j41(0,"span",34),f.EFF(1,"N/A"),f.k0s())}function L(ye,ue){if(1&ye&&f.nrm(0,"qr-code",33),2&ye){const Ie=f.XpG();f.Y8G("value",null==Ie.invoice?null:Ie.invoice.payment_request)("size",Ie.qrWidth)("errorCorrectionLevel","L")}}function _(ye,ue){1&ye&&(f.j41(0,"span",35),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function r(ye,ue){1&ye&&f.nrm(0,"mat-divider",24),2&ye&&f.Y8G("inset",!0)}function v(ye,ue){1&ye&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function V(ye,ue){1&ye&&f.nrm(0,"span",41)}function N(ye,ue){if(1&ye&&(f.j41(0,"div",37)(1,"div",38)(2,"span",39),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,V,1,0,"span",40),f.k0s()()),2&ye){const Ie=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,null==Ie.invoice?null:Ie.invoice.amt_paid_sat)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,m).constructor(35))}}function ne(ye,ue){if(1&ye&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&ye){const Ie=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,null==Ie.invoice?null:Ie.invoice.amt_paid_sat)," Sats")}}function Ee(ye,ue){if(1&ye&&(f.qex(0),f.DNE(1,N,6,5,"div",36)(2,ne,3,3,"div",23),f.bVm()),2&ye){const Ie=f.XpG();f.R7$(),f.Y8G("ngIf",Ie.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!Ie.flgInvoicePaid)}}function ze(ye,ue){1&ye&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function qe(ye,ue){1&ye&&f.nrm(0,"mat-spinner",43),2&ye&&f.Y8G("diameter",20)}function Ke(ye,ue){if(1&ye&&(f.qex(0),f.DNE(1,ze,2,0,"span",23)(2,qe,1,1,"mat-spinner",42),f.bVm()),2&ye){const Ie=f.XpG();f.R7$(),f.Y8G("ngIf","OPEN"!==(null==Ie.invoice?null:Ie.invoice.state)||!Ie.flgVersionCompatible),f.R7$(),f.Y8G("ngIf","OPEN"===(null==Ie.invoice?null:Ie.invoice.state)&&Ie.flgVersionCompatible)}}function se(ye,ue){1&ye&&f.eu8(0)}function X(ye,ue){if(1&ye&&(f.j41(0,"div"),f.DNE(1,se,1,0,"ng-container",44),f.k0s()),2&ye){f.XpG();const Ie=f.sdS(79);f.R7$(),f.Y8G("ngTemplateOutlet",Ie)}}function me(ye,ue){if(1&ye){const Ie=f.RV6();f.j41(0,"div",45)(1,"button",46),f.bIt("click",function(){f.eBV(Ie);const Xe=f.XpG();return f.Njj(Xe.onScrollDown())}),f.j41(2,"mat-icon",47),f.EFF(3,"arrow_downward"),f.k0s()()()}}function ce(ye,ue){1&ye&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function fe(ye,ue){1&ye&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function ke(ye,ue){if(1&ye){const Ie=f.RV6();f.j41(0,"button",48),f.bIt("copied",function(Xe){f.eBV(Ie);const yt=f.XpG();return f.Njj(yt.onCopyPayment(Xe))}),f.EFF(1),f.k0s()}if(2&ye){const Ie=f.XpG();f.Y8G("payload",null==Ie.invoice?null:Ie.invoice.payment_request),f.R7$(),f.JRh(Ie.screenSize===Ie.screenSizeEnum.XS?"Copy Payment":"Copy Payment Request")}}function mt(ye,ue){if(1&ye){const Ie=f.RV6();f.j41(0,"button",49),f.bIt("click",function(){f.eBV(Ie);const Xe=f.XpG();return f.Njj(Xe.onClose())}),f.EFF(1,"OK"),f.k0s()}}function _e(ye,ue){if(1&ye&&f.nrm(0,"span",64),2&ye){const Ie=f.XpG(4);f.Y8G("ngClass",f.eq3(1,h,Ie.screenSize===Ie.screenSizeEnum.XS))}}function be(ye,ue){if(1&ye&&f.nrm(0,"span",65),2&ye){const Ie=f.XpG(4);f.Y8G("ngClass",f.eq3(1,h,Ie.screenSize===Ie.screenSizeEnum.XS))}}function pe(ye,ue){if(1&ye&&f.nrm(0,"span",66),2&ye){const Ie=f.XpG(4);f.Y8G("ngClass",f.eq3(1,h,Ie.screenSize===Ie.screenSizeEnum.XS))}}function Ze(ye,ue){if(1&ye&&(f.j41(0,"div",53)(1,"div",58)(2,"span",59),f.DNE(3,_e,1,3,"span",60)(4,be,1,3,"span",61)(5,pe,1,3,"span",62),f.EFF(6),f.k0s(),f.j41(7,"span",63),f.EFF(8),f.nI1(9,"number"),f.k0s()(),f.nrm(10,"mat-divider",24),f.k0s()),2&ye){const Ie=ue.$implicit,He=f.XpG(3);f.R7$(3),f.Y8G("ngIf","SETTLED"===Ie.state),f.R7$(),f.Y8G("ngIf","ACCEPTED"===Ie.state),f.R7$(),f.Y8G("ngIf","CANCELED"===Ie.state),f.R7$(),f.SpI(" ",Ie.chan_id," "),f.R7$(2),f.JRh(f.i5U(9,6,+Ie.amt_msat/1e3||0,He.getDecimalFormat(Ie))),f.R7$(2),f.Y8G("inset",!0)}}function _t(ye,ue){if(1&ye){const Ie=f.RV6();f.j41(0,"div",19)(1,"mat-expansion-panel",51),f.bIt("opened",function(){f.eBV(Ie);const Xe=f.XpG(2);return f.Njj(Xe.flgOpened=!0)})("closed",function(){f.eBV(Ie);const Xe=f.XpG(2);return f.Njj(Xe.onExpansionClosed())}),f.j41(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",52),f.EFF(5,"HTLCs"),f.k0s()()(),f.j41(6,"div",53)(7,"div",54)(8,"span",55),f.EFF(9,"Channel ID"),f.k0s(),f.j41(10,"span",56),f.EFF(11,"Amount (Sats)"),f.k0s()(),f.nrm(12,"mat-divider",24),f.DNE(13,Ze,11,9,"div",57),f.k0s()()()}if(2&ye){const Ie=f.XpG(2);f.R7$(12),f.Y8G("inset",!0),f.R7$(),f.Y8G("ngForOf",null==Ie.invoice?null:Ie.invoice.htlcs)}}function at(ye,ue){1&ye&&f.nrm(0,"mat-divider",24),2&ye&&f.Y8G("inset",!0)}function pt(ye,ue){if(1&ye&&(f.nrm(0,"mat-divider",24),f.j41(1,"div",19)(2,"div",25)(3,"h4",21),f.EFF(4,"Preimage"),f.k0s(),f.j41(5,"span",26),f.EFF(6),f.k0s()()(),f.nrm(7,"mat-divider",24),f.j41(8,"div",19)(9,"div",20)(10,"h4",21),f.EFF(11,"State"),f.k0s(),f.j41(12,"span",26),f.EFF(13),f.k0s()(),f.j41(14,"div",20)(15,"h4",21),f.EFF(16,"Expiry"),f.k0s(),f.j41(17,"span",26),f.EFF(18),f.nI1(19,"date"),f.k0s()()(),f.nrm(20,"mat-divider",24),f.j41(21,"div",19)(22,"div",20)(23,"h4",21),f.EFF(24,"Private Routing Hints"),f.k0s(),f.j41(25,"span",26),f.EFF(26),f.k0s()(),f.j41(27,"div",20)(28,"h4",21),f.EFF(29,"AMP Invoice"),f.k0s(),f.j41(30,"span",26),f.EFF(31),f.k0s()()(),f.nrm(32,"mat-divider",24),f.DNE(33,_t,14,2,"div",50)(34,at,1,1,"mat-divider",17)),2&ye){const Ie=f.XpG();f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Ie.invoice?null:Ie.invoice.r_preimage)||"-"),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh(null==Ie.invoice?null:Ie.invoice.state),f.R7$(5),f.JRh(f.i5U(19,11,1e3*(+(null==Ie.invoice?null:Ie.invoice.creation_date)+ +(null==Ie.invoice?null:Ie.invoice.expiry)),"dd/MMM/y HH:mm")),f.R7$(2),f.Y8G("inset",!0),f.R7$(6),f.JRh(null!=Ie.invoice&&Ie.invoice.private?"Yes":"No"),f.R7$(5),f.JRh(null!=Ie.invoice&&Ie.invoice.is_amp?"Yes":"No"),f.R7$(),f.Y8G("inset",!0),f.R7$(),f.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.htlcs)&&(null==Ie.invoice?null:Ie.invoice.htlcs.length)>0),f.R7$(),f.Y8G("ngIf",(null==Ie.invoice?null:Ie.invoice.htlcs)&&(null==Ie.invoice?null:Ie.invoice.htlcs.length)>0)}}let Xt=(()=>{class ye{set container(Ie){Ie&&(this.scrollContainer=Ie)}constructor(Ie,He,Xe,yt,Ye,rt){this.dialogRef=Ie,this.data=He,this.logger=Xe,this.commonService=yt,this.snackBar=Ye,this.store=rt,this.faReceipt=t.Mf0,this.showAdvanced=!1,this.newlyAdded=!1,this.invoice=null,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=l.f7,this.flgOpened=!1,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B]}ngOnInit(){this.invoice=JSON.parse(JSON.stringify(this.data.invoice)),this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===l.f7.XS&&(this.qrWidth=220),this.store.select(x.pI).pipe((0,S.Q)(this.unSubs[0])).subscribe(He=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(He.version,"0.11.0")});const Ie=JSON.parse(JSON.stringify(this.invoice));this.store.select(x.rN).pipe((0,S.Q)(this.unSubs[1])).subscribe(He=>{const Xe=this.invoice?.state,Ye=(He.listInvoices.invoices||[]).find(rt=>rt.r_hash===Ie.r_hash)||null;Ye&&(this.invoice=Ye),Xe!==this.invoice?.state&&"SETTLED"===this.invoice?.state&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(He)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced,this.flgOpened=!1}onScrollDown(){this.scrollContainer.nativeElement.scrollTop=this.scrollContainer.nativeElement.scrollTop+60}onExpansionClosed(){this.flgOpened=!1,this.scrollContainer.nativeElement.scrollTop=0}onCopyPayment(Ie){this.snackBar.open("Payment request copied."),this.logger.info("Copied Text: "+Ie)}getDecimalFormat(Ie){return Ie.amt_msat<1e3?"1.0-4":"1.0-0"}ngOnDestroy(){this.unSubs.forEach(Ie=>{Ie.next(null),Ie.complete()})}static#e=this.\u0275fac=function(He){return new(He||ye)(f.rXU(e.CP),f.rXU(e.Vh),f.rXU(I.gP),f.rXU(d.h),f.rXU(T.UG),f.rXU(y.il))};static#t=this.\u0275cmp=f.VBU({type:ye,selectors:[["rtl-invoice-information"]],viewQuery:function(He,Xe){if(1&He&&f.GBs(de,5),2&He){let yt;f.mGM(yt=f.lsd())&&(Xe.container=yt.first)}},decls:80,vars:49,consts:[["scrollContainer",""],["hideAdvancedText",""],["advancedBlock",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxLayout","column","fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],[3,"ngClass"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"my-1",3,"inset"],["fxFlex","100"],[1,"overflow-wrap","foreground-secondary-text"],["fxLayout","row","fxLayoutAlign","start end","class","btn-sticky-container padding-gap-x-large",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"font-size-300"],[1,"font-size-120"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],[4,"ngTemplateOutlet"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll Down","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"flat-expansion-panel",3,"opened","closed"],["fxLayoutAlign","start center","fxFlex","100",1,"font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100",1,"mt-minus-1"],["fxFlex","60",1,"foreground-secondary-text","font-bold-500"],["fxFlex","40",1,"foreground-secondary-text","font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100"],["fxFlex","60",1,"foreground-secondary-text"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Cancelled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["fxFlex","40",1,"foreground-secondary-text"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Cancelled","matTooltipPosition","right",1,"dot","red",3,"ngClass"]],template:function(He,Xe){if(1&He){const yt=f.RV6();f.j41(0,"div",3)(1,"div",4),f.DNE(2,C,1,3,"qr-code",5)(3,k,2,0,"span",6),f.k0s(),f.j41(4,"div",7)(5,"mat-card-header",8)(6,"div",9),f.nrm(7,"fa-icon",10),f.j41(8,"span",11),f.EFF(9),f.k0s()(),f.j41(10,"button",12),f.bIt("click",function(){return f.eBV(yt),f.Njj(Xe.onClose())}),f.EFF(11,"X"),f.k0s()(),f.j41(12,"mat-card-content",13)(13,"div",14)(14,"div",15),f.DNE(15,L,1,3,"qr-code",5)(16,_,2,0,"span",16),f.k0s(),f.DNE(17,r,1,1,"mat-divider",17),f.j41(18,"div",18,0)(20,"div",19)(21,"div",20)(22,"h4",21),f.EFF(23),f.k0s(),f.j41(24,"span",22),f.EFF(25),f.nI1(26,"number"),f.DNE(27,v,2,0,"ng-container",23),f.k0s()(),f.j41(28,"div",20)(29,"h4",21),f.EFF(30,"Amount Settled"),f.k0s(),f.j41(31,"span",22),f.DNE(32,Ee,3,2,"ng-container",23)(33,Ke,3,2,"ng-container",23),f.k0s()()(),f.nrm(34,"mat-divider",24),f.j41(35,"div",19)(36,"div",20)(37,"h4",21),f.EFF(38,"Date Created"),f.k0s(),f.j41(39,"span",22),f.EFF(40),f.nI1(41,"date"),f.k0s()(),f.j41(42,"div",20)(43,"h4",21),f.EFF(44,"Date Settled"),f.k0s(),f.j41(45,"span",22),f.EFF(46),f.nI1(47,"date"),f.k0s()()(),f.nrm(48,"mat-divider",24),f.j41(49,"div",19)(50,"div",25)(51,"h4",21),f.EFF(52,"Memo"),f.k0s(),f.j41(53,"span",22),f.EFF(54),f.k0s()()(),f.nrm(55,"mat-divider",24),f.j41(56,"div",19)(57,"div",25)(58,"h4",21),f.EFF(59,"Payment Request"),f.k0s(),f.j41(60,"span",26),f.EFF(61),f.k0s()()(),f.nrm(62,"mat-divider",24),f.j41(63,"div",19)(64,"div",25)(65,"h4",21),f.EFF(66,"Payment Hash"),f.k0s(),f.j41(67,"span",26),f.EFF(68),f.k0s()()(),f.DNE(69,X,2,1,"div",23),f.k0s()()(),f.DNE(70,me,4,0,"div",27),f.j41(71,"div",28)(72,"button",29),f.bIt("click",function(){return f.eBV(yt),f.Njj(Xe.onShowAdvanced())}),f.DNE(73,ce,2,0,"p",30)(74,fe,2,0,"ng-template",null,1,f.C5r),f.k0s(),f.DNE(76,ke,2,2,"button",31)(77,mt,2,0,"button",32),f.k0s()()(),f.DNE(78,pt,35,14,"ng-template",null,2,f.C5r)}if(2&He){const yt=f.sdS(75);f.R7$(),f.Y8G("fxLayoutAlign",null!=Xe.invoice&&Xe.invoice.payment_request&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)?"center start":"center center")("ngClass",f.eq3(41,D,Xe.screenSize===Xe.screenSizeEnum.XS||Xe.screenSize===Xe.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.payment_request)&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.payment_request)||""===(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(4),f.Y8G("icon",Xe.faReceipt),f.R7$(2),f.JRh(Xe.screenSize===Xe.screenSizeEnum.XS?Xe.newlyAdded?"Created":"Invoice":Xe.newlyAdded?"Invoice Created":"Invoice Information"),f.R7$(3),f.Y8G("ngClass",f.eq3(43,n,Xe.screenSize===Xe.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=Xe.invoice&&Xe.invoice.payment_request&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)?"center start":"center center")("ngClass",f.eq3(45,D,Xe.screenSize!==Xe.screenSizeEnum.XS&&Xe.screenSize!==Xe.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.payment_request)&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.payment_request)||""===(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",Xe.screenSize===Xe.screenSizeEnum.XS||Xe.screenSize===Xe.screenSizeEnum.SM),f.R7$(),f.Y8G("ngClass",f.eq3(47,c,(null==Xe.invoice?null:Xe.invoice.htlcs)&&(null==Xe.invoice?null:Xe.invoice.htlcs.length)>0&&Xe.showAdvanced)),f.R7$(5),f.JRh(Xe.screenSize===Xe.screenSizeEnum.XS?"Amount":"Amount Requested"),f.R7$(2),f.SpI("",f.bMT(26,33,(null==Xe.invoice?null:Xe.invoice.value)||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.value)||"0"===(null==Xe.invoice?null:Xe.invoice.value)),f.R7$(5),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.amt_paid_sat)&&"OPEN"!==(null==Xe.invoice?null:Xe.invoice.state)),f.R7$(),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.amt_paid_sat)||"0"===(null==Xe.invoice?null:Xe.invoice.amt_paid_sat)),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh(f.i5U(41,35,1e3*(null==Xe.invoice?null:Xe.invoice.creation_date),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(0!=+(null==Xe.invoice?null:Xe.invoice.settle_date)?f.i5U(47,38,1e3*+(null==Xe.invoice?null:Xe.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),f.R7$(2),f.Y8G("inset",!0),f.R7$(6),f.JRh(null==Xe.invoice?null:Xe.invoice.memo),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Xe.invoice?null:Xe.invoice.payment_request)||"N/A"),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Xe.invoice?null:Xe.invoice.r_hash)||""),f.R7$(),f.Y8G("ngIf",Xe.showAdvanced),f.R7$(),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.htlcs)&&(null==Xe.invoice?null:Xe.invoice.htlcs.length)>0&&Xe.showAdvanced&&Xe.flgOpened),f.R7$(3),f.Y8G("ngIf",!Xe.showAdvanced)("ngIfElse",yt),f.R7$(3),f.Y8G("ngIf",(null==Xe.invoice?null:Xe.invoice.payment_request)&&""!==(null==Xe.invoice?null:Xe.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Xe.invoice&&Xe.invoice.payment_request)||""===(null==Xe.invoice?null:Xe.invoice.payment_request))}},dependencies:[F.YU,F.Sq,F.bT,F.T3,R.aY,z.DJ,z.sA,z.UI,W.PW,$.$z,$.$0,j.m2,j.MM,Q.GK,Q.Z2,Q.WN,J.An,ee.q,ie.LG,ge.oV,ae.Um,Me.U,Te.N,F.QX,F.vh]})}return ye})()},1001:(Qe,te,g)=>{"use strict";g.d(te,{C:()=>t,q:()=>w});var e=g(9969);const t=[(0,e.hZ)("opacityAnimation",[(0,e.kY)(":enter",[(0,e.iF)({opacity:0}),(0,e.i0)("1000ms ease-in",(0,e.iF)({opacity:1}))]),(0,e.kY)(":leave",[(0,e.i0)("0ms",(0,e.iF)({opacity:0}))])])],w=[(0,e.hZ)("fadeIn",[(0,e.kY)("void => *",[]),(0,e.kY)("* => void",[]),(0,e.kY)("* => *",[(0,e.i0)(800,(0,e.i7)([(0,e.iF)({opacity:0,transform:"translateY(100%)"}),(0,e.iF)({opacity:1,transform:"translateY(0%)"})]))])])]},9881:(Qe,te,g)=>{"use strict";g.d(te,{E:()=>t});var e=g(9969);const t=(0,e.hZ)("routeAnimation",[(0,e.kY)("* => *",[(0,e.P)(":enter, :leave",(0,e.iF)({position:"fixed",width:"100%"}),{optional:!0}),(0,e.Os)([(0,e.P)(":enter",[(0,e.iF)({transform:"translateX(100%)"}),(0,e.i0)("1000ms ease-in-out",(0,e.iF)({transform:"translateX(0%)"}))],{optional:!0}),(0,e.P)(":leave",[(0,e.iF)({transform:"translateX(0%)"}),(0,e.i0)("1000ms ease-in-out",(0,e.iF)({transform:"translateX(-100%)"}))],{optional:!0})])])])},6949:(Qe,te,g)=>{"use strict";g.d(te,{k:()=>t});var e=g(9969);const t=[(0,e.hZ)("sliderAnimation",[(0,e.wk)("*",(0,e.iF)({transform:"translateX(0)"})),(0,e.kY)("void => backward",[(0,e.iF)({transform:"translateX(-100%"}),(0,e.i0)("800ms")]),(0,e.kY)("backward => void",[(0,e.i0)("0ms",(0,e.iF)({transform:"translateX(100%)"}))]),(0,e.kY)("void => forward",[(0,e.iF)({transform:"translateX(100%"}),(0,e.i0)("800ms")]),(0,e.kY)("forward => void",[(0,e.i0)("0ms",(0,e.iF)({transform:"translateX(-100%)"}))])])]},2462:(Qe,te,g)=>{"use strict";g.d(te,{f:()=>y});var e=g(5351),t=g(4438),w=g(8570),S=g(177),l=g(2920),x=g(8834),f=g(5596),I=g(1997),d=g(9587);function T(F,R){if(1&F&&(t.j41(0,"p",14),t.EFF(1),t.k0s()),2&F){const z=t.XpG();t.R7$(),t.JRh(z.data.titleMessage)}}let y=(()=>{class F{constructor(z,W,$){this.dialogRef=z,this.data=W,this.logger=$,this.errorMessage=""}ngOnInit(){this.errorMessage=this.data.message&&this.data.message.message&&"object"==typeof this.data.message.message?JSON.stringify(this.data.message.message):this.data.message&&this.data.message.message?this.data.message.message:"",!this.data.message&&!this.data.titleMessage&&!this.data.message&&(this.data.titleMessage="Please Check Server Connection"),this.logger.info(this.data.message)}onClose(){this.dialogRef.close(!1)}static#e=this.\u0275fac=function(W){return new(W||F)(t.rXU(e.CP),t.rXU(e.Vh),t.rXU(w.gP))};static#t=this.\u0275cmp=t.VBU({type:F,selectors:[["rtl-error-message"]],decls:29,vars:6,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large","error-alert-block"],["fxLayout","column"],["fxLayoutAlign","start center","class","pb-1",4,"ngIf"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],[1,"word-break"],["fxLayout","row","fxLayoutAlign","end center"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close"],["fxLayoutAlign","start center",1,"pb-1"]],template:function(W,$){1&W&&(t.j41(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t.EFF(5),t.k0s()(),t.j41(6,"button",5),t.bIt("click",function(){return $.onClose()}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",6)(9,"div",7),t.DNE(10,T,2,1,"p",8),t.j41(11,"h4",9),t.EFF(12,"Error Code"),t.k0s(),t.j41(13,"span"),t.EFF(14),t.k0s(),t.nrm(15,"mat-divider",10),t.j41(16,"h4",9),t.EFF(17,"Error Message"),t.k0s(),t.j41(18,"span",11),t.EFF(19),t.k0s(),t.nrm(20,"mat-divider",10),t.j41(21,"h4",9),t.EFF(22,"API URL"),t.k0s(),t.j41(23,"span",11),t.EFF(24),t.k0s(),t.nrm(25,"mat-divider",10),t.j41(26,"div",12)(27,"button",13),t.EFF(28,"OK"),t.k0s()()()()()()),2&W&&(t.R7$(5),t.JRh($.data.alertTitle||"ERROR"),t.R7$(5),t.Y8G("ngIf",$.data.titleMessage),t.R7$(4),t.JRh($.data.message.code),t.R7$(5),t.JRh($.errorMessage),t.R7$(5),t.JRh($.data.message.URL),t.R7$(3),t.Y8G("mat-dialog-close",!1))},dependencies:[S.bT,l.DJ,l.sA,l.UI,e.tx,x.$z,f.m2,f.MM,I.q,d.N],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]})}return F})()},8711:(Qe,te,g)=>{"use strict";g.d(te,{D:()=>Zi});var e=g(9417),t=g(1413),w=g(6977),S=g(5351),l=g(5383),x=g(1001),f=g(4416),I=g(3536),d=g(4438),T=g(9640),y=g(4104),F=g(177),R=g(8570),z=g(1188),W=g(2571),$=g(2920),j=g(6038),Q=g(8834),J=g(5596),ee=g(9454),ie=g(9213),ge=g(9631),ae=g(6467),Me=g(7575),Te=g(5951),de=g(450),D=g(4823),n=g(6013),c=g(9587),m=g(1997);const h=Qt=>({"h-5":Qt});function C(Qt,Mt){1&Qt&&d.eu8(0)}function k(Qt,Mt){1&Qt&&d.eu8(0)}function L(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-expansion-panel",3)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",4),d.EFF(4),d.nI1(5,"number"),d.k0s()()(),d.DNE(6,k,1,0,"ng-container",2),d.k0s()),2&Qt){const it=d.XpG(),ct=d.sdS(4);d.Y8G("expanded",it.panelExpanded)("ngClass",d.eq3(7,h,!it.flgShowPanel)),d.R7$(4),d.Lme("Quote for ",it.termCaption," amount (",d.bMT(5,5,it.quote.amount)," Sats)"),d.R7$(2),d.Y8G("ngTemplateOutlet",ct)}}function _(Qt,Mt){if(1&Qt&&(d.j41(0,"div",19)(1,"h4",8),d.EFF(2," Prepay Amount (Sats) "),d.j41(3,"mat-icon",20),d.EFF(4,"info_outline"),d.k0s()(),d.j41(5,"span",10),d.EFF(6),d.nI1(7,"number"),d.k0s()()),2&Qt){const it=d.XpG(2);d.R7$(6),d.JRh(d.bMT(7,1,null==it.quote?null:it.quote.prepay_amt_sat))}}function r(Qt,Mt){1&Qt&&d.nrm(0,"mat-divider",13)}function v(Qt,Mt){if(1&Qt&&(d.j41(0,"div",6)(1,"div",21)(2,"h4",8),d.EFF(3," Swap Server Node Pubkey "),d.j41(4,"mat-icon",22),d.EFF(5,"info_outline"),d.k0s()(),d.j41(6,"span",10),d.EFF(7),d.k0s()()()),2&Qt){const it=d.XpG(2);d.R7$(7),d.JRh(null==it.quote?null:it.quote.swap_payment_dest)}}function V(Qt,Mt){if(1&Qt&&(d.j41(0,"div",5)(1,"div",6)(2,"div",7)(3,"h4",8),d.EFF(4," Swap Fee (Sats) "),d.j41(5,"mat-icon",9),d.EFF(6,"info_outline"),d.k0s()(),d.j41(7,"span",10),d.EFF(8),d.nI1(9,"number"),d.k0s()(),d.j41(10,"div",7)(11,"h4",8),d.EFF(12),d.j41(13,"mat-icon",11),d.EFF(14,"info_outline"),d.k0s()(),d.j41(15,"span",10),d.EFF(16),d.nI1(17,"number"),d.k0s()(),d.DNE(18,_,8,3,"div",12),d.k0s(),d.nrm(19,"mat-divider",13),d.j41(20,"div",6)(21,"div",14)(22,"h4",8),d.EFF(23," Max Off-chain Swap Routing Fee (Sats) "),d.j41(24,"mat-icon",15),d.EFF(25,"info_outline"),d.k0s()(),d.j41(26,"span",10),d.EFF(27),d.nI1(28,"number"),d.k0s()(),d.j41(29,"div",14)(30,"h4",8),d.EFF(31," Max Off-chain Prepay Routing Fee (Sats) "),d.j41(32,"mat-icon",16),d.EFF(33,"info_outline"),d.k0s()(),d.j41(34,"span",10),d.EFF(35,"36"),d.k0s()()(),d.DNE(36,r,1,0,"mat-divider",17)(37,v,8,1,"div",18),d.k0s()),2&Qt){const it=d.XpG();d.R7$(2),d.Y8G("fxFlex",null!=it.quote&&it.quote.prepay_amt_sat?"30":"50"),d.R7$(6),d.JRh(d.bMT(9,9,null==it.quote?null:it.quote.swap_fee_sat)),d.R7$(2),d.Y8G("fxFlex",null!=it.quote&&it.quote.prepay_amt_sat?"35":"50"),d.R7$(2),d.SpI(" ",null!=it.quote&&it.quote.htlc_sweep_fee_sat?"HTLC Sweep Fee (Sats)":null!=it.quote&&it.quote.htlc_publish_fee_sat?"HTLC Publish Fee (Sats)":""," "),d.R7$(4),d.JRh(d.bMT(17,11,null!=it.quote&&it.quote.htlc_sweep_fee_sat?it.quote.htlc_sweep_fee_sat:null!=it.quote&&it.quote.htlc_publish_fee_sat?it.quote.htlc_publish_fee_sat:0)),d.R7$(2),d.Y8G("ngIf",null==it.quote?null:it.quote.prepay_amt_sat),d.R7$(9),d.JRh(d.bMT(28,13,(null==it.quote?null:it.quote.amount)*((null!=it.quote&&it.quote.off_chain_swap_routing_fee_percentage?null==it.quote?null:it.quote.off_chain_swap_routing_fee_percentage:2)/100))),d.R7$(9),d.Y8G("ngIf",""!==(null==it.quote?null:it.quote.swap_payment_dest)),d.R7$(),d.Y8G("ngIf",""!==(null==it.quote?null:it.quote.swap_payment_dest))}}let N=(()=>{class Qt{constructor(){this.quote={},this.termCaption="",this.showPanel=!0,this.panelExpanded=!1,this.flgShowPanel=!1}ngOnInit(){setTimeout(()=>{this.flgShowPanel=!0},1200)}static#e=this.\u0275fac=function(ct){return new(ct||Qt)};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-quote"]],inputs:{quote:"quote",termCaption:"termCaption",showPanel:"showPanel",panelExpanded:"panelExpanded"},decls:5,vars:1,consts:[["informationBlock",""],["quoteDetailsBlock",""],[4,"ngTemplateOutlet"],["fxFlex","100",1,"flat-expansion-panel","mb-1",3,"expanded","ngClass"],["fxLayoutAlign","start center","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],[3,"fxFlex"],["fxLayoutAlign","start center",1,"font-bold-500"],["matTooltip","Estimated fee charged by the loop server for the swap",1,"info-icon","info-icon-text"],[1,"foreground-secondary-text"],["matTooltip","An estimate of the on-chain fee that needs to be paid to sweep the HTLC",1,"info-icon","info-icon-text"],["fxFlex","35",4,"ngIf"],[1,"w-100","my-1"],["fxFlex","50"],["matTooltip","Maximum off-chain fee that may be paid for routing the payment amount to the server",1,"info-icon","info-icon-text"],["matTooltip","Maximum off-chain fee that may be paid for routing the pre-payment amount to the server","matTooltipPosition","before",1,"info-icon","info-icon-text"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxFlex","35"],["matTooltip","The part of the swap fee that is requested as a prepayment","matTooltipPosition","before",1,"info-icon","info-icon-text"],["fxFlex","100"],["matTooltip","The node pubkey, where the swap payments will be sent",1,"info-icon","info-icon-text"]],template:function(ct,wt){if(1&ct&&d.DNE(0,C,1,0,"ng-container",2)(1,L,7,9,"ng-template",null,0,d.C5r)(3,V,38,15,"ng-template",null,1,d.C5r),2&ct){const Ut=d.sdS(2),xi=d.sdS(4);d.Y8G("ngTemplateOutlet",wt.showPanel?Ut:xi)}},dependencies:[F.YU,F.bT,F.T3,$.DJ,$.sA,$.UI,j.PW,ee.GK,ee.Z2,ee.WN,ie.An,m.q,D.oV,F.QX]})}return Qt})();function ne(Qt,Mt){1&Qt&&d.eu8(0)}function Ee(Qt,Mt){if(1&Qt&&(d.j41(0,"div",3)(1,"span",4),d.EFF(2),d.k0s()()),2&Qt){const it=d.XpG();d.R7$(2),d.JRh(null!=it.loopStatus&&it.loopStatus.error?null==it.loopStatus?null:it.loopStatus.error:"Unknown Error.")}}function ze(Qt,Mt){if(1&Qt&&(d.j41(0,"div",3)(1,"div",5)(2,"div",6)(3,"h4",7),d.EFF(4,"ID"),d.k0s(),d.j41(5,"span",4),d.EFF(6),d.k0s()()(),d.nrm(7,"mat-divider",8),d.j41(8,"div",5)(9,"div",6)(10,"h4",7),d.EFF(11,"HTLC Address"),d.k0s(),d.j41(12,"span",4),d.EFF(13),d.k0s()()()()),2&Qt){const it=d.XpG();d.R7$(6),d.JRh(null==it.loopStatus?null:it.loopStatus.id_bytes),d.R7$(7),d.JRh(null==it.loopStatus?null:it.loopStatus.htlc_address)}}let qe=(()=>{class Qt{constructor(){}static#e=this.\u0275fac=function(ct){return new(ct||Qt)};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-status"]],inputs:{loopStatus:"loopStatus"},decls:5,vars:1,consts:[["loopFailedBlock",""],["loopSuccessfulBlock",""],[4,"ngTemplateOutlet"],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"]],template:function(ct,wt){if(1&ct&&d.DNE(0,ne,1,0,"ng-container",2)(1,Ee,3,1,"ng-template",null,0,d.C5r)(3,ze,14,2,"ng-template",null,1,d.C5r),2&ct){const Ut=d.sdS(2),xi=d.sdS(4);d.Y8G("ngTemplateOutlet",null!=wt.loopStatus&&wt.loopStatus.error?Ut:xi)}},dependencies:[F.T3,$.DJ,$.sA,$.UI,m.q]})}return Qt})();var Ke=g(6949);const se=(Qt,Mt)=>({"small-svg":Qt,"large-svg":Mt});function X(Qt,Mt){1&Qt&&d.eu8(0)}function me(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",7)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),d.nrm(8,"circle",12)(9,"path",13),d.k0s(),d.j41(10,"g",14),d.nrm(11,"ellipse",15)(12,"ellipse",16)(13,"rect",17)(14,"rect",18)(15,"rect",19)(16,"rect",20)(17,"rect",21)(18,"rect",22)(19,"rect",23)(20,"rect",24)(21,"rect",25)(22,"rect",26)(23,"rect",27)(24,"rect",28)(25,"rect",29),d.k0s()()()()(),d.joV(),d.j41(26,"div",30)(27,"mat-card-title"),d.EFF(28,"Loop In explained."),d.k0s()(),d.j41(29,"div",31)(30,"mat-card-subtitle",32),d.EFF(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function ce(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",33)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",34),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40),d.nrm(13,"rect",41)(14,"rect",42)(15,"rect",43)(16,"circle",44)(17,"rect",45)(18,"rect",46)(19,"circle",47)(20,"rect",48)(21,"rect",49)(22,"rect",50)(23,"rect",51)(24,"rect",52)(25,"circle",53)(26,"circle",54)(27,"circle",55),d.k0s(),d.j41(28,"g",56)(29,"g",57)(30,"g",58),d.nrm(31,"path",59)(32,"rect",60)(33,"polygon",61),d.j41(34,"g",62),d.nrm(35,"path",63),d.k0s(),d.nrm(36,"rect",64)(37,"rect",65)(38,"rect",66)(39,"rect",67)(40,"rect",68)(41,"rect",69)(42,"rect",70)(43,"path",71)(44,"path",72),d.k0s(),d.j41(45,"g",73),d.nrm(46,"path",74)(47,"path",75)(48,"path",76)(49,"path",77)(50,"path",78)(51,"path",79)(52,"path",80)(53,"path",81)(54,"path",82)(55,"path",83)(56,"path",84)(57,"circle",85)(58,"circle",86),d.k0s(),d.nrm(59,"path",87),d.k0s()()()()()(),d.joV(),d.j41(60,"div",30)(61,"mat-card-title"),d.EFF(62,"Step 1: Deciding to Loop In"),d.k0s()(),d.j41(63,"div",31)(64,"mat-card-subtitle",32),d.EFF(65," Your outgoing capacity is depleted and you want to regain it without opening new channels. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function fe(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",88)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",89),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",90)(10,"g",91)(11,"g",92)(12,"g",93)(13,"g",94),d.nrm(14,"circle",95)(15,"path",96),d.j41(16,"g",97),d.nrm(17,"polygon",98)(18,"polygon",99)(19,"path",100),d.k0s(),d.j41(20,"g",101),d.nrm(21,"polygon",102)(22,"path",103)(23,"rect",104)(24,"path",105)(25,"rect",106)(26,"rect",107)(27,"rect",108)(28,"rect",109)(29,"circle",110)(30,"path",111),d.j41(31,"g",112)(32,"g",113),d.nrm(33,"g",114),d.k0s(),d.nrm(34,"g",115),d.k0s()()(),d.j41(35,"g",116)(36,"g",40),d.nrm(37,"rect",117)(38,"rect",42)(39,"rect",43)(40,"circle",118)(41,"rect",45)(42,"rect",46)(43,"circle",119)(44,"rect",48)(45,"rect",49)(46,"rect",50)(47,"rect",51)(48,"rect",52)(49,"circle",120)(50,"circle",54)(51,"circle",55)(52,"circle",121),d.k0s(),d.j41(53,"g",56)(54,"g",57)(55,"g",58),d.nrm(56,"path",59)(57,"rect",60)(58,"polygon",61),d.j41(59,"g",122),d.nrm(60,"path",63),d.k0s(),d.nrm(61,"rect",123)(62,"rect",124)(63,"rect",125)(64,"rect",126)(65,"rect",127)(66,"rect",128)(67,"rect",129)(68,"path",130)(69,"path",72),d.k0s(),d.j41(70,"g",73),d.nrm(71,"path",131)(72,"path",132)(73,"path",133)(74,"path",134)(75,"path",135)(76,"path",136)(77,"path",80)(78,"path",81)(79,"path",137)(80,"path",83)(81,"path",138)(82,"circle",85)(83,"circle",86),d.k0s(),d.nrm(84,"path",139),d.k0s()()()(),d.nrm(85,"path",140)(86,"path",141),d.k0s()()()(),d.joV(),d.j41(87,"div",30)(88,"mat-card-title"),d.EFF(89,"Step 2: Send payment out"),d.k0s()(),d.j41(90,"div",31)(91,"mat-card-subtitle",32),d.EFF(92," Your node sends funds on-chain to loop server to be swapped with off-chain liquidity. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function ke(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",142)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"g",90)(5,"g",143)(6,"g",144)(7,"g")(8,"g",145)(9,"g",146),d.nrm(10,"circle",12)(11,"path",147),d.k0s(),d.j41(12,"g",14),d.nrm(13,"ellipse",148)(14,"ellipse",16)(15,"rect",17)(16,"rect",18)(17,"rect",19)(18,"rect",20)(19,"rect",21)(20,"rect",22)(21,"rect",23)(22,"rect",24)(23,"rect",25)(24,"rect",26)(25,"rect",27)(26,"rect",28)(27,"rect",29),d.k0s()(),d.j41(28,"g",149),d.nrm(29,"polygon",150)(30,"polygon",99)(31,"path",151),d.k0s(),d.j41(32,"g",152),d.nrm(33,"polygon",102)(34,"path",103)(35,"rect",104)(36,"path",105)(37,"rect",106)(38,"rect",107)(39,"rect",108)(40,"rect",109)(41,"circle",110)(42,"path",111),d.j41(43,"g",112)(44,"g",113),d.nrm(45,"g",114),d.k0s(),d.nrm(46,"g",115),d.k0s()()(),d.nrm(47,"path",153),d.k0s()()()(),d.joV(),d.j41(48,"div",30)(49,"mat-card-title"),d.EFF(50,"Step 3: Recieve Funds Off-chain"),d.k0s()(),d.j41(51,"div",31)(52,"mat-card-subtitle",32),d.EFF(53," Loop server sends equivalent funds off-chain to your node by making a lightning payment to you. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function mt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",154)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",34),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",90)(10,"g",155)(11,"g",156)(12,"g",157)(13,"g",158)(14,"g",40),d.nrm(15,"rect",159)(16,"rect",160)(17,"rect",161)(18,"circle",162)(19,"rect",163)(20,"rect",164)(21,"circle",165)(22,"rect",166)(23,"rect",167)(24,"rect",168)(25,"rect",169)(26,"circle",170)(27,"circle",171),d.k0s(),d.j41(28,"g",172),d.nrm(29,"path",173)(30,"rect",174)(31,"polygon",175)(32,"circle",176)(33,"path",177)(34,"rect",178)(35,"rect",179)(36,"rect",180)(37,"rect",181)(38,"rect",182)(39,"rect",183)(40,"rect",184)(41,"path",185)(42,"path",186),d.k0s(),d.nrm(43,"path",187),d.k0s()(),d.nrm(44,"circle",188),d.k0s()()()(),d.joV(),d.j41(45,"div",30)(46,"mat-card-title"),d.EFF(47,"Done!"),d.k0s()(),d.j41(48,"div",31)(49,"mat-card-subtitle",32),d.EFF(50," You send the payment on-chain from your wallet and also move remote balance to the local side of the node, gaining outgoing capacity. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,se,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}let _e=(()=>{class Qt{constructor(it){this.commonService=it,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new d.bkB,this.screenSize="",this.screenSizeEnum=f.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(it){2===it.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===it.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(ct){return new(ct||Qt)(d.rXU(W.h))};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-in-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 108 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","Loopv0.2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopIn_Step01","transform","translate(-594.000000, -215.000000)","fill-rule","nonzero"],["id","Loop_Step01","transform","translate(594.000000, 215.000000)"],["id","Group-16","transform","translate(23.000000, 0.000000)"],["id","Oval","cx","42.4877419","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M56.0827415,28.5000036 C60.4468211,28.5000036 63.9999285,25.1343958 63.9999285,21.0000215 C63.9999285,16.8656472 60.4468211,13.5000393 56.0827415,13.5000393 C52.9843297,13.5000393 50.5608889,15.4359631 48.9999642,17.1843872 C47.4390396,15.4359631 45.0155987,13.5000393 41.9171869,13.5000393 C37.5531074,13.5000393 34,16.8656472 34,21.0000215 C34,25.1343958 37.5531074,28.5000036 41.9171869,28.5000036 C45.0155987,28.5000036 47.4390396,26.5640798 48.9999642,24.8156557 C50.5608889,26.5640798 52.9843297,28.5000036 56.0827415,28.5000036 Z M41.9171869,24.0000143 C40.0328073,24.0000143 38.4999893,22.6546959 38.4999893,21.0000286 C38.4999893,19.3453471 40.0328073,18.0000286 41.9171869,18.0000286 C43.707771,18.0000286 45.3577763,19.6921938 46.3234264,21.0000286 C45.3671604,22.2937501 43.7031019,24.0000143 41.9171869,24.0000143 Z M56.0827415,24.0000143 C54.2921574,24.0000143 52.6421522,22.3078492 51.676502,21.0000286 C52.6327681,19.7062929 54.2968266,18.0000286 56.0827415,18.0000286 C57.9671212,18.0000286 59.4999392,19.3453471 59.4999392,21.0000286 C59.4999392,22.6546959 57.9671212,24.0000143 56.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Group-21","transform","translate(0.000000, 36.000000)"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-7"],["id","Oval","opacity","0.1","cx","48.644129","cy","75.1589677","rx","40.8402581","ry","5.55600756",1,"fill-color-27"],["id","Rectangle","x","25.2325161","y","6.09470968","width","54.1068387","height","62.9512258",1,"fill-color-26"],["id","Rectangle","x","20","y","1.24344979e-14","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","20","y","26","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","19.7698065","y","52.9179355","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","67.6335484","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 200 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","0%","id","linearGradient-1"],["stop-color","#808080","stop-opacity","0.25","offset","0%"],["stop-color","#808080","stop-opacity","0.12","offset","54%"],["stop-color","#808080","stop-opacity","0.1","offset","100%"],["id","LoopIn_Step02","transform","translate(-542.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step02","transform","translate(542.000000, 210.000000)"],["id","Group-2"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-11"],["id","Rectangle","x","1.34483737","y","60.660286","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","67.352783","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","31.345208","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","38.0377051","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","2.03013005","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","8.72460769","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Rectangle","x","7.80560248","y","67.352783","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","38.0377051","width","33.2298507","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","8.72460769","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.93434243",1,"fill-color-31"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","45.3719212","r","7.93434243"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","74.6850186","r","7.93434243"],["id","Group-16","transform","translate(55.804478, 34.674627)"],["id","Group-29","transform","translate(0.310627, 0.751284)"],["id","Group"],["d","M132.777455,1.04124409 L82.2582659,1.04124409 L82.2582659,0 L59.3509036,0 L59.3509036,1.04124409 L8.62346042,1.04124409 C7.71715136,1.04124358 6.84796221,1.40127322 6.20710493,2.0421305 C5.56624765,2.68298778 5.20621852,3.55217693 5.20621852,4.45848599 L5.20621852,73.6347918 C5.20621852,74.5411031 5.56624437,75.4102953 6.2071016,76.0511558 C6.84795882,76.6920163 7.71714912,77.0520512 8.62346042,77.0520512 L132.777455,77.0520512 C134.664749,77.0520512 136.194697,75.522091 136.194697,73.6347977 L136.194697,4.45848599 C136.194697,3.55217693 135.834668,2.68298778 135.193811,2.0421305 C134.552953,1.40127322 133.683764,1.04124358 132.777455,1.04124409 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.78769098","y","7.08045867","width","121.825532","height","68.7220946",1,"fill-color-7"],["id","Path","opacity","0.306775484","points","96.7732181 75.8025901 9.78772787 75.8025901 9.78772787 7.08050333",1,"fill-color-27"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary-darker"],["d","M14.5668332,29.1332406 C8.67527117,29.1332406 3.36383033,25.5842492 1.10922733,20.1411555 C-1.14537566,14.6980619 0.100864684,8.43279022 4.26682842,4.26682704 C8.43279215,0.100863866 14.698064,-1.14537564 20.1411573,1.10922807 C25.5842507,3.36383179 29.1332406,8.67527311 29.1332406,14.5668351 C29.124133,22.607864 22.6078621,29.1241341 14.5668332,29.1332406 L14.5668332,29.1332406 Z M14.5668332,0.190838576 C6.62718953,0.190838576 0.190836635,6.62719147 0.190836635,14.5668351 C0.190836635,22.5064788 6.62718953,28.9428317 14.5668332,28.9428317 C22.5064768,28.9428317 28.9428297,22.5064788 28.9428297,14.5668351 C28.9338602,6.63090975 22.5027586,0.199808125 14.5668332,0.190838576 L14.5668332,0.190838576 Z","id","Shape"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-5"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-19"],["d","M139.615294,74.5530572 L127.725913,74.5530572 L127.725913,73.6964356 C127.725915,73.6513884 127.708021,73.6081857 127.676168,73.5763323 C127.644315,73.544479 127.601113,73.5265862 127.556065,73.5265862 L123.479706,73.5265862 C123.434659,73.5265862 123.391457,73.5444797 123.359604,73.5763329 C123.327751,73.6081861 123.309857,73.6513886 123.309859,73.6964356 L123.309859,74.5530572 L120.762134,74.5530572 L120.762134,73.6964356 C120.762135,73.6513886 120.744241,73.6081861 120.712388,73.5763329 C120.680536,73.5444797 120.637333,73.5265862 120.592286,73.5265862 L116.515927,73.5265862 C116.47088,73.5265862 116.427677,73.5444789 116.395824,73.5763322 C116.36397,73.6081855 116.346076,73.6513882 116.346078,73.6964356 L116.346078,74.5530572 L113.798355,74.5530572 L113.798355,73.6964356 C113.798356,73.6513882 113.780462,73.6081855 113.748609,73.5763322 C113.716755,73.5444789 113.673553,73.5265862 113.628505,73.5265862 L109.552146,73.5265862 C109.507099,73.5265862 109.463897,73.5444797 109.432044,73.5763329 C109.400191,73.6081861 109.382297,73.6513886 109.382299,73.6964356 L109.382299,74.5530572 L106.834574,74.5530572 L106.834574,73.6964356 C106.834575,73.6513886 106.816681,73.6081861 106.784828,73.5763329 C106.752975,73.5444797 106.709773,73.5265862 106.664726,73.5265862 L102.588363,73.5265862 C102.543316,73.5265862 102.500113,73.544479 102.46826,73.5763323 C102.436407,73.6081857 102.418513,73.6513884 102.418516,73.6964356 L102.418516,74.5530572 L99.8707946,74.5530572 L99.8707946,73.6964356 C99.8707961,73.6513882 99.8529018,73.6081855 99.8210486,73.5763322 C99.7891953,73.5444789 99.7459925,73.5265862 99.7009452,73.5265862 L95.6245878,73.5265862 C95.5795404,73.5265862 95.5363377,73.5444789 95.5044844,73.5763322 C95.4726311,73.6081855 95.4547369,73.6513882 95.4547384,73.6964356 L95.4547384,74.5530572 L92.9070135,74.5530572 L92.9070135,73.6964356 C92.9070151,73.6513886 92.889121,73.6081861 92.8572682,73.5763329 C92.8254153,73.5444797 92.7822131,73.5265862 92.7371661,73.5265862 L88.6608067,73.5265862 C88.6157597,73.5265862 88.5725575,73.5444797 88.5407046,73.5763329 C88.5088518,73.6081861 88.4909577,73.6513886 88.4909593,73.6964356 L88.4909593,74.5530572 L85.9432383,74.5530572 L85.9432383,73.6964356 C85.9432399,73.6513886 85.9253458,73.6081861 85.893493,73.5763329 C85.8616401,73.5444797 85.8184379,73.5265862 85.7733909,73.5265862 L53.8419073,73.5265862 C53.7968603,73.5265862 53.7536581,73.5444797 53.7218052,73.5763329 C53.6899524,73.6081861 53.6720584,73.6513886 53.6720599,73.6964356 L53.6720599,74.5530572 L51.124335,74.5530572 L51.124335,73.6964356 C51.1243366,73.6513882 51.1064423,73.6081855 51.074589,73.5763322 C51.0427358,73.5444789 50.999533,73.5265862 50.9544857,73.5265862 L46.8781379,73.5265862 C46.8330906,73.5265862 46.7898879,73.5444789 46.7580346,73.5763322 C46.7261813,73.6081855 46.708287,73.6513882 46.7082886,73.6964356 L46.7082886,74.5530572 L44.160554,74.5530572 L44.160554,73.6964356 C44.1605561,73.6513884 44.1426622,73.6081857 44.1108092,73.5763323 C44.0789563,73.544479 44.0357537,73.5265862 43.9907066,73.5265862 L39.9143472,73.5265862 C39.8693002,73.5265862 39.8260979,73.5444797 39.7942451,73.5763329 C39.7623922,73.6081861 39.7444982,73.6513886 39.7444998,73.6964356 L39.7444998,74.5530572 L37.1967749,74.5530572 L37.1967749,73.6964356 C37.1967764,73.6513886 37.1788824,73.6081861 37.1470296,73.5763329 C37.1151767,73.5444797 37.0719745,73.5265862 37.0269275,73.5265862 L32.9505681,73.5265862 C32.9055208,73.5265862 32.862318,73.5444789 32.8304647,73.5763322 C32.7986115,73.6081855 32.7807172,73.6513882 32.7807187,73.6964356 L32.7807187,74.5530572 L30.2329958,74.5530572 L30.2329958,73.6964356 C30.2329973,73.6513882 30.215103,73.6081855 30.1832498,73.5763322 C30.1513965,73.5444789 30.1081938,73.5265862 30.0631464,73.5265862 L25.986787,73.5265862 C25.94174,73.5265862 25.8985378,73.5444797 25.866685,73.5763329 C25.8348321,73.6081861 25.8169381,73.6513886 25.8169396,73.6964356 L25.8169396,74.5530572 L23.2692109,74.5530572 L23.2692109,73.6964356 C23.2692124,73.6513886 23.2513184,73.6081861 23.2194655,73.5763329 C23.1876127,73.5444797 23.1444104,73.5265862 23.0993634,73.5265862 L19.0230079,73.5265862 C18.9779608,73.5265862 18.9347582,73.544479 18.9029053,73.5763323 C18.8710523,73.6081857 18.8531585,73.6513884 18.8531605,73.6964356 L18.8531605,74.5530572 L16.3054357,74.5530572 L16.3054357,73.6964356 C16.3054372,73.6513882 16.2875429,73.6081855 16.2556896,73.5763322 C16.2238364,73.5444789 16.1806336,73.5265862 16.1355863,73.5265862 L12.0592288,73.5265862 C12.0141815,73.5265862 11.9709788,73.5444789 11.9391255,73.5763322 C11.9072722,73.6081855 11.8893779,73.6513882 11.8893795,73.6964356 L11.8893795,74.5530572 L4.07635746,74.5530572 C1.82504753,74.5530594 0,76.3781067 0,78.6294166 L0,80.4726504 C0,82.7239563 1.82505163,84.5489982 4.07635746,84.5489982 L139.615294,84.5489982 C141.8666,84.5489982 143.691654,82.7239566 143.691654,80.4726504 L143.691654,78.6294166 C143.691654,76.3781064 141.866605,74.5530594 139.615294,74.5530572 Z","id","Path",1,"fill-color-20"],["id","Group","transform","translate(14.563343, 25.890388)"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary-darker"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M54.316416,4.55250111 L54.316416,3.34665629 C54.316416,1.49819202 52.8172532,0 50.9687888,0 L3.34762718,0 C1.49916283,0 0,1.49819202 0,3.34665629 L0,5.56999336 L54.316416,4.55250111 Z","id","Path",1,"fill-color-16"],["d","M55.6018738,5.73601547 L55.6018738,39.231705 C55.6018738,39.9999836 55.2966099,40.7367813 54.7532639,41.2799452 C54.2099179,41.8231092 53.4730179,42.1278687 52.7047393,42.1278687 L2.89810531,42.1278687 C1.29897753,42.1273325 0.00291266866,40.8308329 0.00291266866,39.231705 L0.00291266866,2.35926161 C1.43012031,2.88936731 1.43012031,2.88936731 2.89810531,2.84470639 L52.7047393,2.84470639 C54.3025103,2.84470316 55.5986611,4.13824772 55.6018738,5.73601547 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-19"],["d","M55.4601239,18.5459322 L55.4601239,29.2577567 L45.0716057,29.2577567 C42.141738,29.2183086 39.7873207,26.8319777 39.7873207,23.9018444 C39.7873207,20.9717112 42.141738,18.5853803 45.0716057,18.5459322 L55.4601239,18.5459322 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-17"],["id","Oval","opacity","0.1","cx","45.7114219","cy","23.9023299","r","2.08838343",1,"fill-color-27"],["id","Oval","cx","45.8531718","cy","23.6188301","r","2.08838343",1,"fill-color-28"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-30"],["fxFlex","30","viewBox","0 0 364 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","8.86848147e-15%","id","linearGradient-1"],["id","Loopv0.3","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopIn_Step03","transform","translate(-1127.000000, -164.000000)"],["id","LoopIn_Step03","transform","translate(1127.000000, 164.000000)"],["id","Group-21"],["id","Group-35","transform","translate(107.000000, 10.000000)"],["id","Oval","fill-rule","nonzero","cx","214.487742","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M232.082742,28.5000036 C236.446821,28.5000036 239.999928,25.1343958 239.999928,21.0000215 C239.999928,16.8656472 236.446821,13.5000393 232.082742,13.5000393 C228.98433,13.5000393 226.560889,15.4359631 224.999964,17.1843872 C223.43904,15.4359631 221.015599,13.5000393 217.917187,13.5000393 C213.553107,13.5000393 210,16.8656472 210,21.0000215 C210,25.1343958 213.553107,28.5000036 217.917187,28.5000036 C221.015599,28.5000036 223.43904,26.5640798 224.999964,24.8156557 C226.560889,26.5640798 228.98433,28.5000036 232.082742,28.5000036 Z M217.917187,24.0000143 C216.032807,24.0000143 214.499989,22.6546959 214.499989,21.0000286 C214.499989,19.3453471 216.032807,18.0000286 217.917187,18.0000286 C219.707771,18.0000286 221.357776,19.6921938 222.323426,21.0000286 C221.36716,22.2937501 219.703102,24.0000143 217.917187,24.0000143 Z M232.082742,24.0000143 C230.292157,24.0000143 228.642152,22.3078492 227.676502,21.0000286 C228.632768,19.7062929 230.296827,18.0000286 232.082742,18.0000286 C233.967121,18.0000286 235.499939,19.3453471 235.499939,21.0000286 C235.499939,22.6546959 233.967121,24.0000143 232.082742,24.0000143 Z","id","i","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-44","transform","translate(0.000000, 64.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-20"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-23"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-20"],["id","Group-43","transform","translate(152.000000, 35.000000)"],["id","Path","fill-rule","nonzero","points","-9.84073267e-14 7.36243469 92.3919279 7.36243469 92.3919279 70.3073253 -1.13686838e-13 70.3073253",1,"fill-color-23"],["d","M97.5448374,1.70530257e-13 L6.62592538,1.70530257e-13 C6.01615907,0.000922175294 5.52114394,0.495001701 5.52114394,1.104768 L5.52114394,62.57664 C5.52114394,62.8696481 5.63752746,63.150658 5.84471672,63.3578447 C6.05190598,63.5650315 6.3329173,63.681408 6.62592538,63.681408 L97.5448374,63.681408 C97.8378436,63.681408 98.1188523,63.5650282 98.3260389,63.3578415 C98.5332256,63.1506549 98.6496054,62.8696462 98.6496054,62.57664 L98.6496054,1.104768 C98.6496054,0.495005713 98.1545997,0.000926622272 97.5448374,1.70530257e-13 L97.5448374,1.70530257e-13 Z M97.9130952,62.57664 C97.9130952,62.6744022 97.8747043,62.7682496 97.8055756,62.8373783 C97.736447,62.9065069 97.6425996,62.9448978 97.5448374,62.9448978 L6.62592538,62.9448978 C6.52816341,62.9448978 6.4343164,62.906506 6.3651879,62.8373775 C6.29605941,62.768249 6.25766754,62.674402 6.25766754,62.57664 L6.25766754,1.104768 C6.25766754,0.901512883 6.42267026,0.736512 6.62592538,0.736512 L97.5448374,0.736512 C97.7480931,0.736512 97.9130952,0.901512271 97.9130952,1.104768 L97.9130952,62.57664 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","10.3066764","y","43.4358624","width","41.5947948","height","4.78524211","rx","0.5376",1,"fill-color-19"],["d","M89.8141359,39.3872559 L76.5649839,39.3872559 C76.2719769,39.3872559 75.9909677,39.5036372 75.7837792,39.7108232 C75.5765907,39.9180091 75.4602025,40.1990169 75.4602025,40.4920239 L75.4602025,50.7978159 C75.4602025,51.090824 75.576586,51.3718339 75.7837753,51.5790207 C75.9909645,51.7862074 76.2719759,51.9025839 76.5649839,51.9025839 L89.8141359,51.9025839 C90.107143,51.9025839 90.3881533,51.7862079 90.5953406,51.5790206 C90.8025279,51.3718333 90.9189039,51.090823 90.9189039,50.7978159 L90.9189039,40.4920239 C90.9189039,40.199018 90.8025232,39.9180097 90.5953367,39.7108232 C90.3881502,39.5036367 90.1071419,39.3872559 89.8141359,39.3872559 Z M90.1823938,50.7978159 C90.182087,51.0010717 90.0173917,51.165767 89.8141359,51.1660719 L76.5649839,51.1660719 C76.3617256,51.165767 76.1970256,51.0010743 76.19671,50.7978159 L76.19671,40.4920239 C76.1964064,40.3942603 76.2351088,40.3004129 76.30424,40.2312847 C76.3733712,40.1621565 76.4672203,40.1234582 76.5649839,40.1237661 L89.8141359,40.1237661 C89.9118981,40.1234582 90.0057456,40.162157 90.0748742,40.2312857 C90.1440029,40.3004143 90.1827017,40.3942617 90.1823938,40.4920239 L90.1823938,50.7978159 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","41.7652758","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","44.7100416","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","47.6548047","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","11.4109632","y","4.41773875","width","19.1409684","height","8.09810266","rx","0.5376",1,"fill-color-19"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-4"],["d","M50.1798649,51.9764517 C43.6553251,51.9764517 37.7732336,48.0461636 35.2764005,42.0182748 C32.7795674,35.990386 34.1597014,29.0519859 38.773248,24.4384399 C43.3867946,19.824894 50.3251948,18.4447609 56.3530833,20.9415948 C62.3809718,23.4384287 66.3112582,29.3205207 66.3112582,35.8450605 C66.3011721,44.7500015 59.0848059,51.9663668 50.1798649,51.9764517 L50.1798649,51.9764517 Z M50.1798649,19.9245354 C41.3872016,19.9245354 34.2593397,27.0523972 34.2593397,35.8450605 C34.2593397,44.6377237 41.3872016,51.7655856 50.1798649,51.7655856 C58.9725281,51.7655856 66.10039,44.6377237 66.10039,35.8450605 C66.0904567,27.056515 58.9684103,19.9344686 50.1798649,19.9245354 L50.1798649,19.9245354 Z","id","Shape","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-23","transform","translate(5.000000, 0.001193)"],["id","Group-22"],["id","Group","transform","translate(0.378134, 0.000000)"],["id","Group-24","transform","translate(29.048000, 19.712000)"],["id","LoopIn_Step03","fill-rule","nonzero"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-10"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","15.8607624","r","7.93434243"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.35996418",1,"fill-color-31"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-4"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-20"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-20"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-16"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-9"],["d","M93.2292414,91.9116485 L93.2292414,89.7922708 C93.647506,89.8022089 94.0558324,89.8022089 94.4442517,89.8022089 L94.4442517,91.9116485 L95.9779294,91.9116485 L95.9779294,89.7623948 C98.5473303,89.6229527 100.264986,88.975618 100.494057,86.5555973 C100.673282,84.6136241 99.757032,83.7471573 98.3030443,83.3986138 C99.1794183,82.9504733 99.7371558,82.1537275 99.6076827,80.8291821 C99.4383337,79.0166511 97.9497787,78.4091306 95.9778985,78.2398742 L95.9778985,75.7301945 L94.4442208,75.7301945 L94.4442208,78.1701531 C94.0458325,78.1701531 93.6375061,78.1800912 93.2292106,78.1900602 L93.2292106,75.7301945 L91.695502,75.7301945 L91.695502,78.2398742 C91.1316227,78.2569109 90.4748746,78.2485777 88.6181777,78.2398742 L88.6181777,79.8731181 C89.8290831,79.8516987 90.4644118,79.7738914 90.6099957,80.5502979 L90.6099957,87.4220333 C90.517559,88.0380413 90.0245427,87.9493391 88.926907,87.9299259 L88.6181777,89.7524258 L89.5798445,89.7528809 C91.4824304,89.7548325 91.6955329,89.7623948 91.6955329,89.7623948 L91.6955329,91.9116485 L93.2292414,91.9116485 Z M93.2591175,83.0400705 L93.2591175,79.9826533 C94.1255534,79.9826533 96.8343964,79.7137998 96.8343964,81.5163618 C96.8343964,83.2392647 94.1255843,83.0400705 93.2591175,83.0400705 Z M93.2591175,87.9398948 L93.2591175,84.5737791 C94.2948407,84.5737791 97.4665153,84.2849568 97.4665153,86.2568678 C97.4665153,88.1589961 94.2948407,87.9398948 93.2591175,87.9398948 Z","id","b","fill-rule","nonzero","transform","translate(94.567271, 83.820921) rotate(14.000000) translate(-94.567271, -83.820921) ",1,"fill-color-9"],["d","M305.611064,96.181454 L305.611064,94.0620763 C306.029328,94.0720144 306.437655,94.0720144 306.826074,94.0720144 L306.826074,96.181454 L308.359752,96.181454 L308.359752,94.0322003 C310.929153,93.8927582 312.646809,93.2454235 312.875879,90.8254028 C313.055104,88.8834296 312.138854,88.0169628 310.684867,87.6684193 C311.561241,87.2202788 312.118978,86.423533 311.989505,85.0989876 C311.820156,83.2864566 310.331601,82.678936 308.359721,82.5096797 L308.359721,80 L306.826043,80 L306.826043,82.4399586 C306.427655,82.4399586 306.019328,82.4498967 305.611033,82.4598657 L305.611033,80 L304.077324,80 L304.077324,82.5096797 C303.513445,82.5267164 302.856697,82.5183832 301,82.5096797 L301,84.1429236 C302.210905,84.1215042 302.846234,84.0436969 302.991818,84.8201034 L302.991818,91.6918387 C302.899381,92.3078468 302.406365,92.2191446 301.308729,92.1997314 L301,94.0222313 L301.961667,94.0226864 C303.864253,94.024638 304.077355,94.0322003 304.077355,94.0322003 L304.077355,96.181454 L305.611064,96.181454 Z M305.64094,87.309876 L305.64094,84.2524587 C306.507376,84.2524587 309.216219,83.9836053 309.216219,85.7861673 C309.216219,87.5090702 306.507407,87.309876 305.64094,87.309876 Z M305.64094,92.2097003 L305.64094,88.8435846 C306.676663,88.8435846 309.848338,88.5547623 309.848338,90.5266733 C309.848338,92.4288016 306.676663,92.2097003 305.64094,92.2097003 Z","id","b","fill-rule","nonzero","transform","translate(306.949093, 88.090727) rotate(14.000000) translate(-306.949093, -88.090727) ",1,"fill-color-26"],["fxFlex","30","viewBox","0 0 278 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopIn_Step04","transform","translate(-1799.000000, -756.000000)"],["id","LoopIn_Step04","transform","translate(1799.000000, 756.000000)"],["id","Loop","fill-rule","nonzero"],["id","Group-16","transform","translate(24.000000, 0.000000)"],["d","M55.0827415,28.5000036 C59.4468211,28.5000036 62.9999285,25.1343958 62.9999285,21.0000215 C62.9999285,16.8656472 59.4468211,13.5000393 55.0827415,13.5000393 C51.9843297,13.5000393 49.5608889,15.4359631 47.9999642,17.1843872 C46.4390396,15.4359631 44.0155987,13.5000393 40.9171869,13.5000393 C36.5531074,13.5000393 33,16.8656472 33,21.0000215 C33,25.1343958 36.5531074,28.5000036 40.9171869,28.5000036 C44.0155987,28.5000036 46.4390396,26.5640798 47.9999642,24.8156557 C49.5608889,26.5640798 51.9843297,28.5000036 55.0827415,28.5000036 Z M40.9171869,24.0000143 C39.0328073,24.0000143 37.4999893,22.6546959 37.4999893,21.0000286 C37.4999893,19.3453471 39.0328073,18.0000286 40.9171869,18.0000286 C42.707771,18.0000286 44.3577763,19.6921938 45.3234264,21.0000286 C44.3671604,22.2937501 42.7031019,24.0000143 40.9171869,24.0000143 Z M55.0827415,24.0000143 C53.2921574,24.0000143 51.6421522,22.3078492 50.676502,21.0000286 C51.6327681,19.7062929 53.2968266,18.0000286 55.0827415,18.0000286 C56.9671212,18.0000286 58.4999392,19.3453471 58.4999392,21.0000286 C58.4999392,22.6546959 56.9671212,24.0000143 55.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-2"],["id","Group-44","transform","translate(27.000000, 69.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-19"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-19"],["id","Group-43","transform","translate(179.000000, 40.000000)"],["d","M225.805162,92.2474279 C226.071703,92.2474279 226.325569,92.1077892 226.465207,91.8666288 L232.050261,82.2197185 C232.345374,81.7151473 231.980441,81.0773212 231.393376,81.0773212 L227.731346,81.0773212 L229.083201,76.9583506 C229.210134,76.4759989 228.845202,76 228.346983,76 L223.777394,76 C223.396595,76 223.07291,76.2824384 223.022149,76.6600456 L222.006685,84.2760274 C221.946379,84.7329987 222.301798,85.1391782 222.76193,85.1391782 L226.528674,85.1391782 L225.065752,91.3112968 C224.951525,91.7936485 225.319618,92.2474279 225.805162,92.2474279 Z","id","b","fill-rule","nonzero","transform","translate(227.077378, 84.123714) rotate(14.000000) translate(-227.077378, -84.123714) ",1,"fill-color-12"],["fxFlex","30","viewBox","0 0 205 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopIn_Step05","transform","translate(-2386.000000, -764.000000)","fill-rule","nonzero"],["id","LoopIn_Step05","transform","translate(2386.000000, 764.000000)"],["id","Illustration_Step02"],["id","Group-31"],["id","Rectangle","x","0","y","0","width","90.1490688","height","100.616012",1,"fill-color-10"],["id","Rectangle","x","1.48932403","y","67.1775068","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","82.4918815","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","34.712875","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","42.1244006","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","50.0294431","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","2.2482432","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","24","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","42.1244006","width","36.8","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","9.66196224","width","51.2","height","16.0118784",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","50.2465905","r","8.78679245"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","82.7090289","r","8.78679245"],["id","Group","transform","translate(60.115627, 35.744427)"],["d","M133.318807,1.04548939 L82.5936439,1.04548939 L82.5936439,0 L59.5928852,0 L59.5928852,1.04548939 L8.65861943,1.04548939 C7.74861523,1.04548887 6.87588228,1.4069864 6.23241214,2.05045654 C5.58894199,2.69392669 5.22744498,3.56665964 5.22744498,4.47666384 L5.22744498,73.9350108 C5.22744498,74.8450173 5.5889387,75.7177532 6.23240879,76.3612266 C6.87587888,77.0047 7.74861298,77.3662028 8.65861943,77.3662028 L133.318807,77.3662028 C135.213795,77.3662028 136.749981,75.8300048 136.749981,73.9350167 L136.749981,4.47666384 C136.749981,3.56665964 136.388484,2.69392669 135.745014,2.05045654 C135.101544,1.4069864 134.228811,1.04548887 133.318807,1.04548939 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-25"],["id","Path","opacity","0.257273065","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-24"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-25"],["d","M31.5848237,68.0274261 C25.669241,68.0274261 20.3361447,64.4639649 18.0723494,58.9986791 C15.808554,53.5333932 17.0598755,47.2425772 21.2428244,43.0596288 C25.4257733,38.8766804 31.7165895,37.6253598 37.1818751,39.8891559 C42.6471607,42.1529519 46.2106203,47.4860487 46.2106203,53.4016314 C46.2014756,61.4754447 39.6586369,68.0182825 31.5848237,68.0274261 L31.5848237,68.0274261 Z M31.5848237,38.967022 C23.612809,38.967022 17.1502143,45.4296168 17.1502143,53.4016314 C17.1502143,61.3736461 23.612809,67.8362409 31.5848237,67.8362409 C39.5568383,67.8362409 46.0194331,61.3736461 46.0194331,53.4016314 C46.010427,45.4333502 39.5531049,38.9760281 31.5848237,38.967022 L31.5848237,38.967022 Z","id","Shape",1,"fill-color-primary"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","119.89017","y","8.50924347","width","4.7751428","height","4.7751428",1,"fill-color-6"],["d","M126.882344,15.5014148 L121.083948,15.5014148 L121.083948,9.70301894 L126.882344,9.70301894 L126.882344,15.5014148 Z M121.336061,15.2493191 L126.63024,15.2493191 L126.63024,9.95513218 L121.336061,9.95513218 L121.336061,15.2493191 Z","id","Shape",1,"fill-color-19"],["d","M140.184525,74.8570201 L128.246669,74.8570201 L128.246669,73.9969059 C128.246671,73.9516751 128.228704,73.9082962 128.196721,73.876313 C128.164738,73.8443298 128.12136,73.826364 128.076129,73.826364 L123.98315,73.826364 C123.937919,73.826364 123.89454,73.8443305 123.862558,73.8763135 C123.830575,73.9082966 123.812608,73.9516752 123.81261,73.9969059 L123.81261,74.8570201 L121.254497,74.8570201 L121.254497,73.9969059 C121.254499,73.9516752 121.236532,73.9082966 121.204549,73.8763135 C121.172566,73.8443305 121.129188,73.826364 121.083957,73.826364 L116.990978,73.826364 C116.945747,73.826364 116.902368,73.8443297 116.870385,73.8763129 C116.838402,73.908296 116.820435,73.9516749 116.820436,73.9969059 L116.820436,74.8570201 L114.262326,74.8570201 L114.262326,73.9969059 C114.262328,73.9516749 114.24436,73.908296 114.212377,73.8763129 C114.180394,73.8443297 114.137015,73.826364 114.091784,73.826364 L109.998805,73.826364 C109.953574,73.826364 109.910196,73.8443305 109.878213,73.8763135 C109.84623,73.9082966 109.828263,73.9516752 109.828265,73.9969059 L109.828265,74.8570201 L107.270153,74.8570201 L107.270153,73.9969059 C107.270154,73.9516752 107.252187,73.9082966 107.220204,73.8763135 C107.188222,73.8443305 107.144843,73.826364 107.099613,73.826364 L103.00663,73.826364 C102.961399,73.826364 102.91802,73.8443298 102.886037,73.876313 C102.854054,73.9082962 102.836088,73.9516751 102.83609,73.9969059 L102.83609,74.8570201 L100.277981,74.8570201 L100.277981,73.9969059 C100.277983,73.9516749 100.260016,73.908296 100.228032,73.8763129 C100.196049,73.8443297 100.15267,73.826364 100.107439,73.826364 L96.0144621,73.826364 C95.9692311,73.826364 95.9258522,73.8443297 95.8938691,73.8763129 C95.861886,73.908296 95.8439187,73.9516749 95.8439202,73.9969059 L95.8439202,74.8570201 L93.285808,74.8570201 L93.285808,73.9969059 C93.2858095,73.9516752 93.2678425,73.9082966 93.2358598,73.8763135 C93.2038771,73.8443305 93.1604987,73.826364 93.1152681,73.826364 L89.0222888,73.826364 C88.9770581,73.826364 88.9336797,73.8443305 88.901697,73.8763135 C88.8697143,73.9082966 88.8517473,73.9516752 88.8517489,73.9969059 L88.8517489,74.8570201 L86.2936405,74.8570201 L86.2936405,73.9969059 C86.293642,73.9516752 86.2756751,73.9082966 86.2436923,73.8763135 C86.2117096,73.8443305 86.1683312,73.826364 86.1231006,73.826364 L54.061428,73.826364 C54.0161974,73.826364 53.972819,73.8443305 53.9408363,73.8763135 C53.9088536,73.9082966 53.8908866,73.9516752 53.8908881,73.9969059 L53.8908881,74.8570201 L51.3327759,74.8570201 L51.3327759,73.9969059 C51.3327774,73.9516749 51.3148102,73.908296 51.282827,73.8763129 C51.2508439,73.8443297 51.207465,73.826364 51.162234,73.826364 L47.0692664,73.826364 C47.0240354,73.826364 46.9806565,73.8443297 46.9486734,73.8763129 C46.9166903,73.908296 46.898723,73.9516749 46.8987246,73.9969059 L46.8987246,74.8570201 L44.3406025,74.8570201 L44.3406025,73.9969059 C44.3406046,73.9516751 44.3226378,73.9082962 44.290655,73.876313 C44.2586721,73.8443298 44.2152934,73.826364 44.1700626,73.826364 L40.0770834,73.826364 C40.0318527,73.826364 39.9884743,73.8443305 39.9564916,73.8763135 C39.9245089,73.9082966 39.9065419,73.9516752 39.9065435,73.9969059 L39.9065435,74.8570201 L37.3484312,74.8570201 L37.3484312,73.9969059 C37.3484327,73.9516752 37.3304657,73.9082966 37.298483,73.8763135 C37.2665003,73.8443305 37.2231219,73.826364 37.1778913,73.826364 L33.084912,73.826364 C33.039681,73.826364 32.9963021,73.8443297 32.964319,73.8763129 C32.9323358,73.908296 32.9143686,73.9516749 32.9143701,73.9969059 L32.9143701,74.8570201 L30.3562598,74.8570201 L30.3562598,73.9969059 C30.3562614,73.9516749 30.3382941,73.908296 30.306311,73.8763129 C30.2743278,73.8443297 30.2309489,73.826364 30.1857179,73.826364 L26.0927387,73.826364 C26.047508,73.826364 26.0041296,73.8443305 25.9721469,73.8763135 C25.9401642,73.9082966 25.9221972,73.9516752 25.9221988,73.9969059 L25.9221988,74.8570201 L23.3640826,74.8570201 L23.3640826,73.9969059 C23.3640841,73.9516752 23.3461171,73.9082966 23.3141344,73.8763135 C23.2821517,73.8443305 23.2387733,73.826364 23.1935427,73.826364 L19.1005673,73.826364 C19.0553365,73.826364 19.0119578,73.8443298 18.979975,73.876313 C18.9479921,73.9082962 18.9300253,73.9516751 18.9300274,73.9969059 L18.9300274,74.8570201 L16.3719151,74.8570201 L16.3719151,73.9969059 C16.3719167,73.9516749 16.3539494,73.908296 16.3219663,73.8763129 C16.2899831,73.8443297 16.2466042,73.826364 16.2013733,73.826364 L12.1083959,73.826364 C12.0631649,73.826364 12.0197861,73.8443297 11.9878029,73.8763129 C11.9558198,73.908296 11.9378525,73.9516749 11.9378541,73.9969059 L11.9378541,74.8570201 L4.09297732,74.8570201 C1.83248849,74.8570223 0,76.6895106 0,78.9499994 L0,80.8007483 C0,83.061233 1.83249262,84.8937159 4.09297732,84.8937159 L140.184525,84.8937159 C142.44501,84.8937159 144.277504,83.0612333 144.277504,80.8007483 L144.277504,78.9499994 C144.277504,76.6895102 142.445014,74.8570223 140.184525,74.8570201 Z","id","Path",1,"fill-color-20"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-21"],["id","Oval","cx","74.1507041","cy","17.5648113","r","8.15070413",1,"fill-color-primary"]],template:function(ct,wt){if(1&ct&&d.DNE(0,X,1,0,"ng-container",5)(1,me,32,5,"ng-template",null,0,d.C5r)(3,ce,66,5,"ng-template",null,1,d.C5r)(5,fe,93,5,"ng-template",null,2,d.C5r)(7,ke,54,5,"ng-template",null,3,d.C5r)(9,mt,51,5,"ng-template",null,4,d.C5r),2&ct){const Ut=d.sdS(2),xi=d.sdS(4),Si=d.sdS(6),zi=d.sdS(8),en=d.sdS(10);d.Y8G("ngTemplateOutlet",1===wt.stepNumber?Ut:2===wt.stepNumber?xi:3===wt.stepNumber?Si:4===wt.stepNumber?zi:en)}},dependencies:[F.YU,F.T3,$.DJ,$.sA,$.UI,j.PW,J.Lc,J.dh],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Ke.k]}})}return Qt})();const be=(Qt,Mt)=>({"small-svg":Qt,"large-svg":Mt});function pe(Qt,Mt){1&Qt&&d.eu8(0)}function Ze(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",7)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),d.nrm(8,"circle",12)(9,"path",13),d.k0s(),d.j41(10,"g",14),d.nrm(11,"ellipse",15)(12,"ellipse",16)(13,"rect",17)(14,"rect",18)(15,"rect",19)(16,"rect",20)(17,"rect",21)(18,"rect",22)(19,"rect",23)(20,"rect",24)(21,"rect",25)(22,"rect",26)(23,"rect",27)(24,"rect",28)(25,"rect",29),d.k0s()()()()(),d.joV(),d.j41(26,"div",30)(27,"mat-card-title"),d.EFF(28,"Loop Out explained."),d.k0s()(),d.j41(29,"div",31)(30,"mat-card-subtitle",32),d.EFF(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function _t(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",33)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",34),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40)(13,"g",41)(14,"g",42),d.nrm(15,"rect",43)(16,"rect",44)(17,"rect",45)(18,"circle",46)(19,"rect",47)(20,"rect",48)(21,"circle",49)(22,"rect",50)(23,"rect",51)(24,"rect",52)(25,"rect",53)(26,"circle",54)(27,"circle",55),d.k0s(),d.j41(28,"g",56),d.nrm(29,"path",57)(30,"rect",58)(31,"polygon",59)(32,"circle",60)(33,"path",61)(34,"rect",62)(35,"rect",63)(36,"rect",64)(37,"rect",65)(38,"rect",66)(39,"rect",67)(40,"rect",68)(41,"path",69)(42,"path",70),d.k0s(),d.nrm(43,"path",71),d.k0s()(),d.nrm(44,"circle",72),d.k0s()()()(),d.joV(),d.j41(45,"div",30)(46,"mat-card-title"),d.EFF(47,"Step 1: Deciding to Loop Out"),d.k0s()(),d.j41(48,"div",31)(49,"mat-card-subtitle",32),d.EFF(50," You have a channel with a local balance amount and you want to gain inbound liquidity. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function at(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",73)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",74),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",8)(10,"g",75)(11,"g",76),d.nrm(12,"circle",77)(13,"path",78),d.j41(14,"g",79),d.nrm(15,"polygon",80)(16,"polygon",81)(17,"path",82),d.k0s(),d.j41(18,"g",83),d.nrm(19,"polygon",84)(20,"path",85)(21,"rect",86)(22,"path",87)(23,"rect",88)(24,"rect",89)(25,"rect",90)(26,"rect",91)(27,"circle",92)(28,"path",93),d.j41(29,"g",94)(30,"g",95),d.nrm(31,"g",96),d.k0s(),d.nrm(32,"g",97),d.k0s(),d.nrm(33,"path",98),d.k0s(),d.j41(34,"g",99)(35,"g",41)(36,"g",42),d.nrm(37,"rect",43)(38,"rect",44)(39,"rect",45)(40,"circle",46)(41,"rect",47)(42,"rect",48)(43,"circle",49)(44,"rect",50)(45,"rect",51)(46,"rect",52)(47,"rect",53)(48,"circle",100)(49,"circle",54)(50,"circle",55)(51,"circle",101),d.k0s(),d.j41(52,"g",56),d.nrm(53,"path",57)(54,"rect",102)(55,"polygon",103)(56,"circle",104)(57,"path",61)(58,"rect",105)(59,"rect",106)(60,"rect",107)(61,"rect",108)(62,"rect",109)(63,"rect",110)(64,"rect",68)(65,"path",69)(66,"path",70),d.k0s(),d.nrm(67,"path",111),d.k0s()()()()()(),d.joV(),d.j41(68,"div",30)(69,"mat-card-title"),d.EFF(70,"Step 2: Send lightning payment"),d.k0s()(),d.j41(71,"div",31)(72,"mat-card-subtitle",32),d.EFF(73," Your node pays a lightning invoice for the amount requested via the loop service. This moves the local balance, for the amount paid, to the remote side of the channel. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function pt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",112)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"g",8)(5,"g",113)(6,"g",114)(7,"g",115)(8,"g",116),d.nrm(9,"circle",12)(10,"path",117),d.k0s(),d.j41(11,"g",14),d.nrm(12,"ellipse",118)(13,"ellipse",16)(14,"rect",17)(15,"rect",18)(16,"rect",19)(17,"rect",20)(18,"rect",21)(19,"rect",22)(20,"rect",23)(21,"rect",24)(22,"rect",25)(23,"rect",26)(24,"rect",27)(25,"rect",28)(26,"rect",29),d.k0s()(),d.j41(27,"g",119),d.nrm(28,"polygon",80)(29,"polygon",120)(30,"path",82),d.k0s(),d.j41(31,"g",121),d.nrm(32,"polygon",84)(33,"path",85)(34,"rect",86)(35,"path",87)(36,"rect",88)(37,"rect",89)(38,"rect",90)(39,"rect",91)(40,"circle",122)(41,"path",93),d.j41(42,"g",94)(43,"g",95),d.nrm(44,"g",96),d.k0s(),d.nrm(45,"g",97),d.k0s(),d.nrm(46,"path",123),d.k0s()()()()(),d.joV(),d.j41(47,"div",30)(48,"mat-card-title"),d.EFF(49,"Step 3: Receive funds back"),d.k0s()(),d.j41(50,"div",31)(51,"mat-card-subtitle",32),d.EFF(52," Loop service then sends you a payment on-chain for the amount same as the lightning payment minus the fee. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}function Xt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",6),d.bIt("swipe",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.onSwipe(wt))}),d.qSk(),d.j41(1,"svg",124)(2,"desc"),d.EFF(3,"Created with Sketch."),d.k0s(),d.j41(4,"defs")(5,"linearGradient",34),d.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),d.k0s()(),d.j41(9,"g",8)(10,"g",125)(11,"g",126)(12,"g",42),d.nrm(13,"rect",127)(14,"rect",128)(15,"rect",129)(16,"circle",130)(17,"rect",131)(18,"rect",132)(19,"circle",133)(20,"rect",134)(21,"rect",135)(22,"rect",136)(23,"rect",137)(24,"rect",138)(25,"circle",139)(26,"circle",140)(27,"circle",141),d.k0s(),d.j41(28,"g",142)(29,"g",143)(30,"g",144),d.nrm(31,"path",145)(32,"rect",146)(33,"polygon",147),d.j41(34,"g",148),d.nrm(35,"path",149),d.k0s(),d.nrm(36,"rect",150)(37,"rect",151)(38,"rect",152)(39,"rect",153)(40,"rect",154)(41,"rect",155)(42,"rect",156)(43,"path",157)(44,"path",158),d.k0s(),d.j41(45,"g",159),d.nrm(46,"path",160)(47,"path",161)(48,"path",162)(49,"path",163)(50,"path",164)(51,"path",165)(52,"path",166)(53,"path",167)(54,"path",168)(55,"path",169)(56,"path",170)(57,"circle",171)(58,"circle",172),d.k0s(),d.nrm(59,"path",173),d.k0s()()()()()(),d.joV(),d.j41(60,"div",30)(61,"mat-card-title"),d.EFF(62,"Done!"),d.k0s()(),d.j41(63,"div",31)(64,"mat-card-subtitle",32),d.EFF(65," Final settlement occurs when your node sweeps the on-chain payment and the loop server settles the lightning invoice. You receive the payment on-chain in your wallet and also move local balance to the remote side of the channel, gaining inbound capacity. "),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@sliderAnimation",it.animationDirection),d.R7$(),d.Y8G("ngClass",d.l_i(2,be,it.screenSize===it.screenSizeEnum.XS,it.screenSize!==it.screenSizeEnum.XS))}}let ye=(()=>{class Qt{constructor(it){this.commonService=it,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new d.bkB,this.screenSize="",this.screenSizeEnum=f.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(it){2===it.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===it.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(ct){return new(ct||Qt)(d.rXU(W.h))};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-out-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 108 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","Loopv0.2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopOut_Step01","transform","translate(-594.000000, -215.000000)","fill-rule","nonzero"],["id","Loop_Step01","transform","translate(594.000000, 215.000000)"],["id","Group-16","transform","translate(23.000000, 0.000000)"],["id","Oval","cx","42.4877419","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M56.0827415,28.5000036 C60.4468211,28.5000036 63.9999285,25.1343958 63.9999285,21.0000215 C63.9999285,16.8656472 60.4468211,13.5000393 56.0827415,13.5000393 C52.9843297,13.5000393 50.5608889,15.4359631 48.9999642,17.1843872 C47.4390396,15.4359631 45.0155987,13.5000393 41.9171869,13.5000393 C37.5531074,13.5000393 34,16.8656472 34,21.0000215 C34,25.1343958 37.5531074,28.5000036 41.9171869,28.5000036 C45.0155987,28.5000036 47.4390396,26.5640798 48.9999642,24.8156557 C50.5608889,26.5640798 52.9843297,28.5000036 56.0827415,28.5000036 Z M41.9171869,24.0000143 C40.0328073,24.0000143 38.4999893,22.6546959 38.4999893,21.0000286 C38.4999893,19.3453471 40.0328073,18.0000286 41.9171869,18.0000286 C43.707771,18.0000286 45.3577763,19.6921938 46.3234264,21.0000286 C45.3671604,22.2937501 43.7031019,24.0000143 41.9171869,24.0000143 Z M56.0827415,24.0000143 C54.2921574,24.0000143 52.6421522,22.3078492 51.676502,21.0000286 C52.6327681,19.7062929 54.2968266,18.0000286 56.0827415,18.0000286 C57.9671212,18.0000286 59.4999392,19.3453471 59.4999392,21.0000286 C59.4999392,22.6546959 57.9671212,24.0000143 56.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Group-21","transform","translate(0.000000, 36.000000)"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-7"],["id","Oval","opacity","0.1","cx","48.644129","cy","75.1589677","rx","40.8402581","ry","5.55600756",1,"fill-color-27"],["id","Rectangle","x","25.2325161","y","6.09470968","width","54.1068387","height","62.9512258",1,"fill-color-26"],["id","Rectangle","x","20","y","1.24344979e-14","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","20","y","26","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","19.7698065","y","52.9179355","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","67.6335484","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 205 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","0%","id","linearGradient-1"],["stop-color","#808080","stop-opacity","0.25","offset","0%"],["stop-color","#808080","stop-opacity","0.12","offset","54%"],["stop-color","#808080","stop-opacity","0.1","offset","100%"],["id","LoopOut_Step02","transform","translate(-540.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step02","transform","translate(540.000000, 210.000000)"],["id","Illustration_Step02"],["id","Group-31"],["id","Group-2"],["id","Rectangle","x","0","y","0","width","90.1490688","height","100.616012",1,"fill-color-10"],["id","Rectangle","x","1.48932403","y","67.1775068","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","82.4918815","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","34.712875","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","42.1244006","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","50.0294431","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","2.2482432","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","24","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","42.1244006","width","36.8","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","9.66196224","width","51.2","height","16.0118784",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","50.2465905","r","8.78679245"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","82.7090289","r","8.78679245"],["id","Group","transform","translate(60.115627, 35.744427)"],["d","M133.318807,1.04548939 L82.5936439,1.04548939 L82.5936439,0 L59.5928852,0 L59.5928852,1.04548939 L8.65861943,1.04548939 C7.74861523,1.04548887 6.87588228,1.4069864 6.23241214,2.05045654 C5.58894199,2.69392669 5.22744498,3.56665964 5.22744498,4.47666384 L5.22744498,73.9350108 C5.22744498,74.8450173 5.5889387,75.7177532 6.23240879,76.3612266 C6.87587888,77.0047 7.74861298,77.3662028 8.65861943,77.3662028 L133.318807,77.3662028 C135.213795,77.3662028 136.749981,75.8300048 136.749981,73.9350167 L136.749981,4.47666384 C136.749981,3.56665964 136.388484,2.69392669 135.745014,2.05045654 C135.101544,1.4069864 134.228811,1.04548887 133.318807,1.04548939 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-25"],["id","Path","opacity","0.257273065","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-24"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-25"],["d","M31.5848237,68.0274261 C25.669241,68.0274261 20.3361447,64.4639649 18.0723494,58.9986791 C15.808554,53.5333932 17.0598755,47.2425772 21.2428244,43.0596288 C25.4257733,38.8766804 31.7165895,37.6253598 37.1818751,39.8891559 C42.6471607,42.1529519 46.2106203,47.4860487 46.2106203,53.4016314 C46.2014756,61.4754447 39.6586369,68.0182825 31.5848237,68.0274261 L31.5848237,68.0274261 Z M31.5848237,38.967022 C23.612809,38.967022 17.1502143,45.4296168 17.1502143,53.4016314 C17.1502143,61.3736461 23.612809,67.8362409 31.5848237,67.8362409 C39.5568383,67.8362409 46.0194331,61.3736461 46.0194331,53.4016314 C46.010427,45.4333502 39.5531049,38.9760281 31.5848237,38.967022 L31.5848237,38.967022 Z","id","Shape",1,"fill-color-primary"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","119.89017","y","8.50924347","width","4.7751428","height","4.7751428",1,"fill-color-6"],["d","M126.882344,15.5014148 L121.083948,15.5014148 L121.083948,9.70301894 L126.882344,9.70301894 L126.882344,15.5014148 Z M121.336061,15.2493191 L126.63024,15.2493191 L126.63024,9.95513218 L121.336061,9.95513218 L121.336061,15.2493191 Z","id","Shape",1,"fill-color-19"],["d","M140.184525,74.8570201 L128.246669,74.8570201 L128.246669,73.9969059 C128.246671,73.9516751 128.228704,73.9082962 128.196721,73.876313 C128.164738,73.8443298 128.12136,73.826364 128.076129,73.826364 L123.98315,73.826364 C123.937919,73.826364 123.89454,73.8443305 123.862558,73.8763135 C123.830575,73.9082966 123.812608,73.9516752 123.81261,73.9969059 L123.81261,74.8570201 L121.254497,74.8570201 L121.254497,73.9969059 C121.254499,73.9516752 121.236532,73.9082966 121.204549,73.8763135 C121.172566,73.8443305 121.129188,73.826364 121.083957,73.826364 L116.990978,73.826364 C116.945747,73.826364 116.902368,73.8443297 116.870385,73.8763129 C116.838402,73.908296 116.820435,73.9516749 116.820436,73.9969059 L116.820436,74.8570201 L114.262326,74.8570201 L114.262326,73.9969059 C114.262328,73.9516749 114.24436,73.908296 114.212377,73.8763129 C114.180394,73.8443297 114.137015,73.826364 114.091784,73.826364 L109.998805,73.826364 C109.953574,73.826364 109.910196,73.8443305 109.878213,73.8763135 C109.84623,73.9082966 109.828263,73.9516752 109.828265,73.9969059 L109.828265,74.8570201 L107.270153,74.8570201 L107.270153,73.9969059 C107.270154,73.9516752 107.252187,73.9082966 107.220204,73.8763135 C107.188222,73.8443305 107.144843,73.826364 107.099613,73.826364 L103.00663,73.826364 C102.961399,73.826364 102.91802,73.8443298 102.886037,73.876313 C102.854054,73.9082962 102.836088,73.9516751 102.83609,73.9969059 L102.83609,74.8570201 L100.277981,74.8570201 L100.277981,73.9969059 C100.277983,73.9516749 100.260016,73.908296 100.228032,73.8763129 C100.196049,73.8443297 100.15267,73.826364 100.107439,73.826364 L96.0144621,73.826364 C95.9692311,73.826364 95.9258522,73.8443297 95.8938691,73.8763129 C95.861886,73.908296 95.8439187,73.9516749 95.8439202,73.9969059 L95.8439202,74.8570201 L93.285808,74.8570201 L93.285808,73.9969059 C93.2858095,73.9516752 93.2678425,73.9082966 93.2358598,73.8763135 C93.2038771,73.8443305 93.1604987,73.826364 93.1152681,73.826364 L89.0222888,73.826364 C88.9770581,73.826364 88.9336797,73.8443305 88.901697,73.8763135 C88.8697143,73.9082966 88.8517473,73.9516752 88.8517489,73.9969059 L88.8517489,74.8570201 L86.2936405,74.8570201 L86.2936405,73.9969059 C86.293642,73.9516752 86.2756751,73.9082966 86.2436923,73.8763135 C86.2117096,73.8443305 86.1683312,73.826364 86.1231006,73.826364 L54.061428,73.826364 C54.0161974,73.826364 53.972819,73.8443305 53.9408363,73.8763135 C53.9088536,73.9082966 53.8908866,73.9516752 53.8908881,73.9969059 L53.8908881,74.8570201 L51.3327759,74.8570201 L51.3327759,73.9969059 C51.3327774,73.9516749 51.3148102,73.908296 51.282827,73.8763129 C51.2508439,73.8443297 51.207465,73.826364 51.162234,73.826364 L47.0692664,73.826364 C47.0240354,73.826364 46.9806565,73.8443297 46.9486734,73.8763129 C46.9166903,73.908296 46.898723,73.9516749 46.8987246,73.9969059 L46.8987246,74.8570201 L44.3406025,74.8570201 L44.3406025,73.9969059 C44.3406046,73.9516751 44.3226378,73.9082962 44.290655,73.876313 C44.2586721,73.8443298 44.2152934,73.826364 44.1700626,73.826364 L40.0770834,73.826364 C40.0318527,73.826364 39.9884743,73.8443305 39.9564916,73.8763135 C39.9245089,73.9082966 39.9065419,73.9516752 39.9065435,73.9969059 L39.9065435,74.8570201 L37.3484312,74.8570201 L37.3484312,73.9969059 C37.3484327,73.9516752 37.3304657,73.9082966 37.298483,73.8763135 C37.2665003,73.8443305 37.2231219,73.826364 37.1778913,73.826364 L33.084912,73.826364 C33.039681,73.826364 32.9963021,73.8443297 32.964319,73.8763129 C32.9323358,73.908296 32.9143686,73.9516749 32.9143701,73.9969059 L32.9143701,74.8570201 L30.3562598,74.8570201 L30.3562598,73.9969059 C30.3562614,73.9516749 30.3382941,73.908296 30.306311,73.8763129 C30.2743278,73.8443297 30.2309489,73.826364 30.1857179,73.826364 L26.0927387,73.826364 C26.047508,73.826364 26.0041296,73.8443305 25.9721469,73.8763135 C25.9401642,73.9082966 25.9221972,73.9516752 25.9221988,73.9969059 L25.9221988,74.8570201 L23.3640826,74.8570201 L23.3640826,73.9969059 C23.3640841,73.9516752 23.3461171,73.9082966 23.3141344,73.8763135 C23.2821517,73.8443305 23.2387733,73.826364 23.1935427,73.826364 L19.1005673,73.826364 C19.0553365,73.826364 19.0119578,73.8443298 18.979975,73.876313 C18.9479921,73.9082962 18.9300253,73.9516751 18.9300274,73.9969059 L18.9300274,74.8570201 L16.3719151,74.8570201 L16.3719151,73.9969059 C16.3719167,73.9516749 16.3539494,73.908296 16.3219663,73.8763129 C16.2899831,73.8443297 16.2466042,73.826364 16.2013733,73.826364 L12.1083959,73.826364 C12.0631649,73.826364 12.0197861,73.8443297 11.9878029,73.8763129 C11.9558198,73.908296 11.9378525,73.9516749 11.9378541,73.9969059 L11.9378541,74.8570201 L4.09297732,74.8570201 C1.83248849,74.8570223 0,76.6895106 0,78.9499994 L0,80.8007483 C0,83.061233 1.83249262,84.8937159 4.09297732,84.8937159 L140.184525,84.8937159 C142.44501,84.8937159 144.277504,83.0612333 144.277504,80.8007483 L144.277504,78.9499994 C144.277504,76.6895102 142.445014,74.8570223 140.184525,74.8570201 Z","id","Path",1,"fill-color-20"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-21"],["id","Oval","cx","74.1507041","cy","17.5648113","r","8.15070413",1,"fill-color-primary"],["fxFlex","30","viewBox","0 0 373 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","8.86848147e-15%","id","linearGradient-1"],["id","LoopOut_Step03","transform","translate(-460.000000, -210.000000)"],["id","Loop_Step03","transform","translate(460.000000, 210.000000)"],["id","Oval","fill-rule","nonzero","cx","330.487742","cy","57.4877419","r","42.4877419",1,"fill-color-2"],["d","M345.082742,43.5000036 C349.446821,43.5000036 352.999928,40.1343958 352.999928,36.0000215 C352.999928,31.8656472 349.446821,28.5000393 345.082742,28.5000393 C341.98433,28.5000393 339.560889,30.4359631 337.999964,32.1843872 C336.43904,30.4359631 334.015599,28.5000393 330.917187,28.5000393 C326.553107,28.5000393 323,31.8656472 323,36.0000215 C323,40.1343958 326.553107,43.5000036 330.917187,43.5000036 C334.015599,43.5000036 336.43904,41.5640798 337.999964,39.8156557 C339.560889,41.5640798 341.98433,43.5000036 345.082742,43.5000036 Z M330.917187,39.0000143 C329.032807,39.0000143 327.499989,37.6546959 327.499989,36.0000286 C327.499989,34.3453471 329.032807,33.0000286 330.917187,33.0000286 C332.707771,33.0000286 334.357776,34.6921938 335.323426,36.0000286 C334.36716,37.2937501 332.703102,39.0000143 330.917187,39.0000143 Z M345.082742,39.0000143 C343.292157,39.0000143 341.642152,37.3078492 340.676502,36.0000286 C341.632768,34.7062929 343.296827,33.0000286 345.082742,33.0000286 C346.967121,33.0000286 348.499939,34.3453471 348.499939,36.0000286 C348.499939,37.6546959 346.967121,39.0000143 345.082742,39.0000143 Z","id","i","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-44","transform","translate(113.000000, 79.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-19"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-22"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-19"],["id","Group-43","transform","translate(265.000000, 50.000000)"],["id","Path","fill-rule","nonzero","points","-9.84073267e-14 7.36243469 92.3919279 7.36243469 92.3919279 70.3073253 -1.13686838e-13 70.3073253",1,"fill-color-23"],["d","M97.5448374,1.70530257e-13 L6.62592538,1.70530257e-13 C6.01615907,0.000922175294 5.52114394,0.495001701 5.52114394,1.104768 L5.52114394,62.57664 C5.52114394,62.8696481 5.63752746,63.150658 5.84471672,63.3578447 C6.05190598,63.5650315 6.3329173,63.681408 6.62592538,63.681408 L97.5448374,63.681408 C97.8378436,63.681408 98.1188523,63.5650282 98.3260389,63.3578415 C98.5332256,63.1506549 98.6496054,62.8696462 98.6496054,62.57664 L98.6496054,1.104768 C98.6496054,0.495005713 98.1545997,0.000926622272 97.5448374,1.70530257e-13 L97.5448374,1.70530257e-13 Z M97.9130952,62.57664 C97.9130952,62.6744022 97.8747043,62.7682496 97.8055756,62.8373783 C97.736447,62.9065069 97.6425996,62.9448978 97.5448374,62.9448978 L6.62592538,62.9448978 C6.52816341,62.9448978 6.4343164,62.906506 6.3651879,62.8373775 C6.29605941,62.768249 6.25766754,62.674402 6.25766754,62.57664 L6.25766754,1.104768 C6.25766754,0.901512883 6.42267026,0.736512 6.62592538,0.736512 L97.5448374,0.736512 C97.7480931,0.736512 97.9130952,0.901512271 97.9130952,1.104768 L97.9130952,62.57664 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","10.3066764","y","43.4358624","width","41.5947948","height","4.78524211","rx","0.5376",1,"fill-color-19"],["d","M89.8141359,39.3872559 L76.5649839,39.3872559 C76.2719769,39.3872559 75.9909677,39.5036372 75.7837792,39.7108232 C75.5765907,39.9180091 75.4602025,40.1990169 75.4602025,40.4920239 L75.4602025,50.7978159 C75.4602025,51.090824 75.576586,51.3718339 75.7837753,51.5790207 C75.9909645,51.7862074 76.2719759,51.9025839 76.5649839,51.9025839 L89.8141359,51.9025839 C90.107143,51.9025839 90.3881533,51.7862079 90.5953406,51.5790206 C90.8025279,51.3718333 90.9189039,51.090823 90.9189039,50.7978159 L90.9189039,40.4920239 C90.9189039,40.199018 90.8025232,39.9180097 90.5953367,39.7108232 C90.3881502,39.5036367 90.1071419,39.3872559 89.8141359,39.3872559 Z M90.1823938,50.7978159 C90.182087,51.0010717 90.0173917,51.165767 89.8141359,51.1660719 L76.5649839,51.1660719 C76.3617256,51.165767 76.1970256,51.0010743 76.19671,50.7978159 L76.19671,40.4920239 C76.1964064,40.3942603 76.2351088,40.3004129 76.30424,40.2312847 C76.3733712,40.1621565 76.4672203,40.1234582 76.5649839,40.1237661 L89.8141359,40.1237661 C89.9118981,40.1234582 90.0057456,40.162157 90.0748742,40.2312857 C90.1440029,40.3004143 90.1827017,40.3942617 90.1823938,40.4920239 L90.1823938,50.7978159 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","41.7652758","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","44.7100416","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","47.6548047","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","11.4109632","y","4.41773875","width","19.1409684","height","8.09810266","rx","0.5376",1,"fill-color-19"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-3"],["d","M50.1798649,51.9764517 C43.6553251,51.9764517 37.7732336,48.0461636 35.2764005,42.0182748 C32.7795674,35.990386 34.1597014,29.0519859 38.773248,24.4384399 C43.3867946,19.824894 50.3251948,18.4447609 56.3530833,20.9415948 C62.3809718,23.4384287 66.3112582,29.3205207 66.3112582,35.8450605 C66.3011721,44.7500015 59.0848059,51.9663668 50.1798649,51.9764517 L50.1798649,51.9764517 Z M50.1798649,19.9245354 C41.3872016,19.9245354 34.2593397,27.0523972 34.2593397,35.8450605 C34.2593397,44.6377237 41.3872016,51.7655856 50.1798649,51.7655856 C58.9725281,51.7655856 66.10039,44.6377237 66.10039,35.8450605 C66.0904567,27.056515 58.9684103,19.9344686 50.1798649,19.9245354 L50.1798649,19.9245354 Z","id","Shape","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-23","transform","translate(5.000000, 0.001193)"],["id","Group-22"],["id","Group","transform","translate(0.378134, 0.000000)"],["id","Group-24","transform","translate(29.048000, 19.712000)"],["d","M46.60483,51.432122 C46.8713708,51.432122 47.1252368,51.2924832 47.2648756,51.0513229 L52.8499289,41.4044125 C53.145042,40.8998413 52.7801095,40.2620153 52.1930443,40.2620153 L48.5310139,40.2620153 L49.8828693,36.1430446 C50.0098023,35.6606929 49.6448699,35.184694 49.1466515,35.184694 L44.5770624,35.184694 C44.1962633,35.184694 43.8725779,35.4671324 43.8218171,35.8447396 L42.8063528,43.4607214 C42.7460473,43.9176927 43.1014659,44.3238722 43.5615982,44.3238722 L47.3283421,44.3238722 L45.8654203,50.4959909 C45.751193,50.9783426 46.1192864,51.432122 46.60483,51.432122 Z","id","b","fill-rule","nonzero","transform","translate(47.877046, 43.308408) rotate(14.000000) translate(-47.877046, -43.308408) ",1,"fill-color-12"],["id","Group-34","fill-rule","nonzero"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","17.5648113","r","8.78679245"],["id","Oval","cx","76.317438","cy","17.5648113","r","8.15070413",1,"fill-color-primary"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-8"],["id","Path","opacity","0.222721354","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-18"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-8"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-14"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-12"],["fxFlex","30","viewBox","0 0 278 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopOut_Step04","transform","translate(-503.000000, -212.000000)"],["id","Loop_Step04","transform","translate(503.000000, 212.000000)"],["id","Loop","fill-rule","nonzero"],["id","Group-16","transform","translate(24.000000, 0.000000)"],["d","M55.0827415,28.5000036 C59.4468211,28.5000036 62.9999285,25.1343958 62.9999285,21.0000215 C62.9999285,16.8656472 59.4468211,13.5000393 55.0827415,13.5000393 C51.9843297,13.5000393 49.5608889,15.4359631 47.9999642,17.1843872 C46.4390396,15.4359631 44.0155987,13.5000393 40.9171869,13.5000393 C36.5531074,13.5000393 33,16.8656472 33,21.0000215 C33,25.1343958 36.5531074,28.5000036 40.9171869,28.5000036 C44.0155987,28.5000036 46.4390396,26.5640798 47.9999642,24.8156557 C49.5608889,26.5640798 51.9843297,28.5000036 55.0827415,28.5000036 Z M40.9171869,24.0000143 C39.0328073,24.0000143 37.4999893,22.6546959 37.4999893,21.0000286 C37.4999893,19.3453471 39.0328073,18.0000286 40.9171869,18.0000286 C42.707771,18.0000286 44.3577763,19.6921938 45.3234264,21.0000286 C44.3671604,22.2937501 42.7031019,24.0000143 40.9171869,24.0000143 Z M55.0827415,24.0000143 C53.2921574,24.0000143 51.6421522,22.3078492 50.676502,21.0000286 C51.6327681,19.7062929 53.2968266,18.0000286 55.0827415,18.0000286 C56.9671212,18.0000286 58.4999392,19.3453471 58.4999392,21.0000286 C58.4999392,22.6546959 56.9671212,24.0000143 55.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-2"],["id","Group-44","transform","translate(27.000000, 69.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-23"],["id","Group-43","transform","translate(179.000000, 40.000000)"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-4"],["d","M46.519593,50.6740439 L46.519593,48.5460252 C46.9395628,48.5560039 47.349554,48.5560039 47.739557,48.5560039 L47.739557,50.6740439 L49.2794877,50.6740439 L49.2794877,48.5160274 C51.8593644,48.3760168 53.5840235,47.7260428 53.8140277,45.2961554 C53.9939838,43.3462645 53.0739982,42.476265 51.6140824,42.1263004 C52.4940295,41.6763328 53.054041,40.8763386 52.92404,39.5463928 C52.7540005,37.7264719 51.2593765,37.1164744 49.2794567,36.9465279 L49.2794567,34.4266159 L47.739526,34.4266159 L47.739526,36.8765226 C47.3395134,36.8765226 46.9295222,36.8865012 46.519562,36.8965108 L46.519562,34.4266159 L44.9796003,34.4266159 L44.9796003,36.9465279 C44.413422,36.9636341 43.7539962,36.9552669 41.8897293,36.9465279 L41.8897293,38.5864308 C43.1055717,38.564924 43.7434908,38.4867995 43.8896683,39.2663716 L43.8896683,46.1661239 C43.7968547,46.7846435 43.3018283,46.6955796 42.1997174,46.6760872 L41.8897293,48.5060178 C44.6975648,48.5060178 44.9796313,48.5160274 44.9796313,48.5160274 L44.9796313,50.6740439 L46.519593,50.6740439 Z M46.5495908,41.7662953 L46.5495908,38.6964125 C47.4195593,38.6964125 50.1394466,38.4264629 50.1394466,40.2363742 C50.1394466,41.9663016 47.4195903,41.7662953 46.5495908,41.7662953 Z M46.5495908,46.6860969 L46.5495908,43.306257 C47.5895368,43.306257 50.7741427,43.0162572 50.7741427,44.9962079 C50.7741427,46.9060914 47.5895368,46.6860969 46.5495908,46.6860969 Z","id","B","fill-rule","nonzero","transform","translate(47.863077, 42.550330) rotate(14.000000) translate(-47.863077, -42.550330) ",1,"fill-color-29"],["fxFlex","30","viewBox","0 0 200 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopOut_Step05","transform","translate(-542.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step05","transform","translate(542.000000, 210.000000)"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-11"],["id","Rectangle","x","1.34483737","y","60.660286","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","67.352783","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","31.345208","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","38.0377051","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","2.03013005","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","8.72460769","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Rectangle","x","7.80560248","y","67.352783","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","38.0377051","width","33.2298507","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","8.72460769","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.93434243",1,"fill-color-31"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","45.3719212","r","7.93434243"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","74.6850186","r","7.93434243"],["id","Group-16","transform","translate(55.804478, 34.674627)"],["id","Group-29","transform","translate(0.310627, 0.751284)"],["id","Group"],["d","M132.777455,1.04124409 L82.2582659,1.04124409 L82.2582659,0 L59.3509036,0 L59.3509036,1.04124409 L8.62346042,1.04124409 C7.71715136,1.04124358 6.84796221,1.40127322 6.20710493,2.0421305 C5.56624765,2.68298778 5.20621852,3.55217693 5.20621852,4.45848599 L5.20621852,73.6347918 C5.20621852,74.5411031 5.56624437,75.4102953 6.2071016,76.0511558 C6.84795882,76.6920163 7.71714912,77.0520512 8.62346042,77.0520512 L132.777455,77.0520512 C134.664749,77.0520512 136.194697,75.522091 136.194697,73.6347977 L136.194697,4.45848599 C136.194697,3.55217693 135.834668,2.68298778 135.193811,2.0421305 C134.552953,1.40127322 133.683764,1.04124358 132.777455,1.04124409 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.78769098","y","7.08045867","width","121.825532","height","68.7220946",1,"fill-color-7"],["id","Path","opacity","0.306775484","points","96.7732181 75.8025901 9.78772787 75.8025901 9.78772787 7.08050333",1,"fill-color-27"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary-darker"],["d","M14.5668332,29.1332406 C8.67527117,29.1332406 3.36383033,25.5842492 1.10922733,20.1411555 C-1.14537566,14.6980619 0.100864684,8.43279022 4.26682842,4.26682704 C8.43279215,0.100863866 14.698064,-1.14537564 20.1411573,1.10922807 C25.5842507,3.36383179 29.1332406,8.67527311 29.1332406,14.5668351 C29.124133,22.607864 22.6078621,29.1241341 14.5668332,29.1332406 L14.5668332,29.1332406 Z M14.5668332,0.190838576 C6.62718953,0.190838576 0.190836635,6.62719147 0.190836635,14.5668351 C0.190836635,22.5064788 6.62718953,28.9428317 14.5668332,28.9428317 C22.5064768,28.9428317 28.9428297,22.5064788 28.9428297,14.5668351 C28.9338602,6.63090975 22.5027586,0.199808125 14.5668332,0.190838576 L14.5668332,0.190838576 Z","id","Shape"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-5"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-19"],["d","M139.615294,74.5530572 L127.725913,74.5530572 L127.725913,73.6964356 C127.725915,73.6513884 127.708021,73.6081857 127.676168,73.5763323 C127.644315,73.544479 127.601113,73.5265862 127.556065,73.5265862 L123.479706,73.5265862 C123.434659,73.5265862 123.391457,73.5444797 123.359604,73.5763329 C123.327751,73.6081861 123.309857,73.6513886 123.309859,73.6964356 L123.309859,74.5530572 L120.762134,74.5530572 L120.762134,73.6964356 C120.762135,73.6513886 120.744241,73.6081861 120.712388,73.5763329 C120.680536,73.5444797 120.637333,73.5265862 120.592286,73.5265862 L116.515927,73.5265862 C116.47088,73.5265862 116.427677,73.5444789 116.395824,73.5763322 C116.36397,73.6081855 116.346076,73.6513882 116.346078,73.6964356 L116.346078,74.5530572 L113.798355,74.5530572 L113.798355,73.6964356 C113.798356,73.6513882 113.780462,73.6081855 113.748609,73.5763322 C113.716755,73.5444789 113.673553,73.5265862 113.628505,73.5265862 L109.552146,73.5265862 C109.507099,73.5265862 109.463897,73.5444797 109.432044,73.5763329 C109.400191,73.6081861 109.382297,73.6513886 109.382299,73.6964356 L109.382299,74.5530572 L106.834574,74.5530572 L106.834574,73.6964356 C106.834575,73.6513886 106.816681,73.6081861 106.784828,73.5763329 C106.752975,73.5444797 106.709773,73.5265862 106.664726,73.5265862 L102.588363,73.5265862 C102.543316,73.5265862 102.500113,73.544479 102.46826,73.5763323 C102.436407,73.6081857 102.418513,73.6513884 102.418516,73.6964356 L102.418516,74.5530572 L99.8707946,74.5530572 L99.8707946,73.6964356 C99.8707961,73.6513882 99.8529018,73.6081855 99.8210486,73.5763322 C99.7891953,73.5444789 99.7459925,73.5265862 99.7009452,73.5265862 L95.6245878,73.5265862 C95.5795404,73.5265862 95.5363377,73.5444789 95.5044844,73.5763322 C95.4726311,73.6081855 95.4547369,73.6513882 95.4547384,73.6964356 L95.4547384,74.5530572 L92.9070135,74.5530572 L92.9070135,73.6964356 C92.9070151,73.6513886 92.889121,73.6081861 92.8572682,73.5763329 C92.8254153,73.5444797 92.7822131,73.5265862 92.7371661,73.5265862 L88.6608067,73.5265862 C88.6157597,73.5265862 88.5725575,73.5444797 88.5407046,73.5763329 C88.5088518,73.6081861 88.4909577,73.6513886 88.4909593,73.6964356 L88.4909593,74.5530572 L85.9432383,74.5530572 L85.9432383,73.6964356 C85.9432399,73.6513886 85.9253458,73.6081861 85.893493,73.5763329 C85.8616401,73.5444797 85.8184379,73.5265862 85.7733909,73.5265862 L53.8419073,73.5265862 C53.7968603,73.5265862 53.7536581,73.5444797 53.7218052,73.5763329 C53.6899524,73.6081861 53.6720584,73.6513886 53.6720599,73.6964356 L53.6720599,74.5530572 L51.124335,74.5530572 L51.124335,73.6964356 C51.1243366,73.6513882 51.1064423,73.6081855 51.074589,73.5763322 C51.0427358,73.5444789 50.999533,73.5265862 50.9544857,73.5265862 L46.8781379,73.5265862 C46.8330906,73.5265862 46.7898879,73.5444789 46.7580346,73.5763322 C46.7261813,73.6081855 46.708287,73.6513882 46.7082886,73.6964356 L46.7082886,74.5530572 L44.160554,74.5530572 L44.160554,73.6964356 C44.1605561,73.6513884 44.1426622,73.6081857 44.1108092,73.5763323 C44.0789563,73.544479 44.0357537,73.5265862 43.9907066,73.5265862 L39.9143472,73.5265862 C39.8693002,73.5265862 39.8260979,73.5444797 39.7942451,73.5763329 C39.7623922,73.6081861 39.7444982,73.6513886 39.7444998,73.6964356 L39.7444998,74.5530572 L37.1967749,74.5530572 L37.1967749,73.6964356 C37.1967764,73.6513886 37.1788824,73.6081861 37.1470296,73.5763329 C37.1151767,73.5444797 37.0719745,73.5265862 37.0269275,73.5265862 L32.9505681,73.5265862 C32.9055208,73.5265862 32.862318,73.5444789 32.8304647,73.5763322 C32.7986115,73.6081855 32.7807172,73.6513882 32.7807187,73.6964356 L32.7807187,74.5530572 L30.2329958,74.5530572 L30.2329958,73.6964356 C30.2329973,73.6513882 30.215103,73.6081855 30.1832498,73.5763322 C30.1513965,73.5444789 30.1081938,73.5265862 30.0631464,73.5265862 L25.986787,73.5265862 C25.94174,73.5265862 25.8985378,73.5444797 25.866685,73.5763329 C25.8348321,73.6081861 25.8169381,73.6513886 25.8169396,73.6964356 L25.8169396,74.5530572 L23.2692109,74.5530572 L23.2692109,73.6964356 C23.2692124,73.6513886 23.2513184,73.6081861 23.2194655,73.5763329 C23.1876127,73.5444797 23.1444104,73.5265862 23.0993634,73.5265862 L19.0230079,73.5265862 C18.9779608,73.5265862 18.9347582,73.544479 18.9029053,73.5763323 C18.8710523,73.6081857 18.8531585,73.6513884 18.8531605,73.6964356 L18.8531605,74.5530572 L16.3054357,74.5530572 L16.3054357,73.6964356 C16.3054372,73.6513882 16.2875429,73.6081855 16.2556896,73.5763322 C16.2238364,73.5444789 16.1806336,73.5265862 16.1355863,73.5265862 L12.0592288,73.5265862 C12.0141815,73.5265862 11.9709788,73.5444789 11.9391255,73.5763322 C11.9072722,73.6081855 11.8893779,73.6513882 11.8893795,73.6964356 L11.8893795,74.5530572 L4.07635746,74.5530572 C1.82504753,74.5530594 0,76.3781067 0,78.6294166 L0,80.4726504 C0,82.7239563 1.82505163,84.5489982 4.07635746,84.5489982 L139.615294,84.5489982 C141.8666,84.5489982 143.691654,82.7239566 143.691654,80.4726504 L143.691654,78.6294166 C143.691654,76.3781064 141.866605,74.5530594 139.615294,74.5530572 Z","id","Path",1,"fill-color-20"],["id","Group","transform","translate(14.563343, 25.890388)"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary-darker"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M54.316416,4.55250111 L54.316416,3.34665629 C54.316416,1.49819202 52.8172532,0 50.9687888,0 L3.34762718,0 C1.49916283,0 0,1.49819202 0,3.34665629 L0,5.56999336 L54.316416,4.55250111 Z","id","Path",1,"fill-color-16"],["d","M55.6018738,5.73601547 L55.6018738,39.231705 C55.6018738,39.9999836 55.2966099,40.7367813 54.7532639,41.2799452 C54.2099179,41.8231092 53.4730179,42.1278687 52.7047393,42.1278687 L2.89810531,42.1278687 C1.29897753,42.1273325 0.00291266866,40.8308329 0.00291266866,39.231705 L0.00291266866,2.35926161 C1.43012031,2.88936731 1.43012031,2.88936731 2.89810531,2.84470639 L52.7047393,2.84470639 C54.3025103,2.84470316 55.5986611,4.13824772 55.6018738,5.73601547 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-19"],["d","M55.4601239,18.5459322 L55.4601239,29.2577567 L45.0716057,29.2577567 C42.141738,29.2183086 39.7873207,26.8319777 39.7873207,23.9018444 C39.7873207,20.9717112 42.141738,18.5853803 45.0716057,18.5459322 L55.4601239,18.5459322 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-17"],["id","Oval","opacity","0.1","cx","45.7114219","cy","23.9023299","r","2.08838343",1,"fill-color-27"],["id","Oval","cx","45.8531718","cy","23.6188301","r","2.08838343",1,"fill-color-28"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-30"]],template:function(ct,wt){if(1&ct&&d.DNE(0,pe,1,0,"ng-container",5)(1,Ze,32,5,"ng-template",null,0,d.C5r)(3,_t,51,5,"ng-template",null,1,d.C5r)(5,at,74,5,"ng-template",null,2,d.C5r)(7,pt,53,5,"ng-template",null,3,d.C5r)(9,Xt,66,5,"ng-template",null,4,d.C5r),2&ct){const Ut=d.sdS(2),xi=d.sdS(4),Si=d.sdS(6),zi=d.sdS(8),en=d.sdS(10);d.Y8G("ngTemplateOutlet",1===wt.stepNumber?Ut:2===wt.stepNumber?xi:3===wt.stepNumber?Si:4===wt.stepNumber?zi:en)}},dependencies:[F.YU,F.T3,$.DJ,$.sA,$.UI,j.PW,J.Lc,J.dh],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Ke.k]}})}return Qt})();const ue=["stepper"],Ie=()=>[1,2,3,4,5],He=(Qt,Mt)=>({"dot-primary":Qt,"dot-primary-lighter":Mt});function Xe(Qt,Mt){if(1&Qt&&(d.j41(0,"div",48)(1,"p",49)(2,"strong"),d.EFF(3,"Channel Peer:\xa0"),d.k0s(),d.EFF(4),d.nI1(5,"titlecase"),d.k0s(),d.j41(6,"p",50)(7,"strong"),d.EFF(8,"Channel ID:\xa0"),d.k0s(),d.EFF(9),d.k0s(),d.nrm(10,"p",50),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(4),d.JRh(d.bMT(5,2,it.channel.remote_alias)),d.R7$(5),d.JRh(it.channel.chan_id)}}function yt(Qt,Mt){if(1&Qt&&d.EFF(0),2&Qt){const it=d.XpG(2);d.JRh(it.inputFormLabel)}}function Ye(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Amount is required."),d.k0s())}function rt(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-error"),d.EFF(1),d.nI1(2,"number"),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(),d.SpI("Amount must be greater than or equal to ",d.bMT(2,1,it.minQuote.amount),".")}}function Yt(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-error"),d.EFF(1),d.nI1(2,"number"),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(),d.SpI("Amount must be less than or equal to ",d.bMT(2,1,it.maxQuote.amount),".")}}function Nt(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Confirmation target is required."),d.k0s())}function Et(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Confirmation target must be a positive number."),d.k0s())}function Vt(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Percentage is required."),d.k0s())}function oe(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Percentage must be a positive number."),d.k0s())}function tt(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-form-field",50)(1,"mat-label"),d.EFF(2,"Max Off-chain Routing Fee (%)"),d.k0s(),d.nrm(3,"input",51),d.DNE(4,Vt,2,0,"mat-error",25)(5,oe,2,0,"mat-error",25),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(3),d.Y8G("step",1),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.routingFeePercent.errors?null:it.inputFormGroup.controls.routingFeePercent.errors.required),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.routingFeePercent.errors?null:it.inputFormGroup.controls.routingFeePercent.errors.min)}}function $t(Qt,Mt){1&Qt&&(d.j41(0,"div",52)(1,"mat-slide-toggle",53),d.EFF(2,"Fast"),d.k0s(),d.j41(3,"mat-icon",54),d.EFF(4,"info_outline"),d.k0s()())}function zt(Qt,Mt){if(1&Qt&&d.EFF(0),2&Qt){const it=d.XpG(2);d.JRh(it.quoteFormLabel)}}function Jt(Qt,Mt){1&Qt&&(d.j41(0,"p",55)(1,"mat-icon",56),d.EFF(2,"close"),d.k0s(),d.EFF(3,"Local balance amount is insufficient for swap."),d.k0s())}function St(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",57),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onValidateAmount())}),d.EFF(1,"Next"),d.k0s()}}function dt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",58),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onLoop())}),d.EFF(1),d.k0s()}if(2&Qt){const it=d.XpG(2);d.R7$(),d.SpI("Initiate ",it.loopDirectionCaption,"")}}function Ae(Qt,Mt){if(1&Qt&&d.EFF(0),2&Qt){const it=d.XpG(3);d.JRh(it.addressFormLabel)}}function we(Qt,Mt){1&Qt&&(d.j41(0,"mat-error"),d.EFF(1,"Address is required."),d.k0s())}function he(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"mat-step",16)(1,"form",17),d.DNE(2,Ae,1,1,"ng-template",18),d.j41(3,"div",59)(4,"mat-radio-group",60),d.bIt("change",function(wt){d.eBV(it);const Ut=d.XpG(2);return d.Njj(Ut.onAddressTypeChange(wt))}),d.j41(5,"mat-radio-button",61),d.EFF(6,"Node Local Address"),d.k0s(),d.j41(7,"mat-radio-button",62),d.EFF(8,"External Address"),d.k0s()(),d.j41(9,"mat-form-field",63)(10,"mat-label"),d.EFF(11,"Address"),d.k0s(),d.nrm(12,"input",64),d.DNE(13,we,2,0,"mat-error",25),d.k0s()(),d.j41(14,"div",29)(15,"button",65),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onLoop())}),d.EFF(16),d.k0s()()()()}if(2&Qt){const it=d.XpG(2);d.Y8G("stepControl",it.addressFormGroup)("editable",it.flgEditable),d.R7$(),d.Y8G("formGroup",it.addressFormGroup),d.R7$(11),d.Y8G("required","external"===it.addressFormGroup.controls.addressType.value),d.R7$(),d.Y8G("ngIf",null==it.addressFormGroup.controls.address.errors?null:it.addressFormGroup.controls.address.errors.required),d.R7$(3),d.SpI("Initiate ",it.loopDirectionCaption,"")}}function q(Qt,Mt){if(1&Qt&&d.EFF(0),2&Qt){const it=d.XpG(2);d.SpI("",it.loopDirectionCaption," Status")}}function Re(Qt,Mt){if(1&Qt&&(d.j41(0,"mat-icon",66),d.EFF(1),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(),d.JRh(it.loopStatus&&null!=it.loopStatus&&it.loopStatus.id_bytes?"check":"close")}}function Ne(Qt,Mt){1&Qt&&d.nrm(0,"div")}function gt(Qt,Mt){1&Qt&&d.nrm(0,"mat-progress-bar",67)}function $e(Qt,Mt){if(1&Qt&&(d.j41(0,"h4",68),d.EFF(1),d.k0s()),2&Qt){const it=d.XpG(2);d.R7$(),d.JRh(it.loopStatus&&it.loopStatus.error?it.loopDirectionCaption+" failed.":it.loopStatus&&it.loopStatus.id_bytes&&it.channel?it.loopDirectionCaption+" request placed successfully. You can check the status of the request on the 'Loop' menu.":it.loopDirectionCaption+" request placed successfully.")}}function Fe(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",69),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.goToLoop())}),d.EFF(1,"Check Status"),d.k0s()}}function Ge(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",70),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onRestart())}),d.EFF(1,"Start Again"),d.k0s()}}function et(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),d.EFF(5),d.k0s()(),d.j41(6,"div",9)(7,"button",10),d.bIt("click",function(){d.eBV(it);const wt=d.XpG();return d.Njj(wt.showInfo())}),d.EFF(8,"?"),d.k0s(),d.j41(9,"button",11),d.bIt("click",function(){d.eBV(it);const wt=d.XpG();return d.Njj(wt.onClose())}),d.EFF(10,"X"),d.k0s()()(),d.j41(11,"mat-card-content",12)(12,"div",13),d.DNE(13,Xe,11,4,"div",14),d.j41(14,"mat-vertical-stepper",15,1),d.bIt("selectionChange",function(wt){d.eBV(it);const Ut=d.XpG();return d.Njj(Ut.stepSelectionChanged(wt))}),d.j41(16,"mat-step",16)(17,"form",17),d.DNE(18,yt,1,1,"ng-template",18),d.j41(19,"div",19),d.nrm(20,"rtl-loop-quote",20)(21,"rtl-loop-quote",20),d.k0s(),d.j41(22,"div",21)(23,"mat-form-field",22)(24,"mat-label"),d.EFF(25,"Amount"),d.k0s(),d.nrm(26,"input",23),d.j41(27,"mat-hint"),d.EFF(28),d.nI1(29,"number"),d.nI1(30,"number"),d.k0s(),d.j41(31,"span",24),d.EFF(32,"Sats"),d.k0s(),d.DNE(33,Ye,2,0,"mat-error",25)(34,rt,3,3,"mat-error",25)(35,Yt,3,3,"mat-error",25),d.k0s(),d.j41(36,"mat-form-field",22)(37,"mat-label"),d.EFF(38,"Sweep Confirmation Target"),d.k0s(),d.nrm(39,"input",26),d.DNE(40,Nt,2,0,"mat-error",25)(41,Et,2,0,"mat-error",25),d.k0s(),d.DNE(42,tt,6,3,"mat-form-field",27),d.k0s(),d.DNE(43,$t,5,0,"div",28),d.j41(44,"div",29)(45,"button",30),d.bIt("click",function(){d.eBV(it);const wt=d.XpG();return d.Njj(wt.onEstimateQuote())}),d.EFF(46,"Estimate Quote"),d.k0s()()()(),d.j41(47,"mat-step",16)(48,"form",17),d.DNE(49,zt,1,1,"ng-template",18),d.nrm(50,"rtl-loop-quote",31),d.DNE(51,Jt,4,0,"p",32),d.j41(52,"div",29),d.DNE(53,St,2,0,"button",33)(54,dt,2,1,"button",34),d.k0s()()(),d.DNE(55,he,17,6,"mat-step",35),d.j41(56,"mat-step",36)(57,"form",17),d.DNE(58,q,1,1,"ng-template",18),d.j41(59,"div",37)(60,"mat-expansion-panel",38)(61,"mat-expansion-panel-header")(62,"mat-panel-title")(63,"span",39),d.EFF(64),d.DNE(65,Re,2,1,"mat-icon",40),d.k0s()()(),d.DNE(66,Ne,1,0,"div",41),d.k0s(),d.DNE(67,gt,1,0,"mat-progress-bar",42),d.k0s(),d.DNE(68,$e,2,1,"h4",43),d.j41(69,"div",29),d.DNE(70,Fe,2,0,"button",44)(71,Ge,2,0,"button",45),d.k0s()()()(),d.j41(72,"div",46)(73,"button",47),d.EFF(74,"Close"),d.k0s()()()()()()}if(2&Qt){const it=d.XpG(),ct=d.sdS(2);d.Y8G("@opacityAnimation",void 0),d.R7$(3),d.Y8G("fxFlex",it.screenSize===it.screenSizeEnum.XS||it.screenSize===it.screenSizeEnum.SM?"83":"91"),d.R7$(2),d.JRh(it.channel?"Channel "+it.loopDirectionCaption:it.loopDirectionCaption),d.R7$(),d.Y8G("fxFlex",it.screenSize===it.screenSizeEnum.XS||it.screenSize===it.screenSizeEnum.SM?"17":"9"),d.R7$(7),d.Y8G("ngIf",it.channel),d.R7$(),d.Y8G("linear",!0),d.R7$(2),d.Y8G("stepControl",it.inputFormGroup)("editable",it.flgEditable),d.R7$(),d.Y8G("formGroup",it.inputFormGroup),d.R7$(3),d.Y8G("quote",it.minQuote)("termCaption","min")("panelExpanded",!1)("showPanel",!0),d.R7$(),d.Y8G("quote",it.maxQuote)("termCaption","max")("panelExpanded",!1)("showPanel",!0),d.R7$(2),d.Y8G("fxFlex",it.direction===it.LoopTypeEnum.LOOP_OUT?"35":"48"),d.R7$(3),d.Y8G("step",1e3),d.R7$(2),d.Lme("Range: ",d.bMT(29,51,it.minQuote.amount),"-",d.bMT(30,53,it.maxQuote.amount),""),d.R7$(5),d.Y8G("ngIf",null==it.inputFormGroup.controls.amount.errors?null:it.inputFormGroup.controls.amount.errors.required),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.amount.errors?null:it.inputFormGroup.controls.amount.errors.min),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.amount.errors?null:it.inputFormGroup.controls.amount.errors.max),d.R7$(),d.Y8G("fxFlex",it.direction===it.LoopTypeEnum.LOOP_OUT?"30":"48"),d.R7$(3),d.Y8G("step",1),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.sweepConfTarget.errors?null:it.inputFormGroup.controls.sweepConfTarget.errors.required),d.R7$(),d.Y8G("ngIf",null==it.inputFormGroup.controls.sweepConfTarget.errors?null:it.inputFormGroup.controls.sweepConfTarget.errors.min),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(4),d.Y8G("stepControl",it.quoteFormGroup)("editable",it.flgEditable),d.R7$(),d.Y8G("formGroup",it.quoteFormGroup),d.R7$(2),d.Y8G("quote",it.quote)("showPanel",!1),d.R7$(),d.Y8G("ngIf",it.inputFormGroup.controls.amount.value>it.localBalanceToCompare),d.R7$(2),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_IN),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("stepControl",it.statusFormGroup),d.R7$(),d.Y8G("formGroup",it.statusFormGroup),d.R7$(3),d.Y8G("expanded",!!it.loopStatus),d.R7$(4),d.JRh(it.loopStatus?it.loopStatus.id_bytes?it.loopDirectionCaption+" request details":it.loopDirectionCaption+" error details":"Waiting for "+it.loopDirectionCaption+" request..."),d.R7$(),d.Y8G("ngIf",it.loopStatus),d.R7$(),d.Y8G("ngIf",!it.loopStatus)("ngIfElse",ct),d.R7$(),d.Y8G("ngIf",!it.loopStatus),d.R7$(),d.Y8G("ngIf",it.loopStatus),d.R7$(2),d.Y8G("ngIf",it.loopStatus&&it.loopStatus.id_bytes&&it.channel),d.R7$(),d.Y8G("ngIf",it.loopStatus&&(it.loopStatus.error||!it.loopStatus.id_bytes)),d.R7$(2),d.Y8G("mat-dialog-close",!1)}}function st(Qt,Mt){if(1&Qt&&d.nrm(0,"rtl-loop-status",71),2&Qt){const it=d.XpG();d.Y8G("loopStatus",it.loopStatus)}}function Tt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"rtl-loop-out-info-graphics",87),d.mxI("stepNumberChange",function(wt){d.eBV(it);const Ut=d.XpG(2);return d.DH7(Ut.stepNumber,wt)||(Ut.stepNumber=wt),d.Njj(wt)}),d.k0s()}if(2&Qt){const it=d.XpG(2);d.Y8G("animationDirection",it.animationDirection),d.R50("stepNumber",it.stepNumber)}}function mi(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"rtl-loop-in-info-graphics",87),d.mxI("stepNumberChange",function(wt){d.eBV(it);const Ut=d.XpG(2);return d.DH7(Ut.stepNumber,wt)||(Ut.stepNumber=wt),d.Njj(wt)}),d.k0s()}if(2&Qt){const it=d.XpG(2);d.Y8G("animationDirection",it.animationDirection),d.R50("stepNumber",it.stepNumber)}}function Kt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"span",88),d.bIt("click",function(){const wt=d.eBV(it).$implicit,Ut=d.XpG(2);return d.Njj(Ut.onStepChanged(wt))}),d.nrm(1,"p",89),d.k0s()}if(2&Qt){const it=Mt.$implicit,ct=d.XpG(2);d.R7$(),d.Y8G("ngClass",d.l_i(1,He,ct.stepNumber===it,ct.stepNumber!==it))}}function Pt(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",90),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onReadMore())}),d.EFF(1,"Read More"),d.k0s()}}function Xi(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",91),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onStepChanged(4))}),d.EFF(1,"Back"),d.k0s()}}function di(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",92),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return wt.flgShowInfo=!1,d.Njj(wt.stepNumber=1)}),d.EFF(1,"Close"),d.k0s()}}function fi(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",93),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return wt.flgShowInfo=!1,d.Njj(wt.stepNumber=1)}),d.EFF(1,"Close"),d.k0s()}}function vn(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",94),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onStepChanged(wt.stepNumber-1))}),d.EFF(1,"Back"),d.k0s()}}function Qi(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"button",95),d.bIt("click",function(){d.eBV(it);const wt=d.XpG(2);return d.Njj(wt.onStepChanged(wt.stepNumber+1))}),d.EFF(1,"Next"),d.k0s()}}function Li(Qt,Mt){if(1&Qt){const it=d.RV6();d.j41(0,"div",72)(1,"div",19)(2,"mat-card-header",73)(3,"div",74),d.nrm(4,"span",8),d.k0s(),d.j41(5,"div",75)(6,"button",11),d.bIt("click",function(){d.eBV(it);const wt=d.XpG();return wt.flgShowInfo=!1,d.Njj(wt.stepNumber=1)}),d.EFF(7,"X"),d.k0s()()(),d.j41(8,"mat-card-content",76),d.DNE(9,Tt,1,2,"rtl-loop-out-info-graphics",77)(10,mi,1,2,"rtl-loop-in-info-graphics",77),d.k0s(),d.j41(11,"div",78),d.DNE(12,Kt,2,4,"span",79),d.k0s(),d.j41(13,"div",80),d.DNE(14,Pt,2,0,"button",81)(15,Xi,2,0,"button",82)(16,di,2,0,"button",83)(17,fi,2,0,"button",84)(18,vn,2,0,"button",85)(19,Qi,2,0,"button",86),d.k0s()()()}if(2&Qt){const it=d.XpG();d.Y8G("@opacityAnimation",void 0),d.R7$(9),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_OUT),d.R7$(),d.Y8G("ngIf",it.direction===it.LoopTypeEnum.LOOP_IN),d.R7$(2),d.Y8G("ngForOf",d.lJ4(10,Ie)),d.R7$(2),d.Y8G("ngIf",5===it.stepNumber),d.R7$(),d.Y8G("ngIf",5===it.stepNumber),d.R7$(),d.Y8G("ngIf",5===it.stepNumber),d.R7$(),d.Y8G("ngIf",it.stepNumber<5),d.R7$(),d.Y8G("ngIf",it.stepNumber>1&&it.stepNumber<5),d.R7$(),d.Y8G("ngIf",it.stepNumber<5)}}let Zi=(()=>{class Qt{constructor(it,ct,wt,Ut,xi,Si,zi,en,Ni){this.dialogRef=it,this.data=ct,this.store=wt,this.loopService=Ut,this.formBuilder=xi,this.decimalPipe=Si,this.logger=zi,this.router=en,this.commonService=Ni,this.faInfoCircle=l.iW_,this.LoopTypeEnum=f.C7,this.direction=f.C7.LOOP_OUT,this.loopDirectionCaption="Loop out",this.loopStatus=null,this.inputFormLabel="Amount to loop out",this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address",this.prepayRoutingFee=36,this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=f.f7,this.animationDirection="forward",this.flgEditable=!0,this.localBalanceToCompare=null,this.unSubs=[new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.channel=this.data.channel,this.minQuote=this.data.minQuote?this.data.minQuote:{},this.maxQuote=this.data.maxQuote?this.data.maxQuote:{},this.direction=this.data.direction||f.C7.LOOP_OUT,this.loopDirectionCaption=this.direction===f.C7.LOOP_IN?"Loop in":"Loop out",this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.minQuote.amount,[e.k0.required,e.k0.min(this.minQuote.amount||0),e.k0.max(this.maxQuote.amount||0)]],sweepConfTarget:[6,[e.k0.required,e.k0.min(1)]],routingFeePercent:[2,[e.k0.required,e.k0.min(0)]],fast:[!1,[e.k0.required]]}),this.inputFormGroup.setErrors({Invalid:!0}),this.quoteFormGroup=this.formBuilder.group({}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[e.k0.required]],address:[{value:"",disabled:!0}]}),this.direction===f.C7.LOOP_OUT&&this.addressFormGroup.setErrors({Invalid:!0}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.store.select(I.BM).pipe((0,w.Q)(this.unSubs[6])).subscribe(it=>{this.localBalanceToCompare=this.channel&&this.channel.local_balance?+this.channel.local_balance:it.lightningBalance&&it.lightningBalance.local?+it.lightningBalance.local:null})}onFormValueChanges(){this.inputFormGroup.valueChanges.pipe((0,w.Q)(this.unSubs[4])).subscribe(it=>{this.inputFormGroup.setErrors({Invalid:!0})}),this.direction===f.C7.LOOP_OUT&&this.addressFormGroup.valueChanges.pipe((0,w.Q)(this.unSubs[5])).subscribe(it=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(it){"external"===it.value?(this.addressFormGroup.controls.address.setValidators([e.k0.required]),this.addressFormGroup.controls.address.markAsTouched(),this.addressFormGroup.controls.address.enable()):(this.addressFormGroup.controls.address.setValidators(null),this.addressFormGroup.controls.address.markAsPristine(),this.addressFormGroup.controls.address.disable(),this.addressFormGroup.controls.address.setValue("")),this.addressFormGroup.setErrors({Invalid:!0})}onValidateAmount(){this.localBalanceToCompare&&this.inputFormGroup.controls.amount.value<=this.localBalanceToCompare&&this.stepper.next()}onLoop(){if(!this.inputFormGroup.controls.amount.value||this.minQuote.amount&&this.inputFormGroup.controls.amount.valuethis.maxQuote.amount||!this.inputFormGroup.controls.sweepConfTarget.value||this.inputFormGroup.controls.sweepConfTarget.value<2||this.direction===f.C7.LOOP_OUT&&(!this.inputFormGroup.controls.routingFeePercent.value||this.inputFormGroup.controls.routingFeePercent.value<0)||this.direction===f.C7.LOOP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;if(this.flgEditable=!1,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===f.C7.LOOP_IN)this.loopService.loopIn(this.inputFormGroup.controls.amount.value,+(this.quote.swap_fee_sat||0),+(this.quote.htlc_publish_fee_sat||0),"",!0).pipe((0,w.Q)(this.unSubs[0])).subscribe({next:it=>{this.loopStatus=it,this.loopService.listSwaps(),this.flgEditable=!0},error:it=>{this.loopStatus={error:it},this.flgEditable=!0,this.logger.error(it)}});else{const it=Math.ceil(this.inputFormGroup.controls.amount.value*(this.inputFormGroup.controls.routingFeePercent.value/100)),ct="external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",wt=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.loopService.loopOut(this.inputFormGroup.controls.amount.value,this.channel&&this.channel.chan_id?this.channel.chan_id:"",this.inputFormGroup.controls.sweepConfTarget.value,it,+(this.quote.htlc_sweep_fee_sat||0),this.prepayRoutingFee,+(this.quote.prepay_amt_sat||0),+(this.quote.swap_fee_sat||0),wt,ct).pipe((0,w.Q)(this.unSubs[1])).subscribe({next:Ut=>{this.loopStatus=Ut,this.loopService.listSwaps(),this.flgEditable=!0},error:Ut=>{this.loopStatus={error:Ut},this.flgEditable=!0,this.logger.error(Ut)}})}}onEstimateQuote(){if(!this.inputFormGroup.controls.amount.value||this.minQuote.amount&&this.inputFormGroup.controls.amount.valuethis.maxQuote.amount||!this.inputFormGroup.controls.sweepConfTarget.value||this.inputFormGroup.controls.sweepConfTarget.value<2)return!0;const it=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.direction===f.C7.LOOP_IN?this.loopService.getLoopInQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,it).pipe((0,w.Q)(this.unSubs[2])).subscribe(ct=>{this.quote=ct,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}):this.loopService.getLoopOutQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,it).pipe((0,w.Q)(this.unSubs[3])).subscribe(ct=>{this.quote=ct,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}),this.stepper.selected?.stepControl.setErrors(null),this.stepper.next()}stepSelectionChanged(it){switch(it.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.amount.value||this.inputFormGroup.controls.sweepConfTarget.value?this.direction===f.C7.LOOP_IN?this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6):this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6)+" | Percentage: "+(this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:"2")+" | Fast: "+(this.inputFormGroup.controls.fast.value?"Enabled":"Disabled"):"Amount to "+this.loopDirectionCaption,this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address";break;case 2:this.inputFormLabel=this.inputFormGroup.controls.amount.value||this.inputFormGroup.controls.sweepConfTarget.value?this.direction===f.C7.LOOP_IN?this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6):this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6)+" | Fast: "+(this.inputFormGroup.controls.fast.value?"Enabled":"Disabled"):"Amount to "+this.loopDirectionCaption,this.quoteFormLabel=this.quote&&this.quote.swap_fee_sat&&(this.quote.htlc_sweep_fee_sat||this.quote.htlc_publish_fee_sat)&&this.quote.prepay_amt_sat?"Quote confirmed | Estimated Fees: "+this.decimalPipe.transform(+this.quote.swap_fee_sat+ +(this.quote.htlc_sweep_fee_sat?this.quote.htlc_sweep_fee_sat:this.quote.htlc_publish_fee_sat?this.quote.htlc_publish_fee_sat:0))+" Sats":"Quote confirmed",this.addressFormLabel=this.addressFormGroup.controls.addressType.value?"Withdrawal Address | Type: "+this.addressFormGroup.controls.addressType.value:"Withdrawal Address"}(this.direction===f.C7.LOOP_OUT&&1!==it.selectedIndex&&it.selectedIndex{it.next(null),it.complete()})}static#e=this.\u0275fac=function(ct){return new(ct||Qt)(d.rXU(S.CP),d.rXU(S.Vh),d.rXU(T.il),d.rXU(y.Q),d.rXU(e.ze),d.rXU(F.QX),d.rXU(R.gP),d.rXU(z.Ix),d.rXU(W.h))};static#t=this.\u0275cmp=d.VBU({type:Qt,selectors:[["rtl-loop-modal"]],viewQuery:function(ct,wt){if(1&ct&&d.GBs(ue,5),2&ct){let Ut;d.mGM(Ut=d.lsd())&&(wt.stepper=Ut.first)}},decls:4,vars:2,consts:[["loopStatusBlock",""],["stepper",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"fxFlex"],[1,"page-title"],["fxLayoutAlign","space-between end",3,"fxFlex"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["class","padding-gap-large","fxLayout","row wrap","fxLayoutAlign","space-between stretch",4,"ngIf"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[3,"quote","termCaption","panelExpanded","showPanel"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],[3,"fxFlex"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["matInput","","type","number","tabindex","2","formControlName","sweepConfTarget","required","",3,"step"],["fxFlex","30",4,"ngIf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center","class","mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","5","type","button",3,"click"],[3,"quote","showPanel"],["fxFlex","100","class","color-warn mt-2","fxLayoutAlign","start center",4,"ngIf"],["mat-button","","color","primary","tabindex","6","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","7","type","button",3,"click",4,"ngIf"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[4,"ngIf","ngIfElse"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxLayoutAlign","start","class","font-bold-500 mt-2",4,"ngIf"],["mat-button","","color","primary","tabindex","12","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","13","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end end"],["mat-button","","color","primary","tabindex","14","type","button","default","",3,"mat-dialog-close"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","40"],["fxFlex","30"],["matInput","","type","number","tabindex","3","formControlName","routingFeePercent","required","",3,"step"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["tabindex","4","color","primary","formControlName","fast","fxFlex","none"],["matTooltip","Swap immediately (Might end up paying a higher on-chain fee)","matTooltipPosition","above","fxFlex","none",1,"info-icon"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn","mt-2"],[1,"mr-1","icon-small"],["mat-button","","color","primary","tabindex","6","type","button",3,"click"],["mat-button","","color","primary","tabindex","7","type","button",3,"click"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["color","primary","name","addressType","formControlName","addressType","fxFlex","100","fxLayoutAlign","space-between stretch",3,"change"],["fxFlex","48","tabindex","8","value","local"],["fxFlex","48","tabindex","9","value","external"],["fxLayout","column","fxFlex","100",1,"mt-1"],["matInput","","tabindex","10","formControlName","address",3,"required"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-2"],["mat-button","","color","primary","tabindex","12","type","button",3,"click"],["mat-button","","color","primary","tabindex","13","type","button",3,"click"],["fxLayout","column",3,"loopStatus"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","15","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","15","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(ct,wt){1&ct&&d.DNE(0,et,75,55,"div",2)(1,st,1,1,"ng-template",null,0,d.C5r)(3,Li,20,11,"div",3),2&ct&&(d.Y8G("ngIf",!wt.flgShowInfo),d.R7$(3),d.Y8G("ngIf",wt.flgShowInfo))},dependencies:[F.YU,F.Sq,F.bT,e.qT,e.me,e.Q0,e.BC,e.cb,e.YS,e.j4,e.JD,$.DJ,$.sA,$.UI,j.PW,S.tx,Q.$z,J.m2,J.MM,ee.GK,ee.Z2,ee.WN,ie.An,ge.fg,ae.rl,ae.nJ,ae.MV,ae.TL,ae.yw,Me.HM,Te.VT,Te._g,de.sG,D.oV,n.V5,n.Ti,n.M6,c.N,N,qe,_e,ye,F.QX,F.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[x.C]}})}return Qt})()},13:(Qe,te,g)=>{"use strict";g.d(te,{X:()=>I});var e=g(5383),t=g(4438),w=g(1188),S=g(60),l=g(2920),x=g(8834),f=g(5596);let I=(()=>{class d{constructor(y){this.router=y,this.faTimes=e.GRI}goToHelp(){this.router.navigate(["/help"])}static#e=this.\u0275fac=function(F){return new(F||d)(t.rXU(w.Ix))};static#t=this.\u0275cmp=t.VBU({type:d,selectors:[["rtl-not-found"]],decls:13,vars:1,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column",1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","start start"],[1,"box-text"],["fxLayout","row","fxLayoutAlign","center","fxFlex","80"],["mat-flat-button","","color","primary","type","button",1,"mt-2",3,"click"]],template:function(F,R){1&F&&(t.j41(0,"div",0),t.nrm(1,"fa-icon",1),t.j41(2,"span",2),t.EFF(3,"Page Not Found"),t.k0s()(),t.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"div",5)(8,"div",6),t.EFF(9,"This page does not exist!"),t.k0s(),t.j41(10,"span",7)(11,"button",8),t.bIt("click",function(){return R.goToHelp()}),t.EFF(12,"Go To Help"),t.k0s()()()()()()),2&F&&(t.R7$(),t.Y8G("icon",R.faTimes))},dependencies:[S.aY,l.DJ,l.sA,l.UI,x.$z,f.RN,f.m2],encapsulation:2})}return d})()},9587:(Qe,te,g)=>{"use strict";g.d(te,{N:()=>t});var e=g(4438);let t=(()=>{class w{constructor(l){this.el=l}ngAfterContentInit(){setTimeout(()=>{this.el.nativeElement.focus()},500)}static#e=this.\u0275fac=function(x){return new(x||w)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:w,selectors:[["","autoFocus",""]],inputs:{appAutoFocus:"appAutoFocus"}})}return w})()},9157:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>t});var e=g(4438);let t=(()=>{class w{constructor(){this.copied=new e.bkB}onClick(l){l.preventDefault(),this.payload&&(navigator.clipboard?this.copyUsingClipboardAPI():this.copyUsingFallbackMethod())}copyUsingFallbackMethod(){const l=document.createElement("textarea");l.value=this.payload,document.body.appendChild(l),l.select();try{document.execCommand("copy")?this.copied.emit(this.payload.toString()):this.copied.emit("Error could not copy text.")}finally{document.body.removeChild(l)}}copyUsingClipboardAPI(){navigator.clipboard.writeText(this.payload.toString()).then(()=>{this.copied.emit(this.payload.toString())}).catch(l=>{this.copied.emit("Error could not copy text: "+JSON.stringify(l))})}static#e=this.\u0275fac=function(x){return new(x||w)};static#t=this.\u0275dir=e.FsC({type:w,selectors:[["","rtlClipboard",""]],hostBindings:function(x,f){1&x&&e.bIt("click",function(d){return f.onClick(d)})},inputs:{payload:"payload"},outputs:{copied:"copied"}})}return w})()},92:(Qe,te,g)=>{"use strict";g.d(te,{z:()=>w});var e=g(9417),t=g(4438);let w=(()=>{class S{validate(x){return this.max?e.k0.max(+this.max)(x):null}static#e=this.\u0275fac=function(f){return new(f||S)};static#t=this.\u0275dir=t.FsC({type:S,selectors:[["input","max",""]],inputs:{max:"max"},features:[t.Jv_([{provide:e.cz,useExisting:S,multi:!0}])]})}return S})()},6114:(Qe,te,g)=>{"use strict";g.d(te,{V:()=>w});var e=g(9417),t=g(4438);let w=(()=>{class S{validate(x){return this.min?e.k0.min(+this.min)(x):null}static#e=this.\u0275fac=function(f){return new(f||S)};static#t=this.\u0275dir=t.FsC({type:S,selectors:[["input","min",""]],inputs:{min:"min"},features:[t.Jv_([{provide:e.cz,useExisting:S,multi:!0}])]})}return S})()},2929:(Qe,te,g)=>{"use strict";g.d(te,{Qu:()=>S,VD:()=>l,ZE:()=>w,gZ:()=>t});var e=g(4438);let t=(()=>{class x{transform(I,d){return I?.replace(/^[0]+/g,"")}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275pipe=e.EJ8({name:"removeleadingzeros",type:x,pure:!0})}return x})(),w=(()=>{class x{transform(I,d){return I?.replace(/(?:^\w|[A-Z]|\b\w)/g,(T,y)=>T.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275pipe=e.EJ8({name:"camelcase",type:x,pure:!0})}return x})(),S=(()=>{class x{transform(I,d,T){return I.replace(/(?:^\w|[A-Z]|\b\w)/g,(y,F)=>" "+y.toUpperCase())}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275pipe=e.EJ8({name:"camelCaseWithSpaces",type:x,pure:!0})}return x})(),l=(()=>{class x{transform(I,d,T){return I=I?I.toLowerCase().replace(/\s+/g,"")?.replace(/-/g," "):"",d&&(I=I.replace(new RegExp(d,"g")," ")),T&&(I=I.replace(new RegExp(T,"g")," ")),I.replace(/(?:^\w|[A-Z]|\b\w)/g,(y,F)=>y.toUpperCase())}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275pipe=e.EJ8({name:"camelcaseWithReplace",type:x,pure:!0})}return x})()},7186:(Qe,te,g)=>{"use strict";g.d(te,{Wz:()=>f,fe:()=>I,jn:()=>x,q_:()=>l});var e=g(4438),t=g(1188),w=g(3202),S=g(6354);function l(){return()=>{const d=(0,e.WQX)(t.Ix),T=(0,e.WQX)(t.nX),y=(0,e.WQX)(w.Q);return!(!y.getItem("token")||T.snapshot.url&&T.snapshot.url.length&&"settings"!==T.snapshot.url[0].path&&"auth"!==T.snapshot.url[0].path&&"true"===y.getItem("defaultPassword")&&(d.navigate(["/settings/auth"]),1))}}function x(){return()=>!!(0,e.WQX)(w.Q).watchSession().pipe((0,S.T)(T=>T.lndUnlocked))}function f(){return()=>!!(0,e.WQX)(w.Q).watchSession().pipe((0,S.T)(T=>T.clnUnlocked))}function I(){return()=>!!(0,e.WQX)(w.Q).watchSession().pipe((0,S.T)(T=>T.eclUnlocked))}},2571:(Qe,te,g)=>{"use strict";g.d(te,{h:()=>z});var e=g(4412),t=g(1413),w=g(7673),S=g(8810),l=g(6977),x=g(5558),f=g(9437),I=g(4416),d=g(4438),T=g(1534),y=g(8570),F=g(177),R=g(345);let z=(()=>{class W{constructor(j,Q,J,ee){this.dataService=j,this.logger=Q,this.datePipe=J,this.sanitizer=ee,this.currencyUnits=[],this.CurrencyUnitEnum=I.BQ,this.conversionData={data:null,last_fetched:null},this.ratesAPIStatus=I.wn.UN_INITIATED,this.screenSize=I.f7.MD,this.containerSize={width:0,height:0},this.containerSizeUpdated=new e.t(this.containerSize),this.unSubs=[new t.B,new t.B,new t.B]}getScreenSize(){return this.screenSize}setScreenSize(j){this.screenSize=j}getContainerSize(){return this.containerSize}setContainerSize(j,Q){this.containerSize={width:j,height:Q},this.logger.info("Container Size: "+JSON.stringify(this.containerSize)),this.containerSizeUpdated.next(this.containerSize)}sortByKey(j,Q,J,ee="asc"){return j.sort("number"===J?"desc"===ee?(ie,ge)=>+ie[Q]>+ge[Q]?-1:1:(ie,ge)=>+ie[Q]>+ge[Q]?1:-1:"desc"===ee?(ie,ge)=>ie[Q]>ge[Q]?-1:1:(ie,ge)=>ie[Q]>ge[Q]?1:-1)}sortDescByKey(j,Q){return j.sort((J,ee)=>{const ie=+J[Q],ge=+ee[Q];return ie>ge?-1:ie{const ie=+J[Q],ge=+ee[Q];return iege?1:0})}camelCase(j){return j?.replace(/(?:^\w|[A-Z]|\b\w)/g,(Q,J)=>Q.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}titleCase(j,Q,J){return Q&&J&&""!==Q&&""!==J&&(j=j?.replace(new RegExp(Q,"g"),J)),j.indexOf("!\n")>0||j.indexOf(".\n")>0?j.split("\n")?.reduce((ee,ie)=>ee+ie.charAt(0).toUpperCase()+ie.substring(1).toLowerCase()+"\n",""):j.indexOf(" ")>0?j.split(" ")?.reduce((ee,ie)=>ee+ie.charAt(0).toUpperCase()+ie.substring(1).toLowerCase()+" ",""):j.charAt(0).toUpperCase()+j.substring(1).toLowerCase()}convertCurrency(j,Q,J,ee,ie){const ge=(new Date).valueOf();try{return ie&&ee&&(Q===I.BQ.OTHER||J===I.BQ.OTHER)?this.ratesAPIStatus!==I.wn.INITIATED?this.conversionData.data&&this.conversionData.last_fetched&&ge(this.ratesAPIStatus=I.wn.COMPLETED,this.conversionData.data=ae&&"object"==typeof ae?ae:ae&&"string"==typeof ae?JSON.parse(ae):{},this.conversionData.last_fetched=ge,(0,w.of)(this.convertWithFiat(j,Q,ee)))),(0,f.W)(ae=>(this.ratesAPIStatus=I.wn.ERROR,(0,S.$)(()=>"Currency Conversion Error."))))):(0,w.of)(this.conversionData.data&&this.conversionData.last_fetched&&ge"Currency Conversion Error.")}}convertWithoutFiat(j,Q){const J={};switch(J[I.BQ.SATS]=0,J[I.BQ.BTC]=0,Q){case I.BQ.SATS:J[I.BQ.SATS]=j,J[I.BQ.BTC]=1e-8*j;break;case I.BQ.BTC:J[I.BQ.SATS]=1e8*j,J[I.BQ.BTC]=j}return J}convertWithFiat(j,Q,J){const ee={unit:J,iconType:"FA",symbol:null};if(J){const ie=(0,I.Zo)(this.conversionData.data[J].symbol);ee.iconType=ie.iconType,ee.symbol=ie&&"SVG"===ie.iconType&&ie.symbol&&"string"==typeof ie.symbol?this.sanitizer.bypassSecurityTrustHtml(ie.symbol):ie.symbol}switch(ee[I.BQ.SATS]=0,ee[I.BQ.BTC]=0,ee[I.BQ.OTHER]=0,Q){case I.BQ.SATS:ee[I.BQ.SATS]=j,ee[I.BQ.BTC]=1e-8*j,ee[I.BQ.OTHER]=1e-8*j*this.conversionData.data[J].last;break;case I.BQ.BTC:ee[I.BQ.SATS]=1e8*j,ee[I.BQ.BTC]=j,ee[I.BQ.OTHER]=j*this.conversionData.data[J].last;break;case I.BQ.OTHER:ee[I.BQ.SATS]=j/this.conversionData.data[J].last*1e8,ee[I.BQ.BTC]=j/this.conversionData.data[J].last,ee[I.BQ.OTHER]=j}return ee}convertTime(j,Q,J){switch(Q){case I.F7.SECS:switch(J){case I.F7.MINS:j/=60;break;case I.F7.HOURS:j/=I.bz;break;case I.F7.DAYS:j/=24*I.bz}break;case I.F7.MINS:switch(J){case I.F7.SECS:j*=60;break;case I.F7.HOURS:j/=60;break;case I.F7.DAYS:j/=1440}break;case I.F7.HOURS:switch(J){case I.F7.SECS:j*=I.bz;break;case I.F7.MINS:j*=60;break;case I.F7.DAYS:j/=24}break;case I.F7.DAYS:switch(J){case I.F7.SECS:j=j*I.bz*24;break;case I.F7.MINS:j=60*j*24;break;case I.F7.HOURS:j*=24}}return j}downloadFile(j,Q,J=".json",ee=".csv"){let ie=new Blob;ie=".json"===J?new Blob(["\ufeff"+this.convertToCSV(j)],{type:"text/csv;charset=utf-8;"}):new Blob([j.toString()],{type:"text/plain;charset=utf-8"});const ge=document.createElement("a"),ae=URL.createObjectURL(ie);-1!==navigator.userAgent.indexOf("Safari")&&-1===navigator.userAgent.indexOf("Chrome")&&ge.setAttribute("target","_blank"),ge.setAttribute("href",ae),ge.setAttribute("download",Q+ee),ge.style.visibility="hidden",document.body.appendChild(ge),ge.click(),document.body.removeChild(ge)}convertToCSV(j){const Q=[];let J="",ee="",ie="";return"object"!=typeof j&&(j=JSON.parse(j)),j.forEach((ae,Me)=>{for(const Te in ae)Q.findIndex(de=>de===Te)<0&&Q.push(Te)}),ie=Q.join(",")+"\r\n",j.forEach(ae=>{J="",Q.forEach(Me=>{if(ae.hasOwnProperty(Me))if(Array.isArray(ae[Me]))ee="",ae[Me].forEach((Te,de)=>{ee+="object"==typeof Te?"("+JSON.stringify(Te)?.replace(/\,/g,";")+")":"("+Te+")"}),J+=ee+",";else if("object"==typeof ae[Me])J+=JSON.stringify(ae[Me])?.replace(/\,/g,";")+",";else if(Me.includes("timestamp")||Me.includes("date"))try{switch(ae[Me].toString().length){case 10:J+=this.datePipe.transform(new Date(1e3*ae[Me]),"dd/MMM/y HH:mm")+",";break;case 13:J+=this.datePipe.transform(new Date(ae[Me]),"dd/MMM/y HH:mm")+",";break;default:J+=ae[Me]+","}}catch{J+=ae[Me]+","}else J+=ae[Me]+",";else J+=","}),ie+=J.slice(0,-1)+"\r\n"}),ie}isVersionCompatible(j,Q){if(j){const J=j.match(/v?(?\d+(?:\.\d+)*)/);if(J&&J.groups&&J.groups.version){this.logger.info("Current Version: "+J.groups.version),this.logger.info("Checking Compatiblility with Version: "+Q);const ee=J.groups.version.split(".")||[],ie=Q.split(".");return+ee[0]>+ie[0]||+ee[0]==+ie[0]&&+ee[1]>+ie[1]||+ee[0]==+ie[0]&&+ee[1]==+ie[1]&&+ee[2]>=+ie[2]}return this.logger.error("Invalid Version String: "+j),!1}return!1}extractErrorMessage(j,Q="Unknown Error."){const J=this.titleCase(j.error&&j.error.text&&"string"==typeof j.error.text&&j.error.text.includes('')?"API Route Does Not Exist.":j.error&&j.error.error&&j.error.error.error&&j.error.error.error.error&&j.error.error.error.error.error&&"string"==typeof j.error.error.error.error.error?j.error.error.error.error.error:j.error&&j.error.error&&j.error.error.error&&j.error.error.error.error&&"string"==typeof j.error.error.error.error?j.error.error.error.error:j.error&&j.error.error&&j.error.error.error&&"string"==typeof j.error.error.error?j.error.error.error:j.error&&j.error.error&&"string"==typeof j.error.error?j.error.error:j.error&&"string"==typeof j.error?j.error:j.error&&j.error.error&&j.error.error.error&&j.error.error.error.error&&j.error.error.error.error.message&&"string"==typeof j.error.error.error.error.message?j.error.error.error.error.message:j.error&&j.error.error&&j.error.error.error&&j.error.error.error.message&&"string"==typeof j.error.error.error.message?j.error.error.error.message:j.error&&j.error.error&&j.error.error.message&&"string"==typeof j.error.error.message?j.error.error.message:j.error&&j.error.message&&"string"==typeof j.error.message?j.error.message:j.message&&"string"==typeof j.message?j.message:Q);return this.logger.info("Error Message: "+J),J}extractErrorCode(j,Q=500){const J=j.error&&j.error.error&&j.error.error.message&&j.error.error.message.code?j.error.error.message.code:j.error&&j.error.error&&j.error.error.code?j.error.error.code:j.error&&j.error.code?j.error.code:j.code?j.code:j.status?j.status:Q;return this.logger.info("Error Code: "+J),J}extractErrorNumber(j,Q=500){const J=j.error&&j.error.error&&j.error.error.errno?j.error.error.errno:j.error&&j.error.errno?j.error.errno:j.errno?j.errno:j.status?j.status:Q;return this.logger.info("Error Number: "+J),J}ngOnDestroy(){this.containerSizeUpdated.next(null),this.containerSizeUpdated.complete()}static#e=this.\u0275fac=function(Q){return new(Q||W)(d.KVO(T.u),d.KVO(y.gP),d.KVO(F.vh),d.KVO(R.up))};static#t=this.\u0275prov=d.jDH({token:W,factory:W.\u0275fac})}return W})()},4416:(Qe,te,g)=>{"use strict";g.d(te,{A$:()=>Te,A0:()=>T,Ah:()=>qe,BQ:()=>c,Bd:()=>V,Bv:()=>ee,C7:()=>v,F7:()=>D,G:()=>J,H$:()=>I,HW:()=>Me,Hx:()=>r,It:()=>x,Jd:()=>Xe,Jr:()=>ge,KR:()=>ne,Ld:()=>$,MZ:()=>se,QP:()=>fe,SY:()=>F,TC:()=>ke,TH:()=>_e,U1:()=>de,UN:()=>m,Uq:()=>be,Uu:()=>mt,WW:()=>Yt,X8:()=>rt,XG:()=>j,Y0:()=>X,ZC:()=>yt,Zb:()=>_,Zi:()=>Et,Zo:()=>Vt,_1:()=>Ye,_U:()=>pe,aG:()=>k,aR:()=>me,aU:()=>ce,bz:()=>l,ck:()=>ie,f7:()=>h,iI:()=>L,jG:()=>Ie,k:()=>y,md:()=>z,mu:()=>He,nv:()=>Q,o1:()=>ae,oi:()=>ue,on:()=>S,q9:()=>N,rl:()=>d,rs:()=>Ee,tj:()=>C,ul:()=>Ze,wn:()=>Ke,xk:()=>_t,xp:()=>W,xv:()=>f});var e=g(4438),t=g(6695),w=g(5383);function S(oe){const tt=new t.xX;return tt.itemsPerPageLabel=oe+" per page:",tt}const l=3600,x=24*l*7,f="0.15.2-beta",I=(0,e.naY)()?"http://localhost:3000/rtl/api":"./api",d={AUTHENTICATE_API:I+"/authenticate",CONF_API:I+"/conf",PAGE_SETTINGS_API:I+"/pagesettings",BALANCE_API:"/balance",FEES_API:"/fees",PEERS_API:"/peers",CHANNELS_API:"/channels",CHANNELS_BACKUP_API:"/channels/backup",GETINFO_API:"/getinfo",WALLET_API:"/wallet",NETWORK_API:"/network",NEW_ADDRESS_API:"/newaddress",TRANSACTIONS_API:"/transactions",PAYMENTS_API:"/payments",INVOICES_API:"/invoices",SWITCH_API:"/switch",ON_CHAIN_API:"/onchain",MESSAGE_API:"/message",OFFERS_API:"/offers",UTILITY_API:"/utility",LOOP_API:"/loop",BOLTZ_API:"/boltz",Web_SOCKET_API:"/ws"},T=["Sats","BTC"],y={Sats:"1.0-0",BTC:"1.6-6",OTHER:"1.2-2"},F=["SECS","MINS","HOURS","DAYS"],z=10,W=[5,10,25,100],$=[{addressId:"0",addressCode:"bech32",addressTp:"Bech32 (P2WKH)",addressDetails:"Pay to witness key hash"},{addressId:"1",addressCode:"p2sh-segwit",addressTp:"P2SH (NP2WKH)",addressDetails:"Pay to nested witness key hash (default)"},{addressId:"4",addressCode:"p2tr",addressTp:"Taproot (P2TR)",addressDetails:"Pay to taproot pubkey"}],j=[{id:"0",name:"Priority (Default)"},{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],Q=[{id:"none",name:"No Fee Limit",placeholder:"No Limit"},{id:"fixed",name:"Fixed Limit (Sats)",placeholder:"Fixed Limit in Sats"},{id:"percent",name:"Percentage of Payment Amount",placeholder:"Percentage Limit"}],J=[{feeRateId:"urgent",feeRateType:"Urgent"},{feeRateId:"normal",feeRateType:"Normal"},{feeRateId:"slow",feeRateType:"Slow"},{feeRateId:"customperkb",feeRateType:"Custom"}],ee={themes:[{id:"PURPLE",name:"Diogo"},{id:"TEAL",name:"My2Sats"},{id:"INDIGO",name:"RTL"},{id:"PINK",name:"BK"},{id:"YELLOW",name:"Gold"}],modes:[{id:"DAY",name:"Day"},{id:"NIGHT",name:"Night"}]};var ie=function(oe){return oe.PAYMENT_RECEIVED="payment-received",oe.PAYMENT_RELAYED="payment-relayed",oe.PAYMENT_SENT="payment-sent",oe.PAYMENT_SETTLING_ONCHAIN="payment-settling-onchain",oe.PAYMENT_FAILED="payment-failed",oe.CHANNEL_OPENED="channel-opened",oe.CHANNEL_STATE_CHANGED="channel-state-changed",oe.CHANNEL_CLOSED="channel-closed",oe}(ie||{}),ge=function(oe){return oe.CONNECT="connect",oe.DISCONNECT="disconnect",oe.WARNING="warning",oe.INVOICE_PAYMENT="invoice_payment",oe.INVOICE_CREATION="invoice_creation",oe.CHANNEL_OPENED="channel_opened",oe.CHANNEL_STATE_CHANGED="channel_state_changed",oe.SENDPAY_SUCCESS="sendpay_success",oe.SENDPAY_FAILURE="sendpay_failure",oe.COIN_MOVEMENT="coin_movement",oe.BALANCE_SNAPSHOT="balance_snapshot",oe.BLOCK_ADDED="block_added",oe.OPENCHANNEL_PEER_SIGS="openchannel_peer_sigs",oe.CHANNEL_OPEN_FAILED="channel_open_failed",oe}(ge||{}),ae=function(oe){return oe.INVOICE="invoice",oe}(ae||{}),Me=function(oe){return oe.OPERATOR="OPERATOR",oe.MERCHANT="MERCHANT",oe.ALL="ALL",oe}(Me||{}),Te=function(oe){return oe.INFORMATION="Information",oe.WARNING="Warning",oe.ERROR="Error",oe.SUCCESS="Success",oe.CONFIRM="Confirm",oe}(Te||{}),de=function(oe){return oe.JWT="JWT",oe.PASSWORD="PASSWORD",oe}(de||{}),D=function(oe){return oe.SECS="SECS",oe.MINS="MINS",oe.HOURS="HOURS",oe.DAYS="DAYS",oe}(D||{}),c=function(oe){return oe.SATS="Sats",oe.BTC="BTC",oe.OTHER="OTHER",oe}(c||{}),m=function(oe){return oe.ARRAY="ARRAY",oe.NUMBER="NUMBER",oe.STRING="STRING",oe.BOOLEAN="BOOLEAN",oe.PASSWORD="PASSWORD",oe.DATE="DATE",oe.DATE_TIME="DATE_TIME",oe}(m||{}),h=function(oe){return oe.XS="XS",oe.SM="SM",oe.MD="MD",oe.LG="LG",oe.XL="XL",oe}(h||{});const C={COOPERATIVE_CLOSE:{name:"Co-operative Close",tooltip:"Channel closed cooperatively"},LOCAL_FORCE_CLOSE:{name:"Local Force Close",tooltip:"Channel force-closed by the local node"},REMOTE_FORCE_CLOSE:{name:"Remote Force Close",tooltip:"Channel force-closed by the remote node"},BREACH_CLOSE:{name:"Breach Close",tooltip:"Remote node attempted to broadcast a prior revoked channel state"},FUNDING_CANCELED:{name:"Funding Canceled",tooltip:"Channel never fully opened"},ABANDONED:{name:"Abandoned",tooltip:"Channel abandoned by the local node"}},k={WITNESS_PUBKEY_HASH:{name:"Witness Pubkey Hash",tooltip:""},NESTED_PUBKEY_HASH:{name:"Nested Pubkey Hash",tooltip:""},UNUSED_WITNESS_PUBKEY_HASH:{name:"Unused Witness Pubkey Hash",tooltip:""},UNUSED_NESTED_PUBKEY_HASH:{name:"Unused Nested Pubkey Hash",tooltip:""},TAPROOT_PUBKEY:{name:"Taproot Pubkey Hash",tooltip:""}};var L=function(oe){return oe.WIRE_INVALID_ONION_VERSION="Invalid Onion Version",oe.WIRE_INVALID_ONION_HMAC="Invalid Onion HMAC",oe.WIRE_INVALID_ONION_KEY="Invalid Onion Key",oe.WIRE_TEMPORARY_CHANNEL_FAILURE="Temporary Channel Failure",oe.WIRE_PERMANENT_CHANNEL_FAILURE="Permanent Channel Failure",oe.WIRE_REQUIRED_CHANNEL_FEATURE_MISSING="Missing Required Channel Feature",oe.WIRE_UNKNOWN_NEXT_PEER="Unknown Next Peer",oe.WIRE_AMOUNT_BELOW_MINIMUM="Amount Below Minimum",oe.WIRE_FEE_INSUFFICIENT="Insufficient Fee",oe.WIRE_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",oe.WIRE_EXPIRY_TOO_FAR="Expiry Too Far",oe.WIRE_EXPIRY_TOO_SOON="Expiry Too Soon",oe.WIRE_CHANNEL_DISABLED="Channel Disabled",oe.WIRE_INVALID_ONION_PAYLOAD="Invalid Onion Payload",oe.WIRE_INVALID_REALM="Invalid Realm",oe.WIRE_PERMANENT_NODE_FAILURE="Permanent Node Failure",oe.WIRE_TEMPORARY_NODE_FAILURE="Temporary Node Failure",oe.WIRE_REQUIRED_NODE_FEATURE_MISSING="Missing Required Node Feature",oe.WIRE_INVALID_ONION_BLINDING="Invalid Onion Binding",oe.WIRE_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS="Incorrect or Unknow Payment Details",oe.WIRE_MPP_TIMEOUT="MPP Timeout",oe.WIRE_FINAL_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",oe.WIRE_FINAL_INCORRECT_HTLC_AMOUNT="Incorrect HTLC Amount",oe}(L||{}),_=function(oe){return oe.CHANNELD_NORMAL="Active",oe.OPENINGD="Opening",oe.CHANNELD_AWAITING_LOCKIN="Pending Open",oe.CHANNELD_SHUTTING_DOWN="Shutting Down",oe.CLOSINGD_SIGEXCHANGE="Closing: Sig Exchange",oe.CLOSINGD_COMPLETE="Closed",oe.AWAITING_UNILATERAL="Awaiting Unilateral Close",oe.FUNDING_SPEND_SEEN="Funding Spend Seen",oe.ONCHAIN="Onchain",oe.DUALOPEND_OPEN_INIT="Dual Open Initialized",oe.DUALOPEND_AWAITING_LOCKIN="Dual Pending Open",oe}(_||{}),r=function(oe){return oe.INITIATED="Initiated",oe.PREIMAGE_REVEALED="Preimage Revealed",oe.HTLC_PUBLISHED="HTLC Published",oe.SUCCESS="Successful",oe.FAILED="Failed",oe.INVOICE_SETTLED="Invoice Settled",oe}(r||{}),v=function(oe){return oe.LOOP_OUT="LOOP_OUT",oe.LOOP_IN="LOOP_IN",oe}(v||{}),V=function(oe){return oe.SWAP_OUT="SWAP_OUT",oe.SWAP_IN="SWAP_IN",oe}(V||{}),N=function(oe){return oe["swap.created"]="Swap Created",oe["swap.expired"]="Swap Expired",oe["invoice.set"]="Invoice Set",oe["invoice.paid"]="Invoice Paid",oe["invoice.pending"]="Invoice Pending",oe["invoice.settled"]="Invoice Settled",oe["invoice.failedToPay"]="Invoice Failed To Pay",oe["channel.created"]="Channel Created",oe["transaction.failed"]="Transaction Failed",oe["transaction.mempool"]="Transaction Mempool",oe["transaction.claimed"]="Transaction Claimed",oe["transaction.refunded"]="Transaction Refunded",oe["transaction.confirmed"]="Transaction Confirmed",oe["transaction.lockupFailed"]="Lockup Transaction Failed",oe["swap.refunded"]="Swap Refunded",oe["swap.abandoned"]="Swap Abandoned",oe}(N||{});const ne=[{name:"Jan",days:31},{name:"Feb",days:28},{name:"Mar",days:31},{name:"Apr",days:30},{name:"May",days:31},{name:"Jun",days:30},{name:"Jul",days:31},{name:"Aug",days:31},{name:"Sep",days:30},{name:"Oct",days:31},{name:"Nov",days:30},{name:"Dec",days:31}],Ee=["MONTHLY","YEARLY"],qe=["password","changeme","moneyprintergobrrr"];var Ke=function(oe){return oe.UN_INITIATED="UN_INITIATED",oe.INITIATED="INITIATED",oe.COMPLETED="COMPLETED",oe.ERROR="ERROR",oe}(Ke||{});const se={NO_SPINNER:"No Spinner...",GET_NODE_INFO:"Getting Node Information...",INITALIZE_NODE_DATA:"Initializing Node Data...",GENERATE_NEW_ADDRESS:"Getting New Address...",SEND_FUNDS:"Sending Funds...",UPDATE_CHAN_POLICY:"Updating Channel Policy...",GET_CHAN_POLICY:"Fetching Channel Policy...",GET_REMOTE_POLICY:"Fetching Remote Policy...",CLOSE_CHANNEL:"Closing Channel...",FORCE_CLOSE_CHANNEL:"Force Closing Channel...",OPEN_CHANNEL:"Opening Channel...",CONNECT_PEER:"Connecting Peer...",DISCONNECT_PEER:"Disconnecting Peer...",ADD_INVOICE:"Adding Invoice...",CREATE_INVOICE:"Creating Invoice...",DELETE_INVOICE:"Deleting Invoices...",DECODE_PAYMENT:"Decoding Payment...",DECODE_OFFER:"Decoding Offer...",DECODE_PAYMENTS:"Decoding Payments...",FETCH_INVOICE:"Fetching Invoice...",GET_SENT_PAYMENTS:"Getting Sent Payments...",SEND_PAYMENT:"Sending Payment...",SEND_KEYSEND:"Sending Keysend Payment...",SEARCHING_NODE:"Searching Node...",SEARCHING_CHANNEL:"Searching Channel...",SEARCHING_INVOICE:"Searching Invoice...",SEARCHING_PAYMENT:"Searching Payment...",BACKUP_CHANNEL:"Backup Channels...",VERIFY_CHANNEL:"Verify Channel...",DOWNLOAD_BACKUP_FILE:"Downloading Backup File...",RESTORE_CHANNEL:"Restoring Channels...",GET_TERMS_QUOTES:"Getting Terms and Quotes...",LABEL_UTXO:"Labelling UTXO...",GET_NODE_ADDRESS:"Getting Node Address...",GEN_SEED:"Generating Seed...",INITIALIZE_WALLET:"Initializing Wallet...",UNLOCK_WALLET:"Unlocking Wallet...",WAIT_SYNC_NODE:"Waiting for Node Sync...",UPDATE_BOLTZ_SETTINGS:"Updating Boltz Service Settings...",UPDATE_LOOP_SETTINGS:"Updating Loop Service Settings...",UPDATE_PEERSWAP_SETTINGS:"Updating Peerswap Service Settings...",UPDATE_SETTING:"Updating Setting...",UPDATE_APPLICATION_SETTINGS:"Updating Application Settings...",UPDATE_NODE_SETTINGS:"Updating Node Settings...",UPDATE_SELECTED_NODE:"Updating Selected Node...",OPEN_CONFIG_FILE:"Opening Config File...",GET_BOLTZ_INFO:"Getting Boltz Info...",GET_SERVICE_INFO:"Getting Service Info...",GET_QUOTE:"Getting Quotes...",UPDATE_DEFAULT_NODE_SETTING:"Updating Defaule Node Settings...",GET_BOLTZ_SWAPS:"Getting Boltz Swaps...",SIGN_MESSAGE:"Signing Message...",VERIFY_MESSAGE:"Verifying Message...",BUMP_FEE:"Bumping Fee...",LEASE_UTXO:"Leasing UTXO...",GET_LOOP_INFO:"Getting Loop Info...",GET_LOOP_SWAPS:"Getting List Swaps...",GET_FORWARDING_HISTORY:"Getting Forwarding History...",GET_LOOKUP_DETAILS:"Getting Lookup Details...",GET_RTL_CONFIG:"Getting RTL Config...",VERIFY_TOKEN:"Verify Token...",DISABLE_OFFER:"Disabling Offer...",CREATE_OFFER:"Creating Offer...",DELETE_OFFER_BOOKMARK:"Deleting Bookmark...",GET_FUNDER_POLICY:"Getting Or Updating Funder Policy...",GET_LIST_CONFIGS:"Getting Configurations List...",LIST_NETWORK_NODES:"Getting Network Nodes List...",GET_PAGE_SETTINGS:"Getting Page Settings...",SET_PAGE_SETTINGS:"Setting Page Settings...",UPDATE_PAGE_SETTINGS:"Updating Page Layout...",REBALANCE_CHANNEL:"Rebalancing Channel...",LOG_OUT:"Logging Out..."};var X=function(oe){return oe.INVOICE="INVOICE",oe.OFFER="OFFER",oe.KEYSEND="KEYSEND",oe}(X||{}),me=function(oe){return oe.FEES="FEES",oe.EVENTS="EVENTS",oe}(me||{}),ce=function(oe){return oe.VOID="VOID",oe.SET_API_URL_ECL="SET_API_URL_ECL",oe.UPDATE_API_CALL_STATUS_ROOT="UPDATE_API_CALL_STATUS_ROOT",oe.RESET_ROOT_STORE="RESET_ROOT_STORE",oe.CLOSE_ALL_DIALOGS="CLOSE_ALL_DIALOGS",oe.OPEN_SNACK_BAR="OPEN_SNACKBAR",oe.OPEN_SPINNER="OPEN_SPINNER",oe.CLOSE_SPINNER="CLOSE_SPINNER",oe.OPEN_ALERT="OPEN_ALERT",oe.CLOSE_ALERT="CLOSE_ALERT",oe.OPEN_CONFIRMATION="OPEN_CONFIRMATION",oe.CLOSE_CONFIRMATION="CLOSE_CONFIRMATION",oe.SHOW_PUBKEY="SHOW_PUBKEY",oe.FETCH_CONFIG="FETCH_CONFIG",oe.SHOW_CONFIG="SHOW_CONFIG",oe.FETCH_STORE="FETCH_STORE",oe.SET_STORE="SET_STORE",oe.FETCH_APPLICATION_SETTINGS="FETCH_APPLICATION_SETTINGS",oe.SET_APPLICATION_SETTINGS="SET_APPLICATION_SETTINGS",oe.SAVE_SETTINGS="SAVE_SETTINGS",oe.SET_SELECTED_NODE="SET_SELECTED_NODE",oe.UPDATE_ROOT_NODE_SETTINGS="UPDATE_ROOT_NODE_SETTINGS",oe.UPDATE_APPLICATION_SETTINGS="UPDATE_APPLICATION_SETTINGS",oe.UPDATE_NODE_SETTINGS="UPDATE_NODE_SETTINGS",oe.SET_SELECTED_NODE_SETTINGS="SET_SELECTED_NODE_SETTINGS",oe.SET_NODE_DATA="SET_NODE_DATA",oe.IS_AUTHORIZED="IS_AUTHORIZED",oe.IS_AUTHORIZED_RES="IS_AUTHORIZED_RES",oe.LOGIN="LOGIN",oe.VERIFY_TWO_FA="VERIFY_TWO_FA",oe.LOGOUT="LOGOUT",oe.RESET_PASSWORD="RESET_PASSWORD",oe.RESET_PASSWORD_RES="RESET_PASSWORD_RES",oe.FETCH_FILE="FETCH_FILE",oe.SHOW_FILE="SHOW_FILE",oe}(ce||{}),fe=function(oe){return oe.RESET_LND_STORE="RESET_LND_STORE",oe.UPDATE_API_CALL_STATUS_LND="UPDATE_API_CALL_STATUS_LND",oe.SET_CHILD_NODE_SETTINGS_LND="SET_CHILD_NODE_SETTINGS_LND",oe.UPDATE_SELECTED_NODE_OPTIONS="UPDATE_SELECTED_NODE_OPTIONS",oe.FETCH_PAGE_SETTINGS_LND="FETCH_PAGE_SETTINGS_LND",oe.SET_PAGE_SETTINGS_LND="SET_PAGE_SETTINGS_LND",oe.SAVE_PAGE_SETTINGS_LND="SAVE_PAGE_SETTINGS_LND",oe.FETCH_INFO_LND="FETCH_INFO_LND",oe.SET_INFO_LND="SET_INFO_LND",oe.FETCH_PEERS_LND="FETCH_PEERS_LND",oe.SET_PEERS_LND="SET_PEERS_LND",oe.SAVE_NEW_PEER_LND="SAVE_NEW_PEER_LND",oe.NEWLY_ADDED_PEER_LND="NEWLY_ADDED_PEER_LND",oe.DETACH_PEER_LND="DETACH_PEER_LND",oe.REMOVE_PEER_LND="REMOVE_PEER_LND",oe.SAVE_NEW_INVOICE_LND="SAVE_NEW_INVOICE_LND",oe.NEWLY_SAVED_INVOICE_LND="NEWLY_SAVED_INVOICE_LND",oe.ADD_INVOICE_LND="ADD_INVOICE_LND",oe.FETCH_FEES_LND="FETCH_FEES_LND",oe.SET_FEES_LND="SET_FEES_LND",oe.FETCH_BLOCKCHAIN_BALANCE_LND="FETCH_BLOCKCHAIN_BALANCE_LND",oe.SET_BLOCKCHAIN_BALANCE_LND="SET_BLOCKCHAIN_BALANCE_LND",oe.FETCH_NETWORK_LND="FETCH_NETWORK_LND",oe.SET_NETWORK_LND="SET_NETWORK_LND",oe.FETCH_CHANNELS_LND="FETCH_CHANNELS_LND",oe.FETCH_PENDING_CHANNELS_LND="FETCH_PENDING_CHANNELS_LND",oe.FETCH_CLOSED_CHANNELS_LND="FETCH_CLOSED_CHANNELS_LND",oe.SET_CHANNELS_LND="SET_CHANNELS_LND",oe.SET_PENDING_CHANNELS_LND="SET_PENDING_CHANNELS_LND",oe.SET_CLOSED_CHANNELS_LND="SET_CLOSED_CHANNELS_LND",oe.UPDATE_CHANNEL_LND="UPDATE_CHANNEL_LND",oe.SAVE_NEW_CHANNEL_LND="SAVE_NEW_CHANNEL_LND",oe.CLOSE_CHANNEL_LND="CLOSE_CHANNEL_LND",oe.REMOVE_CHANNEL_LND="REMOVE_CHANNEL_LND",oe.BACKUP_CHANNELS_LND="BACKUP_CHANNELS_LND",oe.VERIFY_CHANNEL_LND="VERIFY_CHANNEL_LND",oe.BACKUP_CHANNELS_RES_LND="BACKUP_CHANNELS_RES_LND",oe.VERIFY_CHANNEL_RES_LND="VERIFY_CHANNEL_RES_LND",oe.RESTORE_CHANNELS_LIST_LND="RESTORE_CHANNELS_LIST_LND",oe.SET_RESTORE_CHANNELS_LIST_LND="SET_RESTORE_CHANNELS_LIST_LND",oe.RESTORE_CHANNELS_LND="RESTORE_CHANNELS_LND",oe.RESTORE_CHANNELS_RES_LND="RESTORE_CHANNELS_RES_LND",oe.FETCH_INVOICES_LND="FETCH_INVOICES_LND",oe.SET_INVOICES_LND="SET_INVOICES_LND",oe.UPDATE_INVOICE_LND="UPDATE_INVOICE_LND",oe.UPDATE_PAYMENT_LND="UPDATE_PAYMENT_LND",oe.SET_TOTAL_INVOICES_LND="SET_TOTAL_INVOICES_LND",oe.FETCH_TRANSACTIONS_LND="FETCH_TRANSACTIONS_LND",oe.SET_TRANSACTIONS_LND="SET_TRANSACTIONS_LND",oe.FETCH_UTXOS_LND="FETCH_UTXOS_LND",oe.SET_UTXOS_LND="SET_UTXOS_LND",oe.FETCH_PAYMENTS_LND="FETCH_PAYMENTS_LND",oe.SET_PAYMENTS_LND="SET_PAYMENTS_LND",oe.SEND_PAYMENT_LND="SEND_PAYMENT_LND",oe.SEND_PAYMENT_STATUS_LND="SEND_PAYMENT_STATUS_LND",oe.FETCH_GRAPH_NODE_LND="FETCH_GRAPH_NODE_LND",oe.SET_GRAPH_NODE_LND="SET_GRAPH_NODE_LND",oe.GET_NEW_ADDRESS_LND="GET_NEW_ADDRESS_LND",oe.SET_NEW_ADDRESS_LND="SET_NEW_ADDRESS_LND",oe.SET_CHANNEL_TRANSACTION_LND="SET_CHANNEL_TRANSACTION_LND",oe.SET_CHANNEL_TRANSACTION_RES_LND="SET_CHANNEL_TRANSACTION_RES_LND",oe.GEN_SEED_LND="GEN_SEED_LND",oe.GEN_SEED_RESPONSE_LND="GEN_SEED_RESPONSE_LND",oe.INIT_WALLET_LND="INIT_WALLET_LND",oe.INIT_WALLET_RESPONSE_LND="INIT_WALLET_RESPONSE_LND",oe.UNLOCK_WALLET_LND="UNLOCK_WALLET_LND",oe.PEER_LOOKUP_LND="PEER_LOOKUP_LND",oe.CHANNEL_LOOKUP_LND="CHANNEL_LOOKUP_LND",oe.INVOICE_LOOKUP_LND="INVOICE_LOOKUP_LND",oe.PAYMENT_LOOKUP_LND="PAYMENT_LOOKUP_LND",oe.SET_LOOKUP_LND="SET_LOOKUP_LND",oe.GET_FORWARDING_HISTORY_LND="GET_FORWARDING_HISTORY_LND",oe.SET_FORWARDING_HISTORY_LND="SET_FORWARDING_HISTORY_LND",oe.GET_QUERY_ROUTES_LND="GET_QUERY_ROUTES_LND",oe.SET_QUERY_ROUTES_LND="SET_QUERY_ROUTES_LND",oe.GET_ALL_LIGHTNING_TRANSATIONS_LND="GET_ALL_LIGHTNING_TRANSATIONS_LND",oe.SET_ALL_LIGHTNING_TRANSATIONS_LND="SET_ALL_LIGHTNING_TRANSATIONS_LND",oe}(fe||{}),ke=function(oe){return oe.RESET_CLN_STORE="RESET_CLN_STORE",oe.UPDATE_API_CALL_STATUS_CLN="UPDATE_API_CALL_STATUS_CLN",oe.SET_CHILD_NODE_SETTINGS_CLN="SET_CHILD_NODE_SETTINGS_CLN",oe.FETCH_PAGE_SETTINGS_CLN="FETCH_PAGE_SETTINGS_CLN",oe.SET_PAGE_SETTINGS_CLN="SET_PAGE_SETTINGS_CLN",oe.SAVE_PAGE_SETTINGS_CLN="SAVE_PAGE_SETTINGS_CLN",oe.FETCH_INFO_CLN="FETCH_INFO_CL_CLN",oe.SET_INFO_CLN="SET_INFO_CLN",oe.FETCH_FEES_CLN="FETCH_FEES_CLN",oe.SET_FEES_CLN="SET_FEES_CLN",oe.FETCH_FEE_RATES_CLN="FETCH_FEE_RATES_CLN",oe.SET_FEE_RATES_CLN="SET_FEE_RATES_CLN",oe.GET_NEW_ADDRESS_CLN="GET_NEW_ADDRESS_CLN",oe.SET_NEW_ADDRESS_CLN="SET_NEW_ADDRESS_CLN",oe.FETCH_UTXO_BALANCES_CLN="FETCH_UTXO_BALANCES_CLN",oe.SET_UTXO_BALANCES_CLN="SET_UTXO_BALANCES_CLN",oe.FETCH_PEERS_CLN="FETCH_PEERS_CLN",oe.SET_PEERS_CLN="SET_PEERS_CLN",oe.SAVE_NEW_PEER_CLN="SAVE_NEW_PEER_CLN",oe.NEWLY_ADDED_PEER_CLN="NEWLY_ADDED_PEER_CLN",oe.ADD_PEER_CLN="ADD_PEER_CLN",oe.DETACH_PEER_CLN="DETACH_PEER_CLN",oe.REMOVE_PEER_CLN="REMOVE_PEER_CLN",oe.FETCH_CHANNELS_CLN="FETCH_CHANNELS_CLN",oe.SET_CHANNELS_CLN="SET_CHANNELS_CLN",oe.UPDATE_CHANNEL_CLN="UPDATE_CHANNEL_CLN",oe.SAVE_NEW_CHANNEL_CLN="SAVE_NEW_CHANNEL_CLN",oe.CLOSE_CHANNEL_CLN="CLOSE_CHANNEL_CLN",oe.REMOVE_CHANNEL_CLN="REMOVE_CHANNEL_CLN",oe.FETCH_PAYMENTS_CLN="FETCH_PAYMENTS_CLN",oe.SET_PAYMENTS_CLN="SET_PAYMENTS_CLN",oe.SEND_PAYMENT_CLN="SEND_PAYMENT_CLN",oe.SEND_PAYMENT_STATUS_CLN="SEND_PAYMENT_STATUS_CLN",oe.GET_QUERY_ROUTES_CLN="GET_QUERY_ROUTES_CLN",oe.SET_QUERY_ROUTES_CLN="SET_QUERY_ROUTES_CLN",oe.PEER_LOOKUP_CLN="PEER_LOOKUP_CLN",oe.CHANNEL_LOOKUP_CLN="CHANNEL_LOOKUP_CLN",oe.INVOICE_LOOKUP_CLN="INVOICE_LOOKUP_CLN",oe.SET_LOOKUP_CLN="SET_LOOKUP_CLN",oe.GET_FORWARDING_HISTORY_CLN="GET_FORWARDING_HISTORY_CLN",oe.SET_FORWARDING_HISTORY_CLN="SET_FORWARDING_HISTORY_CLN",oe.GET_FAILED_FORWARDING_HISTORY_CLN="GET_FAILED_FORWARDING_HISTORY_CLN",oe.SET_FAILED_FORWARDING_HISTORY_CLN="SET_FAILED_FORWARDING_HISTORY_CLN",oe.GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",oe.SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",oe.FETCH_INVOICES_CLN="FETCH_INVOICES_CLN",oe.SET_INVOICES_CLN="SET_INVOICES_CLN",oe.SAVE_NEW_INVOICE_CLN="SAVE_NEW_INVOICE_CLN",oe.ADD_INVOICE_CLN="ADD_INVOICE_CLN",oe.UPDATE_INVOICE_CLN="UPDATE_INVOICE_CLN",oe.DELETE_EXPIRED_INVOICE_CLN="DELETE_EXPIRED_INVOICE_CLN",oe.SET_CHANNEL_TRANSACTION_CLN="SET_CHANNEL_TRANSACTION_CLN",oe.SET_CHANNEL_TRANSACTION_RES_CLN="SET_CHANNEL_TRANSACTION_RES_CLN",oe.FETCH_OFFER_INVOICE_CLN="FETCH_OFFER_INVOICE_CLN",oe.SET_OFFER_INVOICE_CLN="SET_OFFER_INVOICE_CLN",oe.FETCH_OFFERS_CLN="FETCH_OFFERS_CLN",oe.SET_OFFERS_CLN="SET_OFFERS_CLN",oe.SAVE_NEW_OFFER_CLN="SAVE_NEW_OFFER_CLN",oe.ADD_OFFER_CLN="ADD_OFFER_CLN",oe.DISABLE_OFFER_CLN="DISABLE_OFFER_CLN",oe.UPDATE_OFFER_CLN="UPDATE_OFFER_CLN",oe.FETCH_OFFER_BOOKMARKS_CLN="FETCH_OFFER_BOOKMARKS_CLN",oe.SET_OFFER_BOOKMARKS_CLN="SET_OFFER_BOOKMARKS_CLN",oe.ADD_UPDATE_OFFER_BOOKMARK_CLN="ADD_UPDATE_OFFER_BOOKMARK_CLN",oe.DELETE_OFFER_BOOKMARK_CLN="DELETE_OFFER_BOOKMARK_CLN",oe.REMOVE_OFFER_BOOKMARK_CLN="REMOVE_OFFER_BOOKMARK_CL",oe}(ke||{}),mt=function(oe){return oe.RESET_ECL_STORE="RESET_ECL_STORE",oe.UPDATE_API_CALL_STATUS_ECL="UPDATE_API_CALL_STATUS_ECL",oe.SET_CHILD_NODE_SETTINGS_ECL="SET_CHILD_NODE_SETTINGS_ECL",oe.FETCH_PAGE_SETTINGS_ECL="FETCH_PAGE_SETTINGS_ECL",oe.SET_PAGE_SETTINGS_ECL="SET_PAGE_SETTINGS_ECL",oe.SAVE_PAGE_SETTINGS_ECL="SAVE_PAGE_SETTINGS_ECL",oe.FETCH_INFO_ECL="FETCH_INFO_ECL",oe.SET_INFO_ECL="SET_INFO_ECL",oe.FETCH_FEES_ECL="FETCH_FEES_ECL",oe.SET_FEES_ECL="SET_FEES_ECL",oe.FETCH_CHANNELS_ECL="FETCH_CHANNELS_ECL",oe.SET_ACTIVE_CHANNELS_ECL="SET_ACTIVE_CHANNELS_ECL",oe.SET_PENDING_CHANNELS_ECL="SET_PENDING_CHANNELS_ECL",oe.SET_INACTIVE_CHANNELS_ECL="SET_INACTIVE_CHANNELS_ECL",oe.FETCH_ONCHAIN_BALANCE_ECL="FETCH_ONCHAIN_BALANCE_ECL",oe.SET_ONCHAIN_BALANCE_ECL="SET_ONCHAIN_BALANCE_ECL",oe.FETCH_LIGHTNING_BALANCE_ECL="FETCH_LIGHTNING_BALANCE_ECL",oe.SET_LIGHTNING_BALANCE_ECL="SET_LIGHTNING_BALANCE_ECL",oe.SET_CHANNELS_STATUS_ECL="SET_CHANNELS_STATUS_ECL",oe.FETCH_PEERS_ECL="FETCH_PEERS_ECL",oe.SET_PEERS_ECL="SET_PEERS_ECL",oe.SAVE_NEW_PEER_ECL="SAVE_NEW_PEER_ECL",oe.NEWLY_ADDED_PEER_ECL="NEWLY_ADDED_PEER_ECL",oe.ADD_PEER_ECL="ADD_PEER_ECL",oe.DETACH_PEER_ECL="DETACH_PEER_ECL",oe.REMOVE_PEER_ECL="REMOVE_PEER_ECL",oe.GET_NEW_ADDRESS_ECL="GET_NEW_ADDRESS_ECL",oe.SET_NEW_ADDRESS_ECL="SET_NEW_ADDRESS_ECL",oe.SAVE_NEW_CHANNEL_ECL="SAVE_NEW_CHANNEL_ECL",oe.UPDATE_CHANNEL_ECL="UPDATE_CHANNEL_ECL",oe.CLOSE_CHANNEL_ECL="CLOSE_CHANNEL_ECL",oe.REMOVE_CHANNEL_ECL="REMOVE_CHANNEL_ECL",oe.FETCH_PAYMENTS_ECL="FETCH_PAYMENTS_ECL",oe.SET_PAYMENTS_ECL="SET_PAYMENTS_ECL",oe.GET_QUERY_ROUTES_ECL="GET_QUERY_ROUTES_ECL",oe.SET_QUERY_ROUTES_ECL="SET_QUERY_ROUTES_ECL",oe.SEND_PAYMENT_ECL="SEND_PAYMENT_ECL",oe.SEND_PAYMENT_STATUS_ECL="SEND_PAYMENT_STATUS_ECL",oe.FETCH_TRANSACTIONS_ECL="FETCH_TRANSACTIONS_ECL",oe.SET_TRANSACTIONS_ECL="SET_TRANSACTIONS_ECL",oe.SEND_ONCHAIN_FUNDS_ECL="SEND_ONCHAIN_FUNDS_ECL",oe.SEND_ONCHAIN_FUNDS_RES_ECL="SEND_ONCHAIN_FUNDS_RES_ECL",oe.FETCH_INVOICES_ECL="FETCH_INVOICES_ECL",oe.SET_INVOICES_ECL="SET_INVOICES_ECL",oe.SET_TOTAL_INVOICES_ECL="SET_TOTAL_INVOICES_ECL",oe.CREATE_INVOICE_ECL="CREATE_INVOICE_ECL",oe.ADD_INVOICE_ECL="ADD_INVOICE_ECL",oe.UPDATE_INVOICE_ECL="UPDATE_INVOICE_ECL",oe.PEER_LOOKUP_ECL="PEER_LOOKUP_ECL",oe.INVOICE_LOOKUP_ECL="INVOICE_LOOKUP_ECL",oe.SET_LOOKUP_ECL="SET_LOOKUP_ECL",oe.UPDATE_CHANNEL_STATE_ECL="UPDATE_CHANNEL_STATE_ECL",oe.UPDATE_RELAYED_PAYMENT_ECL="UPDATE_RELAYED_PAYMENT_ECL",oe}(mt||{});const _e=[{range:{min:0,max:1},description:"Requires or supports extra channel re-establish fields"},{range:{min:4,max:5},description:"Commits to a shutdown script pubkey when opening channel"},{range:{min:6,max:7},description:"More sophisticated gossip control"},{range:{min:8,max:9},description:"Requires/supports variable-length routing onion payloads"},{range:{min:10,max:11},description:"Gossip queries can include additional information"},{range:{min:12,max:13},description:"Static key for remote output"},{range:{min:14,max:15},description:"Node supports payment secret field"},{range:{min:16,max:17},description:"Node can receive basic multi-part payments"},{range:{min:18,max:19},description:"Node can create large channels"},{range:{min:20,max:21},description:"Anchor outputs"},{range:{min:22,max:23},description:"Anchor commitment type with zero fee HTLC transactions"},{range:{min:26,max:27},description:"Future segwit versions allowed in shutdown"},{range:{min:30,max:31},description:"AMP support"},{range:{min:44,max:45},description:"Explicit commitment type"}];var be=function(oe){return oe.gossip_queries_ex="Gossip queries including additional information",oe.option_anchor_outputs="Anchor outputs",oe.option_data_loss_protect="Extra channel re-establish fields",oe.var_onion_optin="Variable-length routing onion payloads",oe.option_static_remotekey="Static key for remote output",oe.option_support_large_channel="Create large channels",oe.option_anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",oe.payment_secret="Payment secret field",oe.option_shutdown_anysegwit="Future segwit versions allowed in shutdown",oe.basic_mpp="Basic multi-part payments",oe.gossip_queries="More sophisticated gossip control",oe.option_upfront_shutdown_script="Shutdown script pubkey when opening channel",oe.anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",oe.amp="AMP",oe}(be||{}),pe=function(oe){return oe["data-loss-protect"]="Extra channel re-establish fields",oe["upfront-shutdown-script"]="Shutdown script pubkey when opening channel",oe["gossip-queries"]="More sophisticated gossip control",oe["tlv-onion"]="Variable-length routing onion payloads",oe["ext-gossip-queries"]="Gossip queries can include additional information",oe["static-remote-key"]="Static key for remote output",oe["payment-addr"]="Payment secret field",oe["multi-path-payments"]="Basic multi-part payments",oe["wumbo-channels"]="Wumbo Channels",oe.anchors="Anchor outputs",oe["anchors-zero-fee-htlc-tx"]="Anchor commitment type with zero fee HTLC transactions",oe.amp="AMP",oe}(pe||{});const Ze=[{id:"match",placeholder:"Policy Match (%age)",min:0,max:200},{id:"available",placeholder:"Policy Available (%age)",min:0,max:100},{id:"fixed",placeholder:"Fixed Policy (Sats)",min:0,max:100}];var _t=function(oe){return oe.OFFERED="offered",oe.SETTLED="settled",oe.FAILED="failed",oe.LOCAL_FAILED="local_failed",oe}(_t||{}),ue=function(oe){return oe.ASCENDING="asc",oe.DESCENDING="desc",oe}(ue||{});const Ie=["asc","desc"],He=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:z,sortBy:"blockheight",sortOrder:ue.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]},{tableId:"dust_utxos",recordsPerPage:z,sortBy:"blockheight",sortOrder:ue.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:z,sortBy:"msatoshi_to_us",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","msatoshi_to_us","msatoshi_to_them"],columnSelection:["short_channel_id","alias","msatoshi_to_us","msatoshi_to_them","balancedness"]},{tableId:"pending_inactive_channels",recordsPerPage:z,sortBy:"state",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","state"],columnSelection:["alias","connected","state","msatoshi_total"]},{tableId:"peers",recordsPerPage:z,sortBy:"alias",sortOrder:ue.ASCENDING,columnSelectionSM:["alias","id"],columnSelection:["alias","id","netaddr"]},{tableId:"active_HTLCs",recordsPerPage:z,sortBy:"expiry",sortOrder:ue.DESCENDING,columnSelectionSM:["amount_msat","direction","expiry"],columnSelection:["amount_msat","direction","expiry","state"]}]},{pageId:"liquidity_ads",tables:[{tableId:"liquidity_ads",recordsPerPage:z,sortBy:"channel_opening_fee",sortOrder:ue.ASCENDING,columnSelectionSM:["alias","channel_opening_fee"],columnSelection:["alias","last_timestamp","lease_fee","routing_fee","channel_opening_fee"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:z,sortBy:"created_at",sortOrder:ue.DESCENDING,columnSelectionSM:["created_at","msatoshi"],columnSelection:["created_at","type","payment_hash","msatoshi_sent","msatoshi"]},{tableId:"invoices",recordsPerPage:z,sortBy:"expires_at",sortOrder:ue.DESCENDING,columnSelectionSM:["expires_at","msatoshi"],columnSelection:["expires_at","paid_at","type","description","msatoshi","msatoshi_received"]},{tableId:"offers",recordsPerPage:z,sortBy:"offer_id",sortOrder:ue.DESCENDING,columnSelectionSM:["offer_id","single_use"],columnSelection:["offer_id","single_use","used"]},{tableId:"offer_bookmarks",recordsPerPage:z,sortBy:"lastUpdatedAt",sortOrder:ue.DESCENDING,columnSelectionSM:["lastUpdatedAt","amountMSat"],columnSelection:["lastUpdatedAt","title","description","amountMSat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:z,sortBy:"received_time",sortOrder:ue.DESCENDING,columnSelectionSM:["received_time","in_msatoshi","out_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"routing_peers",recordsPerPage:z,sortBy:"total_fee",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","events","total_fee"],columnSelection:["channel_id","alias","events","total_amount","total_fee"]},{tableId:"failed",recordsPerPage:z,sortBy:"received_time",sortOrder:ue.DESCENDING,columnSelectionSM:["received_time","in_channel_alias","in_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"local_failed",recordsPerPage:z,sortBy:"received_time",sortOrder:ue.DESCENDING,columnSelectionSM:["received_time","in_channel_alias","in_msatoshi"],columnSelection:["received_time","in_channel_alias","in_msatoshi","style","failreason"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:z,sortBy:"received_time",sortOrder:ue.DESCENDING,columnSelectionSM:["received_time","in_msatoshi","out_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"transactions",recordsPerPage:z,sortBy:"date",sortOrder:ue.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]},{pageId:"graph_lookup",tables:[{tableId:"query_routes",recordsPerPage:z,sortBy:"msatoshi",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","direction","msatoshi"],columnSelection:["alias","channel","direction","delay","msatoshi"]}]}],Xe={on_chain:{utxos:{maxColumns:7,allowedColumns:[{column:"txid",label:"Transaction ID"},{column:"address"},{column:"scriptpubkey",label:"Script Pubkey"},{column:"output"},{column:"value"},{column:"blockheight"},{column:"reserved"}]},dust_utxos:{maxColumns:7,allowedColumns:[{column:"txid",label:"Transaction ID"},{column:"address"},{column:"scriptpubkey",label:"Script Pubkey"},{column:"output"},{column:"value"},{column:"blockheight"},{column:"reserved"}]}},peers_channels:{open_channels:{maxColumns:8,allowedColumns:[{column:"short_channel_id"},{column:"alias"},{column:"id"},{column:"channel_id"},{column:"funding_txid",label:"Funding Transaction ID"},{column:"connected"},{column:"our_channel_reserve_satoshis",label:"Local Reserve"},{column:"their_channel_reserve_satoshis",label:"Remote Reserve"},{column:"msatoshi_total",label:"Total"},{column:"spendable_msatoshi",label:"Spendable"},{column:"msatoshi_to_us",label:"Local Balance"},{column:"msatoshi_to_them",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},pending_inactive_channels:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"id"},{column:"channel_id"},{column:"funding_txid",label:"Funding Transaction ID"},{column:"connected"},{column:"state"},{column:"our_channel_reserve_satoshis",label:"Local Reserve"},{column:"their_channel_reserve_satoshis",label:"Remote Reserve"},{column:"msatoshi_total",label:"Total"},{column:"spendable_msatoshi",label:"Spendable"},{column:"msatoshi_to_us",label:"Local Balance"},{column:"msatoshi_to_them",label:"Remote Balance"}]},peers:{maxColumns:3,allowedColumns:[{column:"alias"},{column:"id"},{column:"netaddr",label:"Network Address"}]},active_HTLCs:{maxColumns:7,allowedColumns:[{column:"amount_msat",label:"Amount (Sats)"},{column:"direction"},{column:"id",label:"HTLC ID"},{column:"state"},{column:"expiry"},{column:"payment_hash"},{column:"local_trimmed"}]}},liquidity_ads:{liquidity_ads:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"nodeid",label:"Node ID"},{column:"last_timestamp",label:"Last Announcement At"},{column:"compact_lease"},{column:"lease_fee"},{column:"routing_fee"},{column:"channel_opening_fee"},{column:"funding_weight"}]}},transactions:{payments:{maxColumns:7,allowedColumns:[{column:"created_at",label:"Created At"},{column:"type"},{column:"payment_hash"},{column:"bolt11",label:"Invoice"},{column:"destination"},{column:"memo"},{column:"label"},{column:"msatoshi_sent",label:"Sats Sent"},{column:"msatoshi",label:"Sats Received"}]},invoices:{maxColumns:7,allowedColumns:[{column:"expires_at",label:"Expiry Date"},{column:"paid_at",label:"Date Settled"},{column:"type"},{column:"description"},{column:"label"},{column:"payment_hash"},{column:"bolt11",label:"Invoice"},{column:"msatoshi",label:"Amount"},{column:"msatoshi_received",label:"Amount Settled"}]},offers:{maxColumns:4,allowedColumns:[{column:"offer_id",label:"Offer ID"},{column:"single_use"},{column:"used"},{column:"bolt12",label:"Invoice"}]},offer_bookmarks:{maxColumns:6,allowedColumns:[{column:"lastUpdatedAt",label:"Updated At"},{column:"title"},{column:"description"},{column:"issuer"},{column:"bolt12",label:"Invoice"},{column:"amountMSat",label:"Amount"}]}},routing:{forwarding_history:{maxColumns:8,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"payment_hash"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},routing_peers:{maxColumns:5,allowedColumns:[{column:"channel_id"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"total_amount",label:"Amount"},{column:"total_fee",label:"Fee"}]},failed:{maxColumns:7,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},local_failed:{maxColumns:6,allowedColumns:[{column:"received_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"in_msatoshi",label:"Amount In"},{column:"style"},{column:"failreason",label:"Fail Reason"}]}},reports:{routing:{maxColumns:8,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"payment_hash"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}},graph_lookup:{query_routes:{maxColumns:6,allowedColumns:[{column:"id"},{column:"alias"},{column:"channel"},{column:"direction"},{column:"delay"},{column:"msatoshi",label:"Amount"}]}}},yt=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:z,sortBy:"tx_id",sortOrder:ue.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]},{tableId:"transactions",recordsPerPage:z,sortBy:"time_stamp",sortOrder:ue.DESCENDING,columnSelectionSM:["time_stamp","amount","num_confirmations"],columnSelection:["time_stamp","label","amount","total_fees","block_height","num_confirmations"]},{tableId:"dust_utxos",recordsPerPage:z,sortBy:"tx_id",sortOrder:ue.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open",recordsPerPage:z,sortBy:"balancedness",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","local_balance"],columnSelection:["remote_alias","uptime_str","total_satoshis_sent","total_satoshis_received","local_balance","remote_balance","balancedness"]},{tableId:"pending_open",sortBy:"capacity",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","commit_fee","commit_weight","capacity"]},{tableId:"pending_force_closing",sortBy:"limbo_balance",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","recovered_balance","limbo_balance","capacity"]},{tableId:"pending_closing",sortBy:"capacity",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","local_balance","remote_balance","capacity"]},{tableId:"pending_waiting_close",sortBy:"limbo_balance",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","limbo_balance","local_balance","remote_balance"]},{tableId:"closed",recordsPerPage:z,sortBy:"close_type",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","settled_balance"],columnSelection:["close_type","remote_alias","capacity","close_height","settled_balance"]},{tableId:"active_HTLCs",recordsPerPage:z,sortBy:"incoming",sortOrder:ue.ASCENDING,columnSelectionSM:["amount","incoming","expiration_height"],columnSelection:["amount","incoming","expiration_height","hash_lock"]},{tableId:"peers",recordsPerPage:z,sortBy:"alias",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","sat_sent","sat_recv"],columnSelection:["alias","pub_key","sat_sent","sat_recv","ping_time"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:z,sortBy:"creation_date",sortOrder:ue.DESCENDING,columnSelectionSM:["creation_date","fee","value"],columnSelection:["creation_date","payment_hash","fee","value","hops"]},{tableId:"invoices",recordsPerPage:z,sortBy:"creation_date",sortOrder:ue.DESCENDING,columnSelectionSM:["creation_date","settle_date","value"],columnSelection:["creation_date","settle_date","memo","value","amt_paid_sat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"routing_peers",recordsPerPage:z,sortBy:"total_amount",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","events","total_amount"],columnSelection:["chan_id","alias","events","total_amount"]},{tableId:"non_routing_peers",recordsPerPage:z,sortBy:"remote_alias",sortOrder:ue.DESCENDING,columnSelectionSM:["remote_alias","local_balance","remote_balance"],columnSelection:["chan_id","remote_alias","total_satoshis_received","total_satoshis_sent","local_balance","remote_balance"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"transactions",recordsPerPage:z,sortBy:"date",sortOrder:ue.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]},{pageId:"graph_lookup",tables:[{tableId:"query_routes",recordsPerPage:z,sortBy:"hop_sequence",sortOrder:ue.ASCENDING,columnSelectionSM:["hop_sequence","pubkey_alias","fee_msat"],columnSelection:["hop_sequence","pubkey_alias","chan_capacity","amt_to_forward_msat","fee_msat"]}]},{pageId:"loop",tables:[{tableId:"loop",recordsPerPage:z,sortBy:"initiation_time",sortOrder:ue.DESCENDING,columnSelectionSM:["state","amt"],columnSelection:["state","initiation_time","amt","cost_server","cost_offchain","cost_onchain"]}]},{pageId:"boltz",tables:[{tableId:"swap_out",recordsPerPage:z,sortBy:"status",sortOrder:ue.DESCENDING,columnSelectionSM:["status","id","onchainAmount"],columnSelection:["status","id","claimAddress","onchainAmount","timeoutBlockHeight"]},{tableId:"swap_in",recordsPerPage:z,sortBy:"status",sortOrder:ue.DESCENDING,columnSelectionSM:["status","id","expectedAmount"],columnSelection:["status","id","lockupAddress","expectedAmount","timeoutBlockHeight"]}]}],Ye={on_chain:{utxos:{maxColumns:7,allowedColumns:[{column:"tx_id",label:"Transaction ID"},{column:"output"},{column:"label"},{column:"address_type"},{column:"address"},{column:"amount_sat",label:"Amount"},{column:"confirmations"}]},transactions:{maxColumns:7,allowedColumns:[{column:"time_stamp",label:"Date/Time"},{column:"label"},{column:"block_hash"},{column:"tx_hash",label:"Transaction Hash"},{column:"amount"},{column:"total_fees",label:"Fees"},{column:"block_height"},{column:"num_confirmations",label:"Confirmations"}]},dust_utxos:{maxColumns:7,allowedColumns:[{column:"tx_id",label:"Transaction ID"},{column:"output"},{column:"label"},{column:"address_type"},{column:"address"},{column:"amount_sat"},{column:"confirmations"}]}},peers_channels:{open:{maxColumns:8,allowedColumns:[{column:"remote_alias",label:"Peer"},{column:"remote_pubkey",label:"Pubkey"},{column:"channel_point"},{column:"chan_id",label:"Channel ID"},{column:"initiator"},{column:"static_remote_key"},{column:"uptime_str",label:"Uptime"},{column:"lifetime_str",label:"Lifetime"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"num_updates",label:"Updates"},{column:"unsettled_balance"},{column:"capacity"},{column:"local_chan_reserve_sat",label:"Local Reserve"},{column:"remote_chan_reserve_sat",label:"Remote Reserve"},{column:"total_satoshis_sent",label:"Sats Sent"},{column:"total_satoshis_received",label:"Sats Received"},{column:"local_balance"},{column:"remote_balance"},{column:"balancedness",label:"Balance Score"}]},pending_open:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"confirmation_height"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_force_closing:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"limbo_balance"},{column:"maturity_height"},{column:"blocks_til_maturity",label:"Blocks till Maturity"},{column:"recovered_balance"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_closing:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_waiting_close:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"limbo_balance"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},closed:{maxColumns:7,allowedColumns:[{column:"close_type"},{column:"remote_alias",label:"Peer"},{column:"remote_pubkey",label:"Pubkey"},{column:"channel_point"},{column:"chan_id",label:"Channel ID"},{column:"closing_tx_hash",label:"Closing Tx Hash"},{column:"chain_hash"},{column:"open_initiator"},{column:"close_initiator"},{column:"time_locked_balance",label:"Timelocked Balance"},{column:"capacity"},{column:"close_height"},{column:"settled_balance"}]},active_HTLCs:{maxColumns:7,allowedColumns:[{column:"amount"},{column:"incoming"},{column:"forwarding_channel"},{column:"htlc_index"},{column:"forwarding_htlc_index"},{column:"expiration_height"},{column:"hash_lock"}]},peers:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"pub_key",label:"Public Key"},{column:"address"},{column:"sync_type"},{column:"inbound"},{column:"bytes_sent"},{column:"bytes_recv",label:"Bytes Received"},{column:"sat_sent",label:"Sats Sent"},{column:"sat_recv",label:"Sats Received"},{column:"ping_time"}]}},transactions:{payments:{maxColumns:8,allowedColumns:[{column:"creation_date"},{column:"payment_hash"},{column:"payment_request"},{column:"payment_preimage"},{column:"description"},{column:"description_hash"},{column:"failure_reason"},{column:"payment_index"},{column:"fee"},{column:"value"},{column:"hops"}]},invoices:{maxColumns:9,allowedColumns:[{column:"private"},{column:"is_keysend",label:"Keysend"},{column:"is_amp",label:"AMP"},{column:"creation_date",label:"Date Created"},{column:"settle_date",label:"Date Settled"},{column:"memo"},{column:"r_preimage",label:"Preimage"},{column:"r_hash",label:"Preimage Hash"},{column:"payment_addr",label:"Payment Address"},{column:"payment_request"},{column:"description_hash"},{column:"expiry"},{column:"cltv_expiry"},{column:"add_index"},{column:"settle_index"},{column:"value",label:"Amount"},{column:"amt_paid_sat",label:"Amount Settled"}]}},routing:{forwarding_history:{maxColumns:6,allowedColumns:[{column:"timestamp"},{column:"alias_in",label:"Inbound Alias"},{column:"chan_id_in",label:"Inbound Channel"},{column:"alias_out",label:"Outbound Alias"},{column:"chan_id_out",label:"Outbound Channel"},{column:"amt_in",label:"Inbound Amount"},{column:"amt_out",label:"Outbound Amount"},{column:"fee_msat",label:"Fee"}]},routing_peers:{maxColumns:4,allowedColumns:[{column:"chan_id",label:"Channel ID"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"total_amount"}]},non_routing_peers:{maxColumns:8,allowedColumns:[{column:"chan_id",label:"Channel ID"},{column:"remote_alias",label:"Peer Alias"},{column:"remote_pubkey",label:"Peer Pubkey"},{column:"channel_point"},{column:"uptime_str",label:"Uptime"},{column:"lifetime_str",label:"Lifetime"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"num_updates",label:"Updates"},{column:"unsettled_balance"},{column:"capacity"},{column:"local_chan_reserve_sat",label:"Local Reserve"},{column:"remote_chan_reserve_sat",label:"Remote Reserve"},{column:"total_satoshis_sent",label:"Sats Sent"},{column:"total_satoshis_received",label:"Sats Received"},{column:"local_balance"},{column:"remote_balance"}]}},reports:{routing:{maxColumns:6,allowedColumns:[{column:"timestamp"},{column:"alias_in",label:"Inbound Alias"},{column:"chan_id_in",label:"Inbound Channel"},{column:"alias_out",label:"Outbound Alias"},{column:"chan_id_out",label:"Outbound Channel"},{column:"amt_in",label:"Inbound Amount"},{column:"amt_out",label:"Outbound Amount"},{column:"fee_msat",label:"Fee"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}},graph_lookup:{query_routes:{maxColumns:8,disablePageSize:!0,allowedColumns:[{column:"hop_sequence",label:"Hop"},{column:"pubkey_alias",label:"Peer"},{column:"pub_key",label:"Peer Pubkey"},{column:"chan_id",label:"Channel ID"},{column:"tlv_payload"},{column:"expiry"},{column:"chan_capacity",label:"Capacity"},{column:"amt_to_forward_msat",label:"Amount To Fwd"},{column:"fee_msat",label:"Fee"}]}},loop:{loop:{maxColumns:8,allowedColumns:[{column:"state"},{column:"initiation_time"},{column:"last_update_time"},{column:"amt",label:"Amount"},{column:"cost_server"},{column:"cost_offchain"},{column:"cost_onchain"},{column:"htlc_address"},{column:"id"},{column:"id_bytes",label:"ID (Bytes)"}]}},boltz:{swap_out:{maxColumns:7,allowedColumns:[{column:"status"},{column:"id",label:"Swap ID"},{column:"claimAddress",label:"Claim Address"},{column:"onchainAmount",label:"Onchain Amount"},{column:"error"},{column:"privateKey",label:"Private Key"},{column:"preimage"},{column:"redeemScript",label:"Redeem Script"},{column:"invoice"},{column:"timeoutBlockHeight",label:"Timeout Block Height"},{column:"lockupTransactionId",label:"Lockup Tx ID"},{column:"claimTransactionId",label:"Claim Tx ID"}]},swap_in:{maxColumns:7,allowedColumns:[{column:"status"},{column:"id",label:"Swap ID"},{column:"lockupAddress",label:"Lockup Address"},{column:"expectedAmount",label:"Expected Amount"},{column:"error"},{column:"privateKey",label:"Private Key"},{column:"preimage"},{column:"redeemScript",label:"Redeem Script"},{column:"invoice"},{column:"timeoutBlockHeight",label:"Timeout Block Height"},{column:"lockupTransactionId",label:"Lockup Tx ID"},{column:"refundTransactionId",label:"Refund Tx ID"}]}}},rt=[{pageId:"on_chain",tables:[{tableId:"transaction",recordsPerPage:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amount"],columnSelection:["timestamp","address","amount","fees","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:z,sortBy:"alias",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","toLocal","toRemote"],columnSelection:["shortChannelId","alias","feeBaseMsat","feeProportionalMillionths","toLocal","toRemote","balancedness"]},{tableId:"pending_channels",recordsPerPage:z,sortBy:"alias",sortOrder:ue.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","alias","toLocal","toRemote"]},{tableId:"inactive_channels",recordsPerPage:z,sortBy:"alias",sortOrder:ue.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","shortChannelId","alias","toLocal","toRemote","balancedness"]},{tableId:"peers",recordsPerPage:z,sortBy:"alias",sortOrder:ue.ASCENDING,columnSelectionSM:["alias","nodeId"],columnSelection:["alias","nodeId","address","channels"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:z,sortBy:"firstPartTimestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["firstPartTimestamp","recipientAmount"],columnSelection:["firstPartTimestamp","id","recipientNodeAlias","recipientAmount"]},{tableId:"invoices",recordsPerPage:z,sortBy:"receivedAt",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amount","amountSettled"],columnSelection:["timestamp","receivedAt","description","amount","amountSettled"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"routing_peers",recordsPerPage:z,sortBy:"totalFee",sortOrder:ue.DESCENDING,columnSelectionSM:["alias","events","totalFee"],columnSelection:["channelId","alias","events","totalAmount","totalFee"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:z,sortBy:"timestamp",sortOrder:ue.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"transactions",recordsPerPage:z,sortBy:"date",sortOrder:ue.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]}],Yt={on_chain:{transaction:{maxColumns:6,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"address"},{column:"blockHash"},{column:"txid",label:"Transaction ID"},{column:"amount"},{column:"fees"},{column:"confirmations"}]}},peers_channels:{open_channels:{maxColumns:8,allowedColumns:[{column:"shortChannelId"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"feeBaseMsat",label:"Base Fee"},{column:"feeProportionalMillionths",label:"Fee Rate"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},pending_channels:{maxColumns:7,allowedColumns:[{column:"state"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"}]},inactive_channels:{maxColumns:8,allowedColumns:[{column:"state"},{column:"shortChannelId"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},peers:{maxColumns:4,allowedColumns:[{column:"alias"},{column:"nodeId"},{column:"address",label:"Netwrok Address"},{column:"channels"}]}},transactions:{payments:{maxColumns:7,allowedColumns:[{column:"firstPartTimestamp",label:"Date/Time"},{column:"id"},{column:"recipientNodeId",label:"Destination Node ID"},{column:"recipientNodeAlias",label:"Destination"},{column:"description"},{column:"paymentHash"},{column:"paymentPreimage",label:"Preimage"},{column:"recipientAmount",label:"Amount"}]},invoices:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date Created"},{column:"expiresAt",label:"Date Expiry"},{column:"receivedAt",label:"Date Settled"},{column:"nodeId",label:"Node ID"},{column:"description"},{column:"paymentHash"},{column:"amount"},{column:"amountSettled",label:"Amount Settled"}]}},routing:{forwarding_history:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"fromChannelId",label:"In Channel ID"},{column:"fromShortChannelId",label:"In Channel Short ID"},{column:"fromChannelAlias",label:"In Channel"},{column:"toChannelId",label:"Out Channel ID"},{column:"toShortChannelId",label:"Out Channel Short ID"},{column:"toChannelAlias",label:"Out Channel"},{column:"paymentHash"},{column:"amountIn"},{column:"amountOut"},{column:"fee",label:"Fee Earned"}]},routing_peers:{maxColumns:5,allowedColumns:[{column:"channelId"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"totalAmount",label:"Amount"},{column:"totalFee",label:"Fee"}]}},reports:{routing:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"fromChannelId",label:"In Channel ID"},{column:"fromShortChannelId",label:"In Channel Short ID"},{column:"fromChannelAlias",label:"In Channel"},{column:"toChannelId",label:"Out Channel ID"},{column:"toShortChannelId",label:"Out Channel Short ID"},{column:"toChannelAlias",label:"Out Channel"},{column:"paymentHash"},{column:"amountIn"},{column:"amountOut"},{column:"fee",label:"Fee Earned"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}}},Nt_DKK="\n \n \n \n ",Et=[{id:"USD",name:"United States Dollar",iconType:"FA",symbol:w.Vpi},{id:"ARS",name:"Argentina Peso",iconType:"FA",symbol:w.Vpi},{id:"AUD",name:"Australia Dollar",iconType:"FA",symbol:w.Vpi},{id:"BRL",name:"Brazil Real",iconType:"FA",symbol:w.Tq9},{id:"CAD",name:"Canada Dollar",iconType:"FA",symbol:w.Vpi},{id:"CHF",name:"Switzerland Franc",iconType:"FA",symbol:w.zjW},{id:"CLP",name:"Chile Peso",iconType:"FA",symbol:w.Vpi},{id:"CNY",name:"China Yuan Renminbi",iconType:"FA",symbol:w.zPk},{id:"CZK",name:"Czech Republic Koruna",iconType:"SVG",symbol:"\n \n \n \n \n \n \n \n ",class:"currency-icon-x-large"},{id:"DKK",name:"Denmark Krone",iconType:"SVG",symbol:Nt_DKK,class:"currency-icon-medium"},{id:"EUR",name:"Euro Member Countries",iconType:"FA",symbol:w.s5m},{id:"GBP",name:"United Kingdom Pound",iconType:"FA",symbol:w.vfE},{id:"HKD",name:"Hong Kong Dollar",iconType:"FA",symbol:w.Vpi},{id:"HRK",name:"Croatia Kuna",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/15766/croatia-kuna-currency-symbol --\x3e\n \n \n \n \n \n ',class:"currency-icon-medium"},{id:"HUF",name:"Hungary Forint",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/183602/forint-business-and-finance --\x3e\n \n \n \n \n \n \n ',class:"currency-icon-small"},{id:"INR",name:"India Rupee",iconType:"FA",symbol:w.FYJ},{id:"ISK",name:"Iceland Krona",iconType:"SVG",symbol:Nt_DKK,class:"currency-icon-medium"},{id:"JPY",name:"Japan Yen",iconType:"FA",symbol:w.zPk},{id:"KRW",name:"Korea (South) Won",iconType:"FA",symbol:w.JKM},{id:"NZD",name:"New Zealand Dollar",iconType:"FA",symbol:w.Vpi},{id:"PLN",name:"Poland Zloty",iconType:"SVG",symbol:"\n \n \n \n \n \n \n ",class:"currency-icon-large"},{id:"RON",name:"Romania Leu",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/64526/romania-lei-currency --\x3e\n \n \n \n \n \n ',class:"currency-icon-medium"},{id:"RUB",name:"Russia Ruble",iconType:"FA",symbol:w.f6_},{id:"SEK",name:"Sweden Krona",iconType:"SVG",symbol:Nt_DKK,class:"currency-icon-medium"},{id:"SGD",name:"Singapore Dollar",iconType:"FA",symbol:w.Vpi},{id:"THB",name:"Thailand Baht",iconType:"FA",symbol:w.Kcb},{id:"TRY",name:"Turkey Lira",iconType:"FA",symbol:w.hb3},{id:"TWD",name:"Taiwan New Dollar",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/142061/new-taiwan-dollar --\x3e\n \n \n \n \n \n \n ',class:"currency-icon-small"}];function Vt(oe){const tt=Et.find($t=>$t.id===oe);return"SVG"===tt.iconType&&"string"==typeof tt.symbol&&(tt.symbol=tt.symbol.replace('{"use strict";g.d(te,{u:()=>ae});var e=g(1626),t=g(4412),w=g(1413),S=g(8810),l=g(7673),x=g(1594),f=g(1397),I=g(6977),d=g(6354),T=g(9437),y=g(3993),F=g(4416),R=g(2462),z=g(1771),W=g(190),$=g(3536),j=g(9584),Q=g(4438),J=g(9640),ee=g(8570),ie=g(5416),ge=g(177);let ae=(()=>{class Me{constructor(de,D,n,c,m){this.httpClient=de,this.store=D,this.logger=n,this.snackBar=c,this.titleCasePipe=m,this.APIUrl=F.H$,this.lnImplementation="",this.lnImplementationUpdated=new t.t(null),this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B],this.mapAliases=(h,C)=>(h&&h.length>0?h.forEach((k,L)=>{if(C&&C.length>0)for(let _=0;_{let c=this.APIUrl+"/"+n+F.rl.PAYMENTS_API+"/decode/"+de,m="GET",h=null;return"cln"===n&&(c=this.APIUrl+"/"+n+F.rl.UTILITY_API+"/decode",h={string:de},m="POST"),this.store.dispatch((0,z.mt)({payload:F.MZ.DECODE_PAYMENT})),this.httpClient.request(m,c,{body:JSON.stringify(h),headers:{"Content-Type":"application/json"}}).pipe((0,I.Q)(this.unSubs[0]),(0,d.T)(C=>(this.store.dispatch((0,z.y0)({payload:F.MZ.DECODE_PAYMENT})),C)),(0,T.W)(C=>(D?this.handleErrorWithoutAlert("Decode Payment",F.MZ.DECODE_PAYMENT,C):this.handleErrorWithAlert("decodePaymentData",F.MZ.DECODE_PAYMENT,"Decode Payment Failed",c,C),(0,S.$)(()=>new Error(this.extractErrorMessage(C))))))}))}decodePayments(de){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(D=>{let n="",c="",m=null;return"ecl"===D?(n=this.APIUrl+"/"+D+F.rl.PAYMENTS_API+"/getsentinfos",m={payments:de},c=F.MZ.GET_SENT_PAYMENTS):"cln"===D?(n=this.APIUrl+"/"+D+F.rl.UTILITY_API+"/decode",m={string:de},c=F.MZ.DECODE_PAYMENTS):(n=this.APIUrl+"/"+D+F.rl.PAYMENTS_API,m={payments:de},c=F.MZ.DECODE_PAYMENTS),this.store.dispatch((0,z.mt)({payload:c})),this.httpClient.post(n,m).pipe((0,I.Q)(this.unSubs[1]),(0,d.T)(h=>(this.store.dispatch((0,z.y0)({payload:c})),h)),(0,T.W)(h=>(this.handleErrorWithAlert("decodePaymentsData",c,c+" Failed",n,h),(0,S.$)(()=>new Error(this.extractErrorMessage(h))))))}))}getAliasesFromPubkeys(de,D){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(n=>{if(D){const c=(new e.Nl).set("pubkeys",de);return this.httpClient.get(this.APIUrl+"/"+n+F.rl.NETWORK_API+"/nodes",{params:c})}return this.httpClient.get(this.APIUrl+"/"+n+F.rl.NETWORK_API+"/node/"+de)}))}signMessage(de){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(D=>{let n=this.APIUrl+"/"+D+F.rl.MESSAGE_API+"/sign";return"cln"===D&&(n=this.APIUrl+"/"+D+F.rl.UTILITY_API+"/sign"),this.store.dispatch((0,z.mt)({payload:F.MZ.SIGN_MESSAGE})),this.httpClient.post(n,{message:de}).pipe((0,I.Q)(this.unSubs[2]),(0,d.T)(c=>(this.store.dispatch((0,z.y0)({payload:F.MZ.SIGN_MESSAGE})),c)),(0,T.W)(c=>(this.handleErrorWithAlert("signMessageData",F.MZ.SIGN_MESSAGE,"Sign Message Failed",n,c),(0,S.$)(()=>new Error(this.extractErrorMessage(c))))))}))}verifyMessage(de,D){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(n=>{let c="",m=null;return"cln"===n?(c=this.APIUrl+"/"+n+F.rl.UTILITY_API+"/verify",m={message:de,zbase:D}):(c=this.APIUrl+"/"+n+F.rl.MESSAGE_API+"/verify",m={message:de,signature:D}),this.store.dispatch((0,z.mt)({payload:F.MZ.VERIFY_MESSAGE})),this.httpClient.post(c,m).pipe((0,I.Q)(this.unSubs[3]),(0,d.T)(h=>(this.store.dispatch((0,z.y0)({payload:F.MZ.VERIFY_MESSAGE})),h)),(0,T.W)(h=>(this.handleErrorWithAlert("verifyMessageData",F.MZ.VERIFY_MESSAGE,"Verify Message Failed",c,h),(0,S.$)(()=>new Error(this.extractErrorMessage(h))))))}))}bumpFee(de,D,n,c){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(m=>{const h={txid:de,outputIndex:D};return n&&(h.targetConf=n),c&&(h.satPerByte=c),this.store.dispatch((0,z.mt)({payload:F.MZ.BUMP_FEE})),this.httpClient.post(this.APIUrl+"/"+m+F.rl.WALLET_API+"/bumpfee",h).pipe((0,I.Q)(this.unSubs[4]),(0,d.T)(C=>(this.store.dispatch((0,z.y0)({payload:F.MZ.BUMP_FEE})),this.snackBar.open("Successfully bumped the fee. Use the block explorer to verify transaction."),C)),(0,T.W)(C=>(this.handleErrorWithoutAlert("Bump Fee",F.MZ.BUMP_FEE,C),(0,S.$)(()=>new Error(this.extractErrorMessage(C))))))}))}labelUTXO(de,D,n=!0){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(c=>{const m={txid:de,label:D,overwrite:n};return this.store.dispatch((0,z.mt)({payload:F.MZ.LABEL_UTXO})),this.httpClient.post(this.APIUrl+"/"+c+F.rl.WALLET_API+"/label",m).pipe((0,I.Q)(this.unSubs[5]),(0,d.T)(h=>(this.store.dispatch((0,z.y0)({payload:F.MZ.LABEL_UTXO})),h)),(0,T.W)(h=>(this.handleErrorWithoutAlert("Label UTXO",F.MZ.LABEL_UTXO,h),(0,S.$)(()=>new Error(this.extractErrorMessage(h))))))}))}leaseUTXO(de,D){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(n=>{const c={txid:de,outputIndex:D};return this.store.dispatch((0,z.mt)({payload:F.MZ.LEASE_UTXO})),this.httpClient.post(this.APIUrl+"/"+n+F.rl.WALLET_API+"/lease",c).pipe((0,I.Q)(this.unSubs[6]),(0,d.T)(m=>{this.store.dispatch((0,z.y0)({payload:F.MZ.LEASE_UTXO})),this.store.dispatch((0,W.mh)()),this.store.dispatch((0,W.SM)());const h=new Date(1e3*m.expiration);return Math.round(h.getTime())-60*h.getTimezoneOffset()}),(0,T.W)(m=>(this.handleErrorWithoutAlert("Lease UTXO",F.MZ.LEASE_UTXO,m),(0,S.$)(()=>new Error(this.extractErrorMessage(m))))))}))}getForwardingHistory(de,D,n,c){if("LND"===de){const m={end_time:n,start_time:D};return this.store.dispatch((0,z.mt)({payload:F.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/lnd"+F.rl.SWITCH_API,m).pipe((0,I.Q)(this.unSubs[7]),(0,y.E)(this.store.select($.eO)),(0,f.Z)(([h,C])=>{if(h.forwarding_events){const k=[...C.channels,...C.closedChannels];h.forwarding_events.forEach(L=>{if(k&&k.length>0)for(let _=0;_(this.handleErrorWithAlert("getForwardingHistoryData",F.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/lnd"+F.rl.SWITCH_API,h),(0,S.$)(()=>new Error(this.extractErrorMessage(h))))))}return"CLN"===de?(this.store.dispatch((0,z.mt)({payload:F.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/cln"+F.rl.CHANNELS_API+"/listForwards",{status:c||"settled"}).pipe((0,I.Q)(this.unSubs[8]),(0,y.E)(this.store.select(j.BM)),(0,f.Z)(([m,h])=>{const C=this.mapAliases(m,[...h.activeChannels,...h.pendingChannels,...h.inactiveChannels]);return this.store.dispatch((0,z.y0)({payload:F.MZ.GET_FORWARDING_HISTORY})),(0,l.of)(C)}),(0,T.W)(m=>(this.handleErrorWithAlert("getForwardingHistoryData",F.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/cln"+F.rl.CHANNELS_API+"/listForwards",m),(0,S.$)(()=>new Error(this.extractErrorMessage(m))))))):(0,l.of)({})}listNetworkNodes(de){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(D=>(this.store.dispatch((0,z.mt)({payload:F.MZ.LIST_NETWORK_NODES})),this.httpClient.post(this.APIUrl+"/"+D+F.rl.NETWORK_API+"/listNodes",de).pipe((0,I.Q)(this.unSubs[9]),(0,f.Z)(n=>(this.store.dispatch((0,z.y0)({payload:F.MZ.LIST_NETWORK_NODES})),(0,l.of)(n))),(0,T.W)(n=>(this.handleErrorWithoutAlert("List Network Nodes",F.MZ.LIST_NETWORK_NODES,n),(0,S.$)(()=>this.extractErrorMessage(n))))))))}listConfigs(){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(de=>(this.store.dispatch((0,z.mt)({payload:F.MZ.GET_LIST_CONFIGS})),this.httpClient.get(this.APIUrl+"/"+de+F.rl.UTILITY_API+"/listConfigs").pipe((0,I.Q)(this.unSubs[10]),(0,f.Z)(D=>(this.store.dispatch((0,z.y0)({payload:F.MZ.GET_LIST_CONFIGS})),(0,l.of)(D))),(0,T.W)(D=>(this.handleErrorWithoutAlert("List Configurations",F.MZ.GET_LIST_CONFIGS,D),(0,S.$)(()=>this.extractErrorMessage(D))))))))}getOrUpdateFunderPolicy(de,D,n,c,m,h){return this.lnImplementationUpdated.pipe((0,x.$)(),(0,f.Z)(C=>{const k=de?{policy:de,policy_mod:D,lease_fee_base_msat:n,lease_fee_basis:c,channel_fee_max_base_msat:m,channel_fee_max_proportional_thousandths:h}:null;return this.store.dispatch((0,z.mt)({payload:F.MZ.GET_FUNDER_POLICY})),this.httpClient.post(this.APIUrl+"/"+C+F.rl.CHANNELS_API+"/funderUpdate",k).pipe((0,I.Q)(this.unSubs[11]),(0,d.T)(L=>(this.store.dispatch((0,z.y0)({payload:F.MZ.GET_FUNDER_POLICY})),k&&this.store.dispatch((0,z.UI)({payload:"Funder Policy Updated Successfully with Compact Lease: "+L.compact_lease+"!"})),L)),(0,T.W)(L=>(this.handleErrorWithoutAlert("Funder Policy",F.MZ.GET_FUNDER_POLICY,L),(0,S.$)(()=>new Error(this.extractErrorMessage(L))))))}))}circularRebalance(de,D="",n="",c="",m="",h=[],C="shortChannelId"){return this.httpClient.post(this.APIUrl+"/"+this.lnImplementation+F.rl.CHANNELS_API+"/circularRebalance",{amountMsat:de,sourceShortChannelId:D,sourceNodeId:n,targetShortChannelId:c,targetNodeId:m,ignoreNodeIds:h,format:C}).pipe((0,I.Q)(this.unSubs[12]),(0,d.T)(_=>_),(0,T.W)(_=>(this.handleErrorWithoutAlert("Rebalance Channel",F.MZ.REBALANCE_CHANNEL,_),(0,S.$)(()=>_.error))))}extractErrorMessage(de,D="Unknown Error."){return this.titleCasePipe.transform(de.error.text&&"string"==typeof de.error.text&&de.error.text.includes('')?"API Route Does Not Exist.":de.error&&de.error.error&&de.error.error.error&&de.error.error.error.error&&de.error.error.error.error.error&&"string"==typeof de.error.error.error.error.error?de.error.error.error.error.error:de.error&&de.error.error&&de.error.error.error&&de.error.error.error.error&&"string"==typeof de.error.error.error.error?de.error.error.error.error:de.error&&de.error.error&&de.error.error.error&&"string"==typeof de.error.error.error?de.error.error.error:de.error&&de.error.error&&"string"==typeof de.error.error?de.error.error:de.error&&"string"==typeof de.error?de.error:de.error&&de.error.error&&de.error.error.error&&de.error.error.error.error&&de.error.error.error.error.message&&"string"==typeof de.error.error.error.error.message?de.error.error.error.error.message:de.error&&de.error.error&&de.error.error.error&&de.error.error.error.message&&"string"==typeof de.error.error.error.message?de.error.error.error.message:de.error&&de.error.error&&de.error.error.message&&"string"==typeof de.error.error.message?de.error.error.message:de.error&&de.error.message&&"string"==typeof de.error.message?de.error.message:de.message&&"string"==typeof de.message?de.message:D)}handleErrorWithoutAlert(de,D,n){n.error.text&&"string"==typeof n.error.text&&n.error.text.includes('')&&(n={status:403,error:{message:"API Route Does Not Exist."}}),this.logger.error("ERROR IN: "+de+"\n"+JSON.stringify(n)),401===n.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,z.Jh)()),this.store.dispatch((0,z.ri)({payload:"Authentication Failed: "+JSON.stringify(n.error)}))):(this.store.dispatch((0,z.y0)({payload:D})),this.store.dispatch((0,z.Gd)({payload:{action:de,status:F.wn.ERROR,statusCode:n.status.toString(),message:this.extractErrorMessage(n)}})))}handleErrorWithAlert(de,D,n,c,m){if(this.logger.error(m),401===m.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,z.Jh)()),this.store.dispatch((0,z.ri)({payload:"Authentication Failed: "+JSON.stringify(m.error)}));else{this.store.dispatch((0,z.y0)({payload:D}));const h=this.extractErrorMessage(m);this.store.dispatch((0,z.xO)({payload:{data:{type:"ERROR",alertTitle:n,message:{code:m.status?m.status:"Unknown Error",message:h,URL:c},component:R.f}}})),this.store.dispatch((0,z.Gd)({payload:{action:de,status:F.wn.ERROR,statusCode:m.status.toString(),message:h,URL:c}}))}}ngOnDestroy(){this.unSubs.forEach(de=>{de.next(null),de.complete()})}static#e=this.\u0275fac=function(D){return new(D||Me)(Q.KVO(e.Qq),Q.KVO(J.il),Q.KVO(ee.gP),Q.KVO(ie.UG),Q.KVO(ge.PV))};static#t=this.\u0275prov=Q.jDH({token:Me,factory:Me.\u0275fac})}return Me})()},8570:(Qe,te,g)=>{"use strict";g.d(te,{gP:()=>l,tU:()=>x});var e=g(4438);const t=(0,e.naY)(),w=()=>null;let l=(()=>{class f{invokeConsoleMethod(d,T){}static#e=this.\u0275fac=function(T){return new(T||f)};static#t=this.\u0275prov=e.jDH({token:f,factory:f.\u0275fac})}return f})(),x=(()=>{class f{get info(){return t?console.log.bind(console):w}get warn(){return t?console.warn.bind(console):w}get error(){return t?console.error.bind(console):w}invokeConsoleMethod(d,T){(console[d]||console.log||w).apply(console,[T])}static#e=this.\u0275fac=function(T){return new(T||f)};static#t=this.\u0275prov=e.jDH({token:f,factory:f.\u0275fac})}return f})()},4104:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>$});var e=g(1626),t=g(4412),w=g(1413),S=g(7673),l=g(8810),x=g(6977),f=g(9437),I=g(6354),d=g(4416),T=g(2462),y=g(1771),F=g(4438),R=g(8570),z=g(9640),W=g(2571);let $=(()=>{class j{constructor(J,ee,ie,ge){this.httpClient=J,this.logger=ee,this.store=ie,this.commonService=ge,this.loopUrl="",this.swaps=[],this.swapsChanged=new t.t([]),this.unSubs=[new w.B,new w.B,new w.B,new w.B,new w.B,new w.B,new w.B]}getLoopInfo(){return this.loopUrl=d.H$+d.rl.LOOP_API+"/info",this.httpClient.get(this.loopUrl)}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,y.mt)({payload:d.MZ.GET_LOOP_SWAPS})),this.loopUrl=d.H$+d.rl.LOOP_API+"/swaps",this.httpClient.get(this.loopUrl).pipe((0,x.Q)(this.unSubs[0])).subscribe({next:J=>{this.store.dispatch((0,y.y0)({payload:d.MZ.GET_LOOP_SWAPS})),this.swaps=J,this.swapsChanged.next(this.swaps)},error:J=>this.swapsChanged.error(this.handleErrorWithAlert(d.MZ.GET_LOOP_SWAPS,this.loopUrl,J))})}loopOut(J,ee,ie,ge,ae,Me,Te,de,D,n){const c={amount:J,targetConf:ie,swapRoutingFee:ge,minerFee:ae,prepayRoutingFee:Me,prepayAmt:Te,swapFee:de,swapPublicationDeadline:D,destAddress:n};return""!==ee&&(c.chanId=ee),this.loopUrl=d.H$+d.rl.LOOP_API+"/out",this.httpClient.post(this.loopUrl,c).pipe((0,f.W)(m=>this.handleErrorWithoutAlert("Loop Out for Channel: "+ee,d.MZ.NO_SPINNER,m)))}getLoopOutTerms(){return this.loopUrl=d.H$+d.rl.LOOP_API+"/out/terms",this.httpClient.get(this.loopUrl).pipe((0,f.W)(J=>this.handleErrorWithoutAlert("Loop Out Terms",d.MZ.NO_SPINNER,J)))}getLoopOutQuote(J,ee,ie){let ge=new e.Nl;return ge=ge.append("targetConf",ee.toString()),ge=ge.append("swapPublicationDeadline",ie.toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/out/quote/"+J,this.store.dispatch((0,y.mt)({payload:d.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:ge}).pipe((0,x.Q)(this.unSubs[1]),(0,I.T)(ae=>(this.store.dispatch((0,y.y0)({payload:d.MZ.GET_QUOTE})),ae)),(0,f.W)(ae=>this.handleErrorWithoutAlert("Loop Out Quote",d.MZ.GET_QUOTE,ae)))}getLoopOutTermsAndQuotes(J){let ee=new e.Nl;return ee=ee.append("targetConf",J.toString()),ee=ee.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/out/termsAndQuotes",this.store.dispatch((0,y.mt)({payload:d.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ee}).pipe((0,x.Q)(this.unSubs[2]),(0,I.T)(ie=>(this.store.dispatch((0,y.y0)({payload:d.MZ.GET_TERMS_QUOTES})),ie)),(0,f.W)(ie=>(0,S.of)(this.handleErrorWithAlert(d.MZ.GET_TERMS_QUOTES,this.loopUrl,ie))))}loopIn(J,ee,ie,ge,ae){const Me={amount:J,swapFee:ee,minerFee:ie,lastHop:ge,externalHtlc:ae};return this.loopUrl=d.H$+d.rl.LOOP_API+"/in",this.httpClient.post(this.loopUrl,Me).pipe((0,f.W)(Te=>this.handleErrorWithoutAlert("Loop In",d.MZ.NO_SPINNER,Te)))}getLoopInTerms(){return this.loopUrl=d.H$+d.rl.LOOP_API+"/in/terms",this.httpClient.get(this.loopUrl).pipe((0,f.W)(J=>this.handleErrorWithoutAlert("Loop In Terms",d.MZ.NO_SPINNER,J)))}getLoopInQuote(J,ee,ie){let ge=new e.Nl;return ge=ge.append("targetConf",ee.toString()),ge=ge.append("swapPublicationDeadline",ie.toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/in/quote/"+J,this.store.dispatch((0,y.mt)({payload:d.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:ge}).pipe((0,x.Q)(this.unSubs[3]),(0,I.T)(ae=>(this.store.dispatch((0,y.y0)({payload:d.MZ.GET_QUOTE})),ae)),(0,f.W)(ae=>this.handleErrorWithoutAlert("Loop In Qoute",d.MZ.GET_QUOTE,ae)))}getLoopInTermsAndQuotes(J){let ee=new e.Nl;return ee=ee.append("targetConf",J.toString()),ee=ee.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=d.H$+d.rl.LOOP_API+"/in/termsAndQuotes",this.store.dispatch((0,y.mt)({payload:d.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:ee}).pipe((0,x.Q)(this.unSubs[4]),(0,I.T)(ie=>(this.store.dispatch((0,y.y0)({payload:d.MZ.GET_TERMS_QUOTES})),ie)),(0,f.W)(ie=>(0,S.of)(this.handleErrorWithAlert(d.MZ.GET_TERMS_QUOTES,this.loopUrl,ie))))}getSwap(J){return this.loopUrl=d.H$+d.rl.LOOP_API+"/swap/"+J,this.httpClient.get(this.loopUrl).pipe((0,f.W)(ee=>this.handleErrorWithoutAlert("Loop Get Swap for ID: "+J,d.MZ.NO_SPINNER,ee)))}handleErrorWithoutAlert(J,ee,ie){let ge="";return this.logger.error("ERROR IN: "+J+"\n"+JSON.stringify(ie)),this.store.dispatch((0,y.y0)({payload:ee})),401===ie.status?(ge="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.ri)({payload:ge}))):503===ie.status?(ge="Unable to Connect to Loop Server.",this.store.dispatch((0,y.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:ie.status,message:"Unable to Connect to Loop Server",URL:J},component:T.f}}}))):ge=this.commonService.extractErrorMessage(ie),(0,l.$)(()=>new Error(ge))}handleErrorWithAlert(J,ee,ie){let ge="";if(this.logger.error(ie),this.store.dispatch((0,y.y0)({payload:J})),401===ie.status)ge="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,y.ri)({payload:ge}));else if(503===ie.status)ge="Unable to Connect to Loop Server.",setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:ie.status,message:"Unable to Connect to Loop Server",URL:ee},component:T.f}}}))},100);else{ge=this.commonService.extractErrorMessage(ie);const ae=ie.error&&ie.error.error&&ie.error.error.code?ie.error.error.code:ie.error&&ie.error.code?ie.error.code:ie.code?ie.code:ie.status;setTimeout(()=>{this.store.dispatch((0,y.xO)({payload:{data:{type:d.A$.ERROR,alertTitle:"ERROR",message:{code:ae,message:ge,URL:ee},component:T.f}}}))},100)}return{message:ge}}ngOnDestroy(){this.unSubs.forEach(J=>{J.next(null),J.complete()})}static#e=this.\u0275fac=function(ee){return new(ee||j)(F.KVO(e.Qq),F.KVO(R.gP),F.KVO(z.il),F.KVO(W.h))};static#t=this.\u0275prov=F.jDH({token:j,factory:j.\u0275fac})}return j})()},3202:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>w});var e=g(1413),t=g(4438);let w=(()=>{class S{constructor(){this.sessionSub=new e.B}watchSession(){return this.sessionSub.asObservable()}getItem(x){return sessionStorage.getItem(x)}getAllItems(){return sessionStorage}setItem(x,f){sessionStorage.setItem(x,f),this.sessionSub.next(sessionStorage)}removeItem(x){sessionStorage.removeItem(x),this.sessionSub.next(sessionStorage)}clearAll(){sessionStorage.clear(),this.sessionSub.next(sessionStorage)}static#e=this.\u0275fac=function(f){return new(f||S)};static#t=this.\u0275prov=t.jDH({token:S,factory:S.\u0275fac})}return S})()},7879:(Qe,te,g)=>{"use strict";g.d(te,{I:()=>z});var e=g(4412),t=g(1413),w=g(6977),S=g(7707),l=g(1985),x=g(8359),f=g(2771);const I={url:"",deserializer:W=>JSON.parse(W.data),serializer:W=>JSON.stringify(W)};class T extends t.k{constructor($,j){if(super(),this._socket=null,$ instanceof l.c)this.destination=j,this.source=$;else{const Q=this._config=Object.assign({},I);if(this._output=new t.B,"string"==typeof $)Q.url=$;else for(const J in $)$.hasOwnProperty(J)&&(Q[J]=$[J]);if(!Q.WebSocketCtor&&WebSocket)Q.WebSocketCtor=WebSocket;else if(!Q.WebSocketCtor)throw new Error("no WebSocket constructor can be found");this.destination=new f.m}}lift($){const j=new T(this._config,this.destination);return j.operator=$,j.source=this,j}_resetState(){this._socket=null,this.source||(this.destination=new f.m),this._output=new t.B}multiplex($,j,Q){const J=this;return new l.c(ee=>{try{J.next($())}catch(ge){ee.error(ge)}const ie=J.subscribe({next:ge=>{try{Q(ge)&&ee.next(ge)}catch(ae){ee.error(ae)}},error:ge=>ee.error(ge),complete:()=>ee.complete()});return()=>{try{J.next(j())}catch(ge){ee.error(ge)}ie.unsubscribe()}})}_connectSocket(){const{WebSocketCtor:$,protocol:j,url:Q,binaryType:J}=this._config,ee=this._output;let ie=null;try{ie=j?new $(Q,j):new $(Q),this._socket=ie,J&&(this._socket.binaryType=J)}catch(ae){return void ee.error(ae)}const ge=new x.yU(()=>{this._socket=null,ie&&1===ie.readyState&&ie.close()});ie.onopen=ae=>{const{_socket:Me}=this;if(!Me)return ie.close(),void this._resetState();const{openObserver:Te}=this._config;Te&&Te.next(ae);const de=this.destination;this.destination=S.vU.create(D=>{if(1===ie.readyState)try{const{serializer:n}=this._config;ie.send(n(D))}catch(n){this.destination.error(n)}},D=>{const{closingObserver:n}=this._config;n&&n.next(void 0),D&&D.code?ie.close(D.code,D.reason):ee.error(new TypeError("WebSocketSubject.error must be called with an object with an error code, and an optional reason: { code: number, reason: string }")),this._resetState()},()=>{const{closingObserver:D}=this._config;D&&D.next(void 0),ie.close(),this._resetState()}),de&&de instanceof f.m&&ge.add(de.subscribe(this.destination))},ie.onerror=ae=>{this._resetState(),ee.error(ae)},ie.onclose=ae=>{ie===this._socket&&this._resetState();const{closeObserver:Me}=this._config;Me&&Me.next(ae),ae.wasClean?ee.complete():ee.error(ae)},ie.onmessage=ae=>{try{const{deserializer:Me}=this._config;ee.next(Me(ae))}catch(Me){ee.error(Me)}}}_subscribe($){const{source:j}=this;return j?j.subscribe($):(this._socket||this._connectSocket(),this._output.subscribe($),$.add(()=>{const{_socket:Q}=this;0===this._output.observers.length&&(Q&&(1===Q.readyState||0===Q.readyState)&&Q.close(),this._resetState())}),$)}unsubscribe(){const{_socket:$}=this;$&&(1===$.readyState||0===$.readyState)&&$.close(),this._resetState(),super.unsubscribe()}}var y=g(4438),F=g(8570),R=g(3202);let z=(()=>{class W{constructor(j,Q){this.logger=j,this.sessionService=Q,this.clWSMessages=new e.t(null),this.eclWSMessages=new e.t(null),this.lndWSMessages=new e.t(null),this.wsUrl="",this.nodeIndex="",this.RETRY_SECONDS=5,this.RECONNECT_TIMEOUT=null,this.unSubs=[new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B,new t.B]}connectWebSocket(j,Q){(!this.socket||this.socket.closed)&&(this.wsUrl=j,this.nodeIndex=Q,this.logger.info("Websocket Url: "+this.wsUrl),this.socket=new T({url:j,protocol:[this.sessionService.getItem("token")||"",Q]}),this.subscribeToMessages())}reconnectOnError(){this.RECONNECT_TIMEOUT||this.socket&&!this.socket.closed||(this.RETRY_SECONDS=this.RETRY_SECONDS>=160?160:2*this.RETRY_SECONDS,this.RECONNECT_TIMEOUT=setTimeout(()=>{this.logger.info("Reconnecting Web Socket."),this.connectWebSocket(this.wsUrl,this.nodeIndex),this.RECONNECT_TIMEOUT=null},1e3*this.RETRY_SECONDS))}closeConnection(){this.socket&&(this.socket.complete(),this.socket=null)}subscribeToMessages(){this.socket?.pipe((0,w.Q)(this.unSubs[1])).subscribe({next:j=>{if((j="string"==typeof j?JSON.parse(j):j).error)this.handleError(j.error);else switch(this.logger.info("Next Message from WS:"+JSON.stringify(j)),j.source){case"LND":this.lndWSMessages.next(j);break;case"CLN":this.clWSMessages.next(j);break;case"ECL":this.eclWSMessages.next(j)}},error:j=>this.handleError(j),complete:()=>{this.logger.info("Web Socket Closed")}})}handleError(j){this.logger.error(j),this.clWSMessages.error(j),this.eclWSMessages.error(j),this.lndWSMessages.error(j),this.reconnectOnError()}ngOnDestroy(){this.closeConnection(),this.clWSMessages.next(null),this.clWSMessages.complete(),this.eclWSMessages.next(null),this.eclWSMessages.complete(),this.lndWSMessages.next(null),this.lndWSMessages.complete()}static#e=this.\u0275fac=function(Q){return new(Q||W)(y.KVO(F.gP),y.KVO(R.Q))};static#t=this.\u0275prov=y.jDH({token:W,factory:W.\u0275fac})}return W})()},9029:(Qe,te,g)=>{"use strict";g.d(te,{G:()=>as});var e=g(177),t=g(1188),w=g(9417),S=g(1626),l=g(60),x=g(4438),f=g(9340),I=g(6038),d=g(2920);g(4085);let ct=(()=>{class Ft{}return Ft.\u0275fac=function(xt){return new(xt||Ft)},Ft.\u0275mod=x.$C({type:Ft}),Ft.\u0275inj=x.G2t({imports:[f.Ui]}),Ft})(),Ut=(()=>{class Ft{constructor(xt,ai){(0,e.Vy)(ai)&&!xt&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}static withConfig(xt,ai=[]){return{ngModule:Ft,providers:xt.serverLoaded?[{provide:f.EA,useValue:{...f.PV,...xt}},{provide:f.SL,useValue:ai,multi:!0},{provide:f.Ce,useValue:!0}]:[{provide:f.EA,useValue:{...f.PV,...xt}},{provide:f.SL,useValue:ai,multi:!0}]}}}return Ft.\u0275fac=function(xt){return new(xt||Ft)(x.KVO(f.Ce),x.KVO(x.Agw))},Ft.\u0275mod=x.$C({type:Ft}),Ft.\u0275inj=x.G2t({imports:[d.w2,I.Cc,ct,d.w2,I.Cc,ct]}),Ft})();var xi=g(9327),Si=g(6600),zi=g(5351),en=g(850),Ni=g(1975),fn=g(8834),Zt=g(8617);g(5024);const re=["button"],je=["*"];function Ce(Ft,ri){if(1&Ft&&x.nrm(0,"mat-pseudo-checkbox",3),2&Ft){const xt=x.XpG();x.Y8G("disabled",xt.disabled)}}function ot(Ft,ri){if(1&Ft&&x.nrm(0,"mat-pseudo-checkbox",3),2&Ft){const xt=x.XpG();x.Y8G("disabled",xt.disabled)}}const ut=new x.nKC("MAT_BUTTON_TOGGLE_DEFAULT_OPTIONS",{providedIn:"root",factory:function ii(){return{hideSingleSelectionIndicator:!1,hideMultipleSelectionIndicator:!1}}}),si=new x.nKC("MatButtonToggleGroup");let mn=0;class Fn{constructor(ri,xt){this.source=ri,this.value=xt}}let Yn=(()=>{class Ft{get buttonId(){return`${this.id}-button`}get appearance(){return this.buttonToggleGroup?this.buttonToggleGroup.appearance:this._appearance}set appearance(xt){this._appearance=xt}get checked(){return this.buttonToggleGroup?this.buttonToggleGroup._isSelected(this):this._checked}set checked(xt){xt!==this._checked&&(this._checked=xt,this.buttonToggleGroup&&this.buttonToggleGroup._syncButtonToggle(this,this._checked),this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled||this.buttonToggleGroup&&this.buttonToggleGroup.disabled}set disabled(xt){this._disabled=xt}constructor(xt,ai,Ei,Ki,tr,Or){this._changeDetectorRef=ai,this._elementRef=Ei,this._focusMonitor=Ki,this._checked=!1,this.ariaLabelledby=null,this._disabled=!1,this.change=new x.bkB;const Fr=Number(tr);this.tabIndex=Fr||0===Fr?Fr:null,this.buttonToggleGroup=xt,this.appearance=Or&&Or.appearance?Or.appearance:"standard"}ngOnInit(){const xt=this.buttonToggleGroup;this.id=this.id||"mat-button-toggle-"+mn++,xt&&(xt._isPrechecked(this)?this.checked=!0:xt._isSelected(this)!==this._checked&&xt._syncButtonToggle(this,this._checked))}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){const xt=this.buttonToggleGroup;this._focusMonitor.stopMonitoring(this._elementRef),xt&&xt._isSelected(this)&&xt._syncButtonToggle(this,!1,!1,!0)}focus(xt){this._buttonElement.nativeElement.focus(xt)}_onButtonClick(){const xt=!!this._isSingleSelector()||!this._checked;xt!==this._checked&&(this._checked=xt,this.buttonToggleGroup&&(this.buttonToggleGroup._syncButtonToggle(this,this._checked,!0),this.buttonToggleGroup._onTouched())),this.change.emit(new Fn(this,this.value))}_markForCheck(){this._changeDetectorRef.markForCheck()}_getButtonName(){return this._isSingleSelector()?this.buttonToggleGroup.name:this.name||null}_isSingleSelector(){return this.buttonToggleGroup&&!this.buttonToggleGroup.multiple}static#e=this.\u0275fac=function(ai){return new(ai||Ft)(x.rXU(si,8),x.rXU(x.gRc),x.rXU(x.aKT),x.rXU(Zt.FN),x.kS0("tabindex"),x.rXU(ut,8))};static#t=this.\u0275cmp=x.VBU({type:Ft,selectors:[["mat-button-toggle"]],viewQuery:function(ai,Ei){if(1&ai&&x.GBs(re,5),2&ai){let Ki;x.mGM(Ki=x.lsd())&&(Ei._buttonElement=Ki.first)}},hostAttrs:["role","presentation",1,"mat-button-toggle"],hostVars:12,hostBindings:function(ai,Ei){1&ai&&x.bIt("focus",function(){return Ei.focus()}),2&ai&&(x.BMQ("aria-label",null)("aria-labelledby",null)("id",Ei.id)("name",null),x.AVh("mat-button-toggle-standalone",!Ei.buttonToggleGroup)("mat-button-toggle-checked",Ei.checked)("mat-button-toggle-disabled",Ei.disabled)("mat-button-toggle-appearance-standard","standard"===Ei.appearance))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],id:"id",name:"name",value:"value",tabIndex:"tabIndex",disableRipple:[2,"disableRipple","disableRipple",x.L39],appearance:"appearance",checked:[2,"checked","checked",x.L39],disabled:[2,"disabled","disabled",x.L39]},outputs:{change:"change"},exportAs:["matButtonToggle"],standalone:!0,features:[x.GFd,x.aNF],ngContentSelectors:je,decls:8,vars:11,consts:[["button",""],["type","button",1,"mat-button-toggle-button","mat-focus-indicator",3,"click","id","disabled"],[1,"mat-button-toggle-label-content"],["state","checked","aria-hidden","true","appearance","minimal",1,"mat-mdc-option-pseudo-checkbox",3,"disabled"],[1,"mat-button-toggle-focus-overlay"],["matRipple","",1,"mat-button-toggle-ripple",3,"matRippleTrigger","matRippleDisabled"]],template:function(ai,Ei){if(1&ai){const Ki=x.RV6();x.NAR(),x.j41(0,"button",1,0),x.bIt("click",function(){return x.eBV(Ki),x.Njj(Ei._onButtonClick())}),x.j41(2,"span",2),x.DNE(3,Ce,1,1,"mat-pseudo-checkbox",3)(4,ot,1,1,"mat-pseudo-checkbox",3),x.SdG(5),x.k0s()(),x.nrm(6,"span",4)(7,"span",5)}if(2&ai){const Ki=x.sdS(1);x.Y8G("id",Ei.buttonId)("disabled",Ei.disabled||null),x.BMQ("tabindex",Ei.disabled?-1:Ei.tabIndex)("aria-pressed",Ei.checked)("name",Ei._getButtonName())("aria-label",Ei.ariaLabel)("aria-labelledby",Ei.ariaLabelledby),x.R7$(3),x.vxM(Ei.buttonToggleGroup&&Ei.checked&&!Ei.buttonToggleGroup.multiple&&!Ei.buttonToggleGroup.hideSingleSelectionIndicator?3:-1),x.R7$(),x.vxM(Ei.buttonToggleGroup&&Ei.checked&&Ei.buttonToggleGroup.multiple&&!Ei.buttonToggleGroup.hideMultipleSelectionIndicator?4:-1),x.R7$(3),x.Y8G("matRippleTrigger",Ki)("matRippleDisabled",Ei.disableRipple||Ei.disabled)}},dependencies:[Si.r6,Si.wg],styles:[".mat-button-toggle-standalone,.mat-button-toggle-group{position:relative;display:inline-flex;flex-direction:row;white-space:nowrap;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);transform:translateZ(0);border-radius:var(--mat-legacy-button-toggle-shape)}.mat-button-toggle-standalone:not([class*=mat-elevation-z]),.mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.cdk-high-contrast-active .mat-button-toggle-standalone,.cdk-high-contrast-active .mat-button-toggle-group{outline:solid 1px}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.mat-button-toggle-group-appearance-standard{border-radius:var(--mat-standard-button-toggle-shape);border:solid 1px var(--mat-standard-button-toggle-divider-color)}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard .mat-pseudo-checkbox,.mat-button-toggle-group-appearance-standard .mat-pseudo-checkbox{--mat-minimal-pseudo-checkbox-selected-checkmark-color: var( --mat-standard-button-toggle-selected-state-text-color )}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.cdk-high-contrast-active .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.cdk-high-contrast-active .mat-button-toggle-group-appearance-standard{outline:0}.mat-button-toggle-vertical{flex-direction:column}.mat-button-toggle-vertical .mat-button-toggle-label-content{display:block}.mat-button-toggle{white-space:nowrap;position:relative;color:var(--mat-legacy-button-toggle-text-color);font-family:var(--mat-legacy-button-toggle-label-text-font);font-size:var(--mat-legacy-button-toggle-label-text-size);line-height:var(--mat-legacy-button-toggle-label-text-line-height);font-weight:var(--mat-legacy-button-toggle-label-text-weight);letter-spacing:var(--mat-legacy-button-toggle-label-text-tracking);--mat-minimal-pseudo-checkbox-selected-checkmark-color: var( --mat-legacy-button-toggle-selected-state-text-color )}.mat-button-toggle.cdk-keyboard-focused .mat-button-toggle-focus-overlay{opacity:var(--mat-legacy-button-toggle-focus-state-layer-opacity)}.mat-button-toggle .mat-icon svg{vertical-align:top}.mat-button-toggle .mat-pseudo-checkbox{margin-right:12px}[dir=rtl] .mat-button-toggle .mat-pseudo-checkbox{margin-right:0;margin-left:12px}.mat-button-toggle-checked{color:var(--mat-legacy-button-toggle-selected-state-text-color);background-color:var(--mat-legacy-button-toggle-selected-state-background-color)}.mat-button-toggle-disabled{color:var(--mat-legacy-button-toggle-disabled-state-text-color);background-color:var(--mat-legacy-button-toggle-disabled-state-background-color);--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: var( --mat-legacy-button-toggle-disabled-state-text-color )}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:var(--mat-legacy-button-toggle-disabled-selected-state-background-color)}.mat-button-toggle-appearance-standard{color:var(--mat-standard-button-toggle-text-color);background-color:var(--mat-standard-button-toggle-background-color);font-family:var(--mat-standard-button-toggle-label-text-font);font-size:var(--mat-standard-button-toggle-label-text-size);line-height:var(--mat-standard-button-toggle-label-text-line-height);font-weight:var(--mat-standard-button-toggle-label-text-weight);letter-spacing:var(--mat-standard-button-toggle-label-text-tracking)}.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:solid 1px var(--mat-standard-button-toggle-divider-color)}[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:none;border-right:solid 1px var(--mat-standard-button-toggle-divider-color)}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:none;border-right:none;border-top:solid 1px var(--mat-standard-button-toggle-divider-color)}.mat-button-toggle-appearance-standard.mat-button-toggle-checked{color:var(--mat-standard-button-toggle-selected-state-text-color);background-color:var(--mat-standard-button-toggle-selected-state-background-color)}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled{color:var(--mat-standard-button-toggle-disabled-state-text-color);background-color:var(--mat-standard-button-toggle-disabled-state-background-color)}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled .mat-pseudo-checkbox{--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: var( --mat-standard-button-toggle-disabled-selected-state-text-color )}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled.mat-button-toggle-checked{color:var(--mat-standard-button-toggle-disabled-selected-state-text-color);background-color:var(--mat-standard-button-toggle-disabled-selected-state-background-color)}.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:var(--mat-standard-button-toggle-state-layer-color)}.mat-button-toggle-appearance-standard:not(.mat-button-toggle-disabled):hover .mat-button-toggle-focus-overlay{opacity:var(--mat-standard-button-toggle-hover-state-layer-opacity)}.mat-button-toggle-appearance-standard.cdk-keyboard-focused:not(.mat-button-toggle-disabled) .mat-button-toggle-focus-overlay{opacity:var(--mat-standard-button-toggle-focus-state-layer-opacity)}@media(hover: none){.mat-button-toggle-appearance-standard:not(.mat-button-toggle-disabled):hover .mat-button-toggle-focus-overlay{display:none}}.mat-button-toggle-label-content{-webkit-user-select:none;user-select:none;display:inline-block;padding:0 16px;line-height:var(--mat-legacy-button-toggle-height);position:relative}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{padding:0 12px;line-height:var(--mat-standard-button-toggle-height)}.mat-button-toggle-label-content>*{vertical-align:middle}.mat-button-toggle-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:inherit;pointer-events:none;opacity:0;background-color:var(--mat-legacy-button-toggle-state-layer-color)}.cdk-high-contrast-active .mat-button-toggle-checked .mat-button-toggle-focus-overlay{border-bottom:solid 500px;opacity:.5;height:0}.cdk-high-contrast-active .mat-button-toggle-checked:hover .mat-button-toggle-focus-overlay{opacity:.6}.cdk-high-contrast-active .mat-button-toggle-checked.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{border-bottom:solid 500px}.mat-button-toggle .mat-button-toggle-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-button-toggle-button{border:0;background:none;color:inherit;padding:0;margin:0;font:inherit;outline:none;width:100%;cursor:pointer}.mat-button-toggle-disabled .mat-button-toggle-button{cursor:default}.mat-button-toggle-button::-moz-focus-inner{border:0}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard{--mat-focus-indicator-border-radius:var(--mat-standard-button-toggle-shape)}.mat-button-toggle-group-appearance-standard .mat-button-toggle:last-of-type .mat-button-toggle-button::before{border-top-right-radius:var(--mat-standard-button-toggle-shape);border-bottom-right-radius:var(--mat-standard-button-toggle-shape)}.mat-button-toggle-group-appearance-standard .mat-button-toggle:first-of-type .mat-button-toggle-button::before{border-top-left-radius:var(--mat-standard-button-toggle-shape);border-bottom-left-radius:var(--mat-standard-button-toggle-shape)}"],encapsulation:2,changeDetection:0})}return Ft})(),Qn=(()=>{class Ft{static#e=this.\u0275fac=function(ai){return new(ai||Ft)};static#t=this.\u0275mod=x.$C({type:Ft});static#i=this.\u0275inj=x.G2t({imports:[Si.yE,Si.pZ,Yn,Si.yE]})}return Ft})();var rr=g(5596),Rn=g(2765),_i=g(5084),Oi=g(9454),jt=g(6195),Ci=g(9213),hi=g(9631),yi=g(3902),Vi=g(9115),ji=g(6695),rn=g(7575),ar=g(9183),sr=g(5951),nr=g(2798),or=g(882),Xr=g(450),Sr=g(6860);g(1413);let kr=(()=>{class Ft{static#e=this.\u0275fac=function(ai){return new(ai||Ft)};static#t=this.\u0275mod=x.$C({type:Ft});static#i=this.\u0275inj=x.G2t({imports:[Si.yE,Si.pZ]})}return Ft})();var ha=g(5416),Br=g(2042),Ua=g(6013),rs=g(9159),Ga=g(6850),Na=g(5911),ja=g(4823),Bo=g(7358),Uo=g(6471),uo=g(6064),ga=g(8288),Za=g(497),Lr=g(6969);let _a=(()=>{class Ft extends Lr.Sf{constructor(xt,ai){super(xt,ai)}_createContainer(){super._createContainer(),this._containerElement&&(document.querySelector("#rtl-container")||document.body).appendChild(this._containerElement)}ngOnDestroy(){super.ngOnDestroy()}static#e=this.\u0275fac=function(ai){return new(ai||Ft)(x.rXU(e.qQ),x.rXU(Sr.OD))};static#t=this.\u0275dir=x.FsC({type:Ft,features:[x.Vt3]})}return Ft})();var Oo=g(8570),qr=g(4416),Bn=g(2929);const Da={suppressScrollX:!1,suppressScrollY:!1};let Go=(()=>{class Ft extends Si.xW{constructor(xt){super(xt)}format(xt,ai){if("input"===ai){let Ei=xt.getDate().toString();return Ei=+Ei<10?"0"+Ei:Ei,Ei+"/"+qr.KR[xt.getMonth()].name.toUpperCase()+"/"+xt.getFullYear()}return qr.KR[xt.getMonth()].name.toUpperCase()+" "+xt.getFullYear()}static#e=this.\u0275fac=function(ai){return new(ai||Ft)(x.KVO(Si.Ju,8))};static#t=this.\u0275prov=x.jDH({token:Ft,factory:Ft.\u0275fac})}return Ft})();const Wa={parse:{dateInput:{day:"numeric",month:"short",year:"numeric"}},display:{dateInput:"input",monthYearLabel:{month:"short",year:"numeric"},dateA11yLabel:{day:"numeric",month:"short",year:"numeric"},monthYearA11yLabel:{month:"short",year:"numeric"}}};let as=(()=>{class Ft{static#e=this.\u0275fac=function(ai){return new(ai||Ft)};static#t=this.\u0275mod=x.$C({type:Ft});static#i=this.\u0275inj=x.G2t({providers:[{provide:Oo.gP,useClass:Oo.tU},{provide:Za.kU,useValue:Da},{provide:ha.x6,useValue:{duration:2e3,verticalPosition:"bottom",panelClass:"rtl-snack-bar"}},{provide:zi.di,useValue:{hasBackdrop:!0,autoFocus:!0,disableClose:!0,role:"dialog"}},{provide:Si.MJ,useClass:Go},{provide:Si.de,useValue:Wa},{provide:Lr.Sf,useClass:_a},e.QX,e.PV,e.vh,Bn.gZ,Bn.ZE,Bn.VD,Bn.Qu],imports:[e.MD,w.YN,w.X1,l.dX,Ut,xi.RH,zi.hM,fn.Hl,Qn,rr.Hu,Rn.g7,Oi.MY,jt.Fe,_i.X6,Si.WX,Ci.m_,hi.fS,yi.Fg,Vi.Cn,rn.PO,ar.D6,sr.Wk,Bo.jH,Uo.YN,nr.Ve,or.vg,Xr.mV,Br.NQ,rs.tP,Na.s5,ja.uc,Ni.Y,ji.Ou,Ua.aP,kr,Ga.RI,ha._T,en.jL,uo.dV,ga.XK,t.iI,S.q1,Za.U$,w.YN,w.X1,l.dX,Ut,xi.RH,zi.hM,fn.Hl,Qn,rr.Hu,Rn.g7,Oi.MY,jt.Fe,_i.X6,Si.WX,Ci.m_,hi.fS,yi.Fg,Vi.Cn,rn.PO,ar.D6,sr.Wk,Bo.jH,Uo.YN,nr.Ve,or.vg,Xr.mV,Br.NQ,rs.tP,Na.s5,ja.uc,Ni.Y,ji.Ou,Ua.aP,kr,Ga.RI,ha._T,en.jL,uo.dV,ga.XK,Za.U$]})}return Ft})()},1771:(Qe,te,g)=>{"use strict";g.d(te,{Dz:()=>W,Fl:()=>Me,Gd:()=>l,I1:()=>F,IK:()=>J,Jh:()=>x,My:()=>S,NU:()=>Q,Np:()=>ge,OP:()=>z,Qi:()=>ee,R$:()=>y,T$:()=>ie,Tn:()=>j,UI:()=>f,iD:()=>m,mt:()=>I,oz:()=>n,rc:()=>ae,ri:()=>Te,t2:()=>C,uP:()=>R,xO:()=>T,xw:()=>de,y0:()=>d});var e=g(9640),t=g(4416);(0,e.VP)(t.aU.VOID);const S=(0,e.VP)(t.aU.SET_API_URL_ECL,(0,e.xk)()),l=(0,e.VP)(t.aU.UPDATE_API_CALL_STATUS_ROOT,(0,e.xk)()),x=(0,e.VP)(t.aU.CLOSE_ALL_DIALOGS),f=(0,e.VP)(t.aU.OPEN_SNACK_BAR,(0,e.xk)()),I=(0,e.VP)(t.aU.OPEN_SPINNER,(0,e.xk)()),d=(0,e.VP)(t.aU.CLOSE_SPINNER,(0,e.xk)()),T=(0,e.VP)(t.aU.OPEN_ALERT,(0,e.xk)()),y=(0,e.VP)(t.aU.CLOSE_ALERT,(0,e.xk)()),F=(0,e.VP)(t.aU.OPEN_CONFIRMATION,(0,e.xk)()),R=(0,e.VP)(t.aU.CLOSE_CONFIRMATION,(0,e.xk)()),z=(0,e.VP)(t.aU.SHOW_PUBKEY),W=(0,e.VP)(t.aU.FETCH_CONFIG,(0,e.xk)()),j=((0,e.VP)(t.aU.SHOW_CONFIG,(0,e.xk)()),(0,e.VP)(t.aU.RESET_ROOT_STORE,(0,e.xk)())),Q=(0,e.VP)(t.aU.FETCH_APPLICATION_SETTINGS),J=(0,e.VP)(t.aU.SET_APPLICATION_SETTINGS,(0,e.xk)()),ee=(0,e.VP)(t.aU.SET_SELECTED_NODE,(0,e.xk)()),ie=(0,e.VP)(t.aU.UPDATE_NODE_SETTINGS,(0,e.xk)()),ge=(0,e.VP)(t.aU.SET_SELECTED_NODE_SETTINGS,(0,e.xk)()),ae=(0,e.VP)(t.aU.UPDATE_APPLICATION_SETTINGS,(0,e.xk)()),Me=(0,e.VP)(t.aU.SET_NODE_DATA,(0,e.xk)()),Te=(0,e.VP)(t.aU.LOGOUT,(0,e.xk)()),de=(0,e.VP)(t.aU.RESET_PASSWORD,(0,e.xk)()),n=((0,e.VP)(t.aU.RESET_PASSWORD_RES,(0,e.xk)()),(0,e.VP)(t.aU.IS_AUTHORIZED,(0,e.xk)())),m=((0,e.VP)(t.aU.IS_AUTHORIZED_RES,(0,e.xk)()),(0,e.VP)(t.aU.LOGIN,(0,e.xk)())),C=((0,e.VP)(t.aU.VERIFY_TWO_FA,(0,e.xk)()),(0,e.VP)(t.aU.FETCH_FILE,(0,e.xk)()));(0,e.VP)(t.aU.SHOW_FILE,(0,e.xk)())},7541:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>je});var e=g(4438),t=g(4054),w=g(1413),S=g(7673),l=g(6354),x=g(6697),f=g(3993),I=g(1397),d=g(9437),T=g(6977),y=g(4416),F=g(5351),R=g(2920),z=g(9183);let W=(()=>{class Ce{constructor(ut,ii){this.dialogRef=ut,this.data=ii}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.rXU(F.CP),e.rXU(F.Vh))};static#t=this.\u0275cmp=e.VBU({type:Ce,selectors:[["rtl-spinner-dialog"]],decls:4,vars:1,consts:[["fxLayout","column","fxLayoutAlign","center center",1,"spinner-container"],["color","primary","mode","indeterminate",1,"modal-spinner-message"]],template:function(ii,si){1&ii&&(e.j41(0,"div",0),e.nrm(1,"mat-progress-spinner",1),e.j41(2,"h2"),e.EFF(3),e.k0s()()),2&ii&&(e.R7$(3),e.JRh(si.data.titleMessage))},dependencies:[R.DJ,R.sA,z.LG],styles:["h2[_ngcontent-%COMP%]{text-align:center}"]})}return Ce})();var $=g(5383),j=g(9647),Q=g(8570),J=g(5416),ee=g(2571),ie=g(1188),ge=g(9640),ae=g(177),Me=g(60),Te=g(6038),de=g(8834),D=g(5596),n=g(9213),c=g(1997),m=g(4823),h=g(8288),C=g(497),k=g(9157),L=g(9587);const _=["scrollContainer"],r=Ce=>({"display-none":Ce}),v=Ce=>({"h-40":Ce}),V=Ce=>({"failed-status":Ce});function N(Ce,ot){if(1&Ce&&e.nrm(0,"qr-code",19),2&Ce){const ut=e.XpG();e.Y8G("value",ut.showQRField)("size",200)("errorCorrectionLevel","L")}}function ne(Ce,ot){1&Ce&&e.eu8(0)}function Ee(Ce,ot){if(1&Ce&&(e.qex(0),e.j41(1,"mat-card-content",20,1),e.DNE(3,ne,1,0,"ng-container",21),e.k0s(),e.bVm()),2&Ce){const ut=e.XpG(),ii=e.sdS(20);e.R7$(),e.Y8G("ngClass",e.eq3(2,v,ut.data.scrollable)),e.R7$(2),e.Y8G("ngTemplateOutlet",ii)}}function ze(Ce,ot){1&Ce&&e.eu8(0)}function qe(Ce,ot){if(1&Ce&&(e.qex(0),e.j41(1,"mat-card-content",22),e.DNE(2,ze,1,0,"ng-container",21),e.k0s(),e.bVm()),2&Ce){e.XpG();const ut=e.sdS(20);e.R7$(2),e.Y8G("ngTemplateOutlet",ut)}}function Ke(Ce,ot){1&Ce&&(e.j41(0,"mat-icon",26),e.EFF(1,"arrow_downward"),e.k0s())}function se(Ce,ot){1&Ce&&(e.j41(0,"mat-icon",26),e.EFF(1,"arrow_upward"),e.k0s())}function X(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"div",23)(1,"button",24),e.bIt("click",function(){e.eBV(ut);const si=e.XpG();return e.Njj(si.onScroll())}),e.DNE(2,Ke,2,0,"mat-icon",25)(3,se,2,0,"mat-icon",25),e.k0s()()}if(2&Ce){const ut=e.XpG();e.R7$(2),e.Y8G("ngIf","DOWN"===ut.scrollDirection),e.R7$(),e.Y8G("ngIf","UP"===ut.scrollDirection)}}function me(Ce,ot){1&Ce&&(e.j41(0,"button",27),e.EFF(1,"OK"),e.k0s()),2&Ce&&e.Y8G("mat-dialog-close",!1)}function ce(Ce,ot){1&Ce&&(e.j41(0,"button",28),e.EFF(1,"Close"),e.k0s()),2&Ce&&e.Y8G("mat-dialog-close",!1)}function fe(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",29),e.bIt("copied",function(si){e.eBV(ut);const Pi=e.XpG();return e.Njj(Pi.onCopyField(si))}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG();e.Y8G("payload",ut.showCopyField),e.R7$(),e.SpI("Copy ",ut.showCopyName,"")}}function ke(Ce,ot){1&Ce&&(e.j41(0,"button",28),e.EFF(1,"Close"),e.k0s()),2&Ce&&e.Y8G("mat-dialog-close",!1)}function mt(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",29),e.bIt("copied",function(si){e.eBV(ut);const Pi=e.XpG();return e.Njj(Pi.onCopyField(si))}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG();e.Y8G("payload",ut.showQRField),e.R7$(),e.SpI("Copy ",ut.showQRName,"")}}function _e(Ce,ot){if(1&Ce&&e.nrm(0,"qr-code",19),2&Ce){const ut=e.XpG(2);e.Y8G("value",ut.showQRField)("size",200)("errorCorrectionLevel","L")}}function be(Ce,ot){if(1&Ce&&(e.j41(0,"p",35),e.EFF(1),e.k0s()),2&Ce){const ut=e.XpG(2);e.R7$(),e.JRh(ut.data.titleMessage)}}function pe(Ce,ot){1&Ce&&e.nrm(0,"span",49),2&Ce&&e.Y8G("innerHTML",ot.$implicit,e.npT)}function Ze(Ce,ot){if(1&Ce&&(e.qex(0),e.DNE(1,pe,1,1,"span",48),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.Y8G("ngForOf",ut.value)}}function _t(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.nI1(2,"date"),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*ut.value,"dd/MMM/y HH:mm"))}}function at(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.nI1(2,"number"),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,ut.value,ut.digitsInfo?ut.digitsInfo:"1.0-3"))}}function pt(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(ut.value?"True":"False")}}function Xt(Ce,ot){1&Ce&&(e.j41(0,"mat-icon",53),e.EFF(1,"info"),e.k0s())}function ye(Ce,ot){if(1&Ce&&(e.j41(0,"p",51),e.EFF(1),e.DNE(2,Xt,2,0,"mat-icon",52),e.k0s()),2&Ce){const ut=e.XpG(3).$implicit,ii=e.XpG(4);e.Y8G("ngClass",e.eq3(3,V,ut.value===ii.LoopStateEnum.FAILED)),e.R7$(),e.SpI(" ",ut.value," "),e.R7$(),e.Y8G("ngIf",ut.value===ii.LoopStateEnum.FAILED)}}function ue(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"p",55),e.bIt("click",function(){e.eBV(ut);const si=e.XpG(8);return e.Njj(si.onGoToLink())}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG(4).$implicit,ii=e.XpG(4);e.FS9("matTooltip","Go To "+ii.goToName),e.R7$(),e.SpI(" ",ut.value," ")}}function Ie(Ce,ot){if(1&Ce&&e.EFF(0),2&Ce){const ut=e.XpG(4).$implicit;e.SpI(" ",ut.value," ")}}function He(Ce,ot){if(1&Ce&&e.DNE(0,ue,2,2,"p",54)(1,Ie,1,1,"ng-template",null,4,e.C5r),2&Ce){const ut=e.sdS(2),ii=e.XpG(3).$implicit,si=e.XpG(4);e.Y8G("ngIf",ii.value===si.goToFieldValue)("ngIfElse",ut)}}function Xe(Ce,ot){if(1&Ce&&(e.qex(0),e.DNE(1,ye,3,5,"p",50)(2,He,3,2,"ng-template",null,3,e.C5r),e.bVm()),2&Ce){const ut=e.sdS(3),ii=e.XpG(2).$implicit,si=e.XpG(4);e.R7$(),e.Y8G("ngIf","SWAP"===si.data.openedBy&&"state"===ii.key)("ngIfElse",ut)}}function yt(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"fa-icon",56),e.bIt("click",function(){e.eBV(ut);const si=e.XpG(2).$implicit,Pi=e.XpG(4);return e.Njj(Pi.onExplorerClicked(si))}),e.k0s()}if(2&Ce){const ut=e.XpG(6);e.FS9("matTooltip","Link to "+ut.selNode.settings.blockExplorerUrl),e.Y8G("icon",ut.faUpRightFromSquare)}}function Ye(Ce,ot){if(1&Ce&&(e.j41(0,"span")(1,"span",44),e.DNE(2,Ze,2,1,"ng-container",45)(3,_t,3,4,"ng-container",45)(4,at,3,4,"ng-container",45)(5,pt,2,1,"ng-container",45)(6,Xe,4,2,"ng-container",46),e.j41(7,"span"),e.DNE(8,yt,1,2,"fa-icon",47),e.k0s()()()),2&Ce){const ut=e.XpG().$implicit,ii=e.XpG(4);e.R7$(),e.Y8G("ngSwitch",ut.type),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.ARRAY),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.DATE_TIME),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.NUMBER),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.BOOLEAN),e.R7$(3),e.Y8G("ngIf",ut.explorerLink&&""!==ut.explorerLink)}}function rt(Ce,ot){1&Ce&&(e.j41(0,"span",57),e.EFF(1,"\xa0"),e.k0s())}function Yt(Ce,ot){if(1&Ce&&(e.j41(0,"div",40)(1,"h4",41),e.EFF(2),e.k0s(),e.DNE(3,Ye,9,6,"span",42)(4,rt,2,0,"ng-template",null,2,e.C5r),e.nrm(6,"mat-divider",43),e.k0s()),2&Ce){const ut=ot.$implicit,ii=e.sdS(5);e.FS9("fxFlex.gt-md",ut.width),e.R7$(2),e.JRh(ut.title),e.R7$(),e.Y8G("ngIf",ut&&(!!ut.value||0===ut.value))("ngIfElse",ii)}}function Nt(Ce,ot){if(1&Ce&&(e.j41(0,"div")(1,"div",38),e.DNE(2,Yt,7,4,"div",39),e.k0s()()),2&Ce){const ut=ot.$implicit;e.R7$(2),e.Y8G("ngForOf",ut)}}function Et(Ce,ot){if(1&Ce&&(e.j41(0,"div",36),e.DNE(1,Nt,3,1,"div",37),e.k0s()),2&Ce){const ut=e.XpG(2);e.R7$(),e.Y8G("ngForOf",ut.messageObjs)}}function Vt(Ce,ot){if(1&Ce&&(e.j41(0,"div",30)(1,"div",31),e.DNE(2,_e,1,3,"qr-code",7),e.k0s(),e.j41(3,"div",32),e.DNE(4,be,2,1,"p",33)(5,Et,2,1,"div",34),e.k0s()()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("ngClass",e.eq3(4,r,""===ut.showQRField||ut.screenSize!==ut.screenSizeEnum.XS&&ut.screenSize!==ut.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",""!==ut.showQRField),e.R7$(2),e.Y8G("ngIf",ut.data.titleMessage),e.R7$(),e.Y8G("ngIf",(null==ut.messageObjs?null:ut.messageObjs.length)>0)}}let oe=(()=>{class Ce{set container(ut){ut&&(this.scrollContainer=ut,this.scrollContainer&&this.scrollContainer.nativeElement&&(this.unlistenEnd=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-end",ii=>{this.scrollDirection="UP"}),this.unlistenStart=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-start",ii=>{this.scrollDirection="DOWN"})))}constructor(ut,ii,si,Pi,mn,Fn,$n,Yn){this.dialogRef=ut,this.data=ii,this.logger=si,this.snackBar=Pi,this.commonService=mn,this.renderer=Fn,this.router=$n,this.store=Yn,this.faUpRightFromSquare=$.k02,this.LoopStateEnum=y.Hx,this.goToFieldValue="",this.goToName="",this.goToLink="",this.showQRField="",this.showQRName="",this.showCopyName="",this.showCopyField="",this.errorMessage="",this.messageObjs=[],this.alertTypeEnum=y.A$,this.dataTypeEnum=y.UN,this.screenSize="",this.screenSizeEnum=y.f7,this.scrollDirection="DOWN",this.shouldScroll=!0,this.unSubs=[new w.B,new w.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.messageObjs=this.data.message||[],this.goToFieldValue=this.data.goToFieldValue?this.data.goToFieldValue:"",this.goToName=this.data.goToName?this.data.goToName:"",this.goToLink=this.data.goToLink?this.data.goToLink:"",this.showQRField=this.data.showQRField?this.data.showQRField:"",this.showQRName=this.data.showQRName?this.data.showQRName:"",this.showCopyName=this.data.showCopyName?this.data.showCopyName:"",this.showCopyField=this.data.showCopyField?this.data.showCopyField:"",this.data.type===y.A$.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection"),this.logger.info(this.messageObjs),this.store.select(j._c).pipe((0,T.Q)(this.unSubs[0])).subscribe(ut=>{this.selNode=ut,this.logger.info(this.selNode)})}ngAfterViewChecked(){setTimeout(()=>{this.shouldScroll=this.scrollContainer&&this.scrollContainer.nativeElement&&this.scrollContainer.nativeElement.classList.value.includes("ps--active-y")},500)}onScroll(){this.scrollContainer.nativeElement.scrollTop="DOWN"===this.scrollDirection?this.scrollContainer.nativeElement.scrollTop+62.6:this.scrollContainer.nativeElement.scrollTop-62.6}onCopyField(ut){this.snackBar.open((this.showQRName?this.showQRName:this.showCopyName)+" copied."),this.logger.info("Copied Text: "+ut)}onClose(){this.dialogRef.close(!1)}onGoToLink(){this.router.navigateByUrl(this.goToLink,{state:{lookupType:"0",lookupValue:this.goToFieldValue}}),this.onClose()}onExplorerClicked(ut){window.open(this.selNode.settings.blockExplorerUrl+"/"+ut.explorerLink+"/"+ut.value,"_blank")}ngOnDestroy(){this.unlistenStart&&this.unlistenStart(),this.unlistenEnd&&this.unlistenEnd(),this.unSubs.forEach(ut=>{ut.next(null),ut.complete()})}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.rXU(F.CP),e.rXU(F.Vh),e.rXU(Q.gP),e.rXU(J.UG),e.rXU(ee.h),e.rXU(e.sFG),e.rXU(ie.Ix),e.rXU(ge.il))};static#t=this.\u0275cmp=e.VBU({type:Ce,selectors:[["rtl-alert-message"]],viewQuery:function(ii,si){if(1&ii&&e.GBs(_,5),2&ii){let Pi;e.mGM(Pi=e.lsd())&&(si.container=Pi.first)}},decls:21,vars:14,consts:[["contentBlock",""],["scrollContainer",""],["emptyField",""],["noStyleBlock",""],["noStyleChild",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","30","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large","ml-1",3,"ngClass"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],[3,"fxFlex"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","start end","class","btn-sticky-container padding-gap-x-large",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close",4,"ngIf"],["class","mr-1","fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",3,"mat-dialog-close",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],[3,"value","size","errorCorrectionLevel"],[1,"padding-gap-x-large",3,"perfectScrollbar","ngClass"],[4,"ngTemplateOutlet"],[1,"padding-gap-x-large"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center",4,"ngIf"],["fxLayoutAlign","center center"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close"],["fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",1,"mr-1",3,"mat-dialog-close"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large","mb-1",3,"ngClass"],["fxLayout","column","fxFlex","100"],["fxLayoutAlign","start center","class","pb-2",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxLayoutAlign","start center",1,"pb-2"],["fxFlex","100"],[4,"ngFor","ngForOf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center","fxLayoutAlign.gt-md","space-between start"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md"],["fxLayoutAlign","start",1,"font-bold-500"],[4,"ngIf","ngIfElse"],[1,"w-100","my-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"foreground-secondary-text",3,"ngSwitch"],[4,"ngSwitchCase"],[4,"ngSwitchDefault"],["class","ml-1 fa-icon-primary",3,"matTooltip","icon","click",4,"ngIf"],["class","display-block w-100",3,"innerHTML",4,"ngFor","ngForOf"],[1,"display-block","w-100",3,"innerHTML"],["fxLayout","row",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","row",3,"ngClass"],["fxLayoutAlign","end end","class","icon-failed-status",4,"ngIf"],["fxLayoutAlign","end end",1,"icon-failed-status"],["tabindex","4","fxLayout","row","class","go-to-link",3,"matTooltip","click",4,"ngIf","ngIfElse"],["tabindex","4","fxLayout","row",1,"go-to-link",3,"click","matTooltip"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxFlex","100",1,"foreground-secondary-text"]],template:function(ii,si){if(1&ii){const Pi=e.RV6();e.j41(0,"div",5)(1,"div",6),e.DNE(2,N,1,3,"qr-code",7),e.k0s(),e.j41(3,"div",8)(4,"mat-card-header",9)(5,"div",10)(6,"span",11),e.EFF(7),e.k0s()(),e.j41(8,"button",12),e.bIt("click",function(){return e.eBV(Pi),e.Njj(si.onClose())}),e.EFF(9,"X"),e.k0s()(),e.DNE(10,Ee,4,4,"ng-container",13)(11,qe,3,1,"ng-container",13)(12,X,4,2,"div",14),e.j41(13,"div",15),e.DNE(14,me,2,1,"button",16)(15,ce,2,1,"button",17)(16,fe,2,2,"button",18)(17,ke,2,1,"button",17)(18,mt,2,2,"button",18),e.k0s()()(),e.DNE(19,Vt,6,6,"ng-template",null,0,e.C5r)}2&ii&&(e.R7$(),e.Y8G("ngClass",e.eq3(12,r,""===si.showQRField||si.screenSize===si.screenSizeEnum.XS||si.screenSize===si.screenSizeEnum.SM)),e.R7$(),e.Y8G("ngIf",""!==si.showQRField),e.R7$(),e.Y8G("fxFlex",""===si.showQRField||si.screenSize===si.screenSizeEnum.XS||si.screenSize===si.screenSizeEnum.SM?"100":"70"),e.R7$(4),e.JRh(si.data.alertTitle||si.alertTypeEnum[si.data.type]),e.R7$(3),e.Y8G("ngIf",si.data.scrollable),e.R7$(),e.Y8G("ngIf",!si.data.scrollable),e.R7$(),e.Y8G("ngIf",si.data.scrollable&&si.shouldScroll),e.R7$(2),e.Y8G("ngIf",(!si.showQRField||""===si.showQRField)&&""===si.showCopyName),e.R7$(),e.Y8G("ngIf",""!==si.showCopyName),e.R7$(),e.Y8G("ngIf",""!==si.showCopyName),e.R7$(),e.Y8G("ngIf",""!==si.showQRField),e.R7$(),e.Y8G("ngIf",""!==si.showQRField))},dependencies:[ae.YU,ae.Sq,ae.bT,ae.T3,ae.ux,ae.e1,ae.fG,Me.aY,R.DJ,R.sA,R.UI,Te.PW,F.tx,de.$z,de.$0,D.m2,D.MM,n.An,c.q,m.oV,h.Um,C.Ld,k.U,L.N,ae.QX,ae.vh],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]})}return Ce})();var tt=g(1771),$t=g(9417),zt=g(9631),Jt=g(6467),St=g(6114);function dt(Ce,ot){if(1&Ce&&(e.j41(0,"div",20),e.nrm(1,"fa-icon",21),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("icon",ut.faExclamationTriangle),e.R7$(2),e.JRh(ut.warningMessage)}}function Ae(Ce,ot){if(1&Ce&&(e.j41(0,"div",22),e.nrm(1,"fa-icon",21),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("icon",ut.faInfoCircle),e.R7$(2),e.JRh(ut.informationMessage)}}function we(Ce,ot){if(1&Ce&&(e.j41(0,"p",23),e.EFF(1),e.k0s()),2&Ce){const ut=e.XpG();e.R7$(),e.JRh(ut.data.titleMessage)}}function he(Ce,ot){1&Ce&&e.nrm(0,"div",37),2&Ce&&e.Y8G("innerHTML",ot.$implicit,e.npT)}function q(Ce,ot){if(1&Ce&&(e.qex(0,35),e.DNE(1,he,1,1,"div",36),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.Y8G("ngForOf",ut.value)}}function Re(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.nI1(2,"date"),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,1e3*ut.value,"dd/MMM/y HH:mm"))}}function Ne(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.nI1(2,"number"),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(e.i5U(2,1,ut.value,"1.0-3"))}}function gt(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(!0===ut.value?"True":"False")}}function $e(Ce,ot){if(1&Ce&&(e.qex(0),e.EFF(1),e.bVm()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.JRh(ut.value)}}function Fe(Ce,ot){if(1&Ce&&(e.j41(0,"span")(1,"span",31),e.DNE(2,q,2,1,"ng-container",32)(3,Re,3,4,"ng-container",33)(4,Ne,3,4,"ng-container",33)(5,gt,2,1,"ng-container",33)(6,$e,2,1,"ng-container",34),e.k0s()()),2&Ce){const ut=e.XpG().$implicit,ii=e.XpG(3);e.R7$(),e.Y8G("ngSwitch",ut.type),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.ARRAY),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.DATE_TIME),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.NUMBER),e.R7$(),e.Y8G("ngSwitchCase",ii.dataTypeEnum.BOOLEAN)}}function Ge(Ce,ot){1&Ce&&(e.j41(0,"span",38),e.EFF(1,"\xa0"),e.k0s())}function et(Ce,ot){if(1&Ce&&(e.j41(0,"div",27)(1,"h4",28),e.EFF(2),e.k0s(),e.DNE(3,Fe,7,5,"span",29)(4,Ge,2,0,"ng-template",null,0,e.C5r),e.nrm(6,"mat-divider",30),e.k0s()),2&Ce){const ut=ot.$implicit,ii=e.sdS(5);e.FS9("fxFlex.gt-md",ut.width),e.R7$(2),e.JRh(ut.title),e.R7$(),e.Y8G("ngIf",ut&&(!!ut.value||0===ut.value))("ngIfElse",ii)}}function st(Ce,ot){if(1&Ce&&(e.j41(0,"div")(1,"div",25),e.DNE(2,et,7,4,"div",26),e.k0s()()),2&Ce){const ut=ot.$implicit;e.R7$(2),e.Y8G("ngForOf",ut)}}function Tt(Ce,ot){if(1&Ce&&(e.j41(0,"div"),e.DNE(1,st,3,1,"div",24),e.k0s()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("ngForOf",ut.messageObjs)}}function mi(Ce,ot){if(1&Ce&&(e.j41(0,"p",23),e.EFF(1),e.k0s()),2&Ce){const ut=e.XpG(2);e.R7$(),e.JRh(ut.data.titleMessage)}}function Kt(Ce,ot){if(1&Ce&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&Ce){const ut=e.XpG(2).$implicit;e.R7$(),e.SpI("",ut.placeholder," is required.")}}function Pt(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"mat-form-field",42)(1,"mat-label"),e.EFF(2),e.k0s(),e.j41(3,"input",43),e.nI1(4,"lowercase"),e.mxI("ngModelChange",function(si){e.eBV(ut);const Pi=e.XpG().$implicit;return e.DH7(Pi.inputValue,si)||(Pi.inputValue=si),e.Njj(si)}),e.k0s(),e.DNE(5,Kt,2,1,"mat-error",13),e.j41(6,"mat-hint"),e.EFF(7),e.k0s()()}if(2&Ce){const ut=e.XpG(),ii=ut.$implicit,si=ut.index;e.Y8G("fxFlex",ii.width),e.R7$(2),e.JRh(ii.placeholder),e.R7$(),e.Mz_("name","input",si,""),e.Y8G("autoFocus",0===si)("min",ii.min)("step",ii.step)("type",e.bMT(4,12,ii.inputType))("tabindex",si+1),e.R50("ngModel",ii.inputValue),e.R7$(2),e.Y8G("ngIf",!ii.inputValue),e.R7$(2),e.JRh(ii.hintFunction?ii.hintFunction(ii.inputValue):ii.hintText)}}function Xi(Ce,ot){if(1&Ce&&(e.qex(0),e.DNE(1,Pt,8,14,"mat-form-field",41),e.bVm()),2&Ce){const ut=ot.$implicit,ii=e.XpG(2);e.R7$(),e.Y8G("ngIf",!ut.advancedField||ii.showAdvanced)}}function di(Ce,ot){if(1&Ce&&(e.j41(0,"div",39),e.DNE(1,mi,2,1,"p",12),e.j41(2,"div",40),e.DNE(3,Xi,2,1,"ng-container",24),e.k0s()()),2&Ce){const ut=e.XpG();e.R7$(),e.Y8G("ngIf",ut.data.titleMessage),e.R7$(2),e.Y8G("ngForOf",ut.getInputs)}}function fi(Ce,ot){1&Ce&&(e.j41(0,"p"),e.EFF(1,"Show Advanced"),e.k0s())}function vn(Ce,ot){1&Ce&&(e.j41(0,"p"),e.EFF(1,"Hide Advanced"),e.k0s())}function Qi(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",44),e.bIt("click",function(){e.eBV(ut);const si=e.XpG();return e.Njj(si.onShowAdvanced())}),e.DNE(1,fi,2,0,"p",29)(2,vn,2,0,"ng-template",null,1,e.C5r),e.k0s()}if(2&Ce){const ut=e.sdS(3),ii=e.XpG();e.R7$(),e.Y8G("ngIf",!ii.showAdvanced)("ngIfElse",ut)}}function Li(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",45),e.bIt("click",function(){e.eBV(ut);const si=e.XpG();return e.Njj(si.onClose(si.getInputs))}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG();e.R7$(),e.JRh(ut.yesBtnText)}}function Zi(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"button",46),e.bIt("click",function(){e.eBV(ut);const si=e.XpG();return e.Njj(si.onClose(!0))}),e.EFF(1),e.k0s()}if(2&Ce){const ut=e.XpG();e.R7$(),e.JRh(ut.yesBtnText)}}let Qt=(()=>{class Ce{constructor(ut,ii,si,Pi){this.dialogRef=ut,this.data=ii,this.logger=si,this.store=Pi,this.faInfoCircle=$.iW_,this.faExclamationTriangle=$.zpE,this.informationMessage="",this.warningMessage="",this.noBtnText="No",this.yesBtnText="Yes",this.messageObjs=[],this.flgShowInput=!1,this.hasAdvanced=!1,this.alertTypeEnum=y.A$,this.dataTypeEnum=y.UN,this.getInputs=[{placeholder:"",inputType:y.UN.STRING,inputValue:"",hintText:"",hintFunction:null,advancedField:!1}],this.showAdvanced=!1}ngOnInit(){this.informationMessage=this.data.informationMessage||"",this.warningMessage=this.data.warningMessage||"",this.flgShowInput=!!this.data.flgShowInput,this.getInputs=this.data.getInputs||[],this.noBtnText=this.data.noBtnText?this.data.noBtnText:"No",this.yesBtnText=this.data.yesBtnText?this.data.yesBtnText:"Yes",this.hasAdvanced=!!this.data.hasAdvanced&&this.data.hasAdvanced,this.messageObjs=this.data.message,this.data.type===y.A$.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection")}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onClose(ut){if(ut&&this.getInputs&&this.getInputs.some(ii=>typeof ii.inputValue>"u"))return!0;!this.showAdvanced&&ut.length&&(ut=ut?.reduce((ii,si)=>(si.advancedField||ii.push(si),ii),[])),this.store.dispatch((0,tt.uP)({payload:ut}))}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.rXU(F.CP),e.rXU(F.Vh),e.rXU(Q.gP),e.rXU(ge.il))};static#t=this.\u0275cmp=e.VBU({type:Ce,selectors:[["rtl-confirmation-message"]],decls:21,vars:10,consts:[["emptyField",""],["hideAdvancedText",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayoutAlign","start center","class","pb-1",4,"ngIf"],[4,"ngIf"],["fxLayout","column","class","bordered-box my-2 p-2",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],["mat-button","","color","primary","type","button","class","mr-1","tabindex","2",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","3","default","",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","4","default","",3,"click",4,"ngIf"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayoutAlign","start center",1,"pb-1"],[4,"ngFor","ngForOf"],["fxLayout","row wrap","fxLayoutAlign","start center","fxLayoutAlign.gt-md","space-between start"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md"],["fxLayoutAlign","start",1,"font-bold-500"],[4,"ngIf","ngIfElse"],[1,"w-100","my-1"],[1,"foreground-secondary-text",3,"ngSwitch"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch",4,"ngSwitchCase"],[4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch"],[3,"innerHTML",4,"ngFor","ngForOf"],[3,"innerHTML"],["fxFlex","100",1,"foreground-secondary-text"],["fxLayout","column",1,"bordered-box","my-2","p-2"],["fxLayout","row wrap","fxLayoutAlign","space-between center"],[3,"fxFlex",4,"ngIf"],[3,"fxFlex"],["matInput","","required","",3,"ngModelChange","autoFocus","name","min","step","type","tabindex","ngModel"],["mat-button","","color","primary","type","button","tabindex","2",1,"mr-1",3,"click"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","3","default","",3,"click"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","4","default","",3,"click"]],template:function(ii,si){1&ii&&(e.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),e.EFF(5),e.k0s()(),e.j41(6,"button",7),e.bIt("click",function(){return si.onClose(!1)}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",8)(9,"form",9),e.DNE(10,dt,4,2,"div",10)(11,Ae,4,2,"div",11)(12,we,2,1,"p",12)(13,Tt,2,1,"div",13)(14,di,4,2,"div",14),e.j41(15,"div",15)(16,"button",16),e.bIt("click",function(){return si.onClose(!1)}),e.EFF(17),e.k0s(),e.DNE(18,Qi,4,2,"button",17)(19,Li,2,1,"button",18)(20,Zi,2,1,"button",19),e.k0s()()()()()),2&ii&&(e.R7$(5),e.JRh(si.data.alertTitle||si.alertTypeEnum[si.data.type]),e.R7$(5),e.Y8G("ngIf",si.warningMessage&&""!==si.warningMessage),e.R7$(),e.Y8G("ngIf",si.informationMessage&&""!==si.informationMessage),e.R7$(),e.Y8G("ngIf",si.data.titleMessage&&!si.flgShowInput),e.R7$(),e.Y8G("ngIf",(null==si.messageObjs?null:si.messageObjs.length)>0),e.R7$(),e.Y8G("ngIf",si.flgShowInput),e.R7$(3),e.JRh(si.noBtnText),e.R7$(),e.Y8G("ngIf",si.hasAdvanced),e.R7$(),e.Y8G("ngIf",si.flgShowInput),e.R7$(),e.Y8G("ngIf",!si.flgShowInput))},dependencies:[ae.Sq,ae.bT,ae.ux,ae.e1,ae.fG,$t.qT,$t.me,$t.BC,$t.cb,$t.YS,$t.vS,$t.cV,Me.aY,R.DJ,R.sA,R.UI,de.$z,D.m2,D.MM,zt.fg,Jt.rl,Jt.nJ,Jt.MV,Jt.TL,c.q,L.N,St.V,ae.GH,ae.QX,ae.vh]})}return Ce})();var Mt=g(2462),it=g(2798),ct=g(6600);const wt=Ce=>({"display-none":Ce});function Ut(Ce,ot){if(1&Ce&&(e.j41(0,"mat-option",23),e.EFF(1),e.k0s()),2&Ce){const ut=ot.$implicit;e.Y8G("value",ut),e.R7$(),e.SpI(" ",ut.infoName," ")}}function xi(Ce,ot){if(1&Ce){const ut=e.RV6();e.j41(0,"div",13)(1,"mat-form-field",20)(2,"mat-select",21),e.mxI("valueChange",function(si){e.eBV(ut);const Pi=e.XpG();return e.DH7(Pi.selInfoType,si)||(Pi.selInfoType=si),e.Njj(si)}),e.DNE(3,Ut,2,2,"mat-option",22),e.k0s()()()}if(2&Ce){const ut=e.XpG();e.R7$(2),e.R50("value",ut.selInfoType),e.R7$(),e.Y8G("ngForOf",ut.infoTypes)}}let Si=(()=>{class Ce{constructor(ut,ii,si,Pi,mn){this.dialogRef=ut,this.data=ii,this.logger=si,this.snackBar=Pi,this.commonService=mn,this.faReceipt=$.Mf0,this.infoTypes=[{infoID:0,infoKey:"node pubkey",infoName:"Node pubkey"}],this.selInfoType=this.infoTypes[0],this.qrWidth=210,this.screenSize="",this.screenSizeEnum=y.f7}ngOnInit(){this.information=this.data.information,this.information.uris&&(1===this.information.uris.length?this.infoTypes.push({infoID:1,infoKey:"node URI",infoName:"Node URI"}):this.information.uris.length>1&&this.information.uris.forEach((ut,ii)=>{this.infoTypes.push({infoID:ii+1,infoKey:"node URI "+(ii+1),infoName:"Node URI "+(ii+1)})})),this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyPubkey(ut){this.snackBar.open(this.selInfoType.infoName+" copied."),this.logger.info("Copied Text: "+ut)}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.rXU(F.CP),e.rXU(F.Vh),e.rXU(Q.gP),e.rXU(J.UG),e.rXU(ee.h))};static#t=this.\u0275cmp=e.VBU({type:Ce,selectors:[["rtl-show-pubkey"]],decls:26,vars:19,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","30","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],[3,"value","size","errorCorrectionLevel"],["fxFlex","100","fxFlex.gt-sm","70"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],["fxLayout","row",4,"ngIf"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayoutAlign","start end"],["tabindex","1",3,"valueChange","value"],[3,"value",4,"ngFor","ngForOf"],[3,"value"]],template:function(ii,si){1&ii&&(e.j41(0,"div",0)(1,"div",1),e.nrm(2,"qr-code",2),e.k0s(),e.j41(3,"div",3)(4,"mat-card-header",4)(5,"div",5),e.nrm(6,"fa-icon",6),e.j41(7,"span",7),e.EFF(8),e.k0s()(),e.j41(9,"button",8),e.bIt("click",function(){return si.onClose()}),e.EFF(10,"X"),e.k0s()(),e.j41(11,"mat-card-content",9)(12,"div",10)(13,"div",11),e.nrm(14,"qr-code",2),e.k0s(),e.DNE(15,xi,4,2,"div",12),e.j41(16,"div",13)(17,"div",14)(18,"h4",15),e.EFF(19),e.k0s(),e.j41(20,"span",16),e.EFF(21),e.k0s()()(),e.nrm(22,"mat-divider",17),e.j41(23,"div",18)(24,"button",19),e.bIt("copied",function(mn){return si.onCopyPubkey(mn)}),e.EFF(25),e.k0s()()()()()()),2&ii&&(e.R7$(),e.Y8G("ngClass",e.eq3(15,wt,si.screenSize===si.screenSizeEnum.XS||si.screenSize===si.screenSizeEnum.SM)),e.R7$(),e.FS9("value",0===si.selInfoType.infoID?si.information.identity_pubkey:si.information.uris[si.selInfoType.infoID-1]),e.Y8G("size",si.qrWidth)("errorCorrectionLevel","L"),e.R7$(4),e.Y8G("icon",si.faReceipt),e.R7$(2),e.JRh(si.selInfoType.infoName),e.R7$(5),e.Y8G("ngClass",e.eq3(17,wt,si.screenSize!==si.screenSizeEnum.XS&&si.screenSize!==si.screenSizeEnum.SM)),e.R7$(),e.FS9("value",0===si.selInfoType.infoID?si.information.identity_pubkey:si.information.uris[si.selInfoType.infoID-1]),e.Y8G("size",si.qrWidth)("errorCorrectionLevel","L"),e.R7$(),e.Y8G("ngIf",si.information.uris&&si.information.uris.length>0),e.R7$(4),e.JRh(si.selInfoType.infoName),e.R7$(2),e.JRh(0===si.selInfoType.infoID?si.information.identity_pubkey:si.information.uris[si.selInfoType.infoID-1]),e.R7$(3),e.FS9("payload",0===si.selInfoType.infoID?si.information.identity_pubkey:si.information.uris[si.selInfoType.infoID-1]),e.R7$(),e.SpI("Copy ",si.selInfoType.infoKey,""))},dependencies:[ae.YU,ae.Sq,ae.bT,Me.aY,R.DJ,R.sA,R.UI,Te.PW,de.$z,D.m2,D.MM,Jt.rl,c.q,it.VO,ct.wT,h.Um,k.U,L.N]})}return Ce})();var zi=g(190),en=g(8430),Ni=g(5428),fn=g(1626),Zt=g(7879),bt=g(3202),re=g(1534);let je=(()=>{class Ce{constructor(ut,ii,si,Pi,mn,Fn,$n,Yn,Qn,rr,Rn){this.actions=ut,this.httpClient=ii,this.store=si,this.logger=Pi,this.wsService=mn,this.sessionService=Fn,this.commonService=$n,this.dataService=Yn,this.dialog=Qn,this.snackBar=rr,this.router=Rn,this.screenSize="",this.alertWidth="55%",this.confirmWidth="70%",this.unSubs=[new w.B,new w.B],this.closeAllDialogs=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_ALL_DIALOGS),(0,l.T)(()=>{this.dialog.closeAll()})),{dispatch:!1}),this.openSnackBar=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_SNACK_BAR),(0,l.T)(_i=>{"string"==typeof _i.payload?this.snackBar.open(_i.payload):this.snackBar.open(_i.payload.message,"","ERROR"===_i.payload.type?{duration:_i.payload.duration?_i.payload.duration:2e3,panelClass:"rtl-warn-snack-bar"}:"WARN"===_i.payload.type?{duration:_i.payload.duration?_i.payload.duration:2e3,panelClass:"rtl-accent-snack-bar"}:{duration:_i.payload.duration?_i.payload.duration:2e3,panelClass:"rtl-snack-bar"})})),{dispatch:!1}),this.openSpinner=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_SPINNER),(0,l.T)(_i=>{_i.payload!==y.MZ.NO_SPINNER&&(this.dialogRef=this.dialog.open(W,{panelClass:"spinner-dialog-panel",data:{titleMessage:_i.payload}}))})),{dispatch:!1}),this.closeSpinner=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_SPINNER),(0,l.T)(_i=>{if(_i.payload!==y.MZ.NO_SPINNER)try{this.dialogRef&&this.dialogRef.componentInstance&&this.dialogRef.componentInstance.data&&this.dialogRef.componentInstance.data.titleMessage&&this.dialogRef.componentInstance.data.titleMessage===_i.payload?this.dialogRef.close():this.dialog.openDialogs.forEach(Oi=>{Oi.componentInstance&&Oi.componentInstance.data&&Oi.componentInstance.data.titleMessage&&Oi.componentInstance.data.titleMessage===_i.payload&&Oi.close()})}catch(Oi){this.logger.error(Oi)}})),{dispatch:!1}),this.openAlert=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_ALERT),(0,l.T)(_i=>{const Oi=JSON.parse(JSON.stringify(_i.payload));Oi.width||(Oi.width=this.alertWidth),this.dialogRef=this.dialog.open(_i.payload.data.component?_i.payload.data.component:oe,Oi)})),{dispatch:!1}),this.closeAlert=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_ALERT),(0,l.T)(_i=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(_i.payload),_i.payload))),{dispatch:!1}),this.openConfirm=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.OPEN_CONFIRMATION),(0,l.T)(_i=>{const Oi=JSON.parse(JSON.stringify(_i.payload));Oi.width||(Oi.width=this.confirmWidth),this.dialogRef=this.dialog.open(Qt,Oi)})),{dispatch:!1}),this.closeConfirm=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.CLOSE_CONFIRMATION),(0,x.s)(1),(0,l.T)(_i=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(_i.payload),_i.payload))),{dispatch:!1}),this.showNodePubkey=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SHOW_PUBKEY),(0,f.E)(this.store.select(j.N)),(0,I.Z)(([_i,Oi])=>(this.sessionService.getItem("token")&&Oi.identity_pubkey?this.store.dispatch((0,tt.xO)({payload:{data:{information:Oi,component:Si}}})):this.snackBar.open("Node Pubkey does not exist."),(0,S.of)({type:y.aU.VOID}))))),this.appConfigFetch=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.FETCH_APPLICATION_SETTINGS),(0,I.Z)(()=>(this.screenSize=this.commonService.getScreenSize(),this.screenSize===y.f7.XS||this.screenSize===y.f7.SM?(this.alertWidth="95%",this.confirmWidth="95%"):this.screenSize===y.f7.MD?(this.alertWidth="80%",this.confirmWidth="80%"):(this.alertWidth="50%",this.confirmWidth="53%"),this.store.dispatch((0,tt.mt)({payload:y.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,tt.Gd)({payload:{action:"FetchRTLConfig",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.CONF_API))),(0,l.T)(_i=>{this.logger.info(_i),this.store.dispatch((0,tt.y0)({payload:y.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,tt.Gd)({payload:{action:"FetchRTLConfig",status:y.wn.COMPLETED}}));let Oi=null;return _i.nodes.forEach(jt=>{jt.settings.currencyUnits=[...y.A0,jt.settings?.currencyUnit?jt.settings?.currencyUnit:""],+(jt.index||-1)===_i.selectedNodeIndex&&(Oi=jt)}),Oi?(this.store.dispatch((0,tt.Qi)({payload:{uiMessage:y.MZ.NO_SPINNER,prevLnNodeIndex:-1,currentLnNode:Oi,isInitialSetup:!0}})),{type:y.aU.SET_APPLICATION_SETTINGS,payload:_i}):{type:y.aU.VOID}}),(0,d.W)(_i=>(this.handleErrorWithAlert("FetchRTLConfig",y.MZ.GET_RTL_CONFIG,"Fetch RTL Config Failed!",y.rl.CONF_API,_i),(0,S.of)({type:y.aU.VOID}))))),this.updateNodeSettings=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.UPDATE_NODE_SETTINGS),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.UPDATE_NODE_SETTINGS})),this.store.dispatch((0,tt.Gd)({payload:{action:"updateNodeSettings",status:y.wn.INITIATED}})),_i.payload.settings.fiatConversion||delete _i.payload.settings.currencyUnit,delete _i.payload.settings.currencyUnits,this.httpClient.post(y.rl.CONF_API+"/node",_i.payload).pipe((0,l.T)(Oi=>(this.store.dispatch((0,tt.Gd)({payload:{action:"updateNodeSettings",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.UPDATE_NODE_SETTINGS})),Oi.settings.currencyUnits=[...y.A0,Oi.settings?.currencyUnit?Oi.settings?.currencyUnit:""],this.store.dispatch((0,tt.Np)({payload:Oi})),{type:y.aU.OPEN_SNACK_BAR,payload:"Node settings updated successfully!"})),(0,d.W)(Oi=>(this.handleErrorWithAlert("updateNodeSettings",y.MZ.UPDATE_NODE_SETTINGS,"Update Node Settings Failed!",y.rl.CONF_API+"/node",Oi),(0,S.of)({type:y.aU.VOID})))))))),this.updateApplicationSettings=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.UPDATE_APPLICATION_SETTINGS),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.UPDATE_APPLICATION_SETTINGS})),this.store.dispatch((0,tt.Gd)({payload:{action:"updateApplicationSettings",status:y.wn.INITIATED}})),_i.payload.config.nodes.forEach(Oi=>{delete Oi.settings.currencyUnits}),this.httpClient.post(y.rl.CONF_API+"/application",_i.payload.config).pipe((0,l.T)(Oi=>(this.store.dispatch((0,tt.Gd)({payload:{action:"updateApplicationSettings",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.UPDATE_APPLICATION_SETTINGS})),_i.payload.showSnackBar&&this.store.dispatch((0,tt.UI)({payload:_i.payload.message})),{type:y.aU.SET_APPLICATION_SETTINGS,payload:Oi})),(0,d.W)(Oi=>(this.handleErrorWithAlert("updateApplicationSettings",y.MZ.UPDATE_APPLICATION_SETTINGS,"Update Application Settings Failed!",y.rl.CONF_API+"/application",Oi),(0,S.of)({type:y.aU.VOID})))))))),this.configFetch=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.FETCH_CONFIG),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.OPEN_CONFIG_FILE})),this.store.dispatch((0,tt.Gd)({payload:{action:"fetchConfig",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.CONF_API+"/config/"+_i.payload).pipe((0,l.T)(Oi=>(this.store.dispatch((0,tt.Gd)({payload:{action:"fetchConfig",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.OPEN_CONFIG_FILE})),{type:y.aU.SHOW_CONFIG,payload:Oi})),(0,d.W)(Oi=>(this.handleErrorWithAlert("fetchConfig",y.MZ.OPEN_CONFIG_FILE,"Fetch Config Failed!",y.rl.CONF_API+"/config/"+_i.payload,Oi),(0,S.of)({type:y.aU.VOID})))))))),this.showLnConfig=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SHOW_CONFIG),(0,l.T)(_i=>_i.payload)),{dispatch:!1}),this.isAuthorized=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.IS_AUTHORIZED),(0,I.Z)(_i=>(this.store.dispatch((0,tt.Gd)({payload:{action:"IsAuthorized",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API,{authenticateWith:_i.payload&&""!==_i.payload.trim()?y.U1.PASSWORD:y.U1.JWT,authenticationValue:_i.payload&&""!==_i.payload.trim()?_i.payload:this.sessionService.getItem("token")?this.sessionService.getItem("token"):""}).pipe((0,l.T)(Oi=>(this.logger.info(Oi),this.store.dispatch((0,tt.Gd)({payload:{action:"IsAuthorized",status:y.wn.COMPLETED}})),this.logger.info("Successfully Authorized!"),{type:y.aU.IS_AUTHORIZED_RES,payload:Oi})),(0,d.W)(Oi=>(this.handleErrorWithAlert("IsAuthorized",y.MZ.NO_SPINNER,"Authorization Failed",y.rl.AUTHENTICATE_API,Oi),(0,S.of)({type:y.aU.IS_AUTHORIZED_RES,payload:"ERROR"})))))))),this.isAuthorizedRes=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.IS_AUTHORIZED_RES),(0,l.T)(_i=>_i.payload)),{dispatch:!1}),this.authLogin=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.LOGIN),(0,f.E)(this.store.select(j.qv)),(0,I.Z)(([_i,Oi])=>(this.store.dispatch((0,zi.p1)()),this.store.dispatch((0,en.gf)()),this.store.dispatch((0,Ni.Hh)()),this.store.dispatch((0,tt.Gd)({payload:{action:"Login",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API,{authenticateWith:_i.payload.password?y.U1.PASSWORD:y.U1.JWT,authenticationValue:_i.payload.password?_i.payload.password:this.sessionService.getItem("token")?this.sessionService.getItem("token"):"",twoFAToken:_i.payload.twoFAToken?_i.payload.twoFAToken:""}).pipe((0,l.T)(jt=>{this.logger.info(jt),this.store.dispatch((0,tt.Gd)({payload:{action:"Login",status:y.wn.COMPLETED}})),this.setLoggedInDetails(_i.payload.defaultPassword,jt)}),(0,d.W)(jt=>(this.logger.info("Redirecting to Login Error Page"),this.handleErrorWithoutAlert("Login",y.MZ.NO_SPINNER,jt),+Oi.SSO.rtlSSO?this.router.navigate(["/error"],{state:{errorCode:"406",errorMessage:jt.error&&jt.error.error?jt.error.error:"Single Sign On Failed!"}}):this.router.navigate(["./login"],{state:{logoutReason:jt.error&&jt.error.error?jt.error.error:"Single Sign On Failed!"}}),(0,S.of)({type:y.aU.VOID}))))))),{dispatch:!1}),this.tokenVerify=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.VERIFY_TWO_FA),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.VERIFY_TOKEN})),this.store.dispatch((0,tt.Gd)({payload:{action:"VerifyToken",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API+"/token",{authentication2FA:_i.payload.token}).pipe((0,l.T)(Oi=>{this.logger.info(Oi),this.store.dispatch((0,tt.y0)({payload:y.MZ.VERIFY_TOKEN})),this.store.dispatch((0,tt.Gd)({payload:{action:"VerifyToken",status:y.wn.COMPLETED}})),this.logger.info("Token Successfully Verified!"),this.setLoggedInDetails(!1,_i.payload.authResponse)}),(0,d.W)(Oi=>(this.handleErrorWithAlert("VerifyToken",y.MZ.VERIFY_TOKEN,"Authorization Failed!",y.rl.AUTHENTICATE_API+"/token",Oi),(0,S.of)({type:y.aU.VOID}))))))),{dispatch:!1}),this.logOut=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.LOGOUT),(0,f.E)(this.store.select(j.qv)),(0,I.Z)(([_i,Oi])=>(this.store.dispatch((0,tt.mt)({payload:y.MZ.LOG_OUT})),Oi.SSO&&+Oi.SSO.rtlSSO?window.location.href=Oi.SSO.logoutRedirectLink:this.router.navigate(["./login"],{state:{logoutReason:_i.payload}}),this.sessionService.clearAll(),this.store.dispatch((0,tt.Fl)({payload:{}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.LOG_OUT})),this.logger.info("Logged out from browser"),this.httpClient.get(y.rl.AUTHENTICATE_API+"/logout").pipe((0,l.T)(jt=>{this.logger.info(jt),this.store.dispatch((0,tt.y0)({payload:y.MZ.LOG_OUT})),this.logger.info("Logged out from server")}))))),{dispatch:!1}),this.resetPassword=(0,t.EH)(()=>this.actions.pipe((0,T.Q)(this.unSubs[1]),(0,t.gp)(y.aU.RESET_PASSWORD),(0,I.Z)(_i=>(this.store.dispatch((0,tt.Gd)({payload:{action:"ResetPassword",status:y.wn.INITIATED}})),this.httpClient.post(y.rl.AUTHENTICATE_API+"/reset",{currPassword:_i.payload.currPassword,newPassword:_i.payload.newPassword}).pipe((0,T.Q)(this.unSubs[0]),(0,l.T)(Oi=>(this.logger.info(Oi),this.store.dispatch((0,tt.Gd)({payload:{action:"ResetPassword",status:y.wn.COMPLETED}})),this.sessionService.setItem("defaultPassword",!1),this.logger.info("Password Reset Successful!"),this.store.dispatch((0,tt.UI)({payload:"Password Reset Successful!"})),this.SetToken(Oi.token),{type:y.aU.RESET_PASSWORD_RES,payload:Oi.token})),(0,d.W)(Oi=>(this.handleErrorWithAlert("ResetPassword",y.MZ.NO_SPINNER,"Password Reset Failed!",y.rl.AUTHENTICATE_API+"/reset",Oi),(0,S.of)({type:y.aU.VOID})))))))),this.setSelectedNode=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SET_SELECTED_NODE),(0,I.Z)(_i=>(this.store.dispatch((0,tt.mt)({payload:_i.payload.uiMessage})),this.store.dispatch((0,tt.Gd)({payload:{action:"UpdateSelNode",status:y.wn.INITIATED}})),this.httpClient.get(y.rl.CONF_API+"/updateSelNode/"+_i.payload.currentLnNode?.index+"/"+_i.payload.prevLnNodeIndex).pipe((0,l.T)(Oi=>(this.logger.info(Oi),this.store.dispatch((0,tt.Gd)({payload:{action:"UpdateSelNode",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:_i.payload.uiMessage})),this.initializeNode(Oi,_i.payload.isInitialSetup),{type:y.aU.VOID})),(0,d.W)(Oi=>(this.handleErrorWithAlert("UpdateSelNode",_i.payload.uiMessage,"Update Selected Node Failed!",y.rl.CONF_API+"/updateSelNode",Oi),(0,S.of)({type:y.aU.VOID})))))))),this.fetchFile=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.FETCH_FILE),(0,I.Z)(_i=>{this.store.dispatch((0,tt.mt)({payload:y.MZ.DOWNLOAD_BACKUP_FILE})),this.store.dispatch((0,tt.Gd)({payload:{action:"FetchFile",status:y.wn.INITIATED}}));const Oi="?channel="+_i.payload.channelPoint+(_i.payload.path?"&path="+_i.payload.path:"");return this.httpClient.get(y.rl.CONF_API+"/file"+Oi).pipe((0,l.T)(jt=>(this.store.dispatch((0,tt.Gd)({payload:{action:"FetchFile",status:y.wn.COMPLETED}})),this.store.dispatch((0,tt.y0)({payload:y.MZ.DOWNLOAD_BACKUP_FILE})),{type:y.aU.SHOW_FILE,payload:jt})),(0,d.W)(jt=>(this.handleErrorWithAlert("fetchFile",y.MZ.DOWNLOAD_BACKUP_FILE,"Download Backup File Failed!",y.rl.CONF_API+"/file"+Oi,{status:this.commonService.extractErrorNumber(jt),error:{error:this.commonService.extractErrorCode(jt)}}),(0,S.of)({type:y.aU.VOID}))))}))),this.showFile=(0,t.EH)(()=>this.actions.pipe((0,t.gp)(y.aU.SHOW_FILE),(0,l.T)(_i=>_i.payload)),{dispatch:!1})}initializeNode(ut,ii){this.logger.info("Initializing node from RTL Effects.");const si=ii?"":"HOME";if(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("clnUnlocked"),this.sessionService.removeItem("eclUnlocked"),ut.settings.currencyUnits=[...y.A0,ut.settings?.currencyUnit?ut.settings?.currencyUnit:""],this.store.dispatch((0,tt.Tn)({payload:ut})),this.store.dispatch((0,zi.p1)()),this.store.dispatch((0,en.gf)()),this.store.dispatch((0,Ni.Hh)()),this.sessionService.getItem("token")){const Pi=ut.lnImplementation?ut.lnImplementation.toUpperCase():"LND";this.dataService.setLnImplementation(Pi);const mn=!(0,e.naY)()&&window.location.origin?window.location.origin+"/rtl/api":y.H$;switch(this.wsService.connectWebSocket(mn?.replace(/^http/,"ws")+y.rl.Web_SOCKET_API,ut.index?ut.index.toString():"-1"),Pi){case"CLN":this.store.dispatch((0,en.lg)()),this.store.dispatch((0,en.Aw)({payload:{loadPage:si}}));break;case"ECL":this.store.dispatch((0,Ni.lg)()),this.store.dispatch((0,Ni.zR)({payload:{loadPage:si}}));break;default:this.store.dispatch((0,zi.lg)()),this.store.dispatch((0,zi.Br)({payload:{loadPage:si}}))}}}SetToken(ut){ut?(this.sessionService.setItem("lndUnlocked","true"),this.sessionService.setItem("token",ut)):(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("token"))}setLoggedInDetails(ut,ii){this.logger.info("Successfully Authorized!"),this.SetToken(ii.token),this.sessionService.setItem("defaultPassword",ut),ut?(this.store.dispatch((0,tt.UI)({payload:"Reset your password."})),this.router.navigate(["/settings/auth"])):this.store.dispatch((0,tt.NU)())}handleErrorWithoutAlert(ut,ii,si){this.logger.error("ERROR IN: "+ut+"\n"+JSON.stringify(si)),401===si.status&&"Login"!==ut?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,tt.Jh)()),this.store.dispatch((0,tt.ri)({payload:"Authentication Failed: "+JSON.stringify(si.error)}))):(this.store.dispatch((0,tt.y0)({payload:ii})),this.store.dispatch((0,tt.Gd)({payload:{action:ut,status:y.wn.ERROR,statusCode:si.status?si.status.toString():"",message:this.commonService.extractErrorMessage(si)}})))}handleErrorWithAlert(ut,ii,si,Pi,mn){if(this.logger.error(mn),0===mn.status&&mn.statusText&&"Unknown Error"===mn.statusText&&(mn={status:400,error:{message:"Unknown Error / CORS Origin Not Allowed"}}),401===mn.status&&"Login"!==ut)this.logger.info("Redirecting to Login"),this.store.dispatch((0,tt.Jh)()),this.store.dispatch((0,tt.ri)({payload:"Authentication Failed: "+JSON.stringify(mn.error)}));else{this.store.dispatch((0,tt.y0)({payload:ii}));const Fn=this.commonService.extractErrorMessage(mn);this.store.dispatch((0,tt.xO)({payload:{data:{type:"ERROR",alertTitle:si,message:{code:mn.status?mn.status:"Unknown Error",message:Fn,URL:Pi},component:Mt.f}}})),this.store.dispatch((0,tt.Gd)({payload:{action:ut,status:y.wn.ERROR,statusCode:mn.status?mn.status.toString():"",message:Fn,URL:Pi}}))}}ngOnDestroy(){this.unSubs.forEach(ut=>{ut.next(null),ut.complete()})}static#e=this.\u0275fac=function(ii){return new(ii||Ce)(e.KVO(t.En),e.KVO(fn.Qq),e.KVO(ge.il),e.KVO(Q.gP),e.KVO(Zt.I),e.KVO(bt.Q),e.KVO(ee.h),e.KVO(re.u),e.KVO(F.bZ),e.KVO(J.UG),e.KVO(ie.Ix))};static#t=this.\u0275prov=e.jDH({token:Ce,factory:Ce.\u0275fac})}return Ce})()},9647:(Qe,te,g)=>{"use strict";g.d(te,{Az:()=>d,E2:()=>I,Kq:()=>f,N:()=>x,_c:()=>S,qv:()=>l});var e=g(9640);const t=(0,e.UX)("root"),S=((0,e.Mz)(t,T=>T.apiURL),(0,e.Mz)(t,T=>T.selNode)),l=(0,e.Mz)(t,T=>T.appConfig),x=(0,e.Mz)(t,T=>T.nodeData),f=(0,e.Mz)(t,T=>T.apisCallStatus.Login),I=(0,e.Mz)(t,T=>T.apisCallStatus.IsAuthorized),d=(0,e.Mz)(t,T=>({nodeDate:T.nodeData,selNode:T.selNode}))},3471:(Qe,te,g)=>{"use strict";var e=g(345),t=g(4438),w=g(9969);function l(O){return new t.wOt(3e3,!1)}function ze(O){switch(O.length){case 0:return new w.sf;case 1:return O[0];default:return new w.ui(O)}}function qe(O,H,b=new Map,U=new Map){const G=[],Oe=[];let It=-1,Lt=null;if(H.forEach(oi=>{const ci=oi.get("offset"),Ui=ci==It,Ti=Ui&&Lt||new Map;oi.forEach((un,bn)=>{let Yi=bn,Ji=un;if("offset"!==bn)switch(Yi=O.normalizePropertyName(Yi,G),Ji){case w.FX:Ji=b.get(bn);break;case w.kp:Ji=U.get(bn);break;default:Ji=O.normalizeStyleValue(bn,Yi,Ji,G)}Ti.set(Yi,Ji)}),Ui||Oe.push(Ti),Lt=Ti,It=ci}),G.length)throw function c(O){return new t.wOt(3502,!1)}();return Oe}function Ke(O,H,b,U){switch(H){case"start":O.onStart(()=>U(b&&se(b,"start",O)));break;case"done":O.onDone(()=>U(b&&se(b,"done",O)));break;case"destroy":O.onDestroy(()=>U(b&&se(b,"destroy",O)))}}function se(O,H,b){const Oe=X(O.element,O.triggerName,O.fromState,O.toState,H||O.phaseName,b.totalTime??O.totalTime,!!b.disabled),It=O._data;return null!=It&&(Oe._data=It),Oe}function X(O,H,b,U,G="",Oe=0,It){return{element:O,triggerName:H,fromState:b,toState:U,phaseName:G,totalTime:Oe,disabled:!!It}}function me(O,H,b){let U=O.get(H);return U||O.set(H,U=b),U}function ce(O){const H=O.indexOf(":");return[O.substring(1,H),O.slice(H+1)]}const fe=typeof document>"u"?null:document.documentElement;function ke(O){const H=O.parentNode||O.host||null;return H===fe?null:H}let _e=null,be=!1;function at(O,H){for(;H;){if(H===O)return!0;H=ke(H)}return!1}function pt(O,H,b){if(b)return Array.from(O.querySelectorAll(H));const U=O.querySelector(H);return U?[U]:[]}let ye=(()=>{class O{validateStyleProperty(b){return function pe(O){_e||(_e=function _t(){return typeof document<"u"?document.body:null}()||{},be=!!_e.style&&"WebkitAppearance"in _e.style);let H=!0;return _e.style&&!function mt(O){return"ebkit"==O.substring(1,6)}(O)&&(H=O in _e.style,!H&&be&&(H="Webkit"+O.charAt(0).toUpperCase()+O.slice(1)in _e.style)),H}(b)}containsElement(b,U){return at(b,U)}getParentElement(b){return ke(b)}query(b,U,G){return pt(b,U,G)}computeStyle(b,U,G){return G||""}animate(b,U,G,Oe,It,Lt=[],oi){return new w.sf(G,Oe)}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();class ue{static#e=this.NOOP=new ye}class Ie{}const Xe=1e3,rt="ng-enter",Yt="ng-leave",Nt="ng-trigger",Et=".ng-trigger",Vt="ng-animating",oe=".ng-animating";function tt(O){if("number"==typeof O)return O;const H=O.match(/^(-?[\.\d]+)(m?s)/);return!H||H.length<2?0:$t(parseFloat(H[1]),H[2])}function $t(O,H){return"s"===H?O*Xe:O}function zt(O,H,b){return O.hasOwnProperty("duration")?O:function Jt(O,H,b){let G,Oe=0,It="";if("string"==typeof O){const Lt=O.match(/^(-?[\.\d]+)(m?s)(?:\s+(-?[\.\d]+)(m?s))?(?:\s+([-a-z]+(?:\(.+?\))?))?$/i);if(null===Lt)return H.push(l()),{duration:0,delay:0,easing:""};G=$t(parseFloat(Lt[1]),Lt[2]);const oi=Lt[3];null!=oi&&(Oe=$t(parseFloat(oi),Lt[4]));const ci=Lt[5];ci&&(It=ci)}else G=O;if(!b){let Lt=!1,oi=H.length;G<0&&(H.push(function x(){return new t.wOt(3100,!1)}()),Lt=!0),Oe<0&&(H.push(function f(){return new t.wOt(3101,!1)}()),Lt=!0),Lt&&H.splice(oi,0,l())}return{duration:G,delay:Oe,easing:It}}(O,H,b)}function Ae(O,H,b){H.forEach((U,G)=>{const Oe=Fe(G);b&&!b.has(G)&&b.set(G,O.style[Oe]),O.style[Oe]=U})}function we(O,H){H.forEach((b,U)=>{const G=Fe(U);O.style[G]=""})}function he(O){return Array.isArray(O)?1==O.length?O[0]:(0,w.K2)(O):O}const Re=new RegExp("{{\\s*(.+?)\\s*}}","g");function Ne(O){let H=[];if("string"==typeof O){let b;for(;b=Re.exec(O);)H.push(b[1]);Re.lastIndex=0}return H}function gt(O,H,b){const U=`${O}`,G=U.replace(Re,(Oe,It)=>{let Lt=H[It];return null==Lt&&(b.push(function d(O){return new t.wOt(3003,!1)}()),Lt=""),Lt.toString()});return G==U?O:G}const $e=/-+([a-z0-9])/g;function Fe(O){return O.replace($e,(...H)=>H[1].toUpperCase())}function Tt(O,H,b){switch(H.type){case w.If.Trigger:return O.visitTrigger(H,b);case w.If.State:return O.visitState(H,b);case w.If.Transition:return O.visitTransition(H,b);case w.If.Sequence:return O.visitSequence(H,b);case w.If.Group:return O.visitGroup(H,b);case w.If.Animate:return O.visitAnimate(H,b);case w.If.Keyframes:return O.visitKeyframes(H,b);case w.If.Style:return O.visitStyle(H,b);case w.If.Reference:return O.visitReference(H,b);case w.If.AnimateChild:return O.visitAnimateChild(H,b);case w.If.AnimateRef:return O.visitAnimateRef(H,b);case w.If.Query:return O.visitQuery(H,b);case w.If.Stagger:return O.visitStagger(H,b);default:throw function T(O){return new t.wOt(3004,!1)}()}}function mi(O,H){return window.getComputedStyle(O)[H]}const Kt=new Set(["width","height","minWidth","minHeight","maxWidth","maxHeight","left","top","bottom","right","fontSize","outlineWidth","outlineOffset","paddingTop","paddingLeft","paddingBottom","paddingRight","marginTop","marginLeft","marginBottom","marginRight","borderRadius","borderWidth","borderTopWidth","borderLeftWidth","borderRightWidth","borderBottomWidth","textIndent","perspective"]);class Pt extends Ie{normalizePropertyName(H,b){return Fe(H)}normalizeStyleValue(H,b,U,G){let Oe="";const It=U.toString().trim();if(Kt.has(b)&&0!==U&&"0"!==U)if("number"==typeof U)Oe="px";else{const Lt=U.match(/^[+-]?[\d\.]+([a-z]*)$/);Lt&&0==Lt[1].length&&G.push(function y(O,H){return new t.wOt(3005,!1)}())}return It+Oe}}const Zi="*";const ct=new Set(["true","1"]),wt=new Set(["false","0"]);function Ut(O,H){const b=ct.has(O)||wt.has(O),U=ct.has(H)||wt.has(H);return(G,Oe)=>{let It=O==Zi||O==G,Lt=H==Zi||H==Oe;return!It&&b&&"boolean"==typeof G&&(It=G?ct.has(O):wt.has(O)),!Lt&&U&&"boolean"==typeof Oe&&(Lt=Oe?ct.has(H):wt.has(H)),It&&Lt}}const Si=new RegExp("s*:selfs*,?","g");function zi(O,H,b,U){return new Ni(O).build(H,b,U)}class Ni{constructor(H){this._driver=H}build(H,b,U){const G=new bt(b);return this._resetContextStyleTimingState(G),Tt(this,he(H),G)}_resetContextStyleTimingState(H){H.currentQuerySelector="",H.collectedStyles=new Map,H.collectedStyles.set("",new Map),H.currentTime=0}visitTrigger(H,b){let U=b.queryCount=0,G=b.depCount=0;const Oe=[],It=[];return"@"==H.name.charAt(0)&&b.errors.push(function F(){return new t.wOt(3006,!1)}()),H.definitions.forEach(Lt=>{if(this._resetContextStyleTimingState(b),Lt.type==w.If.State){const oi=Lt,ci=oi.name;ci.toString().split(/\s*,\s*/).forEach(Ui=>{oi.name=Ui,Oe.push(this.visitState(oi,b))}),oi.name=ci}else if(Lt.type==w.If.Transition){const oi=this.visitTransition(Lt,b);U+=oi.queryCount,G+=oi.depCount,It.push(oi)}else b.errors.push(function R(){return new t.wOt(3007,!1)}())}),{type:w.If.Trigger,name:H.name,states:Oe,transitions:It,queryCount:U,depCount:G,options:null}}visitState(H,b){const U=this.visitStyle(H.styles,b),G=H.options&&H.options.params||null;if(U.containsDynamicStyles){const Oe=new Set,It=G||{};U.styles.forEach(Lt=>{Lt instanceof Map&&Lt.forEach(oi=>{Ne(oi).forEach(ci=>{It.hasOwnProperty(ci)||Oe.add(ci)})})}),Oe.size&&b.errors.push(function z(O,H){return new t.wOt(3008,!1)}(0,Oe.values()))}return{type:w.If.State,name:H.name,style:U,options:G?{params:G}:null}}visitTransition(H,b){b.queryCount=0,b.depCount=0;const U=Tt(this,he(H.animation),b),G=function Qt(O,H){const b=[];return"string"==typeof O?O.split(/\s*,\s*/).forEach(U=>function Mt(O,H,b){if(":"==O[0]){const oi=function it(O,H){switch(O){case":enter":return"void => *";case":leave":return"* => void";case":increment":return(b,U)=>parseFloat(U)>parseFloat(b);case":decrement":return(b,U)=>parseFloat(U) *"}}(O,b);if("function"==typeof oi)return void H.push(oi);O=oi}const U=O.match(/^(\*|[-\w]+)\s*()\s*(\*|[-\w]+)$/);if(null==U||U.length<4)return b.push(function Me(O){return new t.wOt(3015,!1)}()),H;const G=U[1],Oe=U[2],It=U[3];H.push(Ut(G,It)),"<"==Oe[0]&&(G!=Zi||It!=Zi)&&H.push(Ut(It,G))}(U,b,H)):b.push(O),b}(H.expr,b.errors);return{type:w.If.Transition,matchers:G,animation:U,queryCount:b.queryCount,depCount:b.depCount,options:Ce(H.options)}}visitSequence(H,b){return{type:w.If.Sequence,steps:H.steps.map(U=>Tt(this,U,b)),options:Ce(H.options)}}visitGroup(H,b){const U=b.currentTime;let G=0;const Oe=H.steps.map(It=>{b.currentTime=U;const Lt=Tt(this,It,b);return G=Math.max(G,b.currentTime),Lt});return b.currentTime=G,{type:w.If.Group,steps:Oe,options:Ce(H.options)}}visitAnimate(H,b){const U=function je(O,H){if(O.hasOwnProperty("duration"))return O;if("number"==typeof O)return ot(zt(O,H).duration,0,"");const b=O;if(b.split(/\s+/).some(Oe=>"{"==Oe.charAt(0)&&"{"==Oe.charAt(1))){const Oe=ot(0,0,"");return Oe.dynamic=!0,Oe.strValue=b,Oe}const G=zt(b,H);return ot(G.duration,G.delay,G.easing)}(H.timings,b.errors);b.currentAnimateTimings=U;let G,Oe=H.styles?H.styles:(0,w.iF)({});if(Oe.type==w.If.Keyframes)G=this.visitKeyframes(Oe,b);else{let It=H.styles,Lt=!1;if(!It){Lt=!0;const ci={};U.easing&&(ci.easing=U.easing),It=(0,w.iF)(ci)}b.currentTime+=U.duration+U.delay;const oi=this.visitStyle(It,b);oi.isEmptyStep=Lt,G=oi}return b.currentAnimateTimings=null,{type:w.If.Animate,timings:U,style:G,options:null}}visitStyle(H,b){const U=this._makeStyleAst(H,b);return this._validateStyleAst(U,b),U}_makeStyleAst(H,b){const U=[],G=Array.isArray(H.styles)?H.styles:[H.styles];for(let Lt of G)"string"==typeof Lt?Lt===w.kp?U.push(Lt):b.errors.push(new t.wOt(3002,!1)):U.push(new Map(Object.entries(Lt)));let Oe=!1,It=null;return U.forEach(Lt=>{if(Lt instanceof Map&&(Lt.has("easing")&&(It=Lt.get("easing"),Lt.delete("easing")),!Oe))for(let oi of Lt.values())if(oi.toString().indexOf("{{")>=0){Oe=!0;break}}),{type:w.If.Style,styles:U,easing:It,offset:H.offset,containsDynamicStyles:Oe,options:null}}_validateStyleAst(H,b){const U=b.currentAnimateTimings;let G=b.currentTime,Oe=b.currentTime;U&&Oe>0&&(Oe-=U.duration+U.delay),H.styles.forEach(It=>{"string"!=typeof It&&It.forEach((Lt,oi)=>{const ci=b.collectedStyles.get(b.currentQuerySelector),Ui=ci.get(oi);let Ti=!0;Ui&&(Oe!=G&&Oe>=Ui.startTime&&G<=Ui.endTime&&(b.errors.push(function j(O,H,b,U,G){return new t.wOt(3010,!1)}()),Ti=!1),Oe=Ui.startTime),Ti&&ci.set(oi,{startTime:Oe,endTime:G}),b.options&&function q(O,H,b){const U=H.params||{},G=Ne(O);G.length&&G.forEach(Oe=>{U.hasOwnProperty(Oe)||b.push(function I(O){return new t.wOt(3001,!1)}())})}(Lt,b.options,b.errors)})})}visitKeyframes(H,b){const U={type:w.If.Keyframes,styles:[],options:null};if(!b.currentAnimateTimings)return b.errors.push(function Q(){return new t.wOt(3011,!1)}()),U;let Oe=0;const It=[];let Lt=!1,oi=!1,ci=0;const Ui=H.steps.map(Un=>{const Vr=this._makeStyleAst(Un,b);let la=null!=Vr.offset?Vr.offset:function re(O){if("string"==typeof O)return null;let H=null;if(Array.isArray(O))O.forEach(b=>{if(b instanceof Map&&b.has("offset")){const U=b;H=parseFloat(U.get("offset")),U.delete("offset")}});else if(O instanceof Map&&O.has("offset")){const b=O;H=parseFloat(b.get("offset")),b.delete("offset")}return H}(Vr.styles),cr=0;return null!=la&&(Oe++,cr=Vr.offset=la),oi=oi||cr<0||cr>1,Lt=Lt||cr0&&Oe{const la=un>0?Vr==bn?1:un*Vr:It[Vr],cr=la*An;b.currentTime=Yi+Ji.delay+cr,Ji.duration=cr,this._validateStyleAst(Un,b),Un.offset=la,U.styles.push(Un)}),U}visitReference(H,b){return{type:w.If.Reference,animation:Tt(this,he(H.animation),b),options:Ce(H.options)}}visitAnimateChild(H,b){return b.depCount++,{type:w.If.AnimateChild,options:Ce(H.options)}}visitAnimateRef(H,b){return{type:w.If.AnimateRef,animation:this.visitReference(H.animation,b),options:Ce(H.options)}}visitQuery(H,b){const U=b.currentQuerySelector,G=H.options||{};b.queryCount++,b.currentQuery=H;const[Oe,It]=function fn(O){const H=!!O.split(/\s*,\s*/).find(b=>":self"==b);return H&&(O=O.replace(Si,"")),O=O.replace(/@\*/g,Et).replace(/@\w+/g,b=>Et+"-"+b.slice(1)).replace(/:animating/g,oe),[O,H]}(H.selector);b.currentQuerySelector=U.length?U+" "+Oe:Oe,me(b.collectedStyles,b.currentQuerySelector,new Map);const Lt=Tt(this,he(H.animation),b);return b.currentQuery=null,b.currentQuerySelector=U,{type:w.If.Query,selector:Oe,limit:G.limit||0,optional:!!G.optional,includeSelf:It,animation:Lt,originalSelector:H.selector,options:Ce(H.options)}}visitStagger(H,b){b.currentQuery||b.errors.push(function ge(){return new t.wOt(3013,!1)}());const U="full"===H.timings?{duration:0,delay:0,easing:"full"}:zt(H.timings,b.errors,!0);return{type:w.If.Stagger,animation:Tt(this,he(H.animation),b),timings:U,options:null}}}class bt{constructor(H){this.errors=H,this.queryCount=0,this.depCount=0,this.currentTransition=null,this.currentQuery=null,this.currentQuerySelector=null,this.currentAnimateTimings=null,this.currentTime=0,this.collectedStyles=new Map,this.options=null,this.unsupportedCSSPropertiesFound=new Set}}function Ce(O){return O?(O={...O}).params&&(O.params=function Zt(O){return O?{...O}:null}(O.params)):O={},O}function ot(O,H,b){return{duration:O,delay:H,easing:b}}function ut(O,H,b,U,G,Oe,It=null,Lt=!1){return{type:1,element:O,keyframes:H,preStyleProps:b,postStyleProps:U,duration:G,delay:Oe,totalTime:G+Oe,easing:It,subTimeline:Lt}}class ii{constructor(){this._map=new Map}get(H){return this._map.get(H)||[]}append(H,b){let U=this._map.get(H);U||this._map.set(H,U=[]),U.push(...b)}has(H){return this._map.has(H)}clear(){this._map.clear()}}const mn=new RegExp(":enter","g"),$n=new RegExp(":leave","g");function Yn(O,H,b,U,G,Oe=new Map,It=new Map,Lt,oi,ci=[]){return(new Qn).buildKeyframes(O,H,b,U,G,Oe,It,Lt,oi,ci)}class Qn{buildKeyframes(H,b,U,G,Oe,It,Lt,oi,ci,Ui=[]){ci=ci||new ii;const Ti=new Rn(H,b,ci,G,Oe,Ui,[]);Ti.options=oi;const un=oi.delay?tt(oi.delay):0;Ti.currentTimeline.delayNextStep(un),Ti.currentTimeline.setStyles([It],null,Ti.errors,oi),Tt(this,U,Ti);const bn=Ti.timelines.filter(Yi=>Yi.containsAnimation());if(bn.length&&Lt.size){let Yi;for(let Ji=bn.length-1;Ji>=0;Ji--){const An=bn[Ji];if(An.element===b){Yi=An;break}}Yi&&!Yi.allowOnlyTimelineStyles()&&Yi.setStyles([Lt],null,Ti.errors,oi)}return bn.length?bn.map(Yi=>Yi.buildKeyframes()):[ut(b,[],[],[],0,un,"",!1)]}visitTrigger(H,b){}visitState(H,b){}visitTransition(H,b){}visitAnimateChild(H,b){const U=b.subInstructions.get(b.element);if(U){const G=b.createSubContext(H.options),Oe=b.currentTimeline.currentTime,It=this._visitSubInstructions(U,G,G.options);Oe!=It&&b.transformIntoNewTimeline(It)}b.previousNode=H}visitAnimateRef(H,b){const U=b.createSubContext(H.options);U.transformIntoNewTimeline(),this._applyAnimationRefDelays([H.options,H.animation.options],b,U),this.visitReference(H.animation,U),b.transformIntoNewTimeline(U.currentTimeline.currentTime),b.previousNode=H}_applyAnimationRefDelays(H,b,U){for(const G of H){const Oe=G?.delay;if(Oe){const It="number"==typeof Oe?Oe:tt(gt(Oe,G?.params??{},b.errors));U.delayNextStep(It)}}}_visitSubInstructions(H,b,U){let Oe=b.currentTimeline.currentTime;const It=null!=U.duration?tt(U.duration):null,Lt=null!=U.delay?tt(U.delay):null;return 0!==It&&H.forEach(oi=>{const ci=b.appendInstructionToTimeline(oi,It,Lt);Oe=Math.max(Oe,ci.duration+ci.delay)}),Oe}visitReference(H,b){b.updateOptions(H.options,!0),Tt(this,H.animation,b),b.previousNode=H}visitSequence(H,b){const U=b.subContextCount;let G=b;const Oe=H.options;if(Oe&&(Oe.params||Oe.delay)&&(G=b.createSubContext(Oe),G.transformIntoNewTimeline(),null!=Oe.delay)){G.previousNode.type==w.If.Style&&(G.currentTimeline.snapshotCurrentStyles(),G.previousNode=rr);const It=tt(Oe.delay);G.delayNextStep(It)}H.steps.length&&(H.steps.forEach(It=>Tt(this,It,G)),G.currentTimeline.applyStylesToKeyframe(),G.subContextCount>U&&G.transformIntoNewTimeline()),b.previousNode=H}visitGroup(H,b){const U=[];let G=b.currentTimeline.currentTime;const Oe=H.options&&H.options.delay?tt(H.options.delay):0;H.steps.forEach(It=>{const Lt=b.createSubContext(H.options);Oe&&Lt.delayNextStep(Oe),Tt(this,It,Lt),G=Math.max(G,Lt.currentTimeline.currentTime),U.push(Lt.currentTimeline)}),U.forEach(It=>b.currentTimeline.mergeTimelineCollectedStyles(It)),b.transformIntoNewTimeline(G),b.previousNode=H}_visitTiming(H,b){if(H.dynamic){const U=H.strValue;return zt(b.params?gt(U,b.params,b.errors):U,b.errors)}return{duration:H.duration,delay:H.delay,easing:H.easing}}visitAnimate(H,b){const U=b.currentAnimateTimings=this._visitTiming(H.timings,b),G=b.currentTimeline;U.delay&&(b.incrementTime(U.delay),G.snapshotCurrentStyles());const Oe=H.style;Oe.type==w.If.Keyframes?this.visitKeyframes(Oe,b):(b.incrementTime(U.duration),this.visitStyle(Oe,b),G.applyStylesToKeyframe()),b.currentAnimateTimings=null,b.previousNode=H}visitStyle(H,b){const U=b.currentTimeline,G=b.currentAnimateTimings;!G&&U.hasCurrentStyleProperties()&&U.forwardFrame();const Oe=G&&G.easing||H.easing;H.isEmptyStep?U.applyEmptyStep(Oe):U.setStyles(H.styles,Oe,b.errors,b.options),b.previousNode=H}visitKeyframes(H,b){const U=b.currentAnimateTimings,G=b.currentTimeline.duration,Oe=U.duration,Lt=b.createSubContext().currentTimeline;Lt.easing=U.easing,H.styles.forEach(oi=>{Lt.forwardTime((oi.offset||0)*Oe),Lt.setStyles(oi.styles,oi.easing,b.errors,b.options),Lt.applyStylesToKeyframe()}),b.currentTimeline.mergeTimelineCollectedStyles(Lt),b.transformIntoNewTimeline(G+Oe),b.previousNode=H}visitQuery(H,b){const U=b.currentTimeline.currentTime,G=H.options||{},Oe=G.delay?tt(G.delay):0;Oe&&(b.previousNode.type===w.If.Style||0==U&&b.currentTimeline.hasCurrentStyleProperties())&&(b.currentTimeline.snapshotCurrentStyles(),b.previousNode=rr);let It=U;const Lt=b.invokeQuery(H.selector,H.originalSelector,H.limit,H.includeSelf,!!G.optional,b.errors);b.currentQueryTotal=Lt.length;let oi=null;Lt.forEach((ci,Ui)=>{b.currentQueryIndex=Ui;const Ti=b.createSubContext(H.options,ci);Oe&&Ti.delayNextStep(Oe),ci===b.element&&(oi=Ti.currentTimeline),Tt(this,H.animation,Ti),Ti.currentTimeline.applyStylesToKeyframe(),It=Math.max(It,Ti.currentTimeline.currentTime)}),b.currentQueryIndex=0,b.currentQueryTotal=0,b.transformIntoNewTimeline(It),oi&&(b.currentTimeline.mergeTimelineCollectedStyles(oi),b.currentTimeline.snapshotCurrentStyles()),b.previousNode=H}visitStagger(H,b){const U=b.parentContext,G=b.currentTimeline,Oe=H.timings,It=Math.abs(Oe.duration),Lt=It*(b.currentQueryTotal-1);let oi=It*b.currentQueryIndex;switch(Oe.duration<0?"reverse":Oe.easing){case"reverse":oi=Lt-oi;break;case"full":oi=U.currentStaggerTime}const Ui=b.currentTimeline;oi&&Ui.delayNextStep(oi);const Ti=Ui.currentTime;Tt(this,H.animation,b),b.previousNode=H,U.currentStaggerTime=G.currentTime-Ti+(G.startTime-U.currentTimeline.startTime)}}const rr={};class Rn{constructor(H,b,U,G,Oe,It,Lt,oi){this._driver=H,this.element=b,this.subInstructions=U,this._enterClassName=G,this._leaveClassName=Oe,this.errors=It,this.timelines=Lt,this.parentContext=null,this.currentAnimateTimings=null,this.previousNode=rr,this.subContextCount=0,this.options={},this.currentQueryIndex=0,this.currentQueryTotal=0,this.currentStaggerTime=0,this.currentTimeline=oi||new _i(this._driver,b,0),Lt.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(H,b){if(!H)return;const U=H;let G=this.options;null!=U.duration&&(G.duration=tt(U.duration)),null!=U.delay&&(G.delay=tt(U.delay));const Oe=U.params;if(Oe){let It=G.params;It||(It=this.options.params={}),Object.keys(Oe).forEach(Lt=>{(!b||!It.hasOwnProperty(Lt))&&(It[Lt]=gt(Oe[Lt],It,this.errors))})}}_copyOptions(){const H={};if(this.options){const b=this.options.params;if(b){const U=H.params={};Object.keys(b).forEach(G=>{U[G]=b[G]})}}return H}createSubContext(H=null,b,U){const G=b||this.element,Oe=new Rn(this._driver,G,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(G,U||0));return Oe.previousNode=this.previousNode,Oe.currentAnimateTimings=this.currentAnimateTimings,Oe.options=this._copyOptions(),Oe.updateOptions(H),Oe.currentQueryIndex=this.currentQueryIndex,Oe.currentQueryTotal=this.currentQueryTotal,Oe.parentContext=this,this.subContextCount++,Oe}transformIntoNewTimeline(H){return this.previousNode=rr,this.currentTimeline=this.currentTimeline.fork(this.element,H),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(H,b,U){const G={duration:b??H.duration,delay:this.currentTimeline.currentTime+(U??0)+H.delay,easing:""},Oe=new Oi(this._driver,H.element,H.keyframes,H.preStyleProps,H.postStyleProps,G,H.stretchStartingKeyframe);return this.timelines.push(Oe),G}incrementTime(H){this.currentTimeline.forwardTime(this.currentTimeline.duration+H)}delayNextStep(H){H>0&&this.currentTimeline.delayNextStep(H)}invokeQuery(H,b,U,G,Oe,It){let Lt=[];if(G&&Lt.push(this.element),H.length>0){H=(H=H.replace(mn,"."+this._enterClassName)).replace($n,"."+this._leaveClassName);let ci=this._driver.query(this.element,H,1!=U);0!==U&&(ci=U<0?ci.slice(ci.length+U,ci.length):ci.slice(0,U)),Lt.push(...ci)}return!Oe&&0==Lt.length&&It.push(function ae(O){return new t.wOt(3014,!1)}()),Lt}}class _i{constructor(H,b,U,G){this._driver=H,this.element=b,this.startTime=U,this._elementTimelineStylesLookup=G,this.duration=0,this.easing=null,this._previousKeyframe=new Map,this._currentKeyframe=new Map,this._keyframes=new Map,this._styleSummary=new Map,this._localTimelineStyles=new Map,this._pendingStyles=new Map,this._backFill=new Map,this._currentEmptyStepKeyframe=null,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(b),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(b,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.hasCurrentStyleProperties();default:return!0}}hasCurrentStyleProperties(){return this._currentKeyframe.size>0}get currentTime(){return this.startTime+this.duration}delayNextStep(H){const b=1===this._keyframes.size&&this._pendingStyles.size;this.duration||b?(this.forwardTime(this.currentTime+H),b&&this.snapshotCurrentStyles()):this.startTime+=H}fork(H,b){return this.applyStylesToKeyframe(),new _i(this._driver,H,b||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=new Map,this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(H){this.applyStylesToKeyframe(),this.duration=H,this._loadKeyframe()}_updateStyle(H,b){this._localTimelineStyles.set(H,b),this._globalTimelineStyles.set(H,b),this._styleSummary.set(H,{time:this.currentTime,value:b})}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(H){H&&this._previousKeyframe.set("easing",H);for(let[b,U]of this._globalTimelineStyles)this._backFill.set(b,U||w.kp),this._currentKeyframe.set(b,w.kp);this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(H,b,U,G){b&&this._previousKeyframe.set("easing",b);const Oe=G&&G.params||{},It=function Ci(O,H){const b=new Map;let U;return O.forEach(G=>{if("*"===G){U??=H.keys();for(let Oe of U)b.set(Oe,w.kp)}else for(let[Oe,It]of G)b.set(Oe,It)}),b}(H,this._globalTimelineStyles);for(let[Lt,oi]of It){const ci=gt(oi,Oe,U);this._pendingStyles.set(Lt,ci),this._localTimelineStyles.has(Lt)||this._backFill.set(Lt,this._globalTimelineStyles.get(Lt)??w.kp),this._updateStyle(Lt,ci)}}applyStylesToKeyframe(){0!=this._pendingStyles.size&&(this._pendingStyles.forEach((H,b)=>{this._currentKeyframe.set(b,H)}),this._pendingStyles.clear(),this._localTimelineStyles.forEach((H,b)=>{this._currentKeyframe.has(b)||this._currentKeyframe.set(b,H)}))}snapshotCurrentStyles(){for(let[H,b]of this._localTimelineStyles)this._pendingStyles.set(H,b),this._updateStyle(H,b)}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const H=[];for(let b in this._currentKeyframe)H.push(b);return H}mergeTimelineCollectedStyles(H){H._styleSummary.forEach((b,U)=>{const G=this._styleSummary.get(U);(!G||b.time>G.time)&&this._updateStyle(U,b.value)})}buildKeyframes(){this.applyStylesToKeyframe();const H=new Set,b=new Set,U=1===this._keyframes.size&&0===this.duration;let G=[];this._keyframes.forEach((Lt,oi)=>{const ci=new Map([...this._backFill,...Lt]);ci.forEach((Ui,Ti)=>{Ui===w.FX?H.add(Ti):Ui===w.kp&&b.add(Ti)}),U||ci.set("offset",oi/this.duration),G.push(ci)});const Oe=[...H.values()],It=[...b.values()];if(U){const Lt=G[0],oi=new Map(Lt);Lt.set("offset",0),oi.set("offset",1),G=[Lt,oi]}return ut(this.element,G,Oe,It,this.duration,this.startTime,this.easing,!1)}}class Oi extends _i{constructor(H,b,U,G,Oe,It,Lt=!1){super(H,b,It.delay),this.keyframes=U,this.preStyleProps=G,this.postStyleProps=Oe,this._stretchStartingKeyframe=Lt,this.timings={duration:It.duration,delay:It.delay,easing:It.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let H=this.keyframes,{delay:b,duration:U,easing:G}=this.timings;if(this._stretchStartingKeyframe&&b){const Oe=[],It=U+b,Lt=b/It,oi=new Map(H[0]);oi.set("offset",0),Oe.push(oi);const ci=new Map(H[0]);ci.set("offset",jt(Lt)),Oe.push(ci);const Ui=H.length-1;for(let Ti=1;Ti<=Ui;Ti++){let un=new Map(H[Ti]);const bn=un.get("offset");un.set("offset",jt((b+bn*U)/It)),Oe.push(un)}U=It,b=0,G="",H=Oe}return ut(this.element,H,this.preStyleProps,this.postStyleProps,U,b,G,!0)}}function jt(O,H=3){const b=Math.pow(10,H-1);return Math.round(O*b)/b}function hi(O,H,b,U,G,Oe,It,Lt,oi,ci,Ui,Ti,un){return{type:0,element:O,triggerName:H,isRemovalTransition:G,fromState:b,fromStyles:Oe,toState:U,toStyles:It,timelines:Lt,queriedElements:oi,preStyleProps:ci,postStyleProps:Ui,totalTime:Ti,errors:un}}const yi={};class Vi{constructor(H,b,U){this._triggerName=H,this.ast=b,this._stateStyles=U}match(H,b,U,G){return function rn(O,H,b,U,G){return O.some(Oe=>Oe(H,b,U,G))}(this.ast.matchers,H,b,U,G)}buildStyles(H,b,U){let G=this._stateStyles.get("*");return void 0!==H&&(G=this._stateStyles.get(H?.toString())||G),G?G.buildStyles(b,U):new Map}build(H,b,U,G,Oe,It,Lt,oi,ci,Ui){const Ti=[],un=this.ast.options&&this.ast.options.params||yi,Yi=this.buildStyles(U,Lt&&Lt.params||yi,Ti),Ji=oi&&oi.params||yi,An=this.buildStyles(G,Ji,Ti),Un=new Set,Vr=new Map,la=new Map,cr="void"===G,ta={params:ar(Ji,un),delay:this.ast.options?.delay},Ar=Ui?[]:Yn(H,b,this.ast.animation,Oe,It,Yi,An,ta,ci,Ti);let ma=0;return Ar.forEach(ia=>{ma=Math.max(ia.duration+ia.delay,ma)}),Ti.length?hi(b,this._triggerName,U,G,cr,Yi,An,[],[],Vr,la,ma,Ti):(Ar.forEach(ia=>{const rc=ia.element,Lc=me(Vr,rc,new Set);ia.preStyleProps.forEach($c=>Lc.add($c));const M1=me(la,rc,new Set);ia.postStyleProps.forEach($c=>M1.add($c)),rc!==b&&Un.add(rc)}),hi(b,this._triggerName,U,G,cr,Yi,An,Ar,[...Un.values()],Vr,la,ma))}}function ar(O,H){const b={...H};return Object.entries(O).forEach(([U,G])=>{null!=G&&(b[U]=G)}),b}class sr{constructor(H,b,U){this.styles=H,this.defaultParams=b,this.normalizer=U}buildStyles(H,b){const U=new Map,G=ar(H,this.defaultParams);return this.styles.styles.forEach(Oe=>{"string"!=typeof Oe&&Oe.forEach((It,Lt)=>{It&&(It=gt(It,G,b));const oi=this.normalizer.normalizePropertyName(Lt,b);It=this.normalizer.normalizeStyleValue(Lt,oi,It,b),U.set(Lt,It)})}),U}}class or{constructor(H,b,U){this.name=H,this.ast=b,this._normalizer=U,this.transitionFactories=[],this.states=new Map,b.states.forEach(G=>{this.states.set(G.name,new sr(G.style,G.options&&G.options.params||{},U))}),Sr(this.states,"true","1"),Sr(this.states,"false","0"),b.transitions.forEach(G=>{this.transitionFactories.push(new Vi(H,G,this.states))}),this.fallbackTransition=function Xr(O,H,b){return new Vi(O,{type:w.If.Transition,animation:{type:w.If.Sequence,steps:[],options:null},matchers:[(It,Lt)=>!0],options:null,queryCount:0,depCount:0},H)}(H,this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(H,b,U,G){return this.transitionFactories.find(It=>It.match(H,b,U,G))||null}matchStyles(H,b,U){return this.fallbackTransition.buildStyles(H,b,U)}}function Sr(O,H,b){O.has(H)?O.has(b)||O.set(b,O.get(H)):O.has(b)&&O.set(H,O.get(b))}const zr=new ii;class Ho{constructor(H,b,U){this.bodyNode=H,this._driver=b,this._normalizer=U,this._animations=new Map,this._playersById=new Map,this.players=[]}register(H,b){const U=[],Oe=zi(this._driver,b,U,[]);if(U.length)throw function m(O){return new t.wOt(3503,!1)}();this._animations.set(H,Oe)}_buildPlayer(H,b,U){const G=H.element,Oe=qe(this._normalizer,H.keyframes,b,U);return this._driver.animate(G,Oe,H.duration,H.delay,H.easing,[],!0)}create(H,b,U={}){const G=[],Oe=this._animations.get(H);let It;const Lt=new Map;if(Oe?(It=Yn(this._driver,b,Oe,rt,Yt,new Map,new Map,U,zr,G),It.forEach(Ui=>{const Ti=me(Lt,Ui.element,new Map);Ui.postStyleProps.forEach(un=>Ti.set(un,null))})):(G.push(function h(){return new t.wOt(3300,!1)}()),It=[]),G.length)throw function C(O){return new t.wOt(3504,!1)}();Lt.forEach((Ui,Ti)=>{Ui.forEach((un,bn)=>{Ui.set(bn,this._driver.computeStyle(Ti,bn,w.kp))})});const ci=ze(It.map(Ui=>{const Ti=Lt.get(Ui.element);return this._buildPlayer(Ui,new Map,Ti)}));return this._playersById.set(H,ci),ci.onDestroy(()=>this.destroy(H)),this.players.push(ci),ci}destroy(H){const b=this._getPlayer(H);b.destroy(),this._playersById.delete(H);const U=this.players.indexOf(b);U>=0&&this.players.splice(U,1)}_getPlayer(H){const b=this._playersById.get(H);if(!b)throw function k(O){return new t.wOt(3301,!1)}();return b}listen(H,b,U,G){const Oe=X(b,"","","");return Ke(this._getPlayer(H),U,Oe,G),()=>{}}command(H,b,U,G){if("register"==U)return void this.register(H,G[0]);if("create"==U)return void this.create(H,b,G[0]||{});const Oe=this._getPlayer(H);switch(U){case"play":Oe.play();break;case"pause":Oe.pause();break;case"reset":Oe.reset();break;case"restart":Oe.restart();break;case"finish":Oe.finish();break;case"init":Oe.init();break;case"setPosition":Oe.setPosition(parseFloat(G[0]));break;case"destroy":this.destroy(H)}}}const xo="ng-animate-queued",Rr="ng-animate-disabled",ho=[],xr={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},Sa={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},zn="__ng_removed";class ro{get params(){return this.options.params}constructor(H,b=""){this.namespaceId=b;const U=H&&H.hasOwnProperty("value");if(this.value=function da(O){return O??null}(U?H.value:H),U){const{value:Oe,...It}=H;this.options=It}else this.options={};this.options.params||(this.options.params={})}absorbOptions(H){const b=H.params;if(b){const U=this.options.params;Object.keys(b).forEach(G=>{null==U[G]&&(U[G]=b[G])})}}}const hn="void",Yr=new ro(hn);class Ta{constructor(H,b,U){this.id=H,this.hostElement=b,this._engine=U,this.players=[],this._triggers=new Map,this._queue=[],this._elementListeners=new Map,this._hostClassName="ng-tns-"+H,kr(b,this._hostClassName)}listen(H,b,U,G){if(!this._triggers.has(b))throw function L(O,H){return new t.wOt(3302,!1)}();if(null==U||0==U.length)throw function _(O){return new t.wOt(3303,!1)}();if(!function Oa(O){return"start"==O||"done"==O}(U))throw function r(O,H){return new t.wOt(3400,!1)}();const Oe=me(this._elementListeners,H,[]),It={name:b,phase:U,callback:G};Oe.push(It);const Lt=me(this._engine.statesByElement,H,new Map);return Lt.has(b)||(kr(H,Nt),kr(H,Nt+"-"+b),Lt.set(b,Yr)),()=>{this._engine.afterFlush(()=>{const oi=Oe.indexOf(It);oi>=0&&Oe.splice(oi,1),this._triggers.has(b)||Lt.delete(b)})}}register(H,b){return!this._triggers.has(H)&&(this._triggers.set(H,b),!0)}_getTrigger(H){const b=this._triggers.get(H);if(!b)throw function v(O){return new t.wOt(3401,!1)}();return b}trigger(H,b,U,G=!0){const Oe=this._getTrigger(b),It=new wo(this.id,b,H);let Lt=this._engine.statesByElement.get(H);Lt||(kr(H,Nt),kr(H,Nt+"-"+b),this._engine.statesByElement.set(H,Lt=new Map));let oi=Lt.get(b);const ci=new ro(U,this.id);if(!(U&&U.hasOwnProperty("value"))&&oi&&ci.absorbOptions(oi.options),Lt.set(b,ci),oi||(oi=Yr),ci.value!==hn&&oi.value===ci.value){if(!function Ga(O,H){const b=Object.keys(O),U=Object.keys(H);if(b.length!=U.length)return!1;for(let G=0;G{we(H,An),Ae(H,Un)})}return}const un=me(this._engine.playersByElement,H,[]);un.forEach(Ji=>{Ji.namespaceId==this.id&&Ji.triggerName==b&&Ji.queued&&Ji.destroy()});let bn=Oe.matchTransition(oi.value,ci.value,H,ci.params),Yi=!1;if(!bn){if(!G)return;bn=Oe.fallbackTransition,Yi=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:H,triggerName:b,transition:bn,fromState:oi,toState:ci,player:It,isFallbackTransition:Yi}),Yi||(kr(H,xo),It.onStart(()=>{ha(H,xo)})),It.onDone(()=>{let Ji=this.players.indexOf(It);Ji>=0&&this.players.splice(Ji,1);const An=this._engine.playersByElement.get(H);if(An){let Un=An.indexOf(It);Un>=0&&An.splice(Un,1)}}),this.players.push(It),un.push(It),It}deregister(H){this._triggers.delete(H),this._engine.statesByElement.forEach(b=>b.delete(H)),this._elementListeners.forEach((b,U)=>{this._elementListeners.set(U,b.filter(G=>G.name!=H))})}clearElementCache(H){this._engine.statesByElement.delete(H),this._elementListeners.delete(H);const b=this._engine.playersByElement.get(H);b&&(b.forEach(U=>U.destroy()),this._engine.playersByElement.delete(H))}_signalRemovalForInnerTriggers(H,b){const U=this._engine.driver.query(H,Et,!0);U.forEach(G=>{if(G[zn])return;const Oe=this._engine.fetchNamespacesByElement(G);Oe.size?Oe.forEach(It=>It.triggerLeaveAnimation(G,b,!1,!0)):this.clearElementCache(G)}),this._engine.afterFlushAnimationsDone(()=>U.forEach(G=>this.clearElementCache(G)))}triggerLeaveAnimation(H,b,U,G){const Oe=this._engine.statesByElement.get(H),It=new Map;if(Oe){const Lt=[];if(Oe.forEach((oi,ci)=>{if(It.set(ci,oi.value),this._triggers.has(ci)){const Ui=this.trigger(H,ci,hn,G);Ui&&Lt.push(Ui)}}),Lt.length)return this._engine.markElementAsRemoved(this.id,H,!0,b,It),U&&ze(Lt).onDone(()=>this._engine.processLeaveNode(H)),!0}return!1}prepareLeaveAnimationListeners(H){const b=this._elementListeners.get(H),U=this._engine.statesByElement.get(H);if(b&&U){const G=new Set;b.forEach(Oe=>{const It=Oe.name;if(G.has(It))return;G.add(It);const oi=this._triggers.get(It).fallbackTransition,ci=U.get(It)||Yr,Ui=new ro(hn),Ti=new wo(this.id,It,H);this._engine.totalQueuedPlayers++,this._queue.push({element:H,triggerName:It,transition:oi,fromState:ci,toState:Ui,player:Ti,isFallbackTransition:!0})})}}removeNode(H,b){const U=this._engine;if(H.childElementCount&&this._signalRemovalForInnerTriggers(H,b),this.triggerLeaveAnimation(H,b,!0))return;let G=!1;if(U.totalAnimations){const Oe=U.players.length?U.playersByQueriedElement.get(H):[];if(Oe&&Oe.length)G=!0;else{let It=H;for(;It=It.parentNode;)if(U.statesByElement.get(It)){G=!0;break}}}if(this.prepareLeaveAnimationListeners(H),G)U.markElementAsRemoved(this.id,H,!1,b);else{const Oe=H[zn];(!Oe||Oe===xr)&&(U.afterFlush(()=>this.clearElementCache(H)),U.destroyInnerAnimations(H),U._onRemovalComplete(H,b))}}insertNode(H,b){kr(H,this._hostClassName)}drainQueuedTransitions(H){const b=[];return this._queue.forEach(U=>{const G=U.player;if(G.destroyed)return;const Oe=U.element,It=this._elementListeners.get(Oe);It&&It.forEach(Lt=>{if(Lt.name==U.triggerName){const oi=X(Oe,U.triggerName,U.fromState.value,U.toState.value);oi._data=H,Ke(U.player,Lt.phase,oi,Lt.callback)}}),G.markedForDestroy?this._engine.afterFlush(()=>{G.destroy()}):b.push(U)}),this._queue=[],b.sort((U,G)=>{const Oe=U.transition.ast.depCount,It=G.transition.ast.depCount;return 0==Oe||0==It?Oe-It:this._engine.driver.containsElement(U.element,G.element)?1:-1})}destroy(H){this.players.forEach(b=>b.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,H)}}class Co{_onRemovalComplete(H,b){this.onRemovalComplete(H,b)}constructor(H,b,U){this.bodyNode=H,this.driver=b,this._normalizer=U,this.players=[],this.newHostElements=new Map,this.playersByElement=new Map,this.playersByQueriedElement=new Map,this.statesByElement=new Map,this.disabledNodes=new Set,this.totalAnimations=0,this.totalQueuedPlayers=0,this._namespaceLookup={},this._namespaceList=[],this._flushFns=[],this._whenQuietFns=[],this.namespacesByHostElement=new Map,this.collectedEnterElements=[],this.collectedLeaveElements=[],this.onRemovalComplete=(G,Oe)=>{}}get queuedPlayers(){const H=[];return this._namespaceList.forEach(b=>{b.players.forEach(U=>{U.queued&&H.push(U)})}),H}createNamespace(H,b){const U=new Ta(H,b,this);return this.bodyNode&&this.driver.containsElement(this.bodyNode,b)?this._balanceNamespaceList(U,b):(this.newHostElements.set(b,U),this.collectEnterElement(b)),this._namespaceLookup[H]=U}_balanceNamespaceList(H,b){const U=this._namespaceList,G=this.namespacesByHostElement;if(U.length-1>=0){let It=!1,Lt=this.driver.getParentElement(b);for(;Lt;){const oi=G.get(Lt);if(oi){const ci=U.indexOf(oi);U.splice(ci+1,0,H),It=!0;break}Lt=this.driver.getParentElement(Lt)}It||U.unshift(H)}else U.push(H);return G.set(b,H),H}register(H,b){let U=this._namespaceLookup[H];return U||(U=this.createNamespace(H,b)),U}registerTrigger(H,b,U){let G=this._namespaceLookup[H];G&&G.register(b,U)&&this.totalAnimations++}destroy(H,b){H&&(this.afterFlush(()=>{}),this.afterFlushAnimationsDone(()=>{const U=this._fetchNamespace(H);this.namespacesByHostElement.delete(U.hostElement);const G=this._namespaceList.indexOf(U);G>=0&&this._namespaceList.splice(G,1),U.destroy(b),delete this._namespaceLookup[H]}))}_fetchNamespace(H){return this._namespaceLookup[H]}fetchNamespacesByElement(H){const b=new Set,U=this.statesByElement.get(H);if(U)for(let G of U.values())if(G.namespaceId){const Oe=this._fetchNamespace(G.namespaceId);Oe&&b.add(Oe)}return b}trigger(H,b,U,G){if(ao(b)){const Oe=this._fetchNamespace(H);if(Oe)return Oe.trigger(b,U,G),!0}return!1}insertNode(H,b,U,G){if(!ao(b))return;const Oe=b[zn];if(Oe&&Oe.setForRemoval){Oe.setForRemoval=!1,Oe.setForMove=!0;const It=this.collectedLeaveElements.indexOf(b);It>=0&&this.collectedLeaveElements.splice(It,1)}if(H){const It=this._fetchNamespace(H);It&&It.insertNode(b,U)}G&&this.collectEnterElement(b)}collectEnterElement(H){this.collectedEnterElements.push(H)}markElementAsDisabled(H,b){b?this.disabledNodes.has(H)||(this.disabledNodes.add(H),kr(H,Rr)):this.disabledNodes.has(H)&&(this.disabledNodes.delete(H),ha(H,Rr))}removeNode(H,b,U){if(ao(b)){const G=H?this._fetchNamespace(H):null;G?G.removeNode(b,U):this.markElementAsRemoved(H,b,!1,U);const Oe=this.namespacesByHostElement.get(b);Oe&&Oe.id!==H&&Oe.removeNode(b,U)}else this._onRemovalComplete(b,U)}markElementAsRemoved(H,b,U,G,Oe){this.collectedLeaveElements.push(b),b[zn]={namespaceId:H,setForRemoval:G,hasAnimation:U,removedBeforeQueried:!1,previousTriggersValues:Oe}}listen(H,b,U,G,Oe){return ao(b)?this._fetchNamespace(H).listen(b,U,G,Oe):()=>{}}_buildInstruction(H,b,U,G,Oe){return H.transition.build(this.driver,H.element,H.fromState.value,H.toState.value,U,G,H.fromState.options,H.toState.options,b,Oe)}destroyInnerAnimations(H){let b=this.driver.query(H,Et,!0);b.forEach(U=>this.destroyActiveAnimationsForElement(U)),0!=this.playersByQueriedElement.size&&(b=this.driver.query(H,oe,!0),b.forEach(U=>this.finishActiveQueriedAnimationOnElement(U)))}destroyActiveAnimationsForElement(H){const b=this.playersByElement.get(H);b&&b.forEach(U=>{U.queued?U.markedForDestroy=!0:U.destroy()})}finishActiveQueriedAnimationOnElement(H){const b=this.playersByQueriedElement.get(H);b&&b.forEach(U=>U.finish())}whenRenderingDone(){return new Promise(H=>{if(this.players.length)return ze(this.players).onDone(()=>H());H()})}processLeaveNode(H){const b=H[zn];if(b&&b.setForRemoval){if(H[zn]=xr,b.namespaceId){this.destroyInnerAnimations(H);const U=this._fetchNamespace(b.namespaceId);U&&U.clearElementCache(H)}this._onRemovalComplete(H,b.setForRemoval)}H.classList?.contains(Rr)&&this.markElementAsDisabled(H,!1),this.driver.query(H,".ng-animate-disabled",!0).forEach(U=>{this.markElementAsDisabled(U,!1)})}flush(H=-1){let b=[];if(this.newHostElements.size&&(this.newHostElements.forEach((U,G)=>this._balanceNamespaceList(U,G)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let U=0;UU()),this._flushFns=[],this._whenQuietFns.length){const U=this._whenQuietFns;this._whenQuietFns=[],b.length?ze(b).onDone(()=>{U.forEach(G=>G())}):U.forEach(G=>G())}}reportError(H){throw function V(O){return new t.wOt(3402,!1)}()}_flushAnimations(H,b){const U=new ii,G=[],Oe=new Map,It=[],Lt=new Map,oi=new Map,ci=new Map,Ui=new Set;this.disabledNodes.forEach(wn=>{Ui.add(wn);const On=this.driver.query(wn,".ng-animate-queued",!0);for(let Gn=0;Gn{const Gn=rt+Ji++;Yi.set(On,Gn),wn.forEach(Mr=>kr(Mr,Gn))});const An=[],Un=new Set,Vr=new Set;for(let wn=0;wnUn.add(Mr)):Vr.add(On))}const la=new Map,cr=Ro(un,Array.from(Un));cr.forEach((wn,On)=>{const Gn=Yt+Ji++;la.set(On,Gn),wn.forEach(Mr=>kr(Mr,Gn))}),H.push(()=>{bn.forEach((wn,On)=>{const Gn=Yi.get(On);wn.forEach(Mr=>ha(Mr,Gn))}),cr.forEach((wn,On)=>{const Gn=la.get(On);wn.forEach(Mr=>ha(Mr,Gn))}),An.forEach(wn=>{this.processLeaveNode(wn)})});const ta=[],Ar=[];for(let wn=this._namespaceList.length-1;wn>=0;wn--)this._namespaceList[wn].drainQueuedTransitions(b).forEach(Gn=>{const Mr=Gn.player,_o=Gn.element;if(ta.push(Mr),this.collectedEnterElements.length){const vo=_o[zn];if(vo&&vo.setForMove){if(vo.previousTriggersValues&&vo.previousTriggersValues.has(Gn.triggerName)){const Qc=vo.previousTriggersValues.get(Gn.triggerName),Xs=this.statesByElement.get(Gn.element);if(Xs&&Xs.has(Gn.triggerName)){const Ld=Xs.get(Gn.triggerName);Ld.value=Qc,Xs.set(Gn.triggerName,Ld)}}return void Mr.destroy()}}const ac=!Ti||!this.driver.containsElement(Ti,_o),xs=la.get(_o),yl=Yi.get(_o),wa=this._buildInstruction(Gn,U,yl,xs,ac);if(wa.errors&&wa.errors.length)return void Ar.push(wa);if(ac)return Mr.onStart(()=>we(_o,wa.fromStyles)),Mr.onDestroy(()=>Ae(_o,wa.toStyles)),void G.push(Mr);if(Gn.isFallbackTransition)return Mr.onStart(()=>we(_o,wa.fromStyles)),Mr.onDestroy(()=>Ae(_o,wa.toStyles)),void G.push(Mr);const Y2=[];wa.timelines.forEach(vo=>{vo.stretchStartingKeyframe=!0,this.disabledNodes.has(vo.element)||Y2.push(vo)}),wa.timelines=Y2,U.append(_o,wa.timelines),It.push({instruction:wa,player:Mr,element:_o}),wa.queriedElements.forEach(vo=>me(Lt,vo,[]).push(Mr)),wa.preStyleProps.forEach((vo,Qc)=>{if(vo.size){let Xs=oi.get(Qc);Xs||oi.set(Qc,Xs=new Set),vo.forEach((Ld,Id)=>Xs.add(Id))}}),wa.postStyleProps.forEach((vo,Qc)=>{let Xs=ci.get(Qc);Xs||ci.set(Qc,Xs=new Set),vo.forEach((Ld,Id)=>Xs.add(Id))})});if(Ar.length){const wn=[];Ar.forEach(On=>{wn.push(function ne(O,H){return new t.wOt(3505,!1)}())}),ta.forEach(On=>On.destroy()),this.reportError(wn)}const ma=new Map,ia=new Map;It.forEach(wn=>{const On=wn.element;U.has(On)&&(ia.set(On,On),this._beforeAnimationBuild(wn.player.namespaceId,wn.instruction,ma))}),G.forEach(wn=>{const On=wn.element;this._getPreviousPlayers(On,!1,wn.namespaceId,wn.triggerName,null).forEach(Mr=>{me(ma,On,[]).push(Mr),Mr.destroy()})});const rc=An.filter(wn=>Na(wn,oi,ci)),Lc=new Map;Fa(Lc,this.driver,Vr,ci,w.kp).forEach(wn=>{Na(wn,oi,ci)&&rc.push(wn)});const $c=new Map;bn.forEach((wn,On)=>{Fa($c,this.driver,new Set(wn),oi,w.FX)}),rc.forEach(wn=>{const On=Lc.get(wn),Gn=$c.get(wn);Lc.set(wn,new Map([...On?.entries()??[],...Gn?.entries()??[]]))});const W2=[],bl=[],X2={};It.forEach(wn=>{const{element:On,player:Gn,instruction:Mr}=wn;if(U.has(On)){if(Ui.has(On))return Gn.onDestroy(()=>Ae(On,Mr.toStyles)),Gn.disabled=!0,Gn.overrideTotalTime(Mr.totalTime),void G.push(Gn);let _o=X2;if(ia.size>1){let xs=On;const yl=[];for(;xs=xs.parentNode;){const wa=ia.get(xs);if(wa){_o=wa;break}yl.push(xs)}yl.forEach(wa=>ia.set(wa,_o))}const ac=this._buildAnimation(Gn.namespaceId,Mr,ma,Oe,$c,Lc);if(Gn.setRealPlayer(ac),_o===X2)W2.push(Gn);else{const xs=this.playersByElement.get(_o);xs&&xs.length&&(Gn.parentPlayer=ze(xs)),G.push(Gn)}}else we(On,Mr.fromStyles),Gn.onDestroy(()=>Ae(On,Mr.toStyles)),bl.push(Gn),Ui.has(On)&&G.push(Gn)}),bl.forEach(wn=>{const On=Oe.get(wn.element);if(On&&On.length){const Gn=ze(On);wn.setRealPlayer(Gn)}}),G.forEach(wn=>{wn.parentPlayer?wn.syncPlayerEvents(wn.parentPlayer):wn.destroy()});for(let wn=0;wn!ac.destroyed);_o.length?Br(this,On,_o):this.processLeaveNode(On)}return An.length=0,W2.forEach(wn=>{this.players.push(wn),wn.onDone(()=>{wn.destroy();const On=this.players.indexOf(wn);this.players.splice(On,1)}),wn.play()}),W2}afterFlush(H){this._flushFns.push(H)}afterFlushAnimationsDone(H){this._whenQuietFns.push(H)}_getPreviousPlayers(H,b,U,G,Oe){let It=[];if(b){const Lt=this.playersByQueriedElement.get(H);Lt&&(It=Lt)}else{const Lt=this.playersByElement.get(H);if(Lt){const oi=!Oe||Oe==hn;Lt.forEach(ci=>{ci.queued||!oi&&ci.triggerName!=G||It.push(ci)})}}return(U||G)&&(It=It.filter(Lt=>!(U&&U!=Lt.namespaceId||G&&G!=Lt.triggerName))),It}_beforeAnimationBuild(H,b,U){const Oe=b.element,It=b.isRemovalTransition?void 0:H,Lt=b.isRemovalTransition?void 0:b.triggerName;for(const oi of b.timelines){const ci=oi.element,Ui=ci!==Oe,Ti=me(U,ci,[]);this._getPreviousPlayers(ci,Ui,It,Lt,b.toState).forEach(bn=>{const Yi=bn.getRealPlayer();Yi.beforeDestroy&&Yi.beforeDestroy(),bn.destroy(),Ti.push(bn)})}we(Oe,b.fromStyles)}_buildAnimation(H,b,U,G,Oe,It){const Lt=b.triggerName,oi=b.element,ci=[],Ui=new Set,Ti=new Set,un=b.timelines.map(Yi=>{const Ji=Yi.element;Ui.add(Ji);const An=Ji[zn];if(An&&An.removedBeforeQueried)return new w.sf(Yi.duration,Yi.delay);const Un=Ji!==oi,Vr=function Ua(O){const H=[];return rs(O,H),H}((U.get(Ji)||ho).map(ma=>ma.getRealPlayer())).filter(ma=>!!ma.element&&ma.element===Ji),la=Oe.get(Ji),cr=It.get(Ji),ta=qe(this._normalizer,Yi.keyframes,la,cr),Ar=this._buildPlayer(Yi,ta,Vr);if(Yi.subTimeline&&G&&Ti.add(Ji),Un){const ma=new wo(H,Lt,Ji);ma.setRealPlayer(Ar),ci.push(ma)}return Ar});ci.forEach(Yi=>{me(this.playersByQueriedElement,Yi.element,[]).push(Yi),Yi.onDone(()=>function zo(O,H,b){let U=O.get(H);if(U){if(U.length){const G=U.indexOf(b);U.splice(G,1)}0==U.length&&O.delete(H)}return U}(this.playersByQueriedElement,Yi.element,Yi))}),Ui.forEach(Yi=>kr(Yi,Vt));const bn=ze(un);return bn.onDestroy(()=>{Ui.forEach(Yi=>ha(Yi,Vt)),Ae(oi,b.toStyles)}),Ti.forEach(Yi=>{me(G,Yi,[]).push(bn)}),bn}_buildPlayer(H,b,U){return b.length>0?this.driver.animate(H.element,b,H.duration,H.delay,H.easing,U):new w.sf(H.duration,H.delay)}}class wo{constructor(H,b,U){this.namespaceId=H,this.triggerName=b,this.element=U,this._player=new w.sf,this._containsRealPlayer=!1,this._queuedCallbacks=new Map,this.destroyed=!1,this.parentPlayer=null,this.markedForDestroy=!1,this.disabled=!1,this.queued=!0,this.totalTime=0}setRealPlayer(H){this._containsRealPlayer||(this._player=H,this._queuedCallbacks.forEach((b,U)=>{b.forEach(G=>Ke(H,U,void 0,G))}),this._queuedCallbacks.clear(),this._containsRealPlayer=!0,this.overrideTotalTime(H.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(H){this.totalTime=H}syncPlayerEvents(H){const b=this._player;b.triggerCallback&&H.onStart(()=>b.triggerCallback("start")),H.onDone(()=>this.finish()),H.onDestroy(()=>this.destroy())}_queueEvent(H,b){me(this._queuedCallbacks,H,[]).push(b)}onDone(H){this.queued&&this._queueEvent("done",H),this._player.onDone(H)}onStart(H){this.queued&&this._queueEvent("start",H),this._player.onStart(H)}onDestroy(H){this.queued&&this._queueEvent("destroy",H),this._player.onDestroy(H)}init(){this._player.init()}hasStarted(){return!this.queued&&this._player.hasStarted()}play(){!this.queued&&this._player.play()}pause(){!this.queued&&this._player.pause()}restart(){!this.queued&&this._player.restart()}finish(){this._player.finish()}destroy(){this.destroyed=!0,this._player.destroy()}reset(){!this.queued&&this._player.reset()}setPosition(H){this.queued||this._player.setPosition(H)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(H){const b=this._player;b.triggerCallback&&b.triggerCallback(H)}}function ao(O){return O&&1===O.nodeType}function ns(O,H){const b=O.style.display;return O.style.display=H??"none",b}function Fa(O,H,b,U,G){const Oe=[];b.forEach(oi=>Oe.push(ns(oi)));const It=[];U.forEach((oi,ci)=>{const Ui=new Map;oi.forEach(Ti=>{const un=H.computeStyle(ci,Ti,G);Ui.set(Ti,un),(!un||0==un.length)&&(ci[zn]=Sa,It.push(ci))}),O.set(ci,Ui)});let Lt=0;return b.forEach(oi=>ns(oi,Oe[Lt++])),It}function Ro(O,H){const b=new Map;if(O.forEach(Lt=>b.set(Lt,[])),0==H.length)return b;const G=new Set(H),Oe=new Map;function It(Lt){if(!Lt)return 1;let oi=Oe.get(Lt);if(oi)return oi;const ci=Lt.parentNode;return oi=b.has(ci)?ci:G.has(ci)?1:It(ci),Oe.set(Lt,oi),oi}return H.forEach(Lt=>{const oi=It(Lt);1!==oi&&b.get(oi).push(Lt)}),b}function kr(O,H){O.classList?.add(H)}function ha(O,H){O.classList?.remove(H)}function Br(O,H,b){ze(b).onDone(()=>O.processLeaveNode(H))}function rs(O,H){for(let b=0;bG.add(Oe)):H.set(O,U),b.delete(O),!0}class ja{constructor(H,b,U){this._driver=b,this._normalizer=U,this._triggerCache={},this.onRemovalComplete=(G,Oe)=>{},this._transitionEngine=new Co(H.body,b,U),this._timelineEngine=new Ho(H.body,b,U),this._transitionEngine.onRemovalComplete=(G,Oe)=>this.onRemovalComplete(G,Oe)}registerTrigger(H,b,U,G,Oe){const It=H+"-"+G;let Lt=this._triggerCache[It];if(!Lt){const oi=[],Ui=zi(this._driver,Oe,oi,[]);if(oi.length)throw function n(O,H){return new t.wOt(3404,!1)}();Lt=function nr(O,H,b){return new or(O,H,b)}(G,Ui,this._normalizer),this._triggerCache[It]=Lt}this._transitionEngine.registerTrigger(b,G,Lt)}register(H,b){this._transitionEngine.register(H,b)}destroy(H,b){this._transitionEngine.destroy(H,b)}onInsert(H,b,U,G){this._transitionEngine.insertNode(H,b,U,G)}onRemove(H,b,U){this._transitionEngine.removeNode(H,b,U)}disableAnimations(H,b){this._transitionEngine.markElementAsDisabled(H,b)}process(H,b,U,G){if("@"==U.charAt(0)){const[Oe,It]=ce(U);this._timelineEngine.command(Oe,b,It,G)}else this._transitionEngine.trigger(H,b,U,G)}listen(H,b,U,G,Oe){if("@"==U.charAt(0)){const[It,Lt]=ce(U);return this._timelineEngine.listen(It,b,Lt,Oe)}return this._transitionEngine.listen(H,b,U,G,Oe)}flush(H=-1){this._transitionEngine.flush(H)}get players(){return[...this._transitionEngine.players,...this._timelineEngine.players]}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}afterFlushAnimationsDone(H){this._transitionEngine.afterFlushAnimationsDone(H)}}class Uo{static#e=this.initialStylesByElement=new WeakMap;constructor(H,b,U){this._element=H,this._startStyles=b,this._endStyles=U,this._state=0;let G=Uo.initialStylesByElement.get(H);G||Uo.initialStylesByElement.set(H,G=new Map),this._initialStyles=G}start(){this._state<1&&(this._startStyles&&Ae(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(Ae(this._element,this._initialStyles),this._endStyles&&(Ae(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(Uo.initialStylesByElement.delete(this._element),this._startStyles&&(we(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(we(this._element,this._endStyles),this._endStyles=null),Ae(this._element,this._initialStyles),this._state=3)}}function uo(O){let H=null;return O.forEach((b,U)=>{(function ga(O){return"display"===O||"position"===O})(U)&&(H=H||new Map,H.set(U,b))}),H}class Za{constructor(H,b,U,G){this.element=H,this.keyframes=b,this.options=U,this._specialStyles=G,this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._initialized=!1,this._finished=!1,this._started=!1,this._destroyed=!1,this._originalOnDoneFns=[],this._originalOnStartFns=[],this.time=0,this.parentPlayer=null,this.currentSnapshot=new Map,this._duration=U.duration,this._delay=U.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(H=>H()),this._onDoneFns=[])}init(){this._buildPlayer(),this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return;this._initialized=!0;const H=this.keyframes;this.domPlayer=this._triggerWebAnimation(this.element,H,this.options),this._finalKeyframe=H.length?H[H.length-1]:new Map;const b=()=>this._onFinish();this.domPlayer.addEventListener("finish",b),this.onDestroy(()=>{this.domPlayer.removeEventListener("finish",b)})}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer.pause()}_convertKeyframesToObject(H){const b=[];return H.forEach(U=>{b.push(Object.fromEntries(U))}),b}_triggerWebAnimation(H,b,U){return H.animate(this._convertKeyframesToObject(b),U)}onStart(H){this._originalOnStartFns.push(H),this._onStartFns.push(H)}onDone(H){this._originalOnDoneFns.push(H),this._onDoneFns.push(H)}onDestroy(H){this._onDestroyFns.push(H)}play(){this._buildPlayer(),this.hasStarted()||(this._onStartFns.forEach(H=>H()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),this.domPlayer.play()}pause(){this.init(),this.domPlayer.pause()}finish(){this.init(),this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish()}reset(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}_resetDomPlayerState(){this.domPlayer&&this.domPlayer.cancel()}restart(){this.reset(),this.play()}hasStarted(){return this._started}destroy(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(H=>H()),this._onDestroyFns=[])}setPosition(H){void 0===this.domPlayer&&this.init(),this.domPlayer.currentTime=H*this.time}getPosition(){return+(this.domPlayer.currentTime??0)/this.time}get totalTime(){return this._delay+this._duration}beforeDestroy(){const H=new Map;this.hasStarted()&&this._finalKeyframe.forEach((U,G)=>{"offset"!==G&&H.set(G,this._finished?U:mi(this.element,G))}),this.currentSnapshot=H}triggerCallback(H){const b="start"===H?this._onStartFns:this._onDoneFns;b.forEach(U=>U()),b.length=0}}class Lr{validateStyleProperty(H){return!0}validateAnimatableStyleProperty(H){return!0}containsElement(H,b){return at(H,b)}getParentElement(H){return ke(H)}query(H,b,U){return pt(H,b,U)}computeStyle(H,b,U){return mi(H,b)}animate(H,b,U,G,Oe,It=[]){const oi={duration:U,delay:G,fill:0==G?"both":"forwards"};Oe&&(oi.easing=Oe);const ci=new Map,Ui=It.filter(bn=>bn instanceof Za);(function et(O,H){return 0===O||0===H})(U,G)&&Ui.forEach(bn=>{bn.currentSnapshot.forEach((Yi,Ji)=>ci.set(Ji,Yi))});let Ti=function St(O){return O.length?O[0]instanceof Map?O:O.map(H=>new Map(Object.entries(H))):[]}(b).map(bn=>new Map(bn));Ti=function st(O,H,b){if(b.size&&H.length){let U=H[0],G=[];if(b.forEach((Oe,It)=>{U.has(It)||G.push(It),U.set(It,Oe)}),G.length)for(let Oe=1;OeIt.set(Lt,mi(O,Lt)))}}return H}(H,Ti,ci);const un=function Bo(O,H){let b=null,U=null;return Array.isArray(H)&&H.length?(b=uo(H[0]),H.length>1&&(U=uo(H[H.length-1]))):H instanceof Map&&(b=uo(H)),b||U?new Uo(O,b,U):null}(H,Ti);return new Za(H,Ti,oi,un)}}const Bn="@.disabled";class Da{constructor(H,b,U,G){this.namespaceId=H,this.delegate=b,this.engine=U,this._onDestroy=G,this.\u0275type=0}get data(){return this.delegate.data}destroyNode(H){this.delegate.destroyNode?.(H)}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.engine.afterFlushAnimationsDone(()=>{queueMicrotask(()=>{this.delegate.destroy()})}),this._onDestroy?.()}createElement(H,b){return this.delegate.createElement(H,b)}createComment(H){return this.delegate.createComment(H)}createText(H){return this.delegate.createText(H)}appendChild(H,b){this.delegate.appendChild(H,b),this.engine.onInsert(this.namespaceId,b,H,!1)}insertBefore(H,b,U,G=!0){this.delegate.insertBefore(H,b,U),this.engine.onInsert(this.namespaceId,b,H,G)}removeChild(H,b,U){this.engine.onRemove(this.namespaceId,b,this.delegate)}selectRootElement(H,b){return this.delegate.selectRootElement(H,b)}parentNode(H){return this.delegate.parentNode(H)}nextSibling(H){return this.delegate.nextSibling(H)}setAttribute(H,b,U,G){this.delegate.setAttribute(H,b,U,G)}removeAttribute(H,b,U){this.delegate.removeAttribute(H,b,U)}addClass(H,b){this.delegate.addClass(H,b)}removeClass(H,b){this.delegate.removeClass(H,b)}setStyle(H,b,U,G){this.delegate.setStyle(H,b,U,G)}removeStyle(H,b,U){this.delegate.removeStyle(H,b,U)}setProperty(H,b,U){"@"==b.charAt(0)&&b==Bn?this.disableAnimations(H,!!U):this.delegate.setProperty(H,b,U)}setValue(H,b){this.delegate.setValue(H,b)}listen(H,b,U){return this.delegate.listen(H,b,U)}disableAnimations(H,b){this.engine.disableAnimations(H,b)}}class Go extends Da{constructor(H,b,U,G,Oe){super(b,U,G,Oe),this.factory=H,this.namespaceId=b}setProperty(H,b,U){"@"==b.charAt(0)?"."==b.charAt(1)&&b==Bn?this.disableAnimations(H,U=void 0===U||!!U):this.engine.process(this.namespaceId,H,b.slice(1),U):this.delegate.setProperty(H,b,U)}listen(H,b,U){if("@"==b.charAt(0)){const G=function Wa(O){switch(O){case"body":return document.body;case"document":return document;case"window":return window;default:return O}}(H);let Oe=b.slice(1),It="";return"@"!=Oe.charAt(0)&&([Oe,It]=function as(O){const H=O.indexOf(".");return[O.substring(0,H),O.slice(H+1)]}(Oe)),this.engine.listen(this.namespaceId,G,Oe,It,Lt=>{this.factory.scheduleListenerCallback(Lt._data||-1,U,Lt)})}return this.delegate.listen(H,b,U)}}class Ft{constructor(H,b,U){this.delegate=H,this.engine=b,this._zone=U,this._currentId=0,this._microtaskId=1,this._animationCallbacksBuffer=[],this._rendererCache=new Map,this._cdRecurDepth=0,b.onRemovalComplete=(G,Oe)=>{const It=Oe?.parentNode(G);It&&Oe.removeChild(It,G)}}createRenderer(H,b){const G=this.delegate.createRenderer(H,b);if(!H||!b?.data?.animation){const ci=this._rendererCache;let Ui=ci.get(G);return Ui||(Ui=new Da("",G,this.engine,()=>ci.delete(G)),ci.set(G,Ui)),Ui}const Oe=b.id,It=b.id+"-"+this._currentId;this._currentId++,this.engine.register(It,H);const Lt=ci=>{Array.isArray(ci)?ci.forEach(Lt):this.engine.registerTrigger(Oe,It,H,ci.name,ci)};return b.data.animation.forEach(Lt),new Go(this,It,G,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){queueMicrotask(()=>{this._microtaskId++})}scheduleListenerCallback(H,b,U){if(H>=0&&Hb(U));const G=this._animationCallbacksBuffer;0==G.length&&queueMicrotask(()=>{this._zone.run(()=>{G.forEach(Oe=>{const[It,Lt]=Oe;It(Lt)}),this._animationCallbacksBuffer=[]})}),G.push([b,U])}end(){this._cdRecurDepth--,0==this._cdRecurDepth&&this._zone.runOutsideAngular(()=>{this._scheduleCountTask(),this.engine.flush(this._microtaskId)}),this.delegate.end&&this.delegate.end()}whenRenderingDone(){return this.engine.whenRenderingDone()}}var ri=g(177);const Ki=[{provide:Ie,useFactory:function ai(){return new Pt}},{provide:ja,useClass:(()=>{class O extends ja{constructor(b,U,G){super(b,U,G)}ngOnDestroy(){this.flush()}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO(ri.qQ),t.KVO(ue),t.KVO(Ie))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})()},{provide:t._9s,useFactory:function Ei(O,H,b){return new Ft(O,H,b)},deps:[e.B7,ja,t.SKi]}],tr=[{provide:ue,useFactory:()=>new Lr},{provide:t.bc$,useValue:"BrowserAnimations"},...Ki],Or=[{provide:ue,useClass:ye},{provide:t.bc$,useValue:"NoopAnimations"},...Ki];let Fr=(()=>{class O{static withConfig(b){return{ngModule:O,providers:b.disableAnimations?Or:tr}}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275mod=t.$C({type:O});static#i=this.\u0275inj=t.G2t({providers:tr,imports:[e.Bb]})}return O})();var Ms=g(1626),oa=g(9327),Ri=g(9640),lt=g(4054),ht=g(983),Ue=g(1985),At=g(7673),ni=g(7786),pn=g(7242),Zn=g(2771),Fo=g(7647),vr=g(5964),Xa=g(6354),lc=g(274),dc=g(3236),hc=g(8211),jo=g(9974),Wo=g(8750),fo=g(1853),Is=g(4360),Vn=g(5225);const Kr=(0,fo.L)(O=>function(b=null){O(this),this.message="Timeout has occurred",this.name="TimeoutError",this.info=b});function so(O){throw new Kr(O)}var Ir=g(152),Aa=g(9437),$s=g(6697),dn=g(6977),Es=g(5558),uc=g(5245),Ss=g(941),fc=g(3993),_s=g(2816),kl=g(9079);const vs="PERFORM_ACTION",el="ROLLBACK",Rs="TOGGLE_ACTION",pc="JUMP_TO_STATE",Js="JUMP_TO_ACTION",bs="IMPORT_STATE",gc="LOCK_CHANGES",_c="PAUSE_RECORDING";class os{constructor(H,b){if(this.action=H,this.timestamp=b,this.type=vs,typeof H.type>"u")throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?')}}class So{constructor(){this.type="REFRESH"}}class Os{constructor(H){this.timestamp=H,this.type="RESET"}}class tl{constructor(H){this.timestamp=H,this.type=el}}class Rc{constructor(H){this.timestamp=H,this.type="COMMIT"}}class Il{constructor(){this.type="SWEEP"}}class il{constructor(H){this.id=H,this.type=Rs}}class Fs{constructor(H){this.index=H,this.type=pc}}class nt{constructor(H){this.actionId=H,this.type=Js}}class Rt{constructor(H){this.nextLiftedState=H,this.type=bs}}class kt{constructor(H){this.status=H,this.type=gc}}class Z{constructor(H){this.status=H,this.type=_c}}const De=new t.nKC("@ngrx/store-devtools Options"),We=new t.nKC("@ngrx/store-devtools Initial Config");function Dt(){return null}const ei="NgRx Store DevTools";function pi(O){const H={maxAge:!1,monitor:Dt,actionSanitizer:void 0,stateSanitizer:void 0,name:ei,serialize:!1,logOnly:!1,autoPause:!1,trace:!1,traceLimit:75,features:{pause:!0,lock:!0,persist:!0,export:!0,import:"custom",jump:!0,skip:!0,reorder:!0,dispatch:!0,test:!0},connectInZone:!1},b="function"==typeof O?O():O,G=b.features||!!b.logOnly&&{pause:!0,export:!0,test:!0}||H.features;!0===G.import&&(G.import="custom");const Oe=Object.assign({},H,{features:G},b);if(Oe.maxAge&&Oe.maxAge<2)throw new Error(`Devtools 'maxAge' cannot be less than 2, got ${Oe.maxAge}`);return Oe}function Di(O,H){return O.filter(b=>H.indexOf(b)<0)}function an(O){const{computedStates:H,currentStateIndex:b}=O;if(b>=H.length){const{state:G}=H[H.length-1];return G}const{state:U}=H[b];return U}function yn(O){return new os(O,+Date.now())}function Dn(O,H){return Object.keys(H).reduce((b,U)=>{const G=Number(U);return b[G]=hr(O,H[G],G),b},{})}function hr(O,H,b){return{...H,action:O(H.action,b)}}function ir(O,H){return H.map((b,U)=>({state:br(O,b.state,U),error:b.error}))}function br(O,H,b){return O(H,b)}function gr(O){return O.predicate||O.actionsSafelist||O.actionsBlocklist}function sa(O,H,b,U,G){const Oe=b&&!b(O,H.action),It=U&&!H.action.type.match(U.map(oi=>Hn(oi)).join("|")),Lt=G&&H.action.type.match(G.map(oi=>Hn(oi)).join("|"));return Oe||It||Lt}function Hn(O){return O.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function Bi(O){return{ngZone:O?(0,t.WQX)(t.SKi):null,connectInZone:O}}let sn=(()=>{class O extends Ri.SS{static#e=this.\u0275fac=(()=>{let b;return function(G){return(b||(b=t.xGo(O)))(G||O)}})();static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();const $r=new t.nKC("@ngrx/store-devtools Redux Devtools Extension");let fa=(()=>{class O{constructor(b,U,G){this.config=U,this.dispatcher=G,this.zoneConfig=Bi(this.config.connectInZone),this.devtoolsExtension=b,this.createActionStreams()}notify(b,U){if(this.devtoolsExtension)if(b.type===vs){if(U.isLocked||U.isPaused)return;const G=an(U);if(gr(this.config)&&sa(G,b,this.config.predicate,this.config.actionsSafelist,this.config.actionsBlocklist))return;const Oe=this.config.stateSanitizer?br(this.config.stateSanitizer,G,U.currentStateIndex):G,It=this.config.actionSanitizer?hr(this.config.actionSanitizer,b,U.nextActionId):b;this.sendToReduxDevtools(()=>this.extensionConnection.send(It,Oe))}else{const G={...U,stagedActionIds:U.stagedActionIds,actionsById:this.config.actionSanitizer?Dn(this.config.actionSanitizer,U.actionsById):U.actionsById,computedStates:this.config.stateSanitizer?ir(this.config.stateSanitizer,U.computedStates):U.computedStates};this.sendToReduxDevtools(()=>this.devtoolsExtension.send(null,G,this.getExtensionConfig(this.config)))}}createChangesObservable(){return this.devtoolsExtension?new Ue.c(b=>{const U=this.zoneConfig.connectInZone?this.zoneConfig.ngZone.runOutsideAngular(()=>this.devtoolsExtension.connect(this.getExtensionConfig(this.config))):this.devtoolsExtension.connect(this.getExtensionConfig(this.config));return this.extensionConnection=U,U.init(),U.subscribe(G=>b.next(G)),U.unsubscribe}):ht.w}createActionStreams(){const b=this.createChangesObservable().pipe((0,Fo.u)()),U=b.pipe((0,vr.p)(ci=>"START"===ci.type)),G=b.pipe((0,vr.p)(ci=>"STOP"===ci.type)),Oe=b.pipe((0,vr.p)(ci=>"DISPATCH"===ci.type),(0,Xa.T)(ci=>this.unwrapAction(ci.payload)),(0,lc.H)(ci=>ci.type===bs?this.dispatcher.pipe((0,vr.p)(Ui=>Ui.type===Ri.q6),function ua(O,H){const{first:b,each:U,with:G=so,scheduler:Oe=H??dc.E,meta:It=null}=(0,hc.v)(O)?{first:O}:"number"==typeof O?{each:O}:O;if(null==b&&null==U)throw new TypeError("No timeout provided.");return(0,jo.N)((Lt,oi)=>{let ci,Ui,Ti=null,un=0;const bn=Yi=>{Ui=(0,Vn.N)(oi,Oe,()=>{try{ci.unsubscribe(),(0,Wo.Tg)(G({meta:It,lastValue:Ti,seen:un})).subscribe(oi)}catch(Ji){oi.error(Ji)}},Yi)};ci=Lt.subscribe((0,Is._)(oi,Yi=>{Ui?.unsubscribe(),un++,oi.next(Ti=Yi),U>0&&bn(U)},void 0,void 0,()=>{Ui?.closed||Ui?.unsubscribe(),Ti=null})),!un&&bn(null!=b?"number"==typeof b?b:+b-Oe.now():U)})}(1e3),(0,Ir.B)(1e3),(0,Xa.T)(()=>ci),(0,Aa.W)(()=>(0,At.of)(ci)),(0,$s.s)(1)):(0,At.of)(ci))),Lt=b.pipe((0,vr.p)(ci=>"ACTION"===ci.type),(0,Xa.T)(ci=>this.unwrapAction(ci.payload))).pipe((0,dn.Q)(G)),oi=Oe.pipe((0,dn.Q)(G));this.start$=U.pipe((0,dn.Q)(G)),this.actions$=this.start$.pipe((0,Es.n)(()=>Lt)),this.liftedActions$=this.start$.pipe((0,Es.n)(()=>oi))}unwrapAction(b){return"string"==typeof b?(0,eval)(`(${b})`):b}getExtensionConfig(b){const U={name:b.name,features:b.features,serialize:b.serialize,autoPause:b.autoPause??!1,trace:b.trace??!1,traceLimit:b.traceLimit??75};return!1!==b.maxAge&&(U.maxAge=b.maxAge),U}sendToReduxDevtools(b){try{b()}catch(U){console.warn("@ngrx/store-devtools: something went wrong inside the redux devtools",U)}}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO($r),t.KVO(De),t.KVO(sn))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();const Ya={type:Ri.Zz},Ur={type:"@ngrx/store-devtools/recompute"};function va(O,H,b,U,G){if(U)return{state:b,error:"Interrupted by an error up the chain"};let It,Oe=b;try{Oe=O(b,H)}catch(Lt){It=Lt.toString(),G.handleError(Lt)}return{state:Oe,error:It}}function cs(O,H,b,U,G,Oe,It,Lt,oi){if(H>=O.length&&O.length===Oe.length)return O;const ci=O.slice(0,H),Ui=Oe.length-(oi?1:0);for(let Ti=H;Ti-1?Yi:va(b,bn,Ji,An,Lt);ci.push(Vr)}return oi&&ci.push(O[O.length-1]),ci}let Rl=(()=>{class O{constructor(b,U,G,Oe,It,Lt,oi,ci){const Ui=function Wn(O,H){return{monitorState:H(void 0,{}),nextActionId:1,actionsById:{0:yn(Ya)},stagedActionIds:[0],skippedActionIds:[],committedState:O,currentStateIndex:0,computedStates:[],isLocked:!1,isPaused:!1}}(oi,ci.monitor),Ti=function bc(O,H,b,U,G={}){return Oe=>(It,Lt)=>{let{monitorState:oi,actionsById:ci,nextActionId:Ui,stagedActionIds:Ti,skippedActionIds:un,committedState:bn,currentStateIndex:Yi,computedStates:Ji,isLocked:An,isPaused:Un}=It||H;function Vr(ta){let Ar=ta,ma=Ti.slice(1,Ar+1);for(let ia=0;ia-1===ma.indexOf(ia)),Ti=[0,...Ti.slice(Ar+1)],bn=Ji[Ar].state,Ji=Ji.slice(Ar),Yi=Yi>Ar?Yi-Ar:0}function la(){ci={0:yn(Ya)},Ui=1,Ti=[0],un=[],bn=Ji[Yi].state,Yi=0,Ji=[]}It||(ci=Object.create(ci));let cr=0;switch(Lt.type){case gc:An=Lt.status,cr=1/0;break;case _c:Un=Lt.status,Un?(Ti=[...Ti,Ui],ci[Ui]=new os({type:"@ngrx/devtools/pause"},+Date.now()),Ui++,cr=Ti.length-1,Ji=Ji.concat(Ji[Ji.length-1]),Yi===Ti.length-2&&Yi++,cr=1/0):la();break;case"RESET":ci={0:yn(Ya)},Ui=1,Ti=[0],un=[],bn=O,Yi=0,Ji=[];break;case"COMMIT":la();break;case el:ci={0:yn(Ya)},Ui=1,Ti=[0],un=[],Yi=0,Ji=[];break;case Rs:{const{id:ta}=Lt;un=-1===un.indexOf(ta)?[ta,...un]:un.filter(ma=>ma!==ta),cr=Ti.indexOf(ta);break}case"SET_ACTIONS_ACTIVE":{const{start:ta,end:Ar,active:ma}=Lt,ia=[];for(let rc=ta;rcG.maxAge&&(Ji=cs(Ji,cr,Oe,bn,ci,Ti,un,b,Un),Vr(Ti.length-G.maxAge),cr=1/0);break;case Ri.q6:if(Ji.filter(Ar=>Ar.error).length>0)cr=0,G.maxAge&&Ti.length>G.maxAge&&(Ji=cs(Ji,cr,Oe,bn,ci,Ti,un,b,Un),Vr(Ti.length-G.maxAge),cr=1/0);else{if(!Un&&!An){Yi===Ti.length-1&&Yi++;const Ar=Ui++;ci[Ar]=new os(Lt,+Date.now()),Ti=[...Ti,Ar],cr=Ti.length-1,Ji=cs(Ji,cr,Oe,bn,ci,Ti,un,b,Un)}Ji=Ji.map(Ar=>({...Ar,state:Oe(Ar.state,Ur)})),Yi=Ti.length-1,G.maxAge&&Ti.length>G.maxAge&&Vr(Ti.length-G.maxAge),cr=1/0}break;default:cr=1/0}return Ji=cs(Ji,cr,Oe,bn,ci,Ti,un,b,Un),oi=U(oi,Lt),{monitorState:oi,actionsById:ci,nextActionId:Ui,stagedActionIds:Ti,skippedActionIds:un,committedState:bn,currentStateIndex:Yi,computedStates:Ji,isLocked:An,isPaused:Un}}}(oi,Ui,Lt,ci.monitor,ci),un=(0,ni.h)((0,ni.h)(U.asObservable().pipe((0,uc.i)(1)),Oe.actions$).pipe((0,Xa.T)(yn)),b,Oe.liftedActions$).pipe((0,Ss.Q)(pn.T)),bn=G.pipe((0,Xa.T)(Ti)),Yi=Bi(ci.connectInZone),Ji=new Zn.m(1);this.liftedStateSubscription=un.pipe((0,fc.E)(bn),yc(Yi),(0,_s.S)(({state:Vr},[la,cr])=>{let ta=cr(Vr,la);return la.type!==vs&&gr(ci)&&(ta=function Cr(O,H,b,U){const G=[],Oe={},It=[];return O.stagedActionIds.forEach((Lt,oi)=>{const ci=O.actionsById[Lt];ci&&(oi&&sa(O.computedStates[oi],ci,H,b,U)||(Oe[Lt]=ci,G.push(Lt),It.push(O.computedStates[oi])))}),{...O,stagedActionIds:G,actionsById:Oe,computedStates:It}}(ta,ci.predicate,ci.actionsSafelist,ci.actionsBlocklist)),Oe.notify(la,ta),{state:ta,action:la}},{state:Ui,action:null})).subscribe(({state:Vr,action:la})=>{Ji.next(Vr),la.type===vs&&It.next(la.action)}),this.extensionStartSubscription=Oe.start$.pipe(yc(Yi)).subscribe(()=>{this.refresh()});const An=Ji.asObservable(),Un=An.pipe((0,Xa.T)(an));Object.defineProperty(Un,"state",{value:(0,kl.ot)(Un,{manualCleanup:!0,requireSync:!0})}),this.dispatcher=b,this.liftedState=An,this.state=Un}ngOnDestroy(){this.liftedStateSubscription.unsubscribe(),this.extensionStartSubscription.unsubscribe()}dispatch(b){this.dispatcher.next(b)}next(b){this.dispatcher.next(b)}error(b){}complete(){}performAction(b){this.dispatch(new os(b,+Date.now()))}refresh(){this.dispatch(new So)}reset(){this.dispatch(new Os(+Date.now()))}rollback(){this.dispatch(new tl(+Date.now()))}commit(){this.dispatch(new Rc(+Date.now()))}sweep(){this.dispatch(new Il)}toggleAction(b){this.dispatch(new il(b))}jumpToAction(b){this.dispatch(new nt(b))}jumpToState(b){this.dispatch(new Fs(b))}importState(b){this.dispatch(new Rt(b))}lockChanges(b){this.dispatch(new kt(b))}pauseRecording(b){this.dispatch(new Z(b))}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO(sn),t.KVO(Ri.SS),t.KVO(Ri.QU),t.KVO(fa),t.KVO(Ri.sA),t.KVO(t.zcH),t.KVO(Ri.N_),t.KVO(De))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();function yc({ngZone:O,connectInZone:H}){return b=>H?new Ue.c(U=>b.subscribe({next:G=>O.run(()=>U.next(G)),error:G=>O.run(()=>U.error(G)),complete:()=>O.run(()=>U.complete())})):b}const Qr=new t.nKC("@ngrx/store-devtools Is Devtools Extension or Monitor Present");function mo(O,H){return!!O||H.monitor!==Dt}function To(){const O="__REDUX_DEVTOOLS_EXTENSION__";return"object"==typeof window&&typeof window[O]<"u"?window[O]:null}function qs(O={}){return(0,t.EmA)([fa,sn,Rl,{provide:We,useValue:O},{provide:Qr,deps:[$r,De],useFactory:mo},{provide:$r,useFactory:To},{provide:De,deps:[We],useFactory:pi},{provide:Ri.h1,deps:[Rl],useFactory:Oc},{provide:Ri.Bh,useExisting:sn}])}function Oc(O){return O.state}let Ns=(()=>{class O{static instrument(b={}){return{ngModule:O,providers:[qs(b)]}}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275mod=t.$C({type:O});static#i=this.\u0275inj=t.G2t({})}return O})();var Gi=g(1413),Fc=g(3726),Ps=g(2806),kn=g(1807);function nl(O=0,H=dc.E){return O<0&&(O=0),(0,kn.O)(O,O,H)}var rl=g(8359),Xo=g(7908),Ol=g(9326),ea=g(8141),Fl=g(980),ka=g(3294);class ba{}function Ts(O){return(0,t.EmA)([{provide:ba,useValue:O}])}let Vs=(()=>{class O{constructor(b,U){this._ngZone=U,this.timerStart$=new Gi.B,this.idleDetected$=new Gi.B,this.timeout$=new Gi.B,this.idleMillisec=6e5,this.idleSensitivityMillisec=1e3,this.timeout=300,this.pingMillisec=12e4,this.isTimeout=!1,this.isInactivityTimer=!1,this.isIdleDetected=!1,b&&this.setConfig(b)}startWatching(){this.activityEvents$||(this.activityEvents$=(0,ni.h)((0,Fc.R)(window,"mousemove"),(0,Fc.R)(window,"resize"),(0,Fc.R)(document,"keydown"))),this.idle$=(0,Ps.H)(this.activityEvents$),this.idleSubscription&&this.idleSubscription.unsubscribe(),this.idleSubscription=this.idle$.pipe(function Nc(O,...H){var b,U;const G=null!==(b=(0,Ol.lI)(H))&&void 0!==b?b:dc.E,Oe=null!==(U=H[0])&&void 0!==U?U:null,It=H[1]||1/0;return(0,jo.N)((Lt,oi)=>{let ci=[],Ui=!1;const Ti=Yi=>{const{buffer:Ji,subs:An}=Yi;An.unsubscribe(),(0,Xo.o)(ci,Yi),oi.next(Ji),Ui&&un()},un=()=>{if(ci){const Yi=new rl.yU;oi.add(Yi);const An={buffer:[],subs:Yi};ci.push(An),(0,Vn.N)(Yi,G,()=>Ti(An),O)}};null!==Oe&&Oe>=0?(0,Vn.N)(oi,G,un,Oe,!0):Ui=!0,un();const bn=(0,Is._)(oi,Yi=>{const Ji=ci.slice();for(const An of Ji){const{buffer:Un}=An;Un.push(Yi),It<=Un.length&&Ti(An)}},()=>{for(;ci?.length;)oi.next(ci.shift().buffer);bn?.unsubscribe(),oi.complete(),oi.unsubscribe()},void 0,()=>ci=null);Lt.subscribe(bn)})}(this.idleSensitivityMillisec),(0,vr.p)(b=>!b.length&&!this.isIdleDetected&&!this.isInactivityTimer),(0,ea.M)(()=>{this.isIdleDetected=!0,this.idleDetected$.next(!0)}),(0,Es.n)(()=>this._ngZone.runOutsideAngular(()=>nl(1e3).pipe((0,dn.Q)((0,ni.h)(this.activityEvents$,(0,kn.O)(this.idleMillisec).pipe((0,ea.M)(()=>{this.isInactivityTimer=!0,this.timerStart$.next(!0)})))),(0,Fl.j)(()=>{this.isIdleDetected=!1,this.idleDetected$.next(!1)}))))).subscribe(),this.setupTimer(this.timeout),this.setupPing(this.pingMillisec)}stopWatching(){this.stopTimer(),this.idleSubscription&&this.idleSubscription.unsubscribe()}stopTimer(){this.isInactivityTimer=!1,this.timerStart$.next(!1)}resetTimer(){this.stopTimer(),this.isTimeout=!1}onTimerStart(){return this.timerStart$.pipe((0,ka.F)(),(0,Es.n)(b=>b?this.timer$:(0,At.of)(null)))}onIdleStatusChanged(){return this.idleDetected$.asObservable()}onTimeout(){return this.timeout$.pipe((0,vr.p)(b=>!!b),(0,ea.M)(()=>this.isTimeout=!0),(0,Xa.T)(()=>!0))}getConfigValue(){return{idle:this.idleMillisec/1e3,idleSensitivity:this.idleSensitivityMillisec/1e3,timeout:this.timeout,ping:this.pingMillisec/1e3}}setConfigValues(b){!this.idleSubscription||this.idleSubscription.closed?this.setConfig(b):console.error("Call stopWatching() before set config values")}setConfig(b){b.idle&&(this.idleMillisec=1e3*b.idle),b.ping&&(this.pingMillisec=1e3*b.ping),b.idleSensitivity&&(this.idleSensitivityMillisec=1e3*b.idleSensitivity),b.timeout&&(this.timeout=b.timeout)}setCustomActivityEvents(b){!this.idleSubscription||this.idleSubscription.closed?this.activityEvents$=b:console.error("Call stopWatching() before set custom activity events")}setupTimer(b){this._ngZone.runOutsideAngular(()=>{this.timer$=(0,At.of)(()=>new Date).pipe((0,Xa.T)(U=>U()),(0,Es.n)(U=>nl(1e3).pipe((0,Xa.T)(()=>Math.round(((new Date).valueOf()-U.valueOf())/1e3)),(0,ea.M)(G=>{G>=b&&this.timeout$.next(!0)}))))})}setupPing(b){this.ping$=nl(b).pipe((0,vr.p)(()=>!this.isTimeout))}}return O.\u0275fac=function(b){return new(b||O)(t.KVO(ba,8),t.KVO(t.SKi))},O.\u0275prov=t.jDH({token:O,factory:O.\u0275fac,providedIn:"root"}),O})();var En=g(1188),nn=g(5383),Gr=g(9647),ya=g(60),$i=g(2920),mr=g(5596),ca=g(6850);const Nl=()=>({initial:!1});function v0(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",11),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.activeLink=G.links[1].link)}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[1].link),t.Y8G("active",b.activeLink===b.links[1].link)("state",t.lJ4(4,Nl)),t.R7$(),t.JRh(b.links[1].name)}}function Hu(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.activeLink=G.links[2].link)}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[2].link),t.Y8G("active",b.activeLink===b.links[2].link),t.R7$(),t.JRh(b.links[2].name)}}let b0=(()=>{class O{constructor(b,U){this.store=b,this.router=U,this.faUserCog=nn.McB,this.showBitcoind=!1,this.links=[{link:"app",name:"Application"},{link:"auth",name:"Authentication"},{link:"bconfig",name:"BitcoinD Config"}],this.activeLink="",this.unSubs=[new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){const b=this.links.find(U=>this.router.url.includes(U.link));this.activeLink=b?b.link:this.links[0].link,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,vr.p)(U=>U instanceof En.gx)).subscribe({next:U=>{const G=this.links.find(Oe=>U.urlAfterRedirects.includes(Oe.link));this.activeLink=G?G.link:this.links[0].link}}),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[1])).subscribe(U=>{this.appConfig=U}),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[2])).subscribe(U=>{this.showBitcoind=!1,this.selNode=U,this.selNode.settings&&this.selNode.settings.bitcoindConfigPath&&""!==this.selNode.settings.bitcoindConfigPath.trim()&&(this.showBitcoind=!0)})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(En.Ix))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-settings"]],decls:16,vars:7,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["role","tab","tabindex","3","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink","state"],["role","tab","tabindex","3","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Settings"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.activeLink=G.links[0].link)}),t.EFF(9),t.k0s(),t.DNE(10,v0,2,5,"div",8)(11,Hu,2,3,"div",9),t.k0s(),t.nrm(12,"mat-tab-nav-panel",null,0),t.j41(14,"div",10),t.nrm(15,"router-outlet"),t.k0s()()()()}if(2&U){const Oe=t.sdS(13);t.R7$(),t.Y8G("icon",G.faUserCog),t.R7$(6),t.Y8G("tabPanel",Oe),t.R7$(),t.FS9("routerLink",G.links[0].link),t.Y8G("active",G.activeLink===G.links[0].link),t.R7$(),t.JRh(G.links[0].name),t.R7$(),t.Y8G("ngIf",!+G.appConfig.SSO.rtlSSO),t.R7$(),t.Y8G("ngIf",G.showBitcoind)}},dependencies:[ri.bT,ya.aY,$i.DJ,$i.sA,$i.UI,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.n3,En.Wk]})}return O})();var Cn=g(1771),Yo=g(8570),Wi=g(9417),ve=g(8834),Pe=g(6467),xe=g(2798),Be=g(6600),ft=g(497),Ot=g(9587);function qt(O,H){if(1&O&&(t.j41(0,"mat-option",15),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b.index),t.R7$(),t.Lme(" ",b.lnNode," (",b.lnImplementation,") ")}}function Mi(O,H){if(1&O){const b=t.RV6();t.j41(0,"form",3,0)(2,"div",4),t.nrm(3,"fa-icon",5),t.j41(4,"span",6),t.EFF(5,"Default Node"),t.k0s()(),t.j41(6,"div",7)(7,"div",8)(8,"mat-form-field",9)(9,"mat-select",10),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG();return t.DH7(Oe.appConfig.defaultNodeIndex,G)||(Oe.appConfig.defaultNodeIndex=G),t.Njj(G)}),t.DNE(10,qt,2,3,"mat-option",11),t.k0s()()(),t.j41(11,"div",12)(12,"div",8)(13,"button",13),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onResetSettings())}),t.EFF(14,"Reset"),t.k0s(),t.j41(15,"button",14),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onUpdateApplicationSettings())}),t.EFF(16,"Update"),t.k0s()()()()()}if(2&O){const b=t.XpG();t.R7$(3),t.Y8G("icon",b.faWindowRestore),t.R7$(6),t.R50("ngModel",b.appConfig.defaultNodeIndex),t.R7$(),t.Y8G("ngForOf",b.appConfig.nodes)}}let vi=(()=>{class O{constructor(b,U){this.logger=b,this.store=U,this.faWindowRestore=nn.aFw,this.faPlus=nn.QLR,this.previousDefaultNode=0,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.appConfig=b,this.previousDefaultNode=this.appConfig.defaultNodeIndex,this.logger.info(b)})}onAddNewNode(){this.logger.warn("ADD NEW NODE")}onUpdateApplicationSettings(){this.appConfig.defaultNodeIndex=this.appConfig.defaultNodeIndex?this.appConfig.defaultNodeIndex:this.appConfig&&this.appConfig.nodes&&this.appConfig.nodes.length&&this.appConfig.nodes.length>0&&this.appConfig.nodes[0].index?+this.appConfig.nodes[0].index:-1,this.store.dispatch((0,Cn.rc)({payload:{showSnackBar:!0,message:"Default Node Updated.",config:this.appConfig}}))}onResetSettings(){this.appConfig.defaultNodeIndex=this.previousDefaultNode}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-app-settings"]],decls:2,vars:1,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100",1,"padding-gap-x-large",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","settings-container page-sub-title-container mt-1",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"my-2"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start start"],["autoFocus","","tabindex","1","name","defaultNode",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","2",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","3",3,"click"],[3,"value"]],template:function(U,G){1&U&&(t.j41(0,"div",1),t.DNE(1,Mi,17,3,"form",2),t.k0s()),2&U&&(t.R7$(),t.Y8G("ngIf",G.appConfig.nodes&&G.appConfig.nodes.length&&G.appConfig.nodes.length>0))},dependencies:[ri.Sq,ri.bT,Wi.qT,Wi.BC,Wi.cb,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,Pe.rl,xe.VO,Be.wT,ft.Ld,Ot.N]})}return O})();var on=g(2852),Sn=g(5351),Jn=g(1264),_r=g(7541),ys=g(5416),Nr=g(9631),Ka=g(6013),ls=g(8288),xc=g(9157);const Pl=["stepper"];function Ko(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG();t.JRh(b.passwordFormLabel)}}function Ds(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Password is required."),t.k0s())}function Hs(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.JRh(b.secretFormLabel)}}function Cc(O,H){if(1&O&&t.nrm(0,"qr-code",33),2&O){const b=t.XpG(2);t.Y8G("value",b.otpauth)("size",180)("errorCorrectionLevel","L")}}function As(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Secret Code is required."),t.k0s())}function Vl(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-step",10)(1,"form",22),t.DNE(2,Hs,1,1,"ng-template",23),t.j41(3,"div",24),t.DNE(4,Cc,1,3,"qr-code",25),t.k0s(),t.j41(5,"div",26),t.nrm(6,"fa-icon",27),t.j41(7,"span"),t.EFF(8,"You can use a compatible authentication app to get an authentication code when you log in to RTL. e.g.: Google Authenticator."),t.k0s()(),t.j41(9,"div",28)(10,"mat-form-field",13)(11,"mat-label"),t.EFF(12,"Secret Code"),t.k0s(),t.nrm(13,"input",29),t.j41(14,"fa-icon",30),t.bIt("copied",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onCopySecret(G))}),t.k0s(),t.DNE(15,As,2,0,"mat-error",15),t.k0s()(),t.j41(16,"div",31)(17,"button",32),t.EFF(18,"Next"),t.k0s()()()()}if(2&O){const b=t.XpG();t.Y8G("stepControl",b.secretFormGroup)("editable",b.flgEditable),t.R7$(),t.Y8G("formGroup",b.secretFormGroup),t.R7$(3),t.Y8G("ngIf",b.otpauth),t.R7$(2),t.Y8G("icon",b.faInfoCircle),t.R7$(8),t.Y8G("icon",b.faCopy)("payload",null==b.secretFormGroup||null==b.secretFormGroup.controls||null==b.secretFormGroup.controls.secret?null:b.secretFormGroup.controls.secret.value),t.R7$(),t.Y8G("ngIf",null==b.secretFormGroup||null==b.secretFormGroup.controls||null==b.secretFormGroup.controls.secret||null==b.secretFormGroup.controls.secret.errors?null:b.secretFormGroup.controls.secret.errors.required)}}function Hd(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.JRh(b.tokenFormLabel)}}function wr(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Token is required."),t.k0s())}function ld(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Token is invalid."),t.k0s())}function La(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",8)(1,"div",28)(2,"mat-form-field",13)(3,"mat-label"),t.EFF(4,"Token"),t.k0s(),t.nrm(5,"input",37),t.DNE(6,wr,2,0,"mat-error",15)(7,ld,2,0,"mat-error",15),t.k0s()(),t.j41(8,"div",31)(9,"button",38),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onVerifyToken())}),t.EFF(10),t.k0s()()()}if(2&O){const b=t.XpG(2);t.R7$(6),t.Y8G("ngIf",null==b.tokenFormGroup||null==b.tokenFormGroup.controls||null==b.tokenFormGroup.controls.token||null==b.tokenFormGroup.controls.token.errors?null:b.tokenFormGroup.controls.token.errors.required),t.R7$(),t.Y8G("ngIf",null==b.tokenFormGroup||null==b.tokenFormGroup.controls||null==b.tokenFormGroup.controls.token||null==b.tokenFormGroup.controls.token.errors?null:b.tokenFormGroup.controls.token.errors.notValid),t.R7$(3),t.JRh(null!=b.tokenFormGroup&&null!=b.tokenFormGroup.controls&&null!=b.tokenFormGroup.controls.token&&null!=b.tokenFormGroup.controls.token.errors&&b.tokenFormGroup.controls.token.errors.notValid?"Retry":"Verify")}}function po(O,H){1&O&&(t.j41(0,"div")(1,"strong"),t.EFF(2,"Success! You are all set."),t.k0s()())}function zu(O,H){if(1&O&&(t.j41(0,"mat-step",34)(1,"form",35),t.DNE(2,Hd,1,1,"ng-template",12)(3,La,11,3,"div",36)(4,po,3,0,"div",15),t.k0s()()),2&O){const b=t.XpG();t.Y8G("stepControl",b.tokenFormGroup),t.R7$(),t.Y8G("formGroup",b.tokenFormGroup),t.R7$(2),t.Y8G("ngIf",!b.flgValidated||!b.isTokenValid),t.R7$(),t.Y8G("ngIf",b.flgValidated&&b.isTokenValid)}}function ec(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.JRh(b.disableFormLabel)}}function Hl(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",8)(1,"div",39),t.nrm(2,"fa-icon",27),t.j41(3,"span"),t.EFF(4,"You are about to disable two-factor authentication security from RTL. Are you sure you want to turn it off?"),t.k0s()(),t.j41(5,"div",31)(6,"button",38),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onVerifyToken())}),t.EFF(7,"Disable"),t.k0s()()()}if(2&O){const b=t.XpG(2);t.R7$(2),t.Y8G("icon",b.faExclamationTriangle)}}function $o(O,H){1&O&&(t.j41(0,"div")(1,"strong"),t.EFF(2,"Two factor authentication removed from RTL."),t.k0s()())}function Y3(O,H){if(1&O&&(t.j41(0,"mat-step",34)(1,"form",35),t.DNE(2,ec,1,1,"ng-template",12)(3,Hl,8,1,"div",36)(4,$o,3,0,"div",15),t.k0s()()),2&O){const b=t.XpG();t.Y8G("stepControl",b.disableFormGroup),t.R7$(),t.Y8G("formGroup",b.disableFormGroup),t.R7$(2),t.Y8G("ngIf",!b.flgValidated||!b.isTokenValid),t.R7$(),t.Y8G("ngIf",b.flgValidated&&b.isTokenValid)}}let zd=(()=>{class O{constructor(b,U,G,Oe,It,Lt){this.dialogRef=b,this.data=U,this.store=G,this.formBuilder=Oe,this.rtlEffects=It,this.snackBar=Lt,this.faExclamationTriangle=nn.zpE,this.faCopy=nn.jPR,this.faInfoCircle=nn.iW_,this.flgValidated=!1,this.isTokenValid=!0,this.otpauth="",this.appConfig=null,this.flgEditable=!0,this.showDisableStepper=!1,this.passwordFormLabel="Authenticate with your RTL password",this.secretFormLabel="Scan or copy the secret",this.tokenFormLabel="Verify your authentication is working",this.disableFormLabel="Disable two factor authentication",this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[Wi.k0.required]],password:["",[Wi.k0.required]]}),this.secretFormGroup=this.formBuilder.group({secret:[{value:"",disabled:!0},Wi.k0.required]}),this.tokenFormGroup=this.formBuilder.group({token:["",Wi.k0.required]}),this.disableFormGroup=this.formBuilder.group({}),this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.appConfig=this.data.appConfig||null,this.showDisableStepper=!!this.appConfig?.enable2FA,this.secretFormGroup=this.formBuilder.group({secret:[{value:this.appConfig?.enable2FA?"":this.generateSecret(),disabled:!0},Wi.k0.required]})}generateSecret(){const b=Jn.authenticator.generateSecret();return this.otpauth=Jn.authenticator.keyuri("","Ride The Lightning (RTL)",b),b}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,Cn.oz)({payload:on(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,$s.s)(1)).subscribe(b=>{"ERROR"!==b?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onCopySecret(b){this.snackBar.open("Secret code "+this.secretFormGroup.controls.secret.value+" copied.")}onVerifyToken(){if(this.appConfig?.enable2FA)this.appConfig.enable2FA=!1,this.appConfig.secret2FA="",this.store.dispatch((0,Cn.rc)({payload:{showSnackBar:!1,message:"Two factor authentication disabled successfully.",config:this.appConfig}})),this.generateSecret(),this.isTokenValid=!0;else{if(!this.tokenFormGroup.controls.token.value)return!0;if(this.isTokenValid=Jn.authenticator.check(this.tokenFormGroup.controls.token.value,this.secretFormGroup.controls.secret.value),!this.isTokenValid)return this.tokenFormGroup.controls.token.setErrors({notValid:!0}),!0;this.appConfig.enable2FA=!0,this.appConfig.secret2FA=this.secretFormGroup.controls.secret.value,this.store.dispatch((0,Cn.rc)({payload:{showSnackBar:!1,message:"Two factor authentication enabled successfully.",config:this.appConfig}})),this.tokenFormGroup.controls.token.setValue("")}this.flgValidated=!0}stepSelectionChanged(b){switch(b.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password";break;case 1:case 2:this.passwordFormLabel="User authenticated successfully"}b.selectedIndex{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Sn.CP),t.rXU(Sn.Vh),t.rXU(Ri.il),t.rXU(Wi.ze),t.rXU(_r.H),t.rXU(ys.UG))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-two-factor-auth"]],viewQuery:function(U,G){if(1&U&&t.GBs(Pl,5),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.stepper=Oe.first)}},decls:30,vars:11,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","15","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","type","password","tabindex","1","formControlName","password","required",""],[4,"ngIf"],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start"],[3,"value","size","errorCorrectionLevel",4,"ngIf"],["fxFlex","100",1,"w-100","alert","alert-info"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch"],["autoFocus","","matInput","","type","text","tabindex","4","formControlName","secret","required",""],["matSuffix","","rtlClipboard","",3,"copied","icon","payload"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","6","type","button","matStepperNext",""],[3,"value","size","errorCorrectionLevel"],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["fxLayout","column",4,"ngIf"],["autoFocus","","matInput","","type","text","tabindex","7","formControlName","token","required",""],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxFlex","100",1,"w-100","alert","alert-warn"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Setup Two Factor Authentication"),t.k0s()(),t.j41(6,"button",6),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),t.bIt("selectionChange",function(Lt){return t.eBV(Oe),t.Njj(G.stepSelectionChanged(Lt))}),t.j41(12,"mat-step",10)(13,"form",11),t.DNE(14,Ko,1,1,"ng-template",12),t.j41(15,"div",1)(16,"mat-form-field",13)(17,"mat-label"),t.EFF(18,"Password"),t.k0s(),t.nrm(19,"input",14),t.DNE(20,Ds,2,0,"mat-error",15),t.k0s()(),t.j41(21,"div",16)(22,"button",17),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onAuthenticate())}),t.EFF(23,"Confirm"),t.k0s()()()(),t.DNE(24,Vl,19,8,"mat-step",18)(25,zu,5,4,"mat-step",19)(26,Y3,5,4,"mat-step",19),t.k0s(),t.j41(27,"div",20)(28,"button",21),t.EFF(29),t.k0s()()()()()()}2&U&&(t.R7$(6),t.Y8G("mat-dialog-close",!1),t.R7$(4),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",G.passwordFormGroup)("editable",G.flgEditable),t.R7$(),t.Y8G("formGroup",G.passwordFormGroup),t.R7$(7),t.Y8G("ngIf",null==G.passwordFormGroup||null==G.passwordFormGroup.controls||null==G.passwordFormGroup.controls.password||null==G.passwordFormGroup.controls.password.errors?null:G.passwordFormGroup.controls.password.errors.required),t.R7$(4),t.Y8G("ngIf",!G.showDisableStepper),t.R7$(),t.Y8G("ngIf",!G.showDisableStepper),t.R7$(),t.Y8G("ngIf",G.showDisableStepper),t.R7$(2),t.Y8G("mat-dialog-close",!1),t.R7$(),t.JRh(G.flgValidated&&G.isTokenValid?"Close":"Cancel"))},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.j4,Wi.JD,ya.aY,$i.DJ,$i.sA,$i.UI,Sn.tx,ve.$z,mr.m2,mr.MM,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Pe.yw,Ka.V5,Ka.Ti,Ka.M6,Ka.F7,ls.Um,xc.U,Ot.N]})}return O})();var Wt=g(4416),qa=g(3202),Pc=g(1997);const y0=["authForm"];function Bu(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Current password is required."),t.k0s())}function al(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.errorMsg)}}function x0(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.errorConfirmMsg)}}function Z1(O,H){if(1&O){const b=t.RV6();t.j41(0,"form",12,0)(2,"div",13),t.nrm(3,"fa-icon",6),t.j41(4,"span",7),t.EFF(5,"Password"),t.k0s()(),t.j41(6,"mat-form-field")(7,"mat-label"),t.EFF(8,"Current Password"),t.k0s(),t.j41(9,"input",14),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG();return t.DH7(Oe.currPassword,G)||(Oe.currPassword=G),t.Njj(G)}),t.k0s(),t.DNE(10,Bu,2,0,"mat-error",15),t.k0s(),t.j41(11,"mat-form-field")(12,"mat-label"),t.EFF(13,"New Password"),t.k0s(),t.j41(14,"input",16),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG();return t.DH7(Oe.newPassword,G)||(Oe.newPassword=G),t.Njj(G)}),t.k0s(),t.DNE(15,al,2,1,"mat-error",15),t.k0s(),t.j41(16,"mat-form-field")(17,"mat-label"),t.EFF(18,"Confirm New Password"),t.k0s(),t.j41(19,"input",17),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG();return t.DH7(Oe.confirmPassword,G)||(Oe.confirmPassword=G),t.Njj(G)}),t.k0s(),t.DNE(20,x0,2,1,"mat-error",15),t.k0s(),t.j41(21,"div",18)(22,"button",19),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onResetPassword())}),t.EFF(23,"Reset"),t.k0s(),t.j41(24,"button",20),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onChangePassword())}),t.EFF(25,"Change Password"),t.k0s()()()}if(2&O){const b=t.XpG();t.R7$(3),t.Y8G("icon",b.faLock),t.R7$(6),t.R50("ngModel",b.currPassword),t.R7$(),t.Y8G("ngIf",!b.currPassword),t.R7$(4),t.R50("ngModel",b.newPassword),t.R7$(),t.Y8G("ngIf",b.matchOldAndNewPasswords()),t.R7$(4),t.R50("ngModel",b.confirmPassword),t.R7$(),t.Y8G("ngIf",b.matchNewPasswords())}}let Bd=(()=>{class O{constructor(b,U,G,Oe,It){this.logger=b,this.store=U,this.actions=G,this.router=Oe,this.sessionService=It,this.faInfoCircle=nn.iW_,this.faUserLock=nn.aAJ,this.faUserClock=nn.ld_,this.faLock=nn.DW4,this.currPassword="",this.newPassword="",this.confirmPassword="",this.errorMsg="",this.errorConfirmMsg="",this.initializeNodeData=!1,this.unSubs=[new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.initializeNodeData="true"===this.sessionService.getItem("defaultPassword"),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.appConfig=b,this.logger.info(this.appConfig)}),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.selNode=b}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(b=>b.type===Wt.aU.RESET_PASSWORD_RES)).subscribe(b=>{if(Wt.Ah.includes(this.currPassword.toLowerCase()))switch(this.selNode.lnImplementation?.toUpperCase()){case"CLN":this.router.navigate(["/cln/home"]);break;case"ECL":this.router.navigate(["/ecl/home"]);break;default:this.router.navigate(["/lnd/home"])}this.form&&this.form.resetForm()})}onChangePassword(){if(!this.currPassword||!this.newPassword||!this.confirmPassword||this.currPassword===this.newPassword||this.newPassword!==this.confirmPassword||Wt.Ah.includes(this.newPassword.toLowerCase()))return!0;this.store.dispatch((0,Cn.xw)({payload:{currPassword:on(this.currPassword).toString(),newPassword:on(this.newPassword).toString()}}))}matchOldAndNewPasswords(){let b=!1;return this.form&&this.form.controls&&this.form.controls.newpassword&&(this.newPassword?""!==this.currPassword&&""!==this.newPassword&&this.currPassword===this.newPassword?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg="Old and New password cannot be same.",b=!0):Wt.Ah.includes(this.newPassword.toLowerCase())?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg=Wt.Ah?.reduce((U,G,Oe)=>Oe{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il),t.rXU(lt.En),t.rXU(En.Ix),t.rXU(qa.Q))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-auth-settings"]],viewQuery:function(U,G){if(1&U&&t.GBs(y0,5),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.form=Oe.first)}},decls:15,vars:4,consts:[["authForm","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","page-sub-title-container mt-1",4,"ngIf"],[1,"my-2"],["fxLayout","column","fxLayoutAlign","start stretch"],[1,"mb-1","settings-container","page-sub-title-container","mt-1"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"alert","alert-info"],[1,"mt-1","mr-1","alert-icon",3,"icon"],[1,"mt-1"],["mat-flat-button","","color","primary","tabindex","6",1,"mb-2",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["fxLayout","row","fxLayoutAlign","start start",1,"mb-2"],["autoFocus","","matInput","","type","password","id","currpassword","name","currpassword","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["matInput","","type","password","id","newpassword","name","newpassword","tabindex","2","required","",3,"ngModelChange","ngModel"],["matInput","","type","password","id","confirmpassword","name","confirmpassword","tabindex","3","required","",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","start start",1,"mt-1"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","5","type","submit",3,"click"]],template:function(U,G){1&U&&(t.j41(0,"div",1),t.DNE(1,Z1,26,7,"form",2),t.nrm(2,"mat-divider",3),t.j41(3,"div",4)(4,"div",5),t.nrm(5,"fa-icon",6),t.j41(6,"span",7),t.EFF(7,"Two Factor Authentication"),t.k0s()(),t.j41(8,"div",8),t.nrm(9,"fa-icon",9),t.j41(10,"span"),t.EFF(11,"Protect your account from unauthorized access by requiring a second authentication method in addition to your password."),t.k0s()(),t.j41(12,"div",10)(13,"button",11),t.bIt("click",function(){return G.on2FAuth()}),t.EFF(14),t.k0s()()()()),2&U&&(t.R7$(),t.Y8G("ngIf",null==G.appConfig?null:G.appConfig.allowPasswordUpdate),t.R7$(4),t.Y8G("icon",G.faUserClock),t.R7$(4),t.Y8G("icon",G.faInfoCircle),t.R7$(5),t.JRh(G.appConfig.enable2FA?"Disable 2FA":"Enable 2FA"))},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Pc.q,Ot.N]})}return O})();var wc=g(3902);function ol(O,H){1&O&&t.nrm(0,"mat-divider",7)}function Nn(O,H){if(1&O&&(t.j41(0,"div",4)(1,"pre",5),t.EFF(2),t.nI1(3,"json"),t.k0s(),t.DNE(4,ol,1,0,"mat-divider",6),t.k0s()),2&O){const b=t.XpG();t.R7$(2),t.JRh(t.bMT(3,2,b.configData)),t.R7$(2),t.Y8G("ngIf",""!==b.configData)}}function zl(O,H){if(1&O&&(t.j41(0,"h2"),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b)}}function J1(O,H){if(1&O&&(t.j41(0,"h4",14),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b)}}function C0(O,H){1&O&&t.nrm(0,"mat-divider",15),2&O&&t.Y8G("inset",!0)}function K3(O,H){if(1&O&&(t.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),t.DNE(2,zl,2,1,"h2",10),t.k0s(),t.j41(3,"mat-card-subtitle",11),t.DNE(4,J1,2,1,"h4",12),t.k0s(),t.DNE(5,C0,1,1,"mat-divider",13),t.k0s()),2&O){const b=H.$implicit;t.R7$(2),t.Y8G("ngIf",b.indexOf("[")>=0),t.R7$(2),t.Y8G("ngIf",b.indexOf("[")<0),t.R7$(),t.Y8G("ngIf",b.indexOf("[")<0)}}function Ud(O,H){if(1&O&&(t.j41(0,"div",8)(1,"mat-list"),t.DNE(2,K3,6,3,"mat-list-item",9),t.k0s()()),2&O){const b=t.XpG();t.R7$(2),t.Y8G("ngForOf",b.configData)}}let Uu=(()=>{class O{constructor(b,U,G){this.store=b,this.rtlEffects=U,this.router=G,this.configData="",this.fileFormat="INI",this.faCog=nn.dB,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.dispatch((0,Cn.Dz)({payload:"bitcoind"})),this.rtlEffects.showLnConfig.pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{const U=b.data;this.fileFormat=b.format,this.configData=""===U||!U||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==U&&U&&"JSON"===this.fileFormat?U:"":U.split("\n")})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(_r.H),t.rXU(En.Ix))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-bitcoin-config"]],decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxFlex","100","class","mb-6",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100",1,"mb-6"],[1,"pre-wrap"],["class","my-1",4,"ngIf"],[1,"my-1"],["fxFlex","100"],[4,"ngFor","ngForOf"],[4,"ngIf"],[1,"m-0"],["class","ml-4",4,"ngIf"],[3,"inset",4,"ngIf"],[1,"ml-4"],[3,"inset"]],template:function(U,G){1&U&&(t.j41(0,"div",0)(1,"div",1),t.DNE(2,Nn,5,4,"div",2)(3,Ud,3,1,"div",3),t.k0s()()),2&U&&(t.R7$(2),t.Y8G("ngIf",""!==G.configData&&"JSON"===G.fileFormat),t.R7$(),t.Y8G("ngIf",""!==G.configData&&("INI"===G.fileFormat||"HOCON"===G.fileFormat)))},dependencies:[ri.Sq,ri.bT,$i.DJ,$i.sA,$i.UI,mr.Lc,wc.jt,wc.YE,Pc.q,ri.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})();function Gu(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Password is required."),t.k0s())}let ju=(()=>{class O{constructor(b,U,G){this.dialogRef=b,this.store=U,this.rtlEffects=G,this.password="",this.isAuthenticated=!1,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.rtlEffects.isAuthorizedRes.pipe((0,$s.s)(1)).subscribe(b=>{"ERROR"!==b?(this.isAuthenticated=!0,this.store.dispatch((0,Cn.R$)({payload:this.isAuthenticated}))):this.isAuthenticated=!1})}onAuthenticate(){if(!this.password)return!0;this.store.dispatch((0,Cn.oz)({payload:on(this.password)}))}onClose(){this.store.dispatch((0,Cn.R$)({payload:this.isAuthenticated}))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Sn.CP),t.rXU(Ri.il),t.rXU(_r.H))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-is-authorized"]],decls:18,vars:2,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","row",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["autoFocus","","matInput","","type","password","id","password","name","password","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","2","type","submit","default","",3,"click"]],template:function(U,G){1&U&&(t.j41(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),t.EFF(5,"Authenticate with your RTL Password"),t.k0s()(),t.j41(6,"button",5),t.bIt("click",function(){return G.onClose()}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",6)(9,"form",7)(10,"mat-form-field")(11,"mat-label"),t.EFF(12,"Password"),t.k0s(),t.j41(13,"input",8),t.mxI("ngModelChange",function(It){return t.DH7(G.password,It)||(G.password=It),It}),t.k0s(),t.DNE(14,Gu,2,0,"mat-error",9),t.k0s(),t.j41(15,"div",10)(16,"button",11),t.bIt("click",function(){return G.onAuthenticate()}),t.EFF(17,"Confirm"),t.k0s()()()()()()),2&U&&(t.R7$(13),t.R50("ngModel",G.password),t.R7$(),t.Y8G("ngIf",!G.password))},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,$i.DJ,$i.sA,$i.UI,ve.$z,mr.m2,mr.MM,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Ot.N]})}return O})();const sl=()=>({initial:!1});function $3(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",13),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.activeLink=G.links[2].link)}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[2].link),t.Y8G("active",b.activeLink===b.links[2].link)("state",t.lJ4(4,sl)),t.R7$(),t.JRh(b.links[2].name)}}function Q3(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",14),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.activeLink=G.links[3].link)}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[3].link),t.Y8G("active",b.activeLink===b.links[3].link),t.R7$(),t.JRh(b.links[3].name)}}function Wu(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",15),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.showLnConfigClicked())}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.Y8G("active",b.activeLink===b.links[4].link),t.R7$(),t.JRh(b.links[4].name)}}let Z3=(()=>{class O{constructor(b,U,G,Oe){this.store=b,this.router=U,this.rtlEffects=G,this.activatedRoute=Oe,this.faTools=nn.nsx,this.showLnConfig=!1,this.lnImplementationStr="",this.links=[{link:"nodesettings",name:"Node Settings"},{link:"pglayout",name:"Page Layout"},{link:"services",name:"Services"},{link:"experimental",name:"Experimental"},{link:"lnconfig",name:this.lnImplementationStr}],this.activeLink="",this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){const b=this.links.find(U=>this.router.url.includes(U.link));this.activeLink=b?b.link:this.links[0].link,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,vr.p)(U=>U instanceof En.gx)).subscribe({next:U=>{const G=this.links.find(Oe=>U.urlAfterRedirects.includes(Oe.link));this.activeLink=G?G.link:this.links[0].link}}),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[1])).subscribe(U=>{this.appConfig=U}),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[2])).subscribe(U=>{switch(this.showLnConfig=!1,this.selNode=U,this.selNode.lnImplementation?.toUpperCase()){case"CLN":this.lnImplementationStr="Core Lightning Config";break;case"ECL":this.lnImplementationStr="Eclair Config";break;default:this.lnImplementationStr="LND Config"}this.selNode.authentication&&this.selNode.authentication.configPath&&""!==this.selNode.authentication.configPath.trim()&&(this.links[4].name=this.lnImplementationStr,this.showLnConfig=!0)})}showLnConfigClicked(){this.appConfig.SSO.rtlSSO?(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute})):(this.store.dispatch((0,Cn.xO)({payload:{maxWidth:"50rem",data:{component:ju}}})),this.rtlEffects.closeAlert.pipe((0,dn.Q)(this.unSubs[3])).subscribe(b=>{b&&(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute}))}))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(En.Ix),t.rXU(_r.H),t.rXU(En.nX))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-node-config"]],decls:19,vars:11,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","state","click",4,"ngIf"],["tabindex","4","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["tabindex","5","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink","state"],["tabindex","4","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","5","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3,"Node Config"),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.activeLink=G.links[0].link)}),t.EFF(9),t.k0s(),t.j41(10,"div",8),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.activeLink=G.links[1].link)}),t.EFF(11),t.k0s(),t.DNE(12,$3,2,5,"div",9)(13,Q3,2,3,"div",10)(14,Wu,2,2,"div",11),t.k0s(),t.nrm(15,"mat-tab-nav-panel",null,0),t.j41(17,"div",12),t.nrm(18,"router-outlet"),t.k0s()()()()}if(2&U){const Oe=t.sdS(16);t.R7$(),t.Y8G("icon",G.faTools),t.R7$(6),t.Y8G("tabPanel",Oe),t.R7$(),t.FS9("routerLink",G.links[0].link),t.Y8G("active",G.activeLink===G.links[0].link),t.R7$(),t.JRh(G.links[0].name),t.R7$(),t.FS9("routerLink",G.links[1].link),t.Y8G("active",G.activeLink===G.links[1].link),t.R7$(),t.JRh(G.links[1].name),t.R7$(),t.Y8G("ngIf","ECL"!==(null==G.selNode||null==G.selNode.lnImplementation?null:G.selNode.lnImplementation.toUpperCase())),t.R7$(),t.Y8G("ngIf","CLN"===(null==G.selNode||null==G.selNode.lnImplementation?null:G.selNode.lnImplementation.toUpperCase())),t.R7$(),t.Y8G("ngIf",G.showLnConfig)}},dependencies:[ri.bT,ya.aY,$i.DJ,$i.sA,$i.UI,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.n3,En.Wk]})}return O})();function J3(O,H){1&O&&t.nrm(0,"mat-divider",7)}function Ii(O,H){if(1&O&&(t.j41(0,"div",4)(1,"pre",5),t.EFF(2),t.nI1(3,"json"),t.k0s(),t.DNE(4,J3,1,0,"mat-divider",6),t.k0s()),2&O){const b=t.XpG();t.R7$(2),t.JRh(t.bMT(3,2,b.configData)),t.R7$(2),t.Y8G("ngIf",""!==b.configData)}}function ur(O,H){if(1&O&&(t.j41(0,"h2"),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b)}}function w0(O,H){if(1&O&&(t.j41(0,"h4",14),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b)}}function q1(O,H){1&O&&t.nrm(0,"mat-divider",15),2&O&&t.Y8G("inset",!0)}function jr(O,H){if(1&O&&(t.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),t.DNE(2,ur,2,1,"h2",10),t.k0s(),t.j41(3,"mat-card-subtitle",11),t.DNE(4,w0,2,1,"h4",12),t.k0s(),t.DNE(5,q1,1,1,"mat-divider",13),t.k0s()),2&O){const b=H.$implicit;t.R7$(2),t.Y8G("ngIf",b.indexOf("[")>=0),t.R7$(2),t.Y8G("ngIf",b.indexOf("[")<0),t.R7$(),t.Y8G("ngIf",b.indexOf("[")<0)}}function M0(O,H){if(1&O&&(t.j41(0,"div",8)(1,"mat-list"),t.DNE(2,jr,6,3,"mat-list-item",9),t.k0s()()),2&O){const b=t.XpG();t.R7$(2),t.Y8G("ngForOf",b.configData)}}let Bl=(()=>{class O{constructor(b,U,G){this.store=b,this.rtlEffects=U,this.router=G,this.configData="",this.fileFormat="INI",this.faCog=nn.dB,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.dispatch((0,Cn.Dz)({payload:"ln"})),this.rtlEffects.showLnConfig.pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{const U=b.data;this.fileFormat=b.format,this.configData=""===U||!U||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==U&&U&&"JSON"===this.fileFormat?U:"":U.split("\n")})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(_r.H),t.rXU(En.Ix))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-lnp-config"]],decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxFlex","100","class","mb-6",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100",1,"mb-6"],[1,"pre-wrap"],["class","my-1",4,"ngIf"],[1,"my-1"],["fxFlex","100"],[4,"ngFor","ngForOf"],[4,"ngIf"],[1,"m-0"],["class","ml-4",4,"ngIf"],[3,"inset",4,"ngIf"],[1,"ml-4"],[3,"inset"]],template:function(U,G){1&U&&(t.j41(0,"div",0)(1,"div",1),t.DNE(2,Ii,5,4,"div",2)(3,M0,3,1,"div",3),t.k0s()()),2&U&&(t.R7$(2),t.Y8G("ngIf",""!==G.configData&&"JSON"===G.fileFormat),t.R7$(),t.Y8G("ngIf",""!==G.configData&&("INI"===G.fileFormat||"HOCON"===G.fileFormat)))},dependencies:[ri.Sq,ri.bT,$i.DJ,$i.sA,$i.UI,mr.Lc,wc.jt,wc.YE,Pc.q,ri.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})();var Ia=g(2571),ds=g(6038),Ra=g(9454),Gd=g(5951),e2=g(450);const Sp=O=>({skin:!0,"selected-color":O});function Xu(O,H){if(1&O&&(t.j41(0,"span",41),t.nrm(1,"fa-icon",42),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("icon",b.symbol)}}function Yu(O,H){if(1&O&&(t.j41(0,"span",41),t.nrm(1,"span",43),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("innerHTML",b.symbol,t.npT)}}function jd(O,H){if(1&O&&(t.j41(0,"mat-option",39),t.DNE(1,Xu,2,1,"span",40)(2,Yu,2,1,"span",40),t.EFF(3),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b.id),t.R7$(),t.Y8G("ngIf",b&&"FA"===b.iconType),t.R7$(),t.Y8G("ngIf",b&&"SVG"===b.iconType),t.R7$(),t.Lme(" ",b.name," (",b.id,") ")}}function hs(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Currency unit is required."),t.k0s())}function tc(O,H){if(1&O&&(t.j41(0,"mat-radio-button",44),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.Y8G("value",b)("checked",U.selNode.settings.userPersona===b),t.R7$(),t.SpI(" ",t.bMT(2,3,b)," ")}}function Ku(O,H){if(1&O&&(t.j41(0,"mat-radio-button",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b),t.R7$(),t.SpI("",b.name," ")}}function us(O,H){if(1&O){const b=t.RV6();t.j41(0,"span",46)(1,"div",47),t.nI1(2,"lowercase"),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG();return t.Njj(Oe.changeThemeColor(G.id))}),t.k0s(),t.EFF(3),t.k0s()}if(2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.HbH(t.bMT(2,4,b.id)),t.Y8G("ngClass",t.eq3(6,Sp,U.selectedThemeColor===b.id)),t.R7$(2),t.SpI(" ",b.name," ")}}let Mc=(()=>{class O{constructor(b,U,G,Oe){this.logger=b,this.commonService=U,this.store=G,this.sanitizer=Oe,this.faBarsStaggered=nn.o97,this.faExclamationTriangle=nn.zpE,this.faMoneyBillAlt=nn.iy8,this.faPaintBrush=nn._eQ,this.faInfoCircle=nn.iW_,this.faEyeSlash=nn.k6j,this.userPersonas=[Wt.HW.OPERATOR,Wt.HW.MERCHANT],this.currencyUnits=Wt.Zi,this.themeModes=Wt.Bv.modes,this.themeColors=Wt.Bv.themes,this.selectedThemeMode=Wt.Bv.modes[0],this.selectedThemeColor=Wt.Bv.themes[0].id,this.currencyUnit="BTC",this.smallerCurrencyUnit="Sats",this.showSettingOption=!0,this.screenSize="",this.screenSizeEnum=Wt.f7,this.unSubs=[new Gi.B,new Gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.currencyUnits.map(b=>("SVG"===b.iconType&&"string"==typeof b.symbol&&(b.symbol=b.symbol.replace('{this.selNode=JSON.parse(JSON.stringify(b)),this.selectedThemeMode=this.themeModes.find(U=>this.selNode.settings.themeMode===U.id)||this.themeModes[0],this.selectedThemeColor=this.selNode.settings.themeColor,this.selNode.settings.fiatConversion||(this.selNode.settings.currencyUnit=""),this.previousSettings=JSON.parse(JSON.stringify(this.selNode.settings)),this.logger.info(b)})}toggleSettings(b,U){this.selNode.settings[b]=!this.selNode.settings[b]}changeThemeColor(b){this.selectedThemeColor=b,this.selNode.settings.themeColor=b}chooseThemeMode(){this.selNode.settings.themeMode=this.selectedThemeMode.id}onFiatConversionChange(b){this.selNode.settings.fiatConversion||delete this.selNode.settings.currencyUnit}onUpdateNodeSettings(){if(this.selNode.settings.fiatConversion&&!this.selNode.settings.currencyUnit)return!0;this.selNode.settings.blockExplorerUrl=this.selNode.settings.blockExplorerUrl.replace(/\/$/,""),this.logger.info(this.selNode.settings),this.store.dispatch((0,Cn.T$)({payload:this.selNode}))}onResetSettings(){const b=this.selNode.index||-1;this.selNode.settings=this.previousSettings,this.selectedThemeMode=this.themeModes.find(U=>U.id===this.previousSettings.themeMode)||this.themeModes[0],this.selectedThemeColor=this.previousSettings.themeColor,this.store.dispatch((0,Cn.Qi)({payload:{uiMessage:Wt.MZ.NO_SPINNER,prevLnNodeIndex:+b,currentLnNode:this.selNode,isInitialSetup:!0}}))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(e.up))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-node-settings"]],decls:100,vars:21,consts:[["form","ngForm"],["currencyUnit","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container"],["displayMode","flat","multi","false"],["fxLayout","column",1,"flat-expansion-panel","mt-1"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["href","https://mempool.space/","target","blank"],["fxLayout","row wrap","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100"],["matInput","","name","blockExplorerUrl",3,"ngModelChange","ngModel"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-1"],["tabindex","1","color","primary","name","unannouncedChannels",3,"ngModelChange","change","ngModel"],["href","https://www.blockchain.com/api/exchange_rates_api","target","blank"],["tabindex","2","color","primary","name","fiatConversion",1,"mr-2",3,"ngModelChange","change","ngModel"],["fxFlex","25"],["autoFocus","","tabindex","3","name","currencyUnit",3,"ngModelChange","disabled","required","ngModel"],[3,"value",4,"ngFor","ngForOf"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-0"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100"],["color","primary","tabindex","1","name","userPersona",1,"radio-group",3,"ngModelChange","ngModel"],["class","radio-text mr-4",3,"value","checked",4,"ngFor","ngForOf"],[1,"mt-1"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start"],["color","primary","name","themeMode",1,"radio-group",3,"ngModelChange","change","ngModel"],["tabindex","5","class","radio-text mr-4",3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-xs","start stretch"],["fxLayout","column","fxFlex.gt-xs","50","fxFlex.gt-md","40","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","row","class","theme-name",4,"ngFor","ngForOf"],["fxLayout","column","fxLayoutAlign","start start",1,"mt-1"],["fxLayout","row"],["mat-stroked-button","","color","primary","tabindex","10",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","11",3,"click"],[3,"value"],["class","mr-1",4,"ngIf"],[1,"mr-1"],[3,"icon"],["fxLayoutAlign","center center",3,"innerHTML"],[1,"radio-text","mr-4",3,"value","checked"],["tabindex","5",1,"radio-text","mr-4",3,"value"],["fxLayout","row",1,"theme-name"],["tabindex","9",3,"click","ngClass"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",2)(1,"form",3,0)(3,"mat-accordion",4)(4,"mat-expansion-panel",5)(5,"mat-expansion-panel-header")(6,"mat-panel-title"),t.nrm(7,"fa-icon",6),t.j41(8,"span",7),t.EFF(9,"Block Explorer"),t.k0s()()(),t.j41(10,"div",8)(11,"div",9),t.nrm(12,"fa-icon",10),t.j41(13,"span"),t.EFF(14,"Configure your own blockchain explorer url or "),t.j41(15,"strong")(16,"a",11),t.EFF(17,"mempool.space"),t.k0s()(),t.EFF(18," will be used."),t.k0s()(),t.j41(19,"div",12)(20,"mat-form-field",13)(21,"mat-label"),t.EFF(22,"Block Explorer URL"),t.k0s(),t.j41(23,"input",14),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.blockExplorerUrl,Lt)||(G.selNode.settings.blockExplorerUrl=Lt),t.Njj(Lt)}),t.k0s(),t.j41(24,"mat-hint"),t.EFF(25,"Blockchain explorer URL, eg. https://mempool.space or https://blockstream.info"),t.k0s()()()()(),t.j41(26,"mat-expansion-panel",5)(27,"mat-expansion-panel-header")(28,"mat-panel-title"),t.nrm(29,"fa-icon",6),t.j41(30,"span",7),t.EFF(31,"Open Unannounced Channels"),t.k0s()()(),t.j41(32,"div",8)(33,"div",15),t.nrm(34,"fa-icon",10),t.j41(35,"span"),t.EFF(36,"Use this control to toggle setting which defaults to opening unannounced channels only."),t.k0s()(),t.j41(37,"div",12)(38,"mat-slide-toggle",16),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.unannouncedChannels,Lt)||(G.selNode.settings.unannouncedChannels=Lt),t.Njj(Lt)}),t.bIt("change",function(){return t.eBV(Oe),t.Njj(!G.selNode.settings.unannouncedChannels)}),t.EFF(39,"Open Unannounced Channels"),t.k0s()()()(),t.j41(40,"mat-expansion-panel",5)(41,"mat-expansion-panel-header")(42,"mat-panel-title"),t.nrm(43,"fa-icon",6),t.j41(44,"span",7),t.EFF(45,"Balance Display"),t.k0s()()(),t.j41(46,"div",8)(47,"div",9),t.nrm(48,"fa-icon",10),t.j41(49,"span"),t.EFF(50,"Fiat conversion calls "),t.j41(51,"strong")(52,"a",17),t.EFF(53,"Blockchain.com"),t.k0s()(),t.EFF(54," API to get conversion rates."),t.k0s()(),t.j41(55,"div",12)(56,"mat-slide-toggle",18),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.fiatConversion,Lt)||(G.selNode.settings.fiatConversion=Lt),t.Njj(Lt)}),t.bIt("change",function(Lt){return t.eBV(Oe),t.Njj(G.onFiatConversionChange(Lt))}),t.EFF(57,"Enable Fiat Conversion"),t.k0s(),t.j41(58,"mat-form-field",19)(59,"mat-label"),t.EFF(60,"Fiat Currency"),t.k0s(),t.j41(61,"mat-select",20,1),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.currencyUnit,Lt)||(G.selNode.settings.currencyUnit=Lt),t.Njj(Lt)}),t.DNE(63,jd,4,5,"mat-option",21),t.k0s(),t.DNE(64,hs,2,0,"mat-error",22),t.k0s()()()(),t.j41(65,"mat-expansion-panel",5)(66,"mat-expansion-panel-header")(67,"mat-panel-title"),t.nrm(68,"fa-icon",6),t.j41(69,"span",7),t.EFF(70,"Customization"),t.k0s()()(),t.j41(71,"div",8)(72,"div",23),t.nrm(73,"fa-icon",10),t.j41(74,"span"),t.EFF(75,"Dashboard layout will be tailored based on the role selected to better serve its needs."),t.k0s()(),t.j41(76,"div",24)(77,"h4"),t.EFF(78,"Dashboard Layout"),t.k0s(),t.j41(79,"mat-radio-group",25),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.userPersona,Lt)||(G.selNode.settings.userPersona=Lt),t.Njj(Lt)}),t.DNE(80,tc,3,5,"mat-radio-button",26),t.k0s()(),t.nrm(81,"mat-divider",27),t.j41(82,"div",28)(83,"h4"),t.EFF(84,"Mode"),t.k0s(),t.j41(85,"mat-radio-group",29),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selectedThemeMode,Lt)||(G.selectedThemeMode=Lt),t.Njj(Lt)}),t.bIt("change",function(){return t.eBV(Oe),t.Njj(G.chooseThemeMode())}),t.DNE(86,Ku,2,2,"mat-radio-button",30),t.k0s()(),t.nrm(87,"mat-divider",27),t.j41(88,"div",31)(89,"div",32)(90,"h4"),t.EFF(91,"Themes"),t.k0s(),t.j41(92,"div",33),t.DNE(93,us,4,8,"span",34),t.k0s()()()()()()(),t.j41(94,"div",35)(95,"div",36)(96,"button",37),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onResetSettings())}),t.EFF(97,"Reset"),t.k0s(),t.j41(98,"button",38),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdateNodeSettings())}),t.EFF(99,"Update"),t.k0s()()()()}2&U&&(t.R7$(7),t.Y8G("icon",G.faBarsStaggered),t.R7$(5),t.Y8G("icon",G.faExclamationTriangle),t.R7$(11),t.R50("ngModel",G.selNode.settings.blockExplorerUrl),t.R7$(6),t.Y8G("icon",G.faEyeSlash),t.R7$(5),t.Y8G("icon",G.faInfoCircle),t.R7$(4),t.R50("ngModel",G.selNode.settings.unannouncedChannels),t.R7$(5),t.Y8G("icon",G.faMoneyBillAlt),t.R7$(5),t.Y8G("icon",G.faExclamationTriangle),t.R7$(8),t.R50("ngModel",G.selNode.settings.fiatConversion),t.R7$(5),t.Y8G("disabled",!G.selNode.settings.fiatConversion)("required",G.selNode.settings.fiatConversion),t.R50("ngModel",G.selNode.settings.currencyUnit),t.R7$(2),t.Y8G("ngForOf",G.currencyUnits),t.R7$(),t.Y8G("ngIf",G.selNode.settings.fiatConversion&&!G.selNode.settings.currencyUnit),t.R7$(4),t.Y8G("icon",G.faPaintBrush),t.R7$(5),t.Y8G("icon",G.faInfoCircle),t.R7$(6),t.R50("ngModel",G.selNode.settings.userPersona),t.R7$(),t.Y8G("ngForOf",G.userPersonas),t.R7$(5),t.R50("ngModel",G.selectedThemeMode),t.R7$(),t.Y8G("ngForOf",G.themeModes),t.R7$(7),t.Y8G("ngForOf",G.themeColors))},dependencies:[ri.YU,ri.Sq,ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ve.$z,Ra.BS,Ra.GK,Ra.Z2,Ra.WN,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,Pc.q,Gd.VT,Gd._g,xe.VO,Be.wT,e2.sG,ft.Ld,Ot.N,ri.GH,ri.PV],styles:["h4[_ngcontent-%COMP%]{margin:.75rem 0 .5rem}.theme-name[_ngcontent-%COMP%]{min-width:10rem}@media only screen and (max-width: 37.5em){.theme-name[_ngcontent-%COMP%]{min-width:unset}}.skin[_ngcontent-%COMP%]{width:1.25rem;height:1.25rem;border-radius:50%;cursor:pointer;margin-right:.5rem}.skin.selected-color[_ngcontent-%COMP%]{width:1rem;height:1rem;border:2px solid}.skin.purple[_ngcontent-%COMP%]{background-color:#5e4ea5}.skin.indigo[_ngcontent-%COMP%]{background-color:#3f51b5}.skin.teal[_ngcontent-%COMP%]{background-color:#00695c}.skin.pink[_ngcontent-%COMP%]{background-color:#d81b60}.skin.yellow[_ngcontent-%COMP%]{background-color:#a1842c}"]})}return O})();var dd=g(9584),t2=g(3536),xa=g(8430),Pa=g(190),n2=g(2730),Ca=g(5428),Vc=g(9213),ic=g(4823),Ul=g(2929);const zs=O=>({error:O}),E0=O=>({"error-border":O}),Wd=O=>({"ml-minus-1":O}),$u=O=>({"error-border p-2":O});function Gl(O,H){if(1&O&&t.eu8(0,14),2&O){const b=t.XpG(),U=t.sdS(18);t.Y8G("ngTemplateOutlet",U)("ngTemplateOutletContext",t.eq3(2,zs,b.errorMessage))}}function Xd(O,H){if(1&O&&(t.j41(0,"mat-option",31),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b),t.R7$(),t.SpI(" ",b," ")}}function S0(O,H){if(1&O&&(t.j41(0,"mat-option",31),t.EFF(1),t.nI1(2,"camelCaseWithSpaces"),t.nI1(3,"camelcaseWithReplace"),t.k0s()),2&O){const b=H.$implicit,U=t.XpG(3);t.Y8G("value",b),t.R7$(),t.SpI(" ","ECL"===U.selNode.lnImplementation?t.bMT(2,2,b):t.i5U(3,4,b,"_")," ")}}function Qu(O,H){if(1&O&&(t.j41(0,"mat-option",31),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b),t.R7$(),t.SpI(" ","desc"===b?"Descending":"Ascending"," ")}}function Va(O,H){if(1&O&&(t.j41(0,"mat-option",34),t.EFF(1),t.nI1(2,"camelCaseWithSpaces"),t.nI1(3,"camelcaseWithReplace"),t.k0s()),2&O){const b=H.$implicit,U=t.XpG(2).$implicit,G=t.XpG(2);t.Y8G("value",b.column)("disabled",U.columnSelection.length<=2&&U.columnSelection.includes(b.column)),t.R7$(),t.SpI(" ",b.label?b.label:"ECL"===G.selNode.lnImplementation?t.bMT(2,3,b.column):t.i5U(3,5,b.column,"_")," ")}}function Hc(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-form-field",32)(1,"mat-label"),t.EFF(2,"Column selection (Desktop Resolution)"),t.k0s(),t.j41(3,"mat-select",33),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG().$implicit;return t.DH7(Oe.columnSelection,G)||(Oe.columnSelection=G),t.Njj(G)}),t.bIt("selectionChange",function(){t.eBV(b);const G=t.XpG().$implicit,Oe=t.XpG(2);return t.Njj(Oe.oncolumnSelectionChange(G))}),t.DNE(4,Va,4,8,"mat-option",28),t.k0s()()}if(2&O){const b=t.XpG().$implicit,U=t.XpG().$implicit,G=t.XpG();t.R7$(3),t.FCK("name","",U.pageId,"",b.tableId,"-columns-selection"),t.R50("ngModel",b.columnSelection),t.R7$(),t.Y8G("ngForOf",G.nodePageDefs[U.pageId][b.tableId].allowedColumns)}}function Pr(O,H){if(1&O&&(t.j41(0,"mat-option",34),t.EFF(1),t.nI1(2,"camelCaseWithSpaces"),t.nI1(3,"camelcaseWithReplace"),t.k0s()),2&O){const b=H.$implicit,U=t.XpG().$implicit,G=t.XpG(2);t.Y8G("value",b.column)("disabled",U.columnSelectionSM.length<=1&&U.columnSelectionSM.includes(b.column)||U.columnSelectionSM.length>=3&&!U.columnSelectionSM.includes(b.column)),t.R7$(),t.SpI(" ",b.label?b.label:"ECL"===G.selNode.lnImplementation?t.bMT(2,3,b.column):t.i5U(3,5,b.column,"_")," ")}}function T0(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",17)(1,"div",18)(2,"span",19),t.EFF(3),t.nI1(4,"camelcaseWithReplace"),t.k0s(),t.j41(5,"mat-form-field",20)(6,"mat-label"),t.EFF(7,"Records/Page"),t.k0s(),t.j41(8,"mat-select",21),t.mxI("ngModelChange",function(G){const Oe=t.eBV(b).$implicit;return t.DH7(Oe.recordsPerPage,G)||(Oe.recordsPerPage=G),t.Njj(G)}),t.DNE(9,Xd,2,2,"mat-option",22),t.k0s()(),t.j41(10,"mat-form-field",20)(11,"mat-label"),t.EFF(12,"Sort By"),t.k0s(),t.j41(13,"mat-select",23),t.mxI("ngModelChange",function(G){const Oe=t.eBV(b).$implicit;return t.DH7(Oe.sortBy,G)||(Oe.sortBy=G),t.Njj(G)}),t.DNE(14,S0,4,7,"mat-option",22),t.k0s()(),t.j41(15,"mat-form-field",20)(16,"mat-label"),t.EFF(17,"Sort Order"),t.k0s(),t.j41(18,"mat-select",24),t.mxI("ngModelChange",function(G){const Oe=t.eBV(b).$implicit;return t.DH7(Oe.sortOrder,G)||(Oe.sortOrder=G),t.Njj(G)}),t.DNE(19,Qu,2,2,"mat-option",22),t.k0s()(),t.DNE(20,Hc,5,5,"mat-form-field",25),t.j41(21,"mat-form-field",26)(22,"mat-label"),t.EFF(23,"Column Selection (Mobile Resolution)"),t.k0s(),t.j41(24,"mat-select",27),t.mxI("ngModelChange",function(G){const Oe=t.eBV(b).$implicit;return t.DH7(Oe.columnSelectionSM,G)||(Oe.columnSelectionSM=G),t.Njj(G)}),t.DNE(25,Pr,4,8,"mat-option",28),t.k0s()(),t.j41(26,"button",29),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG().$implicit,It=t.XpG();return t.Njj(It.onTableReset(Oe.pageId,G))}),t.j41(27,"mat-icon",30),t.EFF(28,"restore"),t.k0s()()()()}if(2&O){const b=H.$implicit,U=t.XpG().$implicit,G=t.XpG();t.R7$(3),t.SpI("",t.i5U(4,24,b.tableId,"_"),":"),t.R7$(5),t.FCK("name","",U.pageId,"",b.tableId,"-page-size-options"),t.Y8G("disabled",G.nodePageDefs[U.pageId][b.tableId].disablePageSize),t.R50("ngModel",b.recordsPerPage),t.R7$(),t.Y8G("ngForOf",G.pageSizeOptions),t.R7$(4),t.FCK("name","",U.pageId,"",b.tableId,"-sort-by"),t.R50("ngModel",b.sortBy),t.R7$(),t.Y8G("ngForOf",b.columnSelection),t.R7$(4),t.FCK("name","",U.pageId,"",b.tableId,"-sort-order"),t.R50("ngModel",b.sortOrder),t.R7$(),t.Y8G("ngForOf",G.sortOrders),t.R7$(),t.Y8G("ngIf",G.screenSize!==G.screenSizeEnum.XS),t.R7$(4),t.FCK("name","",U.pageId,"",b.tableId,"-columns-selection-sm"),t.R50("ngModel",b.columnSelectionSM),t.R7$(),t.Y8G("ngForOf",G.nodePageDefs[U.pageId][b.tableId].allowedColumns),t.R7$(2),t.Y8G("ngClass",t.eq3(27,Wd,G.screenSize===G.screenSizeEnum.XS||G.screenSize===G.screenSizeEnum.SM))}}function D0(O,H){if(1&O&&t.eu8(0,14),2&O){const b=t.XpG(2),U=t.sdS(18);t.Y8G("ngTemplateOutlet",U)("ngTemplateOutletContext",t.eq3(2,zs,b.errorMessage))}}function cl(O,H){if(1&O&&(t.j41(0,"mat-expansion-panel",15)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),t.EFF(3),t.nI1(4,"camelcaseWithReplace"),t.k0s()(),t.DNE(5,T0,29,29,"div",16)(6,D0,1,4,"ng-container",7),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.Y8G("ngClass",t.eq3(7,E0,(null==U.errorMessage?null:U.errorMessage.page)===b.pageId)),t.R7$(3),t.JRh(t.i5U(4,4,b.pageId,"_")),t.R7$(2),t.Y8G("ngForOf",b.tables),t.R7$(),t.Y8G("ngIf",U.errorMessage&&(null==U.errorMessage?null:U.errorMessage.page)===b.pageId)}}function A0(O,H){if(1&O&&(t.j41(0,"mat-panel-title"),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&O){const b=t.XpG().error;t.R7$(),t.SpI("Page ",t.bMT(2,1,b.page),"")}}function k0(O,H){if(1&O&&(t.j41(0,"mat-list-item")(1,"mat-icon",39),t.EFF(2,"close"),t.k0s(),t.j41(3,"span"),t.EFF(4),t.k0s()()),2&O){const b=t.XpG().error;t.R7$(4),t.JRh(b.message)}}function Zu(O,H){if(1&O&&(t.j41(0,"mat-list-item")(1,"mat-icon",39),t.EFF(2,"close"),t.k0s(),t.j41(3,"span"),t.EFF(4),t.nI1(5,"titlecase"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(4),t.Lme("Table ",t.bMT(5,2,b.table)," ",b.message,"")}}function Yd(O,H){if(1&O&&(t.j41(0,"div",35),t.DNE(1,A0,3,3,"mat-panel-title",36),t.j41(2,"mat-list",37),t.DNE(3,k0,5,1,"mat-list-item",36)(4,Zu,6,4,"mat-list-item",38),t.k0s()()),2&O){const b=H.error,U=t.XpG();t.Y8G("ngClass",t.eq3(4,$u,"unknown"===U.errorMessage.page)),t.R7$(),t.Y8G("ngIf","unknown"===U.errorMessage.page),t.R7$(2),t.Y8G("ngIf",b.message),t.R7$(),t.Y8G("ngForOf",b.tables)}}let Ec=(()=>{class O{constructor(b,U,G,Oe){this.logger=b,this.commonService=U,this.store=G,this.actions=Oe,this.faPenRuler=nn.$$g,this.faExclamationTriangle=nn.zpE,this.screenSize="",this.screenSizeEnum=Wt.f7,this.pageSizeOptions=Wt.xp,this.pageSettings=[],this.initialPageSettings=[],this.defaultSettings=[],this.nodePageDefs={},this.sortOrders=Wt.jG,this.apiCallStatus=null,this.apiCallStatusEnum=Wt.wn,this.errorMessage=null,this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{switch(this.selNode=b,this.logger.info(this.selNode),this.selNode.lnImplementation){case"CLN":this.initialPageSettings=Object.assign([],Wt.mu),this.defaultSettings=Object.assign([],Wt.mu),this.nodePageDefs=Wt.Jd,this.store.select(dd.av).pipe((0,dn.Q)(this.unSubs[1]),(0,fc.E)(this.store.select(Gr._c))).subscribe(([U,G])=>{const Oe=JSON.parse(JSON.stringify(U.pageSettings));if(this.errorMessage=null,this.apiCallStatus=U.apiCallStatus,this.apiCallStatus.status===Wt.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Oe,this.initialPageSettings=Oe;else{if(!G?.settings.enableOffers){const It=Oe.find(ci=>"transactions"===ci.pageId),Lt=It?.tables.findIndex(ci=>"offers"===ci.tableId),oi=It?.tables.findIndex(ci=>"offer_bookmarks"===ci.tableId);Lt>-1&&It?.tables.splice(Lt,1),oi>-1&&It?.tables.splice(oi,1)}if(!G?.settings.enablePeerswap){const It=Oe.findIndex(Lt=>"peerswap"===Lt.pageId);It>-1&&Oe.splice(It,1)}this.pageSettings=Oe,this.initialPageSettings=Oe}this.logger.info(Oe)}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(U=>U.type===Wt.TC.UPDATE_API_CALL_STATUS_CLN||U.type===Wt.TC.SAVE_PAGE_SETTINGS_CLN)).subscribe(U=>{U.type===Wt.TC.UPDATE_API_CALL_STATUS_CLN&&U.payload.status===Wt.wn.ERROR&&"SavePageSettings"===U.payload.action&&(this.errorMessage=JSON.parse(U.payload.message))});break;case"ECL":this.initialPageSettings=Object.assign([],Wt.X8),this.defaultSettings=Object.assign([],Wt.X8),this.nodePageDefs=Wt.WW,this.store.select(n2.jZ).pipe((0,dn.Q)(this.unSubs[1])).subscribe(U=>{const G=JSON.parse(JSON.stringify(U.pageSettings));this.errorMessage=null,this.apiCallStatus=U.apiCallStatus,this.apiCallStatus.status===Wt.wn.ERROR?(this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=G,this.initialPageSettings=G):(this.pageSettings=G,this.initialPageSettings=G),this.logger.info(G)}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(U=>U.type===Wt.Uu.UPDATE_API_CALL_STATUS_ECL||U.type===Wt.Uu.SAVE_PAGE_SETTINGS_ECL)).subscribe(U=>{U.type===Wt.Uu.UPDATE_API_CALL_STATUS_ECL&&U.payload.status===Wt.wn.ERROR&&"SavePageSettings"===U.payload.action&&(this.errorMessage=JSON.parse(U.payload.message))});break;default:this.initialPageSettings=Object.assign([],Wt.ZC),this.defaultSettings=Object.assign([],Wt.ZC),this.nodePageDefs=Wt._1,this.store.select(t2.$G).pipe((0,dn.Q)(this.unSubs[1]),(0,fc.E)(this.store.select(Gr._c))).subscribe(([U,G])=>{const Oe=JSON.parse(JSON.stringify(U.pageSettings));if(this.errorMessage=null,this.apiCallStatus=U.apiCallStatus,this.apiCallStatus.status===Wt.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Oe,this.initialPageSettings=Oe;else{if(!G?.settings.swapServerUrl||""===G.settings.swapServerUrl.trim()){const It=Oe.findIndex(Lt=>"loop"===Lt.pageId);It>-1&&Oe.splice(It,1)}if(!G?.settings.boltzServerUrl||""===G.settings.boltzServerUrl.trim()){const It=Oe.findIndex(Lt=>"boltz"===Lt.pageId);It>-1&&Oe.splice(It,1)}if(!G?.settings.enablePeerswap){const It=Oe.findIndex(Lt=>"peerswap"===Lt.pageId);It>-1&&Oe.splice(It,1)}this.pageSettings=Oe,this.initialPageSettings=Oe}this.logger.info(Oe)}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(U=>U.type===Wt.QP.UPDATE_API_CALL_STATUS_LND||U.type===Wt.QP.SAVE_PAGE_SETTINGS_LND)).subscribe(U=>{U.type===Wt.QP.UPDATE_API_CALL_STATUS_LND&&U.payload.status===Wt.wn.ERROR&&"SavePageSettings"===U.payload.action&&(this.errorMessage=JSON.parse(U.payload.message))})}})}oncolumnSelectionChange(b){b.columnSelection&&(!b.sortBy||!b.columnSelection.includes(b.sortBy))&&(b.sortBy=b.columnSelection[0])}onUpdatePageSettings(){if(this.pageSettings.reduce((b,U)=>b||U.tables.reduce((G,Oe)=>!(Oe.recordsPerPage&&Oe.sortBy&&Oe.sortOrder&&Oe.columnSelection&&Oe.columnSelection.length>=2),!1),!1))return!0;switch(this.errorMessage="",this.selNode.lnImplementation){case"CLN":this.store.dispatch((0,xa.Sn)({payload:this.pageSettings}));break;case"ECL":this.store.dispatch((0,Ca.Sn)({payload:this.pageSettings}));break;default:this.store.dispatch((0,Pa.Sn)({payload:this.pageSettings}))}}onTableReset(b,U){const G=this.pageSettings.findIndex(Lt=>Lt.pageId===b),Oe=this.pageSettings[G].tables.findIndex(Lt=>Lt.tableId===U.tableId),It=this.defaultSettings.find(Lt=>Lt.pageId===b)?.tables.find(Lt=>Lt.tableId===U.tableId)||this.pageSettings.find(Lt=>Lt.pageId===b)?.tables.find(Lt=>Lt.tableId===U.tableId);this.pageSettings[G].tables.splice(Oe,1,It)}onResetPageSettings(b){"current"===b?(this.errorMessage=null,this.pageSettings=JSON.parse(JSON.stringify(this.initialPageSettings))):(this.errorMessage=null,this.pageSettings=JSON.parse(JSON.stringify(this.defaultSettings)))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(lt.En))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-page-settings"]],decls:19,vars:3,consts:[["form","ngForm"],["errorObjectBlock",""],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngIf"],["displayMode","flat","multi","false"],["fxLayout","column","class","flat-expansion-panel mt-1","expanded","false",3,"ngClass",4,"ngFor","ngForOf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","8",1,"mr-1",3,"click"],["mat-stroked-button","","color","primary","tabindex","9",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["fxLayout","column","expanded","false",1,"flat-expansion-panel","mt-1",3,"ngClass"],["fxLayout","column","fxLayoutAlign","start stretch","class","padding-gap-x-large table-setting-row",4,"ngFor","ngForOf"],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x-large","table-setting-row"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center"],["fxFlex","10",1,"mb-2"],["fxLayout","column","fxFlex","10"],["tabindex","2","required","",3,"ngModelChange","disabled","name","ngModel"],[3,"value",4,"ngFor","ngForOf"],["tabindex","3","required","",3,"ngModelChange","name","ngModel"],["tabindex","4","required","",3,"ngModelChange","name","ngModel"],["fxFlex","35","matTooltip","Select a minimum of 2 columns",4,"ngIf"],["fxLayout","column","fxFlex","15","matTooltip","Select between 1 and 3 columns"],["tabindex","5","multiple","","required","",3,"ngModelChange","name","ngModel"],[3,"value","disabled",4,"ngFor","ngForOf"],["mat-icon-button","","color","primary","type","button","tabindex","7","matTooltip","Reset to Default",1,"mb-2",3,"click"],["color","primary",3,"ngClass"],[3,"value"],["fxFlex","35","matTooltip","Select a minimum of 2 columns"],["tabindex","6","multiple","","required","",3,"ngModelChange","selectionChange","name","ngModel"],[3,"value","disabled"],[3,"ngClass"],[4,"ngIf"],["role","list"],[4,"ngFor","ngForOf"],[1,"ml-1","icon-small","red"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",2)(1,"form",3,0)(3,"div",4),t.nrm(4,"fa-icon",5),t.j41(5,"span",6),t.EFF(6,"Grid Settings"),t.k0s()(),t.DNE(7,Gl,1,4,"ng-container",7),t.j41(8,"mat-accordion",8),t.DNE(9,cl,7,9,"mat-expansion-panel",9),t.k0s()(),t.j41(10,"div",10)(11,"button",11),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onResetPageSettings("current"))}),t.EFF(12,"Reset"),t.k0s(),t.j41(13,"button",12),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onResetPageSettings("default"))}),t.EFF(14,"Reset to Default"),t.k0s(),t.j41(15,"button",13),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdatePageSettings())}),t.EFF(16,"Save"),t.k0s()()(),t.DNE(17,Yd,5,6,"ng-template",null,1,t.C5r)}2&U&&(t.R7$(4),t.Y8G("icon",G.faPenRuler),t.R7$(3),t.Y8G("ngIf",G.errorMessage&&"unknown"===G.errorMessage.page),t.R7$(2),t.Y8G("ngForOf",G.pageSettings))},dependencies:[ri.YU,ri.Sq,ri.bT,ri.T3,Wi.qT,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ve.$z,ve.iY,Ra.BS,Ra.GK,Ra.Z2,Ra.WN,Vc.An,Pe.rl,Pe.nJ,wc.jt,wc.YE,xe.VO,Be.wT,ic.oV,ft.Ld,ri.PV,Ul.VD,Ul.Qu],styles:[".table-setting-row[_ngcontent-%COMP%]:not(:first-child){margin:.5rem 0}"]})}return O})();function q3(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",11),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.setActiveLink(G.links[0].link))}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[0].link),t.Y8G("active",b.activeLink===b.links[0].link),t.R7$(),t.JRh(b.links[0].name)}}function r2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",12),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.setActiveLink(G.links[1].link))}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[1].link),t.Y8G("active",b.activeLink===b.links[1].link),t.R7$(),t.JRh(b.links[1].name)}}function a2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",13),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.setActiveLink(G.links[2].link))}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG();t.FS9("routerLink",b.links[2].link),t.Y8G("active",b.activeLink===b.links[2].link),t.R7$(),t.JRh(b.links[2].name)}}let o2=(()=>{class O{constructor(b,U,G){this.store=b,this.router=U,this.activatedRoute=G,this.faLayerGroup=nn.qIE,this.links=[{link:"loop",name:"Loop"},{link:"boltz",name:"Boltz"},{link:"noservice",name:"No Service"}],this.activeLink="",this.unSubs=[new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.setActiveLink(),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.selNode=b,this.setActiveLink(),this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute})})}setActiveLink(b){if(b&&""!==b)this.activeLink=b;else{const U=this.links.find(G=>this.router.url.includes(G.link));this.activeLink=U?this.selNode&&"CLN"===this.selNode.lnImplementation?this.links[1].link:U.link:this.links[this.links.length-1].link}}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(En.Ix),t.rXU(En.nX))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-services-settings"]],decls:16,vars:5,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","my-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(U,G){if(1&U&&(t.j41(0,"div",1)(1,"div",2),t.nrm(2,"fa-icon",3),t.j41(3,"span",4),t.EFF(4,"Services"),t.k0s()()(),t.j41(5,"div",5)(6,"mat-card")(7,"mat-card-content",5)(8,"nav",6),t.DNE(9,q3,2,3,"div",7)(10,r2,2,3,"div",8)(11,a2,2,3,"div",9),t.k0s(),t.nrm(12,"mat-tab-nav-panel",null,0),t.j41(14,"div",10),t.nrm(15,"router-outlet"),t.k0s()()()()),2&U){const Oe=t.sdS(13);t.R7$(2),t.Y8G("icon",G.faLayerGroup),t.R7$(6),t.Y8G("tabPanel",Oe),t.R7$(),t.Y8G("ngIf","LND"===G.selNode.lnImplementation),t.R7$(),t.Y8G("ngIf","ECL"!==G.selNode.lnImplementation),t.R7$(),t.Y8G("ngIf","ECL"===G.selNode.lnImplementation)}},dependencies:[ri.bT,ya.aY,$i.DJ,$i.sA,$i.UI,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.n3,En.Wk]})}return O})();const Kd=["form"];function s2(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Loop server URL is required."),t.k0s())}function L0(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Specify the loop server url with 'https://'."),t.k0s())}function ll(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Loop macaroon path is required."),t.k0s())}let zc=(()=>{class O{constructor(b,U){this.logger=b,this.store=U,this.faInfoCircle=nn.iW_,this.enableLoop=!1,this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.selNode=b,this.enableLoop=!(!b.settings.swapServerUrl||""===b.settings.swapServerUrl.trim()),this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(b)})}onEnableServiceChanged(b){this.enableLoop=b.checked,this.enableLoop||(this.selNode.authentication.swapMacaroonPath="",this.selNode.settings.swapServerUrl="")}onUpdateService(){if(this.selNode.settings.swapServerUrl&&""!==this.selNode.settings.swapServerUrl.trim()&&!this.form.controls.srvrUrl.value.includes("https://")&&this.form.controls.srvrUrl.setErrors({invalid:!0}),this.enableLoop&&(!this.selNode.settings.swapServerUrl||""===this.selNode.settings.swapServerUrl.trim()||!this.selNode.authentication.swapMacaroonPath||""===this.selNode.authentication.swapMacaroonPath.trim()))return!0;this.enableLoop||(delete this.selNode.settings.swapServerUrl,delete this.selNode.authentication.swapMacaroonPath),this.logger.info(this.selNode),this.store.dispatch((0,Cn.T$)({payload:this.selNode}))}onReset(){this.selNode=JSON.parse(JSON.stringify(this.previousSelNode)),this.enableLoop=!(!this.selNode.settings.swapServerUrl||""===this.selNode.settings.swapServerUrl.trim())}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-loop-service-settings"]],viewQuery:function(U,G){if(1&U&&t.GBs(Kd,7),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.form=Oe.first)}},decls:38,vars:11,consts:[["form","ngForm"],["srvrUrl","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["href","https://github.com/lightninglabs/loop","target","_blank"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","loop",1,"ml-2",3,"ngModelChange","change","ngModel"],[1,"mb-2"],["matInput","","type","text","id","swapServerUrl","name","srvrUrl","tabindex","2",3,"ngModelChange","required","disabled","ngModel"],[4,"ngIf"],["matInput","","type","text","id","swapMacaroonPath","name","swapMacaroonPath","tabindex","3",3,"ngModelChange","required","disabled","ngModel"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",2)(1,"div",3),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"Please ensure that "),t.j41(5,"strong"),t.EFF(6,"loopd"),t.k0s(),t.EFF(7," is running and accessible to RTL before enabling this service. Click "),t.j41(8,"strong")(9,"a",5),t.EFF(10,"here"),t.k0s()(),t.EFF(11," to learn more about the installation."),t.k0s()(),t.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.enableLoop,Lt)||(G.enableLoop=Lt),t.Njj(Lt)}),t.bIt("change",function(Lt){return t.eBV(Oe),t.Njj(G.onEnableServiceChanged(Lt))}),t.EFF(16,"Enable Loop Service"),t.k0s(),t.j41(17,"mat-form-field",9)(18,"mat-label"),t.EFF(19,"Loop Server URL"),t.k0s(),t.j41(20,"input",10,1),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.settings.swapServerUrl,Lt)||(G.selNode.settings.swapServerUrl=Lt),t.Njj(Lt)}),t.k0s(),t.j41(22,"mat-hint"),t.EFF(23,"Service url for loop server REST APIs, eg. https://127.0.0.1:8081"),t.k0s(),t.DNE(24,s2,2,0,"mat-error",11)(25,L0,2,0,"mat-error",11),t.k0s(),t.j41(26,"mat-form-field")(27,"mat-label"),t.EFF(28,"Loop Macaroon Path"),t.k0s(),t.j41(29,"input",12),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selNode.authentication.swapMacaroonPath,Lt)||(G.selNode.authentication.swapMacaroonPath=Lt),t.Njj(Lt)}),t.k0s(),t.j41(30,"mat-hint"),t.EFF(31,"Path for the folder containing service 'loop.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Local\\\\Loop\\\\testnet"),t.k0s(),t.DNE(32,ll,2,0,"mat-error",11),t.k0s()()(),t.j41(33,"div",13)(34,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onReset())}),t.EFF(35,"Reset"),t.k0s(),t.j41(36,"button",15),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdateService())}),t.EFF(37,"Update"),t.k0s()()()}if(2&U){const Oe=t.sdS(21);t.R7$(2),t.Y8G("icon",G.faInfoCircle),t.R7$(13),t.R50("ngModel",G.enableLoop),t.R7$(5),t.Y8G("required",G.enableLoop)("disabled",!G.enableLoop),t.R50("ngModel",G.selNode.settings.swapServerUrl),t.R7$(4),t.Y8G("ngIf",!G.selNode.settings.swapServerUrl&&G.enableLoop),t.R7$(),t.Y8G("ngIf",(null==Oe||null==Oe.errors?null:Oe.errors.invalid)&&G.enableLoop),t.R7$(4),t.Y8G("required",G.enableLoop)("disabled",!G.enableLoop),t.R50("ngModel",G.selNode.authentication.swapMacaroonPath),t.R7$(3),t.Y8G("ngIf",!G.selNode.authentication.swapMacaroonPath&&G.enableLoop)}},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,e2.sG,ft.Ld,Ot.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})();const Bc=["form"];function I0(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Boltz server URL is required."),t.k0s())}function c2(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Specify the boltz server url with 'https://'."),t.k0s())}function dl(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Boltz macaroon path is required."),t.k0s())}let Ju=(()=>{class O{constructor(b,U){this.logger=b,this.store=U,this.faInfoCircle=nn.iW_,this.enableBoltz=!1,this.serverUrl="",this.macaroonPath="",this.unSubs=[new Gi.B,new Gi.B]}ngOnInit(){this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.selNode=b,this.enableBoltz=!(!b.settings.boltzServerUrl||""===b.settings.boltzServerUrl.trim()),this.serverUrl=this.selNode.settings.boltzServerUrl||"",this.macaroonPath=this.selNode.authentication.boltzMacaroonPath,this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(b)})}onEnableServiceChanged(b){this.enableBoltz=b.checked,this.enableBoltz||(this.macaroonPath="",this.serverUrl="")}onUpdateService(){if(this.serverUrl&&""!==this.serverUrl.trim()&&!this.form.controls.srvrUrl.value.includes("https://")&&this.form.controls.srvrUrl.setErrors({invalid:!0}),this.enableBoltz&&(!this.serverUrl||""===this.serverUrl.trim()||!this.serverUrl.includes("https://")||!this.macaroonPath||""===this.macaroonPath.trim()))return!0;this.logger.info(this.selNode),this.enableBoltz?(this.selNode.settings.boltzServerUrl=this.serverUrl,this.selNode.authentication.boltzMacaroonPath=this.macaroonPath):(delete this.selNode.settings.boltzServerUrl,delete this.selNode.authentication.boltzMacaroonPath),this.store.dispatch((0,Cn.T$)({payload:this.selNode}))}onReset(){this.selNode=JSON.parse(JSON.stringify(this.previousSelNode)),this.serverUrl=this.selNode.settings.boltzServerUrl||"",this.macaroonPath=this.selNode.authentication.boltzMacaroonPath,this.enableBoltz=!(!this.serverUrl||""===this.serverUrl.trim())}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-service-settings"]],viewQuery:function(U,G){if(1&U&&t.GBs(Bc,7),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.form=Oe.first)}},decls:38,vars:11,consts:[["form","ngForm"],["srvrUrl","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["href","https://docs.boltz.exchange/v/boltz-client/","target","_blank"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","boltz",1,"ml-2",3,"ngModelChange","change","ngModel"],[1,"mb-2"],["matInput","","type","text","id","boltzServerUrl","name","srvrUrl","tabindex","2",3,"ngModelChange","required","disabled","ngModel"],[4,"ngIf"],["matInput","","type","text","id","boltzMacaroonPath","name","boltzMacaroonPath","tabindex","3",3,"ngModelChange","required","disabled","ngModel"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",2)(1,"div",3),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"Please ensure that "),t.j41(5,"strong"),t.EFF(6,"boltzd"),t.k0s(),t.EFF(7," is running and accessible to RTL before enabling this service. Click "),t.j41(8,"strong")(9,"a",5),t.EFF(10,"here"),t.k0s()(),t.EFF(11," to learn more about the installation."),t.k0s()(),t.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.enableBoltz,Lt)||(G.enableBoltz=Lt),t.Njj(Lt)}),t.bIt("change",function(Lt){return t.eBV(Oe),t.Njj(G.onEnableServiceChanged(Lt))}),t.EFF(16,"Enable Boltz Service"),t.k0s(),t.j41(17,"mat-form-field",9)(18,"mat-label"),t.EFF(19,"Boltz Server URL"),t.k0s(),t.j41(20,"input",10,1),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.serverUrl,Lt)||(G.serverUrl=Lt),t.Njj(Lt)}),t.k0s(),t.j41(22,"mat-hint"),t.EFF(23,"Service url for boltz server REST APIs, eg. https://127.0.0.1:9003"),t.k0s(),t.DNE(24,I0,2,0,"mat-error",11)(25,c2,2,0,"mat-error",11),t.k0s(),t.j41(26,"mat-form-field")(27,"mat-label"),t.EFF(28,"Boltz Macaroon Path"),t.k0s(),t.j41(29,"input",12),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.macaroonPath,Lt)||(G.macaroonPath=Lt),t.Njj(Lt)}),t.k0s(),t.j41(30,"mat-hint"),t.EFF(31,"Path for the folder containing boltz 'admin.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Boltz\\\\testnet"),t.k0s(),t.DNE(32,dl,2,0,"mat-error",11),t.k0s()()(),t.j41(33,"div",13)(34,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onReset())}),t.EFF(35,"Reset"),t.k0s(),t.j41(36,"button",15),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onUpdateService())}),t.EFF(37,"Update"),t.k0s()()()}if(2&U){const Oe=t.sdS(21);t.R7$(2),t.Y8G("icon",G.faInfoCircle),t.R7$(13),t.R50("ngModel",G.enableBoltz),t.R7$(5),t.Y8G("required",G.enableBoltz)("disabled",!G.enableBoltz),t.R50("ngModel",G.serverUrl),t.R7$(4),t.Y8G("ngIf",(!G.serverUrl||""===G.serverUrl.trim())&&G.enableBoltz),t.R7$(),t.Y8G("ngIf",(null==Oe||null==Oe.errors?null:Oe.errors.invalid)&&G.enableBoltz),t.R7$(4),t.Y8G("required",G.enableBoltz)("disabled",!G.enableBoltz),t.R50("ngModel",G.macaroonPath),t.R7$(3),t.Y8G("ngIf",!G.macaroonPath&&G.enableBoltz)}},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,e2.sG,ft.Ld,Ot.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})(),qu=(()=>{class O{constructor(){}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-ln-services"]],decls:1,vars:0,template:function(U,G){1&U&&t.nrm(0,"router-outlet")},dependencies:[En.n3]})}return O})();var ef=g(8711),tf=g(4104),hl=g(6695),Sc=g(2042),Tr=g(9159),ul=g(7575);const R0=()=>["all"],hd=O=>({"overflow-auto error-border":O,"overflow-auto":!0}),nf=()=>["no_swap"],$d=O=>({width:O}),Qd=O=>({"display-none":O});function jl(O,H){if(1&O&&(t.j41(0,"mat-option",37),t.EFF(1),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.Y8G("value",b),t.R7$(),t.JRh(U.getLabel(b))}}function Tc(O,H){1&O&&t.nrm(0,"mat-progress-bar",38)}function l2(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"State"),t.k0s())}function Uc(O,H){if(1&O&&(t.j41(0,"td",40),t.EFF(1),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.JRh(U.LoopStateEnum[null==b?null:b.state])}}function O0(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"Initiation Time"),t.k0s())}function Zd(O,H){if(1&O&&(t.j41(0,"td",40),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(t.i5U(2,1,(null==b?null:b.initiation_time)/1e6,"dd/MMM/y HH:mm"))}}function Wl(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"Last Update Time"),t.k0s())}function fl(O,H){if(1&O&&(t.j41(0,"td",40),t.EFF(1),t.nI1(2,"date"),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(t.i5U(2,1,(null==b?null:b.last_update_time)/1e6,"dd/MMM/y HH:mm"))}}function F0(O,H){1&O&&(t.j41(0,"th",41),t.EFF(1,"Amount (Sats)"),t.k0s())}function d2(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.amt))}}function eo(O,H){1&O&&(t.j41(0,"th",41),t.EFF(1,"Cost Server (Sats)"),t.k0s())}function N0(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.cost_server))}}function h2(O,H){1&O&&(t.j41(0,"th",41),t.EFF(1,"Cost Offchain (Sats)"),t.k0s())}function Dr(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.cost_offchain))}}function Jd(O,H){1&O&&(t.j41(0,"th",41),t.EFF(1,"Cost Onchain (Sats)"),t.k0s())}function ks(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",42),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.SpI(" ",t.bMT(3,1,null==b?null:b.cost_onchain)," ")}}function ud(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"HTLC Address"),t.k0s())}function P0(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$d,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.htlc_address)}}function u2(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"ID"),t.k0s())}function Xl(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$d,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.id)}}function Yl(O,H){1&O&&(t.j41(0,"th",39),t.EFF(1,"ID (Bytes)"),t.k0s())}function to(O,H){if(1&O&&(t.j41(0,"td",40)(1,"span",43)(2,"span",44),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,$d,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.id_bytes)}}function V0(O,H){if(1&O){const b=t.RV6();t.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",48),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function f2(O,H){if(1&O){const b=t.RV6();t.j41(0,"td",49)(1,"button",50),t.bIt("click",function(G){const Oe=t.eBV(b).$implicit,It=t.XpG();return t.Njj(It.onSwapClick(Oe,G))}),t.EFF(2,"View Info"),t.k0s()()}}function m2(O,H){if(1&O&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.emptyTableMessage)}}function H0(O,H){if(1&O&&(t.j41(0,"td",51),t.DNE(1,m2,2,1,"p",52),t.k0s()),2&O){const b=t.XpG();t.R7$(),t.Y8G("ngIf",!(null!=b.listSwaps&&b.listSwaps.data)||(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)<1)}}function z0(O,H){if(1&O&&t.nrm(0,"tr",53),2&O){const b=t.XpG();t.Y8G("ngClass",t.eq3(1,Qd,(null==b.listSwaps?null:b.listSwaps.data)&&(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)>0))}}function Kl(O,H){1&O&&t.nrm(0,"tr",54)}function rf(O,H){1&O&&t.nrm(0,"tr",55)}let qd=(()=>{class O{constructor(b,U,G,Oe,It,Lt){this.logger=b,this.commonService=U,this.store=G,this.loopService=Oe,this.datePipe=It,this.camelCaseWithReplace=Lt,this.selectedSwapType=Wt.C7.LOOP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=Wt._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="loop",this.tableSetting={tableId:"loop",recordsPerPage:Wt.md,sortBy:"initiation_time",sortOrder:Wt.oi.DESCENDING},this.LoopStateEnum=Wt.Hx,this.faHistory=nn.Int,this.swapCaption="Loop Out",this.displayedColumns=[],this.listSwaps=new Tr.I6([]),this.selFilter="",this.pageSize=Wt.md,this.pageSizeOptions=Wt.xp,this.screenSize="",this.screenSizeEnum=Wt.f7,this.unSubs=[new Gi.B,new Gi.B,new Gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(b){this.swapCaption=this.selectedSwapType===Wt.C7.LOOP_IN?"Loop In":"Loop Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(t2.$G).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.tableSetting=b.pageSettings.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSetting.tableId)||Wt.ZC.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===Wt.f7.XS||this.screenSize===Wt.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:Wt.md,this.swapsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}applyFilter(){this.listSwaps.filter=this.selFilter.trim().toLowerCase()}getLabel(b){const U=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(G=>G.column===b);return U?U.label?U.label:this.camelCaseWithReplace.transform(U.column,"_"):this.commonService.titleCase(b)}setFilterPredicate(){this.listSwaps.filterPredicate=(b,U)=>{let G="";switch(this.selFilterBy){case"all":G=JSON.stringify(b).toLowerCase();break;case"state":G=b?.state?this.LoopStateEnum[b?.state]:"";break;case"initiation_time":case"last_update_time":G=this.datePipe.transform(new Date((b[this.selFilterBy]||0)/1e6),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:G=typeof b[this.selFilterBy]>"u"?"":"string"==typeof b[this.selFilterBy]?b[this.selFilterBy].toLowerCase():"boolean"==typeof b[this.selFilterBy]?b[this.selFilterBy]?"yes":"no":b[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===G.indexOf(U):G.includes(U)}}onSwapClick(b,U){this.loopService.getSwap(b.id_bytes?.replace(/\//g,"_")?.replace(/\+/g,"-")||"").pipe((0,dn.Q)(this.unSubs[1])).subscribe(G=>{this.store.dispatch((0,Cn.xO)({payload:{data:{type:Wt.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"state",value:Wt.Hx[G.state||""],title:"Status",width:50,type:Wt.UN.STRING},{key:"amt",value:G.amt,title:"Amount (Sats)",width:50,type:Wt.UN.NUMBER}],[{key:"initiation_time",value:(G.initiation_time||0)/1e9,title:"Initiation Time",width:50,type:Wt.UN.DATE_TIME},{key:"last_update_time",value:(G.last_update_time||0)/1e9,title:"Last Update Time",width:50,type:Wt.UN.DATE_TIME}],[{key:"cost_server",value:G.cost_server,title:"Server Cost (Sats)",width:33,type:Wt.UN.NUMBER},{key:"cost_offchain",value:G.cost_offchain,title:"Offchain Cost (Sats)",width:33,type:Wt.UN.NUMBER},{key:"cost_onchain",value:G.cost_onchain,title:"Onchain Cost (Sats)",width:34,type:Wt.UN.NUMBER}],[{key:"id_bytes",value:G.id_bytes,title:"ID",width:100,type:Wt.UN.STRING}],[{key:"htlc_address",value:G.htlc_address,title:"HTLC Address",width:100,type:Wt.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(b){this.listSwaps=new Tr.I6([...b]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(U,G)=>U[G]&&isNaN(U[G])?U[G].toLocaleLowerCase():U[G]?+U[G]:null,this.listSwaps.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listSwaps)}onDownloadCSV(){this.listSwaps.data&&this.listSwaps.data.length>0&&this.commonService.downloadFile(this.listSwaps.data,this.selectedSwapType===Wt.C7.LOOP_IN?"Loop in":"Loop out")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(tf.Q),t.rXU(ri.vh),t.rXU(Ul.VD))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-swaps"]],viewQuery:function(U,G){if(1&U&&(t.GBs(Sc.B4,5),t.GBs(hl.iy,5)),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.sort=Oe.first),t.mGM(Oe=t.lsd())&&(G.paginator=Oe.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[t.Jv_([{provide:xe.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:hl.xX,useValue:(0,Wt.on)("Swaps")}]),t.OA$],decls:61,vars:20,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"card-content-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","fxFlex","100",1,"page-sub-title-container","w-100"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","initiation_time"],["matColumnDef","last_update_time"],["matColumnDef","amt"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","cost_server"],["matColumnDef","cost_offchain"],["matColumnDef","cost_onchain"],["matColumnDef","htlc_address"],["matColumnDef","id"],["matColumnDef","id_bytes"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_swap"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"div",3),t.nrm(3,"fa-icon",4),t.j41(4,"span",5),t.EFF(5),t.k0s()(),t.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",8),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selFilterBy,Lt)||(G.selFilterBy=Lt),t.Njj(Lt)}),t.bIt("selectionChange",function(){return t.eBV(Oe),G.selFilter="",t.Njj(G.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,jl,2,2,"mat-option",9),t.k0s()()(),t.j41(13,"mat-form-field",7)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",10),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selFilter,Lt)||(G.selFilter=Lt),t.Njj(Lt)}),t.bIt("input",function(){return t.eBV(Oe),t.Njj(G.applyFilter())})("keyup",function(){return t.eBV(Oe),t.Njj(G.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,Tc,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,l2,2,0,"th",16)(24,Uc,2,1,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,O0,2,0,"th",16)(27,Zd,3,4,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,Wl,2,0,"th",16)(30,fl,3,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,F0,2,0,"th",21)(33,d2,4,3,"td",17),t.bVm(),t.qex(34,22),t.DNE(35,eo,2,0,"th",21)(36,N0,4,3,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,h2,2,0,"th",21)(39,Dr,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,Jd,2,0,"th",21)(42,ks,4,3,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,ud,2,0,"th",16)(45,P0,4,4,"td",17),t.bVm(),t.qex(46,26),t.DNE(47,u2,2,0,"th",16)(48,Xl,4,4,"td",17),t.bVm(),t.qex(49,27),t.DNE(50,Yl,2,0,"th",16)(51,to,4,4,"td",17),t.bVm(),t.qex(52,28),t.DNE(53,V0,6,0,"th",29)(54,f2,3,0,"td",30),t.bVm(),t.qex(55,31),t.DNE(56,H0,2,1,"td",32),t.bVm(),t.DNE(57,z0,1,3,"tr",33)(58,Kl,1,0,"tr",34)(59,rf,1,0,"tr",35),t.k0s(),t.nrm(60,"mat-paginator",36),t.k0s()()()}2&U&&(t.R7$(3),t.Y8G("icon",G.faHistory),t.R7$(2),t.SpI("",G.swapCaption," History"),t.R7$(5),t.R50("ngModel",G.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(16,R0).concat(G.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",G.selFilter),t.R7$(3),t.Y8G("ngIf",!0===G.flgLoading[0]),t.R7$(),t.Y8G("matSortActive",G.tableSetting.sortBy)("matSortDirection",G.tableSetting.sortOrder)("dataSource",G.listSwaps)("ngClass",t.eq3(17,hd,"error"===G.flgLoading[0])),t.R7$(37),t.Y8G("matFooterRowDef",t.lJ4(19,nf)),t.R7$(),t.Y8G("matHeaderRowDef",G.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",G.displayedColumns),t.R7$(),t.Y8G("pageSize",G.pageSize)("pageSizeOptions",G.pageSizeOptions)("showFirstLastButtons",G.screenSize!==G.screenSizeEnum.XS))},dependencies:[ri.YU,ri.Sq,ri.bT,ri.B3,Wi.me,Wi.BC,Wi.vS,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ds.eI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,ul.HM,xe.VO,xe.$2,Be.wT,Sc.B4,Sc.aE,Tr.Zl,Tr.tL,Tr.ji,Tr.cC,Tr.YV,Tr.iL,Tr.Zq,Tr.xW,Tr.KS,Tr.$R,Tr.Qo,Tr.YZ,Tr.NB,Tr.iF,hl.iy,ft.ZF,ft.Ld,ri.QX,ri.vh]})}return O})();const p2=O=>["../",O];function e1(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",11),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG();return t.Njj(Oe.onSelectedIndexChange(G))}),t.EFF(1),t.k0s()}if(2&O){const b=H.$implicit,U=t.XpG();t.Y8G("active",U.activeTab.link===b.link)("routerLink",t.eq3(3,p2,b.link)),t.R7$(),t.JRh(b.name)}}let B0=(()=>{class O{constructor(b,U,G){this.router=b,this.loopService=U,this.store=G,this.faInfinity=nn.C8j,this.loopInfo=null,this.targetConf=2,this.inAmount=25e4,this.quotes=[],this.LoopTypeEnum=Wt.C7,this.selectedSwapType=Wt.C7.LOOP_OUT,this.storedSwaps=[],this.filteredSwaps=[],this.emptyTableMessage="No swap data available.",this.flgLoading=[!0],this.links=[{link:"loopout",name:"Loop Out"},{link:"loopin",name:"Loop In"}],this.activeTab=this.links[0],this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.store.dispatch((0,Cn.mt)({payload:Wt.MZ.GET_LOOP_INFO})),this.loopService.getLoopInfo().pipe((0,dn.Q)(this.unSubs[4])).subscribe({next:U=>{this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_LOOP_INFO})),this.loopInfo=U,this.loopInfo&&this.loopInfo.version&&(this.loopInfo.version=this.loopInfo.version.split(" ")[0])},error:U=>{this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_LOOP_INFO})),this.loopInfo.version=" Unknown"}}),this.loopService.listSwaps();const b=this.links.find(U=>this.router.url.includes(U.link));this.activeTab=b||this.links[0],this.selectedSwapType=b&&"loopin"===b.link?Wt.C7.LOOP_IN:Wt.C7.LOOP_OUT,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,vr.p)(U=>U instanceof En.gx)).subscribe({next:U=>{const G=this.links.find(Oe=>U.urlAfterRedirects.includes(Oe.link));this.activeTab=G||this.links[0],this.selectedSwapType=G&&"loopin"===G.link?Wt.C7.LOOP_IN:Wt.C7.LOOP_OUT}}),this.loopService.swapsChanged.pipe((0,dn.Q)(this.unSubs[1])).subscribe({next:U=>{this.flgLoading[0]=!1,this.storedSwaps=U,this.filteredSwaps=this.storedSwaps?.filter(G=>G.type===this.selectedSwapType)},error:U=>{this.flgLoading[0]="error",this.emptyTableMessage=U.message?U.message:"No loop "+(this.selectedSwapType===Wt.C7.LOOP_IN?"in":"out")+" available."}})}onSelectedIndexChange(b){this.selectedSwapType="loopin"===b.link?Wt.C7.LOOP_IN:Wt.C7.LOOP_OUT,this.filteredSwaps=this.storedSwaps?.filter(U=>U.type===this.selectedSwapType)}onLoop(b){b===Wt.C7.LOOP_IN?this.loopService.getLoopInTermsAndQuotes(this.targetConf).pipe((0,dn.Q)(this.unSubs[2])).subscribe({next:U=>{this.store.dispatch((0,Cn.xO)({payload:{data:{minQuote:U[0],maxQuote:U[1],direction:b,component:ef.D}}}))}}):this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,dn.Q)(this.unSubs[3])).subscribe({next:U=>{this.store.dispatch((0,Cn.xO)({payload:{data:{minQuote:U[0],maxQuote:U[1],direction:b,component:ef.D}}}))}})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(En.Ix),t.rXU(tf.Q),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-loop"]],decls:15,vars:9,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","2",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1),t.nrm(1,"fa-icon",2),t.j41(2,"span",3),t.EFF(3),t.k0s()(),t.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),t.DNE(8,e1,2,5,"div",7),t.k0s(),t.nrm(9,"mat-tab-nav-panel",null,0),t.j41(11,"div",8)(12,"button",9),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onLoop(G.selectedSwapType))}),t.EFF(13),t.k0s()(),t.nrm(14,"rtl-swaps",10),t.k0s()()()}if(2&U){const Oe=t.sdS(10);t.R7$(),t.Y8G("icon",G.faInfinity),t.R7$(2),t.SpI("Loop (v",(null==G.loopInfo?null:G.loopInfo.version)||" Unknown",")"),t.R7$(4),t.Y8G("tabPanel",Oe),t.R7$(),t.Y8G("ngForOf",G.links),t.R7$(5),t.SpI("Start ",G.activeTab.name,""),t.R7$(),t.Y8G("selectedSwapType",G.selectedSwapType)("swapsData",G.filteredSwaps)("flgLoading",G.flgLoading)("emptyTableMessage",G.emptyTableMessage)}},dependencies:[ri.Sq,ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.Wk,qd]})}return O})();var af=g(1001),U0=g(4412),G0=g(8810),t1=g(2462);let fd=(()=>{class O{constructor(b,U,G,Oe){this.httpClient=b,this.logger=U,this.store=G,this.commonService=Oe,this.swapUrl="",this.swaps={},this.boltzInfo=null,this.boltzInfoChanged=new U0.t(null),this.swapsChanged=new U0.t({}),this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B]}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,Cn.mt)({payload:Wt.MZ.GET_BOLTZ_SWAPS})),this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/listSwaps",this.httpClient.get(this.swapUrl).pipe((0,dn.Q)(this.unSubs[0])).subscribe({next:b=>{this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_BOLTZ_SWAPS})),this.swaps=b,this.swapsChanged.next(this.swaps)},error:b=>this.swapsChanged.error(this.handleErrorWithAlert(Wt.MZ.GET_BOLTZ_SWAPS,this.swapUrl,b))})}swapInfo(b){return this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/swapInfo/"+b,this.httpClient.get(this.swapUrl).pipe((0,Aa.W)(U=>(0,At.of)(this.handleErrorWithAlert(Wt.MZ.NO_SPINNER,this.swapUrl,U))))}getBoltzInfo(){this.store.dispatch((0,Cn.mt)({payload:Wt.MZ.GET_BOLTZ_INFO})),this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/info",this.httpClient.get(this.swapUrl).pipe((0,dn.Q)(this.unSubs[1])).subscribe({next:b=>{this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_BOLTZ_INFO})),this.boltzInfo=b,this.boltzInfoChanged.next(this.boltzInfo)},error:b=>(this.boltzInfo={version:"2.0.0"},this.boltzInfoChanged.next(this.boltzInfo),(0,At.of)(this.handleErrorWithoutAlert(Wt.MZ.GET_BOLTZ_INFO,this.swapUrl,b)))})}serviceInfo(){return this.store.dispatch((0,Cn.mt)({payload:Wt.MZ.GET_SERVICE_INFO})),this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/serviceInfo",this.httpClient.get(this.swapUrl).pipe((0,dn.Q)(this.unSubs[2]),(0,Xa.T)(b=>(this.store.dispatch((0,Cn.y0)({payload:Wt.MZ.GET_SERVICE_INFO})),b)),(0,Aa.W)(b=>(0,At.of)(this.handleErrorWithAlert(Wt.MZ.GET_SERVICE_INFO,this.swapUrl,b))))}swapOut(b,U,G){const Oe={amount:b,address:U,acceptZeroConf:G};return this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/createreverseswap",this.httpClient.post(this.swapUrl,Oe).pipe((0,Aa.W)(It=>this.handleErrorWithoutAlert("Swap Out for Address: "+U,Wt.MZ.NO_SPINNER,It)))}swapIn(b,U){const G={amount:b,sendFromInternal:U};return this.swapUrl=Wt.H$+Wt.rl.BOLTZ_API+"/createswap",this.httpClient.post(this.swapUrl,G).pipe((0,Aa.W)(Oe=>this.handleErrorWithoutAlert("Swap In for Amount: "+b,Wt.MZ.NO_SPINNER,Oe)))}handleErrorWithoutAlert(b,U,G){let Oe="";return this.logger.error("ERROR IN: "+b+"\n"+JSON.stringify(G)),this.store.dispatch((0,Cn.y0)({payload:U})),401===G.status?(Oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Cn.ri)({payload:Oe}))):503===G.status?(Oe="Unable to Connect to Boltz Server.",this.store.dispatch((0,Cn.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:G.status,message:"Unable to Connect to Boltz Server",URL:b},component:t1.f}}}))):Oe=this.commonService.extractErrorMessage(G),(0,G0.$)(()=>new Error(Oe))}handleErrorWithAlert(b,U,G){let Oe="";if(401===G.status&&(this.logger.info("Redirecting to Login"),this.store.dispatch((0,Cn.ri)({payload:"Authentication Failed: "+JSON.stringify(G.error)}))),this.logger.error(G),this.store.dispatch((0,Cn.y0)({payload:b})),401===G.status)Oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Cn.ri)({payload:Oe}));else if(503===G.status)Oe="Unable to Connect to Boltz Server.",setTimeout(()=>{this.store.dispatch((0,Cn.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:G.status,message:"Unable to Connect to Boltz Server",URL:U},component:t1.f}}}))},100);else{Oe=this.commonService.extractErrorMessage(G);const It=G.error&&G.error.error&&G.error.error.code?G.error.error.code:G.error&&G.error.code?G.error.code:G.code?G.code:G.status;setTimeout(()=>{this.store.dispatch((0,Cn.xO)({payload:{data:{type:Wt.A$.ERROR,alertTitle:"ERROR",message:{code:It,message:Oe,URL:U},component:t1.f}}}))},100)}return{message:Oe}}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO(Ms.Qq),t.KVO(Yo.gP),t.KVO(Ri.il),t.KVO(Ia.h))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();const g2=O=>({"display-none":O});function sf(O,H){1&O&&t.eu8(0)}function cf(O,H){if(1&O&&(t.j41(0,"div",4)(1,"span",5),t.EFF(2),t.k0s()()),2&O){const b=t.XpG();t.R7$(2),t.JRh(null!=b.swapStatus&&b.swapStatus.error?null==b.swapStatus?null:b.swapStatus.error:"Unknown Error.")}}function lf(O,H){if(1&O&&(t.j41(0,"div",7)(1,"h4",8),t.EFF(2,"Routing Fee (mSats)"),t.k0s(),t.j41(3,"span",5),t.EFF(4),t.nI1(5,"number"),t.k0s()()),2&O){const b=t.XpG(2);t.R7$(4),t.JRh(t.bMT(5,1,null==b.swapStatus?null:b.swapStatus.routingFeeMilliSat))}}function j0(O,H){if(1&O&&(t.j41(0,"div",7)(1,"h4",8),t.EFF(2,"Claim Transaction ID"),t.k0s(),t.j41(3,"span",5),t.EFF(4),t.k0s()()),2&O){const b=t.XpG(2);t.R7$(4),t.JRh(null==b.swapStatus?null:b.swapStatus.claimTransactionId)}}function W0(O,H){if(1&O&&(t.j41(0,"div",4)(1,"div",6)(2,"div",7)(3,"h4",8),t.EFF(4,"ID"),t.k0s(),t.j41(5,"span",5),t.EFF(6),t.k0s()(),t.DNE(7,lf,6,3,"div",9)(8,j0,5,1,"div",9),t.k0s(),t.nrm(9,"mat-divider",10),t.j41(10,"div",6)(11,"div",11)(12,"h4",8),t.EFF(13,"Lockup Address"),t.k0s(),t.j41(14,"span",5),t.EFF(15),t.k0s()()()()),2&O){const b=t.XpG();t.R7$(6),t.JRh(null==b.swapStatus?null:b.swapStatus.id),t.R7$(),t.Y8G("ngIf",b.acceptZeroConf),t.R7$(),t.Y8G("ngIf",b.acceptZeroConf),t.R7$(7),t.JRh(null==b.swapStatus?null:b.swapStatus.lockupAddress)}}function go(O,H){1&O&&(t.j41(0,"span",22),t.EFF(1,"N/A"),t.k0s())}function e4(O,H){1&O&&(t.j41(0,"span",23),t.EFF(1,"QR Code Not Applicable"),t.k0s())}function X0(O,H){1&O&&t.nrm(0,"mat-divider",24),2&O&&t.Y8G("inset",!0)}function t4(O,H){if(1&O&&(t.j41(0,"div",6)(1,"div",11)(2,"h4",8),t.EFF(3,"Transaction ID"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()()()),2&O){const b=t.XpG(2);t.R7$(5),t.JRh(null==b.swapStatus?null:b.swapStatus.txId)}}function _2(O,H){if(1&O&&(t.j41(0,"div",6)(1,"div",25)(2,"h4",8),t.EFF(3,"ID"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()(),t.j41(6,"div",25)(7,"h4",8),t.EFF(8,"Expected Amount (Sats)"),t.k0s(),t.j41(9,"span",5),t.EFF(10),t.nI1(11,"number"),t.k0s()()()),2&O){const b=t.XpG(2);t.R7$(5),t.JRh(null==b.swapStatus?null:b.swapStatus.id),t.R7$(5),t.JRh(t.bMT(11,2,null==b.swapStatus?null:b.swapStatus.expectedAmount))}}function i4(O,H){1&O&&t.nrm(0,"mat-divider",10)}function n1(O,H){if(1&O&&(t.j41(0,"div",6)(1,"div",11)(2,"h4",8),t.EFF(3,"Address"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()()()),2&O){const b=t.XpG(2);t.R7$(5),t.JRh(null==b.swapStatus?null:b.swapStatus.address)}}function Bs(O,H){1&O&&t.nrm(0,"mat-divider",10)}function r1(O,H){if(1&O&&(t.j41(0,"div",6)(1,"div",11)(2,"h4",8),t.EFF(3,"BIP 21"),t.k0s(),t.j41(4,"span",5),t.EFF(5),t.k0s()()()),2&O){const b=t.XpG(2);t.R7$(5),t.JRh(null==b.swapStatus?null:b.swapStatus.bip21)}}function ml(O,H){if(1&O&&(t.j41(0,"div",12)(1,"div",13),t.nrm(2,"qr-code",14),t.DNE(3,go,2,0,"span",15),t.k0s(),t.j41(4,"div",16)(5,"div",4)(6,"div",17),t.nrm(7,"qr-code",14),t.DNE(8,e4,2,0,"span",18),t.k0s(),t.DNE(9,X0,1,1,"mat-divider",19)(10,t4,6,1,"div",20)(11,_2,12,4,"div",20)(12,i4,1,0,"mat-divider",21)(13,n1,6,1,"div",20)(14,Bs,1,0,"mat-divider",21)(15,r1,6,1,"div",20),t.k0s()()()),2&O){const b=t.XpG();t.R7$(),t.Y8G("fxLayoutAlign",""!==((null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))?"center start":"center center")("ngClass",t.eq3(19,g2,b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",(null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))("size",b.qrWidth)("errorCorrectionLevel","L"),t.R7$(),t.Y8G("ngIf",""===((null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))),t.R7$(3),t.Y8G("fxLayoutAlign",""!==((null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))?"center start":"center center")("ngClass",t.eq3(21,g2,b.screenSize!==b.screenSizeEnum.XS&&b.screenSize!==b.screenSizeEnum.SM)),t.R7$(),t.Y8G("value",(null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))("size",b.qrWidth)("errorCorrectionLevel","L"),t.R7$(),t.Y8G("ngIf",""===((null==b.swapStatus?null:b.swapStatus.txId)||(null==b.swapStatus?null:b.swapStatus.address))),t.R7$(),t.Y8G("ngIf",b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM),t.R7$(),t.Y8G("ngIf",b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal),t.R7$(),t.Y8G("ngIf",!b.sendFromInternal)}}let df=(()=>{class O{constructor(b){this.commonService=b,this.swapStatus=null,this.direction=Wt.Bd.SWAP_OUT,this.acceptZeroConf=!1,this.sendFromInternal=!0,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=Wt.f7,this.swapTypeEnum=Wt.Bd}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===Wt.f7.XS&&(this.qrWidth=180)}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swap-status"]],inputs:{swapStatus:"swapStatus",direction:"direction",acceptZeroConf:"acceptZeroConf",sendFromInternal:"sendFromInternal"},decls:7,vars:1,consts:[["swapFailedBlock",""],["swapOutBlock",""],["swapInBlock",""],[4,"ngTemplateOutlet"],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","33"],["fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","33",4,"ngIf"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],[3,"value","size","errorCorrectionLevel"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["fxFlex","50"]],template:function(U,G){if(1&U&&t.DNE(0,sf,1,0,"ng-container",3)(1,cf,3,1,"ng-template",null,0,t.C5r)(3,W0,16,4,"ng-template",null,1,t.C5r)(5,ml,16,23,"ng-template",null,2,t.C5r),2&U){const Oe=t.sdS(2),It=t.sdS(4),Lt=t.sdS(6);t.Y8G("ngTemplateOutlet",null!=G.swapStatus&&G.swapStatus.error?Oe:G.direction===G.swapTypeEnum.SWAP_OUT?It:Lt)}},dependencies:[ri.YU,ri.bT,ri.T3,$i.DJ,$i.sA,$i.UI,ds.PW,Pc.q,ls.Um,ri.QX]})}return O})(),Y0=(()=>{class O{constructor(){this.serviceInfo={},this.direction=Wt.Bd.SWAP_OUT,this.swapTypeEnum=Wt.Bd}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-service-info"]],inputs:{serviceInfo:"serviceInfo",direction:"direction"},decls:33,vars:13,consts:[["fxFlex","100",1,"flat-expansion-panel","mb-1",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"]],template:function(U,G){1&U&&(t.j41(0,"mat-expansion-panel",0)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",1),t.EFF(4,"Service Information"),t.k0s()()(),t.j41(5,"div",2)(6,"div",3)(7,"div",4)(8,"h4",5),t.EFF(9,"Minimum Amount (Sats)"),t.k0s(),t.j41(10,"span",6),t.EFF(11),t.nI1(12,"number"),t.k0s()(),t.j41(13,"div",4)(14,"h4",5),t.EFF(15,"Maximum Amount (Sats)"),t.k0s(),t.j41(16,"span",6),t.EFF(17),t.nI1(18,"number"),t.k0s()()(),t.nrm(19,"mat-divider",7),t.j41(20,"div",3)(21,"div",4)(22,"h4",5),t.EFF(23,"Fee Percentage"),t.k0s(),t.j41(24,"span",6),t.EFF(25),t.nI1(26,"number"),t.k0s()(),t.j41(27,"div",4)(28,"h4",5),t.EFF(29,"Miner Fee (Sats)"),t.k0s(),t.j41(30,"span",6),t.EFF(31),t.nI1(32,"number"),t.k0s()()()()()),2&U&&(t.Y8G("expanded",!0),t.R7$(11),t.JRh(t.bMT(12,5,null==G.serviceInfo||null==G.serviceInfo.limits?null:G.serviceInfo.limits.minimal)),t.R7$(6),t.JRh(t.bMT(18,7,null==G.serviceInfo||null==G.serviceInfo.limits?null:G.serviceInfo.limits.maximal)),t.R7$(8),t.JRh(t.bMT(26,9,null==G.serviceInfo||null==G.serviceInfo.fees?null:G.serviceInfo.fees.percentage)),t.R7$(6),t.JRh(t.bMT(32,11,G.direction===G.swapTypeEnum.SWAP_OUT?null==G.serviceInfo||null==G.serviceInfo.fees||null==G.serviceInfo.fees.miner?null:G.serviceInfo.fees.miner.reverse:null==G.serviceInfo||null==G.serviceInfo.fees||null==G.serviceInfo.fees.miner?null:G.serviceInfo.fees.miner.normal)))},dependencies:[$i.DJ,$i.sA,$i.UI,Ra.GK,Ra.Z2,Ra.WN,Pc.q,ri.QX]})}return O})();var v2=g(6949);const md=(O,H)=>({"small-svg":O,"large-svg":H});function hf(O,H){1&O&&t.eu8(0)}function n4(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",7),t.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17),t.k0s(),t.joV(),t.j41(12,"div",18)(13,"mat-card-title"),t.EFF(14,"Boltz Submarine Swaps explained."),t.k0s()(),t.j41(15,"div",19)(16,"mat-card-subtitle",20),t.EFF(17," Boltz is a privacy-first account free exchange and a Lightning service provider. By doing a Submarine Swap on Boltz, you can swap your on-chain Bitcoin for Lightning Bitcoin. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function r4(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",21),t.nrm(2,"path",22)(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),t.k0s(),t.joV(),t.j41(9,"div",18)(10,"mat-card-title"),t.EFF(11,"Step 1: Deciding to Submarine Swap"),t.k0s()(),t.j41(12,"div",19)(13,"mat-card-subtitle",20),t.EFF(14," You have one or more Lightning channels that are running low on outbound liquidity and you want to fund it using your on-chain Bitcoin. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function uf(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",29),t.nrm(2,"path",30)(3,"path",31)(4,"path",32)(5,"path",33)(6,"path",34)(7,"circle",35)(8,"rect",36),t.j41(9,"defs")(10,"pattern",37),t.nrm(11,"use",38),t.k0s(),t.nrm(12,"image",39),t.k0s()(),t.joV(),t.j41(13,"div",18)(14,"mat-card-title"),t.EFF(15,"Step 2: Sending the on-chain funds"),t.k0s()(),t.j41(16,"div",19)(17,"mat-card-subtitle",20),t.EFF(18," You send the on-chain funds to an address which can only be spent by Boltz when it pays a Lightning invoice to your node. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function ff(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",40)(2,"g",41),t.nrm(3,"path",42)(4,"path",43)(5,"path",44)(6,"path",45)(7,"path",46),t.k0s(),t.j41(8,"defs")(9,"clipPath",47),t.nrm(10,"rect",48),t.k0s()()(),t.joV(),t.j41(11,"div",18)(12,"mat-card-title"),t.EFF(13,"Step 3: Receiving the funds on Lightning"),t.k0s()(),t.j41(14,"div",19)(15,"mat-card-subtitle",20),t.EFF(16," Boltz pays the Lightning invoice to your node and claims the on-chain funds locked in the previous step. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function $l(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",49),t.nrm(2,"path",50)(3,"path",51)(4,"path",52)(5,"path",53)(6,"path",54),t.k0s(),t.joV(),t.j41(7,"div",18)(8,"mat-card-title"),t.EFF(9,"Done!"),t.k0s()(),t.j41(10,"div",19)(11,"mat-card-subtitle",20),t.EFF(12," You swapped your on-chain Bitcoin for Lightning Bitcoin, while also adding outbound capacity for your channels in the process - all in a non-custodial manner. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,md,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}let pd=(()=>{class O{constructor(b){this.commonService=b,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=Wt.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(b){2===b.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===b.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swapin-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between center",3,"swipe"],["fxFlex","30","width","323","height","323","viewBox","0 0 323 323","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M53.8333 134.583H80.75L94.2083 161.5L117.792 134.961C121.616 130.658 125.869 126.602 131.194 124.413C136.45 122.252 142.103 121.125 147.842 121.125H242.25C286.847 121.125 323 157.278 323 201.875C323 246.472 286.847 282.625 242.25 282.625H147.842C142.103 282.625 136.45 281.497 131.194 279.337C125.869 277.149 121.616 273.092 117.792 268.79L94.2083 242.25L80.75 269.167H53.8333L67.2917 228.792L53.8333 201.875L67.2917 174.958L53.8333 134.583Z",1,"fill-color-0"],["d","M26.9167 107.667H53.8333L67.2917 134.583L90.8755 108.044C94.6993 103.741 98.9527 99.6849 104.277 97.4963C109.534 95.3357 115.187 94.2083 120.925 94.2083H215.333C259.93 94.2083 296.083 130.361 296.083 174.958C296.083 219.555 259.93 255.708 215.333 255.708H120.925C115.187 255.708 109.534 254.581 104.277 252.42C98.9527 250.232 94.6993 246.176 90.8755 241.873L67.2917 215.333L53.8333 242.25H26.9167L40.375 201.875L26.9167 174.958L40.375 148.042L26.9167 107.667Z",1,"stroke-color-thick"],["d","M134.583 215.333C142.016 215.333 148.042 209.308 148.042 201.875C148.042 194.442 142.016 188.417 134.583 188.417C127.151 188.417 121.125 194.442 121.125 201.875C121.125 209.308 127.151 215.333 134.583 215.333Z",1,"fill-color-15"],["d","M107.667 188.417C115.1 188.417 121.125 182.391 121.125 174.958C121.125 167.526 115.1 161.5 107.667 161.5C100.234 161.5 94.2083 167.526 94.2083 174.958C94.2083 182.391 100.234 188.417 107.667 188.417Z",1,"stroke-color-thick"],["d","M201.875 215.333C209.308 215.333 215.333 209.308 215.333 201.875C215.333 194.442 209.308 188.417 201.875 188.417C194.442 188.417 188.417 194.442 188.417 201.875C188.417 209.308 194.442 215.333 201.875 215.333Z",1,"fill-color-15"],["d","M174.958 188.417C182.391 188.417 188.417 182.391 188.417 174.958C188.417 167.526 182.391 161.5 174.958 161.5C167.526 161.5 161.5 167.526 161.5 174.958C161.5 182.391 167.526 188.417 174.958 188.417Z",1,"stroke-color-thick"],["d","M269.167 215.333C276.599 215.333 282.625 209.308 282.625 201.875C282.625 194.442 276.599 188.417 269.167 188.417C261.734 188.417 255.708 194.442 255.708 201.875C255.708 209.308 261.734 215.333 269.167 215.333Z",1,"fill-color-15"],["d","M242.25 188.417C249.683 188.417 255.708 182.391 255.708 174.958C255.708 167.526 249.683 161.5 242.25 161.5C234.817 161.5 228.792 167.526 228.792 174.958C228.792 182.391 234.817 188.417 242.25 188.417Z",1,"stroke-color-thick"],["d","M189.321 97C186.935 97 185 98.9345 185 101.321V112.679C185 115.065 186.935 117 189.321 117H237.679C240.065 117 242 115.065 242 112.679V101.321C242 98.9345 240.065 97 237.679 97H189.321Z",1,"fill-color-15"],["d","M161.5 67.2917V94.2083H215.333V67.2917H161.5Z",1,"stroke-color-thick"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","width","347","height","169","viewBox","0 0 347 169","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M89 157.417V41.5833C89 35.2125 92.75 30 97.3333 30H230.667C235.25 30 239 35.2125 239 41.5833V157.417C239 163.787 235.25 169 230.667 169H97.3333C92.75 169 89 163.787 89 157.417Z",1,"fill-color-0"],["d","M6.25 134.625V18.375C6.25 11.9812 11.4812 6.75 17.875 6.75H203.875C210.269 6.75 215.5 11.9812 215.5 18.375V134.625C215.5 141.019 210.269 146.25 203.875 146.25H17.875C11.4812 146.25 6.25 141.019 6.25 134.625Z",1,"stroke-color-thin"],["d","M256.188 123H238.75V76.5H256.188C259.442 76.5 262 79.0575 262 82.3125V117.188C262 120.443 259.442 123 256.188 123Z",1,"fill-color-15"],["d","M232.938 99.75H215.5V53.25H232.938C236.193 53.25 238.75 55.8075 238.75 59.0625V93.9375C238.75 97.1925 236.193 99.75 232.938 99.75Z",1,"stroke-color-thin"],["d","M146 53V87.875",1,"stroke-color-thin"],["d","M146 122.634V122.749",1,"stroke-color-thin"],["d","M344.698 95.3022C346.74 97.3445 346.74 100.656 344.698 102.698L311.418 135.978C309.376 138.02 306.065 138.02 304.022 135.978C301.98 133.935 301.98 130.624 304.022 128.582L333.604 99L304.022 69.418C301.98 67.3758 301.98 64.0647 304.022 62.0225C306.065 59.9803 309.376 59.9803 311.418 62.0225L344.698 95.3022ZM277 93.7706L341 93.7706V104.229L277 104.229V93.7706Z",1,"fill-color-15"],["fxFlex","30","width","454","height","243","viewBox","0 0 454 243","fill","none","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["d","M141.75 172.125C178.098 172.125 207.562 142.66 207.562 106.312C207.562 69.9653 178.098 40.5 141.75 40.5C105.403 40.5 75.9375 69.9653 75.9375 106.312C75.9375 142.66 105.403 172.125 141.75 172.125Z",1,"fill-color-0"],["d","M121.5 151.875C157.848 151.875 187.312 122.41 187.312 86.0625C187.312 49.7153 157.848 20.25 121.5 20.25C85.1528 20.25 55.6875 49.7153 55.6875 86.0625C55.6875 122.41 85.1528 151.875 121.5 151.875Z",1,"stroke-color-thiner"],["d","M20.25 192.375H222.75",1,"stroke-color-thiner"],["d","M192.375 222.75L222.75 192.375L192.375 162",1,"stroke-color-thiner"],["fill-rule","evenodd","clip-rule","evenodd","d","M161.033 82.5635C162.307 74.0523 155.826 69.4769 146.965 66.4247L149.84 54.8952L142.822 53.1462L140.023 64.3718C138.178 63.9121 136.283 63.4783 134.4 63.0486L137.219 51.749L130.205 50L127.328 61.5255C125.801 61.1777 124.302 60.8338 122.847 60.4721L122.855 60.4361L113.177 58.0194L111.31 65.5152C111.31 65.5152 116.517 66.7085 116.407 66.7825C119.249 67.4921 119.763 69.373 119.677 70.8641L116.403 83.9987C116.599 84.0487 116.852 84.1206 117.132 84.2326C117.096 84.2236 117.06 84.2146 117.023 84.2054C116.981 84.1948 116.938 84.184 116.894 84.1731C116.732 84.1323 116.563 84.09 116.391 84.0487L111.801 102.448C111.453 103.312 110.572 104.607 108.585 104.115C108.655 104.217 103.484 102.842 103.484 102.842L100 110.875L109.133 113.152C110.152 113.408 111.16 113.67 112.156 113.93L112.158 113.931L112.159 113.931C112.823 114.104 113.481 114.276 114.136 114.443L111.232 126.105L118.242 127.854L121.118 116.316C123.033 116.836 124.892 117.316 126.711 117.768L123.844 129.251L130.862 131L133.767 119.361C145.734 121.625 154.733 120.712 158.521 109.888C161.573 101.173 158.369 96.1458 152.072 92.8677C156.658 91.8103 160.112 88.794 161.033 82.5635ZM144.998 105.049C143.008 113.044 130.493 109.739 124.766 108.226L124.766 108.226C124.251 108.09 123.791 107.969 123.398 107.871L127.252 92.4219C127.73 92.5412 128.314 92.6723 128.976 92.8208L128.976 92.8208C134.899 94.1498 147.037 96.8734 144.998 105.049ZM130.167 85.6513C134.942 86.9255 145.356 89.7047 147.17 82.4376C149.022 75.0044 138.901 72.7637 133.957 71.6694C133.401 71.5463 132.911 71.4377 132.51 71.3379L129.016 85.3499C129.346 85.4322 129.733 85.5356 130.167 85.6513Z",1,"fill-color-15"],["cx","371.815","cy","95.815","r","81.815",1,"fill-color-boltz-bk"],["x","313.615","y","82.836","width","110.745","height","30.1472","fill","url(#pattern0)"],["id","pattern0","patternContentUnits","objectBoundingBox","width","1","height","1"],[0,"xlink","href","#image0","transform","scale(0.00185185 0.00680272)"],["id","image0","width","540","height","147",0,"xlink","href","data:image/png;base64,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"],["fxFlex","30","width","295","height","295","viewBox","0 0 295 295","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["clip-path","url(#clip0)"],["d","M182.629 183.635C213.842 170.774 228.719 135.046 215.857 103.833C202.996 72.6204 167.268 57.7435 136.055 70.6048C104.843 83.4659 89.966 119.195 102.827 150.407C115.688 181.62 151.417 196.496 182.629 183.635Z",1,"fill-color-0"],["d","M154.81 93.8059C152.146 100.719 149.483 108.164 146.287 115.608C146.287 115.608 146.287 116.672 147.353 116.672H169.191C169.191 116.672 169.191 117.204 169.723 117.736L137.765 153.364C137.233 152.832 137.233 152.301 137.233 151.769L148.418 127.839V125.712H126.047V123.585L153.212 93.8059H154.81Z",1,"fill-color-15"],["d","M158.075 173.411C189.288 160.55 204.164 124.822 191.303 93.6088C178.442 62.3964 142.714 47.5195 111.501 60.3808C80.2885 73.2419 65.4118 108.971 78.2729 140.183C91.1342 171.396 126.863 186.272 158.075 173.411Z",1,"stroke-color-thinest"],["d","M259.352 172.363L85.4595 244.016",1,"stroke-color-thinest"],["d","M122.291 259.352L85.4593 244.016L100.795 207.184",1,"stroke-color-thinest"],["id","clip0"],["width","225.692","height","225.692","transform","translate(0 85.9831) rotate(-22.3941)",1,"fill-color-30"],["fxFlex","30","width","300","height","300","viewBox","0 0 300 300","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M50 237.5V112.5C50 105.625 55.625 100 62.5 100H262.5C269.375 100 275 105.625 275 112.5V237.5C275 244.375 269.375 250 262.5 250H62.5C55.625 250 50 244.375 50 237.5Z",1,"fill-color-0"],["d","M25 212.5V87.5C25 80.625 30.625 75 37.5 75H237.5C244.375 75 250 80.625 250 87.5V212.5C250 219.375 244.375 225 237.5 225H37.5C30.625 225 25 219.375 25 212.5Z",1,"stroke-color"],["d","M293.75 200H275V150H293.75C297.25 150 300 152.75 300 156.25V193.75C300 197.25 297.25 200 293.75 200Z",1,"fill-color-0"],["d","M268.75 175H250V125H268.75C272.25 125 275 127.75 275 131.25V168.75C275 172.25 272.25 175 268.75 175Z",1,"stroke-color"],["d","M137.5 187.5L156.25 150H118.75L137.5 112.5",1,"stroke-color"]],template:function(U,G){if(1&U&&t.DNE(0,hf,1,0,"ng-container",5)(1,n4,18,5,"ng-template",null,0,t.C5r)(3,r4,15,5,"ng-template",null,1,t.C5r)(5,uf,19,5,"ng-template",null,2,t.C5r)(7,ff,17,5,"ng-template",null,3,t.C5r)(9,$l,13,5,"ng-template",null,4,t.C5r),2&U){const Oe=t.sdS(2),It=t.sdS(4),Lt=t.sdS(6),oi=t.sdS(8),ci=t.sdS(10);t.Y8G("ngTemplateOutlet",1===G.stepNumber?Oe:2===G.stepNumber?It:3===G.stepNumber?Lt:4===G.stepNumber?oi:ci)}},dependencies:[ri.YU,ri.T3,$i.DJ,$i.sA,$i.UI,ds.PW,mr.Lc,mr.dh],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[v2.k]}})}return O})();const Ql=(O,H)=>({"small-svg":O,"large-svg":H});function mf(O,H){1&O&&t.eu8(0)}function a1(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",7),t.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17),t.k0s(),t.joV(),t.j41(12,"div",18)(13,"mat-card-title"),t.EFF(14,"Boltz Reverse Submarine Swap explained."),t.k0s()(),t.j41(15,"div",19)(16,"mat-card-subtitle",20),t.EFF(17," Boltz is a privacy-first account free exchange and a Lightning Service Provider. By doing a Reverse Submarine Swap on Boltz, you can swap your Lightning Bitcoin for on-chain Bitcoin. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function Us(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",21)(2,"g",22),t.nrm(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),t.k0s(),t.nrm(9,"path",29),t.j41(10,"defs")(11,"clipPath",30),t.nrm(12,"rect",31),t.k0s()()(),t.joV(),t.j41(13,"div",18)(14,"mat-card-title"),t.EFF(15,"Step 1: Deciding to Reverse Submarine Swap"),t.k0s()(),t.j41(16,"div",19)(17,"mat-card-subtitle",20),t.EFF(18," You have one or more channels that are running low on inbound capacity or you want to move some of your Lightning Bitcoin to your onchain wallet. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function K0(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",32),t.nrm(2,"path",33)(3,"path",34)(4,"path",35)(5,"path",36)(6,"path",37)(7,"circle",38)(8,"rect",39),t.j41(9,"defs")(10,"pattern",40),t.nrm(11,"use",41),t.k0s(),t.nrm(12,"image",42),t.k0s()(),t.joV(),t.j41(13,"div",18)(14,"mat-card-title"),t.EFF(15,"Step 2: Paying the Lightning Invoice"),t.k0s()(),t.j41(16,"div",19)(17,"mat-card-subtitle",20),t.EFF(18," Your Boltz client generates a secret which is sent to Boltz. In return Boltz sends a Lightning invoice based on that secret. Your Lightning node pays that invoice which moves some of your local balance to the other side of the channel. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function o1(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",43)(2,"g",22),t.nrm(3,"path",44)(4,"path",45)(5,"path",46)(6,"path",47)(7,"path",48),t.k0s(),t.j41(8,"defs")(9,"clipPath",30),t.nrm(10,"rect",49),t.k0s()()(),t.joV(),t.j41(11,"div",18)(12,"mat-card-title"),t.EFF(13,"Step 3: Receiving the funds on-chain"),t.k0s()(),t.j41(14,"div",19)(15,"mat-card-subtitle",20),t.EFF(16," In return for paying the invoice, Boltz locks on-chain BTC. Your node claims that onchain BTC to your wallet and by doing that, reveals the secret. With that secret Boltz can settle the Lightning invoice paid by your node. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}function gd(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",6),t.bIt("swipe",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onSwipe(G))}),t.qSk(),t.j41(1,"svg",50),t.nrm(2,"path",51)(3,"path",52)(4,"path",53)(5,"path",54)(6,"path",55),t.k0s(),t.joV(),t.j41(7,"div",18)(8,"mat-card-title"),t.EFF(9,"Done!"),t.k0s()(),t.j41(10,"div",19)(11,"mat-card-subtitle",20),t.EFF(12," You have now successfully received your funds in your on-chain wallet and also spent your local balance to increase the inbound capacity of your node - all in a non-custodial manner. "),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@sliderAnimation",b.animationDirection),t.R7$(),t.Y8G("ngClass",t.l_i(2,Ql,b.screenSize===b.screenSizeEnum.XS,b.screenSize!==b.screenSizeEnum.XS))}}let $0=(()=>{class O{constructor(b){this.commonService=b,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new t.bkB,this.screenSize="",this.screenSizeEnum=Wt.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(b){2===b.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===b.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swapout-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},decls:11,vars:1,consts:[["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between center",3,"swipe"],["fxFlex","30","width","368","height","368","viewBox","0 0 368 368","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M306.667 153.333H276L260.667 184L233.797 153.763C229.441 148.861 224.595 144.24 218.529 141.746C212.54 139.284 206.099 138 199.561 138H92C41.19 138 1.52588e-05 179.19 1.52588e-05 230C1.52588e-05 280.81 41.19 322 92 322H199.561C206.099 322 212.54 320.715 218.529 318.254C224.595 315.761 229.441 311.139 233.797 306.237L260.667 276L276 306.667H306.667L291.333 260.667L306.667 230L291.333 199.333L306.667 153.333Z",1,"fill-color-0"],["d","M337.333 122.667H306.667L291.333 153.333L264.464 123.097C260.107 118.194 255.261 113.573 249.195 111.079C243.206 108.618 236.766 107.333 230.228 107.333H122.667C71.8566 107.333 30.6667 148.523 30.6667 199.333C30.6667 250.143 71.8566 291.333 122.667 291.333H230.228C236.766 291.333 243.206 290.048 249.195 287.587C255.261 285.094 260.107 280.473 264.464 275.571L291.333 245.333L306.667 276H337.333L322 230L337.333 199.333L322 168.667L337.333 122.667Z",1,"stroke-color-thicker"],["d","M214.667 245.333C206.198 245.333 199.333 238.468 199.333 230C199.333 221.532 206.198 214.667 214.667 214.667C223.135 214.667 230 221.532 230 230C230 238.468 223.135 245.333 214.667 245.333Z",1,"fill-color-15"],["d","M245.333 214.667C236.865 214.667 230 207.802 230 199.333C230 190.865 236.865 184 245.333 184C253.802 184 260.667 190.865 260.667 199.333C260.667 207.802 253.802 214.667 245.333 214.667Z",1,"stroke-color-thicker"],["d","M138 245.333C129.532 245.333 122.667 238.468 122.667 230C122.667 221.532 129.532 214.667 138 214.667C146.468 214.667 153.333 221.532 153.333 230C153.333 238.468 146.468 245.333 138 245.333Z",1,"fill-color-15"],["d","M168.667 214.667C160.198 214.667 153.333 207.802 153.333 199.333C153.333 190.865 160.198 184 168.667 184C177.135 184 184 190.865 184 199.333C184 207.802 177.135 214.667 168.667 214.667Z",1,"stroke-color-thicker"],["d","M61.3334 245.333C52.865 245.333 46 238.468 46 230C46 221.532 52.865 214.667 61.3334 214.667C69.8017 214.667 76.6667 221.532 76.6667 230C76.6667 238.468 69.8017 245.333 61.3334 245.333Z",1,"fill-color-15"],["d","M92 214.667C83.5316 214.667 76.6666 207.802 76.6666 199.333C76.6666 190.865 83.5316 184 92 184C100.468 184 107.333 190.865 107.333 199.333C107.333 207.802 100.468 214.667 92 214.667Z",1,"stroke-color-thicker"],["d","M239.077 111C241.796 111 244 113.204 244 115.923V126.077C244 128.796 241.796 131 239.077 131H191.923C189.204 131 187 128.796 187 126.077V115.923C187 113.204 189.204 111 191.923 111H239.077Z",1,"fill-color-15"],["d","M184 76.6666V107.333H122.667V76.6666H184Z",1,"stroke-color-thicker"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","width","383","height","279","viewBox","0 0 383 279","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["clip-path","url(#clip0)"],["d","M267.882 220.417V104.583C267.882 98.2125 263.809 93 258.832 93H114.029C109.051 93 104.978 98.2125 104.978 104.583V220.417C104.978 226.787 109.051 232 114.029 232H258.832C263.809 232 267.882 226.787 267.882 220.417Z",1,"fill-color-0"],["d","M357.75 197.625V81.375C357.75 74.9812 352.069 69.75 345.125 69.75H143.125C136.181 69.75 130.5 74.9812 130.5 81.375V197.625C130.5 204.019 136.181 209.25 143.125 209.25H345.125C352.069 209.25 357.75 204.019 357.75 197.625Z",1,"stroke-color-thin"],["d","M86.3125 186H105.25V139.5H86.3125C82.7775 139.5 80 142.057 80 145.312V180.188C80 183.443 82.7775 186 86.3125 186Z",1,"fill-color-15"],["d","M111.562 162.75H130.5V116.25H111.562C108.027 116.25 105.25 118.807 105.25 122.062V156.938C105.25 160.193 108.027 162.75 111.562 162.75Z",1,"stroke-color-thin"],["d","M205.979 116V150.875",1,"stroke-color-thin"],["d","M205.979 185.634V185.749",1,"stroke-color-thin"],["d","M2.44963 159.45C0.488815 161.41 0.488815 164.59 2.44963 166.55L34.403 198.504C36.3638 200.465 39.5429 200.465 41.5037 198.504C43.4645 196.543 43.4645 193.364 41.5037 191.403L13.1007 163L41.5037 134.597C43.4645 132.636 43.4645 129.457 41.5037 127.496C39.5429 125.535 36.3638 125.535 34.403 127.496L2.44963 159.45ZM65 157.979H6V168.021H65V157.979Z",1,"fill-color-15"],["id","clip0"],["width","303","height","279","transform","matrix(-1 0 0 1 383 0)",1,"fill-color-30"],["fxFlex","30","width","454","height","243","viewBox","0 0 454 243","fill","none","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["d","M141.75 172.125C178.098 172.125 207.562 142.66 207.562 106.312C207.562 69.9653 178.098 40.5 141.75 40.5C105.403 40.5 75.9375 69.9653 75.9375 106.312C75.9375 142.66 105.403 172.125 141.75 172.125Z",1,"fill-color-0"],["d","M121.5 151.875C157.848 151.875 187.312 122.41 187.312 86.0625C187.312 49.7153 157.848 20.25 121.5 20.25C85.1528 20.25 55.6875 49.7153 55.6875 86.0625C55.6875 122.41 85.1528 151.875 121.5 151.875Z",1,"stroke-color-thiner"],["d","M20.25 192.375H222.75",1,"stroke-color-thiner"],["d","M192.375 222.75L222.75 192.375L192.375 162",1,"stroke-color-thiner"],["d","M138.762 67C136.099 73.913 133.436 81.3578 130.24 88.8025C130.24 88.8025 130.24 89.8661 131.305 89.8661H153.143C153.143 89.8661 153.143 90.3979 153.676 90.9296L121.718 126.558C121.185 126.026 121.185 125.495 121.185 124.963L132.371 101.033V98.9062H110V96.7791L137.164 67H138.762Z",1,"fill-color-15"],["cx","371.815","cy","95.815","r","81.815",1,"fill-color-boltz-bk"],["x","317","y","81","width","110.745","height","30.1472","fill","url(#pattern0)"],["id","pattern0","patternContentUnits","objectBoundingBox","width","1","height","1"],[0,"xlink","href","#image0","transform","scale(0.00185185 0.00680272)"],["id","image0","width","540","height","147",0,"xlink","href","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAhwAAACTCAYAAADFh8BYAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAACHKADAAQAAAABAAAAkwAAAABS37hiAABAAElEQVR4Aex9CaAkVXV2VfebfWWG1QWQRYddNgmCO6CiIGrAKC6gUWOIUROz/CYm+OdP/P9f82viEmNUcCFRUVFQlMUIgpIoCgwO2ww7IjLMMMub5b3XXfWf75z7Vd2urn69vK5+/d7Ufa/qnDr33HPPdm/drqquDoNdvMTxhSPBE5vODuL6BUEcHiDumBcE8Y+DYORT4V4fu3YXd09pfumB0gOlB0oPlB7oiwfCvkiZoULiDe9eGtSCH8RxfCJMCOUvlj/AIAyjoBL/abjHJz4+Q80r1S49UHqg9EDpgdIDQ+OBXXbBEW/8i2XB+ParZYHxHDohlrAAB0QJw2AiCOccGu75sXVGKfelB0oPlB4oPVB6oPRALx6o9NJopreJ469Xg4ltX8NiA8sLLDD8xQYWHbrwiOM5QVC7YKbbW+pfeqD0QOmB0gOlB6bbAyPTrcC09P/bH39EbqO8NF1mRKoGbqbYAgRQCkAU47mOspQeKD1QeqD0QOmB0gNT8MAud4UjfvyCt8Rx9D5dbMg9kwT6OK95xHrtY/EU/Fs2LT1QeqD0QOmB0gOlB8QDu9SCI37sghPievyvSeR1QSFHgD7uGPRmSxj8POEvkdIDpQdKD5QeKD1QeqAnD+wyt1TiJ9731Hhi52WytJinFzDy3OUueOitFNTjAkcU3ZDHWtJKD5QeKD3QLw/Ej55/TL0e7tcveamcmqCY5gGDoFqdf0P4lM8+oQflrvTAgD2wSyw45F0b84PHHr9MntvYJ5RbJ/aYqHgat1FwZUNvp7gHRYWEdQdKWAk3BXvt+UM7KvelB0oPlB4oxgMT9VjeAxS9FXMTv56vPeFDDz8IAW2cspLpixdos/XWGIsNm9XiaOeL5eBHspWl9MDAPbBLLDii3zz2OfHs8fCuLDpSJxN3kDUpjP+9Gl64M21QYqUHSg+UHijAA3Gkc5N+IBIcEAVzkbfeUJq/c2z8zJSzAJEljAgJQ85qfusSLz0wWA/M+gVH/Ngf/GW9Hp8Lt+av/jmkwUHcBmclnnMRqGUpPVB6oPRAoR6QVYVe2ZDVgS06bA5Cn/xcZP1z+eEWJBl+tk0WLNl6d6WjUFtK4aUHWnhgVi844t+883T5sPD3/BQAH/i4fFvFDW77WqwNVqMJfke4zydvbuG3klx6oPRA6YH+eUDWF7z6Sgjh7RYQ4PH5iRNm24O/LKUHpssDs/ZbKvGj71glnxX+I4qj1EZ+VAD0ced9DlLAOIi+MF1BKfstPVB6YNfzgLtmwactxAG4HYIrHQZ9HDRsfhvDcaUkLfhQhQJIPK0tsdIDg/VAejIebL+F9hY/+d7lcRxeHkX1pRh8HGxYRigO6AYrIQcpoFwFqVeqI5cUqmQpvPRA6YHSA4kHbE7CIbC0ELcFhtFJw9xmuH5I8hYnkGKbzoCC68yWii2x0gPT4IFZd0sFry2v/+bar8lgOxj+bBi8GIMcf6jDg1T45wNVimuj74d7fvoxwcrSgwfih9940EQU/lleU/mcJS9/CQNAFOKARRR8vsOq2j7npThX2j3rE8by6H+4Qz447qxUgh0y4T8hv/b368pI8Os54fyHy68eFhHNXVAmhok3ZyV4h8MFCxF7ds3GmwnbBf1YmjwUHph1C47oNz/8R3l3xmnwbu5YFWIyVjkGCW1kBtVK9aKhiM4MVaIWB/vIQu8deerb3MlLwRKjzHM0CEXD/CoxsUkziVqDWNYBorAtubP3sPP5PX2kYSiyYiegiZ/6JD3JzTcwY2IP6kFcC4PxeFsw/uCbHpeF7K2ShLdVK+F/VaPFPwr3+5cnG5QvD0oP0AO6IraPR0i9dErKyX+Xm2iKFv7XaN1nKMlhE4z819wELEvpgWn2wKxacNQeeft5UVR7j/68vDhWx5gMPH+sNQw7DEoQ3ODEya8ShhuCffb57jTHZeZ37xYAGRc32WXzoUyaLjCMD6Gd8DFnWpAYLtarQFfXJFwI2t7BpN7jt/7THMntT/iT/og7GWqf4C6FbLGCjuJoTyGeJvTT5FtSQT3cUh974I03i6Dvz60El4RP/8q6RJ8SKT2AS26SLMwzwtx8FFbWq+NcLuY5MTf/8xhLWumBAXhg1iw44kfeeWI9qH/GX+0nZwF3NsAgBcrBqrjsXLW6Wz5oXCLv3hgfgO/LLsQDmBAREYNwSWOU9EhY0phlPtGhrfxxkWnS/JhaLSnMD/Ij+CobDbUIopc3SGjUh32lSwxKZvtGflLFzKpwniD9nTBWDy4ce+Dcm8KwctGcfatfDsOLy3e90FG7KIwj3NxDzjXmjx4JGRAlm3/ZfPYl+C2yWWp15b70wGA9wFvZg+21z73FG37/aVFY+5YMxnkNA4srf0DZ9KTmoL/yx2DmgB4JRi7us3q7pDhMjPiz5YBB4IgDIXAthDggDigb/ggVBwtorUqmvbKRJgdsC6h/rg/kAxc9hGgLHkIfV6LsmDfMIfAABzQ8hbRbfRLHJ8pDzZ8de3Di/rEHz/3zeP1bl1BmCXdhDzBXAV1uEiKTUAhzvZRpbw388YK3jpal9MD0eGDGLzji+H0Lajvib0dRvLcORR1wGGCy6XV6B5Nr9jxFpAPXTgloE94ePvUzt0xPKGZnrzx5Jyd0cb/S3BlaoyE7d6gIaQ1n8xbuwW0wFP32keISTQc1B6xW9z3tMhO46iY06qtZg/7dhj6As7S3P95beP7PxLaxdeMPveE8wbULti/hruEB5hMSSxMgIYj9Ssj3Q+H5n99tSS090JMHZvyCo/7o5s/LGeZYWN80ucuJR2k4AelJCEx2gsrjr5Tv3oBbBlqyMcOxv8mBi6Gcxj2cPFCWMlRxf2HpP6AhbdG+adOn7IQO6OPk9WUIrn05SB182KSPKtV6R93lfTF7RvX4op0PnnvD2P2vX9W6RVkzGz0gjx5rbvm5pLnh5Txy16cxdwjVL8hXFEBsyGNC4OUFDvNPuZ8WD8zoZzgmHnnrB+Iofr0MIy0YajIkGz4QuOGn9awDRPH55WnuWmVk7r9rRbnrgwfMx00+F7LSGDT0hInQFcaLEEHSJ+4dgXRChFLnWIqgLELI9XF21ClkW8K28hJFtIeu7Y/jk8Tmn8szHu+ct/8lZT52GqdZwse8Jpz2/J9mv8oPb86dePjeI+WL7cfJkuy4MIqPkxl+N3m4/6Nz97vkE9OsXtl9lx6YsQuO2iPnv1Im878zeznJY5gCt+GKlT+/Fgk+4vpVMRCkJAM7Dr4b7v2Zx41a7qfqAX7q0ofaEAfGROLDB93QB/FW9RpOMDLEwLPFq2snrzFDbC2iNCdD20+ib7brqcrL01ceWl0s32u5ZOcDb3juvP2e+cdheGF6WS6rQHk8qzxgC1R9ysfsYm4T5lnr1eXlE2nWNJnx8iRNKw3vUBp/5LLDwnrluCiMj5c55LixB+46UsybS8XMVHgpWEZaCWeOB2bkgiP+zfmH1iaiS+TUJbeEkIJuEOklcRxaWloYUtzud+KyOOfv9HQRVoOLjb/c98MDnNZs0YcTu8XBru5iIWi9NF0BEDJpnejB6HtRds1SiuVIvjTqSZjVF6mlujsGAPZJiWyLY+KEWXld2R9HF4w/ePfKOH7Hm8PwsxPsr4Sz0wPMe8JOrGQuptlOjBBSfLwTqcXzyJWLyvgDdz8zrITHy92k4+phdNzYg986WlRdEMn7bDCFcwwRFq9V2UPRHphxC45407t2m9i6/TvimKXpQLIB5c5p3hV0d889Sd2sO62dnATWV58y58psbXncuwe4wMDKwk7Y3rSRg5JkJ2jGLad/O2PLbORaSNBj0oSd32jlo5f8dAeIgogDs8gDEcxrn70KppO/1AOiaI6JAOZa0tbTJ6GhAdqyDxyjONV9lKSs/XL8e2MPbFkon/5eE4bn1LV9uZuVHtC8lFxhDuYayVz18q2b/J+uRzh2PvSWA8OgJrdEouPltTTHyWLjGBlTS+SWuJrJz4jZ/G/ygbPfv0rdxFMShtYDM2rBgUtuEw999+syIg+CR/VkILM3TwbZkws4rPBkYZ+s9QQgFRzYMtC/Un6CdK7qC5BpLT2DGu7O0I0RyelM2ml8kvYIlGyuIdGkWhClJYRG/uzr67M5ArHaXmBPhSsPQhUmUhN9HD4F+yW/zxy7/5v/LPpd0JOOZaPh94DkB/OeUJXOJChzNUkvQZSWEKSVEszkbP4PYsKXH85cOD6++WVRGB4X1oPj5LcFjotrO3eDKSy8xszjBIrundif8JfIjPLAIPKvbw6pP/Ldj8kq4ZTk7KODUXbM5MwtFczx/EBAJTSZeeDgSDjn4gypPJyqB5KYiCDgLSbEpm7YjhCNedkCopSOyZktudx0BAY8+QTo+nbV+DYAlDEIGbgCYTQcEfdvu7EN6pPJvJU91IsQfMBb8UOmX9iO0NkvVv7hzvted9f8A75WPijn+2u24Yw7YZ/zvxYWf41jorbtMHmP2TeR+Dp00+GVjoXEvkwASSdsYX8QcUBl2peHQ+2BGfO12PGH3vzWehS/GycCLBq4cCCEl4m3quc5CNDOSxGucvwyfPrnVg91lGagclgG4E+CkkDgWgjlQHkcNNzxoy02DZqDPs56E6h7Q70+0I+e8B3kHEWYtmqJNenXZI/IVnvQb6q7YVanMsCjfGADr5Um+Z4MyGu0P/jo2MPnHsG2JZw9HojwtVjEe9L4azKnOaH88EGaT0luMd/y8r9wt9WcFaKX6NG//Pftb3mNpHDryg5698CMWHBM/Pr858oPav0LzGw8V3Cg2UA1N5CGcWk4IDYsRAi5OJGnky7q3X1lyzwP4DMU4uSmhwRaNGxatUlS4qECDOby64QlTG4C1biB5jY0T2Kpshp3eGU0ir46Wl8f7XDQrCaBoJh2BrE3nVL90MR01saurcmCPN8GH0ddXn8mK5Xvy1B+z36xc259fOJieeBuRl2ZNE+V+8k8gIk4N1+8+GMMTDX/J9Ohn3WwJdceN8I4YrrJf9/+crnRz2gNTtbQLzjiX5//9Hhi4luRTLZ6QpBBx2RFAioOqDgOdZpWD/JEBJi3SbKPzwmD/1Dmctc3D/hnQ5tQbPLRCUhiQagxwQSE+Lg/rRMc0MeTernKARzP3yTP4IDmYgwjgLOAB4X8yBejudzR2pRfDyfZUTb7Ux2dTdaT6U0RPs3nZXu1qyv7g2N2PHjHeyi/hLPDAziBal57UPMF+epozHvC3vJ/sP7qf/7b+B/6E9dg3TxjehvquMUPv2/BRG3i23I62CvXo9lslsGpoxNQN7TyTybErV72V4RP+9KGXNklsWcP1OQSR3JCdQsBHkMo8NaFdRYjC5/gyaHheqJ2sQWeFuLWwPoSDqeHTt6CA/o46yFK21hzE0uROMrknPIKje3bQYjQNkByCztzCuih7JJDQerBX8aPn704t3lJnOEe0ICLDUnADU8OBdF/GwEwtpv8B3/hRb7A3WocoO8p57/YX17hKDyKhXQw1AuOiejxi+TKxjE6wjCs9ESVnjyyyctEbpXs/gnG4RcV4tVSqJ2Yxcl6gcFB4NkNk6fyCNSJFDHGv1sgZGOMuKEAGm6LhzRHUIscgQyTTYh+iLNeuYWPRXWRA+qJZ4asHZ4dElzqCPP6N6XQMYSYHELK9GFv9se7j28P/5g6l3CWeEBzFjvkGOc7w2mh5VySXkLuLv8pp3BYaP4H8sWXssxEDwxt3MYeOvev5Cvar8OAkvGnG3IYuMvlZOK3B0ndvXr9xoGFonlwWltX+9i8/Q66yvBy33cPuDO6LgLd5MlJ1IcaX/C6KPN2R6tbICpPeCkDehuNFkAWisls5udEnvZJXsBm/kb57AvQx61PdOv6BySPg2zjQ79P4J3aX69H7ymf5Ui8PgsQu6nSafyZQzCceWhOcPnXMv8H5KqC8x8P2ZZl5nlgKBcctYfeeKY8JCqvLc+u3u0k0fFg46ATmP2Th0W/LK+MLv47YjMvJ6ZVY06erWM8repJ540TumlD2tR168L+PcfuX3P61HssJQyTB7qI/zCp3TdddnX7++bIIRU0dAuOsQffclg9ir4it1L0AgUWCmkhDujjKUcDhlU2ilttN8Bg5ItWWe6L8ECrBUO7CaW5nlcSGPMshPbMBYTa8LT/ydsbv/H4uMnM9sV+CJs919x/qpNq2qRfu/rW+ssYOa9Zg5Iykz3QnD+t4285CmvTfGzffjDegR6+LuzVp/l463rKyY5FtijhTPLAUC044offtiKOJy6XRFyCMYRbJYSKi2cJ4WQ/YRVnkmNSx4YlC6F3f0W+3/Czeft9cQ1klKUID9S82152lQrxwWbPQxgELgFSGqCP8zkHcBgfsObSlAPCQlozd/cUpA8KoI8bVWsc6vTXI7PZ0s/wIuwXv7w8jt89L9WlxGa2B9KxMCz536s/kftF53+vupXtps8D/jcYp08L6Rn3o8cevPtSQQ7gkxZ6PpI6QijYiGOSt5dVo86ODOJYCR60AYAHjsKLQS5LgR5wgdJXoQjuXomiHfoxtEWIfa21F200+ljIMDM0yCKJnaAOs7dbLWRzBHXUAf0TB0RpV69M3i7LX6T9ouP8nQ/85kTp/jpPhRKdgR6I8JsiLue6Ub/b/A+C4u8i41cGMeRQisp/ueVuHZT7GeWBoVlwjD14z8fl5Uwv1kz1HvxMVw2WxHZCMB8Tb3VyyEYCfJUwHJtTCb6arSuP++0BmxCw5xpAe+A84aDWSVzc/NS0aGRb1ifChCAn97rE9F91cvMnoITZdQ6pjsYqQsyIirsVEfGkXtpCvkxwc+VHslbIBL+b4PuKxAPzPdZoII4gi9QEcQSt69F+7T+WMVMuONQVM3mHS81IiWy+MHcAtWQJyB1LIq3GMPAOHZ6OLydlAMASPGtP3/J/qK7ND8Cds6SLoVhw7Hjg9b8fx/ULbOZ3IwYObsrWyb0uF+2VgbCpvYxEuUnz7XC/f39yckll7VQ94J//fbw5qE0zqHRNmnFDF4ushxhhYuGB35qWHzSL7z977x1x/WR51Oj8MIjk1oZO+8mHVN9mH++z/dJf+Bz4pyyzxQONkx7znjAZCAlB7PZwveIhBF7xw1xIGjxEetHe8nPex/uV/2H5WypFh7AQ+dO+4Jh48PUny0Oin9Ixg8zEvJ1kKHGcgGSxoO9BkOndXQEBVR6c09OTMigGScZvNG8P3rBysUcp0cI84GZBhsMdWojkwIWIi0NCqOPjWfU4eQIOavLM6oDj8BmXPibgG9jG1r3u8CisfVqutjwvO8HryQC2FmC/SIUfn6mw3M1oD/hf8+w0/2FwNt/YlhB5x1+MHZSD5khHE0x45H0B+T8oW8p++uuBab0wFT/65n0narVvykQ9N1lkJIsNGMpZGpALC4NcUhAqt2uLWyfYdDg6qLLC8NF5+7/6GvCWpWAPmPvTyQaBYrAI81RoDLmETQgqCxDTaAqTSTVPzgBp8w762q/mH3AEbm18QtWznekNW6F/QfZLnu8Xx2fLa//LMis8gFxBAdRNdglszn+d64RBoRsrwJP2efmnHRS3m5DlxqT992H8F6d9KblID0zbgiN+9B0Lx8Z2fkeM25MG6kCRAw6eLAQfeXycfPqWfRlsgNhQCPUgir4UhufUFS93xXqAJ1hMfjrpYRK0iZGQcfMheDXGbA8tgQ95wTtdFh70rT+W50q+1qB/8fZXxu6L9hty95TqtfMAvpDncoUwyftJ8h8PKaMAYsOShBC4jjUHgQ+scPwWn/8DM6nsaOoemLZbKmM7N10st0OebXdQ0oGgg83ZZXUYTEawwSRjCAPIFR8njRBfodXB527ByAOjF7OuhAV7gJMbYsdJR9C8p9Z9TRB/a5LG2J8o8XQ6aob1KfUFixe9bcfW0ZPEjqepXQXbD1/Uw2CZ78OZiss31So7fr36KSPj8cpaVF1UqdQX1aPKokoYLZKoy53UyrZKpbItrkTbqlF129xKsN7d2pqpJjfozbwnTCo5loSQzX8dC0LnaGFbQJRs/QC+pOI6dhqZQqK4kfs1/stfUzF/zrT9tCw4xu4754PyyxRn5wyHBv9xnBGikgMrYfQI5CNUfncgC4+b5h9w6d1JuxIp1APJQpDxSeYf+RQmMeHzF+ADTn7irNeJCm3dhKVt8UlO40rhhZrSlfBw7y9v237vWR+V0+PHtSFVLMR+U60S1WfUD7lJ7MLxB1+zKqoFJ8s8cKRYcYDE/8Dt627ZXwI9b1xzIg7quBYZ1oMIb7FG/MMoqEd1OemGwURcDyaEvm3dq7ZLBt0nGXGfpMS91aB6SzCneuOC/S+9X1rMoIIRkI6FzvLfzGOK2ZGe4QW1AaMf1oSBH9oG5RCOZzHJioM6vvsw/pESZZl5Hhj4gmPs/nPOiuL6h/R8If6yEwcd1zhYSE0hspY8oBK3wdW8gPHrw4tSOSVWrAcmJDIWk8YFgkQIH3Hwn3wN1RYbCb836UJHx65QdUYKqAA9GsrdgiVzPr9jc+0jMunOKdp+nEiiOBz6BceO+16zX1yPXytxf/62ta8+WQK6EsHTE5CLOY79k67WW7pMFv+FMokcLoIOR8bV5S+cqAfb1r7qUfni0I3ybYYfLawE3woPuuxxyBveYiOgW/sRf8ylXFBYe/Oj2srFGs/QHd5E37b2LDyPdHpWftZ/GI7wuw5LxWU8R/V5yXjG4kKEcJ7v1/iX/v5k2z1nnZ/VL6uPKtaooCkLmuqbHoqm/2/RwZd9ymo63+9Yd9YH5TUq56FFUz5n7E+clfTfZv4TmbQJ8hlrQJR+2g957eSDxy/UzamTb381+OeFB377n9BuoAuOsYded3h9vP5l1crXOsGptsF845HA1sAmczjJ+M35ab15TwfEjvlx/PWkmxIp3AOY+FA0JoI3xsybgBwf+cGob5N1DRozAgJtAOrAdXmgHQ3RLtzz0tFt6866WfLyxELtF5t1DFT1GsAQecBUGZWvDlfqE2dLDF8vJ6HfERjKlR8JcZ/i7+y3nHGZQtlh+BRxzjlygjtnexB+cnTtWf8ZVsKvLqzE3wqf8e1NQ+csGQfMe0LoOGn+T26/mcgxQmjUTvZ7ie/kypMUjjngOZOyzr/JeG3UuLD8D4LdRL/d2LdC1dXlltNH5wmlY+dKxhfUuBIGu5GlG1iP4t2lnwPQhvMYIdSQq3iTzH/WE3Xoav5Dfy4e/bBf9Xe+sR8WcfnXQ/x9++WJhhVm5QAXHPEjb165c2z75TLlLOYoglJcEUIhTkSAVhAG4AwH8U7rnZggviw88BubeVTCAXjALQIZOUL0nAyOTtTITnCdtBkCHrH3Z2LoibSbEKr12/5KUNkyBCYnKoze9+qjglr0l2Ft/Gx5TquqNie1/bdfHOpJz6BSJ7VV4TlV7sKcKvdfPiW3YS6uzhn5yPz9vnlfhnv4DjvJ/zb269mOPGGnbxqVSyLiuOycDE9zFlZnUS5hxoOMDCGq+53/7eLfaD8UkM2dQlRtwQEjd9UVOnZdZoH9tNmPVT/in57P8ZbvARS8tnzHztFL5amvZ2D1jinAFhuIPRYdLonxkKfgyuMe9NTVvtORiQqIzXj99ilNebC2NL6LBmBm2UWeBxAkFAY5C1mnTBZ7oK1yQOWwDWW7tsME5OE+u4RPHbN285i2OOWZ753aj/FTCYdjwbHj3lefvG3tmVcGtfqtEsHfk7FXbYoX7Sbsg/3oA37AnyROAoFr/4TgiwK52Bn/QX28ds/oPWf++9h9r8UzJENTeol/N/Z3ZSj85XwH6OPqV8QQhdCOGvesA8zbwE0eQQu3H2dT9AeIDYXQjrrfT3YWpW15tvt1rtdpt9/XSXA/5j6exBJ6s02e5zJ1A7mlsuO+1bh/8yJE1r+iwTgTQl+dNBLFWUMI7YGbFeaA9PIsyBgfqQO0t4fnHXDkfwbBNxOpJTIID1jMONdrXHK61QhJJSCKroalKVfFiDFX2VovdRpiE69thnMXy9tsMUlbOhZpfxTWp/UKx7aHznxKPBZ8rFavndM4Qm08Kq1FvPoS/1bOlcTQ/JHc0rmCiSK6SGRw5eX1ovPrtq494zOLR6p/NQy3WnrK/y7sryVXj+mMfKiPfIhcxs5Gp/DqtXY40CiYr/EQL+dt5Rc28kM1pQ1Z/Gm15h9sSDRmTRdQLwaZgTPd/ux4YewYz57i7105mmxt1oXHW7PKvex3iBF/iISEMQlEJuLfQeBaCPNEuqse+Jiim3pDcEDFPQg5wiep9EV5R4KOnzyRJa1YDzBRGaIsRD5Y6Cw3JCGEoomB5LBpwEHjS0M9WaoUa1V76TKvLwQXdEbJ2s3jqdoPOfNrizZqJwPeyQvHqqNrz3hvtCO4S8bxOXndD8J+5AH9KUnjfK4TgFMpzZSsPvKJsiLz4R9uq0V37Vh75hvzbBgELdY7/aJnl/kPe7qxf6qfMHW+Rp/QUzYUQj3I7LL+ZpwI+5H/3dif1QfeM5rZklG/w8PWp5dsf7SbcLjspw8Im81nrLuNPyUVuuCQJ9OfL6vfT7IzLq4BsamzHQSeHWzgAE0hcC2E7tAHXEkBygbO6rzqF32WEh+MB1olZDZhJfw6YQH6ONtnIXLBZCC6k+TCYMxs2YvcPlzp20pGnwbct9nHUZe3Ze2XNr8OD75k4Fc4tq99zdO2rxu7UULwsTCMl0D3PP1hN232cdrmt/Fx1mdh1n7I9POAfbGdL1NxUZgQM4TyAUbRXrUo+rIsoC6P7z9ruckd3B46+bpS/yycqv2dPsFBy+EjFPWV7P15W+dxqUsg+LycBo5C6OO0y7fZx1mfhVO1H3ZoP7QI4wx/0HUKz15DZp7+vs0+Trv8Nj7O+iws0n71gShJqPqKbwjVd6IkYRJ3oUH3PP3R1ndrYQsOfA0uqsffkN8ImCMWwAozxEEY5SuouJhCCKPU2YSQIaXBGe6KB+576b0v7QZXP8AoD6iEwQ3zn37pOm1Y7qbFA4yXxjInhk1KIQFQAGVDUhMqjkPyCD6sJY7CQ6Fb0faLS28ftA+2rjvjxVEw8UuxTb554sYlxqmHU6fi7Xf9iyP8vti/TQY4sknBUsfmGaYRobaJ4zNGJ+o364OvqZDBYVQGULZ2+e/b7OOpwuYf2t/pFY6K+As3SvBPqC6EYIpU1A4s+inO/n2dfJz1TbBg+038JPFvUqgzwmyxX2MtJgMy7oRJ3HuIP71YyIIjfuxNi6J69B25TLgHAtwyGM4C1pMX0BIjhaYwLQX0cVebWYDI9/AvtppyP1APTMjnqFZB9AMruC4UHbRFo2QD4ojFiZ5ERHMHQSLO+oHa1WFnMrHKLeH4eblJ3G/7w3CgC47Re854v1w8vFq+3rqHnkA0NhYrjQnsQ6AAfVvpO58meF/ir4lhHXAxCohNVXEQOHROIRLKaNba4XF8YFCbuElsfQPpRUP4gXlPCEWhK6GPa4USrJ76tbO/0ysc+IFMja/6Lo2nT5uN8acfu4aIBTbxVwKBoxD6OGiyDWX+i2o2Tswextz0TWkdx99bZXgovDH1IkqE27du/aIMlaPgeFHPApAzODQwXr1vgI8rnycLMimXUHm8GUa+c7994dLdLoX4skynBzRCooCLmuaB4IB5OdFWVY5eN2Lb8g+eYdu6M0+VXt13z4u2P75lUBbKw5V/LxPkR+T2gzxw6eKpndPGPE1Y5/j7Hn/IRS6YfJ03BAf0cdabhtTJNQXRTyfBpe0CuRj8lW33vOId1mZY9lAUhQr3Yr9J6Gjvj1E/drMx/j2fDb18anIq6wBl833o+7apXStCP+JPnaSPrDh0SxpwX0df967jD2EFfC12+7pX/Y1MSq9tUNT6EuXdwzX6CdbDWU9DAX2c9WokDlzwlO45r8E5wTfCPb6wNWlaIoP1AGLhx8P17pagEkH7A5m0fAUZX4s5Hq6zFngg2OVQfsPpo8bx/1DbC7ZfrqLUFy2Yf9UgDB295xUfkZuxH2CsWsbPt9nHnZJt2zcZ0z7+k+WBLTqQitKz04dQu/J19HGplEM8DfaZrXe/8o+a1BoYof/2T0X1tvHzfejjrtO27ZuU67/9LePf43RCDVV132Yfnwn25+ibDUfb+PkyiHsPcfS8pssqguPt9575GgF/C6VMsRSmpxXWmAQ/WEwEQMNTqO3VAKMpD3oBb9Jf2os8en6x9VDup9MDFkdM3hYrrCOBp2tKwxE526CtnxU4Tgu/vgZIPK2dfmzb2jPeJva9kJoUbP8N4dMvLfwbKlvufsVHxY73Iy7mc4P0PyFt9mHB9ktXqU5p3rTOH1+3PDyrrxzLK1WiTxS/6Og1//trf+ITOfmaL2zcmm/TvhBzxp0waeshWX/2f/ynOvUj/p7qHaP8bJzXYKbZn9UXPmUeALdYG2TcCSezn3WdPkNE/pZw9L4zj4xr8ZfkzYLyVfI0BCkmTbFg4G0PHFr28SvdYoyapxAdYQgaDUcp3iDTqnSP+2H2Pfb4gfkHXn5depnEYyrRgXiAiWvhlgT1gubjWWXQjm2ydTi2OoN59dNJ27H2jBfUorr+FgNSHYW2+Db7uHGl++7sD7+dtiwG23L3K98eBtGf0h4blejLDMzGIzPEC7ZftMjNF+d80TLr/3z+1HfN/My1+OOjd52+bvGqK3+Qcvcf60w/6tS9/fi1mY6KfBTF5Z1sPBl3wtkU/17fNKoX7uEsKVl/ZfMJPKC1KkXHvzP56XydtYdxJ+wk/r6tfbnCET/6+t3ljbnfkcXGIpzwYZRubnUkR/qHjoGlhTigtSFEe0SPEDjqEpjHDw600XdvuAxIOyuxAXlgQvpBIloypgsIjY2LaSvcbwMcMSfU+KsNyIXhKqP3nP4eeYnUNaLVPNgGnX1bWtmbpfttaDehb7/QxoKRyleL9MKOe05/fiWIdAEFHagHIfSB/oS0mxB8xAE72fw27IfQt59288MNoOHwPRKHeoETfUMXxsQg5RLmy2dPcTWuBF/ded+ZzyKlnzCSy86+r6AT9SLM1w+2grcz+7vV2fpu7S/obP61+IKfdvh4J7FnO0Lre/Lxb7Hu3H7TqZU93XqH/BY76k048+xHLFEIzU+gwJa8eMDWdvFHe5YpX+GI43fMGV376Dcky/aHRrjK4DRD5hmuSqFLzUaDOFQ6aSBISW0VMbZ4YVI1idOJRNqzkfCjRXVu/EWVVe6mzQOWiAh/NoZ2QmB9VkHSCVGfh/u0rIxBHcuLr+Zuu3v7OfJR8M+jKD5C+3W5Tv0KtP+LSw64/LdF2brj3jP2rdXq3xQ75vh9tLOHdhO24/dlA2c7Qp/m43496H5prOOEYpBTESHa+fzECX25Ms0sm5ioXR6vPff4ot59wn4Ju9LPKeu3TeZGzpHJ9eMGy5oP5Ef28Jct7eLJvgnb8Wflsx0h6vNwn9ZKhtFpQ2fxz8rq5DisyJeII7tyRL0IZ5r91Jswa387e9iOEPzy8HUiZsoLDlls/LMsMl4AiXoJTpK04dqCP7KTBGbwbfXqKwfclEwTjfUG7QSm/enJzN1GAQF9heH1C/a/4n4clmU6PcAYQwf7hEltGE87Bp+3aExw0NIaO4KklCb34iryfMHzlLHFDmdLXHHhWZM4YDelEtTnxpVwtyCurJCHJ/eVtieN3rPtBLFsQZLWKrBBQ03JfttfCcNoZKTy0W7075ZXFhuflzjtnvF41/bY8C8o/h0YxczKzZ8O2ufY/8zRaCN8X8C3V/zc6SD/O9A/a38HTTIsvk7iDRx2MZ675U9HdzH2N1qTMbXHQ/nWlteysYeZb//U7IH9uuZwHprSgmPb2le8Sz7Z/QEHM2T6eM5g1c4tCKZB48nHadUjUFmVcK3odaaKkKWn5EJVf66yA5lYo4KXdzmJd9q+XRe+fFmkPb5k4cI1g3jor51exdS7TGDGMeggM4e14wwhwy9PBOkspxBNXT2g/M2Va1o/Bs5Faiocnchiw/WlEAQRRxoOmwp1s+Y2WkR+BD00MbBzOkOXpuLqOBLA42xQ1kx1IqsFf579ssT+4vwDv7u2qes+EbbcffrvyyR6iukrCtMGJWQdlO00YyDb0leZ6l7shz81D6Tr7CeubPy1W2eC2WPm0N1Z7ZPcZGgZO0AtWDyFb5dv7Xx98TO/d21T+ykRnKLsU2TlxX8q9tOK9mrKSVRD7emkjWZz/Dv3TqP//AUHZNBHQAX34smpI82/yfn7HX/0yzHRaIM7ouqAKNTdy/90zBpL476FPY6p5wWHfCf/BVG99k/UK+3UpxAn5EQBpZptsRMHHEJ+QBoAfrRPr2gQBzR5Ul+vv11ODm/HcSy/Rw0/1SguSQQjZCcrdFsXfnZPHNDk2Ykt1c/o6Z66ugaZ/mBLLaEFwej2bcHWu1/x9cqC6vsW7Xv5o6mc2YA5p6srBG/lEvUH7PX4EQDyg04ZwmV5b1fGtJXwgsaYEDc+NACXFEJ0A9x1l+CsB29DIaNBVU0u4TFHrD/qhYaN/Nav0Cgf1X7/efyT2F+phOsXL5r3Zw0q9vFg+92vfGotqHlXTxrtmW77La7TH/96VP+3+PGzjwj3vHS0b+5n3AlVMHPH4jBl+zt981di1K4e/8QRHSKN/ur3+J9y/KGeP/8Q5/zUZGWjPb2N/1RoTw+N7rj/rP2DqP4NUYVXqp1EXzlOCgYbHQU+TNop9HGbtH1ZqcKTYTzpAPYmz++zUYYvu7UOje19m32c9pme0Tn17RM/ie89e1lruTOtRpZVjIEHcZbGH6HiSoHfuMFW+hGshreSp7zK02F7GVgqEwPMwylfNXR6mn7oIdVHlrRQUJpKXqNGeAkTGWjvNkGsP4GKoz1o7s+kQyY3SAduBXJQKE/WOu8Ln3bZBqvt/34invhHeYvoslQ/05A9Tbf96jvnS+DqK8LEb63958fcx+lftVvk8Q92A2dJ7Jdn1rZt2PpXpE8d4kMT+yEUitpmUHHoBho3tFEetGE7QmsH3Whf0OFHTJNmcnLtl76Y94Tsw4fQzddXZYHm/qCz0mTfkf4ZedqmG/u9MZ+Nf8OPfsBpXRTfZh+fSfar3ohGQ3wsQnRFkv/Cx7gT+nYTh/14IJql6wUHXlteGxu/XAS6+7sQxWRphOhU1YUBHp7ysy2gFOVx0Me1EtWmOKCPu2o0JKfhrk+V2w95Kp194IC42WnHKe7b7OMpXyJj/9Hatn9Q8bNk587nelIHjsGNjbg7VA8CT7wmcVIcUDatc9BvS3kQbUIV0zbA0FbbSyNCLPqIJ/WOF7LzNuX35IEJtIRZ6vz+IQOFsoAozRGIu8Pu7A+DLyxe9f1LrIf+70fvfuVRMiHoT8wn+nkxoN2Eid1qlOlDlO37aj+6EMHaR9KB0ax3Fxs5gI7Y/Jj7eFLveCkuC1WGJw+dg6YwDP5YXgewF/ueKkzy3usP+lAH4FO1Xy6xdlToB/YNmNjt7LdAmE4Uqjo6Up6+Pg04bCYchP1qj3RIe7Rv5AkNmCKkHEDFZUcIhDggtmGynzr5UP0FPacQf3+R4eMidvIinYajm5/4sqxZ5Il8uAqF0I6627MtoI9Tik/zcav3Fx0+ztYWXTmiB9EHcO0rT57REueCE4MrKcQBfTxh6BLxZUQv7rLxULPTQ+pL0ZQ+lWnLcED5QzgINUyyS6AgWuegthDBCVT3yZGDqEFbQuDol9BiCf5EO+UGPwtko2gfHs76hJUiQNAmRlBUCHZk/SsufaoPUAfc/aluggPqJrsECgI+vToWxj9Z8qyl70r0KACJ4trf4T06EE39iCfdmYFms+KyI9RWaQuQzVYHaTchbAOPg4ndQoPNukBAneDUR5oaDuj6JUQNZBACR/+EwFFHCNwKodYqif3hAHhSiAoUOQvj8Z0fSOqmiEBPtZtQCOi7v/Z3tuLoxH5zCxwBw7GjpwwqRXyeQMXlmFBqNDYODsZ+65/6QnNngKE972eH/RYti6SPJ26BmShmriFKa21/en0j6PQCm3YRyLsGLpRkebUdSZ+SOHwOgjQfWjLZBAo6VCINx8QBtejIEi5AFJFvow0tc9oLH3UwBtNH2+XxS49wIr48i0KcjlV90KXWYqdfs1WYkDyEfQPmFZUnFZQHLtLAT9zBfUCbLaWVzVn76HtCTRIwOZeqb5BnrqHFzGKXykr9TzmEJiqtt4i2zoFm/jTvtC6b86KYxt8pqPoKY6pvGme0zxbqSUi7CVVOHKwJ5yx6TRheOp5t36/jzfecfkJcr50BeYkugjfZMwD7ZU65TZT4mSx9HpdPRL+Vr709XonDqiizRxQGe1biYC+ZxE4Sv68y+9P4UnfCZnsmnwOa+dvFP3zn9nWnfXThQVc/bLr0vledaYqD6v8+5n+XU/60xF89WJD9k41/nhe6jqC78o52TePFo+XJZZ4SctwT9jv+k9lP/RJdPN2hB0rTOU8q2s1/Fe97qx3e0QuCrXee/to4rn3QPgBZNqjy4mwGClQ6XLXjgdNWvy4rOL8228QvA0uLg9rcG2xW6e8dP6NjjT2Gxh7oSEJz/iT6Z/RJpx7rt5/2i6yB/QiX56DCUF5xwoJR8RaLyGRB2aLelhqIGJMICS5qu8MmA1AJWYwdcSefsScEH994q7La8UM08s3v38Npax/tvzWszj11yUGXPdFkax8JYX3C3iY6TfbLF8puFDdeUh2Jv7fwoKs6OnnvvOcVB0zEtdPlm3LniSuOVXcMOP4y2c6r1cI/kr7/Qvuf6i6jf7/zXx6h70jDyrzqH4/U6+7qjZfgSeL7tFTk+ER8thz9Qx/zX8RhxLn+BMBF8vD0x+eMBPpSurT3TjFfd+JhMG9Otbdno0aq/2teGH0i7Z0yQSFOmHINCpOYnCQuuxj9cd4jLHr+kx9R/fXI3MpFtLWjBcfo3S89qh7VvmhRF9VdodKEIKe1lhhKIzELJQZIniQmYPYK6xSCnuEnnVCbsg9ln/zTDPUmtAUIUtuSA3TSVHamA7YjRLXXvdkGGolZ6NsTB9eo+Nm2o/GEsM/Hs/aa61vmhHpYFw/OmQBoQ99C3mTyUd9NgSyehNGOuOoAQq4CqLBCXQhB9XHHloAG+8Nrls5feE74jG9vSuoLQLaue/We8fjoWbmii7Y/DO6vBJU/W7Lqqm/m9j8Jcf4zv3efVH9STvqf2nLPy94YRtGHJRpPndS/k8jLrerI/uA8eQncB/tyBaoh/nkauXxkwuemH4hTK4ufceVjvUjYctdpv23wP3OdEEJ9PNtJ5/ZvmH/Q1euyzafjeMnB318v/WIbuhLff9by8Yntf9KzYh3lf9MErN3JFLkhrMw5dcEB33uQ/bd9hmPr2pfvUY+C70iDRUmiQAkmDaEw+Lni4+zMJmccYUBwUBCmXAnmC/HxhCGDUBenn66yBQfkiptQWzbxm124RKSXiYSJMI+/gSYHvoo+rnzG7NCM/TLpLlm89GMp3yzGfMcIrv51kH73oTAYD2Ll4eSBp1QGXZaRjza2IGF7uRivcvJzgvmR5IzqJm0gF1uTPMptkTPUizCjn+qufVh7s0WvI3546arnvqzoxQbUqo+Pni9W6DfOBmm/vKDxn5ZWq4csOaT7xQbdCSi3YOJlz7rqy0uWzX+m4F/UOvgZW1O8+h9/+VbPnpvvfjJ/wabKtN/JVRpRtXmzXLUc83HyQrLljOsDNqO0sN8qi9036JPtKqOf8gqN9mShb7OPSxTL0sYD8aNnLNy6c/uVklVHwnfmv/7nP+PCuFtMw63VcM7Lljzze3f6ak664MBry6OJ+jflva37qcJIFg5glyRI7CRJZBGhOKCPu4FE3laDQRX1Bh36Ig249GT9Azr5hMrn6ZT0AZ25QQZwQMW1gdAEygadCRUXHkLjd22dPL9P4PpHiCPigLKhb0LqEcpbcQW/QF4AtkOkz7oCn6Cob3J8AlfCJ86lTRBtUcfCq0+APs569a8cAPo469tB9kV9oL7SYIaZksJ2wrRJ9/bLPZ4nlyyc+5EwvLDweVV8hMx/O00ZlP0SnP+1ZNU17w0P/v4Y+54qDJ9yxXa5UnJ+UAk/PfD4R+GU3jyKiZg550P4hDEx3I6Kyn/00c9S1Pif9MTVTwNmqCz87MKWzTsvk3FwIufBTkxhrjEHe5n/ZNE/Jm9DftWiVVfenO1z0rhtvuu+T8rs+rxOTxYyibjJWSZZD6fyMBx4q8kgayz6VX6BmrgQK3/4x4YlAqGPs14dDZZWJx+hawF0uhGyX0LVAHLwB+j4CVV3TwblEKocrw3aoch8/z+XPevq7+vBLNo5TyXxg/3qIw+auS4GLmjOKwyh+VsYKU99jyPxXwPuONTPgrM/8CjN8aNP0FggF4XyiSvR0UlTHsjBX4fysvpAFmhpoS6AkIwSrdiybXzd5jtOex8mDiUVtNt892nHSp8HOqu0F2qBA+Ksb/C58+Nk/syzX57+/Jtlh177wSJM0qsdq66+oFqpfJxxJ6SehHn2+TQfb2e/rNpehKvBvduEtaXvbRwZJYVSn8k/1Ys0aZH1N/iz9veuY+ct6a+sPpAAWlos41NrUWN+SO2mH1L7vVc7pKJKTD0QxxdWtt616RJJltPy4l9E/ieuD+XdmWHldbLw/1FC85CWC47Nd5x6QRDF79DQY2LBhkJoB7pHOlhK4LB1sqS1wFCcTLZX2S6pBOdAATQcD3hKK3eLRHsFnkiyvk2uL1sYwCO8hCoDump7tGv+g634A9TNGqsM2/l9KKeQDaLGtXbQeMmF9rJI+vbSVVd9CPhsK2nM0jgy0Qlhc6MHXZyFzvbgAc6Ci1EogD5u1GZ5jIfV+L1ZC8oGxNZugPp9qg5oB11c+yxsJ8/XCLjqIFA0WSELj/+3+a5Nd2258zT99oiS+7yrxvErIJJ6t9N3qvbLguCaJYde83d9NqNJ3OJnLXu/PAz8y0HFXxKnEtfqpzcp0iHBlhtp/BkPNAfOkvU/6KQBz+ZTvv3gLK5Qd8B2+ZTVV9tIO8qAlsBZaKvcjitLCw9svuunn5Gvt/+u+ZZnHBz53rbG9C393S5e9D+gbiKGsIJP/XHlrXJOwyMYuSU3bFvveumLpO3HIUkVUomC4cQL3J2AoRxwQMXRH2hqmJ1ogEOGypE6Qm0HPrR1fyoa/MJk3RieyBe6yocQFeRB9Kp9GwQOFsIcdtTKhmI6G4+1U1yUIEzsNsUg2Ppz0Pruwv4guH3J7ru9CZ/ITIfZtYc/zCcWA1rnxwF4dmO8kvaUI1B9jliB5v6IA+Zt4l+lA/o4eVVH14fiyi6yqBjkAnfys/yqB9rzjzgg2mhTg8AhCoXisxBtrDvXPoqeEUX1yzff8ZKPF3G1Qx4deCVsQ7+qr3ROmNhtCqkPtM7jl1bWthP7w2DHvOrcPzAPFLuXBzjrc6Lg9yuVSl0U1NgXHf8oiHTx1otlmIgZd0Lf17ABG/4IfZz1WejbrHgvynXTRh74Uy1djqCp2uFkwDYUwLwNvJ3YL75WOeWu0QOb7jjlf8tbwN/OPGiKP/w72TlMnK/xYnCE3wXE8g7HsoFHN0QbOP7C8H3LDr3qS40aNR41LTh23HWaTHC1S6M4GpFnN0SYBJabZoIcO2WgN3BAxaVjQmmoihCqEU45ESgNoTiUcRBA+zGouNQROmbjRzMU8BP6uFGtf8HpHMigHiqvXf8iswj7xUcb5lUqr+rr7zA4m4cC1OSrdy43VB/grlg8ERPzbRainfK0aE85CaTshF+CqjQEN413kgNSpzmQ8Aub8icSGxHWJfyN8kWY9qMQOPgI/bZOaq/2i8j3bL7zyZ9uuueUAxoV7P1o9P7T9xZljx2U/fJtlAvdN0t6V7qLlosOu/YWyTJ5GNvygHEnTOxmnPJksw5Q8Unj/1I895Ynph1N9JS0sbmVsB/6qa2+/e0UmWo9fumygPyfqlq7QvtNd57yl3JO/IskTwc4/4Vx+KFlq675p3Z+blhwyI8RLR6LIry2fGVuQyQSCqBsmswOWmKD7HiMUfdCRSMPd2gDLa8+M9pVttAA2Q8hRXpQNNQjQB/3WLpD2Zfrvxf75cpRTR6o+d0Fq66+v7vOZxi385FqTb91YgJ5k/aMNWLp4a6+OQbiYZXBMwTaAbf2VifZIDw+znrLK9cPdfAhVtQ4BtTVNcRDviuoQ2Eb4krsYNfU3umitkfHhrX4xi13vuSZHUhqy1LfOf5i8UFIP6gPtP8i7JcHYeeMtJ2Q2irdJUN1ZM7/lWtbE4wvbQX0cdZPKf5xvHTrXfce16WKjeyTxb8P+S8/zNfYX7+P9BeVRSjs8G3ptB+/jeKUI9C3333W7FTsbOfbdOdL3im/8PxhzHWW15iTsMFvhI0536/8l3fofGLZYddeKB21LcmCQzoPNz+x8ctxVD+crUwh5A0VNbxVvXAZL6AaCnNhcH5pJ1/uYbuGgPhEDFkG/bapdPYFaJfmCHlKIESb7KdNn2a4yeur/WH4niWHXHsd5M/mkvrMcgJxsA1WM06IweQ+bucjxhPQ8DTuaT9pf838bJffU5N+HAvQ2+meQFjWZE9/7Rf5+0gXP9q87qUH5WvcBTWO9ORIn+S1bLJHOlca7HS2JnAS+8Mw+mo/v5GSp2seTd+REAZXso62Avo467Owa/ujuLcFh7rT8pR9ZnXJO/ZtMHzy/O/oxUt5HXVIqwe24oANZkcK88YjbU350zHUYZe7PNumNaecIzfmP91J/JvzJR0HeY5sig/j6sa/3J75ytJV17wnr20eLVlwbFrzkv8pKyT9Lnnr4NuAsMQRXLV3UHA9dFBx76SPNqa8Qd+QVLGMfK0gLeVKMdYB5slPaYnOerIzfpNDGcLhJtCi7Jf+/mXZoT/8dKr/7MVwnxAbfEno+5eWow6lU35fho9TnkRcUUD9wwDBH2DOBmbK8XHyUnfqBx7q3Ak/5FAG+yH0ZVF+O37Uy/aUaOf4j7avffnTIKPXIs9v6Ns5fX2Iu34S3akf+urFfgnBxb3qOdV28nHlYtqThZBNm32cfIxdp/aLc3pbcGDe7GC8UFfq5+usuDiaMMl7L/8Lvr4RVOUPutFfxFvpCz6UTvkhxwo/jLrDXRRsvuslLwvi+lfEL3ouR8xRNPaMO6HNHRqfVvGgf1nv56QfK/QhM/wVSw953vlCZ1BAnrSokpvXvPjlouJfQ00rgEgaHBkEDiUIVTFngFSgUusJqbAPIUvbaT/t5fttrZ3pYDqmOPmoG6CPsz4L1TronhTiBdgfBNcvO/SgjleCiUozFunMh9mY+HHzcfL5NB9nPdwFnAU8KIA+blTsyWv6Gp205nqTbXkM3NfB5Kd5Ddk+zeelvlno8/g4+Tza08YndspEc2HyocF072xv7eJjBmG/uP7OZYf9588606z/XMsPOfB78q2GJ+A7FEI7Yqz7Fn97xboJ73wv3eflk0/zcdjg5YK2RT0KIXDaSn7Qii31JOeLzP9ibZgZ0rfc+eLnRrX4m3Lmn4OYM+6EsCIv/qSZlT3mfxBfv3Th08+RdwV1tYatxA+fvUB+/VXeSc8Bl0JTPJ1coaBvjCnc+56yAH28tcTJnePL8PHO5aW2wx8mow/2h+GDI3Pnnx2Gn5V7ybtGge9ss5zBXIjN/GoQuBVCd9gAWAcImag06OMmS07w2tYgcOhAaPE0mrK5euDUF3KMz/ozPupgR/7el0kZjZCyAdEytQG4FUJ32ABYB5i2hSx5xvAFm++4vqff8Nh69/UHi7jFWf2tD+urE/2y7RttN33lJui0vrYf4070utHXlS72aYZPOf6HYE6l/KnDSeKvVWlOIF6d5P/UdWotATdU4Md04zEg2jXqa5Joox017lkH6Ldt5NrVjkbvftFRUT3+njxisJB+hX86iT9zHj4jzniZj83XwK0QusMw+MXy6pIzwmdcvNNROgaVzVvX/4l0HVEB2gAAPCxJREFU9ow84c3KpAqih+Z6SzSTleKJMS4RNfPMSxCSKNtOnvEKP9qwHaEpZLJcvcoTPOlfExb9tdpUiMkAl5Odtk9pytlUn9qMPlz7bXG1cqZ7334ie1dBuJr2P2GRZj5ALFAsJuYzP2aNPmfbVvKaYiaMSksaSD8qhDnAvlWJpl2TPGjq4t7EnEPQroSedO/wlHWK9sfxhzbd+aKuP1XH9fAA8zk0oQ6pVsRoK6CPs74dNPun/4cJw0r1liTuBcZffFQZ3fHk/u380lyPWwT0cZH539xzkZSi8r9InYdd9uY1Lz2oXguvktXFcuhKHwP3x6jiUknYj/yXBc1dleril4WrLt+K/rotFXkG8xQ2yioLQ0AD9HHQSCdEPQqhj7O9TwOeTnSc/LPQ5xHc9aFQdZNB6qD/AChaoVCX1v0bH/ewBaWVfbS1VT3ask/gchlXflQ7fMuKVT9cjeNdsWR9ipgbjbGGV8zv+f5hnfGzLWPQVh6+aogCqLjIIUz6ZR/KqOyQa5tP83HWZ6HPIxIyOQWZtCFfPtr7hbpZP2xL+0XanKAef8Rv0QkuVzX3ze+/sT+TRRqOiJs+duzjPo/Uiv1zRuJbTM707WXavSWJe8Hxr9ejp/fP0kZ/Z+MP/5PWGBungdoqOCDx/inXQhJ1li4Lyv8WHc968va7X/zUOBi7Rl5bsRfjTthZ/CU2veZ/GD40d978U5c+64qef7m6Im8kOxoK+4nRKmp8NgQQG9oQUsak0A0OaWl/6Jc0lZU+ZOg/rNJKJtYfqoNAxUUWYSLXk99KDumwG3ir0rX9QXDh8kN+1PWvYLbqf2bS6U9AH6c1Po08PrSIWoR9nDw+zcdZj36As4AHBdDHldh2x/zoNGfSvlvpQ91Yn4W+TT5OPhkzQfyiLWtOObmt8g0MoSw4irdfFuBji5558B0NXU/DwchI5BY9vs0+3plSHcU/xmKu2yILAs1TxpXQj7mPd1oPPcA7XYV9U1/oQZqPsz4LfZt9HP7atYp8HX7lWK1+tZyi9k9zxfeJj9OP8JHvb/CgAPq4Elvu5AHRx+XnAk5dePD3H2nJ1EGFfEsq/o3wLTNeKEalpcadfAlVbzyQSv1lNpFfSpQmVLyxvSgprFgEWH1jLXpspFh30gJkKaqJHKTSTRZkWlEOx+lIDaBRfkOVHmTbN/LTbkJTV3iS7lvbLwumby0/9Dp5hTO1b+59NlPoM6QGcKaI4eI3F2R/YQl/gGxt6B0626BFzHJC8kqeUAsu8n0MLkYVErI5aFLTmDA/mVPt+MNKuESU3COoBHsI7x5ix960DbJpa2pfSkvr+2O/2uLGYxRO/I0cn6a0DnYybuWkCKsbx5TFQ35CgEZpQERgEi/DWY2ufDzH/juG4dmlhQdf98imX73gSdFvN0sQy6ci7Jdrm+Lb3ko3+a89cD4GlNLsf8u1JJ5dPeKnInvaFZ3/QZSO4Z4UnGGN4jUvXLypVv+BqH2o5awzoNv4Z8ZzR/lfCTcL30uXHvLDe6bqthF5//l/ylWOVakgS9z02MMYY8KM8saZtpdXCmFOk/sKjqa4cLnDZOC3kEc2QvBrIjt+4kxuqxf5lKcKJa1NvYY96whR6eMNzKlcym9hv0zAty3fff6bZZBPIiwje9YdmulwEQqh4a3dQtcSWo5Iq4TgoWEwsfyw65JfOoXsQZcda07ZdyysnSYGnio2vlIsXWgaDsB+MRa5j5OJ/Lz5qXiWQ66o/aITH8ivFON9Hpbu8G2LkDRNSBII0vL7gaBUoHweWZ/PNw3UMMCl4N20Z+ZTo7pNStFWQJT8BanfTOIRxfv4lG5wqkWYuDIhePkvghn/ZA50tJZ9Fv0iDn0PB5Q1f3HcE0IvX9esnjSTsKX9PX03K9vbzDiO17583uax7ZeLL5rem9N1/OlYwvb5v2MkGDlj6WE/vLUf3hqJFsz9QLBt7HQZUPtDB/avwvHRBZniPsJkjVN+VFOTDH/StiHbyJwDtZ+0v+b2WQ2pLaBT1UEcZ7lB80tj6xz+jD2d2C99PhGMVM8K9756m9/XroTjbYbMiXY+Vp+KcwCT4qFu3rLETBgM8dkyVQM7XHDYtQ9JZ5/DNrrmhXtPBPFfibLvEPv1V16LtJ9G0ndRPTpHaB0tOGSBIgsj8yDbQx5xQhsCWNRYb6CTZpTGPdiUJyGHWxJ0mhG5dY1Pak1a0FZUECekrd3YL9/KEd92V3BbPdHNV5E4YY5Y6ooqLD5xzCsaxMkT4mcHCi7ap+sDamtOuGPiLp2SXKF+yubbSpzQyYl2kSsc8vtJ1U2/evyrkhsvcqY3Ad937eLf1FgIfnvigBKjiWo1+N2lh/7whrx2vdAqKw68dvO8ufNPkjz9OhJeB5imvkRYOtVBIBC4DjoHyUdIPkK/rUkRGWKB1iPbgCOJHLQu8BZR0AFlk+oEwjqpBA3Q8BSihroAYkMhBK5tHQRu/AYNT2VoT9qf9YH+VJaDefzyjuiJoBq+drdDrntAxJdFPdDodYsg9vYHFqN15i4XVqSN3NUYrrL4sOse2+3wH79bHhY+XD4J323aFWe/7wv0Jcev7tQj8uZPXXCYDMlta6/NKRcHGGqEPm5UrXEoGH1bHTmMNzts+kEYy+LH19HsBq2f9ocxfFtMYWxa6ysrFymcQ4krcWA7+lh7d71afthY5+g3vl7G/7CN/SJcKyf9cNOa335e/KMv5EQfU48/Y2PxMHnN+S/nt0h+guMtyw79cfKW3n7YqBfYFq265lER9jr5us276sHOw6pxtGcqnCY6in+oZ2ChEypLA0NzI5+XrIQN7nRNE5oMokiu11XkC31yI12uIZ8pE+DbyAXor84SOv0rBHSDQ3aHCVRpjkcvlwoREAUDgZdQHUGBChHM2lqwUCH8715x6I9/bEy79t6fRHxcfaeOc/4hbi5HEMWxcgCIkqlXsqt2HMY3RHsZpGs3PfiKE4MtWy4TtV5QlP1qMl2lMD546x0vPHzJodf9qgN36LsiqBshHG44HI8CLwN33s4cukFgLMplfJQnNxWH5gqH5JTpojkmyubo2xf7w7D393CobgyqKEjXu3D4+a8GkNXV5zZoGE8JozYvasf4Q76PZ9Mpa1+n439X+LVYeeboY+K7tyQ+gy/d+FMI53YdfyfEpQFjQ5jkf1z5o2VHXP8f6KKfpeGO3rLDrtoowvt2+aSfimZlbVx90vvh/dRR4ioZWHopyC1qsnOjLkgcD+XZ9GhHMYIAmRyTxBldDlwnnzIAZWHyqd2OvPFffVqJw52yIPN8ThzQikRAURcJ4qwGUx4Omk83YUOzX77f956Ue69nPrljK97/cAAXw321n9Z6fqjZzxO0XXDIh6fklgrFAOKTselon5SJJ/FiX4Ro5OM49koUD88tFZksNqe5lq90P+wXyT1c4UD+e2PBVy8Pz6Op39040rMUCNljZRrYrrDxPzALpqejJ9c8/2/lwe73aO95sc6jKXM23tljNATNF6ANrbWO/+pfrTji+n9Jqf3DGhYc/RNbrKRNq08+QFa4J6vPPN/ZggKTpnOy+FTRBt8yAKJjk++lTnnT9hoctocwbWP1jkto4XXLjxh5b7FWzzDpLgbmzvQqEKygO3MtUh8Lh2sPH6vLHTPxSWXkCh48UX6sbMum21/4ujiu/VR6T362fFLdu7S/2T/xczqyNI70qnRTe7c4TBYYoo/iLh5NsrMByQisVMLiHxpoUqoFIZRvNcmEKga1zq8+2C8fWKotNGhPnnL8dcZKxxhtBRxE0XWqJAHyQIr2ihyyw5TmHTegndo/KHsalBvMwZNrXvDuuF6/EL1lhlMyF9Kf7eqTXKe/2vi3Elb+cbcjrv+HoiydkbfC6kF0PnKYCwtAw1OoodKklx2gAsNxVQR/Pk1xBAP/Tl4WagKAh0WiLlc27h+ZN0deW37d8Eys1G86IUaEbOotB4GrTwnVz3heB3Gz53agMnAWiEFx4hRRWkKw+mHdLz/iupuDSniJ2i5K9tt+nUfEF4DY5MpF8mvPk/lEvqWyQ50KJvgyKcxvaowK0lKMtRgOigMCUR0MGh4vhYShKHG0RG2ForCZdhOqkjACBdDHldhAUQ7ZJRAI7I/i7cbd+R63CJj3hGhN1QAVlx0hkKb4g0/oqhMEYGw5aAHCQYFFzijMA+infXv69C3/CzRhOkVvvP15b4yj2j9RB3GdFkDFZUfYU/zRuFX+h+FFyw+//s+sx2L2M27BIQmLL5u+yaUyvNfSMxy4gD6eNmBbQK7CDSIu2Q1DV+Ml0A3j0SCsvmrps67r+c1rqS6zDDOX2uAQnL70/Wy4eRTPyuDPfGzQvNy4FwbzvZM/E7w2Uqn+Y1H2YwJXn+DEIpsMjv3xnf12fpGT4g7lF0ZCjQRkOJrKdjjloQ6llT3QxRQyIMLdO35An94ShfEy2KR/9Jeo1G/75YS/o1tLMRH3kv8aI6RAK3vEWo2nWd2tWt3z+1c4RC/NFwctd0wfzRHVzbTrevx3r9nQt9j4qxecIYG8SO7pyyku/0/IWgOouMSdkHlMyLgTJnkPCZl8kaciv7Xi8L3fLlczIbmwMuMWHBtuP/El8lrX/eAwdb2DPk5nItuVDx6XDYAQOOoITZ7jB58Un+bzoo0ESJY+8ZtXHPnj25W53DV4AP7SjckNKH/qbwfpe0Lf3xSGiQil1YREvmGG+hBnGN9alP2QyyLv1JGHJuqH8rgVlDnNfQpnWxtPxk9a8xjQKCK27g/8fv9+DBUPg6G5whHGoerCnGq0tZ/293CFQ7r3fWe6Wd4Dnyz/G/zvcoHxQTvgbE+5xUG7OglbdEPvXr70a/zLj5YVZ8I0SH5y9fNeEEd1fFN0hHkANZirjB9jCYg/FEIfZ31e/ClTG6uM8Nrl85e8IQwvxW/vFVpm3IJDTvXntfYIJ0qbPOxUZSc5TXRJfEIGlRAy/asgPp72l8qXoP3N7kfchG8hlCXrAfmuPy7r6uVe+NycDgfbEHEQ3kQdIfkIjV9qld+GEHFA3bJ9D+mxaH+96S4K9tF+uBbyABUXKFNx2wWHfHVzB/UgRByIA2JjLAAVRz/syPEDtOQfoiscEoOlah9u2Tn7fJt9nPW92C+iu7/CQf96PlddMTqExj/iiX7O9wgJw0JoVVwA8CrvAO78Oht831Ff38fAwUOYz9/C/lm03pBnEo+Nw+gKWRrOh5/oBz/WfYs/cqkh/8P/XlEdebU8bzaGfCm6zKiHRuO7TlqyYWctfdeAZq+4iBDeEoeycDGRQK1P2TEwwe0P0LTWMQO4DjzR31h+xE/+PttSWctdEIyMBHF9wjwhoweDJTlLwYk6y1icbE8PSxNMQMrjHEmcztegQYbxOq6hB2E88vNYnlnU/OyX/WI1fcUch1/kpV4r2zlELoRs8Lzekl1jh37cGACwb3O5JrQFkHyCk18u0eovWjru6Qami+ZQZ6rQDsJO7A/Date3WOWqrYVDdGNMVcPJ8l8YyOvHX4eKhcPGCZTmcWdmT43Liz/GuvrO5Uff8r86SIOm5o7JWm9Z/cJVtXjiBxK/JcpXdPwx4cJ1mhLhmmp10enhYVeNTqZjP+tm1BWOjeP13xNPeV85g/dQAH1cic07nrQAfdxxctACGp5Cypfhc+uKPfZ8S9H3upqVn0EUvM2QIVFfi+7O5zr5wL/uD1YprVPz/DAT77TtNPJVwvrj8IHa2m/7s36IApu8JrM3DB5CtX8lz8cna+rX+W3sk5OTmcQ/8H42wW85WHzjvacsk7G7j/bq+atJf2EgrRMNyQuouMiW1wU93EnbnnioO/0LIaTlCWSdz5/H10ca/aB66biHjqJAP/N/Flzh2Ljm5H0ngvFr5IHh3Tt2f148ScsTwjpAD5cr9PfPmxec5l6FkdeyENqMWnDE9eg8eCFdEBhOz2QXDOQjZNtW/FiEgxfQ8BRivEjt+nDO3FeFT7mi66fQ2eeuDnn/ENBw3A5wS26cjtXRBg1vjLGywologm2GlDAc2QRVzVaDtJtQLO3afl3AiB8AFYf/Qvk2RtsSy0kRvkcxSHcSao0lfssxR15AH0dbFInhbpvuev4z7Gj69uG2sWeLKaKiN+sWZH81jnUx1721EsEu819jrlal8U/ywMVOhHavyhRaMA/yRPQt/2fUmavZE1vXnbZnXIuuldg8rd/jf/L4Y34IH6tU4lMXrfoJXvg50DJjbqlsvuOEgyfG4+diQOp7AcRNxG2Qmt/8sQU+8uR6FeMQo8ONR+UVQp48YZuQV72+dsVhN/Y4meRqMIuJ5tSMi5vsNffzxNd80sLgIQ8a4xlqlWnim+QNKyEOJ5boRJBRkLYBomRhW/vVD84pFBB38qBm/DDGir+wRvOm/jwa6sFhOloATIa0skORZzgfdldyrXaMNLxfm0/TTm5ZHA3bkuRJ9BWS4PADSj/sl9dw9HyFo0/xTxIpa09SYeYWsJdXnag/zcHYwyY7au7O6phTqXb0Q1Z/jn+5b9gsbIZQcLVtfHT0KrHt4F7thx+0KJQdj+ls58Am/wXhk5Kfpy0/4sf3Toe7Zsw6cWIM796wJEsuX4rHSMtzHhcOgLkbphfUuT/IAM7CpAeU7YIVR/3sBtaVsDcPZHyq/gaNMYD3DQdMJysXgyb+3rQYfKt6LViBXvttvy4YxCuAhmsfba9wjFSrD/EkS6hewdkCBdDHjarjxaolSqjXBYZBXQ2iMpkNrVFUj481bPr28lsIRyOjzNbUX9Co3/ZX5o082L2lHAHQEn+AGssEIndQQ6i4HBDCDm3jIHCrNWi1Six2l4m/3xl0RwHElrXH7AbV2eJBn7/wr1NIv0WU+OGzF8Sj278r1j3btwcW25/5pJ395LaYp/mMdswD4CbNoODbxOmvmM5vVs6IBUccX1gRL75J/TfpzlwMJ+umE6bgnDyzUOPANnrgpFt7nVAhK44/ufLon/+bqyxBBx7gAk+uF+mJCdDHWQ9R5mcnVGOmRI2b1gkt4ddwYAce12YGAPmxtAMKs9/3A3zVwZsul9YWyuvP5W0cnm/V1zILEuKMQJx8Pg04Jk1C4OAjNDzGt2aeO90hkicsToQOao+DtMmHUF55YISHk8enAQcbIXAx/9EpvZdHBGgBlE11cdBwpx/YGHdCNMy0T2QpUvwukpWA+SEd99C77+O/eFP63kMcv2POxo0Pf0Oe8jk5ySfpRePK3jLxs5i3mf86iL8sQsbDSuU1K4/86U3sajrgjFhwbLztylOjqP40OMi/okG85RUPnQ2kEaCPQ5AWRgrQx121AAnUj1Yevfh9KaXEuvEAB1OrAeaHxceTPnyijycMMwOJ4uAk3xfU2jfJx1nfkLc5DM1jQPI4jrYl7Vsg4VFX49PO3Zr3KrfVGPDHhS0m0AZNsGF+JPTnSnYLm+Vk8/wn73jufqQNGj6x5kS87v1g7VdtFYwGYNwrDXZiQyH0cau35pPYHwa/UBE97HzVkuY+0ccdQ178jdbKnkRyYQjzAB34Oe/j7Nw3ycdZb7GRI1R6DJJTyU8FJLxDjOBD88bVq78kvjmdfoC6nkkNeGJKG4ZO4i+3N2W9XTl35RE/vTqRO03IjFhwRFF0nvmHE0H+YGIgAfM2TCTGY+2J5/FqXRjcN3depXxteYHJaTGwiUnj4GIkkdI/nNHwB6gbcUDdClSuT6LxyUbmjZPzxPXHfvjCFVkhy1HbBQe4ZRqykyN8y0I88bdorjTMfCLb4RorwfWP0MVD40V5AqU6jCY4hr2KQaG14Hy1AbpnN+gAGgtx8uE0oLTO7BcP9bjgwLdccvzpaIne8LHqA52pN6GQcD0dBRAbeAm1nVUXuc/Gf7K+es7/OBqaF8pNZh/rNqz+wafEVvmWZWPp2X6NPeNOKLLz4h+E71x51E/lysr0l6FfcGy899hlksBnYXDZeDHo4zbw7FMHcJsaxPfwv7dhIOAY0MfJw7YqL4xHq5XgVUsP+dmG6Q/TTNQAg8D8TIgj4upjPYZt6YBBLFDSmBhu1Jm537D69tfLQ4srBmK/DAw56XW04JCHqjs4OTI2FjuLAGlpbNJ4pePQj7VMrOfJxvAOLJDx/S+cLx/wmib6zhWgrZ3ZL28z7cCnrXung1J/pj5u3cqr4aIC0Mc9lqJRs8H85ee8j095/Mfh0Lwyv50/N972O38vVyL+oK/2t+rUj7ng8mNsf77yqP/6XCv2QdOHfsFR3xq8XpJzPhwjE6n6B9DH6TQLKKc5ORKH6x+gCwQh2qCO0MdlkRhXgsobVxx1s9znLkv3HsBLv2zC4Ve+APEH/xMyFoTohzig4SnUiGkcjUbe7vUbXAtcSpUHFt9flP30EyEsk9s3v+3EwmqlcqPvY/qTEDKIA+ZtfkyAZzfYbbRg/w2/eq58cBhseWLz9reIVsupe1Zfsy+1DdoZzfQkzvZZ6MsTS+vVOQF+Gbjnku3Pl+/jWT14jI4pw8fTenlHTqEFD/anecD49z3/g2jfQs3ok/ANt534fvmw8YG+299yPHrxr1T+94qjbvpIn0zpi5ihX3DI15/OZwLLE25itDyEJlBxD8ooM4cQ6pGjuQFgA9GbXIRXaWjjbXL017sfffN3+uLhXVwIJz9OeHZ1VxYdMjv7eKt6uA98LMTZnvRhhRtXX/lBse2IVvaBTj/4uG8fbYaNxFvVY3yEQeW+Tvyx7PAbfxFWQl2cUJ6vg4+zPgt9nfL6hAwUhfXoExvWnjCwS+Gja164t0z0H4ZPWhXYg0K7fJt9nPVZyLYqJAj+a9lhN210eFcAX8DL6y8jv6P4W8ewmXYTdqVSX5g17tBE8iDPPp/m4/QzlADOQlxIxwq/V0OO4YEbbj3hrfLsoZ7wYVuefT7Nx9vaL5YnvmjwgsVaSP+6+5E3/Y/h8YZpMtQLjidWH7tK3Pcct17Qz0rA4V/6mBDmND1AI5VKcw2UV3buUD2gNMVkp3Xh1/c8+pf/QFIJe/MABxhaA29V/EED3B90lNEIjQciJxHbqruB0jeu/p2Xi45/U6z9mMhgFnY2qVWq0b2dGKpvy42D75svO5sQG2NhfRvN4pHiJk81c4GSuqfK0yUD+8S1c3z7J0Sr3aATJ3CoYnmWr6+fgz5udplNjTjkOD+Ewfc68XseTygzcdf9ubibe9P4i0ZOp3QxC9nY8BLgogv0oY/QF/BWBTqhUD/wAmf7Zmh1chVv+cbbTm77m0EmffD7Dbed8FrR/bPoGTa0Kr3abz5W6SLfoPRkfYXx11Yc9fI/bNXndNKHesERT9Tf6idc4lBOrh4UV6sfCe3ABdpFR+sE55/KczKAS7Ru2X2f8PzpDMhs6RvziM0l+MSNgliI53V0GPRjS1w5bQQBbSrZAdrEMCSEjbcd/664Xv+O2CW3VFCKsV/9LDuF0ov4J96tsqCjKxzQSvi/x9uTOO6+uDHm7KOt1Ad2k6bxD6K3r7/td87svp/uWjxx23PeLFn2u5Zv0jPGvWywlZB2E3bXA7lT+yuV3hcc8gVlNzZMV0rPwmz+q59ll/rbcLbL2l/0mx7lF7Tli7EWc8adUOPfx/EfhLXfp53DBDfcfsKp8kT2v4u9VfoCsN/2Ixc07oRwQhj+YPejjn5TGF4o18yGrwztgiOOz5ZghW+UUagrXjgXISPUYY5JBD5FEoPP4RoEJRuNkw14dAA6frBrW8AweLw6d468tvwX5WvL4Y8pFsRFY+PB3kT6UjgpG+Rk2pvcYlqtv+2kZ62/9fiv1qPg0zLi9at7tKC3HtkasNl+oWhOK4TH4/DO8LDrRjvua2FwtbRKft206SohenUv3OtEZqO21oI0HGGYhlH9Gxtuec7ZncjrhWfDrce9VTq6KK8t/ISS+MvhSgTubAX0cdZPAu9dccR/r56kvscqeg/QYk2o85qjtbIn22nRFzjkMcUn0adpa73TgqwunR2zdZ790Xmb15yoL9TrTFbxXHJl43eienSZrB/n+pr33rMvpU38w/gnu++512vD8LPulzN777WolkO74HjiF2tfJg/b7APDO1owOL4Gfo8Guq1IHMQCBgsPXcjE43I38DUrj/h5z68kVvnlLvFAEjNvkrRpCCwcREAdniwC5VhpoGPD8pHQx1kv1dNcnrzlhcs33vqcVz5x6/HfCKKxO0T/1w3WfvjCinzCvJF4J3Dlwf+9Rbz69Va8OkaksrU9jINB47eJ0ccthqan1M4R7D823Pact7Xqt1f6hluOe6/I/pz0LXOb9ZfC7qWaDe3tlw9CU/smAD6PMu8Jk7yHHcj9VvlPO2EfcUAfR13xpRoF8q2+yeOf6iX6qK0O0m7CNvZLbJZPjE98oXirOuth423HHS6vcLhSbFqEvLHcSWFqN+MyNfsb5YW3jcSLXznsv/NV9BW2ziKVwyUhOa+ZjEBx0KGWOCBKpl4vhwgNMKda+WWlEVbiP9zz6Nt+Ykzlvh8eSFwuA4+/aQO5FhLQXC8KESM7xlxjPHbc9NscKk8iBxjH1fWrn/OGoC5XcatyQQxF0AAooJYsgZWOP3OYyIJMFMj15FfqMpmEoXyqimSr7C56HFsPR4+QD8S2eIcdfsoVaD/Uo28B9TgIblCki10lqP5bPai9BU3UryLKJstm+eBJYqcNQJBNbEbRug7slzdzVMVnn5NF2tmVMH7/VL8Rtn71CccG9egf5WHyF6giTh+85xTfEND3nUI/hwNqwWu4wetex92L/eL72vw5wcUmsMc9sgeqyNZp/qOnbPzNFpOF+ib78bBIgSWqhhsCuYzCHDF/iv9hmBSzrT/j3wl81eO3HPfJPZ69+L1heF3RF3C0y7zdptXHHzBRi6+WPNoNMRiU/S7+6xbOqb508RHX6Q9E5uk3LLShXHDgMtnOndvOwH1NDig4zHCZQFw0ccmTtPx6aS8VTHYdzaAkyY+JKP7nvY5Z/Xm0L0v/PcBYEWYnoGyPFk+Lu9a5E7YfM+BO3py4Vr9E29RsgaAnlBrizhMK4i0fH5Ocqbuccfx1mwxDgdaf7OV+iE7cINTw0TOF8tNUMqdo3gjRZEUuT5UPOydKUddvQfaLK8wXBoNowdwFP0z06BBZcfR//eSJW46/Q8bCoVSdUCdPyLHzhQDzLSBKU7yUqFW6o92Evr5gkOOXisRT1t963MVBFH5596MX/aTTE0e85uy5G8YeeL4s9d4S12vnqivE+dqHC4L2qycAsyjbvy1AzCboQ7sJYabik9gvi5zLFx9282No33ORHyNT30q+UEeVxVwXiGL2WMxxTF5AFLUHbZwlWfsloZWvqN28BSMbdo6mV/QZd8Ksvlk9wEcerevM/gvW3zr67A23HP/n8hMUXX0tGeeasfHxl4Rh5Qj5APNb+Xbip7I6tTtef8ex+0yMB9eIy/WKvHO9NqPdhLSN8crK7sX+kcrI+YsOf/n6OH55savJrLIdH/+tfEazFf1QLjjGdm5/g2TdPLPHjfQ84zgrEGZmB5IJIYmnChUXBj/c65gVf5onuqT17gGd0twE2CxFplUNKeOK6FhkjJd0g1bD05vETxorzZfv402fWDFJY2I26dqbHCQ54fCGCYDM0iR7hcV1bipDc8dLaL1Mti/U/usXHXrDbybrfZI6vAnRJtsB2y+fwquy2HibePNtG24d3fL4L4+7RmL233Ll8fGoHj4ezqmsD+tRRZ4P2LMSxHvEUbSXROa5T4zf92IJ66LQWx/qlQpLEDUVphQdf5lM5dsw/SouUTXRLM38OWvK+c/E75e6GTmLD9p7485b78NwaNFTYfl/knwYkIXzcT+X24o/qFbCm+TK2T2VkeqmJavqWzbfvmDxRLxzz5Ew3GuiHu1ViStHSq6cNj4+fpxMGRV9ZicIbhdzul5wBGPBp6X9ARlXtDjsv/31qHbD+luu0P6Y64AoufkvdAZHhwr4wJxT2snLadJECoMr7hLiIagYygWHBO88m8BttUv3ICmAG8REYjggima50lq6T3kgQ9junT9/0TmdfprSDspdhx6owcMteEl3MZNU109lnGBd6NJzXmMONAttHDL21XwMapOPvQ4617CR24h+tii/kK21yyk5snzUzFGc9klPDfrTFta7bj1AyQaz7Wk3IXrkWPCEeGiDRf/hVXSFrpy7/+eeGLvvL6TRvpQIATqmEh2Kt1+uFuA9HfKVQtnsIlQQT9TUy7iihBnA9JM9EHfkDkRfi+Cg4i8K/OceR998HTSZWrEraYw7YZfxb2v/1HRs3zoML62v/+Wxj0gUnp7PXWj+46V3x4sTjueFyXCiHuy8BV6056InXCZFyCTNn3wtu6HKFc8ljbfsbE7Il1Gs/YPO/+z8lTf/0WL4Y+guwWy87cjDZZI71oLFjAD0cVfrRiUmRZuUhSsdqcbk753lstjYKpehzuz1JT2+yBLP9wASMfcPscJfi5jxRA1oOAev5QDaIhf4h0OlGVnrQLN8Ma5GfkdDnmiueBCSHK2VftqXp0G2f62HyFZ/sBt/gNoX1FCFobSz2WB39ofb51QX9vx7CeFhl45L539nurTWD7qjACrubFWyh7O+CRZmvyplO1URO6ejg6avo8Hn6ncPgs/RABkXQhGokgghSZ5/+Wsc96tYzHuJv2hAuwlVWxyYzdgPqNyQ9pjB4Ff8tfBv4fa7/jX2gqvTCHt0ji42KAo+1v+M3Wa12T209ltcNF9axAdWodA6HCoNZA9nvUFtoruhW3BMTNTPT9Uz49QSmOUSo1WyGh9aO+uzUNrjl/MqYXjuymNuuSPtp8QG5gEudwGxIVSEOQkLvTShgaA0pkTalvLAA5ylW/6mDiCIQoA6HNDH2V87SN2oL8QBB4RI2ymk3YQqGnwojp9tK9Xgc8uPvFG/kmgM3e93f/aSi0XeOmvJDnDEToE6fMjsVz/4vjUjUtVpDn1N/4OP7bQNbWUDEEkD6nCBcu3pypXH/OwmbdaPnYjuNf4d298PPdvJiOPrW7LQ1/Q/3AkccBD2sy/2D0WBD6qwL/Y/dPZDIRQXkARXRMiuvsfxP1QLjjh+4Ugchee2NNbZnILJnZP1jS5UovCv9zh2td3wSgWVWL890CIhbdGIvJWpFTwy8Ah9PKknXyJP2gBvMSBUFmrZTm7Qmnz05doSksdBv23iDu1LBVq/mChA44SRhawD9Ns6gX4fppfpSnk+TXGRQWjyKFeg+kBVmQirlY+6LnoGuL0orvkT7Y9SfBuAD6H99ANUpu6AihcV/0owFo5U/pRu6gsU35rOBhWnHfA9Nj0rM/aAKITWTilsl7Vf+YvdhXPCH6uuqi/Um0w/p7MbR4XbD13ajP+evMN5QOU7m2k3oZLNF7DTt3Uq47+r+Kt+ogMgdXBQ9fF0VD+AD8XxT3X8D9WC47c3rz9dkmEvBiML5ROFBgnQx8nnOxC4PtrhIHDZvrr3c371YfNguR+IBzIJi3GpsRGguMZSiahooGk94oZq7BTxoKD+IPFxqcovvgzB9dBBv4qN3XATzaCdFUI9ytjXQMNBpl77QE5KlfWX2tyz/WHwhX69Q2aPY395hbwaVd6SaIW2DrX9omoyBzjcqd8M/CALrocO+lVs2Mp++XHHD+1+5C/wMFwfS5oL0MXXzUsYJo726+e8j/dRqa5FqV9C9wOCg8h/0bCf8e/aYDSAnb6tFOLTBNeYOmj5lsZcBFi9g4XE3zq1HBLc78OvStR3yJTHv5MzVA+NysLzPHw5jIbDSOAc9E7nlkCWI9rCIBsKTcnhL/bee+lbWzYuKwrygMUkjSIjalHGRIH7tpwsVQk0YSFOCLqHN0qTOqwsMch1tQlekU+aa8o2cpj0zXvHyB3Vx3VCPKlvo2+W35Rt7DGlQb0p2h+G6+fOm/cB2NKvMm9R5T07tkXyeuZ4j6w97fTN8qe2Mmj0BWAf7IcM2UwaEMEKjr8sNn658tlL+vqbMPqlWOiNQlf5eB5N6hu9CcLk9kPkIIpo8UNR+Q1pdGhAo8bt8inxBZtDeQ9vlCZ1bexHU7aBKM1XNwZx3EtB7KjUrpD/9Fniq4Z46KUA9avV0+N2NDRXOLbcfOzuMtm/EoFDEmLDxEGoOAILmvsjDqgbUgm4phTTCu4Jfjt3bvWs8Ok3Ja9wTpxVIgV5AHFA/CDeoIaJuIuhRQknXYsauIGzEGd9FoKPPMA1Xxz0cdTlF1VQqkxf4yENR8St3vpqrW+Wv2j7ZQC/v98PPy991i+eEMPf1eiL4bQfOg42/uEOeRXc+f3+dhsmYtpB6NsGWt7m8wD3c97HUTfIUqniq8Izdfx356nGk2jjfFH0+Iemfr74Mffx1hY16mt8pOGIOKDNe4Tsl7CxrfHTfqsbom+pbI+2nyvpqb89kYwsGKvWmPKNBuEIdBTWZyCsDYNx+bnu16w8avUjxlvuB+EBiaX+IX7AkphaTIQoNMvGFEIxnya4tnVQj4gD5mxIF9ABfZy81gXyxIo/KNmOMK895RBCCnAW1Rc091ek/dLLFbsfc8uX2Hc/4V7H3PJNuTL0YfqC9mYh+pwu+7O64NiPmY+Tt0lfFzvW+218PKkPg7euOPb/t3etMXZVVfieM3f6VCxtZ4YpD1tUhLRAOzNtobwMglhNeBiRYtSUABHjDxOj+E78YQw+0R8S+SMxEiQSFDUgjxgaUAq10047FJGBQqEPoEUstPIovcfvW2uvc/Y9c2/n0XvPnal7z9zzrbPPfq1vrb3Pvvuex4YmvDPFWc98iYiP+JND2TOZWOPjt9mXLa2rpekw5/QNj8IYDzXT/00nH32dfdnSHNr+emvyWMnBKzjSLGIv7ImtsJ1c+o/cf4xHw2F8Uudh+mf8VE/OJGnLNquphJjKdSS2ROO0TSabspKaaSWXpE7VZTkSktJ1XcseH9PT5zRj2DaEAbEpSiLyo6NAOgERmyLObCod1NIxLYMhRS6ZOvRlicRmWIf34jSN8wvzGinOtQvysPYwv+nAAlz9gpAlu0NtWVVzmdlVCzS9DGvV58WlelvBUr3uxHE8VJ5V/qwW3pxtx5JLvg3V/jwR9afti7Y/6vt+R8/G25vBNk9avu+J7c3uhp79x69/c5806nMDE/2wWf4/fv0P3f/99o9axuPiaSIzk6Hkb1L/b5b+vg9avzcUfWDUFNkHuePQ9DaUdKa/7EyQFY6X1y1cjA63mA2lckSRcVIwtGmFIVKqsg79vCxDyomin3Uve+IWp2uAohjgmMZ+7fftenXTcAxENXaGUgY2KapdOYiZjekPIhOZUP4tT67MUZTPprD8usGOEV07DNkOqd8hZQmGtQodh/542uTrcVy5bPb7+vfWKrJRcXzFdTTzXbhrTJ7AqMVSNwbRUbkvWn+/PrE62mJ/TbN/FP0Bk42GPnNDiXTbovy/uPlGae7ijfegM29J+0GVwp7eFIvSn+5r4wDltK9ix3yb7RlLcJPFovp/S/zf+DCOhLex9/8JscLxTkmfvSEGg2JyAskpRJJlbHYoPgNDG9rTRw0x63qga+mirxhPAVvFgDtByahjndohbKmdVNG3/2hb6+bY8AP9g/eIRJQP/YgyUWTuMq5OECfDMaIvu+Q8sTEQVc6QsRoMNWUWh/hce8aqP75M7Eva4pVzFm/a4iprKnSc/PfXZ8Qx3jURbVJtWqt/Xtli7B/d1TntA6vAgW/YfFMOax9PyIRrOG4P5Z+5Wsalf66MZu2SL7z78FtaPnUTJTOEnmP1/3xbx6X/GPjN11d73+lWQP/P199w/f0xz5ddxTrm0ZLZuKdxxgETUrbgyxNghSNZ39sOr+O7U9BCfAwpy/KNQ8iimENVUhU31QxhhKdnTGu/go/ZtbiARTPg7CnVUq4dfJ+mTLsaUtZSDFmGykSRnb9w4Ko1YFvNmho5+G2EOeVbif62mE5SJV5zZOVZuVqCtlfb6LcdWV3Q/NY+jbQ4S5OhX4bpbUhNtVZFELMviaOPdi0ZKPTNxu/u2bh76rTp5+P80a/tbY3+yqLjwphpsv2h7x2dPbMulyexZmZruMRvfmZ3w7z9G6F/wxs+QoFzlwz8EX7z83rJ1J+y+T11bqb+I/X/eu0cfbz1de25ms/ihpcy0fT3x1CVYRHvnKztHX//b/kKx64K3gqbVHiHiljDUHecoaiwnVAc+sSkZsQxzEdeS8rli2edNnhYT11MywzCuBigfeQDu6ZYw8a+HSnLYOOQcv7DE7k5vZzU5Usn/INoX0ANXX4qkJYDQWQiBR5zKLJrI6e3MsWVtjgdqBP/DF1axlnI6zPW9GyK8UDZ+zwfJ+3nFT3ZML14J0w5af8wGvRwi/QXLoq0P17+9auO3pOubPQdKcapjxW+Ldb5vaFn+9QPDld/v86i5I6k/avoIY9ZPzFk/dTV0PQ2bIb+7OtSLpECgqHuHd42r08D+3/h/t+o8U+/4imvLZ9wJMnB1ZmJbeAm1vowpaXxZZcWjy3H8U/P6338nzwaQqsYwMvb0Iv5obkMKctg45CyJlEUmYMus/GkLoNRhpKbpmYpLAMfjhmGKnOiwDjNNxztmObDVvITfTktX9qigxLbxbJTdPX49VFX1tlQ/UulB6eX2ns7+vo3oMqWhdl9/Xs7e2afH8XxjcIDWiK6OjS9Dc3uhqQYbAvVRP6JrR2KLNxpuSxHcjhUmeojJ4vBR7l3dnHt8O3BMqo/zJflt7KIqRwlb2Px9wudvYNXF7VKGmMkLkJ/sld0iPr6D0wptX8KFL9Cm+s/pYlm//EzYz7WlP5PRydpZIzgkHJT/N8vHxVIPUD6J+tLkS3BQcYdSn+9pBaJEFo64XhpcFEX3rS3UpRAY8QBHYo7QpkUPcXS9F6cKh5/s3v50N1ULITWMpA5oHNKGI2OSu81pMx0hiIjjSE9mYcNfVk9P0tr9VFryU8BQepyqLKrH56FlEyCYKh7/lbqZAok0Q/bTFnbzjIpE3253nFmlnZoIZKXcZZedUUFKA8J38At3d/o6p39kaP65NkYftNaIvPbflfvpi+jeTiBJK/7Ovuy6ePHmd6Gprch81Trr5xrXLWs/Cj3lkfyi61QjgtSF2SiyiPYPyo939YWn9PVt+mXVkYRiAUO8QHTJdOPjVfdSY/J2fGMs9HpX4Q2w+vAZPX59nLblVDyzQlt/+FNHzkGF+CYf9EGlIm+bMcRqX5IY7o0hmI/lzezL6pvqP1H8P+ctmwmg2sucOzj34RZ4ajsf/szeNNe2YyjijkNRc38xo4RfZk2iW7rXv6vH+RzhP1WMaA2kk4EW43axr5ZRcbGkIL0AId+b6ijptbPbNoGJrM4X86OWzpWmnXOdMBALGULVla9/Hp87PpjIv7XqNR+amffphuKWNI3fUaLnX2Dd5SiqUtA0b3M02j9xeZmd8Mm2h8a8Ar0m6dNKS2eu3jTutHy0PB0oisJdR/RmbW4iAb4P0trRZizZOCBtlJ5JZzl9br1F6C/9Vm2wWTrp3XbNcKBye7/9dqvY52OgzbuGeb5Mw4N6bMqZ+S1dIUD126sRouy1phM9DuW62ymCFFkNxvEbdDru4859uqsoCBNXgb0Qs5SiejLtTUyh059InVyN0BLNs/HahdTN9YuKJWLzfiLHYLF1c10GAfwg8wjUdR2UdfSzRd09fU/cxhFNT0r29e1dHAlXhz3SVT2QmMq9G3uy7VLb4T98WVlY1spXtHVO3hd66/98nX25ebpX7vk5sR2LB1YE5XL5+KkNVS7Bl9nX66duhH2r11yq2J9nX25dnuarb+NdY0a/1o24dj52Af7MG1YpDTqyQH72OVW/3hM4zRVfptgHRKO++KUg/Gl0YI1b+aPh/1WMuBO+P7E0SaKDv3OkrXUlg+Iej2EoaaHR1iZ8A4NhlkpqSRpsUd09RrWqt+P8+W0vJzgp1E51z5r6yHqhxrv4KT3p6gturBr6eNnYTn//lw1E3q3q2fznaUp8Sm4aPc7MNlu44G9V3g3HAX/tLWG5tsfbRvCe1Gu6ew7eencvs2PTQySm6v/O6UCH8RRh9DOJQMD0fS5PfCO3zCJ9SFN3lz9pS7nh1avYZ3mjiqaZWg5GU50/ze9DamoyURfrkeCn0Zly8cx2ev/roCWvbwtOXhgNZvkB/+CG43HUo4MQJoSHLjfx/Qo0r+FC1Ium7viqR1+OUGeQAz44wealdsVp+YSnTmuympnasF9Oq6iiCo755F45xdMmaV1PoMYudpajml55kcaZWW7AiXSl11GB5zpq5/atw9OiiibZtXp02h32FLhjaxsNS8C/W1pWunWrlMHX8rlnFS7x5y+eT8a/L3khTN/8vKu164Cq3gGTrKgnv7GA+2uNlfOVVY7kQC1u9kIEWSNmZ2JTNZ0zGFpNQG3w+xfivqxonFDR98nfs+Hm5VKzXtSOVs0uqADNfXw/VP1Mp1Q0mHq37IBP0dC58I1+xD1uV3rF94SR9GNlUpyOpM0W/98+Xl/yTVzVLu48YEtr53Woh3mdv9/xj/HTkv8Lxl6/9Sdeyq8gAgOxgHbDQ4C7HjaOnUOr7PJKEOTaYI4jj5/zPKnH61t6RDbSgbMpmZfIoOeYDKbj3S8pg7OP3iME1J4jCD3h5XP4/Qz/KXHXZxE5DZS3iHS549LsQnK1uKH1+/8G77Ka6eextntMTyW/L4ZUfl+Pt8iV/2k33UvSLwpSS6/eff6Jy+CbVZhQnYJOvpRVG6YfRw/9fyjJiHjsD++mLwIL/gdVpFuP6ZncK2WOxEmGpmG2XiX9Y/sqCeNQ3/z/9avb3h6QOzu2/Jgkny356X+O1fhJ9QvJZVkmY0J1Sm9vcPQ38YCYqOCcDtC/6/n36ZrveM12+g1XcajSTD+mR4tmXDs2H3wYjRgNhtRbXhjUtF8wtBPj1nxT7uXP/NrxoUwcRkw+xqypb48Ust1ENZvPpKWrsHO7VyFZcmu5yTV5Vf7FMtDA/RbsorptyrsMkYhRT8OstVNlIDljTh+Az/v4Se96A0Utg9ZdwJ3YBDZjju1t0Xlts1JW7TZrQJYxiMa3e2keLR16Z7k2Q9Ne/nfe1biW+ylGCDPgX0WjFb58dof+WjILcCHYIs7O3suX6OrGaOtufB0qUf5NY9X/6yMan8u28w4S9ByydnlNjTkthf7TzsjqhzEzQTRJeiLxzVaf5ZX1f9L0au4ruBhfBG4v9xevmtcZKBMf8ypJdeKG01dTdcf7mF1aHuq/aU6DnvCn0MA9bJJk6atwYWQrkdrOrllbBZuXzv/bgwHHxvW+mEVUnnTkAdVxqB137wz+z5e1D3yw5oVIgIDgYFxM7B7fW837o48C9357EqSLER/PhED1wlYDSnLNKGqy2OHk8l00Ko5JrxZiuLnkHBrFMWb4iT6G27BfOToJQP/GXcjQ8aWMgB/iF75x6K+g3FyLqb0y9CYZbD8fNgYYpWDYN/isiNMwWBHkijCs1VKz+ILwBB85IlSnGzGz2ob5vQMPokTJpOFUAADZpcCqtIqdq8/pfvtt994ARZuy7xBj9nSOJEhv1xEP8Ptgk/NmPGe5WEwUc7CNjBwJDCAn2DaXhwYOj6qHDgRPz4dDZ1morPPEMQr5JK4UsEzSf6Lycd+DA/7S23xfuzviduirXNOH9gZThpHghccWgeulO3Z++oJlQMH34s5wjxMRGZiSgEfiWbgiVI8acA3nH/QV+LSPlwUvKcytbKjc9Hgy8FHDs1vEUcLn3DsWDv/eiytyvMyWDm9JG2Ere24bzP55Ro84XBvnCRnzFvx3JNFkBPqCAwEBgIDgYHAQGCgMQwUflssVkdX6zRDVzFUVmX0an/EYOrqyzyKOQie51a5Mkw2lKuwDQwEBgIDgYHAwGRioNAJxwtr5y/HTOIUWdbAfEN+OnGoP6doHFc8dNVDLwhkLPa/fvyZ2/4ymcgNbQ0MBAYCA4GBwEBgQBko9C6V6GDlKt5ByAmEBu5QdtMLd3EYf0qxIEej6NZjV2z7kcUFDAwEBgIDgYHAQGBgcjFQ2ApH8uz8aZg8XIEVjowhk4m+bCk4D4lK646dF19rUQEDA4GBwEBgIDAQGJh8DBQ24dixq3IBZhWz7A4UUmUrGUSVM+TKB6J3YZZyWbTgufDY8snnW6HFgYHAQGAgMBAYSBko7CcV3P/Me+7dQ0L4KGgGPlGPsv6kIlHpJnqrPU4u7VixfWcaFYTAQGAgMBAYCAwEBiYlA4WtcOAWk6VkyFY1KNuzfIj88FiGlWu7V2xv3Wui2cAQAgOBgcBAYCAwEBhoCAOFTTiSKOHLeqoWM/xbX30ZD2j58XFn7ZA3CTZEy1BIYCAwEBgIDAQGAgMtZaCwCQcuydjK6zfkeg0i/hgMReYKR6l073FnXfM1ORg2gYHAQGAgMBAYCAwcEQwUNuGIytFNmE0c0Ks1ONmwu1UMufiRrJs5fdqqCf6SpSPC8EGJwEBgIDAQGAgMFMlAYROO48/YPoRJxvX48DGiAF3tMMTu2plTZl44u2/r3iIJCHUFBgIDgYHAQGAgMNB8BnTBofn1pDVse3jeBaj0i5hynIe5x1t4y+Mz2P/F8WefdEcUrXknTRiEwEBgIDAQGAgMBAaOGAb+B5nwCpLPLNx7AAAAAElFTkSuQmCC"],["fxFlex","30","width","295","height","295","viewBox","0 0 295 295","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M182.629 183.635C213.842 170.774 228.719 135.046 215.857 103.833C202.996 72.6204 167.268 57.7435 136.055 70.6048C104.843 83.4659 89.966 119.195 102.827 150.407C115.688 181.62 151.417 196.496 182.629 183.635Z",1,"fill-color-0"],["fill-rule","evenodd","clip-rule","evenodd","d","M169.522 122.093C171.059 115.241 166.054 111.136 159.022 108.13L162.04 98.916L156.431 97.0797L153.493 106.051C152.019 105.569 150.502 105.104 148.995 104.643L151.953 95.613L146.348 93.7769L143.329 102.988C142.106 102.615 140.906 102.247 139.743 101.867L139.752 101.838L132.017 99.3019L130.057 105.293C130.057 105.293 134.224 106.57 134.131 106.624C136.402 107.369 136.71 108.93 136.552 110.138L133.115 120.635C133.271 120.687 133.473 120.761 133.695 120.869C133.66 120.857 133.626 120.846 133.591 120.834C133.562 120.825 133.534 120.816 133.505 120.806C133.375 120.763 133.24 120.719 133.102 120.675L128.284 135.38C127.95 136.062 127.157 137.065 125.569 136.548C125.62 136.635 121.492 135.211 121.492 135.211L118.184 141.544L125.483 143.935C126.298 144.203 127.103 144.476 127.899 144.746L127.901 144.747C128.431 144.927 128.956 145.105 129.479 145.28L126.429 154.6L132.031 156.436L135.051 147.215C136.579 147.75 138.064 148.25 139.517 148.725L136.509 157.902L142.118 159.739L145.166 150.437C154.773 152.984 162.15 152.77 165.87 144.183C168.867 137.27 166.555 132.99 161.623 129.952C165.417 129.361 168.406 127.109 169.522 122.093ZM155.149 139.449C153.059 145.84 143.068 142.413 138.496 140.845L138.496 140.845C138.085 140.704 137.718 140.578 137.404 140.476L141.449 128.129C141.831 128.254 142.299 128.395 142.829 128.555L142.829 128.555C147.571 129.985 157.289 132.916 155.149 139.449ZM144.22 122.79C148.031 124.108 156.343 126.982 158.247 121.175C160.192 115.234 152.086 112.815 148.127 111.634C147.682 111.501 147.289 111.383 146.969 111.279L143.301 122.477C143.565 122.563 143.874 122.67 144.22 122.79Z",1,"fill-color-15"],["d","M158.075 173.411C189.288 160.55 204.164 124.822 191.303 93.6088C178.442 62.3964 142.714 47.5195 111.501 60.3808C80.2885 73.2419 65.4118 108.971 78.2729 140.183C91.1342 171.396 126.863 186.272 158.075 173.411Z",1,"stroke-color-thinest"],["d","M259.352 172.363L85.4595 244.016",1,"stroke-color-thinest"],["d","M122.291 259.352L85.4593 244.016L100.795 207.184",1,"stroke-color-thinest"],["width","225.692","height","225.692","transform","translate(0 85.983) rotate(-22.3941)",1,"fill-color-30"],["fxFlex","30","width","298","height","300","viewBox","0 0 298 300","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M248.333 237.5V112.5C248.333 105.625 242.746 100 235.917 100H37.2501C30.421 100 24.8335 105.625 24.8335 112.5V237.5C24.8335 244.375 30.421 250 37.2501 250H235.917C242.746 250 248.333 244.375 248.333 237.5Z",1,"fill-color-0"],["d","M273.167 212.5V87.5C273.167 80.625 267.579 75 260.75 75H62.0832C55.254 75 49.6665 80.625 49.6665 87.5V212.5C49.6665 219.375 55.254 225 62.0832 225H260.75C267.579 225 273.167 219.375 273.167 212.5Z",1,"stroke-color"],["d","M6.20851 200H24.8335V150H6.20851C2.73185 150 0.000183105 152.75 0.000183105 156.25V193.75C0.000183105 197.25 2.73185 200 6.20851 200Z",1,"fill-color-0"],["d","M31.0415 175H49.6665V125H31.0415C27.5648 125 24.8331 127.75 24.8331 131.25V168.75C24.8331 172.25 27.5648 175 31.0415 175Z",1,"stroke-color"],["d","M161.417 187.5L142.792 150H180.042L161.417 112.5",1,"stroke-color"]],template:function(U,G){if(1&U&&t.DNE(0,mf,1,0,"ng-container",5)(1,a1,18,5,"ng-template",null,0,t.C5r)(3,Us,19,5,"ng-template",null,1,t.C5r)(5,K0,19,5,"ng-template",null,2,t.C5r)(7,o1,17,5,"ng-template",null,3,t.C5r)(9,gd,13,5,"ng-template",null,4,t.C5r),2&U){const Oe=t.sdS(2),It=t.sdS(4),Lt=t.sdS(6),oi=t.sdS(8),ci=t.sdS(10);t.Y8G("ngTemplateOutlet",1===G.stepNumber?Oe:2===G.stepNumber?It:3===G.stepNumber?Lt:4===G.stepNumber?oi:ci)}},dependencies:[ri.YU,ri.T3,$i.DJ,$i.sA,$i.UI,ds.PW,mr.Lc,mr.dh],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[v2.k]}})}return O})();const Q0=["stepper"],Z0=()=>[1,2,3,4,5],_d=(O,H)=>({"dot-primary":O,"dot-primary-lighter":H});function s1(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.JRh(b.inputFormLabel)}}function c1(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Amount is required."),t.k0s())}function J0(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.SpI("Amount must be greater than or equal to ",t.bMT(2,1,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.minimal),".")}}function q0(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.nI1(2,"number"),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.SpI("Amount must be less than or equal to ",t.bMT(2,1,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.maximal),".")}}function Zl(O,H){1&O&&(t.j41(0,"div",41)(1,"div",42)(2,"mat-slide-toggle",43),t.EFF(3,"Accept Zero Conf"),t.k0s(),t.j41(4,"mat-icon",44),t.EFF(5,"info_outline"),t.k0s()()())}function b2(O,H){1&O&&(t.j41(0,"div",41)(1,"div",42)(2,"mat-slide-toggle",45),t.EFF(3,"Send from Internal Wallet"),t.k0s(),t.j41(4,"mat-icon",46),t.EFF(5,"info_outline"),t.k0s()()())}function pf(O,H){1&O&&(t.j41(0,"button",47),t.EFF(1,"Next"),t.k0s())}function gf(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",48),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onSwap())}),t.EFF(1),t.k0s()}if(2&O){const b=t.XpG(2);t.R7$(),t.SpI("Initiate ",b.swapDirectionCaption,"")}}function Qo(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(3);t.JRh(b.addressFormLabel)}}function y2(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Address is required."),t.k0s())}function l1(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-step",15)(1,"form",16),t.DNE(2,Qo,1,1,"ng-template",17),t.j41(3,"div",49)(4,"mat-radio-group",50),t.bIt("change",function(G){t.eBV(b);const Oe=t.XpG(2);return t.Njj(Oe.onAddressTypeChange(G))}),t.j41(5,"mat-radio-button",51),t.EFF(6,"Node Local Address"),t.k0s(),t.j41(7,"mat-radio-button",52),t.EFF(8,"External Address"),t.k0s()(),t.j41(9,"mat-form-field",53)(10,"mat-label"),t.EFF(11,"Address"),t.k0s(),t.nrm(12,"input",54),t.DNE(13,y2,2,0,"mat-error",24),t.k0s()(),t.j41(14,"div",26)(15,"button",55),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onSwap())}),t.EFF(16),t.k0s()()()()}if(2&O){const b=t.XpG(2);t.Y8G("stepControl",b.addressFormGroup)("editable",b.flgEditable),t.R7$(),t.Y8G("formGroup",b.addressFormGroup),t.R7$(11),t.Y8G("required","external"===b.addressFormGroup.controls.addressType.value),t.R7$(),t.Y8G("ngIf",null==b.addressFormGroup.controls.address.errors?null:b.addressFormGroup.controls.address.errors.required),t.R7$(3),t.SpI("Initiate ",b.swapDirectionCaption,"")}}function x2(O,H){if(1&O&&t.EFF(0),2&O){const b=t.XpG(2);t.SpI("",b.swapDirectionCaption," Status")}}function eh(O,H){if(1&O&&(t.j41(0,"mat-icon",56),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.swapStatus&&null!=b.swapStatus&&b.swapStatus.id?"check":"close")}}function a4(O,H){1&O&&t.nrm(0,"div")}function Zo(O,H){1&O&&t.nrm(0,"mat-progress-bar",57)}function pl(O,H){if(1&O&&(t.j41(0,"h4",58),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.swapStatus&&b.swapStatus.error?b.swapDirectionCaption+" failed.":b.swapStatus&&b.swapStatus.id?b.swapDirectionCaption+" request placed successfully. You can check the status of the request on the 'Boltz' menu.":b.swapDirectionCaption+" request placed successfully.")}}function C2(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",59),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onRestart())}),t.EFF(1,"Start Again"),t.k0s()}}function w2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),t.EFF(5),t.k0s()(),t.j41(6,"div",9)(7,"button",10),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.showInfo())}),t.EFF(8,"?"),t.k0s(),t.j41(9,"button",11),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onClose())}),t.EFF(10,"X"),t.k0s()()(),t.j41(11,"mat-card-content",12)(12,"div",13)(13,"mat-vertical-stepper",14,1),t.bIt("selectionChange",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.stepSelectionChanged(G))}),t.j41(15,"mat-step",15)(16,"form",16),t.DNE(17,s1,1,1,"ng-template",17),t.j41(18,"div",18),t.nrm(19,"rtl-boltz-service-info",19),t.k0s(),t.j41(20,"div",20)(21,"mat-form-field",21)(22,"mat-label"),t.EFF(23,"Amount"),t.k0s(),t.nrm(24,"input",22),t.j41(25,"mat-hint"),t.EFF(26),t.nI1(27,"number"),t.nI1(28,"number"),t.k0s(),t.j41(29,"span",23),t.EFF(30,"Sats"),t.k0s(),t.DNE(31,c1,2,0,"mat-error",24)(32,J0,3,3,"mat-error",24)(33,q0,3,3,"mat-error",24),t.k0s(),t.DNE(34,Zl,6,0,"div",25)(35,b2,6,0,"div",25),t.k0s(),t.j41(36,"div",26),t.DNE(37,pf,2,0,"button",27)(38,gf,2,1,"button",28),t.k0s()()(),t.DNE(39,l1,17,6,"mat-step",29),t.j41(40,"mat-step",30)(41,"form",16),t.DNE(42,x2,1,1,"ng-template",17),t.j41(43,"div",31)(44,"mat-expansion-panel",32)(45,"mat-expansion-panel-header")(46,"mat-panel-title")(47,"span",33),t.EFF(48),t.DNE(49,eh,2,1,"mat-icon",34),t.k0s()()(),t.DNE(50,a4,1,0,"div",35),t.k0s(),t.DNE(51,Zo,1,0,"mat-progress-bar",36),t.k0s(),t.DNE(52,pl,2,1,"h4",37),t.j41(53,"div",26),t.DNE(54,C2,2,0,"button",38),t.k0s()()()(),t.j41(55,"div",39)(56,"button",40),t.EFF(57,"Close"),t.k0s()()()()()()}if(2&O){const b=t.XpG(),U=t.sdS(2);t.Y8G("@opacityAnimation",void 0),t.R7$(3),t.Y8G("fxFlex",b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM?"83":"91"),t.R7$(2),t.JRh(b.swapDirectionCaption),t.R7$(),t.Y8G("fxFlex",b.screenSize===b.screenSizeEnum.XS||b.screenSize===b.screenSizeEnum.SM?"17":"9"),t.R7$(7),t.Y8G("linear",!0),t.R7$(2),t.Y8G("stepControl",b.inputFormGroup)("editable",b.flgEditable),t.R7$(),t.Y8G("formGroup",b.inputFormGroup),t.R7$(3),t.Y8G("serviceInfo",b.serviceInfo)("direction",b.direction),t.R7$(5),t.Y8G("step",1e3),t.R7$(2),t.Lme("Range: ",t.bMT(27,32,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.minimal),"-",t.bMT(28,34,null==b.serviceInfo||null==b.serviceInfo.limits?null:b.serviceInfo.limits.maximal),""),t.R7$(5),t.Y8G("ngIf",null==b.inputFormGroup||null==b.inputFormGroup.controls||null==b.inputFormGroup.controls.amount||null==b.inputFormGroup.controls.amount.errors?null:b.inputFormGroup.controls.amount.errors.required),t.R7$(),t.Y8G("ngIf",null==b.inputFormGroup||null==b.inputFormGroup.controls||null==b.inputFormGroup.controls.amount||null==b.inputFormGroup.controls.amount.errors?null:b.inputFormGroup.controls.amount.errors.min),t.R7$(),t.Y8G("ngIf",null==b.inputFormGroup||null==b.inputFormGroup.controls||null==b.inputFormGroup.controls.amount||null==b.inputFormGroup.controls.amount.errors?null:b.inputFormGroup.controls.amount.errors.max),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_IN&&b.isSendFromInternalCompatible),t.R7$(2),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_IN),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("stepControl",b.statusFormGroup),t.R7$(),t.Y8G("formGroup",b.statusFormGroup),t.R7$(3),t.Y8G("expanded",!!b.swapStatus),t.R7$(4),t.JRh(b.swapStatus?b.swapStatus.id?b.swapDirectionCaption+" request details":b.swapDirectionCaption+" error details":"Waiting for "+b.swapDirectionCaption+" request..."),t.R7$(),t.Y8G("ngIf",b.swapStatus),t.R7$(),t.Y8G("ngIf",!b.swapStatus)("ngIfElse",U),t.R7$(),t.Y8G("ngIf",!b.swapStatus),t.R7$(),t.Y8G("ngIf",b.swapStatus),t.R7$(2),t.Y8G("ngIf",b.swapStatus&&(b.swapStatus.error||!b.swapStatus.id)),t.R7$(2),t.Y8G("mat-dialog-close",!1)}}function _f(O,H){if(1&O&&t.nrm(0,"rtl-boltz-swap-status",60),2&O){const b=t.XpG();t.Y8G("swapStatus",b.swapStatus)("direction",b.direction)("acceptZeroConf",null==b.inputFormGroup||null==b.inputFormGroup.controls?null:b.inputFormGroup.controls.acceptZeroConf.value)("sendFromInternal",null==b.inputFormGroup||null==b.inputFormGroup.controls?null:b.inputFormGroup.controls.sendFromInternal.value)}}function th(O,H){if(1&O){const b=t.RV6();t.j41(0,"rtl-boltz-swapout-info-graphics",76),t.mxI("stepNumberChange",function(G){t.eBV(b);const Oe=t.XpG(2);return t.DH7(Oe.stepNumber,G)||(Oe.stepNumber=G),t.Njj(G)}),t.k0s()}if(2&O){const b=t.XpG(2);t.Y8G("animationDirection",b.animationDirection),t.R50("stepNumber",b.stepNumber)}}function ih(O,H){if(1&O){const b=t.RV6();t.j41(0,"rtl-boltz-swapin-info-graphics",76),t.mxI("stepNumberChange",function(G){t.eBV(b);const Oe=t.XpG(2);return t.DH7(Oe.stepNumber,G)||(Oe.stepNumber=G),t.Njj(G)}),t.k0s()}if(2&O){const b=t.XpG(2);t.Y8G("animationDirection",b.animationDirection),t.R50("stepNumber",b.stepNumber)}}function Gc(O,H){if(1&O){const b=t.RV6();t.j41(0,"span",77),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG(2);return t.Njj(Oe.onStepChanged(G))}),t.nrm(1,"p",78),t.k0s()}if(2&O){const b=H.$implicit,U=t.XpG(2);t.R7$(),t.Y8G("ngClass",t.l_i(1,_d,U.stepNumber===b,U.stepNumber!==b))}}function M2(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",79),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onReadMore())}),t.EFF(1,"Read More"),t.k0s()}}function nh(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",80),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onStepChanged(4))}),t.EFF(1,"Back"),t.k0s()}}function vf(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",81),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return G.flgShowInfo=!1,t.Njj(G.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function rh(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",82),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return G.flgShowInfo=!1,t.Njj(G.stepNumber=1)}),t.EFF(1,"Close"),t.k0s()}}function E2(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",83),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onStepChanged(G.stepNumber-1))}),t.EFF(1,"Back"),t.k0s()}}function bf(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",84),t.bIt("click",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onStepChanged(G.stepNumber+1))}),t.EFF(1,"Next"),t.k0s()}}function S2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",61)(1,"div",18)(2,"mat-card-header",62)(3,"div",63),t.nrm(4,"span",8),t.k0s(),t.j41(5,"div",64)(6,"button",11),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return G.flgShowInfo=!1,t.Njj(G.stepNumber=1)}),t.EFF(7,"X"),t.k0s()()(),t.j41(8,"mat-card-content",65),t.DNE(9,th,1,2,"rtl-boltz-swapout-info-graphics",66)(10,ih,1,2,"rtl-boltz-swapin-info-graphics",66),t.k0s(),t.j41(11,"div",67),t.DNE(12,Gc,2,4,"span",68),t.k0s(),t.j41(13,"div",69),t.DNE(14,M2,2,0,"button",70)(15,nh,2,0,"button",71)(16,vf,2,0,"button",72)(17,rh,2,0,"button",73)(18,E2,2,0,"button",74)(19,bf,2,0,"button",75),t.k0s()()()}if(2&O){const b=t.XpG();t.Y8G("@opacityAnimation",void 0),t.R7$(9),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_OUT),t.R7$(),t.Y8G("ngIf",b.direction===b.swapTypeEnum.SWAP_IN),t.R7$(2),t.Y8G("ngForOf",t.lJ4(10,Z0)),t.R7$(2),t.Y8G("ngIf",5===b.stepNumber),t.R7$(),t.Y8G("ngIf",5===b.stepNumber),t.R7$(),t.Y8G("ngIf",5===b.stepNumber),t.R7$(),t.Y8G("ngIf",b.stepNumber<5),t.R7$(),t.Y8G("ngIf",b.stepNumber>1&&b.stepNumber<5),t.R7$(),t.Y8G("ngIf",b.stepNumber<5)}}let Jl=(()=>{class O{constructor(b,U,G,Oe,It,Lt,oi){this.dialogRef=b,this.data=U,this.boltzService=G,this.formBuilder=Oe,this.decimalPipe=It,this.logger=Lt,this.commonService=oi,this.faInfoCircle=nn.iW_,this.boltzInfo=null,this.serviceInfo={fees:{percentage:null,miner:{normal:null,reverse:null}},limits:{minimal:1e4,maximal:5e7}},this.swapTypeEnum=Wt.Bd,this.direction=Wt.Bd.SWAP_OUT,this.swapDirectionCaption="Swap out",this.swapStatus=null,this.inputFormLabel="Amount to swap out",this.addressFormLabel="Withdrawal Address",this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=Wt.f7,this.animationDirection="forward",this.flgEditable=!0,this.isSendFromInternalCompatible=!0,this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.serviceInfo=this.data.serviceInfo,this.direction=this.data.direction||Wt.Bd.SWAP_OUT,this.swapDirectionCaption=this.direction===Wt.Bd.SWAP_OUT?"Swap Out":"Swap in",this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.serviceInfo.limits?.minimal,[Wi.k0.required,Wi.k0.min(this.serviceInfo.limits?.minimal||0),Wi.k0.max(this.serviceInfo.limits?.maximal||0)]],acceptZeroConf:[!1],sendFromInternal:[!0]}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[Wi.k0.required]],address:[{value:"",disabled:!0}]}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.boltzService.boltzInfoChanged.pipe((0,dn.Q)(this.unSubs[0])).subscribe({next:b=>{this.boltzInfo=b,this.isSendFromInternalCompatible=this.commonService.isVersionCompatible(this.boltzInfo.version,"2.0.0")},error:b=>{this.boltzInfo={version:"2.0.0"},this.logger.error(b)}})}ngAfterViewInit(){this.direction===Wt.Bd.SWAP_OUT&&this.addressFormGroup.setErrors({Invalid:!0})}onFormValueChanges(){this.direction===Wt.Bd.SWAP_OUT&&this.addressFormGroup.valueChanges.pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(b){"external"===b.value?(this.addressFormGroup.controls.address.setValidators([Wi.k0.required]),this.addressFormGroup.controls.address.markAsTouched(),this.addressFormGroup.controls.address.enable()):(this.addressFormGroup.controls.address.setValidators(null),this.addressFormGroup.controls.address.markAsPristine(),this.addressFormGroup.controls.address.disable(),this.addressFormGroup.controls.address.setValue("")),this.addressFormGroup.setErrors({Invalid:!0})}onSwap(){if(!this.inputFormGroup.controls.amount.value||this.serviceInfo.limits?.minimal&&this.inputFormGroup.controls.amount.value<+this.serviceInfo.limits.minimal||this.serviceInfo.limits?.maximal&&this.inputFormGroup.controls.amount.value>+this.serviceInfo.limits.maximal||this.direction===Wt.Bd.SWAP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;this.flgEditable=!1,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===Wt.Bd.SWAP_IN?this.boltzService.swapIn(this.inputFormGroup.controls.amount.value,this.isSendFromInternalCompatible?this.inputFormGroup.controls.sendFromInternal.value:null).pipe((0,dn.Q)(this.unSubs[2])).subscribe({next:b=>{this.swapStatus=b,this.boltzService.listSwaps(),this.flgEditable=!0},error:b=>{this.swapStatus={error:b},this.flgEditable=!0,this.logger.error(b)}}):this.boltzService.swapOut(this.inputFormGroup.controls.amount.value,"external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",this.inputFormGroup.controls.acceptZeroConf.value).pipe((0,dn.Q)(this.unSubs[3])).subscribe({next:U=>{this.swapStatus=U,this.boltzService.listSwaps(),this.flgEditable=!0},error:U=>{this.swapStatus={error:U},this.flgEditable=!0,this.logger.error(U)}})}stepSelectionChanged(b){switch(b.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.amount.value?this.direction===Wt.Bd.SWAP_IN?this.swapDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Send from Internal Wallet: "+(this.inputFormGroup.controls.sendFromInternal.value?"Yes":"No"):this.swapDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Zero Conf: "+(this.inputFormGroup.controls.acceptZeroConf.value?"Yes":"No"):"Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address"}b.selectedIndex{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Sn.CP),t.rXU(Sn.Vh),t.rXU(fd),t.rXU(Wi.ze),t.rXU(ri.QX),t.rXU(Yo.gP),t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swap-modal"]],viewQuery:function(U,G){if(1&U&&t.GBs(Q0,5),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.stepper=Oe.first)}},decls:4,vars:2,consts:[["swapStatusBlock",""],["stepper",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"fxFlex"],[1,"page-title"],["fxLayoutAlign","end end",3,"fxFlex"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[3,"serviceInfo","direction"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","button","matStepperNext","",4,"ngIf"],["mat-button","","color","primary","tabindex","3","type","button",3,"click",4,"ngIf"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[4,"ngIf","ngIfElse"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxLayoutAlign","start","class","font-bold-500 mt-2",4,"ngIf"],["mat-button","","color","primary","tabindex","13","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end end"],["mat-button","","color","primary","tabindex","14","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayoutAlign","start center","tabindex","2","color","primary","formControlName","acceptZeroConf","name","acceptZeroConf"],["matTooltip","Only recommended for smaller payments, involves trust in Boltz","matTooltipPosition","above",1,"info-icon","mt-2"],["fxLayoutAlign","start center","tabindex","2","color","primary","formControlName","sendFromInternal","name","sendFromInternal"],["matTooltip","Pay from the node's onchain wallet","matTooltipPosition","above",1,"info-icon","mt-2"],["mat-button","","color","primary","tabindex","2","type","button","matStepperNext",""],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["color","primary","name","addressType","formControlName","addressType","fxFlex","100","fxLayoutAlign","space-between stretch",3,"change"],["fxFlex","48","tabindex","8","value","local"],["fxFlex","48","tabindex","9","value","external"],["fxLayout","column","fxFlex","100",1,"mt-1"],["matInput","","tabindex","10","formControlName","address",3,"required"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-2"],["mat-button","","color","primary","tabindex","13","type","button",3,"click"],["fxLayout","column",3,"swapStatus","direction","acceptZeroConf","sendFromInternal"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","15","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","15","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(U,G){1&U&&t.DNE(0,w2,58,36,"div",2)(1,_f,1,4,"ng-template",null,0,t.C5r)(3,S2,20,11,"div",3),2&U&&(t.Y8G("ngIf",!G.flgShowInfo),t.R7$(3),t.Y8G("ngIf",G.flgShowInfo))},dependencies:[ri.YU,ri.Sq,ri.bT,Wi.qT,Wi.me,Wi.Q0,Wi.BC,Wi.cb,Wi.YS,Wi.j4,Wi.JD,$i.DJ,$i.sA,$i.UI,ds.PW,Sn.tx,ve.$z,mr.m2,mr.MM,Ra.GK,Ra.Z2,Ra.WN,Vc.An,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,Pe.yw,ul.HM,Gd.VT,Gd._g,e2.sG,ic.oV,Ka.V5,Ka.Ti,Ka.M6,Ka.F7,Ot.N,df,Y0,pd,$0,ri.QX],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[af.C]}})}return O})();const yf=()=>["all"],d1=O=>({"overflow-auto error-border":O,"overflow-auto":!0}),ah=()=>["no_swap"],jc=O=>({width:O}),T2=O=>({"display-none":O});function oh(O,H){if(1&O&&(t.j41(0,"mat-option",42),t.EFF(1),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.Y8G("value",b),t.R7$(),t.JRh(U.getLabel(b))}}function xf(O,H){1&O&&t.nrm(0,"mat-progress-bar",43)}function h1(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Status"),t.k0s())}function D2(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.JRh(U.swapStateEnum[null==b?null:b.status])}}function Cf(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Swap ID"),t.k0s())}function ql(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(null==b?null:b.id)}}function vd(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Claim Address"),t.k0s())}function bd(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.claimAddress)}}function wf(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Lockup Address"),t.k0s())}function Mf(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.lockupAddress)}}function o4(O,H){1&O&&(t.j41(0,"th",48),t.EFF(1,"Onchain Amount (Sats)"),t.k0s())}function A2(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.onchainAmount))}}function sh(O,H){1&O&&(t.j41(0,"th",48),t.EFF(1,"Expected Amount (Sats)"),t.k0s())}function u1(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.expectedAmount))}}function ch(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Error"),t.k0s())}function Dc(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.error)}}function f1(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Private Key"),t.k0s())}function k2(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.privateKey)}}function lh(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Preimage"),t.k0s())}function ed(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.preimage)}}function dh(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Redeem Script"),t.k0s())}function hh(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.redeemScript)}}function Ef(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Invoice"),t.k0s())}function Sf(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",46)(2,"span",47),t.EFF(3),t.k0s()()()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngStyle",t.eq3(2,jc,U.screenSize===U.screenSizeEnum.XS?"6rem":U.colWidth)),t.R7$(2),t.JRh(null==b?null:b.invoice)}}function uh(O,H){1&O&&(t.j41(0,"th",48),t.EFF(1,"Timeout Block Height"),t.k0s())}function s4(O,H){if(1&O&&(t.j41(0,"td",45)(1,"span",49),t.EFF(2),t.nI1(3,"number"),t.k0s()()),2&O){const b=H.$implicit;t.R7$(2),t.JRh(t.bMT(3,1,null==b?null:b.timeoutBlockHeight))}}function c4(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Lockup Tx ID"),t.k0s())}function Gs(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(null==b?null:b.lockupTransactionId)}}function fh(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Claim Tx ID"),t.k0s())}function m1(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(null==b?null:b.claimTransactionId)}}function mh(O,H){1&O&&(t.j41(0,"th",44),t.EFF(1,"Refund Tx ID"),t.k0s())}function js(O,H){if(1&O&&(t.j41(0,"td",45),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.R7$(),t.JRh(null==b?null:b.refundTransactionId)}}function yd(O,H){if(1&O){const b=t.RV6();t.j41(0,"th",50)(1,"div",51)(2,"mat-select",52),t.nrm(3,"mat-select-trigger"),t.j41(4,"mat-option",53),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onDownloadCSV())}),t.EFF(5,"Download CSV"),t.k0s()()()()}}function p1(O,H){if(1&O){const b=t.RV6();t.j41(0,"td",54)(1,"button",55),t.bIt("click",function(G){const Oe=t.eBV(b).$implicit,It=t.XpG();return t.Njj(It.onSwapClick(Oe,G))}),t.EFF(2,"View Info"),t.k0s()()}}function td(O,H){if(1&O&&(t.j41(0,"p"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(2);t.R7$(),t.JRh(b.emptyTableMessage)}}function id(O,H){if(1&O&&(t.j41(0,"td",56),t.DNE(1,td,2,1,"p",57),t.k0s()),2&O){const b=t.XpG();t.R7$(),t.Y8G("ngIf",!(null!=b.listSwaps&&b.listSwaps.data)||(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)<1)}}function Wc(O,H){if(1&O&&t.nrm(0,"tr",58),2&O){const b=t.XpG();t.Y8G("ngClass",t.eq3(1,T2,(null==b.listSwaps?null:b.listSwaps.data)&&(null==b.listSwaps||null==b.listSwaps.data?null:b.listSwaps.data.length)>0))}}function Ac(O,H){1&O&&t.nrm(0,"tr",59)}function xd(O,H){1&O&&t.nrm(0,"tr",60)}let nd=(()=>{class O{constructor(b,U,G,Oe,It){this.logger=b,this.commonService=U,this.store=G,this.boltzService=Oe,this.camelCaseWithReplace=It,this.selectedSwapType=Wt.Bd.SWAP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=Wt._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="boltz",this.tableSettingSwapOut={tableId:"swap_out",recordsPerPage:Wt.md,sortBy:"status",sortOrder:Wt.oi.DESCENDING},this.tableSettingSwapIn={tableId:"swap_in",recordsPerPage:Wt.md,sortBy:"status",sortOrder:Wt.oi.DESCENDING},this.swapStateEnum=Wt.q9,this.swapTypeEnum=Wt.Bd,this.faHistory=nn.Int,this.swapCaption="Swap Out",this.displayedColumns=[],this.listSwaps=new Tr.I6([]),this.selFilter="",this.pageSize=Wt.md,this.pageSizeOptions=Wt.xp,this.screenSize="",this.screenSizeEnum=Wt.f7,this.unSubs=[new Gi.B,new Gi.B,new Gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(b){b.selectedSwapType&&!b.selectedSwapType.firstChange&&this.setTableColumns(),this.swapCaption=this.selectedSwapType===Wt.Bd.SWAP_IN?"Swap In":"Swap Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(t2.$G).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.tableSettingSwapOut=b.pageSettings.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSettingSwapOut.tableId)||Wt.ZC.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSettingSwapOut.tableId),this.tableSettingSwapIn=b.pageSettings.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSettingSwapIn.tableId)||Wt.ZC.find(U=>U.pageId===this.PAGE_ID)?.tables.find(U=>U.tableId===this.tableSettingSwapIn.tableId),this.setTableColumns(),this.swapsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}setTableColumns(){this.selectedSwapType===Wt.Bd.SWAP_IN?(this.displayedColumns=this.screenSize===Wt.f7.XS||this.screenSize===Wt.f7.SM?JSON.parse(JSON.stringify(this.tableSettingSwapIn.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSettingSwapIn.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSettingSwapIn.recordsPerPage?+this.tableSettingSwapIn.recordsPerPage:Wt.md):(this.displayedColumns=this.screenSize===Wt.f7.XS||this.screenSize===Wt.f7.SM?JSON.parse(JSON.stringify(this.tableSettingSwapOut.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSettingSwapOut.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSettingSwapOut.recordsPerPage?+this.tableSettingSwapOut.recordsPerPage:Wt.md)}applyFilter(){this.listSwaps&&""!==this.selFilter&&(this.listSwaps.filter=this.selFilter.trim().toLowerCase())}getLabel(b){const G=this.nodePageDefs[this.PAGE_ID][this.selectedSwapType===Wt.Bd.SWAP_IN?this.tableSettingSwapIn.tableId:this.tableSettingSwapOut.tableId].allowedColumns.find(Oe=>Oe.column===b);return G?G.label?G.label:this.camelCaseWithReplace.transform(G.column,"_"):this.commonService.titleCase(b)}setFilterPredicate(){this.listSwaps.filterPredicate=(b,U)=>{let G="";switch(this.selFilterBy){case"all":G=JSON.stringify(b).toLowerCase();break;case"status":G=b?.status?this.swapStateEnum[b?.status]:"";break;default:G=typeof b[this.selFilterBy]>"u"?"":"string"==typeof b[this.selFilterBy]?b[this.selFilterBy].toLowerCase():"boolean"==typeof b[this.selFilterBy]?b[this.selFilterBy]?"yes":"no":b[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===G.indexOf(U):G.includes(U)}}onSwapClick(b,U){this.boltzService.swapInfo(b.id||"").pipe((0,dn.Q)(this.unSubs[1])).subscribe(G=>{this.store.dispatch((0,Cn.xO)({payload:{data:{type:Wt.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"status",value:Wt.q9[(G=this.selectedSwapType===Wt.Bd.SWAP_IN?G.swap:G.reverseSwap).status],title:"Status",width:50,type:Wt.UN.STRING},{key:"id",value:G.id,title:"ID",width:50,type:Wt.UN.STRING}],[{key:"amount",value:G.onchainAmount?G.onchainAmount:G.expectedAmount?G.expectedAmount:0,title:G.onchainAmount?"Onchain Amount (Sats)":G.expectedAmount?"Expected Amount (Sats)":"Amount (Sats)",width:50,type:Wt.UN.NUMBER},{key:"timeoutBlockHeight",value:G.timeoutBlockHeight,title:"Timeout Block Height",width:50,type:Wt.UN.NUMBER}],[{key:"address",value:G.claimAddress?G.claimAddress:G.lockupAddress?G.lockupAddress:"",title:G.claimAddress?"Claim Address":G.lockupAddress?"Lockup Address":"Address",width:100,type:Wt.UN.STRING}],[{key:"invoice",value:G.invoice,title:"Invoice",width:100,type:Wt.UN.STRING}],[{key:"privateKey",value:G.privateKey,title:"Private Key",width:100,type:Wt.UN.STRING}],[{key:"preimage",value:G.preimage,title:"Preimage",width:100,type:Wt.UN.STRING}],[{key:"redeemScript",value:G.redeemScript,title:"Redeem Script",width:100,type:Wt.UN.STRING}],[{key:"lockupTransactionId",value:G.lockupTransactionId,title:"Lockup Transaction ID",width:50,type:Wt.UN.STRING},{key:"transactionId",value:G.claimTransactionId?G.claimTransactionId:G.refundTransactionId?G.refundTransactionId:"",title:G.claimTransactionId?"Claim Transaction ID":G.refundTransactionId?"Refund Transaction ID":"Transaction ID",width:50,type:Wt.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(b){this.listSwaps=new Tr.I6(b?[...b]:[]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(U,G)=>U[G]&&isNaN(U[G])?U[G].toLocaleLowerCase():U[G]?+U[G]:null,this.paginator&&this.paginator.firstPage(),this.listSwaps.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listSwaps)}onDownloadCSV(){this.listSwaps.data&&this.listSwaps.data.length>0&&this.commonService.downloadFile(this.listSwaps.data,this.selectedSwapType===Wt.Bd.SWAP_IN?"Swap in":"Swap out")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(fd),t.rXU(Ul.VD))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-swaps"]],viewQuery:function(U,G){if(1&U&&(t.GBs(Sc.B4,5),t.GBs(hl.iy,5)),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.sort=Oe.first),t.mGM(Oe=t.lsd())&&(G.paginator=Oe.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},features:[t.Jv_([{provide:xe.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:hl.xX,useValue:(0,Wt.on)("Swaps")}]),t.OA$],decls:76,vars:20,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"card-content-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","fxFlex","100",1,"page-sub-title-container","w-100"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","id"],["matColumnDef","claimAddress"],["matColumnDef","lockupAddress"],["matColumnDef","onchainAmount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","expectedAmount"],["matColumnDef","error"],["matColumnDef","privateKey"],["matColumnDef","preimage"],["matColumnDef","redeemScript"],["matColumnDef","invoice"],["matColumnDef","timeoutBlockHeight"],["matColumnDef","lockupTransactionId"],["matColumnDef","claimTransactionId"],["matColumnDef","refundTransactionId"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_swap"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"div",3),t.nrm(3,"fa-icon",4),t.j41(4,"span",5),t.EFF(5),t.k0s()(),t.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),t.EFF(9,"Filter By"),t.k0s(),t.j41(10,"mat-select",8),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selFilterBy,Lt)||(G.selFilterBy=Lt),t.Njj(Lt)}),t.bIt("selectionChange",function(){return t.eBV(Oe),G.selFilter="",t.Njj(G.applyFilter())}),t.j41(11,"perfect-scrollbar"),t.DNE(12,oh,2,2,"mat-option",9),t.k0s()()(),t.j41(13,"mat-form-field",7)(14,"mat-label"),t.EFF(15,"Filter"),t.k0s(),t.j41(16,"input",10),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.selFilter,Lt)||(G.selFilter=Lt),t.Njj(Lt)}),t.bIt("input",function(){return t.eBV(Oe),t.Njj(G.applyFilter())})("keyup",function(){return t.eBV(Oe),t.Njj(G.applyFilter())}),t.k0s()()()(),t.j41(17,"div",11)(18,"div",12),t.DNE(19,xf,1,0,"mat-progress-bar",13),t.j41(20,"table",14,0),t.qex(22,15),t.DNE(23,h1,2,0,"th",16)(24,D2,2,1,"td",17),t.bVm(),t.qex(25,18),t.DNE(26,Cf,2,0,"th",16)(27,ql,2,1,"td",17),t.bVm(),t.qex(28,19),t.DNE(29,vd,2,0,"th",16)(30,bd,4,4,"td",17),t.bVm(),t.qex(31,20),t.DNE(32,wf,2,0,"th",16)(33,Mf,4,4,"td",17),t.bVm(),t.qex(34,21),t.DNE(35,o4,2,0,"th",22)(36,A2,4,3,"td",17),t.bVm(),t.qex(37,23),t.DNE(38,sh,2,0,"th",22)(39,u1,4,3,"td",17),t.bVm(),t.qex(40,24),t.DNE(41,ch,2,0,"th",16)(42,Dc,4,4,"td",17),t.bVm(),t.qex(43,25),t.DNE(44,f1,2,0,"th",16)(45,k2,4,4,"td",17),t.bVm(),t.qex(46,26),t.DNE(47,lh,2,0,"th",16)(48,ed,4,4,"td",17),t.bVm(),t.qex(49,27),t.DNE(50,dh,2,0,"th",16)(51,hh,4,4,"td",17),t.bVm(),t.qex(52,28),t.DNE(53,Ef,2,0,"th",16)(54,Sf,4,4,"td",17),t.bVm(),t.qex(55,29),t.DNE(56,uh,2,0,"th",22)(57,s4,4,3,"td",17),t.bVm(),t.qex(58,30),t.DNE(59,c4,2,0,"th",16)(60,Gs,2,1,"td",17),t.bVm(),t.qex(61,31),t.DNE(62,fh,2,0,"th",16)(63,m1,2,1,"td",17),t.bVm(),t.qex(64,32),t.DNE(65,mh,2,0,"th",16)(66,js,2,1,"td",17),t.bVm(),t.qex(67,33),t.DNE(68,yd,6,0,"th",34)(69,p1,3,0,"td",35),t.bVm(),t.qex(70,36),t.DNE(71,id,2,1,"td",37),t.bVm(),t.DNE(72,Wc,1,3,"tr",38)(73,Ac,1,0,"tr",39)(74,xd,1,0,"tr",40),t.k0s(),t.nrm(75,"mat-paginator",41),t.k0s()()()}2&U&&(t.R7$(3),t.Y8G("icon",G.faHistory),t.R7$(2),t.SpI("",G.swapCaption," History"),t.R7$(5),t.R50("ngModel",G.selFilterBy),t.R7$(2),t.Y8G("ngForOf",t.lJ4(16,yf).concat(G.displayedColumns.slice(0,-1))),t.R7$(4),t.R50("ngModel",G.selFilter),t.R7$(3),t.Y8G("ngIf",!0===G.flgLoading[0]),t.R7$(),t.Y8G("matSortActive",G.selectedSwapType===G.swapTypeEnum.SWAP_IN?G.tableSettingSwapIn.sortBy:G.tableSettingSwapOut.sortBy)("matSortDirection",G.selectedSwapType===G.swapTypeEnum.SWAP_IN?G.tableSettingSwapIn.sortOrder:G.tableSettingSwapOut.sortOrder)("dataSource",G.listSwaps)("ngClass",t.eq3(17,d1,"error"===G.flgLoading[0])),t.R7$(52),t.Y8G("matFooterRowDef",t.lJ4(19,ah)),t.R7$(),t.Y8G("matHeaderRowDef",G.displayedColumns),t.R7$(),t.Y8G("matRowDefColumns",G.displayedColumns),t.R7$(),t.Y8G("pageSize",G.pageSize)("pageSizeOptions",G.pageSizeOptions)("showFirstLastButtons",G.screenSize!==G.screenSizeEnum.XS))},dependencies:[ri.YU,ri.Sq,ri.bT,ri.B3,Wi.me,Wi.BC,Wi.vS,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ds.eI,ve.$z,Nr.fg,Pe.rl,Pe.nJ,ul.HM,xe.VO,xe.$2,Be.wT,Sc.B4,Sc.aE,Tr.Zl,Tr.tL,Tr.ji,Tr.cC,Tr.YV,Tr.iL,Tr.Zq,Tr.xW,Tr.KS,Tr.$R,Tr.Qo,Tr.YZ,Tr.NB,Tr.iF,hl.iy,ft.ZF,ft.Ld,ri.QX]})}return O})();const ph=O=>["../",O];function l4(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",16),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG();return t.Njj(Oe.onSelectedIndexChange(G))}),t.EFF(1),t.k0s()}if(2&O){const b=H.$implicit,U=t.XpG();t.Y8G("active",U.activeTab.link===b.link)("routerLink",t.eq3(3,ph,b.link)),t.R7$(),t.JRh(b.name)}}let gh=(()=>{class O{constructor(b,U,G){this.router=b,this.store=U,this.boltzService=G,this.swapTypeEnum=Wt.Bd,this.selectedSwapType=Wt.Bd.SWAP_OUT,this.swaps={},this.swapsData=[],this.emptyTableMessage="No swap data available.",this.flgLoading=[!0],this.links=[{link:"swapout",name:"Swap Out"},{link:"swapin",name:"Swap In"}],this.activeTab=this.links[0],this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.boltzService.getBoltzInfo(),this.boltzService.listSwaps();const b=this.links.find(U=>this.router.url.includes(U.link));this.activeTab=b||this.links[0],this.selectedSwapType=b&&"swapin"===b.link?Wt.Bd.SWAP_IN:Wt.Bd.SWAP_OUT,this.router.events.pipe((0,dn.Q)(this.unSubs[0]),(0,vr.p)(U=>U instanceof En.gx)).subscribe({next:U=>{const G=this.links.find(Oe=>U.urlAfterRedirects.includes(Oe.link));this.activeTab=G||this.links[0],this.selectedSwapType=G&&"swapin"===G.link?Wt.Bd.SWAP_IN:Wt.Bd.SWAP_OUT}}),this.boltzService.swapsChanged.pipe((0,dn.Q)(this.unSubs[1])).subscribe({next:U=>{this.swaps=U,this.swapsData=this.selectedSwapType===Wt.Bd.SWAP_IN&&U.swaps?U.swaps:this.selectedSwapType===Wt.Bd.SWAP_OUT&&U.reverseSwaps?U.reverseSwaps:[],this.flgLoading[0]=!1},error:U=>{this.flgLoading[0]="error",this.emptyTableMessage=U.message?U.message:"No swap "+(this.selectedSwapType===Wt.Bd.SWAP_IN?"in":"out")+" available."}})}onSelectedIndexChange(b){"swapin"===b.link?(this.selectedSwapType=Wt.Bd.SWAP_IN,this.swapsData=this.swaps.swaps||[]):(this.selectedSwapType=Wt.Bd.SWAP_OUT,this.swapsData=this.swaps.reverseSwaps||[])}onSwap(b){this.boltzService.serviceInfo().pipe((0,dn.Q)(this.unSubs[2])).subscribe({next:U=>{this.store.dispatch((0,Cn.xO)({payload:{data:{serviceInfo:U,direction:b,component:Jl}}}))}})}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(En.Ix),t.rXU(Ri.il),t.rXU(fd))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-boltz-root"]],decls:20,vars:7,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["viewBox","0 0 78 78","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",1,"botlz-icon-sm","mr-1"],["id","Logo","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Oval","cx","39","cy","39","r","37.5",1,"boltz-icon"],["d","M36.4583326,43.7755404 L40.53965,35.2316544 L39.4324865,35.2316544 L46.0754873,17.6071752 C46.292579,17.0204094 46.3287609,16.5159331 46.1840331,16.0937464 C46.0393053,15.671561 45.7860319,15.3674444 45.4242131,15.1813966 C45.0623942,14.9953487 44.6535376,14.9524146 44.1976433,15.0525945 C43.7417511,15.1527743 43.3256596,15.4461573 42.9493689,15.9327433 L22.6078557,40.7701025 C22.2026186,41.2710003 22,41.7575877 22,42.2298646 C22,42.6735173 22.1592003,43.0420366 22.477601,43.3354226 C22.7960017,43.6288058 23.1940025,43.7755404 23.6716036,43.7755404 L36.4583326,43.7755404 Z","id","Path",1,"boltz-icon-fill"],["d","M44.4883879,63.7755404 L48.8604707,55.165009 L47.6744296,55.165009 L54.7906978,37.4030526 C55.0232558,36.8117097 55.0620155,36.3032983 54.9069768,35.8778185 C54.7519381,35.4523399 54.4806208,35.1458511 54.0930248,34.958352 C53.7054289,34.7708528 53.2674441,34.7275839 52.7790706,34.8285452 C52.2906992,34.9295065 51.8449641,35.2251779 51.4418653,35.7155595 L29.6511611,60.746659 C29.2170537,61.251464 29,61.7418469 29,62.2178078 C29,62.6649211 29.1705423,63.036315 29.5116268,63.3319895 C29.8527113,63.6276613 30.2790669,63.7755404 30.7906936,63.7755404 L44.4883879,63.7755404 Z","id","Path-Copy","transform","translate(42.000000, 49.275540) rotate(-180.000000) translate(-42.000000, -49.275540) ",1,"boltz-icon-fill"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","2",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1),t.qSk(),t.j41(1,"svg",2)(2,"g",3)(3,"g",4),t.nrm(4,"circle",5)(5,"path",6)(6,"path",7),t.k0s()()(),t.joV(),t.j41(7,"span",8),t.EFF(8,"Boltz"),t.k0s()(),t.j41(9,"div",9)(10,"mat-card")(11,"mat-card-content",10)(12,"nav",11),t.DNE(13,l4,2,5,"div",12),t.k0s(),t.nrm(14,"mat-tab-nav-panel",null,0),t.j41(16,"div",13)(17,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onSwap(G.selectedSwapType))}),t.EFF(18),t.k0s()(),t.nrm(19,"rtl-boltz-swaps",15),t.k0s()()()}if(2&U){const Oe=t.sdS(15);t.R7$(12),t.Y8G("tabPanel",Oe),t.R7$(),t.Y8G("ngForOf",G.links),t.R7$(5),t.SpI("Start ",G.activeTab.name,""),t.R7$(),t.Y8G("selectedSwapType",G.selectedSwapType)("swapsData",G.swapsData)("flgLoading",G.flgLoading)("emptyTableMessage",G.emptyTableMessage)}},dependencies:[ri.Sq,$i.DJ,$i.sA,$i.UI,ve.$z,mr.RN,mr.m2,ca.Bu,ca.hQ,ca.Ql,En.Wk,nd]})}return O})();class io{constructor(H){this.help=H}}function _h(O,H){if(1&O&&(t.j41(0,"mat-expansion-panel",8)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),t.EFF(3),t.k0s()(),t.j41(4,"mat-panel-description",9),t.nrm(5,"span",10),t.j41(6,"a",11),t.EFF(7),t.k0s()()()),2&O){const b=t.XpG().$implicit,U=t.XpG();t.R7$(3),t.JRh(b.help.question),t.R7$(2),t.Y8G("innerHTML",b.help.answer,t.npT),t.R7$(),t.Y8G("routerLink",U.flgLoggedIn?b.help.link:"/login"),t.R7$(),t.JRh(U.flgLoggedIn?b.help.linkCaption:"Login to go to the page")}}function Af(O,H){if(1&O&&(t.j41(0,"div",6),t.DNE(1,_h,8,4,"mat-expansion-panel",7),t.k0s()),2&O){const b=H.$implicit,U=t.XpG();t.R7$(),t.Y8G("ngIf","ALL"===b.help.lnImplementation||b.help.lnImplementation===U.selNode.lnImplementation)}}let vh=(()=>{class O{constructor(b,U){this.store=b,this.sessionService=U,this.helpTopics=[],this.faQuestion=nn.EvL,this.LNPLink="/lnd/",this.flgLoggedIn=!1,this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{this.selNode=b,this.selNode.lnImplementation&&""!==this.selNode.lnImplementation.trim()&&(this.LNPLink="/"+this.selNode.lnImplementation.toLowerCase()+"/",this.addHelpTopics())}),this.sessionService.watchSession().pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.flgLoggedIn=!!b.token}),this.sessionService.getItem("token")&&(this.flgLoggedIn=!0)}addHelpTopics(){this.helpTopics=[],this.helpTopics.push(new io({question:"Getting started",answer:'Funding your node is the first step to get started.\nGo to the "On-chain" page of the app:\n1. Generate a new address on the "Recieve" tab.\n2. Send funds to the address.\n3. Wait for the balance to be confirmed on-chain before proceeding further.\n3. Connecting with network peers and opening channels is next.\n',link:this.LNPLink+"onchain/receive/utxos",linkCaption:"On-Chain",lnImplementation:"ALL"})),this.helpTopics.push(new io({question:"Connect with peers",answer:'Connect with network peers to open channels with them.\nGo to "Peer/Channels" page under the "Lightning" menu :\n1. Get the peer pubkey and host address in the pubkey@ip:port format.\n2. On the "Peers" enter the peer address and connect.\n3. Once the peer is connected, you can open channel with the peer.\n4. A variety of actions can be performed on the connected peers page for each peer:\n a. View Info - View the peer details.\n b. Open Channel - Open channel with the peer.\n c. Disconnect - Disconnect from the peer.\n',link:this.LNPLink+"connections/peers",linkCaption:"Peers",lnImplementation:"ALL"})),this.helpTopics.push(new io({question:"Opening Channels",answer:'Open channels with a connected peer.\nGo to "Peer/Channels" page under the "Lightning" menu:\n1. On the "Channels" section, click on "Open Channel"\n2. On the "Open Channel" modal, select the alias of the connected peer from the drop-down\n2. Specify the amount to commit to the channel and click on "Open Channel".\n3. There are a variety of options available while opening a channel. \n a. Private Channel - When this option is selected, a private channel is opened with the peer. \n b. Priority (advanced option) - Specify either Target confirmation Block or Fee in Sat/vByte. \n c. Spend Unconfirmd Output (advanced option) - Allow channels to be opened with unconfirmed UTXOs.\n4. Track the pending open channels under the "Pending" tab. \n5. Wait for the channel to be confirmed. Only a confimed channel can be used for payments or routing. \n',link:this.LNPLink+"connections/channels/open",linkCaption:"Channels",lnImplementation:"ALL"})),this.helpTopics.push(new io({question:"Channel Management",answer:'Channel maintenance and balance score.\nGo to "Peer/Channels" page under the "Lightning" menu:\n1. A variety of actions can be perfomed on the open channels under the "Open" tab, with the "Actions" button:\n a. View Info - View the channel details.\n b. View Remote Fee - View the fee policy on the channel of the remote peer.\n c. Update Fee Policy - Modify the fee policy on the channel.\n d. Circular Rebalance - Off-chain rebalance channels by making a payment to yourself across a circular path of chained payment channels.\n e. Close Channel - Close the channel.\n2. Balance Score is a "balancedness" metric score for the channel. \n a. It helps measure how balanced the remote and local balances are, on a channel.\n b. A perfectly balanced channel has a score of one, where as a completely lopsided one has a score of zero.\n c. The formula for calculating the score is "1 - abs((local bal - remote bal)/total bal)".\n',link:this.LNPLink+"connections/channels/open",linkCaption:"Channels",lnImplementation:"ALL"})),this.helpTopics.push(new io({question:"Buying Liquidity",answer:'Buying liquidity for your node.\nGo to "Liquidity Ads" page under the "Lightning" menu:\n 1. Filter ads by liquidity amount and channel opening fee rate.\n 2. Research additionally on liquidity provider nodes before selecting.\n 3. Select the best liquidity node peer for your need and click on "Open Channel" from "Actions" drop-down.\n 4. Confirm amount, rates and total cost on the modal and click on "Execute" to buy liquidity.\n',link:this.LNPLink+"liquidityads",linkCaption:"Liquidity Ads",lnImplementation:"CLN"})),this.helpTopics.push(new io({question:"Payments",answer:'Sending Payments from your node.\nGo to the "Transactions" page under the "Lightning" menu :\nPayments tab is for making payments via your node\n 1. Input a non-expired lightning invoice (Bolt11 format) in the "Payment Request" field and click on "Send Payment" to send.\n 2. Advanced option # 1 (LND only) - Specify a limit on the routing fee which you are willing to pay, for the payment.\n 3. Advanced option # 2 (LND only) - Specify the outgoing channel which you want the payment to go through.\n',link:this.LNPLink+"transactions/payments",linkCaption:"Payments",lnImplementation:"ALL"})),this.helpTopics.push(new io({question:"Invoices",answer:'Receiving Payments on your node.\nGo to the "Transactions" page under the "Lightning" menu :\nInvoices tab is for receiving payments on your node.\n 1. Memo - Description you want to provide on the invoice.\n 2. Expiry - The time period, after which the invoice will be invalid.\n 3. Private Routing Hints - Generate an invoice with routing hints for private channels.\n',link:this.LNPLink+"transactions/invoices",linkCaption:"Invoices",lnImplementation:"ALL"})),this.helpTopics.push(new io({question:"Offers",answer:'Send offer payments, create offer invoices and bookmark paid offers on your node.\nGo to the "Transactions" page under the "Lightning" menu :\nPayment for bolt12 offer invoice can be done on "Payments" tab:\n 1. Click on "Send Payment" button.\n 2. Select "Offer" option on the modal.\n 2. Offer Request - Input offer request (Bolt12 format) in the input box.\n 3. Bookmark - Select the checkbox to bookmark this offer for future use.\nOffers tab is for creating bolt12 offer invoice on your node:\n 1. Click on "Create Offer" button.\n 2. Description - Description you want to provide on the offer invoice.\n 3. Amount - Amount for the offer invoice.\n 4. issuer - issuer of the offer.\nPaid offer bookmarks shows the list of paid offers saved for future payments.\n',link:this.LNPLink+"transactions/offers",linkCaption:"Offers",lnImplementation:"CLN"})),this.helpTopics.push(new io({question:"Channel Backups",answer:'Channel Backups are important to ensure that you have means to recover funds in case of node failures.\nBackup folder location can be customized in the RTL config file with the channelBackupPath field.\nRTL automatically creates all channel backup on server startup, as well as everytime a channel is opened or closed\nYou can verify the all channel backup file by clicking on "Verify All" Button on the backup page.\nYou can also backup each channel individually and verify them.\n** Keep taking backups of your channels regularly and store them in redundant locations **.\n',link:this.LNPLink+"channelbackup/bckup",linkCaption:"Channel Backups",lnImplementation:"LND"})),this.helpTopics.push(new io({question:"Channel Restore",answer:'Channel Restore is used to recover funds from the channel backup files in case of node failures.\nFollow the below steps to perform fund restoration.\n\nPrerequisite:\n1. The node has been restored with the LND recovery seed.\n2. RTL generated channel backup file/s is available (all channel backup file is channel-all.bak).\n\nRecovery:\n1. Create a restore folder in your folder backup location, as specified in the RTL config file.\n2. Place the channel backup file in the restore folder.\n3. Go to the "Restore" tab under the "Backup" page of RTL.\n4. RTL will list the options to restore funds from the all channel file or individual channel backup file.\n5. Click on the Restore icon on the grid to restore the funds.\n6. Once the restore function is executed successfully, RTL will rename the backup file and it will not be accessible from the UI.\n7. Restore function will force close the channels and recover the funds from them.\n8. The pending close channels can be viewed under the "Pending" tab on the "Peer/Channels" page.\n9. Once the channel is closed, the corresponding pending on-chain transactions can be viewed on the "On-Chain" page.\n10. Once the transactions are confirmed, the channels funds will be restored to your LND Wallet.\n',link:this.LNPLink+"channelbackup/restore",linkCaption:"Channel Restore",lnImplementation:"LND"})),this.helpTopics.push(new io({question:"Forwarding History",answer:'Transactions routed by the node.\nGo to "Routing" page under the "Lightning" menu :\nTransactions routed by the node are listed on this page along with channels and the fee earned by transaction.\n',link:this.LNPLink+"routing/forwardinghistory",linkCaption:"Forwarding History",lnImplementation:"ALL"})),this.helpTopics.push(new io({question:"Lightning Reports",answer:'Routing and transactions data reports.\nGo to "Reports" page under the "Lightning" menu :\nReport can be generated on monthly/yearly basis by selecting the reporting period, month, and year.\n',link:this.LNPLink+"reports/routingreport",linkCaption:"Reports",lnImplementation:"ALL"})),this.helpTopics.push(new io({question:"Graph Lookup",answer:'Querying your node graph for network node and channel information.\nGo to "Graph Lookup" page under the "Lightning" menu :\nEach node maintains a network graph for the information on all the nodes and channels on the network.\nYou can lookup information on nodes and channels from your graph:\n 1. Node Lookup - Enter the pubkey to perform the lookup.\n 2. Channel Lookup - Enter the short channel ID to perform the lookup.\n',link:this.LNPLink+"graph/lookups",linkCaption:"Graph Lookup",lnImplementation:"ALL"})),this.helpTopics.push(new io({question:"Query Route",answer:'Querying Payment Routes.\nGo to the "Graph Lookup" page under the "Lightning" menu :\nQuery Routes tab is for querying a potential path to a node and a routing fee estimate for a payment amount.\n 1. Destination Pubkey - Pubkey of the node, you want to send the payment to.\n 2. Amount - Amount in Sats, which you want to send to the node.\n',link:this.LNPLink+"graph/queryroutes",linkCaption:"Query Routes",lnImplementation:"ALL"})),this.helpTopics.push(new io({question:"Sign & Verify Messages",answer:'Messages signing and verification.\nGo to the "Sign/Verify" page under the "Lightning" menu :\n 1. Sign your message on "Sign" tab.\n 2. Go to "Verify" tab to verify a message.\n',link:this.LNPLink+"messages/sign",linkCaption:"Messages",lnImplementation:"LND"})),this.helpTopics.push(new io({question:"Sign & Verify Messages",answer:'Messages signing and verification.\nGo to the "Sign/Verify" page under the "Lightning" menu :\n 1. Sign your message on "Sign" tab.\n 2. Go to "Verify" tab to verify a message.\n',link:this.LNPLink+"messages/sign",linkCaption:"Messages",lnImplementation:"CLN"})),this.helpTopics.push(new io({question:"Node Settings",answer:'RTL offers certain customizations on the UI to personalize your experience on the app\nGo to "Node Config" page to access the customization options.\nNode Layout Options\n 1. User Persona - Two options are available to change the dashboard based on the persona.\n 2. Currency Unit - You can choose your preferred fiat currency, to view the onchain and channel balances in the choosen fiat currency.\n 3. Other customizations include day and night mode and a choice of color themes to select from.\nServices Options\n Loop (LND only), Boltz (LND only) & Peerswap (CLN only) services can be configured.\nExperimental Options (CLN only)\n Offers and Liquidity Ads can be enabled/disabled.\nShow LN Config (if configured)\n Shows lightning config file.\n',link:"../config/nodesettings",linkCaption:"Node Settings",lnImplementation:"ALL"})),this.helpTopics.push(new io({question:"Application Settings",answer:'RTL also offers certain customizations on the application level\nGo to top right menu "Settings" page to access these options.\nDefault Node Option\nIf you are managing multiple nodes via RTL UI, you can select the default node to load upon login.\nAuthentication Option\nPassword and 2FA update options are available here.\nShow Bitcoin Config (if configured)\n Shows bitcoin config file.\n',link:"../settings/app",linkCaption:"Application Settings",lnImplementation:"ALL"}))}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Ri.il),t.rXU(qa.Q))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-help"]],decls:8,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxFlex","100",4,"ngFor","ngForOf"],["fxFlex","100"],["class","flat-expansion-panel help-expansion mb-2px",4,"ngIf"],[1,"flat-expansion-panel","help-expansion","mb-2px"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start"],[1,"pre-wrap",3,"innerHTML"],[1,"mt-2",3,"routerLink"]],template:function(U,G){1&U&&(t.j41(0,"div",0)(1,"div",1),t.nrm(2,"fa-icon",2),t.j41(3,"span",3),t.EFF(4,"Help"),t.k0s()(),t.j41(5,"div",4)(6,"div",0),t.DNE(7,Af,2,1,"div",5),t.k0s()()()),2&U&&(t.R7$(2),t.Y8G("icon",G.faQuestion),t.R7$(5),t.Y8G("ngForOf",G.helpTopics))},dependencies:[ri.Sq,ri.bT,ya.aY,$i.DJ,$i.sA,$i.UI,Ra.GK,Ra.Z2,Ra.WN,Ra.Q6,En.Wk],styles:[".mat-mdc-card-content[_ngcontent-%COMP%]{margin-bottom:4px}"]})}return O})();var rd=g(4572);function bh(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Token is required."),t.k0s())}let L2=(()=>{class O{constructor(b,U){this.dialogRef=b,this.store=U,this.token=""}onClose(){this.dialogRef.close(null)}onVerifyToken(){if(!this.token)return!0;this.dialogRef.close(),this.store.dispatch((0,Cn.R$)({payload:{twoFAToken:this.token}}))}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Sn.CP),t.rXU(Ri.il))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-login-token"]],decls:19,vars:2,consts:[["tokenForm","ngForm"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","row",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100",3,"ngSubmit"],["autoFocus","","matInput","","type","text","id","token","name","token","tabindex","2","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","4","type","submit"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),t.EFF(5,"Two Factor Token"),t.k0s()(),t.j41(6,"button",6),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onClose())}),t.EFF(7,"X"),t.k0s()(),t.j41(8,"mat-card-content",7)(9,"form",8,0),t.bIt("ngSubmit",function(){return t.eBV(Oe),t.Njj(G.onVerifyToken())}),t.j41(11,"mat-form-field")(12,"mat-label"),t.EFF(13,"Token"),t.k0s(),t.j41(14,"input",9),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.token,Lt)||(G.token=Lt),t.Njj(Lt)}),t.k0s(),t.DNE(15,bh,2,0,"mat-error",10),t.k0s(),t.j41(16,"div",11)(17,"button",12),t.EFF(18,"Verify Token"),t.k0s()()()()()()}2&U&&(t.R7$(14),t.R50("ngModel",G.token),t.R7$(),t.Y8G("ngIf",!G.token))},dependencies:[ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,$i.DJ,$i.sA,$i.UI,ve.$z,mr.m2,mr.MM,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Ot.N]})}return O})();const kf=O=>({"padding-gap-large":O}),g1=(O,H)=>({"font-size-200":O,"font-size-300":H});function u4(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Password is required."),t.k0s())}function wd(O,H){if(1&O&&(t.j41(0,"p",21)(1,"mat-icon",22),t.EFF(2,"close"),t.k0s(),t.EFF(3),t.k0s()),2&O){const b=t.XpG();t.R7$(3),t.SpI(" ",b.loginErrorMessage," ")}}function Lf(O,H){if(1&O&&(t.j41(0,"p",23)(1,"mat-icon",22),t.EFF(2,"close"),t.k0s(),t.EFF(3),t.k0s()),2&O){const b=t.XpG();t.R7$(3),t.SpI(" ",b.logoutReason," ")}}let _1=(()=>{class O{constructor(b,U,G,Oe,It){this.actions=b,this.logger=U,this.store=G,this.rtlEffects=Oe,this.commonService=It,this.faUnlockAlt=nn.HEq,this.logoutReason="",this.password="",this.rtlSSO=0,this.rtlCookiePath="",this.accessKey="",this.flgShow=!1,this.screenSize="",this.screenSizeEnum=Wt.f7,this.loginErrorMessage="",this.apiCallStatusEnum=Wt.wn,this.unSubs=[new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),(0,rd.z)([this.store.select(Gr.Kq),this.store.select(Gr.E2)]).pipe((0,dn.Q)(this.unSubs[0])).subscribe(([b,U])=>{this.loginErrorMessage="",b.status===Wt.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof b.message?JSON.stringify(b.message):b.message),this.logger.error(b.message)),U.status===Wt.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof U.message?JSON.stringify(U.message):U.message),this.logger.error(U.message))}),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.appConfig=b,this.logger.info(b)}),this.actions.pipe((0,vr.p)(b=>b.type===Wt.aU.LOGOUT),(0,$s.s)(1)).subscribe(b=>{this.logoutReason=b.payload})}onLogin(){if(!this.password)return!0;this.loginErrorMessage="",this.logoutReason="",this.appConfig.enable2FA?(this.store.dispatch((0,Cn.xO)({payload:{maxWidth:"35rem",data:{component:L2}}})),this.rtlEffects.closeAlert.pipe((0,$s.s)(1)).subscribe(b=>{b&&this.store.dispatch((0,Cn.iD)({payload:{password:on(this.password),defaultPassword:Wt.Ah.includes(this.password.toLowerCase()),twoFAToken:b.twoFAToken}}))})):this.store.dispatch((0,Cn.iD)({payload:{password:on(this.password),defaultPassword:Wt.Ah.includes(this.password.toLowerCase())}}))}resetData(){this.password="",this.loginErrorMessage="",this.logoutReason="",this.flgShow=!1}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(lt.En),t.rXU(Yo.gP),t.rXU(Ri.il),t.rXU(_r.H),t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-login"]],decls:29,vars:14,consts:[["loginForm","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"login-container"],["fxLayout","row","fxFlex.gt-sm","35","fxLayoutAlign","center center"],["fxLayout","row","fxFlex","45","fxLayoutAlign","center stretch"],["fxLayout","column","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxFlex","35","fxLayoutAlign","center center",1,"bg-primary"],["alt","RTL Logo","src","assets/images/RTL-Horse-BY.svg",1,"rtl-logo-svg"],["fxFlex","65","fxLayout","column","fxLayoutAlign","center stretch",3,"ngClass"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","mt-2","p-0"],[1,"font-bold-500",3,"ngClass"],[1,"page-title"],[1,"pb-2"],["fxLayout","column","fxLayoutAlign","start space-between"],["autoFocus","","matInput","","id","password","name","password","tabindex","1","required","",3,"ngModelChange","type","ngModel"],["mat-icon-button","","matSuffix","","tabindex","2","type","button",3,"click"],[4,"ngIf"],["class","color-warn pre-wrap","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","color-warn pre-wrap","fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1","mb-2",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn","pre-wrap"],["fxLayoutAlign","center center",1,"mr-3px","icon-small"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"color-warn","pre-wrap"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",1)(1,"div",2)(2,"mat-card",3)(3,"div",4)(4,"div",5),t.nrm(5,"img",6),t.k0s(),t.j41(6,"div",7)(7,"mat-card-header",8)(8,"mat-card-title",9)(9,"span",10),t.EFF(10,"Welcome"),t.k0s()()(),t.j41(11,"mat-card-content",11)(12,"form",12,0)(14,"mat-form-field")(15,"mat-label"),t.EFF(16,"Password"),t.k0s(),t.j41(17,"input",13),t.mxI("ngModelChange",function(Lt){return t.eBV(Oe),t.DH7(G.password,Lt)||(G.password=Lt),t.Njj(Lt)}),t.k0s(),t.j41(18,"button",14),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.flgShow=!G.flgShow)}),t.j41(19,"mat-icon"),t.EFF(20),t.k0s()(),t.DNE(21,u4,2,0,"mat-error",15),t.k0s(),t.DNE(22,wd,4,1,"p",16)(23,Lf,4,1,"p",17),t.j41(24,"div",18)(25,"button",19),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.resetData())}),t.EFF(26,"Clear"),t.k0s(),t.j41(27,"button",20),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onLogin())}),t.EFF(28,"Login"),t.k0s()()()()()()()()()}2&U&&(t.R7$(6),t.Y8G("ngClass",t.eq3(9,kf,G.screenSize===G.screenSizeEnum.XS)),t.R7$(2),t.Y8G("ngClass",t.l_i(11,g1,G.screenSize===G.screenSizeEnum.XS,G.screenSize!==G.screenSizeEnum.XS)),t.R7$(9),t.Y8G("type",G.flgShow?"text":"password"),t.R50("ngModel",G.password),t.R7$(),t.BMQ("aria-label","Hide password"),t.R7$(2),t.JRh(G.flgShow?"visibility_off":"visibility"),t.R7$(),t.Y8G("ngIf",!G.password),t.R7$(),t.Y8G("ngIf",""!==G.loginErrorMessage),t.R7$(),t.Y8G("ngIf",""!==G.logoutReason))},dependencies:[ri.YU,ri.bT,Wi.qT,Wi.me,Wi.BC,Wi.cb,Wi.YS,Wi.vS,Wi.cV,$i.DJ,$i.sA,$i.UI,ds.PW,ve.$z,ve.iY,mr.RN,mr.m2,mr.MM,mr.dh,Vc.An,Nr.fg,Pe.rl,Pe.nJ,Pe.TL,Pe.yw,Ot.N],styles:[".login-container[_ngcontent-%COMP%]{height:60vh;margin-top:15%}.login-container[_ngcontent-%COMP%] .mat-mdc-card[_ngcontent-%COMP%]{height:30rem}.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:100%}@media only screen and (max-width: 56.25em){.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:37%}}@media only screen and (max-width: 37.5em){.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:70%}}.login-container[_ngcontent-%COMP%] .material-icons.mat-icon[_ngcontent-%COMP%]{font-size:90%;cursor:pointer}"]})}return O})();var I2=g(13);let R2=(()=>{class O{constructor(b,U){this.activatedRoute=b,this.router=U,this.error={errorCode:"",errorMessage:""},this.faTimes=nn.GRI,this.unsubs=[new Gi.B,new Gi.B]}ngOnInit(){this.activatedRoute.paramMap.pipe((0,dn.Q)(this.unsubs[0])).subscribe(b=>{this.error=window.history.state})}goToHelp(){this.router.navigate(["/help"])}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(En.nX),t.rXU(En.Ix))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-error"]],decls:13,vars:3,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","center center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start center"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","padding-gap-large"],[1,"font-size-300","font-bold-500"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-large"],[1,"box-text","font-size-120"],["fxLayout","row","fxLayoutAlign","center","fxFlex","80"],["mat-flat-button","","color","primary","type","button",1,"mt-2",3,"click"]],template:function(U,G){1&U&&(t.j41(0,"div",0)(1,"mat-card",1)(2,"mat-card-header",2)(3,"mat-card-title",3),t.nrm(4,"fa-icon",4),t.j41(5,"span",5),t.EFF(6),t.k0s()()(),t.j41(7,"mat-card-content",6)(8,"div",7),t.EFF(9),t.k0s(),t.j41(10,"span",8)(11,"button",9),t.bIt("click",function(){return G.goToHelp()}),t.EFF(12,"Go To Help"),t.k0s()()()()()),2&U&&(t.R7$(4),t.Y8G("icon",G.faTimes),t.R7$(2),t.SpI("Error ",G.error.errorCode,""),t.R7$(3),t.JRh(G.error.errorMessage))},dependencies:[ya.aY,$i.DJ,$i.sA,$i.UI,ve.$z,mr.RN,mr.m2,mr.MM,mr.dh],encapsulation:2})}return O})();var No=g(7186),O2=g(1534),F2=g(92),N2=g(6114);const Md=(O,H)=>({"alert-danger":O,"alert-info":H});function yh(O,H){1&O&&t.nrm(0,"span",17)}function Ed(O,H){1&O&&t.nrm(0,"span",18)}function xh(O,H){if(1&O){const b=t.RV6();t.j41(0,"form",19,0)(2,"div",20),t.nrm(3,"fa-icon",4),t.j41(4,"span"),t.EFF(5,"Please ensure that "),t.j41(6,"strong"),t.EFF(7,"experimental-offers"),t.k0s(),t.EFF(8," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),t.j41(9,"strong")(10,"a",21),t.EFF(11,"here"),t.k0s()(),t.EFF(12," to learn more about Core Lightning offers."),t.k0s()(),t.j41(13,"h4",22),t.EFF(14,"Description"),t.k0s(),t.j41(15,"span"),t.EFF(16,"Offers is a draft specification (also referred as BOLT12) for Lightning nodes and wallets, with experimental support in Core Lightning."),t.k0s(),t.j41(17,"h4",22),t.EFF(18,"Links"),t.k0s(),t.j41(19,"span")(20,"a",23),t.EFF(21,"Core lightning Bolt12"),t.k0s()(),t.nrm(22,"mat-divider",24),t.j41(23,"div",25),t.nrm(24,"fa-icon",4),t.j41(25,"span"),t.EFF(26,"Do not get an Offer tattoo until spec is fully ratified!"),t.k0s()(),t.j41(27,"mat-slide-toggle",26),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(2);return t.DH7(Oe.enableOffers,G)||(Oe.enableOffers=G),t.Njj(G)}),t.bIt("change",function(){t.eBV(b);const G=t.XpG(2);return t.Njj(G.onUpdateFeature())}),t.EFF(28),t.k0s()()}if(2&O){const b=t.XpG(2);t.R7$(3),t.Y8G("icon",b.faInfoCircle),t.R7$(19),t.Y8G("inset",!0),t.R7$(2),t.Y8G("icon",b.faExclamationTriangle),t.R7$(3),t.R50("ngModel",b.enableOffers),t.R7$(),t.SpI("Enable Offers ",b.enableOffers?"(You can find Offers under Lightning -> Transactions -> Offers)":"","")}}function P2(O,H){if(1&O&&(t.j41(0,"div")(1,"div",29),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"Please ensure that "),t.j41(5,"strong"),t.EFF(6,"experimental-dual-fund"),t.k0s(),t.EFF(7," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),t.j41(8,"strong")(9,"a",30),t.EFF(10,"here"),t.k0s()(),t.EFF(11," to learn more about Core Lightning Liquidity Ads."),t.k0s()()()),2&O){const b=t.XpG(3);t.R7$(2),t.Y8G("icon",b.faExclamationTriangle)}}function Ch(O,H){if(1&O&&(t.j41(0,"mat-option",47),t.EFF(1),t.nI1(2,"titlecase"),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b),t.R7$(),t.SpI(" ",t.bMT(2,2,b.id)," ")}}function wh(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(4);t.R7$(),t.SpI("",b.selPolicyType.placeholder," is required.")}}function Sd(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(4);t.R7$(),t.Lme("",b.selPolicyType.placeholder," must be greater than or equal to ",b.selPolicyType.min,".")}}function V2(O,H){if(1&O&&(t.j41(0,"mat-error"),t.EFF(1),t.k0s()),2&O){const b=t.XpG(4);t.R7$(),t.Lme("",b.selPolicyType.placeholder," must be less than or equal to ",b.selPolicyType.max,".")}}function gl(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Lease base fee is required."),t.k0s())}function If(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Lease base basis is required."),t.k0s())}function Mh(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Max channel routing base fee is required."),t.k0s())}function f4(O,H){1&O&&(t.j41(0,"mat-error"),t.EFF(1,"Max channel routing fee rate is required."),t.k0s())}function v1(O,H){if(1&O&&(t.j41(0,"h4",48)(1,"span",49),t.EFF(2),t.k0s()()),2&O){const b=t.XpG(4);t.R7$(),t.Y8G("ngClass",t.l_i(2,Md,!!b.updateMsg.error,!!b.updateMsg.data)),t.R7$(),t.SpI(" ",b.updateMsg.error&&""!==b.updateMsg.error?"Error: "+b.updateMsg.error||0:b.updateMsg.data&&""!==b.updateMsg.data?b.updateMsg.data:"Successfully Updated the Funding Policy!"," ")}}function H2(O,H){if(1&O){const b=t.RV6();t.j41(0,"div",31)(1,"div",32),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"These config changes should be configured permanently via the config file on your CLN node otherwise the policy would need to be configured again, if your node restarts."),t.k0s()(),t.j41(5,"div",33)(6,"mat-form-field",34)(7,"mat-label"),t.EFF(8,"Policy"),t.k0s(),t.j41(9,"mat-select",35),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.selPolicyType,G)||(Oe.selPolicyType=G),t.Njj(G)}),t.bIt("selectionChange",function(){t.eBV(b);const G=t.XpG(3);return t.Njj(G.policyMod=null)}),t.DNE(10,Ch,3,4,"mat-option",36),t.k0s()(),t.j41(11,"mat-form-field",37)(12,"mat-label"),t.EFF(13),t.k0s(),t.j41(14,"input",38,1),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.policyMod,G)||(Oe.policyMod=G),t.Njj(G)}),t.k0s(),t.j41(16,"mat-hint"),t.EFF(17),t.k0s(),t.DNE(18,wh,2,1,"mat-error",27)(19,Sd,2,2,"mat-error",27)(20,V2,2,2,"mat-error",27),t.k0s()(),t.j41(21,"div",33)(22,"mat-form-field",37)(23,"mat-label"),t.EFF(24,"Lease Base Fee (Sats)"),t.k0s(),t.j41(25,"input",39),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.lease_fee_base_sat,G)||(Oe.lease_fee_base_sat=G),t.Njj(G)}),t.k0s(),t.DNE(26,gl,2,0,"mat-error",27),t.k0s(),t.j41(27,"mat-form-field",37)(28,"mat-label"),t.EFF(29,"Lease Base Basis (bps)"),t.k0s(),t.j41(30,"input",40),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.lease_fee_basis,G)||(Oe.lease_fee_basis=G),t.Njj(G)}),t.k0s(),t.DNE(31,If,2,0,"mat-error",27),t.k0s()(),t.j41(32,"div",33)(33,"mat-form-field",37)(34,"mat-label"),t.EFF(35,"Max Channel Routing Base Fee (Sats)"),t.k0s(),t.j41(36,"input",41),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.channelFeeMaxBaseSat,G)||(Oe.channelFeeMaxBaseSat=G),t.Njj(G)}),t.k0s(),t.DNE(37,Mh,2,0,"mat-error",27),t.k0s(),t.j41(38,"mat-form-field",37)(39,"mat-label"),t.EFF(40,"Max Channel Routing Fee Rate (ppm)"),t.k0s(),t.j41(41,"input",42),t.mxI("ngModelChange",function(G){t.eBV(b);const Oe=t.XpG(3);return t.DH7(Oe.channelFeeMaxProportional,G)||(Oe.channelFeeMaxProportional=G),t.Njj(G)}),t.k0s(),t.DNE(42,f4,2,0,"mat-error",27),t.k0s()(),t.DNE(43,v1,3,5,"h4",43),t.j41(44,"div",44)(45,"button",45),t.bIt("click",function(){t.eBV(b);const G=t.XpG(3);return t.Njj(G.onResetPolicy())}),t.EFF(46,"Reset"),t.k0s(),t.j41(47,"button",46),t.bIt("click",function(){t.eBV(b);const G=t.XpG(3);return t.Njj(G.onUpdateFundingPolicy())}),t.EFF(48,"Update"),t.k0s()()()}if(2&O){const b=t.XpG(3);t.R7$(2),t.Y8G("icon",b.faExclamationTriangle),t.R7$(7),t.R50("ngModel",b.selPolicyType),t.R7$(),t.Y8G("ngForOf",b.policyTypes),t.R7$(3),t.JRh(b.selPolicyType.placeholder),t.R7$(),t.Y8G("step","fixed"===b.selPolicyType.id?1e3:10)("min",b.selPolicyType.min)("max",b.selPolicyType.max),t.R50("ngModel",b.policyMod),t.R7$(3),t.E5c("",b.selPolicyType.placeholder," should be between ",b.selPolicyType.min," and ",b.selPolicyType.max,""),t.R7$(),t.Y8G("ngIf",!b.policyMod),t.R7$(),t.Y8G("ngIf",b.policyModb.selPolicyType.max),t.R7$(5),t.R50("ngModel",b.lease_fee_base_sat),t.R7$(),t.Y8G("ngIf",!b.lease_fee_base_sat),t.R7$(4),t.R50("ngModel",b.lease_fee_basis),t.R7$(),t.Y8G("ngIf",!b.lease_fee_basis),t.R7$(5),t.R50("ngModel",b.channelFeeMaxBaseSat),t.R7$(),t.Y8G("ngIf",!b.channelFeeMaxBaseSat),t.R7$(4),t.R50("ngModel",b.channelFeeMaxProportional),t.R7$(),t.Y8G("ngIf",!b.channelFeeMaxProportional),t.R7$(),t.Y8G("ngIf",b.flgUpdateCalled)}}function Eh(O,H){if(1&O&&(t.j41(0,"form",19,0),t.DNE(2,P2,12,1,"div",27)(3,H2,49,23,"div",28),t.k0s()),2&O){const b=t.XpG(2);t.R7$(2),t.Y8G("ngIf",!b.features[1].enabled),t.R7$(),t.Y8G("ngIf",b.features[1].enabled)}}function Sh(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-expansion-panel",10),t.bIt("opened",function(){const G=t.eBV(b).index,Oe=t.XpG();return t.Njj(Oe.onPanelExpanded(G))}),t.j41(1,"mat-expansion-panel-header")(2,"mat-panel-title",11)(3,"h4",12),t.EFF(4),t.k0s(),t.j41(5,"h4",12),t.DNE(6,yh,1,0,"span",13)(7,Ed,1,0,"span",14),t.EFF(8),t.k0s()()(),t.j41(9,"div",15),t.DNE(10,xh,29,5,"form",16)(11,Eh,4,2,"form",16),t.k0s()()}if(2&O){const b=H.$implicit,U=H.index;t.Y8G("expanded",!1),t.R7$(4),t.JRh(b.name),t.R7$(2),t.Y8G("ngIf",b.enabled),t.R7$(),t.Y8G("ngIf",!b.enabled),t.R7$(),t.SpI(" ",b.enabled?"Enabled":"Disabled"," "),t.R7$(2),t.Y8G("ngIf",0===U),t.R7$(),t.Y8G("ngIf",1===U)}}let Th=(()=>{class O{constructor(b,U,G,Oe){this.logger=b,this.store=U,this.dataService=G,this.commonService=Oe,this.faInfoCircle=nn.iW_,this.faExclamationTriangle=nn.zpE,this.faCode=nn.jTw,this.features=[{name:"Offers",enabled:!1},{name:"Channel Funding Policy",enabled:!1}],this.enableOffers=!1,this.fundingPolicy={},this.policyTypes=Wt.ul,this.selPolicyType=Wt.ul[0],this.flgUpdateCalled=!1,this.updateMsg={},this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.dataService.listConfigs().pipe((0,dn.Q)(this.unSubs[0])).subscribe({next:b=>{this.logger.info("Received List Configs: "+JSON.stringify(b)),this.features[1].enabled=!!b["experimental-dual-fund"]},error:b=>{this.logger.error("List Configs Error: "+JSON.stringify(b)),this.features[1].enabled=!1}}),this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.selNode=b,this.enableOffers=this.selNode.settings.enableOffers||!1,this.features[0].enabled=this.enableOffers,this.logger.info(this.selNode)}),this.store.select(dd.Al).pipe((0,dn.Q)(this.unSubs[2])).subscribe(b=>{this.policyTypes[2].max=b.balance.totalBalance||1e3})}onPanelExpanded(b){1===b&&!this.fundingPolicy.policy&&this.dataService.getOrUpdateFunderPolicy().pipe((0,dn.Q)(this.unSubs[3])).subscribe(U=>{this.logger.info("Received Funder Update Policy: "+JSON.stringify(U)),this.fundingPolicy=U,this.fundingPolicy.policy&&(this.selPolicyType=Wt.ul.find(G=>G.id===this.fundingPolicy.policy)||this.policyTypes[0]),this.policyMod=this.fundingPolicy.policy_mod||0===this.fundingPolicy.policy_mod?this.fundingPolicy.policy_mod:null,this.lease_fee_base_sat=this.fundingPolicy.lease_fee_base_msat?this.fundingPolicy.lease_fee_base_msat/1e3:0===this.fundingPolicy.lease_fee_base_msat?0:null,this.lease_fee_basis=this.fundingPolicy.lease_fee_basis||0===this.fundingPolicy.lease_fee_basis?this.fundingPolicy.lease_fee_basis:null,this.channelFeeMaxBaseSat=this.fundingPolicy.channel_fee_max_base_msat?this.fundingPolicy.channel_fee_max_base_msat/1e3:0===this.fundingPolicy.channel_fee_max_base_msat?0:null,this.channelFeeMaxProportional=this.fundingPolicy.channel_fee_max_proportional_thousandths||0===this.fundingPolicy.channel_fee_max_proportional_thousandths?1e3*this.fundingPolicy.channel_fee_max_proportional_thousandths:null})}onUpdateFeature(){this.logger.info(this.selNode),this.selNode.settings.enableOffers=this.enableOffers,this.features[0].enabled=this.enableOffers,this.store.dispatch((0,Cn.T$)({payload:this.selNode}))}onUpdateFundingPolicy(){this.flgUpdateCalled=!0,this.updateMsg={},this.dataService.getOrUpdateFunderPolicy(this.selPolicyType.id,this.policyMod,1e3*(this.lease_fee_base_sat||0),this.lease_fee_basis,1e3*(this.channelFeeMaxBaseSat||0),this.channelFeeMaxProportional?this.channelFeeMaxProportional/1e3:0).pipe((0,dn.Q)(this.unSubs[4])).subscribe({next:b=>{this.logger.info(b),this.fundingPolicy=b,this.updateMsg={data:"Compact Lease: "+b.compact_lease},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)},error:b=>{this.logger.error(b),this.updateMsg={error:this.commonService.extractErrorMessage(b,"Error in updating funder policy")},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)}})}onResetPolicy(){this.flgUpdateCalled=!1,this.updateMsg={},this.selPolicyType=this.fundingPolicy.policy?Wt.ul.find(b=>b.id===this.fundingPolicy.policy)||this.policyTypes[0]:Wt.ul[0],this.policyMod=this.fundingPolicy.policy_mod||0===this.fundingPolicy.policy_mod?this.fundingPolicy.policy_mod:null,this.lease_fee_base_sat=this.fundingPolicy.lease_fee_base_msat?this.fundingPolicy.lease_fee_base_msat/1e3:0===this.fundingPolicy.lease_fee_base_msat?0:null,this.lease_fee_basis=this.fundingPolicy.lease_fee_basis||0===this.fundingPolicy.lease_fee_basis?this.fundingPolicy.lease_fee_basis:null,this.channelFeeMaxBaseSat=this.fundingPolicy.channel_fee_max_base_msat?this.fundingPolicy.channel_fee_max_base_msat/1e3:0===this.fundingPolicy.channel_fee_max_base_msat?0:null,this.channelFeeMaxProportional=this.fundingPolicy.channel_fee_max_proportional_thousandths||0===this.fundingPolicy.channel_fee_max_proportional_thousandths?1e3*this.fundingPolicy.channel_fee_max_proportional_thousandths:null}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ri.il),t.rXU(O2.u),t.rXU(Ia.h))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-experimental-settings"]],decls:13,vars:3,consts:[["form","ngForm"],["plcMod","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["class","flat-expansion-panel my-1",3,"expanded","opened",4,"ngFor","ngForOf"],[1,"flat-expansion-panel","my-1",3,"opened","expanded"],["fxFlex","100","fxLayoutAlign","space-between center"],[1,"font-bold-500"],["class","dot green",4,"ngIf"],["class","dot yellow",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],[1,"dot","green"],[1,"dot","yellow"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-info"],["href","http://bolt12.org","target","_blank"],[1,"mt-2"],["href","https://github.com/lightningnetwork/lightning-rfc/pull/798 ","target","blank"],[1,"my-2",3,"inset"],[1,"alert","alert-warn"],["autoFocus","","tabindex","1","color","primary","name","enableOfr",1,"my-1",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","column",4,"ngIf"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn"],["href","https://medium.com/blockstream/setting-up-liquidity-ads-in-c-lightning-54e4c59c091d","target","_blank"],["fxLayout","column"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn","mb-2"],["fxLayout","column","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start end"],["autofocus","","tabindex","1","name","policy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","49"],["matInput","","type","number","tabindex","2","required","","name","plcMod",3,"ngModelChange","step","min","max","ngModel"],["matInput","","type","number","step","100","min","0","tabindex","3","required","","name","lease_fee_base_sat",3,"ngModelChange","ngModel"],["matInput","","type","number","step","1","min","0","tabindex","4","required","","name","lease_fee_basis",3,"ngModelChange","ngModel"],["matInput","","type","number","step","100","min","0","tabindex","5","required","","name","channelFeeMaxBaseSat",3,"ngModelChange","ngModel"],["matInput","","type","number","step","1000","min","0","tabindex","6","required","","name","channelFeeMaxProportional",3,"ngModelChange","ngModel"],["fxLayoutAlign","start stretch","class","font-bold-500 mt-2",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","7",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],[3,"value"],["fxLayoutAlign","start stretch",1,"font-bold-500","mt-2"],["fxFlex","100",1,"alert",3,"ngClass"]],template:function(U,G){1&U&&(t.j41(0,"div",2)(1,"div",3),t.nrm(2,"fa-icon",4),t.j41(3,"span"),t.EFF(4,"Experimental features should be enabled with caution. Many such features may be implementation specific and not ratified for the BOLT spec. Enabling these may still result in a broken experience. Referencing relevant feature documentation is highly advised before enabling."),t.k0s()(),t.j41(5,"form",5,0)(7,"div",6),t.nrm(8,"fa-icon",7),t.j41(9,"span",8),t.EFF(10,"Features"),t.k0s()(),t.j41(11,"mat-accordion"),t.DNE(12,Sh,12,7,"mat-expansion-panel",9),t.k0s()()()),2&U&&(t.R7$(2),t.Y8G("icon",G.faInfoCircle),t.R7$(6),t.Y8G("icon",G.faCode),t.R7$(4),t.Y8G("ngForOf",G.features))},dependencies:[ri.YU,ri.Sq,ri.bT,Wi.qT,Wi.me,Wi.Q0,Wi.BC,Wi.cb,Wi.YS,Wi.VZ,Wi.zX,Wi.vS,Wi.cV,ya.aY,$i.DJ,$i.sA,$i.UI,ds.PW,ve.$z,Ra.BS,Ra.GK,Ra.Z2,Ra.WN,Nr.fg,Pe.rl,Pe.nJ,Pe.MV,Pe.TL,Pc.q,xe.VO,Be.wT,e2.sG,ft.Ld,Ot.N,F2.z,N2.V,ri.PV],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]})}return O})(),_l=(()=>{class O{constructor(){}static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-no-service-found"]],decls:6,vars:0,consts:[["fxLayout","column",1,"padding-gap-x"],["fxLayout","column",1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","start start"],[1,"box-text"]],template:function(U,G){1&U&&(t.j41(0,"div",0)(1,"mat-card")(2,"mat-card-content",1)(3,"div",2)(4,"div",3),t.EFF(5,"No Service Found!"),t.k0s()()()()())},dependencies:[$i.DJ,$i.sA,mr.RN,mr.m2],encapsulation:2})}return O})();const b1=[{path:"",pathMatch:"full",redirectTo:"login"},{path:"lnd",loadChildren:()=>Promise.all([g.e(193),g.e(190)]).then(g.bind(g,9190)).then(O=>O.LNDModule),canActivate:[(0,No.q_)()]},{path:"cln",loadChildren:()=>Promise.all([g.e(193),g.e(853)]).then(g.bind(g,4853)).then(O=>O.CLNModule),canActivate:[(0,No.q_)()]},{path:"ecl",loadChildren:()=>Promise.all([g.e(193),g.e(17)]).then(g.bind(g,9017)).then(O=>O.ECLModule),canActivate:[(0,No.q_)()]},{path:"settings",component:b0,canActivate:[(0,No.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"app"},{path:"app",component:vi,canActivate:[(0,No.q_)()]},{path:"auth",component:Bd,canActivate:[(0,No.q_)()]},{path:"bconfig",component:Uu,canActivate:[(0,No.q_)()]}]},{path:"config",component:Z3,canActivate:[(0,No.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"nodesettings"},{path:"nodesettings",component:Mc,canActivate:[(0,No.q_)()]},{path:"pglayout",component:Ec,canActivate:[(0,No.q_)()]},{path:"services",component:o2,canActivate:[(0,No.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",component:zc,canActivate:[(0,No.q_)()]},{path:"boltz",component:Ju,canActivate:[(0,No.q_)()]},{path:"noservice",component:_l}]},{path:"experimental",component:Th,canActivate:[(0,No.q_)()]},{path:"lnconfig",component:Bl,canActivate:[(0,No.q_)()]}]},{path:"services",component:qu,canActivate:[(0,No.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",pathMatch:"full",redirectTo:"loop/loopout"},{path:"loop/:selTab",component:B0},{path:"boltz",pathMatch:"full",redirectTo:"boltz/swapout"},{path:"boltz/:selTab",component:gh}]},{path:"help",component:vh},{path:"login",component:_1},{path:"error",component:R2},{path:"**",component:I2.X}],Rf=En.iI.forRoot(b1,{onSameUrlNavigation:"reload",scrollPositionRestoration:"enabled"});var Of=g(9029),Ff=g(9881),Nf=g(9183),Ws=g(882),Xc=g(5911),z2=g(4109),nc=g(7358);const Yc={LNDChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:nn.xiI,link:"/lnd/home",userPersona:Wt.HW.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:nn.CQO,link:"/lnd/onchain",userPersona:Wt.HW.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:nn.zm_,link:"/lnd/connections",userPersona:Wt.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:nn.gdJ,link:"/lnd/connections",userPersona:Wt.HW.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:nn._qq,link:"/lnd/transactions",userPersona:Wt.HW.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:nn.knH,link:"/lnd/routing",userPersona:Wt.HW.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:nn.$Fj,link:"/lnd/reports",userPersona:Wt.HW.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:nn.MjD,link:"/lnd/graph",userPersona:Wt.HW.ALL},{id:36,parentId:3,name:"Sign/Verify",iconType:"FA",icon:nn.pCJ,link:"/lnd/messages",userPersona:Wt.HW.ALL},{id:37,parentId:3,name:"Backup",iconType:"FA",icon:nn.cbP,link:"/lnd/channelbackup",userPersona:Wt.HW.ALL},{id:38,parentId:3,name:"Network",iconType:"FA",icon:nn.qFF,link:"/lnd/network",userPersona:Wt.HW.OPERATOR},{id:39,parentId:3,name:"Node/Network",iconType:"FA",icon:nn.D6w,link:"/lnd/network",userPersona:Wt.HW.MERCHANT}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:nn.qIE,link:"/services/loop",userPersona:Wt.HW.ALL,children:[{id:41,parentId:4,name:"Loop",iconType:"FA",icon:nn.C8j,link:"/services/loop",userPersona:Wt.HW.ALL},{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:Wt.HW.ALL}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:nn.nsx,link:"/config",userPersona:Wt.HW.ALL},{id:6,parentId:0,name:"Help",iconType:"FA",icon:nn.EvL,link:"/help",userPersona:Wt.HW.ALL}],CLNChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:nn.xiI,link:"/cln/home",userPersona:Wt.HW.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:nn.CQO,link:"/cln/onchain",userPersona:Wt.HW.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:nn.zm_,link:"/cln/connections",userPersona:Wt.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:nn.gdJ,link:"/cln/connections",userPersona:Wt.HW.ALL},{id:32,parentId:3,name:"Liquidity Ads",iconType:"FA",icon:nn.e4L,link:"/cln/liquidityads",userPersona:Wt.HW.ALL},{id:33,parentId:3,name:"Transactions",iconType:"FA",icon:nn._qq,link:"/cln/transactions",userPersona:Wt.HW.ALL},{id:34,parentId:3,name:"Routing",iconType:"FA",icon:nn.knH,link:"/cln/routing",userPersona:Wt.HW.ALL},{id:35,parentId:3,name:"Reports",iconType:"FA",icon:nn.$Fj,link:"/cln/reports",userPersona:Wt.HW.ALL},{id:36,parentId:3,name:"Graph Lookup",iconType:"FA",icon:nn.MjD,link:"/cln/graph",userPersona:Wt.HW.ALL},{id:37,parentId:3,name:"Sign/Verify",iconType:"FA",icon:nn.pCJ,link:"/cln/messages",userPersona:Wt.HW.ALL},{id:38,parentId:3,name:"Fee Rates",iconType:"FA",icon:nn.WKo,link:"/cln/rates",userPersona:Wt.HW.OPERATOR},{id:39,parentId:3,name:"Node/Fee Rates",iconType:"FA",icon:nn.D6w,link:"/cln/rates",userPersona:Wt.HW.MERCHANT}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:nn.qIE,link:"/services/loop",userPersona:Wt.HW.ALL,children:[{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:Wt.HW.ALL}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:nn.nsx,link:"/config",userPersona:Wt.HW.ALL},{id:6,parentId:0,name:"Help",iconType:"FA",icon:nn.EvL,link:"/help",userPersona:Wt.HW.ALL}],ECLChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:nn.xiI,link:"/ecl/home",userPersona:Wt.HW.ALL},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:nn.CQO,link:"/ecl/onchain",userPersona:Wt.HW.ALL},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:nn.zm_,link:"/ecl/connections",userPersona:Wt.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:nn.gdJ,link:"/ecl/connections",userPersona:Wt.HW.ALL},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:nn._qq,link:"/ecl/transactions",userPersona:Wt.HW.ALL},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:nn.knH,link:"/ecl/routing",userPersona:Wt.HW.ALL},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:nn.$Fj,link:"/ecl/reports",userPersona:Wt.HW.ALL},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:nn.MjD,link:"/ecl/graph",userPersona:Wt.HW.ALL}]},{id:4,parentId:0,name:"Node Config",iconType:"FA",icon:nn.nsx,link:"/config",userPersona:Wt.HW.ALL},{id:5,parentId:0,name:"Help",iconType:"FA",icon:nn.EvL,link:"/help",userPersona:Wt.HW.ALL}]};function Dh(O,H){if(1&O&&(t.j41(0,"mat-option",12),t.EFF(1),t.k0s()),2&O){const b=H.$implicit;t.Y8G("value",b.index),t.R7$(),t.Lme(" ",b.lnNode," (",b.lnImplementation,") ")}}function Ah(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-select",10),t.bIt("selectionChange",function(G){t.eBV(b);const Oe=t.XpG();return t.Njj(Oe.onNodeSelectionChange(G.value))}),t.j41(1,"perfect-scrollbar"),t.DNE(2,Dh,2,3,"mat-option",11),t.k0s()()}if(2&O){const b=t.XpG();t.Y8G("value",b.selConfigNodeIndex),t.R7$(2),t.Y8G("ngForOf",b.appConfig.nodes)}}function kh(O,H){if(1&O&&(t.j41(0,"span",21),t.eu8(1,22),t.k0s()),2&O){const b=t.XpG().$implicit;t.XpG(2);const U=t.sdS(11);t.R7$(),t.Y8G("ngTemplateOutlet","boltzIconBlock"===b.icon?U:null)}}function Lh(O,H){if(1&O&&t.nrm(0,"fa-icon",23),2&O){const b=t.XpG().$implicit;t.Y8G("icon",b.icon)}}function Vf(O,H){if(1&O&&(t.j41(0,"mat-icon",24),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b.icon)}}function Ih(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-tree-node",15)(1,"div",16),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG(2);return t.Njj(Oe.onChildNavClicked(G))}),t.j41(2,"div",17),t.DNE(3,kh,2,1,"span",18)(4,Lh,1,1,"fa-icon",19)(5,Vf,2,1,"mat-icon",20),t.j41(6,"span"),t.EFF(7),t.k0s()()()()}if(2&O){const b=H.$implicit;t.FS9("routerLink",b.link),t.R7$(3),t.Y8G("ngIf","SVG"===b.iconType),t.R7$(),t.Y8G("ngIf","FA"===b.iconType),t.R7$(),t.Y8G("ngIf",!b.iconType),t.R7$(2),t.JRh(b.name)}}function y1(O,H){if(1&O&&(t.j41(0,"span",32),t.eu8(1,22),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("ngTemplateOutlet",b.icon)}}function kc(O,H){if(1&O&&t.nrm(0,"fa-icon",23),2&O){const b=t.XpG().$implicit;t.Y8G("icon",b.icon)}}function Td(O,H){if(1&O&&(t.j41(0,"mat-icon",24),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.JRh(b.icon)}}function Rh(O,H){if(1&O&&(t.j41(0,"mat-nested-tree-node",25)(1,"div",26)(2,"div",27),t.DNE(3,y1,2,1,"span",28)(4,kc,1,1,"fa-icon",19)(5,Td,2,1,"mat-icon",20),t.j41(6,"span"),t.EFF(7),t.k0s()(),t.j41(8,"button",29)(9,"mat-icon"),t.EFF(10),t.k0s()()(),t.j41(11,"div",30),t.eu8(12,31),t.k0s()()),2&O){const b=H.$implicit,U=t.XpG(2);t.R7$(3),t.Y8G("ngIf","SVG"===b.iconType),t.R7$(),t.Y8G("ngIf","FA"===b.iconType),t.R7$(),t.Y8G("ngIf",!b.iconType),t.R7$(2),t.JRh(b.name),t.R7$(),t.BMQ("aria-label","toggle "+b.name),t.R7$(2),t.JRh(U.treeControlNested.isExpanded(b)?"arrow_drop_up":"arrow_drop_down"),t.R7$(),t.AVh("tree-children-invisible",!U.treeControlNested.isExpanded(b))}}function x1(O,H){if(1&O&&(t.j41(0,"mat-tree",7,1),t.DNE(2,Ih,8,5,"mat-tree-node",13)(3,Rh,13,8,"mat-nested-tree-node",14),t.k0s()),2&O){const b=t.XpG();t.Y8G("dataSource",b.navMenus)("treeControl",b.treeControlNested),t.R7$(3),t.Y8G("matTreeNodeDefWhen",b.hasChild)}}function Oh(O,H){if(1&O&&(t.j41(0,"span",37),t.eu8(1,22),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("ngTemplateOutlet",b.icon)}}function p4(O,H){if(1&O&&t.nrm(0,"fa-icon",38),2&O){const b=t.XpG().$implicit;t.FS9("matTooltip",b.name),t.Y8G("icon",b.icon)}}function Fh(O,H){if(1&O&&(t.j41(0,"mat-icon",39),t.EFF(1),t.k0s()),2&O){const b=t.XpG().$implicit;t.FS9("matTooltip",b.name),t.R7$(),t.JRh(b.icon)}}function g4(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-tree-node",33),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG();return t.Njj(Oe.onShowData(G))}),t.DNE(1,Oh,2,1,"span",34)(2,p4,1,2,"fa-icon",35)(3,Fh,2,2,"mat-icon",36),t.j41(4,"span"),t.EFF(5),t.k0s()()}if(2&O){const b=H.$implicit;t.R7$(),t.Y8G("ngIf","SVG"===b.iconType),t.R7$(),t.Y8G("ngIf","FA"===b.iconType),t.R7$(),t.Y8G("ngIf",!b.iconType),t.R7$(2),t.JRh(b.name)}}function B2(O,H){if(1&O&&(t.j41(0,"span",32),t.eu8(1,22),t.k0s()),2&O){const b=t.XpG().$implicit;t.R7$(),t.Y8G("ngTemplateOutlet",b.icon)}}function U2(O,H){if(1&O&&t.nrm(0,"fa-icon",38),2&O){const b=t.XpG().$implicit;t.FS9("matTooltip",b.name),t.Y8G("icon",b.icon)}}function Hf(O,H){if(1&O){const b=t.RV6();t.j41(0,"mat-tree-node",33),t.bIt("click",function(){const G=t.eBV(b).$implicit,Oe=t.XpG(2);return t.Njj(Oe.onClick(G))}),t.DNE(1,B2,2,1,"span",28)(2,U2,1,2,"fa-icon",35),t.j41(3,"span"),t.EFF(4),t.k0s()()}if(2&O){const b=H.$implicit;t.R7$(),t.Y8G("ngIf","SVG"===b.iconType),t.R7$(),t.Y8G("ngIf","FA"===b.iconType),t.R7$(2),t.JRh(b.name)}}function _4(O,H){if(1&O&&(t.j41(0,"mat-tree",7),t.DNE(1,Hf,5,3,"mat-tree-node",8),t.k0s()),2&O){const b=t.XpG();t.Y8G("dataSource",b.navMenusLogout)("treeControl",b.treeControlLogout)}}function Nh(O,H){1&O&&(t.qSk(),t.j41(0,"svg",40)(1,"g",41)(2,"g",42),t.nrm(3,"circle",43)(4,"path",44)(5,"path",45),t.k0s()()())}let v4=(()=>{class O{constructor(b,U,G,Oe,It,Lt){this.logger=b,this.commonService=U,this.sessionService=G,this.store=Oe,this.actions=It,this.rtlEffects=Lt,this.ChildNavClicked=new t.bkB,this.faEject=nn.njF,this.faEye=nn.pS3,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.logoutNode=[{id:200,parentId:0,name:"Logout",iconType:"FA",icon:nn.njF}],this.showDataNodes=[{id:1e3,parentId:0,name:"Public Key",iconType:"FA",icon:nn.pS3}],this.showLogout=!1,this.numPendingChannels=0,this.smallScreen=!1,this.childRootRoute="",this.userPersonaEnum=Wt.HW,this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B],this.treeControlNested=new z2.XO(oi=>oi.children),this.treeControlLogout=new z2.XO(oi=>oi.children),this.treeControlShowData=new z2.XO(oi=>oi.children),this.navMenus=new nc.Zh,this.navMenusLogout=new nc.Zh,this.navMenusShowData=new nc.Zh,this.hasChild=(oi,ci)=>!!ci.children&&ci.children.length>0,this.version=Wt.xv,Yc.LNDChildren&&200===Yc.LNDChildren[Yc.LNDChildren.length-1].id&&Yc.LNDChildren.pop(),this.navMenus.data=Yc.LNDChildren||[],this.navMenusLogout.data=this.logoutNode,this.navMenusShowData.data=this.showDataNodes}ngOnInit(){const b=this.sessionService.getItem("token");this.showLogout=!!b,this.flgLoading=!!b,this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[0])).subscribe(U=>{this.appConfig=U}),this.store.select(Gr.Az).pipe((0,dn.Q)(this.unSubs[1])).subscribe(U=>{if(this.information=U.nodeDate,this.information.identity_pubkey){if(this.information.chains&&"string"==typeof this.information.chains[0])this.informationChain.chain=this.information.chains[0].toString(),this.informationChain.network=this.information.testnet?"Testnet":"Mainnet";else if(this.information&&this.information.chains&&this.information.chains.length&&this.information.chains.length>0&&"object"==typeof this.information.chains[0]&&this.information.chains[0].hasOwnProperty("chain")){const G=this.information.chains[0];this.informationChain.chain=G.chain,this.informationChain.network=G.network}}else this.informationChain.chain="",this.informationChain.network="";this.flgLoading=!this.information.identity_pubkey,window.innerWidth<=414&&(this.smallScreen=!0),this.selNode=U.selNode,this.selConfigNodeIndex=+(U.selNode?.index||0),this.selNode&&this.selNode.lnImplementation&&this.filterSideMenuNodes(),this.logger.info(U)}),this.sessionService.watchSession().pipe((0,dn.Q)(this.unSubs[2])).subscribe(U=>{this.showLogout=!!U.token,this.flgLoading=!!U.token}),this.actions.pipe((0,dn.Q)(this.unSubs[3]),(0,vr.p)(U=>U.type===Wt.aU.LOGOUT)).subscribe(U=>{this.showLogout=!1})}onClick(b){"Logout"===b.name&&(this.store.dispatch((0,Cn.I1)({payload:{data:{type:Wt.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,dn.Q)(this.unSubs[4])).subscribe(U=>{U&&(this.showLogout=!1,this.store.dispatch((0,Cn.ri)({payload:""})))})),this.ChildNavClicked.emit(b)}onChildNavClicked(b){this.ChildNavClicked.emit(b)}filterSideMenuNodes(){switch(this.selNode?.lnImplementation?.toUpperCase()){case"CLN":this.loadCLNMenu();break;case"ECL":this.loadECLMenu();break;default:this.loadLNDMenu()}}loadLNDMenu(){let b=[];b=JSON.parse(JSON.stringify(Yc.LNDChildren)),this.navMenus.data=b?.filter(U=>U.children&&U.children.length?(U.children=U.children?.filter(G=>(G.userPersona===Wt.HW.ALL||G.userPersona===this.selNode.settings.userPersona)&&"/services/loop"!==G.link&&"/services/boltz"!==G.link||"/services/loop"===G.link&&this.selNode.settings.swapServerUrl&&""!==this.selNode.settings.swapServerUrl.trim()||"/services/boltz"===G.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim()),U.children.length>0):U.userPersona===Wt.HW.ALL||U.userPersona===this.selNode.settings.userPersona)}loadCLNMenu(){let b=[];b=JSON.parse(JSON.stringify(Yc.CLNChildren)),this.navMenus.data=b?.filter(U=>U.children&&U.children.length?(U.children=U.children?.filter(G=>(G.userPersona===Wt.HW.ALL||G.userPersona===this.selNode.settings.userPersona)&&"/services/peerswap"!==G.link||"/services/peerswap"===G.link&&this.selNode.settings.enablePeerswap||"/services/boltz"===G.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim()),U.children.length>0):U.userPersona===Wt.HW.ALL||U.userPersona===this.selNode.settings.userPersona)}loadECLMenu(){this.navMenus.data=JSON.parse(JSON.stringify(Yc.ECLChildren))}onShowData(b){this.store.dispatch((0,Cn.OP)()),this.ChildNavClicked.emit("showData")}onNodeSelectionChange(b){const U=this.selConfigNodeIndex;this.selConfigNodeIndex=b;const G=this.appConfig.nodes.find(Oe=>+Oe.index===b);this.store.dispatch((0,Cn.Qi)({payload:{uiMessage:Wt.MZ.UPDATE_SELECTED_NODE,prevLnNodeIndex:+U,currentLnNode:G||null,isInitialSetup:!1}})),this.ChildNavClicked.emit("selectNode")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(qa.Q),t.rXU(Ri.il),t.rXU(lt.En),t.rXU(_r.H))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-side-navigation"]],viewQuery:function(U,G){if(1&U&&t.GBs(nc.lQ,5),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.tree=Oe.first)}},outputs:{ChildNavClicked:"ChildNavClicked"},decls:12,vars:5,consts:[["boltzIconBlock",""],["tree",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","90","fxLayoutAlign","start stretch",1,"w-100"],["class","m-2 multi-node-select",3,"value","selectionChange",4,"ngIf"],[1,"w-100"],[3,"dataSource","treeControl",4,"ngIf"],[3,"dataSource","treeControl"],[3,"click",4,"matTreeNodeDef"],["fxLayout","column","fxLayoutAlign","end stretch",1,"w-100"],[1,"m-2","multi-node-select",3,"selectionChange","value"],["tabindex","1",3,"value",4,"ngFor","ngForOf"],["tabindex","1",3,"value"],["matTreeNodeToggle","","routerLinkActive","active-link",3,"routerLink",4,"matTreeNodeDef"],["fxLayout","column","matTreeNodeToggle","",4,"matTreeNodeDef","matTreeNodeDefWhen"],["matTreeNodeToggle","","routerLinkActive","active-link",3,"routerLink"],["tabindex","2",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["class","fa-icon-small mr-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","fa-icon-small mr-2",3,"icon",4,"ngIf"],["class","mat-icon-36",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"fa-icon-small","mr-2"],[3,"ngTemplateOutlet"],[1,"fa-icon-small","mr-2",3,"icon"],[1,"mat-icon-36"],["fxLayout","column","matTreeNodeToggle",""],["fxLayout","row","fxLayoutAlign","start center",1,"mat-nested-tree-node-parent"],["fxFlex","80","fxLayoutAlign","start center"],["class","mr-2",4,"ngIf"],["fxFlex","20","mat-icon-button","","fxLayoutAlign","end center",1,"btn-icon-small"],[1,"mat-nested-tree-node-child"],["matTreeNodeOutlet",""],[1,"mr-2"],[3,"click"],["class","fa-icon-small mr-2",4,"ngIf"],["class","fa-icon-small mr-2","matTooltipPosition","right",3,"icon","matTooltip",4,"ngIf"],["class","mat-icon-36","matTooltipPosition","right",3,"matTooltip",4,"ngIf"],[1,"fa-icon-small","mr-2"],["matTooltipPosition","right",1,"fa-icon-small","mr-2",3,"icon","matTooltip"],["matTooltipPosition","right",1,"mat-icon-36",3,"matTooltip"],["viewBox","0 0 78 78","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Logo","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Oval","cx","39","cy","39","r","37.5",1,"boltz-icon"],["d","M36.4583326,43.7755404 L40.53965,35.2316544 L39.4324865,35.2316544 L46.0754873,17.6071752 C46.292579,17.0204094 46.3287609,16.5159331 46.1840331,16.0937464 C46.0393053,15.671561 45.7860319,15.3674444 45.4242131,15.1813966 C45.0623942,14.9953487 44.6535376,14.9524146 44.1976433,15.0525945 C43.7417511,15.1527743 43.3256596,15.4461573 42.9493689,15.9327433 L22.6078557,40.7701025 C22.2026186,41.2710003 22,41.7575877 22,42.2298646 C22,42.6735173 22.1592003,43.0420366 22.477601,43.3354226 C22.7960017,43.6288058 23.1940025,43.7755404 23.6716036,43.7755404 L36.4583326,43.7755404 Z","id","Path",1,"boltz-icon-fill"],["d","M44.4883879,63.7755404 L48.8604707,55.165009 L47.6744296,55.165009 L54.7906978,37.4030526 C55.0232558,36.8117097 55.0620155,36.3032983 54.9069768,35.8778185 C54.7519381,35.4523399 54.4806208,35.1458511 54.0930248,34.958352 C53.7054289,34.7708528 53.2674441,34.7275839 52.7790706,34.8285452 C52.2906992,34.9295065 51.8449641,35.2251779 51.4418653,35.7155595 L29.6511611,60.746659 C29.2170537,61.251464 29,61.7418469 29,62.2178078 C29,62.6649211 29.1705423,63.036315 29.5116268,63.3319895 C29.8527113,63.6276613 30.2790669,63.7755404 30.7906936,63.7755404 L44.4883879,63.7755404 Z","id","Path-Copy","transform","translate(42.000000, 49.275540) rotate(-180.000000) translate(-42.000000, -49.275540) ",1,"boltz-icon-fill"]],template:function(U,G){1&U&&(t.j41(0,"div",2)(1,"div",3),t.DNE(2,Ah,3,2,"mat-select",4),t.nrm(3,"mat-divider",5),t.DNE(4,x1,4,3,"mat-tree",6),t.nrm(5,"mat-divider",5),t.j41(6,"mat-tree",7),t.DNE(7,g4,6,4,"mat-tree-node",8),t.k0s()(),t.j41(8,"div",9),t.DNE(9,_4,2,2,"mat-tree",6),t.k0s()(),t.DNE(10,Nh,6,0,"ng-template",null,0,t.C5r)),2&U&&(t.R7$(2),t.Y8G("ngIf",G.appConfig.nodes.length>1),t.R7$(2),t.Y8G("ngIf",null==G.selNode.settings?null:G.selNode.settings.lnServerUrl),t.R7$(2),t.Y8G("dataSource",G.navMenusShowData)("treeControl",G.treeControlShowData),t.R7$(3),t.Y8G("ngIf",G.showLogout))},dependencies:[ri.Sq,ri.bT,ri.T3,ya.aY,$i.DJ,$i.sA,$i.UI,ve.iY,Vc.An,Pc.q,nc.q1,nc.yI,nc.pO,nc.lQ,nc.d6,nc.wx,xe.VO,Be.wT,ic.oV,En.Wk,En.wQ,ft.ZF,ft.Ld],styles:[".tree-children-invisible[_ngcontent-%COMP%]{display:none}"]})}return O})();var Dd=g(9115);function b4(O,H){if(1&O&&(t.j41(0,"p",14),t.nrm(1,"fa-icon",3),t.j41(2,"span"),t.EFF(3),t.k0s()()),2&O){const b=t.XpG();t.R7$(),t.Y8G("icon",b.faCode),t.R7$(2),t.SpI("API Version: ",null==b.information?null:b.information.api_version,"")}}function vl(O,H){if(1&O&&(t.j41(0,"p",15),t.nrm(1,"fa-icon",3),t.j41(2,"span",16),t.EFF(3,"Settings"),t.k0s()()),2&O){const b=t.XpG();t.R7$(),t.Y8G("icon",b.faUserCog)}}function y4(O,H){if(1&O&&(t.j41(0,"p",17),t.nrm(1,"fa-icon",3),t.j41(2,"span",18),t.EFF(3,"Help"),t.k0s()()),2&O){const b=t.XpG();t.R7$(),t.Y8G("icon",b.faQuestion)}}function zf(O,H){if(1&O){const b=t.RV6();t.j41(0,"p",19),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.onClick())}),t.nrm(1,"fa-icon",3),t.j41(2,"span"),t.EFF(3,"Logout"),t.k0s()()}if(2&O){const b=t.XpG();t.R7$(),t.Y8G("icon",b.faEject)}}let Ph=(()=>{class O{constructor(b,U,G,Oe,It){this.logger=b,this.sessionService=U,this.store=G,this.rtlEffects=Oe,this.actions=It,this.faUserCog=nn.McB,this.faCodeBranch=nn.Xbc,this.faCode=nn.jTw,this.faCog=nn.dB,this.faQuestion=nn.EvL,this.faEject=nn.njF,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.showLogout=!1,this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B],this.version=Wt.xv}ngOnInit(){this.store.select(Gr.N).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{if(this.information=b,this.flgLoading=!this.information.identity_pubkey,this.information.identity_pubkey){if(this.information.chains&&"string"==typeof this.information.chains[0])this.informationChain.chain=this.information.chains[0].toString(),this.informationChain.network=this.information.testnet?"Testnet":"Mainnet";else if(this.information&&this.information.chains&&this.information.chains.length&&this.information.chains.length>0&&"object"==typeof this.information.chains[0]&&this.information.chains[0].hasOwnProperty("chain")){const U=this.information.chains[0];this.informationChain.chain=U.chain,this.informationChain.network=U.network}}else this.informationChain.chain="",this.informationChain.network="";this.logger.info(b)}),this.sessionService.watchSession().pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.showLogout=!!b.token,this.flgLoading=!!b.token}),this.actions.pipe((0,dn.Q)(this.unSubs[2]),(0,vr.p)(b=>b.type===Wt.aU.LOGOUT)).subscribe(()=>{this.showLogout=!1})}onClick(){this.store.dispatch((0,Cn.I1)({payload:{data:{type:Wt.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,dn.Q)(this.unSubs[3])).subscribe(b=>{b&&(this.showLogout=!1,this.store.dispatch((0,Cn.ri)({payload:""})))})}onDonate(){window.open("https://www.ridethelightning.info/donate/","_blank")}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(null),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(qa.Q),t.rXU(Ri.il),t.rXU(_r.H),t.rXU(lt.En))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-top-menu"]],decls:20,vars:8,consts:[["topMenu","matMenu"],[1,"top-menu",3,"overlapTrigger"],["tabindex","1","mat-menu-item","",1,"cursor-default"],[1,"fa-icon-small","mr-1",3,"icon"],["tabindex","2","mat-menu-item","","class","cursor-default",4,"ngIf"],["tabindex","3","mat-menu-item","","routerLink","/settings",4,"ngIf"],["tabindex","4","mat-menu-item","","routerLink","/help",4,"ngIf"],["mat-menu-item","","tabindex","5","fxLayoutAlign","start center",3,"click"],["fill","currentColor","version","1.1","viewBox","0 0 64 64",0,"xml","space","preserve","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",1,"svg-donation"],["d","M62.519,17.698l-12-14c-0.659-0.768-1.786-0.923-2.628-0.362l-8.712,5.808l-16.688,4.172 c-2.485,0.622-4.537,2.412-5.487,4.791L12.21,30.09C10.206,32.512,9,35.618,9,39c0,2.974,0.939,5.73,2.527,8H5 c-2.206,0-4,1.794-4,4v6c0,2.206,1.794,4,4,4h36c2.206,0,4-1.794,4-4v-6c0-2.206-1.794-4-4-4h-6.522 c0.375-0.535,0.713-1.1,1.013-1.691l4.291-2.452l3.378-0.965c2.619-0.749,4.903-2.269,6.604-4.395 c1.39-1.736,2.317-3.813,2.682-6.006l0.412-2.472l9.48-8.532C63.145,19.76,63.225,18.523,62.519,17.698z M34.428,30.929 c-1.487-2.094-3.517-3.732-5.842-4.75L29.207,25h7.058l0.588,4.11L34.428,30.929z M31.225,33.331l-0.373,0.28 c-1.772,1.329-2.889,3.273-3.146,5.473c-0.257,2.2,0.382,4.348,1.8,6.048l0.667,0.8C28.315,47.845,25.742,49,23,49 c-5.514,0-10-4.486-10-10s4.486-10,10-10C26.299,29,29.376,30.663,31.225,33.331z M41,57H5v-6h10.826c2.101,1.261,4.55,2,7.174,2 c2.571,0,5.041-0.723,7.176-2H41V57z M49.662,26.513c-0.336,0.303-0.561,0.711-0.635,1.158L48.5,30.833 c-0.253,1.521-0.896,2.96-1.86,4.165c-1.18,1.475-2.763,2.529-4.579,3.048l-3.61,1.031c-0.155,0.044-0.303,0.106-0.443,0.187 l-5.541,3.166c-0.63-0.826-0.909-1.843-0.788-2.882c0.128-1.1,0.687-2.072,1.573-2.737l6.001-4.5 c1.169-0.877,1.767-2.32,1.56-3.766l-0.587-4.11C39.946,22.477,38.244,21,36.266,21h-7.059c-1.489,0-2.845,0.818-3.539,2.136 l-1.037,1.969C24.093,25.041,23.549,25,23,25c-1.685,0-3.294,0.314-4.791,0.862l2.509-6.271c0.476-1.189,1.501-2.084,2.743-2.395 l17.024-4.256c0.223-0.056,0.434-0.149,0.625-0.276l7.525-5.017l9.576,11.172L49.662,26.513z"],["tabindex","6","mat-menu-item","",3,"click",4,"ngIf"],["tabindex","7","mat-icon-button","",3,"matMenuTriggerFor"],["alt","RTL Logo","src","assets/images/RTL-Horse-BY.svg",1,"rtl-log-top"],[1,"rtl-logo-dropdown","color-white"],["tabindex","2","mat-menu-item","",1,"cursor-default"],["tabindex","3","mat-menu-item","","routerLink","/settings"],["routerLink","/settings"],["tabindex","4","mat-menu-item","","routerLink","/help"],["routerLink","/help"],["tabindex","6","mat-menu-item","",3,"click"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"mat-menu",1,0)(2,"p",2),t.nrm(3,"fa-icon",3),t.j41(4,"span"),t.EFF(5),t.k0s()(),t.DNE(6,b4,4,2,"p",4)(7,vl,4,1,"p",5)(8,y4,4,1,"p",6),t.j41(9,"p",7),t.bIt("click",function(){return t.eBV(Oe),t.Njj(G.onDonate())}),t.qSk(),t.j41(10,"svg",8)(11,"g"),t.nrm(12,"path",9),t.k0s()(),t.joV(),t.j41(13,"span"),t.EFF(14,"Donate"),t.k0s()(),t.DNE(15,zf,4,1,"p",10),t.k0s(),t.j41(16,"button",11),t.nrm(17,"img",12),t.j41(18,"mat-icon",13),t.EFF(19,"arrow_drop_down"),t.k0s()()}if(2&U){const Oe=t.sdS(1);t.Y8G("overlapTrigger",!1),t.R7$(3),t.Y8G("icon",G.faCodeBranch),t.R7$(2),t.SpI("Version: ",G.version,""),t.R7$(),t.Y8G("ngIf",null==G.information?null:G.information.api_version),t.R7$(),t.Y8G("ngIf",G.showLogout),t.R7$(),t.Y8G("ngIf",G.showLogout),t.R7$(7),t.Y8G("ngIf",G.showLogout),t.R7$(),t.Y8G("matMenuTriggerFor",Oe)}},dependencies:[ri.bT,ya.aY,$i.sA,ve.iY,Vc.An,Dd.kk,Dd.fb,Dd.Cp,En.Wk],styles:[".mat-mdc-icon-button img.rtl-log-top{width:2rem;height:2rem}.mat-icon.material-icons.mat-icon-no-color.rtl-logo-dropdown{height:2rem}\n"],encapsulation:2})}return O})();const Bf=["sideNavigation"],x4=["sideNavContent"],Vh=(O,H)=>[O,H];function G2(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",15),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.sideNavToggle())}),t.j41(1,"mat-icon",16),t.EFF(2,"menu"),t.k0s()()}if(2&O){const b=t.XpG();t.Y8G("matTooltip",b.flgSideNavOpened?"Hide Navigation Menu":"Show Navigation Menu")("matTooltipDisabled",b.smallScreen)}}function j2(O,H){1&O&&(t.qSk(),t.nrm(0,"path",21))}function Hh(O,H){1&O&&(t.qSk(),t.nrm(0,"path",22))}function C4(O,H){if(1&O){const b=t.RV6();t.j41(0,"button",17),t.bIt("click",function(){t.eBV(b);const G=t.XpG();return t.Njj(G.flgSidenavPinned=!G.flgSidenavPinned)}),t.qSk(),t.j41(1,"svg",18),t.DNE(2,j2,1,0,"path",19)(3,Hh,1,0,"path",20),t.k0s()()}if(2&O){const b=t.XpG();t.Y8G("matTooltip",b.flgSidenavPinned?"Unpin Navigation Menu":"Pin Navigation Menu"),t.R7$(2),t.Y8G("ngIf",!b.flgSidenavPinned),t.R7$(),t.Y8G("ngIf",b.flgSidenavPinned)}}function Kc(O,H){if(1&O&&(t.j41(0,"span",23),t.EFF(1),t.k0s()),2&O){const b=t.XpG();t.R7$(),t.JRh(b.information.alias?"RTL - "+b.information.alias:"RTL")}}function Uf(O,H){if(1&O&&(t.j41(0,"span",24),t.EFF(1),t.k0s()),2&O){const b=t.XpG();t.R7$(),t.JRh(b.information.alias?"Ride The Lightning - "+b.information.alias:"Ride The Lightning")}}function zh(O,H){1&O&&(t.j41(0,"div",25),t.nrm(1,"mat-spinner",26),t.j41(2,"h4"),t.EFF(3,"Loading RTL..."),t.k0s()())}let Gf=(()=>{class O{constructor(b,U,G,Oe,It,Lt,oi,ci,Ui){this.logger=b,this.commonService=U,this.store=G,this.actions=Oe,this.userIdle=It,this.router=Lt,this.sessionService=oi,this.breakpointObserver=ci,this.renderer=Ui,this.information={},this.flgLoading=[!0],this.flgSideNavOpened=!0,this.flgCopied=!1,this.accessKey="",this.xSmallScreen=!1,this.smallScreen=!1,this.flgSidenavPinned=!0,this.flgLoggedIn=!1,this.unSubs=[new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B,new Gi.B]}ngOnInit(){this.router.events.subscribe(b=>{b instanceof En.wF&&document.getElementsByTagName("mat-sidenav-content")[0].scrollTo(0,0)}),this.breakpointObserver.observe([oa.Rp.XSmall,oa.Rp.TabletPortrait,oa.Rp.Small,oa.Rp.Medium,oa.Rp.Large,oa.Rp.XLarge]).pipe((0,dn.Q)(this.unSubs[0])).subscribe(b=>{b.breakpoints[oa.Rp.XSmall]?(this.commonService.setScreenSize(Wt.f7.XS),this.smallScreen=!0):b.breakpoints[oa.Rp.TabletPortrait]?(this.commonService.setScreenSize(Wt.f7.SM),this.smallScreen=!0):b.breakpoints[oa.Rp.Small]||b.breakpoints[oa.Rp.Medium]?(this.commonService.setScreenSize(Wt.f7.MD),this.smallScreen=!1):b.breakpoints[oa.Rp.Large]?(this.commonService.setScreenSize(Wt.f7.LG),this.smallScreen=!1):(this.commonService.setScreenSize(Wt.f7.XL),this.smallScreen=!1)}),this.store.dispatch((0,Cn.NU)()),this.accessKey=this.readAccessKey()||"",this.store.select(Gr._c).pipe((0,dn.Q)(this.unSubs[1])).subscribe(b=>{this.sessionService.getItem("token")?(this.flgLoggedIn=!0,this.userIdle.startWatching()):(this.flgLoggedIn=!1,this.flgLoading[0]=!1),this.selNode=b}),this.store.select(Gr.qv).pipe((0,dn.Q)(this.unSubs[2])).subscribe(b=>{this.appConfig=b}),this.store.select(Gr.N).pipe((0,dn.Q)(this.unSubs[3])).subscribe(b=>{this.information=b,this.flgLoading[0]=!this.information.identity_pubkey,this.logger.info(this.information)}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1),this.actions.pipe((0,dn.Q)(this.unSubs[4]),(0,vr.p)(b=>b.type===Wt.aU.FETCH_APPLICATION_SETTINGS||b.type===Wt.aU.LOGIN||b.type===Wt.aU.LOGOUT)).subscribe(b=>{b.type===Wt.aU.SET_APPLICATION_SETTINGS&&(this.sessionService.getItem("token")||(+b.payload.SSO.rtlSSO?!this.accessKey||this.accessKey.trim().length<32?this.router.navigate(["./error"],{state:{errorCode:"406",errorMessage:"Access key too short. It should be at least 32 characters long."}}):this.store.dispatch((0,Cn.iD)({payload:{password:on(this.accessKey).toString(),defaultPassword:!1}})):this.router.navigate(["./login"],{state:{logoutReason:"Access key too short. It should be at least 32 characters long."}}))),b.type===Wt.aU.LOGIN&&(this.flgLoggedIn=!0,this.userIdle.startWatching(),this.userIdle.resetTimer(),setTimeout(()=>{this.commonService.setContainerSize(this.sideNavContent.elementRef.nativeElement.clientWidth,this.sideNavContent.elementRef.nativeElement.clientHeight)},1e3)),b.type===Wt.aU.LOGOUT&&(this.flgLoggedIn=!1,this.userIdle.stopWatching(),this.userIdle.stopTimer())}),this.userIdle.onTimerStart().pipe((0,dn.Q)(this.unSubs[5])).subscribe(b=>{this.logger.info("Counting Down: "+(11-b))}),this.userIdle.onTimeout().pipe((0,dn.Q)(this.unSubs[6])).subscribe(()=>{this.logger.info("Time Out!"),this.sessionService.getItem("token")&&(this.flgLoggedIn=!1,this.logger.warn("Time limit exceeded for session inactivity."),this.store.dispatch((0,Cn.Jh)()),this.store.dispatch((0,Cn.xO)({payload:{data:{type:Wt.A$.WARNING,alertTitle:"Logging out",titleMessage:"Time limit exceeded for session inactivity."}}})),this.store.dispatch((0,Cn.ri)({payload:"Logging Out. Time limit exceeded for session inactivity."})))}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1)}readAccessKey(){const b=window.location.href;return b.includes("access-key=")?b.substring(b.lastIndexOf("access-key=")+11).trim():null}ngAfterViewInit(){(this.smallScreen||!this.flgLoggedIn)&&this.sideNavigation.close(),this.commonService.setContainerSize(this.sideNavContent.elementRef.nativeElement.clientWidth,this.sideNavContent.elementRef.nativeElement.clientHeight)}sideNavToggle(){this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.toggle()}onNavigationClicked(b){this.smallScreen&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}backdropClicked(){(!this.flgSidenavPinned||this.smallScreen)&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}copiedText(b){this.flgCopied=!0,setTimeout(()=>{this.flgCopied=!1},5e3),this.logger.info("Copied Text: "+b)}ngOnDestroy(){this.unSubs.forEach(b=>{b.next(),b.complete()})}static#e=this.\u0275fac=function(U){return new(U||O)(t.rXU(Yo.gP),t.rXU(Ia.h),t.rXU(Ri.il),t.rXU(lt.En),t.rXU(Vs),t.rXU(En.Ix),t.rXU(qa.Q),t.rXU(oa.QP),t.rXU(t.sFG))};static#t=this.\u0275cmp=t.VBU({type:O,selectors:[["rtl-app"]],viewQuery:function(U,G){if(1&U&&(t.GBs(Bf,5),t.GBs(x4,5)),2&U){let Oe;t.mGM(Oe=t.lsd())&&(G.sideNavigation=Oe.first),t.mGM(Oe=t.lsd())&&(G.sideNavContent=Oe.first)}},decls:22,vars:15,consts:[["sideNavigation",""],["sideNavContent",""],["outlet","outlet"],["fxLayout","column","id","rtl-container",1,"rtl-container","medium",3,"ngClass"],["fxLayout","row","fxLayoutAlign","space-between center",1,"bg-primary","rtl-top-toolbar"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","matTooltipDisabled","click",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","click",4,"ngIf"],["class","font-weight-500",4,"ngIf"],["class","font-size-120 font-weight-500",4,"ngIf"],[3,"backdropClick"],[1,"sidenav","mat-elevation-z6",3,"perfectScrollbar","opened","mode"],["fxFlex","100",3,"ChildNavClicked"],[3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["class","rtl-spinner",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",3,"click","matTooltip","matTooltipDisabled"],[1,"color-white"],["mat-icon-button","","matTooltipPosition","right",3,"click","matTooltip"],["width","20","height","20","viewBox","0 0 24 24",1,"icon-pinned"],["fill","currentColor","d","M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z",4,"ngIf"],["fill","currentColor","d","M2,5.27L3.28,4L20,20.72L18.73,22L12.8,16.07V22H11.2V16H6V14L8,12V11.27L2,5.27M16,12L18,14V16H17.82L8,6.18V4H7V2H17V4H16V12Z",4,"ngIf"],["fill","currentColor","d","M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z"],["fill","currentColor","d","M2,5.27L3.28,4L20,20.72L18.73,22L12.8,16.07V22H11.2V16H6V14L8,12V11.27L2,5.27M16,12L18,14V16H17.82L8,6.18V4H7V2H17V4H16V12Z"],[1,"font-weight-500"],[1,"font-size-120","font-weight-500"],[1,"rtl-spinner"],["color","accent"]],template:function(U,G){if(1&U){const Oe=t.RV6();t.j41(0,"div",3),t.nI1(1,"lowercase"),t.nI1(2,"lowercase"),t.j41(3,"mat-toolbar",4)(4,"div"),t.DNE(5,G2,3,2,"button",5)(6,C4,4,3,"button",6),t.k0s(),t.j41(7,"div"),t.DNE(8,Kc,2,1,"span",7)(9,Uf,2,1,"span",8),t.k0s(),t.j41(10,"div"),t.nrm(11,"rtl-top-menu"),t.k0s()(),t.j41(12,"mat-sidenav-container",9),t.bIt("backdropClick",function(){return t.eBV(Oe),t.Njj(G.backdropClicked())}),t.j41(13,"mat-sidenav",10,0)(15,"rtl-side-navigation",11),t.bIt("ChildNavClicked",function(Lt){return t.eBV(Oe),t.Njj(G.onNavigationClicked(Lt))}),t.k0s()(),t.j41(16,"mat-sidenav-content",12,1)(18,"div",13),t.nrm(19,"router-outlet",null,2),t.k0s()()(),t.DNE(21,zh,4,0,"div",14),t.k0s()}2&U&&(t.Y8G("ngClass",t.l_i(12,Vh,t.bMT(1,8,G.selNode.settings.themeColor),t.bMT(2,10,G.selNode.settings.themeMode))),t.R7$(5),t.Y8G("ngIf",G.flgLoggedIn),t.R7$(),t.Y8G("ngIf",!G.smallScreen&&G.flgLoggedIn),t.R7$(2),t.Y8G("ngIf",G.smallScreen),t.R7$(),t.Y8G("ngIf",!G.smallScreen),t.R7$(4),t.Y8G("opened",G.flgSideNavOpened&&G.flgLoggedIn)("mode",G.flgSidenavPinned&&!G.smallScreen?"side":"over"),t.R7$(8),t.Y8G("ngIf",!G.selNode.settings.themeColor))},dependencies:[ri.YU,ri.bT,$i.DJ,$i.sA,$i.UI,ds.PW,ve.iY,Vc.An,Nf.LG,Ws.LG,Ws.US,Ws.El,Xc.KQ,ic.oV,ft.Ld,v4,Ph,En.n3,ri.GH],styles:[".inline-spinner[_ngcontent-%COMP%]{display:inline-flex!important;top:0!important}"],data:{animation:[Ff.E]}})}return O})(),C1=(()=>{class O{constructor(b){this.sessionService=b}intercept(b,U){if(this.sessionService.getItem("token")){const G=b.clone({headers:b.headers.set("Authorization","Bearer "+this.sessionService.getItem("token")),withCredentials:!0});return U.handle(G)}return U.handle(b)}static#e=this.\u0275fac=function(U){return new(U||O)(t.KVO(qa.Q))};static#t=this.\u0275prov=t.jDH({token:O,factory:O.\u0275fac})}return O})();var w4=g(7879),M4=g(9579),E4=g(283),Bh=g(3017);const Uh={userPersona:Wt.HW.OPERATOR,themeMode:"DAY",themeColor:"PURPLE",channelBackupPath:"",selCurrencyUnit:"USD",unannouncedChannels:!1,fiatConversion:!1,currencyUnits:["Sats","BTC","USD"],bitcoindConfigPath:"",enableOffers:!1,enablePeerswap:!1,logLevel:"ERROR",lnServerUrl:"",swapServerUrl:"",boltzServerUrl:"",currencyUnit:"USD",blockExplorerUrl:"https://mempool.space"},jf={configPath:"",swapMacaroonPath:"",boltzMacaroonPath:""},Gh={apiURL:"",apisCallStatus:{Login:{status:Wt.wn.UN_INITIATED},IsAuthorized:{status:Wt.wn.UN_INITIATED}},selNode:{index:1,lnNode:"Node 1",settings:Uh,authentication:jf,lnImplementation:"LND"},appConfig:{defaultNodeIndex:-1,selectedNodeIndex:-1,SSO:{rtlSSO:0,logoutRedirectLink:""},enable2FA:!1,secret2FA:"",allowPasswordUpdate:!0,nodes:[{settings:Uh,authentication:jf}]},nodeData:{}},Ad=(0,Ri.vy)(Gh,(0,Ri.on)(Cn.Gd,(O,{payload:H})=>{const b=JSON.parse(JSON.stringify(O.apisCallStatus));return H.action&&(b[H.action]={status:H.status,statusCode:H.statusCode,message:H.message,URL:H.URL,filePath:H.filePath}),{...O,apisCallStatus:b}}),(0,Ri.on)(Cn.Tn,(O,{payload:H})=>({...Gh,apisCallStatus:O.apisCallStatus,appConfig:O.appConfig,selNode:H})),(0,Ri.on)(Cn.Np,(O,{payload:H})=>({...O,selNode:H})),(0,Ri.on)(Cn.Fl,(O,{payload:H})=>({...O,nodeData:H})),(0,Ri.on)(Cn.IK,(O,{payload:H})=>({...O,appConfig:H}))),jh={apisCallStatus:{FetchPageSettings:{status:Wt.wn.UN_INITIATED},FetchInfo:{status:Wt.wn.UN_INITIATED},FetchFees:{status:Wt.wn.UN_INITIATED},FetchPeers:{status:Wt.wn.UN_INITIATED},FetchClosedChannels:{status:Wt.wn.UN_INITIATED},FetchPendingChannels:{status:Wt.wn.UN_INITIATED},FetchAllChannels:{status:Wt.wn.UN_INITIATED},FetchBalanceBlockchain:{status:Wt.wn.UN_INITIATED},FetchInvoices:{status:Wt.wn.UN_INITIATED},FetchPayments:{status:Wt.wn.UN_INITIATED},FetchForwardingHistory:{status:Wt.wn.UN_INITIATED},FetchUTXOs:{status:Wt.wn.UN_INITIATED},FetchTransactions:{status:Wt.wn.UN_INITIATED},FetchLightningTransactions:{status:Wt.wn.UN_INITIATED},FetchNetwork:{status:Wt.wn.UN_INITIATED}},pageSettings:Wt.ZC,information:{},peers:[],fees:{channel_fees:[],day_fee_sum:0,week_fee_sum:0,month_fee_sum:0,daily_tx_count:0,weekly_tx_count:0,monthly_tx_count:0,forwarding_events_history:{}},networkInfo:{},blockchainBalance:{total_balance:-1},lightningBalance:{local:-1,remote:-1},channels:[],channelsSummary:{active:{num_channels:0,capacity:0},inactive:{num_channels:0,capacity:0}},closedChannels:[],pendingChannels:{},pendingChannelsSummary:{open:{num_channels:0,limbo_balance:0},closing:{num_channels:0,limbo_balance:0},force_closing:{num_channels:0,limbo_balance:0},waiting_close:{num_channels:0,limbo_balance:0},total_channels:0,total_limbo_balance:0},transactions:[],utxos:[],listPayments:{payments:[]},listInvoices:{invoices:[]},allLightningTransactions:{listPaymentsAll:{payments:[],first_index_offset:"",last_index_offset:""},listInvoicesAll:{invoices:[],total_invoices:0,last_index_offset:"",first_index_offset:""}},forwardingHistory:{last_offset_index:0,total_fee_msat:0,forwarding_events:[]}};let Wh=!1,Xh=!1;const Wf=(0,Ri.vy)(jh,(0,Ri.on)(Pa.e8,(O,{payload:H})=>{const b=JSON.parse(JSON.stringify(O.apisCallStatus));return H.action&&(b[H.action]={status:H.status,statusCode:H.statusCode,message:H.message,URL:H.URL,filePath:H.filePath}),{...O,apisCallStatus:b}}),(0,Ri.on)(Pa.p1,O=>({...jh})),(0,Ri.on)(Pa.x1,(O,{payload:H})=>({...O,information:H})),(0,Ri.on)(Pa.Qj,(O,{payload:H})=>({...O,peers:H})),(0,Ri.on)(Pa.Zi,(O,{payload:H})=>{const b=[...O.peers],U=O.peers.findIndex(G=>G.pub_key===H.pubkey);return U>-1&&b.splice(U,1),{...O,peers:b}}),(0,Ri.on)(Pa.Jx,(O,{payload:H})=>{const b=O.listInvoices;return b.invoices?.unshift(H),{...O,listInvoices:b}}),(0,Ri.on)(Pa.Dq,(O,{payload:H})=>{const b=O.listInvoices;return b.invoices=b.invoices?.map(U=>U.payment_request===H.payment_request?H:U),{...O,listInvoices:b}}),(0,Ri.on)(Pa._$,(O,{payload:H})=>{const b=O.listPayments;return b.payments=b.payments?.map(U=>U.payment_hash===H.payment_hash?H:U),{...O,listPayments:b}}),(0,Ri.on)(Pa.Uo,(O,{payload:H})=>({...O,fees:H})),(0,Ri.on)(Pa.z2,(O,{payload:H})=>({...O,closedChannels:H})),(0,Ri.on)(Pa.cU,(O,{payload:H})=>({...O,pendingChannels:H.pendingChannels,pendingChannelsSummary:H.pendingChannelsSummary})),(0,Ri.on)(Pa.dv,(O,{payload:H})=>{let b=0,U=0,G=0,Oe=0,It=0,Lt=0;return H&&H.forEach(oi=>{oi.local_balance||(oi.local_balance=0),!0===oi.active?(It+=+oi.local_balance,G+=1,oi.local_balance?b=+b+ +oi.local_balance:oi.local_balance=0,oi.remote_balance?U=+U+ +oi.remote_balance:oi.remote_balance=0):(Lt+=+oi.local_balance,Oe+=1)}),{...O,channels:H,channelsSummary:{active:{num_channels:G,capacity:It},inactive:{num_channels:Oe,capacity:Lt}},lightningBalance:{local:b,remote:U}}}),(0,Ri.on)(Pa.cR,(O,{payload:H})=>{const b=[...O.channels],U=O.channels.findIndex(G=>G.channel_point===H.channelPoint);return U>-1&&b.splice(U,1),{...O,channels:b}}),(0,Ri.on)(Pa.DI,(O,{payload:H})=>({...O,blockchainBalance:H})),(0,Ri.on)(Pa.J9,(O,{payload:H})=>({...O,networkInfo:H})),(0,Ri.on)(Pa.$6,(O,{payload:H})=>(H.total_invoices||(H.total_invoices=O.listInvoices.total_invoices),{...O,listInvoices:H})),(0,Ri.on)(Pa.As,(O,{payload:H})=>{if(Wh=!0,H.length&&Xh){const b=[...O.utxos];return b.forEach(U=>{const G=H.find(Oe=>Oe.tx_hash===U.outpoint?.txid_str);U.label=G&&G.label?G.label:""}),{...O,utxos:b,transactions:H}}return{...O,transactions:H}}),(0,Ri.on)(Pa.O8,(O,{payload:H})=>{if(Xh=!0,H.length&&Wh){const b=[...O.transactions];H.forEach(U=>{const G=b.find(Oe=>Oe.tx_hash===U.outpoint?.txid_str);U.label=G&&G.label?G.label:""})}return{...O,utxos:H}}),(0,Ri.on)(Pa.Uj,(O,{payload:H})=>{const b={listInvoicesAll:O.allLightningTransactions.listInvoicesAll,listPaymentsAll:H};return{...O,listPayments:H,allLightningTransactions:b}}),(0,Ri.on)(Pa.b1,(O,{payload:H})=>{const b={listInvoicesAll:H.listInvoicesAll,listPaymentsAll:O.listPayments};return{...O,allLightningTransactions:b}}),(0,Ri.on)(Pa.kv,(O,{payload:H})=>{const b=[...O.channels,...O.closedChannels];let U=H.forwarding_events?JSON.parse(JSON.stringify(H)):{};return U.forwarding_events&&(U=Yh(U,b)),{...O,forwardingHistory:U}}),(0,Ri.on)(Pa.NS,(O,{payload:H})=>{const b=[];return Wt.ZC.forEach(U=>{const G=H&&H.length&&H.length>0?H.find(Oe=>Oe.pageId===U.pageId):null;if(G){const Oe=JSON.parse(JSON.stringify(G.tables));G.tables=[],U.tables.forEach(It=>{const Lt=Oe.find(oi=>oi.tableId===It.tableId)||null;G.tables.push(Lt||JSON.parse(JSON.stringify(It)))}),b.push(G)}else b.push(JSON.parse(JSON.stringify(U)))}),{...O,pageSettings:b}})),Yh=(O,H)=>(O.forwarding_events.forEach(b=>{if(H&&H.length>0)for(let U=0;U{const b=JSON.parse(JSON.stringify(O.apisCallStatus));return H.action&&(b[H.action]={status:H.status,statusCode:H.statusCode,message:H.message,URL:H.URL,filePath:H.filePath}),{...O,apisCallStatus:b}}),(0,Ri.on)(xa.gf,O=>({...Xf})),(0,Ri.on)(xa.x1,(O,{payload:H})=>({...O,information:H,fees:{feeCollected:H.fees_collected_msat}})),(0,Ri.on)(xa.C2,(O,{payload:H})=>H.perkb?{...O,feeRatesPerKB:H}:H.perkw?{...O,feeRatesPerKW:H}:{...O}),(0,Ri.on)(xa.EM,(O,{payload:H})=>({...O,utxos:H.utxos||[],balance:H.balance,localRemoteBalance:H.localRemoteBalance})),(0,Ri.on)(xa.Qj,(O,{payload:H})=>({...O,peers:H})),(0,Ri.on)(xa.We,(O,{payload:H})=>({...O,peers:[...O.peers,H]})),(0,Ri.on)(xa.Zi,(O,{payload:H})=>{const b=[...O.peers],U=O.peers.findIndex(G=>G.id===H.id);return U>-1&&b.splice(U,1),{...O,peers:b}}),(0,Ri.on)(xa.dv,(O,{payload:H})=>({...O,activeChannels:H.activeChannels,pendingChannels:H.pendingChannels,inactiveChannels:H.inactiveChannels})),(0,Ri.on)(xa.cR,(O,{payload:H})=>{const b=[...O.peers];return b.forEach(U=>{U.id===H.id&&(U.connected=!1,delete U.netaddr)}),{...O,peers:b}}),(0,Ri.on)(xa.Uj,(O,{payload:H})=>({...O,payments:H})),(0,Ri.on)(xa.kv,(O,{payload:H})=>{const b=[...O.activeChannels,...O.pendingChannels,...O.inactiveChannels],U=Yf(H.listForwards,b);switch(H.listForwards=U,H.status){case Wt.xk.SETTLED:const G=O.fees;return G.totalTxCount=H.totalForwards||0,{...O,fees:G,forwardingHistory:H};case Wt.xk.FAILED:return{...O,failedForwardingHistory:H};case Wt.xk.LOCAL_FAILED:return{...O,localFailedForwardingHistory:H};default:return{...O}}}),(0,Ri.on)(xa.Jx,(O,{payload:H})=>{const b=O.invoices;return b.invoices?.unshift(H),{...O,invoices:b}}),(0,Ri.on)(xa.$6,(O,{payload:H})=>({...O,invoices:H})),(0,Ri.on)(xa.Dq,(O,{payload:H})=>{const b=O.invoices;return b.invoices=b.invoices?.map(U=>(U.label===H.label&&(U.amount_received_msat=H.msat,U.payment_preimage=H.preimage,U.status="paid"),U)),{...O,invoices:b}}),(0,Ri.on)(xa.qw,(O,{payload:H})=>({...O,offers:H})),(0,Ri.on)(xa.kQ,(O,{payload:H})=>{const b=O.offers;return b?.unshift(H),{...O,offers:b}}),(0,Ri.on)(xa.Gz,(O,{payload:H})=>{const b=[...O.offers],U=O.offers.findIndex(G=>G.offer_id===H.offer.offer_id);return U>-1&&b.splice(U,1,H.offer),{...O,offers:b}}),(0,Ri.on)(xa.Qv,(O,{payload:H})=>({...O,offersBookmarks:H})),(0,Ri.on)(xa.Db,(O,{payload:H})=>{const b=[...O.offersBookmarks],U=b.findIndex(G=>G.bolt12===H.bolt12);if(U<0)b?.unshift(H);else{const G={...b[U]};G.title=H.title,G.amountMSat=H.amountMSat,G.lastUpdatedAt=H.lastUpdatedAt,G.description=H.description,G.issuer=H.issuer,b.splice(U,1,G)}return{...O,offersBookmarks:b}}),(0,Ri.on)(xa.NU,(O,{payload:H})=>{const b=[...O.offersBookmarks],U=O.offersBookmarks.findIndex(G=>G.bolt12===H.bolt12);return U>-1&&b.splice(U,1),{...O,offersBookmarks:b}}),(0,Ri.on)(xa.NS,(O,{payload:H})=>{const b=[];return Wt.mu.forEach(U=>{const G=H&&H.length&&H.length>0?H.find(Oe=>Oe.pageId===U.pageId):null;if(G){const Oe=JSON.parse(JSON.stringify(G.tables));G.tables=[],U.tables.forEach(It=>{const Lt=Oe.find(oi=>oi.tableId===It.tableId)||null;G.tables.push(Lt||JSON.parse(JSON.stringify(It)))}),b.push(G)}else b.push(JSON.parse(JSON.stringify(U)))}),{...O,pageSettings:b}})),Yf=(O,H)=>(O&&O.length>0?O.forEach((b,U)=>{if(H&&H.length>0)for(let G=0;G{const b=JSON.parse(JSON.stringify(O.apisCallStatus));return H.action&&(b[H.action]={status:H.status,statusCode:H.statusCode,message:H.message,URL:H.URL,filePath:H.filePath}),{...O,apisCallStatus:b}}),(0,Ri.on)(Ca.Hh,O=>({...Kf})),(0,Ri.on)(Ca.x1,(O,{payload:H})=>({...O,information:H})),(0,Ri.on)(Ca.Uo,(O,{payload:H})=>({...O,fees:H})),(0,Ri.on)(Ca.Tp,(O,{payload:H})=>({...O,activeChannels:H})),(0,Ri.on)(Ca.cU,(O,{payload:H})=>({...O,pendingChannels:H})),(0,Ri.on)(Ca.I6,(O,{payload:H})=>({...O,inactiveChannels:H})),(0,Ri.on)(Ca.ZE,(O,{payload:H})=>({...O,channelsStatus:H})),(0,Ri.on)(Ca.Xx,(O,{payload:H})=>({...O,onchainBalance:H})),(0,Ri.on)(Ca.N8,(O,{payload:H})=>({...O,lightningBalance:H})),(0,Ri.on)(Ca.Qj,(O,{payload:H})=>({...O,peers:H})),(0,Ri.on)(Ca.Zi,(O,{payload:H})=>{const b=[...O.peers],U=O.peers.findIndex(G=>G.nodeId===H.nodeId);return U>-1&&b.splice(U,1),{...O,peers:b}}),(0,Ri.on)(Ca.cR,(O,{payload:H})=>{const b=[...O.activeChannels],U=O.activeChannels.findIndex(G=>G.channelId===H.channelId);return U>-1&&b.splice(U,1),{...O,activeChannels:b}}),(0,Ri.on)(Ca.Uj,(O,{payload:H})=>{if(H&&H.sent){const b=[...O.activeChannels,...O.pendingChannels,...O.inactiveChannels];H.sent?.map(U=>{const G=O.peers.find(Oe=>Oe.nodeId===U.recipientNodeId);return U.recipientNodeAlias=G?G.alias:U.recipientNodeId,U.parts&&U.parts?.map(Oe=>{const It=b.find(Lt=>Lt.channelId===Oe.toChannelId);return Oe.toChannelAlias=It?It.alias:Oe.toChannelId,U.parts}),H.sent})}if(H&&H.relayed){const b=[...O.activeChannels,...O.pendingChannels,...O.inactiveChannels];H.relayed.forEach(U=>{U=w1(U,b)})}return{...O,payments:H}}),(0,Ri.on)(Ca.As,(O,{payload:H})=>({...O,transactions:H})),(0,Ri.on)(Ca.Jx,(O,{payload:H})=>{const b=O.invoices;return b?.unshift(H),{...O,invoices:b}}),(0,Ri.on)(Ca.$6,(O,{payload:H})=>({...O,invoices:H})),(0,Ri.on)(Ca.Dq,(O,{payload:H})=>{let b=O.invoices;return b=b?.map(U=>{if(U.paymentHash===H.paymentHash){if(H.hasOwnProperty("type")){const G=JSON.parse(JSON.stringify(U));return G.amountSettled=H.parts&&H.parts.length&&H.parts.length>0&&H.parts[0].amount?(H.parts[0].amount||0)/1e3:0,G.receivedAt=H.parts&&H.parts.length&&H.parts.length>0&&H.parts[0].timestamp?Math.round((H.parts[0].timestamp||0)/1e3):0,G.status="received",G}return H}return U}),{...O,invoices:b}}),(0,Ri.on)(Ca.gZ,(O,{payload:H})=>{let b=O.pendingChannels;return b=b?.map(U=>(U.channelId===H.channelId&&U.nodeId===H.remoteNodeId&&(H.currentState=H.currentState?.replace(/_/g," "),U.state=H.currentState),U)),{...O,pendingChannels:b}}),(0,Ri.on)(Ca.yn,(O,{payload:H})=>{const b=O.payments,U=w1(H,[...O.activeChannels,...O.pendingChannels,...O.inactiveChannels]);b.relayed?.unshift(U);const G=(H.amountIn||0)-(H.amountOut||0),Oe={localBalance:O.lightningBalance.localBalance+G,remoteBalance:O.lightningBalance.remoteBalance-G},It=O.channelsStatus;It.active&&(It.active.capacity=(O.channelsStatus?.active?.capacity||0)+G);const Lt={daily_fee:(O.fees.daily_fee||0)+G,daily_txs:(O.fees.daily_txs||0)+1,weekly_fee:(O.fees.weekly_fee||0)+G,weekly_txs:(O.fees.weekly_txs||0)+1,monthly_fee:(O.fees.monthly_fee||0)+G,monthly_txs:(O.fees.monthly_txs||0)+1},oi=O.activeChannels;let ci=!1,Ui=!1;for(const Ti of oi){if(Ti.channelId===H.fromChannelId){ci=!0;const un=(Ti.toLocal||0)+(Ti.toRemote||0);Ti.toLocal=(Ti.toLocal||0)+U.amountIn,Ti.toRemote=(Ti.toRemote||0)-U.amountIn,Ti.balancedness=0===un?1:+(1-Math.abs((Ti.toLocal-Ti.toRemote)/un)).toFixed(3)}if(Ti.channelId===H.toChannelId){Ui=!0;const un=(Ti.toLocal||0)+(Ti.toRemote||0);Ti.toLocal=(Ti.toLocal||0)-U.amountOut,Ti.toRemote=(Ti.toRemote||0)+U.amountOut,Ti.balancedness=0===un?1:+(1-Math.abs((Ti.toLocal-Ti.toRemote)/un)).toFixed(3)}if(Ui&&ci)break}return{...O,payments:b,lightningBalance:Oe,channelStatus:It,fees:Lt,activeChannels:oi}}),(0,Ri.on)(Ca.NS,(O,{payload:H})=>{const b=[];return Wt.X8.forEach(U=>{const G=H&&H.length&&H.length>0?H.find(Oe=>Oe.pageId===U.pageId):null;if(G){const Oe=JSON.parse(JSON.stringify(G.tables));G.tables=[],U.tables.forEach(It=>{const Lt=Oe.find(oi=>oi.tableId===It.tableId)||null;G.tables.push(Lt||JSON.parse(JSON.stringify(It)))}),b.push(G)}else b.push(JSON.parse(JSON.stringify(U)))}),{...O,pageSettings:b}})),w1=(O,H)=>{if("payment-relayed"===O.type)if(H&&H.length>0)for(let b=0;b0)for(let G=0;G{H[G].channelId?.toString()===Oe.channelId&&(Oe.channelAlias=H[G].alias?H[G].alias:Oe.channelId,Oe.shortChannelId=H[G].shortChannelId?H[G].shortChannelId:"")}),O.outgoing?.forEach(Oe=>{H[G].channelId?.toString()===Oe.channelId&&(Oe.channelAlias=H[G].alias?H[G].alias:Oe.channelId,Oe.shortChannelId=H[G].shortChannelId?H[G].shortChannelId:"")}),G===H.length-1&&(O.incoming&&O.incoming.length&&O.incoming.length>0&&!O.incoming[0].channelAlias&&O.incoming?.forEach(Oe=>{Oe.channelAlias=Oe.channelId?.substring(0,17)+"...",Oe.shortChannelId=""}),O.outgoing&&O.outgoing.length&&O.outgoing.length>0&&!O.outgoing[0].channelAlias&&O.outgoing?.forEach(Oe=>{Oe.channelAlias=Oe.channelId?.substring(0,17)+"...",Oe.shortChannelId=""}));else O.incoming?.forEach(G=>{G.channelAlias=G.channelId?.substring(0,17)+"...",G.shortChannelId=""}),O.outgoing?.forEach(G=>{G.channelAlias=G.channelId?.substring(0,17)+"...",G.shortChannelId=""});const b=O.incoming?.reduce((G,Oe)=>G+Oe.amount,0)||0;O.amountIn=Math.round(b/1e3),O.fromChannelId=O.incoming&&O.incoming.length?O.incoming[0].channelId:"",O.fromChannelAlias=O.incoming&&O.incoming.length?O.incoming[0].channelAlias:"",O.fromShortChannelId=O.incoming&&O.incoming.length?O.incoming[0].shortChannelId:"";const U=O.outgoing?.reduce((G,Oe)=>G+Oe.amount,0)||0;O.amountOut=Math.round(U/1e3),O.toChannelId=O.outgoing&&O.outgoing.length?O.outgoing[0].channelId:"",O.toChannelAlias=O.outgoing&&O.outgoing.length?O.outgoing[0].channelAlias:"",O.toShortChannelId=O.outgoing&&O.outgoing.length?O.outgoing[0].shortChannelId:""}return O};let Kh=!1;(0,t.naY)()&&(Kh=!0);let D4=(()=>{class O{static#e=this.\u0275fac=function(U){return new(U||O)};static#t=this.\u0275mod=t.$C({type:O,bootstrap:[Gf]});static#i=this.\u0275inj=t.G2t({providers:[Ts({idle:Wt.bz-10,timeout:10,ping:12e3}),{provide:Ms.a7,useClass:C1,multi:!0},qa.Q,O2.u,w4.I,tf.Q,Ia.h,fd],imports:[Fr,Of.G,Rf,oa.RH,e.fM,Ri.md.forRoot({root:Ad,lnd:Wf,cln:S4,ecl:T4},{runtimeChecks:{strictStateImmutability:!1,strictActionImmutability:!1}}),lt.Vm.forRoot([_r.H,M4.L,E4.i,Bh.B]),Kh?Ns.instrument({connectInZone:!0}):[]]})}return O})();e.sG().bootstrapModule(D4).catch(O=>console.error(O))},426:(Qe,te)=>{"use strict";function g(X){return Object.keys(X).map(me=>X[me])}var X;Object.defineProperty(te,"__esModule",{value:!0}),(X=te.HashAlgorithms||(te.HashAlgorithms={})).SHA1="sha1",X.SHA256="sha256",X.SHA512="sha512";const e=g(te.HashAlgorithms);!function(X){X.ASCII="ascii",X.BASE64="base64",X.HEX="hex",X.LATIN1="latin1",X.UTF8="utf8"}(te.KeyEncodings||(te.KeyEncodings={}));const t=g(te.KeyEncodings);!function(X){X.HOTP="hotp",X.TOTP="totp"}(te.Strategy||(te.Strategy={}));const w=g(te.Strategy),S=()=>{throw new Error("Please provide an options.createDigest implementation.")};function l(X){return/^(\d+)$/.test(X)}function x(X,me,ce){return X.length>=me?X:`${Array(me+1).join(ce)}${X}`.slice(-1*me)}function f(X){const me=`otpauth://${X.type}/{labelPrefix}:{accountName}?secret={secret}{query}`,ce=[];if(w.indexOf(X.type)<0)throw new Error(`Expecting options.type to be one of ${w.join(", ")}. Received ${X.type}.`);if("hotp"===X.type){if(null==X.counter||"number"!=typeof X.counter)throw new Error('Expecting options.counter to be a number when options.type is "hotp".');ce.push(`&counter=${X.counter}`)}return"totp"===X.type&&X.step&&ce.push(`&period=${X.step}`),X.digits&&ce.push(`&digits=${X.digits}`),X.algorithm&&ce.push(`&algorithm=${X.algorithm.toUpperCase()}`),X.issuer&&ce.push(`&issuer=${encodeURIComponent(X.issuer)}`),me.replace("{labelPrefix}",encodeURIComponent(X.issuer||X.accountName)).replace("{accountName}",encodeURIComponent(X.accountName)).replace("{secret}",X.secret).replace("{query}",ce.join(""))}class I{constructor(me={}){this._defaultOptions=Object.freeze({...me}),this._options=Object.freeze({})}create(me={}){return new I(me)}clone(me={}){const ce=this.create({...this._defaultOptions,...me});return ce.options=this._options,ce}get options(){return Object.freeze({...this._defaultOptions,...this._options})}set options(me){this._options=Object.freeze({...this._options,...me})}allOptions(){return this.options}resetOptions(){this._options=Object.freeze({})}}function d(X){if("function"!=typeof X.createDigest)throw new Error("Expecting options.createDigest to be a function.");if("function"!=typeof X.createHmacKey)throw new Error("Expecting options.createHmacKey to be a function.");if("number"!=typeof X.digits)throw new Error("Expecting options.digits to be a number.");if(!X.algorithm||e.indexOf(X.algorithm)<0)throw new Error(`Expecting options.algorithm to be one of ${e.join(", ")}. Received ${X.algorithm}.`);if(!X.encoding||t.indexOf(X.encoding)<0)throw new Error(`Expecting options.encoding to be one of ${t.join(", ")}. Received ${X.encoding}.`)}const T=(X,me,ce)=>Buffer.from(me,ce).toString("hex");function y(){return{algorithm:te.HashAlgorithms.SHA1,createHmacKey:T,createDigest:S,digits:6,encoding:te.KeyEncodings.ASCII}}function F(X){const me={...y(),...X};return d(me),Object.freeze(me)}function R(X){return x(X.toString(16),16,"0")}function z(X,me){const ce=Buffer.from(X,"hex"),fe=15&ce[ce.length-1],mt=((127&ce[fe])<<24|(255&ce[fe+1])<<16|(255&ce[fe+2])<<8|255&ce[fe+3])%Math.pow(10,me);return x(String(mt),me,"0")}function $(X,me,ce){const fe=ce.digest||function W(X,me,ce){const fe=R(me),ke=ce.createHmacKey(ce.algorithm,X,ce.encoding);return ce.createDigest(ce.algorithm,ke,fe)}(X,me,ce);return z(fe,ce.digits)}function j(X,me,ce,fe){return!!l(X)&&X===$(me,ce,fe)}function Q(X,me,ce,fe,ke){return f({algorithm:ke.algorithm,digits:ke.digits,type:te.Strategy.HOTP,accountName:X,counter:fe,issuer:me,secret:ce})}class J extends I{create(me={}){return new J(me)}allOptions(){return F(this.options)}generate(me,ce){return $(me,ce,this.allOptions())}check(me,ce,fe){return j(me,ce,fe,this.allOptions())}verify(me){if("object"!=typeof me)throw new Error("Expecting argument 0 of verify to be an object");return this.check(me.token,me.secret,me.counter)}keyuri(me,ce,fe,ke){return Q(me,ce,fe,ke,this.allOptions())}}function ee(X){if("number"==typeof X)return[Math.abs(X),Math.abs(X)];if(Array.isArray(X)){const[me,ce]=X;if("number"==typeof me&&"number"==typeof ce)return[Math.abs(me),Math.abs(ce)]}throw new Error("Expecting options.window to be an number or [number, number].")}function ie(X){if(d(X),ee(X.window),"number"!=typeof X.epoch)throw new Error("Expecting options.epoch to be a number.");if("number"!=typeof X.step)throw new Error("Expecting options.step to be a number.")}const ge=(X,me,ce)=>{const fe=X.length,ke=Buffer.from(X,me).toString("hex");if(fe{switch(X){case te.HashAlgorithms.SHA1:return ge(me,ce,20);case te.HashAlgorithms.SHA256:return ge(me,ce,32);case te.HashAlgorithms.SHA512:return ge(me,ce,64);default:throw new Error(`Expecting algorithm to be one of ${e.join(", ")}. Received ${X}.`)}};function Me(){return{algorithm:te.HashAlgorithms.SHA1,createDigest:S,createHmacKey:ae,digits:6,encoding:te.KeyEncodings.ASCII,epoch:Date.now(),step:30,window:0}}function Te(X){const me={...Me(),...X};return ie(me),Object.freeze(me)}function de(X,me){return Math.floor(X/me/1e3)}function D(X,me){return $(X,de(me.epoch,me.step),me)}function n(X,me,ce,fe){const ke=[];if(0===fe)return ke;for(let mt=1;mt<=fe;mt++)ke.push(X+me*mt*ce);return ke}function c(X,me,ce){const fe=ee(ce),ke=1e3*me;return{current:X,past:n(X,-1,ke,fe[0]),future:n(X,1,ke,fe[1])}}function m(X,me,ce){return!!l(X)&&X===D(me,ce)}function h(X,me,ce,fe){let ke=null;return X.some((mt,_e)=>!!m(me,ce,{...fe,epoch:mt})&&(ke=_e+1,!0)),ke}function C(X,me,ce){if(m(X,me,ce))return 0;const fe=c(ce.epoch,ce.step,ce.window),ke=h(fe.past,X,me,ce);return null!==ke?-1*ke:h(fe.future,X,me,ce)}function k(X,me){return Math.floor(X/1e3)%me}function L(X,me){return me-k(X,me)}function _(X,me,ce,fe){return f({algorithm:fe.algorithm,digits:fe.digits,step:fe.step,type:te.Strategy.TOTP,accountName:X,issuer:me,secret:ce})}class r extends J{create(me={}){return new r(me)}allOptions(){return Te(this.options)}generate(me){return D(me,this.allOptions())}checkDelta(me,ce){return C(me,ce,this.allOptions())}check(me,ce){return"number"==typeof this.checkDelta(me,ce)}verify(me){if("object"!=typeof me)throw new Error("Expecting argument 0 of verify to be an object");return this.check(me.token,me.secret)}timeRemaining(){const me=this.allOptions();return L(me.epoch,me.step)}timeUsed(){const me=this.allOptions();return k(me.epoch,me.step)}keyuri(me,ce,fe){return _(me,ce,fe,this.allOptions())}}function v(X){if(ie(X),"function"!=typeof X.keyDecoder)throw new Error("Expecting options.keyDecoder to be a function.");if(X.keyEncoder&&"function"!=typeof X.keyEncoder)throw new Error("Expecting options.keyEncoder to be a function.")}function V(){return{algorithm:te.HashAlgorithms.SHA1,createDigest:S,createHmacKey:ae,digits:6,encoding:te.KeyEncodings.HEX,epoch:Date.now(),step:30,window:0}}function N(X){const me={...V(),...X};return v(me),Object.freeze(me)}function ne(X,me){return me.keyEncoder(X,me.encoding)}function Ee(X,me){return me.keyDecoder(X,me.encoding)}function ze(X,me){return ne(me.createRandomBytes(X,me.encoding),me)}function qe(X,me){return D(Ee(X,me),me)}function Ke(X,me,ce){return C(X,Ee(me,ce),ce)}class se extends r{create(me={}){return new se(me)}allOptions(){return N(this.options)}generate(me){return qe(me,this.allOptions())}checkDelta(me,ce){return Ke(me,ce,this.allOptions())}encode(me){return ne(me,this.allOptions())}decode(me){return Ee(me,this.allOptions())}generateSecret(me=10){return ze(me,this.allOptions())}}te.Authenticator=se,te.HASH_ALGORITHMS=e,te.HOTP=J,te.KEY_ENCODINGS=t,te.OTP=I,te.STRATEGY=w,te.TOTP=r,te.authenticatorCheckWithWindow=Ke,te.authenticatorDecoder=Ee,te.authenticatorDefaultOptions=V,te.authenticatorEncoder=ne,te.authenticatorGenerateSecret=ze,te.authenticatorOptionValidator=v,te.authenticatorOptions=N,te.authenticatorToken=qe,te.createDigestPlaceholder=S,te.hotpCheck=j,te.hotpCounter=R,te.hotpCreateHmacKey=T,te.hotpDefaultOptions=y,te.hotpDigestToToken=z,te.hotpKeyuri=Q,te.hotpOptions=F,te.hotpOptionsValidator=d,te.hotpToken=$,te.isTokenValid=l,te.keyuri=f,te.objectValues=g,te.padStart=x,te.totpCheck=m,te.totpCheckByEpoch=h,te.totpCheckWithWindow=C,te.totpCounter=de,te.totpCreateHmacKey=ae,te.totpDefaultOptions=Me,te.totpEpochAvailable=c,te.totpKeyuri=_,te.totpOptions=Te,te.totpOptionsValidator=ie,te.totpPadSecret=ge,te.totpTimeRemaining=L,te.totpTimeUsed=k,te.totpToken=D},7840:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var t=function e(l){return l&&"object"==typeof l&&"default"in l?l.default:l}(g(1426));te.createDigest=(l,x,f)=>t.createHmac(l,Buffer.from(x,"hex")).update(Buffer.from(f,"hex")).digest().toString("hex"),te.createRandomBytes=(l,x)=>t.randomBytes(l).toString(x)},5526:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var t=function e(l){return l&&"object"==typeof l&&"default"in l?l.default:l}(g(7851));te.keyDecoder=(l,x)=>t.decode(l).toString(x),te.keyEncoder=(l,x)=>t.encode(Buffer.from(l,x).toString("ascii")).toString().replace(/=/g,"")},4478:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var e=g(7840),t=g(5526),w=g(426);const S=new w.HOTP({createDigest:e.createDigest}),l=new w.TOTP({createDigest:e.createDigest}),x=new w.Authenticator({createDigest:e.createDigest,createRandomBytes:e.createRandomBytes,keyDecoder:t.keyDecoder,keyEncoder:t.keyEncoder});te.authenticator=x,te.hotp=S,te.totp=l},1990:(Qe,te,g)=>{var e=te;e.bignum=g(6867),e.define=g(6626).define,e.base=g(5066),e.constants=g(7740),e.decoders=g(1558),e.encoders=g(2714)},6626:(Qe,te,g)=>{var e=g(1990),t=g(1993);function S(l,x){this.name=l,this.body=x,this.decoders={},this.encoders={}}te.define=function(x,f){return new S(x,f)},S.prototype._createNamed=function(x){var f;try{f=g(8326).runInThisContext("(function "+this.name+"(entity) {\n this._initNamed(entity);\n})")}catch{f=function(d){this._initNamed(d)}}return t(f,x),f.prototype._initNamed=function(d){x.call(this,d)},new f(this)},S.prototype._getDecoder=function(x){return this.decoders.hasOwnProperty(x=x||"der")||(this.decoders[x]=this._createNamed(e.decoders[x])),this.decoders[x]},S.prototype.decode=function(x,f,I){return this._getDecoder(f).decode(x,I)},S.prototype._getEncoder=function(x){return this.encoders.hasOwnProperty(x=x||"der")||(this.encoders[x]=this._createNamed(e.encoders[x])),this.encoders[x]},S.prototype.encode=function(x,f,I){return this._getEncoder(f).encode(x,I)}},7290:(Qe,te,g)=>{var e=g(1993),t=g(5066).Reporter,w=g(3838).Buffer;function S(x,f){t.call(this,f),w.isBuffer(x)?(this.base=x,this.offset=0,this.length=x.length):this.error("Input not Buffer")}function l(x,f){if(Array.isArray(x))this.length=0,this.value=x.map(function(I){return I instanceof l||(I=new l(I,f)),this.length+=I.length,I},this);else if("number"==typeof x){if(!(0<=x&&x<=255))return f.error("non-byte EncoderBuffer value");this.value=x,this.length=1}else if("string"==typeof x)this.value=x,this.length=w.byteLength(x);else{if(!w.isBuffer(x))return f.error("Unsupported type: "+typeof x);this.value=x,this.length=x.length}}e(S,t),te.t=S,S.prototype.save=function(){return{offset:this.offset,reporter:t.prototype.save.call(this)}},S.prototype.restore=function(f){var I=new S(this.base);return I.offset=f.offset,I.length=this.offset,this.offset=f.offset,t.prototype.restore.call(this,f.reporter),I},S.prototype.isEmpty=function(){return this.offset===this.length},S.prototype.readUInt8=function(f){return this.offset+1<=this.length?this.base.readUInt8(this.offset++,!0):this.error(f||"DecoderBuffer overrun")},S.prototype.skip=function(f,I){if(!(this.offset+f<=this.length))return this.error(I||"DecoderBuffer overrun");var d=new S(this.base);return d._reporterState=this._reporterState,d.offset=this.offset,d.length=this.offset+f,this.offset+=f,d},S.prototype.raw=function(f){return this.base.slice(f?f.offset:this.offset,this.length)},te.d=l,l.prototype.join=function(f,I){return f||(f=new w(this.length)),I||(I=0),0===this.length||(Array.isArray(this.value)?this.value.forEach(function(d){d.join(f,I),I+=d.length}):("number"==typeof this.value?f[I]=this.value:"string"==typeof this.value?f.write(this.value,I):w.isBuffer(this.value)&&this.value.copy(f,I),I+=this.length)),f}},5066:(Qe,te,g)=>{var e=te;e.Reporter=g(5697).a,e.DecoderBuffer=g(7290).t,e.EncoderBuffer=g(7290).d,e.Node=g(4320)},4320:(Qe,te,g)=>{var e=g(5066).Reporter,t=g(5066).EncoderBuffer,w=g(5066).DecoderBuffer,S=g(9210),l=["seq","seqof","set","setof","objid","bool","gentime","utctime","null_","enum","int","objDesc","bitstr","bmpstr","charstr","genstr","graphstr","ia5str","iso646str","numstr","octstr","printstr","t61str","unistr","utf8str","videostr"],x=["key","obj","use","optional","explicit","implicit","def","choice","any","contains"].concat(l);function I(T,y){var F={};this._baseState=F,F.enc=T,F.parent=y||null,F.children=null,F.tag=null,F.args=null,F.reverseArgs=null,F.choice=null,F.optional=!1,F.any=!1,F.obj=!1,F.use=null,F.useDecoder=null,F.key=null,F.default=null,F.explicit=null,F.implicit=null,F.contains=null,F.parent||(F.children=[],this._wrap())}Qe.exports=I;var d=["enc","parent","children","tag","args","reverseArgs","choice","optional","any","obj","use","alteredUse","key","default","explicit","implicit","contains"];I.prototype.clone=function(){var y=this._baseState,F={};d.forEach(function(z){F[z]=y[z]});var R=new this.constructor(F.parent);return R._baseState=F,R},I.prototype._wrap=function(){var y=this._baseState;x.forEach(function(F){this[F]=function(){var z=new this.constructor(this);return y.children.push(z),z[F].apply(z,arguments)}},this)},I.prototype._init=function(y){var F=this._baseState;S(null===F.parent),y.call(this),F.children=F.children.filter(function(R){return R._baseState.parent===this},this),S.equal(F.children.length,1,"Root node can have only one child")},I.prototype._useArgs=function(y){var F=this._baseState,R=y.filter(function(z){return z instanceof this.constructor},this);y=y.filter(function(z){return!(z instanceof this.constructor)},this),0!==R.length&&(S(null===F.children),F.children=R,R.forEach(function(z){z._baseState.parent=this},this)),0!==y.length&&(S(null===F.args),F.args=y,F.reverseArgs=y.map(function(z){if("object"!=typeof z||z.constructor!==Object)return z;var W={};return Object.keys(z).forEach(function($){$==(0|$)&&($|=0),W[z[$]]=$}),W}))},["_peekTag","_decodeTag","_use","_decodeStr","_decodeObjid","_decodeTime","_decodeNull","_decodeInt","_decodeBool","_decodeList","_encodeComposite","_encodeStr","_encodeObjid","_encodeTime","_encodeNull","_encodeInt","_encodeBool"].forEach(function(T){I.prototype[T]=function(){throw new Error(T+" not implemented for encoding: "+this._baseState.enc)}}),l.forEach(function(T){I.prototype[T]=function(){var F=this._baseState,R=Array.prototype.slice.call(arguments);return S(null===F.tag),F.tag=T,this._useArgs(R),this}}),I.prototype.use=function(y){S(y);var F=this._baseState;return S(null===F.use),F.use=y,this},I.prototype.optional=function(){return this._baseState.optional=!0,this},I.prototype.def=function(y){var F=this._baseState;return S(null===F.default),F.default=y,F.optional=!0,this},I.prototype.explicit=function(y){var F=this._baseState;return S(null===F.explicit&&null===F.implicit),F.explicit=y,this},I.prototype.implicit=function(y){var F=this._baseState;return S(null===F.explicit&&null===F.implicit),F.implicit=y,this},I.prototype.obj=function(){var y=this._baseState,F=Array.prototype.slice.call(arguments);return y.obj=!0,0!==F.length&&this._useArgs(F),this},I.prototype.key=function(y){var F=this._baseState;return S(null===F.key),F.key=y,this},I.prototype.any=function(){return this._baseState.any=!0,this},I.prototype.choice=function(y){var F=this._baseState;return S(null===F.choice),F.choice=y,this._useArgs(Object.keys(y).map(function(R){return y[R]})),this},I.prototype.contains=function(y){var F=this._baseState;return S(null===F.use),F.contains=y,this},I.prototype._decode=function(y,F){var R=this._baseState;if(null===R.parent)return y.wrapResult(R.children[0]._decode(y,F));var J,z=R.default,W=!0,$=null;if(null!==R.key&&($=y.enterKey(R.key)),R.optional){var j=null;if(null!==R.explicit?j=R.explicit:null!==R.implicit?j=R.implicit:null!==R.tag&&(j=R.tag),null!==j||R.any){if(W=this._peekTag(y,j,R.any),y.isError(W))return W}else{var Q=y.save();try{null===R.choice?this._decodeGeneric(R.tag,y,F):this._decodeChoice(y,F),W=!0}catch{W=!1}y.restore(Q)}}if(R.obj&&W&&(J=y.enterObject()),W){if(null!==R.explicit){var ee=this._decodeTag(y,R.explicit);if(y.isError(ee))return ee;y=ee}var ie=y.offset;if(null===R.use&&null===R.choice){R.any&&(Q=y.save());var ge=this._decodeTag(y,null!==R.implicit?R.implicit:R.tag,R.any);if(y.isError(ge))return ge;R.any?z=y.raw(Q):y=ge}if(F&&F.track&&null!==R.tag&&F.track(y.path(),ie,y.length,"tagged"),F&&F.track&&null!==R.tag&&F.track(y.path(),y.offset,y.length,"content"),R.any||(z=null===R.choice?this._decodeGeneric(R.tag,y,F):this._decodeChoice(y,F)),y.isError(z))return z;if(!R.any&&null===R.choice&&null!==R.children&&R.children.forEach(function(Te){Te._decode(y,F)}),R.contains&&("octstr"===R.tag||"bitstr"===R.tag)){var ae=new w(z);z=this._getUse(R.contains,y._reporterState.obj)._decode(ae,F)}}return R.obj&&W&&(z=y.leaveObject(J)),null===R.key||null===z&&!0!==W?null!==$&&y.exitKey($):y.leaveKey($,R.key,z),z},I.prototype._decodeGeneric=function(y,F,R){var z=this._baseState;return"seq"===y||"set"===y?null:"seqof"===y||"setof"===y?this._decodeList(F,y,z.args[0],R):/str$/.test(y)?this._decodeStr(F,y,R):"objid"===y&&z.args?this._decodeObjid(F,z.args[0],z.args[1],R):"objid"===y?this._decodeObjid(F,null,null,R):"gentime"===y||"utctime"===y?this._decodeTime(F,y,R):"null_"===y?this._decodeNull(F,R):"bool"===y?this._decodeBool(F,R):"objDesc"===y?this._decodeStr(F,y,R):"int"===y||"enum"===y?this._decodeInt(F,z.args&&z.args[0],R):null!==z.use?this._getUse(z.use,F._reporterState.obj)._decode(F,R):F.error("unknown tag: "+y)},I.prototype._getUse=function(y,F){var R=this._baseState;return R.useDecoder=this._use(y,F),S(null===R.useDecoder._baseState.parent),R.useDecoder=R.useDecoder._baseState.children[0],R.implicit!==R.useDecoder._baseState.implicit&&(R.useDecoder=R.useDecoder.clone(),R.useDecoder._baseState.implicit=R.implicit),R.useDecoder},I.prototype._decodeChoice=function(y,F){var R=this._baseState,z=null,W=!1;return Object.keys(R.choice).some(function($){var j=y.save(),Q=R.choice[$];try{var J=Q._decode(y,F);if(y.isError(J))return!1;z={type:$,value:J},W=!0}catch{return y.restore(j),!1}return!0},this),W?z:y.error("Choice not matched")},I.prototype._createEncoderBuffer=function(y){return new t(y,this.reporter)},I.prototype._encode=function(y,F,R){var z=this._baseState;if(null===z.default||z.default!==y){var W=this._encodeValue(y,F,R);if(void 0!==W&&!this._skipDefault(W,F,R))return W}},I.prototype._encodeValue=function(y,F,R){var z=this._baseState;if(null===z.parent)return z.children[0]._encode(y,F||new e);var Q=null;if(this.reporter=F,z.optional&&void 0===y){if(null===z.default)return;y=z.default}var W=null,$=!1;if(z.any)Q=this._createEncoderBuffer(y);else if(z.choice)Q=this._encodeChoice(y,F);else if(z.contains)W=this._getUse(z.contains,R)._encode(y,F),$=!0;else if(z.children)W=z.children.map(function(ie){if("null_"===ie._baseState.tag)return ie._encode(null,F,y);if(null===ie._baseState.key)return F.error("Child should have a key");var ge=F.enterKey(ie._baseState.key);if("object"!=typeof y)return F.error("Child expected, but input is not object");var ae=ie._encode(y[ie._baseState.key],F,y);return F.leaveKey(ge),ae},this).filter(function(ie){return ie}),W=this._createEncoderBuffer(W);else if("seqof"===z.tag||"setof"===z.tag){if(!z.args||1!==z.args.length)return F.error("Too many args for : "+z.tag);if(!Array.isArray(y))return F.error("seqof/setof, but data is not Array");var j=this.clone();j._baseState.implicit=null,W=this._createEncoderBuffer(y.map(function(ie){return this._getUse(this._baseState.args[0],y)._encode(ie,F)},j))}else null!==z.use?Q=this._getUse(z.use,R)._encode(y,F):(W=this._encodePrimitive(z.tag,y),$=!0);if(!z.any&&null===z.choice){var J=null!==z.implicit?z.implicit:z.tag,ee=null===z.implicit?"universal":"context";null===J?null===z.use&&F.error("Tag could be omitted only for .use()"):null===z.use&&(Q=this._encodeComposite(J,$,ee,W))}return null!==z.explicit&&(Q=this._encodeComposite(z.explicit,!1,"context",Q)),Q},I.prototype._encodeChoice=function(y,F){var R=this._baseState,z=R.choice[y.type];return z||S(!1,y.type+" not found in "+JSON.stringify(Object.keys(R.choice))),z._encode(y.value,F)},I.prototype._encodePrimitive=function(y,F){var R=this._baseState;if(/str$/.test(y))return this._encodeStr(F,y);if("objid"===y&&R.args)return this._encodeObjid(F,R.reverseArgs[0],R.args[1]);if("objid"===y)return this._encodeObjid(F,null,null);if("gentime"===y||"utctime"===y)return this._encodeTime(F,y);if("null_"===y)return this._encodeNull();if("int"===y||"enum"===y)return this._encodeInt(F,R.args&&R.reverseArgs[0]);if("bool"===y)return this._encodeBool(F);if("objDesc"===y)return this._encodeStr(F,y);throw new Error("Unsupported tag: "+y)},I.prototype._isNumstr=function(y){return/^[0-9 ]*$/.test(y)},I.prototype._isPrintstr=function(y){return/^[A-Za-z0-9 '\(\)\+,\-\.\/:=\?]*$/.test(y)}},5697:(Qe,te,g)=>{var e=g(1993);function t(S){this._reporterState={obj:null,path:[],options:S||{},errors:[]}}function w(S,l){this.path=S,this.rethrow(l)}te.a=t,t.prototype.isError=function(l){return l instanceof w},t.prototype.save=function(){var l=this._reporterState;return{obj:l.obj,pathLen:l.path.length}},t.prototype.restore=function(l){var x=this._reporterState;x.obj=l.obj,x.path=x.path.slice(0,l.pathLen)},t.prototype.enterKey=function(l){return this._reporterState.path.push(l)},t.prototype.exitKey=function(l){var x=this._reporterState;x.path=x.path.slice(0,l-1)},t.prototype.leaveKey=function(l,x,f){var I=this._reporterState;this.exitKey(l),null!==I.obj&&(I.obj[x]=f)},t.prototype.path=function(){return this._reporterState.path.join("/")},t.prototype.enterObject=function(){var l=this._reporterState,x=l.obj;return l.obj={},x},t.prototype.leaveObject=function(l){var x=this._reporterState,f=x.obj;return x.obj=l,f},t.prototype.error=function(l){var x,f=this._reporterState,I=l instanceof w;if(x=I?l:new w(f.path.map(function(d){return"["+JSON.stringify(d)+"]"}).join(""),l.message||l,l.stack),!f.options.partial)throw x;return I||f.errors.push(x),x},t.prototype.wrapResult=function(l){var x=this._reporterState;return x.options.partial?{result:this.isError(l)?null:l,errors:x.errors}:l},e(w,Error),w.prototype.rethrow=function(l){if(this.message=l+" at: "+(this.path||"(shallow)"),Error.captureStackTrace&&Error.captureStackTrace(this,w),!this.stack)try{throw new Error(this.message)}catch(x){this.stack=x.stack}return this}},6283:(Qe,te,g)=>{var e=g(7740);te.tagClass={0:"universal",1:"application",2:"context",3:"private"},te.tagClassByName=e._reverse(te.tagClass),te.tag={0:"end",1:"bool",2:"int",3:"bitstr",4:"octstr",5:"null_",6:"objid",7:"objDesc",8:"external",9:"real",10:"enum",11:"embed",12:"utf8str",13:"relativeOid",16:"seq",17:"set",18:"numstr",19:"printstr",20:"t61str",21:"videostr",22:"ia5str",23:"utctime",24:"gentime",25:"graphstr",26:"iso646str",27:"genstr",28:"unistr",29:"charstr",30:"bmpstr"},te.tagByName=e._reverse(te.tag)},7740:(Qe,te,g)=>{var e=te;e._reverse=function(w){var S={};return Object.keys(w).forEach(function(l){(0|l)==l&&(l|=0),S[w[l]]=l}),S},e.der=g(6283)},5941:(Qe,te,g)=>{var e=g(1993),t=g(1990),w=t.base,S=t.bignum,l=t.constants.der;function x(T){this.enc="der",this.name=T.name,this.entity=T,this.tree=new f,this.tree._init(T.body)}function f(T){w.Node.call(this,"der",T)}function I(T,y){var F=T.readUInt8(y);if(T.isError(F))return F;var R=l.tagClass[F>>6],z=!(32&F);if(31&~F)F&=31;else{var W=F;for(F=0;!(128&~W);){if(W=T.readUInt8(y),T.isError(W))return W;F<<=7,F|=127&W}}return{cls:R,primitive:z,tag:F,tagStr:l.tag[F]}}function d(T,y,F){var R=T.readUInt8(F);if(T.isError(R))return R;if(!y&&128===R)return null;if(!(128&R))return R;var z=127&R;if(z>4)return T.error("length octect is too long");R=0;for(var W=0;W{var e=te;e.der=g(5941),e.pem=g(9316)},9316:(Qe,te,g)=>{var e=g(1993),t=g(3838).Buffer,w=g(5941);function S(l){w.call(this,l),this.enc="pem"}e(S,w),Qe.exports=S,S.prototype.decode=function(x,f){for(var I=x.toString().split(/[\r\n]+/g),d=f.label.toUpperCase(),T=/^-----(BEGIN|END) ([^-]+)-----$/,y=-1,F=-1,R=0;R{var e=g(1993),t=g(3838).Buffer,w=g(1990),S=w.base,l=w.constants.der;function x(T){this.enc="der",this.name=T.name,this.entity=T,this.tree=new f,this.tree._init(T.body)}function f(T){S.Node.call(this,"der",T)}function I(T){return T<10?"0"+T:T}Qe.exports=x,x.prototype.encode=function(y,F){return this.tree._encode(y,F).join()},e(f,S.Node),f.prototype._encodeComposite=function(y,F,R,z){var Q,W=function d(T,y,F,R){var z;if("seqof"===T?T="seq":"setof"===T&&(T="set"),l.tagByName.hasOwnProperty(T))z=l.tagByName[T];else{if("number"!=typeof T||(0|T)!==T)return R.error("Unknown tag: "+T);z=T}return z>=31?R.error("Multi-octet tag encoding unsupported"):(y||(z|=32),z|=l.tagClassByName[F||"universal"]<<6)}(y,F,R,this.reporter);if(z.length<128)return(Q=new t(2))[0]=W,Q[1]=z.length,this._createEncoderBuffer([Q,z]);for(var $=1,j=z.length;j>=256;j>>=8)$++;(Q=new t(2+$))[0]=W,Q[1]=128|$,j=1+$;for(var J=z.length;J>0;j--,J>>=8)Q[j]=255&J;return this._createEncoderBuffer([Q,z])},f.prototype._encodeStr=function(y,F){if("bitstr"===F)return this._createEncoderBuffer([0|y.unused,y.data]);if("bmpstr"===F){for(var R=new t(2*y.length),z=0;z=40)return this.reporter.error("Second objid identifier OOB");y.splice(0,2,40*y[0]+y[1])}var W=0;for(z=0;z=128;$>>=7)W++}var j=new t(W),Q=j.length-1;for(z=y.length-1;z>=0;z--)for(j[Q--]=127&($=y[z]);($>>=7)>0;)j[Q--]=128|127&$;return this._createEncoderBuffer(j)},f.prototype._encodeTime=function(y,F){var R,z=new Date(y);return"gentime"===F?R=[I(z.getFullYear()),I(z.getUTCMonth()+1),I(z.getUTCDate()),I(z.getUTCHours()),I(z.getUTCMinutes()),I(z.getUTCSeconds()),"Z"].join(""):"utctime"===F?R=[I(z.getFullYear()%100),I(z.getUTCMonth()+1),I(z.getUTCDate()),I(z.getUTCHours()),I(z.getUTCMinutes()),I(z.getUTCSeconds()),"Z"].join(""):this.reporter.error("Encoding "+F+" time is not supported yet"),this._encodeStr(R,"octstr")},f.prototype._encodeNull=function(){return this._createEncoderBuffer("")},f.prototype._encodeInt=function(y,F){if("string"==typeof y){if(!F)return this.reporter.error("String int or enum given, but no values map");if(!F.hasOwnProperty(y))return this.reporter.error("Values map doesn't contain: "+JSON.stringify(y));y=F[y]}if("number"!=typeof y&&!t.isBuffer(y)){var R=y.toArray();!y.sign&&128&R[0]&&R.unshift(0),y=new t(R)}if(t.isBuffer(y)){var z=y.length;0===y.length&&z++;var $=new t(z);return y.copy($),0===y.length&&($[0]=0),this._createEncoderBuffer($)}if(y<128)return this._createEncoderBuffer(y);if(y<256)return this._createEncoderBuffer([0,y]);z=1;for(var W=y;W>=256;W>>=8)z++;for(W=($=new Array(z)).length-1;W>=0;W--)$[W]=255&y,y>>=8;return 128&$[0]&&$.unshift(0),this._createEncoderBuffer(new t($))},f.prototype._encodeBool=function(y){return this._createEncoderBuffer(y?255:0)},f.prototype._use=function(y,F){return"function"==typeof y&&(y=y(F)),y._getEncoder("der").tree},f.prototype._skipDefault=function(y,F,R){var W,z=this._baseState;if(null===z.default)return!1;var $=y.join();if(void 0===z.defaultBuffer&&(z.defaultBuffer=this._encodeValue(z.default,F,R).join()),$.length!==z.defaultBuffer.length)return!1;for(W=0;W<$.length;W++)if($[W]!==z.defaultBuffer[W])return!1;return!0}},2714:(Qe,te,g)=>{var e=te;e.der=g(2193),e.pem=g(4816)},4816:(Qe,te,g)=>{var e=g(1993),t=g(2193);function w(S){t.call(this,S),this.enc="pem"}e(w,t),Qe.exports=w,w.prototype.encode=function(l,x){for(var I=t.prototype.encode.call(this,l).toString("base64"),d=["-----BEGIN "+x.label+"-----"],T=0;T=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],y=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],F=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function z(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ee.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},3981:(Qe,te)=>{"use strict";te.byteLength=function f(R){var z=x(R),$=z[1];return 3*(z[0]+$)/4-$},te.toByteArray=function d(R){var z,ie,W=x(R),$=W[0],j=W[1],Q=new t(function I(R,z,W){return 3*(z+W)/4-W}(0,$,j)),J=0,ee=j>0?$-4:$;for(ie=0;ie>16&255,Q[J++]=z>>8&255,Q[J++]=255&z;return 2===j&&(z=e[R.charCodeAt(ie)]<<2|e[R.charCodeAt(ie+1)]>>4,Q[J++]=255&z),1===j&&(z=e[R.charCodeAt(ie)]<<10|e[R.charCodeAt(ie+1)]<<4|e[R.charCodeAt(ie+2)]>>2,Q[J++]=z>>8&255,Q[J++]=255&z),Q},te.fromByteArray=function F(R){for(var z,W=R.length,$=W%3,j=[],Q=16383,J=0,ee=W-$;Jee?ee:J+Q));return 1===$?j.push(g[(z=R[W-1])>>2]+g[z<<4&63]+"=="):2===$&&j.push(g[(z=(R[W-2]<<8)+R[W-1])>>10]+g[z>>4&63]+g[z<<2&63]+"="),j.join("")};for(var g=[],e=[],t=typeof Uint8Array<"u"?Uint8Array:Array,w="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",S=0;S<64;++S)g[S]=w[S],e[w.charCodeAt(S)]=S;function x(R){var z=R.length;if(z%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var W=R.indexOf("=");return-1===W&&(W=z),[W,W===z?0:4-W%4]}function T(R){return g[R>>18&63]+g[R>>12&63]+g[R>>6&63]+g[63&R]}function y(R,z,W){for(var j=[],Q=z;Q=48&&C<=57?C-48:C>=65&&C<=70?C-55:C>=97&&C<=102?C-87:void w(!1,"Invalid character in "+m)}function I(m,h,C){var k=f(m,C);return C-1>=h&&(k|=f(m,C-1)<<4),k}function d(m,h,C,k){for(var L=0,_=0,r=Math.min(m.length,C),v=h;v=49?V-49+10:V>=17?V-17+10:V,w(V>=0&&_0?h:C},l.min=function(h,C){return h.cmp(C)<0?h:C},l.prototype._init=function(h,C,k){if("number"==typeof h)return this._initNumber(h,C,k);if("object"==typeof h)return this._initArray(h,C,k);"hex"===C&&(C=16),w(C===(0|C)&&C>=2&&C<=36);var L=0;"-"===(h=h.toString().replace(/\s+/g,""))[0]&&(L++,this.negative=1),L=0;L-=3)this.words[_]|=(r=h[L]|h[L-1]<<8|h[L-2]<<16)<>>26-v&67108863,(v+=24)>=26&&(v-=26,_++);else if("le"===k)for(L=0,_=0;L>>26-v&67108863,(v+=24)>=26&&(v-=26,_++);return this._strip()},l.prototype._parseHex=function(h,C,k){this.length=Math.ceil((h.length-C)/6),this.words=new Array(this.length);for(var L=0;L=C;L-=2)v=I(h,C,L)<<_,this.words[r]|=67108863&v,_>=18?(_-=18,this.words[r+=1]|=v>>>26):_+=8;else for(L=(h.length-C)%2==0?C+1:C;L=18?(_-=18,this.words[r+=1]|=v>>>26):_+=8;this._strip()},l.prototype._parseBase=function(h,C,k){this.words=[0],this.length=1;for(var L=0,_=1;_<=67108863;_*=C)L++;L--,_=_/C|0;for(var r=h.length-k,v=r%L,V=Math.min(r,r-v)+k,N=0,ne=k;ne1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},typeof Symbol<"u"&&"function"==typeof Symbol.for)try{l.prototype[Symbol.for("nodejs.util.inspect.custom")]=y}catch{l.prototype.inspect=y}else l.prototype.inspect=y;function y(){return(this.red?""}var F=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],R=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],z=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function j(m,h,C){C.negative=h.negative^m.negative;var k=m.length+h.length|0;C.length=k,k=k-1|0;var L=0|m.words[0],_=0|h.words[0],r=L*_,V=r/67108864|0;C.words[0]=67108863&r;for(var N=1;N>>26,Ee=67108863&V,ze=Math.min(N,h.length-1),qe=Math.max(0,N-m.length+1);qe<=ze;qe++)ne+=(r=(L=0|m.words[N-qe|0])*(_=0|h.words[qe])+Ee)/67108864|0,Ee=67108863&r;C.words[N]=0|Ee,V=0|ne}return 0!==V?C.words[N]=0|V:C.length--,C._strip()}l.prototype.toString=function(h,C){var k;if(C=0|C||1,16===(h=h||10)||"hex"===h){k="";for(var L=0,_=0,r=0;r>>24-L&16777215,(L+=2)>=26&&(L-=26,r--),k=0!==_||r!==this.length-1?F[6-V.length]+V+k:V+k}for(0!==_&&(k=_.toString(16)+k);k.length%C!=0;)k="0"+k;return 0!==this.negative&&(k="-"+k),k}if(h===(0|h)&&h>=2&&h<=36){var N=R[h],ne=z[h];k="";var Ee=this.clone();for(Ee.negative=0;!Ee.isZero();){var ze=Ee.modrn(ne).toString(h);k=(Ee=Ee.idivn(ne)).isZero()?ze+k:F[N-ze.length]+ze+k}for(this.isZero()&&(k="0"+k);k.length%C!=0;)k="0"+k;return 0!==this.negative&&(k="-"+k),k}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var h=this.words[0];return 2===this.length?h+=67108864*this.words[1]:3===this.length&&1===this.words[2]?h+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-h:h},l.prototype.toJSON=function(){return this.toString(16,2)},x&&(l.prototype.toBuffer=function(h,C){return this.toArrayLike(x,h,C)}),l.prototype.toArray=function(h,C){return this.toArrayLike(Array,h,C)},l.prototype.toArrayLike=function(h,C,k){this._strip();var L=this.byteLength(),_=k||Math.max(1,L);w(L<=_,"byte array longer than desired length"),w(_>0,"Requested array length <= 0");var r=function(h,C){return h.allocUnsafe?h.allocUnsafe(C):new h(C)}(h,_);return this["_toArrayLike"+("le"===C?"LE":"BE")](r,L),r},l.prototype._toArrayLikeLE=function(h,C){for(var k=0,L=0,_=0,r=0;_>8&255),k>16&255),6===r?(k>24&255),L=0,r=0):(L=v>>>24,r+=2)}if(k=0&&(h[k--]=v>>8&255),k>=0&&(h[k--]=v>>16&255),6===r?(k>=0&&(h[k--]=v>>24&255),L=0,r=0):(L=v>>>24,r+=2)}if(k>=0)for(h[k--]=L;k>=0;)h[k--]=0},l.prototype._countBits=Math.clz32?function(h){return 32-Math.clz32(h)}:function(h){var C=h,k=0;return C>=4096&&(k+=13,C>>>=13),C>=64&&(k+=7,C>>>=7),C>=8&&(k+=4,C>>>=4),C>=2&&(k+=2,C>>>=2),k+C},l.prototype._zeroBits=function(h){if(0===h)return 26;var C=h,k=0;return 8191&C||(k+=13,C>>>=13),127&C||(k+=7,C>>>=7),15&C||(k+=4,C>>>=4),3&C||(k+=2,C>>>=2),1&C||k++,k},l.prototype.bitLength=function(){var C=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+C},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var h=0,C=0;Ch.length?this.clone().ior(h):h.clone().ior(this)},l.prototype.uor=function(h){return this.length>h.length?this.clone().iuor(h):h.clone().iuor(this)},l.prototype.iuand=function(h){var C;C=this.length>h.length?h:this;for(var k=0;kh.length?this.clone().iand(h):h.clone().iand(this)},l.prototype.uand=function(h){return this.length>h.length?this.clone().iuand(h):h.clone().iuand(this)},l.prototype.iuxor=function(h){var C,k;this.length>h.length?(C=this,k=h):(C=h,k=this);for(var L=0;Lh.length?this.clone().ixor(h):h.clone().ixor(this)},l.prototype.uxor=function(h){return this.length>h.length?this.clone().iuxor(h):h.clone().iuxor(this)},l.prototype.inotn=function(h){w("number"==typeof h&&h>=0);var C=0|Math.ceil(h/26),k=h%26;this._expand(C),k>0&&C--;for(var L=0;L0&&(this.words[L]=~this.words[L]&67108863>>26-k),this._strip()},l.prototype.notn=function(h){return this.clone().inotn(h)},l.prototype.setn=function(h,C){w("number"==typeof h&&h>=0);var k=h/26|0,L=h%26;return this._expand(k+1),this.words[k]=C?this.words[k]|1<h.length?(k=this,L=h):(k=h,L=this);for(var _=0,r=0;r>>26;for(;0!==_&&r>>26;if(this.length=k.length,0!==_)this.words[this.length]=_,this.length++;else if(k!==this)for(;rh.length?this.clone().iadd(h):h.clone().iadd(this)},l.prototype.isub=function(h){if(0!==h.negative){h.negative=0;var C=this.iadd(h);return h.negative=1,C._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(h),this.negative=1,this._normSign();var L,_,k=this.cmp(h);if(0===k)return this.negative=0,this.length=1,this.words[0]=0,this;k>0?(L=this,_=h):(L=h,_=this);for(var r=0,v=0;v<_.length;v++)r=(C=(0|L.words[v])-(0|_.words[v])+r)>>26,this.words[v]=67108863&C;for(;0!==r&&v>26,this.words[v]=67108863&C;if(0===r&&v>>13,Ke=0|L[1],se=8191&Ke,X=Ke>>>13,me=0|L[2],ce=8191&me,fe=me>>>13,ke=0|L[3],mt=8191&ke,_e=ke>>>13,be=0|L[4],pe=8191&be,Ze=be>>>13,_t=0|L[5],at=8191&_t,pt=_t>>>13,Xt=0|L[6],ye=8191&Xt,ue=Xt>>>13,Ie=0|L[7],He=8191&Ie,Xe=Ie>>>13,yt=0|L[8],Ye=8191&yt,rt=yt>>>13,Yt=0|L[9],Nt=8191&Yt,Et=Yt>>>13,Vt=0|_[0],oe=8191&Vt,tt=Vt>>>13,$t=0|_[1],zt=8191&$t,Jt=$t>>>13,St=0|_[2],dt=8191&St,Ae=St>>>13,we=0|_[3],he=8191&we,q=we>>>13,Re=0|_[4],Ne=8191&Re,gt=Re>>>13,$e=0|_[5],Fe=8191&$e,Ge=$e>>>13,et=0|_[6],st=8191&et,Tt=et>>>13,mi=0|_[7],Kt=8191&mi,Pt=mi>>>13,Xi=0|_[8],di=8191&Xi,fi=Xi>>>13,vn=0|_[9],Qi=8191&vn,Li=vn>>>13;k.negative=h.negative^C.negative,k.length=19;var Zi=(v+(V=Math.imul(ze,oe))|0)+((8191&(N=(N=Math.imul(ze,tt))+Math.imul(qe,oe)|0))<<13)|0;v=((ne=Math.imul(qe,tt))+(N>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,V=Math.imul(se,oe),N=(N=Math.imul(se,tt))+Math.imul(X,oe)|0,ne=Math.imul(X,tt);var Qt=(v+(V=V+Math.imul(ze,zt)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Jt)|0)+(N>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,V=Math.imul(ce,oe),N=(N=Math.imul(ce,tt))+Math.imul(fe,oe)|0,ne=Math.imul(fe,tt),V=V+Math.imul(se,zt)|0,N=(N=N+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,ne=ne+Math.imul(X,Jt)|0;var Mt=(v+(V=V+Math.imul(ze,dt)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Ae)|0)+(N>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,V=Math.imul(mt,oe),N=(N=Math.imul(mt,tt))+Math.imul(_e,oe)|0,ne=Math.imul(_e,tt),V=V+Math.imul(ce,zt)|0,N=(N=N+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,ne=ne+Math.imul(fe,Jt)|0,V=V+Math.imul(se,dt)|0,N=(N=N+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,ne=ne+Math.imul(X,Ae)|0;var it=(v+(V=V+Math.imul(ze,he)|0)|0)+((8191&(N=(N=N+Math.imul(ze,q)|0)+Math.imul(qe,he)|0))<<13)|0;v=((ne=ne+Math.imul(qe,q)|0)+(N>>>13)|0)+(it>>>26)|0,it&=67108863,V=Math.imul(pe,oe),N=(N=Math.imul(pe,tt))+Math.imul(Ze,oe)|0,ne=Math.imul(Ze,tt),V=V+Math.imul(mt,zt)|0,N=(N=N+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,ne=ne+Math.imul(_e,Jt)|0,V=V+Math.imul(ce,dt)|0,N=(N=N+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,ne=ne+Math.imul(fe,Ae)|0,V=V+Math.imul(se,he)|0,N=(N=N+Math.imul(se,q)|0)+Math.imul(X,he)|0,ne=ne+Math.imul(X,q)|0;var ct=(v+(V=V+Math.imul(ze,Ne)|0)|0)+((8191&(N=(N=N+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0))<<13)|0;v=((ne=ne+Math.imul(qe,gt)|0)+(N>>>13)|0)+(ct>>>26)|0,ct&=67108863,V=Math.imul(at,oe),N=(N=Math.imul(at,tt))+Math.imul(pt,oe)|0,ne=Math.imul(pt,tt),V=V+Math.imul(pe,zt)|0,N=(N=N+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,ne=ne+Math.imul(Ze,Jt)|0,V=V+Math.imul(mt,dt)|0,N=(N=N+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,ne=ne+Math.imul(_e,Ae)|0,V=V+Math.imul(ce,he)|0,N=(N=N+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,ne=ne+Math.imul(fe,q)|0,V=V+Math.imul(se,Ne)|0,N=(N=N+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,ne=ne+Math.imul(X,gt)|0;var wt=(v+(V=V+Math.imul(ze,Fe)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Ge)|0)+(N>>>13)|0)+(wt>>>26)|0,wt&=67108863,V=Math.imul(ye,oe),N=(N=Math.imul(ye,tt))+Math.imul(ue,oe)|0,ne=Math.imul(ue,tt),V=V+Math.imul(at,zt)|0,N=(N=N+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,ne=ne+Math.imul(pt,Jt)|0,V=V+Math.imul(pe,dt)|0,N=(N=N+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,ne=ne+Math.imul(Ze,Ae)|0,V=V+Math.imul(mt,he)|0,N=(N=N+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,ne=ne+Math.imul(_e,q)|0,V=V+Math.imul(ce,Ne)|0,N=(N=N+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,ne=ne+Math.imul(fe,gt)|0,V=V+Math.imul(se,Fe)|0,N=(N=N+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,ne=ne+Math.imul(X,Ge)|0;var Ut=(v+(V=V+Math.imul(ze,st)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Tt)|0)+(N>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,V=Math.imul(He,oe),N=(N=Math.imul(He,tt))+Math.imul(Xe,oe)|0,ne=Math.imul(Xe,tt),V=V+Math.imul(ye,zt)|0,N=(N=N+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,ne=ne+Math.imul(ue,Jt)|0,V=V+Math.imul(at,dt)|0,N=(N=N+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,ne=ne+Math.imul(pt,Ae)|0,V=V+Math.imul(pe,he)|0,N=(N=N+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,ne=ne+Math.imul(Ze,q)|0,V=V+Math.imul(mt,Ne)|0,N=(N=N+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,ne=ne+Math.imul(_e,gt)|0,V=V+Math.imul(ce,Fe)|0,N=(N=N+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,ne=ne+Math.imul(fe,Ge)|0,V=V+Math.imul(se,st)|0,N=(N=N+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,ne=ne+Math.imul(X,Tt)|0;var xi=(v+(V=V+Math.imul(ze,Kt)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Pt)|0)+(N>>>13)|0)+(xi>>>26)|0,xi&=67108863,V=Math.imul(Ye,oe),N=(N=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,ne=Math.imul(rt,tt),V=V+Math.imul(He,zt)|0,N=(N=N+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,ne=ne+Math.imul(Xe,Jt)|0,V=V+Math.imul(ye,dt)|0,N=(N=N+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,ne=ne+Math.imul(ue,Ae)|0,V=V+Math.imul(at,he)|0,N=(N=N+Math.imul(at,q)|0)+Math.imul(pt,he)|0,ne=ne+Math.imul(pt,q)|0,V=V+Math.imul(pe,Ne)|0,N=(N=N+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,ne=ne+Math.imul(Ze,gt)|0,V=V+Math.imul(mt,Fe)|0,N=(N=N+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,ne=ne+Math.imul(_e,Ge)|0,V=V+Math.imul(ce,st)|0,N=(N=N+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,ne=ne+Math.imul(fe,Tt)|0,V=V+Math.imul(se,Kt)|0,N=(N=N+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,ne=ne+Math.imul(X,Pt)|0;var Si=(v+(V=V+Math.imul(ze,di)|0)|0)+((8191&(N=(N=N+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;v=((ne=ne+Math.imul(qe,fi)|0)+(N>>>13)|0)+(Si>>>26)|0,Si&=67108863,V=Math.imul(Nt,oe),N=(N=Math.imul(Nt,tt))+Math.imul(Et,oe)|0,ne=Math.imul(Et,tt),V=V+Math.imul(Ye,zt)|0,N=(N=N+Math.imul(Ye,Jt)|0)+Math.imul(rt,zt)|0,ne=ne+Math.imul(rt,Jt)|0,V=V+Math.imul(He,dt)|0,N=(N=N+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,ne=ne+Math.imul(Xe,Ae)|0,V=V+Math.imul(ye,he)|0,N=(N=N+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,ne=ne+Math.imul(ue,q)|0,V=V+Math.imul(at,Ne)|0,N=(N=N+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,ne=ne+Math.imul(pt,gt)|0,V=V+Math.imul(pe,Fe)|0,N=(N=N+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,ne=ne+Math.imul(Ze,Ge)|0,V=V+Math.imul(mt,st)|0,N=(N=N+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,ne=ne+Math.imul(_e,Tt)|0,V=V+Math.imul(ce,Kt)|0,N=(N=N+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,ne=ne+Math.imul(fe,Pt)|0,V=V+Math.imul(se,di)|0,N=(N=N+Math.imul(se,fi)|0)+Math.imul(X,di)|0,ne=ne+Math.imul(X,fi)|0;var zi=(v+(V=V+Math.imul(ze,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(ze,Li)|0)+Math.imul(qe,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(qe,Li)|0)+(N>>>13)|0)+(zi>>>26)|0,zi&=67108863,V=Math.imul(Nt,zt),N=(N=Math.imul(Nt,Jt))+Math.imul(Et,zt)|0,ne=Math.imul(Et,Jt),V=V+Math.imul(Ye,dt)|0,N=(N=N+Math.imul(Ye,Ae)|0)+Math.imul(rt,dt)|0,ne=ne+Math.imul(rt,Ae)|0,V=V+Math.imul(He,he)|0,N=(N=N+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,ne=ne+Math.imul(Xe,q)|0,V=V+Math.imul(ye,Ne)|0,N=(N=N+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,ne=ne+Math.imul(ue,gt)|0,V=V+Math.imul(at,Fe)|0,N=(N=N+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,ne=ne+Math.imul(pt,Ge)|0,V=V+Math.imul(pe,st)|0,N=(N=N+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,ne=ne+Math.imul(Ze,Tt)|0,V=V+Math.imul(mt,Kt)|0,N=(N=N+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,ne=ne+Math.imul(_e,Pt)|0,V=V+Math.imul(ce,di)|0,N=(N=N+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0,ne=ne+Math.imul(fe,fi)|0;var en=(v+(V=V+Math.imul(se,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(se,Li)|0)+Math.imul(X,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(X,Li)|0)+(N>>>13)|0)+(en>>>26)|0,en&=67108863,V=Math.imul(Nt,dt),N=(N=Math.imul(Nt,Ae))+Math.imul(Et,dt)|0,ne=Math.imul(Et,Ae),V=V+Math.imul(Ye,he)|0,N=(N=N+Math.imul(Ye,q)|0)+Math.imul(rt,he)|0,ne=ne+Math.imul(rt,q)|0,V=V+Math.imul(He,Ne)|0,N=(N=N+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,ne=ne+Math.imul(Xe,gt)|0,V=V+Math.imul(ye,Fe)|0,N=(N=N+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,ne=ne+Math.imul(ue,Ge)|0,V=V+Math.imul(at,st)|0,N=(N=N+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,ne=ne+Math.imul(pt,Tt)|0,V=V+Math.imul(pe,Kt)|0,N=(N=N+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,ne=ne+Math.imul(Ze,Pt)|0,V=V+Math.imul(mt,di)|0,N=(N=N+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0,ne=ne+Math.imul(_e,fi)|0;var Ni=(v+(V=V+Math.imul(ce,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(ce,Li)|0)+Math.imul(fe,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(fe,Li)|0)+(N>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,V=Math.imul(Nt,he),N=(N=Math.imul(Nt,q))+Math.imul(Et,he)|0,ne=Math.imul(Et,q),V=V+Math.imul(Ye,Ne)|0,N=(N=N+Math.imul(Ye,gt)|0)+Math.imul(rt,Ne)|0,ne=ne+Math.imul(rt,gt)|0,V=V+Math.imul(He,Fe)|0,N=(N=N+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,ne=ne+Math.imul(Xe,Ge)|0,V=V+Math.imul(ye,st)|0,N=(N=N+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,ne=ne+Math.imul(ue,Tt)|0,V=V+Math.imul(at,Kt)|0,N=(N=N+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,ne=ne+Math.imul(pt,Pt)|0,V=V+Math.imul(pe,di)|0,N=(N=N+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0,ne=ne+Math.imul(Ze,fi)|0;var fn=(v+(V=V+Math.imul(mt,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(mt,Li)|0)+Math.imul(_e,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(_e,Li)|0)+(N>>>13)|0)+(fn>>>26)|0,fn&=67108863,V=Math.imul(Nt,Ne),N=(N=Math.imul(Nt,gt))+Math.imul(Et,Ne)|0,ne=Math.imul(Et,gt),V=V+Math.imul(Ye,Fe)|0,N=(N=N+Math.imul(Ye,Ge)|0)+Math.imul(rt,Fe)|0,ne=ne+Math.imul(rt,Ge)|0,V=V+Math.imul(He,st)|0,N=(N=N+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,ne=ne+Math.imul(Xe,Tt)|0,V=V+Math.imul(ye,Kt)|0,N=(N=N+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,ne=ne+Math.imul(ue,Pt)|0,V=V+Math.imul(at,di)|0,N=(N=N+Math.imul(at,fi)|0)+Math.imul(pt,di)|0,ne=ne+Math.imul(pt,fi)|0;var Zt=(v+(V=V+Math.imul(pe,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(pe,Li)|0)+Math.imul(Ze,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(Ze,Li)|0)+(N>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,V=Math.imul(Nt,Fe),N=(N=Math.imul(Nt,Ge))+Math.imul(Et,Fe)|0,ne=Math.imul(Et,Ge),V=V+Math.imul(Ye,st)|0,N=(N=N+Math.imul(Ye,Tt)|0)+Math.imul(rt,st)|0,ne=ne+Math.imul(rt,Tt)|0,V=V+Math.imul(He,Kt)|0,N=(N=N+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,ne=ne+Math.imul(Xe,Pt)|0,V=V+Math.imul(ye,di)|0,N=(N=N+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0,ne=ne+Math.imul(ue,fi)|0;var bt=(v+(V=V+Math.imul(at,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(at,Li)|0)+Math.imul(pt,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(pt,Li)|0)+(N>>>13)|0)+(bt>>>26)|0,bt&=67108863,V=Math.imul(Nt,st),N=(N=Math.imul(Nt,Tt))+Math.imul(Et,st)|0,ne=Math.imul(Et,Tt),V=V+Math.imul(Ye,Kt)|0,N=(N=N+Math.imul(Ye,Pt)|0)+Math.imul(rt,Kt)|0,ne=ne+Math.imul(rt,Pt)|0,V=V+Math.imul(He,di)|0,N=(N=N+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0,ne=ne+Math.imul(Xe,fi)|0;var re=(v+(V=V+Math.imul(ye,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(ye,Li)|0)+Math.imul(ue,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(ue,Li)|0)+(N>>>13)|0)+(re>>>26)|0,re&=67108863,V=Math.imul(Nt,Kt),N=(N=Math.imul(Nt,Pt))+Math.imul(Et,Kt)|0,ne=Math.imul(Et,Pt),V=V+Math.imul(Ye,di)|0,N=(N=N+Math.imul(Ye,fi)|0)+Math.imul(rt,di)|0,ne=ne+Math.imul(rt,fi)|0;var je=(v+(V=V+Math.imul(He,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(He,Li)|0)+Math.imul(Xe,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(Xe,Li)|0)+(N>>>13)|0)+(je>>>26)|0,je&=67108863,V=Math.imul(Nt,di),N=(N=Math.imul(Nt,fi))+Math.imul(Et,di)|0,ne=Math.imul(Et,fi);var Ce=(v+(V=V+Math.imul(Ye,Qi)|0)|0)+((8191&(N=(N=N+Math.imul(Ye,Li)|0)+Math.imul(rt,Qi)|0))<<13)|0;v=((ne=ne+Math.imul(rt,Li)|0)+(N>>>13)|0)+(Ce>>>26)|0,Ce&=67108863;var ot=(v+(V=Math.imul(Nt,Qi))|0)+((8191&(N=(N=Math.imul(Nt,Li))+Math.imul(Et,Qi)|0))<<13)|0;return v=((ne=Math.imul(Et,Li))+(N>>>13)|0)+(ot>>>26)|0,ot&=67108863,r[0]=Zi,r[1]=Qt,r[2]=Mt,r[3]=it,r[4]=ct,r[5]=wt,r[6]=Ut,r[7]=xi,r[8]=Si,r[9]=zi,r[10]=en,r[11]=Ni,r[12]=fn,r[13]=Zt,r[14]=bt,r[15]=re,r[16]=je,r[17]=Ce,r[18]=ot,0!==v&&(r[19]=v,k.length++),k};function J(m,h,C){C.negative=h.negative^m.negative,C.length=m.length+h.length;for(var k=0,L=0,_=0;_>>26)|0)>>>26,r&=67108863}C.words[_]=v,k=r,r=L}return 0!==k?C.words[_]=k:C.length--,C._strip()}function ee(m,h,C){return J(m,h,C)}function ie(m,h){this.x=m,this.y=h}Math.imul||(Q=j),l.prototype.mulTo=function(h,C){var L=this.length+h.length;return 10===this.length&&10===h.length?Q(this,h,C):L<63?j(this,h,C):L<1024?J(this,h,C):ee(this,h,C)},ie.prototype.makeRBT=function(h){for(var C=new Array(h),k=l.prototype._countBits(h)-1,L=0;L>=1;return L},ie.prototype.permute=function(h,C,k,L,_,r){for(var v=0;v>>=1)_++;return 1<<_+1+L},ie.prototype.conjugate=function(h,C,k){if(!(k<=1))for(var L=0;L>>=13),_>>>=13;for(r=2*C;r>=26,k+=_/67108864|0,k+=r>>>26,this.words[L]=67108863&r}return 0!==k&&(this.words[L]=k,this.length++),C?this.ineg():this},l.prototype.muln=function(h){return this.clone().imuln(h)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(h){var C=function $(m){for(var h=new Array(m.bitLength()),C=0;C>>C%26&1;return h}(h);if(0===C.length)return new l(1);for(var k=this,L=0;L=0);var _,C=h%26,k=(h-C)/26,L=67108863>>>26-C<<26-C;if(0!==C){var r=0;for(_=0;_>>26-C}r&&(this.words[_]=r,this.length++)}if(0!==k){for(_=this.length-1;_>=0;_--)this.words[_+k]=this.words[_];for(_=0;_=0),L=C?(C-C%26)/26:0;var _=h%26,r=Math.min((h-_)/26,this.length),v=67108863^67108863>>>_<<_,V=k;if(L-=r,L=Math.max(0,L),V){for(var N=0;Nr)for(this.length-=r,N=0;N=0&&(0!==ne||N>=L);N--){var Ee=0|this.words[N];this.words[N]=ne<<26-_|Ee>>>_,ne=Ee&v}return V&&0!==ne&&(V.words[V.length++]=ne),0===this.length&&(this.words[0]=0,this.length=1),this._strip()},l.prototype.ishrn=function(h,C,k){return w(0===this.negative),this.iushrn(h,C,k)},l.prototype.shln=function(h){return this.clone().ishln(h)},l.prototype.ushln=function(h){return this.clone().iushln(h)},l.prototype.shrn=function(h){return this.clone().ishrn(h)},l.prototype.ushrn=function(h){return this.clone().iushrn(h)},l.prototype.testn=function(h){w("number"==typeof h&&h>=0);var C=h%26,k=(h-C)/26;return!(this.length<=k||!(this.words[k]&1<=0);var C=h%26,k=(h-C)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=k?this:(0!==C&&k++,this.length=Math.min(k,this.length),0!==C&&(this.words[this.length-1]&=67108863^67108863>>>C<=67108864;C++)this.words[C]-=67108864,C===this.length-1?this.words[C+1]=1:this.words[C+1]++;return this.length=Math.max(this.length,C+1),this},l.prototype.isubn=function(h){if(w("number"==typeof h),w(h<67108864),h<0)return this.iaddn(-h);if(0!==this.negative)return this.negative=0,this.iaddn(h),this.negative=1,this;if(this.words[0]-=h,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var C=0;C>26)-(V/67108864|0),this.words[_+k]=67108863&r}for(;_>26,this.words[_+k]=67108863&r;if(0===v)return this._strip();for(w(-1===v),v=0,_=0;_>26,this.words[_]=67108863&r;return this.negative=1,this._strip()},l.prototype._wordDiv=function(h,C){var k,L=this.clone(),_=h,r=0|_.words[_.length-1];0!=(k=26-this._countBits(r))&&(_=_.ushln(k),L.iushln(k),r=0|_.words[_.length-1]);var N,V=L.length-_.length;if("mod"!==C){(N=new l(null)).length=V+1,N.words=new Array(N.length);for(var ne=0;ne=0;ze--){var qe=67108864*(0|L.words[_.length+ze])+(0|L.words[_.length+ze-1]);for(qe=Math.min(qe/r|0,67108863),L._ishlnsubmul(_,qe,ze);0!==L.negative;)qe--,L.negative=0,L._ishlnsubmul(_,1,ze),L.isZero()||(L.negative^=1);N&&(N.words[ze]=qe)}return N&&N._strip(),L._strip(),"div"!==C&&0!==k&&L.iushrn(k),{div:N||null,mod:L}},l.prototype.divmod=function(h,C,k){return w(!h.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===h.negative?(r=this.neg().divmod(h,C),"mod"!==C&&(L=r.div.neg()),"div"!==C&&(_=r.mod.neg(),k&&0!==_.negative&&_.iadd(h)),{div:L,mod:_}):0===this.negative&&0!==h.negative?(r=this.divmod(h.neg(),C),"mod"!==C&&(L=r.div.neg()),{div:L,mod:r.mod}):this.negative&h.negative?(r=this.neg().divmod(h.neg(),C),"div"!==C&&(_=r.mod.neg(),k&&0!==_.negative&&_.isub(h)),{div:r.div,mod:_}):h.length>this.length||this.cmp(h)<0?{div:new l(0),mod:this}:1===h.length?"div"===C?{div:this.divn(h.words[0]),mod:null}:"mod"===C?{div:null,mod:new l(this.modrn(h.words[0]))}:{div:this.divn(h.words[0]),mod:new l(this.modrn(h.words[0]))}:this._wordDiv(h,C);var L,_,r},l.prototype.div=function(h){return this.divmod(h,"div",!1).div},l.prototype.mod=function(h){return this.divmod(h,"mod",!1).mod},l.prototype.umod=function(h){return this.divmod(h,"mod",!0).mod},l.prototype.divRound=function(h){var C=this.divmod(h);if(C.mod.isZero())return C.div;var k=0!==C.div.negative?C.mod.isub(h):C.mod,L=h.ushrn(1),_=h.andln(1),r=k.cmp(L);return r<0||1===_&&0===r?C.div:0!==C.div.negative?C.div.isubn(1):C.div.iaddn(1)},l.prototype.modrn=function(h){var C=h<0;C&&(h=-h),w(h<=67108863);for(var k=(1<<26)%h,L=0,_=this.length-1;_>=0;_--)L=(k*L+(0|this.words[_]))%h;return C?-L:L},l.prototype.modn=function(h){return this.modrn(h)},l.prototype.idivn=function(h){var C=h<0;C&&(h=-h),w(h<=67108863);for(var k=0,L=this.length-1;L>=0;L--){var _=(0|this.words[L])+67108864*k;this.words[L]=_/h|0,k=_%h}return this._strip(),C?this.ineg():this},l.prototype.divn=function(h){return this.clone().idivn(h)},l.prototype.egcd=function(h){w(0===h.negative),w(!h.isZero());var C=this,k=h.clone();C=0!==C.negative?C.umod(h):C.clone();for(var L=new l(1),_=new l(0),r=new l(0),v=new l(1),V=0;C.isEven()&&k.isEven();)C.iushrn(1),k.iushrn(1),++V;for(var N=k.clone(),ne=C.clone();!C.isZero();){for(var Ee=0,ze=1;!(C.words[0]&ze)&&Ee<26;++Ee,ze<<=1);if(Ee>0)for(C.iushrn(Ee);Ee-- >0;)(L.isOdd()||_.isOdd())&&(L.iadd(N),_.isub(ne)),L.iushrn(1),_.iushrn(1);for(var qe=0,Ke=1;!(k.words[0]&Ke)&&qe<26;++qe,Ke<<=1);if(qe>0)for(k.iushrn(qe);qe-- >0;)(r.isOdd()||v.isOdd())&&(r.iadd(N),v.isub(ne)),r.iushrn(1),v.iushrn(1);C.cmp(k)>=0?(C.isub(k),L.isub(r),_.isub(v)):(k.isub(C),r.isub(L),v.isub(_))}return{a:r,b:v,gcd:k.iushln(V)}},l.prototype._invmp=function(h){w(0===h.negative),w(!h.isZero());var Ee,C=this,k=h.clone();C=0!==C.negative?C.umod(h):C.clone();for(var L=new l(1),_=new l(0),r=k.clone();C.cmpn(1)>0&&k.cmpn(1)>0;){for(var v=0,V=1;!(C.words[0]&V)&&v<26;++v,V<<=1);if(v>0)for(C.iushrn(v);v-- >0;)L.isOdd()&&L.iadd(r),L.iushrn(1);for(var N=0,ne=1;!(k.words[0]&ne)&&N<26;++N,ne<<=1);if(N>0)for(k.iushrn(N);N-- >0;)_.isOdd()&&_.iadd(r),_.iushrn(1);C.cmp(k)>=0?(C.isub(k),L.isub(_)):(k.isub(C),_.isub(L))}return(Ee=0===C.cmpn(1)?L:_).cmpn(0)<0&&Ee.iadd(h),Ee},l.prototype.gcd=function(h){if(this.isZero())return h.abs();if(h.isZero())return this.abs();var C=this.clone(),k=h.clone();C.negative=0,k.negative=0;for(var L=0;C.isEven()&&k.isEven();L++)C.iushrn(1),k.iushrn(1);for(;;){for(;C.isEven();)C.iushrn(1);for(;k.isEven();)k.iushrn(1);var _=C.cmp(k);if(_<0){var r=C;C=k,k=r}else if(0===_||0===k.cmpn(1))break;C.isub(k)}return k.iushln(L)},l.prototype.invm=function(h){return this.egcd(h).a.umod(h)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(h){return this.words[0]&h},l.prototype.bincn=function(h){w("number"==typeof h);var C=h%26,k=(h-C)/26,L=1<>>26,this.words[r]=v&=67108863}return 0!==_&&(this.words[r]=_,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(h){var k,C=h<0;if(0!==this.negative&&!C)return-1;if(0===this.negative&&C)return 1;if(this._strip(),this.length>1)k=1;else{C&&(h=-h),w(h<=67108863,"Number is too big");var L=0|this.words[0];k=L===h?0:Lh.length)return 1;if(this.length=0;k--){var L=0|this.words[k],_=0|h.words[k];if(L!==_){L<_?C=-1:L>_&&(C=1);break}}return C},l.prototype.gtn=function(h){return 1===this.cmpn(h)},l.prototype.gt=function(h){return 1===this.cmp(h)},l.prototype.gten=function(h){return this.cmpn(h)>=0},l.prototype.gte=function(h){return this.cmp(h)>=0},l.prototype.ltn=function(h){return-1===this.cmpn(h)},l.prototype.lt=function(h){return-1===this.cmp(h)},l.prototype.lten=function(h){return this.cmpn(h)<=0},l.prototype.lte=function(h){return this.cmp(h)<=0},l.prototype.eqn=function(h){return 0===this.cmpn(h)},l.prototype.eq=function(h){return 0===this.cmp(h)},l.red=function(h){return new n(h)},l.prototype.toRed=function(h){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),h.convertTo(this)._forceRed(h)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(h){return this.red=h,this},l.prototype.forceRed=function(h){return w(!this.red,"Already a number in reduction context"),this._forceRed(h)},l.prototype.redAdd=function(h){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,h)},l.prototype.redIAdd=function(h){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,h)},l.prototype.redSub=function(h){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,h)},l.prototype.redISub=function(h){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,h)},l.prototype.redShl=function(h){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,h)},l.prototype.redMul=function(h){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,h),this.red.mul(this,h)},l.prototype.redIMul=function(h){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,h),this.red.imul(this,h)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(h){return w(this.red&&!h.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,h)};var ge={k256:null,p224:null,p192:null,p25519:null};function ae(m,h){this.name=m,this.p=new l(h,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function Me(){ae.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function Te(){ae.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function de(){ae.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function D(){ae.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function n(m){if("string"==typeof m){var h=l._prime(m);this.m=h.p,this.prime=h}else w(m.gtn(1),"modulus must be greater than 1"),this.m=m,this.prime=null}function c(m){n.call(this,m),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ae.prototype._tmp=function(){var h=new l(null);return h.words=new Array(Math.ceil(this.n/13)),h},ae.prototype.ireduce=function(h){var k,C=h;do{this.split(C,this.tmp),k=(C=(C=this.imulK(C)).iadd(this.tmp)).bitLength()}while(k>this.n);var L=k0?C.isub(this.p):void 0!==C.strip?C.strip():C._strip(),C},ae.prototype.split=function(h,C){h.iushrn(this.n,0,C)},ae.prototype.imulK=function(h){return h.imul(this.k)},S(Me,ae),Me.prototype.split=function(h,C){for(var k=4194303,L=Math.min(h.length,9),_=0;_>>22,r=v}h.words[_-10]=r>>>=22,h.length-=0===r&&h.length>10?10:9},Me.prototype.imulK=function(h){h.words[h.length]=0,h.words[h.length+1]=0,h.length+=2;for(var C=0,k=0;k>>=26,h.words[k]=_,C=L}return 0!==C&&(h.words[h.length++]=C),h},l._prime=function(h){if(ge[h])return ge[h];var C;if("k256"===h)C=new Me;else if("p224"===h)C=new Te;else if("p192"===h)C=new de;else{if("p25519"!==h)throw new Error("Unknown prime "+h);C=new D}return ge[h]=C,C},n.prototype._verify1=function(h){w(0===h.negative,"red works only with positives"),w(h.red,"red works only with red numbers")},n.prototype._verify2=function(h,C){w(!(h.negative|C.negative),"red works only with positives"),w(h.red&&h.red===C.red,"red works only with red numbers")},n.prototype.imod=function(h){return this.prime?this.prime.ireduce(h)._forceRed(this):(T(h,h.umod(this.m)._forceRed(this)),h)},n.prototype.neg=function(h){return h.isZero()?h.clone():this.m.sub(h)._forceRed(this)},n.prototype.add=function(h,C){this._verify2(h,C);var k=h.add(C);return k.cmp(this.m)>=0&&k.isub(this.m),k._forceRed(this)},n.prototype.iadd=function(h,C){this._verify2(h,C);var k=h.iadd(C);return k.cmp(this.m)>=0&&k.isub(this.m),k},n.prototype.sub=function(h,C){this._verify2(h,C);var k=h.sub(C);return k.cmpn(0)<0&&k.iadd(this.m),k._forceRed(this)},n.prototype.isub=function(h,C){this._verify2(h,C);var k=h.isub(C);return k.cmpn(0)<0&&k.iadd(this.m),k},n.prototype.shl=function(h,C){return this._verify1(h),this.imod(h.ushln(C))},n.prototype.imul=function(h,C){return this._verify2(h,C),this.imod(h.imul(C))},n.prototype.mul=function(h,C){return this._verify2(h,C),this.imod(h.mul(C))},n.prototype.isqr=function(h){return this.imul(h,h.clone())},n.prototype.sqr=function(h){return this.mul(h,h)},n.prototype.sqrt=function(h){if(h.isZero())return h.clone();var C=this.m.andln(3);if(w(C%2==1),3===C){var k=this.m.add(new l(1)).iushrn(2);return this.pow(h,k)}for(var L=this.m.subn(1),_=0;!L.isZero()&&0===L.andln(1);)_++,L.iushrn(1);w(!L.isZero());var r=new l(1).toRed(this),v=r.redNeg(),V=this.m.subn(1).iushrn(1),N=this.m.bitLength();for(N=new l(2*N*N).toRed(this);0!==this.pow(N,V).cmp(v);)N.redIAdd(v);for(var ne=this.pow(N,L),Ee=this.pow(h,L.addn(1).iushrn(1)),ze=this.pow(h,L),qe=_;0!==ze.cmp(r);){for(var Ke=ze,se=0;0!==Ke.cmp(r);se++)Ke=Ke.redSqr();w(se=0;_--){for(var ne=C.words[_],Ee=N-1;Ee>=0;Ee--){var ze=ne>>Ee&1;r!==L[0]&&(r=this.sqr(r)),0!==ze||0!==v?(v<<=1,v|=ze,(4==++V||0===_&&0===Ee)&&(r=this.mul(r,L[v]),V=0,v=0)):V=0}N=26}return r},n.prototype.convertTo=function(h){var C=h.umod(this.m);return C===h?C.clone():C},n.prototype.convertFrom=function(h){var C=h.clone();return C.red=null,C},l.mont=function(h){return new c(h)},S(c,n),c.prototype.convertTo=function(h){return this.imod(h.ushln(this.shift))},c.prototype.convertFrom=function(h){var C=this.imod(h.mul(this.rinv));return C.red=null,C},c.prototype.imul=function(h,C){if(h.isZero()||C.isZero())return h.words[0]=0,h.length=1,h;var k=h.imul(C),L=k.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=k.isub(L).iushrn(this.shift),r=_;return _.cmp(this.m)>=0?r=_.isub(this.m):_.cmpn(0)<0&&(r=_.iadd(this.m)),r._forceRed(this)},c.prototype.mul=function(h,C){if(h.isZero()||C.isZero())return new l(0)._forceRed(this);var k=h.mul(C),L=k.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),_=k.isub(L).iushrn(this.shift),r=_;return _.cmp(this.m)>=0?r=_.isub(this.m):_.cmpn(0)<0&&(r=_.iadd(this.m)),r._forceRed(this)},c.prototype.invm=function(h){return this.imod(h._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},5294:(Qe,te,g)=>{var e;function t(S){this.rand=S}if(Qe.exports=function(l){return e||(e=new t(null)),e.generate(l)},Qe.exports.Rand=t,t.prototype.generate=function(l){return this._rand(l)},t.prototype._rand=function(l){if(this.rand.getBytes)return this.rand.getBytes(l);for(var x=new Uint8Array(l),f=0;f{var e=g(7054).Buffer;function t(I){e.isBuffer(I)||(I=e.from(I));for(var d=I.length/4|0,T=new Array(d),y=0;y>>24]^z[Q>>>16&255]^W[J>>>8&255]^$[255&ee]^d[Te++],ge=R[Q>>>24]^z[J>>>16&255]^W[ee>>>8&255]^$[255&j]^d[Te++],ae=R[J>>>24]^z[ee>>>16&255]^W[j>>>8&255]^$[255&Q]^d[Te++],Me=R[ee>>>24]^z[j>>>16&255]^W[Q>>>8&255]^$[255&J]^d[Te++],j=ie,Q=ge,J=ae,ee=Me;return ie=(y[j>>>24]<<24|y[Q>>>16&255]<<16|y[J>>>8&255]<<8|y[255&ee])^d[Te++],ge=(y[Q>>>24]<<24|y[J>>>16&255]<<16|y[ee>>>8&255]<<8|y[255&j])^d[Te++],ae=(y[J>>>24]<<24|y[ee>>>16&255]<<16|y[j>>>8&255]<<8|y[255&Q])^d[Te++],Me=(y[ee>>>24]<<24|y[j>>>16&255]<<16|y[Q>>>8&255]<<8|y[255&J])^d[Te++],[ie>>>=0,ge>>>=0,ae>>>=0,Me>>>=0]}var l=[0,1,2,4,8,16,32,64,128,27,54],x=function(){for(var I=new Array(256),d=0;d<256;d++)I[d]=d<128?d<<1:d<<1^283;for(var T=[],y=[],F=[[],[],[],[]],R=[[],[],[],[]],z=0,W=0,$=0;$<256;++$){var j=W^W<<1^W<<2^W<<3^W<<4;T[z]=j=j>>>8^255&j^99,y[j]=z;var Q=I[z],J=I[Q],ee=I[J],ie=257*I[j]^16843008*j;F[0][z]=ie<<24|ie>>>8,F[1][z]=ie<<16|ie>>>16,F[2][z]=ie<<8|ie>>>24,F[3][z]=ie,R[0][j]=(ie=16843009*ee^65537*J^257*Q^16843008*z)<<24|ie>>>8,R[1][j]=ie<<16|ie>>>16,R[2][j]=ie<<8|ie>>>24,R[3][j]=ie,0===z?z=W=1:(z=Q^I[I[I[ee^Q]]],W^=I[I[W]])}return{SBOX:T,INV_SBOX:y,SUB_MIX:F,INV_SUB_MIX:R}}();function f(I){this._key=t(I),this._reset()}f.blockSize=16,f.keySize=32,f.prototype.blockSize=f.blockSize,f.prototype.keySize=f.keySize,f.prototype._reset=function(){for(var I=this._key,d=I.length,T=d+6,y=4*(T+1),F=[],R=0;R>>24)>>>24]<<24|x.SBOX[z>>>16&255]<<16|x.SBOX[z>>>8&255]<<8|x.SBOX[255&z],z^=l[R/d|0]<<24):d>6&&R%d==4&&(z=x.SBOX[z>>>24]<<24|x.SBOX[z>>>16&255]<<16|x.SBOX[z>>>8&255]<<8|x.SBOX[255&z]),F[R]=F[R-d]^z}for(var W=[],$=0;$>>24]]^x.INV_SUB_MIX[1][x.SBOX[Q>>>16&255]]^x.INV_SUB_MIX[2][x.SBOX[Q>>>8&255]]^x.INV_SUB_MIX[3][x.SBOX[255&Q]]}this._nRounds=T,this._keySchedule=F,this._invKeySchedule=W},f.prototype.encryptBlockRaw=function(I){return S(I=t(I),this._keySchedule,x.SUB_MIX,x.SBOX,this._nRounds)},f.prototype.encryptBlock=function(I){var d=this.encryptBlockRaw(I),T=e.allocUnsafe(16);return T.writeUInt32BE(d[0],0),T.writeUInt32BE(d[1],4),T.writeUInt32BE(d[2],8),T.writeUInt32BE(d[3],12),T},f.prototype.decryptBlock=function(I){var d=(I=t(I))[1];I[1]=I[3],I[3]=d;var T=S(I,this._invKeySchedule,x.INV_SUB_MIX,x.INV_SBOX,this._nRounds),y=e.allocUnsafe(16);return y.writeUInt32BE(T[0],0),y.writeUInt32BE(T[3],4),y.writeUInt32BE(T[2],8),y.writeUInt32BE(T[1],12),y},f.prototype.scrub=function(){w(this._keySchedule),w(this._invKeySchedule),w(this._key)},Qe.exports.AES=f},9307:(Qe,te,g)=>{var e=g(2375),t=g(7054).Buffer,w=g(3247),S=g(1993),l=g(5917),x=g(3546),f=g(5725);function T(y,F,R,z){w.call(this);var W=t.alloc(4,0);this._cipher=new e.AES(F);var $=this._cipher.encryptBlock(W);this._ghash=new l($),R=function d(y,F,R){if(12===F.length)return y._finID=t.concat([F,t.from([0,0,0,1])]),t.concat([F,t.from([0,0,0,2])]);var z=new l(R),W=F.length,$=W%16;z.update(F),$&&z.update(t.alloc($=16-$,0)),z.update(t.alloc(8,0));var j=8*W,Q=t.alloc(8);Q.writeUIntBE(j,0,8),z.update(Q),y._finID=z.state;var J=t.from(y._finID);return f(J),J}(this,R,$),this._prev=t.from(R),this._cache=t.allocUnsafe(0),this._secCache=t.allocUnsafe(0),this._decrypt=z,this._alen=0,this._len=0,this._mode=y,this._authTag=null,this._called=!1}S(T,w),T.prototype._update=function(y){if(!this._called&&this._alen){var F=16-this._alen%16;F<16&&(F=t.alloc(F,0),this._ghash.update(F))}this._called=!0;var R=this._mode.encrypt(this,y);return this._ghash.update(this._decrypt?y:R),this._len+=y.length,R},T.prototype._final=function(){if(this._decrypt&&!this._authTag)throw new Error("Unsupported state or unable to authenticate data");var y=x(this._ghash.final(8*this._alen,8*this._len),this._cipher.encryptBlock(this._finID));if(this._decrypt&&function I(y,F){var R=0;y.length!==F.length&&R++;for(var z=Math.min(y.length,F.length),W=0;W{var e=g(350),t=g(102),w=g(3219);te.createCipher=te.Cipher=e.createCipher,te.createCipheriv=te.Cipheriv=e.createCipheriv,te.createDecipher=te.Decipher=t.createDecipher,te.createDecipheriv=te.Decipheriv=t.createDecipheriv,te.listCiphers=te.getCiphers=function S(){return Object.keys(w)}},102:(Qe,te,g)=>{var e=g(9307),t=g(7054).Buffer,w=g(503),S=g(1821),l=g(3247),x=g(2375),f=g(592);function d(z,W,$){l.call(this),this._cache=new T,this._last=void 0,this._cipher=new x.AES(W),this._prev=t.from($),this._mode=z,this._autopadding=!0}function T(){this.cache=t.allocUnsafe(0)}function F(z,W,$){var j=w[z.toLowerCase()];if(!j)throw new TypeError("invalid suite type");if("string"==typeof $&&($=t.from($)),"GCM"!==j.mode&&$.length!==j.iv)throw new TypeError("invalid iv length "+$.length);if("string"==typeof W&&(W=t.from(W)),W.length!==j.key/8)throw new TypeError("invalid key length "+W.length);return"stream"===j.type?new S(j.module,W,$,!0):"auth"===j.type?new e(j.module,W,$,!0):new d(j.module,W,$)}g(1993)(d,l),d.prototype._update=function(z){this._cache.add(z);for(var W,$,j=[];W=this._cache.get(this._autopadding);)$=this._mode.decrypt(this,W),j.push($);return t.concat(j)},d.prototype._final=function(){var z=this._cache.flush();if(this._autopadding)return function y(z){var W=z[15];if(W<1||W>16)throw new Error("unable to decrypt data");for(var $=-1;++$16)return W=this.cache.slice(0,16),this.cache=this.cache.slice(16),W}else if(this.cache.length>=16)return W=this.cache.slice(0,16),this.cache=this.cache.slice(16),W;return null},T.prototype.flush=function(){if(this.cache.length)return this.cache},te.createDecipher=function R(z,W){var $=w[z.toLowerCase()];if(!$)throw new TypeError("invalid suite type");var j=f(W,!1,$.key,$.iv);return F(z,j.key,j.iv)},te.createDecipheriv=F},350:(Qe,te,g)=>{var e=g(503),t=g(9307),w=g(7054).Buffer,S=g(1821),l=g(3247),x=g(2375),f=g(592);function d(z,W,$){l.call(this),this._cache=new y,this._cipher=new x.AES(W),this._prev=w.from($),this._mode=z,this._autopadding=!0}g(1993)(d,l),d.prototype._update=function(z){this._cache.add(z);for(var W,$,j=[];W=this._cache.get();)$=this._mode.encrypt(this,W),j.push($);return w.concat(j)};var T=w.alloc(16,16);function y(){this.cache=w.allocUnsafe(0)}function F(z,W,$){var j=e[z.toLowerCase()];if(!j)throw new TypeError("invalid suite type");if("string"==typeof W&&(W=w.from(W)),W.length!==j.key/8)throw new TypeError("invalid key length "+W.length);if("string"==typeof $&&($=w.from($)),"GCM"!==j.mode&&$.length!==j.iv)throw new TypeError("invalid iv length "+$.length);return"stream"===j.type?new S(j.module,W,$):"auth"===j.type?new t(j.module,W,$):new d(j.module,W,$)}d.prototype._final=function(){var z=this._cache.flush();if(this._autopadding)return z=this._mode.encrypt(this,z),this._cipher.scrub(),z;if(!z.equals(T))throw this._cipher.scrub(),new Error("data not multiple of block length")},d.prototype.setAutoPadding=function(z){return this._autopadding=!!z,this},y.prototype.add=function(z){this.cache=w.concat([this.cache,z])},y.prototype.get=function(){if(this.cache.length>15){var z=this.cache.slice(0,16);return this.cache=this.cache.slice(16),z}return null},y.prototype.flush=function(){for(var z=16-this.cache.length,W=w.allocUnsafe(z),$=-1;++${var e=g(7054).Buffer,t=e.alloc(16,0);function S(x){var f=e.allocUnsafe(16);return f.writeUInt32BE(x[0]>>>0,0),f.writeUInt32BE(x[1]>>>0,4),f.writeUInt32BE(x[2]>>>0,8),f.writeUInt32BE(x[3]>>>0,12),f}function l(x){this.h=x,this.state=e.alloc(16,0),this.cache=e.allocUnsafe(0)}l.prototype.ghash=function(x){for(var f=-1;++f0;I--)x[I]=x[I]>>>1|(1&x[I-1])<<31;x[0]=x[0]>>>1,T&&(x[0]=x[0]^225<<24)}this.state=S(f)},l.prototype.update=function(x){this.cache=e.concat([this.cache,x]);for(var f;this.cache.length>=16;)f=this.cache.slice(0,16),this.cache=this.cache.slice(16),this.ghash(f)},l.prototype.final=function(x,f){return this.cache.length&&this.ghash(e.concat([this.cache,t],16)),this.ghash(S([0,x,0,f])),this.state},Qe.exports=l},5725:Qe=>{Qe.exports=function te(g){for(var t,e=g.length;e--;){if(255!==(t=g.readUInt8(e))){t++,g.writeUInt8(t,e);break}g.writeUInt8(0,e)}}},4133:(Qe,te,g)=>{var e=g(3546);te.encrypt=function(t,w){var S=e(w,t._prev);return t._prev=t._cipher.encryptBlock(S),t._prev},te.decrypt=function(t,w){var S=t._prev;t._prev=w;var l=t._cipher.decryptBlock(w);return e(l,S)}},7090:(Qe,te,g)=>{var e=g(7054).Buffer,t=g(3546);function w(S,l,x){var f=l.length,I=t(l,S._cache);return S._cache=S._cache.slice(f),S._prev=e.concat([S._prev,x?l:I]),I}te.encrypt=function(S,l,x){for(var I,f=e.allocUnsafe(0);l.length;){if(0===S._cache.length&&(S._cache=S._cipher.encryptBlock(S._prev),S._prev=e.allocUnsafe(0)),!(S._cache.length<=l.length)){f=e.concat([f,w(S,l,x)]);break}f=e.concat([f,w(S,l.slice(0,I=S._cache.length),x)]),l=l.slice(I)}return f}},1039:(Qe,te,g)=>{var e=g(7054).Buffer;function t(S,l,x){for(var y,F,I=-1,T=0;++I<8;)T+=(128&(F=S._cipher.encryptBlock(S._prev)[0]^(y=l&1<<7-I?128:0)))>>I%8,S._prev=w(S._prev,x?y:F);return T}function w(S,l){var x=S.length,f=-1,I=e.allocUnsafe(S.length);for(S=e.concat([S,e.from([l])]);++f>7;return I}te.encrypt=function(S,l,x){for(var f=l.length,I=e.allocUnsafe(f),d=-1;++d{var e=g(7054).Buffer;function t(w,S,l){var f=w._cipher.encryptBlock(w._prev)[0]^S;return w._prev=e.concat([w._prev.slice(1),e.from([l?S:f])]),f}te.encrypt=function(w,S,l){for(var x=S.length,f=e.allocUnsafe(x),I=-1;++I{var e=g(3546),t=g(7054).Buffer,w=g(5725);function S(x){var f=x._cipher.encryptBlockRaw(x._prev);return w(x._prev),f}te.encrypt=function(x,f){var I=Math.ceil(f.length/16),d=x._cache.length;x._cache=t.concat([x._cache,t.allocUnsafe(16*I)]);for(var T=0;T{te.encrypt=function(g,e){return g._cipher.encryptBlock(e)},te.decrypt=function(g,e){return g._cipher.decryptBlock(e)}},503:(Qe,te,g)=>{var e={ECB:g(7513),CBC:g(4133),CFB:g(7090),CFB8:g(2576),CFB1:g(1039),OFB:g(6854),CTR:g(336),GCM:g(336)},t=g(3219);for(var w in t)t[w].module=e[t[w].mode];Qe.exports=t},6854:(Qe,te,g)=>{var e=g(3546);function t(w){return w._prev=w._cipher.encryptBlock(w._prev),w._prev}te.encrypt=function(w,S){for(;w._cache.length{var e=g(2375),t=g(7054).Buffer,w=g(3247);function l(x,f,I,d){w.call(this),this._cipher=new e.AES(f),this._prev=t.from(I),this._cache=t.allocUnsafe(0),this._secCache=t.allocUnsafe(0),this._decrypt=d,this._mode=x}g(1993)(l,w),l.prototype._update=function(x){return this._mode.encrypt(this,x,this._decrypt)},l.prototype._final=function(){this._cipher.scrub()},Qe.exports=l},8862:(Qe,te,g)=>{var e=g(9799),t=g(3388),w=g(503),S=g(9571),l=g(592);function I(y,F,R){if(y=y.toLowerCase(),w[y])return t.createCipheriv(y,F,R);if(S[y])return new e({key:F,iv:R,mode:y});throw new TypeError("invalid suite type")}function d(y,F,R){if(y=y.toLowerCase(),w[y])return t.createDecipheriv(y,F,R);if(S[y])return new e({key:F,iv:R,mode:y,decrypt:!0});throw new TypeError("invalid suite type")}te.createCipher=te.Cipher=function x(y,F){var R,z;if(y=y.toLowerCase(),w[y])R=w[y].key,z=w[y].iv;else{if(!S[y])throw new TypeError("invalid suite type");R=8*S[y].key,z=S[y].iv}var W=l(F,!1,R,z);return I(y,W.key,W.iv)},te.createCipheriv=te.Cipheriv=I,te.createDecipher=te.Decipher=function f(y,F){var R,z;if(y=y.toLowerCase(),w[y])R=w[y].key,z=w[y].iv;else{if(!S[y])throw new TypeError("invalid suite type");R=8*S[y].key,z=S[y].iv}var W=l(F,!1,R,z);return d(y,W.key,W.iv)},te.createDecipheriv=te.Decipheriv=d,te.listCiphers=te.getCiphers=function T(){return Object.keys(S).concat(t.getCiphers())}},9799:(Qe,te,g)=>{var e=g(3247),t=g(1549),w=g(1993),S=g(7054).Buffer,l={"des-ede3-cbc":t.CBC.instantiate(t.EDE),"des-ede3":t.EDE,"des-ede-cbc":t.CBC.instantiate(t.EDE),"des-ede":t.EDE,"des-cbc":t.CBC.instantiate(t.DES),"des-ecb":t.DES};function x(f){e.call(this);var T,I=f.mode.toLowerCase(),d=l[I];T=f.decrypt?"decrypt":"encrypt";var y=f.key;S.isBuffer(y)||(y=S.from(y)),("des-ede"===I||"des-ede-cbc"===I)&&(y=S.concat([y,y.slice(0,8)]));var F=f.iv;S.isBuffer(F)||(F=S.from(F)),this._des=d.create({key:y,iv:F,type:T})}l.des=l["des-cbc"],l.des3=l["des-ede3-cbc"],Qe.exports=x,w(x,e),x.prototype._update=function(f){return S.from(this._des.update(f))},x.prototype._final=function(){return S.from(this._des.final())}},9571:(Qe,te)=>{te["des-ecb"]={key:8,iv:0},te["des-cbc"]=te.des={key:8,iv:8},te["des-ede3-cbc"]=te.des3={key:24,iv:8},te["des-ede3"]={key:24,iv:0},te["des-ede-cbc"]={key:16,iv:8},te["des-ede"]={key:16,iv:0}},4105:(Qe,te,g)=>{var e=g(917),t=g(3342);function S(x){var I,f=x.modulus.byteLength();do{I=new e(t(f))}while(I.cmp(x.modulus)>=0||!I.umod(x.prime1)||!I.umod(x.prime2));return I}function l(x,f){var I=function w(x){var f=S(x);return{blinder:f.toRed(e.mont(x.modulus)).redPow(new e(x.publicExponent)).fromRed(),unblinder:f.invm(x.modulus)}}(f),d=f.modulus.byteLength(),T=new e(x).mul(I.blinder).umod(f.modulus),y=T.toRed(e.mont(f.prime1)),F=T.toRed(e.mont(f.prime2)),R=f.coefficient,z=f.prime1,W=f.prime2,$=y.redPow(f.exponent1).fromRed(),j=F.redPow(f.exponent2).fromRed(),Q=$.isub(j).imul(R).umod(z).imul(W);return j.iadd(Q).imul(I.unblinder).umod(f.modulus).toArrayLike(Buffer,"be",d)}l.getr=S,Qe.exports=l},9560:(Qe,te,g)=>{"use strict";Qe.exports=g(2951)},9143:(Qe,te,g)=>{"use strict";var e=g(7054).Buffer,t=g(7211),w=g(5942),S=g(1993),l=g(3150),x=g(4754),f=g(2951);function I(F){w.Writable.call(this);var R=f[F];if(!R)throw new Error("Unknown message digest");this._hashType=R.hash,this._hash=t(R.hash),this._tag=R.id,this._signType=R.sign}function d(F){w.Writable.call(this);var R=f[F];if(!R)throw new Error("Unknown message digest");this._hash=t(R.hash),this._tag=R.id,this._signType=R.sign}function T(F){return new I(F)}function y(F){return new d(F)}Object.keys(f).forEach(function(F){f[F].id=e.from(f[F].id,"hex"),f[F.toLowerCase()]=f[F]}),S(I,w.Writable),I.prototype._write=function(R,z,W){this._hash.update(R),W()},I.prototype.update=function(R,z){return this._hash.update("string"==typeof R?e.from(R,z):R),this},I.prototype.sign=function(R,z){this.end();var W=this._hash.digest(),$=l(W,R,this._hashType,this._signType,this._tag);return z?$.toString(z):$},S(d,w.Writable),d.prototype._write=function(R,z,W){this._hash.update(R),W()},d.prototype.update=function(R,z){return this._hash.update("string"==typeof R?e.from(R,z):R),this},d.prototype.verify=function(R,z,W){var $="string"==typeof z?e.from(z,W):z;this.end();var j=this._hash.digest();return x($,j,R,this._signType,this._tag)},Qe.exports={Sign:T,Verify:y,createSign:T,createVerify:y}},3150:(Qe,te,g)=>{"use strict";var e=g(7054).Buffer,t=g(6432),w=g(4105),S=g(518).ec,l=g(917),x=g(5667),f=g(4589);function R(Q,J,ee,ie){if((Q=e.from(Q.toArray())).length0&&ee.ishrn(ie),ee}function $(Q,J,ee){var ie,ge;do{for(ie=e.alloc(0);8*ie.length{"use strict";var e=g(7054).Buffer,t=g(917),w=g(518).ec,S=g(5667),l=g(4589);function d(T,y){if(T.cmpn(0)<=0)throw new Error("invalid sig");if(T.cmp(y)>=0)throw new Error("invalid sig")}Qe.exports=function x(T,y,F,R,z){var W=S(F);if("ec"===W.type){if("ecdsa"!==R&&"ecdsa/rsa"!==R)throw new Error("wrong public key type");return function f(T,y,F){var R=l[F.data.algorithm.curve.join(".")];if(!R)throw new Error("unknown curve "+F.data.algorithm.curve.join("."));return new w(R).verify(y,T,F.data.subjectPrivateKey.data)}(T,y,W)}if("dsa"===W.type){if("dsa"!==R)throw new Error("wrong public key type");return function I(T,y,F){var R=F.data.p,z=F.data.q,W=F.data.g,$=F.data.pub_key,j=S.signature.decode(T,"der"),Q=j.s,J=j.r;d(Q,z),d(J,z);var ee=t.mont(R),ie=Q.invm(z);return 0===W.toRed(ee).redPow(new t(y).mul(ie).mod(z)).fromRed().mul($.toRed(ee).redPow(J.mul(ie).mod(z)).fromRed()).mod(R).mod(z).cmp(J)}(T,y,W)}if("rsa"!==R&&"ecdsa/rsa"!==R)throw new Error("wrong public key type");y=e.concat([z,y]);for(var $=W.modulus.byteLength(),j=[1],Q=0;y.length+j.length+2<$;)j.push(255),Q+=1;j.push(0);for(var J=-1;++J{Qe.exports=function(g,e){for(var t=Math.min(g.length,e.length),w=new Buffer(t),S=0;S{"use strict";var e=g(3981),t=g(2020),w="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;te.Buffer=f,te.SlowBuffer=function Q(_e){return+_e!=_e&&(_e=0),f.alloc(+_e)},te.INSPECT_MAX_BYTES=50;var S=2147483647;function x(_e){if(_e>S)throw new RangeError('The value "'+_e+'" is invalid for option "size"');var be=new Uint8Array(_e);return Object.setPrototypeOf(be,f.prototype),be}function f(_e,be,pe){if("number"==typeof _e){if("string"==typeof be)throw new TypeError('The "string" argument must be of type string. Received type number');return y(_e)}return I(_e,be,pe)}function I(_e,be,pe){if("string"==typeof _e)return function F(_e,be){if(("string"!=typeof be||""===be)&&(be="utf8"),!f.isEncoding(be))throw new TypeError("Unknown encoding: "+be);var pe=0|J(_e,be),Ze=x(pe),_t=Ze.write(_e,be);return _t!==pe&&(Ze=Ze.slice(0,_t)),Ze}(_e,be);if(ArrayBuffer.isView(_e))return function z(_e){if(fe(_e,Uint8Array)){var be=new Uint8Array(_e);return W(be.buffer,be.byteOffset,be.byteLength)}return R(_e)}(_e);if(null==_e)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof _e);if(fe(_e,ArrayBuffer)||_e&&fe(_e.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(fe(_e,SharedArrayBuffer)||_e&&fe(_e.buffer,SharedArrayBuffer)))return W(_e,be,pe);if("number"==typeof _e)throw new TypeError('The "value" argument must not be of type number. Received type number');var Ze=_e.valueOf&&_e.valueOf();if(null!=Ze&&Ze!==_e)return f.from(Ze,be,pe);var _t=function $(_e){if(f.isBuffer(_e)){var be=0|j(_e.length),pe=x(be);return 0===pe.length||_e.copy(pe,0,0,be),pe}return void 0!==_e.length?"number"!=typeof _e.length||ke(_e.length)?x(0):R(_e):"Buffer"===_e.type&&Array.isArray(_e.data)?R(_e.data):void 0}(_e);if(_t)return _t;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof _e[Symbol.toPrimitive])return f.from(_e[Symbol.toPrimitive]("string"),be,pe);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof _e)}function d(_e){if("number"!=typeof _e)throw new TypeError('"size" argument must be of type number');if(_e<0)throw new RangeError('The value "'+_e+'" is invalid for option "size"')}function y(_e){return d(_e),x(_e<0?0:0|j(_e))}function R(_e){for(var be=_e.length<0?0:0|j(_e.length),pe=x(be),Ze=0;Ze=S)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+S.toString(16)+" bytes");return 0|_e}function J(_e,be){if(f.isBuffer(_e))return _e.length;if(ArrayBuffer.isView(_e)||fe(_e,ArrayBuffer))return _e.byteLength;if("string"!=typeof _e)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof _e);var pe=_e.length,Ze=arguments.length>2&&!0===arguments[2];if(!Ze&&0===pe)return 0;for(var _t=!1;;)switch(be){case"ascii":case"latin1":case"binary":return pe;case"utf8":case"utf-8":return Ke(_e).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*pe;case"hex":return pe>>>1;case"base64":return me(_e).length;default:if(_t)return Ze?-1:Ke(_e).length;be=(""+be).toLowerCase(),_t=!0}}function ee(_e,be,pe){var Ze=!1;if((void 0===be||be<0)&&(be=0),be>this.length||((void 0===pe||pe>this.length)&&(pe=this.length),pe<=0)||(pe>>>=0)<=(be>>>=0))return"";for(_e||(_e="utf8");;)switch(_e){case"hex":return _(this,be,pe);case"utf8":case"utf-8":return m(this,be,pe);case"ascii":return k(this,be,pe);case"latin1":case"binary":return L(this,be,pe);case"base64":return c(this,be,pe);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return r(this,be,pe);default:if(Ze)throw new TypeError("Unknown encoding: "+_e);_e=(_e+"").toLowerCase(),Ze=!0}}function ie(_e,be,pe){var Ze=_e[be];_e[be]=_e[pe],_e[pe]=Ze}function ge(_e,be,pe,Ze,_t){if(0===_e.length)return-1;if("string"==typeof pe?(Ze=pe,pe=0):pe>2147483647?pe=2147483647:pe<-2147483648&&(pe=-2147483648),ke(pe=+pe)&&(pe=_t?0:_e.length-1),pe<0&&(pe=_e.length+pe),pe>=_e.length){if(_t)return-1;pe=_e.length-1}else if(pe<0){if(!_t)return-1;pe=0}if("string"==typeof be&&(be=f.from(be,Ze)),f.isBuffer(be))return 0===be.length?-1:ae(_e,be,pe,Ze,_t);if("number"==typeof be)return be&=255,"function"==typeof Uint8Array.prototype.indexOf?_t?Uint8Array.prototype.indexOf.call(_e,be,pe):Uint8Array.prototype.lastIndexOf.call(_e,be,pe):ae(_e,[be],pe,Ze,_t);throw new TypeError("val must be string, number or Buffer")}function ae(_e,be,pe,Ze,_t){var ue,at=1,pt=_e.length,Xt=be.length;if(void 0!==Ze&&("ucs2"===(Ze=String(Ze).toLowerCase())||"ucs-2"===Ze||"utf16le"===Ze||"utf-16le"===Ze)){if(_e.length<2||be.length<2)return-1;at=2,pt/=2,Xt/=2,pe/=2}function ye(yt,Ye){return 1===at?yt[Ye]:yt.readUInt16BE(Ye*at)}if(_t){var Ie=-1;for(ue=pe;uept&&(pe=pt-Xt),ue=pe;ue>=0;ue--){for(var He=!0,Xe=0;Xe_t&&(Ze=_t):Ze=_t;var at=be.length;Ze>at/2&&(Ze=at/2);for(var pt=0;pt>8,at.push(pe%256),at.push(Ze);return at}(be,_e.length-pe),_e,pe,Ze)}function c(_e,be,pe){return e.fromByteArray(0===be&&pe===_e.length?_e:_e.slice(be,pe))}function m(_e,be,pe){pe=Math.min(_e.length,pe);for(var Ze=[],_t=be;_t239?4:at>223?3:at>191?2:1;if(_t+Xt<=pe)switch(Xt){case 1:at<128&&(pt=at);break;case 2:128==(192&(ye=_e[_t+1]))&&(He=(31&at)<<6|63&ye)>127&&(pt=He);break;case 3:ue=_e[_t+2],128==(192&(ye=_e[_t+1]))&&128==(192&ue)&&(He=(15&at)<<12|(63&ye)<<6|63&ue)>2047&&(He<55296||He>57343)&&(pt=He);break;case 4:ue=_e[_t+2],Ie=_e[_t+3],128==(192&(ye=_e[_t+1]))&&128==(192&ue)&&128==(192&Ie)&&(He=(15&at)<<18|(63&ye)<<12|(63&ue)<<6|63&Ie)>65535&&He<1114112&&(pt=He)}null===pt?(pt=65533,Xt=1):pt>65535&&(Ze.push((pt-=65536)>>>10&1023|55296),pt=56320|1023&pt),Ze.push(pt),_t+=Xt}return function C(_e){var be=_e.length;if(be<=h)return String.fromCharCode.apply(String,_e);for(var pe="",Ze=0;Ze_t.length?f.from(pt).copy(_t,at):Uint8Array.prototype.set.call(_t,pt,at);else{if(!f.isBuffer(pt))throw new TypeError('"list" argument must be an Array of Buffers');pt.copy(_t,at)}at+=pt.length}return _t},f.byteLength=J,f.prototype._isBuffer=!0,f.prototype.swap16=function(){var be=this.length;if(be%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var pe=0;pepe&&(be+=" ... "),""},w&&(f.prototype[w]=f.prototype.inspect),f.prototype.compare=function(be,pe,Ze,_t,at){if(fe(be,Uint8Array)&&(be=f.from(be,be.offset,be.byteLength)),!f.isBuffer(be))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof be);if(void 0===pe&&(pe=0),void 0===Ze&&(Ze=be?be.length:0),void 0===_t&&(_t=0),void 0===at&&(at=this.length),pe<0||Ze>be.length||_t<0||at>this.length)throw new RangeError("out of range index");if(_t>=at&&pe>=Ze)return 0;if(_t>=at)return-1;if(pe>=Ze)return 1;if(this===be)return 0;for(var pt=(at>>>=0)-(_t>>>=0),Xt=(Ze>>>=0)-(pe>>>=0),ye=Math.min(pt,Xt),ue=this.slice(_t,at),Ie=be.slice(pe,Ze),He=0;He>>=0,isFinite(Ze)?(Ze>>>=0,void 0===_t&&(_t="utf8")):(_t=Ze,Ze=void 0)}var at=this.length-pe;if((void 0===Ze||Ze>at)&&(Ze=at),be.length>0&&(Ze<0||pe<0)||pe>this.length)throw new RangeError("Attempt to write outside buffer bounds");_t||(_t="utf8");for(var pt=!1;;)switch(_t){case"hex":return Me(this,be,pe,Ze);case"utf8":case"utf-8":return Te(this,be,pe,Ze);case"ascii":case"latin1":case"binary":return de(this,be,pe,Ze);case"base64":return D(this,be,pe,Ze);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return n(this,be,pe,Ze);default:if(pt)throw new TypeError("Unknown encoding: "+_t);_t=(""+_t).toLowerCase(),pt=!0}},f.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var h=4096;function k(_e,be,pe){var Ze="";pe=Math.min(_e.length,pe);for(var _t=be;_tZe)&&(pe=Ze);for(var _t="",at=be;atpe)throw new RangeError("Trying to access beyond buffer length")}function V(_e,be,pe,Ze,_t,at){if(!f.isBuffer(_e))throw new TypeError('"buffer" argument must be a Buffer instance');if(be>_t||be_e.length)throw new RangeError("Index out of range")}function N(_e,be,pe,Ze,_t,at){if(pe+Ze>_e.length)throw new RangeError("Index out of range");if(pe<0)throw new RangeError("Index out of range")}function ne(_e,be,pe,Ze,_t){return be=+be,pe>>>=0,_t||N(_e,0,pe,4),t.write(_e,be,pe,Ze,23,4),pe+4}function Ee(_e,be,pe,Ze,_t){return be=+be,pe>>>=0,_t||N(_e,0,pe,8),t.write(_e,be,pe,Ze,52,8),pe+8}f.prototype.slice=function(be,pe){var Ze=this.length;(be=~~be)<0?(be+=Ze)<0&&(be=0):be>Ze&&(be=Ze),(pe=void 0===pe?Ze:~~pe)<0?(pe+=Ze)<0&&(pe=0):pe>Ze&&(pe=Ze),pe>>=0,pe>>>=0,Ze||v(be,pe,this.length);for(var _t=this[be],at=1,pt=0;++pt>>=0,pe>>>=0,Ze||v(be,pe,this.length);for(var _t=this[be+--pe],at=1;pe>0&&(at*=256);)_t+=this[be+--pe]*at;return _t},f.prototype.readUint8=f.prototype.readUInt8=function(be,pe){return be>>>=0,pe||v(be,1,this.length),this[be]},f.prototype.readUint16LE=f.prototype.readUInt16LE=function(be,pe){return be>>>=0,pe||v(be,2,this.length),this[be]|this[be+1]<<8},f.prototype.readUint16BE=f.prototype.readUInt16BE=function(be,pe){return be>>>=0,pe||v(be,2,this.length),this[be]<<8|this[be+1]},f.prototype.readUint32LE=f.prototype.readUInt32LE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),(this[be]|this[be+1]<<8|this[be+2]<<16)+16777216*this[be+3]},f.prototype.readUint32BE=f.prototype.readUInt32BE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),16777216*this[be]+(this[be+1]<<16|this[be+2]<<8|this[be+3])},f.prototype.readIntLE=function(be,pe,Ze){be>>>=0,pe>>>=0,Ze||v(be,pe,this.length);for(var _t=this[be],at=1,pt=0;++pt=(at*=128)&&(_t-=Math.pow(2,8*pe)),_t},f.prototype.readIntBE=function(be,pe,Ze){be>>>=0,pe>>>=0,Ze||v(be,pe,this.length);for(var _t=pe,at=1,pt=this[be+--_t];_t>0&&(at*=256);)pt+=this[be+--_t]*at;return pt>=(at*=128)&&(pt-=Math.pow(2,8*pe)),pt},f.prototype.readInt8=function(be,pe){return be>>>=0,pe||v(be,1,this.length),128&this[be]?-1*(255-this[be]+1):this[be]},f.prototype.readInt16LE=function(be,pe){be>>>=0,pe||v(be,2,this.length);var Ze=this[be]|this[be+1]<<8;return 32768&Ze?4294901760|Ze:Ze},f.prototype.readInt16BE=function(be,pe){be>>>=0,pe||v(be,2,this.length);var Ze=this[be+1]|this[be]<<8;return 32768&Ze?4294901760|Ze:Ze},f.prototype.readInt32LE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),this[be]|this[be+1]<<8|this[be+2]<<16|this[be+3]<<24},f.prototype.readInt32BE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),this[be]<<24|this[be+1]<<16|this[be+2]<<8|this[be+3]},f.prototype.readFloatLE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),t.read(this,be,!0,23,4)},f.prototype.readFloatBE=function(be,pe){return be>>>=0,pe||v(be,4,this.length),t.read(this,be,!1,23,4)},f.prototype.readDoubleLE=function(be,pe){return be>>>=0,pe||v(be,8,this.length),t.read(this,be,!0,52,8)},f.prototype.readDoubleBE=function(be,pe){return be>>>=0,pe||v(be,8,this.length),t.read(this,be,!1,52,8)},f.prototype.writeUintLE=f.prototype.writeUIntLE=function(be,pe,Ze,_t){be=+be,pe>>>=0,Ze>>>=0,_t||V(this,be,pe,Ze,Math.pow(2,8*Ze)-1,0);var pt=1,Xt=0;for(this[pe]=255&be;++Xt>>=0,Ze>>>=0,_t||V(this,be,pe,Ze,Math.pow(2,8*Ze)-1,0);var pt=Ze-1,Xt=1;for(this[pe+pt]=255&be;--pt>=0&&(Xt*=256);)this[pe+pt]=be/Xt&255;return pe+Ze},f.prototype.writeUint8=f.prototype.writeUInt8=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,1,255,0),this[pe]=255&be,pe+1},f.prototype.writeUint16LE=f.prototype.writeUInt16LE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,2,65535,0),this[pe]=255&be,this[pe+1]=be>>>8,pe+2},f.prototype.writeUint16BE=f.prototype.writeUInt16BE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,2,65535,0),this[pe]=be>>>8,this[pe+1]=255&be,pe+2},f.prototype.writeUint32LE=f.prototype.writeUInt32LE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,4,4294967295,0),this[pe+3]=be>>>24,this[pe+2]=be>>>16,this[pe+1]=be>>>8,this[pe]=255&be,pe+4},f.prototype.writeUint32BE=f.prototype.writeUInt32BE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,4,4294967295,0),this[pe]=be>>>24,this[pe+1]=be>>>16,this[pe+2]=be>>>8,this[pe+3]=255&be,pe+4},f.prototype.writeIntLE=function(be,pe,Ze,_t){if(be=+be,pe>>>=0,!_t){var at=Math.pow(2,8*Ze-1);V(this,be,pe,Ze,at-1,-at)}var pt=0,Xt=1,ye=0;for(this[pe]=255&be;++pt>>=0,!_t){var at=Math.pow(2,8*Ze-1);V(this,be,pe,Ze,at-1,-at)}var pt=Ze-1,Xt=1,ye=0;for(this[pe+pt]=255&be;--pt>=0&&(Xt*=256);)be<0&&0===ye&&0!==this[pe+pt+1]&&(ye=1),this[pe+pt]=(be/Xt|0)-ye&255;return pe+Ze},f.prototype.writeInt8=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,1,127,-128),be<0&&(be=255+be+1),this[pe]=255&be,pe+1},f.prototype.writeInt16LE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,2,32767,-32768),this[pe]=255&be,this[pe+1]=be>>>8,pe+2},f.prototype.writeInt16BE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,2,32767,-32768),this[pe]=be>>>8,this[pe+1]=255&be,pe+2},f.prototype.writeInt32LE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,4,2147483647,-2147483648),this[pe]=255&be,this[pe+1]=be>>>8,this[pe+2]=be>>>16,this[pe+3]=be>>>24,pe+4},f.prototype.writeInt32BE=function(be,pe,Ze){return be=+be,pe>>>=0,Ze||V(this,be,pe,4,2147483647,-2147483648),be<0&&(be=4294967295+be+1),this[pe]=be>>>24,this[pe+1]=be>>>16,this[pe+2]=be>>>8,this[pe+3]=255&be,pe+4},f.prototype.writeFloatLE=function(be,pe,Ze){return ne(this,be,pe,!0,Ze)},f.prototype.writeFloatBE=function(be,pe,Ze){return ne(this,be,pe,!1,Ze)},f.prototype.writeDoubleLE=function(be,pe,Ze){return Ee(this,be,pe,!0,Ze)},f.prototype.writeDoubleBE=function(be,pe,Ze){return Ee(this,be,pe,!1,Ze)},f.prototype.copy=function(be,pe,Ze,_t){if(!f.isBuffer(be))throw new TypeError("argument should be a Buffer");if(Ze||(Ze=0),!_t&&0!==_t&&(_t=this.length),pe>=be.length&&(pe=be.length),pe||(pe=0),_t>0&&_t=this.length)throw new RangeError("Index out of range");if(_t<0)throw new RangeError("sourceEnd out of bounds");_t>this.length&&(_t=this.length),be.length-pe<_t-Ze&&(_t=be.length-pe+Ze);var at=_t-Ze;return this===be&&"function"==typeof Uint8Array.prototype.copyWithin?this.copyWithin(pe,Ze,_t):Uint8Array.prototype.set.call(be,this.subarray(Ze,_t),pe),at},f.prototype.fill=function(be,pe,Ze,_t){if("string"==typeof be){if("string"==typeof pe?(_t=pe,pe=0,Ze=this.length):"string"==typeof Ze&&(_t=Ze,Ze=this.length),void 0!==_t&&"string"!=typeof _t)throw new TypeError("encoding must be a string");if("string"==typeof _t&&!f.isEncoding(_t))throw new TypeError("Unknown encoding: "+_t);if(1===be.length){var at=be.charCodeAt(0);("utf8"===_t&&at<128||"latin1"===_t)&&(be=at)}}else"number"==typeof be?be&=255:"boolean"==typeof be&&(be=Number(be));if(pe<0||this.length>>=0,Ze=void 0===Ze?this.length:Ze>>>0,be||(be=0),"number"==typeof be)for(pt=pe;pt55295&&pe<57344){if(!_t){if(pe>56319){(be-=3)>-1&&at.push(239,191,189);continue}if(pt+1===Ze){(be-=3)>-1&&at.push(239,191,189);continue}_t=pe;continue}if(pe<56320){(be-=3)>-1&&at.push(239,191,189),_t=pe;continue}pe=65536+(_t-55296<<10|pe-56320)}else _t&&(be-=3)>-1&&at.push(239,191,189);if(_t=null,pe<128){if((be-=1)<0)break;at.push(pe)}else if(pe<2048){if((be-=2)<0)break;at.push(pe>>6|192,63&pe|128)}else if(pe<65536){if((be-=3)<0)break;at.push(pe>>12|224,pe>>6&63|128,63&pe|128)}else{if(!(pe<1114112))throw new Error("Invalid code point");if((be-=4)<0)break;at.push(pe>>18|240,pe>>12&63|128,pe>>6&63|128,63&pe|128)}}return at}function me(_e){return e.toByteArray(function qe(_e){if((_e=(_e=_e.split("=")[0]).trim().replace(ze,"")).length<2)return"";for(;_e.length%4!=0;)_e+="=";return _e}(_e))}function ce(_e,be,pe,Ze){for(var _t=0;_t=be.length||_t>=_e.length);++_t)be[_t+pe]=_e[_t];return _t}function fe(_e,be){return _e instanceof be||null!=_e&&null!=_e.constructor&&null!=_e.constructor.name&&_e.constructor.name===be.name}function ke(_e){return _e!=_e}var mt=function(){for(var _e="0123456789abcdef",be=new Array(256),pe=0;pe<16;++pe)for(var Ze=16*pe,_t=0;_t<16;++_t)be[Ze+_t]=_e[pe]+_e[_t];return be}()},3247:(Qe,te,g)=>{var e=g(7054).Buffer,t=g(7045).Transform,w=g(8454).I;function l(x){t.call(this),this.hashMode="string"==typeof x,this.hashMode?this[x]=this._finalOrDigest:this.final=this._finalOrDigest,this._final&&(this.__final=this._final,this._final=null),this._decoder=null,this._encoding=null}g(1993)(l,t),l.prototype.update=function(x,f,I){"string"==typeof x&&(x=e.from(x,f));var d=this._update(x);return this.hashMode?this:(I&&(d=this._toString(d,I)),d)},l.prototype.setAutoPadding=function(){},l.prototype.getAuthTag=function(){throw new Error("trying to get auth tag in unsupported state")},l.prototype.setAuthTag=function(){throw new Error("trying to set auth tag in unsupported state")},l.prototype.setAAD=function(){throw new Error("trying to set aad in unsupported state")},l.prototype._transform=function(x,f,I){var d;try{this.hashMode?this._update(x):this.push(this._update(x))}catch(T){d=T}finally{I(d)}},l.prototype._flush=function(x){var f;try{this.push(this.__final())}catch(I){f=I}x(f)},l.prototype._finalOrDigest=function(x){var f=this.__final()||e.alloc(0);return x&&(f=this._toString(f,x,!0)),f},l.prototype._toString=function(x,f,I){if(this._decoder||(this._decoder=new w(f),this._encoding=f),this._encoding!==f)throw new Error("can't switch encodings");var d=this._decoder.write(x);return I&&(d+=this._decoder.end()),d},Qe.exports=l},4740:function(Qe){!function(te){"use strict";var g={bytesToHex:function(w){return function e(w){return w.map(function(S){return function t(w,S){return w.length>S?w:Array(S-w.length+1).join("0")+w}(S.toString(16),2)}).join("")}(w)},hexToBytes:function(w){if(w.length%2==1)throw new Error("hexToBytes can't have a string with an odd number of characters.");return 0===w.indexOf("0x")&&(w=w.slice(2)),w.match(/../g).map(function(S){return parseInt(S,16)})}};Qe.exports?Qe.exports=g:te.convertHex=g}(this)},820:function(Qe){!function(te){"use strict";var g={bytesToString:function(e){return e.map(function(t){return String.fromCharCode(t)}).join("")},stringToBytes:function(e){return e.split("").map(function(t){return t.charCodeAt(0)})}};g.UTF8={bytesToString:function(e){return decodeURIComponent(escape(g.bytesToString(e)))},stringToBytes:function(e){return g.stringToBytes(unescape(encodeURIComponent(e)))}},Qe.exports?Qe.exports=g:te.convertString=g}(this)},7637:(Qe,te,g)=>{function W($){return Object.prototype.toString.call($)}te.isArray=function e($){return Array.isArray?Array.isArray($):"[object Array]"===W($)},te.isBoolean=function t($){return"boolean"==typeof $},te.isNull=function w($){return null===$},te.isNullOrUndefined=function S($){return null==$},te.isNumber=function l($){return"number"==typeof $},te.isString=function x($){return"string"==typeof $},te.isSymbol=function f($){return"symbol"==typeof $},te.isUndefined=function I($){return void 0===$},te.isRegExp=function d($){return"[object RegExp]"===W($)},te.isObject=function T($){return"object"==typeof $&&null!==$},te.isDate=function y($){return"[object Date]"===W($)},te.isError=function F($){return"[object Error]"===W($)||$ instanceof Error},te.isFunction=function R($){return"function"==typeof $},te.isPrimitive=function z($){return null===$||"boolean"==typeof $||"number"==typeof $||"string"==typeof $||"symbol"==typeof $||typeof $>"u"},te.isBuffer=g(3838).Buffer.isBuffer},7303:(Qe,te,g)=>{var e=g(518),t=g(9606);Qe.exports=function(f){return new S(f)};var w={secp256k1:{name:"secp256k1",byteLength:32},secp224r1:{name:"p224",byteLength:28},prime256v1:{name:"p256",byteLength:32},prime192v1:{name:"p192",byteLength:24},ed25519:{name:"ed25519",byteLength:32},secp384r1:{name:"p384",byteLength:48},secp521r1:{name:"p521",byteLength:66}};function S(x){this.curveType=w[x],this.curveType||(this.curveType={name:x}),this.curve=new e.ec(this.curveType.name),this.keys=void 0}function l(x,f,I){Array.isArray(x)||(x=x.toArray());var d=new Buffer(x);if(I&&d.length=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],y=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],F=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function z(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ee.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},7211:(Qe,te,g)=>{"use strict";var e=g(1993),t=g(4725),w=g(6636),S=g(5443),l=g(3247);function x(f){l.call(this,"digest"),this._hash=f}e(x,l),x.prototype._update=function(f){this._hash.update(f)},x.prototype._final=function(){return this._hash.digest()},Qe.exports=function(I){return"md5"===(I=I.toLowerCase())?new t:"rmd160"===I||"ripemd160"===I?new w:new x(S(I))}},3407:(Qe,te,g)=>{var e=g(4725);Qe.exports=function(t){return(new e).update(t).digest()}},6432:(Qe,te,g)=>{"use strict";var e=g(1993),t=g(509),w=g(3247),S=g(7054).Buffer,l=g(3407),x=g(6636),f=g(5443),I=S.alloc(128);function d(T,y){w.call(this,"digest"),"string"==typeof y&&(y=S.from(y));var F="sha512"===T||"sha384"===T?128:64;this._alg=T,this._key=y,y.length>F?y=("rmd160"===T?new x:f(T)).update(y).digest():y.length{"use strict";var e=g(1993),t=g(7054).Buffer,w=g(3247),S=t.alloc(128),l=64;function x(f,I){w.call(this,"digest"),"string"==typeof I&&(I=t.from(I)),this._alg=f,this._key=I,I.length>l?I=f(I):I.length{"use strict";te.randomBytes=te.rng=te.pseudoRandomBytes=te.prng=g(3342),te.createHash=te.Hash=g(7211),te.createHmac=te.Hmac=g(6432);var e=g(9560),t=Object.keys(e),w=["sha1","sha224","sha256","sha384","sha512","md5","rmd160"].concat(t);te.getHashes=function(){return w};var S=g(3397);te.pbkdf2=S.pbkdf2,te.pbkdf2Sync=S.pbkdf2Sync;var l=g(8862);te.Cipher=l.Cipher,te.createCipher=l.createCipher,te.Cipheriv=l.Cipheriv,te.createCipheriv=l.createCipheriv,te.Decipher=l.Decipher,te.createDecipher=l.createDecipher,te.Decipheriv=l.Decipheriv,te.createDecipheriv=l.createDecipheriv,te.getCiphers=l.getCiphers,te.listCiphers=l.listCiphers;var x=g(4377);te.DiffieHellmanGroup=x.DiffieHellmanGroup,te.createDiffieHellmanGroup=x.createDiffieHellmanGroup,te.getDiffieHellman=x.getDiffieHellman,te.createDiffieHellman=x.createDiffieHellman,te.DiffieHellman=x.DiffieHellman;var f=g(9143);te.createSign=f.createSign,te.Sign=f.Sign,te.createVerify=f.createVerify,te.Verify=f.Verify,te.createECDH=g(7303);var I=g(2965);te.publicEncrypt=I.publicEncrypt,te.privateEncrypt=I.privateEncrypt,te.publicDecrypt=I.publicDecrypt,te.privateDecrypt=I.privateDecrypt;var d=g(9682);te.randomFill=d.randomFill,te.randomFillSync=d.randomFillSync,te.createCredentials=function(){throw new Error(["sorry, createCredentials is not implemented yet","we accept pull requests","https://github.com/crypto-browserify/crypto-browserify"].join("\n"))},te.constants={DH_CHECK_P_NOT_SAFE_PRIME:2,DH_CHECK_P_NOT_PRIME:1,DH_UNABLE_TO_CHECK_GENERATOR:4,DH_NOT_SUITABLE_GENERATOR:8,NPN_ENABLED:1,ALPN_ENABLED:1,RSA_PKCS1_PADDING:1,RSA_SSLV23_PADDING:2,RSA_NO_PADDING:3,RSA_PKCS1_OAEP_PADDING:4,RSA_X931_PADDING:5,RSA_PKCS1_PSS_PADDING:6,POINT_CONVERSION_COMPRESSED:2,POINT_CONVERSION_UNCOMPRESSED:4,POINT_CONVERSION_HYBRID:6}},1549:(Qe,te,g)=>{"use strict";te.utils=g(5671),te.Cipher=g(219),te.DES=g(4166),te.CBC=g(8800),te.EDE=g(2122)},8800:(Qe,te,g)=>{"use strict";var e=g(9210),t=g(1993),w={};function S(x){e.equal(x.length,8,"Invalid IV length"),this.iv=new Array(8);for(var f=0;f{"use strict";var e=g(9210);function t(w){this.options=w,this.type=this.options.type,this.blockSize=8,this._init(),this.buffer=new Array(this.blockSize),this.bufferOff=0,this.padding=!1!==w.padding}Qe.exports=t,t.prototype._init=function(){},t.prototype.update=function(S){return 0===S.length?[]:"decrypt"===this.type?this._updateDecrypt(S):this._updateEncrypt(S)},t.prototype._buffer=function(S,l){for(var x=Math.min(this.buffer.length-this.bufferOff,S.length-l),f=0;f0;f--)l+=this._buffer(S,l),x+=this._flushBuffer(I,x);return l+=this._buffer(S,l),I},t.prototype.final=function(S){var l,x;return S&&(l=this.update(S)),x="encrypt"===this.type?this._finalEncrypt():this._finalDecrypt(),l?l.concat(x):x},t.prototype._pad=function(S,l){if(0===l)return!1;for(;l{"use strict";var e=g(9210),t=g(1993),w=g(5671),S=g(219);function l(){this.tmp=new Array(2),this.keys=null}function x(I){S.call(this,I);var d=new l;this._desState=d,this.deriveKeys(d,I.key)}t(x,S),Qe.exports=x,x.create=function(d){return new x(d)};var f=[1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1];x.prototype.deriveKeys=function(d,T){d.keys=new Array(32),e.equal(T.length,this.blockSize,"Invalid key length");var y=w.readUInt32BE(T,0),F=w.readUInt32BE(T,4);w.pc1(y,F,d.tmp,0),y=d.tmp[0],F=d.tmp[1];for(var R=0;R>>1];y=w.r28shl(y,z),F=w.r28shl(F,z),w.pc2(y,F,d.keys,R)}},x.prototype._update=function(d,T,y,F){var R=this._desState,z=w.readUInt32BE(d,T),W=w.readUInt32BE(d,T+4);w.ip(z,W,R.tmp,0),z=R.tmp[0],W=R.tmp[1],"encrypt"===this.type?this._encrypt(R,z,W,R.tmp,0):this._decrypt(R,z,W,R.tmp,0),W=R.tmp[1],w.writeUInt32BE(y,z=R.tmp[0],F),w.writeUInt32BE(y,W,F+4)},x.prototype._pad=function(d,T){if(!1===this.padding)return!1;for(var y=d.length-T,F=T;F>>0,z=ie}w.rip(W,z,F,R)},x.prototype._decrypt=function(d,T,y,F,R){for(var z=y,W=T,$=d.keys.length-2;$>=0;$-=2){var j=d.keys[$],Q=d.keys[$+1];w.expand(z,d.tmp,0);var J=w.substitute(j^=d.tmp[0],Q^=d.tmp[1]),ie=z;z=(W^w.permute(J))>>>0,W=ie}w.rip(z,W,F,R)}},2122:(Qe,te,g)=>{"use strict";var e=g(9210),t=g(1993),w=g(219),S=g(4166);function l(f,I){e.equal(I.length,24,"Invalid key length");var d=I.slice(0,8),T=I.slice(8,16),y=I.slice(16,24);this.ciphers="encrypt"===f?[S.create({type:"encrypt",key:d}),S.create({type:"decrypt",key:T}),S.create({type:"encrypt",key:y})]:[S.create({type:"decrypt",key:y}),S.create({type:"encrypt",key:T}),S.create({type:"decrypt",key:d})]}function x(f){w.call(this,f);var I=new l(this.type,this.options.key);this._edeState=I}t(x,w),Qe.exports=x,x.create=function(I){return new x(I)},x.prototype._update=function(I,d,T,y){var F=this._edeState;F.ciphers[0]._update(I,d,T,y),F.ciphers[1]._update(T,y,T,y),F.ciphers[2]._update(T,y,T,y)},x.prototype._pad=S.prototype._pad,x.prototype._unpad=S.prototype._unpad},5671:(Qe,te)=>{"use strict";te.readUInt32BE=function(S,l){return(S[0+l]<<24|S[1+l]<<16|S[2+l]<<8|S[3+l])>>>0},te.writeUInt32BE=function(S,l,x){S[0+x]=l>>>24,S[1+x]=l>>>16&255,S[2+x]=l>>>8&255,S[3+x]=255&l},te.ip=function(S,l,x,f){for(var I=0,d=0,T=6;T>=0;T-=2){for(var y=0;y<=24;y+=8)I<<=1,I|=l>>>y+T&1;for(y=0;y<=24;y+=8)I<<=1,I|=S>>>y+T&1}for(T=6;T>=0;T-=2){for(y=1;y<=25;y+=8)d<<=1,d|=l>>>y+T&1;for(y=1;y<=25;y+=8)d<<=1,d|=S>>>y+T&1}x[f+0]=I>>>0,x[f+1]=d>>>0},te.rip=function(S,l,x,f){for(var I=0,d=0,T=0;T<4;T++)for(var y=24;y>=0;y-=8)I<<=1,I|=l>>>y+T&1,I<<=1,I|=S>>>y+T&1;for(T=4;T<8;T++)for(y=24;y>=0;y-=8)d<<=1,d|=l>>>y+T&1,d<<=1,d|=S>>>y+T&1;x[f+0]=I>>>0,x[f+1]=d>>>0},te.pc1=function(S,l,x,f){for(var I=0,d=0,T=7;T>=5;T--){for(var y=0;y<=24;y+=8)I<<=1,I|=l>>y+T&1;for(y=0;y<=24;y+=8)I<<=1,I|=S>>y+T&1}for(y=0;y<=24;y+=8)I<<=1,I|=l>>y+T&1;for(T=1;T<=3;T++){for(y=0;y<=24;y+=8)d<<=1,d|=l>>y+T&1;for(y=0;y<=24;y+=8)d<<=1,d|=S>>y+T&1}for(y=0;y<=24;y+=8)d<<=1,d|=S>>y+T&1;x[f+0]=I>>>0,x[f+1]=d>>>0},te.r28shl=function(S,l){return S<>>28-l};var g=[14,11,17,4,27,23,25,0,13,22,7,18,5,9,16,24,2,20,12,21,1,8,15,26,15,4,25,19,9,1,26,16,5,11,23,8,12,7,17,0,22,3,10,14,6,20,27,24];te.pc2=function(S,l,x,f){for(var I=0,d=0,T=g.length>>>1,y=0;y>>g[y]&1;for(y=T;y>>g[y]&1;x[f+0]=I>>>0,x[f+1]=d>>>0},te.expand=function(S,l,x){var f=0,I=0;f=(1&S)<<5|S>>>27;for(var d=23;d>=15;d-=4)f<<=6,f|=S>>>d&63;for(d=11;d>=3;d-=4)I|=S>>>d&63,I<<=6;I|=(31&S)<<1|S>>>31,l[x+0]=f>>>0,l[x+1]=I>>>0};var e=[14,0,4,15,13,7,1,4,2,14,15,2,11,13,8,1,3,10,10,6,6,12,12,11,5,9,9,5,0,3,7,8,4,15,1,12,14,8,8,2,13,4,6,9,2,1,11,7,15,5,12,11,9,3,7,14,3,10,10,0,5,6,0,13,15,3,1,13,8,4,14,7,6,15,11,2,3,8,4,14,9,12,7,0,2,1,13,10,12,6,0,9,5,11,10,5,0,13,14,8,7,10,11,1,10,3,4,15,13,4,1,2,5,11,8,6,12,7,6,12,9,0,3,5,2,14,15,9,10,13,0,7,9,0,14,9,6,3,3,4,15,6,5,10,1,2,13,8,12,5,7,14,11,12,4,11,2,15,8,1,13,1,6,10,4,13,9,0,8,6,15,9,3,8,0,7,11,4,1,15,2,14,12,3,5,11,10,5,14,2,7,12,7,13,13,8,14,11,3,5,0,6,6,15,9,0,10,3,1,4,2,7,8,2,5,12,11,1,12,10,4,14,15,9,10,3,6,15,9,0,0,6,12,10,11,1,7,13,13,8,15,9,1,4,3,5,14,11,5,12,2,7,8,2,4,14,2,14,12,11,4,2,1,12,7,4,10,7,11,13,6,1,8,5,5,0,3,15,15,10,13,3,0,9,14,8,9,6,4,11,2,8,1,12,11,7,10,1,13,14,7,2,8,13,15,6,9,15,12,0,5,9,6,10,3,4,0,5,14,3,12,10,1,15,10,4,15,2,9,7,2,12,6,9,8,5,0,6,13,1,3,13,4,14,14,0,7,11,5,3,11,8,9,4,14,3,15,2,5,12,2,9,8,5,12,15,3,10,7,11,0,14,4,1,10,7,1,6,13,0,11,8,6,13,4,13,11,0,2,11,14,7,15,4,0,9,8,1,13,10,3,14,12,3,9,5,7,12,5,2,10,15,6,8,1,6,1,6,4,11,11,13,13,8,12,1,3,4,7,10,14,7,10,9,15,5,6,0,8,15,0,14,5,2,9,3,2,12,13,1,2,15,8,13,4,8,6,10,15,3,11,7,1,4,10,12,9,5,3,6,14,11,5,0,0,14,12,9,7,2,7,2,11,1,4,14,1,7,9,4,12,10,14,8,2,13,0,15,6,12,10,9,13,0,15,3,3,5,5,6,8,11];te.substitute=function(S,l){for(var x=0,f=0;f<4;f++)x<<=4,x|=e[64*f+(S>>>18-6*f&63)];for(f=0;f<4;f++)x<<=4,x|=e[256+64*f+(l>>>18-6*f&63)];return x>>>0};var t=[16,25,12,11,3,20,4,15,31,17,9,6,27,14,1,22,30,24,8,18,0,5,29,23,13,19,2,26,10,21,28,7];te.permute=function(S){for(var l=0,x=0;x>>t[x]&1;return l>>>0},te.padSplit=function(S,l,x){for(var f=S.toString(2);f.length{var e=g(2727),t=g(3241),w=g(4593),l={binary:!0,hex:!0,base64:!0};te.DiffieHellmanGroup=te.createDiffieHellmanGroup=te.getDiffieHellman=function S(f){var I=new Buffer(t[f].prime,"hex"),d=new Buffer(t[f].gen,"hex");return new w(I,d)},te.createDiffieHellman=te.DiffieHellman=function x(f,I,d,T){return Buffer.isBuffer(I)||void 0===l[I]?x(f,"binary",I,d):(I=I||"binary",T=T||"binary",d=d||new Buffer([2]),Buffer.isBuffer(d)||(d=new Buffer(d,T)),"number"==typeof f?new w(e(f,d),d,!0):(Buffer.isBuffer(f)||(f=new Buffer(f,I)),new w(f,d,!0)))}},4593:(Qe,te,g)=>{var e=g(8280),w=new(g(3459)),S=new e(24),l=new e(11),x=new e(10),f=new e(3),I=new e(7),d=g(2727),T=g(3342);function y(j,Q){return Q=Q||"utf8",Buffer.isBuffer(j)||(j=new Buffer(j,Q)),this._pub=new e(j),this}function F(j,Q){return Q=Q||"utf8",Buffer.isBuffer(j)||(j=new Buffer(j,Q)),this._priv=new e(j),this}Qe.exports=W;var R={};function W(j,Q,J){this.setGenerator(Q),this.__prime=new e(j),this._prime=e.mont(this.__prime),this._primeLen=j.length,this._pub=void 0,this._priv=void 0,this._primeCode=void 0,J?(this.setPublicKey=y,this.setPrivateKey=F):this._primeCode=8}function $(j,Q){var J=new Buffer(j.toArray());return Q?J.toString(Q):J}Object.defineProperty(W.prototype,"verifyError",{enumerable:!0,get:function(){return"number"!=typeof this._primeCode&&(this._primeCode=function z(j,Q){var J=Q.toString("hex"),ee=[J,j.toString(16)].join("_");if(ee in R)return R[ee];var ge,ie=0;if(j.isEven()||!d.simpleSieve||!d.fermatTest(j)||!w.test(j))return ie+=1,R[ee]=ie+="02"===J||"05"===J?8:4,ie;switch(w.test(j.shrn(1))||(ie+=2),J){case"02":j.mod(S).cmp(l)&&(ie+=8);break;case"05":(ge=j.mod(x)).cmp(f)&&ge.cmp(I)&&(ie+=8);break;default:ie+=4}return R[ee]=ie,ie}(this.__prime,this.__gen)),this._primeCode}}),W.prototype.generateKeys=function(){return this._priv||(this._priv=new e(T(this._primeLen))),this._pub=this._gen.toRed(this._prime).redPow(this._priv).fromRed(),this.getPublicKey()},W.prototype.computeSecret=function(j){var Q=(j=(j=new e(j)).toRed(this._prime)).redPow(this._priv).fromRed(),J=new Buffer(Q.toArray()),ee=this.getPrime();if(J.length{var e=g(3342);Qe.exports=ie,ie.simpleSieve=J,ie.fermatTest=ee;var t=g(8280),w=new t(24),l=new(g(3459)),x=new t(1),f=new t(2),I=new t(5),y=(new t(16),new t(8),new t(10)),F=new t(3),z=(new t(7),new t(11)),W=new t(4),j=(new t(12),null);function J(ge){for(var ae=function Q(){if(null!==j)return j;var ae=[];ae[0]=2;for(var Me=1,Te=3;Te<1048576;Te+=2){for(var de=Math.ceil(Math.sqrt(Te)),D=0;Dge;)Me.ishrn(1);if(Me.isEven()&&Me.iadd(x),Me.testn(1)||Me.iadd(f),ae.cmp(f)){if(!ae.cmp(I))for(;Me.mod(y).cmp(F);)Me.iadd(W)}else for(;Me.mod(w).cmp(z);)Me.iadd(W);if(J(Te=Me.shrn(1))&&J(Me)&&ee(Te)&&ee(Me)&&l.test(Te)&&l.test(Me))return Me}}},8280:function(Qe,te,g){!function(e,t){"use strict";function w(D,n){if(!D)throw new Error(n||"Assertion failed")}function S(D,n){D.super_=n;var c=function(){};c.prototype=n.prototype,D.prototype=new c,D.prototype.constructor=D}function l(D,n,c){if(l.isBN(D))return D;this.negative=0,this.words=null,this.length=0,this.red=null,null!==D&&(("le"===n||"be"===n)&&(c=n,n=10),this._init(D||0,n||10,c||"be"))}var x;"object"==typeof e?e.exports=l:t.BN=l,l.BN=l,l.wordSize=26;try{x=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:g(6089).Buffer}catch{}function f(D,n){var c=D.charCodeAt(n);return c>=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],y=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],F=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function z(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ee.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},243:Qe=>{"use strict";var te={single_source_shortest_paths:function(g,e,t){var w={},S={};S[e]=0;var x,f,I,d,T,F,l=te.PriorityQueue.make();for(l.push(e,0);!l.empty();)for(I in d=(x=l.pop()).cost,T=g[f=x.value]||{})T.hasOwnProperty(I)&&(F=d+T[I],(typeof S[I]>"u"||S[I]>F)&&(S[I]=F,l.push(I,F),w[I]=f));if(typeof t<"u"&&typeof S[t]>"u"){var W=["Could not find a path from ",e," to ",t,"."].join("");throw new Error(W)}return w},extract_shortest_path_from_predecessor_list:function(g,e){for(var t=[],w=e;w;)t.push(w),w=g[w];return t.reverse(),t},find_path:function(g,e,t){var w=te.single_source_shortest_paths(g,e,t);return te.extract_shortest_path_from_predecessor_list(w,t)},PriorityQueue:{make:function(g){var w,e=te.PriorityQueue,t={};for(w in g=g||{},e)e.hasOwnProperty(w)&&(t[w]=e[w]);return t.queue=[],t.sorter=g.sorter||e.default_sorter,t},default_sorter:function(g,e){return g.cost-e.cost},push:function(g,e){this.queue.push({value:g,cost:e}),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return 0===this.queue.length}}};Qe.exports=te},518:(Qe,te,g)=>{"use strict";var e=te;e.version=g(1636).rE,e.utils=g(3136),e.rand=g(5294),e.curve=g(8729),e.curves=g(3401),e.ec=g(9042),e.eddsa=g(3045)},8828:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3136),w=t.getNAF,S=t.getJSF,l=t.assert;function x(I,d){this.type=I,this.p=new e(d.p,16),this.red=d.prime?e.red(d.prime):e.mont(this.p),this.zero=new e(0).toRed(this.red),this.one=new e(1).toRed(this.red),this.two=new e(2).toRed(this.red),this.n=d.n&&new e(d.n,16),this.g=d.g&&this.pointFromJSON(d.g,d.gRed),this._wnafT1=new Array(4),this._wnafT2=new Array(4),this._wnafT3=new Array(4),this._wnafT4=new Array(4),this._bitLength=this.n?this.n.bitLength():0;var T=this.n&&this.p.div(this.n);!T||T.cmpn(100)>0?this.redN=null:(this._maxwellTrick=!0,this.redN=this.n.toRed(this.red))}function f(I,d){this.curve=I,this.type=d,this.precomputed=null}Qe.exports=x,x.prototype.point=function(){throw new Error("Not implemented")},x.prototype.validate=function(){throw new Error("Not implemented")},x.prototype._fixedNafMul=function(d,T){l(d.precomputed);var y=d._getDoubles(),F=w(T,1,this._bitLength),R=(1<=W;j--)$=($<<1)+F[j];z.push($)}for(var Q=this.jpoint(null,null,null),J=this.jpoint(null,null,null),ee=R;ee>0;ee--){for(W=0;W=0;$--){for(var j=0;$>=0&&0===z[$];$--)j++;if($>=0&&j++,W=W.dblp(j),$<0)break;var Q=z[$];l(0!==Q),W="affine"===d.type?W.mixedAdd(Q>0?R[Q-1>>1]:R[-Q-1>>1].neg()):W.add(Q>0?R[Q-1>>1]:R[-Q-1>>1].neg())}return"affine"===d.type?W.toP():W},x.prototype._wnafMulAdd=function(d,T,y,F,R){var Q,J,ee,z=this._wnafT1,W=this._wnafT2,$=this._wnafT3,j=0;for(Q=0;Q=1;Q-=2){var ge=Q-1,ae=Q;if(1===z[ge]&&1===z[ae]){var Me=[T[ge],null,null,T[ae]];0===T[ge].y.cmp(T[ae].y)?(Me[1]=T[ge].add(T[ae]),Me[2]=T[ge].toJ().mixedAdd(T[ae].neg())):0===T[ge].y.cmp(T[ae].y.redNeg())?(Me[1]=T[ge].toJ().mixedAdd(T[ae]),Me[2]=T[ge].add(T[ae].neg())):(Me[1]=T[ge].toJ().mixedAdd(T[ae]),Me[2]=T[ge].toJ().mixedAdd(T[ae].neg()));var Te=[-3,-1,-5,-7,0,7,5,1,3],de=S(y[ge],y[ae]);for(j=Math.max(de[0].length,j),$[ge]=new Array(j),$[ae]=new Array(j),J=0;J=0;Q--){for(var h=0;Q>=0;){var C=!0;for(J=0;J=0&&h++,c=c.dblp(h),Q<0)break;for(J=0;J0?ee=W[J][k-1>>1]:k<0&&(ee=W[J][-k-1>>1].neg()),c="affine"===ee.type?c.mixedAdd(ee):c.add(ee))}}for(Q=0;Q=Math.ceil((d.bitLength()+1)/T.step)},f.prototype._getDoubles=function(d,T){if(this.precomputed&&this.precomputed.doubles)return this.precomputed.doubles;for(var y=[this],F=this,R=0;R{"use strict";var e=g(3136),t=g(8723),w=g(1993),S=g(8828),l=e.assert;function x(I){this.twisted=1!=(0|I.a),this.mOneA=this.twisted&&-1==(0|I.a),this.extended=this.mOneA,S.call(this,"edwards",I),this.a=new t(I.a,16).umod(this.red.m),this.a=this.a.toRed(this.red),this.c=new t(I.c,16).toRed(this.red),this.c2=this.c.redSqr(),this.d=new t(I.d,16).toRed(this.red),this.dd=this.d.redAdd(this.d),l(!this.twisted||0===this.c.fromRed().cmpn(1)),this.oneC=1==(0|I.c)}function f(I,d,T,y,F){S.BasePoint.call(this,I,"projective"),null===d&&null===T&&null===y?(this.x=this.curve.zero,this.y=this.curve.one,this.z=this.curve.one,this.t=this.curve.zero,this.zOne=!0):(this.x=new t(d,16),this.y=new t(T,16),this.z=y?new t(y,16):this.curve.one,this.t=F&&new t(F,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)),this.t&&!this.t.red&&(this.t=this.t.toRed(this.curve.red)),this.zOne=this.z===this.curve.one,this.curve.extended&&!this.t&&(this.t=this.x.redMul(this.y),this.zOne||(this.t=this.t.redMul(this.z.redInvm()))))}w(x,S),Qe.exports=x,x.prototype._mulA=function(d){return this.mOneA?d.redNeg():this.a.redMul(d)},x.prototype._mulC=function(d){return this.oneC?d:this.c.redMul(d)},x.prototype.jpoint=function(d,T,y,F){return this.point(d,T,y,F)},x.prototype.pointFromX=function(d,T){(d=new t(d,16)).red||(d=d.toRed(this.red));var y=d.redSqr(),F=this.c2.redSub(this.a.redMul(y)),R=this.one.redSub(this.c2.redMul(this.d).redMul(y)),z=F.redMul(R.redInvm()),W=z.redSqrt();if(0!==W.redSqr().redSub(z).cmp(this.zero))throw new Error("invalid point");var $=W.fromRed().isOdd();return(T&&!$||!T&&$)&&(W=W.redNeg()),this.point(d,W)},x.prototype.pointFromY=function(d,T){(d=new t(d,16)).red||(d=d.toRed(this.red));var y=d.redSqr(),F=y.redSub(this.c2),R=y.redMul(this.d).redMul(this.c2).redSub(this.a),z=F.redMul(R.redInvm());if(0===z.cmp(this.zero)){if(T)throw new Error("invalid point");return this.point(this.zero,d)}var W=z.redSqrt();if(0!==W.redSqr().redSub(z).cmp(this.zero))throw new Error("invalid point");return W.fromRed().isOdd()!==T&&(W=W.redNeg()),this.point(W,d)},x.prototype.validate=function(d){if(d.isInfinity())return!0;d.normalize();var T=d.x.redSqr(),y=d.y.redSqr(),F=T.redMul(this.a).redAdd(y),R=this.c2.redMul(this.one.redAdd(this.d.redMul(T).redMul(y)));return 0===F.cmp(R)},w(f,S.BasePoint),x.prototype.pointFromJSON=function(d){return f.fromJSON(this,d)},x.prototype.point=function(d,T,y,F){return new f(this,d,T,y,F)},f.fromJSON=function(d,T){return new f(d,T[0],T[1],T[2])},f.prototype.inspect=function(){return this.isInfinity()?"":""},f.prototype.isInfinity=function(){return 0===this.x.cmpn(0)&&(0===this.y.cmp(this.z)||this.zOne&&0===this.y.cmp(this.curve.c))},f.prototype._extDbl=function(){var d=this.x.redSqr(),T=this.y.redSqr(),y=this.z.redSqr();y=y.redIAdd(y);var F=this.curve._mulA(d),R=this.x.redAdd(this.y).redSqr().redISub(d).redISub(T),z=F.redAdd(T),W=z.redSub(y),$=F.redSub(T),j=R.redMul(W),Q=z.redMul($),J=R.redMul($),ee=W.redMul(z);return this.curve.point(j,Q,ee,J)},f.prototype._projDbl=function(){var F,R,z,W,$,j,d=this.x.redAdd(this.y).redSqr(),T=this.x.redSqr(),y=this.y.redSqr();if(this.curve.twisted){var Q=(W=this.curve._mulA(T)).redAdd(y);this.zOne?(F=d.redSub(T).redSub(y).redMul(Q.redSub(this.curve.two)),R=Q.redMul(W.redSub(y)),z=Q.redSqr().redSub(Q).redSub(Q)):($=this.z.redSqr(),j=Q.redSub($).redISub($),F=d.redSub(T).redISub(y).redMul(j),R=Q.redMul(W.redSub(y)),z=Q.redMul(j))}else W=T.redAdd(y),$=this.curve._mulC(this.z).redSqr(),j=W.redSub($).redSub($),F=this.curve._mulC(d.redISub(W)).redMul(j),R=this.curve._mulC(W).redMul(T.redISub(y)),z=W.redMul(j);return this.curve.point(F,R,z)},f.prototype.dbl=function(){return this.isInfinity()?this:this.curve.extended?this._extDbl():this._projDbl()},f.prototype._extAdd=function(d){var T=this.y.redSub(this.x).redMul(d.y.redSub(d.x)),y=this.y.redAdd(this.x).redMul(d.y.redAdd(d.x)),F=this.t.redMul(this.curve.dd).redMul(d.t),R=this.z.redMul(d.z.redAdd(d.z)),z=y.redSub(T),W=R.redSub(F),$=R.redAdd(F),j=y.redAdd(T),Q=z.redMul(W),J=$.redMul(j),ee=z.redMul(j),ie=W.redMul($);return this.curve.point(Q,J,ie,ee)},f.prototype._projAdd=function(d){var J,ee,T=this.z.redMul(d.z),y=T.redSqr(),F=this.x.redMul(d.x),R=this.y.redMul(d.y),z=this.curve.d.redMul(F).redMul(R),W=y.redSub(z),$=y.redAdd(z),j=this.x.redAdd(this.y).redMul(d.x.redAdd(d.y)).redISub(F).redISub(R),Q=T.redMul(W).redMul(j);return this.curve.twisted?(J=T.redMul($).redMul(R.redSub(this.curve._mulA(F))),ee=W.redMul($)):(J=T.redMul($).redMul(R.redSub(F)),ee=this.curve._mulC(W).redMul($)),this.curve.point(Q,J,ee)},f.prototype.add=function(d){return this.isInfinity()?d:d.isInfinity()?this:this.curve.extended?this._extAdd(d):this._projAdd(d)},f.prototype.mul=function(d){return this._hasDoubles(d)?this.curve._fixedNafMul(this,d):this.curve._wnafMul(this,d)},f.prototype.mulAdd=function(d,T,y){return this.curve._wnafMulAdd(1,[this,T],[d,y],2,!1)},f.prototype.jmulAdd=function(d,T,y){return this.curve._wnafMulAdd(1,[this,T],[d,y],2,!0)},f.prototype.normalize=function(){if(this.zOne)return this;var d=this.z.redInvm();return this.x=this.x.redMul(d),this.y=this.y.redMul(d),this.t&&(this.t=this.t.redMul(d)),this.z=this.curve.one,this.zOne=!0,this},f.prototype.neg=function(){return this.curve.point(this.x.redNeg(),this.y,this.z,this.t&&this.t.redNeg())},f.prototype.getX=function(){return this.normalize(),this.x.fromRed()},f.prototype.getY=function(){return this.normalize(),this.y.fromRed()},f.prototype.eq=function(d){return this===d||0===this.getX().cmp(d.getX())&&0===this.getY().cmp(d.getY())},f.prototype.eqXToP=function(d){var T=d.toRed(this.curve.red).redMul(this.z);if(0===this.x.cmp(T))return!0;for(var y=d.clone(),F=this.curve.redN.redMul(this.z);;){if(y.iadd(this.curve.n),y.cmp(this.curve.p)>=0)return!1;if(T.redIAdd(F),0===this.x.cmp(T))return!0}},f.prototype.toP=f.prototype.normalize,f.prototype.mixedAdd=f.prototype.add},8729:(Qe,te,g)=>{"use strict";var e=te;e.base=g(8828),e.short=g(8075),e.mont=g(4947),e.edwards=g(5537)},4947:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(1993),w=g(8828),S=g(3136);function l(f){w.call(this,"mont",f),this.a=new e(f.a,16).toRed(this.red),this.b=new e(f.b,16).toRed(this.red),this.i4=new e(4).toRed(this.red).redInvm(),this.two=new e(2).toRed(this.red),this.a24=this.i4.redMul(this.a.redAdd(this.two))}function x(f,I,d){w.BasePoint.call(this,f,"projective"),null===I&&null===d?(this.x=this.curve.one,this.z=this.curve.zero):(this.x=new e(I,16),this.z=new e(d,16),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)))}t(l,w),Qe.exports=l,l.prototype.validate=function(I){var d=I.normalize().x,T=d.redSqr(),y=T.redMul(d).redAdd(T.redMul(this.a)).redAdd(d);return 0===y.redSqrt().redSqr().cmp(y)},t(x,w.BasePoint),l.prototype.decodePoint=function(I,d){return this.point(S.toArray(I,d),1)},l.prototype.point=function(I,d){return new x(this,I,d)},l.prototype.pointFromJSON=function(I){return x.fromJSON(this,I)},x.prototype.precompute=function(){},x.prototype._encode=function(){return this.getX().toArray("be",this.curve.p.byteLength())},x.fromJSON=function(I,d){return new x(I,d[0],d[1]||I.one)},x.prototype.inspect=function(){return this.isInfinity()?"":""},x.prototype.isInfinity=function(){return 0===this.z.cmpn(0)},x.prototype.dbl=function(){var d=this.x.redAdd(this.z).redSqr(),y=this.x.redSub(this.z).redSqr(),F=d.redSub(y),R=d.redMul(y),z=F.redMul(y.redAdd(this.curve.a24.redMul(F)));return this.curve.point(R,z)},x.prototype.add=function(){throw new Error("Not supported on Montgomery curve")},x.prototype.diffAdd=function(I,d){var T=this.x.redAdd(this.z),y=this.x.redSub(this.z),F=I.x.redAdd(I.z),z=I.x.redSub(I.z).redMul(T),W=F.redMul(y),$=d.z.redMul(z.redAdd(W).redSqr()),j=d.x.redMul(z.redISub(W).redSqr());return this.curve.point($,j)},x.prototype.mul=function(I){for(var d=I.clone(),T=this,y=this.curve.point(null,null),R=[];0!==d.cmpn(0);d.iushrn(1))R.push(d.andln(1));for(var z=R.length-1;z>=0;z--)0===R[z]?(T=T.diffAdd(y,this),y=y.dbl()):(y=T.diffAdd(y,this),T=T.dbl());return y},x.prototype.mulAdd=function(){throw new Error("Not supported on Montgomery curve")},x.prototype.jumlAdd=function(){throw new Error("Not supported on Montgomery curve")},x.prototype.eq=function(I){return 0===this.getX().cmp(I.getX())},x.prototype.normalize=function(){return this.x=this.x.redMul(this.z.redInvm()),this.z=this.curve.one,this},x.prototype.getX=function(){return this.normalize(),this.x.fromRed()}},8075:(Qe,te,g)=>{"use strict";var e=g(3136),t=g(8723),w=g(1993),S=g(8828),l=e.assert;function x(d){S.call(this,"short",d),this.a=new t(d.a,16).toRed(this.red),this.b=new t(d.b,16).toRed(this.red),this.tinv=this.two.redInvm(),this.zeroA=0===this.a.fromRed().cmpn(0),this.threeA=0===this.a.fromRed().sub(this.p).cmpn(-3),this.endo=this._getEndomorphism(d),this._endoWnafT1=new Array(4),this._endoWnafT2=new Array(4)}function f(d,T,y,F){S.BasePoint.call(this,d,"affine"),null===T&&null===y?(this.x=null,this.y=null,this.inf=!0):(this.x=new t(T,16),this.y=new t(y,16),F&&(this.x.forceRed(this.curve.red),this.y.forceRed(this.curve.red)),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.inf=!1)}function I(d,T,y,F){S.BasePoint.call(this,d,"jacobian"),null===T&&null===y&&null===F?(this.x=this.curve.one,this.y=this.curve.one,this.z=new t(0)):(this.x=new t(T,16),this.y=new t(y,16),this.z=new t(F,16)),this.x.red||(this.x=this.x.toRed(this.curve.red)),this.y.red||(this.y=this.y.toRed(this.curve.red)),this.z.red||(this.z=this.z.toRed(this.curve.red)),this.zOne=this.z===this.curve.one}w(x,S),Qe.exports=x,x.prototype._getEndomorphism=function(T){if(this.zeroA&&this.g&&this.n&&1===this.p.modn(3)){var y,F;if(T.beta)y=new t(T.beta,16).toRed(this.red);else{var R=this._getEndoRoots(this.p);y=(y=R[0].cmp(R[1])<0?R[0]:R[1]).toRed(this.red)}if(T.lambda)F=new t(T.lambda,16);else{var z=this._getEndoRoots(this.n);0===this.g.mul(z[0]).x.cmp(this.g.x.redMul(y))?F=z[0]:l(0===this.g.mul(F=z[1]).x.cmp(this.g.x.redMul(y)))}return{beta:y,lambda:F,basis:T.basis?T.basis.map(function($){return{a:new t($.a,16),b:new t($.b,16)}}):this._getEndoBasis(F)}}},x.prototype._getEndoRoots=function(T){var y=T===this.p?this.red:t.mont(T),F=new t(2).toRed(y).redInvm(),R=F.redNeg(),z=new t(3).toRed(y).redNeg().redSqrt().redMul(F);return[R.redAdd(z).fromRed(),R.redSub(z).fromRed()]},x.prototype._getEndoBasis=function(T){for(var Q,J,ee,ie,ge,ae,Me,de,D,y=this.n.ushrn(Math.floor(this.n.bitLength()/2)),F=T,R=this.n.clone(),z=new t(1),W=new t(0),$=new t(0),j=new t(1),Te=0;0!==F.cmpn(0);){var n=R.div(F);de=R.sub(n.mul(F)),D=$.sub(n.mul(z));var c=j.sub(n.mul(W));if(!ee&&de.cmp(y)<0)Q=Me.neg(),J=z,ee=de.neg(),ie=D;else if(ee&&2==++Te)break;Me=de,R=F,F=de,$=z,z=D,j=W,W=c}ge=de.neg(),ae=D;var m=ee.sqr().add(ie.sqr());return ge.sqr().add(ae.sqr()).cmp(m)>=0&&(ge=Q,ae=J),ee.negative&&(ee=ee.neg(),ie=ie.neg()),ge.negative&&(ge=ge.neg(),ae=ae.neg()),[{a:ee,b:ie},{a:ge,b:ae}]},x.prototype._endoSplit=function(T){var y=this.endo.basis,F=y[0],R=y[1],z=R.b.mul(T).divRound(this.n),W=F.b.neg().mul(T).divRound(this.n),$=z.mul(F.a),j=W.mul(R.a),Q=z.mul(F.b),J=W.mul(R.b);return{k1:T.sub($).sub(j),k2:Q.add(J).neg()}},x.prototype.pointFromX=function(T,y){(T=new t(T,16)).red||(T=T.toRed(this.red));var F=T.redSqr().redMul(T).redIAdd(T.redMul(this.a)).redIAdd(this.b),R=F.redSqrt();if(0!==R.redSqr().redSub(F).cmp(this.zero))throw new Error("invalid point");var z=R.fromRed().isOdd();return(y&&!z||!y&&z)&&(R=R.redNeg()),this.point(T,R)},x.prototype.validate=function(T){if(T.inf)return!0;var y=T.x,F=T.y,R=this.a.redMul(y),z=y.redSqr().redMul(y).redIAdd(R).redIAdd(this.b);return 0===F.redSqr().redISub(z).cmpn(0)},x.prototype._endoWnafMulAdd=function(T,y,F){for(var R=this._endoWnafT1,z=this._endoWnafT2,W=0;W":""},f.prototype.isInfinity=function(){return this.inf},f.prototype.add=function(T){if(this.inf)return T;if(T.inf)return this;if(this.eq(T))return this.dbl();if(this.neg().eq(T))return this.curve.point(null,null);if(0===this.x.cmp(T.x))return this.curve.point(null,null);var y=this.y.redSub(T.y);0!==y.cmpn(0)&&(y=y.redMul(this.x.redSub(T.x).redInvm()));var F=y.redSqr().redISub(this.x).redISub(T.x),R=y.redMul(this.x.redSub(F)).redISub(this.y);return this.curve.point(F,R)},f.prototype.dbl=function(){if(this.inf)return this;var T=this.y.redAdd(this.y);if(0===T.cmpn(0))return this.curve.point(null,null);var y=this.curve.a,F=this.x.redSqr(),R=T.redInvm(),z=F.redAdd(F).redIAdd(F).redIAdd(y).redMul(R),W=z.redSqr().redISub(this.x.redAdd(this.x)),$=z.redMul(this.x.redSub(W)).redISub(this.y);return this.curve.point(W,$)},f.prototype.getX=function(){return this.x.fromRed()},f.prototype.getY=function(){return this.y.fromRed()},f.prototype.mul=function(T){return T=new t(T,16),this.isInfinity()?this:this._hasDoubles(T)?this.curve._fixedNafMul(this,T):this.curve.endo?this.curve._endoWnafMulAdd([this],[T]):this.curve._wnafMul(this,T)},f.prototype.mulAdd=function(T,y,F){var R=[this,y],z=[T,F];return this.curve.endo?this.curve._endoWnafMulAdd(R,z):this.curve._wnafMulAdd(1,R,z,2)},f.prototype.jmulAdd=function(T,y,F){var R=[this,y],z=[T,F];return this.curve.endo?this.curve._endoWnafMulAdd(R,z,!0):this.curve._wnafMulAdd(1,R,z,2,!0)},f.prototype.eq=function(T){return this===T||this.inf===T.inf&&(this.inf||0===this.x.cmp(T.x)&&0===this.y.cmp(T.y))},f.prototype.neg=function(T){if(this.inf)return this;var y=this.curve.point(this.x,this.y.redNeg());if(T&&this.precomputed){var F=this.precomputed,R=function(z){return z.neg()};y.precomputed={naf:F.naf&&{wnd:F.naf.wnd,points:F.naf.points.map(R)},doubles:F.doubles&&{step:F.doubles.step,points:F.doubles.points.map(R)}}}return y},f.prototype.toJ=function(){return this.inf?this.curve.jpoint(null,null,null):this.curve.jpoint(this.x,this.y,this.curve.one)},w(I,S.BasePoint),x.prototype.jpoint=function(T,y,F){return new I(this,T,y,F)},I.prototype.toP=function(){if(this.isInfinity())return this.curve.point(null,null);var T=this.z.redInvm(),y=T.redSqr(),F=this.x.redMul(y),R=this.y.redMul(y).redMul(T);return this.curve.point(F,R)},I.prototype.neg=function(){return this.curve.jpoint(this.x,this.y.redNeg(),this.z)},I.prototype.add=function(T){if(this.isInfinity())return T;if(T.isInfinity())return this;var y=T.z.redSqr(),F=this.z.redSqr(),R=this.x.redMul(y),z=T.x.redMul(F),W=this.y.redMul(y.redMul(T.z)),$=T.y.redMul(F.redMul(this.z)),j=R.redSub(z),Q=W.redSub($);if(0===j.cmpn(0))return 0!==Q.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var J=j.redSqr(),ee=J.redMul(j),ie=R.redMul(J),ge=Q.redSqr().redIAdd(ee).redISub(ie).redISub(ie),ae=Q.redMul(ie.redISub(ge)).redISub(W.redMul(ee)),Me=this.z.redMul(T.z).redMul(j);return this.curve.jpoint(ge,ae,Me)},I.prototype.mixedAdd=function(T){if(this.isInfinity())return T.toJ();if(T.isInfinity())return this;var y=this.z.redSqr(),F=this.x,R=T.x.redMul(y),z=this.y,W=T.y.redMul(y).redMul(this.z),$=F.redSub(R),j=z.redSub(W);if(0===$.cmpn(0))return 0!==j.cmpn(0)?this.curve.jpoint(null,null,null):this.dbl();var Q=$.redSqr(),J=Q.redMul($),ee=F.redMul(Q),ie=j.redSqr().redIAdd(J).redISub(ee).redISub(ee),ge=j.redMul(ee.redISub(ie)).redISub(z.redMul(J)),ae=this.z.redMul($);return this.curve.jpoint(ie,ge,ae)},I.prototype.dblp=function(T){if(0===T)return this;if(this.isInfinity())return this;if(!T)return this.dbl();var y;if(this.curve.zeroA||this.curve.threeA){var F=this;for(y=0;y=0)return!1;if(F.redIAdd(z),0===this.x.cmp(F))return!0}},I.prototype.inspect=function(){return this.isInfinity()?"":""},I.prototype.isInfinity=function(){return 0===this.z.cmpn(0)}},3401:(Qe,te,g)=>{"use strict";var I,e=te,t=g(2529),w=g(8729),l=g(3136).assert;function x(d){this.curve="short"===d.type?new w.short(d):"edwards"===d.type?new w.edwards(d):new w.mont(d),this.g=this.curve.g,this.n=this.curve.n,this.hash=d.hash,l(this.g.validate(),"Invalid curve"),l(this.g.mul(this.n).isInfinity(),"Invalid curve, G*N != O")}function f(d,T){Object.defineProperty(e,d,{configurable:!0,enumerable:!0,get:function(){var y=new x(T);return Object.defineProperty(e,d,{configurable:!0,enumerable:!0,value:y}),y}})}e.PresetCurve=x,f("p192",{type:"short",prime:"p192",p:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff",a:"ffffffff ffffffff ffffffff fffffffe ffffffff fffffffc",b:"64210519 e59c80e7 0fa7e9ab 72243049 feb8deec c146b9b1",n:"ffffffff ffffffff ffffffff 99def836 146bc9b1 b4d22831",hash:t.sha256,gRed:!1,g:["188da80e b03090f6 7cbf20eb 43a18800 f4ff0afd 82ff1012","07192b95 ffc8da78 631011ed 6b24cdd5 73f977a1 1e794811"]}),f("p224",{type:"short",prime:"p224",p:"ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001",a:"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff fffffffe",b:"b4050a85 0c04b3ab f5413256 5044b0b7 d7bfd8ba 270b3943 2355ffb4",n:"ffffffff ffffffff ffffffff ffff16a2 e0b8f03e 13dd2945 5c5c2a3d",hash:t.sha256,gRed:!1,g:["b70e0cbd 6bb4bf7f 321390b9 4a03c1d3 56c21122 343280d6 115c1d21","bd376388 b5f723fb 4c22dfe6 cd4375a0 5a074764 44d58199 85007e34"]}),f("p256",{type:"short",prime:null,p:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff ffffffff",a:"ffffffff 00000001 00000000 00000000 00000000 ffffffff ffffffff fffffffc",b:"5ac635d8 aa3a93e7 b3ebbd55 769886bc 651d06b0 cc53b0f6 3bce3c3e 27d2604b",n:"ffffffff 00000000 ffffffff ffffffff bce6faad a7179e84 f3b9cac2 fc632551",hash:t.sha256,gRed:!1,g:["6b17d1f2 e12c4247 f8bce6e5 63a440f2 77037d81 2deb33a0 f4a13945 d898c296","4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16 2bce3357 6b315ece cbb64068 37bf51f5"]}),f("p384",{type:"short",prime:null,p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 ffffffff",a:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe ffffffff 00000000 00000000 fffffffc",b:"b3312fa7 e23ee7e4 988e056b e3f82d19 181d9c6e fe814112 0314088f 5013875a c656398d 8a2ed19d 2a85c8ed d3ec2aef",n:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff c7634d81 f4372ddf 581a0db2 48b0a77a ecec196a ccc52973",hash:t.sha384,gRed:!1,g:["aa87ca22 be8b0537 8eb1c71e f320ad74 6e1d3b62 8ba79b98 59f741e0 82542a38 5502f25d bf55296c 3a545e38 72760ab7","3617de4a 96262c6f 5d9e98bf 9292dc29 f8f41dbd 289a147c e9da3113 b5f0b8c0 0a60b1ce 1d7e819d 7a431d7c 90ea0e5f"]}),f("p521",{type:"short",prime:null,p:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff",a:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffc",b:"00000051 953eb961 8e1c9a1f 929a21a0 b68540ee a2da725b 99b315f3 b8b48991 8ef109e1 56193951 ec7e937b 1652c0bd 3bb1bf07 3573df88 3d2c34f1 ef451fd4 6b503f00",n:"000001ff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffa 51868783 bf2f966b 7fcc0148 f709a5d0 3bb5c9b8 899c47ae bb6fb71e 91386409",hash:t.sha512,gRed:!1,g:["000000c6 858e06b7 0404e9cd 9e3ecb66 2395b442 9c648139 053fb521 f828af60 6b4d3dba a14b5e77 efe75928 fe1dc127 a2ffa8de 3348b3c1 856a429b f97e7e31 c2e5bd66","00000118 39296a78 9a3bc004 5c8a5fb4 2c7d1bd9 98f54449 579b4468 17afbd17 273e662c 97ee7299 5ef42640 c550b901 3fad0761 353c7086 a272c240 88be9476 9fd16650"]}),f("curve25519",{type:"mont",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"76d06",b:"1",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:t.sha256,gRed:!1,g:["9"]}),f("ed25519",{type:"edwards",prime:"p25519",p:"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed",a:"-1",c:"1",d:"52036cee2b6ffe73 8cc740797779e898 00700a4d4141d8ab 75eb4dca135978a3",n:"1000000000000000 0000000000000000 14def9dea2f79cd6 5812631a5cf5d3ed",hash:t.sha256,gRed:!1,g:["216936d3cd6e53fec0a4e231fdd6dc5c692cc7609525a7b2c9562d608f25d51a","6666666666666666666666666666666666666666666666666666666666666658"]});try{I=g(1416)}catch{I=void 0}f("secp256k1",{type:"short",prime:"k256",p:"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f",a:"0",b:"7",n:"ffffffff ffffffff ffffffff fffffffe baaedce6 af48a03b bfd25e8c d0364141",h:"1",hash:t.sha256,beta:"7ae96a2b657c07106e64479eac3434e99cf0497512f58995c1396c28719501ee",lambda:"5363ad4cc05c30e0a5261c028812645a122e22ea20816678df02967c1b23bd72",basis:[{a:"3086d221a7d46bcde86c90e49284eb15",b:"-e4437ed6010e88286f547fa90abfe4c3"},{a:"114ca50f7a8e2f3f657c1108d9d44cfd8",b:"3086d221a7d46bcde86c90e49284eb15"}],gRed:!1,g:["79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798","483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8",I]})},9042:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3556),w=g(3136),S=g(3401),l=g(5294),x=w.assert,f=g(541),I=g(484);function d(T){if(!(this instanceof d))return new d(T);"string"==typeof T&&(x(Object.prototype.hasOwnProperty.call(S,T),"Unknown curve "+T),T=S[T]),T instanceof S.PresetCurve&&(T={curve:T}),this.curve=T.curve.curve,this.n=this.curve.n,this.nh=this.n.ushrn(1),this.g=this.curve.g,this.g=T.curve.g,this.g.precompute(T.curve.n.bitLength()+1),this.hash=T.hash||T.curve.hash}Qe.exports=d,d.prototype.keyPair=function(y){return new f(this,y)},d.prototype.keyFromPrivate=function(y,F){return f.fromPrivate(this,y,F)},d.prototype.keyFromPublic=function(y,F){return f.fromPublic(this,y,F)},d.prototype.genKeyPair=function(y){y||(y={});for(var F=new t({hash:this.hash,pers:y.pers,persEnc:y.persEnc||"utf8",entropy:y.entropy||l(this.hash.hmacStrength),entropyEnc:y.entropy&&y.entropyEnc||"utf8",nonce:this.n.toArray()}),R=this.n.byteLength(),z=this.n.sub(new e(2));;){var W=new e(F.generate(R));if(!(W.cmp(z)>0))return W.iaddn(1),this.keyFromPrivate(W)}},d.prototype._truncateToN=function(y,F){var R=8*y.byteLength()-this.n.bitLength();return R>0&&(y=y.ushrn(R)),!F&&y.cmp(this.n)>=0?y.sub(this.n):y},d.prototype.sign=function(y,F,R,z){"object"==typeof R&&(z=R,R=null),z||(z={}),F=this.keyFromPrivate(F,R),y=this._truncateToN(new e(y,16));for(var W=this.n.byteLength(),$=F.getPrivate().toArray("be",W),j=y.toArray("be",W),Q=new t({hash:this.hash,entropy:$,nonce:j,pers:z.pers,persEnc:z.persEnc||"utf8"}),J=this.n.sub(new e(1)),ee=0;;ee++){var ie=z.k?z.k(ee):new e(Q.generate(this.n.byteLength()));if(!((ie=this._truncateToN(ie,!0)).cmpn(1)<=0||ie.cmp(J)>=0)){var ge=this.g.mul(ie);if(!ge.isInfinity()){var ae=ge.getX(),Me=ae.umod(this.n);if(0!==Me.cmpn(0)){var Te=ie.invm(this.n).mul(Me.mul(F.getPrivate()).iadd(y));if(0!==(Te=Te.umod(this.n)).cmpn(0)){var de=(ge.getY().isOdd()?1:0)|(0!==ae.cmp(Me)?2:0);return z.canonical&&Te.cmp(this.nh)>0&&(Te=this.n.sub(Te),de^=1),new I({r:Me,s:Te,recoveryParam:de})}}}}}},d.prototype.verify=function(y,F,R,z){y=this._truncateToN(new e(y,16)),R=this.keyFromPublic(R,z);var W=(F=new I(F,"hex")).r,$=F.s;if(W.cmpn(1)<0||W.cmp(this.n)>=0||$.cmpn(1)<0||$.cmp(this.n)>=0)return!1;var ee,j=$.invm(this.n),Q=j.mul(y).umod(this.n),J=j.mul(W).umod(this.n);return this.curve._maxwellTrick?!(ee=this.g.jmulAdd(Q,R.getPublic(),J)).isInfinity()&&ee.eqXToP(W):!(ee=this.g.mulAdd(Q,R.getPublic(),J)).isInfinity()&&0===ee.getX().umod(this.n).cmp(W)},d.prototype.recoverPubKey=function(T,y,F,R){x((3&F)===F,"The recovery param is more than two bits"),y=new I(y,R);var z=this.n,W=new e(T),$=y.r,j=y.s,Q=1&F,J=F>>1;if($.cmp(this.curve.p.umod(this.curve.n))>=0&&J)throw new Error("Unable to find sencond key candinate");$=this.curve.pointFromX(J?$.add(this.curve.n):$,Q);var ee=y.r.invm(z),ie=z.sub(W).mul(ee).umod(z),ge=j.mul(ee).umod(z);return this.g.mulAdd(ie,$,ge)},d.prototype.getKeyRecoveryParam=function(T,y,F,R){if(null!==(y=new I(y,R)).recoveryParam)return y.recoveryParam;for(var z=0;z<4;z++){var W;try{W=this.recoverPubKey(T,y,z)}catch{continue}if(W.eq(F))return z}throw new Error("Unable to find valid recovery factor")}},541:(Qe,te,g)=>{"use strict";var e=g(8723),w=g(3136).assert;function S(l,x){this.ec=l,this.priv=null,this.pub=null,x.priv&&this._importPrivate(x.priv,x.privEnc),x.pub&&this._importPublic(x.pub,x.pubEnc)}Qe.exports=S,S.fromPublic=function(x,f,I){return f instanceof S?f:new S(x,{pub:f,pubEnc:I})},S.fromPrivate=function(x,f,I){return f instanceof S?f:new S(x,{priv:f,privEnc:I})},S.prototype.validate=function(){var x=this.getPublic();return x.isInfinity()?{result:!1,reason:"Invalid public key"}:x.validate()?x.mul(this.ec.curve.n).isInfinity()?{result:!0,reason:null}:{result:!1,reason:"Public key * N != O"}:{result:!1,reason:"Public key is not a point"}},S.prototype.getPublic=function(x,f){return"string"==typeof x&&(f=x,x=null),this.pub||(this.pub=this.ec.g.mul(this.priv)),f?this.pub.encode(f,x):this.pub},S.prototype.getPrivate=function(x){return"hex"===x?this.priv.toString(16,2):this.priv},S.prototype._importPrivate=function(x,f){this.priv=new e(x,f||16),this.priv=this.priv.umod(this.ec.curve.n)},S.prototype._importPublic=function(x,f){if(x.x||x.y)return"mont"===this.ec.curve.type?w(x.x,"Need x coordinate"):("short"===this.ec.curve.type||"edwards"===this.ec.curve.type)&&w(x.x&&x.y,"Need both x and y coordinate"),void(this.pub=this.ec.curve.point(x.x,x.y));this.pub=this.ec.curve.decodePoint(x,f)},S.prototype.derive=function(x){return x.validate()||w(x.validate(),"public point not validated"),x.mul(this.priv).getX()},S.prototype.sign=function(x,f,I){return this.ec.sign(x,this,f,I)},S.prototype.verify=function(x,f){return this.ec.verify(x,f,this)},S.prototype.inspect=function(){return""}},484:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3136),w=t.assert;function S(d,T){if(d instanceof S)return d;this._importDER(d,T)||(w(d.r&&d.s,"Signature without r or s"),this.r=new e(d.r,16),this.s=new e(d.s,16),this.recoveryParam=void 0===d.recoveryParam?null:d.recoveryParam)}function l(){this.place=0}function x(d,T){var y=d[T.place++];if(!(128&y))return y;var F=15&y;if(0===F||F>4)return!1;for(var R=0,z=0,W=T.place;z>>=0;return!(R<=127)&&(T.place=W,R)}function f(d){for(var T=0,y=d.length-1;!d[T]&&!(128&d[T+1])&&T>>3);for(d.push(128|y);--y;)d.push(T>>>(y<<3)&255);d.push(T)}}Qe.exports=S,S.prototype._importDER=function(T,y){T=t.toArray(T,y);var F=new l;if(48!==T[F.place++])return!1;var R=x(T,F);if(!1===R||R+F.place!==T.length||2!==T[F.place++])return!1;var z=x(T,F);if(!1===z)return!1;var W=T.slice(F.place,z+F.place);if(F.place+=z,2!==T[F.place++])return!1;var $=x(T,F);if(!1===$||T.length!==$+F.place)return!1;var j=T.slice(F.place,$+F.place);if(0===W[0]){if(!(128&W[1]))return!1;W=W.slice(1)}if(0===j[0]){if(!(128&j[1]))return!1;j=j.slice(1)}return this.r=new e(W),this.s=new e(j),this.recoveryParam=null,!0},S.prototype.toDER=function(T){var y=this.r.toArray(),F=this.s.toArray();for(128&y[0]&&(y=[0].concat(y)),128&F[0]&&(F=[0].concat(F)),y=f(y),F=f(F);!(F[0]||128&F[1]);)F=F.slice(1);var R=[2];I(R,y.length),(R=R.concat(y)).push(2),I(R,F.length);var z=R.concat(F),W=[48];return I(W,z.length),W=W.concat(z),t.encode(W,T)}},3045:(Qe,te,g)=>{"use strict";var e=g(2529),t=g(3401),w=g(3136),S=w.assert,l=w.parseBytes,x=g(7222),f=g(5451);function I(d){if(S("ed25519"===d,"only tested with ed25519 so far"),!(this instanceof I))return new I(d);this.curve=d=t[d].curve,this.g=d.g,this.g.precompute(d.n.bitLength()+1),this.pointClass=d.point().constructor,this.encodingLength=Math.ceil(d.n.bitLength()/8),this.hash=e.sha512}Qe.exports=I,I.prototype.sign=function(T,y){T=l(T);var F=this.keyFromSecret(y),R=this.hashInt(F.messagePrefix(),T),z=this.g.mul(R),W=this.encodePoint(z),$=this.hashInt(W,F.pubBytes(),T).mul(F.priv()),j=R.add($).umod(this.curve.n);return this.makeSignature({R:z,S:j,Rencoded:W})},I.prototype.verify=function(T,y,F){T=l(T),y=this.makeSignature(y);var R=this.keyFromPublic(F),z=this.hashInt(y.Rencoded(),R.pubBytes(),T),W=this.g.mul(y.S());return y.R().add(R.pub().mul(z)).eq(W)},I.prototype.hashInt=function(){for(var T=this.hash(),y=0;y{"use strict";var e=g(3136),t=e.assert,w=e.parseBytes,S=e.cachedProperty;function l(x,f){this.eddsa=x,this._secret=w(f.secret),x.isPoint(f.pub)?this._pub=f.pub:this._pubBytes=w(f.pub)}l.fromPublic=function(f,I){return I instanceof l?I:new l(f,{pub:I})},l.fromSecret=function(f,I){return I instanceof l?I:new l(f,{secret:I})},l.prototype.secret=function(){return this._secret},S(l,"pubBytes",function(){return this.eddsa.encodePoint(this.pub())}),S(l,"pub",function(){return this._pubBytes?this.eddsa.decodePoint(this._pubBytes):this.eddsa.g.mul(this.priv())}),S(l,"privBytes",function(){var f=this.eddsa,I=this.hash(),d=f.encodingLength-1,T=I.slice(0,f.encodingLength);return T[0]&=248,T[d]&=127,T[d]|=64,T}),S(l,"priv",function(){return this.eddsa.decodeInt(this.privBytes())}),S(l,"hash",function(){return this.eddsa.hash().update(this.secret()).digest()}),S(l,"messagePrefix",function(){return this.hash().slice(this.eddsa.encodingLength)}),l.prototype.sign=function(f){return t(this._secret,"KeyPair can only verify"),this.eddsa.sign(f,this)},l.prototype.verify=function(f,I){return this.eddsa.verify(f,I,this)},l.prototype.getSecret=function(f){return t(this._secret,"KeyPair is public only"),e.encode(this.secret(),f)},l.prototype.getPublic=function(f){return e.encode(this.pubBytes(),f)},Qe.exports=l},5451:(Qe,te,g)=>{"use strict";var e=g(8723),t=g(3136),w=t.assert,S=t.cachedProperty,l=t.parseBytes;function x(f,I){this.eddsa=f,"object"!=typeof I&&(I=l(I)),Array.isArray(I)&&(I={R:I.slice(0,f.encodingLength),S:I.slice(f.encodingLength)}),w(I.R&&I.S,"Signature without R or S"),f.isPoint(I.R)&&(this._R=I.R),I.S instanceof e&&(this._S=I.S),this._Rencoded=Array.isArray(I.R)?I.R:I.Rencoded,this._Sencoded=Array.isArray(I.S)?I.S:I.Sencoded}S(x,"S",function(){return this.eddsa.decodeInt(this.Sencoded())}),S(x,"R",function(){return this.eddsa.decodePoint(this.Rencoded())}),S(x,"Rencoded",function(){return this.eddsa.encodePoint(this.R())}),S(x,"Sencoded",function(){return this.eddsa.encodeInt(this.S())}),x.prototype.toBytes=function(){return this.Rencoded().concat(this.Sencoded())},x.prototype.toHex=function(){return t.encode(this.toBytes(),"hex").toUpperCase()},Qe.exports=x},1416:Qe=>{Qe.exports={doubles:{step:4,points:[["e60fce93b59e9ec53011aabc21c23e97b2a31369b87a5ae9c44ee89e2a6dec0a","f7e3507399e595929db99f34f57937101296891e44d23f0be1f32cce69616821"],["8282263212c609d9ea2a6e3e172de238d8c39cabd5ac1ca10646e23fd5f51508","11f8a8098557dfe45e8256e830b60ace62d613ac2f7b17bed31b6eaff6e26caf"],["175e159f728b865a72f99cc6c6fc846de0b93833fd2222ed73fce5b551e5b739","d3506e0d9e3c79eba4ef97a51ff71f5eacb5955add24345c6efa6ffee9fed695"],["363d90d447b00c9c99ceac05b6262ee053441c7e55552ffe526bad8f83ff4640","4e273adfc732221953b445397f3363145b9a89008199ecb62003c7f3bee9de9"],["8b4b5f165df3c2be8c6244b5b745638843e4a781a15bcd1b69f79a55dffdf80c","4aad0a6f68d308b4b3fbd7813ab0da04f9e336546162ee56b3eff0c65fd4fd36"],["723cbaa6e5db996d6bf771c00bd548c7b700dbffa6c0e77bcb6115925232fcda","96e867b5595cc498a921137488824d6e2660a0653779494801dc069d9eb39f5f"],["eebfa4d493bebf98ba5feec812c2d3b50947961237a919839a533eca0e7dd7fa","5d9a8ca3970ef0f269ee7edaf178089d9ae4cdc3a711f712ddfd4fdae1de8999"],["100f44da696e71672791d0a09b7bde459f1215a29b3c03bfefd7835b39a48db0","cdd9e13192a00b772ec8f3300c090666b7ff4a18ff5195ac0fbd5cd62bc65a09"],["e1031be262c7ed1b1dc9227a4a04c017a77f8d4464f3b3852c8acde6e534fd2d","9d7061928940405e6bb6a4176597535af292dd419e1ced79a44f18f29456a00d"],["feea6cae46d55b530ac2839f143bd7ec5cf8b266a41d6af52d5e688d9094696d","e57c6b6c97dce1bab06e4e12bf3ecd5c981c8957cc41442d3155debf18090088"],["da67a91d91049cdcb367be4be6ffca3cfeed657d808583de33fa978bc1ec6cb1","9bacaa35481642bc41f463f7ec9780e5dec7adc508f740a17e9ea8e27a68be1d"],["53904faa0b334cdda6e000935ef22151ec08d0f7bb11069f57545ccc1a37b7c0","5bc087d0bc80106d88c9eccac20d3c1c13999981e14434699dcb096b022771c8"],["8e7bcd0bd35983a7719cca7764ca906779b53a043a9b8bcaeff959f43ad86047","10b7770b2a3da4b3940310420ca9514579e88e2e47fd68b3ea10047e8460372a"],["385eed34c1cdff21e6d0818689b81bde71a7f4f18397e6690a841e1599c43862","283bebc3e8ea23f56701de19e9ebf4576b304eec2086dc8cc0458fe5542e5453"],["6f9d9b803ecf191637c73a4413dfa180fddf84a5947fbc9c606ed86c3fac3a7","7c80c68e603059ba69b8e2a30e45c4d47ea4dd2f5c281002d86890603a842160"],["3322d401243c4e2582a2147c104d6ecbf774d163db0f5e5313b7e0e742d0e6bd","56e70797e9664ef5bfb019bc4ddaf9b72805f63ea2873af624f3a2e96c28b2a0"],["85672c7d2de0b7da2bd1770d89665868741b3f9af7643397721d74d28134ab83","7c481b9b5b43b2eb6374049bfa62c2e5e77f17fcc5298f44c8e3094f790313a6"],["948bf809b1988a46b06c9f1919413b10f9226c60f668832ffd959af60c82a0a","53a562856dcb6646dc6b74c5d1c3418c6d4dff08c97cd2bed4cb7f88d8c8e589"],["6260ce7f461801c34f067ce0f02873a8f1b0e44dfc69752accecd819f38fd8e8","bc2da82b6fa5b571a7f09049776a1ef7ecd292238051c198c1a84e95b2b4ae17"],["e5037de0afc1d8d43d8348414bbf4103043ec8f575bfdc432953cc8d2037fa2d","4571534baa94d3b5f9f98d09fb990bddbd5f5b03ec481f10e0e5dc841d755bda"],["e06372b0f4a207adf5ea905e8f1771b4e7e8dbd1c6a6c5b725866a0ae4fce725","7a908974bce18cfe12a27bb2ad5a488cd7484a7787104870b27034f94eee31dd"],["213c7a715cd5d45358d0bbf9dc0ce02204b10bdde2a3f58540ad6908d0559754","4b6dad0b5ae462507013ad06245ba190bb4850f5f36a7eeddff2c27534b458f2"],["4e7c272a7af4b34e8dbb9352a5419a87e2838c70adc62cddf0cc3a3b08fbd53c","17749c766c9d0b18e16fd09f6def681b530b9614bff7dd33e0b3941817dcaae6"],["fea74e3dbe778b1b10f238ad61686aa5c76e3db2be43057632427e2840fb27b6","6e0568db9b0b13297cf674deccb6af93126b596b973f7b77701d3db7f23cb96f"],["76e64113f677cf0e10a2570d599968d31544e179b760432952c02a4417bdde39","c90ddf8dee4e95cf577066d70681f0d35e2a33d2b56d2032b4b1752d1901ac01"],["c738c56b03b2abe1e8281baa743f8f9a8f7cc643df26cbee3ab150242bcbb891","893fb578951ad2537f718f2eacbfbbbb82314eef7880cfe917e735d9699a84c3"],["d895626548b65b81e264c7637c972877d1d72e5f3a925014372e9f6588f6c14b","febfaa38f2bc7eae728ec60818c340eb03428d632bb067e179363ed75d7d991f"],["b8da94032a957518eb0f6433571e8761ceffc73693e84edd49150a564f676e03","2804dfa44805a1e4d7c99cc9762808b092cc584d95ff3b511488e4e74efdf6e7"],["e80fea14441fb33a7d8adab9475d7fab2019effb5156a792f1a11778e3c0df5d","eed1de7f638e00771e89768ca3ca94472d155e80af322ea9fcb4291b6ac9ec78"],["a301697bdfcd704313ba48e51d567543f2a182031efd6915ddc07bbcc4e16070","7370f91cfb67e4f5081809fa25d40f9b1735dbf7c0a11a130c0d1a041e177ea1"],["90ad85b389d6b936463f9d0512678de208cc330b11307fffab7ac63e3fb04ed4","e507a3620a38261affdcbd9427222b839aefabe1582894d991d4d48cb6ef150"],["8f68b9d2f63b5f339239c1ad981f162ee88c5678723ea3351b7b444c9ec4c0da","662a9f2dba063986de1d90c2b6be215dbbea2cfe95510bfdf23cbf79501fff82"],["e4f3fb0176af85d65ff99ff9198c36091f48e86503681e3e6686fd5053231e11","1e63633ad0ef4f1c1661a6d0ea02b7286cc7e74ec951d1c9822c38576feb73bc"],["8c00fa9b18ebf331eb961537a45a4266c7034f2f0d4e1d0716fb6eae20eae29e","efa47267fea521a1a9dc343a3736c974c2fadafa81e36c54e7d2a4c66702414b"],["e7a26ce69dd4829f3e10cec0a9e98ed3143d084f308b92c0997fddfc60cb3e41","2a758e300fa7984b471b006a1aafbb18d0a6b2c0420e83e20e8a9421cf2cfd51"],["b6459e0ee3662ec8d23540c223bcbdc571cbcb967d79424f3cf29eb3de6b80ef","67c876d06f3e06de1dadf16e5661db3c4b3ae6d48e35b2ff30bf0b61a71ba45"],["d68a80c8280bb840793234aa118f06231d6f1fc67e73c5a5deda0f5b496943e8","db8ba9fff4b586d00c4b1f9177b0e28b5b0e7b8f7845295a294c84266b133120"],["324aed7df65c804252dc0270907a30b09612aeb973449cea4095980fc28d3d5d","648a365774b61f2ff130c0c35aec1f4f19213b0c7e332843967224af96ab7c84"],["4df9c14919cde61f6d51dfdbe5fee5dceec4143ba8d1ca888e8bd373fd054c96","35ec51092d8728050974c23a1d85d4b5d506cdc288490192ebac06cad10d5d"],["9c3919a84a474870faed8a9c1cc66021523489054d7f0308cbfc99c8ac1f98cd","ddb84f0f4a4ddd57584f044bf260e641905326f76c64c8e6be7e5e03d4fc599d"],["6057170b1dd12fdf8de05f281d8e06bb91e1493a8b91d4cc5a21382120a959e5","9a1af0b26a6a4807add9a2daf71df262465152bc3ee24c65e899be932385a2a8"],["a576df8e23a08411421439a4518da31880cef0fba7d4df12b1a6973eecb94266","40a6bf20e76640b2c92b97afe58cd82c432e10a7f514d9f3ee8be11ae1b28ec8"],["7778a78c28dec3e30a05fe9629de8c38bb30d1f5cf9a3a208f763889be58ad71","34626d9ab5a5b22ff7098e12f2ff580087b38411ff24ac563b513fc1fd9f43ac"],["928955ee637a84463729fd30e7afd2ed5f96274e5ad7e5cb09eda9c06d903ac","c25621003d3f42a827b78a13093a95eeac3d26efa8a8d83fc5180e935bcd091f"],["85d0fef3ec6db109399064f3a0e3b2855645b4a907ad354527aae75163d82751","1f03648413a38c0be29d496e582cf5663e8751e96877331582c237a24eb1f962"],["ff2b0dce97eece97c1c9b6041798b85dfdfb6d8882da20308f5404824526087e","493d13fef524ba188af4c4dc54d07936c7b7ed6fb90e2ceb2c951e01f0c29907"],["827fbbe4b1e880ea9ed2b2e6301b212b57f1ee148cd6dd28780e5e2cf856e241","c60f9c923c727b0b71bef2c67d1d12687ff7a63186903166d605b68baec293ec"],["eaa649f21f51bdbae7be4ae34ce6e5217a58fdce7f47f9aa7f3b58fa2120e2b3","be3279ed5bbbb03ac69a80f89879aa5a01a6b965f13f7e59d47a5305ba5ad93d"],["e4a42d43c5cf169d9391df6decf42ee541b6d8f0c9a137401e23632dda34d24f","4d9f92e716d1c73526fc99ccfb8ad34ce886eedfa8d8e4f13a7f7131deba9414"],["1ec80fef360cbdd954160fadab352b6b92b53576a88fea4947173b9d4300bf19","aeefe93756b5340d2f3a4958a7abbf5e0146e77f6295a07b671cdc1cc107cefd"],["146a778c04670c2f91b00af4680dfa8bce3490717d58ba889ddb5928366642be","b318e0ec3354028add669827f9d4b2870aaa971d2f7e5ed1d0b297483d83efd0"],["fa50c0f61d22e5f07e3acebb1aa07b128d0012209a28b9776d76a8793180eef9","6b84c6922397eba9b72cd2872281a68a5e683293a57a213b38cd8d7d3f4f2811"],["da1d61d0ca721a11b1a5bf6b7d88e8421a288ab5d5bba5220e53d32b5f067ec2","8157f55a7c99306c79c0766161c91e2966a73899d279b48a655fba0f1ad836f1"],["a8e282ff0c9706907215ff98e8fd416615311de0446f1e062a73b0610d064e13","7f97355b8db81c09abfb7f3c5b2515888b679a3e50dd6bd6cef7c73111f4cc0c"],["174a53b9c9a285872d39e56e6913cab15d59b1fa512508c022f382de8319497c","ccc9dc37abfc9c1657b4155f2c47f9e6646b3a1d8cb9854383da13ac079afa73"],["959396981943785c3d3e57edf5018cdbe039e730e4918b3d884fdff09475b7ba","2e7e552888c331dd8ba0386a4b9cd6849c653f64c8709385e9b8abf87524f2fd"],["d2a63a50ae401e56d645a1153b109a8fcca0a43d561fba2dbb51340c9d82b151","e82d86fb6443fcb7565aee58b2948220a70f750af484ca52d4142174dcf89405"],["64587e2335471eb890ee7896d7cfdc866bacbdbd3839317b3436f9b45617e073","d99fcdd5bf6902e2ae96dd6447c299a185b90a39133aeab358299e5e9faf6589"],["8481bde0e4e4d885b3a546d3e549de042f0aa6cea250e7fd358d6c86dd45e458","38ee7b8cba5404dd84a25bf39cecb2ca900a79c42b262e556d64b1b59779057e"],["13464a57a78102aa62b6979ae817f4637ffcfed3c4b1ce30bcd6303f6caf666b","69be159004614580ef7e433453ccb0ca48f300a81d0942e13f495a907f6ecc27"],["bc4a9df5b713fe2e9aef430bcc1dc97a0cd9ccede2f28588cada3a0d2d83f366","d3a81ca6e785c06383937adf4b798caa6e8a9fbfa547b16d758d666581f33c1"],["8c28a97bf8298bc0d23d8c749452a32e694b65e30a9472a3954ab30fe5324caa","40a30463a3305193378fedf31f7cc0eb7ae784f0451cb9459e71dc73cbef9482"],["8ea9666139527a8c1dd94ce4f071fd23c8b350c5a4bb33748c4ba111faccae0","620efabbc8ee2782e24e7c0cfb95c5d735b783be9cf0f8e955af34a30e62b945"],["dd3625faef5ba06074669716bbd3788d89bdde815959968092f76cc4eb9a9787","7a188fa3520e30d461da2501045731ca941461982883395937f68d00c644a573"],["f710d79d9eb962297e4f6232b40e8f7feb2bc63814614d692c12de752408221e","ea98e67232d3b3295d3b535532115ccac8612c721851617526ae47a9c77bfc82"]]},naf:{wnd:7,points:[["f9308a019258c31049344f85f89d5229b531c845836f99b08601f113bce036f9","388f7b0f632de8140fe337e62a37f3566500a99934c2231b6cb9fd7584b8e672"],["2f8bde4d1a07209355b4a7250a5c5128e88b84bddc619ab7cba8d569b240efe4","d8ac222636e5e3d6d4dba9dda6c9c426f788271bab0d6840dca87d3aa6ac62d6"],["5cbdf0646e5db4eaa398f365f2ea7a0e3d419b7e0330e39ce92bddedcac4f9bc","6aebca40ba255960a3178d6d861a54dba813d0b813fde7b5a5082628087264da"],["acd484e2f0c7f65309ad178a9f559abde09796974c57e714c35f110dfc27ccbe","cc338921b0a7d9fd64380971763b61e9add888a4375f8e0f05cc262ac64f9c37"],["774ae7f858a9411e5ef4246b70c65aac5649980be5c17891bbec17895da008cb","d984a032eb6b5e190243dd56d7b7b365372db1e2dff9d6a8301d74c9c953c61b"],["f28773c2d975288bc7d1d205c3748651b075fbc6610e58cddeeddf8f19405aa8","ab0902e8d880a89758212eb65cdaf473a1a06da521fa91f29b5cb52db03ed81"],["d7924d4f7d43ea965a465ae3095ff41131e5946f3c85f79e44adbcf8e27e080e","581e2872a86c72a683842ec228cc6defea40af2bd896d3a5c504dc9ff6a26b58"],["defdea4cdb677750a420fee807eacf21eb9898ae79b9768766e4faa04a2d4a34","4211ab0694635168e997b0ead2a93daeced1f4a04a95c0f6cfb199f69e56eb77"],["2b4ea0a797a443d293ef5cff444f4979f06acfebd7e86d277475656138385b6c","85e89bc037945d93b343083b5a1c86131a01f60c50269763b570c854e5c09b7a"],["352bbf4a4cdd12564f93fa332ce333301d9ad40271f8107181340aef25be59d5","321eb4075348f534d59c18259dda3e1f4a1b3b2e71b1039c67bd3d8bcf81998c"],["2fa2104d6b38d11b0230010559879124e42ab8dfeff5ff29dc9cdadd4ecacc3f","2de1068295dd865b64569335bd5dd80181d70ecfc882648423ba76b532b7d67"],["9248279b09b4d68dab21a9b066edda83263c3d84e09572e269ca0cd7f5453714","73016f7bf234aade5d1aa71bdea2b1ff3fc0de2a887912ffe54a32ce97cb3402"],["daed4f2be3a8bf278e70132fb0beb7522f570e144bf615c07e996d443dee8729","a69dce4a7d6c98e8d4a1aca87ef8d7003f83c230f3afa726ab40e52290be1c55"],["c44d12c7065d812e8acf28d7cbb19f9011ecd9e9fdf281b0e6a3b5e87d22e7db","2119a460ce326cdc76c45926c982fdac0e106e861edf61c5a039063f0e0e6482"],["6a245bf6dc698504c89a20cfded60853152b695336c28063b61c65cbd269e6b4","e022cf42c2bd4a708b3f5126f16a24ad8b33ba48d0423b6efd5e6348100d8a82"],["1697ffa6fd9de627c077e3d2fe541084ce13300b0bec1146f95ae57f0d0bd6a5","b9c398f186806f5d27561506e4557433a2cf15009e498ae7adee9d63d01b2396"],["605bdb019981718b986d0f07e834cb0d9deb8360ffb7f61df982345ef27a7479","2972d2de4f8d20681a78d93ec96fe23c26bfae84fb14db43b01e1e9056b8c49"],["62d14dab4150bf497402fdc45a215e10dcb01c354959b10cfe31c7e9d87ff33d","80fc06bd8cc5b01098088a1950eed0db01aa132967ab472235f5642483b25eaf"],["80c60ad0040f27dade5b4b06c408e56b2c50e9f56b9b8b425e555c2f86308b6f","1c38303f1cc5c30f26e66bad7fe72f70a65eed4cbe7024eb1aa01f56430bd57a"],["7a9375ad6167ad54aa74c6348cc54d344cc5dc9487d847049d5eabb0fa03c8fb","d0e3fa9eca8726909559e0d79269046bdc59ea10c70ce2b02d499ec224dc7f7"],["d528ecd9b696b54c907a9ed045447a79bb408ec39b68df504bb51f459bc3ffc9","eecf41253136e5f99966f21881fd656ebc4345405c520dbc063465b521409933"],["49370a4b5f43412ea25f514e8ecdad05266115e4a7ecb1387231808f8b45963","758f3f41afd6ed428b3081b0512fd62a54c3f3afbb5b6764b653052a12949c9a"],["77f230936ee88cbbd73df930d64702ef881d811e0e1498e2f1c13eb1fc345d74","958ef42a7886b6400a08266e9ba1b37896c95330d97077cbbe8eb3c7671c60d6"],["f2dac991cc4ce4b9ea44887e5c7c0bce58c80074ab9d4dbaeb28531b7739f530","e0dedc9b3b2f8dad4da1f32dec2531df9eb5fbeb0598e4fd1a117dba703a3c37"],["463b3d9f662621fb1b4be8fbbe2520125a216cdfc9dae3debcba4850c690d45b","5ed430d78c296c3543114306dd8622d7c622e27c970a1de31cb377b01af7307e"],["f16f804244e46e2a09232d4aff3b59976b98fac14328a2d1a32496b49998f247","cedabd9b82203f7e13d206fcdf4e33d92a6c53c26e5cce26d6579962c4e31df6"],["caf754272dc84563b0352b7a14311af55d245315ace27c65369e15f7151d41d1","cb474660ef35f5f2a41b643fa5e460575f4fa9b7962232a5c32f908318a04476"],["2600ca4b282cb986f85d0f1709979d8b44a09c07cb86d7c124497bc86f082120","4119b88753c15bd6a693b03fcddbb45d5ac6be74ab5f0ef44b0be9475a7e4b40"],["7635ca72d7e8432c338ec53cd12220bc01c48685e24f7dc8c602a7746998e435","91b649609489d613d1d5e590f78e6d74ecfc061d57048bad9e76f302c5b9c61"],["754e3239f325570cdbbf4a87deee8a66b7f2b33479d468fbc1a50743bf56cc18","673fb86e5bda30fb3cd0ed304ea49a023ee33d0197a695d0c5d98093c536683"],["e3e6bd1071a1e96aff57859c82d570f0330800661d1c952f9fe2694691d9b9e8","59c9e0bba394e76f40c0aa58379a3cb6a5a2283993e90c4167002af4920e37f5"],["186b483d056a033826ae73d88f732985c4ccb1f32ba35f4b4cc47fdcf04aa6eb","3b952d32c67cf77e2e17446e204180ab21fb8090895138b4a4a797f86e80888b"],["df9d70a6b9876ce544c98561f4be4f725442e6d2b737d9c91a8321724ce0963f","55eb2dafd84d6ccd5f862b785dc39d4ab157222720ef9da217b8c45cf2ba2417"],["5edd5cc23c51e87a497ca815d5dce0f8ab52554f849ed8995de64c5f34ce7143","efae9c8dbc14130661e8cec030c89ad0c13c66c0d17a2905cdc706ab7399a868"],["290798c2b6476830da12fe02287e9e777aa3fba1c355b17a722d362f84614fba","e38da76dcd440621988d00bcf79af25d5b29c094db2a23146d003afd41943e7a"],["af3c423a95d9f5b3054754efa150ac39cd29552fe360257362dfdecef4053b45","f98a3fd831eb2b749a93b0e6f35cfb40c8cd5aa667a15581bc2feded498fd9c6"],["766dbb24d134e745cccaa28c99bf274906bb66b26dcf98df8d2fed50d884249a","744b1152eacbe5e38dcc887980da38b897584a65fa06cedd2c924f97cbac5996"],["59dbf46f8c94759ba21277c33784f41645f7b44f6c596a58ce92e666191abe3e","c534ad44175fbc300f4ea6ce648309a042ce739a7919798cd85e216c4a307f6e"],["f13ada95103c4537305e691e74e9a4a8dd647e711a95e73cb62dc6018cfd87b8","e13817b44ee14de663bf4bc808341f326949e21a6a75c2570778419bdaf5733d"],["7754b4fa0e8aced06d4167a2c59cca4cda1869c06ebadfb6488550015a88522c","30e93e864e669d82224b967c3020b8fa8d1e4e350b6cbcc537a48b57841163a2"],["948dcadf5990e048aa3874d46abef9d701858f95de8041d2a6828c99e2262519","e491a42537f6e597d5d28a3224b1bc25df9154efbd2ef1d2cbba2cae5347d57e"],["7962414450c76c1689c7b48f8202ec37fb224cf5ac0bfa1570328a8a3d7c77ab","100b610ec4ffb4760d5c1fc133ef6f6b12507a051f04ac5760afa5b29db83437"],["3514087834964b54b15b160644d915485a16977225b8847bb0dd085137ec47ca","ef0afbb2056205448e1652c48e8127fc6039e77c15c2378b7e7d15a0de293311"],["d3cc30ad6b483e4bc79ce2c9dd8bc54993e947eb8df787b442943d3f7b527eaf","8b378a22d827278d89c5e9be8f9508ae3c2ad46290358630afb34db04eede0a4"],["1624d84780732860ce1c78fcbfefe08b2b29823db913f6493975ba0ff4847610","68651cf9b6da903e0914448c6cd9d4ca896878f5282be4c8cc06e2a404078575"],["733ce80da955a8a26902c95633e62a985192474b5af207da6df7b4fd5fc61cd4","f5435a2bd2badf7d485a4d8b8db9fcce3e1ef8e0201e4578c54673bc1dc5ea1d"],["15d9441254945064cf1a1c33bbd3b49f8966c5092171e699ef258dfab81c045c","d56eb30b69463e7234f5137b73b84177434800bacebfc685fc37bbe9efe4070d"],["a1d0fcf2ec9de675b612136e5ce70d271c21417c9d2b8aaaac138599d0717940","edd77f50bcb5a3cab2e90737309667f2641462a54070f3d519212d39c197a629"],["e22fbe15c0af8ccc5780c0735f84dbe9a790badee8245c06c7ca37331cb36980","a855babad5cd60c88b430a69f53a1a7a38289154964799be43d06d77d31da06"],["311091dd9860e8e20ee13473c1155f5f69635e394704eaa74009452246cfa9b3","66db656f87d1f04fffd1f04788c06830871ec5a64feee685bd80f0b1286d8374"],["34c1fd04d301be89b31c0442d3e6ac24883928b45a9340781867d4232ec2dbdf","9414685e97b1b5954bd46f730174136d57f1ceeb487443dc5321857ba73abee"],["f219ea5d6b54701c1c14de5b557eb42a8d13f3abbcd08affcc2a5e6b049b8d63","4cb95957e83d40b0f73af4544cccf6b1f4b08d3c07b27fb8d8c2962a400766d1"],["d7b8740f74a8fbaab1f683db8f45de26543a5490bca627087236912469a0b448","fa77968128d9c92ee1010f337ad4717eff15db5ed3c049b3411e0315eaa4593b"],["32d31c222f8f6f0ef86f7c98d3a3335ead5bcd32abdd94289fe4d3091aa824bf","5f3032f5892156e39ccd3d7915b9e1da2e6dac9e6f26e961118d14b8462e1661"],["7461f371914ab32671045a155d9831ea8793d77cd59592c4340f86cbc18347b5","8ec0ba238b96bec0cbdddcae0aa442542eee1ff50c986ea6b39847b3cc092ff6"],["ee079adb1df1860074356a25aa38206a6d716b2c3e67453d287698bad7b2b2d6","8dc2412aafe3be5c4c5f37e0ecc5f9f6a446989af04c4e25ebaac479ec1c8c1e"],["16ec93e447ec83f0467b18302ee620f7e65de331874c9dc72bfd8616ba9da6b5","5e4631150e62fb40d0e8c2a7ca5804a39d58186a50e497139626778e25b0674d"],["eaa5f980c245f6f038978290afa70b6bd8855897f98b6aa485b96065d537bd99","f65f5d3e292c2e0819a528391c994624d784869d7e6ea67fb18041024edc07dc"],["78c9407544ac132692ee1910a02439958ae04877151342ea96c4b6b35a49f51","f3e0319169eb9b85d5404795539a5e68fa1fbd583c064d2462b675f194a3ddb4"],["494f4be219a1a77016dcd838431aea0001cdc8ae7a6fc688726578d9702857a5","42242a969283a5f339ba7f075e36ba2af925ce30d767ed6e55f4b031880d562c"],["a598a8030da6d86c6bc7f2f5144ea549d28211ea58faa70ebf4c1e665c1fe9b5","204b5d6f84822c307e4b4a7140737aec23fc63b65b35f86a10026dbd2d864e6b"],["c41916365abb2b5d09192f5f2dbeafec208f020f12570a184dbadc3e58595997","4f14351d0087efa49d245b328984989d5caf9450f34bfc0ed16e96b58fa9913"],["841d6063a586fa475a724604da03bc5b92a2e0d2e0a36acfe4c73a5514742881","73867f59c0659e81904f9a1c7543698e62562d6744c169ce7a36de01a8d6154"],["5e95bb399a6971d376026947f89bde2f282b33810928be4ded112ac4d70e20d5","39f23f366809085beebfc71181313775a99c9aed7d8ba38b161384c746012865"],["36e4641a53948fd476c39f8a99fd974e5ec07564b5315d8bf99471bca0ef2f66","d2424b1b1abe4eb8164227b085c9aa9456ea13493fd563e06fd51cf5694c78fc"],["336581ea7bfbbb290c191a2f507a41cf5643842170e914faeab27c2c579f726","ead12168595fe1be99252129b6e56b3391f7ab1410cd1e0ef3dcdcabd2fda224"],["8ab89816dadfd6b6a1f2634fcf00ec8403781025ed6890c4849742706bd43ede","6fdcef09f2f6d0a044e654aef624136f503d459c3e89845858a47a9129cdd24e"],["1e33f1a746c9c5778133344d9299fcaa20b0938e8acff2544bb40284b8c5fb94","60660257dd11b3aa9c8ed618d24edff2306d320f1d03010e33a7d2057f3b3b6"],["85b7c1dcb3cec1b7ee7f30ded79dd20a0ed1f4cc18cbcfcfa410361fd8f08f31","3d98a9cdd026dd43f39048f25a8847f4fcafad1895d7a633c6fed3c35e999511"],["29df9fbd8d9e46509275f4b125d6d45d7fbe9a3b878a7af872a2800661ac5f51","b4c4fe99c775a606e2d8862179139ffda61dc861c019e55cd2876eb2a27d84b"],["a0b1cae06b0a847a3fea6e671aaf8adfdfe58ca2f768105c8082b2e449fce252","ae434102edde0958ec4b19d917a6a28e6b72da1834aff0e650f049503a296cf2"],["4e8ceafb9b3e9a136dc7ff67e840295b499dfb3b2133e4ba113f2e4c0e121e5","cf2174118c8b6d7a4b48f6d534ce5c79422c086a63460502b827ce62a326683c"],["d24a44e047e19b6f5afb81c7ca2f69080a5076689a010919f42725c2b789a33b","6fb8d5591b466f8fc63db50f1c0f1c69013f996887b8244d2cdec417afea8fa3"],["ea01606a7a6c9cdd249fdfcfacb99584001edd28abbab77b5104e98e8e3b35d4","322af4908c7312b0cfbfe369f7a7b3cdb7d4494bc2823700cfd652188a3ea98d"],["af8addbf2b661c8a6c6328655eb96651252007d8c5ea31be4ad196de8ce2131f","6749e67c029b85f52a034eafd096836b2520818680e26ac8f3dfbcdb71749700"],["e3ae1974566ca06cc516d47e0fb165a674a3dabcfca15e722f0e3450f45889","2aeabe7e4531510116217f07bf4d07300de97e4874f81f533420a72eeb0bd6a4"],["591ee355313d99721cf6993ffed1e3e301993ff3ed258802075ea8ced397e246","b0ea558a113c30bea60fc4775460c7901ff0b053d25ca2bdeee98f1a4be5d196"],["11396d55fda54c49f19aa97318d8da61fa8584e47b084945077cf03255b52984","998c74a8cd45ac01289d5833a7beb4744ff536b01b257be4c5767bea93ea57a4"],["3c5d2a1ba39c5a1790000738c9e0c40b8dcdfd5468754b6405540157e017aa7a","b2284279995a34e2f9d4de7396fc18b80f9b8b9fdd270f6661f79ca4c81bd257"],["cc8704b8a60a0defa3a99a7299f2e9c3fbc395afb04ac078425ef8a1793cc030","bdd46039feed17881d1e0862db347f8cf395b74fc4bcdc4e940b74e3ac1f1b13"],["c533e4f7ea8555aacd9777ac5cad29b97dd4defccc53ee7ea204119b2889b197","6f0a256bc5efdf429a2fb6242f1a43a2d9b925bb4a4b3a26bb8e0f45eb596096"],["c14f8f2ccb27d6f109f6d08d03cc96a69ba8c34eec07bbcf566d48e33da6593","c359d6923bb398f7fd4473e16fe1c28475b740dd098075e6c0e8649113dc3a38"],["a6cbc3046bc6a450bac24789fa17115a4c9739ed75f8f21ce441f72e0b90e6ef","21ae7f4680e889bb130619e2c0f95a360ceb573c70603139862afd617fa9b9f"],["347d6d9a02c48927ebfb86c1359b1caf130a3c0267d11ce6344b39f99d43cc38","60ea7f61a353524d1c987f6ecec92f086d565ab687870cb12689ff1e31c74448"],["da6545d2181db8d983f7dcb375ef5866d47c67b1bf31c8cf855ef7437b72656a","49b96715ab6878a79e78f07ce5680c5d6673051b4935bd897fea824b77dc208a"],["c40747cc9d012cb1a13b8148309c6de7ec25d6945d657146b9d5994b8feb1111","5ca560753be2a12fc6de6caf2cb489565db936156b9514e1bb5e83037e0fa2d4"],["4e42c8ec82c99798ccf3a610be870e78338c7f713348bd34c8203ef4037f3502","7571d74ee5e0fb92a7a8b33a07783341a5492144cc54bcc40a94473693606437"],["3775ab7089bc6af823aba2e1af70b236d251cadb0c86743287522a1b3b0dedea","be52d107bcfa09d8bcb9736a828cfa7fac8db17bf7a76a2c42ad961409018cf7"],["cee31cbf7e34ec379d94fb814d3d775ad954595d1314ba8846959e3e82f74e26","8fd64a14c06b589c26b947ae2bcf6bfa0149ef0be14ed4d80f448a01c43b1c6d"],["b4f9eaea09b6917619f6ea6a4eb5464efddb58fd45b1ebefcdc1a01d08b47986","39e5c9925b5a54b07433a4f18c61726f8bb131c012ca542eb24a8ac07200682a"],["d4263dfc3d2df923a0179a48966d30ce84e2515afc3dccc1b77907792ebcc60e","62dfaf07a0f78feb30e30d6295853ce189e127760ad6cf7fae164e122a208d54"],["48457524820fa65a4f8d35eb6930857c0032acc0a4a2de422233eeda897612c4","25a748ab367979d98733c38a1fa1c2e7dc6cc07db2d60a9ae7a76aaa49bd0f77"],["dfeeef1881101f2cb11644f3a2afdfc2045e19919152923f367a1767c11cceda","ecfb7056cf1de042f9420bab396793c0c390bde74b4bbdff16a83ae09a9a7517"],["6d7ef6b17543f8373c573f44e1f389835d89bcbc6062ced36c82df83b8fae859","cd450ec335438986dfefa10c57fea9bcc521a0959b2d80bbf74b190dca712d10"],["e75605d59102a5a2684500d3b991f2e3f3c88b93225547035af25af66e04541f","f5c54754a8f71ee540b9b48728473e314f729ac5308b06938360990e2bfad125"],["eb98660f4c4dfaa06a2be453d5020bc99a0c2e60abe388457dd43fefb1ed620c","6cb9a8876d9cb8520609af3add26cd20a0a7cd8a9411131ce85f44100099223e"],["13e87b027d8514d35939f2e6892b19922154596941888336dc3563e3b8dba942","fef5a3c68059a6dec5d624114bf1e91aac2b9da568d6abeb2570d55646b8adf1"],["ee163026e9fd6fe017c38f06a5be6fc125424b371ce2708e7bf4491691e5764a","1acb250f255dd61c43d94ccc670d0f58f49ae3fa15b96623e5430da0ad6c62b2"],["b268f5ef9ad51e4d78de3a750c2dc89b1e626d43505867999932e5db33af3d80","5f310d4b3c99b9ebb19f77d41c1dee018cf0d34fd4191614003e945a1216e423"],["ff07f3118a9df035e9fad85eb6c7bfe42b02f01ca99ceea3bf7ffdba93c4750d","438136d603e858a3a5c440c38eccbaddc1d2942114e2eddd4740d098ced1f0d8"],["8d8b9855c7c052a34146fd20ffb658bea4b9f69e0d825ebec16e8c3ce2b526a1","cdb559eedc2d79f926baf44fb84ea4d44bcf50fee51d7ceb30e2e7f463036758"],["52db0b5384dfbf05bfa9d472d7ae26dfe4b851ceca91b1eba54263180da32b63","c3b997d050ee5d423ebaf66a6db9f57b3180c902875679de924b69d84a7b375"],["e62f9490d3d51da6395efd24e80919cc7d0f29c3f3fa48c6fff543becbd43352","6d89ad7ba4876b0b22c2ca280c682862f342c8591f1daf5170e07bfd9ccafa7d"],["7f30ea2476b399b4957509c88f77d0191afa2ff5cb7b14fd6d8e7d65aaab1193","ca5ef7d4b231c94c3b15389a5f6311e9daff7bb67b103e9880ef4bff637acaec"],["5098ff1e1d9f14fb46a210fada6c903fef0fb7b4a1dd1d9ac60a0361800b7a00","9731141d81fc8f8084d37c6e7542006b3ee1b40d60dfe5362a5b132fd17ddc0"],["32b78c7de9ee512a72895be6b9cbefa6e2f3c4ccce445c96b9f2c81e2778ad58","ee1849f513df71e32efc3896ee28260c73bb80547ae2275ba497237794c8753c"],["e2cb74fddc8e9fbcd076eef2a7c72b0ce37d50f08269dfc074b581550547a4f7","d3aa2ed71c9dd2247a62df062736eb0baddea9e36122d2be8641abcb005cc4a4"],["8438447566d4d7bedadc299496ab357426009a35f235cb141be0d99cd10ae3a8","c4e1020916980a4da5d01ac5e6ad330734ef0d7906631c4f2390426b2edd791f"],["4162d488b89402039b584c6fc6c308870587d9c46f660b878ab65c82c711d67e","67163e903236289f776f22c25fb8a3afc1732f2b84b4e95dbda47ae5a0852649"],["3fad3fa84caf0f34f0f89bfd2dcf54fc175d767aec3e50684f3ba4a4bf5f683d","cd1bc7cb6cc407bb2f0ca647c718a730cf71872e7d0d2a53fa20efcdfe61826"],["674f2600a3007a00568c1a7ce05d0816c1fb84bf1370798f1c69532faeb1a86b","299d21f9413f33b3edf43b257004580b70db57da0b182259e09eecc69e0d38a5"],["d32f4da54ade74abb81b815ad1fb3b263d82d6c692714bcff87d29bd5ee9f08f","f9429e738b8e53b968e99016c059707782e14f4535359d582fc416910b3eea87"],["30e4e670435385556e593657135845d36fbb6931f72b08cb1ed954f1e3ce3ff6","462f9bce619898638499350113bbc9b10a878d35da70740dc695a559eb88db7b"],["be2062003c51cc3004682904330e4dee7f3dcd10b01e580bf1971b04d4cad297","62188bc49d61e5428573d48a74e1c655b1c61090905682a0d5558ed72dccb9bc"],["93144423ace3451ed29e0fb9ac2af211cb6e84a601df5993c419859fff5df04a","7c10dfb164c3425f5c71a3f9d7992038f1065224f72bb9d1d902a6d13037b47c"],["b015f8044f5fcbdcf21ca26d6c34fb8197829205c7b7d2a7cb66418c157b112c","ab8c1e086d04e813744a655b2df8d5f83b3cdc6faa3088c1d3aea1454e3a1d5f"],["d5e9e1da649d97d89e4868117a465a3a4f8a18de57a140d36b3f2af341a21b52","4cb04437f391ed73111a13cc1d4dd0db1693465c2240480d8955e8592f27447a"],["d3ae41047dd7ca065dbf8ed77b992439983005cd72e16d6f996a5316d36966bb","bd1aeb21ad22ebb22a10f0303417c6d964f8cdd7df0aca614b10dc14d125ac46"],["463e2763d885f958fc66cdd22800f0a487197d0a82e377b49f80af87c897b065","bfefacdb0e5d0fd7df3a311a94de062b26b80c61fbc97508b79992671ef7ca7f"],["7985fdfd127c0567c6f53ec1bb63ec3158e597c40bfe747c83cddfc910641917","603c12daf3d9862ef2b25fe1de289aed24ed291e0ec6708703a5bd567f32ed03"],["74a1ad6b5f76e39db2dd249410eac7f99e74c59cb83d2d0ed5ff1543da7703e9","cc6157ef18c9c63cd6193d83631bbea0093e0968942e8c33d5737fd790e0db08"],["30682a50703375f602d416664ba19b7fc9bab42c72747463a71d0896b22f6da3","553e04f6b018b4fa6c8f39e7f311d3176290d0e0f19ca73f17714d9977a22ff8"],["9e2158f0d7c0d5f26c3791efefa79597654e7a2b2464f52b1ee6c1347769ef57","712fcdd1b9053f09003a3481fa7762e9ffd7c8ef35a38509e2fbf2629008373"],["176e26989a43c9cfeba4029c202538c28172e566e3c4fce7322857f3be327d66","ed8cc9d04b29eb877d270b4878dc43c19aefd31f4eee09ee7b47834c1fa4b1c3"],["75d46efea3771e6e68abb89a13ad747ecf1892393dfc4f1b7004788c50374da8","9852390a99507679fd0b86fd2b39a868d7efc22151346e1a3ca4726586a6bed8"],["809a20c67d64900ffb698c4c825f6d5f2310fb0451c869345b7319f645605721","9e994980d9917e22b76b061927fa04143d096ccc54963e6a5ebfa5f3f8e286c1"],["1b38903a43f7f114ed4500b4eac7083fdefece1cf29c63528d563446f972c180","4036edc931a60ae889353f77fd53de4a2708b26b6f5da72ad3394119daf408f9"]]}}},3136:(Qe,te,g)=>{"use strict";var e=te,t=g(8723),w=g(9210),S=g(1832);e.assert=w,e.toArray=S.toArray,e.zero2=S.zero2,e.toHex=S.toHex,e.encode=S.encode,e.getNAF=function l(T,y,F){var z,R=new Array(Math.max(T.bitLength(),F)+1);for(z=0;z(W>>1)-1?(W>>1)-Q:Q):j=0,R[z]=j,$.iushrn(1)}return R},e.getJSF=function x(T,y){var F=[[],[]];T=T.clone(),y=y.clone();for(var W,R=0,z=0;T.cmpn(-R)>0||y.cmpn(-z)>0;){var Q,J,$=T.andln(3)+R&3,j=y.andln(3)+z&3;3===$&&($=-1),3===j&&(j=-1),Q=1&$?3!=(W=T.andln(7)+R&7)&&5!==W||2!==j?$:-$:0,F[0].push(Q),J=1&j?3!=(W=y.andln(7)+z&7)&&5!==W||2!==$?j:-j:0,F[1].push(J),2*R===Q+1&&(R=1-R),2*z===J+1&&(z=1-z),T.iushrn(1),y.iushrn(1)}return F},e.cachedProperty=function f(T,y,F){var R="_"+y;T.prototype[y]=function(){return void 0!==this[R]?this[R]:this[R]=F.call(this)}},e.parseBytes=function I(T){return"string"==typeof T?e.toArray(T,"hex"):T},e.intFromLE=function d(T){return new t(T,"hex","le")}},8723:function(Qe,te,g){!function(e,t){"use strict";function w(D,n){if(!D)throw new Error(n||"Assertion failed")}function S(D,n){D.super_=n;var c=function(){};c.prototype=n.prototype,D.prototype=new c,D.prototype.constructor=D}function l(D,n,c){if(l.isBN(D))return D;this.negative=0,this.words=null,this.length=0,this.red=null,null!==D&&(("le"===n||"be"===n)&&(c=n,n=10),this._init(D||0,n||10,c||"be"))}var x;"object"==typeof e?e.exports=l:t.BN=l,l.BN=l,l.wordSize=26;try{x=typeof window<"u"&&typeof window.Buffer<"u"?window.Buffer:g(9368).Buffer}catch{}function f(D,n){var c=D.charCodeAt(n);return c>=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],y=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],F=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function z(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ee.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},3174:Qe=>{"use strict";Qe.exports=function(g){for(var e=[],t=g.length,w=0;w=55296&&S<=56319&&t>w+1){var l=g.charCodeAt(w+1);l>=56320&&l<=57343&&(S=1024*(S-55296)+l-56320+65536,w+=1)}S<128?e.push(S):S<2048?(e.push(S>>6|192),e.push(63&S|128)):S<55296||S>=57344&&S<65536?(e.push(S>>12|224),e.push(S>>6&63|128),e.push(63&S|128)):S>=65536&&S<=1114111?(e.push(S>>18|240),e.push(S>>12&63|128),e.push(S>>6&63|128),e.push(63&S|128)):e.push(239,191,189)}return new Uint8Array(e).buffer}},4356:Qe=>{"use strict";var e,te="object"==typeof Reflect?Reflect:null,g=te&&"function"==typeof te.apply?te.apply:function(ee,ie,ge){return Function.prototype.apply.call(ee,ie,ge)};e=te&&"function"==typeof te.ownKeys?te.ownKeys:Object.getOwnPropertySymbols?function(ee){return Object.getOwnPropertyNames(ee).concat(Object.getOwnPropertySymbols(ee))}:function(ee){return Object.getOwnPropertyNames(ee)};var w=Number.isNaN||function(ee){return ee!=ee};function S(){S.init.call(this)}Qe.exports=S,Qe.exports.once=function $(J,ee){return new Promise(function(ie,ge){function ae(Te){J.removeListener(ee,Me),ge(Te)}function Me(){"function"==typeof J.removeListener&&J.removeListener("error",ae),ie([].slice.call(arguments))}Q(J,ee,Me,{once:!0}),"error"!==ee&&function j(J,ee,ie){"function"==typeof J.on&&Q(J,"error",ee,ie)}(J,ae,{once:!0})})},S.EventEmitter=S,S.prototype._events=void 0,S.prototype._eventsCount=0,S.prototype._maxListeners=void 0;var l=10;function x(J){if("function"!=typeof J)throw new TypeError('The "listener" argument must be of type Function. Received type '+typeof J)}function f(J){return void 0===J._maxListeners?S.defaultMaxListeners:J._maxListeners}function I(J,ee,ie,ge){var ae,Me,Te;if(x(ie),void 0===(Me=J._events)?(Me=J._events=Object.create(null),J._eventsCount=0):(void 0!==Me.newListener&&(J.emit("newListener",ee,ie.listener?ie.listener:ie),Me=J._events),Te=Me[ee]),void 0===Te)Te=Me[ee]=ie,++J._eventsCount;else if("function"==typeof Te?Te=Me[ee]=ge?[ie,Te]:[Te,ie]:ge?Te.unshift(ie):Te.push(ie),(ae=f(J))>0&&Te.length>ae&&!Te.warned){Te.warned=!0;var de=new Error("Possible EventEmitter memory leak detected. "+Te.length+" "+String(ee)+" listeners added. Use emitter.setMaxListeners() to increase limit");de.name="MaxListenersExceededWarning",de.emitter=J,de.type=ee,de.count=Te.length,function t(J){console&&console.warn&&console.warn(J)}(de)}return J}function d(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function T(J,ee,ie){var ge={fired:!1,wrapFn:void 0,target:J,type:ee,listener:ie},ae=d.bind(ge);return ae.listener=ie,ge.wrapFn=ae,ae}function y(J,ee,ie){var ge=J._events;if(void 0===ge)return[];var ae=ge[ee];return void 0===ae?[]:"function"==typeof ae?ie?[ae.listener||ae]:[ae]:ie?function W(J){for(var ee=new Array(J.length),ie=0;ie0&&(Te=ie[0]),Te instanceof Error)throw Te;var de=new Error("Unhandled error."+(Te?" ("+Te.message+")":""));throw de.context=Te,de}var D=Me[ee];if(void 0===D)return!1;if("function"==typeof D)g(D,this,ie);else{var n=D.length,c=R(D,n);for(ge=0;ge=0;Te--)if(ge[Te]===ie||ge[Te].listener===ie){de=ge[Te].listener,Me=Te;break}if(Me<0)return this;0===Me?ge.shift():function z(J,ee){for(;ee+1=0;ae--)this.removeListener(ee,ie[ae]);return this},S.prototype.listeners=function(ee){return y(this,ee,!0)},S.prototype.rawListeners=function(ee){return y(this,ee,!1)},S.listenerCount=function(J,ee){return"function"==typeof J.listenerCount?J.listenerCount(ee):F.call(J,ee)},S.prototype.listenerCount=F,S.prototype.eventNames=function(){return this._eventsCount>0?e(this._events):[]}},592:(Qe,te,g)=>{var e=g(7054).Buffer,t=g(4725);Qe.exports=function w(S,l,x,f){if(e.isBuffer(S)||(S=e.from(S,"binary")),l&&(e.isBuffer(l)||(l=e.from(l,"binary")),8!==l.length))throw new RangeError("salt should be Buffer with 8 byte length");for(var I=x/8,d=e.alloc(I),T=e.alloc(f||0),y=e.alloc(0);I>0||f>0;){var F=new t;F.update(y),F.update(S),l&&F.update(l),y=F.digest();var R=0;if(I>0){var z=d.length-I;R=Math.min(I,y.length),y.copy(d,z,0,R),I-=R}if(R0){var W=T.length-f,$=Math.min(f,y.length-R);y.copy(T,W,R,R+$),f-=$}}return y.fill(0),{key:d,iv:T}}},3686:(Qe,te,g)=>{"use strict";var e=g(7054).Buffer,t=g(7045).Transform;function l(x){t.call(this),this._block=e.allocUnsafe(x),this._blockSize=x,this._blockOffset=0,this._length=[0,0,0,0],this._finalized=!1}g(1993)(l,t),l.prototype._transform=function(x,f,I){var d=null;try{this.update(x,f)}catch(T){d=T}I(d)},l.prototype._flush=function(x){var f=null;try{this.push(this.digest())}catch(I){f=I}x(f)},l.prototype.update=function(x,f){if(function S(x,f){if(!e.isBuffer(x)&&"string"!=typeof x)throw new TypeError(f+" must be a string or a buffer")}(x,"Data"),this._finalized)throw new Error("Digest already called");e.isBuffer(x)||(x=e.from(x,f));for(var I=this._block,d=0;this._blockOffset+x.length-d>=this._blockSize;){for(var T=this._blockOffset;T0;++y)this._length[y]+=F,(F=this._length[y]/4294967296|0)>0&&(this._length[y]-=4294967296*F);return this},l.prototype._update=function(){throw new Error("_update is not implemented")},l.prototype.digest=function(x){if(this._finalized)throw new Error("Digest already called");this._finalized=!0;var f=this._digest();void 0!==x&&(f=f.toString(x)),this._block.fill(0),this._blockOffset=0;for(var I=0;I<4;++I)this._length[I]=0;return f},l.prototype._digest=function(){throw new Error("_digest is not implemented")},Qe.exports=l},2529:(Qe,te,g)=>{var e=te;e.utils=g(8283),e.common=g(2901),e.sha=g(8528),e.ripemd=g(5283),e.hmac=g(7163),e.sha1=e.sha.sha1,e.sha256=e.sha.sha256,e.sha224=e.sha.sha224,e.sha384=e.sha.sha384,e.sha512=e.sha.sha512,e.ripemd160=e.ripemd.ripemd160},2901:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(9210);function w(){this.pending=null,this.pendingTotal=0,this.blockSize=this.constructor.blockSize,this.outSize=this.constructor.outSize,this.hmacStrength=this.constructor.hmacStrength,this.padLength=this.constructor.padLength/8,this.endian="big",this._delta8=this.blockSize/8,this._delta32=this.blockSize/32}te.BlockHash=w,w.prototype.update=function(l,x){if(l=e.toArray(l,x),this.pending=this.pending?this.pending.concat(l):l,this.pendingTotal+=l.length,this.pending.length>=this._delta8){var f=(l=this.pending).length%this._delta8;this.pending=l.slice(l.length-f,l.length),0===this.pending.length&&(this.pending=null),l=e.join32(l,0,l.length-f,this.endian);for(var I=0;I>>24&255,I[d++]=l>>>16&255,I[d++]=l>>>8&255,I[d++]=255&l}else for(I[d++]=255&l,I[d++]=l>>>8&255,I[d++]=l>>>16&255,I[d++]=l>>>24&255,I[d++]=0,I[d++]=0,I[d++]=0,I[d++]=0,T=8;T{"use strict";var e=g(8283),t=g(9210);function w(S,l,x){if(!(this instanceof w))return new w(S,l,x);this.Hash=S,this.blockSize=S.blockSize/8,this.outSize=S.outSize/8,this.inner=null,this.outer=null,this._init(e.toArray(l,x))}Qe.exports=w,w.prototype._init=function(l){l.length>this.blockSize&&(l=(new this.Hash).update(l).digest()),t(l.length<=this.blockSize);for(var x=l.length;x{"use strict";var e=g(8283),t=g(2901),w=e.rotl32,S=e.sum32,l=e.sum32_3,x=e.sum32_4,f=t.BlockHash;function I(){if(!(this instanceof I))return new I;f.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.endian="little"}function d($,j,Q,J){return $<=15?j^Q^J:$<=31?j&Q|~j&J:$<=47?(j|~Q)^J:$<=63?j&J|Q&~J:j^(Q|~J)}function y($){return $<=15?1352829926:$<=31?1548603684:$<=47?1836072691:$<=63?2053994217:0}e.inherits(I,f),te.ripemd160=I,I.blockSize=512,I.outSize=160,I.hmacStrength=192,I.padLength=64,I.prototype._update=function(j,Q){for(var J=this.h[0],ee=this.h[1],ie=this.h[2],ge=this.h[3],ae=this.h[4],Me=J,Te=ee,de=ie,D=ge,n=ae,c=0;c<80;c++){var m=S(w(x(J,d(c,ee,ie,ge),j[F[c]+Q],($=c)<=15?0:$<=31?1518500249:$<=47?1859775393:$<=63?2400959708:2840853838),z[c]),ae);J=ae,ae=ge,ge=w(ie,10),ie=ee,ee=m,m=S(w(x(Me,d(79-c,Te,de,D),j[R[c]+Q],y(c)),W[c]),n),Me=n,n=D,D=w(de,10),de=Te,Te=m}var $;m=l(this.h[1],ie,D),this.h[1]=l(this.h[2],ge,n),this.h[2]=l(this.h[3],ae,Me),this.h[3]=l(this.h[4],J,Te),this.h[4]=l(this.h[0],ee,de),this.h[0]=m},I.prototype._digest=function(j){return"hex"===j?e.toHex32(this.h,"little"):e.split32(this.h,"little")};var F=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13],R=[5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11],z=[11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6],W=[8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]},8528:(Qe,te,g)=>{"use strict";te.sha1=g(3468),te.sha224=g(5563),te.sha256=g(7138),te.sha384=g(3898),te.sha512=g(827)},3468:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(2901),w=g(3161),S=e.rotl32,l=e.sum32,x=e.sum32_5,f=w.ft_1,I=t.BlockHash,d=[1518500249,1859775393,2400959708,3395469782];function T(){if(!(this instanceof T))return new T;I.call(this),this.h=[1732584193,4023233417,2562383102,271733878,3285377520],this.W=new Array(80)}e.inherits(T,I),Qe.exports=T,T.blockSize=512,T.outSize=160,T.hmacStrength=80,T.padLength=64,T.prototype._update=function(F,R){for(var z=this.W,W=0;W<16;W++)z[W]=F[R+W];for(;W{"use strict";var e=g(8283),t=g(7138);function w(){if(!(this instanceof w))return new w;t.call(this),this.h=[3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428]}e.inherits(w,t),Qe.exports=w,w.blockSize=512,w.outSize=224,w.hmacStrength=192,w.padLength=64,w.prototype._digest=function(l){return"hex"===l?e.toHex32(this.h.slice(0,7),"big"):e.split32(this.h.slice(0,7),"big")}},7138:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(2901),w=g(3161),S=g(9210),l=e.sum32,x=e.sum32_4,f=e.sum32_5,I=w.ch32,d=w.maj32,T=w.s0_256,y=w.s1_256,F=w.g0_256,R=w.g1_256,z=t.BlockHash,W=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298];function $(){if(!(this instanceof $))return new $;z.call(this),this.h=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],this.k=W,this.W=new Array(64)}e.inherits($,z),Qe.exports=$,$.blockSize=512,$.outSize=256,$.hmacStrength=192,$.padLength=64,$.prototype._update=function(Q,J){for(var ee=this.W,ie=0;ie<16;ie++)ee[ie]=Q[J+ie];for(;ie{"use strict";var e=g(8283),t=g(827);function w(){if(!(this instanceof w))return new w;t.call(this),this.h=[3418070365,3238371032,1654270250,914150663,2438529370,812702999,355462360,4144912697,1731405415,4290775857,2394180231,1750603025,3675008525,1694076839,1203062813,3204075428]}e.inherits(w,t),Qe.exports=w,w.blockSize=1024,w.outSize=384,w.hmacStrength=192,w.padLength=128,w.prototype._digest=function(l){return"hex"===l?e.toHex32(this.h.slice(0,12),"big"):e.split32(this.h.slice(0,12),"big")}},827:(Qe,te,g)=>{"use strict";var e=g(8283),t=g(2901),w=g(9210),S=e.rotr64_hi,l=e.rotr64_lo,x=e.shr64_hi,f=e.shr64_lo,I=e.sum64,d=e.sum64_hi,T=e.sum64_lo,y=e.sum64_4_hi,F=e.sum64_4_lo,R=e.sum64_5_hi,z=e.sum64_5_lo,W=t.BlockHash,$=[1116352408,3609767458,1899447441,602891725,3049323471,3964484399,3921009573,2173295548,961987163,4081628472,1508970993,3053834265,2453635748,2937671579,2870763221,3664609560,3624381080,2734883394,310598401,1164996542,607225278,1323610764,1426881987,3590304994,1925078388,4068182383,2162078206,991336113,2614888103,633803317,3248222580,3479774868,3835390401,2666613458,4022224774,944711139,264347078,2341262773,604807628,2007800933,770255983,1495990901,1249150122,1856431235,1555081692,3175218132,1996064986,2198950837,2554220882,3999719339,2821834349,766784016,2952996808,2566594879,3210313671,3203337956,3336571891,1034457026,3584528711,2466948901,113926993,3758326383,338241895,168717936,666307205,1188179964,773529912,1546045734,1294757372,1522805485,1396182291,2643833823,1695183700,2343527390,1986661051,1014477480,2177026350,1206759142,2456956037,344077627,2730485921,1290863460,2820302411,3158454273,3259730800,3505952657,3345764771,106217008,3516065817,3606008344,3600352804,1432725776,4094571909,1467031594,275423344,851169720,430227734,3100823752,506948616,1363258195,659060556,3750685593,883997877,3785050280,958139571,3318307427,1322822218,3812723403,1537002063,2003034995,1747873779,3602036899,1955562222,1575990012,2024104815,1125592928,2227730452,2716904306,2361852424,442776044,2428436474,593698344,2756734187,3733110249,3204031479,2999351573,3329325298,3815920427,3391569614,3928383900,3515267271,566280711,3940187606,3454069534,4118630271,4000239992,116418474,1914138554,174292421,2731055270,289380356,3203993006,460393269,320620315,685471733,587496836,852142971,1086792851,1017036298,365543100,1126000580,2618297676,1288033470,3409855158,1501505948,4234509866,1607167915,987167468,1816402316,1246189591];function j(){if(!(this instanceof j))return new j;W.call(this),this.h=[1779033703,4089235720,3144134277,2227873595,1013904242,4271175723,2773480762,1595750129,1359893119,2917565137,2600822924,725511199,528734635,4215389547,1541459225,327033209],this.k=$,this.W=new Array(160)}function Q(m,h,C,k,L){var _=m&C^~m&L;return _<0&&(_+=4294967296),_}function J(m,h,C,k,L,_){var r=h&k^~h&_;return r<0&&(r+=4294967296),r}function ee(m,h,C,k,L){var _=m&C^m&L^C&L;return _<0&&(_+=4294967296),_}function ie(m,h,C,k,L,_){var r=h&k^h&_^k&_;return r<0&&(r+=4294967296),r}function ge(m,h){var _=S(m,h,28)^S(h,m,2)^S(h,m,7);return _<0&&(_+=4294967296),_}function ae(m,h){var _=l(m,h,28)^l(h,m,2)^l(h,m,7);return _<0&&(_+=4294967296),_}function Me(m,h){var _=S(m,h,14)^S(m,h,18)^S(h,m,9);return _<0&&(_+=4294967296),_}function Te(m,h){var _=l(m,h,14)^l(m,h,18)^l(h,m,9);return _<0&&(_+=4294967296),_}function de(m,h){var _=S(m,h,1)^S(m,h,8)^x(m,h,7);return _<0&&(_+=4294967296),_}function D(m,h){var _=l(m,h,1)^l(m,h,8)^f(m,h,7);return _<0&&(_+=4294967296),_}function n(m,h){var _=S(m,h,19)^S(h,m,29)^x(m,h,6);return _<0&&(_+=4294967296),_}function c(m,h){var _=l(m,h,19)^l(h,m,29)^f(m,h,6);return _<0&&(_+=4294967296),_}e.inherits(j,W),Qe.exports=j,j.blockSize=1024,j.outSize=512,j.hmacStrength=192,j.padLength=128,j.prototype._prepareBlock=function(h,C){for(var k=this.W,L=0;L<32;L++)k[L]=h[C+L];for(;L{"use strict";var t=g(8283).rotr32;function S(y,F,R){return y&F^~y&R}function l(y,F,R){return y&F^y&R^F&R}function x(y,F,R){return y^F^R}te.ft_1=function w(y,F,R,z){return 0===y?S(F,R,z):1===y||3===y?x(F,R,z):2===y?l(F,R,z):void 0},te.ch32=S,te.maj32=l,te.p32=x,te.s0_256=function f(y){return t(y,2)^t(y,13)^t(y,22)},te.s1_256=function I(y){return t(y,6)^t(y,11)^t(y,25)},te.g0_256=function d(y){return t(y,7)^t(y,18)^y>>>3},te.g1_256=function T(y){return t(y,17)^t(y,19)^y>>>10}},8283:(Qe,te,g)=>{"use strict";var e=g(9210),t=g(1993);function w(c,m){return!(55296!=(64512&c.charCodeAt(m))||m<0||m+1>=c.length)&&56320==(64512&c.charCodeAt(m+1))}function x(c){return(c>>>24|c>>>8&65280|c<<8&16711680|(255&c)<<24)>>>0}function I(c){return 1===c.length?"0"+c:c}function d(c){return 7===c.length?"0"+c:6===c.length?"00"+c:5===c.length?"000"+c:4===c.length?"0000"+c:3===c.length?"00000"+c:2===c.length?"000000"+c:1===c.length?"0000000"+c:c}te.inherits=t,te.toArray=function S(c,m){if(Array.isArray(c))return c.slice();if(!c)return[];var h=[];if("string"==typeof c)if(m){if("hex"===m)for((c=c.replace(/[^a-z0-9]+/gi,"")).length%2!=0&&(c="0"+c),k=0;k>6|192,h[C++]=63&L|128):w(c,k)?(L=65536+((1023&L)<<10)+(1023&c.charCodeAt(++k)),h[C++]=L>>18|240,h[C++]=L>>12&63|128,h[C++]=L>>6&63|128,h[C++]=63&L|128):(h[C++]=L>>12|224,h[C++]=L>>6&63|128,h[C++]=63&L|128)}else for(k=0;k>>0;return L},te.split32=function y(c,m){for(var h=new Array(4*c.length),C=0,k=0;C>>24,h[k+1]=L>>>16&255,h[k+2]=L>>>8&255,h[k+3]=255&L):(h[k+3]=L>>>24,h[k+2]=L>>>16&255,h[k+1]=L>>>8&255,h[k]=255&L)}return h},te.rotr32=function F(c,m){return c>>>m|c<<32-m},te.rotl32=function R(c,m){return c<>>32-m},te.sum32=function z(c,m){return c+m>>>0},te.sum32_3=function W(c,m,h){return c+m+h>>>0},te.sum32_4=function $(c,m,h,C){return c+m+h+C>>>0},te.sum32_5=function j(c,m,h,C,k){return c+m+h+C+k>>>0},te.sum64=function Q(c,m,h,C){var _=C+c[m+1]>>>0;c[m]=(_>>0,c[m+1]=_},te.sum64_hi=function J(c,m,h,C){return(m+C>>>0>>0},te.sum64_lo=function ee(c,m,h,C){return m+C>>>0},te.sum64_4_hi=function ie(c,m,h,C,k,L,_,r){var v=0,V=m;return v+=(V=V+C>>>0)>>0)>>0)>>0},te.sum64_4_lo=function ge(c,m,h,C,k,L,_,r){return m+C+L+r>>>0},te.sum64_5_hi=function ae(c,m,h,C,k,L,_,r,v,V){var N=0,ne=m;return N+=(ne=ne+C>>>0)>>0)>>0)>>0)>>0},te.sum64_5_lo=function Me(c,m,h,C,k,L,_,r,v,V){return m+C+L+r+V>>>0},te.rotr64_hi=function Te(c,m,h){return(m<<32-h|c>>>h)>>>0},te.rotr64_lo=function de(c,m,h){return(c<<32-h|m>>>h)>>>0},te.shr64_hi=function D(c,m,h){return c>>>h},te.shr64_lo=function n(c,m,h){return(c<<32-h|m>>>h)>>>0}},3556:(Qe,te,g)=>{"use strict";var e=g(2529),t=g(1832),w=g(9210);function S(l){if(!(this instanceof S))return new S(l);this.hash=l.hash,this.predResist=!!l.predResist,this.outLen=this.hash.outSize,this.minEntropy=l.minEntropy||this.hash.hmacStrength,this._reseed=null,this.reseedInterval=null,this.K=null,this.V=null;var x=t.toArray(l.entropy,l.entropyEnc||"hex"),f=t.toArray(l.nonce,l.nonceEnc||"hex"),I=t.toArray(l.pers,l.persEnc||"hex");w(x.length>=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._init(x,f,I)}Qe.exports=S,S.prototype._init=function(x,f,I){var d=x.concat(f).concat(I);this.K=new Array(this.outLen/8),this.V=new Array(this.outLen/8);for(var T=0;T=this.minEntropy/8,"Not enough entropy. Minimum is: "+this.minEntropy+" bits"),this._update(x.concat(I||[])),this._reseed=1},S.prototype.generate=function(x,f,I,d){if(this._reseed>this.reseedInterval)throw new Error("Reseed is required");"string"!=typeof f&&(d=I,I=f,f=null),I&&(I=t.toArray(I,d||"hex"),this._update(I));for(var T=[];T.length{te.read=function(g,e,t,w,S){var l,x,f=8*S-w-1,I=(1<>1,T=-7,y=t?S-1:0,F=t?-1:1,R=g[e+y];for(y+=F,l=R&(1<<-T)-1,R>>=-T,T+=f;T>0;l=256*l+g[e+y],y+=F,T-=8);for(x=l&(1<<-T)-1,l>>=-T,T+=w;T>0;x=256*x+g[e+y],y+=F,T-=8);if(0===l)l=1-d;else{if(l===I)return x?NaN:1/0*(R?-1:1);x+=Math.pow(2,w),l-=d}return(R?-1:1)*x*Math.pow(2,l-w)},te.write=function(g,e,t,w,S,l){var x,f,I,d=8*l-S-1,T=(1<>1,F=23===S?Math.pow(2,-24)-Math.pow(2,-77):0,R=w?0:l-1,z=w?1:-1,W=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(f=isNaN(e)?1:0,x=T):(x=Math.floor(Math.log(e)/Math.LN2),e*(I=Math.pow(2,-x))<1&&(x--,I*=2),(e+=x+y>=1?F/I:F*Math.pow(2,1-y))*I>=2&&(x++,I/=2),x+y>=T?(f=0,x=T):x+y>=1?(f=(e*I-1)*Math.pow(2,S),x+=y):(f=e*Math.pow(2,y-1)*Math.pow(2,S),x=0));S>=8;g[t+R]=255&f,R+=z,f/=256,S-=8);for(x=x<0;g[t+R]=255&x,R+=z,x/=256,d-=8);g[t+R-z]|=128*W}},1993:Qe=>{Qe.exports="function"==typeof Object.create?function(g,e){e&&(g.super_=e,g.prototype=Object.create(e.prototype,{constructor:{value:g,enumerable:!1,writable:!0,configurable:!0}}))}:function(g,e){if(e){g.super_=e;var t=function(){};t.prototype=e.prototype,g.prototype=new t,g.prototype.constructor=g}}},53:Qe=>{var te={}.toString;Qe.exports=Array.isArray||function(g){return"[object Array]"==te.call(g)}},4725:(Qe,te,g)=>{"use strict";var e=g(1993),t=g(3686),w=g(7054).Buffer,S=new Array(16);function l(){t.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878}function x(y,F){return y<>>32-F}function f(y,F,R,z,W,$,j){return x(y+(F&R|~F&z)+W+$|0,j)+F|0}function I(y,F,R,z,W,$,j){return x(y+(F&z|R&~z)+W+$|0,j)+F|0}function d(y,F,R,z,W,$,j){return x(y+(F^R^z)+W+$|0,j)+F|0}function T(y,F,R,z,W,$,j){return x(y+(R^(F|~z))+W+$|0,j)+F|0}e(l,t),l.prototype._update=function(){for(var y=S,F=0;F<16;++F)y[F]=this._block.readInt32LE(4*F);var R=this._a,z=this._b,W=this._c,$=this._d;R=f(R,z,W,$,y[0],3614090360,7),$=f($,R,z,W,y[1],3905402710,12),W=f(W,$,R,z,y[2],606105819,17),z=f(z,W,$,R,y[3],3250441966,22),R=f(R,z,W,$,y[4],4118548399,7),$=f($,R,z,W,y[5],1200080426,12),W=f(W,$,R,z,y[6],2821735955,17),z=f(z,W,$,R,y[7],4249261313,22),R=f(R,z,W,$,y[8],1770035416,7),$=f($,R,z,W,y[9],2336552879,12),W=f(W,$,R,z,y[10],4294925233,17),z=f(z,W,$,R,y[11],2304563134,22),R=f(R,z,W,$,y[12],1804603682,7),$=f($,R,z,W,y[13],4254626195,12),W=f(W,$,R,z,y[14],2792965006,17),R=I(R,z=f(z,W,$,R,y[15],1236535329,22),W,$,y[1],4129170786,5),$=I($,R,z,W,y[6],3225465664,9),W=I(W,$,R,z,y[11],643717713,14),z=I(z,W,$,R,y[0],3921069994,20),R=I(R,z,W,$,y[5],3593408605,5),$=I($,R,z,W,y[10],38016083,9),W=I(W,$,R,z,y[15],3634488961,14),z=I(z,W,$,R,y[4],3889429448,20),R=I(R,z,W,$,y[9],568446438,5),$=I($,R,z,W,y[14],3275163606,9),W=I(W,$,R,z,y[3],4107603335,14),z=I(z,W,$,R,y[8],1163531501,20),R=I(R,z,W,$,y[13],2850285829,5),$=I($,R,z,W,y[2],4243563512,9),W=I(W,$,R,z,y[7],1735328473,14),R=d(R,z=I(z,W,$,R,y[12],2368359562,20),W,$,y[5],4294588738,4),$=d($,R,z,W,y[8],2272392833,11),W=d(W,$,R,z,y[11],1839030562,16),z=d(z,W,$,R,y[14],4259657740,23),R=d(R,z,W,$,y[1],2763975236,4),$=d($,R,z,W,y[4],1272893353,11),W=d(W,$,R,z,y[7],4139469664,16),z=d(z,W,$,R,y[10],3200236656,23),R=d(R,z,W,$,y[13],681279174,4),$=d($,R,z,W,y[0],3936430074,11),W=d(W,$,R,z,y[3],3572445317,16),z=d(z,W,$,R,y[6],76029189,23),R=d(R,z,W,$,y[9],3654602809,4),$=d($,R,z,W,y[12],3873151461,11),W=d(W,$,R,z,y[15],530742520,16),R=T(R,z=d(z,W,$,R,y[2],3299628645,23),W,$,y[0],4096336452,6),$=T($,R,z,W,y[7],1126891415,10),W=T(W,$,R,z,y[14],2878612391,15),z=T(z,W,$,R,y[5],4237533241,21),R=T(R,z,W,$,y[12],1700485571,6),$=T($,R,z,W,y[3],2399980690,10),W=T(W,$,R,z,y[10],4293915773,15),z=T(z,W,$,R,y[1],2240044497,21),R=T(R,z,W,$,y[8],1873313359,6),$=T($,R,z,W,y[15],4264355552,10),W=T(W,$,R,z,y[6],2734768916,15),z=T(z,W,$,R,y[13],1309151649,21),R=T(R,z,W,$,y[4],4149444226,6),$=T($,R,z,W,y[11],3174756917,10),W=T(W,$,R,z,y[2],718787259,15),z=T(z,W,$,R,y[9],3951481745,21),this._a=this._a+R|0,this._b=this._b+z|0,this._c=this._c+W|0,this._d=this._d+$|0},l.prototype._digest=function(){this._block[this._blockOffset++]=128,this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0),this._block.fill(0,this._blockOffset,56),this._block.writeUInt32LE(this._length[0],56),this._block.writeUInt32LE(this._length[1],60),this._update();var y=w.allocUnsafe(16);return y.writeInt32LE(this._a,0),y.writeInt32LE(this._b,4),y.writeInt32LE(this._c,8),y.writeInt32LE(this._d,12),y},Qe.exports=l},3459:(Qe,te,g)=>{var e=g(7223),t=g(5294);function w(S){this.rand=S||new t.Rand}Qe.exports=w,w.create=function(l){return new w(l)},w.prototype._randbelow=function(l){var x=l.bitLength(),f=Math.ceil(x/8);do{var I=new e(this.rand.generate(f))}while(I.cmp(l)>=0);return I},w.prototype._randrange=function(l,x){var f=x.sub(l);return l.add(this._randbelow(f))},w.prototype.test=function(l,x,f){var I=l.bitLength(),d=e.mont(l),T=new e(1).toRed(d);x||(x=Math.max(1,I/48|0));for(var y=l.subn(1),F=0;!y.testn(F);F++);for(var R=l.shrn(F),z=y.toRed(d);x>0;x--){var $=this._randrange(new e(2),y);f&&f($);var j=$.toRed(d).redPow(R);if(0!==j.cmp(T)&&0!==j.cmp(z)){for(var Q=1;Q0;x--){var z=this._randrange(new e(2),T),W=l.gcd(z);if(0!==W.cmpn(1))return W;var $=z.toRed(I).redPow(F);if(0!==$.cmp(d)&&0!==$.cmp(R)){for(var j=1;j=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],y=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],F=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function z(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ee.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},9210:Qe=>{function te(g,e){if(!g)throw new Error(e||"Assertion failed")}Qe.exports=te,te.equal=function(e,t,w){if(e!=t)throw new Error(w||"Assertion failed: "+e+" != "+t)}},1832:(Qe,te)=>{"use strict";var g=te;function t(S){return 1===S.length?"0"+S:S}function w(S){for(var l="",x=0;x>8,T=255&I;d?x.push(d,T):x.push(T)}return x},g.zero2=t,g.toHex=w,g.encode=function(l,x){return"hex"===x?w(l):l}},1264:(Qe,te,g)=>{"use strict";Object.defineProperty(te,"__esModule",{value:!0});var e=g(4478);Object.keys(e).forEach(function(t){"default"!==t&&Object.defineProperty(te,t,{enumerable:!0,get:function(){return e[t]}})})},3138:(Qe,te,g)=>{"use strict";var e=g(1990);te.certificate=g(4772);var t=e.define("RSAPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("modulus").int(),this.key("publicExponent").int(),this.key("privateExponent").int(),this.key("prime1").int(),this.key("prime2").int(),this.key("exponent1").int(),this.key("exponent2").int(),this.key("coefficient").int())});te.RSAPrivateKey=t;var w=e.define("RSAPublicKey",function(){this.seq().obj(this.key("modulus").int(),this.key("publicExponent").int())});te.RSAPublicKey=w;var S=e.define("AlgorithmIdentifier",function(){this.seq().obj(this.key("algorithm").objid(),this.key("none").null_().optional(),this.key("curve").objid().optional(),this.key("params").seq().obj(this.key("p").int(),this.key("q").int(),this.key("g").int()).optional())}),l=e.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(S),this.key("subjectPublicKey").bitstr())});te.PublicKey=l;var x=e.define("PrivateKeyInfo",function(){this.seq().obj(this.key("version").int(),this.key("algorithm").use(S),this.key("subjectPrivateKey").octstr())});te.PrivateKey=x;var f=e.define("EncryptedPrivateKeyInfo",function(){this.seq().obj(this.key("algorithm").seq().obj(this.key("id").objid(),this.key("decrypt").seq().obj(this.key("kde").seq().obj(this.key("id").objid(),this.key("kdeparams").seq().obj(this.key("salt").octstr(),this.key("iters").int())),this.key("cipher").seq().obj(this.key("algo").objid(),this.key("iv").octstr()))),this.key("subjectPrivateKey").octstr())});te.EncryptedPrivateKey=f;var I=e.define("DSAPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("p").int(),this.key("q").int(),this.key("g").int(),this.key("pub_key").int(),this.key("priv_key").int())});te.DSAPrivateKey=I,te.DSAparam=e.define("DSAparam",function(){this.int()});var d=e.define("ECParameters",function(){this.choice({namedCurve:this.objid()})}),T=e.define("ECPrivateKey",function(){this.seq().obj(this.key("version").int(),this.key("privateKey").octstr(),this.key("parameters").optional().explicit(0).use(d),this.key("publicKey").optional().explicit(1).bitstr())});te.ECPrivateKey=T,te.signature=e.define("signature",function(){this.seq().obj(this.key("r").int(),this.key("s").int())})},4772:(Qe,te,g)=>{"use strict";var e=g(1990),t=e.define("Time",function(){this.choice({utcTime:this.utctime(),generalTime:this.gentime()})}),w=e.define("AttributeTypeValue",function(){this.seq().obj(this.key("type").objid(),this.key("value").any())}),S=e.define("AlgorithmIdentifier",function(){this.seq().obj(this.key("algorithm").objid(),this.key("parameters").optional(),this.key("curve").objid().optional())}),l=e.define("SubjectPublicKeyInfo",function(){this.seq().obj(this.key("algorithm").use(S),this.key("subjectPublicKey").bitstr())}),x=e.define("RelativeDistinguishedName",function(){this.setof(w)}),f=e.define("RDNSequence",function(){this.seqof(x)}),I=e.define("Name",function(){this.choice({rdnSequence:this.use(f)})}),d=e.define("Validity",function(){this.seq().obj(this.key("notBefore").use(t),this.key("notAfter").use(t))}),T=e.define("Extension",function(){this.seq().obj(this.key("extnID").objid(),this.key("critical").bool().def(!1),this.key("extnValue").octstr())}),y=e.define("TBSCertificate",function(){this.seq().obj(this.key("version").explicit(0).int().optional(),this.key("serialNumber").int(),this.key("signature").use(S),this.key("issuer").use(I),this.key("validity").use(d),this.key("subject").use(I),this.key("subjectPublicKeyInfo").use(l),this.key("issuerUniqueID").implicit(1).bitstr().optional(),this.key("subjectUniqueID").implicit(2).bitstr().optional(),this.key("extensions").explicit(3).seqof(T).optional())}),F=e.define("X509Certificate",function(){this.seq().obj(this.key("tbsCertificate").use(y),this.key("signatureAlgorithm").use(S),this.key("signatureValue").bitstr())});Qe.exports=F},9472:(Qe,te,g)=>{"use strict";var e=/Proc-Type: 4,ENCRYPTED[\n\r]+DEK-Info: AES-((?:128)|(?:192)|(?:256))-CBC,([0-9A-H]+)[\n\r]+([0-9A-z\n\r+/=]+)[\n\r]+/m,t=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----/m,w=/^-----BEGIN ((?:.*? KEY)|CERTIFICATE)-----([0-9A-z\n\r+/=]+)-----END \1-----$/m,S=g(592),l=g(3388),x=g(7054).Buffer;Qe.exports=function(f,I){var y,d=f.toString(),T=d.match(e);if(T){var R="aes"+T[1],z=x.from(T[2],"hex"),W=x.from(T[3].replace(/[\r\n]/g,""),"base64"),$=S(I,z.slice(0,8),parseInt(T[1],10)).key,j=[],Q=l.createDecipheriv(R,$,z);j.push(Q.update(W)),j.push(Q.final()),y=x.concat(j)}else{var F=d.match(w);y=x.from(F[2].replace(/[\r\n]/g,""),"base64")}return{tag:d.match(t)[1],data:y}}},5667:(Qe,te,g)=>{"use strict";var e=g(3138),t=g(5579),w=g(9472),S=g(3388),l=g(3397),x=g(7054).Buffer;function I(d){var T;"object"==typeof d&&!x.isBuffer(d)&&(T=d.passphrase,d=d.key),"string"==typeof d&&(d=x.from(d));var z,W,y=w(d,T),F=y.tag,R=y.data;switch(F){case"CERTIFICATE":W=e.certificate.decode(R,"der").tbsCertificate.subjectPublicKeyInfo;case"PUBLIC KEY":switch(W||(W=e.PublicKey.decode(R,"der")),z=W.algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return e.RSAPublicKey.decode(W.subjectPublicKey.data,"der");case"1.2.840.10045.2.1":return W.subjectPrivateKey=W.subjectPublicKey,{type:"ec",data:W};case"1.2.840.10040.4.1":return W.algorithm.params.pub_key=e.DSAparam.decode(W.subjectPublicKey.data,"der"),{type:"dsa",data:W.algorithm.params};default:throw new Error("unknown key id "+z)}case"ENCRYPTED PRIVATE KEY":R=function f(d,T){var y=d.algorithm.decrypt.kde.kdeparams.salt,F=parseInt(d.algorithm.decrypt.kde.kdeparams.iters.toString(),10),R=t[d.algorithm.decrypt.cipher.algo.join(".")],z=d.algorithm.decrypt.cipher.iv,W=d.subjectPrivateKey,$=parseInt(R.split("-")[1],10)/8,j=l.pbkdf2Sync(T,y,F,$,"sha1"),Q=S.createDecipheriv(R,j,z),J=[];return J.push(Q.update(W)),J.push(Q.final()),x.concat(J)}(R=e.EncryptedPrivateKey.decode(R,"der"),T);case"PRIVATE KEY":switch(z=(W=e.PrivateKey.decode(R,"der")).algorithm.algorithm.join(".")){case"1.2.840.113549.1.1.1":return e.RSAPrivateKey.decode(W.subjectPrivateKey,"der");case"1.2.840.10045.2.1":return{curve:W.algorithm.curve,privateKey:e.ECPrivateKey.decode(W.subjectPrivateKey,"der").privateKey};case"1.2.840.10040.4.1":return W.algorithm.params.priv_key=e.DSAparam.decode(W.subjectPrivateKey,"der"),{type:"dsa",params:W.algorithm.params};default:throw new Error("unknown key id "+z)}case"RSA PUBLIC KEY":return e.RSAPublicKey.decode(R,"der");case"RSA PRIVATE KEY":return e.RSAPrivateKey.decode(R,"der");case"DSA PRIVATE KEY":return{type:"dsa",params:e.DSAPrivateKey.decode(R,"der")};case"EC PRIVATE KEY":return{curve:(R=e.ECPrivateKey.decode(R,"der")).parameters.value,privateKey:R.privateKey};default:throw new Error("unknown key type "+F)}}I.signature=e.signature,Qe.exports=I},3397:(Qe,te,g)=>{te.pbkdf2=g(2685),te.pbkdf2Sync=g(9111)},2685:(Qe,te,g)=>{var x,y,e=g(7054).Buffer,t=g(6111),w=g(5392),S=g(9111),l=g(6643),f=global.crypto&&global.crypto.subtle,I={sha:"SHA-1","sha-1":"SHA-1",sha1:"SHA-1",sha256:"SHA-256","sha-256":"SHA-256",sha384:"SHA-384","sha-384":"SHA-384","sha-512":"SHA-512",sha512:"SHA-512"},d=[];function F(){return y||(y=global.process&&global.process.nextTick?global.process.nextTick:global.queueMicrotask?global.queueMicrotask:global.setImmediate?global.setImmediate:global.setTimeout)}function R(W,$,j,Q,J){return f.importKey("raw",W,{name:"PBKDF2"},!1,["deriveBits"]).then(function(ee){return f.deriveBits({name:"PBKDF2",salt:$,iterations:j,hash:{name:J}},ee,Q<<3)}).then(function(ee){return e.from(ee)})}Qe.exports=function(W,$,j,Q,J,ee){"function"==typeof J&&(ee=J,J=void 0);var ie=I[(J=J||"sha1").toLowerCase()];if(ie&&"function"==typeof global.Promise){if(t(j,Q),W=l(W,w,"Password"),$=l($,w,"Salt"),"function"!=typeof ee)throw new Error("No callback provided to pbkdf2");!function z(W,$){W.then(function(j){F()(function(){$(null,j)})},function(j){F()(function(){$(j)})})}(function T(W){if(global.process&&!global.process.browser||!f||!f.importKey||!f.deriveBits)return Promise.resolve(!1);if(void 0!==d[W])return d[W];var $=R(x=x||e.alloc(8),x,10,128,W).then(function(){return!0}).catch(function(){return!1});return d[W]=$,$}(ie).then(function(ge){return ge?R(W,$,j,Q,ie):S(W,$,j,Q,J)}),ee)}else F()(function(){var ge;try{ge=S(W,$,j,Q,J)}catch(ae){return ee(ae)}ee(null,ge)})}},5392:Qe=>{var te;te=global.process&&global.process.browser?"utf-8":global.process&&global.process.version?parseInt(process.version.split(".")[0].slice(1),10)>=6?"utf-8":"binary":"utf-8",Qe.exports=te},6111:Qe=>{var te=Math.pow(2,30)-1;Qe.exports=function(g,e){if("number"!=typeof g)throw new TypeError("Iterations not a number");if(g<0)throw new TypeError("Bad iterations");if("number"!=typeof e)throw new TypeError("Key length not a number");if(e<0||e>te||e!=e)throw new TypeError("Bad key length")}},9111:(Qe,te,g)=>{var e=g(3407),t=g(6636),w=g(5443),S=g(7054).Buffer,l=g(6111),x=g(5392),f=g(6643),I=S.alloc(128),d={md5:16,sha1:20,sha224:28,sha256:32,sha384:48,sha512:64,rmd160:20,ripemd160:20};function T(R,z,W){var $=function y(R){return"rmd160"===R||"ripemd160"===R?function W($){return(new t).update($).digest()}:"md5"===R?e:function z($){return w(R).update($).digest()}}(R),j="sha512"===R||"sha384"===R?128:64;z.length>j?z=$(z):z.length{var e=g(7054).Buffer;Qe.exports=function(t,w,S){if(e.isBuffer(t))return t;if("string"==typeof t)return e.from(t,w);if(ArrayBuffer.isView(t))return e.from(t.buffer);throw new TypeError(S+" must be a string, a Buffer, a typed array or a DataView")}},9656:Qe=>{"use strict";Qe.exports=typeof process>"u"||!process.version||0===process.version.indexOf("v0.")||0===process.version.indexOf("v1.")&&0!==process.version.indexOf("v1.8.")?{nextTick:function te(g,e,t,w){if("function"!=typeof g)throw new TypeError('"callback" argument must be a function');var l,x,S=arguments.length;switch(S){case 0:case 1:return process.nextTick(g);case 2:return process.nextTick(function(){g.call(null,e)});case 3:return process.nextTick(function(){g.call(null,e,t)});case 4:return process.nextTick(function(){g.call(null,e,t,w)});default:for(l=new Array(S-1),x=0;x{te.publicEncrypt=g(7267),te.privateDecrypt=g(8613),te.privateEncrypt=function(t,w){return te.publicEncrypt(t,w,!0)},te.publicDecrypt=function(t,w){return te.privateDecrypt(t,w,!0)}},715:(Qe,te,g)=>{var e=g(7211),t=g(7054).Buffer;function w(S){var l=t.allocUnsafe(4);return l.writeUInt32BE(S,0),l}Qe.exports=function(S,l){for(var I,x=t.alloc(0),f=0;x.length=65&&c<=70?c-55:c>=97&&c<=102?c-87:c-48&15}function I(D,n,c){var m=f(D,c);return c-1>=n&&(m|=f(D,c-1)<<4),m}function d(D,n,c,m){for(var h=0,C=Math.min(D.length,c),k=n;k=49?L-49+10:L>=17?L-17+10:L}return h}l.isBN=function(n){return n instanceof l||null!==n&&"object"==typeof n&&n.constructor.wordSize===l.wordSize&&Array.isArray(n.words)},l.max=function(n,c){return n.cmp(c)>0?n:c},l.min=function(n,c){return n.cmp(c)<0?n:c},l.prototype._init=function(n,c,m){if("number"==typeof n)return this._initNumber(n,c,m);if("object"==typeof n)return this._initArray(n,c,m);"hex"===c&&(c=16),w(c===(0|c)&&c>=2&&c<=36);var h=0;"-"===(n=n.toString().replace(/\s+/g,""))[0]&&(h++,this.negative=1),h=0;h-=3)this.words[C]|=(k=n[h]|n[h-1]<<8|n[h-2]<<16)<>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);else if("le"===m)for(h=0,C=0;h>>26-L&67108863,(L+=24)>=26&&(L-=26,C++);return this.strip()},l.prototype._parseHex=function(n,c,m){this.length=Math.ceil((n.length-c)/6),this.words=new Array(this.length);for(var h=0;h=c;h-=2)L=I(n,c,h)<=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;else for(h=(n.length-c)%2==0?c+1:c;h=18?(C-=18,this.words[k+=1]|=L>>>26):C+=8;this.strip()},l.prototype._parseBase=function(n,c,m){this.words=[0],this.length=1;for(var h=0,C=1;C<=67108863;C*=c)h++;h--,C=C/c|0;for(var k=n.length-m,L=k%h,_=Math.min(k,k-L)+m,r=0,v=m;v<_;v+=h)r=d(n,v,v+h,c),this.imuln(C),this.words[0]+r<67108864?this.words[0]+=r:this._iaddn(r);if(0!==L){var V=1;for(r=d(n,v,n.length,c),v=0;v1&&0===this.words[this.length-1];)this.length--;return this._normSign()},l.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},l.prototype.inspect=function(){return(this.red?""};var T=["","0","00","000","0000","00000","000000","0000000","00000000","000000000","0000000000","00000000000","000000000000","0000000000000","00000000000000","000000000000000","0000000000000000","00000000000000000","000000000000000000","0000000000000000000","00000000000000000000","000000000000000000000","0000000000000000000000","00000000000000000000000","000000000000000000000000","0000000000000000000000000"],y=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],F=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function z(D,n,c){c.negative=n.negative^D.negative;var m=D.length+n.length|0;c.length=m,m=m-1|0;var h=0|D.words[0],C=0|n.words[0],k=h*C,_=k/67108864|0;c.words[0]=67108863&k;for(var r=1;r>>26,V=67108863&_,N=Math.min(r,n.length-1),ne=Math.max(0,r-D.length+1);ne<=N;ne++)v+=(k=(h=0|D.words[r-ne|0])*(C=0|n.words[ne])+V)/67108864|0,V=67108863&k;c.words[r]=0|V,_=0|v}return 0!==_?c.words[r]=0|_:c.length--,c.strip()}l.prototype.toString=function(n,c){var m;if(c=0|c||1,16===(n=n||10)||"hex"===n){m="";for(var h=0,C=0,k=0;k>>24-h&16777215)||k!==this.length-1?T[6-_.length]+_+m:_+m,(h+=2)>=26&&(h-=26,k--)}for(0!==C&&(m=C.toString(16)+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}if(n===(0|n)&&n>=2&&n<=36){var r=y[n],v=F[n];m="";var V=this.clone();for(V.negative=0;!V.isZero();){var N=V.modn(v).toString(n);m=(V=V.idivn(v)).isZero()?N+m:T[r-N.length]+N+m}for(this.isZero()&&(m="0"+m);m.length%c!=0;)m="0"+m;return 0!==this.negative&&(m="-"+m),m}w(!1,"Base should be between 2 and 36")},l.prototype.toNumber=function(){var n=this.words[0];return 2===this.length?n+=67108864*this.words[1]:3===this.length&&1===this.words[2]?n+=4503599627370496+67108864*this.words[1]:this.length>2&&w(!1,"Number can only safely store up to 53 bits"),0!==this.negative?-n:n},l.prototype.toJSON=function(){return this.toString(16)},l.prototype.toBuffer=function(n,c){return w(typeof x<"u"),this.toArrayLike(x,n,c)},l.prototype.toArray=function(n,c){return this.toArrayLike(Array,n,c)},l.prototype.toArrayLike=function(n,c,m){var h=this.byteLength(),C=m||Math.max(1,h);w(h<=C,"byte array longer than desired length"),w(C>0,"Requested array length <= 0"),this.strip();var _,r,k="le"===c,L=new n(C),v=this.clone();if(k){for(r=0;!v.isZero();r++)_=v.andln(255),v.iushrn(8),L[r]=_;for(;r=4096&&(m+=13,c>>>=13),c>=64&&(m+=7,c>>>=7),c>=8&&(m+=4,c>>>=4),c>=2&&(m+=2,c>>>=2),m+c},l.prototype._zeroBits=function(n){if(0===n)return 26;var c=n,m=0;return 8191&c||(m+=13,c>>>=13),127&c||(m+=7,c>>>=7),15&c||(m+=4,c>>>=4),3&c||(m+=2,c>>>=2),1&c||m++,m},l.prototype.bitLength=function(){var c=this._countBits(this.words[this.length-1]);return 26*(this.length-1)+c},l.prototype.zeroBits=function(){if(this.isZero())return 0;for(var n=0,c=0;cn.length?this.clone().ior(n):n.clone().ior(this)},l.prototype.uor=function(n){return this.length>n.length?this.clone().iuor(n):n.clone().iuor(this)},l.prototype.iuand=function(n){var c;c=this.length>n.length?n:this;for(var m=0;mn.length?this.clone().iand(n):n.clone().iand(this)},l.prototype.uand=function(n){return this.length>n.length?this.clone().iuand(n):n.clone().iuand(this)},l.prototype.iuxor=function(n){var c,m;this.length>n.length?(c=this,m=n):(c=n,m=this);for(var h=0;hn.length?this.clone().ixor(n):n.clone().ixor(this)},l.prototype.uxor=function(n){return this.length>n.length?this.clone().iuxor(n):n.clone().iuxor(this)},l.prototype.inotn=function(n){w("number"==typeof n&&n>=0);var c=0|Math.ceil(n/26),m=n%26;this._expand(c),m>0&&c--;for(var h=0;h0&&(this.words[h]=~this.words[h]&67108863>>26-m),this.strip()},l.prototype.notn=function(n){return this.clone().inotn(n)},l.prototype.setn=function(n,c){w("number"==typeof n&&n>=0);var m=n/26|0,h=n%26;return this._expand(m+1),this.words[m]=c?this.words[m]|1<n.length?(m=this,h=n):(m=n,h=this);for(var C=0,k=0;k>>26;for(;0!==C&&k>>26;if(this.length=m.length,0!==C)this.words[this.length]=C,this.length++;else if(m!==this)for(;kn.length?this.clone().iadd(n):n.clone().iadd(this)},l.prototype.isub=function(n){if(0!==n.negative){n.negative=0;var c=this.iadd(n);return n.negative=1,c._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(n),this.negative=1,this._normSign();var h,C,m=this.cmp(n);if(0===m)return this.negative=0,this.length=1,this.words[0]=0,this;m>0?(h=this,C=n):(h=n,C=this);for(var k=0,L=0;L>26,this.words[L]=67108863&c;for(;0!==k&&L>26,this.words[L]=67108863&c;if(0===k&&L>>13,Ee=0|h[1],ze=8191&Ee,qe=Ee>>>13,Ke=0|h[2],se=8191&Ke,X=Ke>>>13,me=0|h[3],ce=8191&me,fe=me>>>13,ke=0|h[4],mt=8191&ke,_e=ke>>>13,be=0|h[5],pe=8191&be,Ze=be>>>13,_t=0|h[6],at=8191&_t,pt=_t>>>13,Xt=0|h[7],ye=8191&Xt,ue=Xt>>>13,Ie=0|h[8],He=8191&Ie,Xe=Ie>>>13,yt=0|h[9],Ye=8191&yt,rt=yt>>>13,Yt=0|C[0],Nt=8191&Yt,Et=Yt>>>13,Vt=0|C[1],oe=8191&Vt,tt=Vt>>>13,$t=0|C[2],zt=8191&$t,Jt=$t>>>13,St=0|C[3],dt=8191&St,Ae=St>>>13,we=0|C[4],he=8191&we,q=we>>>13,Re=0|C[5],Ne=8191&Re,gt=Re>>>13,$e=0|C[6],Fe=8191&$e,Ge=$e>>>13,et=0|C[7],st=8191&et,Tt=et>>>13,mi=0|C[8],Kt=8191&mi,Pt=mi>>>13,Xi=0|C[9],di=8191&Xi,fi=Xi>>>13;m.negative=n.negative^c.negative,m.length=19;var vn=(L+(_=Math.imul(N,Nt))|0)+((8191&(r=(r=Math.imul(N,Et))+Math.imul(ne,Nt)|0))<<13)|0;L=((v=Math.imul(ne,Et))+(r>>>13)|0)+(vn>>>26)|0,vn&=67108863,_=Math.imul(ze,Nt),r=(r=Math.imul(ze,Et))+Math.imul(qe,Nt)|0,v=Math.imul(qe,Et);var Qi=(L+(_=_+Math.imul(N,oe)|0)|0)+((8191&(r=(r=r+Math.imul(N,tt)|0)+Math.imul(ne,oe)|0))<<13)|0;L=((v=v+Math.imul(ne,tt)|0)+(r>>>13)|0)+(Qi>>>26)|0,Qi&=67108863,_=Math.imul(se,Nt),r=(r=Math.imul(se,Et))+Math.imul(X,Nt)|0,v=Math.imul(X,Et),_=_+Math.imul(ze,oe)|0,r=(r=r+Math.imul(ze,tt)|0)+Math.imul(qe,oe)|0,v=v+Math.imul(qe,tt)|0;var Li=(L+(_=_+Math.imul(N,zt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Jt)|0)+Math.imul(ne,zt)|0))<<13)|0;L=((v=v+Math.imul(ne,Jt)|0)+(r>>>13)|0)+(Li>>>26)|0,Li&=67108863,_=Math.imul(ce,Nt),r=(r=Math.imul(ce,Et))+Math.imul(fe,Nt)|0,v=Math.imul(fe,Et),_=_+Math.imul(se,oe)|0,r=(r=r+Math.imul(se,tt)|0)+Math.imul(X,oe)|0,v=v+Math.imul(X,tt)|0,_=_+Math.imul(ze,zt)|0,r=(r=r+Math.imul(ze,Jt)|0)+Math.imul(qe,zt)|0,v=v+Math.imul(qe,Jt)|0;var Zi=(L+(_=_+Math.imul(N,dt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ae)|0)+Math.imul(ne,dt)|0))<<13)|0;L=((v=v+Math.imul(ne,Ae)|0)+(r>>>13)|0)+(Zi>>>26)|0,Zi&=67108863,_=Math.imul(mt,Nt),r=(r=Math.imul(mt,Et))+Math.imul(_e,Nt)|0,v=Math.imul(_e,Et),_=_+Math.imul(ce,oe)|0,r=(r=r+Math.imul(ce,tt)|0)+Math.imul(fe,oe)|0,v=v+Math.imul(fe,tt)|0,_=_+Math.imul(se,zt)|0,r=(r=r+Math.imul(se,Jt)|0)+Math.imul(X,zt)|0,v=v+Math.imul(X,Jt)|0,_=_+Math.imul(ze,dt)|0,r=(r=r+Math.imul(ze,Ae)|0)+Math.imul(qe,dt)|0,v=v+Math.imul(qe,Ae)|0;var Qt=(L+(_=_+Math.imul(N,he)|0)|0)+((8191&(r=(r=r+Math.imul(N,q)|0)+Math.imul(ne,he)|0))<<13)|0;L=((v=v+Math.imul(ne,q)|0)+(r>>>13)|0)+(Qt>>>26)|0,Qt&=67108863,_=Math.imul(pe,Nt),r=(r=Math.imul(pe,Et))+Math.imul(Ze,Nt)|0,v=Math.imul(Ze,Et),_=_+Math.imul(mt,oe)|0,r=(r=r+Math.imul(mt,tt)|0)+Math.imul(_e,oe)|0,v=v+Math.imul(_e,tt)|0,_=_+Math.imul(ce,zt)|0,r=(r=r+Math.imul(ce,Jt)|0)+Math.imul(fe,zt)|0,v=v+Math.imul(fe,Jt)|0,_=_+Math.imul(se,dt)|0,r=(r=r+Math.imul(se,Ae)|0)+Math.imul(X,dt)|0,v=v+Math.imul(X,Ae)|0,_=_+Math.imul(ze,he)|0,r=(r=r+Math.imul(ze,q)|0)+Math.imul(qe,he)|0,v=v+Math.imul(qe,q)|0;var Mt=(L+(_=_+Math.imul(N,Ne)|0)|0)+((8191&(r=(r=r+Math.imul(N,gt)|0)+Math.imul(ne,Ne)|0))<<13)|0;L=((v=v+Math.imul(ne,gt)|0)+(r>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,_=Math.imul(at,Nt),r=(r=Math.imul(at,Et))+Math.imul(pt,Nt)|0,v=Math.imul(pt,Et),_=_+Math.imul(pe,oe)|0,r=(r=r+Math.imul(pe,tt)|0)+Math.imul(Ze,oe)|0,v=v+Math.imul(Ze,tt)|0,_=_+Math.imul(mt,zt)|0,r=(r=r+Math.imul(mt,Jt)|0)+Math.imul(_e,zt)|0,v=v+Math.imul(_e,Jt)|0,_=_+Math.imul(ce,dt)|0,r=(r=r+Math.imul(ce,Ae)|0)+Math.imul(fe,dt)|0,v=v+Math.imul(fe,Ae)|0,_=_+Math.imul(se,he)|0,r=(r=r+Math.imul(se,q)|0)+Math.imul(X,he)|0,v=v+Math.imul(X,q)|0,_=_+Math.imul(ze,Ne)|0,r=(r=r+Math.imul(ze,gt)|0)+Math.imul(qe,Ne)|0,v=v+Math.imul(qe,gt)|0;var it=(L+(_=_+Math.imul(N,Fe)|0)|0)+((8191&(r=(r=r+Math.imul(N,Ge)|0)+Math.imul(ne,Fe)|0))<<13)|0;L=((v=v+Math.imul(ne,Ge)|0)+(r>>>13)|0)+(it>>>26)|0,it&=67108863,_=Math.imul(ye,Nt),r=(r=Math.imul(ye,Et))+Math.imul(ue,Nt)|0,v=Math.imul(ue,Et),_=_+Math.imul(at,oe)|0,r=(r=r+Math.imul(at,tt)|0)+Math.imul(pt,oe)|0,v=v+Math.imul(pt,tt)|0,_=_+Math.imul(pe,zt)|0,r=(r=r+Math.imul(pe,Jt)|0)+Math.imul(Ze,zt)|0,v=v+Math.imul(Ze,Jt)|0,_=_+Math.imul(mt,dt)|0,r=(r=r+Math.imul(mt,Ae)|0)+Math.imul(_e,dt)|0,v=v+Math.imul(_e,Ae)|0,_=_+Math.imul(ce,he)|0,r=(r=r+Math.imul(ce,q)|0)+Math.imul(fe,he)|0,v=v+Math.imul(fe,q)|0,_=_+Math.imul(se,Ne)|0,r=(r=r+Math.imul(se,gt)|0)+Math.imul(X,Ne)|0,v=v+Math.imul(X,gt)|0,_=_+Math.imul(ze,Fe)|0,r=(r=r+Math.imul(ze,Ge)|0)+Math.imul(qe,Fe)|0,v=v+Math.imul(qe,Ge)|0;var ct=(L+(_=_+Math.imul(N,st)|0)|0)+((8191&(r=(r=r+Math.imul(N,Tt)|0)+Math.imul(ne,st)|0))<<13)|0;L=((v=v+Math.imul(ne,Tt)|0)+(r>>>13)|0)+(ct>>>26)|0,ct&=67108863,_=Math.imul(He,Nt),r=(r=Math.imul(He,Et))+Math.imul(Xe,Nt)|0,v=Math.imul(Xe,Et),_=_+Math.imul(ye,oe)|0,r=(r=r+Math.imul(ye,tt)|0)+Math.imul(ue,oe)|0,v=v+Math.imul(ue,tt)|0,_=_+Math.imul(at,zt)|0,r=(r=r+Math.imul(at,Jt)|0)+Math.imul(pt,zt)|0,v=v+Math.imul(pt,Jt)|0,_=_+Math.imul(pe,dt)|0,r=(r=r+Math.imul(pe,Ae)|0)+Math.imul(Ze,dt)|0,v=v+Math.imul(Ze,Ae)|0,_=_+Math.imul(mt,he)|0,r=(r=r+Math.imul(mt,q)|0)+Math.imul(_e,he)|0,v=v+Math.imul(_e,q)|0,_=_+Math.imul(ce,Ne)|0,r=(r=r+Math.imul(ce,gt)|0)+Math.imul(fe,Ne)|0,v=v+Math.imul(fe,gt)|0,_=_+Math.imul(se,Fe)|0,r=(r=r+Math.imul(se,Ge)|0)+Math.imul(X,Fe)|0,v=v+Math.imul(X,Ge)|0,_=_+Math.imul(ze,st)|0,r=(r=r+Math.imul(ze,Tt)|0)+Math.imul(qe,st)|0,v=v+Math.imul(qe,Tt)|0;var wt=(L+(_=_+Math.imul(N,Kt)|0)|0)+((8191&(r=(r=r+Math.imul(N,Pt)|0)+Math.imul(ne,Kt)|0))<<13)|0;L=((v=v+Math.imul(ne,Pt)|0)+(r>>>13)|0)+(wt>>>26)|0,wt&=67108863,_=Math.imul(Ye,Nt),r=(r=Math.imul(Ye,Et))+Math.imul(rt,Nt)|0,v=Math.imul(rt,Et),_=_+Math.imul(He,oe)|0,r=(r=r+Math.imul(He,tt)|0)+Math.imul(Xe,oe)|0,v=v+Math.imul(Xe,tt)|0,_=_+Math.imul(ye,zt)|0,r=(r=r+Math.imul(ye,Jt)|0)+Math.imul(ue,zt)|0,v=v+Math.imul(ue,Jt)|0,_=_+Math.imul(at,dt)|0,r=(r=r+Math.imul(at,Ae)|0)+Math.imul(pt,dt)|0,v=v+Math.imul(pt,Ae)|0,_=_+Math.imul(pe,he)|0,r=(r=r+Math.imul(pe,q)|0)+Math.imul(Ze,he)|0,v=v+Math.imul(Ze,q)|0,_=_+Math.imul(mt,Ne)|0,r=(r=r+Math.imul(mt,gt)|0)+Math.imul(_e,Ne)|0,v=v+Math.imul(_e,gt)|0,_=_+Math.imul(ce,Fe)|0,r=(r=r+Math.imul(ce,Ge)|0)+Math.imul(fe,Fe)|0,v=v+Math.imul(fe,Ge)|0,_=_+Math.imul(se,st)|0,r=(r=r+Math.imul(se,Tt)|0)+Math.imul(X,st)|0,v=v+Math.imul(X,Tt)|0,_=_+Math.imul(ze,Kt)|0,r=(r=r+Math.imul(ze,Pt)|0)+Math.imul(qe,Kt)|0,v=v+Math.imul(qe,Pt)|0;var Ut=(L+(_=_+Math.imul(N,di)|0)|0)+((8191&(r=(r=r+Math.imul(N,fi)|0)+Math.imul(ne,di)|0))<<13)|0;L=((v=v+Math.imul(ne,fi)|0)+(r>>>13)|0)+(Ut>>>26)|0,Ut&=67108863,_=Math.imul(Ye,oe),r=(r=Math.imul(Ye,tt))+Math.imul(rt,oe)|0,v=Math.imul(rt,tt),_=_+Math.imul(He,zt)|0,r=(r=r+Math.imul(He,Jt)|0)+Math.imul(Xe,zt)|0,v=v+Math.imul(Xe,Jt)|0,_=_+Math.imul(ye,dt)|0,r=(r=r+Math.imul(ye,Ae)|0)+Math.imul(ue,dt)|0,v=v+Math.imul(ue,Ae)|0,_=_+Math.imul(at,he)|0,r=(r=r+Math.imul(at,q)|0)+Math.imul(pt,he)|0,v=v+Math.imul(pt,q)|0,_=_+Math.imul(pe,Ne)|0,r=(r=r+Math.imul(pe,gt)|0)+Math.imul(Ze,Ne)|0,v=v+Math.imul(Ze,gt)|0,_=_+Math.imul(mt,Fe)|0,r=(r=r+Math.imul(mt,Ge)|0)+Math.imul(_e,Fe)|0,v=v+Math.imul(_e,Ge)|0,_=_+Math.imul(ce,st)|0,r=(r=r+Math.imul(ce,Tt)|0)+Math.imul(fe,st)|0,v=v+Math.imul(fe,Tt)|0,_=_+Math.imul(se,Kt)|0,r=(r=r+Math.imul(se,Pt)|0)+Math.imul(X,Kt)|0,v=v+Math.imul(X,Pt)|0;var xi=(L+(_=_+Math.imul(ze,di)|0)|0)+((8191&(r=(r=r+Math.imul(ze,fi)|0)+Math.imul(qe,di)|0))<<13)|0;L=((v=v+Math.imul(qe,fi)|0)+(r>>>13)|0)+(xi>>>26)|0,xi&=67108863,_=Math.imul(Ye,zt),r=(r=Math.imul(Ye,Jt))+Math.imul(rt,zt)|0,v=Math.imul(rt,Jt),_=_+Math.imul(He,dt)|0,r=(r=r+Math.imul(He,Ae)|0)+Math.imul(Xe,dt)|0,v=v+Math.imul(Xe,Ae)|0,_=_+Math.imul(ye,he)|0,r=(r=r+Math.imul(ye,q)|0)+Math.imul(ue,he)|0,v=v+Math.imul(ue,q)|0,_=_+Math.imul(at,Ne)|0,r=(r=r+Math.imul(at,gt)|0)+Math.imul(pt,Ne)|0,v=v+Math.imul(pt,gt)|0,_=_+Math.imul(pe,Fe)|0,r=(r=r+Math.imul(pe,Ge)|0)+Math.imul(Ze,Fe)|0,v=v+Math.imul(Ze,Ge)|0,_=_+Math.imul(mt,st)|0,r=(r=r+Math.imul(mt,Tt)|0)+Math.imul(_e,st)|0,v=v+Math.imul(_e,Tt)|0,_=_+Math.imul(ce,Kt)|0,r=(r=r+Math.imul(ce,Pt)|0)+Math.imul(fe,Kt)|0,v=v+Math.imul(fe,Pt)|0;var Si=(L+(_=_+Math.imul(se,di)|0)|0)+((8191&(r=(r=r+Math.imul(se,fi)|0)+Math.imul(X,di)|0))<<13)|0;L=((v=v+Math.imul(X,fi)|0)+(r>>>13)|0)+(Si>>>26)|0,Si&=67108863,_=Math.imul(Ye,dt),r=(r=Math.imul(Ye,Ae))+Math.imul(rt,dt)|0,v=Math.imul(rt,Ae),_=_+Math.imul(He,he)|0,r=(r=r+Math.imul(He,q)|0)+Math.imul(Xe,he)|0,v=v+Math.imul(Xe,q)|0,_=_+Math.imul(ye,Ne)|0,r=(r=r+Math.imul(ye,gt)|0)+Math.imul(ue,Ne)|0,v=v+Math.imul(ue,gt)|0,_=_+Math.imul(at,Fe)|0,r=(r=r+Math.imul(at,Ge)|0)+Math.imul(pt,Fe)|0,v=v+Math.imul(pt,Ge)|0,_=_+Math.imul(pe,st)|0,r=(r=r+Math.imul(pe,Tt)|0)+Math.imul(Ze,st)|0,v=v+Math.imul(Ze,Tt)|0,_=_+Math.imul(mt,Kt)|0,r=(r=r+Math.imul(mt,Pt)|0)+Math.imul(_e,Kt)|0,v=v+Math.imul(_e,Pt)|0;var zi=(L+(_=_+Math.imul(ce,di)|0)|0)+((8191&(r=(r=r+Math.imul(ce,fi)|0)+Math.imul(fe,di)|0))<<13)|0;L=((v=v+Math.imul(fe,fi)|0)+(r>>>13)|0)+(zi>>>26)|0,zi&=67108863,_=Math.imul(Ye,he),r=(r=Math.imul(Ye,q))+Math.imul(rt,he)|0,v=Math.imul(rt,q),_=_+Math.imul(He,Ne)|0,r=(r=r+Math.imul(He,gt)|0)+Math.imul(Xe,Ne)|0,v=v+Math.imul(Xe,gt)|0,_=_+Math.imul(ye,Fe)|0,r=(r=r+Math.imul(ye,Ge)|0)+Math.imul(ue,Fe)|0,v=v+Math.imul(ue,Ge)|0,_=_+Math.imul(at,st)|0,r=(r=r+Math.imul(at,Tt)|0)+Math.imul(pt,st)|0,v=v+Math.imul(pt,Tt)|0,_=_+Math.imul(pe,Kt)|0,r=(r=r+Math.imul(pe,Pt)|0)+Math.imul(Ze,Kt)|0,v=v+Math.imul(Ze,Pt)|0;var en=(L+(_=_+Math.imul(mt,di)|0)|0)+((8191&(r=(r=r+Math.imul(mt,fi)|0)+Math.imul(_e,di)|0))<<13)|0;L=((v=v+Math.imul(_e,fi)|0)+(r>>>13)|0)+(en>>>26)|0,en&=67108863,_=Math.imul(Ye,Ne),r=(r=Math.imul(Ye,gt))+Math.imul(rt,Ne)|0,v=Math.imul(rt,gt),_=_+Math.imul(He,Fe)|0,r=(r=r+Math.imul(He,Ge)|0)+Math.imul(Xe,Fe)|0,v=v+Math.imul(Xe,Ge)|0,_=_+Math.imul(ye,st)|0,r=(r=r+Math.imul(ye,Tt)|0)+Math.imul(ue,st)|0,v=v+Math.imul(ue,Tt)|0,_=_+Math.imul(at,Kt)|0,r=(r=r+Math.imul(at,Pt)|0)+Math.imul(pt,Kt)|0,v=v+Math.imul(pt,Pt)|0;var Ni=(L+(_=_+Math.imul(pe,di)|0)|0)+((8191&(r=(r=r+Math.imul(pe,fi)|0)+Math.imul(Ze,di)|0))<<13)|0;L=((v=v+Math.imul(Ze,fi)|0)+(r>>>13)|0)+(Ni>>>26)|0,Ni&=67108863,_=Math.imul(Ye,Fe),r=(r=Math.imul(Ye,Ge))+Math.imul(rt,Fe)|0,v=Math.imul(rt,Ge),_=_+Math.imul(He,st)|0,r=(r=r+Math.imul(He,Tt)|0)+Math.imul(Xe,st)|0,v=v+Math.imul(Xe,Tt)|0,_=_+Math.imul(ye,Kt)|0,r=(r=r+Math.imul(ye,Pt)|0)+Math.imul(ue,Kt)|0,v=v+Math.imul(ue,Pt)|0;var fn=(L+(_=_+Math.imul(at,di)|0)|0)+((8191&(r=(r=r+Math.imul(at,fi)|0)+Math.imul(pt,di)|0))<<13)|0;L=((v=v+Math.imul(pt,fi)|0)+(r>>>13)|0)+(fn>>>26)|0,fn&=67108863,_=Math.imul(Ye,st),r=(r=Math.imul(Ye,Tt))+Math.imul(rt,st)|0,v=Math.imul(rt,Tt),_=_+Math.imul(He,Kt)|0,r=(r=r+Math.imul(He,Pt)|0)+Math.imul(Xe,Kt)|0,v=v+Math.imul(Xe,Pt)|0;var Zt=(L+(_=_+Math.imul(ye,di)|0)|0)+((8191&(r=(r=r+Math.imul(ye,fi)|0)+Math.imul(ue,di)|0))<<13)|0;L=((v=v+Math.imul(ue,fi)|0)+(r>>>13)|0)+(Zt>>>26)|0,Zt&=67108863,_=Math.imul(Ye,Kt),r=(r=Math.imul(Ye,Pt))+Math.imul(rt,Kt)|0,v=Math.imul(rt,Pt);var bt=(L+(_=_+Math.imul(He,di)|0)|0)+((8191&(r=(r=r+Math.imul(He,fi)|0)+Math.imul(Xe,di)|0))<<13)|0;L=((v=v+Math.imul(Xe,fi)|0)+(r>>>13)|0)+(bt>>>26)|0,bt&=67108863;var re=(L+(_=Math.imul(Ye,di))|0)+((8191&(r=(r=Math.imul(Ye,fi))+Math.imul(rt,di)|0))<<13)|0;return L=((v=Math.imul(rt,fi))+(r>>>13)|0)+(re>>>26)|0,re&=67108863,k[0]=vn,k[1]=Qi,k[2]=Li,k[3]=Zi,k[4]=Qt,k[5]=Mt,k[6]=it,k[7]=ct,k[8]=wt,k[9]=Ut,k[10]=xi,k[11]=Si,k[12]=zi,k[13]=en,k[14]=Ni,k[15]=fn,k[16]=Zt,k[17]=bt,k[18]=re,0!==L&&(k[19]=L,m.length++),m};function j(D,n,c){return(new Q).mulp(D,n,c)}function Q(D,n){this.x=D,this.y=n}Math.imul||(W=z),l.prototype.mulTo=function(n,c){var m,h=this.length+n.length;return m=10===this.length&&10===n.length?W(this,n,c):h<63?z(this,n,c):h<1024?function $(D,n,c){c.negative=n.negative^D.negative,c.length=D.length+n.length;for(var m=0,h=0,C=0;C>>26)|0)>>>26,k&=67108863}c.words[C]=L,m=k,k=h}return 0!==m?c.words[C]=m:c.length--,c.strip()}(this,n,c):j(this,n,c),m},Q.prototype.makeRBT=function(n){for(var c=new Array(n),m=l.prototype._countBits(n)-1,h=0;h>=1;return h},Q.prototype.permute=function(n,c,m,h,C,k){for(var L=0;L>>=1)C++;return 1<>>=13),C>>>=13;for(k=2*c;k>=26,c+=h/67108864|0,c+=C>>>26,this.words[m]=67108863&C}return 0!==c&&(this.words[m]=c,this.length++),this},l.prototype.muln=function(n){return this.clone().imuln(n)},l.prototype.sqr=function(){return this.mul(this)},l.prototype.isqr=function(){return this.imul(this.clone())},l.prototype.pow=function(n){var c=function R(D){for(var n=new Array(D.bitLength()),c=0;c>>h}return n}(n);if(0===c.length)return new l(1);for(var m=this,h=0;h=0);var C,c=n%26,m=(n-c)/26,h=67108863>>>26-c<<26-c;if(0!==c){var k=0;for(C=0;C>>26-c}k&&(this.words[C]=k,this.length++)}if(0!==m){for(C=this.length-1;C>=0;C--)this.words[C+m]=this.words[C];for(C=0;C=0),h=c?(c-c%26)/26:0;var C=n%26,k=Math.min((n-C)/26,this.length),L=67108863^67108863>>>C<k)for(this.length-=k,r=0;r=0&&(0!==v||r>=h);r--){var V=0|this.words[r];this.words[r]=v<<26-C|V>>>C,v=V&L}return _&&0!==v&&(_.words[_.length++]=v),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},l.prototype.ishrn=function(n,c,m){return w(0===this.negative),this.iushrn(n,c,m)},l.prototype.shln=function(n){return this.clone().ishln(n)},l.prototype.ushln=function(n){return this.clone().iushln(n)},l.prototype.shrn=function(n){return this.clone().ishrn(n)},l.prototype.ushrn=function(n){return this.clone().iushrn(n)},l.prototype.testn=function(n){w("number"==typeof n&&n>=0);var c=n%26,m=(n-c)/26;return!(this.length<=m||!(this.words[m]&1<=0);var c=n%26,m=(n-c)/26;return w(0===this.negative,"imaskn works only with positive numbers"),this.length<=m?this:(0!==c&&m++,this.length=Math.min(m,this.length),0!==c&&(this.words[this.length-1]&=67108863^67108863>>>c<=67108864;c++)this.words[c]-=67108864,c===this.length-1?this.words[c+1]=1:this.words[c+1]++;return this.length=Math.max(this.length,c+1),this},l.prototype.isubn=function(n){if(w("number"==typeof n),w(n<67108864),n<0)return this.iaddn(-n);if(0!==this.negative)return this.negative=0,this.iaddn(n),this.negative=1,this;if(this.words[0]-=n,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var c=0;c>26)-(_/67108864|0),this.words[C+m]=67108863&k}for(;C>26,this.words[C+m]=67108863&k;if(0===L)return this.strip();for(w(-1===L),L=0,C=0;C>26,this.words[C]=67108863&k;return this.negative=1,this.strip()},l.prototype._wordDiv=function(n,c){var m,h=this.clone(),C=n,k=0|C.words[C.length-1];0!=(m=26-this._countBits(k))&&(C=C.ushln(m),h.iushln(m),k=0|C.words[C.length-1]);var r,_=h.length-C.length;if("mod"!==c){(r=new l(null)).length=_+1,r.words=new Array(r.length);for(var v=0;v=0;N--){var ne=67108864*(0|h.words[C.length+N])+(0|h.words[C.length+N-1]);for(ne=Math.min(ne/k|0,67108863),h._ishlnsubmul(C,ne,N);0!==h.negative;)ne--,h.negative=0,h._ishlnsubmul(C,1,N),h.isZero()||(h.negative^=1);r&&(r.words[N]=ne)}return r&&r.strip(),h.strip(),"div"!==c&&0!==m&&h.iushrn(m),{div:r||null,mod:h}},l.prototype.divmod=function(n,c,m){return w(!n.isZero()),this.isZero()?{div:new l(0),mod:new l(0)}:0!==this.negative&&0===n.negative?(k=this.neg().divmod(n,c),"mod"!==c&&(h=k.div.neg()),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.iadd(n)),{div:h,mod:C}):0===this.negative&&0!==n.negative?(k=this.divmod(n.neg(),c),"mod"!==c&&(h=k.div.neg()),{div:h,mod:k.mod}):this.negative&n.negative?(k=this.neg().divmod(n.neg(),c),"div"!==c&&(C=k.mod.neg(),m&&0!==C.negative&&C.isub(n)),{div:k.div,mod:C}):n.length>this.length||this.cmp(n)<0?{div:new l(0),mod:this}:1===n.length?"div"===c?{div:this.divn(n.words[0]),mod:null}:"mod"===c?{div:null,mod:new l(this.modn(n.words[0]))}:{div:this.divn(n.words[0]),mod:new l(this.modn(n.words[0]))}:this._wordDiv(n,c);var h,C,k},l.prototype.div=function(n){return this.divmod(n,"div",!1).div},l.prototype.mod=function(n){return this.divmod(n,"mod",!1).mod},l.prototype.umod=function(n){return this.divmod(n,"mod",!0).mod},l.prototype.divRound=function(n){var c=this.divmod(n);if(c.mod.isZero())return c.div;var m=0!==c.div.negative?c.mod.isub(n):c.mod,h=n.ushrn(1),C=n.andln(1),k=m.cmp(h);return k<0||1===C&&0===k?c.div:0!==c.div.negative?c.div.isubn(1):c.div.iaddn(1)},l.prototype.modn=function(n){w(n<=67108863);for(var c=(1<<26)%n,m=0,h=this.length-1;h>=0;h--)m=(c*m+(0|this.words[h]))%n;return m},l.prototype.idivn=function(n){w(n<=67108863);for(var c=0,m=this.length-1;m>=0;m--){var h=(0|this.words[m])+67108864*c;this.words[m]=h/n|0,c=h%n}return this.strip()},l.prototype.divn=function(n){return this.clone().idivn(n)},l.prototype.egcd=function(n){w(0===n.negative),w(!n.isZero());var c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=new l(0),L=new l(1),_=0;c.isEven()&&m.isEven();)c.iushrn(1),m.iushrn(1),++_;for(var r=m.clone(),v=c.clone();!c.isZero();){for(var V=0,N=1;!(c.words[0]&N)&&V<26;++V,N<<=1);if(V>0)for(c.iushrn(V);V-- >0;)(h.isOdd()||C.isOdd())&&(h.iadd(r),C.isub(v)),h.iushrn(1),C.iushrn(1);for(var ne=0,Ee=1;!(m.words[0]&Ee)&&ne<26;++ne,Ee<<=1);if(ne>0)for(m.iushrn(ne);ne-- >0;)(k.isOdd()||L.isOdd())&&(k.iadd(r),L.isub(v)),k.iushrn(1),L.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(k),C.isub(L)):(m.isub(c),k.isub(h),L.isub(C))}return{a:k,b:L,gcd:m.iushln(_)}},l.prototype._invmp=function(n){w(0===n.negative),w(!n.isZero());var V,c=this,m=n.clone();c=0!==c.negative?c.umod(n):c.clone();for(var h=new l(1),C=new l(0),k=m.clone();c.cmpn(1)>0&&m.cmpn(1)>0;){for(var L=0,_=1;!(c.words[0]&_)&&L<26;++L,_<<=1);if(L>0)for(c.iushrn(L);L-- >0;)h.isOdd()&&h.iadd(k),h.iushrn(1);for(var r=0,v=1;!(m.words[0]&v)&&r<26;++r,v<<=1);if(r>0)for(m.iushrn(r);r-- >0;)C.isOdd()&&C.iadd(k),C.iushrn(1);c.cmp(m)>=0?(c.isub(m),h.isub(C)):(m.isub(c),C.isub(h))}return(V=0===c.cmpn(1)?h:C).cmpn(0)<0&&V.iadd(n),V},l.prototype.gcd=function(n){if(this.isZero())return n.abs();if(n.isZero())return this.abs();var c=this.clone(),m=n.clone();c.negative=0,m.negative=0;for(var h=0;c.isEven()&&m.isEven();h++)c.iushrn(1),m.iushrn(1);for(;;){for(;c.isEven();)c.iushrn(1);for(;m.isEven();)m.iushrn(1);var C=c.cmp(m);if(C<0){var k=c;c=m,m=k}else if(0===C||0===m.cmpn(1))break;c.isub(m)}return m.iushln(h)},l.prototype.invm=function(n){return this.egcd(n).a.umod(n)},l.prototype.isEven=function(){return!(1&this.words[0])},l.prototype.isOdd=function(){return!(1&~this.words[0])},l.prototype.andln=function(n){return this.words[0]&n},l.prototype.bincn=function(n){w("number"==typeof n);var c=n%26,m=(n-c)/26,h=1<>>26,this.words[k]=L&=67108863}return 0!==C&&(this.words[k]=C,this.length++),this},l.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},l.prototype.cmpn=function(n){var m,c=n<0;if(0!==this.negative&&!c)return-1;if(0===this.negative&&c)return 1;if(this.strip(),this.length>1)m=1;else{c&&(n=-n),w(n<=67108863,"Number is too big");var h=0|this.words[0];m=h===n?0:hn.length)return 1;if(this.length=0;m--){var h=0|this.words[m],C=0|n.words[m];if(h!==C){hC&&(c=1);break}}return c},l.prototype.gtn=function(n){return 1===this.cmpn(n)},l.prototype.gt=function(n){return 1===this.cmp(n)},l.prototype.gten=function(n){return this.cmpn(n)>=0},l.prototype.gte=function(n){return this.cmp(n)>=0},l.prototype.ltn=function(n){return-1===this.cmpn(n)},l.prototype.lt=function(n){return-1===this.cmp(n)},l.prototype.lten=function(n){return this.cmpn(n)<=0},l.prototype.lte=function(n){return this.cmp(n)<=0},l.prototype.eqn=function(n){return 0===this.cmpn(n)},l.prototype.eq=function(n){return 0===this.cmp(n)},l.red=function(n){return new Te(n)},l.prototype.toRed=function(n){return w(!this.red,"Already a number in reduction context"),w(0===this.negative,"red works only with positives"),n.convertTo(this)._forceRed(n)},l.prototype.fromRed=function(){return w(this.red,"fromRed works only with numbers in reduction context"),this.red.convertFrom(this)},l.prototype._forceRed=function(n){return this.red=n,this},l.prototype.forceRed=function(n){return w(!this.red,"Already a number in reduction context"),this._forceRed(n)},l.prototype.redAdd=function(n){return w(this.red,"redAdd works only with red numbers"),this.red.add(this,n)},l.prototype.redIAdd=function(n){return w(this.red,"redIAdd works only with red numbers"),this.red.iadd(this,n)},l.prototype.redSub=function(n){return w(this.red,"redSub works only with red numbers"),this.red.sub(this,n)},l.prototype.redISub=function(n){return w(this.red,"redISub works only with red numbers"),this.red.isub(this,n)},l.prototype.redShl=function(n){return w(this.red,"redShl works only with red numbers"),this.red.shl(this,n)},l.prototype.redMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.mul(this,n)},l.prototype.redIMul=function(n){return w(this.red,"redMul works only with red numbers"),this.red._verify2(this,n),this.red.imul(this,n)},l.prototype.redSqr=function(){return w(this.red,"redSqr works only with red numbers"),this.red._verify1(this),this.red.sqr(this)},l.prototype.redISqr=function(){return w(this.red,"redISqr works only with red numbers"),this.red._verify1(this),this.red.isqr(this)},l.prototype.redSqrt=function(){return w(this.red,"redSqrt works only with red numbers"),this.red._verify1(this),this.red.sqrt(this)},l.prototype.redInvm=function(){return w(this.red,"redInvm works only with red numbers"),this.red._verify1(this),this.red.invm(this)},l.prototype.redNeg=function(){return w(this.red,"redNeg works only with red numbers"),this.red._verify1(this),this.red.neg(this)},l.prototype.redPow=function(n){return w(this.red&&!n.red,"redPow(normalNum)"),this.red._verify1(this),this.red.pow(this,n)};var J={k256:null,p224:null,p192:null,p25519:null};function ee(D,n){this.name=D,this.p=new l(n,16),this.n=this.p.bitLength(),this.k=new l(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function ie(){ee.call(this,"k256","ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f")}function ge(){ee.call(this,"p224","ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001")}function ae(){ee.call(this,"p192","ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff")}function Me(){ee.call(this,"25519","7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed")}function Te(D){if("string"==typeof D){var n=l._prime(D);this.m=n.p,this.prime=n}else w(D.gtn(1),"modulus must be greater than 1"),this.m=D,this.prime=null}function de(D){Te.call(this,D),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new l(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}ee.prototype._tmp=function(){var n=new l(null);return n.words=new Array(Math.ceil(this.n/13)),n},ee.prototype.ireduce=function(n){var m,c=n;do{this.split(c,this.tmp),m=(c=(c=this.imulK(c)).iadd(this.tmp)).bitLength()}while(m>this.n);var h=m0?c.isub(this.p):void 0!==c.strip?c.strip():c._strip(),c},ee.prototype.split=function(n,c){n.iushrn(this.n,0,c)},ee.prototype.imulK=function(n){return n.imul(this.k)},S(ie,ee),ie.prototype.split=function(n,c){for(var m=4194303,h=Math.min(n.length,9),C=0;C>>22,k=L}n.words[C-10]=k>>>=22,n.length-=0===k&&n.length>10?10:9},ie.prototype.imulK=function(n){n.words[n.length]=0,n.words[n.length+1]=0,n.length+=2;for(var c=0,m=0;m>>=26,n.words[m]=C,c=h}return 0!==c&&(n.words[n.length++]=c),n},l._prime=function(n){if(J[n])return J[n];var c;if("k256"===n)c=new ie;else if("p224"===n)c=new ge;else if("p192"===n)c=new ae;else{if("p25519"!==n)throw new Error("Unknown prime "+n);c=new Me}return J[n]=c,c},Te.prototype._verify1=function(n){w(0===n.negative,"red works only with positives"),w(n.red,"red works only with red numbers")},Te.prototype._verify2=function(n,c){w(!(n.negative|c.negative),"red works only with positives"),w(n.red&&n.red===c.red,"red works only with red numbers")},Te.prototype.imod=function(n){return this.prime?this.prime.ireduce(n)._forceRed(this):n.umod(this.m)._forceRed(this)},Te.prototype.neg=function(n){return n.isZero()?n.clone():this.m.sub(n)._forceRed(this)},Te.prototype.add=function(n,c){this._verify2(n,c);var m=n.add(c);return m.cmp(this.m)>=0&&m.isub(this.m),m._forceRed(this)},Te.prototype.iadd=function(n,c){this._verify2(n,c);var m=n.iadd(c);return m.cmp(this.m)>=0&&m.isub(this.m),m},Te.prototype.sub=function(n,c){this._verify2(n,c);var m=n.sub(c);return m.cmpn(0)<0&&m.iadd(this.m),m._forceRed(this)},Te.prototype.isub=function(n,c){this._verify2(n,c);var m=n.isub(c);return m.cmpn(0)<0&&m.iadd(this.m),m},Te.prototype.shl=function(n,c){return this._verify1(n),this.imod(n.ushln(c))},Te.prototype.imul=function(n,c){return this._verify2(n,c),this.imod(n.imul(c))},Te.prototype.mul=function(n,c){return this._verify2(n,c),this.imod(n.mul(c))},Te.prototype.isqr=function(n){return this.imul(n,n.clone())},Te.prototype.sqr=function(n){return this.mul(n,n)},Te.prototype.sqrt=function(n){if(n.isZero())return n.clone();var c=this.m.andln(3);if(w(c%2==1),3===c){var m=this.m.add(new l(1)).iushrn(2);return this.pow(n,m)}for(var h=this.m.subn(1),C=0;!h.isZero()&&0===h.andln(1);)C++,h.iushrn(1);w(!h.isZero());var k=new l(1).toRed(this),L=k.redNeg(),_=this.m.subn(1).iushrn(1),r=this.m.bitLength();for(r=new l(2*r*r).toRed(this);0!==this.pow(r,_).cmp(L);)r.redIAdd(L);for(var v=this.pow(r,h),V=this.pow(n,h.addn(1).iushrn(1)),N=this.pow(n,h),ne=C;0!==N.cmp(k);){for(var Ee=N,ze=0;0!==Ee.cmp(k);ze++)Ee=Ee.redSqr();w(ze=0;C--){for(var v=c.words[C],V=r-1;V>=0;V--){var N=v>>V&1;k!==h[0]&&(k=this.sqr(k)),0!==N||0!==L?(L<<=1,L|=N,(4==++_||0===C&&0===V)&&(k=this.mul(k,h[L]),_=0,L=0)):_=0}r=26}return k},Te.prototype.convertTo=function(n){var c=n.umod(this.m);return c===n?c.clone():c},Te.prototype.convertFrom=function(n){var c=n.clone();return c.red=null,c},l.mont=function(n){return new de(n)},S(de,Te),de.prototype.convertTo=function(n){return this.imod(n.ushln(this.shift))},de.prototype.convertFrom=function(n){var c=this.imod(n.mul(this.rinv));return c.red=null,c},de.prototype.imul=function(n,c){if(n.isZero()||c.isZero())return n.words[0]=0,n.length=1,n;var m=n.imul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.mul=function(n,c){if(n.isZero()||c.isZero())return new l(0)._forceRed(this);var m=n.mul(c),h=m.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),C=m.isub(h).iushrn(this.shift),k=C;return C.cmp(this.m)>=0?k=C.isub(this.m):C.cmpn(0)<0&&(k=C.iadd(this.m)),k._forceRed(this)},de.prototype.invm=function(n){return this.imod(n._invmp(this.m).mul(this.r2))._forceRed(this)}}(Qe=g.nmd(Qe),this)},8613:(Qe,te,g)=>{var e=g(5667),t=g(715),w=g(7196),S=g(6508),l=g(4105),x=g(7211),f=g(568),I=g(7054).Buffer;Qe.exports=function(R,z,W){var $;$=R.padding?R.padding:W?1:4;var J,j=e(R),Q=j.modulus.byteLength();if(z.length>Q||new S(z).cmp(j.modulus)>=0)throw new Error("decryption error");J=W?f(new S(z),j):l(z,j);var ee=I.alloc(Q-J.length);if(J=I.concat([ee,J],Q),4===$)return function d(F,R){var z=F.modulus.byteLength(),W=x("sha1").update(I.alloc(0)).digest(),$=W.length;if(0!==R[0])throw new Error("decryption error");var j=R.slice(1,$+1),Q=R.slice($+1),J=w(j,t(Q,$)),ee=w(Q,t(J,z-$-1));if(function y(F,R){F=I.from(F),R=I.from(R);var z=0,W=F.length;F.length!==R.length&&(z++,W=Math.min(F.length,R.length));for(var $=-1;++$=R.length){j++;break}var Q=R.slice(2,$-1);if(("0002"!==W.toString("hex")&&!z||"0001"!==W.toString("hex")&&z)&&j++,Q.length<8&&j++,j)throw new Error("decryption error");return R.slice($)}(0,J,W);if(3===$)return J;throw new Error("unknown padding")}},7267:(Qe,te,g)=>{var e=g(5667),t=g(3342),w=g(7211),S=g(715),l=g(7196),x=g(6508),f=g(568),I=g(4105),d=g(7054).Buffer;Qe.exports=function(z,W,$){var j;j=z.padding?z.padding:$?1:4;var J,Q=e(z);if(4===j)J=function T(R,z){var W=R.modulus.byteLength(),$=z.length,j=w("sha1").update(d.alloc(0)).digest(),Q=j.length,J=2*Q;if($>W-J-2)throw new Error("message too long");var ee=d.alloc(W-$-J-2),ie=W-Q-1,ge=t(Q),ae=l(d.concat([j,ee,d.alloc(1,1),z],ie),S(ge,ie)),Me=l(ge,S(ae,Q));return new x(d.concat([d.alloc(1),Me,ae],W))}(Q,W);else if(1===j)J=function y(R,z,W){var Q,$=z.length,j=R.modulus.byteLength();if($>j-11)throw new Error("message too long");return Q=W?d.alloc(j-$-3,255):function F(R){for(var Q,z=d.allocUnsafe(R),W=0,$=t(2*R),j=0;W=0)throw new Error("data too long for modulus")}return $?I(J,Q):f(J,Q)}},568:(Qe,te,g)=>{var e=g(6508),t=g(7054).Buffer;Qe.exports=function w(S,l){return t.from(S.toRed(e.mont(l.modulus)).redPow(new e(l.publicExponent)).fromRed().toArray())}},7196:Qe=>{Qe.exports=function(g,e){for(var t=g.length,w=-1;++w{const e=g(2836),t=g(9460),w=g(7030),S=g(6511);function l(x,f,I,d,T){const y=[].slice.call(arguments,1),F=y.length,R="function"==typeof y[F-1];if(!R&&!e())throw new Error("Callback required as last argument");if(!R){if(F<1)throw new Error("Too few arguments provided");return 1===F?(I=f,f=d=void 0):2===F&&!f.getContext&&(d=I,I=f,f=void 0),new Promise(function(z,W){try{const $=t.create(I,d);z(x($,f,d))}catch($){W($)}})}if(F<2)throw new Error("Too few arguments provided");2===F?(T=I,I=f,f=d=void 0):3===F&&(f.getContext&&typeof T>"u"?(T=d,d=void 0):(T=d,d=I,I=f,f=void 0));try{const z=t.create(I,d);T(null,x(z,f,d))}catch(z){T(z)}}te.create=t.create,te.toCanvas=l.bind(null,w.render),te.toDataURL=l.bind(null,w.renderToDataURL),te.toString=l.bind(null,function(x,f,I){return S.render(x,I)})},2836:Qe=>{Qe.exports=function(){return"function"==typeof Promise&&Promise.prototype&&Promise.prototype.then}},6214:(Qe,te,g)=>{const e=g(9089).getSymbolSize;te.getRowColCoords=function(w){if(1===w)return[];const S=Math.floor(w/7)+2,l=e(w),x=145===l?26:2*Math.ceil((l-13)/(2*S-2)),f=[l-7];for(let I=1;I{const e=g(1677),t=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"," ","$","%","*","+","-",".","/",":"];function w(S){this.mode=e.ALPHANUMERIC,this.data=S}w.getBitsLength=function(l){return 11*Math.floor(l/2)+l%2*6},w.prototype.getLength=function(){return this.data.length},w.prototype.getBitsLength=function(){return w.getBitsLength(this.data.length)},w.prototype.write=function(l){let x;for(x=0;x+2<=this.data.length;x+=2){let f=45*t.indexOf(this.data[x]);f+=t.indexOf(this.data[x+1]),l.put(f,11)}this.data.length%2&&l.put(t.indexOf(this.data[x]),6)},Qe.exports=w},4662:Qe=>{function te(){this.buffer=[],this.length=0}te.prototype={get:function(g){const e=Math.floor(g/8);return 1==(this.buffer[e]>>>7-g%8&1)},put:function(g,e){for(let t=0;t>>e-t-1&1))},getLengthInBits:function(){return this.length},putBit:function(g){const e=Math.floor(this.length/8);this.buffer.length<=e&&this.buffer.push(0),g&&(this.buffer[e]|=128>>>this.length%8),this.length++}},Qe.exports=te},8322:Qe=>{function te(g){if(!g||g<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=g,this.data=new Uint8Array(g*g),this.reservedBit=new Uint8Array(g*g)}te.prototype.set=function(g,e,t,w){const S=g*this.size+e;this.data[S]=t,w&&(this.reservedBit[S]=!0)},te.prototype.get=function(g,e){return this.data[g*this.size+e]},te.prototype.xor=function(g,e,t){this.data[g*this.size+e]^=t},te.prototype.isReserved=function(g,e){return this.reservedBit[g*this.size+e]},Qe.exports=te},4969:(Qe,te,g)=>{const e=g(3174),t=g(1677);function w(S){this.mode=t.BYTE,"string"==typeof S&&(S=e(S)),this.data=new Uint8Array(S)}w.getBitsLength=function(l){return 8*l},w.prototype.getLength=function(){return this.data.length},w.prototype.getBitsLength=function(){return w.getBitsLength(this.data.length)},w.prototype.write=function(S){for(let l=0,x=this.data.length;l{const e=g(7424),t=[1,1,1,1,1,1,1,1,1,1,2,2,1,2,2,4,1,2,4,4,2,4,4,4,2,4,6,5,2,4,6,6,2,5,8,8,4,5,8,8,4,5,8,11,4,8,10,11,4,9,12,16,4,9,16,16,6,10,12,18,6,10,17,16,6,11,16,19,6,13,18,21,7,14,21,25,8,16,20,25,8,17,23,25,9,17,23,34,9,18,25,30,10,20,27,32,12,21,29,35,12,23,34,37,12,25,34,40,13,26,35,42,14,28,38,45,15,29,40,48,16,31,43,51,17,33,45,54,18,35,48,57,19,37,51,60,19,38,53,63,20,40,56,66,21,43,59,70,22,45,62,74,24,47,65,77,25,49,68,81],w=[7,10,13,17,10,16,22,28,15,26,36,44,20,36,52,64,26,48,72,88,36,64,96,112,40,72,108,130,48,88,132,156,60,110,160,192,72,130,192,224,80,150,224,264,96,176,260,308,104,198,288,352,120,216,320,384,132,240,360,432,144,280,408,480,168,308,448,532,180,338,504,588,196,364,546,650,224,416,600,700,224,442,644,750,252,476,690,816,270,504,750,900,300,560,810,960,312,588,870,1050,336,644,952,1110,360,700,1020,1200,390,728,1050,1260,420,784,1140,1350,450,812,1200,1440,480,868,1290,1530,510,924,1350,1620,540,980,1440,1710,570,1036,1530,1800,570,1064,1590,1890,600,1120,1680,1980,630,1204,1770,2100,660,1260,1860,2220,720,1316,1950,2310,750,1372,2040,2430];te.getBlocksCount=function(l,x){switch(x){case e.L:return t[4*(l-1)+0];case e.M:return t[4*(l-1)+1];case e.Q:return t[4*(l-1)+2];case e.H:return t[4*(l-1)+3];default:return}},te.getTotalCodewordsCount=function(l,x){switch(x){case e.L:return w[4*(l-1)+0];case e.M:return w[4*(l-1)+1];case e.Q:return w[4*(l-1)+2];case e.H:return w[4*(l-1)+3];default:return}}},7424:(Qe,te)=>{te.L={bit:1},te.M={bit:0},te.Q={bit:3},te.H={bit:2},te.isValid=function(t){return t&&typeof t.bit<"u"&&t.bit>=0&&t.bit<4},te.from=function(t,w){if(te.isValid(t))return t;try{return function g(e){if("string"!=typeof e)throw new Error("Param is not a string");switch(e.toLowerCase()){case"l":case"low":return te.L;case"m":case"medium":return te.M;case"q":case"quartile":return te.Q;case"h":case"high":return te.H;default:throw new Error("Unknown EC Level: "+e)}}(t)}catch{return w}}},6269:(Qe,te,g)=>{const e=g(9089).getSymbolSize;te.getPositions=function(S){const l=e(S);return[[0,0],[l-7,0],[0,l-7]]}},6254:(Qe,te,g)=>{const e=g(9089),S=e.getBCHDigit(1335);te.getEncodedBits=function(x,f){const I=x.bit<<3|f;let d=I<<10;for(;e.getBCHDigit(d)-S>=0;)d^=1335<{const g=new Uint8Array(512),e=new Uint8Array(256);(function(){let w=1;for(let S=0;S<255;S++)g[S]=w,e[w]=S,w<<=1,256&w&&(w^=285);for(let S=255;S<512;S++)g[S]=g[S-255]})(),te.log=function(w){if(w<1)throw new Error("log("+w+")");return e[w]},te.exp=function(w){return g[w]},te.mul=function(w,S){return 0===w||0===S?0:g[e[w]+e[S]]}},3264:(Qe,te,g)=>{const e=g(1677),t=g(9089);function w(S){this.mode=e.KANJI,this.data=S}w.getBitsLength=function(l){return 13*l},w.prototype.getLength=function(){return this.data.length},w.prototype.getBitsLength=function(){return w.getBitsLength(this.data.length)},w.prototype.write=function(S){let l;for(l=0;l=33088&&x<=40956)x-=33088;else{if(!(x>=57408&&x<=60351))throw new Error("Invalid SJIS character: "+this.data[l]+"\nMake sure your charset is UTF-8");x-=49472}x=192*(x>>>8&255)+(255&x),S.put(x,13)}},Qe.exports=w},3361:(Qe,te)=>{te.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};function e(t,w,S){switch(t){case te.Patterns.PATTERN000:return(w+S)%2==0;case te.Patterns.PATTERN001:return w%2==0;case te.Patterns.PATTERN010:return S%3==0;case te.Patterns.PATTERN011:return(w+S)%3==0;case te.Patterns.PATTERN100:return(Math.floor(w/2)+Math.floor(S/3))%2==0;case te.Patterns.PATTERN101:return w*S%2+w*S%3==0;case te.Patterns.PATTERN110:return(w*S%2+w*S%3)%2==0;case te.Patterns.PATTERN111:return(w*S%3+(w+S)%2)%2==0;default:throw new Error("bad maskPattern:"+t)}}te.isValid=function(w){return null!=w&&""!==w&&!isNaN(w)&&w>=0&&w<=7},te.from=function(w){return te.isValid(w)?parseInt(w,10):void 0},te.getPenaltyN1=function(w){const S=w.size;let l=0,x=0,f=0,I=null,d=null;for(let T=0;T=5&&(l+=x-5+3),I=F,x=1),F=w.get(y,T),F===d?f++:(f>=5&&(l+=f-5+3),d=F,f=1)}x>=5&&(l+=x-5+3),f>=5&&(l+=f-5+3)}return l},te.getPenaltyN2=function(w){const S=w.size;let l=0;for(let x=0;x=10&&(1488===x||93===x)&&l++,f=f<<1&2047|w.get(d,I),d>=10&&(1488===f||93===f)&&l++}return 40*l},te.getPenaltyN4=function(w){let S=0;const l=w.data.length;for(let f=0;f{const e=g(377),t=g(9359);te.NUMERIC={id:"Numeric",bit:1,ccBits:[10,12,14]},te.ALPHANUMERIC={id:"Alphanumeric",bit:2,ccBits:[9,11,13]},te.BYTE={id:"Byte",bit:4,ccBits:[8,16,16]},te.KANJI={id:"Kanji",bit:8,ccBits:[8,10,12]},te.MIXED={bit:-1},te.getCharCountIndicator=function(l,x){if(!l.ccBits)throw new Error("Invalid mode: "+l);if(!e.isValid(x))throw new Error("Invalid version: "+x);return x>=1&&x<10?l.ccBits[0]:x<27?l.ccBits[1]:l.ccBits[2]},te.getBestModeForData=function(l){return t.testNumeric(l)?te.NUMERIC:t.testAlphanumeric(l)?te.ALPHANUMERIC:t.testKanji(l)?te.KANJI:te.BYTE},te.toString=function(l){if(l&&l.id)return l.id;throw new Error("Invalid mode")},te.isValid=function(l){return l&&l.bit&&l.ccBits},te.from=function(l,x){if(te.isValid(l))return l;try{return function w(S){if("string"!=typeof S)throw new Error("Param is not a string");switch(S.toLowerCase()){case"numeric":return te.NUMERIC;case"alphanumeric":return te.ALPHANUMERIC;case"kanji":return te.KANJI;case"byte":return te.BYTE;default:throw new Error("Unknown mode: "+S)}}(l)}catch{return x}}},6628:(Qe,te,g)=>{const e=g(1677);function t(w){this.mode=e.NUMERIC,this.data=w.toString()}t.getBitsLength=function(S){return 10*Math.floor(S/3)+(S%3?S%3*3+1:0)},t.prototype.getLength=function(){return this.data.length},t.prototype.getBitsLength=function(){return t.getBitsLength(this.data.length)},t.prototype.write=function(S){let l,x,f;for(l=0;l+3<=this.data.length;l+=3)x=this.data.substr(l,3),f=parseInt(x,10),S.put(f,10);const I=this.data.length-l;I>0&&(x=this.data.substr(l),f=parseInt(x,10),S.put(f,3*I+1))},Qe.exports=t},1744:(Qe,te,g)=>{const e=g(6686);te.mul=function(w,S){const l=new Uint8Array(w.length+S.length-1);for(let x=0;x=0;){const x=l[0];for(let I=0;I{const e=g(9089),t=g(7424),w=g(4662),S=g(8322),l=g(6214),x=g(6269),f=g(3361),I=g(3677),d=g(6289),T=g(1252),y=g(6254),F=g(1677),R=g(2868);function Q(ae,Me,Te){const de=ae.size,D=y.getEncodedBits(Me,Te);let n,c;for(n=0;n<15;n++)c=1==(D>>n&1),ae.set(n<6?n:n<8?n+1:de-15+n,8,c,!0),ae.set(8,n<8?de-n-1:n<9?15-n-1+1:15-n-1,c,!0);ae.set(de-8,8,1,!0)}function ge(ae,Me,Te,de){let D;if(Array.isArray(ae))D=R.fromArray(ae);else{if("string"!=typeof ae)throw new Error("Invalid data");{let C=Me;if(!C){const k=R.rawSplit(ae);C=T.getBestVersionForData(k,Te)}D=R.fromString(ae,C||40)}}const n=T.getBestVersionForData(D,Te);if(!n)throw new Error("The amount of data is too big to be stored in a QR Code");if(Me){if(Me=0&&m<=6&&(0===h||6===h)||h>=0&&h<=6&&(0===m||6===m)||m>=2&&m<=4&&h>=2&&h<=4,!0)}}(h,Me),function W(ae){const Me=ae.size;for(let Te=8;Te=7&&function j(ae,Me){const Te=ae.size,de=T.getEncodedBits(Me);let D,n,c;for(let m=0;m<18;m++)D=Math.floor(m/3),n=m%3+Te-8-3,c=1==(de>>m&1),ae.set(D,n,c,!0),ae.set(n,D,c,!0)}(h,Me),function J(ae,Me){const Te=ae.size;let de=-1,D=Te-1,n=7,c=0;for(let m=Te-1;m>0;m-=2)for(6===m&&m--;;){for(let h=0;h<2;h++)if(!ae.isReserved(D,m-h)){let C=!1;c>>n&1)),ae.set(D,m-h,C),n--,-1===n&&(c++,n=7)}if(D+=de,D<0||Te<=D){D-=de,de=-de;break}}}(h,c),isNaN(de)&&(de=f.getBestMask(h,Q.bind(null,h,Te))),f.applyMask(de,h),Q(h,Te,de),{modules:h,version:Me,errorCorrectionLevel:Te,maskPattern:de,segments:D}}te.create=function(Me,Te){if(typeof Me>"u"||""===Me)throw new Error("No input text");let D,n,de=t.M;return typeof Te<"u"&&(de=t.from(Te.errorCorrectionLevel,t.M),D=T.from(Te.version),n=f.from(Te.maskPattern),Te.toSJISFunc&&e.setToSJISFunction(Te.toSJISFunc)),ge(Me,D,de,n)}},6289:(Qe,te,g)=>{const e=g(1744);function t(w){this.genPoly=void 0,this.degree=w,this.degree&&this.initialize(this.degree)}t.prototype.initialize=function(S){this.degree=S,this.genPoly=e.generateECPolynomial(this.degree)},t.prototype.encode=function(S){if(!this.genPoly)throw new Error("Encoder not initialized");const l=new Uint8Array(S.length+this.degree);l.set(S);const x=e.mod(l,this.genPoly),f=this.degree-x.length;if(f>0){const I=new Uint8Array(this.degree);return I.set(x,f),I}return x},Qe.exports=t},9359:(Qe,te)=>{const g="[0-9]+";let t="(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";t=t.replace(/u/g,"\\u");const w="(?:(?![A-Z0-9 $%*+\\-./:]|"+t+")(?:.|[\r\n]))+";te.KANJI=new RegExp(t,"g"),te.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g"),te.BYTE=new RegExp(w,"g"),te.NUMERIC=new RegExp(g,"g"),te.ALPHANUMERIC=new RegExp("[A-Z $%*+\\-./:]+","g");const S=new RegExp("^"+t+"$"),l=new RegExp("^"+g+"$"),x=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");te.testKanji=function(I){return S.test(I)},te.testNumeric=function(I){return l.test(I)},te.testAlphanumeric=function(I){return x.test(I)}},2868:(Qe,te,g)=>{const e=g(1677),t=g(6628),w=g(1018),S=g(4969),l=g(3264),x=g(9359),f=g(9089),I=g(243);function d(j){return unescape(encodeURIComponent(j)).length}function T(j,Q,J){const ee=[];let ie;for(;null!==(ie=j.exec(J));)ee.push({data:ie[0],index:ie.index,mode:Q,length:ie[0].length});return ee}function y(j){const Q=T(x.NUMERIC,e.NUMERIC,j),J=T(x.ALPHANUMERIC,e.ALPHANUMERIC,j);let ee,ie;return f.isKanjiModeEnabled()?(ee=T(x.BYTE,e.BYTE,j),ie=T(x.KANJI,e.KANJI,j)):(ee=T(x.BYTE_KANJI,e.BYTE,j),ie=[]),Q.concat(J,ee,ie).sort(function(ae,Me){return ae.index-Me.index}).map(function(ae){return{data:ae.data,mode:ae.mode,length:ae.length}})}function F(j,Q){switch(Q){case e.NUMERIC:return t.getBitsLength(j);case e.ALPHANUMERIC:return w.getBitsLength(j);case e.KANJI:return l.getBitsLength(j);case e.BYTE:return S.getBitsLength(j)}}function $(j,Q){let J;const ee=e.getBestModeForData(j);if(J=e.from(Q,ee),J!==e.BYTE&&J.bit=0?Q[Q.length-1]:null;return ee&&ee.mode===J.mode?(Q[Q.length-1].data+=J.data,Q):(Q.push(J),Q)},[])}(Me))},te.rawSplit=function(Q){return te.fromArray(y(Q,f.isKanjiModeEnabled()))}},9089:(Qe,te)=>{let g;const e=[0,26,44,70,100,134,172,196,242,292,346,404,466,532,581,655,733,815,901,991,1085,1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,2323,2465,2611,2761,2876,3034,3196,3362,3532,3706];te.getSymbolSize=function(w){if(!w)throw new Error('"version" cannot be null or undefined');if(w<1||w>40)throw new Error('"version" should be in range from 1 to 40');return 4*w+17},te.getSymbolTotalCodewords=function(w){return e[w]},te.getBCHDigit=function(t){let w=0;for(;0!==t;)w++,t>>>=1;return w},te.setToSJISFunction=function(w){if("function"!=typeof w)throw new Error('"toSJISFunc" is not a valid function.');g=w},te.isKanjiModeEnabled=function(){return typeof g<"u"},te.toSJIS=function(w){return g(w)}},377:(Qe,te)=>{te.isValid=function(e){return!isNaN(e)&&e>=1&&e<=40}},1252:(Qe,te,g)=>{const e=g(9089),t=g(3677),w=g(7424),S=g(1677),l=g(377),f=e.getBCHDigit(7973);function d(F,R){return S.getCharCountIndicator(F,R)+4}function T(F,R){let z=0;return F.forEach(function(W){const $=d(W.mode,R);z+=$+W.getBitsLength()}),z}te.from=function(R,z){return l.isValid(R)?parseInt(R,10):z},te.getCapacity=function(R,z,W){if(!l.isValid(R))throw new Error("Invalid QR Code version");typeof W>"u"&&(W=S.BYTE);const Q=8*(e.getSymbolTotalCodewords(R)-t.getTotalCodewordsCount(R,z));if(W===S.MIXED)return Q;const J=Q-d(W,R);switch(W){case S.NUMERIC:return Math.floor(J/10*3);case S.ALPHANUMERIC:return Math.floor(J/11*2);case S.KANJI:return Math.floor(J/13);default:return Math.floor(J/8)}},te.getBestVersionForData=function(R,z){let W;const $=w.from(z,w.M);if(Array.isArray(R)){if(R.length>1)return function y(F,R){for(let z=1;z<=40;z++)if(T(F,z)<=te.getCapacity(z,R,S.MIXED))return z}(R,$);if(0===R.length)return 1;W=R[0]}else W=R;return function I(F,R,z){for(let W=1;W<=40;W++)if(R<=te.getCapacity(W,z,F))return W}(W.mode,W.getLength(),$)},te.getEncodedBits=function(R){if(!l.isValid(R)||R<7)throw new Error("Invalid QR Code version");let z=R<<12;for(;e.getBCHDigit(z)-f>=0;)z^=7973<{const e=g(7077);te.render=function(l,x,f){let I=f,d=x;typeof I>"u"&&(!x||!x.getContext)&&(I=x,x=void 0),x||(d=function w(){try{return document.createElement("canvas")}catch{throw new Error("You need to specify a canvas element")}}()),I=e.getOptions(I);const T=e.getImageWidth(l.modules.size,I),y=d.getContext("2d"),F=y.createImageData(T,T);return e.qrToImageData(F.data,l,I),function t(S,l,x){S.clearRect(0,0,l.width,l.height),l.style||(l.style={}),l.height=x,l.width=x,l.style.height=x+"px",l.style.width=x+"px"}(y,d,T),y.putImageData(F,0,0),d},te.renderToDataURL=function(l,x,f){let I=f;return typeof I>"u"&&(!x||!x.getContext)&&(I=x,x=void 0),I||(I={}),te.render(l,x,I).toDataURL(I.type||"image/png",(I.rendererOpts||{}).quality)}},6511:(Qe,te,g)=>{const e=g(7077);function t(l,x){const f=l.a/255,I=x+'="'+l.hex+'"';return f<1?I+" "+x+'-opacity="'+f.toFixed(2).slice(1)+'"':I}function w(l,x,f){let I=l+x;return typeof f<"u"&&(I+=" "+f),I}te.render=function(x,f,I){const d=e.getOptions(f),T=x.modules.size,y=x.modules.data,F=T+2*d.margin,R=d.color.light.a?"':"",z="0&&R>0&&l[F-1]||(I+=T?w("M",R+f,.5+z+f):w("m",d,0),d=0,T=!1),R+1',j=''+R+z+"\n";return"function"==typeof I&&I(null,j),j}},7077:(Qe,te)=>{function g(e){if("number"==typeof e&&(e=e.toString()),"string"!=typeof e)throw new Error("Color should be defined as hex string");let t=e.slice().replace("#","").split("");if(t.length<3||5===t.length||t.length>8)throw new Error("Invalid hex color: "+e);(3===t.length||4===t.length)&&(t=Array.prototype.concat.apply([],t.map(function(S){return[S,S]}))),6===t.length&&t.push("F","F");const w=parseInt(t.join(""),16);return{r:w>>24&255,g:w>>16&255,b:w>>8&255,a:255&w,hex:"#"+t.slice(0,6).join("")}}te.getOptions=function(t){t||(t={}),t.color||(t.color={});const S=t.width&&t.width>=21?t.width:void 0;return{width:S,scale:S?4:t.scale||4,margin:typeof t.margin>"u"||null===t.margin||t.margin<0?4:t.margin,color:{dark:g(t.color.dark||"#000000ff"),light:g(t.color.light||"#ffffffff")},type:t.type,rendererOpts:t.rendererOpts||{}}},te.getScale=function(t,w){return w.width&&w.width>=t+2*w.margin?w.width/(t+2*w.margin):w.scale},te.getImageWidth=function(t,w){const S=te.getScale(t,w);return Math.floor((t+2*w.margin)*S)},te.qrToImageData=function(t,w,S){const l=w.modules.size,x=w.modules.data,f=te.getScale(l,S),I=Math.floor((l+2*S.margin)*f),d=S.margin*f,T=[S.color.light,S.color.dark];for(let y=0;y=d&&F>=d&&y{"use strict";var e=65536,S=g(7054).Buffer,l=global.crypto||global.msCrypto;Qe.exports=l&&l.getRandomValues?function x(f,I){if(f>4294967295)throw new RangeError("requested too many random bytes");var d=S.allocUnsafe(f);if(f>0)if(f>e)for(var T=0;T{"use strict";function e(){throw new Error("secure random number generation not supported by this browser\nuse chrome, FireFox or Internet Explorer 11")}var t=g(7054),w=g(3342),S=t.Buffer,l=t.kMaxLength,x=global.crypto||global.msCrypto,f=Math.pow(2,32)-1;function I(R,z){if("number"!=typeof R||R!=R)throw new TypeError("offset must be a number");if(R>f||R<0)throw new TypeError("offset must be a uint32");if(R>l||R>z)throw new RangeError("offset out of range")}function d(R,z,W){if("number"!=typeof R||R!=R)throw new TypeError("size must be a number");if(R>f||R<0)throw new TypeError("size must be a uint32");if(R+z>W||R>l)throw new RangeError("buffer too small")}function y(R,z,W,$){if(process.browser){var Q=new Uint8Array(R.buffer,z,W);return x.getRandomValues(Q),$?void process.nextTick(function(){$(null,R)}):R}if(!$)return w(W).copy(R,z),R;w(W,function(ee,ie){if(ee)return $(ee);ie.copy(R,z),$(null,R)})}x&&x.getRandomValues||!process.browser?(te.randomFill=function T(R,z,W,$){if(!(S.isBuffer(R)||R instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');if("function"==typeof z)$=z,z=0,W=R.length;else if("function"==typeof W)$=W,W=R.length-z;else if("function"!=typeof $)throw new TypeError('"cb" argument must be a function');return I(z,R.length),d(W,z,R.length),y(R,z,W,$)},te.randomFillSync=function F(R,z,W){if(typeof z>"u"&&(z=0),!(S.isBuffer(R)||R instanceof global.Uint8Array))throw new TypeError('"buf" argument must be a Buffer or Uint8Array');return I(z,R.length),void 0===W&&(W=R.length-z),d(W,z,R.length),y(R,z,W)}):(te.randomFill=e,te.randomFillSync=e)},4075:(Qe,te,g)=>{"use strict";var e=g(9656),t=Object.keys||function(F){var R=[];for(var z in F)R.push(z);return R};Qe.exports=d;var w=Object.create(g(7637));w.inherits=g(1993);var S=g(9609),l=g(7849);w.inherits(d,S);for(var x=t(l.prototype),f=0;f{"use strict";Qe.exports=w;var e=g(2909),t=Object.create(g(7637));function w(S){if(!(this instanceof w))return new w(S);e.call(this,S)}t.inherits=g(1993),t.inherits(w,e),w.prototype._transform=function(S,l,x){x(null,S)}},9609:(Qe,te,g)=>{"use strict";var e=g(9656);Qe.exports=ee;var w,t=g(53);ee.ReadableState=J,g(4356);var l=function(se,X){return se.listeners(X).length},x=g(8342),f=g(2655).Buffer,I=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},y=Object.create(g(7637));y.inherits=g(1993);var F=g(9838),R=void 0;R=F&&F.debuglog?F.debuglog("stream"):function(){};var $,z=g(7809),W=g(1509);y.inherits(ee,x);var j=["error","close","destroy","pause","resume"];function J(se,X){var me=X instanceof(w=w||g(4075));this.objectMode=!!(se=se||{}).objectMode,me&&(this.objectMode=this.objectMode||!!se.readableObjectMode);var ce=se.highWaterMark,fe=se.readableHighWaterMark;this.highWaterMark=ce||0===ce?ce:me&&(fe||0===fe)?fe:this.objectMode?16:16384,this.highWaterMark=Math.floor(this.highWaterMark),this.buffer=new z,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.destroyed=!1,this.defaultEncoding=se.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,se.encoding&&($||($=g(8454).I),this.decoder=new $(se.encoding),this.encoding=se.encoding)}function ee(se){if(w=w||g(4075),!(this instanceof ee))return new ee(se);this._readableState=new J(se,this),this.readable=!0,se&&("function"==typeof se.read&&(this._read=se.read),"function"==typeof se.destroy&&(this._destroy=se.destroy)),x.call(this)}function ie(se,X,me,ce,fe){var mt,ke=se._readableState;return null===X?(ke.reading=!1,function n(se,X){if(!X.ended){if(X.decoder){var me=X.decoder.end();me&&me.length&&(X.buffer.push(me),X.length+=X.objectMode?1:me.length)}X.ended=!0,c(se)}}(se,ke)):(fe||(mt=function ae(se,X){var me;return!function T(se){return f.isBuffer(se)||se instanceof I}(X)&&"string"!=typeof X&&void 0!==X&&!se.objectMode&&(me=new TypeError("Invalid non-string/buffer chunk")),me}(ke,X)),mt?se.emit("error",mt):ke.objectMode||X&&X.length>0?("string"!=typeof X&&!ke.objectMode&&Object.getPrototypeOf(X)!==f.prototype&&(X=function d(se){return f.from(se)}(X)),ce?ke.endEmitted?se.emit("error",new Error("stream.unshift() after end event")):ge(se,ke,X,!0):ke.ended?se.emit("error",new Error("stream.push() after EOF")):(ke.reading=!1,ke.decoder&&!me?(X=ke.decoder.write(X),ke.objectMode||0!==X.length?ge(se,ke,X,!1):h(se,ke)):ge(se,ke,X,!1))):ce||(ke.reading=!1)),function Me(se){return!se.ended&&(se.needReadable||se.lengthX.highWaterMark&&(X.highWaterMark=function de(se){return se>=8388608?se=8388608:(se--,se|=se>>>1,se|=se>>>2,se|=se>>>4,se|=se>>>8,se|=se>>>16,se++),se}(se)),se<=X.length?se:X.ended?X.length:(X.needReadable=!0,0))}function c(se){var X=se._readableState;X.needReadable=!1,X.emittedReadable||(R("emitReadable",X.flowing),X.emittedReadable=!0,X.sync?e.nextTick(m,se):m(se))}function m(se){R("emit readable"),se.emit("readable"),v(se)}function h(se,X){X.readingMore||(X.readingMore=!0,e.nextTick(C,se,X))}function C(se,X){for(var me=X.length;!X.reading&&!X.flowing&&!X.ended&&X.length=X.length?(me=X.decoder?X.buffer.join(""):1===X.buffer.length?X.buffer.head.data:X.buffer.concat(X.length),X.buffer.clear()):me=function N(se,X,me){var ce;return seke.length?ke.length:se;if(fe+=mt===ke.length?ke:ke.slice(0,se),0==(se-=mt)){mt===ke.length?(++ce,X.head=me.next?me.next:X.tail=null):(X.head=me,me.data=ke.slice(mt));break}++ce}return X.length-=ce,fe}(se,X):function Ee(se,X){var me=f.allocUnsafe(se),ce=X.head,fe=1;for(ce.data.copy(me),se-=ce.data.length;ce=ce.next;){var ke=ce.data,mt=se>ke.length?ke.length:se;if(ke.copy(me,me.length-se,0,mt),0==(se-=mt)){mt===ke.length?(++fe,X.head=ce.next?ce.next:X.tail=null):(X.head=ce,ce.data=ke.slice(mt));break}++fe}return X.length-=fe,me}(se,X),ce}(se,X.buffer,X.decoder),me);var me}function ze(se){var X=se._readableState;if(X.length>0)throw new Error('"endReadable()" called on non-empty stream');X.endEmitted||(X.ended=!0,e.nextTick(qe,X,se))}function qe(se,X){!se.endEmitted&&0===se.length&&(se.endEmitted=!0,X.readable=!1,X.emit("end"))}function Ke(se,X){for(var me=0,ce=se.length;me=X.highWaterMark||X.ended))return R("read: emitReadable",X.length,X.ended),0===X.length&&X.ended?ze(this):c(this),null;if(0===(se=D(se,X))&&X.ended)return 0===X.length&&ze(this),null;var fe,ce=X.needReadable;return R("need readable",ce),(0===X.length||X.length-se0?V(se,X):null)?(X.needReadable=!0,se=0):X.length-=se,0===X.length&&(X.ended||(X.needReadable=!0),me!==se&&X.ended&&ze(this)),null!==fe&&this.emit("data",fe),fe},ee.prototype._read=function(se){this.emit("error",new Error("_read() is not implemented"))},ee.prototype.pipe=function(se,X){var me=this,ce=this._readableState;switch(ce.pipesCount){case 0:ce.pipes=se;break;case 1:ce.pipes=[ce.pipes,se];break;default:ce.pipes.push(se)}ce.pipesCount+=1,R("pipe count=%d opts=%j",ce.pipesCount,X);var ke=X&&!1===X.end||se===process.stdout||se===process.stderr?ue:_e;function _e(){R("onend"),se.end()}ce.endEmitted?e.nextTick(ke):me.once("end",ke),se.on("unpipe",function mt(Ie,He){R("onunpipe"),Ie===me&&He&&!1===He.hasUnpiped&&(He.hasUnpiped=!0,function Ze(){R("cleanup"),se.removeListener("close",Xt),se.removeListener("finish",ye),se.removeListener("drain",be),se.removeListener("error",pt),se.removeListener("unpipe",mt),me.removeListener("end",_e),me.removeListener("end",ue),me.removeListener("data",at),pe=!0,ce.awaitDrain&&(!se._writableState||se._writableState.needDrain)&&be()}())});var be=function k(se){return function(){var X=se._readableState;R("pipeOnDrain",X.awaitDrain),X.awaitDrain&&X.awaitDrain--,0===X.awaitDrain&&l(se,"data")&&(X.flowing=!0,v(se))}}(me);se.on("drain",be);var pe=!1,_t=!1;function at(Ie){R("ondata"),_t=!1,!1===se.write(Ie)&&!_t&&((1===ce.pipesCount&&ce.pipes===se||ce.pipesCount>1&&-1!==Ke(ce.pipes,se))&&!pe&&(R("false write response, pause",ce.awaitDrain),ce.awaitDrain++,_t=!0),me.pause())}function pt(Ie){R("onerror",Ie),ue(),se.removeListener("error",pt),0===l(se,"error")&&se.emit("error",Ie)}function Xt(){se.removeListener("finish",ye),ue()}function ye(){R("onfinish"),se.removeListener("close",Xt),ue()}function ue(){R("unpipe"),me.unpipe(se)}return me.on("data",at),function Q(se,X,me){if("function"==typeof se.prependListener)return se.prependListener(X,me);se._events&&se._events[X]?t(se._events[X])?se._events[X].unshift(me):se._events[X]=[me,se._events[X]]:se.on(X,me)}(se,"error",pt),se.once("close",Xt),se.once("finish",ye),se.emit("pipe",me),ce.flowing||(R("pipe resume"),me.resume()),se},ee.prototype.unpipe=function(se){var X=this._readableState,me={hasUnpiped:!1};if(0===X.pipesCount)return this;if(1===X.pipesCount)return se&&se!==X.pipes||(se||(se=X.pipes),X.pipes=null,X.pipesCount=0,X.flowing=!1,se&&se.emit("unpipe",this,me)),this;if(!se){var ce=X.pipes,fe=X.pipesCount;X.pipes=null,X.pipesCount=0,X.flowing=!1;for(var ke=0;ke{"use strict";Qe.exports=S;var e=g(4075),t=Object.create(g(7637));function w(f,I){var d=this._transformState;d.transforming=!1;var T=d.writecb;if(!T)return this.emit("error",new Error("write callback called multiple times"));d.writechunk=null,d.writecb=null,null!=I&&this.push(I),T(f);var y=this._readableState;y.reading=!1,(y.needReadable||y.length{"use strict";var e=g(9656);function w(_){var r=this;this.next=null,this.entry=null,this.finish=function(){!function L(_,r,v){var V=_.entry;for(_.entry=null;V;){var N=V.callback;r.pendingcb--,N(v),V=V.next}r.corkedRequestsFree.next=_}(r,_)}}Qe.exports=j;var l,S=!process.browser&&["v0.10","v0.9."].indexOf(process.version.slice(0,5))>-1?setImmediate:e.nextTick;j.WritableState=W;var x=Object.create(g(7637));x.inherits=g(1993);var $,f={deprecate:g(3398)},I=g(8342),d=g(2655).Buffer,T=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},R=g(1509);function z(){}function W(_,r){l=l||g(4075);var v=r instanceof l;this.objectMode=!!(_=_||{}).objectMode,v&&(this.objectMode=this.objectMode||!!_.writableObjectMode);var V=_.highWaterMark,N=_.writableHighWaterMark;this.highWaterMark=V||0===V?V:v&&(N||0===N)?N:this.objectMode?16:16384,this.highWaterMark=Math.floor(this.highWaterMark),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1,this.decodeStrings=!(!1===_.decodeStrings),this.defaultEncoding=_.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(ze){!function Te(_,r){var v=_._writableState,V=v.sync,N=v.writecb;if(function Me(_){_.writing=!1,_.writecb=null,_.length-=_.writelen,_.writelen=0}(v),r)!function ae(_,r,v,V,N){--r.pendingcb,v?(e.nextTick(N,V),e.nextTick(C,_,r),_._writableState.errorEmitted=!0,_.emit("error",V)):(N(V),_._writableState.errorEmitted=!0,_.emit("error",V),C(_,r))}(_,v,V,r,N);else{var ne=c(v);!ne&&!v.corked&&!v.bufferProcessing&&v.bufferedRequest&&n(_,v),V?S(de,_,v,ne,N):de(_,v,ne,N)}}(r,ze)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.bufferedRequestCount=0,this.corkedRequestsFree=new w(this)}function j(_){if(l=l||g(4075),!($.call(j,this)||this instanceof l))return new j(_);this._writableState=new W(_,this),this.writable=!0,_&&("function"==typeof _.write&&(this._write=_.write),"function"==typeof _.writev&&(this._writev=_.writev),"function"==typeof _.destroy&&(this._destroy=_.destroy),"function"==typeof _.final&&(this._final=_.final)),I.call(this)}function ge(_,r,v,V,N,ne,Ee){r.writelen=V,r.writecb=Ee,r.writing=!0,r.sync=!0,v?_._writev(N,r.onwrite):_._write(N,ne,r.onwrite),r.sync=!1}function de(_,r,v,V){v||function D(_,r){0===r.length&&r.needDrain&&(r.needDrain=!1,_.emit("drain"))}(_,r),r.pendingcb--,V(),C(_,r)}function n(_,r){r.bufferProcessing=!0;var v=r.bufferedRequest;if(_._writev&&v&&v.next){var N=new Array(r.bufferedRequestCount),ne=r.corkedRequestsFree;ne.entry=v;for(var Ee=0,ze=!0;v;)N[Ee]=v,v.isBuf||(ze=!1),v=v.next,Ee+=1;N.allBuffers=ze,ge(_,r,!0,r.length,N,"",ne.finish),r.pendingcb++,r.lastBufferedRequest=null,ne.next?(r.corkedRequestsFree=ne.next,ne.next=null):r.corkedRequestsFree=new w(r),r.bufferedRequestCount=0}else{for(;v;){var qe=v.chunk;if(ge(_,r,!1,r.objectMode?1:qe.length,qe,v.encoding,v.callback),v=v.next,r.bufferedRequestCount--,r.writing)break}null===v&&(r.lastBufferedRequest=null)}r.bufferedRequest=v,r.bufferProcessing=!1}function c(_){return _.ending&&0===_.length&&null===_.bufferedRequest&&!_.finished&&!_.writing}function m(_,r){_._final(function(v){r.pendingcb--,v&&_.emit("error",v),r.prefinished=!0,_.emit("prefinish"),C(_,r)})}function C(_,r){var v=c(r);return v&&(function h(_,r){!r.prefinished&&!r.finalCalled&&("function"==typeof _._final?(r.pendingcb++,r.finalCalled=!0,e.nextTick(m,_,r)):(r.prefinished=!0,_.emit("prefinish")))}(_,r),0===r.pendingcb&&(r.finished=!0,_.emit("finish"))),v}x.inherits(j,I),W.prototype.getBuffer=function(){for(var r=this.bufferedRequest,v=[];r;)v.push(r),r=r.next;return v},function(){try{Object.defineProperty(W.prototype,"buffer",{get:f.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch{}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?($=Function.prototype[Symbol.hasInstance],Object.defineProperty(j,Symbol.hasInstance,{value:function(_){return!!$.call(this,_)||this===j&&_&&_._writableState instanceof W}})):$=function(_){return _ instanceof this},j.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},j.prototype.write=function(_,r,v){var V=this._writableState,N=!1,ne=!V.objectMode&&function F(_){return d.isBuffer(_)||_ instanceof T}(_);return ne&&!d.isBuffer(_)&&(_=function y(_){return d.from(_)}(_)),"function"==typeof r&&(v=r,r=null),ne?r="buffer":r||(r=V.defaultEncoding),"function"!=typeof v&&(v=z),V.ended?function Q(_,r){var v=new Error("write after end");_.emit("error",v),e.nextTick(r,v)}(this,v):(ne||function J(_,r,v,V){var N=!0,ne=!1;return null===v?ne=new TypeError("May not write null values to stream"):"string"!=typeof v&&void 0!==v&&!r.objectMode&&(ne=new TypeError("Invalid non-string/buffer chunk")),ne&&(_.emit("error",ne),e.nextTick(V,ne),N=!1),N}(this,V,_,v))&&(V.pendingcb++,N=function ie(_,r,v,V,N,ne){if(!v){var Ee=function ee(_,r,v){return!_.objectMode&&!1!==_.decodeStrings&&"string"==typeof r&&(r=d.from(r,v)),r}(r,V,N);V!==Ee&&(v=!0,N="buffer",V=Ee)}var ze=r.objectMode?1:V.length;r.length+=ze;var qe=r.length-1))throw new TypeError("Unknown encoding: "+r);return this._writableState.defaultEncoding=r,this},Object.defineProperty(j.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),j.prototype._write=function(_,r,v){v(new Error("_write() is not implemented"))},j.prototype._writev=null,j.prototype.end=function(_,r,v){var V=this._writableState;"function"==typeof _?(v=_,_=null,r=null):"function"==typeof r&&(v=r,r=null),null!=_&&this.write(_,r),V.corked&&(V.corked=1,this.uncork()),V.ending||function k(_,r,v){r.ending=!0,C(_,r),v&&(r.finished?e.nextTick(v):_.once("finish",v)),r.ended=!0,_.writable=!1}(this,V,v)},Object.defineProperty(j.prototype,"destroyed",{get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(_){this._writableState&&(this._writableState.destroyed=_)}}),j.prototype.destroy=R.destroy,j.prototype._undestroy=R.undestroy,j.prototype._destroy=function(_,r){this.end(),r(_)}},7809:(Qe,te,g)=>{"use strict";var t=g(2655).Buffer,w=g(5340);function S(l,x,f){l.copy(x,f)}Qe.exports=function(){function l(){(function e(l,x){if(!(l instanceof x))throw new TypeError("Cannot call a class as a function")})(this,l),this.head=null,this.tail=null,this.length=0}return l.prototype.push=function(f){var I={data:f,next:null};this.length>0?this.tail.next=I:this.head=I,this.tail=I,++this.length},l.prototype.unshift=function(f){var I={data:f,next:this.head};0===this.length&&(this.tail=I),this.head=I,++this.length},l.prototype.shift=function(){if(0!==this.length){var f=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,f}},l.prototype.clear=function(){this.head=this.tail=null,this.length=0},l.prototype.join=function(f){if(0===this.length)return"";for(var I=this.head,d=""+I.data;I=I.next;)d+=f+I.data;return d},l.prototype.concat=function(f){if(0===this.length)return t.alloc(0);for(var I=t.allocUnsafe(f>>>0),d=this.head,T=0;d;)S(d.data,I,T),T+=d.data.length,d=d.next;return I},l}(),w&&w.inspect&&w.inspect.custom&&(Qe.exports.prototype[w.inspect.custom]=function(){var l=w.inspect({length:this.length});return this.constructor.name+" "+l})},1509:(Qe,te,g)=>{"use strict";var e=g(9656);function S(l,x){l.emit("error",x)}Qe.exports={destroy:function t(l,x){var f=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(x?x(l):l&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,e.nextTick(S,this,l)):e.nextTick(S,this,l)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(l||null,function(T){!x&&T?f._writableState?f._writableState.errorEmitted||(f._writableState.errorEmitted=!0,e.nextTick(S,f,T)):e.nextTick(S,f,T):x&&x(T)}),this)},undestroy:function w(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)}}},8342:(Qe,te,g)=>{Qe.exports=g(4356).EventEmitter},2655:(Qe,te,g)=>{var e=g(3838),t=e.Buffer;function w(l,x){for(var f in l)x[f]=l[f]}function S(l,x,f){return t(l,x,f)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Qe.exports=e:(w(e,te),te.Buffer=S),w(t,S),S.from=function(l,x,f){if("number"==typeof l)throw new TypeError("Argument must not be a number");return t(l,x,f)},S.alloc=function(l,x,f){if("number"!=typeof l)throw new TypeError("Argument must be a number");var I=t(l);return void 0!==x?"string"==typeof f?I.fill(x,f):I.fill(x):I.fill(0),I},S.allocUnsafe=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return t(l)},S.allocUnsafeSlow=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return e.SlowBuffer(l)}},5942:(Qe,te,g)=>{(te=Qe.exports=g(9609)).Stream=te,te.Readable=te,te.Writable=g(7849),te.Duplex=g(4075),te.Transform=g(2909),te.PassThrough=g(8823)},6021:Qe=>{"use strict";function te(t){return t instanceof Buffer?Buffer.from(t):new t.constructor(t.buffer.slice(),t.byteOffset,t.length)}Qe.exports=function g(t){return(t=t||{}).circles?function e(t){var w=[],S=[];return t.proto?function f(I){if("object"!=typeof I||null===I)return I;if(I instanceof Date)return new Date(I);if(Array.isArray(I))return l(I,f);if(I instanceof Map)return new Map(l(Array.from(I),f));if(I instanceof Set)return new Set(l(Array.from(I),f));var d={};for(var T in w.push(I),S.push(d),I){var y=I[T];if("object"!=typeof y||null===y)d[T]=y;else if(y instanceof Date)d[T]=new Date(y);else if(y instanceof Map)d[T]=new Map(l(Array.from(y),f));else if(y instanceof Set)d[T]=new Set(l(Array.from(y),f));else if(ArrayBuffer.isView(y))d[T]=te(y);else{var F=w.indexOf(y);d[T]=-1!==F?S[F]:f(y)}}return w.pop(),S.pop(),d}:function x(I){if("object"!=typeof I||null===I)return I;if(I instanceof Date)return new Date(I);if(Array.isArray(I))return l(I,x);if(I instanceof Map)return new Map(l(Array.from(I),x));if(I instanceof Set)return new Set(l(Array.from(I),x));var d={};for(var T in w.push(I),S.push(d),I)if(!1!==Object.hasOwnProperty.call(I,T)){var y=I[T];if("object"!=typeof y||null===y)d[T]=y;else if(y instanceof Date)d[T]=new Date(y);else if(y instanceof Map)d[T]=new Map(l(Array.from(y),x));else if(y instanceof Set)d[T]=new Set(l(Array.from(y),x));else if(ArrayBuffer.isView(y))d[T]=te(y);else{var F=w.indexOf(y);d[T]=-1!==F?S[F]:x(y)}}return w.pop(),S.pop(),d};function l(I,d){for(var T=Object.keys(I),y=new Array(T.length),F=0;F{"use strict";var e=g(3838).Buffer,t=g(1993),w=g(3686),S=new Array(16),l=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13],x=[5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11],f=[11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6],I=[8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11],d=[0,1518500249,1859775393,2400959708,2840853838],T=[1352829926,1548603684,1836072691,2053994217,0];function y(){w.call(this,64),this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520}function F(Q,J){return Q<>>32-J}function R(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+(J^ee^ie)+ae+Me|0,Te)+ge|0}function z(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+(J&ee|~J&ie)+ae+Me|0,Te)+ge|0}function W(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+((J|~ee)^ie)+ae+Me|0,Te)+ge|0}function $(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+(J&ie|ee&~ie)+ae+Me|0,Te)+ge|0}function j(Q,J,ee,ie,ge,ae,Me,Te){return F(Q+(J^(ee|~ie))+ae+Me|0,Te)+ge|0}t(y,w),y.prototype._update=function(){for(var Q=S,J=0;J<16;++J)Q[J]=this._block.readInt32LE(4*J);for(var ee=0|this._a,ie=0|this._b,ge=0|this._c,ae=0|this._d,Me=0|this._e,Te=0|this._a,de=0|this._b,D=0|this._c,n=0|this._d,c=0|this._e,m=0;m<80;m+=1){var h,C;m<16?(h=R(ee,ie,ge,ae,Me,Q[l[m]],d[0],f[m]),C=j(Te,de,D,n,c,Q[x[m]],T[0],I[m])):m<32?(h=z(ee,ie,ge,ae,Me,Q[l[m]],d[1],f[m]),C=$(Te,de,D,n,c,Q[x[m]],T[1],I[m])):m<48?(h=W(ee,ie,ge,ae,Me,Q[l[m]],d[2],f[m]),C=W(Te,de,D,n,c,Q[x[m]],T[2],I[m])):m<64?(h=$(ee,ie,ge,ae,Me,Q[l[m]],d[3],f[m]),C=z(Te,de,D,n,c,Q[x[m]],T[3],I[m])):(h=j(ee,ie,ge,ae,Me,Q[l[m]],d[4],f[m]),C=R(Te,de,D,n,c,Q[x[m]],T[4],I[m])),ee=Me,Me=ae,ae=F(ge,10),ge=ie,ie=h,Te=c,c=n,n=F(D,10),D=de,de=C}var k=this._b+ge+n|0;this._b=this._c+ae+c|0,this._c=this._d+Me+Te|0,this._d=this._e+ee+de|0,this._e=this._a+ie+D|0,this._a=k},y.prototype._digest=function(){this._block[this._blockOffset++]=128,this._blockOffset>56&&(this._block.fill(0,this._blockOffset,64),this._update(),this._blockOffset=0),this._block.fill(0,this._blockOffset,56),this._block.writeUInt32LE(this._length[0],56),this._block.writeUInt32LE(this._length[1],60),this._update();var Q=e.alloc?e.alloc(20):new e(20);return Q.writeInt32LE(this._a,0),Q.writeInt32LE(this._b,4),Q.writeInt32LE(this._c,8),Q.writeInt32LE(this._d,12),Q.writeInt32LE(this._e,16),Q},Qe.exports=y},4412:(Qe,te,g)=>{"use strict";g.d(te,{t:()=>t});var e=g(1413);class t extends e.B{constructor(S){super(),this._value=S}get value(){return this.getValue()}_subscribe(S){const l=super._subscribe(S);return!l.closed&&S.next(this._value),l}getValue(){const{hasError:S,thrownError:l,_value:x}=this;if(S)throw l;return this._throwIfClosed(),x}next(S){super.next(this._value=S)}}},1985:(Qe,te,g)=>{"use strict";g.d(te,{c:()=>I});var e=g(7707),t=g(8359),w=g(3494),S=g(1203),l=g(1026),x=g(8071),f=g(9786);let I=(()=>{class F{constructor(z){z&&(this._subscribe=z)}lift(z){const W=new F;return W.source=this,W.operator=z,W}subscribe(z,W,$){const j=function y(F){return F&&F instanceof e.vU||function T(F){return F&&(0,x.T)(F.next)&&(0,x.T)(F.error)&&(0,x.T)(F.complete)}(F)&&(0,t.Uv)(F)}(z)?z:new e.Ms(z,W,$);return(0,f.Y)(()=>{const{operator:Q,source:J}=this;j.add(Q?Q.call(j,J):J?this._subscribe(j):this._trySubscribe(j))}),j}_trySubscribe(z){try{return this._subscribe(z)}catch(W){z.error(W)}}forEach(z,W){return new(W=d(W))(($,j)=>{const Q=new e.Ms({next:J=>{try{z(J)}catch(ee){j(ee),Q.unsubscribe()}},error:j,complete:$});this.subscribe(Q)})}_subscribe(z){var W;return null===(W=this.source)||void 0===W?void 0:W.subscribe(z)}[w.s](){return this}pipe(...z){return(0,S.m)(z)(this)}toPromise(z){return new(z=d(z))((W,$)=>{let j;this.subscribe(Q=>j=Q,Q=>$(Q),()=>W(j))})}}return F.create=R=>new F(R),F})();function d(F){var R;return null!==(R=F??l.$.Promise)&&void 0!==R?R:Promise}},2771:(Qe,te,g)=>{"use strict";g.d(te,{m:()=>w});var e=g(1413),t=g(6129);class w extends e.B{constructor(l=1/0,x=1/0,f=t.U){super(),this._bufferSize=l,this._windowTime=x,this._timestampProvider=f,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=x===1/0,this._bufferSize=Math.max(1,l),this._windowTime=Math.max(1,x)}next(l){const{isStopped:x,_buffer:f,_infiniteTimeWindow:I,_timestampProvider:d,_windowTime:T}=this;x||(f.push(l),!I&&f.push(d.now()+T)),this._trimBuffer(),super.next(l)}_subscribe(l){this._throwIfClosed(),this._trimBuffer();const x=this._innerSubscribe(l),{_infiniteTimeWindow:f,_buffer:I}=this,d=I.slice();for(let T=0;T{"use strict";g.d(te,{k:()=>I,B:()=>f});var e=g(1985),t=g(8359);const S=(0,g(1853).L)(d=>function(){d(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var l=g(7908),x=g(9786);let f=(()=>{class d extends e.c{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(y){const F=new I(this,this);return F.operator=y,F}_throwIfClosed(){if(this.closed)throw new S}next(y){(0,x.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(const F of this.currentObservers)F.next(y)}})}error(y){(0,x.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=y;const{observers:F}=this;for(;F.length;)F.shift().error(y)}})}complete(){(0,x.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;const{observers:y}=this;for(;y.length;)y.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var y;return(null===(y=this.observers)||void 0===y?void 0:y.length)>0}_trySubscribe(y){return this._throwIfClosed(),super._trySubscribe(y)}_subscribe(y){return this._throwIfClosed(),this._checkFinalizedStatuses(y),this._innerSubscribe(y)}_innerSubscribe(y){const{hasError:F,isStopped:R,observers:z}=this;return F||R?t.Kn:(this.currentObservers=null,z.push(y),new t.yU(()=>{this.currentObservers=null,(0,l.o)(z,y)}))}_checkFinalizedStatuses(y){const{hasError:F,thrownError:R,isStopped:z}=this;F?y.error(R):z&&y.complete()}asObservable(){const y=new e.c;return y.source=this,y}}return d.create=(T,y)=>new I(T,y),d})();class I extends f{constructor(T,y){super(),this.destination=T,this.source=y}next(T){var y,F;null===(F=null===(y=this.destination)||void 0===y?void 0:y.next)||void 0===F||F.call(y,T)}error(T){var y,F;null===(F=null===(y=this.destination)||void 0===y?void 0:y.error)||void 0===F||F.call(y,T)}complete(){var T,y;null===(y=null===(T=this.destination)||void 0===T?void 0:T.complete)||void 0===y||y.call(T)}_subscribe(T){var y,F;return null!==(F=null===(y=this.source)||void 0===y?void 0:y.subscribe(T))&&void 0!==F?F:t.Kn}}},7707:(Qe,te,g)=>{"use strict";g.d(te,{Ms:()=>$,vU:()=>F});var e=g(8071),t=g(8359),w=g(1026),S=g(5334),l=g(5343);const x=d("C",void 0,void 0);function d(ie,ge,ae){return{kind:ie,value:ge,error:ae}}var T=g(9270),y=g(9786);class F extends t.yU{constructor(ge){super(),this.isStopped=!1,ge?(this.destination=ge,(0,t.Uv)(ge)&&ge.add(this)):this.destination=ee}static create(ge,ae,Me){return new $(ge,ae,Me)}next(ge){this.isStopped?J(function I(ie){return d("N",ie,void 0)}(ge),this):this._next(ge)}error(ge){this.isStopped?J(function f(ie){return d("E",void 0,ie)}(ge),this):(this.isStopped=!0,this._error(ge))}complete(){this.isStopped?J(x,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(ge){this.destination.next(ge)}_error(ge){try{this.destination.error(ge)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}}const R=Function.prototype.bind;function z(ie,ge){return R.call(ie,ge)}class W{constructor(ge){this.partialObserver=ge}next(ge){const{partialObserver:ae}=this;if(ae.next)try{ae.next(ge)}catch(Me){j(Me)}}error(ge){const{partialObserver:ae}=this;if(ae.error)try{ae.error(ge)}catch(Me){j(Me)}else j(ge)}complete(){const{partialObserver:ge}=this;if(ge.complete)try{ge.complete()}catch(ae){j(ae)}}}class $ extends F{constructor(ge,ae,Me){let Te;if(super(),(0,e.T)(ge)||!ge)Te={next:ge??void 0,error:ae??void 0,complete:Me??void 0};else{let de;this&&w.$.useDeprecatedNextContext?(de=Object.create(ge),de.unsubscribe=()=>this.unsubscribe(),Te={next:ge.next&&z(ge.next,de),error:ge.error&&z(ge.error,de),complete:ge.complete&&z(ge.complete,de)}):Te=ge}this.destination=new W(Te)}}function j(ie){w.$.useDeprecatedSynchronousErrorHandling?(0,y.l)(ie):(0,S.m)(ie)}function J(ie,ge){const{onStoppedNotification:ae}=w.$;ae&&T.f.setTimeout(()=>ae(ie,ge))}const ee={closed:!0,next:l.l,error:function Q(ie){throw ie},complete:l.l}},8359:(Qe,te,g)=>{"use strict";g.d(te,{Kn:()=>x,yU:()=>l,Uv:()=>f});var e=g(8071);const w=(0,g(1853).L)(d=>function(y){d(this),this.message=y?`${y.length} errors occurred during unsubscription:\n${y.map((F,R)=>`${R+1}) ${F.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=y});var S=g(7908);class l{constructor(T){this.initialTeardown=T,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let T;if(!this.closed){this.closed=!0;const{_parentage:y}=this;if(y)if(this._parentage=null,Array.isArray(y))for(const z of y)z.remove(this);else y.remove(this);const{initialTeardown:F}=this;if((0,e.T)(F))try{F()}catch(z){T=z instanceof w?z.errors:[z]}const{_finalizers:R}=this;if(R){this._finalizers=null;for(const z of R)try{I(z)}catch(W){T=T??[],W instanceof w?T=[...T,...W.errors]:T.push(W)}}if(T)throw new w(T)}}add(T){var y;if(T&&T!==this)if(this.closed)I(T);else{if(T instanceof l){if(T.closed||T._hasParent(this))return;T._addParent(this)}(this._finalizers=null!==(y=this._finalizers)&&void 0!==y?y:[]).push(T)}}_hasParent(T){const{_parentage:y}=this;return y===T||Array.isArray(y)&&y.includes(T)}_addParent(T){const{_parentage:y}=this;this._parentage=Array.isArray(y)?(y.push(T),y):y?[y,T]:T}_removeParent(T){const{_parentage:y}=this;y===T?this._parentage=null:Array.isArray(y)&&(0,S.o)(y,T)}remove(T){const{_finalizers:y}=this;y&&(0,S.o)(y,T),T instanceof l&&T._removeParent(this)}}l.EMPTY=(()=>{const d=new l;return d.closed=!0,d})();const x=l.EMPTY;function f(d){return d instanceof l||d&&"closed"in d&&(0,e.T)(d.remove)&&(0,e.T)(d.add)&&(0,e.T)(d.unsubscribe)}function I(d){(0,e.T)(d)?d():d.unsubscribe()}},1026:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>e});const e={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1}},17:(Qe,te,g)=>{"use strict";g.d(te,{G:()=>x});var e=g(1985),t=g(8359),w=g(9898),S=g(4360),l=g(9974);class x extends e.c{constructor(I,d){super(),this.source=I,this.subjectFactory=d,this._subject=null,this._refCount=0,this._connection=null,(0,l.S)(I)&&(this.lift=I.lift)}_subscribe(I){return this.getSubject().subscribe(I)}getSubject(){const I=this._subject;return(!I||I.isStopped)&&(this._subject=this.subjectFactory()),this._subject}_teardown(){this._refCount=0;const{_connection:I}=this;this._subject=this._connection=null,I?.unsubscribe()}connect(){let I=this._connection;if(!I){I=this._connection=new t.yU;const d=this.getSubject();I.add(this.source.subscribe((0,S._)(d,void 0,()=>{this._teardown(),d.complete()},T=>{this._teardown(),d.error(T)},()=>this._teardown()))),I.closed&&(this._connection=null,I=t.yU.EMPTY)}return I}refCount(){return(0,w.B)()(this)}}},4572:(Qe,te,g)=>{"use strict";g.d(te,{z:()=>T});var e=g(1985),t=g(3073),w=g(2806),S=g(3669),l=g(6450),x=g(9326),f=g(8496),I=g(4360),d=g(5225);function T(...R){const z=(0,x.lI)(R),W=(0,x.ms)(R),{args:$,keys:j}=(0,t.D)(R);if(0===$.length)return(0,w.H)([],z);const Q=new e.c(function y(R,z,W=S.D){return $=>{F(z,()=>{const{length:j}=R,Q=new Array(j);let J=j,ee=j;for(let ie=0;ie{const ge=(0,w.H)(R[ie],z);let ae=!1;ge.subscribe((0,I._)($,Me=>{Q[ie]=Me,ae||(ae=!0,ee--),ee||$.next(W(Q.slice()))},()=>{--J||$.complete()}))},$)},$)}}($,z,j?J=>(0,f.e)(j,J):S.D));return W?Q.pipe((0,l.I)(W)):Q}function F(R,z,W){R?(0,d.N)(W,R,z):z()}},8793:(Qe,te,g)=>{"use strict";g.d(te,{x:()=>l});var e=g(6365),w=g(9326),S=g(2806);function l(...x){return function t(){return(0,e.U)(1)}()((0,S.H)(x,(0,w.lI)(x)))}},9030:(Qe,te,g)=>{"use strict";g.d(te,{v:()=>w});var e=g(1985),t=g(8750);function w(S){return new e.c(l=>{(0,t.Tg)(S()).subscribe(l)})}},983:(Qe,te,g)=>{"use strict";g.d(te,{w:()=>t});const t=new(g(1985).c)(l=>l.complete())},7468:(Qe,te,g)=>{"use strict";g.d(te,{p:()=>I});var e=g(1985),t=g(3073),w=g(8750),S=g(9326),l=g(4360),x=g(6450),f=g(8496);function I(...d){const T=(0,S.ms)(d),{args:y,keys:F}=(0,t.D)(d),R=new e.c(z=>{const{length:W}=y;if(!W)return void z.complete();const $=new Array(W);let j=W,Q=W;for(let J=0;J{ee||(ee=!0,Q--),$[J]=ie},()=>j--,void 0,()=>{(!j||!ee)&&(Q||z.next(F?(0,f.e)(F,$):$),z.complete())}))}});return T?R.pipe((0,x.I)(T)):R}},2806:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>ae});var e=g(8750),t=g(941),w=g(9974);function S(Me,Te=0){return(0,w.N)((de,D)=>{D.add(Me.schedule(()=>de.subscribe(D),Te))})}var f=g(1985),d=g(4761),T=g(8071),y=g(5225);function R(Me,Te){if(!Me)throw new Error("Iterable cannot be null");return new f.c(de=>{(0,y.N)(de,Te,()=>{const D=Me[Symbol.asyncIterator]();(0,y.N)(de,Te,()=>{D.next().then(n=>{n.done?de.complete():de.next(n.value)})},0,!0)})})}var z=g(5055),W=g(9858),$=g(7441),j=g(5397),Q=g(7953),J=g(591),ee=g(5196);function ae(Me,Te){return Te?function ge(Me,Te){if(null!=Me){if((0,z.l)(Me))return function l(Me,Te){return(0,e.Tg)(Me).pipe(S(Te),(0,t.Q)(Te))}(Me,Te);if((0,$.X)(Me))return function I(Me,Te){return new f.c(de=>{let D=0;return Te.schedule(function(){D===Me.length?de.complete():(de.next(Me[D++]),de.closed||this.schedule())})})}(Me,Te);if((0,W.y)(Me))return function x(Me,Te){return(0,e.Tg)(Me).pipe(S(Te),(0,t.Q)(Te))}(Me,Te);if((0,Q.T)(Me))return R(Me,Te);if((0,j.x)(Me))return function F(Me,Te){return new f.c(de=>{let D;return(0,y.N)(de,Te,()=>{D=Me[d.l](),(0,y.N)(de,Te,()=>{let n,c;try{({value:n,done:c}=D.next())}catch(m){return void de.error(m)}c?de.complete():de.next(n)},0,!0)}),()=>(0,T.T)(D?.return)&&D.return()})}(Me,Te);if((0,ee.U)(Me))return function ie(Me,Te){return R((0,ee.C)(Me),Te)}(Me,Te)}throw(0,J.L)(Me)}(Me,Te):(0,e.Tg)(Me)}},3726:(Qe,te,g)=>{"use strict";g.d(te,{R:()=>T});var e=g(8750),t=g(1985),w=g(1397),S=g(7441),l=g(8071),x=g(6450);const f=["addListener","removeListener"],I=["addEventListener","removeEventListener"],d=["on","off"];function T(W,$,j,Q){if((0,l.T)(j)&&(Q=j,j=void 0),Q)return T(W,$,j).pipe((0,x.I)(Q));const[J,ee]=function z(W){return(0,l.T)(W.addEventListener)&&(0,l.T)(W.removeEventListener)}(W)?I.map(ie=>ge=>W[ie]($,ge,j)):function F(W){return(0,l.T)(W.addListener)&&(0,l.T)(W.removeListener)}(W)?f.map(y(W,$)):function R(W){return(0,l.T)(W.on)&&(0,l.T)(W.off)}(W)?d.map(y(W,$)):[];if(!J&&(0,S.X)(W))return(0,w.Z)(ie=>T(ie,$,j))((0,e.Tg)(W));if(!J)throw new TypeError("Invalid event target");return new t.c(ie=>{const ge=(...ae)=>ie.next(1ee(ge)})}function y(W,$){return j=>Q=>W[j]($,Q)}},8750:(Qe,te,g)=>{"use strict";g.d(te,{Tg:()=>R});var e=g(1635),t=g(7441),w=g(9858),S=g(1985),l=g(5055),x=g(7953),f=g(591),I=g(5397),d=g(5196),T=g(8071),y=g(5334),F=g(3494);function R(ie){if(ie instanceof S.c)return ie;if(null!=ie){if((0,l.l)(ie))return function z(ie){return new S.c(ge=>{const ae=ie[F.s]();if((0,T.T)(ae.subscribe))return ae.subscribe(ge);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}(ie);if((0,t.X)(ie))return function W(ie){return new S.c(ge=>{for(let ae=0;ae{ie.then(ae=>{ge.closed||(ge.next(ae),ge.complete())},ae=>ge.error(ae)).then(null,y.m)})}(ie);if((0,x.T)(ie))return Q(ie);if((0,I.x)(ie))return function j(ie){return new S.c(ge=>{for(const ae of ie)if(ge.next(ae),ge.closed)return;ge.complete()})}(ie);if((0,d.U)(ie))return function J(ie){return Q((0,d.C)(ie))}(ie)}throw(0,f.L)(ie)}function Q(ie){return new S.c(ge=>{(function ee(ie,ge){var ae,Me,Te,de;return(0,e.sH)(this,void 0,void 0,function*(){try{for(ae=(0,e.xN)(ie);!(Me=yield ae.next()).done;)if(ge.next(Me.value),ge.closed)return}catch(D){Te={error:D}}finally{try{Me&&!Me.done&&(de=ae.return)&&(yield de.call(ae))}finally{if(Te)throw Te.error}}ge.complete()})})(ie,ge).catch(ae=>ge.error(ae))})}},7786:(Qe,te,g)=>{"use strict";g.d(te,{h:()=>x});var e=g(6365),t=g(8750),w=g(983),S=g(9326),l=g(2806);function x(...f){const I=(0,S.lI)(f),d=(0,S.R0)(f,1/0),T=f;return T.length?1===T.length?(0,t.Tg)(T[0]):(0,e.U)(d)((0,l.H)(T,I)):w.w}},7673:(Qe,te,g)=>{"use strict";g.d(te,{of:()=>w});var e=g(9326),t=g(2806);function w(...S){const l=(0,e.lI)(S);return(0,t.H)(S,l)}},8810:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>w});var e=g(1985),t=g(8071);function w(S,l){const x=(0,t.T)(S)?S:()=>S,f=I=>I.error(x());return new e.c(l?I=>l.schedule(f,0,I):f)}},1807:(Qe,te,g)=>{"use strict";g.d(te,{O:()=>l});var e=g(1985),t=g(3236),w=g(9470),S=g(8211);function l(x=0,f,I=t.b){let d=-1;return null!=f&&((0,w.m)(f)?I=f:d=f),new e.c(T=>{let y=(0,S.v)(x)?+x-I.now():x;y<0&&(y=0);let F=0;return I.schedule(function(){T.closed||(T.next(F++),0<=d?this.schedule(void 0,d):T.complete())},y)})}},4360:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>w,_:()=>t});var e=g(7707);function t(S,l,x,f,I){return new w(S,l,x,f,I)}class w extends e.vU{constructor(l,x,f,I,d,T){super(l),this.onFinalize=d,this.shouldUnsubscribe=T,this._next=x?function(y){try{x(y)}catch(F){l.error(F)}}:super._next,this._error=I?function(y){try{I(y)}catch(F){l.error(F)}finally{this.unsubscribe()}}:super._error,this._complete=f?function(){try{f()}catch(y){l.error(y)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var l;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){const{closed:x}=this;super.unsubscribe(),!x&&(null===(l=this.onFinalize)||void 0===l||l.call(this))}}}},3798:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>f});var e=g(3236),t=g(9974),w=g(8750),S=g(4360),x=g(1807);function f(I,d=e.E){return function l(I){return(0,t.N)((d,T)=>{let y=!1,F=null,R=null,z=!1;const W=()=>{if(R?.unsubscribe(),R=null,y){y=!1;const j=F;F=null,T.next(j)}z&&T.complete()},$=()=>{R=null,z&&T.complete()};d.subscribe((0,S._)(T,j=>{y=!0,F=j,R||(0,w.Tg)(I(j)).subscribe(R=(0,S._)(T,W,$))},()=>{z=!0,(!y||!R||R.closed)&&T.complete()}))})}(()=>(0,x.O)(I,d))}},9437:(Qe,te,g)=>{"use strict";g.d(te,{W:()=>S});var e=g(8750),t=g(4360),w=g(9974);function S(l){return(0,w.N)((x,f)=>{let T,I=null,d=!1;I=x.subscribe((0,t._)(f,void 0,void 0,y=>{T=(0,e.Tg)(l(y,S(l)(x))),I?(I.unsubscribe(),I=null,T.subscribe(f)):d=!0})),d&&(I.unsubscribe(),I=null,T.subscribe(f))})}},274:(Qe,te,g)=>{"use strict";g.d(te,{H:()=>w});var e=g(1397),t=g(8071);function w(S,l){return(0,t.T)(l)?(0,e.Z)(S,l,1):(0,e.Z)(S,1)}},152:(Qe,te,g)=>{"use strict";g.d(te,{B:()=>S});var e=g(3236),t=g(9974),w=g(4360);function S(l,x=e.E){return(0,t.N)((f,I)=>{let d=null,T=null,y=null;const F=()=>{if(d){d.unsubscribe(),d=null;const z=T;T=null,I.next(z)}};function R(){const z=y+l,W=x.now();if(W{T=z,y=x.now(),d||(d=x.schedule(R,l),I.add(d))},()=>{F(),I.complete()},void 0,()=>{T=d=null}))})}},9901:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>w});var e=g(9974),t=g(4360);function w(S){return(0,e.N)((l,x)=>{let f=!1;l.subscribe((0,t._)(x,I=>{f=!0,x.next(I)},()=>{f||x.next(S),x.complete()}))})}},5335:(Qe,te,g)=>{"use strict";g.d(te,{c:()=>T});var e=g(3236),t=g(8793),w=g(6697),S=g(3557),l=g(3703),x=g(1397),f=g(8750);function I(y,F){return F?R=>(0,t.x)(F.pipe((0,w.s)(1),(0,S.w)()),R.pipe(I(y))):(0,x.Z)((R,z)=>(0,f.Tg)(y(R,z)).pipe((0,w.s)(1),(0,l.u)(R)))}var d=g(1807);function T(y,F=e.E){const R=(0,d.O)(y,F);return I(()=>R)}},3294:(Qe,te,g)=>{"use strict";g.d(te,{F:()=>S});var e=g(3669),t=g(9974),w=g(4360);function S(x,f=e.D){return x=x??l,(0,t.N)((I,d)=>{let T,y=!0;I.subscribe((0,w._)(d,F=>{const R=f(F);(y||!x(T,R))&&(y=!1,T=R,d.next(F))}))})}function l(x,f){return x===f}},5964:(Qe,te,g)=>{"use strict";g.d(te,{p:()=>w});var e=g(9974),t=g(4360);function w(S,l){return(0,e.N)((x,f)=>{let I=0;x.subscribe((0,t._)(f,d=>S.call(l,d,I++)&&f.next(d)))})}},980:(Qe,te,g)=>{"use strict";g.d(te,{j:()=>t});var e=g(9974);function t(w){return(0,e.N)((S,l)=>{try{S.subscribe(l)}finally{l.add(w)}})}},1594:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>f});var e=g(9350),t=g(5964),w=g(6697),S=g(9901),l=g(3774),x=g(3669);function f(I,d){const T=arguments.length>=2;return y=>y.pipe(I?(0,t.p)((F,R)=>I(F,R,y)):x.D,(0,w.s)(1),T?(0,S.U)(d):(0,l.v)(()=>new e.G))}},3557:(Qe,te,g)=>{"use strict";g.d(te,{w:()=>S});var e=g(9974),t=g(4360),w=g(5343);function S(){return(0,e.N)((l,x)=>{l.subscribe((0,t._)(x,w.l))})}},6354:(Qe,te,g)=>{"use strict";g.d(te,{T:()=>w});var e=g(9974),t=g(4360);function w(S,l){return(0,e.N)((x,f)=>{let I=0;x.subscribe((0,t._)(f,d=>{f.next(S.call(l,d,I++))}))})}},3703:(Qe,te,g)=>{"use strict";g.d(te,{u:()=>t});var e=g(6354);function t(w){return(0,e.T)(()=>w)}},6365:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>w});var e=g(1397),t=g(3669);function w(S=1/0){return(0,e.Z)(t.D,S)}},1397:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>I});var e=g(6354),t=g(8750),w=g(9974),S=g(5225),l=g(4360),f=g(8071);function I(d,T,y=1/0){return(0,f.T)(T)?I((F,R)=>(0,e.T)((z,W)=>T(F,z,R,W))((0,t.Tg)(d(F,R))),y):("number"==typeof T&&(y=T),(0,w.N)((F,R)=>function x(d,T,y,F,R,z,W,$){const j=[];let Q=0,J=0,ee=!1;const ie=()=>{ee&&!j.length&&!Q&&T.complete()},ge=Me=>Q{z&&T.next(Me),Q++;let Te=!1;(0,t.Tg)(y(Me,J++)).subscribe((0,l._)(T,de=>{R?.(de),z?ge(de):T.next(de)},()=>{Te=!0},void 0,()=>{if(Te)try{for(Q--;j.length&&Qae(de)):ae(de)}ie()}catch(de){T.error(de)}}))};return d.subscribe((0,l._)(T,ge,()=>{ee=!0,ie()})),()=>{$?.()}}(F,R,d,y)))}},941:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>S});var e=g(5225),t=g(9974),w=g(4360);function S(l,x=0){return(0,t.N)((f,I)=>{f.subscribe((0,w._)(I,d=>(0,e.N)(I,l,()=>I.next(d),x),()=>(0,e.N)(I,l,()=>I.complete(),x),d=>(0,e.N)(I,l,()=>I.error(d),x)))})}},9898:(Qe,te,g)=>{"use strict";g.d(te,{B:()=>w});var e=g(9974),t=g(4360);function w(){return(0,e.N)((S,l)=>{let x=null;S._refCount++;const f=(0,t._)(l,void 0,void 0,void 0,()=>{if(!S||S._refCount<=0||0<--S._refCount)return void(x=null);const I=S._connection,d=x;x=null,I&&(!d||I===d)&&I.unsubscribe(),l.unsubscribe()});S.subscribe(f),f.closed||(x=S.connect())})}},2816:(Qe,te,g)=>{"use strict";g.d(te,{S:()=>S});var e=g(9974),t=g(4360);function S(l,x){return(0,e.N)(function w(l,x,f,I,d){return(T,y)=>{let F=f,R=x,z=0;T.subscribe((0,t._)(y,W=>{const $=z++;R=F?l(R,W,$):(F=!0,W),I&&y.next(R)},d&&(()=>{F&&y.next(R),y.complete()})))}}(l,x,arguments.length>=2,!0))}},7647:(Qe,te,g)=>{"use strict";g.d(te,{u:()=>l});var e=g(8750),t=g(1413),w=g(7707),S=g(9974);function l(f={}){const{connector:I=(()=>new t.B),resetOnError:d=!0,resetOnComplete:T=!0,resetOnRefCountZero:y=!0}=f;return F=>{let R,z,W,$=0,j=!1,Q=!1;const J=()=>{z?.unsubscribe(),z=void 0},ee=()=>{J(),R=W=void 0,j=Q=!1},ie=()=>{const ge=R;ee(),ge?.unsubscribe()};return(0,S.N)((ge,ae)=>{$++,!Q&&!j&&J();const Me=W=W??I();ae.add(()=>{$--,0===$&&!Q&&!j&&(z=x(ie,y))}),Me.subscribe(ae),!R&&$>0&&(R=new w.Ms({next:Te=>Me.next(Te),error:Te=>{Q=!0,J(),z=x(ee,d,Te),Me.error(Te)},complete:()=>{j=!0,J(),z=x(ee,T),Me.complete()}}),(0,e.Tg)(ge).subscribe(R))})(F)}}function x(f,I,...d){if(!0===I)return void f();if(!1===I)return;const T=new w.Ms({next:()=>{T.unsubscribe(),f()}});return(0,e.Tg)(I(...d)).subscribe(T)}},5245:(Qe,te,g)=>{"use strict";g.d(te,{i:()=>t});var e=g(5964);function t(w){return(0,e.p)((S,l)=>w<=l)}},9172:(Qe,te,g)=>{"use strict";g.d(te,{Z:()=>S});var e=g(8793),t=g(9326),w=g(9974);function S(...l){const x=(0,t.lI)(l);return(0,w.N)((f,I)=>{(x?(0,e.x)(l,f,x):(0,e.x)(l,f)).subscribe(I)})}},5558:(Qe,te,g)=>{"use strict";g.d(te,{n:()=>S});var e=g(8750),t=g(9974),w=g(4360);function S(l,x){return(0,t.N)((f,I)=>{let d=null,T=0,y=!1;const F=()=>y&&!d&&I.complete();f.subscribe((0,w._)(I,R=>{d?.unsubscribe();let z=0;const W=T++;(0,e.Tg)(l(R,W)).subscribe(d=(0,w._)(I,$=>I.next(x?x(R,$,W,z++):$),()=>{d=null,F()}))},()=>{y=!0,F()}))})}},6697:(Qe,te,g)=>{"use strict";g.d(te,{s:()=>S});var e=g(983),t=g(9974),w=g(4360);function S(l){return l<=0?()=>e.w:(0,t.N)((x,f)=>{let I=0;x.subscribe((0,w._)(f,d=>{++I<=l&&(f.next(d),l<=I&&f.complete())}))})}},6977:(Qe,te,g)=>{"use strict";g.d(te,{Q:()=>l});var e=g(9974),t=g(4360),w=g(8750),S=g(5343);function l(x){return(0,e.N)((f,I)=>{(0,w.Tg)(x).subscribe((0,t._)(I,()=>I.complete(),S.l)),!I.closed&&f.subscribe(I)})}},8141:(Qe,te,g)=>{"use strict";g.d(te,{M:()=>l});var e=g(8071),t=g(9974),w=g(4360),S=g(3669);function l(x,f,I){const d=(0,e.T)(x)||f||I?{next:x,error:f,complete:I}:x;return d?(0,t.N)((T,y)=>{var F;null===(F=d.subscribe)||void 0===F||F.call(d);let R=!0;T.subscribe((0,w._)(y,z=>{var W;null===(W=d.next)||void 0===W||W.call(d,z),y.next(z)},()=>{var z;R=!1,null===(z=d.complete)||void 0===z||z.call(d),y.complete()},z=>{var W;R=!1,null===(W=d.error)||void 0===W||W.call(d,z),y.error(z)},()=>{var z,W;R&&(null===(z=d.unsubscribe)||void 0===z||z.call(d)),null===(W=d.finalize)||void 0===W||W.call(d)}))}):S.D}},3774:(Qe,te,g)=>{"use strict";g.d(te,{v:()=>S});var e=g(9350),t=g(9974),w=g(4360);function S(x=l){return(0,t.N)((f,I)=>{let d=!1;f.subscribe((0,w._)(I,T=>{d=!0,I.next(T)},()=>d?I.complete():I.error(x())))})}function l(){return new e.G}},3993:(Qe,te,g)=>{"use strict";g.d(te,{E:()=>f});var e=g(9974),t=g(4360),w=g(8750),S=g(3669),l=g(5343),x=g(9326);function f(...I){const d=(0,x.ms)(I);return(0,e.N)((T,y)=>{const F=I.length,R=new Array(F);let z=I.map(()=>!1),W=!1;for(let $=0;${R[$]=j,!W&&!z[$]&&(z[$]=!0,(W=z.every(S.D))&&(z=null))},l.l));T.subscribe((0,t._)(y,$=>{if(W){const j=[$,...R];y.next(d?d(...j):j)}}))})}},6780:(Qe,te,g)=>{"use strict";g.d(te,{R:()=>l});var e=g(8359);class t extends e.yU{constructor(f,I){super()}schedule(f,I=0){return this}}const w={setInterval(x,f,...I){const{delegate:d}=w;return d?.setInterval?d.setInterval(x,f,...I):setInterval(x,f,...I)},clearInterval(x){const{delegate:f}=w;return(f?.clearInterval||clearInterval)(x)},delegate:void 0};var S=g(7908);class l extends t{constructor(f,I){super(f,I),this.scheduler=f,this.work=I,this.pending=!1}schedule(f,I=0){var d;if(this.closed)return this;this.state=f;const T=this.id,y=this.scheduler;return null!=T&&(this.id=this.recycleAsyncId(y,T,I)),this.pending=!0,this.delay=I,this.id=null!==(d=this.id)&&void 0!==d?d:this.requestAsyncId(y,this.id,I),this}requestAsyncId(f,I,d=0){return w.setInterval(f.flush.bind(f,this),d)}recycleAsyncId(f,I,d=0){if(null!=d&&this.delay===d&&!1===this.pending)return I;null!=I&&w.clearInterval(I)}execute(f,I){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;const d=this._execute(f,I);if(d)return d;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(f,I){let T,d=!1;try{this.work(f)}catch(y){d=!0,T=y||new Error("Scheduled action threw falsy error")}if(d)return this.unsubscribe(),T}unsubscribe(){if(!this.closed){const{id:f,scheduler:I}=this,{actions:d}=I;this.work=this.state=this.scheduler=null,this.pending=!1,(0,S.o)(d,this),null!=f&&(this.id=this.recycleAsyncId(I,f,null)),this.delay=null,super.unsubscribe()}}}},9687:(Qe,te,g)=>{"use strict";g.d(te,{q:()=>w});var e=g(6129);class t{constructor(l,x=t.now){this.schedulerActionCtor=l,this.now=x}schedule(l,x=0,f){return new this.schedulerActionCtor(this,l).schedule(f,x)}}t.now=e.U.now;class w extends t{constructor(l,x=t.now){super(l,x),this.actions=[],this._active=!1}flush(l){const{actions:x}=this;if(this._active)return void x.push(l);let f;this._active=!0;do{if(f=l.execute(l.state,l.delay))break}while(l=x.shift());if(this._active=!1,f){for(;l=x.shift();)l.unsubscribe();throw f}}}},5007:(Qe,te,g)=>{"use strict";g.d(te,{$:()=>z});var e=g(6780);let w,t=1;const S={};function l($){return $ in S&&(delete S[$],!0)}const x={setImmediate($){const j=t++;return S[j]=!0,w||(w=Promise.resolve()),w.then(()=>l(j)&&$()),j},clearImmediate($){l($)}},{setImmediate:I,clearImmediate:d}=x,T={setImmediate(...$){const{delegate:j}=T;return(j?.setImmediate||I)(...$)},clearImmediate($){const{delegate:j}=T;return(j?.clearImmediate||d)($)},delegate:void 0};var F=g(9687);const z=new class R extends F.q{flush(j){this._active=!0;const Q=this._scheduled;this._scheduled=void 0;const{actions:J}=this;let ee;j=j||J.shift();do{if(ee=j.execute(j.state,j.delay))break}while((j=J[0])&&j.id===Q&&J.shift());if(this._active=!1,ee){for(;(j=J[0])&&j.id===Q&&J.shift();)j.unsubscribe();throw ee}}}(class y extends e.R{constructor(j,Q){super(j,Q),this.scheduler=j,this.work=Q}requestAsyncId(j,Q,J=0){return null!==J&&J>0?super.requestAsyncId(j,Q,J):(j.actions.push(this),j._scheduled||(j._scheduled=T.setImmediate(j.flush.bind(j,void 0))))}recycleAsyncId(j,Q,J=0){var ee;if(null!=J?J>0:this.delay>0)return super.recycleAsyncId(j,Q,J);const{actions:ie}=j;null!=Q&&(null===(ee=ie[ie.length-1])||void 0===ee?void 0:ee.id)!==Q&&(T.clearImmediate(Q),j._scheduled===Q&&(j._scheduled=void 0))}})},3236:(Qe,te,g)=>{"use strict";g.d(te,{E:()=>w,b:()=>S});var e=g(6780);const w=new(g(9687).q)(e.R),S=w},6129:(Qe,te,g)=>{"use strict";g.d(te,{U:()=>e});const e={now:()=>(e.delegate||Date).now(),delegate:void 0}},7242:(Qe,te,g)=>{"use strict";g.d(te,{T:()=>l});var e=g(6780),w=g(9687);const l=new class S extends w.q{}(class t extends e.R{constructor(I,d){super(I,d),this.scheduler=I,this.work=d}schedule(I,d=0){return d>0?super.schedule(I,d):(this.delay=d,this.state=I,this.scheduler.flush(this),this)}execute(I,d){return d>0||this.closed?super.execute(I,d):this._execute(I,d)}requestAsyncId(I,d,T=0){return null!=T&&T>0||null==T&&this.delay>0?super.requestAsyncId(I,d,T):(I.flush(this),0)}})},9270:(Qe,te,g)=>{"use strict";g.d(te,{f:()=>e});const e={setTimeout(t,w,...S){const{delegate:l}=e;return l?.setTimeout?l.setTimeout(t,w,...S):setTimeout(t,w,...S)},clearTimeout(t){const{delegate:w}=e;return(w?.clearTimeout||clearTimeout)(t)},delegate:void 0}},4761:(Qe,te,g)=>{"use strict";g.d(te,{l:()=>t});const t=function e(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}()},3494:(Qe,te,g)=>{"use strict";g.d(te,{s:()=>e});const e="function"==typeof Symbol&&Symbol.observable||"@@observable"},9350:(Qe,te,g)=>{"use strict";g.d(te,{G:()=>t});const t=(0,g(1853).L)(w=>function(){w(this),this.name="EmptyError",this.message="no elements in sequence"})},9326:(Qe,te,g)=>{"use strict";g.d(te,{R0:()=>x,lI:()=>l,ms:()=>S});var e=g(8071),t=g(9470);function w(f){return f[f.length-1]}function S(f){return(0,e.T)(w(f))?f.pop():void 0}function l(f){return(0,t.m)(w(f))?f.pop():void 0}function x(f,I){return"number"==typeof w(f)?f.pop():I}},3073:(Qe,te,g)=>{"use strict";g.d(te,{D:()=>l});const{isArray:e}=Array,{getPrototypeOf:t,prototype:w,keys:S}=Object;function l(f){if(1===f.length){const I=f[0];if(e(I))return{args:I,keys:null};if(function x(f){return f&&"object"==typeof f&&t(f)===w}(I)){const d=S(I);return{args:d.map(T=>I[T]),keys:d}}}return{args:f,keys:null}}},7908:(Qe,te,g)=>{"use strict";function e(t,w){if(t){const S=t.indexOf(w);0<=S&&t.splice(S,1)}}g.d(te,{o:()=>e})},1853:(Qe,te,g)=>{"use strict";function e(t){const S=t(l=>{Error.call(l),l.stack=(new Error).stack});return S.prototype=Object.create(Error.prototype),S.prototype.constructor=S,S}g.d(te,{L:()=>e})},8496:(Qe,te,g)=>{"use strict";function e(t,w){return t.reduce((S,l,x)=>(S[l]=w[x],S),{})}g.d(te,{e:()=>e})},9786:(Qe,te,g)=>{"use strict";g.d(te,{Y:()=>w,l:()=>S});var e=g(1026);let t=null;function w(l){if(e.$.useDeprecatedSynchronousErrorHandling){const x=!t;if(x&&(t={errorThrown:!1,error:null}),l(),x){const{errorThrown:f,error:I}=t;if(t=null,f)throw I}}else l()}function S(l){e.$.useDeprecatedSynchronousErrorHandling&&t&&(t.errorThrown=!0,t.error=l)}},5225:(Qe,te,g)=>{"use strict";function e(t,w,S,l=0,x=!1){const f=w.schedule(function(){S(),x?t.add(this.schedule(null,l)):this.unsubscribe()},l);if(t.add(f),!x)return f}g.d(te,{N:()=>e})},3669:(Qe,te,g)=>{"use strict";function e(t){return t}g.d(te,{D:()=>e})},7441:(Qe,te,g)=>{"use strict";g.d(te,{X:()=>e});const e=t=>t&&"number"==typeof t.length&&"function"!=typeof t},7953:(Qe,te,g)=>{"use strict";g.d(te,{T:()=>t});var e=g(8071);function t(w){return Symbol.asyncIterator&&(0,e.T)(w?.[Symbol.asyncIterator])}},8211:(Qe,te,g)=>{"use strict";function e(t){return t instanceof Date&&!isNaN(t)}g.d(te,{v:()=>e})},8071:(Qe,te,g)=>{"use strict";function e(t){return"function"==typeof t}g.d(te,{T:()=>e})},5055:(Qe,te,g)=>{"use strict";g.d(te,{l:()=>w});var e=g(3494),t=g(8071);function w(S){return(0,t.T)(S[e.s])}},5397:(Qe,te,g)=>{"use strict";g.d(te,{x:()=>w});var e=g(4761),t=g(8071);function w(S){return(0,t.T)(S?.[e.l])}},4402:(Qe,te,g)=>{"use strict";g.d(te,{A:()=>w});var e=g(1985),t=g(8071);function w(S){return!!S&&(S instanceof e.c||(0,t.T)(S.lift)&&(0,t.T)(S.subscribe))}},9858:(Qe,te,g)=>{"use strict";g.d(te,{y:()=>t});var e=g(8071);function t(w){return(0,e.T)(w?.then)}},5196:(Qe,te,g)=>{"use strict";g.d(te,{C:()=>w,U:()=>S});var e=g(1635),t=g(8071);function w(l){return(0,e.AQ)(this,arguments,function*(){const f=l.getReader();try{for(;;){const{value:I,done:d}=yield(0,e.N3)(f.read());if(d)return yield(0,e.N3)(void 0);yield yield(0,e.N3)(I)}}finally{f.releaseLock()}})}function S(l){return(0,t.T)(l?.getReader)}},9470:(Qe,te,g)=>{"use strict";g.d(te,{m:()=>t});var e=g(8071);function t(w){return w&&(0,e.T)(w.schedule)}},9974:(Qe,te,g)=>{"use strict";g.d(te,{N:()=>w,S:()=>t});var e=g(8071);function t(S){return(0,e.T)(S?.lift)}function w(S){return l=>{if(t(l))return l.lift(function(x){try{return S(x,this)}catch(f){this.error(f)}});throw new TypeError("Unable to lift unknown Observable type")}}},6450:(Qe,te,g)=>{"use strict";g.d(te,{I:()=>S});var e=g(6354);const{isArray:t}=Array;function S(l){return(0,e.T)(x=>function w(l,x){return t(x)?l(...x):l(x)}(l,x))}},5343:(Qe,te,g)=>{"use strict";function e(){}g.d(te,{l:()=>e})},1203:(Qe,te,g)=>{"use strict";g.d(te,{F:()=>t,m:()=>w});var e=g(3669);function t(...S){return w(S)}function w(S){return 0===S.length?e.D:1===S.length?S[0]:function(x){return S.reduce((f,I)=>I(f),x)}}},5334:(Qe,te,g)=>{"use strict";g.d(te,{m:()=>w});var e=g(1026),t=g(9270);function w(S){t.f.setTimeout(()=>{const{onUnhandledError:l}=e.$;if(!l)throw S;l(S)})}},591:(Qe,te,g)=>{"use strict";function e(t){return new TypeError(`You provided ${null!==t&&"object"==typeof t?"an invalid object":`'${t}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}g.d(te,{L:()=>e})},7054:(Qe,te,g)=>{var e=g(3838),t=e.Buffer;function w(l,x){for(var f in l)x[f]=l[f]}function S(l,x,f){return t(l,x,f)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Qe.exports=e:(w(e,te),te.Buffer=S),S.prototype=Object.create(t.prototype),w(t,S),S.from=function(l,x,f){if("number"==typeof l)throw new TypeError("Argument must not be a number");return t(l,x,f)},S.alloc=function(l,x,f){if("number"!=typeof l)throw new TypeError("Argument must be a number");var I=t(l);return void 0!==x?"string"==typeof f?I.fill(x,f):I.fill(x):I.fill(0),I},S.allocUnsafe=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return t(l)},S.allocUnsafeSlow=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return e.SlowBuffer(l)}},463:(Qe,te,g)=>{var e=g(7054).Buffer;function t(w,S){this._block=e.alloc(w),this._finalSize=S,this._blockSize=w,this._len=0}t.prototype.update=function(w,S){"string"==typeof w&&(w=e.from(w,S=S||"utf8"));for(var l=this._block,x=this._blockSize,f=w.length,I=this._len,d=0;d=this._finalSize&&(this._update(this._block),this._block.fill(0));var l=8*this._len;if(l<=4294967295)this._block.writeUInt32BE(l,this._blockSize-4);else{var x=(4294967295&l)>>>0;this._block.writeUInt32BE((l-x)/4294967296,this._blockSize-8),this._block.writeUInt32BE(x,this._blockSize-4)}this._update(this._block);var I=this._hash();return w?I.toString(w):I},t.prototype._update=function(){throw new Error("_update must be implemented by subclass")},Qe.exports=t},5443:(Qe,te,g)=>{var e=Qe.exports=function(w){w=w.toLowerCase();var S=e[w];if(!S)throw new Error(w+" is not supported (we accept pull requests)");return new S};e.sha=g(8585),e.sha1=g(1270),e.sha224=g(2709),e.sha256=g(2148),e.sha384=g(1856),e.sha512=g(3121)},8585:(Qe,te,g)=>{var e=g(1993),t=g(463),w=g(7054).Buffer,S=[1518500249,1859775393,-1894007588,-899497514],l=new Array(80);function x(){this.init(),this._w=l,t.call(this,64,56)}function f(T){return T<<5|T>>>27}function I(T){return T<<30|T>>>2}function d(T,y,F,R){return 0===T?y&F|~y&R:2===T?y&F|y&R|F&R:y^F^R}e(x,t),x.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},x.prototype._update=function(T){for(var y=this._w,F=0|this._a,R=0|this._b,z=0|this._c,W=0|this._d,$=0|this._e,j=0;j<16;++j)y[j]=T.readInt32BE(4*j);for(;j<80;++j)y[j]=y[j-3]^y[j-8]^y[j-14]^y[j-16];for(var Q=0;Q<80;++Q){var J=~~(Q/20),ee=f(F)+d(J,R,z,W)+$+y[Q]+S[J]|0;$=W,W=z,z=I(R),R=F,F=ee}this._a=F+this._a|0,this._b=R+this._b|0,this._c=z+this._c|0,this._d=W+this._d|0,this._e=$+this._e|0},x.prototype._hash=function(){var T=w.allocUnsafe(20);return T.writeInt32BE(0|this._a,0),T.writeInt32BE(0|this._b,4),T.writeInt32BE(0|this._c,8),T.writeInt32BE(0|this._d,12),T.writeInt32BE(0|this._e,16),T},Qe.exports=x},1270:(Qe,te,g)=>{var e=g(1993),t=g(463),w=g(7054).Buffer,S=[1518500249,1859775393,-1894007588,-899497514],l=new Array(80);function x(){this.init(),this._w=l,t.call(this,64,56)}function f(y){return y<<1|y>>>31}function I(y){return y<<5|y>>>27}function d(y){return y<<30|y>>>2}function T(y,F,R,z){return 0===y?F&R|~F&z:2===y?F&R|F&z|R&z:F^R^z}e(x,t),x.prototype.init=function(){return this._a=1732584193,this._b=4023233417,this._c=2562383102,this._d=271733878,this._e=3285377520,this},x.prototype._update=function(y){for(var F=this._w,R=0|this._a,z=0|this._b,W=0|this._c,$=0|this._d,j=0|this._e,Q=0;Q<16;++Q)F[Q]=y.readInt32BE(4*Q);for(;Q<80;++Q)F[Q]=f(F[Q-3]^F[Q-8]^F[Q-14]^F[Q-16]);for(var J=0;J<80;++J){var ee=~~(J/20),ie=I(R)+T(ee,z,W,$)+j+F[J]+S[ee]|0;j=$,$=W,W=d(z),z=R,R=ie}this._a=R+this._a|0,this._b=z+this._b|0,this._c=W+this._c|0,this._d=$+this._d|0,this._e=j+this._e|0},x.prototype._hash=function(){var y=w.allocUnsafe(20);return y.writeInt32BE(0|this._a,0),y.writeInt32BE(0|this._b,4),y.writeInt32BE(0|this._c,8),y.writeInt32BE(0|this._d,12),y.writeInt32BE(0|this._e,16),y},Qe.exports=x},2709:(Qe,te,g)=>{var e=g(1993),t=g(2148),w=g(463),S=g(7054).Buffer,l=new Array(64);function x(){this.init(),this._w=l,w.call(this,64,56)}e(x,t),x.prototype.init=function(){return this._a=3238371032,this._b=914150663,this._c=812702999,this._d=4144912697,this._e=4290775857,this._f=1750603025,this._g=1694076839,this._h=3204075428,this},x.prototype._hash=function(){var f=S.allocUnsafe(28);return f.writeInt32BE(this._a,0),f.writeInt32BE(this._b,4),f.writeInt32BE(this._c,8),f.writeInt32BE(this._d,12),f.writeInt32BE(this._e,16),f.writeInt32BE(this._f,20),f.writeInt32BE(this._g,24),f},Qe.exports=x},2148:(Qe,te,g)=>{var e=g(1993),t=g(463),w=g(7054).Buffer,S=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],l=new Array(64);function x(){this.init(),this._w=l,t.call(this,64,56)}function f(R,z,W){return W^R&(z^W)}function I(R,z,W){return R&z|W&(R|z)}function d(R){return(R>>>2|R<<30)^(R>>>13|R<<19)^(R>>>22|R<<10)}function T(R){return(R>>>6|R<<26)^(R>>>11|R<<21)^(R>>>25|R<<7)}function y(R){return(R>>>7|R<<25)^(R>>>18|R<<14)^R>>>3}function F(R){return(R>>>17|R<<15)^(R>>>19|R<<13)^R>>>10}e(x,t),x.prototype.init=function(){return this._a=1779033703,this._b=3144134277,this._c=1013904242,this._d=2773480762,this._e=1359893119,this._f=2600822924,this._g=528734635,this._h=1541459225,this},x.prototype._update=function(R){for(var z=this._w,W=0|this._a,$=0|this._b,j=0|this._c,Q=0|this._d,J=0|this._e,ee=0|this._f,ie=0|this._g,ge=0|this._h,ae=0;ae<16;++ae)z[ae]=R.readInt32BE(4*ae);for(;ae<64;++ae)z[ae]=F(z[ae-2])+z[ae-7]+y(z[ae-15])+z[ae-16]|0;for(var Me=0;Me<64;++Me){var Te=ge+T(J)+f(J,ee,ie)+S[Me]+z[Me]|0,de=d(W)+I(W,$,j)|0;ge=ie,ie=ee,ee=J,J=Q+Te|0,Q=j,j=$,$=W,W=Te+de|0}this._a=W+this._a|0,this._b=$+this._b|0,this._c=j+this._c|0,this._d=Q+this._d|0,this._e=J+this._e|0,this._f=ee+this._f|0,this._g=ie+this._g|0,this._h=ge+this._h|0},x.prototype._hash=function(){var R=w.allocUnsafe(32);return R.writeInt32BE(this._a,0),R.writeInt32BE(this._b,4),R.writeInt32BE(this._c,8),R.writeInt32BE(this._d,12),R.writeInt32BE(this._e,16),R.writeInt32BE(this._f,20),R.writeInt32BE(this._g,24),R.writeInt32BE(this._h,28),R},Qe.exports=x},1856:(Qe,te,g)=>{var e=g(1993),t=g(3121),w=g(463),S=g(7054).Buffer,l=new Array(160);function x(){this.init(),this._w=l,w.call(this,128,112)}e(x,t),x.prototype.init=function(){return this._ah=3418070365,this._bh=1654270250,this._ch=2438529370,this._dh=355462360,this._eh=1731405415,this._fh=2394180231,this._gh=3675008525,this._hh=1203062813,this._al=3238371032,this._bl=914150663,this._cl=812702999,this._dl=4144912697,this._el=4290775857,this._fl=1750603025,this._gl=1694076839,this._hl=3204075428,this},x.prototype._hash=function(){var f=S.allocUnsafe(48);function I(d,T,y){f.writeInt32BE(d,y),f.writeInt32BE(T,y+4)}return I(this._ah,this._al,0),I(this._bh,this._bl,8),I(this._ch,this._cl,16),I(this._dh,this._dl,24),I(this._eh,this._el,32),I(this._fh,this._fl,40),f},Qe.exports=x},3121:(Qe,te,g)=>{var e=g(1993),t=g(463),w=g(7054).Buffer,S=[1116352408,3609767458,1899447441,602891725,3049323471,3964484399,3921009573,2173295548,961987163,4081628472,1508970993,3053834265,2453635748,2937671579,2870763221,3664609560,3624381080,2734883394,310598401,1164996542,607225278,1323610764,1426881987,3590304994,1925078388,4068182383,2162078206,991336113,2614888103,633803317,3248222580,3479774868,3835390401,2666613458,4022224774,944711139,264347078,2341262773,604807628,2007800933,770255983,1495990901,1249150122,1856431235,1555081692,3175218132,1996064986,2198950837,2554220882,3999719339,2821834349,766784016,2952996808,2566594879,3210313671,3203337956,3336571891,1034457026,3584528711,2466948901,113926993,3758326383,338241895,168717936,666307205,1188179964,773529912,1546045734,1294757372,1522805485,1396182291,2643833823,1695183700,2343527390,1986661051,1014477480,2177026350,1206759142,2456956037,344077627,2730485921,1290863460,2820302411,3158454273,3259730800,3505952657,3345764771,106217008,3516065817,3606008344,3600352804,1432725776,4094571909,1467031594,275423344,851169720,430227734,3100823752,506948616,1363258195,659060556,3750685593,883997877,3785050280,958139571,3318307427,1322822218,3812723403,1537002063,2003034995,1747873779,3602036899,1955562222,1575990012,2024104815,1125592928,2227730452,2716904306,2361852424,442776044,2428436474,593698344,2756734187,3733110249,3204031479,2999351573,3329325298,3815920427,3391569614,3928383900,3515267271,566280711,3940187606,3454069534,4118630271,4000239992,116418474,1914138554,174292421,2731055270,289380356,3203993006,460393269,320620315,685471733,587496836,852142971,1086792851,1017036298,365543100,1126000580,2618297676,1288033470,3409855158,1501505948,4234509866,1607167915,987167468,1816402316,1246189591],l=new Array(160);function x(){this.init(),this._w=l,t.call(this,128,112)}function f($,j,Q){return Q^$&(j^Q)}function I($,j,Q){return $&j|Q&($|j)}function d($,j){return($>>>28|j<<4)^(j>>>2|$<<30)^(j>>>7|$<<25)}function T($,j){return($>>>14|j<<18)^($>>>18|j<<14)^(j>>>9|$<<23)}function y($,j){return($>>>1|j<<31)^($>>>8|j<<24)^$>>>7}function F($,j){return($>>>1|j<<31)^($>>>8|j<<24)^($>>>7|j<<25)}function R($,j){return($>>>19|j<<13)^(j>>>29|$<<3)^$>>>6}function z($,j){return($>>>19|j<<13)^(j>>>29|$<<3)^($>>>6|j<<26)}function W($,j){return $>>>0>>0?1:0}e(x,t),x.prototype.init=function(){return this._ah=1779033703,this._bh=3144134277,this._ch=1013904242,this._dh=2773480762,this._eh=1359893119,this._fh=2600822924,this._gh=528734635,this._hh=1541459225,this._al=4089235720,this._bl=2227873595,this._cl=4271175723,this._dl=1595750129,this._el=2917565137,this._fl=725511199,this._gl=4215389547,this._hl=327033209,this},x.prototype._update=function($){for(var j=this._w,Q=0|this._ah,J=0|this._bh,ee=0|this._ch,ie=0|this._dh,ge=0|this._eh,ae=0|this._fh,Me=0|this._gh,Te=0|this._hh,de=0|this._al,D=0|this._bl,n=0|this._cl,c=0|this._dl,m=0|this._el,h=0|this._fl,C=0|this._gl,k=0|this._hl,L=0;L<32;L+=2)j[L]=$.readInt32BE(4*L),j[L+1]=$.readInt32BE(4*L+4);for(;L<160;L+=2){var _=j[L-30],r=j[L-30+1],v=y(_,r),V=F(r,_),N=R(_=j[L-4],r=j[L-4+1]),ne=z(r,_),qe=j[L-32],Ke=j[L-32+1],se=V+j[L-14+1]|0,X=v+j[L-14]+W(se,V)|0;X=(X=X+N+W(se=se+ne|0,ne)|0)+qe+W(se=se+Ke|0,Ke)|0,j[L]=X,j[L+1]=se}for(var me=0;me<160;me+=2){X=j[me],se=j[me+1];var ce=I(Q,J,ee),fe=I(de,D,n),ke=d(Q,de),mt=d(de,Q),_e=T(ge,m),be=T(m,ge),pe=S[me],Ze=S[me+1],_t=f(ge,ae,Me),at=f(m,h,C),pt=k+be|0,Xt=Te+_e+W(pt,k)|0;Xt=(Xt=(Xt=Xt+_t+W(pt=pt+at|0,at)|0)+pe+W(pt=pt+Ze|0,Ze)|0)+X+W(pt=pt+se|0,se)|0;var ye=mt+fe|0,ue=ke+ce+W(ye,mt)|0;Te=Me,k=C,Me=ae,C=h,ae=ge,h=m,ge=ie+Xt+W(m=c+pt|0,c)|0,ie=ee,c=n,ee=J,n=D,J=Q,D=de,Q=Xt+ue+W(de=pt+ye|0,pt)|0}this._al=this._al+de|0,this._bl=this._bl+D|0,this._cl=this._cl+n|0,this._dl=this._dl+c|0,this._el=this._el+m|0,this._fl=this._fl+h|0,this._gl=this._gl+C|0,this._hl=this._hl+k|0,this._ah=this._ah+Q+W(this._al,de)|0,this._bh=this._bh+J+W(this._bl,D)|0,this._ch=this._ch+ee+W(this._cl,n)|0,this._dh=this._dh+ie+W(this._dl,c)|0,this._eh=this._eh+ge+W(this._el,m)|0,this._fh=this._fh+ae+W(this._fl,h)|0,this._gh=this._gh+Me+W(this._gl,C)|0,this._hh=this._hh+Te+W(this._hl,k)|0},x.prototype._hash=function(){var $=w.allocUnsafe(64);function j(Q,J,ee){$.writeInt32BE(Q,ee),$.writeInt32BE(J,ee+4)}return j(this._ah,this._al,0),j(this._bh,this._bl,8),j(this._ch,this._cl,16),j(this._dh,this._dl,24),j(this._eh,this._el,32),j(this._fh,this._fl,40),j(this._gh,this._gl,48),j(this._hh,this._hl,56),$},Qe.exports=x},2852:function(Qe,te,g){!function(e){"use strict";var t={};Qe.exports?(t.bytesToHex=g(4740).bytesToHex,t.convertString=g(820),Qe.exports=I):(t.bytesToHex=e.convertHex.bytesToHex,t.convertString=e.convertString,e.sha256=I);var w=[];!function(){function d(R){for(var z=Math.sqrt(R),W=2;W<=z;W++)if(!(R%W))return!1;return!0}for(var y=2,F=0;F<64;)d(y)&&(w[F]=4294967296*((R=Math.pow(y,1/3))-(0|R))|0,F++),y++;var R}();var S=function(d){for(var T=[],y=0,F=0;y>>5]|=d[y]<<24-F%32;return T},l=function(d){for(var T=[],y=0;y<32*d.length;y+=8)T.push(d[y>>>5]>>>24-y%32&255);return T},x=[],f=function(d,T,y){for(var F=d[0],R=d[1],z=d[2],W=d[3],$=d[4],j=d[5],Q=d[6],J=d[7],ee=0;ee<64;ee++){if(ee<16)x[ee]=0|T[y+ee];else{var ie=x[ee-15],ae=x[ee-2];x[ee]=((ie<<25|ie>>>7)^(ie<<14|ie>>>18)^ie>>>3)+x[ee-7]+((ae<<15|ae>>>17)^(ae<<13|ae>>>19)^ae>>>10)+x[ee-16]}var de=F&R^F&z^R&z,c=J+(($<<26|$>>>6)^($<<21|$>>>11)^($<<7|$>>>25))+($&j^~$&Q)+w[ee]+x[ee];J=Q,Q=j,j=$,$=W+c|0,W=z,z=R,R=F,F=c+(((F<<30|F>>>2)^(F<<19|F>>>13)^(F<<10|F>>>22))+de)|0}d[0]=d[0]+F|0,d[1]=d[1]+R|0,d[2]=d[2]+z|0,d[3]=d[3]+W|0,d[4]=d[4]+$|0,d[5]=d[5]+j|0,d[6]=d[6]+Q|0,d[7]=d[7]+J|0};function I(d,T){d.constructor===String&&(d=t.convertString.UTF8.stringToBytes(d));var y=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],F=S(d),R=8*d.length;F[R>>5]|=128<<24-R%32,F[15+(R+64>>9<<4)]=R;for(var z=0;z{Qe.exports=w;var e=g(4356).EventEmitter;function w(){e.call(this)}g(1993)(w,e),w.Readable=g(1092),w.Writable=g(5492),w.Duplex=g(1030),w.Transform=g(3410),w.PassThrough=g(3824),w.finished=g(7854),w.pipeline=g(6846),w.Stream=w,w.prototype.pipe=function(S,l){var x=this;function f(z){S.writable&&!1===S.write(z)&&x.pause&&x.pause()}function I(){x.readable&&x.resume&&x.resume()}x.on("data",f),S.on("drain",I),!S._isStdio&&(!l||!1!==l.end)&&(x.on("end",T),x.on("close",y));var d=!1;function T(){d||(d=!0,S.end())}function y(){d||(d=!0,"function"==typeof S.destroy&&S.destroy())}function F(z){if(R(),0===e.listenerCount(this,"error"))throw z}function R(){x.removeListener("data",f),S.removeListener("drain",I),x.removeListener("end",T),x.removeListener("close",y),x.removeListener("error",F),S.removeListener("error",F),x.removeListener("end",R),x.removeListener("close",R),S.removeListener("close",R)}return x.on("error",F),S.on("error",F),x.on("end",R),x.on("close",R),S.on("close",R),S.emit("pipe",x),S}},464:Qe=>{"use strict";var g={};function e(x,f,I){I||(I=Error);var T=function(y){function F(R,z,W){return y.call(this,function d(y,F,R){return"string"==typeof f?f:f(y,F,R)}(R,z,W))||this}return function te(x,f){x.prototype=Object.create(f.prototype),x.prototype.constructor=x,x.__proto__=f}(F,y),F}(I);T.prototype.name=I.name,T.prototype.code=x,g[x]=T}function t(x,f){if(Array.isArray(x)){var I=x.length;return x=x.map(function(d){return String(d)}),I>2?"one of ".concat(f," ").concat(x.slice(0,I-1).join(", "),", or ")+x[I-1]:2===I?"one of ".concat(f," ").concat(x[0]," or ").concat(x[1]):"of ".concat(f," ").concat(x[0])}return"of ".concat(f," ").concat(String(x))}e("ERR_INVALID_OPT_VALUE",function(x,f){return'The value "'+f+'" is invalid for option "'+x+'"'},TypeError),e("ERR_INVALID_ARG_TYPE",function(x,f,I){var d,T;if("string"==typeof f&&function w(x,f,I){return x.substr(!I||I<0?0:+I,f.length)===f}(f,"not ")?(d="must not be",f=f.replace(/^not /,"")):d="must be",function S(x,f,I){return(void 0===I||I>x.length)&&(I=x.length),x.substring(I-f.length,I)===f}(x," argument"))T="The ".concat(x," ").concat(d," ").concat(t(f,"type"));else{var y=function l(x,f,I){return"number"!=typeof I&&(I=0),!(I+f.length>x.length)&&-1!==x.indexOf(f,I)}(x,".")?"property":"argument";T='The "'.concat(x,'" ').concat(y," ").concat(d," ").concat(t(f,"type"))}return T+". Received type ".concat(typeof I)},TypeError),e("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF"),e("ERR_METHOD_NOT_IMPLEMENTED",function(x){return"The "+x+" method is not implemented"}),e("ERR_STREAM_PREMATURE_CLOSE","Premature close"),e("ERR_STREAM_DESTROYED",function(x){return"Cannot call "+x+" after a stream was destroyed"}),e("ERR_MULTIPLE_CALLBACK","Callback called multiple times"),e("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable"),e("ERR_STREAM_WRITE_AFTER_END","write after end"),e("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError),e("ERR_UNKNOWN_ENCODING",function(x){return"Unknown encoding: "+x},TypeError),e("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event"),Qe.exports.F=g},1030:(Qe,te,g)=>{"use strict";var e=Object.keys||function(T){var y=[];for(var F in T)y.push(F);return y};Qe.exports=f;var t=g(1092),w=g(5492);g(1993)(f,t);for(var S=e(w.prototype),l=0;l{"use strict";Qe.exports=t;var e=g(3410);function t(w){if(!(this instanceof t))return new t(w);e.call(this,w)}g(1993)(t,e),t.prototype._transform=function(w,S,l){l(null,w)}},1092:(Qe,te,g)=>{"use strict";var e;Qe.exports=D,D.ReadableState=de,g(4356);var T,w=function(ke,mt){return ke.listeners(mt).length},S=g(2601),l=g(3838).Buffer,x=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},d=g(7199);T=d&&d.debuglog?d.debuglog("stream"):function(){};var ee,ie,ge,y=g(7606),F=g(8152),z=g(2827).getHighWaterMark,W=g(464).F,$=W.ERR_INVALID_ARG_TYPE,j=W.ERR_STREAM_PUSH_AFTER_EOF,Q=W.ERR_METHOD_NOT_IMPLEMENTED,J=W.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;g(1993)(D,S);var ae=F.errorOrDestroy,Me=["error","close","destroy","pause","resume"];function de(fe,ke,mt){e=e||g(1030),"boolean"!=typeof mt&&(mt=ke instanceof e),this.objectMode=!!(fe=fe||{}).objectMode,mt&&(this.objectMode=this.objectMode||!!fe.readableObjectMode),this.highWaterMark=z(this,fe,"readableHighWaterMark",mt),this.buffer=new y,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=!1!==fe.emitClose,this.autoDestroy=!!fe.autoDestroy,this.destroyed=!1,this.defaultEncoding=fe.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,fe.encoding&&(ee||(ee=g(8454).I),this.decoder=new ee(fe.encoding),this.encoding=fe.encoding)}function D(fe){if(e=e||g(1030),!(this instanceof D))return new D(fe);this._readableState=new de(fe,this,this instanceof e),this.readable=!0,fe&&("function"==typeof fe.read&&(this._read=fe.read),"function"==typeof fe.destroy&&(this._destroy=fe.destroy)),S.call(this)}function n(fe,ke,mt,_e,be){T("readableAddChunk",ke);var Ze,pe=fe._readableState;if(null===ke)pe.reading=!1,function L(fe,ke){if(T("onEofChunk"),!ke.ended){if(ke.decoder){var mt=ke.decoder.end();mt&&mt.length&&(ke.buffer.push(mt),ke.length+=ke.objectMode?1:mt.length)}ke.ended=!0,ke.sync?_(fe):(ke.needReadable=!1,ke.emittedReadable||(ke.emittedReadable=!0,r(fe)))}}(fe,pe);else if(be||(Ze=function m(fe,ke){var mt;return!function I(fe){return l.isBuffer(fe)||fe instanceof x}(ke)&&"string"!=typeof ke&&void 0!==ke&&!fe.objectMode&&(mt=new $("chunk",["string","Buffer","Uint8Array"],ke)),mt}(pe,ke)),Ze)ae(fe,Ze);else if(pe.objectMode||ke&&ke.length>0)if("string"!=typeof ke&&!pe.objectMode&&Object.getPrototypeOf(ke)!==l.prototype&&(ke=function f(fe){return l.from(fe)}(ke)),_e)pe.endEmitted?ae(fe,new J):c(fe,pe,ke,!0);else if(pe.ended)ae(fe,new j);else{if(pe.destroyed)return!1;pe.reading=!1,pe.decoder&&!mt?(ke=pe.decoder.write(ke),pe.objectMode||0!==ke.length?c(fe,pe,ke,!1):v(fe,pe)):c(fe,pe,ke,!1)}else _e||(pe.reading=!1,v(fe,pe));return!pe.ended&&(pe.lengthke.highWaterMark&&(ke.highWaterMark=function C(fe){return fe>=h?fe=h:(fe--,fe|=fe>>>1,fe|=fe>>>2,fe|=fe>>>4,fe|=fe>>>8,fe|=fe>>>16,fe++),fe}(fe)),fe<=ke.length?fe:ke.ended?ke.length:(ke.needReadable=!0,0))}function _(fe){var ke=fe._readableState;T("emitReadable",ke.needReadable,ke.emittedReadable),ke.needReadable=!1,ke.emittedReadable||(T("emitReadable",ke.flowing),ke.emittedReadable=!0,process.nextTick(r,fe))}function r(fe){var ke=fe._readableState;T("emitReadable_",ke.destroyed,ke.length,ke.ended),!ke.destroyed&&(ke.length||ke.ended)&&(fe.emit("readable"),ke.emittedReadable=!1),ke.needReadable=!ke.flowing&&!ke.ended&&ke.length<=ke.highWaterMark,Ke(fe)}function v(fe,ke){ke.readingMore||(ke.readingMore=!0,process.nextTick(V,fe,ke))}function V(fe,ke){for(;!ke.reading&&!ke.ended&&(ke.length0,ke.resumeScheduled&&!ke.paused?ke.flowing=!0:fe.listenerCount("data")>0&&fe.resume()}function Ee(fe){T("readable nexttick read 0"),fe.read(0)}function qe(fe,ke){T("resume",ke.reading),ke.reading||fe.read(0),ke.resumeScheduled=!1,fe.emit("resume"),Ke(fe),ke.flowing&&!ke.reading&&fe.read(0)}function Ke(fe){var ke=fe._readableState;for(T("flow",ke.flowing);ke.flowing&&null!==fe.read(););}function se(fe,ke){return 0===ke.length?null:(ke.objectMode?mt=ke.buffer.shift():!fe||fe>=ke.length?(mt=ke.decoder?ke.buffer.join(""):1===ke.buffer.length?ke.buffer.first():ke.buffer.concat(ke.length),ke.buffer.clear()):mt=ke.buffer.consume(fe,ke.decoder),mt);var mt}function X(fe){var ke=fe._readableState;T("endReadable",ke.endEmitted),ke.endEmitted||(ke.ended=!0,process.nextTick(me,ke,fe))}function me(fe,ke){if(T("endReadableNT",fe.endEmitted,fe.length),!fe.endEmitted&&0===fe.length&&(fe.endEmitted=!0,ke.readable=!1,ke.emit("end"),fe.autoDestroy)){var mt=ke._writableState;(!mt||mt.autoDestroy&&mt.finished)&&ke.destroy()}}function ce(fe,ke){for(var mt=0,_e=fe.length;mt<_e;mt++)if(fe[mt]===ke)return mt;return-1}D.prototype.read=function(fe){T("read",fe),fe=parseInt(fe,10);var ke=this._readableState,mt=fe;if(0!==fe&&(ke.emittedReadable=!1),0===fe&&ke.needReadable&&((0!==ke.highWaterMark?ke.length>=ke.highWaterMark:ke.length>0)||ke.ended))return T("read: emitReadable",ke.length,ke.ended),0===ke.length&&ke.ended?X(this):_(this),null;if(0===(fe=k(fe,ke))&&ke.ended)return 0===ke.length&&X(this),null;var be,_e=ke.needReadable;return T("need readable",_e),(0===ke.length||ke.length-fe0?se(fe,ke):null)?(ke.needReadable=ke.length<=ke.highWaterMark,fe=0):(ke.length-=fe,ke.awaitDrain=0),0===ke.length&&(ke.ended||(ke.needReadable=!0),mt!==fe&&ke.ended&&X(this)),null!==be&&this.emit("data",be),be},D.prototype._read=function(fe){ae(this,new Q("_read()"))},D.prototype.pipe=function(fe,ke){var mt=this,_e=this._readableState;switch(_e.pipesCount){case 0:_e.pipes=fe;break;case 1:_e.pipes=[_e.pipes,fe];break;default:_e.pipes.push(fe)}_e.pipesCount+=1,T("pipe count=%d opts=%j",_e.pipesCount,ke);var pe=ke&&!1===ke.end||fe===process.stdout||fe===process.stderr?Xe:_t;function _t(){T("onend"),fe.end()}_e.endEmitted?process.nextTick(pe):mt.once("end",pe),fe.on("unpipe",function Ze(yt,Ye){T("onunpipe"),yt===mt&&Ye&&!1===Ye.hasUnpiped&&(Ye.hasUnpiped=!0,function Xt(){T("cleanup"),fe.removeListener("close",Ie),fe.removeListener("finish",He),fe.removeListener("drain",at),fe.removeListener("error",ue),fe.removeListener("unpipe",Ze),mt.removeListener("end",_t),mt.removeListener("end",Xe),mt.removeListener("data",ye),pt=!0,_e.awaitDrain&&(!fe._writableState||fe._writableState.needDrain)&&at()}())});var at=function N(fe){return function(){var mt=fe._readableState;T("pipeOnDrain",mt.awaitDrain),mt.awaitDrain&&mt.awaitDrain--,0===mt.awaitDrain&&w(fe,"data")&&(mt.flowing=!0,Ke(fe))}}(mt);fe.on("drain",at);var pt=!1;function ye(yt){T("ondata");var Ye=fe.write(yt);T("dest.write",Ye),!1===Ye&&((1===_e.pipesCount&&_e.pipes===fe||_e.pipesCount>1&&-1!==ce(_e.pipes,fe))&&!pt&&(T("false write response, pause",_e.awaitDrain),_e.awaitDrain++),mt.pause())}function ue(yt){T("onerror",yt),Xe(),fe.removeListener("error",ue),0===w(fe,"error")&&ae(fe,yt)}function Ie(){fe.removeListener("finish",He),Xe()}function He(){T("onfinish"),fe.removeListener("close",Ie),Xe()}function Xe(){T("unpipe"),mt.unpipe(fe)}return mt.on("data",ye),function Te(fe,ke,mt){if("function"==typeof fe.prependListener)return fe.prependListener(ke,mt);fe._events&&fe._events[ke]?Array.isArray(fe._events[ke])?fe._events[ke].unshift(mt):fe._events[ke]=[mt,fe._events[ke]]:fe.on(ke,mt)}(fe,"error",ue),fe.once("close",Ie),fe.once("finish",He),fe.emit("pipe",mt),_e.flowing||(T("pipe resume"),mt.resume()),fe},D.prototype.unpipe=function(fe){var ke=this._readableState,mt={hasUnpiped:!1};if(0===ke.pipesCount)return this;if(1===ke.pipesCount)return fe&&fe!==ke.pipes||(fe||(fe=ke.pipes),ke.pipes=null,ke.pipesCount=0,ke.flowing=!1,fe&&fe.emit("unpipe",this,mt)),this;if(!fe){var _e=ke.pipes,be=ke.pipesCount;ke.pipes=null,ke.pipesCount=0,ke.flowing=!1;for(var pe=0;pe0,!1!==_e.flowing&&this.resume()):"readable"===fe&&!_e.endEmitted&&!_e.readableListening&&(_e.readableListening=_e.needReadable=!0,_e.flowing=!1,_e.emittedReadable=!1,T("on readable",_e.length,_e.reading),_e.length?_(this):_e.reading||process.nextTick(Ee,this)),mt},D.prototype.removeListener=function(fe,ke){var mt=S.prototype.removeListener.call(this,fe,ke);return"readable"===fe&&process.nextTick(ne,this),mt},D.prototype.removeAllListeners=function(fe){var ke=S.prototype.removeAllListeners.apply(this,arguments);return("readable"===fe||void 0===fe)&&process.nextTick(ne,this),ke},D.prototype.resume=function(){var fe=this._readableState;return fe.flowing||(T("resume"),fe.flowing=!fe.readableListening,function ze(fe,ke){ke.resumeScheduled||(ke.resumeScheduled=!0,process.nextTick(qe,fe,ke))}(this,fe)),fe.paused=!1,this},D.prototype.pause=function(){return T("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(T("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this},D.prototype.wrap=function(fe){var ke=this,mt=this._readableState,_e=!1;for(var be in fe.on("end",function(){if(T("wrapped end"),mt.decoder&&!mt.ended){var Ze=mt.decoder.end();Ze&&Ze.length&&ke.push(Ze)}ke.push(null)}),fe.on("data",function(Ze){T("wrapped data"),mt.decoder&&(Ze=mt.decoder.write(Ze)),mt.objectMode&&null==Ze||!(mt.objectMode||Ze&&Ze.length)||ke.push(Ze)||(_e=!0,fe.pause())}),fe)void 0===this[be]&&"function"==typeof fe[be]&&(this[be]=function(_t){return function(){return fe[_t].apply(fe,arguments)}}(be));for(var pe=0;pe{"use strict";Qe.exports=I;var e=g(464).F,t=e.ERR_METHOD_NOT_IMPLEMENTED,w=e.ERR_MULTIPLE_CALLBACK,S=e.ERR_TRANSFORM_ALREADY_TRANSFORMING,l=e.ERR_TRANSFORM_WITH_LENGTH_0,x=g(1030);function f(y,F){var R=this._transformState;R.transforming=!1;var z=R.writecb;if(null===z)return this.emit("error",new w);R.writechunk=null,R.writecb=null,null!=F&&this.push(F),z(y);var W=this._readableState;W.reading=!1,(W.needReadable||W.length{"use strict";function t(Ke){var se=this;this.next=null,this.entry=null,this.finish=function(){!function qe(Ke,se,X){var me=Ke.entry;for(Ke.entry=null;me;){var ce=me.callback;se.pendingcb--,ce(X),me=me.next}se.corkedRequestsFree.next=Ke}(se,Ke)}}var w;Qe.exports=de,de.WritableState=Me;var Te,S={deprecate:g(3398)},l=g(2601),x=g(3838).Buffer,f=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){},T=g(8152),F=g(2827).getHighWaterMark,R=g(464).F,z=R.ERR_INVALID_ARG_TYPE,W=R.ERR_METHOD_NOT_IMPLEMENTED,$=R.ERR_MULTIPLE_CALLBACK,j=R.ERR_STREAM_CANNOT_PIPE,Q=R.ERR_STREAM_DESTROYED,J=R.ERR_STREAM_NULL_VALUES,ee=R.ERR_STREAM_WRITE_AFTER_END,ie=R.ERR_UNKNOWN_ENCODING,ge=T.errorOrDestroy;function ae(){}function Me(Ke,se,X){w=w||g(1030),"boolean"!=typeof X&&(X=se instanceof w),this.objectMode=!!(Ke=Ke||{}).objectMode,X&&(this.objectMode=this.objectMode||!!Ke.writableObjectMode),this.highWaterMark=F(this,Ke,"writableHighWaterMark",X),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1,this.decodeStrings=!(!1===Ke.decodeStrings),this.defaultEncoding=Ke.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(ce){!function L(Ke,se){var X=Ke._writableState,me=X.sync,ce=X.writecb;if("function"!=typeof ce)throw new $;if(function k(Ke){Ke.writing=!1,Ke.writecb=null,Ke.length-=Ke.writelen,Ke.writelen=0}(X),se)!function C(Ke,se,X,me,ce){--se.pendingcb,X?(process.nextTick(ce,me),process.nextTick(Ee,Ke,se),Ke._writableState.errorEmitted=!0,ge(Ke,me)):(ce(me),Ke._writableState.errorEmitted=!0,ge(Ke,me),Ee(Ke,se))}(Ke,X,me,se,ce);else{var fe=V(X)||Ke.destroyed;!fe&&!X.corked&&!X.bufferProcessing&&X.bufferedRequest&&v(Ke,X),me?process.nextTick(_,Ke,X,fe,ce):_(Ke,X,fe,ce)}}(se,ce)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=!1!==Ke.emitClose,this.autoDestroy=!!Ke.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new t(this)}function de(Ke){var se=this instanceof(w=w||g(1030));if(!se&&!Te.call(de,this))return new de(Ke);this._writableState=new Me(Ke,this,se),this.writable=!0,Ke&&("function"==typeof Ke.write&&(this._write=Ke.write),"function"==typeof Ke.writev&&(this._writev=Ke.writev),"function"==typeof Ke.destroy&&(this._destroy=Ke.destroy),"function"==typeof Ke.final&&(this._final=Ke.final)),l.call(this)}function h(Ke,se,X,me,ce,fe,ke){se.writelen=me,se.writecb=ke,se.writing=!0,se.sync=!0,se.destroyed?se.onwrite(new Q("write")):X?Ke._writev(ce,se.onwrite):Ke._write(ce,fe,se.onwrite),se.sync=!1}function _(Ke,se,X,me){X||function r(Ke,se){0===se.length&&se.needDrain&&(se.needDrain=!1,Ke.emit("drain"))}(Ke,se),se.pendingcb--,me(),Ee(Ke,se)}function v(Ke,se){se.bufferProcessing=!0;var X=se.bufferedRequest;if(Ke._writev&&X&&X.next){var ce=new Array(se.bufferedRequestCount),fe=se.corkedRequestsFree;fe.entry=X;for(var ke=0,mt=!0;X;)ce[ke]=X,X.isBuf||(mt=!1),X=X.next,ke+=1;ce.allBuffers=mt,h(Ke,se,!0,se.length,ce,"",fe.finish),se.pendingcb++,se.lastBufferedRequest=null,fe.next?(se.corkedRequestsFree=fe.next,fe.next=null):se.corkedRequestsFree=new t(se),se.bufferedRequestCount=0}else{for(;X;){var _e=X.chunk;if(h(Ke,se,!1,se.objectMode?1:_e.length,_e,X.encoding,X.callback),X=X.next,se.bufferedRequestCount--,se.writing)break}null===X&&(se.lastBufferedRequest=null)}se.bufferedRequest=X,se.bufferProcessing=!1}function V(Ke){return Ke.ending&&0===Ke.length&&null===Ke.bufferedRequest&&!Ke.finished&&!Ke.writing}function N(Ke,se){Ke._final(function(X){se.pendingcb--,X&&ge(Ke,X),se.prefinished=!0,Ke.emit("prefinish"),Ee(Ke,se)})}function Ee(Ke,se){var X=V(se);if(X&&(function ne(Ke,se){!se.prefinished&&!se.finalCalled&&("function"!=typeof Ke._final||se.destroyed?(se.prefinished=!0,Ke.emit("prefinish")):(se.pendingcb++,se.finalCalled=!0,process.nextTick(N,Ke,se)))}(Ke,se),0===se.pendingcb&&(se.finished=!0,Ke.emit("finish"),se.autoDestroy))){var me=Ke._readableState;(!me||me.autoDestroy&&me.endEmitted)&&Ke.destroy()}return X}g(1993)(de,l),Me.prototype.getBuffer=function(){for(var se=this.bufferedRequest,X=[];se;)X.push(se),se=se.next;return X},function(){try{Object.defineProperty(Me.prototype,"buffer",{get:S.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch{}}(),"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(Te=Function.prototype[Symbol.hasInstance],Object.defineProperty(de,Symbol.hasInstance,{value:function(se){return!!Te.call(this,se)||this===de&&se&&se._writableState instanceof Me}})):Te=function(se){return se instanceof this},de.prototype.pipe=function(){ge(this,new j)},de.prototype.write=function(Ke,se,X){var me=this._writableState,ce=!1,fe=!me.objectMode&&function d(Ke){return x.isBuffer(Ke)||Ke instanceof f}(Ke);return fe&&!x.isBuffer(Ke)&&(Ke=function I(Ke){return x.from(Ke)}(Ke)),"function"==typeof se&&(X=se,se=null),fe?se="buffer":se||(se=me.defaultEncoding),"function"!=typeof X&&(X=ae),me.ending?function D(Ke,se){var X=new ee;ge(Ke,X),process.nextTick(se,X)}(this,X):(fe||function n(Ke,se,X,me){var ce;return null===X?ce=new J:"string"!=typeof X&&!se.objectMode&&(ce=new z("chunk",["string","Buffer"],X)),!ce||(ge(Ke,ce),process.nextTick(me,ce),!1)}(this,me,Ke,X))&&(me.pendingcb++,ce=function m(Ke,se,X,me,ce,fe){if(!X){var ke=function c(Ke,se,X){return!Ke.objectMode&&!1!==Ke.decodeStrings&&"string"==typeof se&&(se=x.from(se,X)),se}(se,me,ce);me!==ke&&(X=!0,ce="buffer",me=ke)}var mt=se.objectMode?1:me.length;se.length+=mt;var _e=se.length-1))throw new ie(se);return this._writableState.defaultEncoding=se,this},Object.defineProperty(de.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}}),Object.defineProperty(de.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}}),de.prototype._write=function(Ke,se,X){X(new W("_write()"))},de.prototype._writev=null,de.prototype.end=function(Ke,se,X){var me=this._writableState;return"function"==typeof Ke?(X=Ke,Ke=null,se=null):"function"==typeof se&&(X=se,se=null),null!=Ke&&this.write(Ke,se),me.corked&&(me.corked=1,this.uncork()),me.ending||function ze(Ke,se,X){se.ending=!0,Ee(Ke,se),X&&(se.finished?process.nextTick(X):Ke.once("finish",X)),se.ended=!0,Ke.writable=!1}(this,me,X),this},Object.defineProperty(de.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}}),Object.defineProperty(de.prototype,"destroyed",{enumerable:!1,get:function(){return void 0!==this._writableState&&this._writableState.destroyed},set:function(se){this._writableState&&(this._writableState.destroyed=se)}}),de.prototype.destroy=T.destroy,de.prototype._undestroy=T.undestroy,de.prototype._destroy=function(Ke,se){se(Ke)}},2683:(Qe,te,g)=>{"use strict";var e;function t(ee,ie,ge){return ie=function w(ee){var ie=function S(ee,ie){if("object"!=typeof ee||null===ee)return ee;var ge=ee[Symbol.toPrimitive];if(void 0!==ge){var ae=ge.call(ee,ie||"default");if("object"!=typeof ae)return ae;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===ie?String:Number)(ee)}(ee,"string");return"symbol"==typeof ie?ie:String(ie)}(ie),ie in ee?Object.defineProperty(ee,ie,{value:ge,enumerable:!0,configurable:!0,writable:!0}):ee[ie]=ge,ee}var l=g(7854),x=Symbol("lastResolve"),f=Symbol("lastReject"),I=Symbol("error"),d=Symbol("ended"),T=Symbol("lastPromise"),y=Symbol("handlePromise"),F=Symbol("stream");function R(ee,ie){return{value:ee,done:ie}}function z(ee){var ie=ee[x];if(null!==ie){var ge=ee[F].read();null!==ge&&(ee[T]=null,ee[x]=null,ee[f]=null,ie(R(ge,!1)))}}function W(ee){process.nextTick(z,ee)}var j=Object.getPrototypeOf(function(){}),Q=Object.setPrototypeOf((t(e={get stream(){return this[F]},next:function(){var ie=this,ge=this[I];if(null!==ge)return Promise.reject(ge);if(this[d])return Promise.resolve(R(void 0,!0));if(this[F].destroyed)return new Promise(function(de,D){process.nextTick(function(){ie[I]?D(ie[I]):de(R(void 0,!0))})});var Me,ae=this[T];if(ae)Me=new Promise(function $(ee,ie){return function(ge,ae){ee.then(function(){ie[d]?ge(R(void 0,!0)):ie[y](ge,ae)},ae)}}(ae,this));else{var Te=this[F].read();if(null!==Te)return Promise.resolve(R(Te,!1));Me=new Promise(this[y])}return this[T]=Me,Me}},Symbol.asyncIterator,function(){return this}),t(e,"return",function(){var ie=this;return new Promise(function(ge,ae){ie[F].destroy(null,function(Me){Me?ae(Me):ge(R(void 0,!0))})})}),e),j);Qe.exports=function(ie){var ge,ae=Object.create(Q,(t(ge={},F,{value:ie,writable:!0}),t(ge,x,{value:null,writable:!0}),t(ge,f,{value:null,writable:!0}),t(ge,I,{value:null,writable:!0}),t(ge,d,{value:ie._readableState.endEmitted,writable:!0}),t(ge,y,{value:function(Te,de){var D=ae[F].read();D?(ae[T]=null,ae[x]=null,ae[f]=null,Te(R(D,!1))):(ae[x]=Te,ae[f]=de)},writable:!0}),ge));return ae[T]=null,l(ie,function(Me){if(Me&&"ERR_STREAM_PREMATURE_CLOSE"!==Me.code){var Te=ae[f];return null!==Te&&(ae[T]=null,ae[x]=null,ae[f]=null,Te(Me)),void(ae[I]=Me)}var de=ae[x];null!==de&&(ae[T]=null,ae[x]=null,ae[f]=null,de(R(void 0,!0))),ae[d]=!0}),ie.on("readable",W.bind(null,ae)),ae}},7606:(Qe,te,g)=>{"use strict";function e(W,$){var j=Object.keys(W);if(Object.getOwnPropertySymbols){var Q=Object.getOwnPropertySymbols(W);$&&(Q=Q.filter(function(J){return Object.getOwnPropertyDescriptor(W,J).enumerable})),j.push.apply(j,Q)}return j}function t(W){for(var $=1;$0?this.tail.next=Q:this.head=Q,this.tail=Q,++this.length}},{key:"unshift",value:function(j){var Q={data:j,next:this.head};0===this.length&&(this.tail=Q),this.head=Q,++this.length}},{key:"shift",value:function(){if(0!==this.length){var j=this.head.data;return this.head=1===this.length?this.tail=null:this.head.next,--this.length,j}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(j){if(0===this.length)return"";for(var Q=this.head,J=""+Q.data;Q=Q.next;)J+=j+Q.data;return J}},{key:"concat",value:function(j){if(0===this.length)return T.alloc(0);for(var Q=T.allocUnsafe(j>>>0),J=this.head,ee=0;J;)z(J.data,Q,ee),ee+=J.data.length,J=J.next;return Q}},{key:"consume",value:function(j,Q){var J;return jie.length?ie.length:j;if(ee+=ge===ie.length?ie:ie.slice(0,j),0==(j-=ge)){ge===ie.length?(++J,this.head=Q.next?Q.next:this.tail=null):(this.head=Q,Q.data=ie.slice(ge));break}++J}return this.length-=J,ee}},{key:"_getBuffer",value:function(j){var Q=T.allocUnsafe(j),J=this.head,ee=1;for(J.data.copy(Q),j-=J.data.length;J=J.next;){var ie=J.data,ge=j>ie.length?ie.length:j;if(ie.copy(Q,Q.length-j,0,ge),0==(j-=ge)){ge===ie.length?(++ee,this.head=J.next?J.next:this.tail=null):(this.head=J,J.data=ie.slice(ge));break}++ee}return this.length-=ee,Q}},{key:R,value:function(j,Q){return F(this,t(t({},Q),{},{depth:0,customInspect:!1}))}}]),W}()},8152:Qe=>{"use strict";function g(l,x){w(l,x),e(l)}function e(l){l._writableState&&!l._writableState.emitClose||l._readableState&&!l._readableState.emitClose||l.emit("close")}function w(l,x){l.emit("error",x)}Qe.exports={destroy:function te(l,x){var f=this;return this._readableState&&this._readableState.destroyed||this._writableState&&this._writableState.destroyed?(x?x(l):l&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,process.nextTick(w,this,l)):process.nextTick(w,this,l)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(l||null,function(T){!x&&T?f._writableState?f._writableState.errorEmitted?process.nextTick(e,f):(f._writableState.errorEmitted=!0,process.nextTick(g,f,T)):process.nextTick(g,f,T):x?(process.nextTick(e,f),x(T)):process.nextTick(e,f)}),this)},undestroy:function t(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)},errorOrDestroy:function S(l,x){var f=l._readableState,I=l._writableState;f&&f.autoDestroy||I&&I.autoDestroy?l.destroy(x):l.emit("error",x)}}},7854:(Qe,te,g)=>{"use strict";var e=g(464).F.ERR_STREAM_PREMATURE_CLOSE;function w(){}Qe.exports=function l(x,f,I){if("function"==typeof f)return l(x,null,f);f||(f={}),I=function t(x){var f=!1;return function(){if(!f){f=!0;for(var I=arguments.length,d=new Array(I),T=0;T{Qe.exports=function(){throw new Error("Readable.from is not available in the browser")}},6846:(Qe,te,g)=>{"use strict";var e,w=g(464).F,S=w.ERR_MISSING_ARGS,l=w.ERR_STREAM_DESTROYED;function x(R){if(R)throw R}function d(R){R()}function T(R,z){return R.pipe(z)}Qe.exports=function F(){for(var R=arguments.length,z=new Array(R),W=0;W0,function(ae){j||(j=ae),ae&&Q.forEach(d),!ie&&(Q.forEach(d),$(j))})});return z.reduce(T)}},2827:(Qe,te,g)=>{"use strict";var e=g(464).F.ERR_INVALID_OPT_VALUE;Qe.exports={getHighWaterMark:function w(S,l,x,f){var I=function t(S,l,x){return null!=S.highWaterMark?S.highWaterMark:l?S[x]:null}(l,f,x);if(null!=I){if(!isFinite(I)||Math.floor(I)!==I||I<0)throw new e(f?x:"highWaterMark",I);return Math.floor(I)}return S.objectMode?16:16384}}},2601:(Qe,te,g)=>{Qe.exports=g(4356).EventEmitter},8454:(Qe,te,g)=>{"use strict";var e=g(4272).Buffer,t=e.isEncoding||function(Q){switch((Q=""+Q)&&Q.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function l(Q){var J;switch(this.encoding=function S(Q){var J=function w(Q){if(!Q)return"utf8";for(var J;;)switch(Q){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return Q;default:if(J)return;Q=(""+Q).toLowerCase(),J=!0}}(Q);if("string"!=typeof J&&(e.isEncoding===t||!t(Q)))throw new Error("Unknown encoding: "+Q);return J||Q}(Q),this.encoding){case"utf16le":this.text=F,this.end=R,J=4;break;case"utf8":this.fillLast=d,J=4;break;case"base64":this.text=z,this.end=W,J=3;break;default:return this.write=$,void(this.end=j)}this.lastNeed=0,this.lastTotal=0,this.lastChar=e.allocUnsafe(J)}function x(Q){return Q<=127?0:Q>>5==6?2:Q>>4==14?3:Q>>3==30?4:Q>>6==2?-1:-2}function d(Q){var J=this.lastTotal-this.lastNeed,ee=function I(Q,J,ee){if(128!=(192&J[0]))return Q.lastNeed=0,"\ufffd";if(Q.lastNeed>1&&J.length>1){if(128!=(192&J[1]))return Q.lastNeed=1,"\ufffd";if(Q.lastNeed>2&&J.length>2&&128!=(192&J[2]))return Q.lastNeed=2,"\ufffd"}}(this,Q);return void 0!==ee?ee:this.lastNeed<=Q.length?(Q.copy(this.lastChar,J,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal)):(Q.copy(this.lastChar,J,0,Q.length),void(this.lastNeed-=Q.length))}function F(Q,J){if((Q.length-J)%2==0){var ee=Q.toString("utf16le",J);if(ee){var ie=ee.charCodeAt(ee.length-1);if(ie>=55296&&ie<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=Q[Q.length-2],this.lastChar[1]=Q[Q.length-1],ee.slice(0,-1)}return ee}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=Q[Q.length-1],Q.toString("utf16le",J,Q.length-1)}function R(Q){var J=Q&&Q.length?this.write(Q):"";return this.lastNeed?J+this.lastChar.toString("utf16le",0,this.lastTotal-this.lastNeed):J}function z(Q,J){var ee=(Q.length-J)%3;return 0===ee?Q.toString("base64",J):(this.lastNeed=3-ee,this.lastTotal=3,1===ee?this.lastChar[0]=Q[Q.length-1]:(this.lastChar[0]=Q[Q.length-2],this.lastChar[1]=Q[Q.length-1]),Q.toString("base64",J,Q.length-ee))}function W(Q){var J=Q&&Q.length?this.write(Q):"";return this.lastNeed?J+this.lastChar.toString("base64",0,3-this.lastNeed):J}function $(Q){return Q.toString(this.encoding)}function j(Q){return Q&&Q.length?this.write(Q):""}te.I=l,l.prototype.write=function(Q){if(0===Q.length)return"";var J,ee;if(this.lastNeed){if(void 0===(J=this.fillLast(Q)))return"";ee=this.lastNeed,this.lastNeed=0}else ee=0;return ee=0?(ge>0&&(Q.lastNeed=ge-1),ge):--ie=0?(ge>0&&(Q.lastNeed=ge-2),ge):--ie=0?(ge>0&&(2===ge?ge=0:Q.lastNeed=ge-3),ge):0}(this,Q,J);if(!this.lastNeed)return Q.toString("utf8",J);this.lastTotal=ee;var ie=Q.length-(ee-this.lastNeed);return Q.copy(this.lastChar,0,ie),Q.toString("utf8",J,ie)},l.prototype.fillLast=function(Q){if(this.lastNeed<=Q.length)return Q.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);Q.copy(this.lastChar,this.lastTotal-this.lastNeed,0,Q.length),this.lastNeed-=Q.length}},4272:(Qe,te,g)=>{var e=g(3838),t=e.Buffer;function w(l,x){for(var f in l)x[f]=l[f]}function S(l,x,f){return t(l,x,f)}t.from&&t.alloc&&t.allocUnsafe&&t.allocUnsafeSlow?Qe.exports=e:(w(e,te),te.Buffer=S),w(t,S),S.from=function(l,x,f){if("number"==typeof l)throw new TypeError("Argument must not be a number");return t(l,x,f)},S.alloc=function(l,x,f){if("number"!=typeof l)throw new TypeError("Argument must be a number");var I=t(l);return void 0!==x?"string"==typeof f?I.fill(x,f):I.fill(x):I.fill(0),I},S.allocUnsafe=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return t(l)},S.allocUnsafeSlow=function(l){if("number"!=typeof l)throw new TypeError("Argument must be a number");return e.SlowBuffer(l)}},7851:(Qe,te,g)=>{var e=g(1876);te.encode=e.encode,te.decode=e.decode},1876:(Qe,te)=>{"use strict";var e=[255,255,26,27,28,29,30,31,255,255,255,255,255,255,255,255,255,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,255,255,255,255,255,255,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,255,255,255,255,255];te.encode=function(w){Buffer.isBuffer(w)||(w=new Buffer(w));for(var S=0,l=0,x=0,f=0,I=new Buffer(8*function t(w){var S=Math.floor(w.length/5);return w.length%5==0?S:S+1}(w));S3?(f=(f=d&255>>x)<<(x=(x+5)%8)|(S+1>8-x,S++):(f=d>>8-(x+5)&31,0==(x=(x+5)%8)&&S++),I[l]="ABCDEFGHIJKLMNOPQRSTUVWXYZ234567".charCodeAt(f),l++}for(S=l;S>>(S=(S+5)%8),f++,x=255&l<<8-S)}return I.slice(0,f)}},3398:Qe=>{function g(e){try{if(!global.localStorage)return!1}catch{return!1}var t=global.localStorage[e];return null!=t&&"true"===String(t).toLowerCase()}Qe.exports=function te(e,t){if(g("noDeprecation"))return e;var w=!1;return function S(){if(!w){if(g("throwDeprecation"))throw new Error(t);g("traceDeprecation")?console.trace(t):console.warn(t),w=!0}return e.apply(this,arguments)}}},8326:(__unused_webpack_module,exports)=>{var indexOf=function(Qe,te){if(Qe.indexOf)return Qe.indexOf(te);for(var g=0;g{},7790:()=>{},7965:()=>{},6089:()=>{},9368:()=>{},4688:()=>{},1069:()=>{},5340:()=>{},9838:()=>{},3779:()=>{},7199:()=>{},9969:(Qe,te,g)=>{"use strict";g.d(te,{FX:()=>de,If:()=>e,K2:()=>x,MA:()=>F,Os:()=>l,P:()=>z,hZ:()=>w,i0:()=>S,i7:()=>d,iF:()=>f,kY:()=>T,kp:()=>t,sf:()=>Me,ui:()=>Te,wk:()=>I});var e=function(D){return D[D.State=0]="State",D[D.Transition=1]="Transition",D[D.Sequence=2]="Sequence",D[D.Group=3]="Group",D[D.Animate=4]="Animate",D[D.Keyframes=5]="Keyframes",D[D.Style=6]="Style",D[D.Trigger=7]="Trigger",D[D.Reference=8]="Reference",D[D.AnimateChild=9]="AnimateChild",D[D.AnimateRef=10]="AnimateRef",D[D.Query=11]="Query",D[D.Stagger=12]="Stagger",D}(e||{});const t="*";function w(D,n){return{type:e.Trigger,name:D,definitions:n,options:{}}}function S(D,n=null){return{type:e.Animate,styles:n,timings:D}}function l(D,n=null){return{type:e.Group,steps:D,options:n}}function x(D,n=null){return{type:e.Sequence,steps:D,options:n}}function f(D){return{type:e.Style,styles:D,offset:null}}function I(D,n,c){return{type:e.State,name:D,styles:n,options:c}}function d(D){return{type:e.Keyframes,steps:D}}function T(D,n,c=null){return{type:e.Transition,expr:D,animation:n,options:c}}function F(D=null){return{type:e.AnimateChild,options:D}}function z(D,n,c=null){return{type:e.Query,selector:D,animation:n,options:c}}class Me{constructor(n=0,c=0){this._onDoneFns=[],this._onStartFns=[],this._onDestroyFns=[],this._originalOnDoneFns=[],this._originalOnStartFns=[],this._started=!1,this._destroyed=!1,this._finished=!1,this._position=0,this.parentPlayer=null,this.totalTime=n+c}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(n=>n()),this._onDoneFns=[])}onStart(n){this._originalOnStartFns.push(n),this._onStartFns.push(n)}onDone(n){this._originalOnDoneFns.push(n),this._onDoneFns.push(n)}onDestroy(n){this._onDestroyFns.push(n)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){queueMicrotask(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(n=>n()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(n=>n()),this._onDestroyFns=[])}reset(){this._started=!1,this._finished=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}setPosition(n){this._position=this.totalTime?n*this.totalTime:1}getPosition(){return this.totalTime?this._position/this.totalTime:1}triggerCallback(n){const c="start"==n?this._onStartFns:this._onDoneFns;c.forEach(m=>m()),c.length=0}}class Te{constructor(n){this._onDoneFns=[],this._onStartFns=[],this._finished=!1,this._started=!1,this._destroyed=!1,this._onDestroyFns=[],this.parentPlayer=null,this.totalTime=0,this.players=n;let c=0,m=0,h=0;const C=this.players.length;0==C?queueMicrotask(()=>this._onFinish()):this.players.forEach(k=>{k.onDone(()=>{++c==C&&this._onFinish()}),k.onDestroy(()=>{++m==C&&this._onDestroy()}),k.onStart(()=>{++h==C&&this._onStart()})}),this.totalTime=this.players.reduce((k,L)=>Math.max(k,L.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(n=>n()),this._onDoneFns=[])}init(){this.players.forEach(n=>n.init())}onStart(n){this._onStartFns.push(n)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(n=>n()),this._onStartFns=[])}onDone(n){this._onDoneFns.push(n)}onDestroy(n){this._onDestroyFns.push(n)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(n=>n.play())}pause(){this.players.forEach(n=>n.pause())}restart(){this.players.forEach(n=>n.restart())}finish(){this._onFinish(),this.players.forEach(n=>n.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(n=>n.destroy()),this._onDestroyFns.forEach(n=>n()),this._onDestroyFns=[])}reset(){this.players.forEach(n=>n.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(n){const c=n*this.totalTime;this.players.forEach(m=>{const h=m.totalTime?Math.min(1,c/m.totalTime):1;m.setPosition(h)})}getPosition(){const n=this.players.reduce((c,m)=>null===c||m.totalTime>c.totalTime?m:c,null);return null!=n?n.getPosition():0}beforeDestroy(){this.players.forEach(n=>{n.beforeDestroy&&n.beforeDestroy()})}triggerCallback(n){const c="start"==n?this._onStartFns:this._onDoneFns;c.forEach(m=>m()),c.length=0}}const de="!"},8617:(Qe,te,g)=>{"use strict";g.d(te,{Ae:()=>ge,Ai:()=>rt,Au:()=>C,Bu:()=>k,FN:()=>oe,GX:()=>fe,Pd:()=>Ae,Q_:()=>dt,Z7:()=>_,_G:()=>_t,kB:()=>ke,px:()=>ie,vR:()=>tt,vr:()=>n,w6:()=>at});var e=g(177),t=g(4438),w=g(6860),S=g(1413),l=g(8359),x=g(4412),f=g(7673),I=g(7336),d=g(8141),T=g(152),y=g(5964),F=g(6354),R=g(6697),z=g(5245),W=g(3294),$=g(6977),j=g(2318),Q=g(4085),J=g(9327);const ee=" ";function ie(we,he,q){const Re=ae(we,he);q=q.trim(),!Re.some(Ne=>Ne.trim()===q)&&(Re.push(q),we.setAttribute(he,Re.join(ee)))}function ge(we,he,q){const Re=ae(we,he);q=q.trim();const Ne=Re.filter(gt=>gt!==q);Ne.length?we.setAttribute(he,Ne.join(ee)):we.removeAttribute(he)}function ae(we,he){return we.getAttribute(he)?.match(/\S+/g)??[]}const Te="cdk-describedby-message",de="cdk-describedby-host";let D=0,n=(()=>{class we{constructor(q,Re){this._platform=Re,this._messageRegistry=new Map,this._messagesContainer=null,this._id=""+D++,this._document=q,this._id=(0,t.WQX)(t.sZ2)+"-"+D++}describe(q,Re,Ne){if(!this._canBeDescribed(q,Re))return;const gt=c(Re,Ne);"string"!=typeof Re?(m(Re,this._id),this._messageRegistry.set(gt,{messageElement:Re,referenceCount:0})):this._messageRegistry.has(gt)||this._createMessageElement(Re,Ne),this._isElementDescribedByMessage(q,gt)||this._addMessageReference(q,gt)}removeDescription(q,Re,Ne){if(!Re||!this._isElementNode(q))return;const gt=c(Re,Ne);if(this._isElementDescribedByMessage(q,gt)&&this._removeMessageReference(q,gt),"string"==typeof Re){const $e=this._messageRegistry.get(gt);$e&&0===$e.referenceCount&&this._deleteMessageElement(gt)}0===this._messagesContainer?.childNodes.length&&(this._messagesContainer.remove(),this._messagesContainer=null)}ngOnDestroy(){const q=this._document.querySelectorAll(`[${de}="${this._id}"]`);for(let Re=0;Re0!=Ne.indexOf(Te));q.setAttribute("aria-describedby",Re.join(" "))}_addMessageReference(q,Re){const Ne=this._messageRegistry.get(Re);ie(q,"aria-describedby",Ne.messageElement.id),q.setAttribute(de,this._id),Ne.referenceCount++}_removeMessageReference(q,Re){const Ne=this._messageRegistry.get(Re);Ne.referenceCount--,ge(q,"aria-describedby",Ne.messageElement.id),q.removeAttribute(de)}_isElementDescribedByMessage(q,Re){const Ne=ae(q,"aria-describedby"),gt=this._messageRegistry.get(Re),$e=gt&>.messageElement.id;return!!$e&&-1!=Ne.indexOf($e)}_canBeDescribed(q,Re){if(!this._isElementNode(q))return!1;if(Re&&"object"==typeof Re)return!0;const Ne=null==Re?"":`${Re}`.trim(),gt=q.getAttribute("aria-label");return!(!Ne||gt&>.trim()===Ne)}_isElementNode(q){return q.nodeType===this._document.ELEMENT_NODE}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(e.qQ),t.KVO(w.OD))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();function c(we,he){return"string"==typeof we?`${he||""}/${we}`:we}function m(we,he){we.id||(we.id=`${Te}-${he}-${D++}`)}class h{constructor(he,q){this._items=he,this._activeItemIndex=-1,this._activeItem=null,this._wrap=!1,this._letterKeyStream=new S.B,this._typeaheadSubscription=l.yU.EMPTY,this._vertical=!0,this._allowedModifierKeys=[],this._homeAndEnd=!1,this._pageUpAndDown={enabled:!1,delta:10},this._skipPredicateFn=Re=>Re.disabled,this._pressedLetters=[],this.tabOut=new S.B,this.change=new S.B,he instanceof t.rOR?this._itemChangesSubscription=he.changes.subscribe(Re=>this._itemsChanged(Re.toArray())):(0,t.Hps)(he)&&(this._effectRef=(0,t.QZP)(()=>this._itemsChanged(he()),{injector:q}))}skipPredicate(he){return this._skipPredicateFn=he,this}withWrap(he=!0){return this._wrap=he,this}withVerticalOrientation(he=!0){return this._vertical=he,this}withHorizontalOrientation(he){return this._horizontal=he,this}withAllowedModifierKeys(he){return this._allowedModifierKeys=he,this}withTypeAhead(he=200){return this._typeaheadSubscription.unsubscribe(),this._typeaheadSubscription=this._letterKeyStream.pipe((0,d.M)(q=>this._pressedLetters.push(q)),(0,T.B)(he),(0,y.p)(()=>this._pressedLetters.length>0),(0,F.T)(()=>this._pressedLetters.join(""))).subscribe(q=>{const Re=this._getItemsArray();for(let Ne=1;Ne!he[gt]||this._allowedModifierKeys.indexOf(gt)>-1);switch(q){case I.wn:return void this.tabOut.next();case I.n6:if(this._vertical&&Ne){this.setNextItemActive();break}return;case I.i7:if(this._vertical&&Ne){this.setPreviousItemActive();break}return;case I.LE:if(this._horizontal&&Ne){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case I.UQ:if(this._horizontal&&Ne){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;case I.yZ:if(this._homeAndEnd&&Ne){this.setFirstItemActive();break}return;case I.Kp:if(this._homeAndEnd&&Ne){this.setLastItemActive();break}return;case I.w_:if(this._pageUpAndDown.enabled&&Ne){const gt=this._activeItemIndex-this._pageUpAndDown.delta;this._setActiveItemByIndex(gt>0?gt:0,1);break}return;case I.dB:if(this._pageUpAndDown.enabled&&Ne){const gt=this._activeItemIndex+this._pageUpAndDown.delta,$e=this._getItemsArray().length;this._setActiveItemByIndex(gt<$e?gt:$e-1,-1);break}return;default:return void((Ne||(0,I.rp)(he,"shiftKey"))&&(he.key&&1===he.key.length?this._letterKeyStream.next(he.key.toLocaleUpperCase()):(q>=I.A&&q<=I.Z||q>=I.f2&&q<=I.bn)&&this._letterKeyStream.next(String.fromCharCode(q))))}this._pressedLetters=[],he.preventDefault()}get activeItemIndex(){return this._activeItemIndex}get activeItem(){return this._activeItem}isTyping(){return this._pressedLetters.length>0}setFirstItemActive(){this._setActiveItemByIndex(0,1)}setLastItemActive(){this._setActiveItemByIndex(this._getItemsArray().length-1,-1)}setNextItemActive(){this._activeItemIndex<0?this.setFirstItemActive():this._setActiveItemByDelta(1)}setPreviousItemActive(){this._activeItemIndex<0&&this._wrap?this.setLastItemActive():this._setActiveItemByDelta(-1)}updateActiveItem(he){const q=this._getItemsArray(),Re="number"==typeof he?he:q.indexOf(he);this._activeItem=q[Re]??null,this._activeItemIndex=Re}destroy(){this._typeaheadSubscription.unsubscribe(),this._itemChangesSubscription?.unsubscribe(),this._effectRef?.destroy(),this._letterKeyStream.complete(),this.tabOut.complete(),this.change.complete(),this._pressedLetters=[]}_setActiveItemByDelta(he){this._wrap?this._setActiveInWrapMode(he):this._setActiveInDefaultMode(he)}_setActiveInWrapMode(he){const q=this._getItemsArray();for(let Re=1;Re<=q.length;Re++){const Ne=(this._activeItemIndex+he*Re+q.length)%q.length;if(!this._skipPredicateFn(q[Ne]))return void this.setActiveItem(Ne)}}_setActiveInDefaultMode(he){this._setActiveItemByIndex(this._activeItemIndex+he,he)}_setActiveItemByIndex(he,q){const Re=this._getItemsArray();if(Re[he]){for(;this._skipPredicateFn(Re[he]);)if(!Re[he+=q])return;this.setActiveItem(he)}}_getItemsArray(){return(0,t.Hps)(this._items)?this._items():this._items instanceof t.rOR?this._items.toArray():this._items}_itemsChanged(he){if(this._activeItem){const q=he.indexOf(this._activeItem);q>-1&&q!==this._activeItemIndex&&(this._activeItemIndex=q)}}}class C extends h{setActiveItem(he){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(he),this.activeItem&&this.activeItem.setActiveStyles()}}class k extends h{constructor(){super(...arguments),this._origin="program"}setFocusOrigin(he){return this._origin=he,this}setActiveItem(he){super.setActiveItem(he),this.activeItem&&this.activeItem.focus(this._origin)}}let _=(()=>{class we{constructor(q){this._platform=q}isDisabled(q){return q.hasAttribute("disabled")}isVisible(q){return function v(we){return!!(we.offsetWidth||we.offsetHeight||"function"==typeof we.getClientRects&&we.getClientRects().length)}(q)&&"visible"===getComputedStyle(q).visibility}isTabbable(q){if(!this._platform.isBrowser)return!1;const Re=function r(we){try{return we.frameElement}catch{return null}}(function me(we){return we.ownerDocument&&we.ownerDocument.defaultView||window}(q));if(Re&&(-1===Ke(Re)||!this.isVisible(Re)))return!1;let Ne=q.nodeName.toLowerCase(),gt=Ke(q);return q.hasAttribute("contenteditable")?-1!==gt:!("iframe"===Ne||"object"===Ne||this._platform.WEBKIT&&this._platform.IOS&&!function se(we){let he=we.nodeName.toLowerCase(),q="input"===he&&we.type;return"text"===q||"password"===q||"select"===he||"textarea"===he}(q))&&("audio"===Ne?!!q.hasAttribute("controls")&&-1!==gt:"video"===Ne?-1!==gt&&(null!==gt||this._platform.FIREFOX||q.hasAttribute("controls")):q.tabIndex>=0)}isFocusable(q,Re){return function X(we){return!function N(we){return function Ee(we){return"input"==we.nodeName.toLowerCase()}(we)&&"hidden"==we.type}(we)&&(function V(we){let he=we.nodeName.toLowerCase();return"input"===he||"select"===he||"button"===he||"textarea"===he}(we)||function ne(we){return function ze(we){return"a"==we.nodeName.toLowerCase()}(we)&&we.hasAttribute("href")}(we)||we.hasAttribute("contenteditable")||qe(we))}(q)&&!this.isDisabled(q)&&(Re?.ignoreVisibility||this.isVisible(q))}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(w.OD))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();function qe(we){if(!we.hasAttribute("tabindex")||void 0===we.tabIndex)return!1;let he=we.getAttribute("tabindex");return!(!he||isNaN(parseInt(he,10)))}function Ke(we){if(!qe(we))return null;const he=parseInt(we.getAttribute("tabindex")||"",10);return isNaN(he)?-1:he}class ce{get enabled(){return this._enabled}set enabled(he){this._enabled=he,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(he,this._startAnchor),this._toggleAnchorTabIndex(he,this._endAnchor))}constructor(he,q,Re,Ne,gt=!1){this._element=he,this._checker=q,this._ngZone=Re,this._document=Ne,this._hasAttached=!1,this.startAnchorListener=()=>this.focusLastTabbableElement(),this.endAnchorListener=()=>this.focusFirstTabbableElement(),this._enabled=!0,gt||this.attachAnchors()}destroy(){const he=this._startAnchor,q=this._endAnchor;he&&(he.removeEventListener("focus",this.startAnchorListener),he.remove()),q&&(q.removeEventListener("focus",this.endAnchorListener),q.remove()),this._startAnchor=this._endAnchor=null,this._hasAttached=!1}attachAnchors(){return!!this._hasAttached||(this._ngZone.runOutsideAngular(()=>{this._startAnchor||(this._startAnchor=this._createAnchor(),this._startAnchor.addEventListener("focus",this.startAnchorListener)),this._endAnchor||(this._endAnchor=this._createAnchor(),this._endAnchor.addEventListener("focus",this.endAnchorListener))}),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}focusInitialElementWhenReady(he){return new Promise(q=>{this._executeOnStable(()=>q(this.focusInitialElement(he)))})}focusFirstTabbableElementWhenReady(he){return new Promise(q=>{this._executeOnStable(()=>q(this.focusFirstTabbableElement(he)))})}focusLastTabbableElementWhenReady(he){return new Promise(q=>{this._executeOnStable(()=>q(this.focusLastTabbableElement(he)))})}_getRegionBoundary(he){const q=this._element.querySelectorAll(`[cdk-focus-region-${he}], [cdkFocusRegion${he}], [cdk-focus-${he}]`);return"start"==he?q.length?q[0]:this._getFirstTabbableElement(this._element):q.length?q[q.length-1]:this._getLastTabbableElement(this._element)}focusInitialElement(he){const q=this._element.querySelector("[cdk-focus-initial], [cdkFocusInitial]");if(q){if(!this._checker.isFocusable(q)){const Re=this._getFirstTabbableElement(q);return Re?.focus(he),!!Re}return q.focus(he),!0}return this.focusFirstTabbableElement(he)}focusFirstTabbableElement(he){const q=this._getRegionBoundary("start");return q&&q.focus(he),!!q}focusLastTabbableElement(he){const q=this._getRegionBoundary("end");return q&&q.focus(he),!!q}hasAttached(){return this._hasAttached}_getFirstTabbableElement(he){if(this._checker.isFocusable(he)&&this._checker.isTabbable(he))return he;const q=he.children;for(let Re=0;Re=0;Re--){const Ne=q[Re].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(q[Re]):null;if(Ne)return Ne}return null}_createAnchor(){const he=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,he),he.classList.add("cdk-visually-hidden"),he.classList.add("cdk-focus-trap-anchor"),he.setAttribute("aria-hidden","true"),he}_toggleAnchorTabIndex(he,q){he?q.setAttribute("tabindex","0"):q.removeAttribute("tabindex")}toggleAnchors(he){this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(he,this._startAnchor),this._toggleAnchorTabIndex(he,this._endAnchor))}_executeOnStable(he){this._ngZone.isStable?he():this._ngZone.onStable.pipe((0,R.s)(1)).subscribe(he)}}let fe=(()=>{class we{constructor(q,Re,Ne){this._checker=q,this._ngZone=Re,this._document=Ne}create(q,Re=!1){return new ce(q,this._checker,this._ngZone,this._document,Re)}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(_),t.KVO(t.SKi),t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})(),ke=(()=>{class we{get enabled(){return this.focusTrap?.enabled||!1}set enabled(q){this.focusTrap&&(this.focusTrap.enabled=q)}constructor(q,Re,Ne){this._elementRef=q,this._focusTrapFactory=Re,this._previouslyFocusedElement=null,(0,t.WQX)(w.OD).isBrowser&&(this.focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement,!0))}ngOnDestroy(){this.focusTrap?.destroy(),this._previouslyFocusedElement&&(this._previouslyFocusedElement.focus(),this._previouslyFocusedElement=null)}ngAfterContentInit(){this.focusTrap?.attachAnchors(),this.autoCapture&&this._captureFocus()}ngDoCheck(){this.focusTrap&&!this.focusTrap.hasAttached()&&this.focusTrap.attachAnchors()}ngOnChanges(q){const Re=q.autoCapture;Re&&!Re.firstChange&&this.autoCapture&&this.focusTrap?.hasAttached()&&this._captureFocus()}_captureFocus(){this._previouslyFocusedElement=(0,w.vc)(),this.focusTrap?.focusInitialElementWhenReady()}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.rXU(t.aKT),t.rXU(fe),t.rXU(e.qQ))};static#t=this.\u0275dir=t.FsC({type:we,selectors:[["","cdkTrapFocus",""]],inputs:{enabled:[2,"cdkTrapFocus","enabled",t.L39],autoCapture:[2,"cdkTrapFocusAutoCapture","autoCapture",t.L39]},exportAs:["cdkTrapFocus"],standalone:!0,features:[t.GFd,t.OA$]})}return we})();function _t(we){return 0===we.buttons||0===we.detail}function at(we){const he=we.touches&&we.touches[0]||we.changedTouches&&we.changedTouches[0];return!(!he||-1!==he.identifier||null!=he.radiusX&&1!==he.radiusX||null!=he.radiusY&&1!==he.radiusY)}const pt=new t.nKC("cdk-input-modality-detector-options"),Xt={ignoreKeys:[I.A$,I.W3,I.eg,I.Ge,I.FX]},ue=(0,w.BQ)({passive:!0,capture:!0});let Ie=(()=>{class we{get mostRecentModality(){return this._modality.value}constructor(q,Re,Ne,gt){this._platform=q,this._mostRecentTarget=null,this._modality=new x.t(null),this._lastTouchMs=0,this._onKeydown=$e=>{this._options?.ignoreKeys?.some(Fe=>Fe===$e.keyCode)||(this._modality.next("keyboard"),this._mostRecentTarget=(0,w.Fb)($e))},this._onMousedown=$e=>{Date.now()-this._lastTouchMs<650||(this._modality.next(_t($e)?"keyboard":"mouse"),this._mostRecentTarget=(0,w.Fb)($e))},this._onTouchstart=$e=>{at($e)?this._modality.next("keyboard"):(this._lastTouchMs=Date.now(),this._modality.next("touch"),this._mostRecentTarget=(0,w.Fb)($e))},this._options={...Xt,...gt},this.modalityDetected=this._modality.pipe((0,z.i)(1)),this.modalityChanged=this.modalityDetected.pipe((0,W.F)()),q.isBrowser&&Re.runOutsideAngular(()=>{Ne.addEventListener("keydown",this._onKeydown,ue),Ne.addEventListener("mousedown",this._onMousedown,ue),Ne.addEventListener("touchstart",this._onTouchstart,ue)})}ngOnDestroy(){this._modality.complete(),this._platform.isBrowser&&(document.removeEventListener("keydown",this._onKeydown,ue),document.removeEventListener("mousedown",this._onMousedown,ue),document.removeEventListener("touchstart",this._onTouchstart,ue))}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(w.OD),t.KVO(t.SKi),t.KVO(e.qQ),t.KVO(pt,8))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})();const He=new t.nKC("liveAnnouncerElement",{providedIn:"root",factory:function Xe(){return null}}),yt=new t.nKC("LIVE_ANNOUNCER_DEFAULT_OPTIONS");let Ye=0,rt=(()=>{class we{constructor(q,Re,Ne,gt){this._ngZone=Re,this._defaultOptions=gt,this._document=Ne,this._liveElement=q||this._createLiveElement()}announce(q,...Re){const Ne=this._defaultOptions;let gt,$e;return 1===Re.length&&"number"==typeof Re[0]?$e=Re[0]:[gt,$e]=Re,this.clear(),clearTimeout(this._previousTimeout),gt||(gt=Ne&&Ne.politeness?Ne.politeness:"polite"),null==$e&&Ne&&($e=Ne.duration),this._liveElement.setAttribute("aria-live",gt),this._liveElement.id&&this._exposeAnnouncerToModals(this._liveElement.id),this._ngZone.runOutsideAngular(()=>(this._currentPromise||(this._currentPromise=new Promise(Fe=>this._currentResolve=Fe)),clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=q,"number"==typeof $e&&(this._previousTimeout=setTimeout(()=>this.clear(),$e)),this._currentResolve?.(),this._currentPromise=this._currentResolve=void 0},100),this._currentPromise))}clear(){this._liveElement&&(this._liveElement.textContent="")}ngOnDestroy(){clearTimeout(this._previousTimeout),this._liveElement?.remove(),this._liveElement=null,this._currentResolve?.(),this._currentPromise=this._currentResolve=void 0}_createLiveElement(){const q="cdk-live-announcer-element",Re=this._document.getElementsByClassName(q),Ne=this._document.createElement("div");for(let gt=0;gt .cdk-overlay-container [aria-modal="true"]');for(let Ne=0;Ne{class we{constructor(q,Re,Ne,gt,$e){this._ngZone=q,this._platform=Re,this._inputModalityDetector=Ne,this._origin=null,this._windowFocused=!1,this._originFromTouchInteraction=!1,this._elementInfo=new Map,this._monitoredElementCount=0,this._rootNodeFocusListenerCount=new Map,this._windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=window.setTimeout(()=>this._windowFocused=!1)},this._stopInputModalityDetector=new S.B,this._rootNodeFocusAndBlurListener=Fe=>{for(let et=(0,w.Fb)(Fe);et;et=et.parentElement)"focus"===Fe.type?this._onFocus(Fe,et):this._onBlur(Fe,et)},this._document=gt,this._detectionMode=$e?.detectionMode||Nt.IMMEDIATE}monitor(q,Re=!1){const Ne=(0,Q.i8)(q);if(!this._platform.isBrowser||1!==Ne.nodeType)return(0,f.of)();const gt=(0,w.KT)(Ne)||this._getDocument(),$e=this._elementInfo.get(Ne);if($e)return Re&&($e.checkChildren=!0),$e.subject;const Fe={checkChildren:Re,subject:new S.B,rootNode:gt};return this._elementInfo.set(Ne,Fe),this._registerGlobalListeners(Fe),Fe.subject}stopMonitoring(q){const Re=(0,Q.i8)(q),Ne=this._elementInfo.get(Re);Ne&&(Ne.subject.complete(),this._setClasses(Re),this._elementInfo.delete(Re),this._removeGlobalListeners(Ne))}focusVia(q,Re,Ne){const gt=(0,Q.i8)(q);gt===this._getDocument().activeElement?this._getClosestElementsInfo(gt).forEach(([Fe,Ge])=>this._originChanged(Fe,Re,Ge)):(this._setOrigin(Re),"function"==typeof gt.focus&>.focus(Ne))}ngOnDestroy(){this._elementInfo.forEach((q,Re)=>this.stopMonitoring(Re))}_getDocument(){return this._document||document}_getWindow(){return this._getDocument().defaultView||window}_getFocusOrigin(q){return this._origin?this._originFromTouchInteraction?this._shouldBeAttributedToTouch(q)?"touch":"program":this._origin:this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:q&&this._isLastInteractionFromInputLabel(q)?"mouse":"program"}_shouldBeAttributedToTouch(q){return this._detectionMode===Nt.EVENTUAL||!!q?.contains(this._inputModalityDetector._mostRecentTarget)}_setClasses(q,Re){q.classList.toggle("cdk-focused",!!Re),q.classList.toggle("cdk-touch-focused","touch"===Re),q.classList.toggle("cdk-keyboard-focused","keyboard"===Re),q.classList.toggle("cdk-mouse-focused","mouse"===Re),q.classList.toggle("cdk-program-focused","program"===Re)}_setOrigin(q,Re=!1){this._ngZone.runOutsideAngular(()=>{this._origin=q,this._originFromTouchInteraction="touch"===q&&Re,this._detectionMode===Nt.IMMEDIATE&&(clearTimeout(this._originTimeoutId),this._originTimeoutId=setTimeout(()=>this._origin=null,this._originFromTouchInteraction?650:1))})}_onFocus(q,Re){const Ne=this._elementInfo.get(Re),gt=(0,w.Fb)(q);!Ne||!Ne.checkChildren&&Re!==gt||this._originChanged(Re,this._getFocusOrigin(gt),Ne)}_onBlur(q,Re){const Ne=this._elementInfo.get(Re);!Ne||Ne.checkChildren&&q.relatedTarget instanceof Node&&Re.contains(q.relatedTarget)||(this._setClasses(Re),this._emitOrigin(Ne,null))}_emitOrigin(q,Re){q.subject.observers.length&&this._ngZone.run(()=>q.subject.next(Re))}_registerGlobalListeners(q){if(!this._platform.isBrowser)return;const Re=q.rootNode,Ne=this._rootNodeFocusListenerCount.get(Re)||0;Ne||this._ngZone.runOutsideAngular(()=>{Re.addEventListener("focus",this._rootNodeFocusAndBlurListener,Vt),Re.addEventListener("blur",this._rootNodeFocusAndBlurListener,Vt)}),this._rootNodeFocusListenerCount.set(Re,Ne+1),1==++this._monitoredElementCount&&(this._ngZone.runOutsideAngular(()=>{this._getWindow().addEventListener("focus",this._windowFocusListener)}),this._inputModalityDetector.modalityDetected.pipe((0,$.Q)(this._stopInputModalityDetector)).subscribe(gt=>{this._setOrigin(gt,!0)}))}_removeGlobalListeners(q){const Re=q.rootNode;if(this._rootNodeFocusListenerCount.has(Re)){const Ne=this._rootNodeFocusListenerCount.get(Re);Ne>1?this._rootNodeFocusListenerCount.set(Re,Ne-1):(Re.removeEventListener("focus",this._rootNodeFocusAndBlurListener,Vt),Re.removeEventListener("blur",this._rootNodeFocusAndBlurListener,Vt),this._rootNodeFocusListenerCount.delete(Re))}--this._monitoredElementCount||(this._getWindow().removeEventListener("focus",this._windowFocusListener),this._stopInputModalityDetector.next(),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._originTimeoutId))}_originChanged(q,Re,Ne){this._setClasses(q,Re),this._emitOrigin(Ne,Re),this._lastFocusOrigin=Re}_getClosestElementsInfo(q){const Re=[];return this._elementInfo.forEach((Ne,gt)=>{(gt===q||Ne.checkChildren&>.contains(q))&&Re.push([gt,Ne])}),Re}_isLastInteractionFromInputLabel(q){const{_mostRecentTarget:Re,mostRecentModality:Ne}=this._inputModalityDetector;if("mouse"!==Ne||!Re||Re===q||"INPUT"!==q.nodeName&&"TEXTAREA"!==q.nodeName||q.disabled)return!1;const gt=q.labels;if(gt)for(let $e=0;$e{class we{constructor(q,Re){this._elementRef=q,this._focusMonitor=Re,this._focusOrigin=null,this.cdkFocusChange=new t.bkB}get focusOrigin(){return this._focusOrigin}ngAfterViewInit(){const q=this._elementRef.nativeElement;this._monitorSubscription=this._focusMonitor.monitor(q,1===q.nodeType&&q.hasAttribute("cdkMonitorSubtreeFocus")).subscribe(Re=>{this._focusOrigin=Re,this.cdkFocusChange.emit(Re)})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._monitorSubscription&&this._monitorSubscription.unsubscribe()}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.rXU(t.aKT),t.rXU(oe))};static#t=this.\u0275dir=t.FsC({type:we,selectors:[["","cdkMonitorElementFocus",""],["","cdkMonitorSubtreeFocus",""]],outputs:{cdkFocusChange:"cdkFocusChange"},exportAs:["cdkMonitorFocus"],standalone:!0})}return we})();var $t=function(we){return we[we.NONE=0]="NONE",we[we.BLACK_ON_WHITE=1]="BLACK_ON_WHITE",we[we.WHITE_ON_BLACK=2]="WHITE_ON_BLACK",we}($t||{});const zt="cdk-high-contrast-black-on-white",Jt="cdk-high-contrast-white-on-black",St="cdk-high-contrast-active";let dt=(()=>{class we{constructor(q,Re){this._platform=q,this._document=Re,this._breakpointSubscription=(0,t.WQX)(J.QP).observe("(forced-colors: active)").subscribe(()=>{this._hasCheckedHighContrastMode&&(this._hasCheckedHighContrastMode=!1,this._applyBodyHighContrastModeCssClasses())})}getHighContrastMode(){if(!this._platform.isBrowser)return $t.NONE;const q=this._document.createElement("div");q.style.backgroundColor="rgb(1,2,3)",q.style.position="absolute",this._document.body.appendChild(q);const Re=this._document.defaultView||window,Ne=Re&&Re.getComputedStyle?Re.getComputedStyle(q):null,gt=(Ne&&Ne.backgroundColor||"").replace(/ /g,"");switch(q.remove(),gt){case"rgb(0,0,0)":case"rgb(45,50,54)":case"rgb(32,32,32)":return $t.WHITE_ON_BLACK;case"rgb(255,255,255)":case"rgb(255,250,239)":return $t.BLACK_ON_WHITE}return $t.NONE}ngOnDestroy(){this._breakpointSubscription.unsubscribe()}_applyBodyHighContrastModeCssClasses(){if(!this._hasCheckedHighContrastMode&&this._platform.isBrowser&&this._document.body){const q=this._document.body.classList;q.remove(St,zt,Jt),this._hasCheckedHighContrastMode=!0;const Re=this.getHighContrastMode();Re===$t.BLACK_ON_WHITE?q.add(St,zt):Re===$t.WHITE_ON_BLACK&&q.add(St,Jt)}}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(w.OD),t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:we,factory:we.\u0275fac,providedIn:"root"})}return we})(),Ae=(()=>{class we{constructor(q){q._applyBodyHighContrastModeCssClasses()}static#e=this.\u0275fac=function(Re){return new(Re||we)(t.KVO(dt))};static#t=this.\u0275mod=t.$C({type:we});static#i=this.\u0275inj=t.G2t({imports:[j.w5]})}return we})()},8203:(Qe,te,g)=>{"use strict";g.d(te,{dS:()=>f,jI:()=>d});var e=g(4438),t=g(177);const w=new e.nKC("cdk-dir-doc",{providedIn:"root",factory:function S(){return(0,e.WQX)(t.qQ)}}),l=/^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i;let f=(()=>{class T{constructor(F){this.value="ltr",this.change=new e.bkB,F&&(this.value=function x(T){const y=T?.toLowerCase()||"";return"auto"===y&&typeof navigator<"u"&&navigator?.language?l.test(navigator.language)?"rtl":"ltr":"rtl"===y?"rtl":"ltr"}((F.body?F.body.dir:null)||(F.documentElement?F.documentElement.dir:null)||"ltr"))}ngOnDestroy(){this.change.complete()}static#e=this.\u0275fac=function(R){return new(R||T)(e.KVO(w,8))};static#t=this.\u0275prov=e.jDH({token:T,factory:T.\u0275fac,providedIn:"root"})}return T})(),d=(()=>{class T{static#e=this.\u0275fac=function(R){return new(R||T)};static#t=this.\u0275mod=e.$C({type:T});static#i=this.\u0275inj=e.G2t({})}return T})()},4085:(Qe,te,g)=>{"use strict";g.d(te,{FG:()=>l,OE:()=>w,a1:()=>x,cc:()=>I,he:()=>t,i8:()=>f,o1:()=>S});var e=g(4438);function t(d){return null!=d&&"false"!=`${d}`}function w(d,T=0){return S(d)?Number(d):T}function S(d){return!isNaN(parseFloat(d))&&!isNaN(Number(d))}function l(d){return Array.isArray(d)?d:[d]}function x(d){return null==d?"":"string"==typeof d?d:`${d}px`}function f(d){return d instanceof e.aKT?d.nativeElement:d}function I(d,T=/\s+/){const y=[];if(null!=d){const F=Array.isArray(d)?d:`${d}`.split(T);for(const R of F){const z=`${R}`.trim();z&&y.push(z)}}return y}},5024:(Qe,te,g)=>{"use strict";g.d(te,{CB:()=>R,DQ:()=>F,Q3:()=>d,qS:()=>x,sL:()=>T,xn:()=>y,y4:()=>f,zP:()=>W});var e=g(17),S=(g(4402),g(7673),g(1413)),l=g(4438);class x{}function f($){return $&&"function"==typeof $.connect&&!($ instanceof e.G)}var d=function($){return $[$.REPLACED=0]="REPLACED",$[$.INSERTED=1]="INSERTED",$[$.MOVED=2]="MOVED",$[$.REMOVED=3]="REMOVED",$}(d||{});const T=new l.nKC("_ViewRepeater");class y{applyChanges(j,Q,J,ee,ie){j.forEachOperation((ge,ae,Me)=>{let Te,de;if(null==ge.previousIndex){const D=J(ge,ae,Me);Te=Q.createEmbeddedView(D.templateRef,D.context,D.index),de=d.INSERTED}else null==Me?(Q.remove(ae),de=d.REMOVED):(Te=Q.get(ae),Q.move(Te,Me),de=d.MOVED);ie&&ie({context:Te?.context,operation:de,record:ge})})}detach(){}}class F{constructor(){this.viewCacheSize=20,this._viewCache=[]}applyChanges(j,Q,J,ee,ie){j.forEachOperation((ge,ae,Me)=>{let Te,de;null==ge.previousIndex?(Te=this._insertView(()=>J(ge,ae,Me),Me,Q,ee(ge)),de=Te?d.INSERTED:d.REPLACED):null==Me?(this._detachAndCacheView(ae,Q),de=d.REMOVED):(Te=this._moveView(ae,Me,Q,ee(ge)),de=d.MOVED),ie&&ie({context:Te?.context,operation:de,record:ge})})}detach(){for(const j of this._viewCache)j.destroy();this._viewCache=[]}_insertView(j,Q,J,ee){const ie=this._insertViewFromCache(Q,J);if(ie)return void(ie.context.$implicit=ee);const ge=j();return J.createEmbeddedView(ge.templateRef,ge.context,ge.index)}_detachAndCacheView(j,Q){const J=Q.detach(j);this._maybeCacheView(J,Q)}_moveView(j,Q,J,ee){const ie=J.get(j);return J.move(ie,Q),ie.context.$implicit=ee,ie}_maybeCacheView(j,Q){if(this._viewCache.lengththis._markSelected(ie)):this._markSelected(Q[0]),this._selectedToEmit.length=0)}select(...j){this._verifyValueAssignment(j),j.forEach(J=>this._markSelected(J));const Q=this._hasQueuedChanges();return this._emitChangeEvent(),Q}deselect(...j){this._verifyValueAssignment(j),j.forEach(J=>this._unmarkSelected(J));const Q=this._hasQueuedChanges();return this._emitChangeEvent(),Q}setSelection(...j){this._verifyValueAssignment(j);const Q=this.selected,J=new Set(j);j.forEach(ie=>this._markSelected(ie)),Q.filter(ie=>!J.has(this._getConcreteValue(ie,J))).forEach(ie=>this._unmarkSelected(ie));const ee=this._hasQueuedChanges();return this._emitChangeEvent(),ee}toggle(j){return this.isSelected(j)?this.deselect(j):this.select(j)}clear(j=!0){this._unmarkAll();const Q=this._hasQueuedChanges();return j&&this._emitChangeEvent(),Q}isSelected(j){return this._selection.has(this._getConcreteValue(j))}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(j){this._multiple&&this.selected&&this._selected.sort(j)}isMultipleSelection(){return this._multiple}_emitChangeEvent(){this._selected=null,(this._selectedToEmit.length||this._deselectedToEmit.length)&&(this.changed.next({source:this,added:this._selectedToEmit,removed:this._deselectedToEmit}),this._deselectedToEmit=[],this._selectedToEmit=[])}_markSelected(j){j=this._getConcreteValue(j),this.isSelected(j)||(this._multiple||this._unmarkAll(),this.isSelected(j)||this._selection.add(j),this._emitChanges&&this._selectedToEmit.push(j))}_unmarkSelected(j){j=this._getConcreteValue(j),this.isSelected(j)&&(this._selection.delete(j),this._emitChanges&&this._deselectedToEmit.push(j))}_unmarkAll(){this.isEmpty()||this._selection.forEach(j=>this._unmarkSelected(j))}_verifyValueAssignment(j){}_hasQueuedChanges(){return!(!this._deselectedToEmit.length&&!this._selectedToEmit.length)}_getConcreteValue(j,Q){if(this.compareWith){Q=Q??this._selection;for(let J of Q)if(this.compareWith(j,J))return J;return j}return j}}let W=(()=>{class ${constructor(){this._listeners=[]}notify(Q,J){for(let ee of this._listeners)ee(Q,J)}listen(Q){return this._listeners.push(Q),()=>{this._listeners=this._listeners.filter(J=>Q!==J)}}ngOnDestroy(){this._listeners=[]}static#e=this.\u0275fac=function(J){return new(J||$)};static#t=this.\u0275prov=l.jDH({token:$,factory:$.\u0275fac,providedIn:"root"})}return $})()},7336:(Qe,te,g)=>{"use strict";g.d(te,{A:()=>N,A$:()=>I,FX:()=>x,Fm:()=>l,G_:()=>t,Ge:()=>yt,Kp:()=>W,LE:()=>J,SJ:()=>Me,UQ:()=>j,W3:()=>f,Z:()=>Xe,_f:()=>y,bn:()=>L,dB:()=>z,eg:()=>ot,f2:()=>Te,i7:()=>Q,n6:()=>ee,rp:()=>ut,t6:()=>F,w_:()=>R,wn:()=>w,yZ:()=>$});const t=8,w=9,l=13,x=16,f=17,I=18,y=27,F=32,R=33,z=34,W=35,$=36,j=37,Q=38,J=39,ee=40,Me=46,Te=48,L=57,N=65,Xe=90,yt=91,ot=224;function ut(ii,...si){return si.length?si.some(Pi=>ii[Pi]):ii.altKey||ii.shiftKey||ii.ctrlKey||ii.metaKey}},9327:(Qe,te,g)=>{"use strict";g.d(te,{QP:()=>ee,RH:()=>z,Rp:()=>ge});var e=g(4438),t=g(4085),w=g(1413),S=g(4572),l=g(8793),x=g(1985),f=g(6697),I=g(5245),d=g(152),T=g(6354),y=g(9172),F=g(6977),R=g(6860);let z=(()=>{class ae{static#e=this.\u0275fac=function(de){return new(de||ae)};static#t=this.\u0275mod=e.$C({type:ae});static#i=this.\u0275inj=e.G2t({})}return ae})();const W=new Set;let $,j=(()=>{class ae{constructor(Te,de){this._platform=Te,this._nonce=de,this._matchMedia=this._platform.isBrowser&&window.matchMedia?window.matchMedia.bind(window):J}matchMedia(Te){return(this._platform.WEBKIT||this._platform.BLINK)&&function Q(ae,Me){if(!W.has(ae))try{$||($=document.createElement("style"),Me&&$.setAttribute("nonce",Me),$.setAttribute("type","text/css"),document.head.appendChild($)),$.sheet&&($.sheet.insertRule(`@media ${ae} {body{ }}`,0),W.add(ae))}catch(Te){console.error(Te)}}(Te,this._nonce),this._matchMedia(Te)}static#e=this.\u0275fac=function(de){return new(de||ae)(e.KVO(R.OD),e.KVO(e.BIS,8))};static#t=this.\u0275prov=e.jDH({token:ae,factory:ae.\u0275fac,providedIn:"root"})}return ae})();function J(ae){return{matches:"all"===ae||""===ae,media:ae,addListener:()=>{},removeListener:()=>{}}}let ee=(()=>{class ae{constructor(Te,de){this._mediaMatcher=Te,this._zone=de,this._queries=new Map,this._destroySubject=new w.B}ngOnDestroy(){this._destroySubject.next(),this._destroySubject.complete()}isMatched(Te){return ie((0,t.FG)(Te)).some(D=>this._registerQuery(D).mql.matches)}observe(Te){const D=ie((0,t.FG)(Te)).map(c=>this._registerQuery(c).observable);let n=(0,S.z)(D);return n=(0,l.x)(n.pipe((0,f.s)(1)),n.pipe((0,I.i)(1),(0,d.B)(0))),n.pipe((0,T.T)(c=>{const m={matches:!1,breakpoints:{}};return c.forEach(({matches:h,query:C})=>{m.matches=m.matches||h,m.breakpoints[C]=h}),m}))}_registerQuery(Te){if(this._queries.has(Te))return this._queries.get(Te);const de=this._mediaMatcher.matchMedia(Te),n={observable:new x.c(c=>{const m=h=>this._zone.run(()=>c.next(h));return de.addListener(m),()=>{de.removeListener(m)}}).pipe((0,y.Z)(de),(0,T.T)(({matches:c})=>({query:Te,matches:c})),(0,F.Q)(this._destroySubject)),mql:de};return this._queries.set(Te,n),n}static#e=this.\u0275fac=function(de){return new(de||ae)(e.KVO(j),e.KVO(e.SKi))};static#t=this.\u0275prov=e.jDH({token:ae,factory:ae.\u0275fac,providedIn:"root"})}return ae})();function ie(ae){return ae.map(Me=>Me.split(",")).reduce((Me,Te)=>Me.concat(Te)).map(Me=>Me.trim())}const ge={XSmall:"(max-width: 599.98px)",Small:"(min-width: 600px) and (max-width: 959.98px)",Medium:"(min-width: 960px) and (max-width: 1279.98px)",Large:"(min-width: 1280px) and (max-width: 1919.98px)",XLarge:"(min-width: 1920px)",Handset:"(max-width: 599.98px) and (orientation: portrait), (max-width: 959.98px) and (orientation: landscape)",Tablet:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait), (min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",Web:"(min-width: 840px) and (orientation: portrait), (min-width: 1280px) and (orientation: landscape)",HandsetPortrait:"(max-width: 599.98px) and (orientation: portrait)",TabletPortrait:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait)",WebPortrait:"(min-width: 840px) and (orientation: portrait)",HandsetLandscape:"(max-width: 959.98px) and (orientation: landscape)",TabletLandscape:"(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",WebLandscape:"(min-width: 1280px) and (orientation: landscape)"}},2318:(Qe,te,g)=>{"use strict";g.d(te,{Wv:()=>y,w5:()=>F});var e=g(4085),t=g(4438),w=g(1985),S=g(1413),l=g(6354),x=g(5964),f=g(152);let d=(()=>{class R{create(W){return typeof MutationObserver>"u"?null:new MutationObserver(W)}static#e=this.\u0275fac=function($){return new($||R)};static#t=this.\u0275prov=t.jDH({token:R,factory:R.\u0275fac,providedIn:"root"})}return R})(),T=(()=>{class R{constructor(W){this._mutationObserverFactory=W,this._observedElements=new Map}ngOnDestroy(){this._observedElements.forEach((W,$)=>this._cleanupObserver($))}observe(W){const $=(0,e.i8)(W);return new w.c(j=>{const J=this._observeElement($).pipe((0,l.T)(ee=>ee.filter(ie=>!function I(R){if("characterData"===R.type&&R.target instanceof Comment)return!0;if("childList"===R.type){for(let z=0;z!!ee.length)).subscribe(j);return()=>{J.unsubscribe(),this._unobserveElement($)}})}_observeElement(W){if(this._observedElements.has(W))this._observedElements.get(W).count++;else{const $=new S.B,j=this._mutationObserverFactory.create(Q=>$.next(Q));j&&j.observe(W,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(W,{observer:j,stream:$,count:1})}return this._observedElements.get(W).stream}_unobserveElement(W){this._observedElements.has(W)&&(this._observedElements.get(W).count--,this._observedElements.get(W).count||this._cleanupObserver(W))}_cleanupObserver(W){if(this._observedElements.has(W)){const{observer:$,stream:j}=this._observedElements.get(W);$&&$.disconnect(),j.complete(),this._observedElements.delete(W)}}static#e=this.\u0275fac=function($){return new($||R)(t.KVO(d))};static#t=this.\u0275prov=t.jDH({token:R,factory:R.\u0275fac,providedIn:"root"})}return R})(),y=(()=>{class R{get disabled(){return this._disabled}set disabled(W){this._disabled=W,this._disabled?this._unsubscribe():this._subscribe()}get debounce(){return this._debounce}set debounce(W){this._debounce=(0,e.OE)(W),this._subscribe()}constructor(W,$,j){this._contentObserver=W,this._elementRef=$,this._ngZone=j,this.event=new t.bkB,this._disabled=!1,this._currentSubscription=null}ngAfterContentInit(){!this._currentSubscription&&!this.disabled&&this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const W=this._contentObserver.observe(this._elementRef);this._ngZone.runOutsideAngular(()=>{this._currentSubscription=(this.debounce?W.pipe((0,f.B)(this.debounce)):W).subscribe(this.event)})}_unsubscribe(){this._currentSubscription?.unsubscribe()}static#e=this.\u0275fac=function($){return new($||R)(t.rXU(T),t.rXU(t.aKT),t.rXU(t.SKi))};static#t=this.\u0275dir=t.FsC({type:R,selectors:[["","cdkObserveContent",""]],inputs:{disabled:[2,"cdkObserveContentDisabled","disabled",t.L39],debounce:"debounce"},outputs:{event:"cdkObserveContent"},exportAs:["cdkObserveContent"],standalone:!0,features:[t.GFd]})}return R})(),F=(()=>{class R{static#e=this.\u0275fac=function($){return new($||R)};static#t=this.\u0275mod=t.$C({type:R});static#i=this.\u0275inj=t.G2t({providers:[d]})}return R})()},6969:(Qe,te,g)=>{"use strict";g.d(te,{WB:()=>Ze,$Q:()=>pe,rW:()=>ne,hJ:()=>mt,rR:()=>D,Sf:()=>r,z_:()=>pt,yY:()=>v});var e=g(5542),t=g(177),w=g(4438),S=g(4085),l=g(6860),x=g(5964),f=g(6697),I=g(6977),d=g(9974),T=g(4360),F=g(8203),R=g(6939),z=g(1413),W=g(8359),$=g(7786),j=g(7336);const Q=(0,l.CZ)();class J{constructor(ue,Ie){this._viewportRuler=ue,this._previousHTMLStyles={top:"",left:""},this._isEnabled=!1,this._document=Ie}attach(){}enable(){if(this._canBeEnabled()){const ue=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=ue.style.left||"",this._previousHTMLStyles.top=ue.style.top||"",ue.style.left=(0,S.a1)(-this._previousScrollPosition.left),ue.style.top=(0,S.a1)(-this._previousScrollPosition.top),ue.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}}disable(){if(this._isEnabled){const ue=this._document.documentElement,He=ue.style,Xe=this._document.body.style,yt=He.scrollBehavior||"",Ye=Xe.scrollBehavior||"";this._isEnabled=!1,He.left=this._previousHTMLStyles.left,He.top=this._previousHTMLStyles.top,ue.classList.remove("cdk-global-scrollblock"),Q&&(He.scrollBehavior=Xe.scrollBehavior="auto"),window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),Q&&(He.scrollBehavior=yt,Xe.scrollBehavior=Ye)}}_canBeEnabled(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;const Ie=this._document.body,He=this._viewportRuler.getViewportSize();return Ie.scrollHeight>He.height||Ie.scrollWidth>He.width}}class ie{constructor(ue,Ie,He,Xe){this._scrollDispatcher=ue,this._ngZone=Ie,this._viewportRuler=He,this._config=Xe,this._scrollSubscription=null,this._detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}attach(ue){this._overlayRef=ue}enable(){if(this._scrollSubscription)return;const ue=this._scrollDispatcher.scrolled(0).pipe((0,x.p)(Ie=>!Ie||!this._overlayRef.overlayElement.contains(Ie.getElementRef().nativeElement)));this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=ue.subscribe(()=>{const Ie=this._viewportRuler.getViewportScrollPosition().top;Math.abs(Ie-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=ue.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}class ge{enable(){}disable(){}attach(){}}function ae(ye,ue){return ue.some(Ie=>ye.bottomIe.bottom||ye.rightIe.right)}function Me(ye,ue){return ue.some(Ie=>ye.topIe.bottom||ye.leftIe.right)}class Te{constructor(ue,Ie,He,Xe){this._scrollDispatcher=ue,this._viewportRuler=Ie,this._ngZone=He,this._config=Xe,this._scrollSubscription=null}attach(ue){this._overlayRef=ue}enable(){this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe(()=>{if(this._overlayRef.updatePosition(),this._config&&this._config.autoClose){const Ie=this._overlayRef.overlayElement.getBoundingClientRect(),{width:He,height:Xe}=this._viewportRuler.getViewportSize();ae(Ie,[{width:He,height:Xe,bottom:Xe,right:He,top:0,left:0}])&&(this.disable(),this._ngZone.run(()=>this._overlayRef.detach()))}}))}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}let de=(()=>{class ye{constructor(Ie,He,Xe,yt){this._scrollDispatcher=Ie,this._viewportRuler=He,this._ngZone=Xe,this.noop=()=>new ge,this.close=Ye=>new ie(this._scrollDispatcher,this._ngZone,this._viewportRuler,Ye),this.block=()=>new J(this._viewportRuler,this._document),this.reposition=Ye=>new Te(this._scrollDispatcher,this._viewportRuler,this._ngZone,Ye),this._document=yt}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(e.R),w.KVO(e.Xj),w.KVO(w.SKi),w.KVO(t.qQ))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();class D{constructor(ue){if(this.scrollStrategy=new ge,this.panelClass="",this.hasBackdrop=!1,this.backdropClass="cdk-overlay-dark-backdrop",this.disposeOnNavigation=!1,ue){const Ie=Object.keys(ue);for(const He of Ie)void 0!==ue[He]&&(this[He]=ue[He])}}}class m{constructor(ue,Ie){this.connectionPair=ue,this.scrollableViewProperties=Ie}}let k=(()=>{class ye{constructor(Ie){this._attachedOverlays=[],this._document=Ie}ngOnDestroy(){this.detach()}add(Ie){this.remove(Ie),this._attachedOverlays.push(Ie)}remove(Ie){const He=this._attachedOverlays.indexOf(Ie);He>-1&&this._attachedOverlays.splice(He,1),0===this._attachedOverlays.length&&this.detach()}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(t.qQ))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),L=(()=>{class ye extends k{constructor(Ie,He){super(Ie),this._ngZone=He,this._keydownListener=Xe=>{const yt=this._attachedOverlays;for(let Ye=yt.length-1;Ye>-1;Ye--)if(yt[Ye]._keydownEvents.observers.length>0){const rt=yt[Ye]._keydownEvents;this._ngZone?this._ngZone.run(()=>rt.next(Xe)):rt.next(Xe);break}}}add(Ie){super.add(Ie),this._isAttached||(this._ngZone?this._ngZone.runOutsideAngular(()=>this._document.body.addEventListener("keydown",this._keydownListener)):this._document.body.addEventListener("keydown",this._keydownListener),this._isAttached=!0)}detach(){this._isAttached&&(this._document.body.removeEventListener("keydown",this._keydownListener),this._isAttached=!1)}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(t.qQ),w.KVO(w.SKi,8))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),_=(()=>{class ye extends k{constructor(Ie,He,Xe){super(Ie),this._platform=He,this._ngZone=Xe,this._cursorStyleIsSet=!1,this._pointerDownListener=yt=>{this._pointerDownEventTarget=(0,l.Fb)(yt)},this._clickListener=yt=>{const Ye=(0,l.Fb)(yt),rt="click"===yt.type&&this._pointerDownEventTarget?this._pointerDownEventTarget:Ye;this._pointerDownEventTarget=null;const Yt=this._attachedOverlays.slice();for(let Nt=Yt.length-1;Nt>-1;Nt--){const Et=Yt[Nt];if(Et._outsidePointerEvents.observers.length<1||!Et.hasAttached())continue;if(Et.overlayElement.contains(Ye)||Et.overlayElement.contains(rt))break;const Vt=Et._outsidePointerEvents;this._ngZone?this._ngZone.run(()=>Vt.next(yt)):Vt.next(yt)}}}add(Ie){if(super.add(Ie),!this._isAttached){const He=this._document.body;this._ngZone?this._ngZone.runOutsideAngular(()=>this._addEventListeners(He)):this._addEventListeners(He),this._platform.IOS&&!this._cursorStyleIsSet&&(this._cursorOriginalValue=He.style.cursor,He.style.cursor="pointer",this._cursorStyleIsSet=!0),this._isAttached=!0}}detach(){if(this._isAttached){const Ie=this._document.body;Ie.removeEventListener("pointerdown",this._pointerDownListener,!0),Ie.removeEventListener("click",this._clickListener,!0),Ie.removeEventListener("auxclick",this._clickListener,!0),Ie.removeEventListener("contextmenu",this._clickListener,!0),this._platform.IOS&&this._cursorStyleIsSet&&(Ie.style.cursor=this._cursorOriginalValue,this._cursorStyleIsSet=!1),this._isAttached=!1}}_addEventListeners(Ie){Ie.addEventListener("pointerdown",this._pointerDownListener,!0),Ie.addEventListener("click",this._clickListener,!0),Ie.addEventListener("auxclick",this._clickListener,!0),Ie.addEventListener("contextmenu",this._clickListener,!0)}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(t.qQ),w.KVO(l.OD),w.KVO(w.SKi,8))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),r=(()=>{class ye{constructor(Ie,He){this._platform=He,this._document=Ie}ngOnDestroy(){this._containerElement?.remove()}getContainerElement(){return this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const Ie="cdk-overlay-container";if(this._platform.isBrowser||(0,l.v8)()){const Xe=this._document.querySelectorAll(`.${Ie}[platform="server"], .${Ie}[platform="test"]`);for(let yt=0;ytthis._backdropClick.next(Vt),this._backdropTransitionendHandler=Vt=>{this._disposeBackdrop(Vt.target)},this._keydownEvents=new z.B,this._outsidePointerEvents=new z.B,Xe.scrollStrategy&&(this._scrollStrategy=Xe.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=Xe.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropElement}get hostElement(){return this._host}attach(ue){!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host);const Ie=this._portalOutlet.attach(ue);return this._positionStrategy&&this._positionStrategy.attach(this),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._ngZone.onStable.pipe((0,f.s)(1)).subscribe(()=>{this.hasAttached()&&this.updatePosition()}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&(this._locationChanges=this._location.subscribe(()=>this.dispose())),this._outsideClickDispatcher.add(this),"function"==typeof Ie?.onDestroy&&Ie.onDestroy(()=>{this.hasAttached()&&this._ngZone.runOutsideAngular(()=>Promise.resolve().then(()=>this.detach()))}),Ie}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const ue=this._portalOutlet.detach();return this._detachments.next(),this._keyboardDispatcher.remove(this),this._detachContentWhenStable(),this._locationChanges.unsubscribe(),this._outsideClickDispatcher.remove(this),ue}dispose(){const ue=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this._disposeBackdrop(this._backdropElement),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._outsidePointerEvents.complete(),this._outsideClickDispatcher.remove(this),this._host?.remove(),this._previousHostParent=this._pane=this._host=null,ue&&this._detachments.next(),this._detachments.complete()}hasAttached(){return this._portalOutlet.hasAttached()}backdropClick(){return this._backdropClick}attachments(){return this._attachments}detachments(){return this._detachments}keydownEvents(){return this._keydownEvents}outsidePointerEvents(){return this._outsidePointerEvents}getConfig(){return this._config}updatePosition(){this._positionStrategy&&this._positionStrategy.apply()}updatePositionStrategy(ue){ue!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=ue,this.hasAttached()&&(ue.attach(this),this.updatePosition()))}updateSize(ue){this._config={...this._config,...ue},this._updateElementSize()}setDirection(ue){this._config={...this._config,direction:ue},this._updateElementDirection()}addPanelClass(ue){this._pane&&this._toggleClasses(this._pane,ue,!0)}removePanelClass(ue){this._pane&&this._toggleClasses(this._pane,ue,!1)}getDirection(){const ue=this._config.direction;return ue?"string"==typeof ue?ue:ue.value:"ltr"}updateScrollStrategy(ue){ue!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=ue,this.hasAttached()&&(ue.attach(this),ue.enable()))}_updateElementDirection(){this._host.setAttribute("dir",this.getDirection())}_updateElementSize(){if(!this._pane)return;const ue=this._pane.style;ue.width=(0,S.a1)(this._config.width),ue.height=(0,S.a1)(this._config.height),ue.minWidth=(0,S.a1)(this._config.minWidth),ue.minHeight=(0,S.a1)(this._config.minHeight),ue.maxWidth=(0,S.a1)(this._config.maxWidth),ue.maxHeight=(0,S.a1)(this._config.maxHeight)}_togglePointerEvents(ue){this._pane.style.pointerEvents=ue?"":"none"}_attachBackdrop(){const ue="cdk-overlay-backdrop-showing";this._backdropElement=this._document.createElement("div"),this._backdropElement.classList.add("cdk-overlay-backdrop"),this._animationsDisabled&&this._backdropElement.classList.add("cdk-overlay-backdrop-noop-animation"),this._config.backdropClass&&this._toggleClasses(this._backdropElement,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropElement,this._host),this._backdropElement.addEventListener("click",this._backdropClickHandler),!this._animationsDisabled&&typeof requestAnimationFrame<"u"?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{this._backdropElement&&this._backdropElement.classList.add(ue)})}):this._backdropElement.classList.add(ue)}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){const ue=this._backdropElement;if(ue){if(this._animationsDisabled)return void this._disposeBackdrop(ue);ue.classList.remove("cdk-overlay-backdrop-showing"),this._ngZone.runOutsideAngular(()=>{ue.addEventListener("transitionend",this._backdropTransitionendHandler)}),ue.style.pointerEvents="none",this._backdropTimeout=this._ngZone.runOutsideAngular(()=>setTimeout(()=>{this._disposeBackdrop(ue)},500))}}_toggleClasses(ue,Ie,He){const Xe=(0,S.FG)(Ie||[]).filter(yt=>!!yt);Xe.length&&(He?ue.classList.add(...Xe):ue.classList.remove(...Xe))}_detachContentWhenStable(){this._ngZone.runOutsideAngular(()=>{const ue=this._ngZone.onStable.pipe((0,I.Q)((0,$.h)(this._attachments,this._detachments))).subscribe(()=>{(!this._pane||!this._host||0===this._pane.children.length)&&(this._pane&&this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!1),this._host&&this._host.parentElement&&(this._previousHostParent=this._host.parentElement,this._host.remove()),ue.unsubscribe())})})}_disposeScrollStrategy(){const ue=this._scrollStrategy;ue&&(ue.disable(),ue.detach&&ue.detach())}_disposeBackdrop(ue){ue&&(ue.removeEventListener("click",this._backdropClickHandler),ue.removeEventListener("transitionend",this._backdropTransitionendHandler),ue.remove(),this._backdropElement===ue&&(this._backdropElement=null)),this._backdropTimeout&&(clearTimeout(this._backdropTimeout),this._backdropTimeout=void 0)}}const V="cdk-overlay-connected-position-bounding-box",N=/([A-Za-z%]+)$/;class ne{get positions(){return this._preferredPositions}constructor(ue,Ie,He,Xe,yt){this._viewportRuler=Ie,this._document=He,this._platform=Xe,this._overlayContainer=yt,this._lastBoundingBoxSize={width:0,height:0},this._isPushed=!1,this._canPush=!0,this._growAfterOpen=!1,this._hasFlexibleDimensions=!0,this._positionLocked=!1,this._viewportMargin=0,this._scrollables=[],this._preferredPositions=[],this._positionChanges=new z.B,this._resizeSubscription=W.yU.EMPTY,this._offsetX=0,this._offsetY=0,this._appliedPanelClasses=[],this.positionChanges=this._positionChanges,this.setOrigin(ue)}attach(ue){this._validatePositions(),ue.hostElement.classList.add(V),this._overlayRef=ue,this._boundingBox=ue.hostElement,this._pane=ue.overlayElement,this._isDisposed=!1,this._isInitialRender=!0,this._lastPosition=null,this._resizeSubscription.unsubscribe(),this._resizeSubscription=this._viewportRuler.change().subscribe(()=>{this._isInitialRender=!0,this.apply()})}apply(){if(this._isDisposed||!this._platform.isBrowser)return;if(!this._isInitialRender&&this._positionLocked&&this._lastPosition)return void this.reapplyLastPosition();this._clearPanelClasses(),this._resetOverlayElementStyles(),this._resetBoundingBoxStyles(),this._viewportRect=this._getNarrowedViewportRect(),this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const ue=this._originRect,Ie=this._overlayRect,He=this._viewportRect,Xe=this._containerRect,yt=[];let Ye;for(let rt of this._preferredPositions){let Yt=this._getOriginPoint(ue,Xe,rt),Nt=this._getOverlayPoint(Yt,Ie,rt),Et=this._getOverlayFit(Nt,Ie,He,rt);if(Et.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(rt,Yt);this._canFitWithFlexibleDimensions(Et,Nt,He)?yt.push({position:rt,origin:Yt,overlayRect:Ie,boundingBoxRect:this._calculateBoundingBoxRect(Yt,rt)}):(!Ye||Ye.overlayFit.visibleAreaYt&&(Yt=Et,rt=Nt)}return this._isPushed=!1,void this._applyPosition(rt.position,rt.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(Ye.position,Ye.originPoint);this._applyPosition(Ye.position,Ye.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&Ee(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(V),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(this._isDisposed||!this._platform.isBrowser)return;const ue=this._lastPosition;if(ue){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const Ie=this._getOriginPoint(this._originRect,this._containerRect,ue);this._applyPosition(ue,Ie)}else this.apply()}withScrollableContainers(ue){return this._scrollables=ue,this}withPositions(ue){return this._preferredPositions=ue,-1===ue.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(ue){return this._viewportMargin=ue,this}withFlexibleDimensions(ue=!0){return this._hasFlexibleDimensions=ue,this}withGrowAfterOpen(ue=!0){return this._growAfterOpen=ue,this}withPush(ue=!0){return this._canPush=ue,this}withLockedPosition(ue=!0){return this._positionLocked=ue,this}setOrigin(ue){return this._origin=ue,this}withDefaultOffsetX(ue){return this._offsetX=ue,this}withDefaultOffsetY(ue){return this._offsetY=ue,this}withTransformOriginOn(ue){return this._transformOriginSelector=ue,this}_getOriginPoint(ue,Ie,He){let Xe,yt;if("center"==He.originX)Xe=ue.left+ue.width/2;else{const Ye=this._isRtl()?ue.right:ue.left,rt=this._isRtl()?ue.left:ue.right;Xe="start"==He.originX?Ye:rt}return Ie.left<0&&(Xe-=Ie.left),yt="center"==He.originY?ue.top+ue.height/2:"top"==He.originY?ue.top:ue.bottom,Ie.top<0&&(yt-=Ie.top),{x:Xe,y:yt}}_getOverlayPoint(ue,Ie,He){let Xe,yt;return Xe="center"==He.overlayX?-Ie.width/2:"start"===He.overlayX?this._isRtl()?-Ie.width:0:this._isRtl()?0:-Ie.width,yt="center"==He.overlayY?-Ie.height/2:"top"==He.overlayY?0:-Ie.height,{x:ue.x+Xe,y:ue.y+yt}}_getOverlayFit(ue,Ie,He,Xe){const yt=qe(Ie);let{x:Ye,y:rt}=ue,Yt=this._getOffset(Xe,"x"),Nt=this._getOffset(Xe,"y");Yt&&(Ye+=Yt),Nt&&(rt+=Nt);let oe=0-rt,tt=rt+yt.height-He.height,$t=this._subtractOverflows(yt.width,0-Ye,Ye+yt.width-He.width),zt=this._subtractOverflows(yt.height,oe,tt),Jt=$t*zt;return{visibleArea:Jt,isCompletelyWithinViewport:yt.width*yt.height===Jt,fitsInViewportVertically:zt===yt.height,fitsInViewportHorizontally:$t==yt.width}}_canFitWithFlexibleDimensions(ue,Ie,He){if(this._hasFlexibleDimensions){const Xe=He.bottom-Ie.y,yt=He.right-Ie.x,Ye=ze(this._overlayRef.getConfig().minHeight),rt=ze(this._overlayRef.getConfig().minWidth);return(ue.fitsInViewportVertically||null!=Ye&&Ye<=Xe)&&(ue.fitsInViewportHorizontally||null!=rt&&rt<=yt)}return!1}_pushOverlayOnScreen(ue,Ie,He){if(this._previousPushAmount&&this._positionLocked)return{x:ue.x+this._previousPushAmount.x,y:ue.y+this._previousPushAmount.y};const Xe=qe(Ie),yt=this._viewportRect,Ye=Math.max(ue.x+Xe.width-yt.width,0),rt=Math.max(ue.y+Xe.height-yt.height,0),Yt=Math.max(yt.top-He.top-ue.y,0),Nt=Math.max(yt.left-He.left-ue.x,0);let Et=0,Vt=0;return Et=Xe.width<=yt.width?Nt||-Ye:ue.x$t&&!this._isInitialRender&&!this._growAfterOpen&&(Ye=ue.y-$t/2)}if("end"===Ie.overlayX&&!Xe||"start"===Ie.overlayX&&Xe)oe=He.width-ue.x+2*this._viewportMargin,Et=ue.x-this._viewportMargin;else if("start"===Ie.overlayX&&!Xe||"end"===Ie.overlayX&&Xe)Vt=ue.x,Et=He.right-ue.x;else{const tt=Math.min(He.right-ue.x+He.left,ue.x),$t=this._lastBoundingBoxSize.width;Et=2*tt,Vt=ue.x-tt,Et>$t&&!this._isInitialRender&&!this._growAfterOpen&&(Vt=ue.x-$t/2)}return{top:Ye,left:Vt,bottom:rt,right:oe,width:Et,height:yt}}_setBoundingBoxStyles(ue,Ie){const He=this._calculateBoundingBoxRect(ue,Ie);!this._isInitialRender&&!this._growAfterOpen&&(He.height=Math.min(He.height,this._lastBoundingBoxSize.height),He.width=Math.min(He.width,this._lastBoundingBoxSize.width));const Xe={};if(this._hasExactPosition())Xe.top=Xe.left="0",Xe.bottom=Xe.right=Xe.maxHeight=Xe.maxWidth="",Xe.width=Xe.height="100%";else{const yt=this._overlayRef.getConfig().maxHeight,Ye=this._overlayRef.getConfig().maxWidth;Xe.height=(0,S.a1)(He.height),Xe.top=(0,S.a1)(He.top),Xe.bottom=(0,S.a1)(He.bottom),Xe.width=(0,S.a1)(He.width),Xe.left=(0,S.a1)(He.left),Xe.right=(0,S.a1)(He.right),Xe.alignItems="center"===Ie.overlayX?"center":"end"===Ie.overlayX?"flex-end":"flex-start",Xe.justifyContent="center"===Ie.overlayY?"center":"bottom"===Ie.overlayY?"flex-end":"flex-start",yt&&(Xe.maxHeight=(0,S.a1)(yt)),Ye&&(Xe.maxWidth=(0,S.a1)(Ye))}this._lastBoundingBoxSize=He,Ee(this._boundingBox.style,Xe)}_resetBoundingBoxStyles(){Ee(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})}_resetOverlayElementStyles(){Ee(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})}_setOverlayElementStyles(ue,Ie){const He={},Xe=this._hasExactPosition(),yt=this._hasFlexibleDimensions,Ye=this._overlayRef.getConfig();if(Xe){const Et=this._viewportRuler.getViewportScrollPosition();Ee(He,this._getExactOverlayY(Ie,ue,Et)),Ee(He,this._getExactOverlayX(Ie,ue,Et))}else He.position="static";let rt="",Yt=this._getOffset(Ie,"x"),Nt=this._getOffset(Ie,"y");Yt&&(rt+=`translateX(${Yt}px) `),Nt&&(rt+=`translateY(${Nt}px)`),He.transform=rt.trim(),Ye.maxHeight&&(Xe?He.maxHeight=(0,S.a1)(Ye.maxHeight):yt&&(He.maxHeight="")),Ye.maxWidth&&(Xe?He.maxWidth=(0,S.a1)(Ye.maxWidth):yt&&(He.maxWidth="")),Ee(this._pane.style,He)}_getExactOverlayY(ue,Ie,He){let Xe={top:"",bottom:""},yt=this._getOverlayPoint(Ie,this._overlayRect,ue);return this._isPushed&&(yt=this._pushOverlayOnScreen(yt,this._overlayRect,He)),"bottom"===ue.overlayY?Xe.bottom=this._document.documentElement.clientHeight-(yt.y+this._overlayRect.height)+"px":Xe.top=(0,S.a1)(yt.y),Xe}_getExactOverlayX(ue,Ie,He){let Ye,Xe={left:"",right:""},yt=this._getOverlayPoint(Ie,this._overlayRect,ue);return this._isPushed&&(yt=this._pushOverlayOnScreen(yt,this._overlayRect,He)),Ye=this._isRtl()?"end"===ue.overlayX?"left":"right":"end"===ue.overlayX?"right":"left","right"===Ye?Xe.right=this._document.documentElement.clientWidth-(yt.x+this._overlayRect.width)+"px":Xe.left=(0,S.a1)(yt.x),Xe}_getScrollVisibility(){const ue=this._getOriginRect(),Ie=this._pane.getBoundingClientRect(),He=this._scrollables.map(Xe=>Xe.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:Me(ue,He),isOriginOutsideView:ae(ue,He),isOverlayClipped:Me(Ie,He),isOverlayOutsideView:ae(Ie,He)}}_subtractOverflows(ue,...Ie){return Ie.reduce((He,Xe)=>He-Math.max(Xe,0),ue)}_getNarrowedViewportRect(){const ue=this._document.documentElement.clientWidth,Ie=this._document.documentElement.clientHeight,He=this._viewportRuler.getViewportScrollPosition();return{top:He.top+this._viewportMargin,left:He.left+this._viewportMargin,right:He.left+ue-this._viewportMargin,bottom:He.top+Ie-this._viewportMargin,width:ue-2*this._viewportMargin,height:Ie-2*this._viewportMargin}}_isRtl(){return"rtl"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(ue,Ie){return"x"===Ie?null==ue.offsetX?this._offsetX:ue.offsetX:null==ue.offsetY?this._offsetY:ue.offsetY}_validatePositions(){}_addPanelClasses(ue){this._pane&&(0,S.FG)(ue).forEach(Ie=>{""!==Ie&&-1===this._appliedPanelClasses.indexOf(Ie)&&(this._appliedPanelClasses.push(Ie),this._pane.classList.add(Ie))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(ue=>{this._pane.classList.remove(ue)}),this._appliedPanelClasses=[])}_getOriginRect(){const ue=this._origin;if(ue instanceof w.aKT)return ue.nativeElement.getBoundingClientRect();if(ue instanceof Element)return ue.getBoundingClientRect();const Ie=ue.width||0,He=ue.height||0;return{top:ue.y,bottom:ue.y+He,left:ue.x,right:ue.x+Ie,height:He,width:Ie}}}function Ee(ye,ue){for(let Ie in ue)ue.hasOwnProperty(Ie)&&(ye[Ie]=ue[Ie]);return ye}function ze(ye){if("number"!=typeof ye&&null!=ye){const[ue,Ie]=ye.split(N);return Ie&&"px"!==Ie?null:parseFloat(ue)}return ye||null}function qe(ye){return{top:Math.floor(ye.top),right:Math.floor(ye.right),bottom:Math.floor(ye.bottom),left:Math.floor(ye.left),width:Math.floor(ye.width),height:Math.floor(ye.height)}}const me="cdk-global-overlay-wrapper";class ce{constructor(){this._cssPosition="static",this._topOffset="",this._bottomOffset="",this._alignItems="",this._xPosition="",this._xOffset="",this._width="",this._height="",this._isDisposed=!1}attach(ue){const Ie=ue.getConfig();this._overlayRef=ue,this._width&&!Ie.width&&ue.updateSize({width:this._width}),this._height&&!Ie.height&&ue.updateSize({height:this._height}),ue.hostElement.classList.add(me),this._isDisposed=!1}top(ue=""){return this._bottomOffset="",this._topOffset=ue,this._alignItems="flex-start",this}left(ue=""){return this._xOffset=ue,this._xPosition="left",this}bottom(ue=""){return this._topOffset="",this._bottomOffset=ue,this._alignItems="flex-end",this}right(ue=""){return this._xOffset=ue,this._xPosition="right",this}start(ue=""){return this._xOffset=ue,this._xPosition="start",this}end(ue=""){return this._xOffset=ue,this._xPosition="end",this}width(ue=""){return this._overlayRef?this._overlayRef.updateSize({width:ue}):this._width=ue,this}height(ue=""){return this._overlayRef?this._overlayRef.updateSize({height:ue}):this._height=ue,this}centerHorizontally(ue=""){return this.left(ue),this._xPosition="center",this}centerVertically(ue=""){return this.top(ue),this._alignItems="center",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const ue=this._overlayRef.overlayElement.style,Ie=this._overlayRef.hostElement.style,He=this._overlayRef.getConfig(),{width:Xe,height:yt,maxWidth:Ye,maxHeight:rt}=He,Yt=!("100%"!==Xe&&"100vw"!==Xe||Ye&&"100%"!==Ye&&"100vw"!==Ye),Nt=!("100%"!==yt&&"100vh"!==yt||rt&&"100%"!==rt&&"100vh"!==rt),Et=this._xPosition,Vt=this._xOffset,oe="rtl"===this._overlayRef.getConfig().direction;let tt="",$t="",zt="";Yt?zt="flex-start":"center"===Et?(zt="center",oe?$t=Vt:tt=Vt):oe?"left"===Et||"end"===Et?(zt="flex-end",tt=Vt):("right"===Et||"start"===Et)&&(zt="flex-start",$t=Vt):"left"===Et||"start"===Et?(zt="flex-start",tt=Vt):("right"===Et||"end"===Et)&&(zt="flex-end",$t=Vt),ue.position=this._cssPosition,ue.marginLeft=Yt?"0":tt,ue.marginTop=Nt?"0":this._topOffset,ue.marginBottom=this._bottomOffset,ue.marginRight=Yt?"0":$t,Ie.justifyContent=zt,Ie.alignItems=Nt?"flex-start":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const ue=this._overlayRef.overlayElement.style,Ie=this._overlayRef.hostElement,He=Ie.style;Ie.classList.remove(me),He.justifyContent=He.alignItems=ue.marginTop=ue.marginBottom=ue.marginLeft=ue.marginRight=ue.position="",this._overlayRef=null,this._isDisposed=!0}}let fe=(()=>{class ye{constructor(Ie,He,Xe,yt){this._viewportRuler=Ie,this._document=He,this._platform=Xe,this._overlayContainer=yt}global(){return new ce}flexibleConnectedTo(Ie){return new ne(Ie,this._viewportRuler,this._document,this._platform,this._overlayContainer)}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(e.Xj),w.KVO(t.qQ),w.KVO(l.OD),w.KVO(r))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),ke=0,mt=(()=>{class ye{constructor(Ie,He,Xe,yt,Ye,rt,Yt,Nt,Et,Vt,oe,tt){this.scrollStrategies=Ie,this._overlayContainer=He,this._componentFactoryResolver=Xe,this._positionBuilder=yt,this._keyboardDispatcher=Ye,this._injector=rt,this._ngZone=Yt,this._document=Nt,this._directionality=Et,this._location=Vt,this._outsideClickDispatcher=oe,this._animationsModuleType=tt}create(Ie){const He=this._createHostElement(),Xe=this._createPaneElement(He),yt=this._createPortalOutlet(Xe),Ye=new D(Ie);return Ye.direction=Ye.direction||this._directionality.value,new v(yt,He,Xe,Ye,this._ngZone,this._keyboardDispatcher,this._document,this._location,this._outsideClickDispatcher,"NoopAnimations"===this._animationsModuleType)}position(){return this._positionBuilder}_createPaneElement(Ie){const He=this._document.createElement("div");return He.id="cdk-overlay-"+ke++,He.classList.add("cdk-overlay-pane"),Ie.appendChild(He),He}_createHostElement(){const Ie=this._document.createElement("div");return this._overlayContainer.getContainerElement().appendChild(Ie),Ie}_createPortalOutlet(Ie){return this._appRef||(this._appRef=this._injector.get(w.o8S)),new R.aI(Ie,this._componentFactoryResolver,this._appRef,this._injector,this._document)}static#e=this.\u0275fac=function(He){return new(He||ye)(w.KVO(de),w.KVO(r),w.KVO(w.OM3),w.KVO(fe),w.KVO(L),w.KVO(w.zZn),w.KVO(w.SKi),w.KVO(t.qQ),w.KVO(F.dS),w.KVO(t.aZ),w.KVO(_),w.KVO(w.bc$,8))};static#t=this.\u0275prov=w.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();const _e=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom"},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],be=new w.nKC("cdk-connected-overlay-scroll-strategy",{providedIn:"root",factory:()=>{const ye=(0,w.WQX)(mt);return()=>ye.scrollStrategies.reposition()}});let pe=(()=>{class ye{constructor(Ie){this.elementRef=Ie}static#e=this.\u0275fac=function(He){return new(He||ye)(w.rXU(w.aKT))};static#t=this.\u0275dir=w.FsC({type:ye,selectors:[["","cdk-overlay-origin",""],["","overlay-origin",""],["","cdkOverlayOrigin",""]],exportAs:["cdkOverlayOrigin"],standalone:!0})}return ye})(),Ze=(()=>{class ye{get offsetX(){return this._offsetX}set offsetX(Ie){this._offsetX=Ie,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(Ie){this._offsetY=Ie,this._position&&this._updatePositionStrategy(this._position)}get disposeOnNavigation(){return this._disposeOnNavigation}set disposeOnNavigation(Ie){this._disposeOnNavigation=Ie}constructor(Ie,He,Xe,yt,Ye){this._overlay=Ie,this._dir=Ye,this._backdropSubscription=W.yU.EMPTY,this._attachSubscription=W.yU.EMPTY,this._detachSubscription=W.yU.EMPTY,this._positionSubscription=W.yU.EMPTY,this._disposeOnNavigation=!1,this._ngZone=(0,w.WQX)(w.SKi),this.viewportMargin=0,this.open=!1,this.disableClose=!1,this.hasBackdrop=!1,this.lockPosition=!1,this.flexibleDimensions=!1,this.growAfterOpen=!1,this.push=!1,this.backdropClick=new w.bkB,this.positionChange=new w.bkB,this.attach=new w.bkB,this.detach=new w.bkB,this.overlayKeydown=new w.bkB,this.overlayOutsideClick=new w.bkB,this._templatePortal=new R.VA(He,Xe),this._scrollStrategyFactory=yt,this.scrollStrategy=this._scrollStrategyFactory()}get overlayRef(){return this._overlayRef}get dir(){return this._dir?this._dir.value:"ltr"}ngOnDestroy(){this._attachSubscription.unsubscribe(),this._detachSubscription.unsubscribe(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this._overlayRef&&this._overlayRef.dispose()}ngOnChanges(Ie){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),Ie.origin&&this.open&&this._position.apply()),Ie.open&&(this.open?this._attachOverlay():this._detachOverlay())}_createOverlay(){(!this.positions||!this.positions.length)&&(this.positions=_e);const Ie=this._overlayRef=this._overlay.create(this._buildConfig());this._attachSubscription=Ie.attachments().subscribe(()=>this.attach.emit()),this._detachSubscription=Ie.detachments().subscribe(()=>this.detach.emit()),Ie.keydownEvents().subscribe(He=>{this.overlayKeydown.next(He),He.keyCode===j._f&&!this.disableClose&&!(0,j.rp)(He)&&(He.preventDefault(),this._detachOverlay())}),this._overlayRef.outsidePointerEvents().subscribe(He=>{const Xe=this._getOriginElement(),yt=(0,l.Fb)(He);(!Xe||Xe!==yt&&!Xe.contains(yt))&&this.overlayOutsideClick.next(He)})}_buildConfig(){const Ie=this._position=this.positionStrategy||this._createPositionStrategy(),He=new D({direction:this._dir,positionStrategy:Ie,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop,disposeOnNavigation:this.disposeOnNavigation});return(this.width||0===this.width)&&(He.width=this.width),(this.height||0===this.height)&&(He.height=this.height),(this.minWidth||0===this.minWidth)&&(He.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(He.minHeight=this.minHeight),this.backdropClass&&(He.backdropClass=this.backdropClass),this.panelClass&&(He.panelClass=this.panelClass),He}_updatePositionStrategy(Ie){const He=this.positions.map(Xe=>({originX:Xe.originX,originY:Xe.originY,overlayX:Xe.overlayX,overlayY:Xe.overlayY,offsetX:Xe.offsetX||this.offsetX,offsetY:Xe.offsetY||this.offsetY,panelClass:Xe.panelClass||void 0}));return Ie.setOrigin(this._getOrigin()).withPositions(He).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const Ie=this._overlay.position().flexibleConnectedTo(this._getOrigin());return this._updatePositionStrategy(Ie),Ie}_getOrigin(){return this.origin instanceof pe?this.origin.elementRef:this.origin}_getOriginElement(){return this.origin instanceof pe?this.origin.elementRef.nativeElement:this.origin instanceof w.aKT?this.origin.nativeElement:typeof Element<"u"&&this.origin instanceof Element?this.origin:null}_attachOverlay(){this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||this._overlayRef.attach(this._templatePortal),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe(Ie=>{this.backdropClick.emit(Ie)}):this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.positionChange.observers.length>0&&(this._positionSubscription=this._position.positionChanges.pipe(function y(ye,ue=!1){return(0,d.N)((Ie,He)=>{let Xe=0;Ie.subscribe((0,T._)(He,yt=>{const Ye=ye(yt,Xe++);(Ye||ue)&&He.next(yt),!Ye&&He.complete()}))})}(()=>this.positionChange.observers.length>0)).subscribe(Ie=>{this._ngZone.run(()=>this.positionChange.emit(Ie)),0===this.positionChange.observers.length&&this._positionSubscription.unsubscribe()}))}_detachOverlay(){this._overlayRef&&this._overlayRef.detach(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe()}static#e=this.\u0275fac=function(He){return new(He||ye)(w.rXU(mt),w.rXU(w.C4Q),w.rXU(w.c1b),w.rXU(be),w.rXU(F.dS,8))};static#t=this.\u0275dir=w.FsC({type:ye,selectors:[["","cdk-connected-overlay",""],["","connected-overlay",""],["","cdkConnectedOverlay",""]],inputs:{origin:[0,"cdkConnectedOverlayOrigin","origin"],positions:[0,"cdkConnectedOverlayPositions","positions"],positionStrategy:[0,"cdkConnectedOverlayPositionStrategy","positionStrategy"],offsetX:[0,"cdkConnectedOverlayOffsetX","offsetX"],offsetY:[0,"cdkConnectedOverlayOffsetY","offsetY"],width:[0,"cdkConnectedOverlayWidth","width"],height:[0,"cdkConnectedOverlayHeight","height"],minWidth:[0,"cdkConnectedOverlayMinWidth","minWidth"],minHeight:[0,"cdkConnectedOverlayMinHeight","minHeight"],backdropClass:[0,"cdkConnectedOverlayBackdropClass","backdropClass"],panelClass:[0,"cdkConnectedOverlayPanelClass","panelClass"],viewportMargin:[0,"cdkConnectedOverlayViewportMargin","viewportMargin"],scrollStrategy:[0,"cdkConnectedOverlayScrollStrategy","scrollStrategy"],open:[0,"cdkConnectedOverlayOpen","open"],disableClose:[0,"cdkConnectedOverlayDisableClose","disableClose"],transformOriginSelector:[0,"cdkConnectedOverlayTransformOriginOn","transformOriginSelector"],hasBackdrop:[2,"cdkConnectedOverlayHasBackdrop","hasBackdrop",w.L39],lockPosition:[2,"cdkConnectedOverlayLockPosition","lockPosition",w.L39],flexibleDimensions:[2,"cdkConnectedOverlayFlexibleDimensions","flexibleDimensions",w.L39],growAfterOpen:[2,"cdkConnectedOverlayGrowAfterOpen","growAfterOpen",w.L39],push:[2,"cdkConnectedOverlayPush","push",w.L39],disposeOnNavigation:[2,"cdkConnectedOverlayDisposeOnNavigation","disposeOnNavigation",w.L39]},outputs:{backdropClick:"backdropClick",positionChange:"positionChange",attach:"attach",detach:"detach",overlayKeydown:"overlayKeydown",overlayOutsideClick:"overlayOutsideClick"},exportAs:["cdkConnectedOverlay"],standalone:!0,features:[w.GFd,w.OA$]})}return ye})();const at={provide:be,deps:[mt],useFactory:function _t(ye){return()=>ye.scrollStrategies.reposition()}};let pt=(()=>{class ye{static#e=this.\u0275fac=function(He){return new(He||ye)};static#t=this.\u0275mod=w.$C({type:ye});static#i=this.\u0275inj=w.G2t({providers:[mt,at],imports:[F.jI,R.jc,e.E9,e.E9]})}return ye})()},6860:(Qe,te,g)=>{"use strict";g.d(te,{BD:()=>$,BQ:()=>y,CZ:()=>W,Fb:()=>ie,KT:()=>J,MU:()=>I,OD:()=>S,r5:()=>F,v8:()=>ge,vc:()=>ee});var e=g(4438),t=g(177);let w;try{w=typeof Intl<"u"&&Intl.v8BreakIterator}catch{w=!1}let x,S=(()=>{class ae{constructor(Te){this._platformId=Te,this.isBrowser=this._platformId?(0,t.UE)(this._platformId):"object"==typeof document&&!!document,this.EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent),this.TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent),this.BLINK=this.isBrowser&&!(!window.chrome&&!w)&&typeof CSS<"u"&&!this.EDGE&&!this.TRIDENT,this.WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT,this.IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!("MSStream"in window),this.FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent),this.ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT,this.SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT}static#e=this.\u0275fac=function(de){return new(de||ae)(e.KVO(e.Agw))};static#t=this.\u0275prov=e.jDH({token:ae,factory:ae.\u0275fac,providedIn:"root"})}return ae})();const f=["color","button","checkbox","date","datetime-local","email","file","hidden","image","month","number","password","radio","range","reset","search","submit","tel","text","time","url","week"];function I(){if(x)return x;if("object"!=typeof document||!document)return x=new Set(f),x;let ae=document.createElement("input");return x=new Set(f.filter(Me=>(ae.setAttribute("type",Me),ae.type===Me))),x}let d;function y(ae){return function T(){if(null==d&&typeof window<"u")try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:()=>d=!0}))}finally{d=d||!1}return d}()?ae:!!ae.capture}var F=function(ae){return ae[ae.NORMAL=0]="NORMAL",ae[ae.NEGATED=1]="NEGATED",ae[ae.INVERTED=2]="INVERTED",ae}(F||{});let R,z,j;function W(){if(null==z){if("object"!=typeof document||!document||"function"!=typeof Element||!Element)return z=!1,z;if("scrollBehavior"in document.documentElement.style)z=!0;else{const ae=Element.prototype.scrollTo;z=!!ae&&!/\{\s*\[native code\]\s*\}/.test(ae.toString())}}return z}function $(){if("object"!=typeof document||!document)return F.NORMAL;if(null==R){const ae=document.createElement("div"),Me=ae.style;ae.dir="rtl",Me.width="1px",Me.overflow="auto",Me.visibility="hidden",Me.pointerEvents="none",Me.position="absolute";const Te=document.createElement("div"),de=Te.style;de.width="2px",de.height="1px",ae.appendChild(Te),document.body.appendChild(ae),R=F.NORMAL,0===ae.scrollLeft&&(ae.scrollLeft=1,R=0===ae.scrollLeft?F.NEGATED:F.INVERTED),ae.remove()}return R}function J(ae){if(function Q(){if(null==j){const ae=typeof document<"u"?document.head:null;j=!(!ae||!ae.createShadowRoot&&!ae.attachShadow)}return j}()){const Me=ae.getRootNode?ae.getRootNode():null;if(typeof ShadowRoot<"u"&&ShadowRoot&&Me instanceof ShadowRoot)return Me}return null}function ee(){let ae=typeof document<"u"&&document?document.activeElement:null;for(;ae&&ae.shadowRoot;){const Me=ae.shadowRoot.activeElement;if(Me===ae)break;ae=Me}return ae}function ie(ae){return ae.composedPath?ae.composedPath()[0]:ae.target}function ge(){return typeof __karma__<"u"&&!!__karma__||typeof jasmine<"u"&&!!jasmine||typeof jest<"u"&&!!jest||typeof Mocha<"u"&&!!Mocha}},6939:(Qe,te,g)=>{"use strict";g.d(te,{A8:()=>T,I3:()=>J,VA:()=>y,aI:()=>W,bV:()=>j,jc:()=>ie,lb:()=>R});var e=g(4438),t=g(177);class d{attach(Me){return this._attachedHost=Me,Me.attach(this)}detach(){let Me=this._attachedHost;null!=Me&&(this._attachedHost=null,Me.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(Me){this._attachedHost=Me}}class T extends d{constructor(Me,Te,de,D,n){super(),this.component=Me,this.viewContainerRef=Te,this.injector=de,this.componentFactoryResolver=D,this.projectableNodes=n}}class y extends d{constructor(Me,Te,de,D){super(),this.templateRef=Me,this.viewContainerRef=Te,this.context=de,this.injector=D}get origin(){return this.templateRef.elementRef}attach(Me,Te=this.context){return this.context=Te,super.attach(Me)}detach(){return this.context=void 0,super.detach()}}class F extends d{constructor(Me){super(),this.element=Me instanceof e.aKT?Me.nativeElement:Me}}class R{constructor(){this._isDisposed=!1,this.attachDomPortal=null}hasAttached(){return!!this._attachedPortal}attach(Me){return Me instanceof T?(this._attachedPortal=Me,this.attachComponentPortal(Me)):Me instanceof y?(this._attachedPortal=Me,this.attachTemplatePortal(Me)):this.attachDomPortal&&Me instanceof F?(this._attachedPortal=Me,this.attachDomPortal(Me)):void 0}detach(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}dispose(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}setDisposeFn(Me){this._disposeFn=Me}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class W extends R{constructor(Me,Te,de,D,n){super(),this.outletElement=Me,this._componentFactoryResolver=Te,this._appRef=de,this._defaultInjector=D,this.attachDomPortal=c=>{const m=c.element,h=this._document.createComment("dom-portal");m.parentNode.insertBefore(h,m),this.outletElement.appendChild(m),this._attachedPortal=c,super.setDisposeFn(()=>{h.parentNode&&h.parentNode.replaceChild(m,h)})},this._document=n}attachComponentPortal(Me){const de=(Me.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(Me.component);let D;return Me.viewContainerRef?(D=Me.viewContainerRef.createComponent(de,Me.viewContainerRef.length,Me.injector||Me.viewContainerRef.injector,Me.projectableNodes||void 0),this.setDisposeFn(()=>D.destroy())):(D=de.create(Me.injector||this._defaultInjector||e.zZn.NULL),this._appRef.attachView(D.hostView),this.setDisposeFn(()=>{this._appRef.viewCount>0&&this._appRef.detachView(D.hostView),D.destroy()})),this.outletElement.appendChild(this._getComponentRootNode(D)),this._attachedPortal=Me,D}attachTemplatePortal(Me){let Te=Me.viewContainerRef,de=Te.createEmbeddedView(Me.templateRef,Me.context,{injector:Me.injector});return de.rootNodes.forEach(D=>this.outletElement.appendChild(D)),de.detectChanges(),this.setDisposeFn(()=>{let D=Te.indexOf(de);-1!==D&&Te.remove(D)}),this._attachedPortal=Me,de}dispose(){super.dispose(),this.outletElement.remove()}_getComponentRootNode(Me){return Me.hostView.rootNodes[0]}}let j=(()=>{class ae extends y{constructor(Te,de){super(Te,de)}static#e=this.\u0275fac=function(de){return new(de||ae)(e.rXU(e.C4Q),e.rXU(e.c1b))};static#t=this.\u0275dir=e.FsC({type:ae,selectors:[["","cdkPortal",""]],exportAs:["cdkPortal"],standalone:!0,features:[e.Vt3]})}return ae})(),J=(()=>{class ae extends R{constructor(Te,de,D){super(),this._componentFactoryResolver=Te,this._viewContainerRef=de,this._isInitialized=!1,this.attached=new e.bkB,this.attachDomPortal=n=>{const c=n.element,m=this._document.createComment("dom-portal");n.setAttachedHost(this),c.parentNode.insertBefore(m,c),this._getRootNode().appendChild(c),this._attachedPortal=n,super.setDisposeFn(()=>{m.parentNode&&m.parentNode.replaceChild(c,m)})},this._document=D}get portal(){return this._attachedPortal}set portal(Te){this.hasAttached()&&!Te&&!this._isInitialized||(this.hasAttached()&&super.detach(),Te&&super.attach(Te),this._attachedPortal=Te||null)}get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedRef=this._attachedPortal=null}attachComponentPortal(Te){Te.setAttachedHost(this);const de=null!=Te.viewContainerRef?Te.viewContainerRef:this._viewContainerRef,n=(Te.componentFactoryResolver||this._componentFactoryResolver).resolveComponentFactory(Te.component),c=de.createComponent(n,de.length,Te.injector||de.injector,Te.projectableNodes||void 0);return de!==this._viewContainerRef&&this._getRootNode().appendChild(c.hostView.rootNodes[0]),super.setDisposeFn(()=>c.destroy()),this._attachedPortal=Te,this._attachedRef=c,this.attached.emit(c),c}attachTemplatePortal(Te){Te.setAttachedHost(this);const de=this._viewContainerRef.createEmbeddedView(Te.templateRef,Te.context,{injector:Te.injector});return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=Te,this._attachedRef=de,this.attached.emit(de),de}_getRootNode(){const Te=this._viewContainerRef.element.nativeElement;return Te.nodeType===Te.ELEMENT_NODE?Te:Te.parentNode}static#e=this.\u0275fac=function(de){return new(de||ae)(e.rXU(e.OM3),e.rXU(e.c1b),e.rXU(t.qQ))};static#t=this.\u0275dir=e.FsC({type:ae,selectors:[["","cdkPortalOutlet",""]],inputs:{portal:[0,"cdkPortalOutlet","portal"]},outputs:{attached:"attached"},exportAs:["cdkPortalOutlet"],standalone:!0,features:[e.Vt3]})}return ae})(),ie=(()=>{class ae{static#e=this.\u0275fac=function(de){return new(de||ae)};static#t=this.\u0275mod=e.$C({type:ae});static#i=this.\u0275inj=e.G2t({})}return ae})()},5542:(Qe,te,g)=>{"use strict";g.d(te,{uv:()=>m,Gj:()=>ze,R:()=>c,E9:()=>qe,Xj:()=>C});var e=g(4085),t=g(4438),w=g(1413),S=g(7673),l=g(1985),x=g(3726),f=g(6780),I=g(8359);const d={schedule(Ke){let se=requestAnimationFrame,X=cancelAnimationFrame;const{delegate:me}=d;me&&(se=me.requestAnimationFrame,X=me.cancelAnimationFrame);const ce=se(fe=>{X=void 0,Ke(fe)});return new I.yU(()=>X?.(ce))},requestAnimationFrame(...Ke){const{delegate:se}=d;return(se?.requestAnimationFrame||requestAnimationFrame)(...Ke)},cancelAnimationFrame(...Ke){const{delegate:se}=d;return(se?.cancelAnimationFrame||cancelAnimationFrame)(...Ke)},delegate:void 0};var y=g(9687);new class F extends y.q{flush(se){this._active=!0;const X=this._scheduled;this._scheduled=void 0;const{actions:me}=this;let ce;se=se||me.shift();do{if(ce=se.execute(se.state,se.delay))break}while((se=me[0])&&se.id===X&&me.shift());if(this._active=!1,ce){for(;(se=me[0])&&se.id===X&&me.shift();)se.unsubscribe();throw ce}}}(class T extends f.R{constructor(se,X){super(se,X),this.scheduler=se,this.work=X}requestAsyncId(se,X,me=0){return null!==me&&me>0?super.requestAsyncId(se,X,me):(se.actions.push(this),se._scheduled||(se._scheduled=d.requestAnimationFrame(()=>se.flush(void 0))))}recycleAsyncId(se,X,me=0){var ce;if(null!=me?me>0:this.delay>0)return super.recycleAsyncId(se,X,me);const{actions:fe}=se;null!=X&&(null===(ce=fe[fe.length-1])||void 0===ce?void 0:ce.id)!==X&&(d.cancelAnimationFrame(X),se._scheduled=void 0)}});g(5007);var $=g(3798),j=g(5964),Q=g(6977),J=g(6860),ee=g(177),ie=g(8203);let c=(()=>{class Ke{constructor(X,me,ce){this._ngZone=X,this._platform=me,this._scrolled=new w.B,this._globalSubscription=null,this._scrolledCount=0,this.scrollContainers=new Map,this._document=ce}register(X){this.scrollContainers.has(X)||this.scrollContainers.set(X,X.elementScrolled().subscribe(()=>this._scrolled.next(X)))}deregister(X){const me=this.scrollContainers.get(X);me&&(me.unsubscribe(),this.scrollContainers.delete(X))}scrolled(X=20){return this._platform.isBrowser?new l.c(me=>{this._globalSubscription||this._addGlobalListener();const ce=X>0?this._scrolled.pipe((0,$.Z)(X)).subscribe(me):this._scrolled.subscribe(me);return this._scrolledCount++,()=>{ce.unsubscribe(),this._scrolledCount--,this._scrolledCount||this._removeGlobalListener()}}):(0,S.of)()}ngOnDestroy(){this._removeGlobalListener(),this.scrollContainers.forEach((X,me)=>this.deregister(me)),this._scrolled.complete()}ancestorScrolled(X,me){const ce=this.getAncestorScrollContainers(X);return this.scrolled(me).pipe((0,j.p)(fe=>!fe||ce.indexOf(fe)>-1))}getAncestorScrollContainers(X){const me=[];return this.scrollContainers.forEach((ce,fe)=>{this._scrollableContainsElement(fe,X)&&me.push(fe)}),me}_getWindow(){return this._document.defaultView||window}_scrollableContainsElement(X,me){let ce=(0,e.i8)(me),fe=X.getElementRef().nativeElement;do{if(ce==fe)return!0}while(ce=ce.parentElement);return!1}_addGlobalListener(){this._globalSubscription=this._ngZone.runOutsideAngular(()=>{const X=this._getWindow();return(0,x.R)(X.document,"scroll").subscribe(()=>this._scrolled.next())})}_removeGlobalListener(){this._globalSubscription&&(this._globalSubscription.unsubscribe(),this._globalSubscription=null)}static#e=this.\u0275fac=function(me){return new(me||Ke)(t.KVO(t.SKi),t.KVO(J.OD),t.KVO(ee.qQ,8))};static#t=this.\u0275prov=t.jDH({token:Ke,factory:Ke.\u0275fac,providedIn:"root"})}return Ke})(),m=(()=>{class Ke{constructor(X,me,ce,fe){this.elementRef=X,this.scrollDispatcher=me,this.ngZone=ce,this.dir=fe,this._destroyed=new w.B,this._elementScrolled=new l.c(ke=>this.ngZone.runOutsideAngular(()=>(0,x.R)(this.elementRef.nativeElement,"scroll").pipe((0,Q.Q)(this._destroyed)).subscribe(ke)))}ngOnInit(){this.scrollDispatcher.register(this)}ngOnDestroy(){this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}elementScrolled(){return this._elementScrolled}getElementRef(){return this.elementRef}scrollTo(X){const me=this.elementRef.nativeElement,ce=this.dir&&"rtl"==this.dir.value;null==X.left&&(X.left=ce?X.end:X.start),null==X.right&&(X.right=ce?X.start:X.end),null!=X.bottom&&(X.top=me.scrollHeight-me.clientHeight-X.bottom),ce&&(0,J.BD)()!=J.r5.NORMAL?(null!=X.left&&(X.right=me.scrollWidth-me.clientWidth-X.left),(0,J.BD)()==J.r5.INVERTED?X.left=X.right:(0,J.BD)()==J.r5.NEGATED&&(X.left=X.right?-X.right:X.right)):null!=X.right&&(X.left=me.scrollWidth-me.clientWidth-X.right),this._applyScrollToOptions(X)}_applyScrollToOptions(X){const me=this.elementRef.nativeElement;(0,J.CZ)()?me.scrollTo(X):(null!=X.top&&(me.scrollTop=X.top),null!=X.left&&(me.scrollLeft=X.left))}measureScrollOffset(X){const me="left",fe=this.elementRef.nativeElement;if("top"==X)return fe.scrollTop;if("bottom"==X)return fe.scrollHeight-fe.clientHeight-fe.scrollTop;const ke=this.dir&&"rtl"==this.dir.value;return"start"==X?X=ke?"right":me:"end"==X&&(X=ke?me:"right"),ke&&(0,J.BD)()==J.r5.INVERTED?X==me?fe.scrollWidth-fe.clientWidth-fe.scrollLeft:fe.scrollLeft:ke&&(0,J.BD)()==J.r5.NEGATED?X==me?fe.scrollLeft+fe.scrollWidth-fe.clientWidth:-fe.scrollLeft:X==me?fe.scrollLeft:fe.scrollWidth-fe.clientWidth-fe.scrollLeft}static#e=this.\u0275fac=function(me){return new(me||Ke)(t.rXU(t.aKT),t.rXU(c),t.rXU(t.SKi),t.rXU(ie.dS,8))};static#t=this.\u0275dir=t.FsC({type:Ke,selectors:[["","cdk-scrollable",""],["","cdkScrollable",""]],standalone:!0})}return Ke})(),C=(()=>{class Ke{constructor(X,me,ce){this._platform=X,this._change=new w.B,this._changeListener=fe=>{this._change.next(fe)},this._document=ce,me.runOutsideAngular(()=>{if(X.isBrowser){const fe=this._getWindow();fe.addEventListener("resize",this._changeListener),fe.addEventListener("orientationchange",this._changeListener)}this.change().subscribe(()=>this._viewportSize=null)})}ngOnDestroy(){if(this._platform.isBrowser){const X=this._getWindow();X.removeEventListener("resize",this._changeListener),X.removeEventListener("orientationchange",this._changeListener)}this._change.complete()}getViewportSize(){this._viewportSize||this._updateViewportSize();const X={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),X}getViewportRect(){const X=this.getViewportScrollPosition(),{width:me,height:ce}=this.getViewportSize();return{top:X.top,left:X.left,bottom:X.top+ce,right:X.left+me,height:ce,width:me}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const X=this._document,me=this._getWindow(),ce=X.documentElement,fe=ce.getBoundingClientRect();return{top:-fe.top||X.body.scrollTop||me.scrollY||ce.scrollTop||0,left:-fe.left||X.body.scrollLeft||me.scrollX||ce.scrollLeft||0}}change(X=20){return X>0?this._change.pipe((0,$.Z)(X)):this._change}_getWindow(){return this._document.defaultView||window}_updateViewportSize(){const X=this._getWindow();this._viewportSize=this._platform.isBrowser?{width:X.innerWidth,height:X.innerHeight}:{width:0,height:0}}static#e=this.\u0275fac=function(me){return new(me||Ke)(t.KVO(J.OD),t.KVO(t.SKi),t.KVO(ee.qQ,8))};static#t=this.\u0275prov=t.jDH({token:Ke,factory:Ke.\u0275fac,providedIn:"root"})}return Ke})(),ze=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=t.$C({type:Ke});static#i=this.\u0275inj=t.G2t({})}return Ke})(),qe=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=t.$C({type:Ke});static#i=this.\u0275inj=t.G2t({imports:[ie.jI,ze,ie.jI,ze]})}return Ke})()},7768:(Qe,te,g)=>{"use strict";g.d(te,{FK:()=>ie,Up:()=>J,VI:()=>Q,nb:()=>R,oX:()=>F,uY:()=>ge,v5:()=>ee,x8:()=>j});var e=g(8617),t=g(8203),w=g(7336),S=g(4438),l=g(6860),x=g(1413),f=g(7673),I=g(9172),d=g(6977);const T=["*"];function y(ae,Me){1&ae&&S.SdG(0)}let F=(()=>{class ae{constructor(Te){this._elementRef=Te}focus(){this._elementRef.nativeElement.focus()}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU(S.aKT))};static#t=this.\u0275dir=S.FsC({type:ae,selectors:[["","cdkStepHeader",""]],hostAttrs:["role","tab"],standalone:!0})}return ae})(),R=(()=>{class ae{constructor(Te){this.template=Te}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU(S.C4Q))};static#t=this.\u0275dir=S.FsC({type:ae,selectors:[["","cdkStepLabel",""]],standalone:!0})}return ae})(),z=0;const j=new S.nKC("STEPPER_GLOBAL_OPTIONS");let Q=(()=>{class ae{get completed(){return null==this._completedOverride?this._getDefaultCompleted():this._completedOverride}set completed(Te){this._completedOverride=Te}_getDefaultCompleted(){return this.stepControl?this.stepControl.valid&&this.interacted:this.interacted}get hasError(){return null==this._customError?this._getDefaultError():this._customError}set hasError(Te){this._customError=Te}_getDefaultError(){return this.stepControl&&this.stepControl.invalid&&this.interacted}constructor(Te,de){this._stepper=Te,this.interacted=!1,this.interactedStream=new S.bkB,this.editable=!0,this.optional=!1,this._completedOverride=null,this._customError=null,this._stepperOptions=de||{},this._displayDefaultIndicatorType=!1!==this._stepperOptions.displayDefaultIndicatorType}select(){this._stepper.selected=this}reset(){this.interacted=!1,null!=this._completedOverride&&(this._completedOverride=!1),null!=this._customError&&(this._customError=!1),this.stepControl&&this.stepControl.reset()}ngOnChanges(){this._stepper._stateChanged()}_markAsInteracted(){this.interacted||(this.interacted=!0,this.interactedStream.emit(this))}_showError(){return this._stepperOptions.showError??null!=this._customError}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU((0,S.Rfq)(()=>J)),S.rXU(j,8))};static#t=this.\u0275cmp=S.VBU({type:ae,selectors:[["cdk-step"]],contentQueries:function(de,D,n){if(1&de&&S.wni(n,R,5),2&de){let c;S.mGM(c=S.lsd())&&(D.stepLabel=c.first)}},viewQuery:function(de,D){if(1&de&&S.GBs(S.C4Q,7),2&de){let n;S.mGM(n=S.lsd())&&(D.content=n.first)}},inputs:{stepControl:"stepControl",label:"label",errorMessage:"errorMessage",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],state:"state",editable:[2,"editable","editable",S.L39],optional:[2,"optional","optional",S.L39],completed:[2,"completed","completed",S.L39],hasError:[2,"hasError","hasError",S.L39]},outputs:{interactedStream:"interacted"},exportAs:["cdkStep"],standalone:!0,features:[S.GFd,S.OA$,S.aNF],ngContentSelectors:T,decls:1,vars:0,template:function(de,D){1&de&&(S.NAR(),S.DNE(0,y,1,0,"ng-template"))},encapsulation:2,changeDetection:0})}return ae})(),J=(()=>{class ae{get selectedIndex(){return this._selectedIndex}set selectedIndex(Te){this.steps&&this._steps?(this._isValidIndex(Te),this.selected?._markAsInteracted(),this._selectedIndex!==Te&&!this._anyControlsInvalidOrPending(Te)&&(Te>=this._selectedIndex||this.steps.toArray()[Te].editable)&&this._updateSelectedItemIndex(Te)):this._selectedIndex=Te}get selected(){return this.steps?this.steps.toArray()[this.selectedIndex]:void 0}set selected(Te){this.selectedIndex=Te&&this.steps?this.steps.toArray().indexOf(Te):-1}get orientation(){return this._orientation}set orientation(Te){this._orientation=Te,this._keyManager&&this._keyManager.withVerticalOrientation("vertical"===Te)}constructor(Te,de,D){this._dir=Te,this._changeDetectorRef=de,this._elementRef=D,this._destroyed=new x.B,this.steps=new S.rOR,this._sortedHeaders=new S.rOR,this.linear=!1,this._selectedIndex=0,this.selectionChange=new S.bkB,this.selectedIndexChange=new S.bkB,this._orientation="horizontal",this._groupId=z++}ngAfterContentInit(){this._steps.changes.pipe((0,I.Z)(this._steps),(0,d.Q)(this._destroyed)).subscribe(Te=>{this.steps.reset(Te.filter(de=>de._stepper===this)),this.steps.notifyOnChanges()})}ngAfterViewInit(){this._stepHeader.changes.pipe((0,I.Z)(this._stepHeader),(0,d.Q)(this._destroyed)).subscribe(Te=>{this._sortedHeaders.reset(Te.toArray().sort((de,D)=>de._elementRef.nativeElement.compareDocumentPosition(D._elementRef.nativeElement)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1)),this._sortedHeaders.notifyOnChanges()}),this._keyManager=new e.Bu(this._sortedHeaders).withWrap().withHomeAndEnd().withVerticalOrientation("vertical"===this._orientation),(this._dir?this._dir.change:(0,f.of)()).pipe((0,I.Z)(this._layoutDirection()),(0,d.Q)(this._destroyed)).subscribe(Te=>this._keyManager.withHorizontalOrientation(Te)),this._keyManager.updateActiveItem(this._selectedIndex),this.steps.changes.subscribe(()=>{this.selected||(this._selectedIndex=Math.max(this._selectedIndex-1,0))}),this._isValidIndex(this._selectedIndex)||(this._selectedIndex=0)}ngOnDestroy(){this._keyManager?.destroy(),this.steps.destroy(),this._sortedHeaders.destroy(),this._destroyed.next(),this._destroyed.complete()}next(){this.selectedIndex=Math.min(this._selectedIndex+1,this.steps.length-1)}previous(){this.selectedIndex=Math.max(this._selectedIndex-1,0)}reset(){this._updateSelectedItemIndex(0),this.steps.forEach(Te=>Te.reset()),this._stateChanged()}_getStepLabelId(Te){return`cdk-step-label-${this._groupId}-${Te}`}_getStepContentId(Te){return`cdk-step-content-${this._groupId}-${Te}`}_stateChanged(){this._changeDetectorRef.markForCheck()}_getAnimationDirection(Te){const de=Te-this._selectedIndex;return de<0?"rtl"===this._layoutDirection()?"next":"previous":de>0?"rtl"===this._layoutDirection()?"previous":"next":"current"}_getIndicatorType(Te,de="number"){const D=this.steps.toArray()[Te],n=this._isCurrentStep(Te);return D._displayDefaultIndicatorType?this._getDefaultIndicatorLogic(D,n):this._getGuidelineLogic(D,n,de)}_getDefaultIndicatorLogic(Te,de){return Te._showError()&&Te.hasError&&!de?"error":!Te.completed||de?"number":Te.editable?"edit":"done"}_getGuidelineLogic(Te,de,D="number"){return Te._showError()&&Te.hasError&&!de?"error":Te.completed&&!de?"done":Te.completed&&de?D:Te.editable&&de?"edit":D}_isCurrentStep(Te){return this._selectedIndex===Te}_getFocusIndex(){return this._keyManager?this._keyManager.activeItemIndex:this._selectedIndex}_updateSelectedItemIndex(Te){const de=this.steps.toArray();this.selectionChange.emit({selectedIndex:Te,previouslySelectedIndex:this._selectedIndex,selectedStep:de[Te],previouslySelectedStep:de[this._selectedIndex]}),this._containsFocus()?this._keyManager.setActiveItem(Te):this._keyManager.updateActiveItem(Te),this._selectedIndex=Te,this.selectedIndexChange.emit(this._selectedIndex),this._stateChanged()}_onKeydown(Te){const de=(0,w.rp)(Te),D=Te.keyCode,n=this._keyManager;null==n.activeItemIndex||de||D!==w.t6&&D!==w.Fm?n.setFocusOrigin("keyboard").onKeydown(Te):(this.selectedIndex=n.activeItemIndex,Te.preventDefault())}_anyControlsInvalidOrPending(Te){return!!(this.linear&&Te>=0)&&this.steps.toArray().slice(0,Te).some(de=>{const D=de.stepControl;return(D?D.invalid||D.pending||!de.interacted:!de.completed)&&!de.optional&&!de._completedOverride})}_layoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_containsFocus(){const Te=this._elementRef.nativeElement,de=(0,l.vc)();return Te===de||Te.contains(de)}_isValidIndex(Te){return Te>-1&&(!this.steps||Te{class ae{constructor(Te){this._stepper=Te,this.type="submit"}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU(J))};static#t=this.\u0275dir=S.FsC({type:ae,selectors:[["button","cdkStepperNext",""]],hostVars:1,hostBindings:function(de,D){1&de&&S.bIt("click",function(){return D._stepper.next()}),2&de&&S.Mr5("type",D.type)},inputs:{type:"type"},standalone:!0})}return ae})(),ie=(()=>{class ae{constructor(Te){this._stepper=Te,this.type="button"}static#e=this.\u0275fac=function(de){return new(de||ae)(S.rXU(J))};static#t=this.\u0275dir=S.FsC({type:ae,selectors:[["button","cdkStepperPrevious",""]],hostVars:1,hostBindings:function(de,D){1&de&&S.bIt("click",function(){return D._stepper.previous()}),2&de&&S.Mr5("type",D.type)},inputs:{type:"type"},standalone:!0})}return ae})(),ge=(()=>{class ae{static#e=this.\u0275fac=function(de){return new(de||ae)};static#t=this.\u0275mod=S.$C({type:ae});static#i=this.\u0275inj=S.G2t({imports:[t.jI]})}return ae})()},4109:(Qe,te,g)=>{"use strict";g.d(te,{Dc:()=>C,Hy:()=>m,NL:()=>ae,Sz:()=>j,XO:()=>R,a$:()=>W,aI:()=>c,kZ:()=>z,s3:()=>D,xn:()=>Me});var e=g(5024),t=g(4402),w=g(1413),S=g(4412),l=g(7673),x=g(6697),f=g(5964),I=g(6977),d=g(4438),T=g(8203);class y{constructor(){this.expansionModel=new e.CB(!0)}toggle(L){this.expansionModel.toggle(this._trackByValue(L))}expand(L){this.expansionModel.select(this._trackByValue(L))}collapse(L){this.expansionModel.deselect(this._trackByValue(L))}isExpanded(L){return this.expansionModel.isSelected(this._trackByValue(L))}toggleDescendants(L){this.expansionModel.isSelected(this._trackByValue(L))?this.collapseDescendants(L):this.expandDescendants(L)}collapseAll(){this.expansionModel.clear()}expandDescendants(L){let _=[L];_.push(...this.getDescendants(L)),this.expansionModel.select(..._.map(r=>this._trackByValue(r)))}collapseDescendants(L){let _=[L];_.push(...this.getDescendants(L)),this.expansionModel.deselect(..._.map(r=>this._trackByValue(r)))}_trackByValue(L){return this.trackBy?this.trackBy(L):L}}class R extends y{constructor(L,_){super(),this.getChildren=L,this.options=_,this.options&&(this.trackBy=this.options.trackBy)}expandAll(){this.expansionModel.clear();const L=this.dataNodes.reduce((_,r)=>[..._,...this.getDescendants(r),r],[]);this.expansionModel.select(...L.map(_=>this._trackByValue(_)))}getDescendants(L){const _=[];return this._getDescendants(_,L),_.splice(1)}_getDescendants(L,_){L.push(_);const r=this.getChildren(_);Array.isArray(r)?r.forEach(v=>this._getDescendants(L,v)):(0,t.A)(r)&&r.pipe((0,x.s)(1),(0,f.p)(Boolean)).subscribe(v=>{for(const V of v)this._getDescendants(L,V)})}}const z=new d.nKC("CDK_TREE_NODE_OUTLET_NODE");let W=(()=>{class k{constructor(_,r){this.viewContainer=_,this._node=r}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(d.c1b),d.rXU(z,8))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["","cdkTreeNodeOutlet",""]],standalone:!0})}return k})();class ${constructor(L){this.$implicit=L}}let j=(()=>{class k{constructor(_){this.template=_}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(d.C4Q))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["","cdkTreeNodeDef",""]],inputs:{when:[0,"cdkTreeNodeDefWhen","when"]},standalone:!0})}return k})(),ae=(()=>{class k{get dataSource(){return this._dataSource}set dataSource(_){this._dataSource!==_&&this._switchDataSource(_)}constructor(_,r){this._differs=_,this._changeDetectorRef=r,this._onDestroy=new w.B,this._levels=new Map,this.viewChange=new S.t({start:0,end:Number.MAX_VALUE})}ngOnInit(){this._dataDiffer=this._differs.find([]).create(this.trackBy)}ngOnDestroy(){this._nodeOutlet.viewContainer.clear(),this.viewChange.complete(),this._onDestroy.next(),this._onDestroy.complete(),this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null)}ngAfterContentChecked(){const _=this._nodeDefs.filter(r=>!r.when);this._defaultNodeDef=_[0],this.dataSource&&this._nodeDefs&&!this._dataSubscription&&this._observeRenderChanges()}_switchDataSource(_){this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null),_||this._nodeOutlet.viewContainer.clear(),this._dataSource=_,this._nodeDefs&&this._observeRenderChanges()}_observeRenderChanges(){let _;(0,e.y4)(this._dataSource)?_=this._dataSource.connect(this):(0,t.A)(this._dataSource)?_=this._dataSource:Array.isArray(this._dataSource)&&(_=(0,l.of)(this._dataSource)),_&&(this._dataSubscription=_.pipe((0,I.Q)(this._onDestroy)).subscribe(r=>this.renderNodeChanges(r)))}renderNodeChanges(_,r=this._dataDiffer,v=this._nodeOutlet.viewContainer,V){const N=r.diff(_);N&&(N.forEachOperation((ne,Ee,ze)=>{if(null==ne.previousIndex)this.insertNode(_[ze],ze,v,V);else if(null==ze)v.remove(Ee),this._levels.delete(ne.item);else{const qe=v.get(Ee);v.move(qe,ze)}}),this._changeDetectorRef.detectChanges())}_getNodeDef(_,r){return 1===this._nodeDefs.length?this._nodeDefs.first:this._nodeDefs.find(V=>V.when&&V.when(r,_))||this._defaultNodeDef}insertNode(_,r,v,V){const N=this._getNodeDef(_,r),ne=new $(_);ne.level=this.treeControl.getLevel?this.treeControl.getLevel(_):typeof V<"u"&&this._levels.has(V)?this._levels.get(V)+1:0,this._levels.set(_,ne.level),(v||this._nodeOutlet.viewContainer).createEmbeddedView(N.template,ne,r),Me.mostRecentTreeNode&&(Me.mostRecentTreeNode.data=_)}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(d._q3),d.rXU(d.gRc))};static#t=this.\u0275cmp=d.VBU({type:k,selectors:[["cdk-tree"]],contentQueries:function(r,v,V){if(1&r&&d.wni(V,j,5),2&r){let N;d.mGM(N=d.lsd())&&(v._nodeDefs=N)}},viewQuery:function(r,v){if(1&r&&d.GBs(W,7),2&r){let V;d.mGM(V=d.lsd())&&(v._nodeOutlet=V.first)}},hostAttrs:["role","tree",1,"cdk-tree"],inputs:{dataSource:"dataSource",treeControl:"treeControl",trackBy:"trackBy"},exportAs:["cdkTree"],standalone:!0,features:[d.aNF],decls:1,vars:0,consts:[["cdkTreeNodeOutlet",""]],template:function(r,v){1&r&&d.eu8(0,0)},dependencies:[W],encapsulation:2})}return k})(),Me=(()=>{class k{get role(){return"treeitem"}set role(_){this._elementRef.nativeElement.setAttribute("role",_)}static#e=this.mostRecentTreeNode=null;get data(){return this._data}set data(_){_!==this._data&&(this._data=_,this._setRoleFromData(),this._dataChanges.next())}get isExpanded(){return this._tree.treeControl.isExpanded(this._data)}get level(){return this._tree.treeControl.getLevel?this._tree.treeControl.getLevel(this._data):this._parentNodeAriaLevel}constructor(_,r){this._elementRef=_,this._tree=r,this._destroyed=new w.B,this._dataChanges=new w.B,k.mostRecentTreeNode=this,this.role="treeitem"}ngOnInit(){this._parentNodeAriaLevel=function Te(k){let L=k.parentElement;for(;L&&!de(L);)L=L.parentElement;return L?L.classList.contains("cdk-nested-tree-node")?(0,d.Udg)(L.getAttribute("aria-level")):0:-1}(this._elementRef.nativeElement),this._elementRef.nativeElement.setAttribute("aria-level",`${this.level+1}`)}ngOnDestroy(){k.mostRecentTreeNode===this&&(k.mostRecentTreeNode=null),this._dataChanges.complete(),this._destroyed.next(),this._destroyed.complete()}focus(){this._elementRef.nativeElement.focus()}_setRoleFromData(){this.role="treeitem"}static#t=this.\u0275fac=function(r){return new(r||k)(d.rXU(d.aKT),d.rXU(ae))};static#i=this.\u0275dir=d.FsC({type:k,selectors:[["cdk-tree-node"]],hostAttrs:[1,"cdk-tree-node"],hostVars:1,hostBindings:function(r,v){2&r&&d.BMQ("aria-expanded",v.isExpanded)},inputs:{role:"role"},exportAs:["cdkTreeNode"],standalone:!0})}return k})();function de(k){const L=k.classList;return!(!L?.contains("cdk-nested-tree-node")&&!L?.contains("cdk-tree"))}let D=(()=>{class k extends Me{constructor(_,r,v){super(_,r),this._differs=v}ngAfterContentInit(){this._dataDiffer=this._differs.find([]).create(this._tree.trackBy);const _=this._tree.treeControl.getChildren(this.data);Array.isArray(_)?this.updateChildrenNodes(_):(0,t.A)(_)&&_.pipe((0,I.Q)(this._destroyed)).subscribe(r=>this.updateChildrenNodes(r)),this.nodeOutlet.changes.pipe((0,I.Q)(this._destroyed)).subscribe(()=>this.updateChildrenNodes())}ngOnInit(){super.ngOnInit()}ngOnDestroy(){this._clear(),super.ngOnDestroy()}updateChildrenNodes(_){const r=this._getNodeOutlet();_&&(this._children=_),r&&this._children?this._tree.renderNodeChanges(this._children,this._dataDiffer,r.viewContainer,this._data):this._dataDiffer.diff([])}_clear(){const _=this._getNodeOutlet();_&&(_.viewContainer.clear(),this._dataDiffer.diff([]))}_getNodeOutlet(){const _=this.nodeOutlet;return _&&_.find(r=>!r._node||r._node===this)}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(d.aKT),d.rXU(ae),d.rXU(d._q3))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["cdk-nested-tree-node"]],contentQueries:function(r,v,V){if(1&r&&d.wni(V,W,5),2&r){let N;d.mGM(N=d.lsd())&&(v.nodeOutlet=N)}},hostAttrs:[1,"cdk-nested-tree-node"],exportAs:["cdkNestedTreeNode"],standalone:!0,features:[d.Jv_([{provide:Me,useExisting:k},{provide:z,useExisting:k}]),d.Vt3]})}return k})();const n=/([A-Za-z%]+)$/;let c=(()=>{class k{get level(){return this._level}set level(_){this._setLevelInput(_)}get indent(){return this._indent}set indent(_){this._setIndentInput(_)}constructor(_,r,v,V){this._treeNode=_,this._tree=r,this._element=v,this._dir=V,this._destroyed=new w.B,this.indentUnits="px",this._indent=40,this._setPadding(),V&&V.change.pipe((0,I.Q)(this._destroyed)).subscribe(()=>this._setPadding(!0)),_._dataChanges.subscribe(()=>this._setPadding())}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_paddingIndent(){const _=this._treeNode.data&&this._tree.treeControl.getLevel?this._tree.treeControl.getLevel(this._treeNode.data):null,r=null==this._level?_:this._level;return"number"==typeof r?`${r*this._indent}${this.indentUnits}`:null}_setPadding(_=!1){const r=this._paddingIndent();if(r!==this._currentPadding||_){const v=this._element.nativeElement,V=this._dir&&"rtl"===this._dir.value?"paddingRight":"paddingLeft",N="paddingLeft"===V?"paddingRight":"paddingLeft";v.style[V]=r||"",v.style[N]="",this._currentPadding=r}}_setLevelInput(_){this._level=isNaN(_)?null:_,this._setPadding()}_setIndentInput(_){let r=_,v="px";if("string"==typeof _){const V=_.split(n);r=V[0],v=V[1]||v}this.indentUnits=v,this._indent=(0,d.Udg)(r),this._setPadding()}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(Me),d.rXU(ae),d.rXU(d.aKT),d.rXU(T.dS,8))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["","cdkTreeNodePadding",""]],inputs:{level:[2,"cdkTreeNodePadding","level",d.Udg],indent:[0,"cdkTreeNodePaddingIndent","indent"]},standalone:!0,features:[d.GFd]})}return k})(),m=(()=>{class k{constructor(_,r){this._tree=_,this._treeNode=r,this.recursive=!1}_toggle(_){this.recursive?this._tree.treeControl.toggleDescendants(this._treeNode.data):this._tree.treeControl.toggle(this._treeNode.data),_.stopPropagation()}static#e=this.\u0275fac=function(r){return new(r||k)(d.rXU(ae),d.rXU(Me))};static#t=this.\u0275dir=d.FsC({type:k,selectors:[["","cdkTreeNodeToggle",""]],hostBindings:function(r,v){1&r&&d.bIt("click",function(N){return v._toggle(N)})},inputs:{recursive:[2,"cdkTreeNodeToggleRecursive","recursive",d.L39]},standalone:!0,features:[d.GFd]})}return k})(),C=(()=>{class k{static#e=this.\u0275fac=function(r){return new(r||k)};static#t=this.\u0275mod=d.$C({type:k});static#i=this.\u0275inj=d.G2t({})}return k})()},177:(Qe,te,g)=>{"use strict";g.d(te,{AJ:()=>zo,B3:()=>Oi,GH:()=>sr,Jj:()=>ar,MD:()=>wo,N0:()=>Br,P9:()=>Ta,PV:()=>or,Pc:()=>Xr,QT:()=>w,QX:()=>Sa,Sm:()=>$,Sq:()=>je,T3:()=>jt,TG:()=>Ea,UE:()=>ao,VF:()=>l,Vy:()=>Oa,Xr:()=>Fa,YU:()=>fn,ZD:()=>S,_b:()=>zi,aZ:()=>Q,bT:()=>ut,e1:()=>$n,fG:()=>Yn,fw:()=>j,hb:()=>z,hj:()=>d,lG:()=>ho,qQ:()=>f,ux:()=>Fn,vh:()=>xo});var e=g(4438);let t=null;function w(){return t}function S(Z){t??=Z}class l{}const f=new e.nKC("");let I=(()=>{class Z{historyGo(De){throw new Error("")}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275prov=e.jDH({token:Z,factory:()=>(0,e.WQX)(T),providedIn:"platform"})}return Z})();const d=new e.nKC("");let T=(()=>{class Z extends I{constructor(){super(),this._doc=(0,e.WQX)(f),this._location=window.location,this._history=window.history}getBaseHrefFromDOM(){return w().getBaseHref(this._doc)}onPopState(De){const We=w().getGlobalEventTarget(this._doc,"window");return We.addEventListener("popstate",De,!1),()=>We.removeEventListener("popstate",De)}onHashChange(De){const We=w().getGlobalEventTarget(this._doc,"window");return We.addEventListener("hashchange",De,!1),()=>We.removeEventListener("hashchange",De)}get href(){return this._location.href}get protocol(){return this._location.protocol}get hostname(){return this._location.hostname}get port(){return this._location.port}get pathname(){return this._location.pathname}get search(){return this._location.search}get hash(){return this._location.hash}set pathname(De){this._location.pathname=De}pushState(De,We,Dt){this._history.pushState(De,We,Dt)}replaceState(De,We,Dt){this._history.replaceState(De,We,Dt)}forward(){this._history.forward()}back(){this._history.back()}historyGo(De=0){this._history.go(De)}getState(){return this._history.state}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275prov=e.jDH({token:Z,factory:()=>new Z,providedIn:"platform"})}return Z})();function y(Z,Ve){if(0==Z.length)return Ve;if(0==Ve.length)return Z;let De=0;return Z.endsWith("/")&&De++,Ve.startsWith("/")&&De++,2==De?Z+Ve.substring(1):1==De?Z+Ve:Z+"/"+Ve}function F(Z){const Ve=Z.match(/#|\?|$/),De=Ve&&Ve.index||Z.length;return Z.slice(0,De-("/"===Z[De-1]?1:0))+Z.slice(De)}function R(Z){return Z&&"?"!==Z[0]?"?"+Z:Z}let z=(()=>{class Z{historyGo(De){throw new Error("")}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275prov=e.jDH({token:Z,factory:()=>(0,e.WQX)($),providedIn:"root"})}return Z})();const W=new e.nKC("");let $=(()=>{class Z extends z{constructor(De,We){super(),this._platformLocation=De,this._removeListenerFns=[],this._baseHref=We??this._platformLocation.getBaseHrefFromDOM()??(0,e.WQX)(f).location?.origin??""}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(De){this._removeListenerFns.push(this._platformLocation.onPopState(De),this._platformLocation.onHashChange(De))}getBaseHref(){return this._baseHref}prepareExternalUrl(De){return y(this._baseHref,De)}path(De=!1){const We=this._platformLocation.pathname+R(this._platformLocation.search),Dt=this._platformLocation.hash;return Dt&&De?`${We}${Dt}`:We}pushState(De,We,Dt,ei){const pi=this.prepareExternalUrl(Dt+R(ei));this._platformLocation.pushState(De,We,pi)}replaceState(De,We,Dt,ei){const pi=this.prepareExternalUrl(Dt+R(ei));this._platformLocation.replaceState(De,We,pi)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(De=0){this._platformLocation.historyGo?.(De)}static#e=this.\u0275fac=function(We){return new(We||Z)(e.KVO(I),e.KVO(W,8))};static#t=this.\u0275prov=e.jDH({token:Z,factory:Z.\u0275fac,providedIn:"root"})}return Z})(),j=(()=>{class Z extends z{constructor(De,We){super(),this._platformLocation=De,this._baseHref="",this._removeListenerFns=[],null!=We&&(this._baseHref=We)}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(De){this._removeListenerFns.push(this._platformLocation.onPopState(De),this._platformLocation.onHashChange(De))}getBaseHref(){return this._baseHref}path(De=!1){const We=this._platformLocation.hash??"#";return We.length>0?We.substring(1):We}prepareExternalUrl(De){const We=y(this._baseHref,De);return We.length>0?"#"+We:We}pushState(De,We,Dt,ei){let pi=this.prepareExternalUrl(Dt+R(ei));0==pi.length&&(pi=this._platformLocation.pathname),this._platformLocation.pushState(De,We,pi)}replaceState(De,We,Dt,ei){let pi=this.prepareExternalUrl(Dt+R(ei));0==pi.length&&(pi=this._platformLocation.pathname),this._platformLocation.replaceState(De,We,pi)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(De=0){this._platformLocation.historyGo?.(De)}static#e=this.\u0275fac=function(We){return new(We||Z)(e.KVO(I),e.KVO(W,8))};static#t=this.\u0275prov=e.jDH({token:Z,factory:Z.\u0275fac})}return Z})(),Q=(()=>{class Z{constructor(De){this._subject=new e.bkB,this._urlChangeListeners=[],this._urlChangeSubscription=null,this._locationStrategy=De;const We=this._locationStrategy.getBaseHref();this._basePath=function ge(Z){if(new RegExp("^(https?:)?//").test(Z)){const[,De]=Z.split(/\/\/[^\/]+/);return De}return Z}(F(ie(We))),this._locationStrategy.onPopState(Dt=>{this._subject.emit({url:this.path(!0),pop:!0,state:Dt.state,type:Dt.type})})}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[]}path(De=!1){return this.normalize(this._locationStrategy.path(De))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(De,We=""){return this.path()==this.normalize(De+R(We))}normalize(De){return Z.stripTrailingSlash(function ee(Z,Ve){if(!Z||!Ve.startsWith(Z))return Ve;const De=Ve.substring(Z.length);return""===De||["/",";","?","#"].includes(De[0])?De:Ve}(this._basePath,ie(De)))}prepareExternalUrl(De){return De&&"/"!==De[0]&&(De="/"+De),this._locationStrategy.prepareExternalUrl(De)}go(De,We="",Dt=null){this._locationStrategy.pushState(Dt,"",De,We),this._notifyUrlChangeListeners(this.prepareExternalUrl(De+R(We)),Dt)}replaceState(De,We="",Dt=null){this._locationStrategy.replaceState(Dt,"",De,We),this._notifyUrlChangeListeners(this.prepareExternalUrl(De+R(We)),Dt)}forward(){this._locationStrategy.forward()}back(){this._locationStrategy.back()}historyGo(De=0){this._locationStrategy.historyGo?.(De)}onUrlChange(De){return this._urlChangeListeners.push(De),this._urlChangeSubscription??=this.subscribe(We=>{this._notifyUrlChangeListeners(We.url,We.state)}),()=>{const We=this._urlChangeListeners.indexOf(De);this._urlChangeListeners.splice(We,1),0===this._urlChangeListeners.length&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null)}}_notifyUrlChangeListeners(De="",We){this._urlChangeListeners.forEach(Dt=>Dt(De,We))}subscribe(De,We,Dt){return this._subject.subscribe({next:De,error:We,complete:Dt})}static#e=this.normalizeQueryParams=R;static#t=this.joinWithSlash=y;static#i=this.stripTrailingSlash=F;static#n=this.\u0275fac=function(We){return new(We||Z)(e.KVO(z))};static#r=this.\u0275prov=e.jDH({token:Z,factory:()=>function J(){return new Q((0,e.KVO)(z))}(),providedIn:"root"})}return Z})();function ie(Z){return Z.replace(/\/index.html$/,"")}var Me=function(Z){return Z[Z.Decimal=0]="Decimal",Z[Z.Percent=1]="Percent",Z[Z.Currency=2]="Currency",Z[Z.Scientific=3]="Scientific",Z}(Me||{}),de=function(Z){return Z[Z.Format=0]="Format",Z[Z.Standalone=1]="Standalone",Z}(de||{}),D=function(Z){return Z[Z.Narrow=0]="Narrow",Z[Z.Abbreviated=1]="Abbreviated",Z[Z.Wide=2]="Wide",Z[Z.Short=3]="Short",Z}(D||{}),n=function(Z){return Z[Z.Short=0]="Short",Z[Z.Medium=1]="Medium",Z[Z.Long=2]="Long",Z[Z.Full=3]="Full",Z}(n||{});const c={Decimal:0,Group:1,List:2,PercentSign:3,PlusSign:4,MinusSign:5,Exponential:6,SuperscriptingExponent:7,PerMille:8,Infinity:9,NaN:10,TimeSeparator:11,CurrencyDecimal:12,CurrencyGroup:13};function V(Z,Ve){return _e((0,e.H5H)(Z)[e.KH2.DateFormat],Ve)}function N(Z,Ve){return _e((0,e.H5H)(Z)[e.KH2.TimeFormat],Ve)}function ne(Z,Ve){return _e((0,e.H5H)(Z)[e.KH2.DateTimeFormat],Ve)}function Ee(Z,Ve){const De=(0,e.H5H)(Z),We=De[e.KH2.NumberSymbols][Ve];if(typeof We>"u"){if(Ve===c.CurrencyDecimal)return De[e.KH2.NumberSymbols][c.Decimal];if(Ve===c.CurrencyGroup)return De[e.KH2.NumberSymbols][c.Group]}return We}function ce(Z){if(!Z[e.KH2.ExtraData])throw new Error(`Missing extra locale data for the locale "${Z[e.KH2.LocaleId]}". Use "registerLocaleData" to load new data. See the "I18n guide" on angular.io to know more.`)}function _e(Z,Ve){for(let De=Ve;De>-1;De--)if(typeof Z[De]<"u")return Z[De];throw new Error("Locale data API: locale data undefined")}function be(Z){const[Ve,De]=Z.split(":");return{hours:+Ve,minutes:+De}}const at=/^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,pt={},Xt=/((?:[^BEGHLMOSWYZabcdhmswyz']+)|(?:'(?:[^']|'')*')|(?:G{1,5}|y{1,4}|Y{1,4}|M{1,5}|L{1,5}|w{1,2}|W{1}|d{1,2}|E{1,6}|c{1,6}|a{1,5}|b{1,5}|B{1,5}|h{1,2}|H{1,2}|m{1,2}|s{1,2}|S{1,3}|z{1,4}|Z{1,5}|O{1,4}))([\s\S]*)/;var ye=function(Z){return Z[Z.Short=0]="Short",Z[Z.ShortGMT=1]="ShortGMT",Z[Z.Long=2]="Long",Z[Z.Extended=3]="Extended",Z}(ye||{}),ue=function(Z){return Z[Z.FullYear=0]="FullYear",Z[Z.Month=1]="Month",Z[Z.Date=2]="Date",Z[Z.Hours=3]="Hours",Z[Z.Minutes=4]="Minutes",Z[Z.Seconds=5]="Seconds",Z[Z.FractionalSeconds=6]="FractionalSeconds",Z[Z.Day=7]="Day",Z}(ue||{}),Ie=function(Z){return Z[Z.DayPeriods=0]="DayPeriods",Z[Z.Days=1]="Days",Z[Z.Months=2]="Months",Z[Z.Eras=3]="Eras",Z}(Ie||{});function He(Z,Ve,De,We){let Dt=function gt(Z){if(Fe(Z))return Z;if("number"==typeof Z&&!isNaN(Z))return new Date(Z);if("string"==typeof Z){if(Z=Z.trim(),/^(\d{4}(-\d{1,2}(-\d{1,2})?)?)$/.test(Z)){const[Dt,ei=1,pi=1]=Z.split("-").map(Di=>+Di);return Xe(Dt,ei-1,pi)}const De=parseFloat(Z);if(!isNaN(Z-De))return new Date(De);let We;if(We=Z.match(at))return function $e(Z){const Ve=new Date(0);let De=0,We=0;const Dt=Z[8]?Ve.setUTCFullYear:Ve.setFullYear,ei=Z[8]?Ve.setUTCHours:Ve.setHours;Z[9]&&(De=Number(Z[9]+Z[10]),We=Number(Z[9]+Z[11])),Dt.call(Ve,Number(Z[1]),Number(Z[2])-1,Number(Z[3]));const pi=Number(Z[4]||0)-De,Di=Number(Z[5]||0)-We,an=Number(Z[6]||0),gn=Math.floor(1e3*parseFloat("0."+(Z[7]||0)));return ei.call(Ve,pi,Di,an,gn),Ve}(We)}const Ve=new Date(Z);if(!Fe(Ve))throw new Error(`Unable to convert "${Z}" into a date`);return Ve}(Z);Ve=yt(De,Ve)||Ve;let Di,pi=[];for(;Ve;){if(Di=Xt.exec(Ve),!Di){pi.push(Ve);break}{pi=pi.concat(Di.slice(1));const yn=pi.pop();if(!yn)break;Ve=yn}}let an=Dt.getTimezoneOffset();We&&(an=q(We,an),Dt=function Ne(Z,Ve,De){const We=De?-1:1,Dt=Z.getTimezoneOffset();return function Re(Z,Ve){return(Z=new Date(Z.getTime())).setMinutes(Z.getMinutes()+Ve),Z}(Z,We*(q(Ve,Dt)-Dt))}(Dt,We,!0));let gn="";return pi.forEach(yn=>{const Dn=function he(Z){if(we[Z])return we[Z];let Ve;switch(Z){case"G":case"GG":case"GGG":Ve=Vt(Ie.Eras,D.Abbreviated);break;case"GGGG":Ve=Vt(Ie.Eras,D.Wide);break;case"GGGGG":Ve=Vt(Ie.Eras,D.Narrow);break;case"y":Ve=Nt(ue.FullYear,1,0,!1,!0);break;case"yy":Ve=Nt(ue.FullYear,2,0,!0,!0);break;case"yyy":Ve=Nt(ue.FullYear,3,0,!1,!0);break;case"yyyy":Ve=Nt(ue.FullYear,4,0,!1,!0);break;case"Y":Ve=Ae(1);break;case"YY":Ve=Ae(2,!0);break;case"YYY":Ve=Ae(3);break;case"YYYY":Ve=Ae(4);break;case"M":case"L":Ve=Nt(ue.Month,1,1);break;case"MM":case"LL":Ve=Nt(ue.Month,2,1);break;case"MMM":Ve=Vt(Ie.Months,D.Abbreviated);break;case"MMMM":Ve=Vt(Ie.Months,D.Wide);break;case"MMMMM":Ve=Vt(Ie.Months,D.Narrow);break;case"LLL":Ve=Vt(Ie.Months,D.Abbreviated,de.Standalone);break;case"LLLL":Ve=Vt(Ie.Months,D.Wide,de.Standalone);break;case"LLLLL":Ve=Vt(Ie.Months,D.Narrow,de.Standalone);break;case"w":Ve=dt(1);break;case"ww":Ve=dt(2);break;case"W":Ve=dt(1,!0);break;case"d":Ve=Nt(ue.Date,1);break;case"dd":Ve=Nt(ue.Date,2);break;case"c":case"cc":Ve=Nt(ue.Day,1);break;case"ccc":Ve=Vt(Ie.Days,D.Abbreviated,de.Standalone);break;case"cccc":Ve=Vt(Ie.Days,D.Wide,de.Standalone);break;case"ccccc":Ve=Vt(Ie.Days,D.Narrow,de.Standalone);break;case"cccccc":Ve=Vt(Ie.Days,D.Short,de.Standalone);break;case"E":case"EE":case"EEE":Ve=Vt(Ie.Days,D.Abbreviated);break;case"EEEE":Ve=Vt(Ie.Days,D.Wide);break;case"EEEEE":Ve=Vt(Ie.Days,D.Narrow);break;case"EEEEEE":Ve=Vt(Ie.Days,D.Short);break;case"a":case"aa":case"aaa":Ve=Vt(Ie.DayPeriods,D.Abbreviated);break;case"aaaa":Ve=Vt(Ie.DayPeriods,D.Wide);break;case"aaaaa":Ve=Vt(Ie.DayPeriods,D.Narrow);break;case"b":case"bb":case"bbb":Ve=Vt(Ie.DayPeriods,D.Abbreviated,de.Standalone,!0);break;case"bbbb":Ve=Vt(Ie.DayPeriods,D.Wide,de.Standalone,!0);break;case"bbbbb":Ve=Vt(Ie.DayPeriods,D.Narrow,de.Standalone,!0);break;case"B":case"BB":case"BBB":Ve=Vt(Ie.DayPeriods,D.Abbreviated,de.Format,!0);break;case"BBBB":Ve=Vt(Ie.DayPeriods,D.Wide,de.Format,!0);break;case"BBBBB":Ve=Vt(Ie.DayPeriods,D.Narrow,de.Format,!0);break;case"h":Ve=Nt(ue.Hours,1,-12);break;case"hh":Ve=Nt(ue.Hours,2,-12);break;case"H":Ve=Nt(ue.Hours,1);break;case"HH":Ve=Nt(ue.Hours,2);break;case"m":Ve=Nt(ue.Minutes,1);break;case"mm":Ve=Nt(ue.Minutes,2);break;case"s":Ve=Nt(ue.Seconds,1);break;case"ss":Ve=Nt(ue.Seconds,2);break;case"S":Ve=Nt(ue.FractionalSeconds,1);break;case"SS":Ve=Nt(ue.FractionalSeconds,2);break;case"SSS":Ve=Nt(ue.FractionalSeconds,3);break;case"Z":case"ZZ":case"ZZZ":Ve=tt(ye.Short);break;case"ZZZZZ":Ve=tt(ye.Extended);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":Ve=tt(ye.ShortGMT);break;case"OOOO":case"ZZZZ":case"zzzz":Ve=tt(ye.Long);break;default:return null}return we[Z]=Ve,Ve}(yn);gn+=Dn?Dn(Dt,De,an):"''"===yn?"'":yn.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),gn}function Xe(Z,Ve,De){const We=new Date(0);return We.setFullYear(Z,Ve,De),We.setHours(0,0,0),We}function yt(Z,Ve){const De=function h(Z){return(0,e.H5H)(Z)[e.KH2.LocaleId]}(Z);if(pt[De]??={},pt[De][Ve])return pt[De][Ve];let We="";switch(Ve){case"shortDate":We=V(Z,n.Short);break;case"mediumDate":We=V(Z,n.Medium);break;case"longDate":We=V(Z,n.Long);break;case"fullDate":We=V(Z,n.Full);break;case"shortTime":We=N(Z,n.Short);break;case"mediumTime":We=N(Z,n.Medium);break;case"longTime":We=N(Z,n.Long);break;case"fullTime":We=N(Z,n.Full);break;case"short":const Dt=yt(Z,"shortTime"),ei=yt(Z,"shortDate");We=Ye(ne(Z,n.Short),[Dt,ei]);break;case"medium":const pi=yt(Z,"mediumTime"),Di=yt(Z,"mediumDate");We=Ye(ne(Z,n.Medium),[pi,Di]);break;case"long":const an=yt(Z,"longTime"),gn=yt(Z,"longDate");We=Ye(ne(Z,n.Long),[an,gn]);break;case"full":const yn=yt(Z,"fullTime"),Dn=yt(Z,"fullDate");We=Ye(ne(Z,n.Full),[yn,Dn])}return We&&(pt[De][Ve]=We),We}function Ye(Z,Ve){return Ve&&(Z=Z.replace(/\{([^}]+)}/g,function(De,We){return null!=Ve&&We in Ve?Ve[We]:De})),Z}function rt(Z,Ve,De="-",We,Dt){let ei="";(Z<0||Dt&&Z<=0)&&(Dt?Z=1-Z:(Z=-Z,ei=De));let pi=String(Z);for(;pi.length0||Di>-De)&&(Di+=De),Z===ue.Hours)0===Di&&-12===De&&(Di=12);else if(Z===ue.FractionalSeconds)return function Yt(Z,Ve){return rt(Z,3).substring(0,Ve)}(Di,Ve);const an=Ee(pi,c.MinusSign);return rt(Di,Ve,an,We,Dt)}}function Vt(Z,Ve,De=de.Format,We=!1){return function(Dt,ei){return function oe(Z,Ve,De,We,Dt,ei){switch(De){case Ie.Months:return function L(Z,Ve,De){const We=(0,e.H5H)(Z),ei=_e([We[e.KH2.MonthsFormat],We[e.KH2.MonthsStandalone]],Ve);return _e(ei,De)}(Ve,Dt,We)[Z.getMonth()];case Ie.Days:return function k(Z,Ve,De){const We=(0,e.H5H)(Z),ei=_e([We[e.KH2.DaysFormat],We[e.KH2.DaysStandalone]],Ve);return _e(ei,De)}(Ve,Dt,We)[Z.getDay()];case Ie.DayPeriods:const pi=Z.getHours(),Di=Z.getMinutes();if(ei){const gn=function fe(Z){const Ve=(0,e.H5H)(Z);return ce(Ve),(Ve[e.KH2.ExtraData][2]||[]).map(We=>"string"==typeof We?be(We):[be(We[0]),be(We[1])])}(Ve),yn=function ke(Z,Ve,De){const We=(0,e.H5H)(Z);ce(We);const ei=_e([We[e.KH2.ExtraData][0],We[e.KH2.ExtraData][1]],Ve)||[];return _e(ei,De)||[]}(Ve,Dt,We),Dn=gn.findIndex(hr=>{if(Array.isArray(hr)){const[ir,br]=hr,gr=pi>=ir.hours&&Di>=ir.minutes,Cr=pi0?Math.floor(Dt/60):Math.ceil(Dt/60);switch(Z){case ye.Short:return(Dt>=0?"+":"")+rt(pi,2,ei)+rt(Math.abs(Dt%60),2,ei);case ye.ShortGMT:return"GMT"+(Dt>=0?"+":"")+rt(pi,1,ei);case ye.Long:return"GMT"+(Dt>=0?"+":"")+rt(pi,2,ei)+":"+rt(Math.abs(Dt%60),2,ei);case ye.Extended:return 0===We?"Z":(Dt>=0?"+":"")+rt(pi,2,ei)+":"+rt(Math.abs(Dt%60),2,ei);default:throw new Error(`Unknown zone width "${Z}"`)}}}const $t=0,zt=4;function St(Z){const Ve=Z.getDay(),De=0===Ve?-3:zt-Ve;return Xe(Z.getFullYear(),Z.getMonth(),Z.getDate()+De)}function dt(Z,Ve=!1){return function(De,We){let Dt;if(Ve){const ei=new Date(De.getFullYear(),De.getMonth(),1).getDay()-1,pi=De.getDate();Dt=1+Math.floor((pi+ei)/7)}else{const ei=St(De),pi=function Jt(Z){const Ve=Xe(Z,$t,1).getDay();return Xe(Z,0,1+(Ve<=zt?zt:zt+7)-Ve)}(ei.getFullYear()),Di=ei.getTime()-pi.getTime();Dt=1+Math.round(Di/6048e5)}return rt(Dt,Z,Ee(We,c.MinusSign))}}function Ae(Z,Ve=!1){return function(De,We){return rt(St(De).getFullYear(),Z,Ee(We,c.MinusSign),Ve)}}const we={};function q(Z,Ve){Z=Z.replace(/:/g,"");const De=Date.parse("Jan 01, 1970 00:00:00 "+Z)/6e4;return isNaN(De)?Ve:De}function Fe(Z){return Z instanceof Date&&!isNaN(Z.valueOf())}const Ge=/^(\d+)?\.((\d+)(-(\d+))?)?$/;function ct(Z){const Ve=parseInt(Z);if(isNaN(Ve))throw new Error("Invalid integer literal when parsing "+Z);return Ve}function zi(Z,Ve){Ve=encodeURIComponent(Ve);for(const De of Z.split(";")){const We=De.indexOf("="),[Dt,ei]=-1==We?[De,""]:[De.slice(0,We),De.slice(We+1)];if(Dt.trim()===Ve)return decodeURIComponent(ei)}return null}const en=/\s+/,Ni=[];let fn=(()=>{class Z{constructor(De,We){this._ngEl=De,this._renderer=We,this.initialClasses=Ni,this.stateMap=new Map}set klass(De){this.initialClasses=null!=De?De.trim().split(en):Ni}set ngClass(De){this.rawClass="string"==typeof De?De.trim().split(en):De}ngDoCheck(){for(const We of this.initialClasses)this._updateState(We,!0);const De=this.rawClass;if(Array.isArray(De)||De instanceof Set)for(const We of De)this._updateState(We,!0);else if(null!=De)for(const We of Object.keys(De))this._updateState(We,!!De[We]);this._applyStateDiff()}_updateState(De,We){const Dt=this.stateMap.get(De);void 0!==Dt?(Dt.enabled!==We&&(Dt.changed=!0,Dt.enabled=We),Dt.touched=!0):this.stateMap.set(De,{enabled:We,changed:!0,touched:!0})}_applyStateDiff(){for(const De of this.stateMap){const We=De[0],Dt=De[1];Dt.changed?(this._toggleClass(We,Dt.enabled),Dt.changed=!1):Dt.touched||(Dt.enabled&&this._toggleClass(We,!1),this.stateMap.delete(We)),Dt.touched=!1}}_toggleClass(De,We){(De=De.trim()).length>0&&De.split(en).forEach(Dt=>{We?this._renderer.addClass(this._ngEl.nativeElement,Dt):this._renderer.removeClass(this._ngEl.nativeElement,Dt)})}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.aKT),e.rXU(e.sFG))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngClass",""]],inputs:{klass:[0,"class","klass"],ngClass:"ngClass"},standalone:!0})}return Z})();class re{constructor(Ve,De,We,Dt){this.$implicit=Ve,this.ngForOf=De,this.index=We,this.count=Dt}get first(){return 0===this.index}get last(){return this.index===this.count-1}get even(){return this.index%2==0}get odd(){return!this.even}}let je=(()=>{class Z{set ngForOf(De){this._ngForOf=De,this._ngForOfDirty=!0}set ngForTrackBy(De){this._trackByFn=De}get ngForTrackBy(){return this._trackByFn}constructor(De,We,Dt){this._viewContainer=De,this._template=We,this._differs=Dt,this._ngForOf=null,this._ngForOfDirty=!0,this._differ=null}set ngForTemplate(De){De&&(this._template=De)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const De=this._ngForOf;!this._differ&&De&&(this._differ=this._differs.find(De).create(this.ngForTrackBy))}if(this._differ){const De=this._differ.diff(this._ngForOf);De&&this._applyChanges(De)}}_applyChanges(De){const We=this._viewContainer;De.forEachOperation((Dt,ei,pi)=>{if(null==Dt.previousIndex)We.createEmbeddedView(this._template,new re(Dt.item,this._ngForOf,-1,-1),null===pi?void 0:pi);else if(null==pi)We.remove(null===ei?void 0:ei);else if(null!==ei){const Di=We.get(ei);We.move(Di,pi),Ce(Di,Dt)}});for(let Dt=0,ei=We.length;Dt{Ce(We.get(Dt.currentIndex),Dt)})}static ngTemplateContextGuard(De,We){return!0}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(e._q3))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"},standalone:!0})}return Z})();function Ce(Z,Ve){Z.context.$implicit=Ve.item}let ut=(()=>{class Z{constructor(De,We){this._viewContainer=De,this._context=new ii,this._thenTemplateRef=null,this._elseTemplateRef=null,this._thenViewRef=null,this._elseViewRef=null,this._thenTemplateRef=We}set ngIf(De){this._context.$implicit=this._context.ngIf=De,this._updateView()}set ngIfThen(De){si("ngIfThen",De),this._thenTemplateRef=De,this._thenViewRef=null,this._updateView()}set ngIfElse(De){si("ngIfElse",De),this._elseTemplateRef=De,this._elseViewRef=null,this._updateView()}_updateView(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))}static ngTemplateContextGuard(De,We){return!0}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b),e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"},standalone:!0})}return Z})();class ii{constructor(){this.$implicit=null,this.ngIf=null}}function si(Z,Ve){if(Ve&&!Ve.createEmbeddedView)throw new Error(`${Z} must be a TemplateRef, but received '${(0,e.Tbb)(Ve)}'.`)}class mn{constructor(Ve,De){this._viewContainerRef=Ve,this._templateRef=De,this._created=!1}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(Ve){Ve&&!this._created?this.create():!Ve&&this._created&&this.destroy()}}let Fn=(()=>{class Z{constructor(){this._defaultViews=[],this._defaultUsed=!1,this._caseCount=0,this._lastCaseCheckIndex=0,this._lastCasesMatched=!1}set ngSwitch(De){this._ngSwitch=De,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(De){this._defaultViews.push(De)}_matchCase(De){const We=De===this._ngSwitch;return this._lastCasesMatched||=We,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),We}_updateDefaultCases(De){if(this._defaultViews.length>0&&De!==this._defaultUsed){this._defaultUsed=De;for(const We of this._defaultViews)We.enforceState(De)}}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngSwitch",""]],inputs:{ngSwitch:"ngSwitch"},standalone:!0})}return Z})(),$n=(()=>{class Z{constructor(De,We,Dt){this.ngSwitch=Dt,Dt._addCase(),this._view=new mn(De,We)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(Fn,9))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngSwitchCase",""]],inputs:{ngSwitchCase:"ngSwitchCase"},standalone:!0})}return Z})(),Yn=(()=>{class Z{constructor(De,We,Dt){Dt._addDefault(new mn(De,We))}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(Fn,9))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngSwitchDefault",""]],standalone:!0})}return Z})(),Oi=(()=>{class Z{constructor(De,We,Dt){this._ngEl=De,this._differs=We,this._renderer=Dt,this._ngStyle=null,this._differ=null}set ngStyle(De){this._ngStyle=De,!this._differ&&De&&(this._differ=this._differs.find(De).create())}ngDoCheck(){if(this._differ){const De=this._differ.diff(this._ngStyle);De&&this._applyChanges(De)}}_setStyle(De,We){const[Dt,ei]=De.split("."),pi=-1===Dt.indexOf("-")?void 0:e.czy.DashCase;null!=We?this._renderer.setStyle(this._ngEl.nativeElement,Dt,ei?`${We}${ei}`:We,pi):this._renderer.removeStyle(this._ngEl.nativeElement,Dt,pi)}_applyChanges(De){De.forEachRemovedItem(We=>this._setStyle(We.key,null)),De.forEachAddedItem(We=>this._setStyle(We.key,We.currentValue)),De.forEachChangedItem(We=>this._setStyle(We.key,We.currentValue))}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.aKT),e.rXU(e.MKu),e.rXU(e.sFG))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"},standalone:!0})}return Z})(),jt=(()=>{class Z{constructor(De){this._viewContainerRef=De,this._viewRef=null,this.ngTemplateOutletContext=null,this.ngTemplateOutlet=null,this.ngTemplateOutletInjector=null}ngOnChanges(De){if(this._shouldRecreateView(De)){const We=this._viewContainerRef;if(this._viewRef&&We.remove(We.indexOf(this._viewRef)),!this.ngTemplateOutlet)return void(this._viewRef=null);const Dt=this._createContextForwardProxy();this._viewRef=We.createEmbeddedView(this.ngTemplateOutlet,Dt,{injector:this.ngTemplateOutletInjector??void 0})}}_shouldRecreateView(De){return!!De.ngTemplateOutlet||!!De.ngTemplateOutletInjector}_createContextForwardProxy(){return new Proxy({},{set:(De,We,Dt)=>!!this.ngTemplateOutletContext&&Reflect.set(this.ngTemplateOutletContext,We,Dt),get:(De,We,Dt)=>{if(this.ngTemplateOutletContext)return Reflect.get(this.ngTemplateOutletContext,We,Dt)}})}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.c1b))};static#t=this.\u0275dir=e.FsC({type:Z,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet",ngTemplateOutletInjector:"ngTemplateOutletInjector"},standalone:!0,features:[e.OA$]})}return Z})();function hi(Z,Ve){return new e.wOt(2100,!1)}class yi{createSubscription(Ve,De){return(0,e.O8t)(()=>Ve.subscribe({next:De,error:We=>{throw We}}))}dispose(Ve){(0,e.O8t)(()=>Ve.unsubscribe())}}class Vi{createSubscription(Ve,De){return Ve.then(De,We=>{throw We})}dispose(Ve){}}const ji=new Vi,rn=new yi;let ar=(()=>{class Z{constructor(De){this._latestValue=null,this.markForCheckOnValueUpdate=!0,this._subscription=null,this._obj=null,this._strategy=null,this._ref=De}ngOnDestroy(){this._subscription&&this._dispose(),this._ref=null}transform(De){if(!this._obj){if(De)try{this.markForCheckOnValueUpdate=!1,this._subscribe(De)}finally{this.markForCheckOnValueUpdate=!0}return this._latestValue}return De!==this._obj?(this._dispose(),this.transform(De)):this._latestValue}_subscribe(De){this._obj=De,this._strategy=this._selectStrategy(De),this._subscription=this._strategy.createSubscription(De,We=>this._updateLatestValue(De,We))}_selectStrategy(De){if((0,e.jNT)(De))return ji;if((0,e.zjR)(De))return rn;throw hi()}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(De,We){De===this._obj&&(this._latestValue=We,this.markForCheckOnValueUpdate&&this._ref?.markForCheck())}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.gRc,16))};static#t=this.\u0275pipe=e.EJ8({name:"async",type:Z,pure:!1,standalone:!0})}return Z})(),sr=(()=>{class Z{transform(De){if(null==De)return null;if("string"!=typeof De)throw hi();return De.toLowerCase()}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"lowercase",type:Z,pure:!0,standalone:!0})}return Z})();const nr=/(?:[0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])\S*/g;let or=(()=>{class Z{transform(De){if(null==De)return null;if("string"!=typeof De)throw hi();return De.replace(nr,We=>We[0].toUpperCase()+We.slice(1).toLowerCase())}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"titlecase",type:Z,pure:!0,standalone:!0})}return Z})(),Xr=(()=>{class Z{transform(De){if(null==De)return null;if("string"!=typeof De)throw hi();return De.toUpperCase()}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"uppercase",type:Z,pure:!0,standalone:!0})}return Z})();const zr=new e.nKC(""),Ho=new e.nKC("");let xo=(()=>{class Z{constructor(De,We,Dt){this.locale=De,this.defaultTimezone=We,this.defaultOptions=Dt}transform(De,We,Dt,ei){if(null==De||""===De||De!=De)return null;try{return He(De,We??this.defaultOptions?.dateFormat??"mediumDate",ei||this.locale,Dt??this.defaultOptions?.timezone??this.defaultTimezone??void 0)}catch(pi){throw hi()}}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.xe9,16),e.rXU(zr,24),e.rXU(Ho,24))};static#t=this.\u0275pipe=e.EJ8({name:"date",type:Z,pure:!0,standalone:!0})}return Z})(),Ea=(()=>{class Z{transform(De){return JSON.stringify(De,null,2)}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"json",type:Z,pure:!1,standalone:!0})}return Z})(),ho=(()=>{class Z{constructor(De){this.differs=De,this.keyValues=[],this.compareFn=xr}transform(De,We=xr){if(!De||!(De instanceof Map)&&"object"!=typeof De)return null;this.differ??=this.differs.find(De).create();const Dt=this.differ.diff(De),ei=We!==this.compareFn;return Dt&&(this.keyValues=[],Dt.forEachItem(pi=>{this.keyValues.push(function no(Z,Ve){return{key:Z,value:Ve}}(pi.key,pi.currentValue))})),(Dt||ei)&&(this.keyValues.sort(We),this.compareFn=We),this.keyValues}static#e=this.\u0275fac=function(We){return new(We||Z)(e.rXU(e.MKu,16))};static#t=this.\u0275pipe=e.EJ8({name:"keyvalue",type:Z,pure:!1,standalone:!0})}return Z})();function xr(Z,Ve){const De=Z.key,We=Ve.key;if(De===We)return 0;if(void 0===De)return 1;if(void 0===We)return-1;if(null===De)return 1;if(null===We)return-1;if("string"==typeof De&&"string"==typeof We)return De{class Z{constructor(De){this._locale=De}transform(De,We,Dt){if(!function hn(Z){return!(null==Z||""===Z||Z!=Z)}(De))return null;Dt||=this._locale;try{return function Li(Z,Ve,De){return function fi(Z,Ve,De,We,Dt,ei,pi=!1){let Di="",an=!1;if(isFinite(Z)){let gn=function Mt(Z){let We,Dt,ei,pi,Di,Ve=Math.abs(Z)+"",De=0;for((Dt=Ve.indexOf("."))>-1&&(Ve=Ve.replace(".","")),(ei=Ve.search(/e/i))>0?(Dt<0&&(Dt=ei),Dt+=+Ve.slice(ei+1),Ve=Ve.substring(0,ei)):Dt<0&&(Dt=Ve.length),ei=0;"0"===Ve.charAt(ei);ei++);if(ei===(Di=Ve.length))We=[0],Dt=1;else{for(Di--;"0"===Ve.charAt(Di);)Di--;for(Dt-=ei,We=[],pi=0;ei<=Di;ei++,pi++)We[pi]=Number(Ve.charAt(ei))}return Dt>22&&(We=We.splice(0,21),De=Dt-1,Dt=1),{digits:We,exponent:De,integerLen:Dt}}(Z);pi&&(gn=function Qt(Z){if(0===Z.digits[0])return Z;const Ve=Z.digits.length-Z.integerLen;return Z.exponent?Z.exponent+=2:(0===Ve?Z.digits.push(0,0):1===Ve&&Z.digits.push(0),Z.integerLen+=2),Z}(gn));let yn=Ve.minInt,Dn=Ve.minFrac,hr=Ve.maxFrac;if(ei){const Hn=ei.match(Ge);if(null===Hn)throw new Error(`${ei} is not a valid digit info`);const Bi=Hn[1],sn=Hn[3],fr=Hn[5];null!=Bi&&(yn=ct(Bi)),null!=sn&&(Dn=ct(sn)),null!=fr?hr=ct(fr):null!=sn&&Dn>hr&&(hr=Dn)}!function it(Z,Ve,De){if(Ve>De)throw new Error(`The minimum number of digits after fraction (${Ve}) is higher than the maximum (${De}).`);let We=Z.digits,Dt=We.length-Z.integerLen;const ei=Math.min(Math.max(Ve,Dt),De);let pi=ei+Z.integerLen,Di=We[pi];if(pi>0){We.splice(Math.max(Z.integerLen,pi));for(let Dn=pi;Dn=5)if(pi-1<0){for(let Dn=0;Dn>pi;Dn--)We.unshift(0),Z.integerLen++;We.unshift(1),Z.integerLen++}else We[pi-1]++;for(;Dt=gn?br.pop():an=!1),hr>=10?1:0},0);yn&&(We.unshift(yn),Z.integerLen++)}(gn,Dn,hr);let ir=gn.digits,br=gn.integerLen;const gr=gn.exponent;let Cr=[];for(an=ir.every(Hn=>!Hn);br0?Cr=ir.splice(br,ir.length):(Cr=ir,ir=[0]);const sa=[];for(ir.length>=Ve.lgSize&&sa.unshift(ir.splice(-Ve.lgSize,ir.length).join(""));ir.length>Ve.gSize;)sa.unshift(ir.splice(-Ve.gSize,ir.length).join(""));ir.length&&sa.unshift(ir.join("")),Di=sa.join(Ee(De,We)),Cr.length&&(Di+=Ee(De,Dt)+Cr.join("")),gr&&(Di+=Ee(De,c.Exponential)+"+"+gr)}else Di=Ee(De,c.Infinity);return Di=Z<0&&!an?Ve.negPre+Di+Ve.negSuf:Ve.posPre+Di+Ve.posSuf,Di}(Z,function Zi(Z,Ve="-"){const De={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},We=Z.split(";"),Dt=We[0],ei=We[1],pi=-1!==Dt.indexOf(".")?Dt.split("."):[Dt.substring(0,Dt.lastIndexOf("0")+1),Dt.substring(Dt.lastIndexOf("0")+1)],Di=pi[0],an=pi[1]||"";De.posPre=Di.substring(0,Di.indexOf("#"));for(let yn=0;yn{class Z{transform(De,We,Dt){if(null==De)return null;if(!this.supports(De))throw hi();return De.slice(We,Dt)}supports(De){return"string"==typeof De||Array.isArray(De)}static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275pipe=e.EJ8({name:"slice",type:Z,pure:!1,standalone:!0})}return Z})(),wo=(()=>{class Z{static#e=this.\u0275fac=function(We){return new(We||Z)};static#t=this.\u0275mod=e.$C({type:Z});static#i=this.\u0275inj=e.G2t({})}return Z})();const zo="browser",da="server";function ao(Z){return Z===zo}function Oa(Z){return Z===da}let Fa=(()=>{class Z{static#e=this.\u0275prov=(0,e.jDH)({token:Z,providedIn:"root",factory:()=>ao((0,e.WQX)(e.Agw))?new Ro((0,e.WQX)(f),window):new ha})}return Z})();class Ro{constructor(Ve,De){this.document=Ve,this.window=De,this.offset=()=>[0,0]}setOffset(Ve){this.offset=Array.isArray(Ve)?()=>Ve:Ve}getScrollPosition(){return[this.window.scrollX,this.window.scrollY]}scrollToPosition(Ve){this.window.scrollTo(Ve[0],Ve[1])}scrollToAnchor(Ve){const De=function kr(Z,Ve){const De=Z.getElementById(Ve)||Z.getElementsByName(Ve)[0];if(De)return De;if("function"==typeof Z.createTreeWalker&&Z.body&&"function"==typeof Z.body.attachShadow){const We=Z.createTreeWalker(Z.body,NodeFilter.SHOW_ELEMENT);let Dt=We.currentNode;for(;Dt;){const ei=Dt.shadowRoot;if(ei){const pi=ei.getElementById(Ve)||ei.querySelector(`[name="${Ve}"]`);if(pi)return pi}Dt=We.nextNode()}}return null}(this.document,Ve);De&&(this.scrollToElement(De),De.focus())}setHistoryScrollRestoration(Ve){this.window.history.scrollRestoration=Ve}scrollToElement(Ve){const De=Ve.getBoundingClientRect(),We=De.left+this.window.pageXOffset,Dt=De.top+this.window.pageYOffset,ei=this.offset();this.window.scrollTo(We-ei[0],Dt-ei[1])}}class ha{setOffset(Ve){}getScrollPosition(){return[0,0]}scrollToPosition(Ve){}scrollToAnchor(Ve){}setHistoryScrollRestoration(Ve){}}class Br{}},1626:(Qe,te,g)=>{"use strict";g.d(te,{Nl:()=>ge,Qq:()=>ne,a7:()=>mt,q1:()=>Pt});var e=g(467),t=g(4438),w=g(7673),S=g(1985),l=g(2806),x=g(274),f=g(5964),I=g(6354),d=g(980),T=g(5558),y=g(177);class F{}class R{}class z{constructor(re){this.normalizedNames=new Map,this.lazyUpdate=null,re?"string"==typeof re?this.lazyInit=()=>{this.headers=new Map,re.split("\n").forEach(je=>{const Ce=je.indexOf(":");if(Ce>0){const ot=je.slice(0,Ce),ut=ot.toLowerCase(),ii=je.slice(Ce+1).trim();this.maybeSetNormalizedName(ot,ut),this.headers.has(ut)?this.headers.get(ut).push(ii):this.headers.set(ut,[ii])}})}:typeof Headers<"u"&&re instanceof Headers?(this.headers=new Map,re.forEach((je,Ce)=>{this.setHeaderEntries(Ce,je)})):this.lazyInit=()=>{this.headers=new Map,Object.entries(re).forEach(([je,Ce])=>{this.setHeaderEntries(je,Ce)})}:this.headers=new Map}has(re){return this.init(),this.headers.has(re.toLowerCase())}get(re){this.init();const je=this.headers.get(re.toLowerCase());return je&&je.length>0?je[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(re){return this.init(),this.headers.get(re.toLowerCase())||null}append(re,je){return this.clone({name:re,value:je,op:"a"})}set(re,je){return this.clone({name:re,value:je,op:"s"})}delete(re,je){return this.clone({name:re,value:je,op:"d"})}maybeSetNormalizedName(re,je){this.normalizedNames.has(je)||this.normalizedNames.set(je,re)}init(){this.lazyInit&&(this.lazyInit instanceof z?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(re=>this.applyUpdate(re)),this.lazyUpdate=null))}copyFrom(re){re.init(),Array.from(re.headers.keys()).forEach(je=>{this.headers.set(je,re.headers.get(je)),this.normalizedNames.set(je,re.normalizedNames.get(je))})}clone(re){const je=new z;return je.lazyInit=this.lazyInit&&this.lazyInit instanceof z?this.lazyInit:this,je.lazyUpdate=(this.lazyUpdate||[]).concat([re]),je}applyUpdate(re){const je=re.name.toLowerCase();switch(re.op){case"a":case"s":let Ce=re.value;if("string"==typeof Ce&&(Ce=[Ce]),0===Ce.length)return;this.maybeSetNormalizedName(re.name,je);const ot=("a"===re.op?this.headers.get(je):void 0)||[];ot.push(...Ce),this.headers.set(je,ot);break;case"d":const ut=re.value;if(ut){let ii=this.headers.get(je);if(!ii)return;ii=ii.filter(si=>-1===ut.indexOf(si)),0===ii.length?(this.headers.delete(je),this.normalizedNames.delete(je)):this.headers.set(je,ii)}else this.headers.delete(je),this.normalizedNames.delete(je)}}setHeaderEntries(re,je){const Ce=(Array.isArray(je)?je:[je]).map(ut=>ut.toString()),ot=re.toLowerCase();this.headers.set(ot,Ce),this.maybeSetNormalizedName(re,ot)}forEach(re){this.init(),Array.from(this.normalizedNames.keys()).forEach(je=>re(this.normalizedNames.get(je),this.headers.get(je)))}}class ${encodeKey(re){return ee(re)}encodeValue(re){return ee(re)}decodeKey(re){return decodeURIComponent(re)}decodeValue(re){return decodeURIComponent(re)}}const Q=/%(\d[a-f0-9])/gi,J={40:"@","3A":":",24:"$","2C":",","3B":";","3D":"=","3F":"?","2F":"/"};function ee(bt){return encodeURIComponent(bt).replace(Q,(re,je)=>J[je]??re)}function ie(bt){return`${bt}`}class ge{constructor(re={}){if(this.updates=null,this.cloneFrom=null,this.encoder=re.encoder||new $,re.fromString){if(re.fromObject)throw new Error("Cannot specify both fromString and fromObject.");this.map=function j(bt,re){const je=new Map;return bt.length>0&&bt.replace(/^\?/,"").split("&").forEach(ot=>{const ut=ot.indexOf("="),[ii,si]=-1==ut?[re.decodeKey(ot),""]:[re.decodeKey(ot.slice(0,ut)),re.decodeValue(ot.slice(ut+1))],Pi=je.get(ii)||[];Pi.push(si),je.set(ii,Pi)}),je}(re.fromString,this.encoder)}else re.fromObject?(this.map=new Map,Object.keys(re.fromObject).forEach(je=>{const Ce=re.fromObject[je],ot=Array.isArray(Ce)?Ce.map(ie):[ie(Ce)];this.map.set(je,ot)})):this.map=null}has(re){return this.init(),this.map.has(re)}get(re){this.init();const je=this.map.get(re);return je?je[0]:null}getAll(re){return this.init(),this.map.get(re)||null}keys(){return this.init(),Array.from(this.map.keys())}append(re,je){return this.clone({param:re,value:je,op:"a"})}appendAll(re){const je=[];return Object.keys(re).forEach(Ce=>{const ot=re[Ce];Array.isArray(ot)?ot.forEach(ut=>{je.push({param:Ce,value:ut,op:"a"})}):je.push({param:Ce,value:ot,op:"a"})}),this.clone(je)}set(re,je){return this.clone({param:re,value:je,op:"s"})}delete(re,je){return this.clone({param:re,value:je,op:"d"})}toString(){return this.init(),this.keys().map(re=>{const je=this.encoder.encodeKey(re);return this.map.get(re).map(Ce=>je+"="+this.encoder.encodeValue(Ce)).join("&")}).filter(re=>""!==re).join("&")}clone(re){const je=new ge({encoder:this.encoder});return je.cloneFrom=this.cloneFrom||this,je.updates=(this.updates||[]).concat(re),je}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(re=>this.map.set(re,this.cloneFrom.map.get(re))),this.updates.forEach(re=>{switch(re.op){case"a":case"s":const je=("a"===re.op?this.map.get(re.param):void 0)||[];je.push(ie(re.value)),this.map.set(re.param,je);break;case"d":if(void 0===re.value){this.map.delete(re.param);break}{let Ce=this.map.get(re.param)||[];const ot=Ce.indexOf(ie(re.value));-1!==ot&&Ce.splice(ot,1),Ce.length>0?this.map.set(re.param,Ce):this.map.delete(re.param)}}}),this.cloneFrom=this.updates=null)}}class Me{constructor(){this.map=new Map}set(re,je){return this.map.set(re,je),this}get(re){return this.map.has(re)||this.map.set(re,re.defaultValue()),this.map.get(re)}delete(re){return this.map.delete(re),this}has(re){return this.map.has(re)}keys(){return this.map.keys()}}function de(bt){return typeof ArrayBuffer<"u"&&bt instanceof ArrayBuffer}function D(bt){return typeof Blob<"u"&&bt instanceof Blob}function n(bt){return typeof FormData<"u"&&bt instanceof FormData}class m{constructor(re,je,Ce,ot){let ut;if(this.url=je,this.body=null,this.reportProgress=!1,this.withCredentials=!1,this.responseType="json",this.method=re.toUpperCase(),function Te(bt){switch(bt){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||ot?(this.body=void 0!==Ce?Ce:null,ut=ot):ut=Ce,ut&&(this.reportProgress=!!ut.reportProgress,this.withCredentials=!!ut.withCredentials,ut.responseType&&(this.responseType=ut.responseType),ut.headers&&(this.headers=ut.headers),ut.context&&(this.context=ut.context),ut.params&&(this.params=ut.params),this.transferCache=ut.transferCache),this.headers??=new z,this.context??=new Me,this.params){const ii=this.params.toString();if(0===ii.length)this.urlWithParams=je;else{const si=je.indexOf("?");this.urlWithParams=je+(-1===si?"?":siYn.set(Qn,re.setHeaders[Qn]),mn)),re.setParams&&(Fn=Object.keys(re.setParams).reduce((Yn,Qn)=>Yn.set(Qn,re.setParams[Qn]),Fn)),new m(je,Ce,ii,{params:Fn,headers:mn,context:$n,reportProgress:Pi,responseType:ot,withCredentials:si,transferCache:ut})}}var h=function(bt){return bt[bt.Sent=0]="Sent",bt[bt.UploadProgress=1]="UploadProgress",bt[bt.ResponseHeader=2]="ResponseHeader",bt[bt.DownloadProgress=3]="DownloadProgress",bt[bt.Response=4]="Response",bt[bt.User=5]="User",bt}(h||{});class C{constructor(re,je=200,Ce="OK"){this.headers=re.headers||new z,this.status=void 0!==re.status?re.status:je,this.statusText=re.statusText||Ce,this.url=re.url||null,this.ok=this.status>=200&&this.status<300}}class k extends C{constructor(re={}){super(re),this.type=h.ResponseHeader}clone(re={}){return new k({headers:re.headers||this.headers,status:void 0!==re.status?re.status:this.status,statusText:re.statusText||this.statusText,url:re.url||this.url||void 0})}}class L extends C{constructor(re={}){super(re),this.type=h.Response,this.body=void 0!==re.body?re.body:null}clone(re={}){return new L({body:void 0!==re.body?re.body:this.body,headers:re.headers||this.headers,status:void 0!==re.status?re.status:this.status,statusText:re.statusText||this.statusText,url:re.url||this.url||void 0})}}class _ extends C{constructor(re){super(re,0,"Unknown Error"),this.name="HttpErrorResponse",this.ok=!1,this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${re.url||"(unknown url)"}`:`Http failure response for ${re.url||"(unknown url)"}: ${re.status} ${re.statusText}`,this.error=re.error||null}}function N(bt,re){return{body:re,headers:bt.headers,context:bt.context,observe:bt.observe,params:bt.params,reportProgress:bt.reportProgress,responseType:bt.responseType,withCredentials:bt.withCredentials,transferCache:bt.transferCache}}let ne=(()=>{class bt{constructor(je){this.handler=je}request(je,Ce,ot={}){let ut;if(je instanceof m)ut=je;else{let Pi,mn;Pi=ot.headers instanceof z?ot.headers:new z(ot.headers),ot.params&&(mn=ot.params instanceof ge?ot.params:new ge({fromObject:ot.params})),ut=new m(je,Ce,void 0!==ot.body?ot.body:null,{headers:Pi,context:ot.context,params:mn,reportProgress:ot.reportProgress,responseType:ot.responseType||"json",withCredentials:ot.withCredentials,transferCache:ot.transferCache})}const ii=(0,w.of)(ut).pipe((0,x.H)(Pi=>this.handler.handle(Pi)));if(je instanceof m||"events"===ot.observe)return ii;const si=ii.pipe((0,f.p)(Pi=>Pi instanceof L));switch(ot.observe||"body"){case"body":switch(ut.responseType){case"arraybuffer":return si.pipe((0,I.T)(Pi=>{if(null!==Pi.body&&!(Pi.body instanceof ArrayBuffer))throw new Error("Response is not an ArrayBuffer.");return Pi.body}));case"blob":return si.pipe((0,I.T)(Pi=>{if(null!==Pi.body&&!(Pi.body instanceof Blob))throw new Error("Response is not a Blob.");return Pi.body}));case"text":return si.pipe((0,I.T)(Pi=>{if(null!==Pi.body&&"string"!=typeof Pi.body)throw new Error("Response is not a string.");return Pi.body}));default:return si.pipe((0,I.T)(Pi=>Pi.body))}case"response":return si;default:throw new Error(`Unreachable: unhandled observe type ${ot.observe}}`)}}delete(je,Ce={}){return this.request("DELETE",je,Ce)}get(je,Ce={}){return this.request("GET",je,Ce)}head(je,Ce={}){return this.request("HEAD",je,Ce)}jsonp(je,Ce){return this.request("JSONP",je,{params:(new ge).append(Ce,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(je,Ce={}){return this.request("OPTIONS",je,Ce)}patch(je,Ce,ot={}){return this.request("PATCH",je,N(ot,Ce))}post(je,Ce,ot={}){return this.request("POST",je,N(ot,Ce))}put(je,Ce,ot={}){return this.request("PUT",je,N(ot,Ce))}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)(t.KVO(F))};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();const Ee=/^\)\]\}',?\n/;function qe(bt){if(bt.url)return bt.url;const re="X-Request-URL".toLocaleLowerCase();return bt.headers.get(re)}let Ke=(()=>{class bt{constructor(){this.fetchImpl=(0,t.WQX)(se,{optional:!0})?.fetch??fetch.bind(globalThis),this.ngZone=(0,t.WQX)(t.SKi)}handle(je){return new S.c(Ce=>{const ot=new AbortController;return this.doRequest(je,ot.signal,Ce).then(X,ut=>Ce.error(new _({error:ut}))),()=>ot.abort()})}doRequest(je,Ce,ot){var ut=this;return(0,e.A)(function*(){const ii=ut.createRequestInit(je);let si;try{const rr=ut.fetchImpl(je.urlWithParams,{signal:Ce,...ii});(function me(bt){bt.then(X,X)})(rr),ot.next({type:h.Sent}),si=yield rr}catch(rr){return void ot.error(new _({error:rr,status:rr.status??0,statusText:rr.statusText,url:je.urlWithParams,headers:rr.headers}))}const Pi=new z(si.headers),mn=si.statusText,Fn=qe(si)??je.urlWithParams;let $n=si.status,Yn=null;if(je.reportProgress&&ot.next(new k({headers:Pi,status:$n,statusText:mn,url:Fn})),si.body){const rr=si.headers.get("content-length"),Rn=[],_i=si.body.getReader();let jt,Ci,Oi=0;const hi=typeof Zone<"u"&&Zone.current;yield ut.ngZone.runOutsideAngular((0,e.A)(function*(){for(;;){const{done:Vi,value:ji}=yield _i.read();if(Vi)break;if(Rn.push(ji),Oi+=ji.length,je.reportProgress){Ci="text"===je.responseType?(Ci??"")+(jt??=new TextDecoder).decode(ji,{stream:!0}):void 0;const rn=()=>ot.next({type:h.DownloadProgress,total:rr?+rr:void 0,loaded:Oi,partialText:Ci});hi?hi.run(rn):rn()}}}));const yi=ut.concatChunks(Rn,Oi);try{const Vi=si.headers.get("Content-Type")??"";Yn=ut.parseBody(je,yi,Vi)}catch(Vi){return void ot.error(new _({error:Vi,headers:new z(si.headers),status:si.status,statusText:si.statusText,url:qe(si)??je.urlWithParams}))}}0===$n&&($n=Yn?200:0),$n>=200&&$n<300?(ot.next(new L({body:Yn,headers:Pi,status:$n,statusText:mn,url:Fn})),ot.complete()):ot.error(new _({error:Yn,headers:Pi,status:$n,statusText:mn,url:Fn}))})()}parseBody(je,Ce,ot){switch(je.responseType){case"json":const ut=(new TextDecoder).decode(Ce).replace(Ee,"");return""===ut?null:JSON.parse(ut);case"text":return(new TextDecoder).decode(Ce);case"blob":return new Blob([Ce],{type:ot});case"arraybuffer":return Ce.buffer}}createRequestInit(je){const Ce={},ot=je.withCredentials?"include":void 0;if(je.headers.forEach((ut,ii)=>Ce[ut]=ii.join(",")),Ce.Accept??="application/json, text/plain, */*",!Ce["Content-Type"]){const ut=je.detectContentTypeHeader();null!==ut&&(Ce["Content-Type"]=ut)}return{body:je.serializeBody(),method:je.method,headers:Ce,credentials:ot}}concatChunks(je,Ce){const ot=new Uint8Array(Ce);let ut=0;for(const ii of je)ot.set(ii,ut),ut+=ii.length;return ot}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();class se{}function X(){}function ce(bt,re){return re(bt)}function fe(bt,re){return(je,Ce)=>re.intercept(je,{handle:ot=>bt(ot,Ce)})}const mt=new t.nKC(""),_e=new t.nKC(""),be=new t.nKC(""),pe=new t.nKC("",{providedIn:"root",factory:()=>!0});function Ze(){let bt=null;return(re,je)=>{null===bt&&(bt=((0,t.WQX)(mt,{optional:!0})??[]).reduceRight(fe,ce));const Ce=(0,t.WQX)(t.TgB);if((0,t.WQX)(pe)){const ut=Ce.add();return bt(re,je).pipe((0,d.j)(()=>Ce.remove(ut)))}return bt(re,je)}}let pt=(()=>{class bt extends F{constructor(je,Ce){super(),this.backend=je,this.injector=Ce,this.chain=null,this.pendingTasks=(0,t.WQX)(t.TgB),this.contributeToStability=(0,t.WQX)(pe)}handle(je){if(null===this.chain){const Ce=Array.from(new Set([...this.injector.get(_e),...this.injector.get(be,[])]));this.chain=Ce.reduceRight((ot,ut)=>function ke(bt,re,je){return(Ce,ot)=>(0,t.N4e)(je,()=>re(Ce,ut=>bt(ut,ot)))}(ot,ut,this.injector),ce)}if(this.contributeToStability){const Ce=this.pendingTasks.add();return this.chain(je,ot=>this.backend.handle(ot)).pipe((0,d.j)(()=>this.pendingTasks.remove(Ce)))}return this.chain(je,Ce=>this.backend.handle(Ce))}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)(t.KVO(R),t.KVO(t.uvJ))};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();const Et=/^\)\]\}',?\n/;let oe=(()=>{class bt{constructor(je){this.xhrFactory=je}handle(je){if("JSONP"===je.method)throw new t.wOt(-2800,!1);const Ce=this.xhrFactory;return(Ce.\u0275loadImpl?(0,l.H)(Ce.\u0275loadImpl()):(0,w.of)(null)).pipe((0,T.n)(()=>new S.c(ut=>{const ii=Ce.build();if(ii.open(je.method,je.urlWithParams),je.withCredentials&&(ii.withCredentials=!0),je.headers.forEach((Rn,_i)=>ii.setRequestHeader(Rn,_i.join(","))),je.headers.has("Accept")||ii.setRequestHeader("Accept","application/json, text/plain, */*"),!je.headers.has("Content-Type")){const Rn=je.detectContentTypeHeader();null!==Rn&&ii.setRequestHeader("Content-Type",Rn)}if(je.responseType){const Rn=je.responseType.toLowerCase();ii.responseType="json"!==Rn?Rn:"text"}const si=je.serializeBody();let Pi=null;const mn=()=>{if(null!==Pi)return Pi;const Rn=ii.statusText||"OK",_i=new z(ii.getAllResponseHeaders()),Oi=function Vt(bt){return"responseURL"in bt&&bt.responseURL?bt.responseURL:/^X-Request-URL:/m.test(bt.getAllResponseHeaders())?bt.getResponseHeader("X-Request-URL"):null}(ii)||je.url;return Pi=new k({headers:_i,status:ii.status,statusText:Rn,url:Oi}),Pi},Fn=()=>{let{headers:Rn,status:_i,statusText:Oi,url:jt}=mn(),Ci=null;204!==_i&&(Ci=typeof ii.response>"u"?ii.responseText:ii.response),0===_i&&(_i=Ci?200:0);let hi=_i>=200&&_i<300;if("json"===je.responseType&&"string"==typeof Ci){const yi=Ci;Ci=Ci.replace(Et,"");try{Ci=""!==Ci?JSON.parse(Ci):null}catch(Vi){Ci=yi,hi&&(hi=!1,Ci={error:Vi,text:Ci})}}hi?(ut.next(new L({body:Ci,headers:Rn,status:_i,statusText:Oi,url:jt||void 0})),ut.complete()):ut.error(new _({error:Ci,headers:Rn,status:_i,statusText:Oi,url:jt||void 0}))},$n=Rn=>{const{url:_i}=mn(),Oi=new _({error:Rn,status:ii.status||0,statusText:ii.statusText||"Unknown Error",url:_i||void 0});ut.error(Oi)};let Yn=!1;const Qn=Rn=>{Yn||(ut.next(mn()),Yn=!0);let _i={type:h.DownloadProgress,loaded:Rn.loaded};Rn.lengthComputable&&(_i.total=Rn.total),"text"===je.responseType&&ii.responseText&&(_i.partialText=ii.responseText),ut.next(_i)},rr=Rn=>{let _i={type:h.UploadProgress,loaded:Rn.loaded};Rn.lengthComputable&&(_i.total=Rn.total),ut.next(_i)};return ii.addEventListener("load",Fn),ii.addEventListener("error",$n),ii.addEventListener("timeout",$n),ii.addEventListener("abort",$n),je.reportProgress&&(ii.addEventListener("progress",Qn),null!==si&&ii.upload&&ii.upload.addEventListener("progress",rr)),ii.send(si),ut.next({type:h.Sent}),()=>{ii.removeEventListener("error",$n),ii.removeEventListener("abort",$n),ii.removeEventListener("load",Fn),ii.removeEventListener("timeout",$n),je.reportProgress&&(ii.removeEventListener("progress",Qn),null!==si&&ii.upload&&ii.upload.removeEventListener("progress",rr)),ii.readyState!==ii.DONE&&ii.abort()}})))}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)(t.KVO(y.N0))};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();const tt=new t.nKC(""),zt=new t.nKC("",{providedIn:"root",factory:()=>"XSRF-TOKEN"}),St=new t.nKC("",{providedIn:"root",factory:()=>"X-XSRF-TOKEN"});class dt{}let Ae=(()=>{class bt{constructor(je,Ce,ot){this.doc=je,this.platform=Ce,this.cookieName=ot,this.lastCookieString="",this.lastToken=null,this.parseCount=0}getToken(){if("server"===this.platform)return null;const je=this.doc.cookie||"";return je!==this.lastCookieString&&(this.parseCount++,this.lastToken=(0,y._b)(je,this.cookieName),this.lastCookieString=je),this.lastToken}static#e=this.\u0275fac=function(Ce){return new(Ce||bt)(t.KVO(y.qQ),t.KVO(t.Agw),t.KVO(zt))};static#t=this.\u0275prov=t.jDH({token:bt,factory:bt.\u0275fac})}return bt})();function we(bt,re){const je=bt.url.toLowerCase();if(!(0,t.WQX)(tt)||"GET"===bt.method||"HEAD"===bt.method||je.startsWith("http://")||je.startsWith("https://"))return re(bt);const Ce=(0,t.WQX)(dt).getToken(),ot=(0,t.WQX)(St);return null!=Ce&&!bt.headers.has(ot)&&(bt=bt.clone({headers:bt.headers.set(ot,Ce)})),re(bt)}var q=function(bt){return bt[bt.Interceptors=0]="Interceptors",bt[bt.LegacyInterceptors=1]="LegacyInterceptors",bt[bt.CustomXsrfConfiguration=2]="CustomXsrfConfiguration",bt[bt.NoXsrfProtection=3]="NoXsrfProtection",bt[bt.JsonpSupport=4]="JsonpSupport",bt[bt.RequestsMadeViaParent=5]="RequestsMadeViaParent",bt[bt.Fetch=6]="Fetch",bt}(q||{});function Ne(...bt){const re=[ne,oe,pt,{provide:F,useExisting:pt},{provide:R,useFactory:()=>(0,t.WQX)(Ke,{optional:!0})??(0,t.WQX)(oe)},{provide:_e,useValue:we,multi:!0},{provide:tt,useValue:!0},{provide:dt,useClass:Ae}];for(const je of bt)re.push(...je.\u0275providers);return(0,t.EmA)(re)}const $e=new t.nKC("");function Fe(){return function Re(bt,re){return{\u0275kind:bt,\u0275providers:re}}(q.LegacyInterceptors,[{provide:$e,useFactory:Ze},{provide:_e,useExisting:$e,multi:!0}])}let Pt=(()=>{class bt{static#e=this.\u0275fac=function(Ce){return new(Ce||bt)};static#t=this.\u0275mod=t.$C({type:bt});static#i=this.\u0275inj=t.G2t({providers:[Ne(Fe())]})}return bt})()},4438:(Qe,te,g)=>{"use strict";function e(i,a){return Object.is(i,a)}g.d(te,{bc$:()=>hh,iLQ:()=>lp,sZ2:()=>f1,hnV:()=>D8,Hbi:()=>V9,o8S:()=>Al,BIS:()=>Ef,gRc:()=>T9,Ql9:()=>kC,OM3:()=>du,Ocv:()=>PC,abz:()=>ml,Z63:()=>Da,aKT:()=>pd,uvJ:()=>So,zcH:()=>Bs,bkB:()=>Us,y_5:()=>ao,$GK:()=>rn,nKC:()=>Ni,zZn:()=>go,_q3:()=>W8,MKu:()=>Pu,xe9:()=>G3,Co$:()=>c7,Vns:()=>u0,SKi:()=>Ha,Xx1:()=>Oa,Agw:()=>ed,PLl:()=>lh,rOR:()=>o1,sFG:()=>z5,_9s:()=>b3,czy:()=>Lc,WPN:()=>Kc,kdw:()=>Fa,C4Q:()=>D1,NYb:()=>SC,giA:()=>u9,RxE:()=>C8,c1b:()=>ko,gXe:()=>ri,mal:()=>Ai,Af3:()=>De,tdH:()=>hu,L39:()=>Mp,EWP:()=>X3,a0P:()=>Pw,Ol2:()=>Y6,w6W:()=>Vb,oH4:()=>F8,QZP:()=>lb,Rfq:()=>St,WQX:()=>hn,naY:()=>S9,Hps:()=>R6,QuC:()=>so,EmA:()=>Ss,Udg:()=>kw,fpN:()=>qC,HJs:()=>Vw,N4e:()=>Z,vPA:()=>Mm,O8t:()=>Iw,H3F:()=>Qv,H8p:()=>Js,KH2:()=>ku,TgB:()=>B1,wOt:()=>be,WHO:()=>h9,e01:()=>E8,lNU:()=>_e,h9k:()=>j2,$MX:()=>y1,ZF7:()=>Xc,Kcf:()=>nc,e5t:()=>Dh,UyX:()=>m4,cWb:()=>Pf,osQ:()=>Yc,H5H:()=>Tg,Zy3:()=>pe,mq5:()=>C_,JZv:()=>Yt,LfX:()=>it,plB:()=>Ln,jNT:()=>T8,zjR:()=>f9,TL$:()=>ch,Tbb:()=>tt,rcV:()=>Ws,Vt3:()=>H6,GFd:()=>G6,OA$:()=>Nr,Jv_:()=>l8,aNF:()=>wv,R7$:()=>V4,BMQ:()=>rg,HbH:()=>vg,ZvI:()=>s_,AVh:()=>_g,vxM:()=>m_,wni:()=>av,VBU:()=>lc,FsC:()=>fo,jDH:()=>Li,G2t:()=>Qt,$C:()=>jo,EJ8:()=>Is,rXU:()=>$2,nrm:()=>jm,eu8:()=>Mg,bVm:()=>Xm,qex:()=>Wm,k0s:()=>Gm,j41:()=>R3,RV6:()=>x_,xGo:()=>f2,Mr5:()=>Eg,KVO:()=>zn,kS0:()=>Kl,QTQ:()=>Op,bIt:()=>Vg,lsd:()=>sv,joV:()=>cl,qSk:()=>T0,XpG:()=>Ug,nI1:()=>Lv,bMT:()=>Iv,i5U:()=>Rv,brH:()=>Ov,SdG:()=>q_,NAR:()=>J_,Y8G:()=>mg,FS9:()=>Gg,Mz_:()=>qm,FCK:()=>jg,lJ4:()=>Mv,eq3:()=>Ev,l_i:()=>h8,sMw:()=>Sv,mGM:()=>Yg,sdS:()=>lv,Dyx:()=>Cg,Z7z:()=>g_,fX1:()=>xg,Njj:()=>q1,tSv:()=>un,eBV:()=>w0,npT:()=>Uf,n$t:()=>Uh,xc7:()=>gg,Kam:()=>Hg,zvX:()=>Sg,DNE:()=>mu,C5r:()=>Nv,EFF:()=>Jg,JRh:()=>t8,SpI:()=>tp,Lme:()=>ip,E5c:()=>i8,LHq:()=>np,DH7:()=>rp,mxI:()=>o8,R50:()=>a8,GBs:()=>ov});let t=null,w=!1,S=1;const l=Symbol("SIGNAL");function x(i){const a=t;return t=i,a}const T={version:0,lastCleanEpoch:0,dirty:!1,producerNode:void 0,producerLastReadVersion:void 0,producerIndexOfThis:void 0,nextProducerIndex:0,liveConsumerNode:void 0,liveConsumerIndexOfThis:void 0,consumerAllowSignalWrites:!1,consumerIsAlwaysLive:!1,producerMustRecompute:()=>!1,producerRecomputeValue:()=>{},consumerMarkedDirty:()=>{},consumerOnSignalRead:()=>{}};function y(i){if(w)throw new Error("");if(null===t)return;t.consumerOnSignalRead(i);const a=t.nextProducerIndex++;Me(t),ai.nextProducerIndex;)i.producerNode.pop(),i.producerLastReadVersion.pop(),i.producerIndexOfThis.pop()}}function J(i){Me(i);for(let a=0;a0}function Me(i){i.producerNode??=[],i.producerIndexOfThis??=[],i.producerLastReadVersion??=[]}function Te(i){i.liveConsumerNode??=[],i.liveConsumerIndexOfThis??=[]}const D=Symbol("UNSET"),n=Symbol("COMPUTING"),c=Symbol("ERRORED"),m={...T,value:D,dirty:!0,error:null,equal:e,producerMustRecompute:i=>i.value===D||i.value===n,producerRecomputeValue(i){if(i.value===n)throw new Error("Detected cycle in computations.");const a=i.value;i.value=n;const s=j(i);let p;try{p=i.computation()}catch(E){p=c,i.error=E}finally{Q(i,s)}a!==D&&a!==c&&p!==c&&i.equal(a,p)?i.value=a:(i.value=p,i.version++)}};let C=function h(){throw new Error};function k(){C()}let _=null;function N(i,a){W()||k(),i.equal(i.value,a)||(i.value=a,function ze(i){i.version++,function F(){S++}(),z(i),_?.()}(i))}const Ee={...T,equal:e,value:void 0};const Ke=()=>{},se={...T,consumerIsAlwaysLive:!0,consumerAllowSignalWrites:!1,consumerMarkedDirty:i=>{null!==i.schedule&&i.schedule(i.ref)},hasRun:!1,cleanupFn:Ke};var me=g(1413),ce=g(8359),fe=g(4412),ke=g(6354);const _e="https://g.co/ng/security#xss";class be extends Error{constructor(a,s){super(pe(a,s)),this.code=a}}function pe(i,a){return`NG0${Math.abs(i)}${a?": "+a:""}`}function ye(i){return{toString:i}.toString()}const Ie="__parameters__";function Ye(i,a,s){return ye(()=>{const p=function yt(i){return function(...s){if(i){const p=i(...s);for(const E in p)this[E]=p[E]}}}(a);function E(...P){if(this instanceof E)return p.apply(this,P),this;const K=new E(...P);return le.annotation=K,le;function le(Se,Je,vt){const Bt=Se.hasOwnProperty(Ie)?Se[Ie]:Object.defineProperty(Se,Ie,{value:[]})[Ie];for(;Bt.length<=vt;)Bt.push(null);return(Bt[vt]=Bt[vt]||[]).push(K),Se}}return s&&(E.prototype=Object.create(s.prototype)),E.prototype.ngMetadataName=i,E.annotationCls=E,E})}const Yt=globalThis;function Vt(i){for(let a in i)if(i[a]===Vt)return a;throw Error("Could not find renamed property on target object.")}function oe(i,a){for(const s in a)a.hasOwnProperty(s)&&!i.hasOwnProperty(s)&&(i[s]=a[s])}function tt(i){if("string"==typeof i)return i;if(Array.isArray(i))return"["+i.map(tt).join(", ")+"]";if(null==i)return""+i;if(i.overriddenName)return`${i.overriddenName}`;if(i.name)return`${i.name}`;const a=i.toString();if(null==a)return""+a;const s=a.indexOf("\n");return-1===s?a:a.substring(0,s)}function $t(i,a){return null==i||""===i?null===a?"":a:null==a||""===a?i:i+" "+a}const Jt=Vt({__forward_ref__:Vt});function St(i){return i.__forward_ref__=St,i.toString=function(){return tt(this())},i}function dt(i){return Ae(i)?i():i}function Ae(i){return"function"==typeof i&&i.hasOwnProperty(Jt)&&i.__forward_ref__===St}function Li(i){return{token:i.token,providedIn:i.providedIn||null,factory:i.factory,value:void 0}}function Qt(i){return{providers:i.providers||[],imports:i.imports||[]}}function Mt(i){return ct(i,xi)||ct(i,zi)}function it(i){return null!==Mt(i)}function ct(i,a){return i.hasOwnProperty(a)?i[a]:null}function Ut(i){return i&&(i.hasOwnProperty(Si)||i.hasOwnProperty(en))?i[Si]:null}const xi=Vt({\u0275prov:Vt}),Si=Vt({\u0275inj:Vt}),zi=Vt({ngInjectableDef:Vt}),en=Vt({ngInjectorDef:Vt});class Ni{constructor(a,s){this._desc=a,this.ngMetadataName="InjectionToken",this.\u0275prov=void 0,"number"==typeof s?this.__NG_ELEMENT_ID__=s:void 0!==s&&(this.\u0275prov=Li({token:this,providedIn:s.providedIn||"root",factory:s.factory}))}get multi(){return this}toString(){return`InjectionToken ${this._desc}`}}function Pi(i){return i&&!!i.\u0275providers}const mn=Vt({\u0275cmp:Vt}),Fn=Vt({\u0275dir:Vt}),$n=Vt({\u0275pipe:Vt}),Yn=Vt({\u0275mod:Vt}),Qn=Vt({\u0275fac:Vt}),rr=Vt({__NG_ELEMENT_ID__:Vt}),Rn=Vt({__NG_ENV_ID__:Vt});function _i(i){return"string"==typeof i?i:null==i?"":String(i)}function ji(i,a){throw new be(-201,!1)}var rn=function(i){return i[i.Default=0]="Default",i[i.Host=1]="Host",i[i.Self=2]="Self",i[i.SkipSelf=4]="SkipSelf",i[i.Optional=8]="Optional",i}(rn||{});let ar;function sr(){return ar}function nr(i){const a=ar;return ar=i,a}function or(i,a,s){const p=Mt(i);return p&&"root"==p.providedIn?void 0===p.value?p.value=p.factory():p.value:s&rn.Optional?null:void 0!==a?a:void ji()}const zr={},Ho="__NG_DI_FLAG__",xo="ngTempTokenPath",Rr=/\n/gm,Ea="__source";let no;function xr(i){const a=no;return no=i,a}function Sa(i,a=rn.Default){if(void 0===no)throw new be(-203,!1);return null===no?or(i,void 0,a):no.get(i,a&rn.Optional?null:void 0,a)}function zn(i,a=rn.Default){return(sr()||Sa)(dt(i),a)}function hn(i,a=rn.Default){return zn(i,Yr(a))}function Yr(i){return typeof i>"u"||"number"==typeof i?i:(i.optional&&8)|(i.host&&1)|(i.self&&2)|(i.skipSelf&&4)}function Ta(i){const a=[];for(let s=0;s({token:i})),-1),Oa=Co(Ye("Optional"),8),Fa=Co(Ye("SkipSelf"),4);function kr(i,a){return i.hasOwnProperty(Qn)?i[Qn]:null}function Ua(i,a){i.forEach(s=>Array.isArray(s)?Ua(s,a):a(s))}function rs(i,a,s){a>=i.length?i.push(s):i.splice(a,0,s)}function Ga(i,a){return a>=i.length-1?i.pop():i.splice(a,1)[0]}function ga(i,a,s){let p=Lr(i,a);return p>=0?i[1|p]=s:(p=~p,function Uo(i,a,s,p){let E=i.length;if(E==a)i.push(s,p);else if(1===E)i.push(p,i[0]),i[0]=s;else{for(E--,i.push(i[E-1],i[E]);E>a;)i[E]=i[E-2],E--;i[a]=s,i[a+1]=p}}(i,p,a,s)),p}function Za(i,a){const s=Lr(i,a);if(s>=0)return i[1|s]}function Lr(i,a){return function Oo(i,a,s){let p=0,E=i.length>>s;for(;E!==p;){const P=p+(E-p>>1),K=i[P<a?E=P:p=P+1}return~(E<a){K=P-1;break}}}for(;P-1){let P;for(;++EP?"":E[vt+1].toLowerCase(),2&p&&Je!==Bt){if(Ri(p))return!1;K=!0}}}}else{if(!K&&!Ri(p)&&!Ri(Se))return!1;if(K&&Ri(Se))continue;K=!1,p=Se|1&p}}return Ri(p)||K}function Ri(i){return!(1&i)}function lt(i,a,s,p){if(null===a)return-1;let E=0;if(p||!s){let P=!1;for(;E-1)for(s++;s0?'="'+le+'"':"")+"]"}else 8&p?E+="."+K:4&p&&(E+=" "+K);else""!==E&&!Ri(K)&&(a+=Zn(P,E),E=""),p=K,P=P||!Ri(p);s++}return""!==E&&(a+=Zn(P,E)),a}function lc(i){return ye(()=>{const a=Aa(i),s={...a,decls:i.decls,vars:i.vars,template:i.template,consts:i.consts||null,ngContentSelectors:i.ngContentSelectors,onPush:i.changeDetection===Ft.OnPush,directiveDefs:null,pipeDefs:null,dependencies:a.standalone&&i.dependencies||null,getStandaloneInjector:null,signals:i.signals??!1,data:i.data||{},encapsulation:i.encapsulation||ri.Emulated,styles:i.styles||Bn,_:null,schemas:i.schemas||null,tView:null,id:""};$s(s);const p=i.dependencies;return s.directiveDefs=dn(p,!1),s.pipeDefs=dn(p,!0),s.id=function uc(i){let a=0;const s=[i.selectors,i.ngContentSelectors,i.hostVars,i.hostAttrs,i.consts,i.vars,i.decls,i.encapsulation,i.standalone,i.signals,i.exportAs,JSON.stringify(i.inputs),JSON.stringify(i.outputs),Object.getOwnPropertyNames(i.type.prototype),!!i.contentQueries,!!i.viewQuery].join("|");for(const E of s)a=Math.imul(31,a)+E.charCodeAt(0)|0;return a+=2147483648,"c"+a}(s),s})}function dc(i){return Vn(i)||Kr(i)}function hc(i){return null!==i}function jo(i){return ye(()=>({type:i.type,bootstrap:i.bootstrap||Bn,declarations:i.declarations||Bn,imports:i.imports||Bn,exports:i.exports||Bn,transitiveCompileScopes:null,schemas:i.schemas||null,id:i.id||null}))}function Wo(i,a){if(null==i)return qr;const s={};for(const p in i)if(i.hasOwnProperty(p)){const E=i[p];let P,K,le=xt.None;Array.isArray(E)?(le=E[0],P=E[1],K=E[2]??P):(P=E,K=E),a?(s[P]=le!==xt.None?[p,le]:p,a[P]=K):s[P]=p}return s}function fo(i){return ye(()=>{const a=Aa(i);return $s(a),a})}function Is(i){return{type:i.type,name:i.name,factory:null,pure:!1!==i.pure,standalone:!0===i.standalone,onDestroy:i.type.prototype.ngOnDestroy||null}}function Vn(i){return i[mn]||null}function Kr(i){return i[Fn]||null}function ua(i){return i[$n]||null}function so(i){const a=Vn(i)||Kr(i)||ua(i);return null!==a&&a.standalone}function Ir(i,a){const s=i[Yn]||null;if(!s&&!0===a)throw new Error(`Type ${tt(i)} does not have '\u0275mod' property.`);return s}function Aa(i){const a={};return{type:i.type,providersResolver:null,factory:null,hostBindings:i.hostBindings||null,hostVars:i.hostVars||0,hostAttrs:i.hostAttrs||null,contentQueries:i.contentQueries||null,declaredInputs:a,inputTransforms:null,inputConfig:i.inputs||qr,exportAs:i.exportAs||null,standalone:!0===i.standalone,signals:!0===i.signals,selectors:i.selectors||Bn,viewQuery:i.viewQuery||null,features:i.features||null,setInput:null,findHostDirectiveDefs:null,hostDirectives:null,inputs:Wo(i.inputs,a),outputs:Wo(i.outputs),debugInfo:null}}function $s(i){i.features?.forEach(a=>a(i))}function dn(i,a){if(!i)return null;const s=a?ua:dc;return()=>("function"==typeof i?i():i).map(p=>s(p)).filter(hc)}function Ss(i){return{\u0275providers:i}}function fc(...i){return{\u0275providers:_s(0,i),\u0275fromNgModule:!0}}function _s(i,...a){const s=[],p=new Set;let E;const P=K=>{s.push(K)};return Ua(a,K=>{const le=K;vs(le,P,[],p)&&(E||=[],E.push(le))}),void 0!==E&&kl(E,P),s}function kl(i,a){for(let s=0;s{a(P,p)})}}function vs(i,a,s,p){if(!(i=dt(i)))return!1;let E=null,P=Ut(i);const K=!P&&Vn(i);if(P||K){if(K&&!K.standalone)return!1;E=i}else{const Se=i.ngModule;if(P=Ut(Se),!P)return!1;E=Se}const le=p.has(E);if(K){if(le)return!1;if(p.add(E),K.dependencies){const Se="function"==typeof K.dependencies?K.dependencies():K.dependencies;for(const Je of Se)vs(Je,a,s,p)}}else{if(!P)return!1;{if(null!=P.imports&&!le){let Je;p.add(E);try{Ua(P.imports,vt=>{vs(vt,a,s,p)&&(Je||=[],Je.push(vt))})}finally{}void 0!==Je&&kl(Je,a)}if(!le){const Je=kr(E)||(()=>new E);a({provide:E,useFactory:Je,deps:Bn},E),a({provide:Wa,useValue:E,multi:!0},E),a({provide:Da,useValue:()=>zn(E),multi:!0},E)}const Se=P.providers;if(null!=Se&&!le){const Je=i;mc(Se,vt=>{a(vt,Je)})}}}return E!==i&&void 0!==i.providers}function mc(i,a){for(let s of i)Pi(s)&&(s=s.\u0275providers),Array.isArray(s)?mc(s,a):a(s)}const el=Vt({provide:String,useValue:Vt});function Qs(i){return null!==i&&"object"==typeof i&&el in i}function Eo(i){return"function"==typeof i}const Js=new Ni(""),bs={},gc={};let _c;function os(){return void 0===_c&&(_c=new as),_c}class So{}class Os extends So{get destroyed(){return this._destroyed}constructor(a,s,p,E){super(),this.parent=s,this.source=p,this.scopes=E,this.records=new Map,this._ngOnDestroyHooks=new Set,this._onDestroyHooks=[],this._destroyed=!1,kt(a,K=>this.processProvider(K)),this.records.set(Go,ss(void 0,this)),E.has("environment")&&this.records.set(So,ss(void 0,this));const P=this.records.get(Js);null!=P&&"string"==typeof P.value&&this.scopes.add(P.value),this.injectorDefTypes=new Set(this.get(Wa,Bn,rn.Self))}destroy(){this.assertNotDestroyed(),this._destroyed=!0;const a=x(null);try{for(const p of this._ngOnDestroyHooks)p.ngOnDestroy();const s=this._onDestroyHooks;this._onDestroyHooks=[];for(const p of s)p()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear(),x(a)}}onDestroy(a){return this.assertNotDestroyed(),this._onDestroyHooks.push(a),()=>this.removeOnDestroy(a)}runInContext(a){this.assertNotDestroyed();const s=xr(this),p=nr(void 0);try{return a()}finally{xr(s),nr(p)}}get(a,s=zr,p=rn.Default){if(this.assertNotDestroyed(),a.hasOwnProperty(Rn))return a[Rn](this);p=Yr(p);const P=xr(this),K=nr(void 0);try{if(!(p&rn.SkipSelf)){let Se=this.records.get(a);if(void 0===Se){const Je=function Rt(i){return"function"==typeof i||"object"==typeof i&&i instanceof Ni}(a)&&Mt(a);Se=Je&&this.injectableDefInScope(Je)?ss(tl(a),bs):null,this.records.set(a,Se)}if(null!=Se)return this.hydrate(a,Se)}return(p&rn.Self?os():this.parent).get(a,s=p&rn.Optional&&s===zr?null:s)}catch(le){if("NullInjectorError"===le.name){if((le[xo]=le[xo]||[]).unshift(tt(a)),P)throw le;return function zo(i,a,s,p){const E=i[xo];throw a[Ea]&&E.unshift(a[Ea]),i.message=function da(i,a,s,p=null){i=i&&"\n"===i.charAt(0)&&"\u0275"==i.charAt(1)?i.slice(2):i;let E=tt(a);if(Array.isArray(a))E=a.map(tt).join(" -> ");else if("object"==typeof a){let P=[];for(let K in a)if(a.hasOwnProperty(K)){let le=a[K];P.push(K+":"+("string"==typeof le?JSON.stringify(le):tt(le)))}E=`{${P.join(", ")}}`}return`${s}${p?"("+p+")":""}[${E}]: ${i.replace(Rr,"\n ")}`}("\n"+i.message,E,s,p),i.ngTokenPath=E,i[xo]=null,i}(le,a,"R3InjectorError",this.source)}throw le}finally{nr(K),xr(P)}}resolveInjectorInitializers(){const a=x(null),s=xr(this),p=nr(void 0);try{const P=this.get(Da,Bn,rn.Self);for(const K of P)K()}finally{xr(s),nr(p),x(a)}}toString(){const a=[],s=this.records;for(const p of s.keys())a.push(tt(p));return`R3Injector[${a.join(", ")}]`}assertNotDestroyed(){if(this._destroyed)throw new be(205,!1)}processProvider(a){let s=Eo(a=dt(a))?a:dt(a&&a.provide);const p=function Il(i){return Qs(i)?ss(void 0,i.useValue):ss(il(i),bs)}(a);if(!Eo(a)&&!0===a.multi){let E=this.records.get(s);E||(E=ss(void 0,bs,!0),E.factory=()=>Ta(E.multi),this.records.set(s,E)),s=a,E.multi.push(a)}this.records.set(s,p)}hydrate(a,s){const p=x(null);try{return s.value===bs&&(s.value=gc,s.value=s.factory()),"object"==typeof s.value&&s.value&&function nt(i){return null!==i&&"object"==typeof i&&"function"==typeof i.ngOnDestroy}(s.value)&&this._ngOnDestroyHooks.add(s.value),s.value}finally{x(p)}}injectableDefInScope(a){if(!a.providedIn)return!1;const s=dt(a.providedIn);return"string"==typeof s?"any"===s||this.scopes.has(s):this.injectorDefTypes.has(s)}removeOnDestroy(a){const s=this._onDestroyHooks.indexOf(a);-1!==s&&this._onDestroyHooks.splice(s,1)}}function tl(i){const a=Mt(i),s=null!==a?a.factory:kr(i);if(null!==s)return s;if(i instanceof Ni)throw new be(204,!1);if(i instanceof Function)return function Rc(i){if(i.length>0)throw new be(204,!1);const s=function wt(i){return i&&(i[xi]||i[zi])||null}(i);return null!==s?()=>s.factory(i):()=>new i}(i);throw new be(204,!1)}function il(i,a,s){let p;if(Eo(i)){const E=dt(i);return kr(E)||tl(E)}if(Qs(i))p=()=>dt(i.useValue);else if(function Rs(i){return!(!i||!i.useFactory)}(i))p=()=>i.useFactory(...Ta(i.deps||[]));else if(function Zs(i){return!(!i||!i.useExisting)}(i))p=()=>zn(dt(i.useExisting));else{const E=dt(i&&(i.useClass||i.provide));if(!function Fs(i){return!!i.deps}(i))return kr(E)||tl(E);p=()=>new E(...Ta(i.deps))}return p}function ss(i,a,s=!1){return{factory:i,value:a,multi:s?[]:void 0}}function kt(i,a){for(const s of i)Array.isArray(s)?kt(s,a):s&&Pi(s)?kt(s.\u0275providers,a):a(s)}function Z(i,a){i instanceof Os&&i.assertNotDestroyed();const p=xr(i),E=nr(void 0);try{return a()}finally{xr(p),nr(E)}}function Ve(){return void 0!==sr()||null!=function ho(){return no}()}function De(i){if(!Ve())throw new be(-203,!1)}const Hn=0,Bi=1,sn=2,fr=3,$r=4,fa=5,Ya=6,vc=7,Ur=8,va=9,cs=10,Wn=11,bc=12,Rl=13,yc=14,Qr=15,mo=16,To=17,qs=18,Oc=19,Ns=20,Gi=21,Fc=22,Ps=23,kn=25,nl=1,Xo=7,Nc=9,ea=10;var Fl=function(i){return i[i.None=0]="None",i[i.HasTransplantedViews=2]="HasTransplantedViews",i}(Fl||{});function ka(i){return Array.isArray(i)&&"object"==typeof i[nl]}function ba(i){return Array.isArray(i)&&!0===i[nl]}function Ts(i){return!!(4&i.flags)}function Vs(i){return i.componentOffset>-1}function Ja(i){return!(1&~i.flags)}function En(i){return!!i.template}function nn(i){return!!(512&i[sn])}class _r{constructor(a,s,p){this.previousValue=a,this.currentValue=s,this.firstChange=p}isFirstChange(){return this.firstChange}}function ys(i,a,s,p){null!==a?a.applyValueToInputSignal(a,p):i[s]=p}function Nr(){return Ka}function Ka(i){return i.type.prototype.ngOnChanges&&(i.setInput=xc),ls}function ls(){const i=Ko(this),a=i?.current;if(a){const s=i.previous;if(s===qr)i.previous=a;else for(let p in a)s[p]=a[p];i.current=null,this.ngOnChanges(a)}}function xc(i,a,s,p,E){const P=this.declaredInputs[p],K=Ko(i)||function Ds(i,a){return i[Pl]=a}(i,{previous:qr,current:null}),le=K.current||(K.current={}),Se=K.previous,Je=Se[P];le[P]=new _r(Je&&Je.currentValue,s,Se===qr),ys(i,a,E,s)}Nr.ngInherit=!0;const Pl="__ngSimpleChanges__";function Ko(i){return i[Pl]||null}const As=function(i,a,s){},Vl="svg";function wr(i){for(;Array.isArray(i);)i=i[Hn];return i}function La(i,a){return wr(a[i])}function po(i,a){return wr(a[i.index])}function ec(i,a){return i.data[a]}function Hl(i,a){return i[a]}function $o(i,a){const s=a[i];return ka(s)?s:s[Hn]}function zd(i){return!(128&~i[sn])}function qa(i,a){return null==a?null:i[a]}function Pc(i){i[To]=0}function y0(i){1024&i[sn]||(i[sn]|=1024,zd(i)&&Z1(i))}function al(i){return!!(9216&i[sn]||i[Ps]?.dirty)}function x0(i){i[cs].changeDetectionScheduler?.notify(7),64&i[sn]&&(i[sn]|=1024),al(i)&&Z1(i)}function Z1(i){i[cs].changeDetectionScheduler?.notify(0);let a=ol(i);for(;null!==a&&!(8192&a[sn])&&(a[sn]|=8192,zd(a));)a=ol(a)}function Bd(i,a){if(!(256&~i[sn]))throw new be(911,!1);null===i[Gi]&&(i[Gi]=[]),i[Gi].push(a)}function ol(i){const a=i[fr];return ba(a)?a[fr]:a}const Nn={lFrame:$u(null),bindingsEnabled:!0,skipHydrationRootTNode:null};let C0=!1;function ju(){return Nn.bindingsEnabled}function sl(){return null!==Nn.skipHydrationRootTNode}function Ii(){return Nn.lFrame.lView}function ur(){return Nn.lFrame.tView}function w0(i){return Nn.lFrame.contextLView=i,i[Ur]}function q1(i){return Nn.lFrame.contextLView=null,i}function jr(){let i=M0();for(;null!==i&&64===i.type;)i=i.parent;return i}function M0(){return Nn.lFrame.currentTNode}function Ia(i,a){const s=Nn.lFrame;s.currentTNode=i,s.isParent=a}function ds(){return Nn.lFrame.isParent}function Ra(){Nn.lFrame.isParent=!1}function Yu(){return C0}function jd(i){C0=i}function hs(){const i=Nn.lFrame;let a=i.bindingRootIndex;return-1===a&&(a=i.bindingRootIndex=i.tView.bindingStartIndex),a}function tc(){return Nn.lFrame.bindingIndex}function us(){return Nn.lFrame.bindingIndex++}function Mc(i){const a=Nn.lFrame,s=a.bindingIndex;return a.bindingIndex=a.bindingIndex+i,s}function xa(i,a){const s=Nn.lFrame;s.bindingIndex=s.bindingRootIndex=i,n2(a)}function n2(i){Nn.lFrame.currentDirectiveIndex=i}function Ca(i){const a=Nn.lFrame.currentDirectiveIndex;return-1===a?null:i[a]}function Vc(){return Nn.lFrame.currentQueryIndex}function ic(i){Nn.lFrame.currentQueryIndex=i}function Ul(i){const a=i[Bi];return 2===a.type?a.declTNode:1===a.type?i[fa]:null}function zs(i,a,s){if(s&rn.SkipSelf){let E=a,P=i;for(;!(E=E.parent,null!==E||s&rn.Host||(E=Ul(P),null===E||(P=P[yc],10&E.type))););if(null===E)return!1;a=E,i=P}const p=Nn.lFrame=Wd();return p.currentTNode=a,p.lView=i,!0}function E0(i){const a=Wd(),s=i[Bi];Nn.lFrame=a,a.currentTNode=s.firstChild,a.lView=i,a.tView=s,a.contextLView=i,a.bindingIndex=s.bindingStartIndex,a.inI18n=!1}function Wd(){const i=Nn.lFrame,a=null===i?null:i.child;return null===a?$u(i):a}function $u(i){const a={currentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:-1,contextLView:null,elementDepthCount:0,currentNamespace:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:i,child:null,inI18n:!1};return null!==i&&(i.child=a),a}function Gl(){const i=Nn.lFrame;return Nn.lFrame=i.parent,i.currentTNode=null,i.lView=null,i}const Xd=Gl;function S0(){const i=Gl();i.isParent=!0,i.tView=null,i.selectedIndex=-1,i.contextLView=null,i.elementDepthCount=0,i.currentDirectiveIndex=-1,i.currentNamespace=null,i.bindingRootIndex=-1,i.bindingIndex=-1,i.currentQueryIndex=0}function Va(){return Nn.lFrame.selectedIndex}function Hc(i){Nn.lFrame.selectedIndex=i}function Pr(){const i=Nn.lFrame;return ec(i.tView,i.selectedIndex)}function T0(){Nn.lFrame.currentNamespace=Vl}function cl(){!function A0(){Nn.lFrame.currentNamespace=null}()}let Zu=!0;function Yd(){return Zu}function Ec(i){Zu=i}function r2(i,a){for(let s=a.directiveStart,p=a.directiveEnd;s=p)break}else a[Se]<0&&(i[To]+=65536),(le>14>16&&(3&i[sn])===a&&(i[sn]+=16384,L0(le,P)):L0(le,P)}const zc=-1;class Bc{constructor(a,s,p){this.factory=a,this.resolving=!1,this.canSeeViewProviders=s,this.injectImpl=p}}function hl(i){return i!==zc}function Sc(i){return 32767&i}function ul(i,a){let s=function Tr(i){return i>>16}(i),p=a;for(;s>0;)p=p[yc],s--;return p}let R0=!0;function hd(i){const a=R0;return R0=i,a}const $d=255,Qd=5;let jl=0;const Tc={};function Uc(i,a){const s=Zd(i,a);if(-1!==s)return s;const p=a[Bi];p.firstCreatePass&&(i.injectorIndex=a.length,O0(p.data,i),O0(a,null),O0(p.blueprint,null));const E=Wl(i,a),P=i.injectorIndex;if(hl(E)){const K=Sc(E),le=ul(E,a),Se=le[Bi].data;for(let Je=0;Je<8;Je++)a[P+Je]=le[K+Je]|Se[K+Je]}return a[P+8]=E,P}function O0(i,a){i.push(0,0,0,0,0,0,0,0,a)}function Zd(i,a){return-1===i.injectorIndex||i.parent&&i.parent.injectorIndex===i.injectorIndex||null===a[i.injectorIndex+8]?-1:i.injectorIndex}function Wl(i,a){if(i.parent&&-1!==i.parent.injectorIndex)return i.parent.injectorIndex;let s=0,p=null,E=a;for(;null!==E;){if(p=z0(E),null===p)return zc;if(s++,E=E[yc],-1!==p.injectorIndex)return p.injectorIndex|s<<16}return zc}function fl(i,a,s){!function l2(i,a,s){let p;"string"==typeof s?p=s.charCodeAt(0)||0:s.hasOwnProperty(rr)&&(p=s[rr]),null==p&&(p=s[rr]=jl++);const E=p&$d;a.data[i+(E>>Qd)]|=1<=0?a&$d:V0:a}(s);if("function"==typeof P){if(!zs(a,i,p))return p&rn.Host?d2(E,0,p):eo(a,s,p,E);try{let K;if(K=P(p),null!=K||p&rn.Optional)return K;ji()}finally{Xd()}}else if("number"==typeof P){let K=null,le=Zd(i,a),Se=zc,Je=p&rn.Host?a[Qr][fa]:null;for((-1===le||p&rn.SkipSelf)&&(Se=-1===le?Wl(i,a):a[le+8],Se!==zc&&u2(p,!1)?(K=a[Bi],le=Sc(Se),a=ul(Se,a)):le=-1);-1!==le;){const vt=a[Bi];if(P0(P,le,vt.data)){const Bt=Dr(le,a,s,K,p,Je);if(Bt!==Tc)return Bt}Se=a[le+8],Se!==zc&&u2(p,a[Bi].data[le+8]===Je)&&P0(P,le,a)?(K=vt,le=Sc(Se),a=ul(Se,a)):le=-1}}return E}function Dr(i,a,s,p,E,P){const K=a[Bi],le=K.data[i+8],vt=Jd(le,K,s,null==p?Vs(le)&&R0:p!=K&&!!(3&le.type),E&rn.Host&&P===le);return null!==vt?ks(a,K,vt,le):Tc}function Jd(i,a,s,p,E){const P=i.providerIndexes,K=a.data,le=1048575&P,Se=i.directiveStart,vt=P>>20,ti=E?le+vt:i.directiveEnd;for(let ui=p?le:le+vt;ui=Se&&bi.type===s)return ui}if(E){const ui=K[Se];if(ui&&En(ui)&&ui.type===s)return Se}return null}function ks(i,a,s,p){let E=i[s];const P=a.data;if(function I0(i){return i instanceof Bc}(E)){const K=E;K.resolving&&function hi(i,a){throw a&&a.join(" > "),new be(-200,i)}(function Oi(i){return"function"==typeof i?i.name||i.toString():"object"==typeof i&&null!=i&&"function"==typeof i.type?i.type.name||i.type.toString():_i(i)}(P[s]));const le=hd(K.canSeeViewProviders);K.resolving=!0;const Je=K.injectImpl?nr(K.injectImpl):null;zs(i,p,rn.Default);try{E=i[s]=K.factory(void 0,P,i,p),a.firstCreatePass&&s>=p.directiveStart&&function q3(i,a,s){const{ngOnChanges:p,ngOnInit:E,ngDoCheck:P}=a.type.prototype;if(p){const K=Ka(a);(s.preOrderHooks??=[]).push(i,K),(s.preOrderCheckHooks??=[]).push(i,K)}E&&(s.preOrderHooks??=[]).push(0-i,E),P&&((s.preOrderHooks??=[]).push(i,P),(s.preOrderCheckHooks??=[]).push(i,P))}(s,P[s],a)}finally{null!==Je&&nr(Je),hd(le),K.resolving=!1,Xd()}}return E}function P0(i,a,s){return!!(s[a+(i>>Qd)]&1<{const a=i.prototype.constructor,s=a[Qn]||m2(a),p=Object.prototype;let E=Object.getPrototypeOf(i.prototype).constructor;for(;E&&E!==p;){const P=E[Qn]||m2(E);if(P&&P!==s)return P;E=Object.getPrototypeOf(E)}return P=>new P})}function m2(i){return Ae(i)?()=>{const a=m2(dt(i));return a&&a()}:kr(i)}function z0(i){const a=i[Bi],s=a.type;return 2===s?a.declTNode:1===s?i[fa]:null}function Kl(i){return function F0(i,a){if("class"===a)return i.classes;if("style"===a)return i.styles;const s=i.attrs;if(s){const p=s.length;let E=0;for(;Ezn(Go)});static#n=this.__NG_ELEMENT_ID__=-1}new Ni("").__NG_ELEMENT_ID__=i=>{const a=jr();if(null===a)throw new be(204,!1);if(2&a.type)return a.value;if(i&rn.Optional)return null;throw new be(204,!1)};function n1(i){return i.ngOriginalError}class Bs{constructor(){this._console=console}handleError(a){const s=this._findOriginalError(a);this._console.error("ERROR",a),s&&this._console.error("ORIGINAL ERROR",s)}_findOriginalError(a){let s=a&&n1(a);for(;s&&n1(s);)s=n1(s);return s||null}}const r1=new Ni("",{providedIn:"root",factory:()=>hn(Bs).handleError.bind(void 0)});let ml=(()=>{class i{static#e=this.__NG_ELEMENT_ID__=Y0;static#t=this.__NG_ENV_ID__=s=>s}return i})();class df extends ml{constructor(a){super(),this._lView=a}onDestroy(a){return Bd(this._lView,a),()=>function wc(i,a){if(null===i[Gi])return;const s=i[Gi].indexOf(a);-1!==s&&i[Gi].splice(s,1)}(this._lView,a)}}function Y0(){return new df(Ii())}function ff(){return $l(jr(),Ii())}function $l(i,a){return new pd(po(i,a))}let pd=(()=>{class i{constructor(s){this.nativeElement=s}static#e=this.__NG_ELEMENT_ID__=ff}return i})();function Ql(i){return i instanceof pd?i.nativeElement:i}function a1(i){return a=>{setTimeout(i,void 0,a)}}const Us=class mf extends me.B{constructor(a=!1){super(),this.destroyRef=void 0,this.__isAsync=a,Ve()&&(this.destroyRef=hn(ml,{optional:!0})??void 0)}emit(a){const s=x(null);try{super.next(a)}finally{x(s)}}subscribe(a,s,p){let E=a,P=s||(()=>null),K=p;if(a&&"object"==typeof a){const Se=a;E=Se.next?.bind(Se),P=Se.error?.bind(Se),K=Se.complete?.bind(Se)}this.__isAsync&&(P=a1(P),E&&(E=a1(E)),K&&(K=a1(K)));const le=super.subscribe({next:E,error:P,complete:K});return a instanceof ce.yU&&a.add(le),le}};function K0(){return this._results[Symbol.iterator]()}class o1{static#e=Symbol.iterator;get changes(){return this._changes??=new Us}constructor(a=!1){this._emitDistinctChangesOnly=a,this.dirty=!0,this._onDirty=void 0,this._results=[],this._changesDetected=!1,this._changes=void 0,this.length=0,this.first=void 0,this.last=void 0;const s=o1.prototype;s[Symbol.iterator]||(s[Symbol.iterator]=K0)}get(a){return this._results[a]}map(a){return this._results.map(a)}filter(a){return this._results.filter(a)}find(a){return this._results.find(a)}reduce(a,s){return this._results.reduce(a,s)}forEach(a){this._results.forEach(a)}some(a){return this._results.some(a)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(a,s){this.dirty=!1;const p=function Br(i){return i.flat(Number.POSITIVE_INFINITY)}(a);(this._changesDetected=!function ha(i,a,s){if(i.length!==a.length)return!1;for(let p=0;pk2}),k2="ng",lh=new Ni(""),ed=new Ni("",{providedIn:"platform",factory:()=>"unknown"}),hh=new Ni(""),Ef=new Ni("",{providedIn:"root",factory:()=>Dc().body?.querySelector("[ngCspNonce]")?.getAttribute("ngCspNonce")||null});let Tf=()=>null;function io(i,a,s=!1){return Tf(i,a,s)}const P2=new Ni("",{providedIn:"root",factory:()=>!1});let Sd,v1;function gl(i){return function V2(){if(void 0===Sd&&(Sd=null,Yt.trustedTypes))try{Sd=Yt.trustedTypes.createPolicy("angular",{createHTML:i=>i,createScript:i=>i,createScriptURL:i=>i})}catch{}return Sd}()?.createHTML(i)||i}function H2(){if(void 0===v1&&(v1=null,Yt.trustedTypes))try{v1=Yt.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:i=>i,createScript:i=>i,createScriptURL:i=>i})}catch{}return v1}function Eh(i){return H2()?.createHTML(i)||i}function Th(i){return H2()?.createScriptURL(i)||i}class _l{constructor(a){this.changingThisBreaksApplicationSecurity=a}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see ${_e})`}}class b1 extends _l{getTypeName(){return"HTML"}}class Rf extends _l{getTypeName(){return"Style"}}class Of extends _l{getTypeName(){return"Script"}}class Ff extends _l{getTypeName(){return"URL"}}class Nf extends _l{getTypeName(){return"ResourceURL"}}function Ws(i){return i instanceof _l?i.changingThisBreaksApplicationSecurity:i}function Xc(i,a){const s=function z2(i){return i instanceof _l&&i.getTypeName()||null}(i);if(null!=s&&s!==a){if("ResourceURL"===s&&"URL"===a)return!0;throw new Error(`Required a safe ${a}, got a ${s} (see ${_e})`)}return s===a}function nc(i){return new b1(i)}function Pf(i){return new Rf(i)}function m4(i){return new Of(i)}function Yc(i){return new Ff(i)}function Dh(i){return new Nf(i)}class kh{constructor(a){this.inertDocumentHelper=a}getInertBodyElement(a){a=""+a;try{const s=(new window.DOMParser).parseFromString(gl(a),"text/html").body;return null===s?this.inertDocumentHelper.getInertBodyElement(a):(s.removeChild(s.firstChild),s)}catch{return null}}}class Lh{constructor(a){this.defaultDoc=a,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert")}getInertBodyElement(a){const s=this.inertDocument.createElement("template");return s.innerHTML=gl(a),s}}const Ih=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:\/?#]*(?:[\/?#]|$))/i;function y1(i){return(i=String(i)).match(Ih)?i:"unsafe:"+i}function kc(i){const a={};for(const s of i.split(","))a[s]=!0;return a}function Td(...i){const a={};for(const s of i)for(const p in s)s.hasOwnProperty(p)&&(a[p]=!0);return a}const Rh=kc("area,br,col,hr,img,wbr"),x1=kc("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),Oh=kc("rp,rt"),B2=Td(Rh,Td(x1,kc("address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul")),Td(Oh,kc("a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video")),Td(Oh,x1)),U2=kc("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),Nh=Td(U2,kc("abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,srcset,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),kc("aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext")),v4=kc("script,style,template");class Dd{constructor(){this.sanitizedSomething=!1,this.buf=[]}sanitizeChildren(a){let s=a.firstChild,p=!0,E=[];for(;s;)if(s.nodeType===Node.ELEMENT_NODE?p=this.startElement(s):s.nodeType===Node.TEXT_NODE?this.chars(s.nodeValue):this.sanitizedSomething=!0,p&&s.firstChild)E.push(s),s=y4(s);else for(;s;){s.nodeType===Node.ELEMENT_NODE&&this.endElement(s);let P=vl(s);if(P){s=P;break}s=E.pop()}return this.buf.join("")}startElement(a){const s=zf(a).toLowerCase();if(!B2.hasOwnProperty(s))return this.sanitizedSomething=!0,!v4.hasOwnProperty(s);this.buf.push("<"),this.buf.push(s);const p=a.attributes;for(let E=0;E"),!0}endElement(a){const s=zf(a).toLowerCase();B2.hasOwnProperty(s)&&!Rh.hasOwnProperty(s)&&(this.buf.push(""))}chars(a){this.buf.push(Vh(a))}}function vl(i){const a=i.nextSibling;if(a&&i!==a.previousSibling)throw Ph(a);return a}function y4(i){const a=i.firstChild;if(a&&function b4(i,a){return(i.compareDocumentPosition(a)&Node.DOCUMENT_POSITION_CONTAINED_BY)!==Node.DOCUMENT_POSITION_CONTAINED_BY}(i,a))throw Ph(a);return a}function zf(i){const a=i.nodeName;return"string"==typeof a?a:"FORM"}function Ph(i){return new Error(`Failed to sanitize html because the element is clobbered: ${i.outerHTML}`)}const Bf=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,x4=/([^\#-~ |!])/g;function Vh(i){return i.replace(/&/g,"&").replace(Bf,function(a){return"&#"+(1024*(a.charCodeAt(0)-55296)+(a.charCodeAt(1)-56320)+65536)+";"}).replace(x4,function(a){return"&#"+a.charCodeAt(0)+";"}).replace(//g,">")}let G2;function j2(i,a){let s=null;try{G2=G2||function Ah(i){const a=new Lh(i);return function Vf(){try{return!!(new window.DOMParser).parseFromString(gl(""),"text/html")}catch{return!1}}()?new kh(a):a}(i);let p=a?String(a):"";s=G2.getInertBodyElement(p);let E=5,P=p;do{if(0===E)throw new Error("Failed to sanitize html because the input is unstable");E--,p=P,P=s.innerHTML,s=G2.getInertBodyElement(p)}while(p!==P);return gl((new Dd).sanitizeChildren(Hh(s)||s))}finally{if(s){const p=Hh(s)||s;for(;p.firstChild;)p.removeChild(p.firstChild)}}}function Hh(i){return"content"in i&&function C4(i){return i.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===i.nodeName}(i)?i.content:null}var Kc=function(i){return i[i.NONE=0]="NONE",i[i.HTML=1]="HTML",i[i.STYLE=2]="STYLE",i[i.SCRIPT=3]="SCRIPT",i[i.URL=4]="URL",i[i.RESOURCE_URL=5]="RESOURCE_URL",i}(Kc||{});function Uf(i){const a=Ad();return a?Eh(a.sanitize(Kc.HTML,i)||""):Xc(i,"HTML")?Eh(Ws(i)):j2(Dc(),_i(i))}function Gf(i){const a=Ad();return a?a.sanitize(Kc.URL,i)||"":Xc(i,"URL")?Ws(i):y1(_i(i))}function C1(i){const a=Ad();if(a)return Th(a.sanitize(Kc.RESOURCE_URL,i)||"");if(Xc(i,"ResourceURL"))return Th(Ws(i));throw new be(904,!1)}function Uh(i,a,s){return function Bh(i,a){return"src"===a&&("embed"===i||"frame"===i||"iframe"===i||"media"===i||"script"===i)||"href"===a&&("base"===i||"link"===i)?C1:Gf}(a,s)(i)}function Ad(){const i=Ii();return i&&i[cs].sanitizer}const jh=/^>|^->||--!>|)/g,Xh="\u200b$1\u200b";function un(i){return i.ownerDocument.defaultView}function An(i){return i instanceof Function?i():i}var Lc=function(i){return i[i.Important=1]="Important",i[i.DashCase=2]="DashCase",i}(Lc||{});let M1;function $c(i,a){return M1(i,a)}function bl(i,a,s,p,E){if(null!=p){let P,K=!1;ba(p)?P=p:ka(p)&&(K=!0,p=p[Hn]);const le=wr(p);0===i&&null!==s?null==E?Tp(a,s,le):E1(a,s,le,E||null,!0):1===i&&null!==s?E1(a,s,le,E||null,!0):2===i?function $h(i,a,s){const p=Qf(i,a);p&&function Dp(i,a,s,p){i.removeChild(a,s,p)}(i,p,a,s)}(a,le,K):3===i&&a.destroyNode(le),null!=P&&function P4(i,a,s,p,E){const P=s[Xo];P!==wr(s)&&bl(a,i,p,P,E);for(let le=ea;lea.replace(Wh,Xh))}(a))}function Gn(i,a,s){return i.createElement(a,s)}function ac(i,a){a[cs].changeDetectionScheduler?.notify(8),Qh(i,a,a[Wn],2,null,null)}function wa(i,a){const s=i[Nc],p=a[fr];(ka(p)||a[Qr]!==p[fr][Qr])&&(i[sn]|=Fl.HasTransplantedViews),null===s?i[Nc]=[a]:s.push(a)}function Y2(i,a){const s=i[Nc],p=s.indexOf(a);s.splice(p,1)}function kd(i,a){if(i.length<=ea)return;const s=ea+a,p=i[s];if(p){const E=p[mo];null!==E&&E!==i&&Y2(E,p),a>0&&(i[s-1][$r]=p[$r]);const P=Ga(i,ea+a);!function Mr(i,a){ac(i,a),a[Hn]=null,a[fa]=null}(p[Bi],p);const K=P[qs];null!==K&&K.detachView(P[Bi]),p[fr]=null,p[$r]=null,p[sn]&=-129}return p}function vo(i,a){if(!(256&a[sn])){const s=a[Wn];s.destroyNode&&Qh(i,a,s,3,null,null),function xs(i){let a=i[bc];if(!a)return Qc(i[Bi],i);for(;a;){let s=null;if(ka(a))s=a[bc];else{const p=a[ea];p&&(s=p)}if(!s){for(;a&&!a[$r]&&a!==i;)ka(a)&&Qc(a[Bi],a),a=a[fr];null===a&&(a=i),ka(a)&&Qc(a[Bi],a),s=a&&a[$r]}a=s}}(a)}}function Qc(i,a){if(256&a[sn])return;const s=x(null);try{a[sn]&=-129,a[sn]|=256,a[Ps]&&ee(a[Ps]),function Ld(i,a){let s;if(null!=i&&null!=(s=i.destroyHooks))for(let p=0;p=0?p[K]():p[-K].unsubscribe(),P+=2}else s[P].call(p[s[P+1]]);null!==p&&(a[vc]=null);const E=a[Gi];if(null!==E){a[Gi]=null;for(let P=0;P-1){const{encapsulation:P}=i.data[p.directiveStart+E];if(P===ri.None||P===ri.Emulated)return null}return po(p,s)}}(i,a.parent,s)}function E1(i,a,s,p,E){i.insertBefore(a,s,p,E)}function Tp(i,a,s){i.appendChild(a,s)}function A4(i,a,s,p,E){null!==p?E1(i,a,s,p,E):Tp(i,a,s)}function Qf(i,a){return i.parentNode(a)}function Ap(i,a,s){return L4(i,a,s)}let I4,L4=function k4(i,a,s){return 40&i.type?po(i,s):null};function Zf(i,a,s,p){const E=Id(i,p,a),P=a[Wn],le=Ap(p.parent||a[fa],p,a);if(null!=E)if(Array.isArray(s))for(let Se=0;Sekn&&Zh(i,a,kn,!1),As(K?2:0,E),s(p,E)}finally{Hc(P),As(K?3:1,E)}}function H4(i,a,s){if(Ts(a)){const p=x(null);try{const P=a.directiveEnd;for(let K=a.directiveStart;Knull;function e3(i,a,s,p,E){for(let P in a){if(!a.hasOwnProperty(P))continue;const K=a[P];if(void 0===K)continue;p??={};let le,Se=xt.None;Array.isArray(K)?(le=K[0],Se=K[1]):le=K;let Je=P;if(null!==E){if(!E.hasOwnProperty(P))continue;Je=E[P]}0===i?j4(p,s,Je,le,Se):j4(p,s,Je,le)}return p}function j4(i,a,s,p,E){let P;i.hasOwnProperty(s)?(P=i[s]).push(a,p):P=i[s]=[a,p],void 0!==E&&P.push(E)}function fs(i,a,s,p,E,P,K,le){const Se=po(a,s);let vt,Je=a.inputs;!le&&null!=Je&&(vt=Je[p])?($4(i,s,vt,p,E),Vs(a)&&function h5(i,a){const s=$o(a,i);16&s[sn]||(s[sn]|=64)}(s,a.index)):3&a.type&&(p=function Hp(i){return"class"===i?"className":"for"===i?"htmlFor":"formaction"===i?"formAction":"innerHtml"===i?"innerHTML":"readonly"===i?"readOnly":"tabindex"===i?"tabIndex":i}(p),E=null!=K?K(E,a.value||"",p):E,P.setProperty(Se,p,E))}function t3(i,a,s,p){if(ju()){const E=null===p?null:{"":-1},P=function Gp(i,a){const s=i.directiveRegistry;let p=null,E=null;if(s)for(let P=0;P0;){const s=i[--a];if("number"==typeof s&&s<0)return s}return 0})(K)!=le&&K.push(le),K.push(s,p,P)}}(i,a,p,Z2(i,s,E.hostVars,lr),E)}function xl(i,a,s,p,E,P){const K=po(i,a);!function Y4(i,a,s,p,E,P,K){if(null==P)i.removeAttribute(a,E,s);else{const le=null==K?_i(P):K(P,p||"",E);i.setAttribute(a,E,le,s)}}(a[Wn],K,P,i.value,s,p,E)}function Xp(i,a,s,p,E,P){const K=P[a];if(null!==K)for(let le=0;le0&&(s[E-1][$r]=a),p{Z1(i.lView)},consumerOnSignalRead(){this.lView[Ps]=this}},r3=100;function n0(i,a=!0,s=0){const p=i[cs],E=p.rendererFactory;E.begin?.();try{!function J4(i,a){const s=Yu();try{jd(!0),r0(i,a);let p=0;for(;al(i);){if(p===r3)throw new be(103,!1);p++,r0(i,1)}}finally{jd(s)}}(i,s)}catch(K){throw a&&q2(i,K),K}finally{E.end?.(),p.inlineEffectRunner?.flush()}}function e6(i,a,s,p){const E=a[sn];if(!(256&~E))return;a[cs].inlineEffectRunner?.flush(),E0(a);let le=null,Se=null;(function q4(i){return 2!==i.type})(i)&&(Se=function e0(i){return i[Ps]??function jn(i){const a=wl.pop()??Object.create(t0);return a.lView=i,a}(i)}(a),le=j(Se));try{Pc(a),function Ku(i){return Nn.lFrame.bindingIndex=i}(i.bindingStartIndex),null!==s&&Np(i,a,s,2,p);const Je=!(3&~E);if(Je){const ti=i.preOrderCheckHooks;null!==ti&&a2(a,ti,null)}else{const ti=i.preOrderHooks;null!==ti&&o2(a,ti,0,null),Kd(a,0)}if(function a3(i){for(let a=S2(i);null!==a;a=Jl(a)){if(!(a[sn]&Fl.HasTransplantedViews))continue;const s=a[Nc];for(let p=0;p-1&&(kd(a,p),Ga(s,p))}this._attachedToViewContainer=!1}vo(this._lView[Bi],this._lView)}onDestroy(a){Bd(this._lView,a)}markForCheck(){T1(this._cdRefInjectingView||this._lView,4)}detach(){this._lView[sn]&=-129}reattach(){x0(this._lView),this._lView[sn]|=128}detectChanges(){this._lView[sn]|=1024,n0(this._lView,this.notifyErrorHandler)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new be(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null;const a=nn(this._lView),s=this._lView[mo];null!==s&&!a&&Y2(s,this._lView),ac(this._lView[Bi],this._lView)}attachToAppRef(a){if(this._attachedToViewContainer)throw new be(902,!1);this._appRef=a;const s=nn(this._lView),p=this._lView[mo];null!==p&&!s&&wa(p,this._lView),x0(this._lView)}}let D1=(()=>{class i{static#e=this.__NG_ELEMENT_ID__=tm}return i})();const s3=D1,ad=class extends s3{constructor(a,s,p){super(),this._declarationLView=a,this._declarationTContainer=s,this.elementRef=p}get ssrId(){return this._declarationTContainer.tView?.ssrId||null}createEmbeddedView(a,s){return this.createEmbeddedViewImpl(a,s)}createEmbeddedViewImpl(a,s,p){const E=Rd(this._declarationLView,this._declarationTContainer,a,{embeddedViewInjector:s,dehydratedView:p});return new Ys(E)}};function tm(){return A1(jr(),Ii())}function A1(i,a){return 4&i.type?new ad(a,i,$l(i,a)):null}let bm=()=>null;function F1(i,a){return bm(i,a)}class N1{}const Nd=new Ni("",{providedIn:"root",factory:()=>!1}),_6=new Ni("");class V5{}class v6{}class H5{resolveComponentFactory(a){throw function b6(i){const a=Error(`No component factory found for ${tt(i)}.`);return a.ngComponent=i,a}(a)}}class du{static#e=this.NULL=new H5}class b3{}let z5=(()=>{class i{constructor(){this.destroyNode=null}static#e=this.__NG_ELEMENT_ID__=()=>function B5(){const i=Ii(),s=$o(jr().index,i);return(ka(s)?s:i)[Wn]}()}return i})(),C6=(()=>{class i{static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:()=>null})}return i})();const y3={};function hu(i,a){if(null!==function f(){return t}())throw new be(-602,!1)}const w6=new Set;function oc(i){w6.has(i)||(w6.add(i),performance?.mark?.("mark_feature_usage",{detail:{feature:i}}))}function M6(i){let a=!0;return setTimeout(()=>{a&&(a=!1,i())}),"function"==typeof Yt.requestAnimationFrame&&Yt.requestAnimationFrame(()=>{a&&(a=!1,i())}),()=>{a=!1}}function E6(i){let a=!0;return queueMicrotask(()=>{a&&i()}),()=>{a=!1}}function x3(...i){}class Ha{constructor({enableLongStackTrace:a=!1,shouldCoalesceEventChangeDetection:s=!1,shouldCoalesceRunChangeDetection:p=!1}){if(this.hasPendingMacrotasks=!1,this.hasPendingMicrotasks=!1,this.isStable=!0,this.onUnstable=new Us(!1),this.onMicrotaskEmpty=new Us(!1),this.onStable=new Us(!1),this.onError=new Us(!1),typeof Zone>"u")throw new be(908,!1);Zone.assertZonePatched();const E=this;E._nesting=0,E._outer=E._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(E._inner=E._inner.fork(new Zone.TaskTrackingZoneSpec)),a&&Zone.longStackTraceZoneSpec&&(E._inner=E._inner.fork(Zone.longStackTraceZoneSpec)),E.shouldCoalesceEventChangeDetection=!p&&s,E.shouldCoalesceRunChangeDetection=p,E.callbackScheduled=!1,function u(i){const a=()=>{!function G5(i){i.isCheckStableRunning||i.callbackScheduled||(i.callbackScheduled=!0,Zone.root.run(()=>{M6(()=>{i.callbackScheduled=!1,A(i),i.isCheckStableRunning=!0,C3(i),i.isCheckStableRunning=!1})}),A(i))}(i)};i._inner=i._inner.fork({name:"angular",properties:{isAngularZone:!0},onInvokeTask:(s,p,E,P,K,le)=>{if(function Y(i){return Ct(i,"__ignore_ng_zone__")}(le))return s.invokeTask(E,P,K,le);try{return o(i),s.invokeTask(E,P,K,le)}finally{(i.shouldCoalesceEventChangeDetection&&"eventTask"===P.type||i.shouldCoalesceRunChangeDetection)&&a(),M(i)}},onInvoke:(s,p,E,P,K,le,Se)=>{try{return o(i),s.invoke(E,P,K,le,Se)}finally{i.shouldCoalesceRunChangeDetection&&!i.callbackScheduled&&!function Le(i){return Ct(i,"__scheduler_tick__")}(le)&&a(),M(i)}},onHasTask:(s,p,E,P)=>{s.hasTask(E,P),p===E&&("microTask"==P.change?(i._hasPendingMicrotasks=P.microTask,A(i),C3(i)):"macroTask"==P.change&&(i.hasPendingMacrotasks=P.macroTask))},onHandleError:(s,p,E,P)=>(s.handleError(E,P),i.runOutsideAngular(()=>i.onError.emit(P)),!1)})}(E)}static isInAngularZone(){return typeof Zone<"u"&&!0===Zone.current.get("isAngularZone")}static assertInAngularZone(){if(!Ha.isInAngularZone())throw new be(909,!1)}static assertNotInAngularZone(){if(Ha.isInAngularZone())throw new be(909,!1)}run(a,s,p){return this._inner.run(a,s,p)}runTask(a,s,p,E){const P=this._inner,K=P.scheduleEventTask("NgZoneEvent: "+E,a,S6,x3,x3);try{return P.runTask(K,s,p)}finally{P.cancelTask(K)}}runGuarded(a,s,p){return this._inner.runGuarded(a,s,p)}runOutsideAngular(a){return this._outer.run(a)}}const S6={};function C3(i){if(0==i._nesting&&!i.hasPendingMicrotasks&&!i.isStable)try{i._nesting++,i.onMicrotaskEmpty.emit(null)}finally{if(i._nesting--,!i.hasPendingMicrotasks)try{i.runOutsideAngular(()=>i.onStable.emit(null))}finally{i.isStable=!0}}}function A(i){i.hasPendingMicrotasks=!!(i._hasPendingMicrotasks||(i.shouldCoalesceEventChangeDetection||i.shouldCoalesceRunChangeDetection)&&!0===i.callbackScheduled)}function o(i){i._nesting++,i.isStable&&(i.isStable=!1,i.onUnstable.emit(null))}function M(i){i._nesting--,C3(i)}class B{constructor(){this.hasPendingMicrotasks=!1,this.hasPendingMacrotasks=!1,this.isStable=!0,this.onUnstable=new Us,this.onMicrotaskEmpty=new Us,this.onStable=new Us,this.onError=new Us}run(a,s,p){return a.apply(s,p)}runGuarded(a,s,p){return a.apply(s,p)}runOutsideAngular(a){return a()}runTask(a,s,p,E){return a.apply(s,p)}}function Ct(i,a){return!(!Array.isArray(i)||1!==i.length)&&!0===i[0]?.data?.[a]}var Ht=function(i){return i[i.EarlyRead=0]="EarlyRead",i[i.Write=1]="Write",i[i.MixedReadWrite=2]="MixedReadWrite",i[i.Read=3]="Read",i}(Ht||{});const li={destroy(){}};function Ai(i,a){!a&&De();const s=a?.injector??hn(go);if(!function Un(i){return"browser"===(i??hn(go)).get(ed)}(s))return li;oc("NgAfterNextRender");const p=s.get(ki),E=p.handler??=new Tn,P=a?.phase??Ht.MixedReadWrite,K=()=>{E.unregister(Se),le()},le=s.get(ml).onDestroy(K),Se=Z(s,()=>new cn(P,()=>{K(),i()}));return E.register(Se),{destroy:K}}class cn{constructor(a,s){this.phase=a,this.callbackFn=s,this.zone=hn(Ha),this.errorHandler=hn(Bs,{optional:!0}),hn(N1,{optional:!0})?.notify(6)}invoke(){try{this.zone.runOutsideAngular(this.callbackFn)}catch(a){this.errorHandler?.handleError(a)}}}class Tn{constructor(){this.executingCallbacks=!1,this.buckets={[Ht.EarlyRead]:new Set,[Ht.Write]:new Set,[Ht.MixedReadWrite]:new Set,[Ht.Read]:new Set},this.deferredCallbacks=new Set}register(a){(this.executingCallbacks?this.deferredCallbacks:this.buckets[a.phase]).add(a)}unregister(a){this.buckets[a.phase].delete(a),this.deferredCallbacks.delete(a)}execute(){this.executingCallbacks=!0;for(const a of Object.values(this.buckets))for(const s of a)s.invoke();this.executingCallbacks=!1;for(const a of this.deferredCallbacks)this.buckets[a.phase].add(a);this.deferredCallbacks.clear()}destroy(){for(const a of Object.values(this.buckets))a.clear();this.deferredCallbacks.clear()}}let ki=(()=>{class i{constructor(){this.handler=null,this.internalCallbacks=[]}execute(){this.executeInternalCallbacks(),this.handler?.execute()}executeInternalCallbacks(){const s=[...this.internalCallbacks];this.internalCallbacks.length=0;for(const p of s)p()}ngOnDestroy(){this.handler?.destroy(),this.handler=null,this.internalCallbacks.length=0}static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:()=>new i})}return i})();function Ln(i){return!!Ir(i)}function Er(i,a,s){let p=s?i.styles:null,E=s?i.classes:null,P=0;if(null!==a)for(let K=0;K0&&Rp(i,s,P.join(" "))}}(ui,ws,Fi,p),void 0!==s&&function V1(i,a,s){const p=i.projection=[];for(let E=0;E{class i{static#e=this.__NG_ELEMENT_ID__=Pd}return i})();function Pd(){return $a(jr(),Ii())}const Mn=ko,dr=class extends Mn{constructor(a,s,p){super(),this._lContainer=a,this._hostTNode=s,this._hostLView=p}get element(){return $l(this._hostTNode,this._hostLView)}get injector(){return new to(this._hostTNode,this._hostLView)}get parentInjector(){const a=Wl(this._hostTNode,this._hostLView);if(hl(a)){const s=ul(a,this._hostLView),p=Sc(a);return new to(s[Bi].data[p+8],s)}return new to(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(a){const s=yr(this._lContainer);return null!==s&&s[a]||null}get length(){return this._lContainer.length-ea}createEmbeddedView(a,s,p){let E,P;"number"==typeof p?E=p:null!=p&&(E=p.index,P=p.injector);const K=F1(this._lContainer,a.ssrId),le=a.createEmbeddedViewImpl(s||{},P,K);return this.insertImpl(le,E,Od(this._hostTNode,K)),le}createComponent(a,s,p,E,P){const K=a&&!function gn(i){return"function"==typeof i}(a);let le;if(K)le=s;else{const bi=s||{};le=bi.index,p=bi.injector,E=bi.projectableNodes,P=bi.environmentInjector||bi.ngModuleRef}const Se=K?a:new Do(Vn(a)),Je=p||this.parentInjector;if(!P&&null==Se.ngModule){const Fi=(K?Je:this.parentInjector).get(So,null);Fi&&(P=Fi)}const vt=Vn(Se.componentType??{}),Bt=F1(this._lContainer,vt?.id??null),ui=Se.create(Je,E,Bt?.firstChild??null,P);return this.insertImpl(ui.hostView,le,Od(this._hostTNode,Bt)),ui}insert(a,s){return this.insertImpl(a,s,!0)}insertImpl(a,s,p){const E=a._lView;if(function Wt(i){return ba(i[fr])}(E)){const le=this.indexOf(a);if(-1!==le)this.detach(le);else{const Se=E[fr],Je=new dr(Se,Se[fa],Se[fr]);Je.detach(Je.indexOf(a))}}const P=this._adjustIndex(s),K=this._lContainer;return S1(K,E,P,p),a.attachToViewContainerRef(),rs(tn(K),P,a),a}move(a,s){return this.insert(a,s)}indexOf(a){const s=yr(this._lContainer);return null!==s?s.indexOf(a):-1}remove(a){const s=this._adjustIndex(a,-1),p=kd(this._lContainer,s);p&&(Ga(tn(this._lContainer),s),vo(p[Bi],p))}detach(a){const s=this._adjustIndex(a,-1),p=kd(this._lContainer,s);return p&&null!=Ga(tn(this._lContainer),s)?new Ys(p):null}_adjustIndex(a,s=0){return a??this.length+s}};function yr(i){return i[8]}function tn(i){return i[8]||(i[8]=[])}function $a(i,a){let s;const p=a[i.index];return ba(p)?s=p:(s=Kp(p,a,null,i),a[i.index]=s,i3(a,s)),ps(s,a,i,p),new dr(s,i,a)}let ps=function Qa(i,a,s,p){if(i[Xo])return;let E;E=8&s.type?wr(p):function Wr(i,a){const s=i[Wn],p=s.createComment(""),E=po(a,i);return E1(s,Qf(s,E),p,function t5(i,a){return i.nextSibling(a)}(s,E),!1),p}(a,s),i[Xo]=E},Vo=()=>!1;class xm{constructor(a){this.queryList=a,this.matches=null}clone(){return new xm(this.queryList)}setDirty(){this.queryList.setDirty()}}class T6{constructor(a=[]){this.queries=a}createEmbeddedView(a){const s=a.queries;if(null!==s){const p=null!==a.contentQueries?a.contentQueries[0]:s.length,E=[];for(let P=0;Pa.trim())}(a):a}}class D6{constructor(a=[]){this.queries=a}elementStart(a,s){for(let p=0;p0)p.push(K[le/2]);else{const Je=P[le+1],vt=a[-Se];for(let Bt=ea;Bt(y(a),a.value);return s[l]=a,s}(i),p=s[l];return a?.equal&&(p.equal=a.equal),s.set=E=>N(p,E),s.update=E=>function ne(i,a){W()||k(),N(i,a(i.value))}(p,E),s.asReadonly=Q5.bind(s),s}function Q5(){const i=this[l];if(void 0===i.readonlyFn){const a=()=>this();a[l]=i,i.readonlyFn=a}return i.readonlyFn}function Z5(i){return R6(i)&&"function"==typeof i.set}function H6(i){let a=function a7(i){return Object.getPrototypeOf(i.prototype).constructor}(i.type),s=!0;const p=[i];for(;a;){let E;if(En(i))E=a.\u0275cmp||a.\u0275dir;else{if(a.\u0275cmp)throw new be(903,!1);E=a.\u0275dir}if(E){if(s){p.push(E);const K=i;K.inputs=Sm(i.inputs),K.inputTransforms=Sm(i.inputTransforms),K.declaredInputs=Sm(i.declaredInputs),K.outputs=Sm(i.outputs);const le=E.hostBindings;le&&M3(i,le);const Se=E.viewQuery,Je=E.contentQueries;if(Se&&Ib(i,Se),Je&&Rb(i,Je),z6(i,E),oe(i.outputs,E.outputs),En(E)&&E.data.animation){const vt=i.data;vt.animation=(vt.animation||[]).concat(E.data.animation)}}const P=E.features;if(P)for(let K=0;K=0;p--){const E=i[p];E.hostVars=a+=E.hostVars,E.hostAttrs=Or(E.hostAttrs,s=Or(s,E.hostAttrs))}}(p)}function z6(i,a){for(const s in a.inputs){if(!a.inputs.hasOwnProperty(s)||i.inputs.hasOwnProperty(s))continue;const p=a.inputs[s];if(void 0!==p&&(i.inputs[s]=p,i.declaredInputs[s]=a.declaredInputs[s],null!==a.inputTransforms)){const E=Array.isArray(p)?p[0]:p;if(!a.inputTransforms.hasOwnProperty(E))continue;i.inputTransforms??={},i.inputTransforms[E]=a.inputTransforms[E]}}}function Sm(i){return i===qr?{}:i===Bn?[]:i}function Ib(i,a){const s=i.viewQuery;i.viewQuery=s?(p,E)=>{a(p,E),s(p,E)}:a}function Rb(i,a){const s=i.contentQueries;i.contentQueries=s?(p,E,P)=>{a(p,E,P),s(p,E,P)}:a}function M3(i,a){const s=i.hostBindings;i.hostBindings=s?(p,E)=>{a(p,E),s(p,E)}:a}function G6(i){const a=i.inputConfig,s={};for(const p in a)if(a.hasOwnProperty(p)){const E=a[p];Array.isArray(E)&&E[3]&&(s[p]=E[3])}i.inputTransforms=s}class u0{}class c7{}function Vb(i,a){return new j6(i,a??null,[])}class j6 extends u0{constructor(a,s,p){super(),this._parent=s,this._bootstrapComponents=[],this.destroyCbs=[],this.componentFactoryResolver=new aa(this);const E=Ir(a);this._bootstrapComponents=An(E.bootstrap),this._r3Injector=W0(a,s,[{provide:u0,useValue:this},{provide:du,useValue:this.componentFactoryResolver},...p],tt(a),new Set(["environment"])),this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(a)}get injector(){return this._r3Injector}destroy(){const a=this._r3Injector;!a.destroyed&&a.destroy(),this.destroyCbs.forEach(s=>s()),this.destroyCbs=null}onDestroy(a){this.destroyCbs.push(a)}}class W6 extends c7{constructor(a){super(),this.moduleType=a}create(a){return new j6(this.moduleType,a,[])}}class X6 extends u0{constructor(a){super(),this.componentFactoryResolver=new aa(this),this.instance=null;const s=new Os([...a.providers,{provide:u0,useValue:this},{provide:du,useValue:this.componentFactoryResolver}],a.parent||os(),a.debugName,new Set(["environment"]));this.injector=s,a.runEnvironmentInitializers&&s.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(a){this.injector.onDestroy(a)}}function Y6(i,a,s=null){return new X6({providers:i,parent:a,debugName:s,runEnvironmentInitializers:!0}).injector}let B1=(()=>{class i{constructor(){this.taskId=0,this.pendingTasks=new Set,this.hasPendingTasks=new fe.t(!1)}get _hasPendingTasks(){return this.hasPendingTasks.value}add(){this._hasPendingTasks||this.hasPendingTasks.next(!0);const s=this.taskId++;return this.pendingTasks.add(s),s}remove(s){this.pendingTasks.delete(s),0===this.pendingTasks.size&&this._hasPendingTasks&&this.hasPendingTasks.next(!1)}ngOnDestroy(){this.pendingTasks.clear(),this._hasPendingTasks&&this.hasPendingTasks.next(!1)}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();function E3(i){return!!K6(i)&&(Array.isArray(i)||!(i instanceof Map)&&Symbol.iterator in i)}function K6(i){return null!==i&&("function"==typeof i||"object"==typeof i)}function Sl(i,a,s){return i[a]=s}function Lo(i,a,s){return!Object.is(i[a],s)&&(i[a]=s,!0)}function U1(i,a,s,p){const E=Lo(i,a,s);return Lo(i,a+1,p)||E}function Am(i,a,s,p,E){const P=U1(i,a,s,p);return Lo(i,a+2,E)||P}function T3(i,a,s,p,E,P,K,le,Se,Je){const vt=s+kn,Bt=a.firstCreatePass?function f7(i,a,s,p,E,P,K,le,Se){const Je=a.consts,vt=Q2(a,i,4,K||null,le||null);t3(a,s,vt,qa(Je,Se)),r2(a,vt);const Bt=vt.tView=U4(2,vt,p,E,P,a.directiveRegistry,a.pipeRegistry,null,a.schemas,Je,null);return null!==a.queries&&(a.queries.template(a,vt),Bt.queries=a.queries.embeddedTView(vt)),vt}(vt,a,i,p,E,P,K,le,Se):a.data[vt];Ia(Bt,!1);const ti=m7(a,i,Bt,s);Yd()&&Zf(a,i,ti,Bt),Zo(ti,i);const ui=Kp(ti,i,ti,Bt);return i[vt]=ui,i3(i,ui),function Kn(i,a,s){return Vo(i,a,s)}(ui,Bt,i),Ja(Bt)&&J2(a,i,Bt),null!=Se&&z4(i,Bt,Je),Bt}function mu(i,a,s,p,E,P,K,le){const Se=Ii(),Je=ur();return T3(Se,Je,i,a,s,p,E,qa(Je.consts,P),K,le),mu}let m7=function p7(i,a,s,p){return Ec(!0),a[Wn].createComment("")};function rg(i,a,s,p){const E=Ii();return Lo(E,us(),a)&&(ur(),xl(Pr(),E,i,a,s,p)),rg}function xu(i,a,s,p){return Lo(i,us(),s)?a+_i(s)+p:lr}function W1(i,a,s,p,E,P){const le=U1(i,tc(),s,E);return Mc(2),le?a+_i(s)+p+_i(E)+P:lr}function wu(i,a,s,p,E,P,K,le,Se,Je){const Bt=function Jc(i,a,s,p,E,P){const K=U1(i,a,s,p);return U1(i,a+2,E,P)||K}(i,tc(),s,E,K,Se);return Mc(4),Bt?a+_i(s)+p+_i(E)+P+_i(K)+le+_i(Se)+Je:lr}function Vm(i,a){return i<<17|a<<2}function Y1(i){return i>>17&32767}function lg(i){return 2|i}function p0(i){return(131068&i)>>2}function dg(i,a){return-131069&i|a<<2}function hg(i){return 1|i}function K7(i,a,s,p){const E=i[s+1],P=null===a;let K=p?Y1(E):p0(E),le=!1;for(;0!==K&&(!1===le||P);){const Je=i[K+1];ug(i[K],a)&&(le=!0,i[K+1]=p?hg(Je):lg(Je)),K=p?Y1(Je):p0(Je)}le&&(i[s+1]=p?lg(E):hg(E))}function ug(i,a){return null===i||null==a||(Array.isArray(i)?i[1]:i)===a||!(!Array.isArray(i)||"string"!=typeof a)&&Lr(i,a)>=0}const es={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function $7(i){return i.substring(es.key,es.keyEnd)}function fg(i,a){const s=es.textEnd;return s===a?-1:(a=es.keyEnd=function q7(i,a,s){for(;a32;)a++;return a}(i,es.key=a,s),Tu(i,a,s))}function Tu(i,a,s){for(;a=0;s=fg(a,s))ga(i,$7(a),!0)}function Tl(i,a,s,p){const E=Ii(),P=ur(),K=Mc(2);P.firstUpdatePass&&n_(P,i,K,p),a!==lr&&Lo(E,K,a)&&a_(P,P.data[Va()],E,E[Wn],i,E[K+1]=function Ty(i,a){return null==i||""===i||("string"==typeof a?i+=a:"object"==typeof i&&(i=tt(Ws(i)))),i}(a,s),p,K)}function Dl(i,a,s,p){const E=ur(),P=Mc(2);E.firstUpdatePass&&n_(E,null,P,p);const K=Ii();if(s!==lr&&Lo(K,P,s)){const le=E.data[Va()];if(o_(le,p)&&!zm(E,P)){let Se=p?le.classesWithoutHost:le.stylesWithoutHost;null!==Se&&(s=$t(Se,s||"")),pg(E,le,K,s,p)}else!function Sy(i,a,s,p,E,P,K,le){E===lr&&(E=Bn);let Se=0,Je=0,vt=0=i.expandoStartIndex}function n_(i,a,s,p){const E=i.data;if(null===E[s+1]){const P=E[Va()],K=zm(i,s);o_(P,p)&&null===a&&!K&&(a=!1),a=function xy(i,a,s,p){const E=Ca(i);let P=p?a.residualClasses:a.residualStyles;if(null===E)0===(p?a.classBindings:a.styleBindings)&&(s=L3(s=bg(null,i,a,s,p),a.attrs,p),P=null);else{const K=a.directiveStylingLast;if(-1===K||i[K]!==E)if(s=bg(E,i,a,s,p),null===P){let Se=function Cy(i,a,s){const p=s?a.classBindings:a.styleBindings;if(0!==p0(p))return i[Y1(p)]}(i,a,p);void 0!==Se&&Array.isArray(Se)&&(Se=bg(null,i,a,Se[1],p),Se=L3(Se,a.attrs,p),function wy(i,a,s,p){i[Y1(s?a.classBindings:a.styleBindings)]=p}(i,a,p,Se))}else P=function My(i,a,s){let p;const E=a.directiveEnd;for(let P=1+a.directiveStylingLast;P0)&&(Je=!0)):vt=s,E)if(0!==Se){const ti=Y1(i[le+1]);i[p+1]=Vm(ti,le),0!==ti&&(i[ti+1]=dg(i[ti+1],p)),i[le+1]=function my(i,a){return 131071&i|a<<17}(i[le+1],p)}else i[p+1]=Vm(le,0),0!==le&&(i[le+1]=dg(i[le+1],p)),le=p;else i[p+1]=Vm(Se,0),0===le?le=p:i[Se+1]=dg(i[Se+1],p),Se=p;Je&&(i[p+1]=lg(i[p+1])),K7(i,vt,p,!0),K7(i,vt,p,!1),function Y7(i,a,s,p,E){const P=E?i.residualClasses:i.residualStyles;null!=P&&"string"==typeof a&&Lr(P,a)>=0&&(s[p+1]=hg(s[p+1]))}(a,vt,i,p,P),K=Vm(le,Se),P?a.classBindings=K:a.styleBindings=K}(E,P,a,s,K,p)}}function bg(i,a,s,p,E){let P=null;const K=s.directiveEnd;let le=s.directiveStylingLast;for(-1===le?le=s.directiveStart:le++;le0;){const Se=i[E],Je=Array.isArray(Se),vt=Je?Se[1]:Se,Bt=null===vt;let ti=s[E+1];ti===lr&&(ti=Bt?Bn:void 0);let ui=Bt?Za(ti,p):vt===p?ti:void 0;if(Je&&!Bm(ui)&&(ui=Za(Se,p)),Bm(ui)&&(le=ui,K))return le;const bi=i[E+1];E=K?Y1(bi):p0(bi)}if(null!==a){let Se=P?a.residualClasses:a.residualStyles;null!=Se&&(le=Za(Se,p))}return le}function Bm(i){return void 0!==i}function o_(i,a){return!!(i.flags&(a?8:16))}function s_(i,a,s){Dl(ga,cd,xu(Ii(),i,a,s),!0)}class Oy{destroy(a){}updateValue(a,s){}swap(a,s){const p=Math.min(a,s),E=Math.max(a,s),P=this.detach(E);if(E-p>1){const K=this.detach(p);this.attach(p,P),this.attach(E,K)}else this.attach(p,P)}move(a,s){this.attach(s,this.detach(a))}}function I3(i,a,s,p,E){return i===s&&Object.is(a,p)?1:Object.is(E(i,a),E(s,p))?-1:0}function yg(i,a,s,p){return!(void 0===a||!a.has(p)||(i.attach(s,a.get(p)),a.delete(p),0))}function h_(i,a,s,p,E){if(yg(i,a,p,s(p,E)))i.updateValue(p,E);else{const P=i.create(p,E);i.attach(p,P)}}function u_(i,a,s,p){const E=new Set;for(let P=a;P<=s;P++)E.add(p(P,i.at(P)));return E}class f_{constructor(){this.kvMap=new Map,this._vMap=void 0}has(a){return this.kvMap.has(a)}delete(a){if(!this.has(a))return!1;const s=this.kvMap.get(a);return void 0!==this._vMap&&this._vMap.has(s)?(this.kvMap.set(a,this._vMap.get(s)),this._vMap.delete(s)):this.kvMap.delete(a),!0}get(a){return this.kvMap.get(a)}set(a,s){if(this.kvMap.has(a)){let p=this.kvMap.get(a);void 0===this._vMap&&(this._vMap=new Map);const E=this._vMap;for(;E.has(p);)p=E.get(p);E.set(p,s)}else this.kvMap.set(a,s)}forEach(a){for(let[s,p]of this.kvMap)if(a(p,s),void 0!==this._vMap){const E=this._vMap;for(;E.has(p);)p=E.get(p),a(p,s)}}}function m_(i,a){oc("NgControlFlow");const s=Ii(),p=us(),E=s[p]!==lr?s[p]:-1,P=-1!==E?Um(s,kn+E):void 0;if(Lo(s,p,i)){const le=x(null);try{if(void 0!==P&&n3(P,0),-1!==i){const Se=kn+i,Je=Um(s,Se),vt=wg(s[Bi],Se),Bt=F1(Je,vt.tView.ssrId);S1(Je,Rd(s,vt,a,{dehydratedView:Bt}),0,Od(vt,Bt))}}finally{x(le)}}else if(void 0!==P){const le=Cs(P,0);void 0!==le&&(le[Ur]=a)}}class Ny{constructor(a,s,p){this.lContainer=a,this.$implicit=s,this.$index=p}get $count(){return this.lContainer.length-ea}}function xg(i,a){return a}class Py{constructor(a,s,p){this.hasEmptyBlock=a,this.trackByFn=s,this.liveCollection=p}}function g_(i,a,s,p,E,P,K,le,Se,Je,vt,Bt,ti){oc("NgControlFlow");const ui=Ii(),bi=ur(),Fi=void 0!==Se,qi=Ii(),ln=le?K.bind(qi[Qr][Ur]):K,Hi=new Py(Fi,ln);qi[kn+i]=Hi,T3(ui,bi,i+1,a,s,p,E,qa(bi.consts,P)),Fi&&T3(ui,bi,i+2,Se,Je,vt,Bt,qa(bi.consts,ti))}class Hy extends Oy{constructor(a,s,p){super(),this.lContainer=a,this.hostLView=s,this.templateTNode=p,this.operationsCounter=void 0,this.needsIndexUpdate=!1}get length(){return this.lContainer.length-ea}at(a){return this.getLView(a)[Ur].$implicit}attach(a,s){const p=s[Ya];this.needsIndexUpdate||=a!==this.length,S1(this.lContainer,s,a,Od(this.templateTNode,p))}detach(a){return this.needsIndexUpdate||=a!==this.length-1,function zy(i,a){return kd(i,a)}(this.lContainer,a)}create(a,s){const p=F1(this.lContainer,this.templateTNode.tView.ssrId),E=Rd(this.hostLView,this.templateTNode,new Ny(this.lContainer,s,a),{dehydratedView:p});return this.operationsCounter?.recordCreate(),E}destroy(a){vo(a[Bi],a),this.operationsCounter?.recordDestroy()}updateValue(a,s){this.getLView(a)[Ur].$implicit=s}reset(){this.needsIndexUpdate=!1,this.operationsCounter?.reset()}updateIndexes(){if(this.needsIndexUpdate)for(let a=0;a{i.destroy(Se)})}(Se,i,P.trackByFn),Se.updateIndexes(),P.hasEmptyBlock){const Je=us(),vt=0===Se.length;if(Lo(p,Je,vt)){const Bt=s+2,ti=Um(p,Bt);if(vt){const ui=wg(E,Bt),bi=F1(ti,ui.tView.ssrId);S1(ti,Rd(p,ui,void 0,{dehydratedView:bi}),0,Od(ui,bi))}else n3(ti,0)}}}finally{x(a)}}function Um(i,a){return i[a]}function wg(i,a){return ec(i,a)}function R3(i,a,s,p){const E=Ii(),P=ur(),K=kn+i,le=E[Wn],Se=P.firstCreatePass?function Uy(i,a,s,p,E,P){const K=a.consts,Se=Q2(a,i,2,p,qa(K,E));return t3(a,s,Se,qa(K,P)),null!==Se.attrs&&Er(Se,Se.attrs,!1),null!==Se.mergedAttrs&&Er(Se,Se.mergedAttrs,!0),null!==a.queries&&a.queries.elementStart(a,Se),Se}(K,P,E,a,s,p):P.data[K],Je=__(P,E,Se,le,a,i);E[K]=Je;const vt=Ja(Se);return Ia(Se,!0),Jf(le,Je,Se),!function fu(i){return!(32&~i.flags)}(Se)&&Yd()&&Zf(P,E,Je,Se),0===function Ud(){return Nn.lFrame.elementDepthCount}()&&Zo(Je,E),function Uu(){Nn.lFrame.elementDepthCount++}(),vt&&(J2(P,E,Se),H4(P,Se,E)),null!==p&&z4(E,Se),R3}function Gm(){let i=jr();ds()?Ra():(i=i.parent,Ia(i,!1));const a=i;(function $3(i){return Nn.skipHydrationRootTNode===i})(a)&&function J3(){Nn.skipHydrationRootTNode=null}(),function Gu(){Nn.lFrame.elementDepthCount--}();const s=ur();return s.firstCreatePass&&(r2(s,i),Ts(i)&&s.queries.elementEnd(i)),null!=a.classesWithoutHost&&function Ju(i){return!!(8&i.flags)}(a)&&pg(s,a,Ii(),a.classesWithoutHost,!0),null!=a.stylesWithoutHost&&function qu(i){return!!(16&i.flags)}(a)&&pg(s,a,Ii(),a.stylesWithoutHost,!1),Gm}function jm(i,a,s,p){return R3(i,a,s,p),Gm(),jm}let __=(i,a,s,p,E,P)=>(Ec(!0),Gn(p,E,function k0(){return Nn.lFrame.currentNamespace}()));function Wm(i,a,s){const p=Ii(),E=ur(),P=i+kn,K=E.firstCreatePass?function jy(i,a,s,p,E){const P=a.consts,K=qa(P,p),le=Q2(a,i,8,"ng-container",K);return null!==K&&Er(le,K,!0),t3(a,s,le,qa(P,E)),null!==a.queries&&a.queries.elementStart(a,le),le}(P,E,p,a,s):E.data[P];Ia(K,!0);const le=b_(E,p,K,i);return p[P]=le,Yd()&&Zf(E,p,le,K),Zo(le,p),Ja(K)&&(J2(E,p,K),H4(E,K,p)),null!=s&&z4(p,K),Wm}function Xm(){let i=jr();const a=ur();return ds()?Ra():(i=i.parent,Ia(i,!1)),a.firstCreatePass&&(r2(a,i),Ts(i)&&a.queries.elementEnd(i)),Xm}function Mg(i,a,s){return Wm(i,a,s),Xm(),Mg}let b_=(i,a,s,p)=>(Ec(!0),On(a[Wn],""));function x_(){return Ii()}function Eg(i,a,s){const p=Ii();return Lo(p,us(),a)&&fs(ur(),Pr(),p,i,a,p[Wn],s,!0),Eg}function Sg(i,a,s){const p=Ii();if(Lo(p,us(),a)){const P=ur(),K=Pr();fs(P,K,p,i,a,Jp(Ca(P.data),K,p),s,!0)}return Sg}const K1=void 0;var Yy=["en",[["a","p"],["AM","PM"],K1],[["AM","PM"],K1,K1],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],K1,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],K1,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm a","h:mm:ss a","h:mm:ss a z","h:mm:ss a zzzz"],["{1}, {0}",K1,"{1} 'at' {0}",K1],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",function Xy(i){const s=Math.floor(Math.abs(i)),p=i.toString().replace(/^[^.]*\.?/,"").length;return 1===s&&0===p?1:5}];let Vd={};function Tg(i){const a=function Ky(i){return i.toLowerCase().replace(/_/g,"-")}(i);let s=w_(a);if(s)return s;const p=a.split("-")[0];if(s=w_(p),s)return s;if("en"===p)return Yy;throw new be(701,!1)}function C_(i){return Tg(i)[ku.PluralCase]}function w_(i){return i in Vd||(Vd[i]=Yt.ng&&Yt.ng.common&&Yt.ng.common.locales&&Yt.ng.common.locales[i]),Vd[i]}var ku=function(i){return i[i.LocaleId=0]="LocaleId",i[i.DayPeriodsFormat=1]="DayPeriodsFormat",i[i.DayPeriodsStandalone=2]="DayPeriodsStandalone",i[i.DaysFormat=3]="DaysFormat",i[i.DaysStandalone=4]="DaysStandalone",i[i.MonthsFormat=5]="MonthsFormat",i[i.MonthsStandalone=6]="MonthsStandalone",i[i.Eras=7]="Eras",i[i.FirstDayOfWeek=8]="FirstDayOfWeek",i[i.WeekendRange=9]="WeekendRange",i[i.DateFormat=10]="DateFormat",i[i.TimeFormat=11]="TimeFormat",i[i.DateTimeFormat=12]="DateTimeFormat",i[i.NumberSymbols=13]="NumberSymbols",i[i.NumberFormats=14]="NumberFormats",i[i.CurrencyCode=15]="CurrencyCode",i[i.CurrencySymbol=16]="CurrencySymbol",i[i.CurrencyName=17]="CurrencyName",i[i.Currencies=18]="Currencies",i[i.Directionality=19]="Directionality",i[i.PluralCase=20]="PluralCase",i[i.ExtraData=21]="ExtraData",i}(ku||{});const Lu="en-US";let Dg=Lu;let K_=(i,a,s)=>{};function Vg(i,a,s,p){const E=Ii(),P=ur(),K=jr();return Bg(P,E,E[Wn],K,i,a,p),Vg}function Hg(i,a){const s=jr(),p=Ii(),E=ur();return Bg(E,p,Jp(Ca(E.data),s,p),s,i,a),Hg}function Bg(i,a,s,p,E,P,K){const le=Ja(p),Je=i.firstCreatePass&&Zp(i),vt=a[Ur],Bt=Qp(a);let ti=!0;if(3&p.type||K){const Fi=po(p,a),qi=K?K(Fi):Fi,ln=Bt.length,Hi=K?Jr=>K(wr(Jr[p.index])):p.index;K_(Fi,E,P);let er=null;if(!K&&le&&(er=function zg(i,a,s,p){const E=i.cleanup;if(null!=E)for(let P=0;PSe?le[Se]:null}"string"==typeof K&&(P+=2)}return null}(i,a,E,p.index)),null!==er)(er.__ngLastListenerFn__||er).__ngNextListenerFn__=P,er.__ngLastListenerFn__=P,ti=!1;else{P=Z_(p,a,vt,P);const Jr=s.listen(qi,E,P);Bt.push(P,Jr),Je&&Je.push(E,Hi,ln,ln+1)}}else P=Z_(p,a,vt,P);const ui=p.outputs;let bi;if(ti&&null!==ui&&(bi=ui[E])){const Fi=bi.length;if(Fi)for(let qi=0;qi-1?$o(i.index,a):a,5);let le=Q_(a,s,p,P),Se=E.__ngNextListenerFn__;for(;Se;)le=Q_(a,s,Se,P)&&le,Se=Se.__ngNextListenerFn__;return le}}function Ug(i=1){return function Qu(i){return(Nn.lFrame.contextLView=function Bu(i,a){for(;i>0;)a=a[yc],i--;return a}(i,Nn.lFrame.contextLView))[Ur]}(i)}function xx(i,a){let s=null;const p=function Ue(i){const a=i.attrs;if(null!=a){const s=a.indexOf(5);if(!(1&s))return a[s+1]}return null}(i);for(let E=0;E(Ec(!0),function X2(i,a){return i.createText(a)}(a[Wn],p));function t8(i){return tp("",i,""),t8}function tp(i,a,s){const p=Ii(),E=xu(p,i,a,s);return E!==lr&&Zc(p,Va(),E),tp}function ip(i,a,s,p,E){const P=Ii(),K=W1(P,i,a,s,p,E);return K!==lr&&Zc(P,Va(),K),ip}function i8(i,a,s,p,E,P,K){const le=Ii(),Se=function Cu(i,a,s,p,E,P,K,le){const Je=Am(i,tc(),s,E,K);return Mc(3),Je?a+_i(s)+p+_i(E)+P+_i(K)+le:lr}(le,i,a,s,p,E,P,K);return Se!==lr&&Zc(le,Va(),Se),i8}function np(i,a,s,p,E,P,K,le,Se){const Je=Ii(),vt=wu(Je,i,a,s,p,E,P,K,le,Se);return vt!==lr&&Zc(Je,Va(),vt),np}function a8(i,a,s){Z5(a)&&(a=a());const p=Ii();return Lo(p,us(),a)&&fs(ur(),Pr(),p,i,a,p[Wn],s,!1),a8}function rp(i,a){const s=Z5(i);return s&&i.set(a),s}function o8(i,a){const s=Ii(),p=ur(),E=jr();return Bg(p,s,s[Wn],E,i,a),o8}function s8(i,a,s,p,E){if(i=dt(i),Array.isArray(i))for(let P=0;P>20;if(Eo(i)||!i.multi){const ui=new Bc(Je,E,$2),bi=c8(Se,a,E?vt:vt+ti,Bt);-1===bi?(fl(Uc(le,K),P,Se),g0(P,i,a.length),a.push(Se),le.directiveStart++,le.directiveEnd++,E&&(le.providerIndexes+=1048576),s.push(ui),K.push(ui)):(s[bi]=ui,K[bi]=ui)}else{const ui=c8(Se,a,vt+ti,Bt),bi=c8(Se,a,vt,vt+ti),qi=bi>=0&&s[bi];if(E&&!qi||!E&&!(ui>=0&&s[ui])){fl(Uc(le,K),P,Se);const ln=function Ox(i,a,s,p,E){const P=new Bc(i,s,$2);return P.multi=[],P.index=a,P.componentProviders=0,xv(P,E,p&&!s),P}(E?Cv:Rx,s.length,E,p,Je);!E&&qi&&(s[bi].providerFactory=ln),g0(P,i,a.length,0),a.push(Se),le.directiveStart++,le.directiveEnd++,E&&(le.providerIndexes+=1048576),s.push(ln),K.push(ln)}else g0(P,i,ui>-1?ui:bi,xv(s[E?bi:ui],Je,!E&&p));!E&&p&&qi&&s[bi].componentProviders++}}}function g0(i,a,s,p){const E=Eo(a),P=function pc(i){return!!i.useClass}(a);if(E||P){const Se=(P?dt(a.useClass):a).prototype.ngOnDestroy;if(Se){const Je=i.destroyHooks||(i.destroyHooks=[]);if(!E&&a.multi){const vt=Je.indexOf(s);-1===vt?Je.push(s,[p,Se]):Je[vt+1].push(p,Se)}else Je.push(s,Se)}}}function xv(i,a,s){return s&&i.componentProviders++,i.multi.push(a)-1}function c8(i,a,s,p){for(let E=s;E{s.providersResolver=(p,E)=>function Ix(i,a,s){const p=ur();if(p.firstCreatePass){const E=En(i);s8(s,p.data,p.blueprint,E,!0),s8(a,p.data,p.blueprint,E,!1)}}(p,E?E(i):i,a)}}let Fx=(()=>{class i{constructor(s){this._injector=s,this.cachedInjectors=new Map}getOrCreateStandaloneInjector(s){if(!s.standalone)return null;if(!this.cachedInjectors.has(s)){const p=_s(0,s.type),E=p.length>0?Y6([p],this._injector,`Standalone[${s.type.name}]`):null;this.cachedInjectors.set(s,E)}return this.cachedInjectors.get(s)}ngOnDestroy(){try{for(const s of this.cachedInjectors.values())null!==s&&s.destroy()}finally{this.cachedInjectors.clear()}}static#e=this.\u0275prov=Li({token:i,providedIn:"environment",factory:()=>new i(zn(So))})}return i})();function wv(i){oc("NgStandalone"),i.getStandaloneInjector=a=>a.get(Fx).getOrCreateStandaloneInjector(i)}function Mv(i,a,s){const p=hs()+i,E=Ii();return E[p]===lr?Sl(E,p,s?a.call(s):a()):function S3(i,a){return i[a]}(E,p)}function Ev(i,a,s,p){return Ou(Ii(),hs(),i,a,s,p)}function h8(i,a,s,p,E){return Tv(Ii(),hs(),i,a,s,p,E)}function Sv(i,a,s,p,E,P){return Dv(Ii(),hs(),i,a,s,p,E,P)}function P3(i,a){const s=i[a];return s===lr?void 0:s}function Ou(i,a,s,p,E,P){const K=a+s;return Lo(i,K,E)?Sl(i,K+1,P?p.call(P,E):p(E)):P3(i,K+1)}function Tv(i,a,s,p,E,P,K){const le=a+s;return U1(i,le,E,P)?Sl(i,le+2,K?p.call(K,E,P):p(E,P)):P3(i,le+2)}function Dv(i,a,s,p,E,P,K,le){const Se=a+s;return Am(i,Se,E,P,K)?Sl(i,Se+3,le?p.call(le,E,P,K):p(E,P,K)):P3(i,Se+3)}function Lv(i,a){const s=ur();let p;const E=i+kn;s.firstCreatePass?(p=function jx(i,a){if(a)for(let s=a.length-1;s>=0;s--){const p=a[s];if(i===p.name)return p}}(a,s.pipeRegistry),s.data[E]=p,p.onDestroy&&(s.destroyHooks??=[]).push(E,p.onDestroy)):p=s.data[E];const P=p.factory||(p.factory=kr(p.type)),le=nr($2);try{const Se=hd(!1),Je=P();return hd(Se),function Mx(i,a,s,p){s>=i.data.length&&(i.data[s]=null,i.blueprint[s]=null),a[s]=p}(s,Ii(),E,Je),Je}finally{nr(le)}}function Iv(i,a,s){const p=i+kn,E=Ii(),P=Hl(E,p);return V3(E,p)?Ou(E,hs(),a,P.transform,s,P):P.transform(s)}function Rv(i,a,s,p){const E=i+kn,P=Ii(),K=Hl(P,E);return V3(P,E)?Tv(P,hs(),a,K.transform,s,p,K):K.transform(s,p)}function Ov(i,a,s,p,E){const P=i+kn,K=Ii(),le=Hl(K,P);return V3(K,P)?Dv(K,hs(),a,le.transform,s,p,E,le):le.transform(s,p,E)}function V3(i,a){return i[Bi].data[a].pure}function Nv(i,a){return A1(i,a)}class C8{constructor(a){this.full=a;const s=a.split(".");this.major=s[0],this.minor=s[1],this.patch=s.slice(2).join(".")}}let Qv=(()=>{class i{log(s){console.log(s)}warn(s){console.warn(s)}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"platform"})}return i})();const h9=new Ni(""),E8=new Ni("");let S8,SC=(()=>{class i{constructor(s,p,E){this._ngZone=s,this.registry=p,this._isZoneStable=!0,this._callbacks=[],this.taskTrackingZone=null,S8||(function TC(i){S8=i}(E),E.addToWindow(p)),this._watchAngularEvents(),s.run(()=>{this.taskTrackingZone=typeof Zone>"u"?null:Zone.current.get("TaskTrackingZone")})}_watchAngularEvents(){this._ngZone.onUnstable.subscribe({next:()=>{this._isZoneStable=!1}}),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.subscribe({next:()=>{Ha.assertNotInAngularZone(),queueMicrotask(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}})})}isStable(){return this._isZoneStable&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())queueMicrotask(()=>{for(;0!==this._callbacks.length;){let s=this._callbacks.pop();clearTimeout(s.timeoutId),s.doneCb()}});else{let s=this.getPendingTasks();this._callbacks=this._callbacks.filter(p=>!p.updateCb||!p.updateCb(s)||(clearTimeout(p.timeoutId),!1))}}getPendingTasks(){return this.taskTrackingZone?this.taskTrackingZone.macroTasks.map(s=>({source:s.source,creationLocation:s.creationLocation,data:s.data})):[]}addCallback(s,p,E){let P=-1;p&&p>0&&(P=setTimeout(()=>{this._callbacks=this._callbacks.filter(K=>K.timeoutId!==P),s()},p)),this._callbacks.push({doneCb:s,timeoutId:P,updateCb:E})}whenStable(s,p,E){if(E&&!this.taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/plugins/task-tracking" loaded?');this.addCallback(s,p,E),this._runCallbacksIfReady()}registerApplication(s){this.registry.registerApplication(s,this)}unregisterApplication(s){this.registry.unregisterApplication(s)}findProviders(s,p,E){return[]}static#e=this.\u0275fac=function(p){return new(p||i)(zn(Ha),zn(u9),zn(E8))};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac})}return i})(),u9=(()=>{class i{constructor(){this._applications=new Map}registerApplication(s,p){this._applications.set(s,p)}unregisterApplication(s){this._applications.delete(s)}unregisterAllApplications(){this._applications.clear()}getTestability(s){return this._applications.get(s)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(s,p=!0){return S8?.findTestabilityInTree(this,s,p)??null}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"platform"})}return i})();function T8(i){return!!i&&"function"==typeof i.then}function f9(i){return!!i&&"function"==typeof i.subscribe}const D8=new Ni("");let A8=(()=>{class i{constructor(){this.initialized=!1,this.done=!1,this.donePromise=new Promise((s,p)=>{this.resolve=s,this.reject=p}),this.appInits=hn(D8,{optional:!0})??[]}runInitializers(){if(this.initialized)return;const s=[];for(const E of this.appInits){const P=E();if(T8(P))s.push(P);else if(f9(P)){const K=new Promise((le,Se)=>{P.subscribe({complete:le,error:Se})});s.push(K)}}const p=()=>{this.done=!0,this.resolve()};Promise.all(s).then(()=>{p()}).catch(E=>{this.reject(E)}),0===s.length&&p(),this.initialized=!0}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();const lp=new Ni("");function _9(i,a){return Array.isArray(a)?a.reduce(_9,i):{...i,...a}}let Al=(()=>{class i{constructor(){this._bootstrapListeners=[],this._runningTick=!1,this._destroyed=!1,this._destroyListeners=[],this._views=[],this.internalErrorHandler=hn(r1),this.afterRenderEffectManager=hn(ki),this.zonelessEnabled=hn(Nd),this.externalTestViews=new Set,this.beforeRender=new me.B,this.afterTick=new me.B,this.componentTypes=[],this.components=[],this.isStable=hn(B1).hasPendingTasks.pipe((0,ke.T)(s=>!s)),this._injector=hn(So)}get allViews(){return[...this.externalTestViews.keys(),...this._views]}get destroyed(){return this._destroyed}get injector(){return this._injector}bootstrap(s,p){const E=s instanceof v6;if(!this._injector.get(A8).done)throw!E&&so(s),new be(405,!1);let K;K=E?s:this._injector.get(du).resolveComponentFactory(s),this.componentTypes.push(K.componentType);const le=function p9(i){return i.isBoundToModule}(K)?void 0:this._injector.get(u0),Je=K.create(go.NULL,[],p||K.selector,le),vt=Je.location.nativeElement,Bt=Je.injector.get(h9,null);return Bt?.registerApplication(vt),Je.onDestroy(()=>{this.detachView(Je.hostView),B3(this.components,Je),Bt?.unregisterApplication(vt)}),this._loadComponent(Je),Je}tick(){this._tick(!0)}_tick(s){if(this._runningTick)throw new be(101,!1);const p=x(null);try{this._runningTick=!0,this.detectChangesInAttachedViews(s)}catch(E){this.internalErrorHandler(E)}finally{this._runningTick=!1,x(p),this.afterTick.next()}}detectChangesInAttachedViews(s){let p=null;this._injector.destroyed||(p=this._injector.get(b3,null,{optional:!0}));let E=0;const P=this.afterRenderEffectManager;for(;E<10;){const K=0===E;if(s||!K){this.beforeRender.next(K);for(let{_lView:le,notifyErrorHandler:Se}of this._views)DC(le,Se,K,this.zonelessEnabled)}else p?.begin?.(),p?.end?.();if(E++,P.executeInternalCallbacks(),!this.allViews.some(({_lView:le})=>al(le))&&(P.execute(),!this.allViews.some(({_lView:le})=>al(le))))break}}attachView(s){const p=s;this._views.push(p),p.attachToAppRef(this)}detachView(s){const p=s;B3(this._views,p),p.detachFromAppRef()}_loadComponent(s){this.attachView(s.hostView),this.tick(),this.components.push(s);const p=this._injector.get(lp,[]);[...this._bootstrapListeners,...p].forEach(E=>E(s))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(s=>s()),this._views.slice().forEach(s=>s.destroy())}finally{this._destroyed=!0,this._views=[],this._bootstrapListeners=[],this._destroyListeners=[]}}onDestroy(s){return this._destroyListeners.push(s),()=>B3(this._destroyListeners,s)}destroy(){if(this._destroyed)throw new be(406,!1);const s=this._injector;s.destroy&&!s.destroyed&&s.destroy()}get viewCount(){return this._views.length}warnIfDestroyed(){}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();function B3(i,a){const s=i.indexOf(a);s>-1&&i.splice(s,1)}function DC(i,a,s,p){(s||al(i))&&n0(i,a,s&&!p?0:1)}class AC{constructor(a,s){this.ngModuleFactory=a,this.componentFactories=s}}let kC=(()=>{class i{compileModuleSync(s){return new W6(s)}compileModuleAsync(s){return Promise.resolve(this.compileModuleSync(s))}compileModuleAndAllComponentsSync(s){const p=this.compileModuleSync(s),P=An(Ir(s).declarations).reduce((K,le)=>{const Se=Vn(le);return Se&&K.push(new Do(Se)),K},[]);return new AC(p,P)}compileModuleAndAllComponentsAsync(s){return Promise.resolve(this.compileModuleAndAllComponentsSync(s))}clearCache(){}clearCacheFor(s){}getModuleId(s){}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})(),IC=(()=>{class i{constructor(){this.zone=hn(Ha),this.changeDetectionScheduler=hn(N1),this.applicationRef=hn(Al)}initialize(){this._onMicrotaskEmptySubscription||(this._onMicrotaskEmptySubscription=this.zone.onMicrotaskEmpty.subscribe({next:()=>{this.changeDetectionScheduler.runningTick||this.zone.run(()=>{this.applicationRef.tick()})}}))}ngOnDestroy(){this._onMicrotaskEmptySubscription?.unsubscribe()}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();function hp({ngZoneFactory:i,ignoreChangesOutsideZone:a}){return i??=()=>new Ha(L8()),[{provide:Ha,useFactory:i},{provide:Da,multi:!0,useFactory:()=>{const s=hn(IC,{optional:!0});return()=>s.initialize()}},{provide:Da,multi:!0,useFactory:()=>{const s=hn(OC);return()=>{s.initialize()}}},{provide:r1,useFactory:RC},!0===a?{provide:_6,useValue:!0}:[]]}function RC(){const i=hn(Ha),a=hn(Bs);return s=>i.runOutsideAngular(()=>a.handleError(s))}function L8(i){return{enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:i?.eventCoalescing??!1,shouldCoalesceRunChangeDetection:i?.runCoalescing??!1}}let OC=(()=>{class i{constructor(){this.subscription=new ce.yU,this.initialized=!1,this.zone=hn(Ha),this.pendingTasks=hn(B1)}initialize(){if(this.initialized)return;this.initialized=!0;let s=null;!this.zone.isStable&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(s=this.pendingTasks.add()),this.zone.runOutsideAngular(()=>{this.subscription.add(this.zone.onStable.subscribe(()=>{Ha.assertNotInAngularZone(),queueMicrotask(()=>{null!==s&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(this.pendingTasks.remove(s),s=null)})}))}),this.subscription.add(this.zone.onUnstable.subscribe(()=>{Ha.assertInAngularZone(),s??=this.pendingTasks.add()}))}ngOnDestroy(){this.subscription.unsubscribe()}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})(),U3=(()=>{class i{constructor(){this.appRef=hn(Al),this.taskService=hn(B1),this.ngZone=hn(Ha),this.zonelessEnabled=hn(Nd),this.disableScheduling=hn(_6,{optional:!0})??!1,this.zoneIsDefined=typeof Zone<"u"&&!!Zone.root.run,this.schedulerTickApplyArgs=[{data:{__scheduler_tick__:!0}}],this.subscriptions=new ce.yU,this.cancelScheduledCallback=null,this.shouldRefreshViews=!1,this.useMicrotaskScheduler=!1,this.runningTick=!1,this.pendingRenderTaskId=null,this.subscriptions.add(this.appRef.afterTick.subscribe(()=>{this.runningTick||this.cleanup()})),this.subscriptions.add(this.ngZone.onUnstable.subscribe(()=>{this.runningTick||this.cleanup()})),this.disableScheduling||=!this.zonelessEnabled&&(this.ngZone instanceof B||!this.zoneIsDefined)}notify(s){if(!this.zonelessEnabled&&5===s)return;switch(s){case 3:case 2:case 0:case 4:case 5:case 1:this.shouldRefreshViews=!0}if(!this.shouldScheduleTick())return;const p=this.useMicrotaskScheduler?E6:M6;this.pendingRenderTaskId=this.taskService.add(),this.zoneIsDefined?Zone.root.run(()=>{this.cancelScheduledCallback=p(()=>{this.tick(this.shouldRefreshViews)})}):this.cancelScheduledCallback=p(()=>{this.tick(this.shouldRefreshViews)})}shouldScheduleTick(){return!(this.disableScheduling||null!==this.pendingRenderTaskId||this.runningTick||this.appRef._runningTick||!this.zonelessEnabled&&this.zoneIsDefined&&Ha.isInAngularZone())}tick(s){if(this.runningTick||this.appRef.destroyed)return;const p=this.taskService.add();try{this.ngZone.run(()=>{this.runningTick=!0,this.appRef._tick(s)},void 0,this.schedulerTickApplyArgs)}catch(E){throw this.taskService.remove(p),E}finally{this.cleanup()}this.useMicrotaskScheduler=!0,E6(()=>{this.useMicrotaskScheduler=!1,this.taskService.remove(p)})}ngOnDestroy(){this.subscriptions.unsubscribe(),this.cleanup()}cleanup(){if(this.shouldRefreshViews=!1,this.runningTick=!1,this.cancelScheduledCallback?.(),this.cancelScheduledCallback=null,null!==this.pendingRenderTaskId){const s=this.pendingRenderTaskId;this.pendingRenderTaskId=null,this.taskService.remove(s)}}static#e=this.\u0275fac=function(p){return new(p||i)};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"root"})}return i})();const G3=new Ni("",{providedIn:"root",factory:()=>hn(G3,rn.Optional|rn.SkipSelf)||function NC(){return typeof $localize<"u"&&$localize.locale||Lu}()}),PC=new Ni("",{providedIn:"root",factory:()=>"USD"}),O8=new Ni("");let C9=(()=>{class i{constructor(s){this._injector=s,this._modules=[],this._destroyListeners=[],this._destroyed=!1}bootstrapModuleFactory(s,p){const E=function Gt(i="zone.js",a){return"noop"===i?new B:"zone.js"===i?new Ha(a):i}(p?.ngZone,L8({eventCoalescing:p?.ngZoneEventCoalescing,runCoalescing:p?.ngZoneRunCoalescing}));return E.run(()=>{const P=p?.ignoreChangesOutsideZone,K=function zb(i,a,s){return new j6(i,a,s)}(s.moduleType,this.injector,[...hp({ngZoneFactory:()=>E,ignoreChangesOutsideZone:P}),{provide:N1,useExisting:U3}]),le=K.injector.get(Bs,null);return E.runOutsideAngular(()=>{const Se=E.onError.subscribe({next:Je=>{le.handleError(Je)}});K.onDestroy(()=>{B3(this._modules,K),Se.unsubscribe()})}),function g9(i,a,s){try{const p=s();return T8(p)?p.catch(E=>{throw a.runOutsideAngular(()=>i.handleError(E)),E}):p}catch(p){throw a.runOutsideAngular(()=>i.handleError(p)),p}}(le,E,()=>{const Se=K.injector.get(A8);return Se.runInitializers(),Se.donePromise.then(()=>(function S_(i){"string"==typeof i&&(Dg=i.toLowerCase().replace(/_/g,"-"))}(K.injector.get(G3,Lu)||Lu),this._moduleDoBootstrap(K),K))})})}bootstrapModule(s,p=[]){const E=_9({},p);return function LC(i,a,s){const p=new W6(s);return Promise.resolve(p)}(0,0,s).then(P=>this.bootstrapModuleFactory(P,E))}_moduleDoBootstrap(s){const p=s.injector.get(Al);if(s._bootstrapComponents.length>0)s._bootstrapComponents.forEach(E=>p.bootstrap(E));else{if(!s.instance.ngDoBootstrap)throw new be(-403,!1);s.instance.ngDoBootstrap(p)}this._modules.push(s)}onDestroy(s){this._destroyListeners.push(s)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new be(404,!1);this._modules.slice().forEach(p=>p.destroy()),this._destroyListeners.forEach(p=>p());const s=this._injector.get(O8,null);s&&(s.forEach(p=>p()),s.clear()),this._destroyed=!0}get destroyed(){return this._destroyed}static#e=this.\u0275fac=function(p){return new(p||i)(zn(go))};static#t=this.\u0275prov=Li({token:i,factory:i.\u0275fac,providedIn:"platform"})}return i})(),$1=null;const w9=new Ni("");function F8(i,a,s=[]){const p=`Platform: ${a}`,E=new Ni(p);return(P=[])=>{let K=N8();if(!K||K.injector.get(w9,!1)){const le=[...s,...P,{provide:E,useValue:!0}];i?i(le):function VC(i){if($1&&!$1.get(w9,!1))throw new be(400,!1);(function m9(){!function L(i){C=i}(()=>{throw new be(600,!1)})})(),$1=i;const a=i.get(C9);(function P8(i){i.get(lh,null)?.forEach(s=>s())})(i)}(function M9(i=[],a){return go.create({name:a,providers:[{provide:Js,useValue:"platform"},{provide:O8,useValue:new Set([()=>$1=null])},...i]})}(le,p))}return function E9(i){const a=N8();if(!a)throw new be(401,!1);return a}()}}function N8(){return $1?.get(C9)??null}function S9(){return!1}let T9=(()=>{class i{static#e=this.__NG_ELEMENT_ID__=zC}return i})();function zC(i){return function D9(i,a,s){if(Vs(i)&&!s){const p=$o(i.index,a);return new Ys(p,p)}return 47&i.type?new Ys(a[Qr],a):null}(jr(),Ii(),!(16&~i))}class R9{constructor(){}supports(a){return E3(a)}create(a){return new jC(a)}}const O9=(i,a)=>a;class jC{constructor(a){this.length=0,this._linkedRecords=null,this._unlinkedRecords=null,this._previousItHead=null,this._itHead=null,this._itTail=null,this._additionsHead=null,this._additionsTail=null,this._movesHead=null,this._movesTail=null,this._removalsHead=null,this._removalsTail=null,this._identityChangesHead=null,this._identityChangesTail=null,this._trackByFn=a||O9}forEachItem(a){let s;for(s=this._itHead;null!==s;s=s._next)a(s)}forEachOperation(a){let s=this._itHead,p=this._removalsHead,E=0,P=null;for(;s||p;){const K=!p||s&&s.currentIndex{K=this._trackByFn(E,le),null!==s&&Object.is(s.trackById,K)?(p&&(s=this._verifyReinsertion(s,le,K,E)),Object.is(s.item,le)||this._addIdentityChange(s,le)):(s=this._mismatch(s,le,K,E),p=!0),s=s._next,E++}),this.length=E;return this._truncate(s),this.collection=a,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let a;for(a=this._previousItHead=this._itHead;null!==a;a=a._next)a._nextPrevious=a._next;for(a=this._additionsHead;null!==a;a=a._nextAdded)a.previousIndex=a.currentIndex;for(this._additionsHead=this._additionsTail=null,a=this._movesHead;null!==a;a=a._nextMoved)a.previousIndex=a.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(a,s,p,E){let P;return null===a?P=this._itTail:(P=a._prev,this._remove(a)),null!==(a=null===this._unlinkedRecords?null:this._unlinkedRecords.get(p,null))?(Object.is(a.item,s)||this._addIdentityChange(a,s),this._reinsertAfter(a,P,E)):null!==(a=null===this._linkedRecords?null:this._linkedRecords.get(p,E))?(Object.is(a.item,s)||this._addIdentityChange(a,s),this._moveAfter(a,P,E)):a=this._addAfter(new WC(s,p),P,E),a}_verifyReinsertion(a,s,p,E){let P=null===this._unlinkedRecords?null:this._unlinkedRecords.get(p,null);return null!==P?a=this._reinsertAfter(P,a._prev,E):a.currentIndex!=E&&(a.currentIndex=E,this._addToMoves(a,E)),a}_truncate(a){for(;null!==a;){const s=a._next;this._addToRemovals(this._unlink(a)),a=s}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(a,s,p){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(a);const E=a._prevRemoved,P=a._nextRemoved;return null===E?this._removalsHead=P:E._nextRemoved=P,null===P?this._removalsTail=E:P._prevRemoved=E,this._insertAfter(a,s,p),this._addToMoves(a,p),a}_moveAfter(a,s,p){return this._unlink(a),this._insertAfter(a,s,p),this._addToMoves(a,p),a}_addAfter(a,s,p){return this._insertAfter(a,s,p),this._additionsTail=null===this._additionsTail?this._additionsHead=a:this._additionsTail._nextAdded=a,a}_insertAfter(a,s,p){const E=null===s?this._itHead:s._next;return a._next=E,a._prev=s,null===E?this._itTail=a:E._prev=a,null===s?this._itHead=a:s._next=a,null===this._linkedRecords&&(this._linkedRecords=new F9),this._linkedRecords.put(a),a.currentIndex=p,a}_remove(a){return this._addToRemovals(this._unlink(a))}_unlink(a){null!==this._linkedRecords&&this._linkedRecords.remove(a);const s=a._prev,p=a._next;return null===s?this._itHead=p:s._next=p,null===p?this._itTail=s:p._prev=s,a}_addToMoves(a,s){return a.previousIndex===s||(this._movesTail=null===this._movesTail?this._movesHead=a:this._movesTail._nextMoved=a),a}_addToRemovals(a){return null===this._unlinkedRecords&&(this._unlinkedRecords=new F9),this._unlinkedRecords.put(a),a.currentIndex=null,a._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=a,a._prevRemoved=null):(a._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=a),a}_addIdentityChange(a,s){return a.item=s,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=a:this._identityChangesTail._nextIdentityChange=a,a}}class WC{constructor(a,s){this.item=a,this.trackById=s,this.currentIndex=null,this.previousIndex=null,this._nextPrevious=null,this._prev=null,this._next=null,this._prevDup=null,this._nextDup=null,this._prevRemoved=null,this._nextRemoved=null,this._nextAdded=null,this._nextMoved=null,this._nextIdentityChange=null}}class XC{constructor(){this._head=null,this._tail=null}add(a){null===this._head?(this._head=this._tail=a,a._nextDup=null,a._prevDup=null):(this._tail._nextDup=a,a._prevDup=this._tail,a._nextDup=null,this._tail=a)}get(a,s){let p;for(p=this._head;null!==p;p=p._nextDup)if((null===s||s<=p.currentIndex)&&Object.is(p.trackById,a))return p;return null}remove(a){const s=a._prevDup,p=a._nextDup;return null===s?this._head=p:s._nextDup=p,null===p?this._tail=s:p._prevDup=s,null===this._head}}class F9{constructor(){this.map=new Map}put(a){const s=a.trackById;let p=this.map.get(s);p||(p=new XC,this.map.set(s,p)),p.add(a)}get(a,s){const E=this.map.get(a);return E?E.get(a,s):null}remove(a){const s=a.trackById;return this.map.get(s).remove(a)&&this.map.delete(s),a}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function G8(i,a,s){const p=i.previousIndex;if(null===p)return p;let E=0;return s&&p{if(s&&s.key===E)this._maybeAddToChanges(s,p),this._appendAfter=s,s=s._next;else{const P=this._getOrCreateRecordForKey(E,p);s=this._insertBeforeOrAppend(s,P)}}),s){s._prev&&(s._prev._next=null),this._removalsHead=s;for(let p=s;null!==p;p=p._nextRemoved)p===this._mapHead&&(this._mapHead=null),this._records.delete(p.key),p._nextRemoved=p._next,p.previousValue=p.currentValue,p.currentValue=null,p._prev=null,p._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(a,s){if(a){const p=a._prev;return s._next=a,s._prev=p,a._prev=s,p&&(p._next=s),a===this._mapHead&&(this._mapHead=s),this._appendAfter=a,a}return this._appendAfter?(this._appendAfter._next=s,s._prev=this._appendAfter):this._mapHead=s,this._appendAfter=s,null}_getOrCreateRecordForKey(a,s){if(this._records.has(a)){const E=this._records.get(a);this._maybeAddToChanges(E,s);const P=E._prev,K=E._next;return P&&(P._next=K),K&&(K._prev=P),E._next=null,E._prev=null,E}const p=new KC(a);return this._records.set(a,p),p.currentValue=s,this._addToAdditions(p),p}_reset(){if(this.isDirty){let a;for(this._previousMapHead=this._mapHead,a=this._previousMapHead;null!==a;a=a._next)a._nextPrevious=a._next;for(a=this._changesHead;null!==a;a=a._nextChanged)a.previousValue=a.currentValue;for(a=this._additionsHead;null!=a;a=a._nextAdded)a.previousValue=a.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(a,s){Object.is(s,a.currentValue)||(a.previousValue=a.currentValue,a.currentValue=s,this._addToChanges(a))}_addToAdditions(a){null===this._additionsHead?this._additionsHead=this._additionsTail=a:(this._additionsTail._nextAdded=a,this._additionsTail=a)}_addToChanges(a){null===this._changesHead?this._changesHead=this._changesTail=a:(this._changesTail._nextChanged=a,this._changesTail=a)}_forEach(a,s){a instanceof Map?a.forEach(s):Object.keys(a).forEach(p=>s(a[p],p))}}class KC{constructor(a){this.key=a,this.previousValue=null,this.currentValue=null,this._nextPrevious=null,this._next=null,this._prev=null,this._nextAdded=null,this._nextRemoved=null,this._nextChanged=null}}function j8(){return new W8([new R9])}let W8=(()=>{class i{static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:j8});constructor(s){this.factories=s}static create(s,p){if(null!=p){const E=p.factories.slice();s=s.concat(E)}return new i(s)}static extend(s){return{provide:i,useFactory:p=>i.create(s,p||j8()),deps:[[i,new Fa,new Oa]]}}find(s){const p=this.factories.find(E=>E.supports(s));if(null!=p)return p;throw new be(901,!1)}}return i})();function P9(){return new Pu([new N9])}let Pu=(()=>{class i{static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:P9});constructor(s){this.factories=s}static create(s,p){if(p){const E=p.factories.slice();s=s.concat(E)}return new i(s)}static extend(s){return{provide:i,useFactory:p=>i.create(s,p||P9()),deps:[[i,new Fa,new Oa]]}}find(s){const p=this.factories.find(E=>E.supports(s));if(p)return p;throw new be(901,!1)}}return i})();const qC=F8(null,"core",[]);let V9=(()=>{class i{constructor(s){}static#e=this.\u0275fac=function(p){return new(p||i)(zn(Al))};static#t=this.\u0275mod=jo({type:i});static#i=this.\u0275inj=Qt({})}return i})();function Mp(i){return"boolean"==typeof i?i:null!=i&&"false"!==i}function kw(i,a=NaN){return isNaN(parseFloat(i))||isNaN(Number(i))?a:Number(i)}function X3(i,a){oc("NgSignals");const s=function de(i){const a=Object.create(m);a.computation=i;const s=()=>{if(R(a),y(a),a.value===c)throw a.error;return a.value};return s[l]=a,s}(i);return a?.equal&&(s[l].equal=a.equal),s}function Iw(i){const a=x(null);try{return i()}finally{x(a)}}const Rw=new Ni("",{providedIn:"root",factory:()=>hn(Ow)});let Ow=(()=>{class i{static#e=this.\u0275prov=Li({token:i,providedIn:"root",factory:()=>new Fw})}return i})();class Fw{constructor(){this.queuedEffectCount=0,this.queues=new Map,this.pendingTasks=hn(B1),this.taskId=null}scheduleEffect(a){if(this.enqueue(a),null===this.taskId){const s=this.taskId=this.pendingTasks.add();queueMicrotask(()=>{this.flush(),this.pendingTasks.remove(s),this.taskId=null})}}enqueue(a){const s=a.creationZone;this.queues.has(s)||this.queues.set(s,new Set);const p=this.queues.get(s);p.has(a)||(this.queuedEffectCount++,p.add(a))}flush(){for(;this.queuedEffectCount>0;)for(const[a,s]of this.queues)null===a?this.flushQueue(s):a.run(()=>this.flushQueue(s))}flushQueue(a){for(const s of a)a.delete(s),this.queuedEffectCount--,s.run()}}class Nw{constructor(a,s,p,E,P,K){this.scheduler=a,this.effectFn=s,this.creationZone=p,this.injector=P,this.watcher=function qe(i,a,s){const p=Object.create(se);s&&(p.consumerAllowSignalWrites=!0),p.fn=i,p.schedule=a;const E=Se=>{p.cleanupFn=Se};return p.ref={notify:()=>$(p),run:()=>{if(null===p.fn)return;if(function I(){return w}())throw new Error("Schedulers cannot synchronously execute watches while scheduling.");if(p.dirty=!1,p.hasRun&&!J(p))return;p.hasRun=!0;const Se=j(p);try{p.cleanupFn(),p.cleanupFn=Ke,p.fn(E)}finally{Q(p,Se)}},cleanup:()=>p.cleanupFn(),destroy:()=>function K(Se){(function P(Se){return null===Se.fn&&null===Se.schedule})(Se)||(ee(Se),Se.cleanupFn(),Se.fn=null,Se.schedule=null,Se.cleanupFn=Ke)}(p),[l]:p},p.ref}(le=>this.runEffect(le),()=>this.schedule(),K),this.unregisterOnDestroy=E?.onDestroy(()=>this.destroy())}runEffect(a){try{this.effectFn(a)}catch(s){this.injector.get(Bs,null,{optional:!0})?.handleError(s)}}run(){this.watcher.run()}schedule(){this.scheduler.scheduleEffect(this)}destroy(){this.watcher.destroy(),this.unregisterOnDestroy?.()}}function lb(i,a){oc("NgSignals"),!a?.injector&&De();const s=a?.injector??hn(go),p=!0!==a?.manualCleanup?s.get(ml):null,E=new Nw(s.get(Rw),i,typeof Zone>"u"?null:Zone.current,p,s,a?.allowSignalWrites??!1),P=s.get(T9,null,{optional:!0});return P&&8&P._lView[sn]?(P._lView[Fc]??=[]).push(E.watcher.notify):E.watcher.notify(),E}function Pw(i,a){const s=Vn(i),p=a.elementInjector||os();return new Do(s).create(p,a.projectableNodes,a.hostElement,a.environmentInjector)}function Vw(i){const a=Vn(i);if(!a)return null;const s=new Do(a);return{get selector(){return s.selector},get type(){return s.componentType},get inputs(){return s.inputs},get outputs(){return s.outputs},get ngContentSelectors(){return s.ngContentSelectors},get isStandalone(){return a.standalone},get isSignal(){return a.signals}}}},9079:(Qe,te,g)=>{"use strict";g.d(te,{ot:()=>f});var e=g(4438);function f(I,d){const T=!d?.manualCleanup;T&&!d?.injector&&(0,e.Af3)(f);const y=T?d?.injector?.get(e.abz)??(0,e.WQX)(e.abz):null;let F;F=(0,e.vPA)(d?.requireSync?{kind:0}:{kind:1,value:d?.initialValue});const R=I.subscribe({next:z=>F.set({kind:1,value:z}),error:z=>{if(d?.rejectErrors)throw z;F.set({kind:2,error:z})}});return y?.onDestroy(R.unsubscribe.bind(R)),(0,e.EWP)(()=>{const z=F();switch(z.kind){case 1:return z.value;case 2:throw z.error;case 0:throw new e.wOt(601,"`toSignal()` called with `requireSync` but `Observable` did not emit synchronously.")}})}},4545:(Qe,te,g)=>{"use strict";function e(T){for(let y in T){let F=T[y]??"";switch(y){case"display":T.display="flex"===F?["-webkit-flex","flex"]:"inline-flex"===F?["-webkit-inline-flex","inline-flex"]:F;break;case"align-items":case"align-self":case"align-content":case"flex":case"flex-basis":case"flex-flow":case"flex-grow":case"flex-shrink":case"flex-wrap":case"justify-content":T["-webkit-"+y]=F;break;case"flex-direction":T["-webkit-flex-direction"]=F,T["flex-direction"]=F;break;case"order":T.order=T["-webkit-"+y]=isNaN(+F)?"0":F}}return T}g.d(te,{C5:()=>d,O5:()=>e,Uo:()=>w,Vc:()=>x,uG:()=>S});const t="inline",w=["row","column","row-reverse","column-reverse"];function S(T){let[y,F,R]=l(T);return function I(T,y=null,F=!1){return{display:F?"inline-flex":"flex","box-sizing":"border-box","flex-direction":T,"flex-wrap":y||null}}(y,F,R)}function l(T){T=T?.toLowerCase()??"";let[y,F,R]=T.split(" ");return w.find(z=>z===y)||(y=w[0]),F===t&&(F=R!==t?R:"",R=t),[y,f(F),!!R]}function x(T){let[y]=l(T);return y.indexOf("row")>-1}function f(T){if(T)switch(T.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":T="wrap-reverse";break;case"no":case"none":case"nowrap":T="nowrap";break;default:T="wrap"}return T}function d(T,...y){if(null==T)throw TypeError("Cannot convert undefined or null to object");for(let F of y)if(null!=F)for(let R in F)F.hasOwnProperty(R)&&(T[R]=F[R]);return T}},9340:(Qe,te,g)=>{"use strict";g.d(te,{Ce:()=>Q,DJ:()=>at,EA:()=>j,PV:()=>$,SL:()=>J,Ui:()=>R,ZH:()=>ge,cL:()=>Nt,hN:()=>Ye,qH:()=>Ze,r3:()=>ie});var e=g(4438),t=g(177),w=g(4412),S=g(1985),l=g(7786),x=g(1413),f=g(4545),I=g(5964),d=g(8141);const y={provide:e.iLQ,useFactory:function T(Et,Vt){return()=>{if((0,t.UE)(Vt)){const oe=Array.from(Et.querySelectorAll(`[class*=${F}]`)),tt=/\bflex-layout-.+?\b/g;oe.forEach($t=>{$t.classList.contains(`${F}ssr`)&&$t.parentNode?$t.parentNode.removeChild($t):$t.className.replace(tt,"")})}}},deps:[t.qQ,e.Agw],multi:!0},F="flex-layout-";let R=(()=>{class Et{}return Et.\u0275fac=function(oe){return new(oe||Et)},Et.\u0275mod=e.$C({type:Et}),Et.\u0275inj=e.G2t({providers:[y]}),Et})();class z{constructor(Vt=!1,oe="all",tt="",$t="",zt=0){this.matches=Vt,this.mediaQuery=oe,this.mqAlias=tt,this.suffix=$t,this.priority=zt,this.property=""}clone(){return new z(this.matches,this.mediaQuery,this.mqAlias,this.suffix)}}let W=(()=>{class Et{constructor(){this.stylesheet=new Map}addStyleToElement(oe,tt,$t){const zt=this.stylesheet.get(oe);zt?zt.set(tt,$t):this.stylesheet.set(oe,new Map([[tt,$t]]))}clearStyles(){this.stylesheet.clear()}getStyleForElement(oe,tt){const $t=this.stylesheet.get(oe);let zt="";if($t){const Jt=$t.get(tt);("number"==typeof Jt||"string"==typeof Jt)&&(zt=Jt+"")}return zt}}return Et.\u0275fac=function(oe){return new(oe||Et)},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();const $={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[],multiplier:void 0,defaultUnit:"px",detectLayoutDisplay:!1},j=new e.nKC("Flex Layout token, config options for the library",{providedIn:"root",factory:()=>$}),Q=new e.nKC("FlexLayoutServerLoaded",{providedIn:"root",factory:()=>!1}),J=new e.nKC("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:()=>null});function ee(Et,Vt){return Et=Et?.clone()??new z,Vt&&(Et.mqAlias=Vt.alias,Et.mediaQuery=Vt.mediaQuery,Et.suffix=Vt.suffix,Et.priority=Vt.priority),Et}class ie{constructor(){this.shouldCache=!0}sideEffect(Vt,oe,tt){}}let ge=(()=>{class Et{constructor(oe,tt,$t,zt){this._serverStylesheet=oe,this._serverModuleLoaded=tt,this._platformId=$t,this.layoutConfig=zt}applyStyleToElement(oe,tt,$t=null){let zt={};"string"==typeof tt&&(zt[tt]=$t,tt=zt),zt=this.layoutConfig.disableVendorPrefixes?tt:(0,f.O5)(tt),this._applyMultiValueStyleToElement(zt,oe)}applyStyleToElements(oe,tt=[]){const $t=this.layoutConfig.disableVendorPrefixes?oe:(0,f.O5)(oe);tt.forEach(zt=>{this._applyMultiValueStyleToElement($t,zt)})}getFlowDirection(oe){const tt="flex-direction";let $t=this.lookupStyle(oe,tt);return[$t||"row",this.lookupInlineStyle(oe,tt)||(0,t.Vy)(this._platformId)&&this._serverModuleLoaded?$t:""]}hasWrap(oe){return"wrap"===this.lookupStyle(oe,"flex-wrap")}lookupAttributeValue(oe,tt){return oe.getAttribute(tt)??""}lookupInlineStyle(oe,tt){return(0,t.UE)(this._platformId)?oe.style.getPropertyValue(tt):function ae(Et,Vt){return de(Et)[Vt]??""}(oe,tt)}lookupStyle(oe,tt,$t=!1){let zt="";return oe&&((zt=this.lookupInlineStyle(oe,tt))||((0,t.UE)(this._platformId)?$t||(zt=getComputedStyle(oe).getPropertyValue(tt)):this._serverModuleLoaded&&(zt=this._serverStylesheet.getStyleForElement(oe,tt)))),zt?zt.trim():""}_applyMultiValueStyleToElement(oe,tt){Object.keys(oe).sort().forEach($t=>{const zt=oe[$t],Jt=Array.isArray(zt)?zt:[zt];Jt.sort();for(let St of Jt)St=St?St+"":"",(0,t.UE)(this._platformId)||!this._serverModuleLoaded?(0,t.UE)(this._platformId)?tt.style.setProperty($t,St):Me(tt,$t,St):this._serverStylesheet.addStyleToElement(tt,$t,St)})}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(W),e.KVO(Q),e.KVO(e.Agw),e.KVO(j))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();function Me(Et,Vt,oe){Vt=Vt.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();const tt=de(Et);tt[Vt]=oe??"",function Te(Et,Vt){let oe="";for(const tt in Vt)Vt[tt]&&(oe+=`${tt}:${Vt[tt]};`);Et.setAttribute("style",oe)}(Et,tt)}function de(Et){const Vt={},oe=Et.getAttribute("style");if(oe){const tt=oe.split(/;+/g);for(let $t=0;$t0){const Jt=zt.indexOf(":");if(-1===Jt)throw new Error(`Invalid CSS style: ${zt}`);Vt[zt.substr(0,Jt).trim()]=zt.substr(Jt+1).trim()}}}return Vt}function D(Et,Vt){return(Vt&&Vt.priority||0)-(Et&&Et.priority||0)}function n(Et,Vt){return(Et.priority||0)-(Vt.priority||0)}let c=(()=>{class Et{constructor(oe,tt,$t){this._zone=oe,this._platformId=tt,this._document=$t,this.source=new w.t(new z(!0)),this.registry=new Map,this.pendingRemoveListenerFns=[],this._observable$=this.source.asObservable()}get activations(){const oe=[];return this.registry.forEach((tt,$t)=>{tt.matches&&oe.push($t)}),oe}isActive(oe){return this.registry.get(oe)?.matches??this.registerQuery(oe).some($t=>$t.matches)}observe(oe,tt=!1){if(oe&&oe.length){const $t=this._observable$.pipe((0,I.p)(Jt=>!tt||oe.indexOf(Jt.mediaQuery)>-1)),zt=new S.c(Jt=>{const St=this.registerQuery(oe);if(St.length){const dt=St.pop();St.forEach(Ae=>{Jt.next(Ae)}),this.source.next(dt)}Jt.complete()});return(0,l.h)(zt,$t)}return this._observable$}registerQuery(oe){const tt=Array.isArray(oe)?oe:[oe],$t=[];return function h(Et,Vt){const oe=Et.filter(tt=>!m[tt]);if(oe.length>0){const tt=oe.join(", ");try{const $t=Vt.createElement("style");$t.setAttribute("type","text/css"),$t.styleSheet||$t.appendChild(Vt.createTextNode(`\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media ${tt} {.fx-query-test{ }}\n`)),Vt.head.appendChild($t),oe.forEach(zt=>m[zt]=$t)}catch($t){console.error($t)}}}(tt,this._document),tt.forEach(zt=>{const Jt=dt=>{this._zone.run(()=>this.source.next(new z(dt.matches,zt)))};let St=this.registry.get(zt);St||(St=this.buildMQL(zt),St.addListener(Jt),this.pendingRemoveListenerFns.push(()=>St.removeListener(Jt)),this.registry.set(zt,St)),St.matches&&$t.push(new z(!0,zt))}),$t}ngOnDestroy(){let oe;for(;oe=this.pendingRemoveListenerFns.pop();)oe()}buildMQL(oe){return function k(Et,Vt){return Vt&&window.matchMedia("all").addListener?window.matchMedia(Et):function C(Et){const Vt=new EventTarget;return Vt.matches="all"===Et||""===Et,Vt.media=Et,Vt.addListener=()=>{},Vt.removeListener=()=>{},Vt.addEventListener=()=>{},Vt.dispatchEvent=()=>!1,Vt.onchange=null,Vt}(Et)}(oe,(0,t.UE)(this._platformId))}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(e.SKi),e.KVO(e.Agw),e.KVO(t.qQ))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();const m={},L=[{alias:"xs",mediaQuery:"screen and (min-width: 0px) and (max-width: 599.98px)",priority:1e3},{alias:"sm",mediaQuery:"screen and (min-width: 600px) and (max-width: 959.98px)",priority:900},{alias:"md",mediaQuery:"screen and (min-width: 960px) and (max-width: 1279.98px)",priority:800},{alias:"lg",mediaQuery:"screen and (min-width: 1280px) and (max-width: 1919.98px)",priority:700},{alias:"xl",mediaQuery:"screen and (min-width: 1920px) and (max-width: 4999.98px)",priority:600},{alias:"lt-sm",overlapping:!0,mediaQuery:"screen and (max-width: 599.98px)",priority:950},{alias:"lt-md",overlapping:!0,mediaQuery:"screen and (max-width: 959.98px)",priority:850},{alias:"lt-lg",overlapping:!0,mediaQuery:"screen and (max-width: 1279.98px)",priority:750},{alias:"lt-xl",overlapping:!0,priority:650,mediaQuery:"screen and (max-width: 1919.98px)"},{alias:"gt-xs",overlapping:!0,mediaQuery:"screen and (min-width: 600px)",priority:-950},{alias:"gt-sm",overlapping:!0,mediaQuery:"screen and (min-width: 960px)",priority:-850},{alias:"gt-md",overlapping:!0,mediaQuery:"screen and (min-width: 1280px)",priority:-750},{alias:"gt-lg",overlapping:!0,mediaQuery:"screen and (min-width: 1920px)",priority:-650}],_="(orientation: portrait) and (max-width: 599.98px)",r="(orientation: landscape) and (max-width: 959.98px)",v="(orientation: portrait) and (min-width: 600px) and (max-width: 839.98px)",V="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.98px)",N="(orientation: portrait) and (min-width: 840px)",ne="(orientation: landscape) and (min-width: 1280px)",Ee={HANDSET:`${_}, ${r}`,TABLET:`${v} , ${V}`,WEB:`${N}, ${ne} `,HANDSET_PORTRAIT:`${_}`,TABLET_PORTRAIT:`${v} `,WEB_PORTRAIT:`${N}`,HANDSET_LANDSCAPE:`${r}`,TABLET_LANDSCAPE:`${V}`,WEB_LANDSCAPE:`${ne}`},ze=[{alias:"handset",priority:2e3,mediaQuery:Ee.HANDSET},{alias:"handset.landscape",priority:2e3,mediaQuery:Ee.HANDSET_LANDSCAPE},{alias:"handset.portrait",priority:2e3,mediaQuery:Ee.HANDSET_PORTRAIT},{alias:"tablet",priority:2100,mediaQuery:Ee.TABLET},{alias:"tablet.landscape",priority:2100,mediaQuery:Ee.TABLET_LANDSCAPE},{alias:"tablet.portrait",priority:2100,mediaQuery:Ee.TABLET_PORTRAIT},{alias:"web",priority:2200,mediaQuery:Ee.WEB,overlapping:!0},{alias:"web.landscape",priority:2200,mediaQuery:Ee.WEB_LANDSCAPE,overlapping:!0},{alias:"web.portrait",priority:2200,mediaQuery:Ee.WEB_PORTRAIT,overlapping:!0}],qe=/(\.|-|_)/g;function Ke(Et){let Vt=Et.length>0?Et.charAt(0):"",oe=Et.length>1?Et.slice(1):"";return Vt.toUpperCase()+oe}const ce=new e.nKC("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:()=>{const Et=(0,e.WQX)(J),Vt=(0,e.WQX)(j),oe=[].concat.apply([],(Et||[]).map($t=>Array.isArray($t)?$t:[$t]));return function me(Et,Vt=[]){const oe={};return Et.forEach(tt=>{oe[tt.alias]=tt}),Vt.forEach(tt=>{oe[tt.alias]?(0,f.C5)(oe[tt.alias],tt):oe[tt.alias]=tt}),function X(Et){return Et.forEach(Vt=>{Vt.suffix||(Vt.suffix=function se(Et){return Et.replace(qe,"|").split("|").map(Ke).join("")}(Vt.alias),Vt.overlapping=!!Vt.overlapping)}),Et}(Object.keys(oe).map(tt=>oe[tt]))}((Vt.disableDefaultBps?[]:L).concat(Vt.addOrientationBps?ze:[]),oe)}});let fe=(()=>{class Et{constructor(oe){this.findByMap=new Map,this.items=[...oe].sort(n)}findByAlias(oe){return oe?this.findWithPredicate(oe,tt=>tt.alias===oe):null}findByQuery(oe){return this.findWithPredicate(oe,tt=>tt.mediaQuery===oe)}get overlappings(){return this.items.filter(oe=>oe.overlapping)}get aliases(){return this.items.map(oe=>oe.alias)}get suffixes(){return this.items.map(oe=>oe?.suffix??"")}findWithPredicate(oe,tt){let $t=this.findByMap.get(oe);return $t||($t=this.items.find(tt)??null,this.findByMap.set(oe,$t)),$t??null}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(ce))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();const ke="print",mt={alias:ke,mediaQuery:ke,priority:1e3};let _e=(()=>{class Et{constructor(oe,tt,$t){this.breakpoints=oe,this.layoutConfig=tt,this._document=$t,this.registeredBeforeAfterPrintHooks=!1,this.isPrintingBeforeAfterEvent=!1,this.beforePrintEventListeners=[],this.afterPrintEventListeners=[],this.formerActivations=null,this.isPrinting=!1,this.queue=new be,this.deactivations=[]}withPrintQuery(oe){return[...oe,ke]}isPrintEvent(oe){return oe.mediaQuery.startsWith(ke)}get printAlias(){return[...this.layoutConfig.printWithBreakpoints??[]]}get printBreakPoints(){return this.printAlias.map(oe=>this.breakpoints.findByAlias(oe)).filter(oe=>null!==oe)}getEventBreakpoints({mediaQuery:oe}){const tt=this.breakpoints.findByQuery(oe);return(tt?[...this.printBreakPoints,tt]:this.printBreakPoints).sort(D)}updateEvent(oe){let tt=this.breakpoints.findByQuery(oe.mediaQuery);return this.isPrintEvent(oe)&&(tt=this.getEventBreakpoints(oe)[0],oe.mediaQuery=tt?.mediaQuery??""),ee(oe,tt)}registerBeforeAfterPrintHooks(oe){if(!this._document.defaultView||this.registeredBeforeAfterPrintHooks)return;this.registeredBeforeAfterPrintHooks=!0;const tt=()=>{this.isPrinting||(this.isPrintingBeforeAfterEvent=!0,this.startPrinting(oe,this.getEventBreakpoints(new z(!0,ke))),oe.updateStyles())},$t=()=>{this.isPrintingBeforeAfterEvent=!1,this.isPrinting&&(this.stopPrinting(oe),oe.updateStyles())};this._document.defaultView.addEventListener("beforeprint",tt),this._document.defaultView.addEventListener("afterprint",$t),this.beforePrintEventListeners.push(tt),this.afterPrintEventListeners.push($t)}interceptEvents(oe){return tt=>{this.isPrintEvent(tt)?tt.matches&&!this.isPrinting?(this.startPrinting(oe,this.getEventBreakpoints(tt)),oe.updateStyles()):!tt.matches&&this.isPrinting&&!this.isPrintingBeforeAfterEvent&&(this.stopPrinting(oe),oe.updateStyles()):this.collectActivations(oe,tt)}}blockPropagation(){return oe=>!(this.isPrinting||this.isPrintEvent(oe))}startPrinting(oe,tt){this.isPrinting=!0,this.formerActivations=oe.activatedBreakpoints,oe.activatedBreakpoints=this.queue.addPrintBreakpoints(tt)}stopPrinting(oe){oe.activatedBreakpoints=this.deactivations,this.deactivations=[],this.formerActivations=null,this.queue.clear(),this.isPrinting=!1}collectActivations(oe,tt){if(!this.isPrinting||this.isPrintingBeforeAfterEvent){if(!this.isPrintingBeforeAfterEvent)return void(this.deactivations=[]);if(!tt.matches){const $t=this.breakpoints.findByQuery(tt.mediaQuery);if($t){const zt=this.formerActivations&&this.formerActivations.includes($t),Jt=!this.formerActivations&&oe.activatedBreakpoints.includes($t);(zt||Jt)&&(this.deactivations.push($t),this.deactivations.sort(D))}}}}ngOnDestroy(){this._document.defaultView&&(this.beforePrintEventListeners.forEach(oe=>this._document.defaultView.removeEventListener("beforeprint",oe)),this.afterPrintEventListeners.forEach(oe=>this._document.defaultView.removeEventListener("afterprint",oe)))}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(fe),e.KVO(j),e.KVO(t.qQ))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();class be{constructor(){this.printBreakpoints=[]}addPrintBreakpoints(Vt){return Vt.push(mt),Vt.sort(D),Vt.forEach(oe=>this.addBreakpoint(oe)),this.printBreakpoints}addBreakpoint(Vt){Vt&&void 0===this.printBreakpoints.find(tt=>tt.mediaQuery===Vt.mediaQuery)&&(this.printBreakpoints=function pe(Et){return Et?.mediaQuery.startsWith(ke)??!1}(Vt)?[Vt,...this.printBreakpoints]:[...this.printBreakpoints,Vt])}clear(){this.printBreakpoints=[]}}let Ze=(()=>{class Et{constructor(oe,tt,$t){this.matchMedia=oe,this.breakpoints=tt,this.hook=$t,this._useFallbacks=!0,this._activatedBreakpoints=[],this.elementMap=new Map,this.elementKeyMap=new WeakMap,this.watcherMap=new WeakMap,this.updateMap=new WeakMap,this.clearMap=new WeakMap,this.subject=new x.B,this.observeActivations()}get activatedAlias(){return this.activatedBreakpoints[0]?.alias??""}set activatedBreakpoints(oe){this._activatedBreakpoints=[...oe]}get activatedBreakpoints(){return[...this._activatedBreakpoints]}set useFallbacks(oe){this._useFallbacks=oe}onMediaChange(oe){const tt=this.findByQuery(oe.mediaQuery);if(tt){oe=ee(oe,tt);const $t=this.activatedBreakpoints.indexOf(tt);oe.matches&&-1===$t?(this._activatedBreakpoints.push(tt),this._activatedBreakpoints.sort(D),this.updateStyles()):!oe.matches&&-1!==$t&&(this._activatedBreakpoints.splice($t,1),this._activatedBreakpoints.sort(D),this.updateStyles())}}init(oe,tt,$t,zt,Jt=[]){_t(this.updateMap,oe,tt,$t),_t(this.clearMap,oe,tt,zt),this.buildElementKeyMap(oe,tt),this.watchExtraTriggers(oe,tt,Jt)}getValue(oe,tt,$t){const zt=this.elementMap.get(oe);if(zt){const Jt=void 0!==$t?zt.get($t):this.getActivatedValues(zt,tt);if(Jt)return Jt.get(tt)}}hasValue(oe,tt){const $t=this.elementMap.get(oe);if($t){const zt=this.getActivatedValues($t,tt);if(zt)return void 0!==zt.get(tt)||!1}return!1}setValue(oe,tt,$t,zt){let Jt=this.elementMap.get(oe);if(Jt){const dt=(Jt.get(zt)??new Map).set(tt,$t);Jt.set(zt,dt),this.elementMap.set(oe,Jt)}else Jt=(new Map).set(zt,(new Map).set(tt,$t)),this.elementMap.set(oe,Jt);const St=this.getValue(oe,tt);void 0!==St&&this.updateElement(oe,tt,St)}trackValue(oe,tt){return this.subject.asObservable().pipe((0,I.p)($t=>$t.element===oe&&$t.key===tt))}updateStyles(){this.elementMap.forEach((oe,tt)=>{const $t=new Set(this.elementKeyMap.get(tt));let zt=this.getActivatedValues(oe);zt&&zt.forEach((Jt,St)=>{this.updateElement(tt,St,Jt),$t.delete(St)}),$t.forEach(Jt=>{if(zt=this.getActivatedValues(oe,Jt),zt){const St=zt.get(Jt);this.updateElement(tt,Jt,St)}else this.clearElement(tt,Jt)})})}clearElement(oe,tt){const $t=this.clearMap.get(oe);if($t){const zt=$t.get(tt);zt&&(zt(),this.subject.next({element:oe,key:tt,value:""}))}}updateElement(oe,tt,$t){const zt=this.updateMap.get(oe);if(zt){const Jt=zt.get(tt);Jt&&(Jt($t),this.subject.next({element:oe,key:tt,value:$t}))}}releaseElement(oe){const tt=this.watcherMap.get(oe);tt&&(tt.forEach(zt=>zt.unsubscribe()),this.watcherMap.delete(oe));const $t=this.elementMap.get(oe);$t&&($t.forEach((zt,Jt)=>$t.delete(Jt)),this.elementMap.delete(oe))}triggerUpdate(oe,tt){const $t=this.elementMap.get(oe);if($t){const zt=this.getActivatedValues($t,tt);zt&&(tt?this.updateElement(oe,tt,zt.get(tt)):zt.forEach((Jt,St)=>this.updateElement(oe,St,Jt)))}}buildElementKeyMap(oe,tt){let $t=this.elementKeyMap.get(oe);$t||($t=new Set,this.elementKeyMap.set(oe,$t)),$t.add(tt)}watchExtraTriggers(oe,tt,$t){if($t&&$t.length){let zt=this.watcherMap.get(oe);if(zt||(zt=new Map,this.watcherMap.set(oe,zt)),!zt.get(tt)){const St=(0,l.h)(...$t).subscribe(()=>{const dt=this.getValue(oe,tt);this.updateElement(oe,tt,dt)});zt.set(tt,St)}}}findByQuery(oe){return this.breakpoints.findByQuery(oe)}getActivatedValues(oe,tt){for(let zt=0;zttt.mediaQuery);this.hook.registerBeforeAfterPrintHooks(this),this.matchMedia.observe(this.hook.withPrintQuery(oe)).pipe((0,d.M)(this.hook.interceptEvents(this)),(0,I.p)(this.hook.blockPropagation())).subscribe(this.onMediaChange.bind(this))}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.KVO(c),e.KVO(fe),e.KVO(_e))},Et.\u0275prov=e.jDH({token:Et,factory:Et.\u0275fac,providedIn:"root"}),Et})();function _t(Et,Vt,oe,tt){if(void 0!==tt){const $t=Et.get(Vt)??new Map;$t.set(oe,tt),Et.set(Vt,$t)}}let at=(()=>{class Et{constructor(oe,tt,$t,zt){this.elementRef=oe,this.styleBuilder=tt,this.styler=$t,this.marshal=zt,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new x.B,this.styleCache=new Map}get parentElement(){return this.elementRef.nativeElement.parentElement}get nativeElement(){return this.elementRef.nativeElement}get activatedValue(){return this.marshal.getValue(this.nativeElement,this.DIRECTIVE_KEY)}set activatedValue(oe){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,oe,this.marshal.activatedAlias)}ngOnChanges(oe){Object.keys(oe).forEach(tt=>{if(-1!==this.inputs.indexOf(tt)){const $t=tt.split(".").slice(1).join(".");this.setValue(oe[tt].currentValue,$t)}})}ngOnDestroy(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)}init(oe=[]){this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),oe)}addStyles(oe,tt){const $t=this.styleBuilder,zt=$t.shouldCache;let Jt=this.styleCache.get(oe);(!Jt||!zt)&&(Jt=$t.buildStyles(oe,tt),zt&&this.styleCache.set(oe,Jt)),this.mru={...Jt},this.applyStyleToElement(Jt),$t.sideEffect(oe,Jt,tt)}clearStyles(){Object.keys(this.mru).forEach(oe=>{this.mru[oe]=""}),this.applyStyleToElement(this.mru),this.mru={},this.currentValue=void 0}triggerUpdate(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)}getFlexFlowDirection(oe,tt=!1){if(oe){const[$t,zt]=this.styler.getFlowDirection(oe);if(!zt&&tt){const Jt=(0,f.uG)($t);this.styler.applyStyleToElements(Jt,[oe])}return $t.trim()}return"row"}hasWrap(oe){return this.styler.hasWrap(oe)}applyStyleToElement(oe,tt,$t=this.nativeElement){this.styler.applyStyleToElement($t,oe,tt)}setValue(oe,tt){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,oe,tt)}updateWithValue(oe){this.currentValue!==oe&&(this.addStyles(oe),this.currentValue=oe)}}return Et.\u0275fac=function(oe){return new(oe||Et)(e.rXU(e.aKT),e.rXU(ie),e.rXU(ge),e.rXU(Ze))},Et.\u0275dir=e.FsC({type:Et,features:[e.OA$]}),Et})();function Ye(Et,Vt="1",oe="1"){let tt=[Vt,oe,Et],$t=Et.indexOf("calc");if($t>0){tt[2]=rt(Et.substring($t).trim());let zt=Et.substr(0,$t).trim().split(" ");2==zt.length&&(tt[0]=zt[0],tt[1]=zt[1])}else if(0==$t)tt[2]=rt(Et.trim());else{let zt=Et.split(" ");tt=3===zt.length?zt:[Vt,oe,Et]}return tt}function rt(Et){return Et.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}EventTarget;const Yt="x";function Nt(Et,Vt){if(void 0===Vt)return Et;const oe=tt=>{const $t=+tt.slice(0,-Yt.length);return Et.endsWith(Yt)&&!isNaN($t)?`${$t*Vt.value}${Vt.unit}`:Et};return Et.includes(" ")?Et.split(" ").map(oe).join(" "):oe(Et)}},6038:(Qe,te,g)=>{"use strict";g.d(te,{Cc:()=>r,PW:()=>$,eI:()=>k});var e=g(4438),t=g(9340),w=g(177),x=(g(4085),g(6977),g(345));let R=(()=>{class v extends t.DJ{constructor(N,ne,Ee,ze,qe,Ke,se){super(N,null,ne,Ee),this.ngClassInstance=se,this.DIRECTIVE_KEY="ngClass",this.ngClassInstance||(this.ngClassInstance=new w.YU(ze,qe,N,Ke)),this.init(),this.setValue("","")}set klass(N){this.ngClassInstance.klass=N,this.setValue(N,"")}updateWithValue(N){this.ngClassInstance.ngClass=N,this.ngClassInstance.ngDoCheck()}ngDoCheck(){this.ngClassInstance.ngDoCheck()}}return v.\u0275fac=function(N){return new(N||v)(e.rXU(e.aKT),e.rXU(t.ZH),e.rXU(t.qH),e.rXU(e._q3),e.rXU(e.MKu),e.rXU(e.sFG),e.rXU(w.YU,10))},v.\u0275dir=e.FsC({type:v,inputs:{klass:[0,"class","klass"]},features:[e.Vt3]}),v})();const z=["ngClass","ngClass.xs","ngClass.sm","ngClass.md","ngClass.lg","ngClass.xl","ngClass.lt-sm","ngClass.lt-md","ngClass.lt-lg","ngClass.lt-xl","ngClass.gt-xs","ngClass.gt-sm","ngClass.gt-md","ngClass.gt-lg"];let $=(()=>{class v extends R{constructor(){super(...arguments),this.inputs=z}}return v.\u0275fac=(()=>{let V;return function(ne){return(V||(V=e.xGo(v)))(ne||v)}})(),v.\u0275dir=e.FsC({type:v,selectors:[["","ngClass",""],["","ngClass.xs",""],["","ngClass.sm",""],["","ngClass.md",""],["","ngClass.lg",""],["","ngClass.xl",""],["","ngClass.lt-sm",""],["","ngClass.lt-md",""],["","ngClass.lt-lg",""],["","ngClass.lt-xl",""],["","ngClass.gt-xs",""],["","ngClass.gt-sm",""],["","ngClass.gt-md",""],["","ngClass.gt-lg",""]],inputs:{ngClass:"ngClass","ngClass.xs":"ngClass.xs","ngClass.sm":"ngClass.sm","ngClass.md":"ngClass.md","ngClass.lg":"ngClass.lg","ngClass.xl":"ngClass.xl","ngClass.lt-sm":"ngClass.lt-sm","ngClass.lt-md":"ngClass.lt-md","ngClass.lt-lg":"ngClass.lt-lg","ngClass.lt-xl":"ngClass.lt-xl","ngClass.gt-xs":"ngClass.gt-xs","ngClass.gt-sm":"ngClass.gt-sm","ngClass.gt-md":"ngClass.gt-md","ngClass.gt-lg":"ngClass.gt-lg"},features:[e.Vt3]}),v})();class ae{constructor(V,N,ne=!0){this.key=V,this.value=N,this.key=ne?V.replace(/['"]/g,"").trim():V.trim(),this.value=ne?N.replace(/['"]/g,"").trim():N.trim(),this.value=this.value.replace(/;/,"")}}function Me(v){let V=typeof v;return"object"===V?v.constructor===Array?"array":v.constructor===Set?"set":"object":V}function n(v){const[V,...N]=v.split(":");return new ae(V,N.join(":"))}function c(v,V){return V.key&&(v[V.key]=V.value),v}let m=(()=>{class v extends t.DJ{constructor(N,ne,Ee,ze,qe,Ke,se,X,me){super(N,null,ne,Ee),this.sanitizer=ze,this.ngStyleInstance=se,this.DIRECTIVE_KEY="ngStyle",this.ngStyleInstance||(this.ngStyleInstance=new w.B3(N,qe,Ke)),this.init();const ce=this.nativeElement.getAttribute("style")??"";this.fallbackStyles=this.buildStyleMap(ce),this.isServer=X&&(0,w.Vy)(me)}updateWithValue(N){const ne=this.buildStyleMap(N);this.ngStyleInstance.ngStyle={...this.fallbackStyles,...ne},this.isServer&&this.applyStyleToElement(ne),this.ngStyleInstance.ngDoCheck()}clearStyles(){this.ngStyleInstance.ngStyle=this.fallbackStyles,this.ngStyleInstance.ngDoCheck()}buildStyleMap(N){const ne=Ee=>this.sanitizer.sanitize(e.WPN.STYLE,Ee)??"";if(N)switch(Me(N)){case"string":return L(function Te(v,V=";"){return String(v).trim().split(V).map(N=>N.trim()).filter(N=>""!==N)}(N),ne);case"array":return L(N,ne);default:return function D(v,V){let N=[];return"set"===Me(v)?v.forEach(ne=>N.push(ne)):Object.keys(v).forEach(ne=>{N.push(`${ne}:${v[ne]}`)}),function de(v,V){return v.map(n).filter(ne=>!!ne).map(ne=>(V&&(ne.value=V(ne.value)),ne)).reduce(c,{})}(N,V)}(N,ne)}return{}}ngDoCheck(){this.ngStyleInstance.ngDoCheck()}}return v.\u0275fac=function(N){return new(N||v)(e.rXU(e.aKT),e.rXU(t.ZH),e.rXU(t.qH),e.rXU(x.up),e.rXU(e.MKu),e.rXU(e.sFG),e.rXU(w.B3,10),e.rXU(t.Ce),e.rXU(e.Agw))},v.\u0275dir=e.FsC({type:v,features:[e.Vt3]}),v})();const h=["ngStyle","ngStyle.xs","ngStyle.sm","ngStyle.md","ngStyle.lg","ngStyle.xl","ngStyle.lt-sm","ngStyle.lt-md","ngStyle.lt-lg","ngStyle.lt-xl","ngStyle.gt-xs","ngStyle.gt-sm","ngStyle.gt-md","ngStyle.gt-lg"];let k=(()=>{class v extends m{constructor(){super(...arguments),this.inputs=h}}return v.\u0275fac=(()=>{let V;return function(ne){return(V||(V=e.xGo(v)))(ne||v)}})(),v.\u0275dir=e.FsC({type:v,selectors:[["","ngStyle",""],["","ngStyle.xs",""],["","ngStyle.sm",""],["","ngStyle.md",""],["","ngStyle.lg",""],["","ngStyle.xl",""],["","ngStyle.lt-sm",""],["","ngStyle.lt-md",""],["","ngStyle.lt-lg",""],["","ngStyle.lt-xl",""],["","ngStyle.gt-xs",""],["","ngStyle.gt-sm",""],["","ngStyle.gt-md",""],["","ngStyle.gt-lg",""]],inputs:{ngStyle:"ngStyle","ngStyle.xs":"ngStyle.xs","ngStyle.sm":"ngStyle.sm","ngStyle.md":"ngStyle.md","ngStyle.lg":"ngStyle.lg","ngStyle.xl":"ngStyle.xl","ngStyle.lt-sm":"ngStyle.lt-sm","ngStyle.lt-md":"ngStyle.lt-md","ngStyle.lt-lg":"ngStyle.lt-lg","ngStyle.lt-xl":"ngStyle.lt-xl","ngStyle.gt-xs":"ngStyle.gt-xs","ngStyle.gt-sm":"ngStyle.gt-sm","ngStyle.gt-md":"ngStyle.gt-md","ngStyle.gt-lg":"ngStyle.gt-lg"},features:[e.Vt3]}),v})();function L(v,V){return v.map(n).filter(ne=>!!ne).map(ne=>(V&&(ne.value=V(ne.value)),ne)).reduce(c,{})}let r=(()=>{class v{}return v.\u0275fac=function(N){return new(N||v)},v.\u0275mod=e.$C({type:v}),v.\u0275inj=e.G2t({imports:[t.Ui]}),v})()},2920:(Qe,te,g)=>{"use strict";g.d(te,{DJ:()=>y,UI:()=>C,sA:()=>Ye,w2:()=>Jt});var e=g(4438),t=g(8203),w=g(9340),S=g(4545),x=(g(1413),g(6977));let f=(()=>{class St extends w.r3{buildStyles(Ae,{display:we}){const he=(0,S.uG)(Ae);return{...he,display:"none"===we?we:he.display}}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275prov=e.jDH({token:St,factory:St.\u0275fac,providedIn:"root"}),St})();const I=["fxLayout","fxLayout.xs","fxLayout.sm","fxLayout.md","fxLayout.lg","fxLayout.xl","fxLayout.lt-sm","fxLayout.lt-md","fxLayout.lt-lg","fxLayout.lt-xl","fxLayout.gt-xs","fxLayout.gt-sm","fxLayout.gt-md","fxLayout.gt-lg"];let T=(()=>{class St extends w.DJ{constructor(Ae,we,he,q,Re){super(Ae,he,we,q),this._config=Re,this.DIRECTIVE_KEY="layout",this.init()}updateWithValue(Ae){const he=this._config.detectLayoutDisplay?this.styler.lookupStyle(this.nativeElement,"display"):"";this.styleCache=F.get(he)??new Map,F.set(he,this.styleCache),this.currentValue!==Ae&&(this.addStyles(Ae,{display:he}),this.currentValue=Ae)}}return St.\u0275fac=function(Ae){return new(Ae||St)(e.rXU(e.aKT),e.rXU(w.ZH),e.rXU(f),e.rXU(w.qH),e.rXU(w.EA))},St.\u0275dir=e.FsC({type:St,features:[e.Vt3]}),St})(),y=(()=>{class St extends T{constructor(){super(...arguments),this.inputs=I}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275dir=e.FsC({type:St,selectors:[["","fxLayout",""],["","fxLayout.xs",""],["","fxLayout.sm",""],["","fxLayout.md",""],["","fxLayout.lg",""],["","fxLayout.xl",""],["","fxLayout.lt-sm",""],["","fxLayout.lt-md",""],["","fxLayout.lt-lg",""],["","fxLayout.lt-xl",""],["","fxLayout.gt-xs",""],["","fxLayout.gt-sm",""],["","fxLayout.gt-md",""],["","fxLayout.gt-lg",""]],inputs:{fxLayout:"fxLayout","fxLayout.xs":"fxLayout.xs","fxLayout.sm":"fxLayout.sm","fxLayout.md":"fxLayout.md","fxLayout.lg":"fxLayout.lg","fxLayout.xl":"fxLayout.xl","fxLayout.lt-sm":"fxLayout.lt-sm","fxLayout.lt-md":"fxLayout.lt-md","fxLayout.lt-lg":"fxLayout.lt-lg","fxLayout.lt-xl":"fxLayout.lt-xl","fxLayout.gt-xs":"fxLayout.gt-xs","fxLayout.gt-sm":"fxLayout.gt-sm","fxLayout.gt-md":"fxLayout.gt-md","fxLayout.gt-lg":"fxLayout.gt-lg"},features:[e.Vt3]}),St})();const F=new Map;let n=(()=>{class St extends w.r3{constructor(Ae){super(),this.layoutConfig=Ae}buildStyles(Ae,we){let[he,q,...Re]=Ae.split(" "),Ne=Re.join(" ");const gt=we.direction.indexOf("column")>-1?"column":"row",$e=(0,S.Vc)(gt)?"max-width":"max-height",Fe=(0,S.Vc)(gt)?"min-width":"min-height",Ge=String(Ne).indexOf("calc")>-1,et=Ge||"auto"===Ne,st=String(Ne).indexOf("%")>-1&&!Ge,Tt=String(Ne).indexOf("px")>-1||String(Ne).indexOf("rem")>-1||String(Ne).indexOf("em")>-1||String(Ne).indexOf("vw")>-1||String(Ne).indexOf("vh")>-1;let mi=Ge||Tt;he="0"==he?0:he,q="0"==q?0:q;const Kt=!he&&!q;let Pt={};const Xi={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(Ne||""){case"":Ne="row"===gt?"0%":!1!==this.layoutConfig.useColumnBasisZero?"0.000000001px":"auto";break;case"initial":case"nogrow":he=0,Ne="auto";break;case"grow":Ne="100%";break;case"noshrink":q=0,Ne="auto";break;case"auto":break;case"none":he=0,q=0,Ne="auto";break;default:!mi&&!st&&!isNaN(Ne)&&(Ne+="%"),"0%"===Ne&&(mi=!0),"0px"===Ne&&(Ne="0%"),Pt=(0,S.C5)(Xi,Ge?{"flex-grow":he,"flex-shrink":q,"flex-basis":mi?Ne:"100%"}:{flex:`${he} ${q} ${mi?Ne:"100%"}`})}return Pt.flex||Pt["flex-grow"]||(Pt=(0,S.C5)(Xi,Ge?{"flex-grow":he,"flex-shrink":q,"flex-basis":Ne}:{flex:`${he} ${q} ${Ne}`})),"0%"!==Ne&&"0px"!==Ne&&"0.000000001px"!==Ne&&"auto"!==Ne&&(Pt[Fe]=Kt||mi&&he?Ne:null,Pt[$e]=Kt||!et&&q?Ne:null),Pt[Fe]||Pt[$e]?we.hasWrap&&(Pt[Ge?"flex-basis":"flex"]=Pt[$e]?Ge?Pt[$e]:`${he} ${q} ${Pt[$e]}`:Ge?Pt[Fe]:`${he} ${q} ${Pt[Fe]}`):Pt=(0,S.C5)(Xi,Ge?{"flex-grow":he,"flex-shrink":q,"flex-basis":Ne}:{flex:`${he} ${q} ${Ne}`}),(0,S.C5)(Pt,{"box-sizing":"border-box"})}}return St.\u0275fac=function(Ae){return new(Ae||St)(e.KVO(w.EA))},St.\u0275prov=e.jDH({token:St,factory:St.\u0275fac,providedIn:"root"}),St})();const c=["fxFlex","fxFlex.xs","fxFlex.sm","fxFlex.md","fxFlex.lg","fxFlex.xl","fxFlex.lt-sm","fxFlex.lt-md","fxFlex.lt-lg","fxFlex.lt-xl","fxFlex.gt-xs","fxFlex.gt-sm","fxFlex.gt-md","fxFlex.gt-lg"];let h=(()=>{class St extends w.DJ{constructor(Ae,we,he,q,Re){super(Ae,q,we,Re),this.layoutConfig=he,this.marshal=Re,this.DIRECTIVE_KEY="flex",this.direction=void 0,this.wrap=void 0,this.flexGrow="1",this.flexShrink="1",this.init()}get shrink(){return this.flexShrink}set shrink(Ae){this.flexShrink=Ae||"1",this.triggerReflow()}get grow(){return this.flexGrow}set grow(Ae){this.flexGrow=Ae||"1",this.triggerReflow()}ngOnInit(){this.parentElement&&(this.marshal.trackValue(this.parentElement,"layout").pipe((0,x.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this)),this.marshal.trackValue(this.nativeElement,"layout-align").pipe((0,x.Q)(this.destroySubject)).subscribe(this.triggerReflow.bind(this)))}onLayoutChange(Ae){const he=Ae.value.split(" ");this.direction=he[0],this.wrap=void 0!==he[1]&&"wrap"===he[1],this.triggerUpdate()}updateWithValue(Ae){void 0===this.direction&&(this.direction=this.getFlexFlowDirection(this.parentElement,!1!==this.layoutConfig.addFlexToParent)),void 0===this.wrap&&(this.wrap=this.hasWrap(this.parentElement));const he=this.direction,q=he.startsWith("row"),Re=this.wrap;q&&Re?this.styleCache=_:q&&!Re?this.styleCache=k:!q&&Re?this.styleCache=r:!q&&!Re&&(this.styleCache=L);const Ne=String(Ae).replace(";",""),gt=(0,w.hN)(Ne,this.flexGrow,this.flexShrink);this.addStyles(gt.join(" "),{direction:he,hasWrap:Re})}triggerReflow(){const Ae=this.activatedValue;if(void 0!==Ae){const we=(0,w.hN)(Ae+"",this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,we.join(" "))}}}return St.\u0275fac=function(Ae){return new(Ae||St)(e.rXU(e.aKT),e.rXU(w.ZH),e.rXU(w.EA),e.rXU(n),e.rXU(w.qH))},St.\u0275dir=e.FsC({type:St,inputs:{shrink:[0,"fxShrink","shrink"],grow:[0,"fxGrow","grow"]},features:[e.Vt3]}),St})(),C=(()=>{class St extends h{constructor(){super(...arguments),this.inputs=c}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275dir=e.FsC({type:St,selectors:[["","fxFlex",""],["","fxFlex.xs",""],["","fxFlex.sm",""],["","fxFlex.md",""],["","fxFlex.lg",""],["","fxFlex.xl",""],["","fxFlex.lt-sm",""],["","fxFlex.lt-md",""],["","fxFlex.lt-lg",""],["","fxFlex.lt-xl",""],["","fxFlex.gt-xs",""],["","fxFlex.gt-sm",""],["","fxFlex.gt-md",""],["","fxFlex.gt-lg",""]],inputs:{fxFlex:"fxFlex","fxFlex.xs":"fxFlex.xs","fxFlex.sm":"fxFlex.sm","fxFlex.md":"fxFlex.md","fxFlex.lg":"fxFlex.lg","fxFlex.xl":"fxFlex.xl","fxFlex.lt-sm":"fxFlex.lt-sm","fxFlex.lt-md":"fxFlex.lt-md","fxFlex.lt-lg":"fxFlex.lt-lg","fxFlex.lt-xl":"fxFlex.lt-xl","fxFlex.gt-xs":"fxFlex.gt-xs","fxFlex.gt-sm":"fxFlex.gt-sm","fxFlex.gt-md":"fxFlex.gt-md","fxFlex.gt-lg":"fxFlex.gt-lg"},features:[e.Vt3]}),St})();const k=new Map,L=new Map,_=new Map,r=new Map;let Ie=(()=>{class St extends w.r3{buildStyles(Ae,we){const he={},[q,Re]=Ae.split(" ");switch(q){case"center":he["justify-content"]="center";break;case"space-around":he["justify-content"]="space-around";break;case"space-between":he["justify-content"]="space-between";break;case"space-evenly":he["justify-content"]="space-evenly";break;case"end":case"flex-end":he["justify-content"]="flex-end";break;default:he["justify-content"]="flex-start"}switch(Re){case"start":case"flex-start":he["align-items"]=he["align-content"]="flex-start";break;case"center":he["align-items"]=he["align-content"]="center";break;case"end":case"flex-end":he["align-items"]=he["align-content"]="flex-end";break;case"space-between":he["align-content"]="space-between",he["align-items"]="stretch";break;case"space-around":he["align-content"]="space-around",he["align-items"]="stretch";break;case"baseline":he["align-content"]="stretch",he["align-items"]="baseline";break;default:he["align-items"]=he["align-content"]="stretch"}return(0,S.C5)(he,{display:we.inline?"inline-flex":"flex","flex-direction":we.layout,"box-sizing":"border-box","max-width":"stretch"===Re?(0,S.Vc)(we.layout)?null:"100%":null,"max-height":"stretch"===Re&&(0,S.Vc)(we.layout)?"100%":null})}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275prov=e.jDH({token:St,factory:St.\u0275fac,providedIn:"root"}),St})();const He=["fxLayoutAlign","fxLayoutAlign.xs","fxLayoutAlign.sm","fxLayoutAlign.md","fxLayoutAlign.lg","fxLayoutAlign.xl","fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg"];let yt=(()=>{class St extends w.DJ{constructor(Ae,we,he,q){super(Ae,he,we,q),this.DIRECTIVE_KEY="layout-align",this.layout="row",this.inline=!1,this.init(),this.marshal.trackValue(this.nativeElement,"layout").pipe((0,x.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}updateWithValue(Ae){const we=this.layout||"row",he=this.inline;"row"===we&&he?this.styleCache=Vt:"row"!==we||he?"row-reverse"===we&&he?this.styleCache=tt:"row-reverse"!==we||he?"column"===we&&he?this.styleCache=oe:"column"!==we||he?"column-reverse"===we&&he?this.styleCache=$t:"column-reverse"===we&&!he&&(this.styleCache=Et):this.styleCache=Yt:this.styleCache=Nt:this.styleCache=rt,this.addStyles(Ae,{layout:we,inline:he})}onLayoutChange(Ae){const we=Ae.value.split(" ");this.layout=we[0],this.inline=Ae.value.includes("inline"),S.Uo.find(he=>he===this.layout)||(this.layout="row"),this.triggerUpdate()}}return St.\u0275fac=function(Ae){return new(Ae||St)(e.rXU(e.aKT),e.rXU(w.ZH),e.rXU(Ie),e.rXU(w.qH))},St.\u0275dir=e.FsC({type:St,features:[e.Vt3]}),St})(),Ye=(()=>{class St extends yt{constructor(){super(...arguments),this.inputs=He}}return St.\u0275fac=(()=>{let dt;return function(we){return(dt||(dt=e.xGo(St)))(we||St)}})(),St.\u0275dir=e.FsC({type:St,selectors:[["","fxLayoutAlign",""],["","fxLayoutAlign.xs",""],["","fxLayoutAlign.sm",""],["","fxLayoutAlign.md",""],["","fxLayoutAlign.lg",""],["","fxLayoutAlign.xl",""],["","fxLayoutAlign.lt-sm",""],["","fxLayoutAlign.lt-md",""],["","fxLayoutAlign.lt-lg",""],["","fxLayoutAlign.lt-xl",""],["","fxLayoutAlign.gt-xs",""],["","fxLayoutAlign.gt-sm",""],["","fxLayoutAlign.gt-md",""],["","fxLayoutAlign.gt-lg",""]],inputs:{fxLayoutAlign:"fxLayoutAlign","fxLayoutAlign.xs":"fxLayoutAlign.xs","fxLayoutAlign.sm":"fxLayoutAlign.sm","fxLayoutAlign.md":"fxLayoutAlign.md","fxLayoutAlign.lg":"fxLayoutAlign.lg","fxLayoutAlign.xl":"fxLayoutAlign.xl","fxLayoutAlign.lt-sm":"fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md":"fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg":"fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl":"fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs":"fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm":"fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md":"fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg":"fxLayoutAlign.gt-lg"},features:[e.Vt3]}),St})();const rt=new Map,Yt=new Map,Nt=new Map,Et=new Map,Vt=new Map,oe=new Map,tt=new Map,$t=new Map;let Jt=(()=>{class St{}return St.\u0275fac=function(Ae){return new(Ae||St)},St.\u0275mod=e.$C({type:St}),St.\u0275inj=e.G2t({imports:[w.Ui,t.jI]}),St})()},9417:(Qe,te,g)=>{"use strict";g.d(te,{BC:()=>pe,JD:()=>wo,Q0:()=>Sr,VZ:()=>uo,X1:()=>Ri,YN:()=>oa,YS:()=>Lr,cV:()=>Yn,cb:()=>Ze,cz:()=>Q,hs:()=>_i,j4:()=>Sa,k0:()=>ie,kq:()=>d,l_:()=>ho,me:()=>W,ok:()=>Mo,qT:()=>or,vO:()=>ke,vS:()=>nr,xq:()=>_a,zX:()=>Bo,ze:()=>oo});var e=g(4438),t=g(177),w=g(2806),S=g(7468),l=g(1413),x=g(6354);let f=(()=>{class lt{constructor(Ue,At){this._renderer=Ue,this._elementRef=At,this.onChange=ni=>{},this.onTouched=()=>{}}setProperty(Ue,At){this._renderer.setProperty(this._elementRef.nativeElement,Ue,At)}registerOnTouched(Ue){this.onTouched=Ue}registerOnChange(Ue){this.onChange=Ue}setDisabledState(Ue){this.setProperty("disabled",Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(e.sFG),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:lt})}return lt})(),I=(()=>{class lt extends f{static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,features:[e.Vt3]})}return lt})();const d=new e.nKC(""),F={provide:d,useExisting:(0,e.Rfq)(()=>W),multi:!0},z=new e.nKC("");let W=(()=>{class lt extends f{constructor(Ue,At,ni){super(Ue,At),this._compositionMode=ni,this._composing=!1,null==this._compositionMode&&(this._compositionMode=!function R(){const lt=(0,t.QT)()?(0,t.QT)().getUserAgent():"";return/android (\d+)/.test(lt.toLowerCase())}())}writeValue(Ue){this.setProperty("value",Ue??"")}_handleInput(Ue){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(Ue)}_compositionStart(){this._composing=!0}_compositionEnd(Ue){this._composing=!1,this._compositionMode&&this.onChange(Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(e.sFG),e.rXU(e.aKT),e.rXU(z,8))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["input","formControlName","",3,"type","checkbox"],["textarea","formControlName",""],["input","formControl","",3,"type","checkbox"],["textarea","formControl",""],["input","ngModel","",3,"type","checkbox"],["textarea","ngModel",""],["","ngDefaultControl",""]],hostBindings:function(At,ni){1&At&&e.bIt("input",function(Zn){return ni._handleInput(Zn.target.value)})("blur",function(){return ni.onTouched()})("compositionstart",function(){return ni._compositionStart()})("compositionend",function(Zn){return ni._compositionEnd(Zn.target.value)})},features:[e.Jv_([F]),e.Vt3]})}return lt})();function $(lt){return null==lt||("string"==typeof lt||Array.isArray(lt))&&0===lt.length}function j(lt){return null!=lt&&"number"==typeof lt.length}const Q=new e.nKC(""),J=new e.nKC(""),ee=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;class ie{static min(ht){return ge(ht)}static max(ht){return ae(ht)}static required(ht){return Me(ht)}static requiredTrue(ht){return Te(ht)}static email(ht){return function de(lt){return $(lt.value)||ee.test(lt.value)?null:{email:!0}}(ht)}static minLength(ht){return function D(lt){return ht=>$(ht.value)||!j(ht.value)?null:ht.value.lengthj(ht.value)&&ht.value.length>lt?{maxlength:{requiredLength:lt,actualLength:ht.value.length}}:null}(ht)}static pattern(ht){return function c(lt){if(!lt)return m;let ht,Ue;return"string"==typeof lt?(Ue="","^"!==lt.charAt(0)&&(Ue+="^"),Ue+=lt,"$"!==lt.charAt(lt.length-1)&&(Ue+="$"),ht=new RegExp(Ue)):(Ue=lt.toString(),ht=lt),At=>{if($(At.value))return null;const ni=At.value;return ht.test(ni)?null:{pattern:{requiredPattern:Ue,actualValue:ni}}}}(ht)}static nullValidator(ht){return null}static compose(ht){return v(ht)}static composeAsync(ht){return N(ht)}}function ge(lt){return ht=>{if($(ht.value)||$(lt))return null;const Ue=parseFloat(ht.value);return!isNaN(Ue)&&Ue{if($(ht.value)||$(lt))return null;const Ue=parseFloat(ht.value);return!isNaN(Ue)&&Ue>lt?{max:{max:lt,actual:ht.value}}:null}}function Me(lt){return $(lt.value)?{required:!0}:null}function Te(lt){return!0===lt.value?null:{required:!0}}function m(lt){return null}function h(lt){return null!=lt}function C(lt){return(0,e.jNT)(lt)?(0,w.H)(lt):lt}function k(lt){let ht={};return lt.forEach(Ue=>{ht=null!=Ue?{...ht,...Ue}:ht}),0===Object.keys(ht).length?null:ht}function L(lt,ht){return ht.map(Ue=>Ue(lt))}function r(lt){return lt.map(ht=>function _(lt){return!lt.validate}(ht)?ht:Ue=>ht.validate(Ue))}function v(lt){if(!lt)return null;const ht=lt.filter(h);return 0==ht.length?null:function(Ue){return k(L(Ue,ht))}}function V(lt){return null!=lt?v(r(lt)):null}function N(lt){if(!lt)return null;const ht=lt.filter(h);return 0==ht.length?null:function(Ue){const At=L(Ue,ht).map(C);return(0,S.p)(At).pipe((0,x.T)(k))}}function ne(lt){return null!=lt?N(r(lt)):null}function Ee(lt,ht){return null===lt?[ht]:Array.isArray(lt)?[...lt,ht]:[lt,ht]}function ze(lt){return lt._rawValidators}function qe(lt){return lt._rawAsyncValidators}function Ke(lt){return lt?Array.isArray(lt)?lt:[lt]:[]}function se(lt,ht){return Array.isArray(lt)?lt.includes(ht):lt===ht}function X(lt,ht){const Ue=Ke(ht);return Ke(lt).forEach(ni=>{se(Ue,ni)||Ue.push(ni)}),Ue}function me(lt,ht){return Ke(ht).filter(Ue=>!se(lt,Ue))}class ce{constructor(){this._rawValidators=[],this._rawAsyncValidators=[],this._onDestroyCallbacks=[]}get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}_setValidators(ht){this._rawValidators=ht||[],this._composedValidatorFn=V(this._rawValidators)}_setAsyncValidators(ht){this._rawAsyncValidators=ht||[],this._composedAsyncValidatorFn=ne(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_registerOnDestroy(ht){this._onDestroyCallbacks.push(ht)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(ht=>ht()),this._onDestroyCallbacks=[]}reset(ht=void 0){this.control&&this.control.reset(ht)}hasError(ht,Ue){return!!this.control&&this.control.hasError(ht,Ue)}getError(ht,Ue){return this.control?this.control.getError(ht,Ue):null}}class fe extends ce{get formDirective(){return null}get path(){return null}}class ke extends ce{constructor(){super(...arguments),this._parent=null,this.name=null,this.valueAccessor=null}}class mt{constructor(ht){this._cd=ht}get isTouched(){return!!this._cd?.control?.touched}get isUntouched(){return!!this._cd?.control?.untouched}get isPristine(){return!!this._cd?.control?.pristine}get isDirty(){return!!this._cd?.control?.dirty}get isValid(){return!!this._cd?.control?.valid}get isInvalid(){return!!this._cd?.control?.invalid}get isPending(){return!!this._cd?.control?.pending}get isSubmitted(){return!!this._cd?.submitted}}let pe=(()=>{class lt extends mt{constructor(Ue){super(Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(ke,2))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(At,ni){2&At&&e.AVh("ng-untouched",ni.isUntouched)("ng-touched",ni.isTouched)("ng-pristine",ni.isPristine)("ng-dirty",ni.isDirty)("ng-valid",ni.isValid)("ng-invalid",ni.isInvalid)("ng-pending",ni.isPending)},features:[e.Vt3]})}return lt})(),Ze=(()=>{class lt extends mt{constructor(Ue){super(Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(fe,10))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(At,ni){2&At&&e.AVh("ng-untouched",ni.isUntouched)("ng-touched",ni.isTouched)("ng-pristine",ni.isPristine)("ng-dirty",ni.isDirty)("ng-valid",ni.isValid)("ng-invalid",ni.isInvalid)("ng-pending",ni.isPending)("ng-submitted",ni.isSubmitted)},features:[e.Vt3]})}return lt})();const $t="VALID",zt="INVALID",Jt="PENDING",St="DISABLED";class dt{}class Ae extends dt{constructor(ht,Ue){super(),this.value=ht,this.source=Ue}}class we extends dt{constructor(ht,Ue){super(),this.pristine=ht,this.source=Ue}}class he extends dt{constructor(ht,Ue){super(),this.touched=ht,this.source=Ue}}class q extends dt{constructor(ht,Ue){super(),this.status=ht,this.source=Ue}}class Re extends dt{constructor(ht){super(),this.source=ht}}class Ne extends dt{constructor(ht){super(),this.source=ht}}function gt(lt){return(et(lt)?lt.validators:lt)||null}function Fe(lt,ht){return(et(ht)?ht.asyncValidators:lt)||null}function et(lt){return null!=lt&&!Array.isArray(lt)&&"object"==typeof lt}function st(lt,ht,Ue){const At=lt.controls;if(!(ht?Object.keys(At):At).length)throw new e.wOt(1e3,"");if(!At[Ue])throw new e.wOt(1001,"")}function Tt(lt,ht,Ue){lt._forEachChild((At,ni)=>{if(void 0===Ue[ni])throw new e.wOt(1002,"")})}class mi{constructor(ht,Ue){this._pendingDirty=!1,this._hasOwnPendingAsyncValidator=null,this._pendingTouched=!1,this._onCollectionChange=()=>{},this._parent=null,this.pristine=!0,this.touched=!1,this._events=new l.B,this.events=this._events.asObservable(),this._onDisabledChange=[],this._assignValidators(ht),this._assignAsyncValidators(Ue)}get validator(){return this._composedValidatorFn}set validator(ht){this._rawValidators=this._composedValidatorFn=ht}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(ht){this._rawAsyncValidators=this._composedAsyncValidatorFn=ht}get parent(){return this._parent}get valid(){return this.status===$t}get invalid(){return this.status===zt}get pending(){return this.status==Jt}get disabled(){return this.status===St}get enabled(){return this.status!==St}get dirty(){return!this.pristine}get untouched(){return!this.touched}get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(ht){this._assignValidators(ht)}setAsyncValidators(ht){this._assignAsyncValidators(ht)}addValidators(ht){this.setValidators(X(ht,this._rawValidators))}addAsyncValidators(ht){this.setAsyncValidators(X(ht,this._rawAsyncValidators))}removeValidators(ht){this.setValidators(me(ht,this._rawValidators))}removeAsyncValidators(ht){this.setAsyncValidators(me(ht,this._rawAsyncValidators))}hasValidator(ht){return se(this._rawValidators,ht)}hasAsyncValidator(ht){return se(this._rawAsyncValidators,ht)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(ht={}){const Ue=!1===this.touched;this.touched=!0;const At=ht.sourceControl??this;this._parent&&!ht.onlySelf&&this._parent.markAsTouched({...ht,sourceControl:At}),Ue&&!1!==ht.emitEvent&&this._events.next(new he(!0,At))}markAllAsTouched(ht={}){this.markAsTouched({onlySelf:!0,emitEvent:ht.emitEvent,sourceControl:this}),this._forEachChild(Ue=>Ue.markAllAsTouched(ht))}markAsUntouched(ht={}){const Ue=!0===this.touched;this.touched=!1,this._pendingTouched=!1;const At=ht.sourceControl??this;this._forEachChild(ni=>{ni.markAsUntouched({onlySelf:!0,emitEvent:ht.emitEvent,sourceControl:At})}),this._parent&&!ht.onlySelf&&this._parent._updateTouched(ht,At),Ue&&!1!==ht.emitEvent&&this._events.next(new he(!1,At))}markAsDirty(ht={}){const Ue=!0===this.pristine;this.pristine=!1;const At=ht.sourceControl??this;this._parent&&!ht.onlySelf&&this._parent.markAsDirty({...ht,sourceControl:At}),Ue&&!1!==ht.emitEvent&&this._events.next(new we(!1,At))}markAsPristine(ht={}){const Ue=!1===this.pristine;this.pristine=!0,this._pendingDirty=!1;const At=ht.sourceControl??this;this._forEachChild(ni=>{ni.markAsPristine({onlySelf:!0,emitEvent:ht.emitEvent})}),this._parent&&!ht.onlySelf&&this._parent._updatePristine(ht,At),Ue&&!1!==ht.emitEvent&&this._events.next(new we(!0,At))}markAsPending(ht={}){this.status=Jt;const Ue=ht.sourceControl??this;!1!==ht.emitEvent&&(this._events.next(new q(this.status,Ue)),this.statusChanges.emit(this.status)),this._parent&&!ht.onlySelf&&this._parent.markAsPending({...ht,sourceControl:Ue})}disable(ht={}){const Ue=this._parentMarkedDirty(ht.onlySelf);this.status=St,this.errors=null,this._forEachChild(ni=>{ni.disable({...ht,onlySelf:!0})}),this._updateValue();const At=ht.sourceControl??this;!1!==ht.emitEvent&&(this._events.next(new Ae(this.value,At)),this._events.next(new q(this.status,At)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors({...ht,skipPristineCheck:Ue},this),this._onDisabledChange.forEach(ni=>ni(!0))}enable(ht={}){const Ue=this._parentMarkedDirty(ht.onlySelf);this.status=$t,this._forEachChild(At=>{At.enable({...ht,onlySelf:!0})}),this.updateValueAndValidity({onlySelf:!0,emitEvent:ht.emitEvent}),this._updateAncestors({...ht,skipPristineCheck:Ue},this),this._onDisabledChange.forEach(At=>At(!1))}_updateAncestors(ht,Ue){this._parent&&!ht.onlySelf&&(this._parent.updateValueAndValidity(ht),ht.skipPristineCheck||this._parent._updatePristine({},Ue),this._parent._updateTouched({},Ue))}setParent(ht){this._parent=ht}getRawValue(){return this.value}updateValueAndValidity(ht={}){if(this._setInitialStatus(),this._updateValue(),this.enabled){const At=this._cancelExistingSubscription();this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===$t||this.status===Jt)&&this._runAsyncValidator(At,ht.emitEvent)}const Ue=ht.sourceControl??this;!1!==ht.emitEvent&&(this._events.next(new Ae(this.value,Ue)),this._events.next(new q(this.status,Ue)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!ht.onlySelf&&this._parent.updateValueAndValidity({...ht,sourceControl:Ue})}_updateTreeValidity(ht={emitEvent:!0}){this._forEachChild(Ue=>Ue._updateTreeValidity(ht)),this.updateValueAndValidity({onlySelf:!0,emitEvent:ht.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?St:$t}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(ht,Ue){if(this.asyncValidator){this.status=Jt,this._hasOwnPendingAsyncValidator={emitEvent:!1!==Ue};const At=C(this.asyncValidator(this));this._asyncValidationSubscription=At.subscribe(ni=>{this._hasOwnPendingAsyncValidator=null,this.setErrors(ni,{emitEvent:Ue,shouldHaveEmitted:ht})})}}_cancelExistingSubscription(){if(this._asyncValidationSubscription){this._asyncValidationSubscription.unsubscribe();const ht=this._hasOwnPendingAsyncValidator?.emitEvent??!1;return this._hasOwnPendingAsyncValidator=null,ht}return!1}setErrors(ht,Ue={}){this.errors=ht,this._updateControlsErrors(!1!==Ue.emitEvent,this,Ue.shouldHaveEmitted)}get(ht){let Ue=ht;return null==Ue||(Array.isArray(Ue)||(Ue=Ue.split(".")),0===Ue.length)?null:Ue.reduce((At,ni)=>At&&At._find(ni),this)}getError(ht,Ue){const At=Ue?this.get(Ue):this;return At&&At.errors?At.errors[ht]:null}hasError(ht,Ue){return!!this.getError(ht,Ue)}get root(){let ht=this;for(;ht._parent;)ht=ht._parent;return ht}_updateControlsErrors(ht,Ue,At){this.status=this._calculateStatus(),ht&&this.statusChanges.emit(this.status),(ht||At)&&this._events.next(new q(this.status,Ue)),this._parent&&this._parent._updateControlsErrors(ht,Ue,At)}_initObservables(){this.valueChanges=new e.bkB,this.statusChanges=new e.bkB}_calculateStatus(){return this._allControlsDisabled()?St:this.errors?zt:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(Jt)?Jt:this._anyControlsHaveStatus(zt)?zt:$t}_anyControlsHaveStatus(ht){return this._anyControls(Ue=>Ue.status===ht)}_anyControlsDirty(){return this._anyControls(ht=>ht.dirty)}_anyControlsTouched(){return this._anyControls(ht=>ht.touched)}_updatePristine(ht,Ue){const At=!this._anyControlsDirty(),ni=this.pristine!==At;this.pristine=At,this._parent&&!ht.onlySelf&&this._parent._updatePristine(ht,Ue),ni&&this._events.next(new we(this.pristine,Ue))}_updateTouched(ht={},Ue){this.touched=this._anyControlsTouched(),this._events.next(new he(this.touched,Ue)),this._parent&&!ht.onlySelf&&this._parent._updateTouched(ht,Ue)}_registerOnCollectionChange(ht){this._onCollectionChange=ht}_setUpdateStrategy(ht){et(ht)&&null!=ht.updateOn&&(this._updateOn=ht.updateOn)}_parentMarkedDirty(ht){return!ht&&!(!this._parent||!this._parent.dirty)&&!this._parent._anyControlsDirty()}_find(ht){return null}_assignValidators(ht){this._rawValidators=Array.isArray(ht)?ht.slice():ht,this._composedValidatorFn=function $e(lt){return Array.isArray(lt)?V(lt):lt||null}(this._rawValidators)}_assignAsyncValidators(ht){this._rawAsyncValidators=Array.isArray(ht)?ht.slice():ht,this._composedAsyncValidatorFn=function Ge(lt){return Array.isArray(lt)?ne(lt):lt||null}(this._rawAsyncValidators)}}class Kt extends mi{constructor(ht,Ue,At){super(gt(Ue),Fe(At,Ue)),this.controls=ht,this._initObservables(),this._setUpdateStrategy(Ue),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}registerControl(ht,Ue){return this.controls[ht]?this.controls[ht]:(this.controls[ht]=Ue,Ue.setParent(this),Ue._registerOnCollectionChange(this._onCollectionChange),Ue)}addControl(ht,Ue,At={}){this.registerControl(ht,Ue),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}removeControl(ht,Ue={}){this.controls[ht]&&this.controls[ht]._registerOnCollectionChange(()=>{}),delete this.controls[ht],this.updateValueAndValidity({emitEvent:Ue.emitEvent}),this._onCollectionChange()}setControl(ht,Ue,At={}){this.controls[ht]&&this.controls[ht]._registerOnCollectionChange(()=>{}),delete this.controls[ht],Ue&&this.registerControl(ht,Ue),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}contains(ht){return this.controls.hasOwnProperty(ht)&&this.controls[ht].enabled}setValue(ht,Ue={}){Tt(this,0,ht),Object.keys(ht).forEach(At=>{st(this,!0,At),this.controls[At].setValue(ht[At],{onlySelf:!0,emitEvent:Ue.emitEvent})}),this.updateValueAndValidity(Ue)}patchValue(ht,Ue={}){null!=ht&&(Object.keys(ht).forEach(At=>{const ni=this.controls[At];ni&&ni.patchValue(ht[At],{onlySelf:!0,emitEvent:Ue.emitEvent})}),this.updateValueAndValidity(Ue))}reset(ht={},Ue={}){this._forEachChild((At,ni)=>{At.reset(ht?ht[ni]:null,{onlySelf:!0,emitEvent:Ue.emitEvent})}),this._updatePristine(Ue,this),this._updateTouched(Ue,this),this.updateValueAndValidity(Ue)}getRawValue(){return this._reduceChildren({},(ht,Ue,At)=>(ht[At]=Ue.getRawValue(),ht))}_syncPendingControls(){let ht=this._reduceChildren(!1,(Ue,At)=>!!At._syncPendingControls()||Ue);return ht&&this.updateValueAndValidity({onlySelf:!0}),ht}_forEachChild(ht){Object.keys(this.controls).forEach(Ue=>{const At=this.controls[Ue];At&&ht(At,Ue)})}_setUpControls(){this._forEachChild(ht=>{ht.setParent(this),ht._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(ht){for(const[Ue,At]of Object.entries(this.controls))if(this.contains(Ue)&&ht(At))return!0;return!1}_reduceValue(){return this._reduceChildren({},(Ue,At,ni)=>((At.enabled||this.disabled)&&(Ue[ni]=At.value),Ue))}_reduceChildren(ht,Ue){let At=ht;return this._forEachChild((ni,pn)=>{At=Ue(At,ni,pn)}),At}_allControlsDisabled(){for(const ht of Object.keys(this.controls))if(this.controls[ht].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_find(ht){return this.controls.hasOwnProperty(ht)?this.controls[ht]:null}}class fi extends Kt{}const Qi=new e.nKC("CallSetDisabledState",{providedIn:"root",factory:()=>Li}),Li="always";function Zi(lt,ht){return[...ht.path,lt]}function Qt(lt,ht,Ue=Li){wt(lt,ht),ht.valueAccessor.writeValue(lt.value),(lt.disabled||"always"===Ue)&&ht.valueAccessor.setDisabledState?.(lt.disabled),function xi(lt,ht){ht.valueAccessor.registerOnChange(Ue=>{lt._pendingValue=Ue,lt._pendingChange=!0,lt._pendingDirty=!0,"change"===lt.updateOn&&zi(lt,ht)})}(lt,ht),function en(lt,ht){const Ue=(At,ni)=>{ht.valueAccessor.writeValue(At),ni&&ht.viewToModelUpdate(At)};lt.registerOnChange(Ue),ht._registerOnDestroy(()=>{lt._unregisterOnChange(Ue)})}(lt,ht),function Si(lt,ht){ht.valueAccessor.registerOnTouched(()=>{lt._pendingTouched=!0,"blur"===lt.updateOn&<._pendingChange&&zi(lt,ht),"submit"!==lt.updateOn&<.markAsTouched()})}(lt,ht),function ct(lt,ht){if(ht.valueAccessor.setDisabledState){const Ue=At=>{ht.valueAccessor.setDisabledState(At)};lt.registerOnDisabledChange(Ue),ht._registerOnDestroy(()=>{lt._unregisterOnDisabledChange(Ue)})}}(lt,ht)}function Mt(lt,ht,Ue=!0){const At=()=>{};ht.valueAccessor&&(ht.valueAccessor.registerOnChange(At),ht.valueAccessor.registerOnTouched(At)),Ut(lt,ht),lt&&(ht._invokeOnDestroyCallbacks(),lt._registerOnCollectionChange(()=>{}))}function it(lt,ht){lt.forEach(Ue=>{Ue.registerOnValidatorChange&&Ue.registerOnValidatorChange(ht)})}function wt(lt,ht){const Ue=ze(lt);null!==ht.validator?lt.setValidators(Ee(Ue,ht.validator)):"function"==typeof Ue&<.setValidators([Ue]);const At=qe(lt);null!==ht.asyncValidator?lt.setAsyncValidators(Ee(At,ht.asyncValidator)):"function"==typeof At&<.setAsyncValidators([At]);const ni=()=>lt.updateValueAndValidity();it(ht._rawValidators,ni),it(ht._rawAsyncValidators,ni)}function Ut(lt,ht){let Ue=!1;if(null!==lt){if(null!==ht.validator){const ni=ze(lt);if(Array.isArray(ni)&&ni.length>0){const pn=ni.filter(Zn=>Zn!==ht.validator);pn.length!==ni.length&&(Ue=!0,lt.setValidators(pn))}}if(null!==ht.asyncValidator){const ni=qe(lt);if(Array.isArray(ni)&&ni.length>0){const pn=ni.filter(Zn=>Zn!==ht.asyncValidator);pn.length!==ni.length&&(Ue=!0,lt.setAsyncValidators(pn))}}}const At=()=>{};return it(ht._rawValidators,At),it(ht._rawAsyncValidators,At),Ue}function zi(lt,ht){lt._pendingDirty&<.markAsDirty(),lt.setValue(lt._pendingValue,{emitModelToViewChange:!1}),ht.viewToModelUpdate(lt._pendingValue),lt._pendingChange=!1}function Ni(lt,ht){wt(lt,ht)}function ot(lt,ht){if(!lt.hasOwnProperty("model"))return!1;const Ue=lt.model;return!!Ue.isFirstChange()||!Object.is(ht,Ue.currentValue)}function ii(lt,ht){lt._syncPendingControls(),ht.forEach(Ue=>{const At=Ue.control;"submit"===At.updateOn&&At._pendingChange&&(Ue.viewToModelUpdate(At._pendingValue),At._pendingChange=!1)})}function si(lt,ht){if(!ht)return null;let Ue,At,ni;return Array.isArray(ht),ht.forEach(pn=>{pn.constructor===W?Ue=pn:function ut(lt){return Object.getPrototypeOf(lt.constructor)===I}(pn)?At=pn:ni=pn}),ni||At||Ue||null}const Fn={provide:fe,useExisting:(0,e.Rfq)(()=>Yn)},$n=Promise.resolve();let Yn=(()=>{class lt extends fe{constructor(Ue,At,ni){super(),this.callSetDisabledState=ni,this.submitted=!1,this._directives=new Set,this.ngSubmit=new e.bkB,this.form=new Kt({},V(Ue),ne(At))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(Ue){$n.then(()=>{const At=this._findContainer(Ue.path);Ue.control=At.registerControl(Ue.name,Ue.control),Qt(Ue.control,Ue,this.callSetDisabledState),Ue.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(Ue)})}getControl(Ue){return this.form.get(Ue.path)}removeControl(Ue){$n.then(()=>{const At=this._findContainer(Ue.path);At&&At.removeControl(Ue.name),this._directives.delete(Ue)})}addFormGroup(Ue){$n.then(()=>{const At=this._findContainer(Ue.path),ni=new Kt({});Ni(ni,Ue),At.registerControl(Ue.name,ni),ni.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(Ue){$n.then(()=>{const At=this._findContainer(Ue.path);At&&At.removeControl(Ue.name)})}getFormGroup(Ue){return this.form.get(Ue.path)}updateModel(Ue,At){$n.then(()=>{this.form.get(Ue.path).setValue(At)})}setValue(Ue){this.control.setValue(Ue)}onSubmit(Ue){return this.submitted=!0,ii(this.form,this._directives),this.ngSubmit.emit(Ue),"dialog"===Ue?.target?.method}onReset(){this.resetForm()}resetForm(Ue=void 0){this.form.reset(Ue),this.submitted=!1}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(Ue){return Ue.pop(),Ue.length?this.form.get(Ue):this.form}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(Q,10),e.rXU(J,10),e.rXU(Qi,8))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(At,ni){1&At&&e.bIt("submit",function(Zn){return ni.onSubmit(Zn)})("reset",function(){return ni.onReset()})},inputs:{options:[0,"ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[e.Jv_([Fn]),e.Vt3]})}return lt})();function Qn(lt,ht){const Ue=lt.indexOf(ht);Ue>-1&<.splice(Ue,1)}function rr(lt){return"object"==typeof lt&&null!==lt&&2===Object.keys(lt).length&&"value"in lt&&"disabled"in lt}const Rn=class extends mi{constructor(ht=null,Ue,At){super(gt(Ue),Fe(At,Ue)),this.defaultValue=null,this._onChange=[],this._pendingChange=!1,this._applyFormState(ht),this._setUpdateStrategy(Ue),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),et(Ue)&&(Ue.nonNullable||Ue.initialValueIsDefault)&&(this.defaultValue=rr(ht)?ht.value:ht)}setValue(ht,Ue={}){this.value=this._pendingValue=ht,this._onChange.length&&!1!==Ue.emitModelToViewChange&&this._onChange.forEach(At=>At(this.value,!1!==Ue.emitViewToModelChange)),this.updateValueAndValidity(Ue)}patchValue(ht,Ue={}){this.setValue(ht,Ue)}reset(ht=this.defaultValue,Ue={}){this._applyFormState(ht),this.markAsPristine(Ue),this.markAsUntouched(Ue),this.setValue(this.value,Ue),this._pendingChange=!1}_updateValue(){}_anyControls(ht){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(ht){this._onChange.push(ht)}_unregisterOnChange(ht){Qn(this._onChange,ht)}registerOnDisabledChange(ht){this._onDisabledChange.push(ht)}_unregisterOnDisabledChange(ht){Qn(this._onDisabledChange,ht)}_forEachChild(ht){}_syncPendingControls(){return!("submit"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}_applyFormState(ht){rr(ht)?(this.value=this._pendingValue=ht.value,ht.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=ht}},_i=Rn,ar={provide:ke,useExisting:(0,e.Rfq)(()=>nr)},sr=Promise.resolve();let nr=(()=>{class lt extends ke{constructor(Ue,At,ni,pn,Zn,Fo){super(),this._changeDetectorRef=Zn,this.callSetDisabledState=Fo,this.control=new Rn,this._registered=!1,this.name="",this.update=new e.bkB,this._parent=Ue,this._setValidators(At),this._setAsyncValidators(ni),this.valueAccessor=si(0,pn)}ngOnChanges(Ue){if(this._checkForErrors(),!this._registered||"name"in Ue){if(this._registered&&(this._checkName(),this.formDirective)){const At=Ue.name.previousValue;this.formDirective.removeControl({name:At,path:this._getPath(At)})}this._setUpControl()}"isDisabled"in Ue&&this._updateDisabled(Ue),ot(Ue,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}get path(){return this._getPath(this.name)}get formDirective(){return this._parent?this._parent.formDirective:null}viewToModelUpdate(Ue){this.viewModel=Ue,this.update.emit(Ue)}_setUpControl(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}_isStandalone(){return!this._parent||!(!this.options||!this.options.standalone)}_setUpStandalone(){Qt(this.control,this,this.callSetDisabledState),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._isStandalone()||this._checkParentType(),this._checkName()}_checkParentType(){}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()}_updateValue(Ue){sr.then(()=>{this.control.setValue(Ue,{emitViewToModelChange:!1}),this._changeDetectorRef?.markForCheck()})}_updateDisabled(Ue){const At=Ue.isDisabled.currentValue,ni=0!==At&&(0,e.L39)(At);sr.then(()=>{ni&&!this.control.disabled?this.control.disable():!ni&&this.control.disabled&&this.control.enable(),this._changeDetectorRef?.markForCheck()})}_getPath(Ue){return this._parent?Zi(Ue,this._parent):[Ue]}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(fe,9),e.rXU(Q,10),e.rXU(J,10),e.rXU(d,10),e.rXU(e.gRc,8),e.rXU(Qi,8))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"],options:[0,"ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],features:[e.Jv_([ar]),e.Vt3,e.OA$]})}return lt})(),or=(()=>{class lt{static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""]})}return lt})();const Xr={provide:d,useExisting:(0,e.Rfq)(()=>Sr),multi:!0};let Sr=(()=>{class lt extends I{writeValue(Ue){this.setProperty("value",Ue??"")}registerOnChange(Ue){this.onChange=At=>{Ue(""==At?null:parseFloat(At))}}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(At,ni){1&At&&e.bIt("input",function(Zn){return ni.onChange(Zn.target.value)})("blur",function(){return ni.onTouched()})},features:[e.Jv_([Xr]),e.Vt3]})}return lt})();const Ea=new e.nKC(""),no={provide:ke,useExisting:(0,e.Rfq)(()=>ho)};let ho=(()=>{class lt extends ke{set isDisabled(Ue){}static#e=this._ngModelWarningSentOnce=!1;constructor(Ue,At,ni,pn,Zn){super(),this._ngModelWarningConfig=pn,this.callSetDisabledState=Zn,this.update=new e.bkB,this._ngModelWarningSent=!1,this._setValidators(Ue),this._setAsyncValidators(At),this.valueAccessor=si(0,ni)}ngOnChanges(Ue){if(this._isControlChanged(Ue)){const At=Ue.form.previousValue;At&&Mt(At,this,!1),Qt(this.form,this,this.callSetDisabledState),this.form.updateValueAndValidity({emitEvent:!1})}ot(Ue,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.form&&Mt(this.form,this,!1)}get path(){return[]}get control(){return this.form}viewToModelUpdate(Ue){this.viewModel=Ue,this.update.emit(Ue)}_isControlChanged(Ue){return Ue.hasOwnProperty("form")}static#t=this.\u0275fac=function(At){return new(At||lt)(e.rXU(Q,10),e.rXU(J,10),e.rXU(d,10),e.rXU(Ea,8),e.rXU(Qi,8))};static#i=this.\u0275dir=e.FsC({type:lt,selectors:[["","formControl",""]],inputs:{form:[0,"formControl","form"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],features:[e.Jv_([no]),e.Vt3,e.OA$]})}return lt})();const xr={provide:fe,useExisting:(0,e.Rfq)(()=>Sa)};let Sa=(()=>{class lt extends fe{constructor(Ue,At,ni){super(),this.callSetDisabledState=ni,this.submitted=!1,this._onCollectionChange=()=>this._updateDomValue(),this.directives=[],this.form=null,this.ngSubmit=new e.bkB,this._setValidators(Ue),this._setAsyncValidators(At)}ngOnChanges(Ue){this._checkFormPresent(),Ue.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(Ut(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(Ue){const At=this.form.get(Ue.path);return Qt(At,Ue,this.callSetDisabledState),At.updateValueAndValidity({emitEvent:!1}),this.directives.push(Ue),At}getControl(Ue){return this.form.get(Ue.path)}removeControl(Ue){Mt(Ue.control||null,Ue,!1),function Pi(lt,ht){const Ue=lt.indexOf(ht);Ue>-1&<.splice(Ue,1)}(this.directives,Ue)}addFormGroup(Ue){this._setUpFormContainer(Ue)}removeFormGroup(Ue){this._cleanUpFormContainer(Ue)}getFormGroup(Ue){return this.form.get(Ue.path)}addFormArray(Ue){this._setUpFormContainer(Ue)}removeFormArray(Ue){this._cleanUpFormContainer(Ue)}getFormArray(Ue){return this.form.get(Ue.path)}updateModel(Ue,At){this.form.get(Ue.path).setValue(At)}onSubmit(Ue){return this.submitted=!0,ii(this.form,this.directives),this.ngSubmit.emit(Ue),this.form._events.next(new Re(this.control)),"dialog"===Ue?.target?.method}onReset(){this.resetForm()}resetForm(Ue=void 0){this.form.reset(Ue),this.submitted=!1,this.form._events.next(new Ne(this.form))}_updateDomValue(){this.directives.forEach(Ue=>{const At=Ue.control,ni=this.form.get(Ue.path);At!==ni&&(Mt(At||null,Ue),(lt=>lt instanceof Rn)(ni)&&(Qt(ni,Ue,this.callSetDisabledState),Ue.control=ni))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(Ue){const At=this.form.get(Ue.path);Ni(At,Ue),At.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(Ue){if(this.form){const At=this.form.get(Ue.path);At&&function fn(lt,ht){return Ut(lt,ht)}(At,Ue)&&At.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){wt(this.form,this),this._oldForm&&Ut(this._oldForm,this)}_checkFormPresent(){}static#e=this.\u0275fac=function(At){return new(At||lt)(e.rXU(Q,10),e.rXU(J,10),e.rXU(Qi,8))};static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","formGroup",""]],hostBindings:function(At,ni){1&At&&e.bIt("submit",function(Zn){return ni.onSubmit(Zn)})("reset",function(){return ni.onReset()})},inputs:{form:[0,"formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],features:[e.Jv_([xr]),e.Vt3,e.OA$]})}return lt})();const Co={provide:ke,useExisting:(0,e.Rfq)(()=>wo)};let wo=(()=>{class lt extends ke{set isDisabled(Ue){}static#e=this._ngModelWarningSentOnce=!1;constructor(Ue,At,ni,pn,Zn){super(),this._ngModelWarningConfig=Zn,this._added=!1,this.name=null,this.update=new e.bkB,this._ngModelWarningSent=!1,this._parent=Ue,this._setValidators(At),this._setAsyncValidators(ni),this.valueAccessor=si(0,pn)}ngOnChanges(Ue){this._added||this._setUpControl(),ot(Ue,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(Ue){this.viewModel=Ue,this.update.emit(Ue)}get path(){return Zi(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}_checkParentType(){}_setUpControl(){this._checkParentType(),this.control=this.formDirective.addControl(this),this._added=!0}static#t=this.\u0275fac=function(At){return new(At||lt)(e.rXU(fe,13),e.rXU(Q,10),e.rXU(J,10),e.rXU(d,10),e.rXU(Ea,8))};static#i=this.\u0275dir=e.FsC({type:lt,selectors:[["","formControlName",""]],inputs:{name:[0,"formControlName","name"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},features:[e.Jv_([Co]),e.Vt3,e.OA$]})}return lt})();function Ga(lt){return"number"==typeof lt?lt:parseFloat(lt)}let Na=(()=>{class lt{constructor(){this._validator=m}ngOnChanges(Ue){if(this.inputName in Ue){const At=this.normalizeInput(Ue[this.inputName].currentValue);this._enabled=this.enabled(At),this._validator=this._enabled?this.createValidator(At):m,this._onChange&&this._onChange()}}validate(Ue){return this._validator(Ue)}registerOnValidatorChange(Ue){this._onChange=Ue}enabled(Ue){return null!=Ue}static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275dir=e.FsC({type:lt,features:[e.OA$]})}return lt})();const ja={provide:Q,useExisting:(0,e.Rfq)(()=>Bo),multi:!0};let Bo=(()=>{class lt extends Na{constructor(){super(...arguments),this.inputName="max",this.normalizeInput=Ue=>Ga(Ue),this.createValidator=Ue=>ae(Ue)}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["input","type","number","max","","formControlName",""],["input","type","number","max","","formControl",""],["input","type","number","max","","ngModel",""]],hostVars:1,hostBindings:function(At,ni){2&At&&e.BMQ("max",ni._enabled?ni.max:null)},inputs:{max:"max"},features:[e.Jv_([ja]),e.Vt3]})}return lt})();const Uo={provide:Q,useExisting:(0,e.Rfq)(()=>uo),multi:!0};let uo=(()=>{class lt extends Na{constructor(){super(...arguments),this.inputName="min",this.normalizeInput=Ue=>Ga(Ue),this.createValidator=Ue=>ge(Ue)}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["input","type","number","min","","formControlName",""],["input","type","number","min","","formControl",""],["input","type","number","min","","ngModel",""]],hostVars:1,hostBindings:function(At,ni){2&At&&e.BMQ("min",ni._enabled?ni.min:null)},inputs:{min:"min"},features:[e.Jv_([Uo]),e.Vt3]})}return lt})();const ga={provide:Q,useExisting:(0,e.Rfq)(()=>Lr),multi:!0},Za={provide:Q,useExisting:(0,e.Rfq)(()=>_a),multi:!0};let Lr=(()=>{class lt extends Na{constructor(){super(...arguments),this.inputName="required",this.normalizeInput=e.L39,this.createValidator=Ue=>Me}enabled(Ue){return Ue}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(At,ni){2&At&&e.BMQ("required",ni._enabled?"":null)},inputs:{required:"required"},features:[e.Jv_([ga]),e.Vt3]})}return lt})(),_a=(()=>{class lt extends Lr{constructor(){super(...arguments),this.createValidator=Ue=>Te}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275dir=e.FsC({type:lt,selectors:[["input","type","checkbox","required","","formControlName",""],["input","type","checkbox","required","","formControl",""],["input","type","checkbox","required","","ngModel",""]],hostVars:1,hostBindings:function(At,ni){2&At&&e.BMQ("required",ni._enabled?"":null)},features:[e.Jv_([Za]),e.Vt3]})}return lt})(),Ei=(()=>{class lt{static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275mod=e.$C({type:lt});static#i=this.\u0275inj=e.G2t({})}return lt})();class Ki extends mi{constructor(ht,Ue,At){super(gt(Ue),Fe(At,Ue)),this.controls=ht,this._initObservables(),this._setUpdateStrategy(Ue),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}at(ht){return this.controls[this._adjustIndex(ht)]}push(ht,Ue={}){this.controls.push(ht),this._registerControl(ht),this.updateValueAndValidity({emitEvent:Ue.emitEvent}),this._onCollectionChange()}insert(ht,Ue,At={}){this.controls.splice(ht,0,Ue),this._registerControl(Ue),this.updateValueAndValidity({emitEvent:At.emitEvent})}removeAt(ht,Ue={}){let At=this._adjustIndex(ht);At<0&&(At=0),this.controls[At]&&this.controls[At]._registerOnCollectionChange(()=>{}),this.controls.splice(At,1),this.updateValueAndValidity({emitEvent:Ue.emitEvent})}setControl(ht,Ue,At={}){let ni=this._adjustIndex(ht);ni<0&&(ni=0),this.controls[ni]&&this.controls[ni]._registerOnCollectionChange(()=>{}),this.controls.splice(ni,1),Ue&&(this.controls.splice(ni,0,Ue),this._registerControl(Ue)),this.updateValueAndValidity({emitEvent:At.emitEvent}),this._onCollectionChange()}get length(){return this.controls.length}setValue(ht,Ue={}){Tt(this,0,ht),ht.forEach((At,ni)=>{st(this,!1,ni),this.at(ni).setValue(At,{onlySelf:!0,emitEvent:Ue.emitEvent})}),this.updateValueAndValidity(Ue)}patchValue(ht,Ue={}){null!=ht&&(ht.forEach((At,ni)=>{this.at(ni)&&this.at(ni).patchValue(At,{onlySelf:!0,emitEvent:Ue.emitEvent})}),this.updateValueAndValidity(Ue))}reset(ht=[],Ue={}){this._forEachChild((At,ni)=>{At.reset(ht[ni],{onlySelf:!0,emitEvent:Ue.emitEvent})}),this._updatePristine(Ue,this),this._updateTouched(Ue,this),this.updateValueAndValidity(Ue)}getRawValue(){return this.controls.map(ht=>ht.getRawValue())}clear(ht={}){this.controls.length<1||(this._forEachChild(Ue=>Ue._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity({emitEvent:ht.emitEvent}))}_adjustIndex(ht){return ht<0?ht+this.length:ht}_syncPendingControls(){let ht=this.controls.reduce((Ue,At)=>!!At._syncPendingControls()||Ue,!1);return ht&&this.updateValueAndValidity({onlySelf:!0}),ht}_forEachChild(ht){this.controls.forEach((Ue,At)=>{ht(Ue,At)})}_updateValue(){this.value=this.controls.filter(ht=>ht.enabled||this.disabled).map(ht=>ht.value)}_anyControls(ht){return this.controls.some(Ue=>Ue.enabled&&ht(Ue))}_setUpControls(){this._forEachChild(ht=>this._registerControl(ht))}_allControlsDisabled(){for(const ht of this.controls)if(ht.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(ht){ht.setParent(this),ht._registerOnCollectionChange(this._onCollectionChange)}_find(ht){return this.at(ht)??null}}function Fr(lt){return!!lt&&(void 0!==lt.asyncValidators||void 0!==lt.validators||void 0!==lt.updateOn)}let Mo=(()=>{class lt{constructor(){this.useNonNullable=!1}get nonNullable(){const Ue=new lt;return Ue.useNonNullable=!0,Ue}group(Ue,At=null){const ni=this._reduceControls(Ue);let pn={};return Fr(At)?pn=At:null!==At&&(pn.validators=At.validator,pn.asyncValidators=At.asyncValidator),new Kt(ni,pn)}record(Ue,At=null){const ni=this._reduceControls(Ue);return new fi(ni,At)}control(Ue,At,ni){let pn={};return this.useNonNullable?(Fr(At)?pn=At:(pn.validators=At,pn.asyncValidators=ni),new Rn(Ue,{...pn,nonNullable:!0})):new Rn(Ue,At,ni)}array(Ue,At,ni){const pn=Ue.map(Zn=>this._createControl(Zn));return new Ki(pn,At,ni)}_reduceControls(Ue){const At={};return Object.keys(Ue).forEach(ni=>{At[ni]=this._createControl(Ue[ni])}),At}_createControl(Ue){return Ue instanceof Rn||Ue instanceof mi?Ue:Array.isArray(Ue)?this.control(Ue[0],Ue.length>1?Ue[1]:null,Ue.length>2?Ue[2]:null):this.control(Ue)}static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275prov=e.jDH({token:lt,factory:lt.\u0275fac,providedIn:"root"})}return lt})(),oo=(()=>{class lt extends Mo{group(Ue,At=null){return super.group(Ue,At)}control(Ue,At,ni){return super.control(Ue,At,ni)}array(Ue,At,ni){return super.array(Ue,At,ni)}static#e=this.\u0275fac=(()=>{let Ue;return function(ni){return(Ue||(Ue=e.xGo(lt)))(ni||lt)}})();static#t=this.\u0275prov=e.jDH({token:lt,factory:lt.\u0275fac,providedIn:"root"})}return lt})(),oa=(()=>{class lt{static withConfig(Ue){return{ngModule:lt,providers:[{provide:Qi,useValue:Ue.callSetDisabledState??Li}]}}static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275mod=e.$C({type:lt});static#i=this.\u0275inj=e.G2t({imports:[Ei]})}return lt})(),Ri=(()=>{class lt{static withConfig(Ue){return{ngModule:lt,providers:[{provide:Ea,useValue:Ue.warnOnNgModelWithFormControl??"always"},{provide:Qi,useValue:Ue.callSetDisabledState??Li}]}}static#e=this.\u0275fac=function(At){return new(At||lt)};static#t=this.\u0275mod=e.$C({type:lt});static#i=this.\u0275inj=e.G2t({imports:[Ei]})}return lt})()},850:(Qe,te,g)=>{"use strict";g.d(te,{$3:()=>_,jL:()=>qe,pN:()=>ze});var e=g(4438),t=g(6600),w=g(177),S=g(5542),l=g(6969),x=g(8617),f=g(6860),I=g(9969),d=g(8359),T=g(1413),y=g(9030),F=g(7786),R=g(7673),z=g(3726),W=g(7336),$=g(6939),j=g(9417),Q=g(6467),J=g(9172),ee=g(5558),ie=g(6697),ge=g(5964),ae=g(6354),Me=g(8141),Te=g(5335),de=g(8203);const D=["panel"],n=["*"];function c(Ke,se){if(1&Ke){const X=e.RV6();e.j41(0,"div",1,0),e.bIt("@panelAnimation.done",function(ce){e.eBV(X);const fe=e.XpG();return e.Njj(fe._animationDone.next(ce))}),e.SdG(2),e.k0s()}if(2&Ke){const X=se.id,me=e.XpG();e.HbH(me._classList),e.AVh("mat-mdc-autocomplete-visible",me.showPanel)("mat-mdc-autocomplete-hidden",!me.showPanel)("mat-primary","primary"===me._color)("mat-accent","accent"===me._color)("mat-warn","warn"===me._color),e.Y8G("id",me.id)("@panelAnimation",me.isOpen?"visible":"hidden"),e.BMQ("aria-label",me.ariaLabel||null)("aria-labelledby",me._getPanelAriaLabelledby(X))}}const m=(0,I.hZ)("panelAnimation",[(0,I.wk)("void, hidden",(0,I.iF)({opacity:0,transform:"scaleY(0.8)"})),(0,I.kY)(":enter, hidden => visible",[(0,I.Os)([(0,I.i0)("0.03s linear",(0,I.iF)({opacity:1})),(0,I.i0)("0.12s cubic-bezier(0, 0, 0.2, 1)",(0,I.iF)({transform:"scaleY(1)"}))])]),(0,I.kY)(":leave, visible => hidden",[(0,I.i0)("0.075s linear",(0,I.iF)({opacity:0}))])]);let h=0;class C{constructor(se,X){this.source=se,this.option=X}}const k=new e.nKC("mat-autocomplete-default-options",{providedIn:"root",factory:function L(){return{autoActiveFirstOption:!1,autoSelectActiveOption:!1,hideSingleSelectionIndicator:!1,requireSelection:!1}}});let _=(()=>{class Ke{get isOpen(){return this._isOpen&&this.showPanel}_setColor(X){this._color=X,this._changeDetectorRef.markForCheck()}set classList(X){this._classList=X,this._elementRef.nativeElement.className=""}get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(X){this._hideSingleSelectionIndicator=X,this._syncParentProperties()}_syncParentProperties(){if(this.options)for(const X of this.options)X._changeDetectorRef.markForCheck()}constructor(X,me,ce,fe){this._changeDetectorRef=X,this._elementRef=me,this._defaults=ce,this._activeOptionChanges=d.yU.EMPTY,this._animationDone=new e.bkB,this.showPanel=!1,this._isOpen=!1,this.displayWith=null,this.optionSelected=new e.bkB,this.opened=new e.bkB,this.closed=new e.bkB,this.optionActivated=new e.bkB,this.id="mat-autocomplete-"+h++,this.inertGroups=fe?.SAFARI||!1,this.autoActiveFirstOption=!!ce.autoActiveFirstOption,this.autoSelectActiveOption=!!ce.autoSelectActiveOption,this.requireSelection=!!ce.requireSelection,this._hideSingleSelectionIndicator=this._defaults.hideSingleSelectionIndicator??!1}ngAfterContentInit(){this._keyManager=new x.Au(this.options).withWrap().skipPredicate(this._skipPredicate),this._activeOptionChanges=this._keyManager.change.subscribe(X=>{this.isOpen&&this.optionActivated.emit({source:this,option:this.options.toArray()[X]||null})}),this._setVisibility()}ngOnDestroy(){this._keyManager?.destroy(),this._activeOptionChanges.unsubscribe(),this._animationDone.complete()}_setScrollTop(X){this.panel&&(this.panel.nativeElement.scrollTop=X)}_getScrollTop(){return this.panel?this.panel.nativeElement.scrollTop:0}_setVisibility(){this.showPanel=!!this.options.length,this._changeDetectorRef.markForCheck()}_emitSelectEvent(X){const me=new C(this,X);this.optionSelected.emit(me)}_getPanelAriaLabelledby(X){return this.ariaLabel?null:this.ariaLabelledby?(X?X+" ":"")+this.ariaLabelledby:X}_skipPredicate(){return!1}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(e.gRc),e.rXU(e.aKT),e.rXU(k),e.rXU(f.OD))};static#t=this.\u0275cmp=e.VBU({type:Ke,selectors:[["mat-autocomplete"]],contentQueries:function(me,ce,fe){if(1&me&&(e.wni(fe,t.wT,5),e.wni(fe,t.QC,5)),2&me){let ke;e.mGM(ke=e.lsd())&&(ce.options=ke),e.mGM(ke=e.lsd())&&(ce.optionGroups=ke)}},viewQuery:function(me,ce){if(1&me&&(e.GBs(e.C4Q,7),e.GBs(D,5)),2&me){let fe;e.mGM(fe=e.lsd())&&(ce.template=fe.first),e.mGM(fe=e.lsd())&&(ce.panel=fe.first)}},hostAttrs:[1,"mat-mdc-autocomplete"],inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],displayWith:"displayWith",autoActiveFirstOption:[2,"autoActiveFirstOption","autoActiveFirstOption",e.L39],autoSelectActiveOption:[2,"autoSelectActiveOption","autoSelectActiveOption",e.L39],requireSelection:[2,"requireSelection","requireSelection",e.L39],panelWidth:"panelWidth",disableRipple:[2,"disableRipple","disableRipple",e.L39],classList:[0,"class","classList"],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",e.L39]},outputs:{optionSelected:"optionSelected",opened:"opened",closed:"closed",optionActivated:"optionActivated"},exportAs:["matAutocomplete"],standalone:!0,features:[e.Jv_([{provide:t.is,useExisting:Ke}]),e.GFd,e.aNF],ngContentSelectors:n,decls:1,vars:0,consts:[["panel",""],["role","listbox",1,"mat-mdc-autocomplete-panel","mdc-menu-surface","mdc-menu-surface--open",3,"id"]],template:function(me,ce){1&me&&(e.NAR(),e.DNE(0,c,3,16,"ng-template"))},styles:["div.mat-mdc-autocomplete-panel{width:100%;max-height:256px;visibility:hidden;transform-origin:center top;overflow:auto;padding:8px 0;box-sizing:border-box;position:static;border-radius:var(--mat-autocomplete-container-shape);box-shadow:var(--mat-autocomplete-container-elevation-shadow);background-color:var(--mat-autocomplete-background-color)}.cdk-high-contrast-active div.mat-mdc-autocomplete-panel{outline:solid 1px}.cdk-overlay-pane:not(.mat-mdc-autocomplete-panel-above) div.mat-mdc-autocomplete-panel{border-top-left-radius:0;border-top-right-radius:0}.mat-mdc-autocomplete-panel-above div.mat-mdc-autocomplete-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:center bottom}div.mat-mdc-autocomplete-panel.mat-mdc-autocomplete-visible{visibility:visible}div.mat-mdc-autocomplete-panel.mat-mdc-autocomplete-hidden{visibility:hidden;pointer-events:none}mat-autocomplete{display:none}"],encapsulation:2,data:{animation:[m]},changeDetection:0})}return Ke})();const v={provide:j.kq,useExisting:(0,e.Rfq)(()=>ze),multi:!0},N=new e.nKC("mat-autocomplete-scroll-strategy",{providedIn:"root",factory:()=>{const Ke=(0,e.WQX)(l.hJ);return()=>Ke.scrollStrategies.reposition()}}),Ee={provide:N,deps:[l.hJ],useFactory:function ne(Ke){return()=>Ke.scrollStrategies.reposition()}};let ze=(()=>{class Ke{constructor(X,me,ce,fe,ke,mt,_e,be,pe,Ze,_t){this._element=X,this._overlay=me,this._viewContainerRef=ce,this._zone=fe,this._changeDetectorRef=ke,this._dir=_e,this._formField=be,this._document=pe,this._viewportRuler=Ze,this._defaults=_t,this._componentDestroyed=!1,this._manuallyFloatingLabel=!1,this._viewportSubscription=d.yU.EMPTY,this._canOpenOnNextFocus=!0,this._closeKeyEventStream=new T.B,this._windowBlurHandler=()=>{this._canOpenOnNextFocus=this._document.activeElement!==this._element.nativeElement||this.panelOpen},this._onChange=()=>{},this._onTouched=()=>{},this.position="auto",this.autocompleteAttribute="off",this._aboveClass="mat-mdc-autocomplete-panel-above",this._overlayAttached=!1,this.optionSelections=(0,y.v)(()=>{const at=this.autocomplete?this.autocomplete.options:null;return at?at.changes.pipe((0,J.Z)(at),(0,ee.n)(()=>(0,F.h)(...at.map(pt=>pt.onSelectionChange)))):this._zone.onStable.pipe((0,ie.s)(1),(0,ee.n)(()=>this.optionSelections))}),this._handlePanelKeydown=at=>{(at.keyCode===W._f&&!(0,W.rp)(at)||at.keyCode===W.i7&&(0,W.rp)(at,"altKey"))&&(this._pendingAutoselectedOption&&(this._updateNativeInputValue(this._valueBeforeAutoSelection??""),this._pendingAutoselectedOption=null),this._closeKeyEventStream.next(),this._resetActiveItem(),at.stopPropagation(),at.preventDefault())},this._trackedModal=null,this._scrollStrategy=mt}ngAfterViewInit(){const X=this._getWindow();typeof X<"u"&&this._zone.runOutsideAngular(()=>X.addEventListener("blur",this._windowBlurHandler))}ngOnChanges(X){X.position&&this._positionStrategy&&(this._setStrategyPositions(this._positionStrategy),this.panelOpen&&this._overlayRef.updatePosition())}ngOnDestroy(){const X=this._getWindow();typeof X<"u"&&X.removeEventListener("blur",this._windowBlurHandler),this._viewportSubscription.unsubscribe(),this._componentDestroyed=!0,this._destroyPanel(),this._closeKeyEventStream.complete(),this._clearFromModal()}get panelOpen(){return this._overlayAttached&&this.autocomplete.showPanel}openPanel(){this._openPanelInternal()}closePanel(){this._resetLabel(),this._overlayAttached&&(this.panelOpen&&this._zone.run(()=>{this.autocomplete.closed.emit()}),this.autocomplete._latestOpeningTrigger===this&&(this.autocomplete._isOpen=!1,this.autocomplete._latestOpeningTrigger=null),this._overlayAttached=!1,this._pendingAutoselectedOption=null,this._overlayRef&&this._overlayRef.hasAttached()&&(this._overlayRef.detach(),this._closingActionsSubscription.unsubscribe()),this._updatePanelState(),this._componentDestroyed||this._changeDetectorRef.detectChanges(),this._trackedModal&&(0,x.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id))}updatePosition(){this._overlayAttached&&this._overlayRef.updatePosition()}get panelClosingActions(){return(0,F.h)(this.optionSelections,this.autocomplete._keyManager.tabOut.pipe((0,ge.p)(()=>this._overlayAttached)),this._closeKeyEventStream,this._getOutsideClickStream(),this._overlayRef?this._overlayRef.detachments().pipe((0,ge.p)(()=>this._overlayAttached)):(0,R.of)()).pipe((0,ae.T)(X=>X instanceof t.MI?X:null))}get activeOption(){return this.autocomplete&&this.autocomplete._keyManager?this.autocomplete._keyManager.activeItem:null}_getOutsideClickStream(){return(0,F.h)((0,z.R)(this._document,"click"),(0,z.R)(this._document,"auxclick"),(0,z.R)(this._document,"touchend")).pipe((0,ge.p)(X=>{const me=(0,f.Fb)(X),ce=this._formField?this._formField.getConnectedOverlayOrigin().nativeElement:null,fe=this.connectedTo?this.connectedTo.elementRef.nativeElement:null;return this._overlayAttached&&me!==this._element.nativeElement&&this._document.activeElement!==this._element.nativeElement&&(!ce||!ce.contains(me))&&(!fe||!fe.contains(me))&&!!this._overlayRef&&!this._overlayRef.overlayElement.contains(me)}))}writeValue(X){Promise.resolve(null).then(()=>this._assignOptionValue(X))}registerOnChange(X){this._onChange=X}registerOnTouched(X){this._onTouched=X}setDisabledState(X){this._element.nativeElement.disabled=X}_handleKeydown(X){const me=X.keyCode,ce=(0,W.rp)(X);if(me===W._f&&!ce&&X.preventDefault(),this._valueOnLastKeydown=this._element.nativeElement.value,this.activeOption&&me===W.Fm&&this.panelOpen&&!ce)this.activeOption._selectViaInteraction(),this._resetActiveItem(),X.preventDefault();else if(this.autocomplete){const fe=this.autocomplete._keyManager.activeItem,ke=me===W.i7||me===W.n6;me===W.wn||ke&&!ce&&this.panelOpen?this.autocomplete._keyManager.onKeydown(X):ke&&this._canOpen()&&this._openPanelInternal(this._valueOnLastKeydown),(ke||this.autocomplete._keyManager.activeItem!==fe)&&(this._scrollToOption(this.autocomplete._keyManager.activeItemIndex||0),this.autocomplete.autoSelectActiveOption&&this.activeOption&&(this._pendingAutoselectedOption||(this._valueBeforeAutoSelection=this._valueOnLastKeydown),this._pendingAutoselectedOption=this.activeOption,this._assignOptionValue(this.activeOption.value)))}}_handleInput(X){let me=X.target,ce=me.value;if("number"===me.type&&(ce=""==ce?null:parseFloat(ce)),this._previousValue!==ce){if(this._previousValue=ce,this._pendingAutoselectedOption=null,(!this.autocomplete||!this.autocomplete.requireSelection)&&this._onChange(ce),ce){if(this.panelOpen&&!this.autocomplete.requireSelection){const fe=this.autocomplete.options?.find(ke=>ke.selected);fe&&ce!==this._getDisplayValue(fe.value)&&fe.deselect(!1)}}else this._clearPreviousSelectedOption(null,!1);if(this._canOpen()&&this._document.activeElement===X.target){const fe=this._valueOnLastKeydown??this._element.nativeElement.value;this._valueOnLastKeydown=null,this._openPanelInternal(fe)}}}_handleFocus(){this._canOpenOnNextFocus?this._canOpen()&&(this._previousValue=this._element.nativeElement.value,this._attachOverlay(this._previousValue),this._floatLabel(!0)):this._canOpenOnNextFocus=!0}_handleClick(){this._canOpen()&&!this.panelOpen&&this._openPanelInternal()}_floatLabel(X=!1){this._formField&&"auto"===this._formField.floatLabel&&(X?this._formField._animateAndLockLabel():this._formField.floatLabel="always",this._manuallyFloatingLabel=!0)}_resetLabel(){this._manuallyFloatingLabel&&(this._formField&&(this._formField.floatLabel="auto"),this._manuallyFloatingLabel=!1)}_subscribeToClosingActions(){const X=this._zone.onStable.pipe((0,ie.s)(1)),me=this.autocomplete.options.changes.pipe((0,Me.M)(()=>this._positionStrategy.reapplyLastPosition()),(0,Te.c)(0));return(0,F.h)(X,me).pipe((0,ee.n)(()=>(this._zone.run(()=>{const ce=this.panelOpen;this._resetActiveItem(),this._updatePanelState(),this._changeDetectorRef.detectChanges(),this.panelOpen&&this._overlayRef.updatePosition(),ce!==this.panelOpen&&(this.panelOpen?this._emitOpened():this.autocomplete.closed.emit())}),this.panelClosingActions)),(0,ie.s)(1)).subscribe(ce=>this._setValueAndClose(ce))}_emitOpened(){this.autocomplete.opened.emit()}_destroyPanel(){this._overlayRef&&(this.closePanel(),this._overlayRef.dispose(),this._overlayRef=null)}_getDisplayValue(X){const me=this.autocomplete;return me&&me.displayWith?me.displayWith(X):X}_assignOptionValue(X){const me=this._getDisplayValue(X);null==X&&this._clearPreviousSelectedOption(null,!1),this._updateNativeInputValue(me??"")}_updateNativeInputValue(X){this._formField?this._formField._control.value=X:this._element.nativeElement.value=X,this._previousValue=X}_setValueAndClose(X){const me=this.autocomplete,ce=X?X.source:this._pendingAutoselectedOption;ce?(this._clearPreviousSelectedOption(ce),this._assignOptionValue(ce.value),this._onChange(ce.value),me._emitSelectEvent(ce),this._element.nativeElement.focus()):me.requireSelection&&this._element.nativeElement.value!==this._valueOnAttach&&(this._clearPreviousSelectedOption(null),this._assignOptionValue(null),me._animationDone?me._animationDone.pipe((0,ie.s)(1)).subscribe(()=>this._onChange(null)):this._onChange(null)),this.closePanel()}_clearPreviousSelectedOption(X,me){this.autocomplete?.options?.forEach(ce=>{ce!==X&&ce.selected&&ce.deselect(me)})}_openPanelInternal(X=this._element.nativeElement.value){this._attachOverlay(X),this._floatLabel(),this._trackedModal&&(0,x.px)(this._trackedModal,"aria-owns",this.autocomplete.id)}_attachOverlay(X){let me=this._overlayRef;me?(this._positionStrategy.setOrigin(this._getConnectedElement()),me.updateSize({width:this._getPanelWidth()})):(this._portal=new $.VA(this.autocomplete.template,this._viewContainerRef,{id:this._formField?.getLabelId()}),me=this._overlay.create(this._getOverlayConfig()),this._overlayRef=me,this._viewportSubscription=this._viewportRuler.change().subscribe(()=>{this.panelOpen&&me&&me.updateSize({width:this._getPanelWidth()})})),me&&!me.hasAttached()&&(me.attach(this._portal),this._valueOnAttach=X,this._valueOnLastKeydown=null,this._closingActionsSubscription=this._subscribeToClosingActions());const ce=this.panelOpen;this.autocomplete._isOpen=this._overlayAttached=!0,this.autocomplete._latestOpeningTrigger=this,this.autocomplete._setColor(this._formField?.color),this._updatePanelState(),this._applyModalPanelOwnership(),this.panelOpen&&ce!==this.panelOpen&&this._emitOpened()}_updatePanelState(){if(this.autocomplete._setVisibility(),this.panelOpen){const X=this._overlayRef;this._keydownSubscription||(this._keydownSubscription=X.keydownEvents().subscribe(this._handlePanelKeydown)),this._outsideClickSubscription||(this._outsideClickSubscription=X.outsidePointerEvents().subscribe())}else this._keydownSubscription?.unsubscribe(),this._outsideClickSubscription?.unsubscribe(),this._keydownSubscription=this._outsideClickSubscription=null}_getOverlayConfig(){return new l.rR({positionStrategy:this._getOverlayPosition(),scrollStrategy:this._scrollStrategy(),width:this._getPanelWidth(),direction:this._dir??void 0,panelClass:this._defaults?.overlayPanelClass})}_getOverlayPosition(){const X=this._overlay.position().flexibleConnectedTo(this._getConnectedElement()).withFlexibleDimensions(!1).withPush(!1);return this._setStrategyPositions(X),this._positionStrategy=X,X}_setStrategyPositions(X){const me=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],ce=this._aboveClass,fe=[{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:ce},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:ce}];let ke;ke="above"===this.position?fe:"below"===this.position?me:[...me,...fe],X.withPositions(ke)}_getConnectedElement(){return this.connectedTo?this.connectedTo.elementRef:this._formField?this._formField.getConnectedOverlayOrigin():this._element}_getPanelWidth(){return this.autocomplete.panelWidth||this._getHostWidth()}_getHostWidth(){return this._getConnectedElement().nativeElement.getBoundingClientRect().width}_resetActiveItem(){const X=this.autocomplete;if(X.autoActiveFirstOption){let me=-1;for(let ce=0;ce .cdk-overlay-container [aria-modal="true"]');if(!X)return;const me=this.autocomplete.id;this._trackedModal&&(0,x.Ae)(this._trackedModal,"aria-owns",me),(0,x.px)(X,"aria-owns",me),this._trackedModal=X}_clearFromModal(){this._trackedModal&&((0,x.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id),this._trackedModal=null)}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(e.aKT),e.rXU(l.hJ),e.rXU(e.c1b),e.rXU(e.SKi),e.rXU(e.gRc),e.rXU(N),e.rXU(de.dS,8),e.rXU(Q.xb,9),e.rXU(w.qQ,8),e.rXU(S.Xj),e.rXU(k,8))};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["input","matAutocomplete",""],["textarea","matAutocomplete",""]],hostAttrs:[1,"mat-mdc-autocomplete-trigger"],hostVars:7,hostBindings:function(me,ce){1&me&&e.bIt("focusin",function(){return ce._handleFocus()})("blur",function(){return ce._onTouched()})("input",function(ke){return ce._handleInput(ke)})("keydown",function(ke){return ce._handleKeydown(ke)})("click",function(){return ce._handleClick()}),2&me&&e.BMQ("autocomplete",ce.autocompleteAttribute)("role",ce.autocompleteDisabled?null:"combobox")("aria-autocomplete",ce.autocompleteDisabled?null:"list")("aria-activedescendant",ce.panelOpen&&ce.activeOption?ce.activeOption.id:null)("aria-expanded",ce.autocompleteDisabled?null:ce.panelOpen.toString())("aria-controls",ce.autocompleteDisabled||!ce.panelOpen||null==ce.autocomplete?null:ce.autocomplete.id)("aria-haspopup",ce.autocompleteDisabled?null:"listbox")},inputs:{autocomplete:[0,"matAutocomplete","autocomplete"],position:[0,"matAutocompletePosition","position"],connectedTo:[0,"matAutocompleteConnectedTo","connectedTo"],autocompleteAttribute:[0,"autocomplete","autocompleteAttribute"],autocompleteDisabled:[2,"matAutocompleteDisabled","autocompleteDisabled",e.L39]},exportAs:["matAutocompleteTrigger"],standalone:!0,features:[e.Jv_([v]),e.GFd,e.OA$]})}return Ke})(),qe=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=e.$C({type:Ke});static#i=this.\u0275inj=e.G2t({providers:[Ee],imports:[l.z_,t.Sy,t.yE,w.MD,S.Gj,t.Sy,t.yE]})}return Ke})()},1975:(Qe,te,g)=>{"use strict";g.d(te,{Y:()=>T,k:()=>d});var e=g(4438),t=g(6600),w=g(8617),S=g(177);let l=0;const x="mat-badge-content",f=new Set;let I=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275cmp=e.VBU({type:y,selectors:[["ng-component"]],standalone:!0,features:[e.aNF],decls:0,vars:0,template:function(z,W){},styles:[".mat-badge{position:relative}.mat-badge.mat-badge{overflow:visible}.mat-badge-content{position:absolute;text-align:center;display:inline-block;transition:transform 200ms ease-in-out;transform:scale(0.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box;pointer-events:none;background-color:var(--mat-badge-background-color);color:var(--mat-badge-text-color);font-family:var(--mat-badge-text-font);font-weight:var(--mat-badge-text-weight);border-radius:var(--mat-badge-container-shape)}.cdk-high-contrast-active .mat-badge-content{outline:solid 1px;border-radius:0}.mat-badge-above .mat-badge-content{bottom:100%}.mat-badge-below .mat-badge-content{top:100%}.mat-badge-before .mat-badge-content{right:100%}[dir=rtl] .mat-badge-before .mat-badge-content{right:auto;left:100%}.mat-badge-after .mat-badge-content{left:100%}[dir=rtl] .mat-badge-after .mat-badge-content{left:auto;right:100%}.mat-badge-disabled .mat-badge-content{background-color:var(--mat-badge-disabled-state-background-color);color:var(--mat-badge-disabled-state-text-color)}.mat-badge-hidden .mat-badge-content{display:none}.ng-animate-disabled .mat-badge-content,.mat-badge-content._mat-animation-noopable{transition:none}.mat-badge-content.mat-badge-active{transform:none}.mat-badge-small .mat-badge-content{width:var(--mat-badge-legacy-small-size-container-size, unset);height:var(--mat-badge-legacy-small-size-container-size, unset);min-width:var(--mat-badge-small-size-container-size, unset);min-height:var(--mat-badge-small-size-container-size, unset);line-height:var(--mat-badge-legacy-small-size-container-size, var(--mat-badge-small-size-container-size));padding:var(--mat-badge-small-size-container-padding);font-size:var(--mat-badge-small-size-text-size);margin:var(--mat-badge-small-size-container-offset)}.mat-badge-small.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-small-size-container-overlap-offset)}.mat-badge-medium .mat-badge-content{width:var(--mat-badge-legacy-container-size, unset);height:var(--mat-badge-legacy-container-size, unset);min-width:var(--mat-badge-container-size, unset);min-height:var(--mat-badge-container-size, unset);line-height:var(--mat-badge-legacy-container-size, var(--mat-badge-container-size));padding:var(--mat-badge-container-padding);font-size:var(--mat-badge-text-size);margin:var(--mat-badge-container-offset)}.mat-badge-medium.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-container-overlap-offset)}.mat-badge-large .mat-badge-content{width:var(--mat-badge-legacy-large-size-container-size, unset);height:var(--mat-badge-legacy-large-size-container-size, unset);min-width:var(--mat-badge-large-size-container-size, unset);min-height:var(--mat-badge-large-size-container-size, unset);line-height:var(--mat-badge-legacy-large-size-container-size, var(--mat-badge-large-size-container-size));padding:var(--mat-badge-large-size-container-padding);font-size:var(--mat-badge-large-size-text-size);margin:var(--mat-badge-large-size-container-offset)}.mat-badge-large.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-large-size-container-overlap-offset)}"],encapsulation:2,changeDetection:0})}return y})(),d=(()=>{class y{get color(){return this._color}set color(R){this._setColor(R),this._color=R}get content(){return this._content}set content(R){this._updateRenderedContent(R)}get description(){return this._description}set description(R){this._updateDescription(R)}constructor(R,z,W,$,j){this._ngZone=R,this._elementRef=z,this._ariaDescriber=W,this._renderer=$,this._animationMode=j,this._color="primary",this.overlap=!0,this.position="above after",this.size="medium",this._id=l++,this._isInitialized=!1,this._interactivityChecker=(0,e.WQX)(w.Z7),this._document=(0,e.WQX)(S.qQ);const Q=(0,e.WQX)(e.o8S);if(!f.has(Q)){f.add(Q);const J=(0,e.a0P)(I,{environmentInjector:(0,e.WQX)(e.uvJ)});Q.onDestroy(()=>{f.delete(Q),0===f.size&&J.destroy()})}}isAbove(){return-1===this.position.indexOf("below")}isAfter(){return-1===this.position.indexOf("before")}getBadgeElement(){return this._badgeElement}ngOnInit(){this._clearExistingBadges(),this.content&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement(),this._updateRenderedContent(this.content)),this._isInitialized=!0}ngOnDestroy(){this._renderer.destroyNode&&(this._renderer.destroyNode(this._badgeElement),this._inlineBadgeDescription?.remove()),this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description)}_isHostInteractive(){return this._interactivityChecker.isFocusable(this._elementRef.nativeElement,{ignoreVisibility:!0})}_createBadgeElement(){const R=this._renderer.createElement("span"),z="mat-badge-active";return R.setAttribute("id",`mat-badge-content-${this._id}`),R.setAttribute("aria-hidden","true"),R.classList.add(x),"NoopAnimations"===this._animationMode&&R.classList.add("_mat-animation-noopable"),this._elementRef.nativeElement.appendChild(R),"function"==typeof requestAnimationFrame&&"NoopAnimations"!==this._animationMode?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{R.classList.add(z)})}):R.classList.add(z),R}_updateRenderedContent(R){const z=`${R??""}`.trim();this._isInitialized&&z&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement()),this._badgeElement&&(this._badgeElement.textContent=z),this._content=z}_updateDescription(R){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description),(!R||this._isHostInteractive())&&this._removeInlineDescription(),this._description=R,this._isHostInteractive()?this._ariaDescriber.describe(this._elementRef.nativeElement,R):this._updateInlineDescription()}_updateInlineDescription(){this._inlineBadgeDescription||(this._inlineBadgeDescription=this._document.createElement("span"),this._inlineBadgeDescription.classList.add("cdk-visually-hidden")),this._inlineBadgeDescription.textContent=this.description,this._badgeElement?.appendChild(this._inlineBadgeDescription)}_removeInlineDescription(){this._inlineBadgeDescription?.remove(),this._inlineBadgeDescription=void 0}_setColor(R){const z=this._elementRef.nativeElement.classList;z.remove(`mat-badge-${this._color}`),R&&z.add(`mat-badge-${R}`)}_clearExistingBadges(){const R=this._elementRef.nativeElement.querySelectorAll(`:scope > .${x}`);for(const z of Array.from(R))z!==this._badgeElement&&z.remove()}static#e=this.\u0275fac=function(z){return new(z||y)(e.rXU(e.SKi),e.rXU(e.aKT),e.rXU(w.vr),e.rXU(e.sFG),e.rXU(e.bc$,8))};static#t=this.\u0275dir=e.FsC({type:y,selectors:[["","matBadge",""]],hostAttrs:[1,"mat-badge"],hostVars:20,hostBindings:function(z,W){2&z&&e.AVh("mat-badge-overlap",W.overlap)("mat-badge-above",W.isAbove())("mat-badge-below",!W.isAbove())("mat-badge-before",!W.isAfter())("mat-badge-after",W.isAfter())("mat-badge-small","small"===W.size)("mat-badge-medium","medium"===W.size)("mat-badge-large","large"===W.size)("mat-badge-hidden",W.hidden||!W.content)("mat-badge-disabled",W.disabled)},inputs:{color:[0,"matBadgeColor","color"],overlap:[2,"matBadgeOverlap","overlap",e.L39],disabled:[2,"matBadgeDisabled","disabled",e.L39],position:[0,"matBadgePosition","position"],content:[0,"matBadge","content"],description:[0,"matBadgeDescription","description"],size:[0,"matBadgeSize","size"],hidden:[2,"matBadgeHidden","hidden",e.L39]},standalone:!0,features:[e.GFd]})}return y})(),T=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275mod=e.$C({type:y});static#i=this.\u0275inj=e.G2t({imports:[w.Pd,t.yE,t.yE]})}return y})()},8834:(Qe,te,g)=>{"use strict";g.d(te,{$0:()=>n,$z:()=>ge,Hl:()=>k,iY:()=>h});var e=g(6860),t=g(4438),w=g(8617),S=g(6600);const l=["mat-button",""],x=[[["",8,"material-icons",3,"iconPositionEnd",""],["mat-icon",3,"iconPositionEnd",""],["","matButtonIcon","",3,"iconPositionEnd",""]],"*",[["","iconPositionEnd","",8,"material-icons"],["mat-icon","iconPositionEnd",""],["","matButtonIcon","","iconPositionEnd",""]]],f=[".material-icons:not([iconPositionEnd]), mat-icon:not([iconPositionEnd]), [matButtonIcon]:not([iconPositionEnd])","*",".material-icons[iconPositionEnd], mat-icon[iconPositionEnd], [matButtonIcon][iconPositionEnd]"],y=["mat-mini-fab",""],R=["mat-icon-button",""],z=["*"],$=new t.nKC("MAT_BUTTON_CONFIG"),Q=[{attribute:"mat-button",mdcClasses:["mdc-button","mat-mdc-button"]},{attribute:"mat-flat-button",mdcClasses:["mdc-button","mdc-button--unelevated","mat-mdc-unelevated-button"]},{attribute:"mat-raised-button",mdcClasses:["mdc-button","mdc-button--raised","mat-mdc-raised-button"]},{attribute:"mat-stroked-button",mdcClasses:["mdc-button","mdc-button--outlined","mat-mdc-outlined-button"]},{attribute:"mat-fab",mdcClasses:["mdc-fab","mat-mdc-fab"]},{attribute:"mat-mini-fab",mdcClasses:["mdc-fab","mdc-fab--mini","mat-mdc-mini-fab"]},{attribute:"mat-icon-button",mdcClasses:["mdc-icon-button","mat-mdc-icon-button"]}];let J=(()=>{class L{get ripple(){return this._rippleLoader?.getRipple(this._elementRef.nativeElement)}set ripple(r){this._rippleLoader?.attachRipple(this._elementRef.nativeElement,r)}get disableRipple(){return this._disableRipple}set disableRipple(r){this._disableRipple=r,this._updateRippleDisabled()}get disabled(){return this._disabled}set disabled(r){this._disabled=r,this._updateRippleDisabled()}constructor(r,v,V,N){this._elementRef=r,this._platform=v,this._ngZone=V,this._animationMode=N,this._focusMonitor=(0,t.WQX)(w.FN),this._rippleLoader=(0,t.WQX)(S.Ej),this._isFab=!1,this._disableRipple=!1,this._disabled=!1;const ne=(0,t.WQX)($,{optional:!0}),Ee=r.nativeElement,ze=Ee.classList;this.disabledInteractive=ne?.disabledInteractive??!1,this._rippleLoader?.configureRipple(Ee,{className:"mat-mdc-button-ripple"});for(const{attribute:qe,mdcClasses:Ke}of Q)Ee.hasAttribute(qe)&&ze.add(...Ke)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._rippleLoader?.destroyRipple(this._elementRef.nativeElement)}focus(r="program",v){r?this._focusMonitor.focusVia(this._elementRef.nativeElement,r,v):this._elementRef.nativeElement.focus(v)}_getAriaDisabled(){return null!=this.ariaDisabled?this.ariaDisabled:!(!this.disabled||!this.disabledInteractive)||null}_getDisabledAttribute(){return!(this.disabledInteractive||!this.disabled)||null}_updateRippleDisabled(){this._rippleLoader?.setDisabled(this._elementRef.nativeElement,this.disableRipple||this.disabled)}static#e=this.\u0275fac=function(v){t.QTQ()};static#t=this.\u0275dir=t.FsC({type:L,inputs:{color:"color",disableRipple:[2,"disableRipple","disableRipple",t.L39],disabled:[2,"disabled","disabled",t.L39],ariaDisabled:[2,"aria-disabled","ariaDisabled",t.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",t.L39]},features:[t.GFd]})}return L})(),ge=(()=>{class L extends J{constructor(r,v,V,N){super(r,v,V,N)}static#e=this.\u0275fac=function(v){return new(v||L)(t.rXU(t.aKT),t.rXU(e.OD),t.rXU(t.SKi),t.rXU(t.bc$,8))};static#t=this.\u0275cmp=t.VBU({type:L,selectors:[["button","mat-button",""],["button","mat-raised-button",""],["button","mat-flat-button",""],["button","mat-stroked-button",""]],hostVars:14,hostBindings:function(v,V){2&v&&(t.BMQ("disabled",V._getDisabledAttribute())("aria-disabled",V._getAriaDisabled()),t.HbH(V.color?"mat-"+V.color:""),t.AVh("mat-mdc-button-disabled",V.disabled)("mat-mdc-button-disabled-interactive",V.disabledInteractive)("_mat-animation-noopable","NoopAnimations"===V._animationMode)("mat-unthemed",!V.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],standalone:!0,features:[t.Vt3,t.aNF],attrs:l,ngContentSelectors:f,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(v,V){1&v&&(t.NAR(x),t.nrm(0,"span",0),t.SdG(1),t.j41(2,"span",1),t.SdG(3,1),t.k0s(),t.SdG(4,2),t.nrm(5,"span",2)(6,"span",3)),2&v&&t.AVh("mdc-button__ripple",!V._isFab)("mdc-fab__ripple",V._isFab)},styles:['.mdc-touch-target-wrapper{display:inline}.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity, 0);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-button{position:relative;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-width:64px;border:none;outline:none;line-height:inherit;user-select:none;-webkit-appearance:none;overflow:visible;vertical-align:middle;background:rgba(0,0,0,0)}.mdc-button .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-button::-moz-focus-inner{padding:0;border:0}.mdc-button:active{outline:none}.mdc-button:hover{cursor:pointer}.mdc-button:disabled{cursor:default;pointer-events:none}.mdc-button[hidden]{display:none}.mdc-button .mdc-button__icon{margin-left:0;margin-right:8px;display:inline-block;position:relative;vertical-align:top}[dir=rtl] .mdc-button .mdc-button__icon,.mdc-button .mdc-button__icon[dir=rtl]{margin-left:8px;margin-right:0}.mdc-button .mdc-button__progress-indicator{font-size:0;position:absolute;transform:translate(-50%, -50%);top:50%;left:50%;line-height:initial}.mdc-button .mdc-button__label{position:relative}.mdc-button .mdc-button__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px);display:none}@media screen and (forced-colors: active){.mdc-button .mdc-button__focus-ring{border-color:CanvasText}}.mdc-button .mdc-button__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-button .mdc-button__focus-ring::after{border-color:CanvasText}}@media screen and (forced-colors: active){.mdc-button.mdc-ripple-upgraded--background-focused .mdc-button__focus-ring,.mdc-button:not(.mdc-ripple-upgraded):focus .mdc-button__focus-ring{display:block}}.mdc-button .mdc-button__touch{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%)}.mdc-button__label+.mdc-button__icon{margin-left:8px;margin-right:0}[dir=rtl] .mdc-button__label+.mdc-button__icon,.mdc-button__label+.mdc-button__icon[dir=rtl]{margin-left:0;margin-right:8px}svg.mdc-button__icon{fill:currentColor}.mdc-button--touch{margin-top:6px;margin-bottom:6px}.mdc-button{padding:0 8px 0 8px}.mdc-button--unelevated{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);padding:0 16px 0 16px}.mdc-button--unelevated.mdc-button--icon-trailing{padding:0 12px 0 16px}.mdc-button--unelevated.mdc-button--icon-leading{padding:0 16px 0 12px}.mdc-button--raised{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);padding:0 16px 0 16px}.mdc-button--raised.mdc-button--icon-trailing{padding:0 12px 0 16px}.mdc-button--raised.mdc-button--icon-leading{padding:0 16px 0 12px}.mdc-button--outlined{border-style:solid;transition:border 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-button--outlined .mdc-button__ripple{border-style:solid;border-color:rgba(0,0,0,0)}.mat-mdc-button{font-family:var(--mdc-text-button-label-text-font);font-size:var(--mdc-text-button-label-text-size);letter-spacing:var(--mdc-text-button-label-text-tracking);font-weight:var(--mdc-text-button-label-text-weight);text-transform:var(--mdc-text-button-label-text-transform);height:var(--mdc-text-button-container-height);border-radius:var(--mdc-text-button-container-shape);padding:0 var(--mat-text-button-horizontal-padding, 8px)}.mat-mdc-button:not(:disabled){color:var(--mdc-text-button-label-text-color)}.mat-mdc-button:disabled{color:var(--mdc-text-button-disabled-label-text-color)}.mat-mdc-button .mdc-button__ripple{border-radius:var(--mdc-text-button-container-shape)}.mat-mdc-button:has(.material-icons,mat-icon,[matButtonIcon]){padding:0 var(--mat-text-button-with-icon-horizontal-padding, 8px)}.mat-mdc-button>.mat-icon{margin-right:var(--mat-text-button-icon-spacing, 8px);margin-left:var(--mat-text-button-icon-offset, 0)}[dir=rtl] .mat-mdc-button>.mat-icon{margin-right:var(--mat-text-button-icon-offset, 0);margin-left:var(--mat-text-button-icon-spacing, 8px)}.mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-text-button-icon-offset, 0);margin-left:var(--mat-text-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-text-button-icon-spacing, 8px);margin-left:var(--mat-text-button-icon-offset, 0)}.mat-mdc-button .mat-ripple-element{background-color:var(--mat-text-button-ripple-color)}.mat-mdc-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-text-button-state-layer-color)}.mat-mdc-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-text-button-disabled-state-layer-color)}.mat-mdc-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-text-button-hover-state-layer-opacity)}.mat-mdc-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-button.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-text-button-focus-state-layer-opacity)}.mat-mdc-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-text-button-pressed-state-layer-opacity)}.mat-mdc-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-text-button-touch-target-display)}.mat-mdc-button[disabled],.mat-mdc-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-text-button-disabled-label-text-color)}.mat-mdc-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-unelevated-button{font-family:var(--mdc-filled-button-label-text-font);font-size:var(--mdc-filled-button-label-text-size);letter-spacing:var(--mdc-filled-button-label-text-tracking);font-weight:var(--mdc-filled-button-label-text-weight);text-transform:var(--mdc-filled-button-label-text-transform);height:var(--mdc-filled-button-container-height);border-radius:var(--mdc-filled-button-container-shape);padding:0 var(--mat-filled-button-horizontal-padding, 16px)}.mat-mdc-unelevated-button:not(:disabled){background-color:var(--mdc-filled-button-container-color)}.mat-mdc-unelevated-button:disabled{background-color:var(--mdc-filled-button-disabled-container-color)}.mat-mdc-unelevated-button:not(:disabled){color:var(--mdc-filled-button-label-text-color)}.mat-mdc-unelevated-button:disabled{color:var(--mdc-filled-button-disabled-label-text-color)}.mat-mdc-unelevated-button .mdc-button__ripple{border-radius:var(--mdc-filled-button-container-shape)}.mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-filled-button-icon-spacing, 8px);margin-left:var(--mat-filled-button-icon-offset, -4px)}[dir=rtl] .mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-filled-button-icon-offset, -4px);margin-left:var(--mat-filled-button-icon-spacing, 8px)}.mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-filled-button-icon-offset, -4px);margin-left:var(--mat-filled-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-filled-button-icon-spacing, 8px);margin-left:var(--mat-filled-button-icon-offset, -4px)}.mat-mdc-unelevated-button .mat-ripple-element{background-color:var(--mat-filled-button-ripple-color)}.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-filled-button-state-layer-color)}.mat-mdc-unelevated-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-filled-button-disabled-state-layer-color)}.mat-mdc-unelevated-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-filled-button-hover-state-layer-opacity)}.mat-mdc-unelevated-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-filled-button-focus-state-layer-opacity)}.mat-mdc-unelevated-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-filled-button-pressed-state-layer-opacity)}.mat-mdc-unelevated-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-filled-button-touch-target-display)}.mat-mdc-unelevated-button[disabled],.mat-mdc-unelevated-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-filled-button-disabled-label-text-color);background-color:var(--mdc-filled-button-disabled-container-color)}.mat-mdc-unelevated-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-raised-button{font-family:var(--mdc-protected-button-label-text-font);font-size:var(--mdc-protected-button-label-text-size);letter-spacing:var(--mdc-protected-button-label-text-tracking);font-weight:var(--mdc-protected-button-label-text-weight);text-transform:var(--mdc-protected-button-label-text-transform);height:var(--mdc-protected-button-container-height);border-radius:var(--mdc-protected-button-container-shape);padding:0 var(--mat-protected-button-horizontal-padding, 16px);box-shadow:var(--mdc-protected-button-container-elevation-shadow)}.mat-mdc-raised-button:not(:disabled){background-color:var(--mdc-protected-button-container-color)}.mat-mdc-raised-button:disabled{background-color:var(--mdc-protected-button-disabled-container-color)}.mat-mdc-raised-button:not(:disabled){color:var(--mdc-protected-button-label-text-color)}.mat-mdc-raised-button:disabled{color:var(--mdc-protected-button-disabled-label-text-color)}.mat-mdc-raised-button .mdc-button__ripple{border-radius:var(--mdc-protected-button-container-shape)}.mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-protected-button-icon-spacing, 8px);margin-left:var(--mat-protected-button-icon-offset, -4px)}[dir=rtl] .mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-protected-button-icon-offset, -4px);margin-left:var(--mat-protected-button-icon-spacing, 8px)}.mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-protected-button-icon-offset, -4px);margin-left:var(--mat-protected-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-protected-button-icon-spacing, 8px);margin-left:var(--mat-protected-button-icon-offset, -4px)}.mat-mdc-raised-button .mat-ripple-element{background-color:var(--mat-protected-button-ripple-color)}.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-protected-button-state-layer-color)}.mat-mdc-raised-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-protected-button-disabled-state-layer-color)}.mat-mdc-raised-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-protected-button-hover-state-layer-opacity)}.mat-mdc-raised-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-protected-button-focus-state-layer-opacity)}.mat-mdc-raised-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-protected-button-pressed-state-layer-opacity)}.mat-mdc-raised-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-protected-button-touch-target-display)}.mat-mdc-raised-button:hover{box-shadow:var(--mdc-protected-button-hover-container-elevation-shadow)}.mat-mdc-raised-button:focus{box-shadow:var(--mdc-protected-button-focus-container-elevation-shadow)}.mat-mdc-raised-button:active,.mat-mdc-raised-button:focus:active{box-shadow:var(--mdc-protected-button-pressed-container-elevation-shadow)}.mat-mdc-raised-button[disabled],.mat-mdc-raised-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-protected-button-disabled-label-text-color);background-color:var(--mdc-protected-button-disabled-container-color)}.mat-mdc-raised-button[disabled].mat-mdc-button-disabled,.mat-mdc-raised-button.mat-mdc-button-disabled.mat-mdc-button-disabled{box-shadow:var(--mdc-protected-button-disabled-container-elevation-shadow)}.mat-mdc-raised-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-outlined-button{font-family:var(--mdc-outlined-button-label-text-font);font-size:var(--mdc-outlined-button-label-text-size);letter-spacing:var(--mdc-outlined-button-label-text-tracking);font-weight:var(--mdc-outlined-button-label-text-weight);text-transform:var(--mdc-outlined-button-label-text-transform);height:var(--mdc-outlined-button-container-height);border-radius:var(--mdc-outlined-button-container-shape);padding:0 15px 0 15px;border-width:var(--mdc-outlined-button-outline-width);padding:0 var(--mat-outlined-button-horizontal-padding, 15px)}.mat-mdc-outlined-button:not(:disabled){color:var(--mdc-outlined-button-label-text-color)}.mat-mdc-outlined-button:disabled{color:var(--mdc-outlined-button-disabled-label-text-color)}.mat-mdc-outlined-button .mdc-button__ripple{border-radius:var(--mdc-outlined-button-container-shape)}.mat-mdc-outlined-button:not(:disabled){border-color:var(--mdc-outlined-button-outline-color)}.mat-mdc-outlined-button:disabled{border-color:var(--mdc-outlined-button-disabled-outline-color)}.mat-mdc-outlined-button.mdc-button--icon-trailing{padding:0 11px 0 15px}.mat-mdc-outlined-button.mdc-button--icon-leading{padding:0 15px 0 11px}.mat-mdc-outlined-button .mdc-button__ripple{top:-1px;left:-1px;bottom:-1px;right:-1px;border-width:var(--mdc-outlined-button-outline-width)}.mat-mdc-outlined-button .mdc-button__touch{left:calc(-1 * var(--mdc-outlined-button-outline-width));width:calc(100% + 2 * var(--mdc-outlined-button-outline-width))}.mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-outlined-button-icon-spacing, 8px);margin-left:var(--mat-outlined-button-icon-offset, -4px)}[dir=rtl] .mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-outlined-button-icon-offset, -4px);margin-left:var(--mat-outlined-button-icon-spacing, 8px)}.mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-outlined-button-icon-offset, -4px);margin-left:var(--mat-outlined-button-icon-spacing, 8px)}[dir=rtl] .mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-outlined-button-icon-spacing, 8px);margin-left:var(--mat-outlined-button-icon-offset, -4px)}.mat-mdc-outlined-button .mat-ripple-element{background-color:var(--mat-outlined-button-ripple-color)}.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-outlined-button-state-layer-color)}.mat-mdc-outlined-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-outlined-button-disabled-state-layer-color)}.mat-mdc-outlined-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-outlined-button-hover-state-layer-opacity)}.mat-mdc-outlined-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-outlined-button-focus-state-layer-opacity)}.mat-mdc-outlined-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-outlined-button-pressed-state-layer-opacity)}.mat-mdc-outlined-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%);display:var(--mat-outlined-button-touch-target-display)}.mat-mdc-outlined-button[disabled],.mat-mdc-outlined-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-outlined-button-disabled-label-text-color);border-color:var(--mdc-outlined-button-disabled-outline-color)}.mat-mdc-outlined-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-button-base{text-decoration:none}.mat-mdc-button,.mat-mdc-unelevated-button,.mat-mdc-raised-button,.mat-mdc-outlined-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-button .mdc-button__label,.mat-mdc-unelevated-button .mdc-button__label,.mat-mdc-raised-button .mdc-button__label,.mat-mdc-outlined-button .mdc-button__label{z-index:1}.mat-mdc-button .mat-mdc-focus-indicator,.mat-mdc-unelevated-button .mat-mdc-focus-indicator,.mat-mdc-raised-button .mat-mdc-focus-indicator,.mat-mdc-outlined-button .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-unelevated-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-raised-button:focus .mat-mdc-focus-indicator::before,.mat-mdc-outlined-button:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-button._mat-animation-noopable,.mat-mdc-unelevated-button._mat-animation-noopable,.mat-mdc-raised-button._mat-animation-noopable,.mat-mdc-outlined-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-button>.mat-icon,.mat-mdc-unelevated-button>.mat-icon,.mat-mdc-raised-button>.mat-icon,.mat-mdc-outlined-button>.mat-icon{display:inline-block;position:relative;vertical-align:top;font-size:1.125rem;height:1.125rem;width:1.125rem}.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mdc-button__ripple{top:-1px;left:-1px;bottom:-1px;right:-1px;border-width:-1px}.mat-mdc-unelevated-button .mat-mdc-focus-indicator::before,.mat-mdc-raised-button .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-outlined-button .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 3px)*-1)}',".cdk-high-contrast-active .mat-mdc-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-unelevated-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-raised-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-outlined-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return L})();const Me=new t.nKC("mat-mdc-fab-default-options",{providedIn:"root",factory:Te});function Te(){return{color:"accent"}}const de=Te();let n=(()=>{class L extends J{constructor(r,v,V,N,ne){super(r,v,V,N),this._options=ne,this._isFab=!0,this._options=this._options||de,this.color=this._options.color||de.color}static#e=this.\u0275fac=function(v){return new(v||L)(t.rXU(t.aKT),t.rXU(e.OD),t.rXU(t.SKi),t.rXU(t.bc$,8),t.rXU(Me,8))};static#t=this.\u0275cmp=t.VBU({type:L,selectors:[["button","mat-mini-fab",""]],hostVars:14,hostBindings:function(v,V){2&v&&(t.BMQ("disabled",V._getDisabledAttribute())("aria-disabled",V._getAriaDisabled()),t.HbH(V.color?"mat-"+V.color:""),t.AVh("mat-mdc-button-disabled",V.disabled)("mat-mdc-button-disabled-interactive",V.disabledInteractive)("_mat-animation-noopable","NoopAnimations"===V._animationMode)("mat-unthemed",!V.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],standalone:!0,features:[t.Vt3,t.aNF],attrs:y,ngContentSelectors:f,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(v,V){1&v&&(t.NAR(x),t.nrm(0,"span",0),t.SdG(1),t.j41(2,"span",1),t.SdG(3,1),t.k0s(),t.SdG(4,2),t.nrm(5,"span",2)(6,"span",3)),2&v&&t.AVh("mdc-button__ripple",!V._isFab)("mdc-fab__ripple",V._isFab)},styles:['.mdc-touch-target-wrapper{display:inline}.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-fab{position:relative;display:inline-flex;position:relative;align-items:center;justify-content:center;box-sizing:border-box;width:56px;height:56px;padding:0;border:none;fill:currentColor;text-decoration:none;cursor:pointer;user-select:none;-moz-appearance:none;-webkit-appearance:none;overflow:visible;transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),opacity 15ms linear 30ms,transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-fab .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-fab[hidden]{display:none}.mdc-fab::-moz-focus-inner{padding:0;border:0}.mdc-fab .mdc-fab__focus-ring{position:absolute}.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring{border-color:CanvasText}}.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring::after,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__focus-ring::after,.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__focus-ring::after{border-color:CanvasText}}.mdc-fab:active,.mdc-fab:focus{outline:none}.mdc-fab:hover{cursor:pointer}.mdc-fab>svg{width:100%}.mdc-fab--mini{width:40px;height:40px}.mdc-fab--extended{border-radius:24px;padding-left:20px;padding-right:20px;width:auto;max-width:100%;height:48px;line-height:normal}.mdc-fab--extended .mdc-fab__ripple{border-radius:24px}.mdc-fab--extended .mdc-fab__icon{margin-left:calc(12px - 20px);margin-right:12px}[dir=rtl] .mdc-fab--extended .mdc-fab__icon,.mdc-fab--extended .mdc-fab__icon[dir=rtl]{margin-left:12px;margin-right:calc(12px - 20px)}.mdc-fab--extended .mdc-fab__label+.mdc-fab__icon{margin-left:12px;margin-right:calc(12px - 20px)}[dir=rtl] .mdc-fab--extended .mdc-fab__label+.mdc-fab__icon,.mdc-fab--extended .mdc-fab__label+.mdc-fab__icon[dir=rtl]{margin-left:calc(12px - 20px);margin-right:12px}.mdc-fab--touch{margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mdc-fab--touch .mdc-fab__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}.mdc-fab::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-fab::before{border-color:CanvasText}}.mdc-fab__label{justify-content:flex-start;text-overflow:ellipsis;white-space:nowrap;overflow-x:hidden;overflow-y:visible}.mdc-fab__icon{transition:transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);fill:currentColor;will-change:transform}.mdc-fab .mdc-fab__icon{display:inline-flex;align-items:center;justify-content:center}.mdc-fab--exited{transform:scale(0);opacity:0;transition:opacity 15ms linear 150ms,transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-fab--exited .mdc-fab__icon{transform:scale(0);transition:transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mat-mdc-fab{background-color:var(--mdc-fab-container-color)}.mat-mdc-fab .mdc-fab__icon{width:var(--mdc-fab-icon-size);height:var(--mdc-fab-icon-size);font-size:var(--mdc-fab-icon-size)}.mat-mdc-fab:not(.mdc-fab--extended){border-radius:var(--mdc-fab-container-shape)}.mat-mdc-fab:not(.mdc-fab--extended) .mdc-fab__ripple{border-radius:var(--mdc-fab-container-shape)}.mat-mdc-mini-fab{background-color:var(--mdc-fab-small-container-color)}.mat-mdc-mini-fab .mdc-fab__icon{width:var(--mdc-fab-small-icon-size);height:var(--mdc-fab-small-icon-size);font-size:var(--mdc-fab-small-icon-size)}.mat-mdc-mini-fab:not(.mdc-fab--extended){border-radius:var(--mdc-fab-small-container-shape)}.mat-mdc-mini-fab:not(.mdc-fab--extended) .mdc-fab__ripple{border-radius:var(--mdc-fab-small-container-shape)}.mat-mdc-extended-fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mdc-extended-fab-container-height);border-radius:var(--mdc-extended-fab-container-shape);font-family:var(--mdc-extended-fab-label-text-font);font-size:var(--mdc-extended-fab-label-text-size);font-weight:var(--mdc-extended-fab-label-text-weight);letter-spacing:var(--mdc-extended-fab-label-text-tracking)}.mat-mdc-extended-fab .mdc-fab__ripple{border-radius:var(--mdc-extended-fab-container-shape)}.mat-mdc-fab,.mat-mdc-mini-fab{-webkit-tap-highlight-color:rgba(0,0,0,0);flex-shrink:0}.mat-mdc-fab .mat-mdc-button-ripple,.mat-mdc-fab .mat-mdc-button-persistent-ripple,.mat-mdc-fab .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab .mat-mdc-button-ripple,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-fab .mat-mdc-button-ripple,.mat-mdc-mini-fab .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-fab .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-fab .mdc-button__label,.mat-mdc-mini-fab .mdc-button__label{z-index:1}.mat-mdc-fab .mat-mdc-focus-indicator,.mat-mdc-mini-fab .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-fab:focus .mat-mdc-focus-indicator::before,.mat-mdc-mini-fab:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-fab._mat-animation-noopable,.mat-mdc-mini-fab._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-fab:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-mini-fab:not(.mdc-ripple-upgraded):focus::before{background:rgba(0,0,0,0);opacity:1}.mat-mdc-fab .mat-icon,.mat-mdc-fab .material-icons,.mat-mdc-mini-fab .mat-icon,.mat-mdc-mini-fab .material-icons{transition:transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);fill:currentColor;will-change:transform}.mat-mdc-fab .mat-mdc-focus-indicator::before,.mat-mdc-mini-fab .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-fab[disabled],.mat-mdc-fab.mat-mdc-button-disabled,.mat-mdc-mini-fab[disabled],.mat-mdc-mini-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none}.mat-mdc-fab[disabled],.mat-mdc-fab[disabled]:focus,.mat-mdc-fab.mat-mdc-button-disabled,.mat-mdc-fab.mat-mdc-button-disabled:focus,.mat-mdc-mini-fab[disabled],.mat-mdc-mini-fab[disabled]:focus,.mat-mdc-mini-fab.mat-mdc-button-disabled,.mat-mdc-mini-fab.mat-mdc-button-disabled:focus{box-shadow:none}.mat-mdc-fab.mat-mdc-button-disabled-interactive,.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-fab{color:var(--mat-fab-foreground-color, inherit);box-shadow:var(--mdc-fab-container-elevation-shadow)}.mat-mdc-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-fab-touch-target-display)}.mat-mdc-fab .mat-ripple-element{background-color:var(--mat-fab-ripple-color)}.mat-mdc-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-state-layer-color)}.mat-mdc-fab.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-disabled-state-layer-color)}.mat-mdc-fab:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-hover-state-layer-opacity)}.mat-mdc-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-fab.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-focus-state-layer-opacity)}.mat-mdc-fab:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-pressed-state-layer-opacity)}.mat-mdc-fab:hover{box-shadow:var(--mdc-fab-hover-container-elevation-shadow)}.mat-mdc-fab:focus{box-shadow:var(--mdc-fab-focus-container-elevation-shadow)}.mat-mdc-fab:active,.mat-mdc-fab:focus:active{box-shadow:var(--mdc-fab-pressed-container-elevation-shadow)}.mat-mdc-fab[disabled],.mat-mdc-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-fab-disabled-state-foreground-color);background-color:var(--mat-fab-disabled-state-container-color)}.mat-mdc-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-mini-fab{color:var(--mat-fab-small-foreground-color, inherit);box-shadow:var(--mdc-fab-small-container-elevation-shadow)}.mat-mdc-mini-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-fab-small-touch-target-display)}.mat-mdc-mini-fab .mat-ripple-element{background-color:var(--mat-fab-small-ripple-color)}.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-small-state-layer-color)}.mat-mdc-mini-fab.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-small-disabled-state-layer-color)}.mat-mdc-mini-fab:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-hover-state-layer-opacity)}.mat-mdc-mini-fab.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-focus-state-layer-opacity)}.mat-mdc-mini-fab:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-pressed-state-layer-opacity)}.mat-mdc-mini-fab:hover{box-shadow:var(--mdc-fab-small-hover-container-elevation-shadow)}.mat-mdc-mini-fab:focus{box-shadow:var(--mdc-fab-small-focus-container-elevation-shadow)}.mat-mdc-mini-fab:active,.mat-mdc-mini-fab:focus:active{box-shadow:var(--mdc-fab-small-pressed-container-elevation-shadow)}.mat-mdc-mini-fab[disabled],.mat-mdc-mini-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-fab-small-disabled-state-foreground-color);background-color:var(--mat-fab-small-disabled-state-container-color)}.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-extended-fab{box-shadow:var(--mdc-extended-fab-container-elevation-shadow)}.mat-mdc-extended-fab:hover{box-shadow:var(--mdc-extended-fab-hover-container-elevation-shadow)}.mat-mdc-extended-fab:focus{box-shadow:var(--mdc-extended-fab-focus-container-elevation-shadow)}.mat-mdc-extended-fab:active,.mat-mdc-extended-fab:focus:active{box-shadow:var(--mdc-extended-fab-pressed-container-elevation-shadow)}.mat-mdc-extended-fab[disabled],.mat-mdc-extended-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none}.mat-mdc-extended-fab[disabled],.mat-mdc-extended-fab[disabled]:focus,.mat-mdc-extended-fab.mat-mdc-button-disabled,.mat-mdc-extended-fab.mat-mdc-button-disabled:focus{box-shadow:none}.mat-mdc-extended-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-extended-fab>.mat-icon,.mat-mdc-extended-fab>.material-icons{margin-left:calc(12px - 20px);margin-right:12px}[dir=rtl] .mat-mdc-extended-fab>.mat-icon,[dir=rtl] .mat-mdc-extended-fab>.material-icons,.mat-mdc-extended-fab>.mat-icon[dir=rtl],.mat-mdc-extended-fab>.material-icons[dir=rtl]{margin-left:12px;margin-right:calc(12px - 20px)}.mat-mdc-extended-fab .mat-mdc-button-touch-target{width:100%}.mat-mdc-extended-fab .mdc-button__label+.mat-icon,.mat-mdc-extended-fab .mdc-button__label+.material-icons{margin-left:12px;margin-right:calc(12px - 20px)}[dir=rtl] .mat-mdc-extended-fab .mdc-button__label+.mat-icon,[dir=rtl] .mat-mdc-extended-fab .mdc-button__label+.material-icons,.mat-mdc-extended-fab .mdc-button__label+.mat-icon[dir=rtl],.mat-mdc-extended-fab .mdc-button__label+.material-icons[dir=rtl]{margin-left:calc(12px - 20px);margin-right:12px}'],encapsulation:2,changeDetection:0})}return L})(),h=(()=>{class L extends J{constructor(r,v,V,N){super(r,v,V,N),this._rippleLoader.configureRipple(this._elementRef.nativeElement,{centered:!0})}static#e=this.\u0275fac=function(v){return new(v||L)(t.rXU(t.aKT),t.rXU(e.OD),t.rXU(t.SKi),t.rXU(t.bc$,8))};static#t=this.\u0275cmp=t.VBU({type:L,selectors:[["button","mat-icon-button",""]],hostVars:14,hostBindings:function(v,V){2&v&&(t.BMQ("disabled",V._getDisabledAttribute())("aria-disabled",V._getAriaDisabled()),t.HbH(V.color?"mat-"+V.color:""),t.AVh("mat-mdc-button-disabled",V.disabled)("mat-mdc-button-disabled-interactive",V.disabledInteractive)("_mat-animation-noopable","NoopAnimations"===V._animationMode)("mat-unthemed",!V.color)("mat-mdc-button-base",!0))},exportAs:["matButton"],standalone:!0,features:[t.Vt3,t.aNF],attrs:R,ngContentSelectors:z,decls:4,vars:0,consts:[[1,"mat-mdc-button-persistent-ripple","mdc-icon-button__ripple"],[1,"mat-mdc-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(v,V){1&v&&(t.NAR(),t.nrm(0,"span",0),t.SdG(1),t.nrm(2,"span",1)(3,"span",2))},styles:['.mdc-icon-button{display:inline-block;position:relative;box-sizing:border-box;border:none;outline:none;background-color:rgba(0,0,0,0);fill:currentColor;color:inherit;text-decoration:none;cursor:pointer;user-select:none;z-index:0;overflow:visible}.mdc-icon-button .mdc-icon-button__touch{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%)}@media screen and (forced-colors: active){.mdc-icon-button.mdc-ripple-upgraded--background-focused .mdc-icon-button__focus-ring,.mdc-icon-button:not(.mdc-ripple-upgraded):focus .mdc-icon-button__focus-ring{display:block}}.mdc-icon-button:disabled{cursor:default;pointer-events:none}.mdc-icon-button[hidden]{display:none}.mdc-icon-button--display-flex{align-items:center;display:inline-flex;justify-content:center}.mdc-icon-button__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%;display:none}@media screen and (forced-colors: active){.mdc-icon-button__focus-ring{border-color:CanvasText}}.mdc-icon-button__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-icon-button__focus-ring::after{border-color:CanvasText}}.mdc-icon-button__icon{display:inline-block}.mdc-icon-button__icon.mdc-icon-button__icon--on{display:none}.mdc-icon-button--on .mdc-icon-button__icon{display:none}.mdc-icon-button--on .mdc-icon-button__icon.mdc-icon-button__icon--on{display:inline-block}.mdc-icon-button__link{height:100%;left:0;outline:none;position:absolute;top:0;width:100%}.mat-mdc-icon-button{color:var(--mdc-icon-button-icon-color)}.mat-mdc-icon-button .mdc-button__icon{font-size:var(--mdc-icon-button-icon-size)}.mat-mdc-icon-button svg,.mat-mdc-icon-button img{width:var(--mdc-icon-button-icon-size);height:var(--mdc-icon-button-icon-size)}.mat-mdc-icon-button:disabled{color:var(--mdc-icon-button-disabled-icon-color)}.mat-mdc-icon-button{border-radius:50%;flex-shrink:0;text-align:center;width:var(--mdc-icon-button-state-layer-size, 48px);height:var(--mdc-icon-button-state-layer-size, 48px);padding:calc(calc(var(--mdc-icon-button-state-layer-size, 48px) - var(--mdc-icon-button-icon-size, 24px)) / 2);font-size:var(--mdc-icon-button-icon-size);-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-icon-button svg{vertical-align:baseline}.mat-mdc-icon-button[disabled],.mat-mdc-icon-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mdc-icon-button-disabled-icon-color)}.mat-mdc-icon-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-icon-button .mat-mdc-button-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-icon-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-icon-button .mdc-button__label{z-index:1}.mat-mdc-icon-button .mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-icon-button:focus .mat-mdc-focus-indicator::before{content:""}.mat-mdc-icon-button .mat-ripple-element{background-color:var(--mat-icon-button-ripple-color)}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-state-layer-color)}.mat-mdc-icon-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-disabled-state-layer-color)}.mat-mdc-icon-button:hover .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-hover-state-layer-opacity)}.mat-mdc-icon-button.cdk-program-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-icon-button.cdk-keyboard-focused .mat-mdc-button-persistent-ripple::before,.mat-mdc-icon-button.mat-mdc-button-disabled-interactive:focus .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-focus-state-layer-opacity)}.mat-mdc-icon-button:active .mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-pressed-state-layer-opacity)}.mat-mdc-icon-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-icon-button-touch-target-display)}.mat-mdc-icon-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple{border-radius:50%}.mat-mdc-icon-button.mat-unthemed:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-primary:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-accent:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-warn:not(.mdc-ripple-upgraded):focus::before{background:rgba(0,0,0,0);opacity:1}',".cdk-high-contrast-active .mat-mdc-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-unelevated-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-raised-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-outlined-button:not(.mdc-button--outlined),.cdk-high-contrast-active .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return L})(),k=(()=>{class L{static#e=this.\u0275fac=function(v){return new(v||L)};static#t=this.\u0275mod=t.$C({type:L});static#i=this.\u0275inj=t.G2t({imports:[S.yE,S.pZ,S.yE]})}return L})()},5596:(Qe,te,g)=>{"use strict";g.d(te,{Hu:()=>Te,Lc:()=>z,MM:()=>$,RN:()=>T,dh:()=>y,m2:()=>R});var e=g(4438),t=g(177),w=g(6600);const S=["*"],f=[[["","mat-card-avatar",""],["","matCardAvatar",""]],[["mat-card-title"],["mat-card-subtitle"],["","mat-card-title",""],["","mat-card-subtitle",""],["","matCardTitle",""],["","matCardSubtitle",""]],"*"],I=["[mat-card-avatar], [matCardAvatar]","mat-card-title, mat-card-subtitle,\n [mat-card-title], [mat-card-subtitle],\n [matCardTitle], [matCardSubtitle]","*"],d=new e.nKC("MAT_CARD_CONFIG");let T=(()=>{class de{constructor(n){this.appearance=n?.appearance||"raised"}static#e=this.\u0275fac=function(c){return new(c||de)(e.rXU(d,8))};static#t=this.\u0275cmp=e.VBU({type:de,selectors:[["mat-card"]],hostAttrs:[1,"mat-mdc-card","mdc-card"],hostVars:4,hostBindings:function(c,m){2&c&&e.AVh("mat-mdc-card-outlined","outlined"===m.appearance)("mdc-card--outlined","outlined"===m.appearance)},inputs:{appearance:"appearance"},exportAs:["matCard"],standalone:!0,features:[e.aNF],ngContentSelectors:S,decls:1,vars:0,template:function(c,m){1&c&&(e.NAR(),e.SdG(0))},styles:['.mdc-card{display:flex;flex-direction:column;box-sizing:border-box}.mdc-card::after{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none;pointer-events:none}@media screen and (forced-colors: active){.mdc-card::after{border-color:CanvasText}}.mdc-card--outlined::after{border:none}.mdc-card__content{border-radius:inherit;height:100%}.mdc-card__media{position:relative;box-sizing:border-box;background-repeat:no-repeat;background-position:center;background-size:cover}.mdc-card__media::before{display:block;content:""}.mdc-card__media:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.mdc-card__media:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.mdc-card__media--square::before{margin-top:100%}.mdc-card__media--16-9::before{margin-top:56.25%}.mdc-card__media-content{position:absolute;top:0;right:0;bottom:0;left:0;box-sizing:border-box}.mdc-card__primary-action{display:flex;flex-direction:column;box-sizing:border-box;position:relative;outline:none;color:inherit;text-decoration:none;cursor:pointer;overflow:hidden}.mdc-card__primary-action:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.mdc-card__primary-action:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.mdc-card__actions{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;min-height:52px;padding:8px}.mdc-card__actions--full-bleed{padding:0}.mdc-card__action-buttons,.mdc-card__action-icons{display:flex;flex-direction:row;align-items:center;box-sizing:border-box}.mdc-card__action-icons{color:rgba(0, 0, 0, 0.6);flex-grow:1;justify-content:flex-end}.mdc-card__action-buttons+.mdc-card__action-icons{margin-left:16px;margin-right:0}[dir=rtl] .mdc-card__action-buttons+.mdc-card__action-icons,.mdc-card__action-buttons+.mdc-card__action-icons[dir=rtl]{margin-left:0;margin-right:16px}.mdc-card__action{display:inline-flex;flex-direction:row;align-items:center;box-sizing:border-box;justify-content:center;cursor:pointer;user-select:none}.mdc-card__action:focus{outline:none}.mdc-card__action--button{margin-left:0;margin-right:8px;padding:0 8px}[dir=rtl] .mdc-card__action--button,.mdc-card__action--button[dir=rtl]{margin-left:8px;margin-right:0}.mdc-card__action--button:last-child{margin-left:0;margin-right:0}[dir=rtl] .mdc-card__action--button:last-child,.mdc-card__action--button:last-child[dir=rtl]{margin-left:0;margin-right:0}.mdc-card__actions--full-bleed .mdc-card__action--button{justify-content:space-between;width:100%;height:auto;max-height:none;margin:0;padding:8px 16px;text-align:left}[dir=rtl] .mdc-card__actions--full-bleed .mdc-card__action--button,.mdc-card__actions--full-bleed .mdc-card__action--button[dir=rtl]{text-align:right}.mdc-card__action--icon{margin:-6px 0;padding:12px}.mdc-card__action--icon:not(:disabled){color:rgba(0, 0, 0, 0.6)}.mat-mdc-card{border-radius:var(--mdc-elevated-card-container-shape);background-color:var(--mdc-elevated-card-container-color);border-width:0;border-style:solid;border-color:var(--mdc-elevated-card-container-color);box-shadow:var(--mdc-elevated-card-container-elevation)}.mat-mdc-card .mdc-card::after{border-radius:var(--mdc-elevated-card-container-shape)}.mat-mdc-card-outlined{border-width:var(--mdc-outlined-card-outline-width);border-style:solid;border-color:var(--mdc-outlined-card-outline-color);border-radius:var(--mdc-outlined-card-container-shape);background-color:var(--mdc-outlined-card-container-color);box-shadow:var(--mdc-outlined-card-container-elevation)}.mat-mdc-card-outlined .mdc-card::after{border-radius:var(--mdc-outlined-card-container-shape)}.mat-mdc-card-title{font-family:var(--mat-card-title-text-font);line-height:var(--mat-card-title-text-line-height);font-size:var(--mat-card-title-text-size);letter-spacing:var(--mat-card-title-text-tracking);font-weight:var(--mat-card-title-text-weight)}.mat-mdc-card-subtitle{color:var(--mat-card-subtitle-text-color);font-family:var(--mat-card-subtitle-text-font);line-height:var(--mat-card-subtitle-text-line-height);font-size:var(--mat-card-subtitle-text-size);letter-spacing:var(--mat-card-subtitle-text-tracking);font-weight:var(--mat-card-subtitle-text-weight)}.mat-mdc-card{position:relative}.mat-mdc-card-title,.mat-mdc-card-subtitle{display:block;margin:0}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle{padding:16px 16px 0}.mat-mdc-card-header{display:flex;padding:16px 16px 0}.mat-mdc-card-content{display:block;padding:0 16px}.mat-mdc-card-content:first-child{padding-top:16px}.mat-mdc-card-content:last-child{padding-bottom:16px}.mat-mdc-card-title-group{display:flex;justify-content:space-between;width:100%}.mat-mdc-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;margin-bottom:16px;object-fit:cover}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title{line-height:normal}.mat-mdc-card-sm-image{width:80px;height:80px}.mat-mdc-card-md-image{width:112px;height:112px}.mat-mdc-card-lg-image{width:152px;height:152px}.mat-mdc-card-xl-image{width:240px;height:240px}.mat-mdc-card-subtitle~.mat-mdc-card-title,.mat-mdc-card-title~.mat-mdc-card-subtitle,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-title-group .mat-mdc-card-title,.mat-mdc-card-title-group .mat-mdc-card-subtitle{padding-top:0}.mat-mdc-card-content>:last-child:not(.mat-mdc-card-footer){margin-bottom:0}.mat-mdc-card-actions-align-end{justify-content:flex-end}'],encapsulation:2,changeDetection:0})}return de})(),y=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275dir=e.FsC({type:de,selectors:[["mat-card-title"],["","mat-card-title",""],["","matCardTitle",""]],hostAttrs:[1,"mat-mdc-card-title"],standalone:!0})}return de})(),R=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275dir=e.FsC({type:de,selectors:[["mat-card-content"]],hostAttrs:[1,"mat-mdc-card-content"],standalone:!0})}return de})(),z=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275dir=e.FsC({type:de,selectors:[["mat-card-subtitle"],["","mat-card-subtitle",""],["","matCardSubtitle",""]],hostAttrs:[1,"mat-mdc-card-subtitle"],standalone:!0})}return de})(),$=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275cmp=e.VBU({type:de,selectors:[["mat-card-header"]],hostAttrs:[1,"mat-mdc-card-header"],standalone:!0,features:[e.aNF],ngContentSelectors:I,decls:4,vars:0,consts:[[1,"mat-mdc-card-header-text"]],template:function(c,m){1&c&&(e.NAR(f),e.SdG(0),e.j41(1,"div",0),e.SdG(2,1),e.k0s(),e.SdG(3,2))},encapsulation:2,changeDetection:0})}return de})(),Te=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275mod=e.$C({type:de});static#i=this.\u0275inj=e.G2t({imports:[w.yE,t.MD,w.yE]})}return de})()},2765:(Qe,te,g)=>{"use strict";g.d(te,{So:()=>z,g7:()=>Q});var e=g(4438),t=g(9417),w=g(6600);const S=["input"],l=["label"],x=["*"],f=new e.nKC("mat-checkbox-default-options",{providedIn:"root",factory:I});function I(){return{color:"accent",clickAction:"check-indeterminate"}}var d=function(J){return J[J.Init=0]="Init",J[J.Checked=1]="Checked",J[J.Unchecked=2]="Unchecked",J[J.Indeterminate=3]="Indeterminate",J}(d||{});const T={provide:t.kq,useExisting:(0,e.Rfq)(()=>z),multi:!0};class y{}let F=0;const R=I();let z=(()=>{class J{focus(){this._inputElement.nativeElement.focus()}_createChangeEvent(ie){const ge=new y;return ge.source=this,ge.checked=ie,ge}_getAnimationTargetElement(){return this._inputElement?.nativeElement}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(ie,ge,ae,Me,Te,de){this._elementRef=ie,this._changeDetectorRef=ge,this._ngZone=ae,this._animationMode=Te,this._options=de,this._animationClasses={uncheckedToChecked:"mdc-checkbox--anim-unchecked-checked",uncheckedToIndeterminate:"mdc-checkbox--anim-unchecked-indeterminate",checkedToUnchecked:"mdc-checkbox--anim-checked-unchecked",checkedToIndeterminate:"mdc-checkbox--anim-checked-indeterminate",indeterminateToChecked:"mdc-checkbox--anim-indeterminate-checked",indeterminateToUnchecked:"mdc-checkbox--anim-indeterminate-unchecked"},this.ariaLabel="",this.ariaLabelledby=null,this.labelPosition="after",this.name=null,this.change=new e.bkB,this.indeterminateChange=new e.bkB,this._onTouched=()=>{},this._currentAnimationClass="",this._currentCheckState=d.Init,this._controlValueAccessorChangeFn=()=>{},this._validatorChangeFn=()=>{},this._checked=!1,this._disabled=!1,this._indeterminate=!1,this._options=this._options||R,this.color=this._options.color||R.color,this.tabIndex=parseInt(Me)||0,this.id=this._uniqueId="mat-mdc-checkbox-"+ ++F}ngOnChanges(ie){ie.required&&this._validatorChangeFn()}ngAfterViewInit(){this._syncIndeterminate(this._indeterminate)}get checked(){return this._checked}set checked(ie){ie!=this.checked&&(this._checked=ie,this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled}set disabled(ie){ie!==this.disabled&&(this._disabled=ie,this._changeDetectorRef.markForCheck())}get indeterminate(){return this._indeterminate}set indeterminate(ie){const ge=ie!=this._indeterminate;this._indeterminate=ie,ge&&(this._transitionCheckState(this._indeterminate?d.Indeterminate:this.checked?d.Checked:d.Unchecked),this.indeterminateChange.emit(this._indeterminate)),this._syncIndeterminate(this._indeterminate)}_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(ie){this.checked=!!ie}registerOnChange(ie){this._controlValueAccessorChangeFn=ie}registerOnTouched(ie){this._onTouched=ie}setDisabledState(ie){this.disabled=ie}validate(ie){return this.required&&!0!==ie.value?{required:!0}:null}registerOnValidatorChange(ie){this._validatorChangeFn=ie}_transitionCheckState(ie){let ge=this._currentCheckState,ae=this._getAnimationTargetElement();if(ge!==ie&&ae&&(this._currentAnimationClass&&ae.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(ge,ie),this._currentCheckState=ie,this._currentAnimationClass.length>0)){ae.classList.add(this._currentAnimationClass);const Me=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{ae.classList.remove(Me)},1e3)})}}_emitChangeEvent(){this._controlValueAccessorChangeFn(this.checked),this.change.emit(this._createChangeEvent(this.checked)),this._inputElement&&(this._inputElement.nativeElement.checked=this.checked)}toggle(){this.checked=!this.checked,this._controlValueAccessorChangeFn(this.checked)}_handleInputClick(){const ie=this._options?.clickAction;this.disabled||"noop"===ie?!this.disabled&&"noop"===ie&&(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==ie&&Promise.resolve().then(()=>{this._indeterminate=!1,this.indeterminateChange.emit(this._indeterminate)}),this._checked=!this._checked,this._transitionCheckState(this._checked?d.Checked:d.Unchecked),this._emitChangeEvent())}_onInteractionEvent(ie){ie.stopPropagation()}_onBlur(){Promise.resolve().then(()=>{this._onTouched(),this._changeDetectorRef.markForCheck()})}_getAnimationClassForCheckStateTransition(ie,ge){if("NoopAnimations"===this._animationMode)return"";switch(ie){case d.Init:if(ge===d.Checked)return this._animationClasses.uncheckedToChecked;if(ge==d.Indeterminate)return this._checked?this._animationClasses.checkedToIndeterminate:this._animationClasses.uncheckedToIndeterminate;break;case d.Unchecked:return ge===d.Checked?this._animationClasses.uncheckedToChecked:this._animationClasses.uncheckedToIndeterminate;case d.Checked:return ge===d.Unchecked?this._animationClasses.checkedToUnchecked:this._animationClasses.checkedToIndeterminate;case d.Indeterminate:return ge===d.Checked?this._animationClasses.indeterminateToChecked:this._animationClasses.indeterminateToUnchecked}return""}_syncIndeterminate(ie){const ge=this._inputElement;ge&&(ge.nativeElement.indeterminate=ie)}_onInputClick(){this._handleInputClick()}_onTouchTargetClick(){this._handleInputClick(),this.disabled||this._inputElement.nativeElement.focus()}_preventBubblingFromLabel(ie){ie.target&&this._labelElement.nativeElement.contains(ie.target)&&ie.stopPropagation()}static#e=this.\u0275fac=function(ge){return new(ge||J)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(e.SKi),e.kS0("tabindex"),e.rXU(e.bc$,8),e.rXU(f,8))};static#t=this.\u0275cmp=e.VBU({type:J,selectors:[["mat-checkbox"]],viewQuery:function(ge,ae){if(1&ge&&(e.GBs(S,5),e.GBs(l,5),e.GBs(w.r6,5)),2&ge){let Me;e.mGM(Me=e.lsd())&&(ae._inputElement=Me.first),e.mGM(Me=e.lsd())&&(ae._labelElement=Me.first),e.mGM(Me=e.lsd())&&(ae.ripple=Me.first)}},hostAttrs:[1,"mat-mdc-checkbox"],hostVars:14,hostBindings:function(ge,ae){2&ge&&(e.Mr5("id",ae.id),e.BMQ("tabindex",null)("aria-label",null)("aria-labelledby",null),e.HbH(ae.color?"mat-"+ae.color:"mat-accent"),e.AVh("_mat-animation-noopable","NoopAnimations"===ae._animationMode)("mdc-checkbox--disabled",ae.disabled)("mat-mdc-checkbox-disabled",ae.disabled)("mat-mdc-checkbox-checked",ae.checked))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],id:"id",required:[2,"required","required",e.L39],labelPosition:"labelPosition",name:"name",value:"value",disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",ie=>null==ie?void 0:(0,e.Udg)(ie)],color:"color",checked:[2,"checked","checked",e.L39],disabled:[2,"disabled","disabled",e.L39],indeterminate:[2,"indeterminate","indeterminate",e.L39]},outputs:{change:"change",indeterminateChange:"indeterminateChange"},exportAs:["matCheckbox"],standalone:!0,features:[e.Jv_([T,{provide:t.cz,useExisting:J,multi:!0}]),e.GFd,e.OA$,e.aNF],ngContentSelectors:x,decls:15,vars:19,consts:[["checkbox",""],["input",""],["label",""],["mat-internal-form-field","",3,"click","labelPosition"],[1,"mdc-checkbox"],[1,"mat-mdc-checkbox-touch-target",3,"click"],["type","checkbox",1,"mdc-checkbox__native-control",3,"blur","click","change","checked","indeterminate","disabled","id","required","tabIndex"],[1,"mdc-checkbox__ripple"],[1,"mdc-checkbox__background"],["focusable","false","viewBox","0 0 24 24","aria-hidden","true",1,"mdc-checkbox__checkmark"],["fill","none","d","M1.73,12.91 8.1,19.28 22.79,4.59",1,"mdc-checkbox__checkmark-path"],[1,"mdc-checkbox__mixedmark"],["mat-ripple","",1,"mat-mdc-checkbox-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-label",3,"for"]],template:function(ge,ae){if(1&ge){const Me=e.RV6();e.NAR(),e.j41(0,"div",3),e.bIt("click",function(de){return e.eBV(Me),e.Njj(ae._preventBubblingFromLabel(de))}),e.j41(1,"div",4,0)(3,"div",5),e.bIt("click",function(){return e.eBV(Me),e.Njj(ae._onTouchTargetClick())}),e.k0s(),e.j41(4,"input",6,1),e.bIt("blur",function(){return e.eBV(Me),e.Njj(ae._onBlur())})("click",function(){return e.eBV(Me),e.Njj(ae._onInputClick())})("change",function(de){return e.eBV(Me),e.Njj(ae._onInteractionEvent(de))}),e.k0s(),e.nrm(6,"div",7),e.j41(7,"div",8),e.qSk(),e.j41(8,"svg",9),e.nrm(9,"path",10),e.k0s(),e.joV(),e.nrm(10,"div",11),e.k0s(),e.nrm(11,"div",12),e.k0s(),e.j41(12,"label",13,2),e.SdG(14),e.k0s()()}if(2&ge){const Me=e.sdS(2);e.Y8G("labelPosition",ae.labelPosition),e.R7$(4),e.AVh("mdc-checkbox--selected",ae.checked),e.Y8G("checked",ae.checked)("indeterminate",ae.indeterminate)("disabled",ae.disabled)("id",ae.inputId)("required",ae.required)("tabIndex",ae.disabled?-1:ae.tabIndex),e.BMQ("aria-label",ae.ariaLabel||null)("aria-labelledby",ae.ariaLabelledby)("aria-describedby",ae.ariaDescribedby)("aria-checked",ae.indeterminate?"mixed":null)("name",ae.name)("value",ae.value),e.R7$(7),e.Y8G("matRippleTrigger",Me)("matRippleDisabled",ae.disableRipple||ae.disabled)("matRippleCentered",!0),e.R7$(),e.Y8G("for",ae.inputId)}},dependencies:[w.r6,w.tO],styles:['.mdc-touch-target-wrapper{display:inline}@keyframes mdc-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:29.7833385}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}100%{stroke-dashoffset:0}}@keyframes mdc-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mdc-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);opacity:1;stroke-dashoffset:0}to{opacity:0;stroke-dashoffset:-29.7833385}}@keyframes mdc-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(45deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(45deg);opacity:0}to{transform:rotate(360deg);opacity:1}}@keyframes mdc-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:mdc-animation-deceleration-curve-timing-function;transform:rotate(-45deg);opacity:0}to{transform:rotate(0deg);opacity:1}}@keyframes mdc-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(315deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;transform:scaleX(1);opacity:1}32.8%,100%{transform:scaleX(0);opacity:0}}.mdc-checkbox{display:inline-block;position:relative;flex:0 0 18px;box-sizing:content-box;width:18px;height:18px;line-height:0;white-space:nowrap;cursor:pointer;vertical-align:bottom}.mdc-checkbox[hidden]{display:none}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring{border-color:CanvasText}}.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-checkbox.mdc-ripple-upgraded--background-focused .mdc-checkbox__focus-ring::after,.mdc-checkbox:not(.mdc-ripple-upgraded):focus .mdc-checkbox__focus-ring::after{border-color:CanvasText}}@media all and (-ms-high-contrast: none){.mdc-checkbox .mdc-checkbox__focus-ring{display:none}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-checkbox__mixedmark{margin:0 1px}}.mdc-checkbox--disabled{cursor:default;pointer-events:none}.mdc-checkbox__background{display:inline-flex;position:absolute;align-items:center;justify-content:center;box-sizing:border-box;width:18px;height:18px;border:2px solid currentColor;border-radius:2px;background-color:rgba(0,0,0,0);pointer-events:none;will-change:background-color,border-color;transition:background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__checkmark{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;opacity:0;transition:opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox--upgraded .mdc-checkbox__checkmark{opacity:1}.mdc-checkbox__checkmark-path{transition:stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);stroke:currentColor;stroke-width:3.12px;stroke-dashoffset:29.7833385;stroke-dasharray:29.7833385}.mdc-checkbox__mixedmark{width:100%;height:0;transform:scaleX(0) rotate(0deg);border-width:1px;border-style:solid;opacity:0;transition:opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background,.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background,.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background,.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background{animation-duration:180ms;animation-timing-function:linear}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-unchecked-checked-checkmark-path 180ms linear 0s;transition:none}.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-checked-unchecked-checkmark-path 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark{animation:mdc-checkbox-checked-indeterminate-checkmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-checked-indeterminate-mixedmark 90ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark{animation:mdc-checkbox-indeterminate-checked-checkmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-checked-mixedmark 500ms linear 0s;transition:none}.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;transition:none}.mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background{transition:border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__checkmark-path,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark-path{stroke-dashoffset:0}.mdc-checkbox__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit}.mdc-checkbox__native-control:disabled{cursor:default;pointer-events:none}.mdc-checkbox--touch{margin:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2)}.mdc-checkbox--touch .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);right:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);width:var(--mdc-checkbox-state-layer-size);height:var(--mdc-checkbox-state-layer-size)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__checkmark{transition:opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);opacity:1}.mdc-checkbox__native-control:checked~.mdc-checkbox__background .mdc-checkbox__mixedmark{transform:scaleX(1) rotate(-45deg)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__checkmark,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__checkmark{transform:rotate(45deg);opacity:0;transition:opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background .mdc-checkbox__mixedmark,.mdc-checkbox__native-control[data-indeterminate=true]~.mdc-checkbox__background .mdc-checkbox__mixedmark{transform:scaleX(1) rotate(0deg);opacity:1}.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__checkmark-path,.mdc-checkbox.mdc-checkbox--upgraded .mdc-checkbox__mixedmark{transition:none}.mdc-checkbox{padding:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2);margin:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2)}.mdc-checkbox .mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-disabled-unselected-icon-color);background-color:transparent}.mdc-checkbox .mdc-checkbox__native-control[disabled]:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[disabled]:indeterminate~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true][disabled]~.mdc-checkbox__background{border-color:transparent;background-color:var(--mdc-checkbox-disabled-selected-icon-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__checkmark{color:var(--mdc-checkbox-disabled-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:disabled~.mdc-checkbox__background .mdc-checkbox__mixedmark{border-color:var(--mdc-checkbox-disabled-selected-checkmark-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}.mdc-checkbox .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}@keyframes mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}}@keyframes mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-icon-color);background-color:var(--mdc-checkbox-selected-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-icon-color);background-color:transparent}}.mdc-checkbox.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox:hover .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox:hover .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}@keyframes mdc-checkbox-fade-in-background-FF212121FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}}@keyframes mdc-checkbox-fade-out-background-FF212121FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-hover-icon-color);background-color:var(--mdc-checkbox-selected-hover-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-hover-icon-color);background-color:transparent}}.mdc-checkbox:hover.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:hover.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-FF212121FFF4433600000000FFF44336}.mdc-checkbox:hover.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:hover.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-FF212121FFF4433600000000FFF44336}.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate):not([data-indeterminate=true])~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active .mdc-checkbox__native-control[data-indeterminate=true]:enabled~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}@keyframes mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336{0%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}50%{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}}@keyframes mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336{0%,80%{border-color:var(--mdc-checkbox-selected-pressed-icon-color);background-color:var(--mdc-checkbox-selected-pressed-icon-color)}100%{border-color:var(--mdc-checkbox-unselected-pressed-icon-color);background-color:transparent}}.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-in-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background,.mdc-checkbox:not(:disabled):active.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled~.mdc-checkbox__background{animation-name:mdc-checkbox-fade-out-background-8A000000FFF4433600000000FFF44336}.mdc-checkbox .mdc-checkbox__background{top:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - 18px) / 2)}.mdc-checkbox .mdc-checkbox__native-control{top:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);right:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);left:calc((var(--mdc-checkbox-state-layer-size) - var(--mdc-checkbox-state-layer-size)) / 2);width:var(--mdc-checkbox-state-layer-size);height:var(--mdc-checkbox-state-layer-size)}.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:focus:not(:checked):not(:indeterminate)~.mdc-checkbox__background{border-color:var(--mdc-checkbox-unselected-focus-icon-color)}.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:checked~.mdc-checkbox__background,.mdc-checkbox .mdc-checkbox__native-control:enabled:focus:indeterminate~.mdc-checkbox__background{border-color:var(--mdc-checkbox-selected-focus-icon-color);background-color:var(--mdc-checkbox-selected-focus-icon-color)}.mdc-checkbox:hover .mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-hover-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-hover-state-layer-color)}.mdc-checkbox:hover .mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-hover-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-focus-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-focus-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-focus-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-unselected-pressed-state-layer-opacity);background-color:var(--mdc-checkbox-unselected-pressed-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-unselected-pressed-state-layer-color)}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-hover-state-layer-opacity);background-color:var(--mdc-checkbox-selected-hover-state-layer-color)}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-hover-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-focus-state-layer-opacity);background-color:var(--mdc-checkbox-selected-focus-state-layer-color)}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-focus-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control:checked~.mdc-checkbox__ripple{opacity:var(--mdc-checkbox-selected-pressed-state-layer-opacity);background-color:var(--mdc-checkbox-selected-pressed-state-layer-color)}.mdc-checkbox:active .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mdc-checkbox-selected-pressed-state-layer-color)}.mat-mdc-checkbox{display:inline-block;position:relative;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-checkbox .mdc-checkbox__background{-webkit-print-color-adjust:exact;color-adjust:exact}.mat-mdc-checkbox._mat-animation-noopable *,.mat-mdc-checkbox._mat-animation-noopable *::before{transition:none !important;animation:none !important}.mat-mdc-checkbox label{cursor:pointer}.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{cursor:default;color:var(--mat-checkbox-disabled-label-color)}.mat-mdc-checkbox label:empty{display:none}.cdk-high-contrast-active .mat-mdc-checkbox.mat-mdc-checkbox-disabled{opacity:.5}.cdk-high-contrast-active .mat-mdc-checkbox .mdc-checkbox__checkmark{--mdc-checkbox-selected-checkmark-color: CanvasText;--mdc-checkbox-disabled-selected-checkmark-color: CanvasText}.mat-mdc-checkbox .mdc-checkbox__ripple{opacity:0}.mat-mdc-checkbox-ripple,.mdc-checkbox__ripple{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-checkbox-ripple:not(:empty),.mdc-checkbox__ripple:not(:empty){transform:translateZ(0)}.mat-mdc-checkbox-ripple .mat-ripple-element{opacity:.1}.mat-mdc-checkbox-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-checkbox-touch-target-display)}.mat-mdc-checkbox-ripple::before{border-radius:50%}.mdc-checkbox__native-control:focus~.mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return J})(),Q=(()=>{class J{static#e=this.\u0275fac=function(ge){return new(ge||J)};static#t=this.\u0275mod=e.$C({type:J});static#i=this.\u0275inj=e.G2t({imports:[z,w.yE,w.yE]})}return J})()},6471:(Qe,te,g)=>{"use strict";g.d(te,{Jl:()=>qe,YN:()=>at});var e=g(4438),t=g(177),w=g(6600),S=g(8617),l=g(1413),x=g(7786),f=g(6697),y=(g(6977),g(9172),g(5558),g(7336));g(8203),g(9417),g(6467);const W=["*",[["mat-chip-avatar"],["","matChipAvatar",""]],[["mat-chip-trailing-icon"],["","matChipRemove",""],["","matChipTrailingIcon",""]]],$=["*","mat-chip-avatar, [matChipAvatar]","mat-chip-trailing-icon,[matChipRemove],[matChipTrailingIcon]"];function j(pt,Xt){1&pt&&(e.j41(0,"span",3),e.SdG(1,1),e.k0s())}function Q(pt,Xt){1&pt&&(e.j41(0,"span",6),e.SdG(1,2),e.k0s())}const k=new e.nKC("mat-chips-default-options",{providedIn:"root",factory:()=>({separatorKeyCodes:[y.Fm]})}),L=new e.nKC("MatChipAvatar"),_=new e.nKC("MatChipTrailingIcon"),r=new e.nKC("MatChipRemove"),v=new e.nKC("MatChip");let V=(()=>{class pt{get disabled(){return this._disabled||this._parentChip.disabled}set disabled(ye){this._disabled=ye}_getDisabledAttribute(){return this.disabled&&!this._allowFocusWhenDisabled?"":null}_getTabindex(){return this.disabled&&!this._allowFocusWhenDisabled||!this.isInteractive?null:this.tabIndex.toString()}constructor(ye,ue){this._elementRef=ye,this._parentChip=ue,this.isInteractive=!0,this._isPrimary=!0,this._disabled=!1,this.tabIndex=-1,this._allowFocusWhenDisabled=!1,"BUTTON"===ye.nativeElement.nodeName&&ye.nativeElement.setAttribute("type","button")}focus(){this._elementRef.nativeElement.focus()}_handleClick(ye){!this.disabled&&this.isInteractive&&this._isPrimary&&(ye.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}_handleKeydown(ye){(ye.keyCode===y.Fm||ye.keyCode===y.t6)&&!this.disabled&&this.isInteractive&&this._isPrimary&&!this._parentChip._isEditing&&(ye.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}static#e=this.\u0275fac=function(ue){return new(ue||pt)(e.rXU(e.aKT),e.rXU(v))};static#t=this.\u0275dir=e.FsC({type:pt,selectors:[["","matChipAction",""]],hostAttrs:[1,"mdc-evolution-chip__action","mat-mdc-chip-action"],hostVars:9,hostBindings:function(ue,Ie){1&ue&&e.bIt("click",function(Xe){return Ie._handleClick(Xe)})("keydown",function(Xe){return Ie._handleKeydown(Xe)}),2&ue&&(e.BMQ("tabindex",Ie._getTabindex())("disabled",Ie._getDisabledAttribute())("aria-disabled",Ie.disabled),e.AVh("mdc-evolution-chip__action--primary",Ie._isPrimary)("mdc-evolution-chip__action--presentational",!Ie.isInteractive)("mdc-evolution-chip__action--trailing",!Ie._isPrimary))},inputs:{isInteractive:"isInteractive",disabled:[2,"disabled","disabled",e.L39],tabIndex:[2,"tabIndex","tabIndex",ye=>null==ye?-1:(0,e.Udg)(ye)],_allowFocusWhenDisabled:"_allowFocusWhenDisabled"},standalone:!0,features:[e.GFd]})}return pt})(),ze=0,qe=(()=>{class pt{_hasFocus(){return this._hasFocusInternal}get value(){return void 0!==this._value?this._value:this._textElement.textContent.trim()}set value(ye){this._value=ye}get ripple(){return this._rippleLoader?.getRipple(this._elementRef.nativeElement)}set ripple(ye){this._rippleLoader?.attachRipple(this._elementRef.nativeElement,ye)}constructor(ye,ue,Ie,He,Xe,yt,Ye,rt){this._changeDetectorRef=ye,this._elementRef=ue,this._ngZone=Ie,this._focusMonitor=He,this._globalRippleOptions=Ye,this._onFocus=new l.B,this._onBlur=new l.B,this.role=null,this._hasFocusInternal=!1,this.id="mat-mdc-chip-"+ze++,this.ariaLabel=null,this.ariaDescription=null,this._ariaDescriptionId=`${this.id}-aria-description`,this.removable=!0,this.highlighted=!1,this.disableRipple=!1,this.disabled=!1,this.tabIndex=-1,this.removed=new e.bkB,this.destroyed=new e.bkB,this.basicChipAttrName="mat-basic-chip",this._rippleLoader=(0,e.WQX)(w.Ej),this._document=Xe,this._animationsDisabled="NoopAnimations"===yt,null!=rt&&(this.tabIndex=parseInt(rt)??-1),this._monitorFocus(),this._rippleLoader?.configureRipple(this._elementRef.nativeElement,{className:"mat-mdc-chip-ripple",disabled:this._isRippleDisabled()})}ngOnInit(){const ye=this._elementRef.nativeElement;this._isBasicChip=ye.hasAttribute(this.basicChipAttrName)||ye.tagName.toLowerCase()===this.basicChipAttrName}ngAfterViewInit(){this._textElement=this._elementRef.nativeElement.querySelector(".mat-mdc-chip-action-label"),this._pendingFocus&&(this._pendingFocus=!1,this.focus())}ngAfterContentInit(){this._actionChanges=(0,x.h)(this._allLeadingIcons.changes,this._allTrailingIcons.changes,this._allRemoveIcons.changes).subscribe(()=>this._changeDetectorRef.markForCheck())}ngDoCheck(){this._rippleLoader.setDisabled(this._elementRef.nativeElement,this._isRippleDisabled())}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._rippleLoader?.destroyRipple(this._elementRef.nativeElement),this._actionChanges?.unsubscribe(),this.destroyed.emit({chip:this}),this.destroyed.complete()}remove(){this.removable&&this.removed.emit({chip:this})}_isRippleDisabled(){return this.disabled||this.disableRipple||this._animationsDisabled||this._isBasicChip||!!this._globalRippleOptions?.disabled}_hasTrailingIcon(){return!(!this.trailingIcon&&!this.removeIcon)}_handleKeydown(ye){(ye.keyCode===y.G_&&!ye.repeat||ye.keyCode===y.SJ)&&(ye.preventDefault(),this.remove())}focus(){this.disabled||(this.primaryAction?this.primaryAction.focus():this._pendingFocus=!0)}_getSourceAction(ye){return this._getActions().find(ue=>{const Ie=ue._elementRef.nativeElement;return Ie===ye||Ie.contains(ye)})}_getActions(){const ye=[];return this.primaryAction&&ye.push(this.primaryAction),this.removeIcon&&ye.push(this.removeIcon),this.trailingIcon&&ye.push(this.trailingIcon),ye}_handlePrimaryActionInteraction(){}_getTabIndex(){return this.role?this.disabled?-1:this.tabIndex:null}_monitorFocus(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(ye=>{const ue=null!==ye;ue!==this._hasFocusInternal&&(this._hasFocusInternal=ue,ue?this._onFocus.next({chip:this}):this._ngZone.onStable.pipe((0,f.s)(1)).subscribe(()=>this._ngZone.run(()=>this._onBlur.next({chip:this}))))})}static#e=this.\u0275fac=function(ue){return new(ue||pt)(e.rXU(e.gRc),e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(S.FN),e.rXU(t.qQ),e.rXU(e.bc$,8),e.rXU(w.$E,8),e.kS0("tabindex"))};static#t=this.\u0275cmp=e.VBU({type:pt,selectors:[["mat-basic-chip"],["","mat-basic-chip",""],["mat-chip"],["","mat-chip",""]],contentQueries:function(ue,Ie,He){if(1&ue&&(e.wni(He,L,5),e.wni(He,_,5),e.wni(He,r,5),e.wni(He,L,5),e.wni(He,_,5),e.wni(He,r,5)),2&ue){let Xe;e.mGM(Xe=e.lsd())&&(Ie.leadingIcon=Xe.first),e.mGM(Xe=e.lsd())&&(Ie.trailingIcon=Xe.first),e.mGM(Xe=e.lsd())&&(Ie.removeIcon=Xe.first),e.mGM(Xe=e.lsd())&&(Ie._allLeadingIcons=Xe),e.mGM(Xe=e.lsd())&&(Ie._allTrailingIcons=Xe),e.mGM(Xe=e.lsd())&&(Ie._allRemoveIcons=Xe)}},viewQuery:function(ue,Ie){if(1&ue&&e.GBs(V,5),2&ue){let He;e.mGM(He=e.lsd())&&(Ie.primaryAction=He.first)}},hostAttrs:[1,"mat-mdc-chip"],hostVars:32,hostBindings:function(ue,Ie){1&ue&&e.bIt("keydown",function(Xe){return Ie._handleKeydown(Xe)}),2&ue&&(e.Mr5("id",Ie.id),e.BMQ("role",Ie.role)("tabindex",Ie._getTabIndex())("aria-label",Ie.ariaLabel),e.HbH("mat-"+(Ie.color||"primary")),e.AVh("mdc-evolution-chip",!Ie._isBasicChip)("mdc-evolution-chip--disabled",Ie.disabled)("mdc-evolution-chip--with-trailing-action",Ie._hasTrailingIcon())("mdc-evolution-chip--with-primary-graphic",Ie.leadingIcon)("mdc-evolution-chip--with-primary-icon",Ie.leadingIcon)("mdc-evolution-chip--with-avatar",Ie.leadingIcon)("mat-mdc-chip-with-avatar",Ie.leadingIcon)("mat-mdc-chip-highlighted",Ie.highlighted)("mat-mdc-chip-disabled",Ie.disabled)("mat-mdc-basic-chip",Ie._isBasicChip)("mat-mdc-standard-chip",!Ie._isBasicChip)("mat-mdc-chip-with-trailing-icon",Ie._hasTrailingIcon())("_mat-animation-noopable",Ie._animationsDisabled))},inputs:{role:"role",id:"id",ariaLabel:[0,"aria-label","ariaLabel"],ariaDescription:[0,"aria-description","ariaDescription"],value:"value",color:"color",removable:[2,"removable","removable",e.L39],highlighted:[2,"highlighted","highlighted",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],disabled:[2,"disabled","disabled",e.L39],tabIndex:[2,"tabIndex","tabIndex",ye=>null==ye?void 0:(0,e.Udg)(ye)]},outputs:{removed:"removed",destroyed:"destroyed"},exportAs:["matChip"],standalone:!0,features:[e.Jv_([{provide:v,useExisting:pt}]),e.GFd,e.aNF],ngContentSelectors:$,decls:8,vars:3,consts:[[1,"mat-mdc-chip-focus-overlay"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--primary"],["matChipAction","",3,"isInteractive"],[1,"mdc-evolution-chip__graphic","mat-mdc-chip-graphic"],[1,"mdc-evolution-chip__text-label","mat-mdc-chip-action-label"],[1,"mat-mdc-chip-primary-focus-indicator","mat-mdc-focus-indicator"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--trailing"]],template:function(ue,Ie){1&ue&&(e.NAR(W),e.nrm(0,"span",0),e.j41(1,"span",1)(2,"span",2),e.DNE(3,j,2,0,"span",3),e.j41(4,"span",4),e.SdG(5),e.nrm(6,"span",5),e.k0s()()(),e.DNE(7,Q,2,0,"span",6)),2&ue&&(e.R7$(2),e.Y8G("isInteractive",!1),e.R7$(),e.vxM(Ie.leadingIcon?3:-1),e.R7$(4),e.vxM(Ie._hasTrailingIcon()?7:-1))},dependencies:[V],styles:['.mdc-evolution-chip,.mdc-evolution-chip__cell,.mdc-evolution-chip__action{display:inline-flex;align-items:center}.mdc-evolution-chip{position:relative;max-width:100%}.mdc-evolution-chip .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-evolution-chip__cell,.mdc-evolution-chip__action{height:100%}.mdc-evolution-chip__cell--primary{overflow-x:hidden}.mdc-evolution-chip__cell--trailing{flex:1 0 auto}.mdc-evolution-chip__action{align-items:center;background:none;border:none;box-sizing:content-box;cursor:pointer;display:inline-flex;justify-content:center;outline:none;padding:0;text-decoration:none;color:inherit}.mdc-evolution-chip__action--presentational{cursor:auto}.mdc-evolution-chip--disabled,.mdc-evolution-chip__action:disabled{pointer-events:none}.mdc-evolution-chip__action--primary{overflow-x:hidden}.mdc-evolution-chip__action--trailing{position:relative;overflow:visible}.mdc-evolution-chip__action--primary:before{box-sizing:border-box;content:"";height:100%;left:0;position:absolute;pointer-events:none;top:0;width:100%;z-index:1}.mdc-evolution-chip--touch{margin-top:8px;margin-bottom:8px}.mdc-evolution-chip__action-touch{position:absolute;top:50%;height:48px;left:0;right:0;transform:translateY(-50%)}.mdc-evolution-chip__text-label{white-space:nowrap;user-select:none;text-overflow:ellipsis;overflow:hidden}.mdc-evolution-chip__graphic{align-items:center;display:inline-flex;justify-content:center;overflow:hidden;pointer-events:none;position:relative;flex:1 0 auto}.mdc-evolution-chip__checkmark{position:absolute;opacity:0;top:50%;left:50%}.mdc-evolution-chip--selectable:not(.mdc-evolution-chip--selected):not(.mdc-evolution-chip--with-primary-icon) .mdc-evolution-chip__graphic{width:0}.mdc-evolution-chip__checkmark-background{opacity:0}.mdc-evolution-chip__checkmark-svg{display:block}.mdc-evolution-chip__checkmark-path{stroke-width:2px;stroke-dasharray:29.7833385;stroke-dashoffset:29.7833385;stroke:currentColor}.mdc-evolution-chip--selecting .mdc-evolution-chip__graphic{transition:width 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selecting .mdc-evolution-chip__checkmark{transition:transform 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-75%, -50%)}.mdc-evolution-chip--selecting .mdc-evolution-chip__checkmark-path{transition:stroke-dashoffset 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__graphic{transition:width 100ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__checkmark{transition:opacity 50ms 0ms linear,transform 100ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-75%, -50%)}.mdc-evolution-chip--deselecting .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}.mdc-evolution-chip--selecting-with-primary-icon .mdc-evolution-chip__icon--primary{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selecting-with-primary-icon .mdc-evolution-chip__checkmark-path{transition:stroke-dashoffset 150ms 75ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__icon--primary{transition:opacity 150ms 75ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__checkmark{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-50%, -50%)}.mdc-evolution-chip--deselecting-with-primary-icon .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}.mdc-evolution-chip--selected .mdc-evolution-chip__icon--primary{opacity:0}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{transform:translate(-50%, -50%);opacity:1}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}@keyframes mdc-evolution-chip-enter{from{transform:scale(0.8);opacity:.4}to{transform:scale(1);opacity:1}}.mdc-evolution-chip--enter{animation:mdc-evolution-chip-enter 100ms 0ms cubic-bezier(0, 0, 0.2, 1)}@keyframes mdc-evolution-chip-exit{from{opacity:1}to{opacity:0}}.mdc-evolution-chip--exit{animation:mdc-evolution-chip-exit 75ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-evolution-chip--hidden{opacity:0;pointer-events:none;transition:width 150ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mat-mdc-standard-chip{border-radius:var(--mdc-chip-container-shape-radius);height:var(--mdc-chip-container-height)}.mat-mdc-standard-chip .mdc-evolution-chip__ripple{border-radius:var(--mdc-chip-container-shape-radius)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:before{border-radius:var(--mdc-chip-container-shape-radius)}.mat-mdc-standard-chip .mdc-evolution-chip__icon--primary{border-radius:var(--mdc-chip-with-avatar-avatar-shape-radius)}.mat-mdc-standard-chip.mdc-evolution-chip--selectable:not(.mdc-evolution-chip--with-primary-icon){--mdc-chip-graphic-selected-width:var(--mdc-chip-with-avatar-avatar-size)}.mat-mdc-standard-chip .mdc-evolution-chip__graphic{height:var(--mdc-chip-with-avatar-avatar-size);width:var(--mdc-chip-with-avatar-avatar-size);font-size:var(--mdc-chip-with-avatar-avatar-size)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__action--primary:before{border-color:var(--mdc-chip-outline-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:not(.mdc-evolution-chip__action--presentational).mdc-ripple-upgraded--background-focused:before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:not(.mdc-evolution-chip__action--presentational):not(.mdc-ripple-upgraded):focus:before{border-color:var(--mdc-chip-focus-outline-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__action--primary:before{border-color:var(--mdc-chip-disabled-outline-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:before{border-width:var(--mdc-chip-outline-width)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary:before{border-width:var(--mdc-chip-flat-selected-outline-width)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled){background-color:var(--mdc-chip-elevated-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-elevated-disabled-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled){background-color:var(--mdc-chip-elevated-selected-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-elevated-disabled-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled{background-color:var(--mdc-chip-flat-disabled-selected-container-color)}.mat-mdc-standard-chip .mdc-evolution-chip__text-label{font-family:var(--mdc-chip-label-text-font);line-height:var(--mdc-chip-label-text-line-height);font-size:var(--mdc-chip-label-text-size);font-weight:var(--mdc-chip-label-text-weight);letter-spacing:var(--mdc-chip-label-text-tracking)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mdc-chip-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label{color:var(--mdc-chip-disabled-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mdc-chip-selected-label-text-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label{color:var(--mdc-chip-disabled-label-text-color)}.mat-mdc-standard-chip .mdc-evolution-chip__icon--primary{height:var(--mdc-chip-with-icon-icon-size);width:var(--mdc-chip-with-icon-icon-size);font-size:var(--mdc-chip-with-icon-icon-size)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__icon--primary{color:var(--mdc-chip-with-icon-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--primary{color:var(--mdc-chip-with-icon-disabled-icon-color)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__checkmark{color:var(--mdc-chip-with-icon-selected-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__checkmark{color:var(--mdc-chip-with-icon-disabled-icon-color)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__icon--trailing{color:var(--mdc-chip-with-trailing-icon-trailing-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{color:var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::after{background-color:var(--mdc-chip-hover-state-layer-color)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:hover .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary.mdc-ripple-surface--hover .mdc-evolution-chip__ripple::before{opacity:var(--mdc-chip-hover-state-layer-opacity)}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary.mdc-ripple-upgraded--background-focused .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:not(.mdc-ripple-upgraded):focus .mdc-evolution-chip__ripple::before{transition-duration:75ms;opacity:var(--mdc-chip-focus-state-layer-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary .mdc-evolution-chip__ripple::after{background-color:var(--mdc-chip-selected-hover-state-layer-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary:hover .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary.mdc-ripple-surface--hover .mdc-evolution-chip__ripple::before{opacity:var(--mdc-chip-selected-hover-state-layer-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary.mdc-ripple-upgraded--background-focused .mdc-evolution-chip__ripple::before,.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary:not(.mdc-ripple-upgraded):focus .mdc-evolution-chip__ripple::before{transition-duration:75ms;opacity:var(--mdc-chip-selected-focus-state-layer-opacity)}.mat-mdc-chip-highlighted{--mdc-chip-with-icon-icon-color:var(--mdc-chip-with-icon-selected-icon-color);--mdc-chip-elevated-container-color:var(--mdc-chip-elevated-selected-container-color);--mdc-chip-label-text-color:var(--mdc-chip-selected-label-text-color);--mdc-chip-outline-width:var(--mdc-chip-flat-selected-outline-width)}.mat-mdc-chip-focus-overlay{background:var(--mdc-chip-focus-state-layer-color)}.mat-mdc-chip-selected .mat-mdc-chip-focus-overlay,.mat-mdc-chip-highlighted .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-selected-focus-state-layer-color)}.mat-mdc-chip:hover .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-hover-state-layer-color);opacity:var(--mdc-chip-hover-state-layer-opacity)}.mat-mdc-chip-focus-overlay .mat-mdc-chip-selected:hover,.mat-mdc-chip-highlighted:hover .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-selected-hover-state-layer-color);opacity:var(--mdc-chip-selected-hover-state-layer-opacity)}.mat-mdc-chip.cdk-focused .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-focus-state-layer-color);opacity:var(--mdc-chip-focus-state-layer-opacity)}.mat-mdc-chip-selected.cdk-focused .mat-mdc-chip-focus-overlay,.mat-mdc-chip-highlighted.cdk-focused .mat-mdc-chip-focus-overlay{background:var(--mdc-chip-selected-focus-state-layer-color);opacity:var(--mdc-chip-selected-focus-state-layer-opacity)}.mdc-evolution-chip--disabled:not(.mdc-evolution-chip--selected) .mat-mdc-chip-avatar{opacity:var(--mdc-chip-with-avatar-disabled-avatar-opacity)}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{opacity:var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity)}.mdc-evolution-chip--disabled.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{opacity:var(--mdc-chip-with-icon-disabled-icon-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{opacity:var(--mat-chip-disabled-container-opacity)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__icon--trailing,.mat-mdc-standard-chip.mat-mdc-chip-highlighted .mdc-evolution-chip__icon--trailing{color:var(--mat-chip-selected-trailing-icon-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{color:var(--mat-chip-selected-disabled-trailing-icon-color)}.mat-mdc-chip-remove{opacity:var(--mat-chip-trailing-action-opacity)}.mat-mdc-chip-remove:focus{opacity:var(--mat-chip-trailing-action-focus-opacity)}.mat-mdc-chip-remove::after{background:var(--mat-chip-trailing-action-state-layer-color)}.mat-mdc-chip-remove:hover::after{opacity:var(--mat-chip-trailing-action-hover-state-layer-opacity)}.mat-mdc-chip-remove:focus::after{opacity:var(--mat-chip-trailing-action-focus-state-layer-opacity)}.mat-mdc-chip-selected .mat-mdc-chip-remove::after,.mat-mdc-chip-highlighted .mat-mdc-chip-remove::after{background:var(--mat-chip-selected-trailing-action-state-layer-color)}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove{opacity:calc(var(--mat-chip-trailing-action-opacity)*var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity))}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove:focus{opacity:calc(var(--mat-chip-trailing-action-focus-opacity)*var(--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity))}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary:before{border-style:solid}.mat-mdc-standard-chip .mdc-evolution-chip__checkmark{height:20px;width:20px}.mat-mdc-standard-chip .mdc-evolution-chip__icon--trailing{height:18px;width:18px;font-size:18px}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:12px;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic[dir=rtl]{padding-left:6px;padding-right:6px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:12px;padding-right:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{padding-left:8px;padding-right:8px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{padding-left:8px;padding-right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing{left:8px;right:initial}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic[dir=rtl]{padding-left:6px;padding-right:6px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{padding-left:8px;padding-right:8px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{padding-left:8px;padding-right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing{left:8px;right:initial}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:0}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:4px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic[dir=rtl]{padding-left:8px;padding-right:4px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:12px;padding-right:0}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:4px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic[dir=rtl]{padding-left:8px;padding-right:4px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing{padding-left:8px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing[dir=rtl]{padding-left:8px;padding-right:8px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing{left:8px;right:initial}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__ripple--trailing[dir=rtl]{left:initial;right:8px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary,.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary[dir=rtl]{padding-left:0;padding-right:0}.mat-mdc-standard-chip{-webkit-tap-highlight-color:rgba(0,0,0,0)}.cdk-high-contrast-active .mat-mdc-standard-chip{outline:solid 1px}.cdk-high-contrast-active .mat-mdc-standard-chip .mdc-evolution-chip__checkmark-path{stroke:CanvasText !important}.mat-mdc-standard-chip .mdc-evolution-chip__cell--primary,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip .mat-mdc-chip-action-label{overflow:visible}.mat-mdc-standard-chip .mdc-evolution-chip__cell--primary{flex-basis:100%}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary{font:inherit;letter-spacing:inherit;white-space:inherit}.mat-mdc-standard-chip .mat-mdc-chip-graphic,.mat-mdc-standard-chip .mat-mdc-chip-trailing-icon{box-sizing:content-box}.mat-mdc-standard-chip._mat-animation-noopable,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__graphic,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__checkmark,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__checkmark-path{transition-duration:1ms;animation-duration:1ms}.mat-mdc-basic-chip .mdc-evolution-chip__action--primary{font:inherit}.mat-mdc-chip-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;opacity:0;border-radius:inherit;transition:opacity 150ms linear}._mat-animation-noopable .mat-mdc-chip-focus-overlay{transition:none}.mat-mdc-basic-chip .mat-mdc-chip-focus-overlay{display:none}.mat-mdc-chip .mat-ripple.mat-mdc-chip-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-chip-avatar{text-align:center;line-height:1;color:var(--mdc-chip-with-icon-icon-color, currentColor)}.mat-mdc-chip{position:relative;z-index:0}.mat-mdc-chip-action-label{text-align:left;z-index:1}[dir=rtl] .mat-mdc-chip-action-label{text-align:right}.mat-mdc-chip.mdc-evolution-chip--with-trailing-action .mat-mdc-chip-action-label{position:relative}.mat-mdc-chip-action-label .mat-mdc-chip-primary-focus-indicator{position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.mat-mdc-chip-action-label .mat-mdc-focus-indicator::before{margin:calc(calc(var(--mat-mdc-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-chip-remove::before{margin:calc(var(--mat-mdc-focus-indicator-border-width, 3px)*-1);left:8px;right:8px}.mat-mdc-chip-remove::after{content:"";display:block;opacity:0;position:absolute;top:-2px;bottom:-2px;left:6px;right:6px;border-radius:50%}.mat-mdc-chip-remove .mat-icon{width:18px;height:18px;font-size:18px;box-sizing:content-box}.mat-chip-edit-input{cursor:text;display:inline-block;color:inherit;outline:0}.cdk-high-contrast-active .mat-mdc-chip-selected:not(.mat-mdc-chip-multiple){outline-width:3px}.mat-mdc-chip-action:focus .mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return pt})(),at=(()=>{class pt{static#e=this.\u0275fac=function(ue){return new(ue||pt)};static#t=this.\u0275mod=e.$C({type:pt});static#i=this.\u0275inj=e.G2t({providers:[w.es,{provide:k,useValue:{separatorKeyCodes:[y.Fm]}}],imports:[w.yE,w.pZ,w.yE]})}return pt})()},6600:(Qe,te,g)=>{"use strict";g.d(te,{r5:()=>ie,ed:()=>ge,MJ:()=>V,es:()=>ce,de:()=>N,Ju:()=>r,QC:()=>Vt,is:()=>Nt,$E:()=>Xe,yE:()=>Te,Np:()=>_e,WX:()=>se,wT:()=>zt,Sy:()=>dt,MI:()=>$t,wg:()=>rt,O5:()=>Yt,r6:()=>yt,Ej:()=>gt,pZ:()=>Ye,xW:()=>ze,ug:()=>Ie,X0:()=>k,tO:()=>$e,jb:()=>Jt,TL:()=>St});var e=g(4438),t=g(8617),w=g(8203),l=g(177),x=g(6860),f=g(4085),I=g(1413),d=g(7336);const F=["text"],R=[[["mat-icon"]],"*"],z=["mat-icon","*"];function W(Fe,Ge){if(1&Fe&&e.nrm(0,"mat-pseudo-checkbox",1),2&Fe){const et=e.XpG();e.Y8G("disabled",et.disabled)("state",et.selected?"checked":"unchecked")}}function $(Fe,Ge){if(1&Fe&&e.nrm(0,"mat-pseudo-checkbox",3),2&Fe){const et=e.XpG();e.Y8G("disabled",et.disabled)}}function j(Fe,Ge){if(1&Fe&&(e.j41(0,"span",4),e.EFF(1),e.k0s()),2&Fe){const et=e.XpG();e.R7$(),e.SpI("(",et.group.label,")")}}const Q=["mat-internal-form-field",""],J=["*"];let ie=(()=>{class Fe{static#e=this.STANDARD_CURVE="cubic-bezier(0.4,0.0,0.2,1)";static#t=this.DECELERATION_CURVE="cubic-bezier(0.0,0.0,0.2,1)";static#i=this.ACCELERATION_CURVE="cubic-bezier(0.4,0.0,1,1)";static#n=this.SHARP_CURVE="cubic-bezier(0.4,0.0,0.6,1)"}return Fe})(),ge=(()=>{class Fe{static#e=this.COMPLEX="375ms";static#t=this.ENTERING="225ms";static#i=this.EXITING="195ms"}return Fe})();const Me=new e.nKC("mat-sanity-checks",{providedIn:"root",factory:function ae(){return!0}});let Te=(()=>{class Fe{constructor(et,st,Tt){this._sanityChecks=st,this._document=Tt,this._hasDoneGlobalChecks=!1,et._applyBodyHighContrastModeCssClasses(),this._hasDoneGlobalChecks||(this._hasDoneGlobalChecks=!0)}_checkIsEnabled(et){return!(0,x.v8)()&&("boolean"==typeof this._sanityChecks?this._sanityChecks:!!this._sanityChecks[et])}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.KVO(t.Q_),e.KVO(Me,8),e.KVO(l.qQ))};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[w.jI,w.jI]})}return Fe})();class k{constructor(Ge,et,st,Tt,mi){this._defaultMatcher=Ge,this.ngControl=et,this._parentFormGroup=st,this._parentForm=Tt,this._stateChanges=mi,this.errorState=!1}updateErrorState(){const Ge=this.errorState,et=this._parentFormGroup||this._parentForm,st=this.matcher||this._defaultMatcher,Tt=this.ngControl?this.ngControl.control:null,mi=st?.isErrorState(Tt,et)??!1;mi!==Ge&&(this.errorState=mi,this._stateChanges.next())}}const r=new e.nKC("MAT_DATE_LOCALE",{providedIn:"root",factory:function v(){return(0,e.WQX)(e.xe9)}});class V{constructor(){this._localeChanges=new I.B,this.localeChanges=this._localeChanges}getValidDateOrNull(Ge){return this.isDateInstance(Ge)&&this.isValid(Ge)?Ge:null}deserialize(Ge){return null==Ge||this.isDateInstance(Ge)&&this.isValid(Ge)?Ge:this.invalid()}setLocale(Ge){this.locale=Ge,this._localeChanges.next()}compareDate(Ge,et){return this.getYear(Ge)-this.getYear(et)||this.getMonth(Ge)-this.getMonth(et)||this.getDate(Ge)-this.getDate(et)}sameDate(Ge,et){if(Ge&&et){let st=this.isValid(Ge),Tt=this.isValid(et);return st&&Tt?!this.compareDate(Ge,et):st==Tt}return Ge==et}clampDate(Ge,et,st){return et&&this.compareDate(Ge,et)<0?et:st&&this.compareDate(Ge,st)>0?st:Ge}}const N=new e.nKC("mat-date-formats"),ne=/^\d{4}-\d{2}-\d{2}(?:T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|(?:(?:\+|-)\d{2}:\d{2}))?)?$/;function Ee(Fe,Ge){const et=Array(Fe);for(let st=0;st{class Fe extends V{constructor(et){super(),this.useUtcForDisplay=!1,this._matDateLocale=(0,e.WQX)(r,{optional:!0}),void 0!==et&&(this._matDateLocale=et),super.setLocale(this._matDateLocale)}getYear(et){return et.getFullYear()}getMonth(et){return et.getMonth()}getDate(et){return et.getDate()}getDayOfWeek(et){return et.getDay()}getMonthNames(et){const st=new Intl.DateTimeFormat(this.locale,{month:et,timeZone:"utc"});return Ee(12,Tt=>this._format(st,new Date(2017,Tt,1)))}getDateNames(){const et=new Intl.DateTimeFormat(this.locale,{day:"numeric",timeZone:"utc"});return Ee(31,st=>this._format(et,new Date(2017,0,st+1)))}getDayOfWeekNames(et){const st=new Intl.DateTimeFormat(this.locale,{weekday:et,timeZone:"utc"});return Ee(7,Tt=>this._format(st,new Date(2017,0,Tt+1)))}getYearName(et){const st=new Intl.DateTimeFormat(this.locale,{year:"numeric",timeZone:"utc"});return this._format(st,et)}getFirstDayOfWeek(){return 0}getNumDaysInMonth(et){return this.getDate(this._createDateWithOverflow(this.getYear(et),this.getMonth(et)+1,0))}clone(et){return new Date(et.getTime())}createDate(et,st,Tt){let mi=this._createDateWithOverflow(et,st,Tt);return mi.getMonth(),mi}today(){return new Date}parse(et,st){return"number"==typeof et?new Date(et):et?new Date(Date.parse(et)):null}format(et,st){if(!this.isValid(et))throw Error("NativeDateAdapter: Cannot format invalid date.");const Tt=new Intl.DateTimeFormat(this.locale,{...st,timeZone:"utc"});return this._format(Tt,et)}addCalendarYears(et,st){return this.addCalendarMonths(et,12*st)}addCalendarMonths(et,st){let Tt=this._createDateWithOverflow(this.getYear(et),this.getMonth(et)+st,this.getDate(et));return this.getMonth(Tt)!=((this.getMonth(et)+st)%12+12)%12&&(Tt=this._createDateWithOverflow(this.getYear(Tt),this.getMonth(Tt),0)),Tt}addCalendarDays(et,st){return this._createDateWithOverflow(this.getYear(et),this.getMonth(et),this.getDate(et)+st)}toIso8601(et){return[et.getUTCFullYear(),this._2digit(et.getUTCMonth()+1),this._2digit(et.getUTCDate())].join("-")}deserialize(et){if("string"==typeof et){if(!et)return null;if(ne.test(et)){let st=new Date(et);if(this.isValid(st))return st}}return super.deserialize(et)}isDateInstance(et){return et instanceof Date}isValid(et){return!isNaN(et.getTime())}invalid(){return new Date(NaN)}_createDateWithOverflow(et,st,Tt){const mi=new Date;return mi.setFullYear(et,st,Tt),mi.setHours(0,0,0,0),mi}_2digit(et){return("00"+et).slice(-2)}_format(et,st){const Tt=new Date;return Tt.setUTCFullYear(st.getFullYear(),st.getMonth(),st.getDate()),Tt.setUTCHours(st.getHours(),st.getMinutes(),st.getSeconds(),st.getMilliseconds()),et.format(Tt)}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.KVO(r,8))};static#t=this.\u0275prov=e.jDH({token:Fe,factory:Fe.\u0275fac})}return Fe})();const qe={parse:{dateInput:null},display:{dateInput:{year:"numeric",month:"numeric",day:"numeric"},monthYearLabel:{year:"numeric",month:"short"},dateA11yLabel:{year:"numeric",month:"long",day:"numeric"},monthYearA11yLabel:{year:"numeric",month:"long"}}};let se=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({providers:[X()]})}return Fe})();function X(Fe=qe){return[{provide:V,useClass:ze},{provide:N,useValue:Fe}]}let ce=(()=>{class Fe{isErrorState(et,st){return!!(et&&et.invalid&&(et.touched||st&&st.submitted))}static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275prov=e.jDH({token:Fe,factory:Fe.\u0275fac,providedIn:"root"})}return Fe})(),_e=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[Te,Te]})}return Fe})();var be=function(Fe){return Fe[Fe.FADING_IN=0]="FADING_IN",Fe[Fe.VISIBLE=1]="VISIBLE",Fe[Fe.FADING_OUT=2]="FADING_OUT",Fe[Fe.HIDDEN=3]="HIDDEN",Fe}(be||{});class pe{constructor(Ge,et,st,Tt=!1){this._renderer=Ge,this.element=et,this.config=st,this._animationForciblyDisabledThroughCss=Tt,this.state=be.HIDDEN}fadeOut(){this._renderer.fadeOutRipple(this)}}const Ze=(0,x.BQ)({passive:!0,capture:!0});class _t{constructor(){this._events=new Map,this._delegateEventHandler=Ge=>{const et=(0,x.Fb)(Ge);et&&this._events.get(Ge.type)?.forEach((st,Tt)=>{(Tt===et||Tt.contains(et))&&st.forEach(mi=>mi.handleEvent(Ge))})}}addHandler(Ge,et,st,Tt){const mi=this._events.get(et);if(mi){const Kt=mi.get(st);Kt?Kt.add(Tt):mi.set(st,new Set([Tt]))}else this._events.set(et,new Map([[st,new Set([Tt])]])),Ge.runOutsideAngular(()=>{document.addEventListener(et,this._delegateEventHandler,Ze)})}removeHandler(Ge,et,st){const Tt=this._events.get(Ge);if(!Tt)return;const mi=Tt.get(et);mi&&(mi.delete(st),0===mi.size&&Tt.delete(et),0===Tt.size&&(this._events.delete(Ge),document.removeEventListener(Ge,this._delegateEventHandler,Ze)))}}const at={enterDuration:225,exitDuration:150},Xt=(0,x.BQ)({passive:!0,capture:!0}),ye=["mousedown","touchstart"],ue=["mouseup","mouseleave","touchend","touchcancel"];class Ie{static#e=this._eventManager=new _t;constructor(Ge,et,st,Tt){this._target=Ge,this._ngZone=et,this._platform=Tt,this._isPointerDown=!1,this._activeRipples=new Map,this._pointerUpEventsRegistered=!1,Tt.isBrowser&&(this._containerElement=(0,f.i8)(st))}fadeInRipple(Ge,et,st={}){const Tt=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),mi={...at,...st.animation};st.centered&&(Ge=Tt.left+Tt.width/2,et=Tt.top+Tt.height/2);const Kt=st.radius||function He(Fe,Ge,et){const st=Math.max(Math.abs(Fe-et.left),Math.abs(Fe-et.right)),Tt=Math.max(Math.abs(Ge-et.top),Math.abs(Ge-et.bottom));return Math.sqrt(st*st+Tt*Tt)}(Ge,et,Tt),Pt=Ge-Tt.left,Xi=et-Tt.top,di=mi.enterDuration,fi=document.createElement("div");fi.classList.add("mat-ripple-element"),fi.style.left=Pt-Kt+"px",fi.style.top=Xi-Kt+"px",fi.style.height=2*Kt+"px",fi.style.width=2*Kt+"px",null!=st.color&&(fi.style.backgroundColor=st.color),fi.style.transitionDuration=`${di}ms`,this._containerElement.appendChild(fi);const vn=window.getComputedStyle(fi),Li=vn.transitionDuration,Zi="none"===vn.transitionProperty||"0s"===Li||"0s, 0s"===Li||0===Tt.width&&0===Tt.height,Qt=new pe(this,fi,st,Zi);fi.style.transform="scale3d(1, 1, 1)",Qt.state=be.FADING_IN,st.persistent||(this._mostRecentTransientRipple=Qt);let Mt=null;return!Zi&&(di||mi.exitDuration)&&this._ngZone.runOutsideAngular(()=>{const it=()=>this._finishRippleTransition(Qt),ct=()=>this._destroyRipple(Qt);fi.addEventListener("transitionend",it),fi.addEventListener("transitioncancel",ct),Mt={onTransitionEnd:it,onTransitionCancel:ct}}),this._activeRipples.set(Qt,Mt),(Zi||!di)&&this._finishRippleTransition(Qt),Qt}fadeOutRipple(Ge){if(Ge.state===be.FADING_OUT||Ge.state===be.HIDDEN)return;const et=Ge.element,st={...at,...Ge.config.animation};et.style.transitionDuration=`${st.exitDuration}ms`,et.style.opacity="0",Ge.state=be.FADING_OUT,(Ge._animationForciblyDisabledThroughCss||!st.exitDuration)&&this._finishRippleTransition(Ge)}fadeOutAll(){this._getActiveRipples().forEach(Ge=>Ge.fadeOut())}fadeOutAllNonPersistent(){this._getActiveRipples().forEach(Ge=>{Ge.config.persistent||Ge.fadeOut()})}setupTriggerEvents(Ge){const et=(0,f.i8)(Ge);!this._platform.isBrowser||!et||et===this._triggerElement||(this._removeTriggerEvents(),this._triggerElement=et,ye.forEach(st=>{Ie._eventManager.addHandler(this._ngZone,st,et,this)}))}handleEvent(Ge){"mousedown"===Ge.type?this._onMousedown(Ge):"touchstart"===Ge.type?this._onTouchStart(Ge):this._onPointerUp(),this._pointerUpEventsRegistered||(this._ngZone.runOutsideAngular(()=>{ue.forEach(et=>{this._triggerElement.addEventListener(et,this,Xt)})}),this._pointerUpEventsRegistered=!0)}_finishRippleTransition(Ge){Ge.state===be.FADING_IN?this._startFadeOutTransition(Ge):Ge.state===be.FADING_OUT&&this._destroyRipple(Ge)}_startFadeOutTransition(Ge){const et=Ge===this._mostRecentTransientRipple,{persistent:st}=Ge.config;Ge.state=be.VISIBLE,!st&&(!et||!this._isPointerDown)&&Ge.fadeOut()}_destroyRipple(Ge){const et=this._activeRipples.get(Ge)??null;this._activeRipples.delete(Ge),this._activeRipples.size||(this._containerRect=null),Ge===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),Ge.state=be.HIDDEN,null!==et&&(Ge.element.removeEventListener("transitionend",et.onTransitionEnd),Ge.element.removeEventListener("transitioncancel",et.onTransitionCancel)),Ge.element.remove()}_onMousedown(Ge){const et=(0,t._G)(Ge),st=this._lastTouchStartEvent&&Date.now(){!Ge.config.persistent&&(Ge.state===be.VISIBLE||Ge.config.terminateOnPointerUp&&Ge.state===be.FADING_IN)&&Ge.fadeOut()}))}_getActiveRipples(){return Array.from(this._activeRipples.keys())}_removeTriggerEvents(){const Ge=this._triggerElement;Ge&&(ye.forEach(et=>Ie._eventManager.removeHandler(et,Ge,this)),this._pointerUpEventsRegistered&&(ue.forEach(et=>Ge.removeEventListener(et,this,Xt)),this._pointerUpEventsRegistered=!1))}}const Xe=new e.nKC("mat-ripple-global-options");let yt=(()=>{class Fe{get disabled(){return this._disabled}set disabled(et){et&&this.fadeOutAllNonPersistent(),this._disabled=et,this._setupTriggerEventsIfEnabled()}get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(et){this._trigger=et,this._setupTriggerEventsIfEnabled()}constructor(et,st,Tt,mi,Kt){this._elementRef=et,this._animationMode=Kt,this.radius=0,this._disabled=!1,this._isInitialized=!1,this._globalOptions=mi||{},this._rippleRenderer=new Ie(this,st,et,Tt)}ngOnInit(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}ngOnDestroy(){this._rippleRenderer._removeTriggerEvents()}fadeOutAll(){this._rippleRenderer.fadeOutAll()}fadeOutAllNonPersistent(){this._rippleRenderer.fadeOutAllNonPersistent()}get rippleConfig(){return{centered:this.centered,radius:this.radius,color:this.color,animation:{...this._globalOptions.animation,..."NoopAnimations"===this._animationMode?{enterDuration:0,exitDuration:0}:{},...this.animation},terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}get rippleDisabled(){return this.disabled||!!this._globalOptions.disabled}_setupTriggerEventsIfEnabled(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}launch(et,st=0,Tt){return"number"==typeof et?this._rippleRenderer.fadeInRipple(et,st,{...this.rippleConfig,...Tt}):this._rippleRenderer.fadeInRipple(0,0,{...this.rippleConfig,...et})}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(x.OD),e.rXU(Xe,8),e.rXU(e.bc$,8))};static#t=this.\u0275dir=e.FsC({type:Fe,selectors:[["","mat-ripple",""],["","matRipple",""]],hostAttrs:[1,"mat-ripple"],hostVars:2,hostBindings:function(st,Tt){2&st&&e.AVh("mat-ripple-unbounded",Tt.unbounded)},inputs:{color:[0,"matRippleColor","color"],unbounded:[0,"matRippleUnbounded","unbounded"],centered:[0,"matRippleCentered","centered"],radius:[0,"matRippleRadius","radius"],animation:[0,"matRippleAnimation","animation"],disabled:[0,"matRippleDisabled","disabled"],trigger:[0,"matRippleTrigger","trigger"]},exportAs:["matRipple"],standalone:!0})}return Fe})(),Ye=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[Te,Te]})}return Fe})(),rt=(()=>{class Fe{constructor(et){this._animationMode=et,this.state="unchecked",this.disabled=!1,this.appearance="full"}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:Fe,selectors:[["mat-pseudo-checkbox"]],hostAttrs:[1,"mat-pseudo-checkbox"],hostVars:12,hostBindings:function(st,Tt){2&st&&e.AVh("mat-pseudo-checkbox-indeterminate","indeterminate"===Tt.state)("mat-pseudo-checkbox-checked","checked"===Tt.state)("mat-pseudo-checkbox-disabled",Tt.disabled)("mat-pseudo-checkbox-minimal","minimal"===Tt.appearance)("mat-pseudo-checkbox-full","full"===Tt.appearance)("_mat-animation-noopable","NoopAnimations"===Tt._animationMode)},inputs:{state:"state",disabled:"disabled",appearance:"appearance"},standalone:!0,features:[e.aNF],decls:0,vars:0,template:function(st,Tt){},styles:['.mat-pseudo-checkbox{border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:"";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox._mat-animation-noopable{transition:none !important;animation:none !important}.mat-pseudo-checkbox._mat-animation-noopable::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{left:1px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{left:1px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after,.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate::after{color:var(--mat-minimal-pseudo-checkbox-selected-checkmark-color)}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled::after,.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled::after{color:var(--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color)}.mat-pseudo-checkbox-full{border-color:var(--mat-full-pseudo-checkbox-unselected-icon-color);border-width:2px;border-style:solid}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{border-color:var(--mat-full-pseudo-checkbox-disabled-unselected-icon-color)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate{background-color:var(--mat-full-pseudo-checkbox-selected-icon-color);border-color:rgba(0,0,0,0)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate::after{color:var(--mat-full-pseudo-checkbox-selected-checkmark-color)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background-color:var(--mat-full-pseudo-checkbox-disabled-selected-icon-color)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled::after,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled::after{color:var(--mat-full-pseudo-checkbox-disabled-selected-checkmark-color)}.mat-pseudo-checkbox{width:18px;height:18px}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after{width:14px;height:6px;transform-origin:center;top:-4.2426406871px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate::after{top:8px;width:16px}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after{width:10px;height:4px;transform-origin:center;top:-2.8284271247px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate::after{top:6px;width:12px}'],encapsulation:2,changeDetection:0})}return Fe})(),Yt=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[Te]})}return Fe})();const Nt=new e.nKC("MAT_OPTION_PARENT_COMPONENT"),Vt=new e.nKC("MatOptgroup");let tt=0;class $t{constructor(Ge,et=!1){this.source=Ge,this.isUserInput=et}}let zt=(()=>{class Fe{get multiple(){return this._parent&&this._parent.multiple}get selected(){return this._selected}get disabled(){return this.group&&this.group.disabled||this._disabled}set disabled(et){this._disabled=et}get disableRipple(){return!(!this._parent||!this._parent.disableRipple)}get hideSingleSelectionIndicator(){return!(!this._parent||!this._parent.hideSingleSelectionIndicator)}constructor(et,st,Tt,mi){this._element=et,this._changeDetectorRef=st,this._parent=Tt,this.group=mi,this._selected=!1,this._active=!1,this._disabled=!1,this._mostRecentViewValue="",this.id="mat-option-"+tt++,this.onSelectionChange=new e.bkB,this._stateChanges=new I.B}get active(){return this._active}get viewValue(){return(this._text?.nativeElement.textContent||"").trim()}select(et=!0){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),et&&this._emitSelectionChangeEvent())}deselect(et=!0){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),et&&this._emitSelectionChangeEvent())}focus(et,st){const Tt=this._getHostElement();"function"==typeof Tt.focus&&Tt.focus(st)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(et){(et.keyCode===d.Fm||et.keyCode===d.t6)&&!(0,d.rp)(et)&&(this._selectViaInteraction(),et.preventDefault())}_selectViaInteraction(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._element.nativeElement}ngAfterViewChecked(){if(this._selected){const et=this.viewValue;et!==this._mostRecentViewValue&&(this._mostRecentViewValue&&this._stateChanges.next(),this._mostRecentViewValue=et)}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(et=!1){this.onSelectionChange.emit(new $t(this,et))}static#e=this.\u0275fac=function(st){return new(st||Fe)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(Nt,8),e.rXU(Vt,8))};static#t=this.\u0275cmp=e.VBU({type:Fe,selectors:[["mat-option"]],viewQuery:function(st,Tt){if(1&st&&e.GBs(F,7),2&st){let mi;e.mGM(mi=e.lsd())&&(Tt._text=mi.first)}},hostAttrs:["role","option",1,"mat-mdc-option","mdc-list-item"],hostVars:11,hostBindings:function(st,Tt){1&st&&e.bIt("click",function(){return Tt._selectViaInteraction()})("keydown",function(Kt){return Tt._handleKeydown(Kt)}),2&st&&(e.Mr5("id",Tt.id),e.BMQ("aria-selected",Tt.selected)("aria-disabled",Tt.disabled.toString()),e.AVh("mdc-list-item--selected",Tt.selected)("mat-mdc-option-multiple",Tt.multiple)("mat-mdc-option-active",Tt.active)("mdc-list-item--disabled",Tt.disabled))},inputs:{value:"value",id:"id",disabled:[2,"disabled","disabled",e.L39]},outputs:{onSelectionChange:"onSelectionChange"},exportAs:["matOption"],standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:z,decls:8,vars:5,consts:[["text",""],["aria-hidden","true",1,"mat-mdc-option-pseudo-checkbox",3,"disabled","state"],[1,"mdc-list-item__primary-text"],["state","checked","aria-hidden","true","appearance","minimal",1,"mat-mdc-option-pseudo-checkbox",3,"disabled"],[1,"cdk-visually-hidden"],["aria-hidden","true","mat-ripple","",1,"mat-mdc-option-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled"]],template:function(st,Tt){1&st&&(e.NAR(R),e.DNE(0,W,1,2,"mat-pseudo-checkbox",1),e.SdG(1),e.j41(2,"span",2,0),e.SdG(4,1),e.k0s(),e.DNE(5,$,1,1,"mat-pseudo-checkbox",3)(6,j,2,1,"span",4),e.nrm(7,"div",5)),2&st&&(e.vxM(Tt.multiple?0:-1),e.R7$(5),e.vxM(Tt.multiple||!Tt.selected||Tt.hideSingleSelectionIndicator?-1:5),e.R7$(),e.vxM(Tt.group&&Tt.group._inert?6:-1),e.R7$(),e.Y8G("matRippleTrigger",Tt._getHostElement())("matRippleDisabled",Tt.disabled||Tt.disableRipple))},dependencies:[rt,yt],styles:['.mat-mdc-option{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;padding-left:16px;padding-right:16px;-webkit-user-select:none;user-select:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);color:var(--mat-option-label-text-color);font-family:var(--mat-option-label-text-font);line-height:var(--mat-option-label-text-line-height);font-size:var(--mat-option-label-text-size);letter-spacing:var(--mat-option-label-text-tracking);font-weight:var(--mat-option-label-text-weight);min-height:48px}.mat-mdc-option:focus{outline:none}[dir=rtl] .mat-mdc-option,.mat-mdc-option[dir=rtl]{padding-left:16px;padding-right:16px}.mat-mdc-option:hover:not(.mdc-list-item--disabled){background-color:var(--mat-option-hover-state-layer-color)}.mat-mdc-option:focus.mdc-list-item,.mat-mdc-option.mat-mdc-option-active.mdc-list-item{background-color:var(--mat-option-focus-state-layer-color)}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:var(--mat-option-selected-state-label-text-color)}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple){background-color:var(--mat-option-selected-state-layer-color)}.mat-mdc-option.mdc-list-item{align-items:center;background:rgba(0,0,0,0)}.mat-mdc-option.mdc-list-item--disabled{cursor:default;pointer-events:none}.mat-mdc-option.mdc-list-item--disabled .mat-mdc-option-pseudo-checkbox,.mat-mdc-option.mdc-list-item--disabled .mdc-list-item__primary-text,.mat-mdc-option.mdc-list-item--disabled>mat-icon{opacity:.38}.mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:32px}[dir=rtl] .mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:16px;padding-right:32px}.mat-mdc-option .mat-icon,.mat-mdc-option .mat-pseudo-checkbox-full{margin-right:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-icon,[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-full{margin-right:0;margin-left:16px}.mat-mdc-option .mat-pseudo-checkbox-minimal{margin-left:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-minimal{margin-right:16px;margin-left:0}.mat-mdc-option .mat-mdc-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-option .mdc-list-item__primary-text{white-space:normal;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;font-family:inherit;text-decoration:inherit;text-transform:inherit;margin-right:auto}[dir=rtl] .mat-mdc-option .mdc-list-item__primary-text{margin-right:0;margin-left:auto}.cdk-high-contrast-active .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple)::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}[dir=rtl] .cdk-high-contrast-active .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple)::after{right:auto;left:16px}.mat-mdc-option-multiple{--mdc-list-list-item-selected-container-color:var(--mdc-list-list-item-container-color, transparent)}.mat-mdc-option-active .mat-mdc-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return Fe})();function Jt(Fe,Ge,et){if(et.length){let st=Ge.toArray(),Tt=et.toArray(),mi=0;for(let Kt=0;Ktet+st?Math.max(0,Fe-st+Ge):et}let dt=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275mod=e.$C({type:Fe});static#i=this.\u0275inj=e.G2t({imports:[Ye,Te,Yt]})}return Fe})();const Ae={capture:!0},we=["focus","click","mouseenter","touchstart"],he="mat-ripple-loader-uninitialized",q="mat-ripple-loader-class-name",Re="mat-ripple-loader-centered",Ne="mat-ripple-loader-disabled";let gt=(()=>{class Fe{constructor(){this._document=(0,e.WQX)(l.qQ,{optional:!0}),this._animationMode=(0,e.WQX)(e.bc$,{optional:!0}),this._globalRippleOptions=(0,e.WQX)(Xe,{optional:!0}),this._platform=(0,e.WQX)(x.OD),this._ngZone=(0,e.WQX)(e.SKi),this._hosts=new Map,this._onInteraction=et=>{if(!(et.target instanceof HTMLElement))return;const Tt=et.target.closest(`[${he}]`);Tt&&this._createRipple(Tt)},this._ngZone.runOutsideAngular(()=>{for(const et of we)this._document?.addEventListener(et,this._onInteraction,Ae)})}ngOnDestroy(){const et=this._hosts.keys();for(const st of et)this.destroyRipple(st);for(const st of we)this._document?.removeEventListener(st,this._onInteraction,Ae)}configureRipple(et,st){et.setAttribute(he,""),(st.className||!et.hasAttribute(q))&&et.setAttribute(q,st.className||""),st.centered&&et.setAttribute(Re,""),st.disabled&&et.setAttribute(Ne,"")}getRipple(et){return this._hosts.get(et)||this._createRipple(et)}setDisabled(et,st){const Tt=this._hosts.get(et);Tt?Tt.disabled=st:st?et.setAttribute(Ne,""):et.removeAttribute(Ne)}_createRipple(et){if(!this._document)return;const st=this._hosts.get(et);if(st)return st;et.querySelector(".mat-ripple")?.remove();const Tt=this._document.createElement("span");Tt.classList.add("mat-ripple",et.getAttribute(q)),et.append(Tt);const mi=new yt(new e.aKT(Tt),this._ngZone,this._platform,this._globalRippleOptions?this._globalRippleOptions:void 0,this._animationMode?this._animationMode:void 0);return mi._isInitialized=!0,mi.trigger=et,mi.centered=et.hasAttribute(Re),mi.disabled=et.hasAttribute(Ne),this.attachRipple(et,mi),mi}attachRipple(et,st){et.removeAttribute(he),this._hosts.set(et,st)}destroyRipple(et){const st=this._hosts.get(et);st&&(st.ngOnDestroy(),this._hosts.delete(et))}static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275prov=e.jDH({token:Fe,factory:Fe.\u0275fac,providedIn:"root"})}return Fe})(),$e=(()=>{class Fe{static#e=this.\u0275fac=function(st){return new(st||Fe)};static#t=this.\u0275cmp=e.VBU({type:Fe,selectors:[["div","mat-internal-form-field",""]],hostAttrs:[1,"mdc-form-field","mat-internal-form-field"],hostVars:2,hostBindings:function(st,Tt){2&st&&e.AVh("mdc-form-field--align-end","before"===Tt.labelPosition)},inputs:{labelPosition:"labelPosition"},standalone:!0,features:[e.aNF],attrs:Q,ngContentSelectors:J,decls:1,vars:0,template:function(st,Tt){1&st&&(e.NAR(),e.SdG(0))},styles:[".mdc-form-field{display:inline-flex;align-items:center;vertical-align:middle}.mdc-form-field[hidden]{display:none}.mdc-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{margin-left:auto;margin-right:0}[dir=rtl] .mdc-form-field>label,.mdc-form-field>label[dir=rtl]{padding-left:0;padding-right:4px}.mdc-form-field--nowrap>label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.mdc-form-field--align-end>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px;order:-1}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{margin-left:0;margin-right:auto}[dir=rtl] .mdc-form-field--align-end>label,.mdc-form-field--align-end>label[dir=rtl]{padding-left:4px;padding-right:0}.mdc-form-field--space-between{justify-content:space-between}.mdc-form-field--space-between>label{margin:0}[dir=rtl] .mdc-form-field--space-between>label,.mdc-form-field--space-between>label[dir=rtl]{margin:0}.mdc-form-field{font-family:var(--mdc-form-field-label-text-font);line-height:var(--mdc-form-field-label-text-line-height);font-size:var(--mdc-form-field-label-text-size);font-weight:var(--mdc-form-field-label-text-weight);letter-spacing:var(--mdc-form-field-label-text-tracking);color:var(--mdc-form-field-label-text-color)}.mat-internal-form-field{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}"],encapsulation:2,changeDetection:0})}return Fe})()},5084:(Qe,te,g)=>{"use strict";g.d(te,{Vh:()=>et,X6:()=>fn,bU:()=>fi,bZ:()=>Xi});var e=g(8617),t=g(6969),w=g(6939),S=g(177),l=g(4438),x=g(8834),f=g(5542),I=g(6600),d=g(1413),T=g(8359),y=g(7786),F=g(7673),R=g(7336),z=g(8203),W=g(6860),$=g(6697),j=g(9172),Q=g(5964),J=g(4085),ee=g(9969),ie=g(9417),ge=g(6467),ae=g(9631);const Me=["mat-calendar-body",""];function Te(Zt,bt){if(1&Zt&&(l.j41(0,"tr",0)(1,"td",3),l.EFF(2),l.k0s()()),2&Zt){const re=l.XpG();l.R7$(),l.xc7("padding-top",re._cellPadding)("padding-bottom",re._cellPadding),l.BMQ("colspan",re.numCols),l.R7$(),l.SpI(" ",re.label," ")}}function de(Zt,bt){if(1&Zt&&(l.j41(0,"td",3),l.EFF(1),l.k0s()),2&Zt){const re=l.XpG(2);l.xc7("padding-top",re._cellPadding)("padding-bottom",re._cellPadding),l.BMQ("colspan",re._firstRowOffset),l.R7$(),l.SpI(" ",re._firstRowOffset>=re.labelMinRequiredCells?re.label:""," ")}}function D(Zt,bt){if(1&Zt){const re=l.RV6();l.j41(0,"td",6)(1,"button",7),l.bIt("click",function(Ce){const ot=l.eBV(re).$implicit,ut=l.XpG(2);return l.Njj(ut._cellClicked(ot,Ce))})("focus",function(Ce){const ot=l.eBV(re).$implicit,ut=l.XpG(2);return l.Njj(ut._emitActiveDateChange(ot,Ce))}),l.j41(2,"span",8),l.EFF(3),l.k0s(),l.nrm(4,"span",9),l.k0s()()}if(2&Zt){const re=bt.$implicit,je=bt.$index,Ce=l.XpG().$index,ot=l.XpG();l.xc7("width",ot._cellWidth)("padding-top",ot._cellPadding)("padding-bottom",ot._cellPadding),l.BMQ("data-mat-row",Ce)("data-mat-col",je),l.R7$(),l.AVh("mat-calendar-body-disabled",!re.enabled)("mat-calendar-body-active",ot._isActiveCell(Ce,je))("mat-calendar-body-range-start",ot._isRangeStart(re.compareValue))("mat-calendar-body-range-end",ot._isRangeEnd(re.compareValue))("mat-calendar-body-in-range",ot._isInRange(re.compareValue))("mat-calendar-body-comparison-bridge-start",ot._isComparisonBridgeStart(re.compareValue,Ce,je))("mat-calendar-body-comparison-bridge-end",ot._isComparisonBridgeEnd(re.compareValue,Ce,je))("mat-calendar-body-comparison-start",ot._isComparisonStart(re.compareValue))("mat-calendar-body-comparison-end",ot._isComparisonEnd(re.compareValue))("mat-calendar-body-in-comparison-range",ot._isInComparisonRange(re.compareValue))("mat-calendar-body-preview-start",ot._isPreviewStart(re.compareValue))("mat-calendar-body-preview-end",ot._isPreviewEnd(re.compareValue))("mat-calendar-body-in-preview",ot._isInPreview(re.compareValue)),l.Y8G("ngClass",re.cssClasses)("tabindex",ot._isActiveCell(Ce,je)?0:-1),l.BMQ("aria-label",re.ariaLabel)("aria-disabled",!re.enabled||null)("aria-pressed",ot._isSelected(re.compareValue))("aria-current",ot.todayValue===re.compareValue?"date":null)("aria-describedby",ot._getDescribedby(re.compareValue)),l.R7$(),l.AVh("mat-calendar-body-selected",ot._isSelected(re.compareValue))("mat-calendar-body-comparison-identical",ot._isComparisonIdentical(re.compareValue))("mat-calendar-body-today",ot.todayValue===re.compareValue),l.R7$(),l.SpI(" ",re.displayValue," ")}}function n(Zt,bt){if(1&Zt&&(l.j41(0,"tr",1),l.DNE(1,de,2,6,"td",4),l.Z7z(2,D,5,48,"td",5,l.fX1),l.k0s()),2&Zt){const re=bt.$implicit,je=bt.$index,Ce=l.XpG();l.R7$(),l.vxM(0===je&&Ce._firstRowOffset?1:-1),l.R7$(),l.Dyx(re)}}function c(Zt,bt){if(1&Zt&&(l.j41(0,"th",2)(1,"span",6),l.EFF(2),l.k0s(),l.j41(3,"span",3),l.EFF(4),l.k0s()()),2&Zt){const re=bt.$implicit;l.R7$(2),l.JRh(re.long),l.R7$(2),l.JRh(re.narrow)}}const m=["*"];function h(Zt,bt){}function C(Zt,bt){if(1&Zt){const re=l.RV6();l.j41(0,"mat-month-view",4),l.mxI("activeDateChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.DH7(ot.activeDate,Ce)||(ot.activeDate=Ce),l.Njj(Ce)}),l.bIt("_userSelection",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._dateSelected(Ce))})("dragStarted",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._dragStarted(Ce))})("dragEnded",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._dragEnded(Ce))}),l.k0s()}if(2&Zt){const re=l.XpG();l.R50("activeDate",re.activeDate),l.Y8G("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)("comparisonStart",re.comparisonStart)("comparisonEnd",re.comparisonEnd)("startDateAccessibleName",re.startDateAccessibleName)("endDateAccessibleName",re.endDateAccessibleName)("activeDrag",re._activeDrag)}}function k(Zt,bt){if(1&Zt){const re=l.RV6();l.j41(0,"mat-year-view",5),l.mxI("activeDateChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.DH7(ot.activeDate,Ce)||(ot.activeDate=Ce),l.Njj(Ce)}),l.bIt("monthSelected",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._monthSelectedInYearView(Ce))})("selectedChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._goToDateInView(Ce,"month"))}),l.k0s()}if(2&Zt){const re=l.XpG();l.R50("activeDate",re.activeDate),l.Y8G("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)}}function L(Zt,bt){if(1&Zt){const re=l.RV6();l.j41(0,"mat-multi-year-view",6),l.mxI("activeDateChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.DH7(ot.activeDate,Ce)||(ot.activeDate=Ce),l.Njj(Ce)}),l.bIt("yearSelected",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._yearSelectedInMultiYearView(Ce))})("selectedChange",function(Ce){l.eBV(re);const ot=l.XpG();return l.Njj(ot._goToDateInView(Ce,"year"))}),l.k0s()}if(2&Zt){const re=l.XpG();l.R50("activeDate",re.activeDate),l.Y8G("selected",re.selected)("dateFilter",re.dateFilter)("maxDate",re.maxDate)("minDate",re.minDate)("dateClass",re.dateClass)}}function _(Zt,bt){}const r=["button"],v=[[["","matDatepickerToggleIcon",""]]],V=["[matDatepickerToggleIcon]"];function N(Zt,bt){1&Zt&&(l.qSk(),l.j41(0,"svg",2),l.nrm(1,"path",3),l.k0s())}let Ke=(()=>{class Zt{constructor(){this.changes=new d.B,this.calendarLabel="Calendar",this.openCalendarLabel="Open calendar",this.closeCalendarLabel="Close calendar",this.prevMonthLabel="Previous month",this.nextMonthLabel="Next month",this.prevYearLabel="Previous year",this.nextYearLabel="Next year",this.prevMultiYearLabel="Previous 24 years",this.nextMultiYearLabel="Next 24 years",this.switchToMonthViewLabel="Choose date",this.switchToMultiYearViewLabel="Choose month and year",this.startDateLabel="Start date",this.endDateLabel="End date"}formatYearRange(re,je){return`${re} \u2013 ${je}`}formatYearRangeLabel(re,je){return`${re} to ${je}`}static#e=this.\u0275fac=function(je){return new(je||Zt)};static#t=this.\u0275prov=l.jDH({token:Zt,factory:Zt.\u0275fac,providedIn:"root"})}return Zt})();class se{constructor(bt,re,je,Ce,ot={},ut=bt,ii){this.value=bt,this.displayValue=re,this.ariaLabel=je,this.enabled=Ce,this.cssClasses=ot,this.compareValue=ut,this.rawValue=ii}}let X=1;const me=(0,W.BQ)({passive:!1,capture:!0}),ce=(0,W.BQ)({passive:!0,capture:!0}),fe=(0,W.BQ)({passive:!0});let ke=(()=>{class Zt{ngAfterViewChecked(){this._focusActiveCellAfterViewChecked&&(this._focusActiveCell(),this._focusActiveCellAfterViewChecked=!1)}constructor(re,je){this._elementRef=re,this._ngZone=je,this._platform=(0,l.WQX)(W.OD),this._focusActiveCellAfterViewChecked=!1,this.numCols=7,this.activeCell=0,this.isRange=!1,this.cellAspectRatio=1,this.previewStart=null,this.previewEnd=null,this.selectedValueChange=new l.bkB,this.previewChange=new l.bkB,this.activeDateChange=new l.bkB,this.dragStarted=new l.bkB,this.dragEnded=new l.bkB,this._didDragSinceMouseDown=!1,this._enterHandler=Ce=>{if(this._skipNextFocus&&"focus"===Ce.type)this._skipNextFocus=!1;else if(Ce.target&&this.isRange){const ot=this._getCellFromElement(Ce.target);ot&&this._ngZone.run(()=>this.previewChange.emit({value:ot.enabled?ot:null,event:Ce}))}},this._touchmoveHandler=Ce=>{if(!this.isRange)return;const ot=_t(Ce),ut=ot?this._getCellFromElement(ot):null;ot!==Ce.target&&(this._didDragSinceMouseDown=!0),_e(Ce.target)&&Ce.preventDefault(),this._ngZone.run(()=>this.previewChange.emit({value:ut?.enabled?ut:null,event:Ce}))},this._leaveHandler=Ce=>{null!==this.previewEnd&&this.isRange&&("blur"!==Ce.type&&(this._didDragSinceMouseDown=!0),Ce.target&&this._getCellFromElement(Ce.target)&&(!Ce.relatedTarget||!this._getCellFromElement(Ce.relatedTarget))&&this._ngZone.run(()=>this.previewChange.emit({value:null,event:Ce})))},this._mousedownHandler=Ce=>{if(!this.isRange)return;this._didDragSinceMouseDown=!1;const ot=Ce.target&&this._getCellFromElement(Ce.target);!ot||!this._isInRange(ot.compareValue)||this._ngZone.run(()=>{this.dragStarted.emit({value:ot.rawValue,event:Ce})})},this._mouseupHandler=Ce=>{if(!this.isRange)return;const ot=_e(Ce.target);ot?ot.closest(".mat-calendar-body")===this._elementRef.nativeElement&&this._ngZone.run(()=>{const ut=this._getCellFromElement(ot);this.dragEnded.emit({value:ut?.rawValue??null,event:Ce})}):this._ngZone.run(()=>{this.dragEnded.emit({value:null,event:Ce})})},this._touchendHandler=Ce=>{const ot=_t(Ce);ot&&this._mouseupHandler({target:ot})},this._id="mat-calendar-body-"+X++,this._startDateLabelId=`${this._id}-start-date`,this._endDateLabelId=`${this._id}-end-date`,je.runOutsideAngular(()=>{const Ce=re.nativeElement;Ce.addEventListener("touchmove",this._touchmoveHandler,me),Ce.addEventListener("mouseenter",this._enterHandler,ce),Ce.addEventListener("focus",this._enterHandler,ce),Ce.addEventListener("mouseleave",this._leaveHandler,ce),Ce.addEventListener("blur",this._leaveHandler,ce),Ce.addEventListener("mousedown",this._mousedownHandler,fe),Ce.addEventListener("touchstart",this._mousedownHandler,fe),this._platform.isBrowser&&(window.addEventListener("mouseup",this._mouseupHandler),window.addEventListener("touchend",this._touchendHandler))})}_cellClicked(re,je){this._didDragSinceMouseDown||re.enabled&&this.selectedValueChange.emit({value:re.value,event:je})}_emitActiveDateChange(re,je){re.enabled&&this.activeDateChange.emit({value:re.value,event:je})}_isSelected(re){return this.startValue===re||this.endValue===re}ngOnChanges(re){const je=re.numCols,{rows:Ce,numCols:ot}=this;(re.rows||je)&&(this._firstRowOffset=Ce&&Ce.length&&Ce[0].length?ot-Ce[0].length:0),(re.cellAspectRatio||je||!this._cellPadding)&&(this._cellPadding=50*this.cellAspectRatio/ot+"%"),(je||!this._cellWidth)&&(this._cellWidth=100/ot+"%")}ngOnDestroy(){const re=this._elementRef.nativeElement;re.removeEventListener("touchmove",this._touchmoveHandler,me),re.removeEventListener("mouseenter",this._enterHandler,ce),re.removeEventListener("focus",this._enterHandler,ce),re.removeEventListener("mouseleave",this._leaveHandler,ce),re.removeEventListener("blur",this._leaveHandler,ce),re.removeEventListener("mousedown",this._mousedownHandler,fe),re.removeEventListener("touchstart",this._mousedownHandler,fe),this._platform.isBrowser&&(window.removeEventListener("mouseup",this._mouseupHandler),window.removeEventListener("touchend",this._touchendHandler))}_isActiveCell(re,je){let Ce=re*this.numCols+je;return re&&(Ce-=this._firstRowOffset),Ce==this.activeCell}_focusActiveCell(re=!0){this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,$.s)(1)).subscribe(()=>{setTimeout(()=>{const je=this._elementRef.nativeElement.querySelector(".mat-calendar-body-active");je&&(re||(this._skipNextFocus=!0),je.focus())})})})}_scheduleFocusActiveCellAfterViewChecked(){this._focusActiveCellAfterViewChecked=!0}_isRangeStart(re){return be(re,this.startValue,this.endValue)}_isRangeEnd(re){return pe(re,this.startValue,this.endValue)}_isInRange(re){return Ze(re,this.startValue,this.endValue,this.isRange)}_isComparisonStart(re){return be(re,this.comparisonStart,this.comparisonEnd)}_isComparisonBridgeStart(re,je,Ce){if(!this._isComparisonStart(re)||this._isRangeStart(re)||!this._isInRange(re))return!1;let ot=this.rows[je][Ce-1];if(!ot){const ut=this.rows[je-1];ot=ut&&ut[ut.length-1]}return ot&&!this._isRangeEnd(ot.compareValue)}_isComparisonBridgeEnd(re,je,Ce){if(!this._isComparisonEnd(re)||this._isRangeEnd(re)||!this._isInRange(re))return!1;let ot=this.rows[je][Ce+1];if(!ot){const ut=this.rows[je+1];ot=ut&&ut[0]}return ot&&!this._isRangeStart(ot.compareValue)}_isComparisonEnd(re){return pe(re,this.comparisonStart,this.comparisonEnd)}_isInComparisonRange(re){return Ze(re,this.comparisonStart,this.comparisonEnd,this.isRange)}_isComparisonIdentical(re){return this.comparisonStart===this.comparisonEnd&&re===this.comparisonStart}_isPreviewStart(re){return be(re,this.previewStart,this.previewEnd)}_isPreviewEnd(re){return pe(re,this.previewStart,this.previewEnd)}_isInPreview(re){return Ze(re,this.previewStart,this.previewEnd,this.isRange)}_getDescribedby(re){return this.isRange?this.startValue===re&&this.endValue===re?`${this._startDateLabelId} ${this._endDateLabelId}`:this.startValue===re?this._startDateLabelId:this.endValue===re?this._endDateLabelId:null:null}_getCellFromElement(re){const je=_e(re);if(je){const Ce=je.getAttribute("data-mat-row"),ot=je.getAttribute("data-mat-col");if(Ce&&ot)return this.rows[parseInt(Ce)][parseInt(ot)]}return null}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.aKT),l.rXU(l.SKi))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["","mat-calendar-body",""]],hostAttrs:[1,"mat-calendar-body"],inputs:{label:"label",rows:"rows",todayValue:"todayValue",startValue:"startValue",endValue:"endValue",labelMinRequiredCells:"labelMinRequiredCells",numCols:"numCols",activeCell:"activeCell",isRange:"isRange",cellAspectRatio:"cellAspectRatio",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",previewStart:"previewStart",previewEnd:"previewEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedValueChange:"selectedValueChange",previewChange:"previewChange",activeDateChange:"activeDateChange",dragStarted:"dragStarted",dragEnded:"dragEnded"},exportAs:["matCalendarBody"],standalone:!0,features:[l.OA$,l.aNF],attrs:Me,decls:7,vars:5,consts:[["aria-hidden","true"],["role","row"],[1,"mat-calendar-body-hidden-label",3,"id"],[1,"mat-calendar-body-label"],[1,"mat-calendar-body-label",3,"paddingTop","paddingBottom"],["role","gridcell",1,"mat-calendar-body-cell-container",3,"width","paddingTop","paddingBottom"],["role","gridcell",1,"mat-calendar-body-cell-container"],["type","button",1,"mat-calendar-body-cell",3,"click","focus","ngClass","tabindex"],[1,"mat-calendar-body-cell-content","mat-focus-indicator"],["aria-hidden","true",1,"mat-calendar-body-cell-preview"]],template:function(je,Ce){1&je&&(l.DNE(0,Te,3,6,"tr",0),l.Z7z(1,n,4,1,"tr",1,l.fX1),l.j41(3,"label",2),l.EFF(4),l.k0s(),l.j41(5,"label",2),l.EFF(6),l.k0s()),2&je&&(l.vxM(Ce._firstRowOffset.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:var(--mat-datepicker-calendar-date-disabled-state-text-color)}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:var(--mat-datepicker-calendar-date-today-disabled-state-outline-color)}.cdk-high-contrast-active .mat-calendar-body-disabled{opacity:.5}.mat-calendar-body-cell-content{top:5%;left:5%;z-index:1;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:90%;height:90%;line-height:1;border-width:1px;border-style:solid;border-radius:999px;color:var(--mat-datepicker-calendar-date-text-color);border-color:var(--mat-datepicker-calendar-date-outline-color)}.mat-calendar-body-cell-content.mat-focus-indicator{position:absolute}.cdk-high-contrast-active .mat-calendar-body-cell-content{border:none}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:var(--mat-datepicker-calendar-date-focus-state-background-color)}@media(hover: hover){.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:var(--mat-datepicker-calendar-date-hover-state-background-color)}}.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-state-background-color);color:var(--mat-datepicker-calendar-date-selected-state-text-color)}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-disabled-state-background-color)}.mat-calendar-body-selected.mat-calendar-body-today{box-shadow:inset 0 0 0 1px var(--mat-datepicker-calendar-date-today-selected-state-outline-color)}.mat-calendar-body-in-range::before{background:var(--mat-datepicker-calendar-date-in-range-state-background-color)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color)}.mat-calendar-body-comparison-bridge-start::before,[dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, var(--mat-datepicker-calendar-date-in-range-state-background-color) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color) 50%)}.mat-calendar-body-comparison-bridge-end::before,[dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, var(--mat-datepicker-calendar-date-in-range-state-background-color) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color) 50%)}.mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:var(--mat-datepicker-calendar-date-in-overlap-range-state-background-color)}.mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:var(--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color)}.cdk-high-contrast-active .mat-datepicker-popup:not(:empty),.cdk-high-contrast-active .mat-calendar-body-cell:not(.mat-calendar-body-in-range) .mat-calendar-body-selected{outline:solid 1px}.cdk-high-contrast-active .mat-calendar-body-today{outline:dotted 1px}.cdk-high-contrast-active .mat-calendar-body-cell::before,.cdk-high-contrast-active .mat-calendar-body-cell::after,.cdk-high-contrast-active .mat-calendar-body-selected{background:none}.cdk-high-contrast-active .mat-calendar-body-in-range::before,.cdk-high-contrast-active .mat-calendar-body-comparison-bridge-start::before,.cdk-high-contrast-active .mat-calendar-body-comparison-bridge-end::before{border-top:solid 1px;border-bottom:solid 1px}.cdk-high-contrast-active .mat-calendar-body-range-start::before{border-left:solid 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-range-start::before{border-left:0;border-right:solid 1px}.cdk-high-contrast-active .mat-calendar-body-range-end::before{border-right:solid 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-range-end::before{border-right:0;border-left:solid 1px}.cdk-high-contrast-active .mat-calendar-body-in-comparison-range::before{border-top:dashed 1px;border-bottom:dashed 1px}.cdk-high-contrast-active .mat-calendar-body-comparison-start::before{border-left:dashed 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-comparison-start::before{border-left:0;border-right:dashed 1px}.cdk-high-contrast-active .mat-calendar-body-comparison-end::before{border-right:dashed 1px}[dir=rtl] .cdk-high-contrast-active .mat-calendar-body-comparison-end::before{border-right:0;border-left:dashed 1px}'],encapsulation:2,changeDetection:0})}return Zt})();function mt(Zt){return"TD"===Zt?.nodeName}function _e(Zt){let bt;return mt(Zt)?bt=Zt:mt(Zt.parentNode)?bt=Zt.parentNode:mt(Zt.parentNode?.parentNode)&&(bt=Zt.parentNode.parentNode),null!=bt?.getAttribute("data-mat-row")?bt:null}function be(Zt,bt,re){return null!==re&&bt!==re&&Zt=bt&&Zt===re}function Ze(Zt,bt,re,je){return je&&null!==bt&&null!==re&&bt!==re&&Zt>=bt&&Zt<=re}function _t(Zt){const bt=Zt.changedTouches[0];return document.elementFromPoint(bt.clientX,bt.clientY)}class at{constructor(bt,re){this.start=bt,this.end=re}}let pt=(()=>{class Zt{constructor(re,je){this.selection=re,this._adapter=je,this._selectionChanged=new d.B,this.selectionChanged=this._selectionChanged,this.selection=re}updateSelection(re,je){const Ce=this.selection;this.selection=re,this._selectionChanged.next({selection:re,source:je,oldValue:Ce})}ngOnDestroy(){this._selectionChanged.complete()}_isValidDateInstance(re){return this._adapter.isDateInstance(re)&&this._adapter.isValid(re)}static#e=this.\u0275fac=function(je){l.QTQ()};static#t=this.\u0275prov=l.jDH({token:Zt,factory:Zt.\u0275fac})}return Zt})(),Xt=(()=>{class Zt extends pt{constructor(re){super(null,re)}add(re){super.updateSelection(re,this)}isValid(){return null!=this.selection&&this._isValidDateInstance(this.selection)}isComplete(){return null!=this.selection}clone(){const re=new Zt(this._adapter);return re.updateSelection(this.selection,this),re}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.KVO(I.MJ))};static#t=this.\u0275prov=l.jDH({token:Zt,factory:Zt.\u0275fac})}return Zt})();const Ie={provide:pt,deps:[[new l.Xx1,new l.kdw,pt],I.MJ],useFactory:function ue(Zt,bt){return Zt||new Xt(bt)}},yt=new l.nKC("MAT_DATE_RANGE_SELECTION_STRATEGY");let Et=(()=>{class Zt{get activeDate(){return this._activeDate}set activeDate(re){const je=this._activeDate,Ce=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ce,this.minDate,this.maxDate),this._hasSameMonthAndYear(je,this._activeDate)||this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof at?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re)),this._setRanges(this._selected)}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}constructor(re,je,Ce,ot,ut){this._changeDetectorRef=re,this._dateFormats=je,this._dateAdapter=Ce,this._dir=ot,this._rangeStrategy=ut,this._rerenderSubscription=T.yU.EMPTY,this.activeDrag=null,this.selectedChange=new l.bkB,this._userSelection=new l.bkB,this.dragStarted=new l.bkB,this.dragEnded=new l.bkB,this.activeDateChange=new l.bkB,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,j.Z)(null)).subscribe(()=>this._init())}ngOnChanges(re){const je=re.comparisonStart||re.comparisonEnd;je&&!je.firstChange&&this._setRanges(this.selected),re.activeDrag&&!this.activeDrag&&this._clearPreview()}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_dateSelected(re){const je=re.value,Ce=this._getDateFromDayOfMonth(je);let ot,ut;this._selected instanceof at?(ot=this._getDateInCurrentMonth(this._selected.start),ut=this._getDateInCurrentMonth(this._selected.end)):ot=ut=this._getDateInCurrentMonth(this._selected),(ot!==je||ut!==je)&&this.selectedChange.emit(Ce),this._userSelection.emit({value:Ce,event:re.event}),this._clearPreview(),this._changeDetectorRef.markForCheck()}_updateActiveDate(re){const Ce=this._activeDate;this.activeDate=this._getDateFromDayOfMonth(re.value),this._dateAdapter.compareDate(Ce,this.activeDate)&&this.activeDateChange.emit(this._activeDate)}_handleCalendarBodyKeydown(re){const je=this._activeDate,Ce=this._isRtl();switch(re.keyCode){case R.UQ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,Ce?1:-1);break;case R.LE:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,Ce?-1:1);break;case R.i7:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,-7);break;case R.n6:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,7);break;case R.yZ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,1-this._dateAdapter.getDate(this._activeDate));break;case R.Kp:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,this._dateAdapter.getNumDaysInMonth(this._activeDate)-this._dateAdapter.getDate(this._activeDate));break;case R.w_:this.activeDate=re.altKey?this._dateAdapter.addCalendarYears(this._activeDate,-1):this._dateAdapter.addCalendarMonths(this._activeDate,-1);break;case R.dB:this.activeDate=re.altKey?this._dateAdapter.addCalendarYears(this._activeDate,1):this._dateAdapter.addCalendarMonths(this._activeDate,1);break;case R.Fm:case R.t6:return this._selectionKeyPressed=!0,void(this._canSelect(this._activeDate)&&re.preventDefault());case R._f:return void(null!=this._previewEnd&&!(0,R.rp)(re)&&(this._clearPreview(),this.activeDrag?this.dragEnded.emit({value:null,event:re}):(this.selectedChange.emit(null),this._userSelection.emit({value:null,event:re})),re.preventDefault(),re.stopPropagation()));default:return}this._dateAdapter.compareDate(je,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===R.t6||re.keyCode===R.Fm)&&(this._selectionKeyPressed&&this._canSelect(this._activeDate)&&this._dateSelected({value:this._dateAdapter.getDate(this._activeDate),event:re}),this._selectionKeyPressed=!1)}_init(){this._setRanges(this.selected),this._todayDate=this._getCellCompareValue(this._dateAdapter.today()),this._monthLabel=this._dateFormats.display.monthLabel?this._dateAdapter.format(this.activeDate,this._dateFormats.display.monthLabel):this._dateAdapter.getMonthNames("short")[this._dateAdapter.getMonth(this.activeDate)].toLocaleUpperCase();let re=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),1);this._firstWeekOffset=(7+this._dateAdapter.getDayOfWeek(re)-this._dateAdapter.getFirstDayOfWeek())%7,this._initWeekdays(),this._createWeekCells(),this._changeDetectorRef.markForCheck()}_focusActiveCell(re){this._matCalendarBody._focusActiveCell(re)}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_previewChanged({event:re,value:je}){if(this._rangeStrategy){const Ce=je?je.rawValue:null,ot=this._rangeStrategy.createPreview(Ce,this.selected,re);if(this._previewStart=this._getCellCompareValue(ot.start),this._previewEnd=this._getCellCompareValue(ot.end),this.activeDrag&&Ce){const ut=this._rangeStrategy.createDrag?.(this.activeDrag.value,this.selected,Ce,re);ut&&(this._previewStart=this._getCellCompareValue(ut.start),this._previewEnd=this._getCellCompareValue(ut.end))}this._changeDetectorRef.detectChanges()}}_dragEnded(re){if(this.activeDrag)if(re.value){const je=this._rangeStrategy?.createDrag?.(this.activeDrag.value,this.selected,re.value,re.event);this.dragEnded.emit({value:je??null,event:re.event})}else this.dragEnded.emit({value:null,event:re.event})}_getDateFromDayOfMonth(re){return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),re)}_initWeekdays(){const re=this._dateAdapter.getFirstDayOfWeek(),je=this._dateAdapter.getDayOfWeekNames("narrow");let ot=this._dateAdapter.getDayOfWeekNames("long").map((ut,ii)=>({long:ut,narrow:je[ii]}));this._weekdays=ot.slice(re).concat(ot.slice(0,re))}_createWeekCells(){const re=this._dateAdapter.getNumDaysInMonth(this.activeDate),je=this._dateAdapter.getDateNames();this._weeks=[[]];for(let Ce=0,ot=this._firstWeekOffset;Ce=0)&&(!this.maxDate||this._dateAdapter.compareDate(re,this.maxDate)<=0)&&(!this.dateFilter||this.dateFilter(re))}_getDateInCurrentMonth(re){return re&&this._hasSameMonthAndYear(re,this.activeDate)?this._dateAdapter.getDate(re):null}_hasSameMonthAndYear(re,je){return!(!re||!je||this._dateAdapter.getMonth(re)!=this._dateAdapter.getMonth(je)||this._dateAdapter.getYear(re)!=this._dateAdapter.getYear(je))}_getCellCompareValue(re){if(re){const je=this._dateAdapter.getYear(re),Ce=this._dateAdapter.getMonth(re),ot=this._dateAdapter.getDate(re);return new Date(je,Ce,ot).getTime()}return null}_isRtl(){return this._dir&&"rtl"===this._dir.value}_setRanges(re){re instanceof at?(this._rangeStart=this._getCellCompareValue(re.start),this._rangeEnd=this._getCellCompareValue(re.end),this._isRange=!0):(this._rangeStart=this._rangeEnd=this._getCellCompareValue(re),this._isRange=!1),this._comparisonRangeStart=this._getCellCompareValue(this.comparisonStart),this._comparisonRangeEnd=this._getCellCompareValue(this.comparisonEnd)}_canSelect(re){return!this.dateFilter||this.dateFilter(re)}_clearPreview(){this._previewStart=this._previewEnd=null}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.gRc),l.rXU(I.de,8),l.rXU(I.MJ,8),l.rXU(z.dS,8),l.rXU(yt,8))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-month-view"]],viewQuery:function(je,Ce){if(1&je&&l.GBs(ke,5),2&je){let ot;l.mGM(ot=l.lsd())&&(Ce._matCalendarBody=ot.first)}},inputs:{activeDate:"activeDate",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName",activeDrag:"activeDrag"},outputs:{selectedChange:"selectedChange",_userSelection:"_userSelection",dragStarted:"dragStarted",dragEnded:"dragEnded",activeDateChange:"activeDateChange"},exportAs:["matMonthView"],standalone:!0,features:[l.OA$,l.aNF],decls:8,vars:14,consts:[["role","grid",1,"mat-calendar-table"],[1,"mat-calendar-table-header"],["scope","col"],["aria-hidden","true"],["colspan","7",1,"mat-calendar-table-header-divider"],["mat-calendar-body","",3,"selectedValueChange","activeDateChange","previewChange","dragStarted","dragEnded","keyup","keydown","label","rows","todayValue","startValue","endValue","comparisonStart","comparisonEnd","previewStart","previewEnd","isRange","labelMinRequiredCells","activeCell","startDateAccessibleName","endDateAccessibleName"],[1,"cdk-visually-hidden"]],template:function(je,Ce){1&je&&(l.j41(0,"table",0)(1,"thead",1)(2,"tr"),l.Z7z(3,c,5,2,"th",2,l.fX1),l.k0s(),l.j41(5,"tr",3),l.nrm(6,"th",4),l.k0s()(),l.j41(7,"tbody",5),l.bIt("selectedValueChange",function(ut){return Ce._dateSelected(ut)})("activeDateChange",function(ut){return Ce._updateActiveDate(ut)})("previewChange",function(ut){return Ce._previewChanged(ut)})("dragStarted",function(ut){return Ce.dragStarted.emit(ut)})("dragEnded",function(ut){return Ce._dragEnded(ut)})("keyup",function(ut){return Ce._handleCalendarBodyKeyup(ut)})("keydown",function(ut){return Ce._handleCalendarBodyKeydown(ut)}),l.k0s()()),2&je&&(l.R7$(3),l.Dyx(Ce._weekdays),l.R7$(4),l.Y8G("label",Ce._monthLabel)("rows",Ce._weeks)("todayValue",Ce._todayDate)("startValue",Ce._rangeStart)("endValue",Ce._rangeEnd)("comparisonStart",Ce._comparisonRangeStart)("comparisonEnd",Ce._comparisonRangeEnd)("previewStart",Ce._previewStart)("previewEnd",Ce._previewEnd)("isRange",Ce._isRange)("labelMinRequiredCells",3)("activeCell",Ce._dateAdapter.getDate(Ce.activeDate)-1)("startDateAccessibleName",Ce.startDateAccessibleName)("endDateAccessibleName",Ce.endDateAccessibleName))},dependencies:[ke],encapsulation:2,changeDetection:0})}return Zt})();const Vt=24;let tt=(()=>{class Zt{get activeDate(){return this._activeDate}set activeDate(re){let je=this._activeDate;const Ce=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ce,this.minDate,this.maxDate),$t(this._dateAdapter,je,this._activeDate,this.minDate,this.maxDate)||this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof at?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re)),this._setSelectedYear(re)}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}constructor(re,je,Ce){this._changeDetectorRef=re,this._dateAdapter=je,this._dir=Ce,this._rerenderSubscription=T.yU.EMPTY,this.selectedChange=new l.bkB,this.yearSelected=new l.bkB,this.activeDateChange=new l.bkB,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,j.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_init(){this._todayYear=this._dateAdapter.getYear(this._dateAdapter.today());const je=this._dateAdapter.getYear(this._activeDate)-zt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate);this._years=[];for(let Ce=0,ot=[];Cethis._createCellForYear(ut))),ot=[]);this._changeDetectorRef.markForCheck()}_yearSelected(re){const je=re.value,Ce=this._dateAdapter.createDate(je,0,1),ot=this._getDateFromYear(je);this.yearSelected.emit(Ce),this.selectedChange.emit(ot)}_updateActiveDate(re){const Ce=this._activeDate;this.activeDate=this._getDateFromYear(re.value),this._dateAdapter.compareDate(Ce,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(re){const je=this._activeDate,Ce=this._isRtl();switch(re.keyCode){case R.UQ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Ce?1:-1);break;case R.LE:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Ce?-1:1);break;case R.i7:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-4);break;case R.n6:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,4);break;case R.yZ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-zt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate));break;case R.Kp:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Vt-zt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)-1);break;case R.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?10*-Vt:-Vt);break;case R.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?10*Vt:Vt);break;case R.Fm:case R.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(je,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked(),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===R.t6||re.keyCode===R.Fm)&&(this._selectionKeyPressed&&this._yearSelected({value:this._dateAdapter.getYear(this._activeDate),event:re}),this._selectionKeyPressed=!1)}_getActiveCell(){return zt(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getDateFromYear(re){const je=this._dateAdapter.getMonth(this.activeDate),Ce=this._dateAdapter.getNumDaysInMonth(this._dateAdapter.createDate(re,je,1));return this._dateAdapter.createDate(re,je,Math.min(this._dateAdapter.getDate(this.activeDate),Ce))}_createCellForYear(re){const je=this._dateAdapter.createDate(re,0,1),Ce=this._dateAdapter.getYearName(je),ot=this.dateClass?this.dateClass(je,"multi-year"):void 0;return new se(re,Ce,Ce,this._shouldEnableYear(re),ot)}_shouldEnableYear(re){if(null==re||this.maxDate&&re>this._dateAdapter.getYear(this.maxDate)||this.minDate&&re{class Zt{get activeDate(){return this._activeDate}set activeDate(re){let je=this._activeDate;const Ce=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ce,this.minDate,this.maxDate),this._dateAdapter.getYear(je)!==this._dateAdapter.getYear(this._activeDate)&&this._init()}get selected(){return this._selected}set selected(re){this._selected=re instanceof at?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re)),this._setSelectedMonth(re)}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}constructor(re,je,Ce,ot){this._changeDetectorRef=re,this._dateFormats=je,this._dateAdapter=Ce,this._dir=ot,this._rerenderSubscription=T.yU.EMPTY,this.selectedChange=new l.bkB,this.monthSelected=new l.bkB,this.activeDateChange=new l.bkB,this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,j.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_monthSelected(re){const je=re.value,Ce=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),je,1);this.monthSelected.emit(Ce);const ot=this._getDateFromMonth(je);this.selectedChange.emit(ot)}_updateActiveDate(re){const Ce=this._activeDate;this.activeDate=this._getDateFromMonth(re.value),this._dateAdapter.compareDate(Ce,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(re){const je=this._activeDate,Ce=this._isRtl();switch(re.keyCode){case R.UQ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,Ce?1:-1);break;case R.LE:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,Ce?-1:1);break;case R.i7:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-4);break;case R.n6:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,4);break;case R.yZ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-this._dateAdapter.getMonth(this._activeDate));break;case R.Kp:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,11-this._dateAdapter.getMonth(this._activeDate));break;case R.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?-10:-1);break;case R.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,re.altKey?10:1);break;case R.Fm:case R.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(je,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),re.preventDefault()}_handleCalendarBodyKeyup(re){(re.keyCode===R.t6||re.keyCode===R.Fm)&&(this._selectionKeyPressed&&this._monthSelected({value:this._dateAdapter.getMonth(this._activeDate),event:re}),this._selectionKeyPressed=!1)}_init(){this._setSelectedMonth(this.selected),this._todayMonth=this._getMonthInCurrentYear(this._dateAdapter.today()),this._yearLabel=this._dateAdapter.getYearName(this.activeDate);let re=this._dateAdapter.getMonthNames("short");this._months=[[0,1,2,3],[4,5,6,7],[8,9,10,11]].map(je=>je.map(Ce=>this._createCellForMonth(Ce,re[Ce]))),this._changeDetectorRef.markForCheck()}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getMonthInCurrentYear(re){return re&&this._dateAdapter.getYear(re)==this._dateAdapter.getYear(this.activeDate)?this._dateAdapter.getMonth(re):null}_getDateFromMonth(re){const je=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),re,1),Ce=this._dateAdapter.getNumDaysInMonth(je);return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),re,Math.min(this._dateAdapter.getDate(this.activeDate),Ce))}_createCellForMonth(re,je){const Ce=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),re,1),ot=this._dateAdapter.format(Ce,this._dateFormats.display.monthYearA11yLabel),ut=this.dateClass?this.dateClass(Ce,"year"):void 0;return new se(re,je.toLocaleUpperCase(),ot,this._shouldEnableMonth(re),ut)}_shouldEnableMonth(re){const je=this._dateAdapter.getYear(this.activeDate);if(null==re||this._isYearAndMonthAfterMaxDate(je,re)||this._isYearAndMonthBeforeMinDate(je,re))return!1;if(!this.dateFilter)return!0;for(let ot=this._dateAdapter.createDate(je,re,1);this._dateAdapter.getMonth(ot)==re;ot=this._dateAdapter.addCalendarDays(ot,1))if(this.dateFilter(ot))return!0;return!1}_isYearAndMonthAfterMaxDate(re,je){if(this.maxDate){const Ce=this._dateAdapter.getYear(this.maxDate),ot=this._dateAdapter.getMonth(this.maxDate);return re>Ce||re===Ce&&je>ot}return!1}_isYearAndMonthBeforeMinDate(re,je){if(this.minDate){const Ce=this._dateAdapter.getYear(this.minDate),ot=this._dateAdapter.getMonth(this.minDate);return re{class Zt{constructor(re,je,Ce,ot,ut){this._intl=re,this.calendar=je,this._dateAdapter=Ce,this._dateFormats=ot,this._id="mat-calendar-header-"+Ae++,this._periodButtonLabelId=`${this._id}-period-label`,this.calendar.stateChanges.subscribe(()=>ut.markForCheck())}get periodButtonText(){return"month"==this.calendar.currentView?this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase():"year"==this.calendar.currentView?this._dateAdapter.getYearName(this.calendar.activeDate):this._intl.formatYearRange(...this._formatMinAndMaxYearLabels())}get periodButtonDescription(){return"month"==this.calendar.currentView?this._dateAdapter.format(this.calendar.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase():"year"==this.calendar.currentView?this._dateAdapter.getYearName(this.calendar.activeDate):this._intl.formatYearRangeLabel(...this._formatMinAndMaxYearLabels())}get periodButtonLabel(){return"month"==this.calendar.currentView?this._intl.switchToMultiYearViewLabel:this._intl.switchToMonthViewLabel}get prevButtonLabel(){return{month:this._intl.prevMonthLabel,year:this._intl.prevYearLabel,"multi-year":this._intl.prevMultiYearLabel}[this.calendar.currentView]}get nextButtonLabel(){return{month:this._intl.nextMonthLabel,year:this._intl.nextYearLabel,"multi-year":this._intl.nextMultiYearLabel}[this.calendar.currentView]}currentPeriodClicked(){this.calendar.currentView="month"==this.calendar.currentView?"multi-year":"month"}previousClicked(){this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,-1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?-1:-Vt)}nextClicked(){this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?1:Vt)}previousEnabled(){return!this.calendar.minDate||!this.calendar.minDate||!this._isSameView(this.calendar.activeDate,this.calendar.minDate)}nextEnabled(){return!this.calendar.maxDate||!this._isSameView(this.calendar.activeDate,this.calendar.maxDate)}_isSameView(re,je){return"month"==this.calendar.currentView?this._dateAdapter.getYear(re)==this._dateAdapter.getYear(je)&&this._dateAdapter.getMonth(re)==this._dateAdapter.getMonth(je):"year"==this.calendar.currentView?this._dateAdapter.getYear(re)==this._dateAdapter.getYear(je):$t(this._dateAdapter,re,je,this.calendar.minDate,this.calendar.maxDate)}_formatMinAndMaxYearLabels(){const je=this._dateAdapter.getYear(this.calendar.activeDate)-zt(this._dateAdapter,this.calendar.activeDate,this.calendar.minDate,this.calendar.maxDate),Ce=je+Vt-1;return[this._dateAdapter.getYearName(this._dateAdapter.createDate(je,0,1)),this._dateAdapter.getYearName(this._dateAdapter.createDate(Ce,0,1))]}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(Ke),l.rXU((0,l.Rfq)(()=>he)),l.rXU(I.MJ,8),l.rXU(I.de,8),l.rXU(l.gRc))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-calendar-header"]],exportAs:["matCalendarHeader"],standalone:!0,features:[l.aNF],ngContentSelectors:m,decls:13,vars:11,consts:[[1,"mat-calendar-header"],[1,"mat-calendar-controls"],[1,"cdk-visually-hidden",3,"id"],["mat-button","","type","button","aria-live","polite",1,"mat-calendar-period-button",3,"click"],["aria-hidden","true"],["viewBox","0 0 10 5","focusable","false","aria-hidden","true",1,"mat-calendar-arrow"],["points","0,0 5,5 10,0"],[1,"mat-calendar-spacer"],["mat-icon-button","","type","button",1,"mat-calendar-previous-button",3,"click","disabled"],["mat-icon-button","","type","button",1,"mat-calendar-next-button",3,"click","disabled"]],template:function(je,Ce){1&je&&(l.NAR(),l.j41(0,"div",0)(1,"div",1)(2,"label",2),l.EFF(3),l.k0s(),l.j41(4,"button",3),l.bIt("click",function(){return Ce.currentPeriodClicked()}),l.j41(5,"span",4),l.EFF(6),l.k0s(),l.qSk(),l.j41(7,"svg",5),l.nrm(8,"polygon",6),l.k0s()(),l.joV(),l.nrm(9,"div",7),l.SdG(10),l.j41(11,"button",8),l.bIt("click",function(){return Ce.previousClicked()}),l.k0s(),l.j41(12,"button",9),l.bIt("click",function(){return Ce.nextClicked()}),l.k0s()()()),2&je&&(l.R7$(2),l.Y8G("id",Ce._periodButtonLabelId),l.R7$(),l.JRh(Ce.periodButtonDescription),l.R7$(),l.BMQ("aria-label",Ce.periodButtonLabel)("aria-describedby",Ce._periodButtonLabelId),l.R7$(2),l.JRh(Ce.periodButtonText),l.R7$(),l.AVh("mat-calendar-invert","month"!==Ce.calendar.currentView),l.R7$(4),l.Y8G("disabled",!Ce.previousEnabled()),l.BMQ("aria-label",Ce.prevButtonLabel),l.R7$(),l.Y8G("disabled",!Ce.nextEnabled()),l.BMQ("aria-label",Ce.nextButtonLabel))},dependencies:[x.$z,x.iY],encapsulation:2,changeDetection:0})}return Zt})(),he=(()=>{class Zt{get startAt(){return this._startAt}set startAt(re){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get selected(){return this._selected}set selected(re){this._selected=re instanceof at?re:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get minDate(){return this._minDate}set minDate(re){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get maxDate(){return this._maxDate}set maxDate(re){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get activeDate(){return this._clampedActiveDate}set activeDate(re){this._clampedActiveDate=this._dateAdapter.clampDate(re,this.minDate,this.maxDate),this.stateChanges.next(),this._changeDetectorRef.markForCheck()}get currentView(){return this._currentView}set currentView(re){const je=this._currentView!==re?re:null;this._currentView=re,this._moveFocusOnNextTick=!0,this._changeDetectorRef.markForCheck(),je&&this.viewChanged.emit(je)}constructor(re,je,Ce,ot){this._dateAdapter=je,this._dateFormats=Ce,this._changeDetectorRef=ot,this._moveFocusOnNextTick=!1,this.startView="month",this.selectedChange=new l.bkB,this.yearSelected=new l.bkB,this.monthSelected=new l.bkB,this.viewChanged=new l.bkB(!0),this._userSelection=new l.bkB,this._userDragDrop=new l.bkB,this._activeDrag=null,this.stateChanges=new d.B,this._intlChanges=re.changes.subscribe(()=>{ot.markForCheck(),this.stateChanges.next()})}ngAfterContentInit(){this._calendarHeaderPortal=new w.A8(this.headerComponent||we),this.activeDate=this.startAt||this._dateAdapter.today(),this._currentView=this.startView}ngAfterViewChecked(){this._moveFocusOnNextTick&&(this._moveFocusOnNextTick=!1,this.focusActiveCell())}ngOnDestroy(){this._intlChanges.unsubscribe(),this.stateChanges.complete()}ngOnChanges(re){const je=re.minDate&&!this._dateAdapter.sameDate(re.minDate.previousValue,re.minDate.currentValue)?re.minDate:void 0,Ce=re.maxDate&&!this._dateAdapter.sameDate(re.maxDate.previousValue,re.maxDate.currentValue)?re.maxDate:void 0,ot=je||Ce||re.dateFilter;if(ot&&!ot.firstChange){const ut=this._getCurrentViewComponent();ut&&(this._changeDetectorRef.detectChanges(),ut._init())}this.stateChanges.next()}focusActiveCell(){this._getCurrentViewComponent()._focusActiveCell(!1)}updateTodaysDate(){this._getCurrentViewComponent()._init()}_dateSelected(re){const je=re.value;(this.selected instanceof at||je&&!this._dateAdapter.sameDate(je,this.selected))&&this.selectedChange.emit(je),this._userSelection.emit(re)}_yearSelectedInMultiYearView(re){this.yearSelected.emit(re)}_monthSelectedInYearView(re){this.monthSelected.emit(re)}_goToDateInView(re,je){this.activeDate=re,this.currentView=je}_dragStarted(re){this._activeDrag=re}_dragEnded(re){this._activeDrag&&(re.value&&this._userDragDrop.emit(re),this._activeDrag=null)}_getCurrentViewComponent(){return this.monthView||this.yearView||this.multiYearView}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(Ke),l.rXU(I.MJ,8),l.rXU(I.de,8),l.rXU(l.gRc))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-calendar"]],viewQuery:function(je,Ce){if(1&je&&(l.GBs(Et,5),l.GBs(dt,5),l.GBs(tt,5)),2&je){let ot;l.mGM(ot=l.lsd())&&(Ce.monthView=ot.first),l.mGM(ot=l.lsd())&&(Ce.yearView=ot.first),l.mGM(ot=l.lsd())&&(Ce.multiYearView=ot.first)}},hostAttrs:[1,"mat-calendar"],inputs:{headerComponent:"headerComponent",startAt:"startAt",startView:"startView",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedChange:"selectedChange",yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",_userSelection:"_userSelection",_userDragDrop:"_userDragDrop"},exportAs:["matCalendar"],standalone:!0,features:[l.Jv_([Ie]),l.OA$,l.aNF],decls:5,vars:2,consts:[[3,"cdkPortalOutlet"],["cdkMonitorSubtreeFocus","","tabindex","-1",1,"mat-calendar-content"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","activeDrag"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass"],[3,"activeDateChange","_userSelection","dragStarted","dragEnded","activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","activeDrag"],[3,"activeDateChange","monthSelected","selectedChange","activeDate","selected","dateFilter","maxDate","minDate","dateClass"],[3,"activeDateChange","yearSelected","selectedChange","activeDate","selected","dateFilter","maxDate","minDate","dateClass"]],template:function(je,Ce){if(1&je&&(l.DNE(0,h,0,0,"ng-template",0),l.j41(1,"div",1),l.DNE(2,C,1,11,"mat-month-view",2)(3,k,1,6,"mat-year-view",3)(4,L,1,6,"mat-multi-year-view",3),l.k0s()),2&je){let ot;l.Y8G("cdkPortalOutlet",Ce._calendarHeaderPortal),l.R7$(2),l.vxM("month"===(ot=Ce.currentView)?2:"year"===ot?3:"multi-year"===ot?4:-1)}},dependencies:[w.I3,e.vR,Et,dt,tt],styles:['.mat-calendar{display:block;font-family:var(--mat-datepicker-calendar-text-font);font-size:var(--mat-datepicker-calendar-text-size)}.mat-calendar-header{padding:8px 8px 0 8px}.mat-calendar-content{padding:0 8px 8px 8px;outline:none}.mat-calendar-controls{display:flex;align-items:center;margin:5% calc(4.7142857143% - 16px)}.mat-calendar-spacer{flex:1 1 auto}.mat-calendar-period-button{min-width:0;margin:0 8px;font-size:var(--mat-datepicker-calendar-period-button-text-size);font-weight:var(--mat-datepicker-calendar-period-button-text-weight);--mdc-text-button-label-text-color:var(--mat-datepicker-calendar-period-button-text-color)}.mat-calendar-arrow{display:inline-block;width:10px;height:5px;margin:0 0 0 5px;vertical-align:middle;fill:var(--mat-datepicker-calendar-period-button-icon-color)}.mat-calendar-arrow.mat-calendar-invert{transform:rotate(180deg)}[dir=rtl] .mat-calendar-arrow{margin:0 5px 0 0}.cdk-high-contrast-active .mat-calendar-arrow{fill:CanvasText}.mat-calendar-previous-button,.mat-calendar-next-button{position:relative}.mat-datepicker-content .mat-calendar-previous-button:not(.mat-mdc-button-disabled),.mat-datepicker-content .mat-calendar-next-button:not(.mat-mdc-button-disabled){color:var(--mat-datepicker-calendar-navigation-button-icon-color)}.mat-calendar-previous-button::after,.mat-calendar-next-button::after{top:0;left:0;right:0;bottom:0;position:absolute;content:"";margin:15.5px;border:0 solid currentColor;border-top-width:2px}[dir=rtl] .mat-calendar-previous-button,[dir=rtl] .mat-calendar-next-button{transform:rotate(180deg)}.mat-calendar-previous-button::after{border-left-width:2px;transform:translateX(2px) rotate(-45deg)}.mat-calendar-next-button::after{border-right-width:2px;transform:translateX(-2px) rotate(45deg)}.mat-calendar-table{border-spacing:0;border-collapse:collapse;width:100%}.mat-calendar-table-header th{text-align:center;padding:0 0 8px 0;color:var(--mat-datepicker-calendar-header-text-color);font-size:var(--mat-datepicker-calendar-header-text-size);font-weight:var(--mat-datepicker-calendar-header-text-weight)}.mat-calendar-table-header-divider{position:relative;height:1px}.mat-calendar-table-header-divider::after{content:"";position:absolute;top:0;left:-8px;right:-8px;height:1px;background:var(--mat-datepicker-calendar-header-divider-color)}.mat-calendar-body-cell-content::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 3px)*-1)}.mat-calendar-body-cell:focus .mat-focus-indicator::before{content:""}'],encapsulation:2,changeDetection:0})}return Zt})();const q={transformPanel:(0,ee.hZ)("transformPanel",[(0,ee.kY)("void => enter-dropdown",(0,ee.i0)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,ee.i7)([(0,ee.iF)({opacity:0,transform:"scale(1, 0.8)"}),(0,ee.iF)({opacity:1,transform:"scale(1, 1)"})]))),(0,ee.kY)("void => enter-dialog",(0,ee.i0)("150ms cubic-bezier(0, 0, 0.2, 1)",(0,ee.i7)([(0,ee.iF)({opacity:0,transform:"scale(0.7)"}),(0,ee.iF)({transform:"none",opacity:1})]))),(0,ee.kY)("* => void",(0,ee.i0)("100ms linear",(0,ee.iF)({opacity:0})))]),fadeInCalendar:(0,ee.hZ)("fadeInCalendar",[(0,ee.wk)("void",(0,ee.iF)({opacity:0})),(0,ee.wk)("enter",(0,ee.iF)({opacity:1})),(0,ee.kY)("void => *",(0,ee.i0)("120ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)"))])};let Re=0;const Ne=new l.nKC("mat-datepicker-scroll-strategy",{providedIn:"root",factory:()=>{const Zt=(0,l.WQX)(t.hJ);return()=>Zt.scrollStrategies.reposition()}}),$e={provide:Ne,deps:[t.hJ],useFactory:function gt(Zt){return()=>Zt.scrollStrategies.reposition()}};let Fe=(()=>{class Zt{constructor(re,je,Ce,ot,ut,ii){this._elementRef=re,this._changeDetectorRef=je,this._globalModel=Ce,this._dateAdapter=ot,this._rangeSelectionStrategy=ut,this._subscriptions=new T.yU,this._animationDone=new d.B,this._isAnimating=!1,this._actionsPortal=null,this._closeButtonText=ii.closeCalendarLabel}ngOnInit(){this._animationState=this.datepicker.touchUi?"enter-dialog":"enter-dropdown"}ngAfterViewInit(){this._subscriptions.add(this.datepicker.stateChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})),this._calendar.focusActiveCell()}ngOnDestroy(){this._subscriptions.unsubscribe(),this._animationDone.complete()}_handleUserSelection(re){const je=this._model.selection,Ce=re.value,ot=je instanceof at;if(ot&&this._rangeSelectionStrategy){const ut=this._rangeSelectionStrategy.selectionFinished(Ce,je,re.event);this._model.updateSelection(ut,this)}else Ce&&(ot||!this._dateAdapter.sameDate(Ce,je))&&this._model.add(Ce);(!this._model||this._model.isComplete())&&!this._actionsPortal&&this.datepicker.close()}_handleUserDragDrop(re){this._model.updateSelection(re.value,this)}_startExitAnimation(){this._animationState="void",this._changeDetectorRef.markForCheck()}_handleAnimationEvent(re){this._isAnimating="start"===re.phaseName,this._isAnimating||this._animationDone.next()}_getSelected(){return this._model.selection}_applyPendingSelection(){this._model!==this._globalModel&&this._globalModel.updateSelection(this._model.selection,this)}_assignActions(re,je){this._model=re?this._globalModel.clone():this._globalModel,this._actionsPortal=re,je&&this._changeDetectorRef.detectChanges()}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.aKT),l.rXU(l.gRc),l.rXU(pt),l.rXU(I.MJ),l.rXU(yt,8),l.rXU(Ke))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-datepicker-content"]],viewQuery:function(je,Ce){if(1&je&&l.GBs(he,5),2&je){let ot;l.mGM(ot=l.lsd())&&(Ce._calendar=ot.first)}},hostAttrs:[1,"mat-datepicker-content"],hostVars:5,hostBindings:function(je,Ce){1&je&&l.Kam("@transformPanel.start",function(ut){return Ce._handleAnimationEvent(ut)})("@transformPanel.done",function(ut){return Ce._handleAnimationEvent(ut)}),2&je&&(l.zvX("@transformPanel",Ce._animationState),l.HbH(Ce.color?"mat-"+Ce.color:""),l.AVh("mat-datepicker-content-touch",Ce.datepicker.touchUi))},inputs:{color:"color"},exportAs:["matDatepickerContent"],standalone:!0,features:[l.aNF],decls:5,vars:27,consts:[["cdkTrapFocus","","role","dialog",1,"mat-datepicker-content-container"],[3,"yearSelected","monthSelected","viewChanged","_userSelection","_userDragDrop","id","startAt","startView","minDate","maxDate","dateFilter","headerComponent","selected","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName"],[3,"cdkPortalOutlet"],["type","button","mat-raised-button","",1,"mat-datepicker-close-button",3,"focus","blur","click","color"]],template:function(je,Ce){if(1&je&&(l.j41(0,"div",0)(1,"mat-calendar",1),l.bIt("yearSelected",function(ut){return Ce.datepicker._selectYear(ut)})("monthSelected",function(ut){return Ce.datepicker._selectMonth(ut)})("viewChanged",function(ut){return Ce.datepicker._viewChanged(ut)})("_userSelection",function(ut){return Ce._handleUserSelection(ut)})("_userDragDrop",function(ut){return Ce._handleUserDragDrop(ut)}),l.k0s(),l.DNE(2,_,0,0,"ng-template",2),l.j41(3,"button",3),l.bIt("focus",function(){return Ce._closeButtonFocused=!0})("blur",function(){return Ce._closeButtonFocused=!1})("click",function(){return Ce.datepicker.close()}),l.EFF(4),l.k0s()()),2&je){let ot;l.AVh("mat-datepicker-content-container-with-custom-header",Ce.datepicker.calendarHeaderComponent)("mat-datepicker-content-container-with-actions",Ce._actionsPortal),l.BMQ("aria-modal",!0)("aria-labelledby",null!==(ot=Ce._dialogLabelId)&&void 0!==ot?ot:void 0),l.R7$(),l.HbH(Ce.datepicker.panelClass),l.Y8G("id",Ce.datepicker.id)("startAt",Ce.datepicker.startAt)("startView",Ce.datepicker.startView)("minDate",Ce.datepicker._getMinDate())("maxDate",Ce.datepicker._getMaxDate())("dateFilter",Ce.datepicker._getDateFilter())("headerComponent",Ce.datepicker.calendarHeaderComponent)("selected",Ce._getSelected())("dateClass",Ce.datepicker.dateClass)("comparisonStart",Ce.comparisonStart)("comparisonEnd",Ce.comparisonEnd)("@fadeInCalendar","enter")("startDateAccessibleName",Ce.startDateAccessibleName)("endDateAccessibleName",Ce.endDateAccessibleName),l.R7$(),l.Y8G("cdkPortalOutlet",Ce._actionsPortal),l.R7$(),l.AVh("cdk-visually-hidden",!Ce._closeButtonFocused),l.Y8G("color",Ce.color||"primary"),l.R7$(),l.JRh(Ce._closeButtonText)}},dependencies:[e.kB,he,w.I3,x.$z],styles:[".mat-datepicker-content{display:block;border-radius:4px;background-color:var(--mat-datepicker-calendar-container-background-color);color:var(--mat-datepicker-calendar-container-text-color);box-shadow:var(--mat-datepicker-calendar-container-elevation-shadow);border-radius:var(--mat-datepicker-calendar-container-shape)}.mat-datepicker-content .mat-calendar{width:296px;height:354px}.mat-datepicker-content .mat-datepicker-content-container-with-custom-header .mat-calendar{height:auto}.mat-datepicker-content .mat-datepicker-close-button{position:absolute;top:100%;left:0;margin-top:8px}.ng-animating .mat-datepicker-content .mat-datepicker-close-button{display:none}.mat-datepicker-content-container{display:flex;flex-direction:column;justify-content:space-between}.mat-datepicker-content-touch{display:block;max-height:80vh;box-shadow:var(--mat-datepicker-calendar-container-touch-elevation-shadow);border-radius:var(--mat-datepicker-calendar-container-touch-shape);position:relative;overflow:visible}.mat-datepicker-content-touch .mat-datepicker-content-container{min-height:312px;max-height:788px;min-width:250px;max-width:750px}.mat-datepicker-content-touch .mat-calendar{width:100%;height:auto}@media all and (orientation: landscape){.mat-datepicker-content-touch .mat-datepicker-content-container{width:64vh;height:80vh}}@media all and (orientation: portrait){.mat-datepicker-content-touch .mat-datepicker-content-container{width:80vw;height:100vw}.mat-datepicker-content-touch .mat-datepicker-content-container-with-actions{height:115vw}}"],encapsulation:2,data:{animation:[q.transformPanel,q.fadeInCalendar]},changeDetection:0})}return Zt})(),Ge=(()=>{class Zt{get startAt(){return this._startAt||(this.datepickerInput?this.datepickerInput.getStartValue():null)}set startAt(re){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re))}get color(){return this._color||(this.datepickerInput?this.datepickerInput.getThemePalette():void 0)}set color(re){this._color=re}get disabled(){return void 0===this._disabled&&this.datepickerInput?this.datepickerInput.disabled:!!this._disabled}set disabled(re){re!==this._disabled&&(this._disabled=re,this.stateChanges.next(void 0))}get panelClass(){return this._panelClass}set panelClass(re){this._panelClass=(0,J.cc)(re)}get opened(){return this._opened}set opened(re){re?this.open():this.close()}_getMinDate(){return this.datepickerInput&&this.datepickerInput.min}_getMaxDate(){return this.datepickerInput&&this.datepickerInput.max}_getDateFilter(){return this.datepickerInput&&this.datepickerInput.dateFilter}constructor(re,je,Ce,ot,ut,ii,si){this._overlay=re,this._ngZone=je,this._viewContainerRef=Ce,this._dateAdapter=ut,this._dir=ii,this._model=si,this._inputStateChanges=T.yU.EMPTY,this._document=(0,l.WQX)(S.qQ),this.startView="month",this.touchUi=!1,this.xPosition="start",this.yPosition="below",this.restoreFocus=!0,this.yearSelected=new l.bkB,this.monthSelected=new l.bkB,this.viewChanged=new l.bkB(!0),this.openedStream=new l.bkB,this.closedStream=new l.bkB,this._opened=!1,this.id="mat-datepicker-"+Re++,this._focusedElementBeforeOpen=null,this._backdropHarnessClass=`${this.id}-backdrop`,this.stateChanges=new d.B,this._scrollStrategy=ot}ngOnChanges(re){const je=re.xPosition||re.yPosition;if(je&&!je.firstChange&&this._overlayRef){const Ce=this._overlayRef.getConfig().positionStrategy;Ce instanceof t.rW&&(this._setConnectedPositions(Ce),this.opened&&this._overlayRef.updatePosition())}this.stateChanges.next(void 0)}ngOnDestroy(){this._destroyOverlay(),this.close(),this._inputStateChanges.unsubscribe(),this.stateChanges.complete()}select(re){this._model.add(re)}_selectYear(re){this.yearSelected.emit(re)}_selectMonth(re){this.monthSelected.emit(re)}_viewChanged(re){this.viewChanged.emit(re)}registerInput(re){return this._inputStateChanges.unsubscribe(),this.datepickerInput=re,this._inputStateChanges=re.stateChanges.subscribe(()=>this.stateChanges.next(void 0)),this._model}registerActions(re){this._actionsPortal=re,this._componentRef?.instance._assignActions(re,!0)}removeActions(re){re===this._actionsPortal&&(this._actionsPortal=null,this._componentRef?.instance._assignActions(null,!0))}open(){this._opened||this.disabled||this._componentRef?.instance._isAnimating||(this._focusedElementBeforeOpen=(0,W.vc)(),this._openOverlay(),this._opened=!0,this.openedStream.emit())}close(){if(!this._opened||this._componentRef?.instance._isAnimating)return;const re=this.restoreFocus&&this._focusedElementBeforeOpen&&"function"==typeof this._focusedElementBeforeOpen.focus,je=()=>{this._opened&&(this._opened=!1,this.closedStream.emit())};if(this._componentRef){const{instance:Ce,location:ot}=this._componentRef;Ce._startExitAnimation(),Ce._animationDone.pipe((0,$.s)(1)).subscribe(()=>{const ut=this._document.activeElement;re&&(!ut||ut===this._document.activeElement||ot.nativeElement.contains(ut))&&this._focusedElementBeforeOpen.focus(),this._focusedElementBeforeOpen=null,this._destroyOverlay()})}re?setTimeout(je):je()}_applyPendingSelection(){this._componentRef?.instance?._applyPendingSelection()}_forwardContentValues(re){re.datepicker=this,re.color=this.color,re._dialogLabelId=this.datepickerInput.getOverlayLabelId(),re._assignActions(this._actionsPortal,!1)}_openOverlay(){this._destroyOverlay();const re=this.touchUi,je=new w.A8(Fe,this._viewContainerRef),Ce=this._overlayRef=this._overlay.create(new t.rR({positionStrategy:re?this._getDialogStrategy():this._getDropdownStrategy(),hasBackdrop:!0,backdropClass:[re?"cdk-overlay-dark-backdrop":"mat-overlay-transparent-backdrop",this._backdropHarnessClass],direction:this._dir,scrollStrategy:re?this._overlay.scrollStrategies.block():this._scrollStrategy(),panelClass:"mat-datepicker-"+(re?"dialog":"popup")}));this._getCloseStream(Ce).subscribe(ot=>{ot&&ot.preventDefault(),this.close()}),Ce.keydownEvents().subscribe(ot=>{const ut=ot.keyCode;(ut===R.i7||ut===R.n6||ut===R.UQ||ut===R.LE||ut===R.w_||ut===R.dB)&&ot.preventDefault()}),this._componentRef=Ce.attach(je),this._forwardContentValues(this._componentRef.instance),re||this._ngZone.onStable.pipe((0,$.s)(1)).subscribe(()=>Ce.updatePosition())}_destroyOverlay(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=this._componentRef=null)}_getDialogStrategy(){return this._overlay.position().global().centerHorizontally().centerVertically()}_getDropdownStrategy(){const re=this._overlay.position().flexibleConnectedTo(this.datepickerInput.getConnectedOverlayOrigin()).withTransformOriginOn(".mat-datepicker-content").withFlexibleDimensions(!1).withViewportMargin(8).withLockedPosition();return this._setConnectedPositions(re)}_setConnectedPositions(re){const je="end"===this.xPosition?"end":"start",Ce="start"===je?"end":"start",ot="above"===this.yPosition?"bottom":"top",ut="top"===ot?"bottom":"top";return re.withPositions([{originX:je,originY:ut,overlayX:je,overlayY:ot},{originX:je,originY:ot,overlayX:je,overlayY:ut},{originX:Ce,originY:ut,overlayX:Ce,overlayY:ot},{originX:Ce,originY:ot,overlayX:Ce,overlayY:ut}])}_getCloseStream(re){const je=["ctrlKey","shiftKey","metaKey"];return(0,y.h)(re.backdropClick(),re.detachments(),re.keydownEvents().pipe((0,Q.p)(Ce=>Ce.keyCode===R._f&&!(0,R.rp)(Ce)||this.datepickerInput&&(0,R.rp)(Ce,"altKey")&&Ce.keyCode===R.i7&&je.every(ot=>!(0,R.rp)(Ce,ot)))))}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(t.hJ),l.rXU(l.SKi),l.rXU(l.c1b),l.rXU(Ne),l.rXU(I.MJ,8),l.rXU(z.dS,8),l.rXU(pt))};static#t=this.\u0275dir=l.FsC({type:Zt,inputs:{calendarHeaderComponent:"calendarHeaderComponent",startAt:"startAt",startView:"startView",color:"color",touchUi:[2,"touchUi","touchUi",l.L39],disabled:[2,"disabled","disabled",l.L39],xPosition:"xPosition",yPosition:"yPosition",restoreFocus:[2,"restoreFocus","restoreFocus",l.L39],dateClass:"dateClass",panelClass:"panelClass",opened:[2,"opened","opened",l.L39]},outputs:{yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",openedStream:"opened",closedStream:"closed"},features:[l.GFd,l.OA$]})}return Zt})(),et=(()=>{class Zt extends Ge{static#e=this.\u0275fac=(()=>{let re;return function(Ce){return(re||(re=l.xGo(Zt)))(Ce||Zt)}})();static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-datepicker"]],exportAs:["matDatepicker"],standalone:!0,features:[l.Jv_([Ie,{provide:Ge,useExisting:Zt}]),l.Vt3,l.aNF],decls:0,vars:0,template:function(je,Ce){},encapsulation:2,changeDetection:0})}return Zt})();class st{constructor(bt,re){this.target=bt,this.targetElement=re,this.value=this.target.value}}let Tt=(()=>{class Zt{get value(){return this._model?this._getValueFromModel(this._model.selection):this._pendingValue}set value(re){this._assignValueProgrammatically(re)}get disabled(){return!!this._disabled||this._parentDisabled()}set disabled(re){const je=re,Ce=this._elementRef.nativeElement;this._disabled!==je&&(this._disabled=je,this.stateChanges.next(void 0)),je&&this._isInitialized&&Ce.blur&&Ce.blur()}_getValidators(){return[this._parseValidator,this._minValidator,this._maxValidator,this._filterValidator]}_registerModel(re){this._model=re,this._valueChangesSubscription.unsubscribe(),this._pendingValue&&this._assignValue(this._pendingValue),this._valueChangesSubscription=this._model.selectionChanged.subscribe(je=>{if(this._shouldHandleChangeEvent(je)){const Ce=this._getValueFromModel(je.selection);this._lastValueValid=this._isValidValue(Ce),this._cvaOnChange(Ce),this._onTouched(),this._formatValue(Ce),this.dateInput.emit(new st(this,this._elementRef.nativeElement)),this.dateChange.emit(new st(this,this._elementRef.nativeElement))}})}constructor(re,je,Ce){this._elementRef=re,this._dateAdapter=je,this._dateFormats=Ce,this.dateChange=new l.bkB,this.dateInput=new l.bkB,this.stateChanges=new d.B,this._onTouched=()=>{},this._validatorOnChange=()=>{},this._cvaOnChange=()=>{},this._valueChangesSubscription=T.yU.EMPTY,this._localeSubscription=T.yU.EMPTY,this._parseValidator=()=>this._lastValueValid?null:{matDatepickerParse:{text:this._elementRef.nativeElement.value}},this._filterValidator=ot=>{const ut=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(ot.value));return!ut||this._matchesFilter(ut)?null:{matDatepickerFilter:!0}},this._minValidator=ot=>{const ut=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(ot.value)),ii=this._getMinDate();return!ii||!ut||this._dateAdapter.compareDate(ii,ut)<=0?null:{matDatepickerMin:{min:ii,actual:ut}}},this._maxValidator=ot=>{const ut=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(ot.value)),ii=this._getMaxDate();return!ii||!ut||this._dateAdapter.compareDate(ii,ut)>=0?null:{matDatepickerMax:{max:ii,actual:ut}}},this._lastValueValid=!1,this._localeSubscription=je.localeChanges.subscribe(()=>{this._assignValueProgrammatically(this.value)})}ngAfterViewInit(){this._isInitialized=!0}ngOnChanges(re){(function mi(Zt,bt){const re=Object.keys(Zt);for(let je of re){const{previousValue:Ce,currentValue:ot}=Zt[je];if(!bt.isDateInstance(Ce)||!bt.isDateInstance(ot))return!0;if(!bt.sameDate(Ce,ot))return!0}return!1})(re,this._dateAdapter)&&this.stateChanges.next(void 0)}ngOnDestroy(){this._valueChangesSubscription.unsubscribe(),this._localeSubscription.unsubscribe(),this.stateChanges.complete()}registerOnValidatorChange(re){this._validatorOnChange=re}validate(re){return this._validator?this._validator(re):null}writeValue(re){this._assignValueProgrammatically(re)}registerOnChange(re){this._cvaOnChange=re}registerOnTouched(re){this._onTouched=re}setDisabledState(re){this.disabled=re}_onKeydown(re){(0,R.rp)(re,"altKey")&&re.keyCode===R.n6&&["ctrlKey","shiftKey","metaKey"].every(ot=>!(0,R.rp)(re,ot))&&!this._elementRef.nativeElement.readOnly&&(this._openPopup(),re.preventDefault())}_onInput(re){const je=this._lastValueValid;let Ce=this._dateAdapter.parse(re,this._dateFormats.parse.dateInput);this._lastValueValid=this._isValidValue(Ce),Ce=this._dateAdapter.getValidDateOrNull(Ce);const ot=!this._dateAdapter.sameDate(Ce,this.value);!Ce||ot?this._cvaOnChange(Ce):(re&&!this.value&&this._cvaOnChange(Ce),je!==this._lastValueValid&&this._validatorOnChange()),ot&&(this._assignValue(Ce),this.dateInput.emit(new st(this,this._elementRef.nativeElement)))}_onChange(){this.dateChange.emit(new st(this,this._elementRef.nativeElement))}_onBlur(){this.value&&this._formatValue(this.value),this._onTouched()}_formatValue(re){this._elementRef.nativeElement.value=null!=re?this._dateAdapter.format(re,this._dateFormats.display.dateInput):""}_assignValue(re){this._model?(this._assignValueToModel(re),this._pendingValue=null):this._pendingValue=re}_isValidValue(re){return!re||this._dateAdapter.isValid(re)}_parentDisabled(){return!1}_assignValueProgrammatically(re){re=this._dateAdapter.deserialize(re),this._lastValueValid=this._isValidValue(re),re=this._dateAdapter.getValidDateOrNull(re),this._assignValue(re),this._formatValue(re)}_matchesFilter(re){const je=this._getDateFilter();return!je||je(re)}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.aKT),l.rXU(I.MJ,8),l.rXU(I.de,8))};static#t=this.\u0275dir=l.FsC({type:Zt,inputs:{value:"value",disabled:[2,"disabled","disabled",l.L39]},outputs:{dateChange:"dateChange",dateInput:"dateInput"},standalone:!0,features:[l.GFd,l.OA$]})}return Zt})();const Kt={provide:ie.kq,useExisting:(0,l.Rfq)(()=>Xi),multi:!0},Pt={provide:ie.cz,useExisting:(0,l.Rfq)(()=>Xi),multi:!0};let Xi=(()=>{class Zt extends Tt{set matDatepicker(re){re&&(this._datepicker=re,this._closedSubscription=re.closedStream.subscribe(()=>this._onTouched()),this._registerModel(re.registerInput(this)))}get min(){return this._min}set min(re){const je=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re));this._dateAdapter.sameDate(je,this._min)||(this._min=je,this._validatorOnChange())}get max(){return this._max}set max(re){const je=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(re));this._dateAdapter.sameDate(je,this._max)||(this._max=je,this._validatorOnChange())}get dateFilter(){return this._dateFilter}set dateFilter(re){const je=this._matchesFilter(this.value);this._dateFilter=re,this._matchesFilter(this.value)!==je&&this._validatorOnChange()}constructor(re,je,Ce,ot){super(re,je,Ce),this._formField=ot,this._closedSubscription=T.yU.EMPTY,this._validator=ie.k0.compose(super._getValidators())}getConnectedOverlayOrigin(){return this._formField?this._formField.getConnectedOverlayOrigin():this._elementRef}getOverlayLabelId(){return this._formField?this._formField.getLabelId():this._elementRef.nativeElement.getAttribute("aria-labelledby")}getThemePalette(){return this._formField?this._formField.color:void 0}getStartValue(){return this.value}ngOnDestroy(){super.ngOnDestroy(),this._closedSubscription.unsubscribe()}_openPopup(){this._datepicker&&this._datepicker.open()}_getValueFromModel(re){return re}_assignValueToModel(re){this._model&&this._model.updateSelection(re,this)}_getMinDate(){return this._min}_getMaxDate(){return this._max}_getDateFilter(){return this._dateFilter}_shouldHandleChangeEvent(re){return re.source!==this}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(l.aKT),l.rXU(I.MJ,8),l.rXU(I.de,8),l.rXU(ge.xb,8))};static#t=this.\u0275dir=l.FsC({type:Zt,selectors:[["input","matDatepicker",""]],hostAttrs:[1,"mat-datepicker-input"],hostVars:6,hostBindings:function(je,Ce){1&je&&l.bIt("input",function(ut){return Ce._onInput(ut.target.value)})("change",function(){return Ce._onChange()})("blur",function(){return Ce._onBlur()})("keydown",function(ut){return Ce._onKeydown(ut)}),2&je&&(l.Mr5("disabled",Ce.disabled),l.BMQ("aria-haspopup",Ce._datepicker?"dialog":null)("aria-owns",(null==Ce._datepicker?null:Ce._datepicker.opened)&&Ce._datepicker.id||null)("min",Ce.min?Ce._dateAdapter.toIso8601(Ce.min):null)("max",Ce.max?Ce._dateAdapter.toIso8601(Ce.max):null)("data-mat-calendar",Ce._datepicker?Ce._datepicker.id:null))},inputs:{matDatepicker:"matDatepicker",min:"min",max:"max",dateFilter:[0,"matDatepickerFilter","dateFilter"]},exportAs:["matDatepickerInput"],standalone:!0,features:[l.Jv_([Kt,Pt,{provide:ae.Oh,useExisting:Zt}]),l.Vt3]})}return Zt})(),di=(()=>{class Zt{static#e=this.\u0275fac=function(je){return new(je||Zt)};static#t=this.\u0275dir=l.FsC({type:Zt,selectors:[["","matDatepickerToggleIcon",""]],standalone:!0})}return Zt})(),fi=(()=>{class Zt{get disabled(){return void 0===this._disabled&&this.datepicker?this.datepicker.disabled:!!this._disabled}set disabled(re){this._disabled=re}constructor(re,je,Ce){this._intl=re,this._changeDetectorRef=je,this._stateChanges=T.yU.EMPTY;const ot=Number(Ce);this.tabIndex=ot||0===ot?ot:null}ngOnChanges(re){re.datepicker&&this._watchStateChanges()}ngOnDestroy(){this._stateChanges.unsubscribe()}ngAfterContentInit(){this._watchStateChanges()}_open(re){this.datepicker&&!this.disabled&&(this.datepicker.open(),re.stopPropagation())}_watchStateChanges(){const re=this.datepicker?this.datepicker.stateChanges:(0,F.of)(),je=this.datepicker&&this.datepicker.datepickerInput?this.datepicker.datepickerInput.stateChanges:(0,F.of)(),Ce=this.datepicker?(0,y.h)(this.datepicker.openedStream,this.datepicker.closedStream):(0,F.of)();this._stateChanges.unsubscribe(),this._stateChanges=(0,y.h)(this._intl.changes,re,je,Ce).subscribe(()=>this._changeDetectorRef.markForCheck())}static#e=this.\u0275fac=function(je){return new(je||Zt)(l.rXU(Ke),l.rXU(l.gRc),l.kS0("tabindex"))};static#t=this.\u0275cmp=l.VBU({type:Zt,selectors:[["mat-datepicker-toggle"]],contentQueries:function(je,Ce,ot){if(1&je&&l.wni(ot,di,5),2&je){let ut;l.mGM(ut=l.lsd())&&(Ce._customIcon=ut.first)}},viewQuery:function(je,Ce){if(1&je&&l.GBs(r,5),2&je){let ot;l.mGM(ot=l.lsd())&&(Ce._button=ot.first)}},hostAttrs:[1,"mat-datepicker-toggle"],hostVars:8,hostBindings:function(je,Ce){1&je&&l.bIt("click",function(ut){return Ce._open(ut)}),2&je&&(l.BMQ("tabindex",null)("data-mat-calendar",Ce.datepicker?Ce.datepicker.id:null),l.AVh("mat-datepicker-toggle-active",Ce.datepicker&&Ce.datepicker.opened)("mat-accent",Ce.datepicker&&"accent"===Ce.datepicker.color)("mat-warn",Ce.datepicker&&"warn"===Ce.datepicker.color))},inputs:{datepicker:[0,"for","datepicker"],tabIndex:"tabIndex",ariaLabel:[0,"aria-label","ariaLabel"],disabled:[2,"disabled","disabled",l.L39],disableRipple:"disableRipple"},exportAs:["matDatepickerToggle"],standalone:!0,features:[l.GFd,l.OA$,l.aNF],ngContentSelectors:V,decls:4,vars:6,consts:[["button",""],["mat-icon-button","","type","button",3,"disabled","disableRipple"],["viewBox","0 0 24 24","width","24px","height","24px","fill","currentColor","focusable","false","aria-hidden","true",1,"mat-datepicker-toggle-default-icon"],["d","M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"]],template:function(je,Ce){1&je&&(l.NAR(v),l.j41(0,"button",1,0),l.DNE(2,N,2,0,":svg:svg",2),l.SdG(3),l.k0s()),2&je&&(l.Y8G("disabled",Ce.disabled)("disableRipple",Ce.disableRipple),l.BMQ("aria-haspopup",Ce.datepicker?"dialog":null)("aria-label",Ce.ariaLabel||Ce._intl.openCalendarLabel)("tabindex",Ce.disabled?-1:Ce.tabIndex),l.R7$(2),l.vxM(Ce._customIcon?-1:2))},dependencies:[x.iY],styles:[".mat-datepicker-toggle{pointer-events:auto;color:var(--mat-datepicker-toggle-icon-color)}.mat-datepicker-toggle-active{color:var(--mat-datepicker-toggle-active-state-icon-color)}.cdk-high-contrast-active .mat-datepicker-toggle-default-icon{color:CanvasText}"],encapsulation:2,changeDetection:0})}return Zt})(),fn=(()=>{class Zt{static#e=this.\u0275fac=function(je){return new(je||Zt)};static#t=this.\u0275mod=l.$C({type:Zt});static#i=this.\u0275inj=l.G2t({providers:[Ke,$e],imports:[S.MD,x.Hl,t.z_,e.Pd,w.jc,I.yE,Fe,fi,we,f.Gj]})}return Zt})()},5351:(Qe,te,g)=>{"use strict";g.d(te,{Vh:()=>X,di:()=>me,bZ:()=>_e,tx:()=>pe,hM:()=>ue,CP:()=>Ke});var e=g(6969),t=g(177),w=g(4438),S=g(8617),l=g(6860),x=g(6939),f=g(7336),I=g(1413),d=g(9030),T=g(7673),y=g(8203),F=g(9172);function R(Xe,yt){}class z{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.closeOnNavigation=!0,this.closeOnDestroy=!0,this.closeOnOverlayDetachments=!0}}let $=(()=>{class Xe extends x.lb{constructor(Ye,rt,Yt,Nt,Et,Vt,oe,tt){super(),this._elementRef=Ye,this._focusTrapFactory=rt,this._config=Nt,this._interactivityChecker=Et,this._ngZone=Vt,this._overlayRef=oe,this._focusMonitor=tt,this._platform=(0,w.WQX)(l.OD),this._focusTrap=null,this._elementFocusedBeforeDialogWasOpened=null,this._closeInteractionType=null,this._ariaLabelledByQueue=[],this._changeDetectorRef=(0,w.WQX)(w.gRc),this.attachDomPortal=$t=>{this._portalOutlet.hasAttached();const zt=this._portalOutlet.attachDomPortal($t);return this._contentAttached(),zt},this._document=Yt,this._config.ariaLabelledBy&&this._ariaLabelledByQueue.push(this._config.ariaLabelledBy)}_addAriaLabelledBy(Ye){this._ariaLabelledByQueue.push(Ye),this._changeDetectorRef.markForCheck()}_removeAriaLabelledBy(Ye){const rt=this._ariaLabelledByQueue.indexOf(Ye);rt>-1&&(this._ariaLabelledByQueue.splice(rt,1),this._changeDetectorRef.markForCheck())}_contentAttached(){this._initializeFocusTrap(),this._handleBackdropClicks(),this._captureInitialFocus()}_captureInitialFocus(){this._trapFocus()}ngOnDestroy(){this._restoreFocus()}attachComponentPortal(Ye){this._portalOutlet.hasAttached();const rt=this._portalOutlet.attachComponentPortal(Ye);return this._contentAttached(),rt}attachTemplatePortal(Ye){this._portalOutlet.hasAttached();const rt=this._portalOutlet.attachTemplatePortal(Ye);return this._contentAttached(),rt}_recaptureFocus(){this._containsFocus()||this._trapFocus()}_forceFocus(Ye,rt){this._interactivityChecker.isFocusable(Ye)||(Ye.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const Yt=()=>{Ye.removeEventListener("blur",Yt),Ye.removeEventListener("mousedown",Yt),Ye.removeAttribute("tabindex")};Ye.addEventListener("blur",Yt),Ye.addEventListener("mousedown",Yt)})),Ye.focus(rt)}_focusByCssSelector(Ye,rt){let Yt=this._elementRef.nativeElement.querySelector(Ye);Yt&&this._forceFocus(Yt,rt)}_trapFocus(){const Ye=this._elementRef.nativeElement;switch(this._config.autoFocus){case!1:case"dialog":this._containsFocus()||Ye.focus();break;case!0:case"first-tabbable":this._focusTrap?.focusInitialElementWhenReady().then(rt=>{rt||this._focusDialogContainer()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this._config.autoFocus)}}_restoreFocus(){const Ye=this._config.restoreFocus;let rt=null;if("string"==typeof Ye?rt=this._document.querySelector(Ye):"boolean"==typeof Ye?rt=Ye?this._elementFocusedBeforeDialogWasOpened:null:Ye&&(rt=Ye),this._config.restoreFocus&&rt&&"function"==typeof rt.focus){const Yt=(0,l.vc)(),Nt=this._elementRef.nativeElement;(!Yt||Yt===this._document.body||Yt===Nt||Nt.contains(Yt))&&(this._focusMonitor?(this._focusMonitor.focusVia(rt,this._closeInteractionType),this._closeInteractionType=null):rt.focus())}this._focusTrap&&this._focusTrap.destroy()}_focusDialogContainer(){this._elementRef.nativeElement.focus&&this._elementRef.nativeElement.focus()}_containsFocus(){const Ye=this._elementRef.nativeElement,rt=(0,l.vc)();return Ye===rt||Ye.contains(rt)}_initializeFocusTrap(){this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._document&&(this._elementFocusedBeforeDialogWasOpened=(0,l.vc)()))}_handleBackdropClicks(){this._overlayRef.backdropClick().subscribe(()=>{this._config.disableClose&&this._recaptureFocus()})}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.rXU(w.aKT),w.rXU(S.GX),w.rXU(t.qQ,8),w.rXU(z),w.rXU(S.Z7),w.rXU(w.SKi),w.rXU(e.yY),w.rXU(S.FN))};static#t=this.\u0275cmp=w.VBU({type:Xe,selectors:[["cdk-dialog-container"]],viewQuery:function(rt,Yt){if(1&rt&&w.GBs(x.I3,7),2&rt){let Nt;w.mGM(Nt=w.lsd())&&(Yt._portalOutlet=Nt.first)}},hostAttrs:["tabindex","-1",1,"cdk-dialog-container"],hostVars:6,hostBindings:function(rt,Yt){2&rt&&w.BMQ("id",Yt._config.id||null)("role",Yt._config.role)("aria-modal",Yt._config.ariaModal)("aria-labelledby",Yt._config.ariaLabel?null:Yt._ariaLabelledByQueue[0])("aria-label",Yt._config.ariaLabel)("aria-describedby",Yt._config.ariaDescribedBy||null)},standalone:!0,features:[w.Vt3,w.aNF],decls:1,vars:0,consts:[["cdkPortalOutlet",""]],template:function(rt,Yt){1&rt&&w.DNE(0,R,0,0,"ng-template",0)},dependencies:[x.I3],styles:[".cdk-dialog-container{display:block;width:100%;height:100%;min-height:inherit;max-height:inherit}"],encapsulation:2})}return Xe})();class j{constructor(yt,Ye){this.overlayRef=yt,this.config=Ye,this.closed=new I.B,this.disableClose=Ye.disableClose,this.backdropClick=yt.backdropClick(),this.keydownEvents=yt.keydownEvents(),this.outsidePointerEvents=yt.outsidePointerEvents(),this.id=Ye.id,this.keydownEvents.subscribe(rt=>{rt.keyCode===f._f&&!this.disableClose&&!(0,f.rp)(rt)&&(rt.preventDefault(),this.close(void 0,{focusOrigin:"keyboard"}))}),this.backdropClick.subscribe(()=>{this.disableClose||this.close(void 0,{focusOrigin:"mouse"})}),this._detachSubscription=yt.detachments().subscribe(()=>{!1!==Ye.closeOnOverlayDetachments&&this.close()})}close(yt,Ye){if(this.containerInstance){const rt=this.closed;this.containerInstance._closeInteractionType=Ye?.focusOrigin||"program",this._detachSubscription.unsubscribe(),this.overlayRef.dispose(),rt.next(yt),rt.complete(),this.componentInstance=this.containerInstance=null}}updatePosition(){return this.overlayRef.updatePosition(),this}updateSize(yt="",Ye=""){return this.overlayRef.updateSize({width:yt,height:Ye}),this}addPanelClass(yt){return this.overlayRef.addPanelClass(yt),this}removePanelClass(yt){return this.overlayRef.removePanelClass(yt),this}}const Q=new w.nKC("DialogScrollStrategy",{providedIn:"root",factory:()=>{const Xe=(0,w.WQX)(e.hJ);return()=>Xe.scrollStrategies.block()}}),J=new w.nKC("DialogData"),ee=new w.nKC("DefaultDialogConfig");let ae=0,Me=(()=>{class Xe{get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}constructor(Ye,rt,Yt,Nt,Et,Vt){this._overlay=Ye,this._injector=rt,this._defaultOptions=Yt,this._parentDialog=Nt,this._overlayContainer=Et,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new I.B,this._afterOpenedAtThisLevel=new I.B,this._ariaHiddenElements=new Map,this.afterAllClosed=(0,d.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,F.Z)(void 0))),this._scrollStrategy=Vt}open(Ye,rt){(rt={...this._defaultOptions||new z,...rt}).id=rt.id||"cdk-dialog-"+ae++,rt.id&&this.getDialogById(rt.id);const Nt=this._getOverlayConfig(rt),Et=this._overlay.create(Nt),Vt=new j(Et,rt),oe=this._attachContainer(Et,Vt,rt);return Vt.containerInstance=oe,this._attachDialogContent(Ye,Vt,oe,rt),this.openDialogs.length||this._hideNonDialogContentFromAssistiveTechnology(),this.openDialogs.push(Vt),Vt.closed.subscribe(()=>this._removeOpenDialog(Vt,!0)),this.afterOpened.next(Vt),Vt}closeAll(){Te(this.openDialogs,Ye=>Ye.close())}getDialogById(Ye){return this.openDialogs.find(rt=>rt.id===Ye)}ngOnDestroy(){Te(this._openDialogsAtThisLevel,Ye=>{!1===Ye.config.closeOnDestroy&&this._removeOpenDialog(Ye,!1)}),Te(this._openDialogsAtThisLevel,Ye=>Ye.close()),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete(),this._openDialogsAtThisLevel=[]}_getOverlayConfig(Ye){const rt=new e.rR({positionStrategy:Ye.positionStrategy||this._overlay.position().global().centerHorizontally().centerVertically(),scrollStrategy:Ye.scrollStrategy||this._scrollStrategy(),panelClass:Ye.panelClass,hasBackdrop:Ye.hasBackdrop,direction:Ye.direction,minWidth:Ye.minWidth,minHeight:Ye.minHeight,maxWidth:Ye.maxWidth,maxHeight:Ye.maxHeight,width:Ye.width,height:Ye.height,disposeOnNavigation:Ye.closeOnNavigation});return Ye.backdropClass&&(rt.backdropClass=Ye.backdropClass),rt}_attachContainer(Ye,rt,Yt){const Nt=Yt.injector||Yt.viewContainerRef?.injector,Et=[{provide:z,useValue:Yt},{provide:j,useValue:rt},{provide:e.yY,useValue:Ye}];let Vt;Yt.container?"function"==typeof Yt.container?Vt=Yt.container:(Vt=Yt.container.type,Et.push(...Yt.container.providers(Yt))):Vt=$;const oe=new x.A8(Vt,Yt.viewContainerRef,w.zZn.create({parent:Nt||this._injector,providers:Et}),Yt.componentFactoryResolver);return Ye.attach(oe).instance}_attachDialogContent(Ye,rt,Yt,Nt){if(Ye instanceof w.C4Q){const Et=this._createInjector(Nt,rt,Yt,void 0);let Vt={$implicit:Nt.data,dialogRef:rt};Nt.templateContext&&(Vt={...Vt,..."function"==typeof Nt.templateContext?Nt.templateContext():Nt.templateContext}),Yt.attachTemplatePortal(new x.VA(Ye,null,Vt,Et))}else{const Et=this._createInjector(Nt,rt,Yt,this._injector),Vt=Yt.attachComponentPortal(new x.A8(Ye,Nt.viewContainerRef,Et,Nt.componentFactoryResolver));rt.componentRef=Vt,rt.componentInstance=Vt.instance}}_createInjector(Ye,rt,Yt,Nt){const Et=Ye.injector||Ye.viewContainerRef?.injector,Vt=[{provide:J,useValue:Ye.data},{provide:j,useValue:rt}];return Ye.providers&&("function"==typeof Ye.providers?Vt.push(...Ye.providers(rt,Ye,Yt)):Vt.push(...Ye.providers)),Ye.direction&&(!Et||!Et.get(y.dS,null,{optional:!0}))&&Vt.push({provide:y.dS,useValue:{value:Ye.direction,change:(0,T.of)()}}),w.zZn.create({parent:Et||Nt,providers:Vt})}_removeOpenDialog(Ye,rt){const Yt=this.openDialogs.indexOf(Ye);Yt>-1&&(this.openDialogs.splice(Yt,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((Nt,Et)=>{Nt?Et.setAttribute("aria-hidden",Nt):Et.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),rt&&this._getAfterAllClosed().next()))}_hideNonDialogContentFromAssistiveTechnology(){const Ye=this._overlayContainer.getContainerElement();if(Ye.parentElement){const rt=Ye.parentElement.children;for(let Yt=rt.length-1;Yt>-1;Yt--){const Nt=rt[Yt];Nt!==Ye&&"SCRIPT"!==Nt.nodeName&&"STYLE"!==Nt.nodeName&&!Nt.hasAttribute("aria-live")&&(this._ariaHiddenElements.set(Nt,Nt.getAttribute("aria-hidden")),Nt.setAttribute("aria-hidden","true"))}}}_getAfterAllClosed(){const Ye=this._parentDialog;return Ye?Ye._getAfterAllClosed():this._afterAllClosedAtThisLevel}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.KVO(e.hJ),w.KVO(w.zZn),w.KVO(ee,8),w.KVO(Xe,12),w.KVO(e.Sf),w.KVO(Q))};static#t=this.\u0275prov=w.jDH({token:Xe,factory:Xe.\u0275fac,providedIn:"root"})}return Xe})();function Te(Xe,yt){let Ye=Xe.length;for(;Ye--;)yt(Xe[Ye])}let de=(()=>{class Xe{static#e=this.\u0275fac=function(rt){return new(rt||Xe)};static#t=this.\u0275mod=w.$C({type:Xe});static#i=this.\u0275inj=w.G2t({providers:[Me],imports:[e.z_,x.jc,S.Pd,x.jc]})}return Xe})();var D=g(4085),n=g(7786),c=g(5964),m=g(6697),h=g(6600);function k(Xe,yt){}g(9969);class L{constructor(){this.role="dialog",this.panelClass="",this.hasBackdrop=!0,this.backdropClass="",this.disableClose=!1,this.width="",this.height="",this.data=null,this.ariaDescribedBy=null,this.ariaLabelledBy=null,this.ariaLabel=null,this.ariaModal=!0,this.autoFocus="first-tabbable",this.restoreFocus=!0,this.delayFocusTrap=!0,this.closeOnNavigation=!0}}const _="mdc-dialog--open",r="mdc-dialog--opening",v="mdc-dialog--closing";let ne=(()=>{class Xe extends ${constructor(Ye,rt,Yt,Nt,Et,Vt,oe,tt,$t){super(Ye,rt,Yt,Nt,Et,Vt,oe,$t),this._animationMode=tt,this._animationStateChanged=new w.bkB,this._animationsEnabled="NoopAnimations"!==this._animationMode,this._actionSectionCount=0,this._hostElement=this._elementRef.nativeElement,this._enterAnimationDuration=this._animationsEnabled?ze(this._config.enterAnimationDuration)??150:0,this._exitAnimationDuration=this._animationsEnabled?ze(this._config.exitAnimationDuration)??75:0,this._animationTimer=null,this._finishDialogOpen=()=>{this._clearAnimationClasses(),this._openAnimationDone(this._enterAnimationDuration)},this._finishDialogClose=()=>{this._clearAnimationClasses(),this._animationStateChanged.emit({state:"closed",totalTime:this._exitAnimationDuration})}}_contentAttached(){super._contentAttached(),this._startOpenAnimation()}_startOpenAnimation(){this._animationStateChanged.emit({state:"opening",totalTime:this._enterAnimationDuration}),this._animationsEnabled?(this._hostElement.style.setProperty(Ee,`${this._enterAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(r,_)),this._waitForAnimationToComplete(this._enterAnimationDuration,this._finishDialogOpen)):(this._hostElement.classList.add(_),Promise.resolve().then(()=>this._finishDialogOpen()))}_startExitAnimation(){this._animationStateChanged.emit({state:"closing",totalTime:this._exitAnimationDuration}),this._hostElement.classList.remove(_),this._animationsEnabled?(this._hostElement.style.setProperty(Ee,`${this._exitAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(v)),this._waitForAnimationToComplete(this._exitAnimationDuration,this._finishDialogClose)):Promise.resolve().then(()=>this._finishDialogClose())}_updateActionSectionCount(Ye){this._actionSectionCount+=Ye,this._changeDetectorRef.markForCheck()}_clearAnimationClasses(){this._hostElement.classList.remove(r,v)}_waitForAnimationToComplete(Ye,rt){null!==this._animationTimer&&clearTimeout(this._animationTimer),this._animationTimer=setTimeout(rt,Ye)}_requestAnimationFrame(Ye){this._ngZone.runOutsideAngular(()=>{"function"==typeof requestAnimationFrame?requestAnimationFrame(Ye):Ye()})}_captureInitialFocus(){this._config.delayFocusTrap||this._trapFocus()}_openAnimationDone(Ye){this._config.delayFocusTrap&&this._trapFocus(),this._animationStateChanged.next({state:"opened",totalTime:Ye})}ngOnDestroy(){super.ngOnDestroy(),null!==this._animationTimer&&clearTimeout(this._animationTimer)}attachComponentPortal(Ye){const rt=super.attachComponentPortal(Ye);return rt.location.nativeElement.classList.add("mat-mdc-dialog-component-host"),rt}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.rXU(w.aKT),w.rXU(S.GX),w.rXU(t.qQ,8),w.rXU(L),w.rXU(S.Z7),w.rXU(w.SKi),w.rXU(e.yY),w.rXU(w.bc$,8),w.rXU(S.FN))};static#t=this.\u0275cmp=w.VBU({type:Xe,selectors:[["mat-dialog-container"]],hostAttrs:["tabindex","-1",1,"mat-mdc-dialog-container","mdc-dialog"],hostVars:10,hostBindings:function(rt,Yt){2&rt&&(w.Mr5("id",Yt._config.id),w.BMQ("aria-modal",Yt._config.ariaModal)("role",Yt._config.role)("aria-labelledby",Yt._config.ariaLabel?null:Yt._ariaLabelledByQueue[0])("aria-label",Yt._config.ariaLabel)("aria-describedby",Yt._config.ariaDescribedBy||null),w.AVh("_mat-animation-noopable",!Yt._animationsEnabled)("mat-mdc-dialog-container-with-actions",Yt._actionSectionCount>0))},standalone:!0,features:[w.Vt3,w.aNF],decls:3,vars:0,consts:[[1,"mdc-dialog__container"],[1,"mat-mdc-dialog-surface","mdc-dialog__surface"],["cdkPortalOutlet",""]],template:function(rt,Yt){1&rt&&(w.j41(0,"div",0)(1,"div",1),w.DNE(2,k,0,0,"ng-template",2),w.k0s()())},dependencies:[x.I3],styles:['.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity, 0);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-dialog,.mdc-dialog__scrim{position:fixed;top:0;left:0;align-items:center;justify-content:center;box-sizing:border-box;width:100%;height:100%}.mdc-dialog{display:none;z-index:var(--mdc-dialog-z-index, 7)}.mdc-dialog .mdc-dialog__content{padding:20px 24px 20px 24px}.mdc-dialog .mdc-dialog__surface{min-width:280px}@media(max-width: 592px){.mdc-dialog .mdc-dialog__surface{max-width:calc(100vw - 32px)}}@media(min-width: 592px){.mdc-dialog .mdc-dialog__surface{max-width:560px}}.mdc-dialog .mdc-dialog__surface{max-height:calc(100% - 32px)}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-width:none}@media(max-width: 960px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:560px;width:560px}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}@media(max-width: 720px)and (max-width: 672px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:calc(100vw - 112px)}}@media(max-width: 720px)and (min-width: 672px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:560px}}@media(max-width: 720px)and (max-height: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:calc(100vh - 160px)}}@media(max-width: 720px)and (min-height: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{max-height:560px}}@media(max-width: 720px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}@media(max-width: 720px)and (max-height: 400px),(max-width: 600px),(min-width: 720px)and (max-height: 400px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{height:100%;max-height:100vh;max-width:100vw;width:100vw;border-radius:0}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{order:-1;left:-12px}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__header{padding:0 16px 9px;justify-content:flex-start}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__title{margin-left:calc(16px - 2 * 12px)}}@media(min-width: 960px){.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface{width:calc(100vw - 400px)}.mdc-dialog.mdc-dialog--fullscreen .mdc-dialog__surface .mdc-dialog__close{right:-12px}}.mdc-dialog.mdc-dialog__scrim--hidden .mdc-dialog__scrim{opacity:0}.mdc-dialog__scrim{opacity:0;z-index:-1}.mdc-dialog__container{display:flex;flex-direction:row;align-items:center;justify-content:space-around;box-sizing:border-box;height:100%;opacity:0;pointer-events:none}.mdc-dialog__surface{position:relative;display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;box-sizing:border-box;max-width:100%;max-height:100%;pointer-events:auto;overflow-y:auto;outline:0;transform:scale(0.8)}.mdc-dialog__surface .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}[dir=rtl] .mdc-dialog__surface,.mdc-dialog__surface[dir=rtl]{text-align:right}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-dialog__surface{outline:2px solid windowText}}.mdc-dialog__surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:2px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-dialog__surface::before{border-color:CanvasText}}@media screen and (-ms-high-contrast: active),screen and (-ms-high-contrast: none){.mdc-dialog__surface::before{content:none}}.mdc-dialog__title{display:block;margin-top:0;position:relative;flex-shrink:0;box-sizing:border-box;margin:0 0 1px;padding:0 24px 9px}.mdc-dialog__title::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}[dir=rtl] .mdc-dialog__title,.mdc-dialog__title[dir=rtl]{text-align:right}.mdc-dialog--scrollable .mdc-dialog__title{margin-bottom:1px;padding-bottom:15px}.mdc-dialog--fullscreen .mdc-dialog__header{align-items:baseline;border-bottom:1px solid rgba(0,0,0,0);display:inline-flex;justify-content:space-between;padding:0 24px 9px;z-index:1}@media screen and (forced-colors: active){.mdc-dialog--fullscreen .mdc-dialog__header{border-bottom-color:CanvasText}}.mdc-dialog--fullscreen .mdc-dialog__header .mdc-dialog__close{right:-12px}.mdc-dialog--fullscreen .mdc-dialog__title{margin-bottom:0;padding:0;border-bottom:0}.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__title{border-bottom:0;margin-bottom:0}.mdc-dialog--fullscreen .mdc-dialog__close{top:5px}.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__actions{border-top:1px solid rgba(0,0,0,0)}@media screen and (forced-colors: active){.mdc-dialog--fullscreen.mdc-dialog--scrollable .mdc-dialog__actions{border-top-color:CanvasText}}.mdc-dialog--fullscreen--titleless .mdc-dialog__close{margin-top:4px}.mdc-dialog--fullscreen--titleless.mdc-dialog--scrollable .mdc-dialog__close{margin-top:0}.mdc-dialog__content{flex-grow:1;box-sizing:border-box;margin:0;overflow:auto}.mdc-dialog__content>:first-child{margin-top:0}.mdc-dialog__content>:last-child{margin-bottom:0}.mdc-dialog__title+.mdc-dialog__content,.mdc-dialog__header+.mdc-dialog__content{padding-top:0}.mdc-dialog--scrollable .mdc-dialog__title+.mdc-dialog__content{padding-top:8px;padding-bottom:8px}.mdc-dialog__content .mdc-deprecated-list:first-child:last-child{padding:6px 0 0}.mdc-dialog--scrollable .mdc-dialog__content .mdc-deprecated-list:first-child:last-child{padding:0}.mdc-dialog__actions{display:flex;position:relative;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;box-sizing:border-box;min-height:52px;margin:0;padding:8px;border-top:1px solid rgba(0,0,0,0)}@media screen and (forced-colors: active){.mdc-dialog__actions{border-top-color:CanvasText}}.mdc-dialog--stacked .mdc-dialog__actions{flex-direction:column;align-items:flex-end}.mdc-dialog__button{margin-left:8px;margin-right:0;max-width:100%;text-align:right}[dir=rtl] .mdc-dialog__button,.mdc-dialog__button[dir=rtl]{margin-left:0;margin-right:8px}.mdc-dialog__button:first-child{margin-left:0;margin-right:0}[dir=rtl] .mdc-dialog__button:first-child,.mdc-dialog__button:first-child[dir=rtl]{margin-left:0;margin-right:0}[dir=rtl] .mdc-dialog__button,.mdc-dialog__button[dir=rtl]{text-align:left}.mdc-dialog--stacked .mdc-dialog__button:not(:first-child){margin-top:12px}.mdc-dialog--open,.mdc-dialog--opening,.mdc-dialog--closing{display:flex}.mdc-dialog--opening .mdc-dialog__scrim{transition:opacity 150ms linear}.mdc-dialog--opening .mdc-dialog__container{transition:opacity 75ms linear,transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-dialog--closing .mdc-dialog__scrim,.mdc-dialog--closing .mdc-dialog__container{transition:opacity 75ms linear}.mdc-dialog--closing .mdc-dialog__container{transform:none}.mdc-dialog--closing .mdc-dialog__surface{transform:none}.mdc-dialog--open .mdc-dialog__scrim{opacity:1}.mdc-dialog--open .mdc-dialog__container{opacity:1}.mdc-dialog--open .mdc-dialog__surface{transform:none}.mdc-dialog--open.mdc-dialog__surface-scrim--shown .mdc-dialog__surface-scrim{opacity:1}.mdc-dialog--open.mdc-dialog__surface-scrim--hiding .mdc-dialog__surface-scrim{transition:opacity 75ms linear}.mdc-dialog--open.mdc-dialog__surface-scrim--showing .mdc-dialog__surface-scrim{transition:opacity 150ms linear}.mdc-dialog__surface-scrim{display:none;opacity:0;position:absolute;width:100%;height:100%;z-index:1}.mdc-dialog__surface-scrim--shown .mdc-dialog__surface-scrim,.mdc-dialog__surface-scrim--showing .mdc-dialog__surface-scrim,.mdc-dialog__surface-scrim--hiding .mdc-dialog__surface-scrim{display:block}.mdc-dialog-scroll-lock{overflow:hidden}.mdc-dialog--no-content-padding .mdc-dialog__content{padding:0}.mdc-dialog--sheet .mdc-dialog__container .mdc-dialog__close{right:12px;top:9px;position:absolute;z-index:1}.mdc-dialog__scrim--removed{pointer-events:none}.mdc-dialog__scrim--removed .mdc-dialog__scrim,.mdc-dialog__scrim--removed .mdc-dialog__surface-scrim{display:none}.mat-mdc-dialog-content{max-height:65vh}.mat-mdc-dialog-container{position:static;display:block}.mat-mdc-dialog-container,.mat-mdc-dialog-container .mdc-dialog__container,.mat-mdc-dialog-container .mdc-dialog__surface{max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit}.mat-mdc-dialog-container .mdc-dialog__surface{width:100%;height:100%}.mat-mdc-dialog-component-host{display:contents}.mat-mdc-dialog-container{--mdc-dialog-container-elevation: var(--mdc-dialog-container-elevation-shadow);outline:0}.mat-mdc-dialog-container .mdc-dialog__surface{background-color:var(--mdc-dialog-container-color, white)}.mat-mdc-dialog-container .mdc-dialog__surface{box-shadow:var(--mdc-dialog-container-elevation, 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12))}.mat-mdc-dialog-container .mdc-dialog__surface{border-radius:var(--mdc-dialog-container-shape, 4px)}.mat-mdc-dialog-container .mdc-dialog__title{font-family:var(--mdc-dialog-subhead-font, Roboto, sans-serif);line-height:var(--mdc-dialog-subhead-line-height, 1.5rem);font-size:var(--mdc-dialog-subhead-size, 1rem);font-weight:var(--mdc-dialog-subhead-weight, 400);letter-spacing:var(--mdc-dialog-subhead-tracking, 0.03125em)}.mat-mdc-dialog-container .mdc-dialog__title{color:var(--mdc-dialog-subhead-color, rgba(0, 0, 0, 0.87))}.mat-mdc-dialog-container .mdc-dialog__content{font-family:var(--mdc-dialog-supporting-text-font, Roboto, sans-serif);line-height:var(--mdc-dialog-supporting-text-line-height, 1.5rem);font-size:var(--mdc-dialog-supporting-text-size, 1rem);font-weight:var(--mdc-dialog-supporting-text-weight, 400);letter-spacing:var(--mdc-dialog-supporting-text-tracking, 0.03125em)}.mat-mdc-dialog-container .mdc-dialog__content{color:var(--mdc-dialog-supporting-text-color, rgba(0, 0, 0, 0.6))}.mat-mdc-dialog-container .mdc-dialog__container{transition:opacity linear var(--mat-dialog-transition-duration, 0ms)}.mat-mdc-dialog-container .mdc-dialog__surface{transition:transform var(--mat-dialog-transition-duration, 0ms) 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-dialog-container._mat-animation-noopable .mdc-dialog__container,.mat-mdc-dialog-container._mat-animation-noopable .mdc-dialog__surface{transition:none}.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-max-width, 80vw);min-width:var(--mat-dialog-container-min-width, 0)}@media(max-width: 599px){.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-small-max-width, 80vw)}}.mat-mdc-dialog-title{padding:var(--mat-dialog-headline-padding, 0 24px 9px)}.mat-mdc-dialog-content{display:block}.mat-mdc-dialog-container .mat-mdc-dialog-content{padding:var(--mat-dialog-content-padding, 20px 24px)}.mat-mdc-dialog-container-with-actions .mat-mdc-dialog-content{padding:var(--mat-dialog-with-actions-content-padding, 20px 24px)}.mat-mdc-dialog-container .mat-mdc-dialog-title+.mat-mdc-dialog-content{padding-top:0}.mat-mdc-dialog-actions{padding:var(--mat-dialog-actions-padding, 8px);justify-content:var(--mat-dialog-actions-alignment, start)}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-start,.mat-mdc-dialog-actions[align=start]{justify-content:start}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-center,.mat-mdc-dialog-actions[align=center]{justify-content:center}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-end,.mat-mdc-dialog-actions[align=end]{justify-content:flex-end}.mat-mdc-dialog-actions .mat-button-base+.mat-button-base,.mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-mdc-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}'],encapsulation:2})}return Xe})();const Ee="--mat-dialog-transition-duration";function ze(Xe){return null==Xe?null:"number"==typeof Xe?Xe:Xe.endsWith("ms")?(0,D.OE)(Xe.substring(0,Xe.length-2)):Xe.endsWith("s")?1e3*(0,D.OE)(Xe.substring(0,Xe.length-1)):"0"===Xe?0:null}var qe=function(Xe){return Xe[Xe.OPEN=0]="OPEN",Xe[Xe.CLOSING=1]="CLOSING",Xe[Xe.CLOSED=2]="CLOSED",Xe}(qe||{});class Ke{constructor(yt,Ye,rt){this._ref=yt,this._containerInstance=rt,this._afterOpened=new I.B,this._beforeClosed=new I.B,this._state=qe.OPEN,this.disableClose=Ye.disableClose,this.id=yt.id,yt.addPanelClass("mat-mdc-dialog-panel"),rt._animationStateChanged.pipe((0,c.p)(Yt=>"opened"===Yt.state),(0,m.s)(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),rt._animationStateChanged.pipe((0,c.p)(Yt=>"closed"===Yt.state),(0,m.s)(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._finishDialogClose()}),yt.overlayRef.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._finishDialogClose()}),(0,n.h)(this.backdropClick(),this.keydownEvents().pipe((0,c.p)(Yt=>Yt.keyCode===f._f&&!this.disableClose&&!(0,f.rp)(Yt)))).subscribe(Yt=>{this.disableClose||(Yt.preventDefault(),se(this,"keydown"===Yt.type?"keyboard":"mouse"))})}close(yt){this._result=yt,this._containerInstance._animationStateChanged.pipe((0,c.p)(Ye=>"closing"===Ye.state),(0,m.s)(1)).subscribe(Ye=>{this._beforeClosed.next(yt),this._beforeClosed.complete(),this._ref.overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>this._finishDialogClose(),Ye.totalTime+100)}),this._state=qe.CLOSING,this._containerInstance._startExitAnimation()}afterOpened(){return this._afterOpened}afterClosed(){return this._ref.closed}beforeClosed(){return this._beforeClosed}backdropClick(){return this._ref.backdropClick}keydownEvents(){return this._ref.keydownEvents}updatePosition(yt){let Ye=this._ref.config.positionStrategy;return yt&&(yt.left||yt.right)?yt.left?Ye.left(yt.left):Ye.right(yt.right):Ye.centerHorizontally(),yt&&(yt.top||yt.bottom)?yt.top?Ye.top(yt.top):Ye.bottom(yt.bottom):Ye.centerVertically(),this._ref.updatePosition(),this}updateSize(yt="",Ye=""){return this._ref.updateSize(yt,Ye),this}addPanelClass(yt){return this._ref.addPanelClass(yt),this}removePanelClass(yt){return this._ref.removePanelClass(yt),this}getState(){return this._state}_finishDialogClose(){this._state=qe.CLOSED,this._ref.close(this._result,{focusOrigin:this._closeInteractionType}),this.componentInstance=null}}function se(Xe,yt,Ye){return Xe._closeInteractionType=yt,Xe.close(Ye)}const X=new w.nKC("MatMdcDialogData"),me=new w.nKC("mat-mdc-dialog-default-options"),ce=new w.nKC("mat-mdc-dialog-scroll-strategy",{providedIn:"root",factory:()=>{const Xe=(0,w.WQX)(e.hJ);return()=>Xe.scrollStrategies.block()}});let mt=0,_e=(()=>{class Xe{get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}_getAfterAllClosed(){const Ye=this._parentDialog;return Ye?Ye._getAfterAllClosed():this._afterAllClosedAtThisLevel}constructor(Ye,rt,Yt,Nt,Et,Vt,oe,tt){this._overlay=Ye,this._defaultOptions=Nt,this._scrollStrategy=Et,this._parentDialog=Vt,this._openDialogsAtThisLevel=[],this._afterAllClosedAtThisLevel=new I.B,this._afterOpenedAtThisLevel=new I.B,this.dialogConfigClass=L,this.afterAllClosed=(0,d.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,F.Z)(void 0))),this._dialog=rt.get(Me),this._dialogRefConstructor=Ke,this._dialogContainerType=ne,this._dialogDataToken=X}open(Ye,rt){let Yt;(rt={...this._defaultOptions||new L,...rt}).id=rt.id||"mat-mdc-dialog-"+mt++,rt.scrollStrategy=rt.scrollStrategy||this._scrollStrategy();const Nt=this._dialog.open(Ye,{...rt,positionStrategy:this._overlay.position().global().centerHorizontally().centerVertically(),disableClose:!0,closeOnDestroy:!1,closeOnOverlayDetachments:!1,container:{type:this._dialogContainerType,providers:()=>[{provide:this.dialogConfigClass,useValue:rt},{provide:z,useValue:rt}]},templateContext:()=>({dialogRef:Yt}),providers:(Et,Vt,oe)=>(Yt=new this._dialogRefConstructor(Et,rt,oe),Yt.updatePosition(rt?.position),[{provide:this._dialogContainerType,useValue:oe},{provide:this._dialogDataToken,useValue:Vt.data},{provide:this._dialogRefConstructor,useValue:Yt}])});return Yt.componentRef=Nt.componentRef,Yt.componentInstance=Nt.componentInstance,this.openDialogs.push(Yt),this.afterOpened.next(Yt),Yt.afterClosed().subscribe(()=>{const Et=this.openDialogs.indexOf(Yt);Et>-1&&(this.openDialogs.splice(Et,1),this.openDialogs.length||this._getAfterAllClosed().next())}),Yt}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(Ye){return this.openDialogs.find(rt=>rt.id===Ye)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_closeDialogs(Ye){let rt=Ye.length;for(;rt--;)Ye[rt].close()}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.KVO(e.hJ),w.KVO(w.zZn),w.KVO(t.aZ,8),w.KVO(me,8),w.KVO(ce),w.KVO(Xe,12),w.KVO(e.Sf),w.KVO(w.bc$,8))};static#t=this.\u0275prov=w.jDH({token:Xe,factory:Xe.\u0275fac,providedIn:"root"})}return Xe})(),pe=(()=>{class Xe{constructor(Ye,rt,Yt){this.dialogRef=Ye,this._elementRef=rt,this._dialog=Yt,this.type="button"}ngOnInit(){this.dialogRef||(this.dialogRef=function Xt(Xe,yt){let Ye=Xe.nativeElement.parentElement;for(;Ye&&!Ye.classList.contains("mat-mdc-dialog-container");)Ye=Ye.parentElement;return Ye?yt.find(rt=>rt.id===Ye.id):null}(this._elementRef,this._dialog.openDialogs))}ngOnChanges(Ye){const rt=Ye._matDialogClose||Ye._matDialogCloseResult;rt&&(this.dialogResult=rt.currentValue)}_onButtonClick(Ye){se(this.dialogRef,0===Ye.screenX&&0===Ye.screenY?"keyboard":"mouse",this.dialogResult)}static#e=this.\u0275fac=function(rt){return new(rt||Xe)(w.rXU(Ke,8),w.rXU(w.aKT),w.rXU(_e))};static#t=this.\u0275dir=w.FsC({type:Xe,selectors:[["","mat-dialog-close",""],["","matDialogClose",""]],hostVars:2,hostBindings:function(rt,Yt){1&rt&&w.bIt("click",function(Et){return Yt._onButtonClick(Et)}),2&rt&&w.BMQ("aria-label",Yt.ariaLabel||null)("type",Yt.type)},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],type:"type",dialogResult:[0,"mat-dialog-close","dialogResult"],_matDialogClose:[0,"matDialogClose","_matDialogClose"]},exportAs:["matDialogClose"],standalone:!0,features:[w.OA$]})}return Xe})();let ue=(()=>{class Xe{static#e=this.\u0275fac=function(rt){return new(rt||Xe)};static#t=this.\u0275mod=w.$C({type:Xe});static#i=this.\u0275inj=w.G2t({providers:[_e],imports:[de,e.z_,x.jc,h.yE,h.yE]})}return Xe})()},1997:(Qe,te,g)=>{"use strict";g.d(te,{q:()=>S,w:()=>l});var e=g(4438),t=g(4085),w=g(6600);let S=(()=>{class x{constructor(){this._vertical=!1,this._inset=!1}get vertical(){return this._vertical}set vertical(I){this._vertical=(0,t.he)(I)}get inset(){return this._inset}set inset(I){this._inset=(0,t.he)(I)}static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275cmp=e.VBU({type:x,selectors:[["mat-divider"]],hostAttrs:["role","separator",1,"mat-divider"],hostVars:7,hostBindings:function(d,T){2&d&&(e.BMQ("aria-orientation",T.vertical?"vertical":"horizontal"),e.AVh("mat-divider-vertical",T.vertical)("mat-divider-horizontal",!T.vertical)("mat-divider-inset",T.inset))},inputs:{vertical:"vertical",inset:"inset"},standalone:!0,features:[e.aNF],decls:0,vars:0,template:function(d,T){},styles:[".mat-divider{display:block;margin:0;border-top-style:solid;border-top-color:var(--mat-divider-color);border-top-width:var(--mat-divider-width)}.mat-divider.mat-divider-vertical{border-top:0;border-right-style:solid;border-right-color:var(--mat-divider-color);border-right-width:var(--mat-divider-width)}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}"],encapsulation:2,changeDetection:0})}return x})(),l=(()=>{class x{static#e=this.\u0275fac=function(d){return new(d||x)};static#t=this.\u0275mod=e.$C({type:x});static#i=this.\u0275inj=e.G2t({imports:[w.yE,w.yE]})}return x})()},9454:(Qe,te,g)=>{"use strict";g.d(te,{BS:()=>ze,MY:()=>qe,GK:()=>r,Q6:()=>ne,Z2:()=>N,WN:()=>Ee});var e=g(4438),t=g(5024),w=g(1413),S=g(8359);let l=0;const x=new e.nKC("CdkAccordion");let f=(()=>{class Ke{constructor(){this._stateChanges=new w.B,this._openCloseAllActions=new w.B,this.id="cdk-accordion-"+l++,this.multi=!1}openAll(){this.multi&&this._openCloseAllActions.next(!0)}closeAll(){this._openCloseAllActions.next(!1)}ngOnChanges(X){this._stateChanges.next(X)}ngOnDestroy(){this._stateChanges.complete(),this._openCloseAllActions.complete()}static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["cdk-accordion"],["","cdkAccordion",""]],inputs:{multi:[2,"multi","multi",e.L39]},exportAs:["cdkAccordion"],standalone:!0,features:[e.Jv_([{provide:x,useExisting:Ke}]),e.GFd,e.OA$]})}return Ke})(),I=0,d=(()=>{class Ke{get expanded(){return this._expanded}set expanded(X){this._expanded!==X&&(this._expanded=X,this.expandedChange.emit(X),X?(this.opened.emit(),this._expansionDispatcher.notify(this.id,this.accordion?this.accordion.id:this.id)):this.closed.emit(),this._changeDetectorRef.markForCheck())}constructor(X,me,ce){this.accordion=X,this._changeDetectorRef=me,this._expansionDispatcher=ce,this._openCloseAllSubscription=S.yU.EMPTY,this.closed=new e.bkB,this.opened=new e.bkB,this.destroyed=new e.bkB,this.expandedChange=new e.bkB,this.id="cdk-accordion-child-"+I++,this._expanded=!1,this.disabled=!1,this._removeUniqueSelectionListener=()=>{},this._removeUniqueSelectionListener=ce.listen((fe,ke)=>{this.accordion&&!this.accordion.multi&&this.accordion.id===ke&&this.id!==fe&&(this.expanded=!1)}),this.accordion&&(this._openCloseAllSubscription=this._subscribeToOpenCloseAllActions())}ngOnDestroy(){this.opened.complete(),this.closed.complete(),this.destroyed.emit(),this.destroyed.complete(),this._removeUniqueSelectionListener(),this._openCloseAllSubscription.unsubscribe()}toggle(){this.disabled||(this.expanded=!this.expanded)}close(){this.disabled||(this.expanded=!1)}open(){this.disabled||(this.expanded=!0)}_subscribeToOpenCloseAllActions(){return this.accordion._openCloseAllActions.subscribe(X=>{this.disabled||(this.expanded=X)})}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(x,12),e.rXU(e.gRc),e.rXU(t.zP))};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["cdk-accordion-item"],["","cdkAccordionItem",""]],inputs:{expanded:[2,"expanded","expanded",e.L39],disabled:[2,"disabled","disabled",e.L39]},outputs:{closed:"closed",opened:"opened",destroyed:"destroyed",expandedChange:"expandedChange"},exportAs:["cdkAccordionItem"],standalone:!0,features:[e.Jv_([{provide:x,useValue:void 0}]),e.GFd]})}return Ke})(),T=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=e.$C({type:Ke});static#i=this.\u0275inj=e.G2t({})}return Ke})();var y=g(6939),F=g(6600),R=g(8617),z=g(9172),W=g(5964),$=g(6697),j=g(7336),Q=g(983),J=g(7786),ee=g(9969),ie=g(177);const ge=["body"],ae=[[["mat-expansion-panel-header"]],"*",[["mat-action-row"]]],Me=["mat-expansion-panel-header","*","mat-action-row"];function Te(Ke,se){}const de=[[["mat-panel-title"]],[["mat-panel-description"]],"*"],D=["mat-panel-title","mat-panel-description","*"];function n(Ke,se){if(1&Ke&&(e.j41(0,"span",1),e.qSk(),e.j41(1,"svg",2),e.nrm(2,"path",3),e.k0s()()),2&Ke){const X=e.XpG();e.Y8G("@indicatorRotate",X._getExpandedState())}}const c=new e.nKC("MAT_ACCORDION"),m="225ms cubic-bezier(0.4,0.0,0.2,1)",h={indicatorRotate:(0,ee.hZ)("indicatorRotate",[(0,ee.wk)("collapsed, void",(0,ee.iF)({transform:"rotate(0deg)"})),(0,ee.wk)("expanded",(0,ee.iF)({transform:"rotate(180deg)"})),(0,ee.kY)("expanded <=> collapsed, void => collapsed",(0,ee.i0)(m))]),bodyExpansion:(0,ee.hZ)("bodyExpansion",[(0,ee.wk)("collapsed, void",(0,ee.iF)({height:"0px",visibility:"hidden"})),(0,ee.wk)("expanded",(0,ee.iF)({height:"*",visibility:""})),(0,ee.kY)("expanded <=> collapsed, void => collapsed",(0,ee.i0)(m))])},C=new e.nKC("MAT_EXPANSION_PANEL");let k=(()=>{class Ke{constructor(X,me){this._template=X,this._expansionPanel=me}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(e.C4Q),e.rXU(C,8))};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["ng-template","matExpansionPanelContent",""]],standalone:!0})}return Ke})(),L=0;const _=new e.nKC("MAT_EXPANSION_PANEL_DEFAULT_OPTIONS");let r=(()=>{class Ke extends d{get hideToggle(){return this._hideToggle||this.accordion&&this.accordion.hideToggle}set hideToggle(X){this._hideToggle=X}get togglePosition(){return this._togglePosition||this.accordion&&this.accordion.togglePosition}set togglePosition(X){this._togglePosition=X}constructor(X,me,ce,fe,ke,mt,_e){super(X,me,ce),this._viewContainerRef=fe,this._animationMode=mt,this._hideToggle=!1,this.afterExpand=new e.bkB,this.afterCollapse=new e.bkB,this._inputChanges=new w.B,this._headerId="mat-expansion-panel-header-"+L++,this.accordion=X,this._document=ke,this._animationsDisabled="NoopAnimations"===mt,_e&&(this.hideToggle=_e.hideToggle)}_hasSpacing(){return!!this.accordion&&this.expanded&&"default"===this.accordion.displayMode}_getExpandedState(){return this.expanded?"expanded":"collapsed"}toggle(){this.expanded=!this.expanded}close(){this.expanded=!1}open(){this.expanded=!0}ngAfterContentInit(){this._lazyContent&&this._lazyContent._expansionPanel===this&&this.opened.pipe((0,z.Z)(null),(0,W.p)(()=>this.expanded&&!this._portal),(0,$.s)(1)).subscribe(()=>{this._portal=new y.VA(this._lazyContent._template,this._viewContainerRef)})}ngOnChanges(X){this._inputChanges.next(X)}ngOnDestroy(){super.ngOnDestroy(),this._inputChanges.complete()}_containsFocus(){if(this._body){const X=this._document.activeElement,me=this._body.nativeElement;return X===me||me.contains(X)}return!1}_animationStarted(X){!v(X)&&!this._animationsDisabled&&this._body&&this._body?.nativeElement.setAttribute("inert","")}_animationDone(X){v(X)||("expanded"===X.toState?this.afterExpand.emit():"collapsed"===X.toState&&this.afterCollapse.emit(),!this._animationsDisabled&&this._body&&this._body.nativeElement.removeAttribute("inert"))}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(c,12),e.rXU(e.gRc),e.rXU(t.zP),e.rXU(e.c1b),e.rXU(ie.qQ),e.rXU(e.bc$,8),e.rXU(_,8))};static#t=this.\u0275cmp=e.VBU({type:Ke,selectors:[["mat-expansion-panel"]],contentQueries:function(me,ce,fe){if(1&me&&e.wni(fe,k,5),2&me){let ke;e.mGM(ke=e.lsd())&&(ce._lazyContent=ke.first)}},viewQuery:function(me,ce){if(1&me&&e.GBs(ge,5),2&me){let fe;e.mGM(fe=e.lsd())&&(ce._body=fe.first)}},hostAttrs:[1,"mat-expansion-panel"],hostVars:6,hostBindings:function(me,ce){2&me&&e.AVh("mat-expanded",ce.expanded)("_mat-animation-noopable",ce._animationsDisabled)("mat-expansion-panel-spacing",ce._hasSpacing())},inputs:{hideToggle:[2,"hideToggle","hideToggle",e.L39],togglePosition:"togglePosition"},outputs:{afterExpand:"afterExpand",afterCollapse:"afterCollapse"},exportAs:["matExpansionPanel"],standalone:!0,features:[e.Jv_([{provide:c,useValue:void 0},{provide:C,useExisting:Ke}]),e.GFd,e.Vt3,e.OA$,e.aNF],ngContentSelectors:Me,decls:7,vars:4,consts:[["body",""],["role","region",1,"mat-expansion-panel-content",3,"id"],[1,"mat-expansion-panel-body"],[3,"cdkPortalOutlet"]],template:function(me,ce){if(1&me){const fe=e.RV6();e.NAR(ae),e.SdG(0),e.j41(1,"div",1,0),e.bIt("@bodyExpansion.start",function(mt){return e.eBV(fe),e.Njj(ce._animationStarted(mt))})("@bodyExpansion.done",function(mt){return e.eBV(fe),e.Njj(ce._animationDone(mt))}),e.j41(3,"div",2),e.SdG(4,1),e.DNE(5,Te,0,0,"ng-template",3),e.k0s(),e.SdG(6,2),e.k0s()}2&me&&(e.R7$(),e.Y8G("@bodyExpansion",ce._getExpandedState())("id",ce.id),e.BMQ("aria-labelledby",ce._headerId),e.R7$(4),e.Y8G("cdkPortalOutlet",ce._portal))},dependencies:[y.I3],styles:['.mat-expansion-panel{box-sizing:content-box;display:block;margin:0;overflow:hidden;transition:margin 225ms cubic-bezier(0.4, 0, 0.2, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);position:relative;background:var(--mat-expansion-container-background-color);color:var(--mat-expansion-container-text-color);border-radius:var(--mat-expansion-container-shape)}.mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-accordion .mat-expansion-panel:not(.mat-expanded),.mat-accordion .mat-expansion-panel:not(.mat-expansion-panel-spacing){border-radius:0}.mat-accordion .mat-expansion-panel:first-of-type{border-top-right-radius:var(--mat-expansion-container-shape);border-top-left-radius:var(--mat-expansion-container-shape)}.mat-accordion .mat-expansion-panel:last-of-type{border-bottom-right-radius:var(--mat-expansion-container-shape);border-bottom-left-radius:var(--mat-expansion-container-shape)}.cdk-high-contrast-active .mat-expansion-panel{outline:solid 1px}.mat-expansion-panel.ng-animate-disabled,.ng-animate-disabled .mat-expansion-panel,.mat-expansion-panel._mat-animation-noopable{transition:none}.mat-expansion-panel-content{display:flex;flex-direction:column;overflow:visible;font-family:var(--mat-expansion-container-text-font);font-size:var(--mat-expansion-container-text-size);font-weight:var(--mat-expansion-container-text-weight);line-height:var(--mat-expansion-container-text-line-height);letter-spacing:var(--mat-expansion-container-text-tracking)}.mat-expansion-panel-content[style*="visibility: hidden"] *{visibility:hidden !important}.mat-expansion-panel-body{padding:0 24px 16px}.mat-expansion-panel-spacing{margin:16px 0}.mat-accordion>.mat-expansion-panel-spacing:first-child,.mat-accordion>*:first-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-top:0}.mat-accordion>.mat-expansion-panel-spacing:last-child,.mat-accordion>*:last-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-bottom:0}.mat-action-row{border-top-style:solid;border-top-width:1px;display:flex;flex-direction:row;justify-content:flex-end;padding:16px 8px 16px 24px;border-top-color:var(--mat-expansion-actions-divider-color)}.mat-action-row .mat-button-base,.mat-action-row .mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-action-row .mat-button-base,[dir=rtl] .mat-action-row .mat-mdc-button-base{margin-left:0;margin-right:8px}'],encapsulation:2,data:{animation:[h.bodyExpansion]},changeDetection:0})}return Ke})();function v(Ke){return"void"===Ke.fromState}let N=(()=>{class Ke{constructor(X,me,ce,fe,ke,mt,_e){this.panel=X,this._element=me,this._focusMonitor=ce,this._changeDetectorRef=fe,this._animationMode=mt,this._parentChangeSubscription=S.yU.EMPTY,this.tabIndex=0;const be=X.accordion?X.accordion._stateChanges.pipe((0,W.p)(pe=>!(!pe.hideToggle&&!pe.togglePosition))):Q.w;this.tabIndex=parseInt(_e||"")||0,this._parentChangeSubscription=(0,J.h)(X.opened,X.closed,be,X._inputChanges.pipe((0,W.p)(pe=>!!(pe.hideToggle||pe.disabled||pe.togglePosition)))).subscribe(()=>this._changeDetectorRef.markForCheck()),X.closed.pipe((0,W.p)(()=>X._containsFocus())).subscribe(()=>ce.focusVia(me,"program")),ke&&(this.expandedHeight=ke.expandedHeight,this.collapsedHeight=ke.collapsedHeight)}get disabled(){return this.panel.disabled}_toggle(){this.disabled||this.panel.toggle()}_isExpanded(){return this.panel.expanded}_getExpandedState(){return this.panel._getExpandedState()}_getPanelId(){return this.panel.id}_getTogglePosition(){return this.panel.togglePosition}_showToggle(){return!this.panel.hideToggle&&!this.panel.disabled}_getHeaderHeight(){const X=this._isExpanded();return X&&this.expandedHeight?this.expandedHeight:!X&&this.collapsedHeight?this.collapsedHeight:null}_keydown(X){switch(X.keyCode){case j.t6:case j.Fm:(0,j.rp)(X)||(X.preventDefault(),this._toggle());break;default:return void(this.panel.accordion&&this.panel.accordion._handleHeaderKeydown(X))}}focus(X,me){X?this._focusMonitor.focusVia(this._element,X,me):this._element.nativeElement.focus(me)}ngAfterViewInit(){this._focusMonitor.monitor(this._element).subscribe(X=>{X&&this.panel.accordion&&this.panel.accordion._handleHeaderFocus(this)})}ngOnDestroy(){this._parentChangeSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._element)}static#e=this.\u0275fac=function(me){return new(me||Ke)(e.rXU(r,1),e.rXU(e.aKT),e.rXU(R.FN),e.rXU(e.gRc),e.rXU(_,8),e.rXU(e.bc$,8),e.kS0("tabindex"))};static#t=this.\u0275cmp=e.VBU({type:Ke,selectors:[["mat-expansion-panel-header"]],hostAttrs:["role","button",1,"mat-expansion-panel-header","mat-focus-indicator"],hostVars:15,hostBindings:function(me,ce){1&me&&e.bIt("click",function(){return ce._toggle()})("keydown",function(ke){return ce._keydown(ke)}),2&me&&(e.BMQ("id",ce.panel._headerId)("tabindex",ce.disabled?-1:ce.tabIndex)("aria-controls",ce._getPanelId())("aria-expanded",ce._isExpanded())("aria-disabled",ce.panel.disabled),e.xc7("height",ce._getHeaderHeight()),e.AVh("mat-expanded",ce._isExpanded())("mat-expansion-toggle-indicator-after","after"===ce._getTogglePosition())("mat-expansion-toggle-indicator-before","before"===ce._getTogglePosition())("_mat-animation-noopable","NoopAnimations"===ce._animationMode))},inputs:{expandedHeight:"expandedHeight",collapsedHeight:"collapsedHeight",tabIndex:[2,"tabIndex","tabIndex",X=>null==X?0:(0,e.Udg)(X)]},standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:D,decls:5,vars:3,consts:[[1,"mat-content"],[1,"mat-expansion-indicator"],["xmlns","http://www.w3.org/2000/svg","viewBox","0 -960 960 960","aria-hidden","true","focusable","false"],["d","M480-345 240-585l56-56 184 184 184-184 56 56-240 240Z"]],template:function(me,ce){1&me&&(e.NAR(de),e.j41(0,"span",0),e.SdG(1),e.SdG(2,1),e.SdG(3,2),e.k0s(),e.DNE(4,n,3,1,"span",1)),2&me&&(e.AVh("mat-content-hide-toggle",!ce._showToggle()),e.R7$(4),e.vxM(ce._showToggle()?4:-1))},styles:['.mat-expansion-panel-header{display:flex;flex-direction:row;align-items:center;padding:0 24px;border-radius:inherit;transition:height 225ms cubic-bezier(0.4, 0, 0.2, 1);height:var(--mat-expansion-header-collapsed-state-height);font-family:var(--mat-expansion-header-text-font);font-size:var(--mat-expansion-header-text-size);font-weight:var(--mat-expansion-header-text-weight);line-height:var(--mat-expansion-header-text-line-height);letter-spacing:var(--mat-expansion-header-text-tracking)}.mat-expansion-panel-header.mat-expanded{height:var(--mat-expansion-header-expanded-state-height)}.mat-expansion-panel-header[aria-disabled=true]{color:var(--mat-expansion-header-disabled-state-text-color)}.mat-expansion-panel-header:not([aria-disabled=true]){cursor:pointer}.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--mat-expansion-header-hover-state-layer-color)}@media(hover: none){.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--mat-expansion-container-background-color)}}.mat-expansion-panel .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,.mat-expansion-panel .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused{background:var(--mat-expansion-header-focus-state-layer-color)}.mat-expansion-panel-header._mat-animation-noopable{transition:none}.mat-expansion-panel-header:focus,.mat-expansion-panel-header:hover{outline:none}.mat-expansion-panel-header.mat-expanded:focus,.mat-expansion-panel-header.mat-expanded:hover{background:inherit}.mat-expansion-panel-header.mat-expansion-toggle-indicator-before{flex-direction:row-reverse}.mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator{margin:0 16px 0 0}[dir=rtl] .mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator{margin:0 0 0 16px}.mat-content{display:flex;flex:1;flex-direction:row;overflow:hidden}.mat-content.mat-content-hide-toggle{margin-right:8px}[dir=rtl] .mat-content.mat-content-hide-toggle{margin-right:0;margin-left:8px}.mat-expansion-toggle-indicator-before .mat-content.mat-content-hide-toggle{margin-left:24px;margin-right:0}[dir=rtl] .mat-expansion-toggle-indicator-before .mat-content.mat-content-hide-toggle{margin-right:24px;margin-left:0}.mat-expansion-panel-header-title{color:var(--mat-expansion-header-text-color)}.mat-expansion-panel-header-title,.mat-expansion-panel-header-description{display:flex;flex-grow:1;flex-basis:0;margin-right:16px;align-items:center}[dir=rtl] .mat-expansion-panel-header-title,[dir=rtl] .mat-expansion-panel-header-description{margin-right:0;margin-left:16px}.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header-description{flex-grow:2;color:var(--mat-expansion-header-description-color)}.mat-expansion-indicator::after{border-style:solid;border-width:0 2px 2px 0;content:"";display:inline-block;padding:3px;transform:rotate(45deg);vertical-align:middle;color:var(--mat-expansion-header-indicator-color);display:inline-block;display:var(--mat-expansion-legacy-header-indicator-display, inline-block)}.mat-expansion-indicator svg{width:24px;height:24px;margin:0 -8px;vertical-align:middle;fill:var(--mat-expansion-header-indicator-color);display:none;display:var(--mat-expansion-header-indicator-display, none)}.cdk-high-contrast-active .mat-expansion-panel-content{border-top:1px solid;border-top-left-radius:0;border-top-right-radius:0}'],encapsulation:2,data:{animation:[h.indicatorRotate]},changeDetection:0})}return Ke})(),ne=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["mat-panel-description"]],hostAttrs:[1,"mat-expansion-panel-header-description"],standalone:!0})}return Ke})(),Ee=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["mat-panel-title"]],hostAttrs:[1,"mat-expansion-panel-header-title"],standalone:!0})}return Ke})(),ze=(()=>{class Ke extends f{constructor(){super(...arguments),this._ownHeaders=new e.rOR,this.hideToggle=!1,this.displayMode="default",this.togglePosition="after"}ngAfterContentInit(){this._headers.changes.pipe((0,z.Z)(this._headers)).subscribe(X=>{this._ownHeaders.reset(X.filter(me=>me.panel.accordion===this)),this._ownHeaders.notifyOnChanges()}),this._keyManager=new R.Bu(this._ownHeaders).withWrap().withHomeAndEnd()}_handleHeaderKeydown(X){this._keyManager.onKeydown(X)}_handleHeaderFocus(X){this._keyManager.updateActiveItem(X)}ngOnDestroy(){super.ngOnDestroy(),this._keyManager?.destroy(),this._ownHeaders.destroy()}static#e=this.\u0275fac=(()=>{let X;return function(ce){return(X||(X=e.xGo(Ke)))(ce||Ke)}})();static#t=this.\u0275dir=e.FsC({type:Ke,selectors:[["mat-accordion"]],contentQueries:function(me,ce,fe){if(1&me&&e.wni(fe,N,5),2&me){let ke;e.mGM(ke=e.lsd())&&(ce._headers=ke)}},hostAttrs:[1,"mat-accordion"],hostVars:2,hostBindings:function(me,ce){2&me&&e.AVh("mat-accordion-multi",ce.multi)},inputs:{hideToggle:[2,"hideToggle","hideToggle",e.L39],displayMode:"displayMode",togglePosition:"togglePosition"},exportAs:["matAccordion"],standalone:!0,features:[e.Jv_([{provide:c,useExisting:Ke}]),e.GFd,e.Vt3]})}return Ke})(),qe=(()=>{class Ke{static#e=this.\u0275fac=function(me){return new(me||Ke)};static#t=this.\u0275mod=e.$C({type:Ke});static#i=this.\u0275inj=e.G2t({imports:[F.yE,T,y.jc]})}return Ke})()},6467:(Qe,te,g)=>{"use strict";g.d(te,{xb:()=>Yt,TL:()=>fe,rl:()=>zt,qT:()=>Xe,RG:()=>Jt,MV:()=>mt,nJ:()=>X,yw:()=>Ze});var e=g(4438),t=g(8203),w=g(6860),S=g(8359),l=g(1413),x=g(7786),f=g(6977),I=g(1985),d=g(5964),T=g(2771),y=g(7647);class z{constructor(dt){this._box=dt,this._destroyed=new l.B,this._resizeSubject=new l.B,this._elementObservables=new Map,typeof ResizeObserver<"u"&&(this._resizeObserver=new ResizeObserver(Ae=>this._resizeSubject.next(Ae)))}observe(dt){return this._elementObservables.has(dt)||this._elementObservables.set(dt,new I.c(Ae=>{const we=this._resizeSubject.subscribe(Ae);return this._resizeObserver?.observe(dt,{box:this._box}),()=>{this._resizeObserver?.unobserve(dt),we.unsubscribe(),this._elementObservables.delete(dt)}}).pipe((0,d.p)(Ae=>Ae.some(we=>we.target===dt)),function F(St,dt,Ae){let we,he=!1;return St&&"object"==typeof St?({bufferSize:we=1/0,windowTime:dt=1/0,refCount:he=!1,scheduler:Ae}=St):we=St??1/0,(0,y.u)({connector:()=>new T.m(we,dt,Ae),resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:he})}({bufferSize:1,refCount:!0}),(0,f.Q)(this._destroyed))),this._elementObservables.get(dt)}destroy(){this._destroyed.next(),this._destroyed.complete(),this._resizeSubject.complete(),this._elementObservables.clear()}}let W=(()=>{class St{constructor(){this._observers=new Map,this._ngZone=(0,e.WQX)(e.SKi)}ngOnDestroy(){for(const[,Ae]of this._observers)Ae.destroy();this._observers.clear()}observe(Ae,we){const he=we?.box||"content-box";return this._observers.has(he)||this._observers.set(he,new z(he)),this._observers.get(he).observe(Ae)}static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275prov=e.jDH({token:St,factory:St.\u0275fac,providedIn:"root"})}return St})();var $=g(4085),j=g(9969),Q=g(177),J=g(2318),ee=g(6600);const ie=["notch"],ge=["matFormFieldNotchedOutline",""],ae=["*"],Me=["textField"],Te=["iconPrefixContainer"],de=["textPrefixContainer"],D=["*",[["mat-label"]],[["","matPrefix",""],["","matIconPrefix",""]],[["","matTextPrefix",""]],[["","matTextSuffix",""]],[["","matSuffix",""],["","matIconSuffix",""]],[["mat-error"],["","matError",""]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],n=["*","mat-label","[matPrefix], [matIconPrefix]","[matTextPrefix]","[matTextSuffix]","[matSuffix], [matIconSuffix]","mat-error, [matError]","mat-hint:not([align='end'])","mat-hint[align='end']"];function c(St,dt){1&St&&e.nrm(0,"span",19)}function m(St,dt){if(1&St&&(e.j41(0,"label",18),e.SdG(1,1),e.DNE(2,c,1,0,"span",19),e.k0s()),2&St){const Ae=e.XpG(2);e.Y8G("floating",Ae._shouldLabelFloat())("monitorResize",Ae._hasOutline())("id",Ae._labelId),e.BMQ("for",Ae._control.disableAutomaticLabeling?null:Ae._control.id),e.R7$(2),e.vxM(!Ae.hideRequiredMarker&&Ae._control.required?2:-1)}}function h(St,dt){if(1&St&&e.DNE(0,m,3,5,"label",18),2&St){const Ae=e.XpG();e.vxM(Ae._hasFloatingLabel()?0:-1)}}function C(St,dt){1&St&&e.nrm(0,"div",5)}function k(St,dt){}function L(St,dt){if(1&St&&e.DNE(0,k,0,0,"ng-template",11),2&St){e.XpG(2);const Ae=e.sdS(1);e.Y8G("ngTemplateOutlet",Ae)}}function _(St,dt){if(1&St&&(e.j41(0,"div",7),e.DNE(1,L,1,1,null,11),e.k0s()),2&St){const Ae=e.XpG();e.Y8G("matFormFieldNotchedOutlineOpen",Ae._shouldLabelFloat()),e.R7$(),e.vxM(Ae._forceDisplayInfixLabel()?-1:1)}}function r(St,dt){1&St&&(e.j41(0,"div",8,2),e.SdG(2,2),e.k0s())}function v(St,dt){1&St&&(e.j41(0,"div",9,3),e.SdG(2,3),e.k0s())}function V(St,dt){}function N(St,dt){if(1&St&&e.DNE(0,V,0,0,"ng-template",11),2&St){e.XpG();const Ae=e.sdS(1);e.Y8G("ngTemplateOutlet",Ae)}}function ne(St,dt){1&St&&(e.j41(0,"div",12),e.SdG(1,4),e.k0s())}function Ee(St,dt){1&St&&(e.j41(0,"div",13),e.SdG(1,5),e.k0s())}function ze(St,dt){1&St&&e.nrm(0,"div",14)}function qe(St,dt){if(1&St&&(e.j41(0,"div",16),e.SdG(1,6),e.k0s()),2&St){const Ae=e.XpG();e.Y8G("@transitionMessages",Ae._subscriptAnimationState)}}function Ke(St,dt){if(1&St&&(e.j41(0,"mat-hint",20),e.EFF(1),e.k0s()),2&St){const Ae=e.XpG(2);e.Y8G("id",Ae._hintLabelId),e.R7$(),e.JRh(Ae.hintLabel)}}function se(St,dt){if(1&St&&(e.j41(0,"div",17),e.DNE(1,Ke,2,2,"mat-hint",20),e.SdG(2,7),e.nrm(3,"div",21),e.SdG(4,8),e.k0s()),2&St){const Ae=e.XpG();e.Y8G("@transitionMessages",Ae._subscriptAnimationState),e.R7$(),e.vxM(Ae.hintLabel?1:-1)}}let X=(()=>{class St{static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["mat-label"]],standalone:!0})}return St})(),me=0;const ce=new e.nKC("MatError");let fe=(()=>{class St{constructor(Ae,we){this.id="mat-mdc-error-"+me++,Ae||we.nativeElement.setAttribute("aria-live","polite")}static#e=this.\u0275fac=function(we){return new(we||St)(e.kS0("aria-live"),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["mat-error"],["","matError",""]],hostAttrs:["aria-atomic","true",1,"mat-mdc-form-field-error","mat-mdc-form-field-bottom-align"],hostVars:1,hostBindings:function(we,he){2&we&&e.Mr5("id",he.id)},inputs:{id:"id"},standalone:!0,features:[e.Jv_([{provide:ce,useExisting:St}])]})}return St})(),ke=0,mt=(()=>{class St{constructor(){this.align="start",this.id="mat-mdc-hint-"+ke++}static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["mat-hint"]],hostAttrs:[1,"mat-mdc-form-field-hint","mat-mdc-form-field-bottom-align"],hostVars:4,hostBindings:function(we,he){2&we&&(e.Mr5("id",he.id),e.BMQ("align",null),e.AVh("mat-mdc-form-field-hint-end","end"===he.align))},inputs:{align:"align",id:"id"},standalone:!0})}return St})();const _e=new e.nKC("MatPrefix"),pe=new e.nKC("MatSuffix");let Ze=(()=>{class St{constructor(){this._isText=!1}set _isTextSelector(Ae){this._isText=!0}static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["","matSuffix",""],["","matIconSuffix",""],["","matTextSuffix",""]],inputs:{_isTextSelector:[0,"matTextSuffix","_isTextSelector"]},standalone:!0,features:[e.Jv_([{provide:pe,useExisting:St}])]})}return St})();const _t=new e.nKC("FloatingLabelParent");let at=(()=>{class St{get floating(){return this._floating}set floating(Ae){this._floating=Ae,this.monitorResize&&this._handleResize()}get monitorResize(){return this._monitorResize}set monitorResize(Ae){this._monitorResize=Ae,this._monitorResize?this._subscribeToResize():this._resizeSubscription.unsubscribe()}constructor(Ae){this._elementRef=Ae,this._floating=!1,this._monitorResize=!1,this._resizeObserver=(0,e.WQX)(W),this._ngZone=(0,e.WQX)(e.SKi),this._parent=(0,e.WQX)(_t),this._resizeSubscription=new S.yU}ngOnDestroy(){this._resizeSubscription.unsubscribe()}getWidth(){return function pt(St){if(null!==St.offsetParent)return St.scrollWidth;const Ae=St.cloneNode(!0);Ae.style.setProperty("position","absolute"),Ae.style.setProperty("transform","translate(-9999px, -9999px)"),document.documentElement.appendChild(Ae);const we=Ae.scrollWidth;return Ae.remove(),we}(this._elementRef.nativeElement)}get element(){return this._elementRef.nativeElement}_handleResize(){setTimeout(()=>this._parent._handleLabelResized())}_subscribeToResize(){this._resizeSubscription.unsubscribe(),this._ngZone.runOutsideAngular(()=>{this._resizeSubscription=this._resizeObserver.observe(this._elementRef.nativeElement,{box:"border-box"}).subscribe(()=>this._handleResize())})}static#e=this.\u0275fac=function(we){return new(we||St)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["label","matFormFieldFloatingLabel",""]],hostAttrs:[1,"mdc-floating-label","mat-mdc-floating-label"],hostVars:2,hostBindings:function(we,he){2&we&&e.AVh("mdc-floating-label--float-above",he.floating)},inputs:{floating:"floating",monitorResize:"monitorResize"},standalone:!0})}return St})();const Xt="mdc-line-ripple--active",ye="mdc-line-ripple--deactivating";let ue=(()=>{class St{constructor(Ae,we){this._elementRef=Ae,this._handleTransitionEnd=he=>{const q=this._elementRef.nativeElement.classList,Re=q.contains(ye);"opacity"===he.propertyName&&Re&&q.remove(Xt,ye)},we.runOutsideAngular(()=>{Ae.nativeElement.addEventListener("transitionend",this._handleTransitionEnd)})}activate(){const Ae=this._elementRef.nativeElement.classList;Ae.remove(ye),Ae.add(Xt)}deactivate(){this._elementRef.nativeElement.classList.add(ye)}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._handleTransitionEnd)}static#e=this.\u0275fac=function(we){return new(we||St)(e.rXU(e.aKT),e.rXU(e.SKi))};static#t=this.\u0275dir=e.FsC({type:St,selectors:[["div","matFormFieldLineRipple",""]],hostAttrs:[1,"mdc-line-ripple"],standalone:!0})}return St})(),Ie=(()=>{class St{constructor(Ae,we){this._elementRef=Ae,this._ngZone=we,this.open=!1}ngAfterViewInit(){const Ae=this._elementRef.nativeElement.querySelector(".mdc-floating-label");Ae?(this._elementRef.nativeElement.classList.add("mdc-notched-outline--upgraded"),"function"==typeof requestAnimationFrame&&(Ae.style.transitionDuration="0s",this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>Ae.style.transitionDuration="")}))):this._elementRef.nativeElement.classList.add("mdc-notched-outline--no-label")}_setNotchWidth(Ae){this._notch.nativeElement.style.width=this.open&&Ae?`calc(${Ae}px * var(--mat-mdc-form-field-floating-label-scale, 0.75) + 9px)`:""}static#e=this.\u0275fac=function(we){return new(we||St)(e.rXU(e.aKT),e.rXU(e.SKi))};static#t=this.\u0275cmp=e.VBU({type:St,selectors:[["div","matFormFieldNotchedOutline",""]],viewQuery:function(we,he){if(1&we&&e.GBs(ie,5),2&we){let q;e.mGM(q=e.lsd())&&(he._notch=q.first)}},hostAttrs:[1,"mdc-notched-outline"],hostVars:2,hostBindings:function(we,he){2&we&&e.AVh("mdc-notched-outline--notched",he.open)},inputs:{open:[0,"matFormFieldNotchedOutlineOpen","open"]},standalone:!0,features:[e.aNF],attrs:ge,ngContentSelectors:ae,decls:5,vars:0,consts:[["notch",""],[1,"mdc-notched-outline__leading"],[1,"mdc-notched-outline__notch"],[1,"mdc-notched-outline__trailing"]],template:function(we,he){1&we&&(e.NAR(),e.nrm(0,"div",1),e.j41(1,"div",2,0),e.SdG(3),e.k0s(),e.nrm(4,"div",3))},encapsulation:2,changeDetection:0})}return St})();const He={transitionMessages:(0,j.hZ)("transitionMessages",[(0,j.wk)("enter",(0,j.iF)({opacity:1,transform:"translateY(0%)"})),(0,j.kY)("void => enter",[(0,j.iF)({opacity:0,transform:"translateY(-5px)"}),(0,j.i0)("300ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let Xe=(()=>{class St{static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275dir=e.FsC({type:St})}return St})();const Yt=new e.nKC("MatFormField"),Nt=new e.nKC("MAT_FORM_FIELD_DEFAULT_OPTIONS");let Et=0,zt=(()=>{class St{get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(Ae){this._hideRequiredMarker=(0,$.he)(Ae)}get floatLabel(){return this._floatLabel||this._defaults?.floatLabel||"auto"}set floatLabel(Ae){Ae!==this._floatLabel&&(this._floatLabel=Ae,this._changeDetectorRef.markForCheck())}get appearance(){return this._appearance}set appearance(Ae){const we=this._appearance;this._appearance=Ae||this._defaults?.appearance||"fill","outline"===this._appearance&&this._appearance!==we&&(this._needsOutlineLabelOffsetUpdateOnStable=!0)}get subscriptSizing(){return this._subscriptSizing||this._defaults?.subscriptSizing||"fixed"}set subscriptSizing(Ae){this._subscriptSizing=Ae||this._defaults?.subscriptSizing||"fixed"}get hintLabel(){return this._hintLabel}set hintLabel(Ae){this._hintLabel=Ae,this._processHints()}get _control(){return this._explicitFormFieldControl||this._formFieldControl}set _control(Ae){this._explicitFormFieldControl=Ae}constructor(Ae,we,he,q,Re,Ne,gt,$e){this._elementRef=Ae,this._changeDetectorRef=we,this._ngZone=he,this._dir=q,this._platform=Re,this._defaults=Ne,this._animationMode=gt,this._hideRequiredMarker=!1,this.color="primary",this._appearance="fill",this._subscriptSizing=null,this._hintLabel="",this._hasIconPrefix=!1,this._hasTextPrefix=!1,this._hasIconSuffix=!1,this._hasTextSuffix=!1,this._labelId="mat-mdc-form-field-label-"+Et++,this._hintLabelId="mat-mdc-hint-"+Et++,this._subscriptAnimationState="",this._destroyed=new l.B,this._isFocused=null,this._needsOutlineLabelOffsetUpdateOnStable=!1,Ne&&(Ne.appearance&&(this.appearance=Ne.appearance),this._hideRequiredMarker=!!Ne?.hideRequiredMarker,Ne.color&&(this.color=Ne.color))}ngAfterViewInit(){this._updateFocusState(),this._subscriptAnimationState="enter",this._changeDetectorRef.detectChanges()}ngAfterContentInit(){this._assertFormFieldControl(),this._initializeControl(),this._initializeSubscript(),this._initializePrefixAndSuffix(),this._initializeOutlineLabelOffsetSubscriptions()}ngAfterContentChecked(){this._assertFormFieldControl()}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}getLabelId(){return this._hasFloatingLabel()?this._labelId:null}getConnectedOverlayOrigin(){return this._textField||this._elementRef}_animateAndLockLabel(){this._hasFloatingLabel()&&(this.floatLabel="always")}_initializeControl(){const Ae=this._control;Ae.controlType&&this._elementRef.nativeElement.classList.add(`mat-mdc-form-field-type-${Ae.controlType}`),Ae.stateChanges.subscribe(()=>{this._updateFocusState(),this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),Ae.ngControl&&Ae.ngControl.valueChanges&&Ae.ngControl.valueChanges.pipe((0,f.Q)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck())}_checkPrefixAndSuffixTypes(){this._hasIconPrefix=!!this._prefixChildren.find(Ae=>!Ae._isText),this._hasTextPrefix=!!this._prefixChildren.find(Ae=>Ae._isText),this._hasIconSuffix=!!this._suffixChildren.find(Ae=>!Ae._isText),this._hasTextSuffix=!!this._suffixChildren.find(Ae=>Ae._isText)}_initializePrefixAndSuffix(){this._checkPrefixAndSuffixTypes(),(0,x.h)(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._checkPrefixAndSuffixTypes(),this._changeDetectorRef.markForCheck()})}_initializeSubscript(){this._hintChildren.changes.subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._validateHints(),this._syncDescribedByIds()}_assertFormFieldControl(){}_updateFocusState(){this._control.focused&&!this._isFocused?(this._isFocused=!0,this._lineRipple?.activate()):!this._control.focused&&(this._isFocused||null===this._isFocused)&&(this._isFocused=!1,this._lineRipple?.deactivate()),this._textField?.nativeElement.classList.toggle("mdc-text-field--focused",this._control.focused)}_initializeOutlineLabelOffsetSubscriptions(){this._prefixChildren.changes.subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0),this._ngZone.runOutsideAngular(()=>{this._ngZone.onStable.pipe((0,f.Q)(this._destroyed)).subscribe(()=>{this._needsOutlineLabelOffsetUpdateOnStable&&(this._needsOutlineLabelOffsetUpdateOnStable=!1,this._updateOutlineLabelOffset())})}),this._dir.change.pipe((0,f.Q)(this._destroyed)).subscribe(()=>this._needsOutlineLabelOffsetUpdateOnStable=!0)}_shouldAlwaysFloat(){return"always"===this.floatLabel}_hasOutline(){return"outline"===this.appearance}_forceDisplayInfixLabel(){return!this._platform.isBrowser&&this._prefixChildren.length&&!this._shouldLabelFloat()}_hasFloatingLabel(){return!!this._labelChildNonStatic||!!this._labelChildStatic}_shouldLabelFloat(){return this._control.shouldLabelFloat||this._shouldAlwaysFloat()}_shouldForward(Ae){const we=this._control?this._control.ngControl:null;return we&&we[Ae]}_getDisplayedMessages(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"}_handleLabelResized(){this._refreshOutlineNotchWidth()}_refreshOutlineNotchWidth(){this._hasOutline()&&this._floatingLabel&&this._shouldLabelFloat()?this._notchedOutline?._setNotchWidth(this._floatingLabel.getWidth()):this._notchedOutline?._setNotchWidth(0)}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){}_syncDescribedByIds(){if(this._control){let Ae=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&Ae.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getDisplayedMessages()){const we=this._hintChildren?this._hintChildren.find(q=>"start"===q.align):null,he=this._hintChildren?this._hintChildren.find(q=>"end"===q.align):null;we?Ae.push(we.id):this._hintLabel&&Ae.push(this._hintLabelId),he&&Ae.push(he.id)}else this._errorChildren&&Ae.push(...this._errorChildren.map(we=>we.id));this._control.setDescribedByIds(Ae)}}_updateOutlineLabelOffset(){if(!this._platform.isBrowser||!this._hasOutline()||!this._floatingLabel)return;const Ae=this._floatingLabel.element;if(!this._iconPrefixContainer&&!this._textPrefixContainer)return void(Ae.style.transform="");if(!this._isAttachedToDom())return void(this._needsOutlineLabelOffsetUpdateOnStable=!0);const we=this._iconPrefixContainer?.nativeElement,he=this._textPrefixContainer?.nativeElement,q=we?.getBoundingClientRect().width??0,Re=he?.getBoundingClientRect().width??0;Ae.style.transform=`var(\n --mat-mdc-form-field-label-transform,\n translateY(-50%) translateX(calc(${"rtl"===this._dir.value?"-1":"1"} * (${q+Re}px + var(--mat-mdc-form-field-label-offset-x, 0px))))\n )`}_isAttachedToDom(){const Ae=this._elementRef.nativeElement;if(Ae.getRootNode){const we=Ae.getRootNode();return we&&we!==Ae}return document.documentElement.contains(Ae)}static#e=this.\u0275fac=function(we){return new(we||St)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(e.SKi),e.rXU(t.dS),e.rXU(w.OD),e.rXU(Nt,8),e.rXU(e.bc$,8),e.rXU(Q.qQ))};static#t=this.\u0275cmp=e.VBU({type:St,selectors:[["mat-form-field"]],contentQueries:function(we,he,q){if(1&we&&(e.wni(q,X,5),e.wni(q,X,7),e.wni(q,Xe,5),e.wni(q,_e,5),e.wni(q,pe,5),e.wni(q,ce,5),e.wni(q,mt,5)),2&we){let Re;e.mGM(Re=e.lsd())&&(he._labelChildNonStatic=Re.first),e.mGM(Re=e.lsd())&&(he._labelChildStatic=Re.first),e.mGM(Re=e.lsd())&&(he._formFieldControl=Re.first),e.mGM(Re=e.lsd())&&(he._prefixChildren=Re),e.mGM(Re=e.lsd())&&(he._suffixChildren=Re),e.mGM(Re=e.lsd())&&(he._errorChildren=Re),e.mGM(Re=e.lsd())&&(he._hintChildren=Re)}},viewQuery:function(we,he){if(1&we&&(e.GBs(Me,5),e.GBs(Te,5),e.GBs(de,5),e.GBs(at,5),e.GBs(Ie,5),e.GBs(ue,5)),2&we){let q;e.mGM(q=e.lsd())&&(he._textField=q.first),e.mGM(q=e.lsd())&&(he._iconPrefixContainer=q.first),e.mGM(q=e.lsd())&&(he._textPrefixContainer=q.first),e.mGM(q=e.lsd())&&(he._floatingLabel=q.first),e.mGM(q=e.lsd())&&(he._notchedOutline=q.first),e.mGM(q=e.lsd())&&(he._lineRipple=q.first)}},hostAttrs:[1,"mat-mdc-form-field"],hostVars:42,hostBindings:function(we,he){2&we&&e.AVh("mat-mdc-form-field-label-always-float",he._shouldAlwaysFloat())("mat-mdc-form-field-has-icon-prefix",he._hasIconPrefix)("mat-mdc-form-field-has-icon-suffix",he._hasIconSuffix)("mat-form-field-invalid",he._control.errorState)("mat-form-field-disabled",he._control.disabled)("mat-form-field-autofilled",he._control.autofilled)("mat-form-field-no-animations","NoopAnimations"===he._animationMode)("mat-form-field-appearance-fill","fill"==he.appearance)("mat-form-field-appearance-outline","outline"==he.appearance)("mat-form-field-hide-placeholder",he._hasFloatingLabel()&&!he._shouldLabelFloat())("mat-focused",he._control.focused)("mat-primary","accent"!==he.color&&"warn"!==he.color)("mat-accent","accent"===he.color)("mat-warn","warn"===he.color)("ng-untouched",he._shouldForward("untouched"))("ng-touched",he._shouldForward("touched"))("ng-pristine",he._shouldForward("pristine"))("ng-dirty",he._shouldForward("dirty"))("ng-valid",he._shouldForward("valid"))("ng-invalid",he._shouldForward("invalid"))("ng-pending",he._shouldForward("pending"))},inputs:{hideRequiredMarker:"hideRequiredMarker",color:"color",floatLabel:"floatLabel",appearance:"appearance",subscriptSizing:"subscriptSizing",hintLabel:"hintLabel"},exportAs:["matFormField"],standalone:!0,features:[e.Jv_([{provide:Yt,useExisting:St},{provide:_t,useExisting:St}]),e.aNF],ngContentSelectors:n,decls:18,vars:21,consts:[["labelTemplate",""],["textField",""],["iconPrefixContainer",""],["textPrefixContainer",""],[1,"mat-mdc-text-field-wrapper","mdc-text-field",3,"click"],[1,"mat-mdc-form-field-focus-overlay"],[1,"mat-mdc-form-field-flex"],["matFormFieldNotchedOutline","",3,"matFormFieldNotchedOutlineOpen"],[1,"mat-mdc-form-field-icon-prefix"],[1,"mat-mdc-form-field-text-prefix"],[1,"mat-mdc-form-field-infix"],[3,"ngTemplateOutlet"],[1,"mat-mdc-form-field-text-suffix"],[1,"mat-mdc-form-field-icon-suffix"],["matFormFieldLineRipple",""],[1,"mat-mdc-form-field-subscript-wrapper","mat-mdc-form-field-bottom-align"],[1,"mat-mdc-form-field-error-wrapper"],[1,"mat-mdc-form-field-hint-wrapper"],["matFormFieldFloatingLabel","",3,"floating","monitorResize","id"],["aria-hidden","true",1,"mat-mdc-form-field-required-marker","mdc-floating-label--required"],[3,"id"],[1,"mat-mdc-form-field-hint-spacer"]],template:function(we,he){if(1&we){const q=e.RV6();e.NAR(D),e.DNE(0,h,1,1,"ng-template",null,0,e.C5r),e.j41(2,"div",4,1),e.bIt("click",function(Ne){return e.eBV(q),e.Njj(he._control.onContainerClick(Ne))}),e.DNE(4,C,1,0,"div",5),e.j41(5,"div",6),e.DNE(6,_,2,2,"div",7)(7,r,3,0,"div",8)(8,v,3,0,"div",9),e.j41(9,"div",10),e.DNE(10,N,1,1,null,11),e.SdG(11),e.k0s(),e.DNE(12,ne,2,0,"div",12)(13,Ee,2,0,"div",13),e.k0s(),e.DNE(14,ze,1,0,"div",14),e.k0s(),e.j41(15,"div",15),e.DNE(16,qe,2,1,"div",16)(17,se,5,2,"div",17),e.k0s()}if(2&we){let q;e.R7$(2),e.AVh("mdc-text-field--filled",!he._hasOutline())("mdc-text-field--outlined",he._hasOutline())("mdc-text-field--no-label",!he._hasFloatingLabel())("mdc-text-field--disabled",he._control.disabled)("mdc-text-field--invalid",he._control.errorState),e.R7$(2),e.vxM(he._hasOutline()||he._control.disabled?-1:4),e.R7$(2),e.vxM(he._hasOutline()?6:-1),e.R7$(),e.vxM(he._hasIconPrefix?7:-1),e.R7$(),e.vxM(he._hasTextPrefix?8:-1),e.R7$(2),e.vxM(!he._hasOutline()||he._forceDisplayInfixLabel()?10:-1),e.R7$(2),e.vxM(he._hasTextSuffix?12:-1),e.R7$(),e.vxM(he._hasIconSuffix?13:-1),e.R7$(),e.vxM(he._hasOutline()?-1:14),e.R7$(),e.AVh("mat-mdc-form-field-subscript-dynamic-size","dynamic"===he.subscriptSizing),e.R7$(),e.vxM("error"===(q=he._getDisplayedMessages())?16:"hint"===q?17:-1)}},dependencies:[at,Ie,Q.T3,ue,mt],styles:['.mdc-text-field{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:0;border-bottom-left-radius:0;display:inline-flex;align-items:baseline;padding:0 16px;position:relative;box-sizing:border-box;overflow:hidden;will-change:opacity,transform,color}.mdc-text-field .mdc-floating-label{top:50%;transform:translateY(-50%);pointer-events:none}.mdc-text-field__input{height:28px;width:100%;min-width:0;border:none;border-radius:0;background:none;appearance:none;padding:0}.mdc-text-field__input::-ms-clear{display:none}.mdc-text-field__input::-webkit-calendar-picker-indicator{display:none}.mdc-text-field__input:focus{outline:none}.mdc-text-field__input:invalid{box-shadow:none}@media all{.mdc-text-field__input::placeholder{opacity:0}}@media all{.mdc-text-field__input:-ms-input-placeholder{opacity:0}}@media all{.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mdc-text-field--focused .mdc-text-field__input::placeholder{opacity:1}}@media all{.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder{opacity:1}}.mdc-text-field__affix{height:28px;opacity:0;white-space:nowrap}.mdc-text-field--label-floating .mdc-text-field__affix,.mdc-text-field--no-label .mdc-text-field__affix{opacity:1}@supports(-webkit-hyphens: none){.mdc-text-field--outlined .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field__affix--prefix,.mdc-text-field__affix--prefix[dir=rtl]{padding-left:2px;padding-right:0}.mdc-text-field--end-aligned .mdc-text-field__affix--prefix{padding-left:0;padding-right:12px}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--end-aligned .mdc-text-field__affix--prefix[dir=rtl]{padding-left:12px;padding-right:0}.mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field__affix--suffix,.mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:12px}.mdc-text-field--end-aligned .mdc-text-field__affix--suffix{padding-left:2px;padding-right:0}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--end-aligned .mdc-text-field__affix--suffix[dir=rtl]{padding-left:0;padding-right:2px}.mdc-text-field--filled{height:56px}.mdc-text-field--filled::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}.mdc-text-field--filled .mdc-floating-label{left:16px;right:initial}[dir=rtl] .mdc-text-field--filled .mdc-floating-label,.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:16px}.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{height:100%}.mdc-text-field--filled.mdc-text-field--no-label .mdc-floating-label{display:none}.mdc-text-field--filled.mdc-text-field--no-label::before{display:none}@supports(-webkit-hyphens: none){.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__affix{align-items:center;align-self:center;display:inline-flex;height:100%}}.mdc-text-field--outlined{height:56px;overflow:visible}.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) scale(1)}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) scale(0.75)}.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--outlined .mdc-text-field__input{height:100%}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border-bottom-left-radius:var(--mdc-shape-small, 4px)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:4px;border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px,var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px,var(--mdc-shape-small, 4px))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:4px;border-top-right-radius:var(--mdc-shape-small, 4px);border-bottom-right-radius:4px;border-bottom-right-radius:var(--mdc-shape-small, 4px);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:4px;border-top-left-radius:var(--mdc-shape-small, 4px);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:4px;border-bottom-left-radius:var(--mdc-shape-small, 4px)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px,var(--mdc-shape-small, 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px,var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px,var(--mdc-shape-small, 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px,var(--mdc-shape-small, 4px))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px,calc(var(--mdc-shape-small, 4px) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:1px}.mdc-text-field--outlined .mdc-floating-label{left:4px;right:initial}[dir=rtl] .mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:4px}.mdc-text-field--outlined .mdc-text-field__input{display:flex;border:none !important;background-color:rgba(0,0,0,0)}.mdc-text-field--outlined .mdc-notched-outline{z-index:1}.mdc-text-field--textarea{flex-direction:column;align-items:center;width:auto;height:auto;padding:0}.mdc-text-field--textarea .mdc-floating-label{top:19px}.mdc-text-field--textarea .mdc-floating-label:not(.mdc-floating-label--float-above){transform:none}.mdc-text-field--textarea .mdc-text-field__input{flex-grow:1;height:auto;min-height:1.5rem;overflow-x:hidden;overflow-y:auto;box-sizing:border-box;resize:none;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--filled::before{display:none}.mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-10.25px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--filled .mdc-text-field__input{margin-top:23px;margin-bottom:9px}.mdc-text-field--textarea.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-27.25px) scale(1)}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-24.75px) scale(0.75)}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-text-field__input{margin-top:16px;margin-bottom:16px}.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label{top:18px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field__input{margin-bottom:2px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter{align-self:flex-end;padding:0 16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::after{display:inline-block;width:0;height:16px;content:"";vertical-align:-16px}.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter::before{display:none}.mdc-text-field__resizer{align-self:stretch;display:inline-flex;flex-direction:column;flex-grow:1;max-height:100%;max-width:100%;min-height:56px;min-width:fit-content;min-width:-moz-available;min-width:-webkit-fill-available;overflow:hidden;resize:both}.mdc-text-field--filled .mdc-text-field__resizer{transform:translateY(-1px)}.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateY(1px)}.mdc-text-field--outlined .mdc-text-field__resizer{transform:translateX(-1px) translateY(-1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer,.mdc-text-field--outlined .mdc-text-field__resizer[dir=rtl]{transform:translateX(1px) translateY(-1px)}.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter{transform:translateX(1px) translateY(1px)}[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,[dir=rtl] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter,.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input[dir=rtl],.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter[dir=rtl]{transform:translateX(-1px) translateY(1px)}.mdc-text-field--with-leading-icon{padding-left:0;padding-right:16px}[dir=rtl] .mdc-text-field--with-leading-icon,.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:16px;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 48px);left:48px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label[dir=rtl]{left:initial;right:48px}.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 64px/0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label{left:36px;right:initial}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label[dir=rtl]{left:initial;right:36px}.mdc-text-field--with-leading-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) translateX(-32px) scale(1)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-37.25px) translateX(32px) scale(1)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) translateX(-32px) scale(0.75)}[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,[dir=rtl] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl],.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above[dir=rtl]{transform:translateY(-34.75px) translateX(32px) scale(0.75)}.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:.75rem}.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-text-field--with-trailing-icon{padding-left:16px;padding-right:0}[dir=rtl] .mdc-text-field--with-trailing-icon,.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0;padding-right:16px}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 64px)}.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 64px/0.75)}.mdc-text-field--with-trailing-icon.mdc-text-field--outlined :not(.mdc-notched-outline--notched) .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label{max-width:calc(100% - 96px)}.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 96px/0.75)}.mdc-text-field-helper-line{display:flex;justify-content:space-between;box-sizing:border-box}.mdc-text-field+.mdc-text-field-helper-line{padding-right:16px;padding-left:16px}.mdc-form-field>.mdc-text-field+label{align-self:flex-start}.mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--focused .mdc-notched-outline__trailing{border-width:2px}.mdc-text-field--focused+.mdc-text-field-helper-line .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg){opacity:1}.mdc-text-field--focused.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:2px}.mdc-text-field--focused.mdc-text-field--outlined.mdc-text-field--textarea .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:0}.mdc-text-field--invalid+.mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg{opacity:1}.mdc-text-field--disabled{pointer-events:none}@media screen and (forced-colors: active){.mdc-text-field--disabled .mdc-text-field__input{background-color:Window}.mdc-text-field--disabled .mdc-floating-label{z-index:1}}.mdc-text-field--disabled .mdc-floating-label{cursor:default}.mdc-text-field--disabled.mdc-text-field--filled .mdc-text-field__ripple{display:none}.mdc-text-field--disabled .mdc-text-field__input{pointer-events:auto}.mdc-text-field--end-aligned .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--end-aligned .mdc-text-field__input[dir=rtl]{text-align:left}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix{direction:ltr}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{padding-left:0;padding-right:2px}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{padding-left:12px;padding-right:0}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--leading,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--leading{order:1}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--suffix{order:2}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__input,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__input{order:3}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__affix--prefix{order:4}[dir=rtl] .mdc-text-field--ltr-text .mdc-text-field__icon--trailing,.mdc-text-field--ltr-text[dir=rtl] .mdc-text-field__icon--trailing{order:5}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__input,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__input{text-align:right}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--prefix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--prefix{padding-right:12px}[dir=rtl] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--suffix,.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir=rtl] .mdc-text-field__affix--suffix{padding-left:2px}.mdc-floating-label{position:absolute;left:0;-webkit-transform-origin:left top;transform-origin:left top;line-height:1.15rem;text-align:left;text-overflow:ellipsis;white-space:nowrap;cursor:text;overflow:hidden;will-change:transform}[dir=rtl] .mdc-floating-label,.mdc-floating-label[dir=rtl]{right:0;left:auto;-webkit-transform-origin:right top;transform-origin:right top;text-align:right}.mdc-floating-label--float-above{cursor:auto}.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after{margin-left:1px;margin-right:0px;content:"*"}[dir=rtl] .mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after,.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)[dir=rtl]::after{margin-left:0;margin-right:1px}.mdc-notched-outline{display:flex;position:absolute;top:0;right:0;left:0;box-sizing:border-box;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}[dir=rtl] .mdc-notched-outline,.mdc-notched-outline[dir=rtl]{text-align:right}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{box-sizing:border-box;height:100%;pointer-events:none}.mdc-notched-outline__trailing{flex-grow:1}.mdc-notched-outline__notch{flex:0 0 auto;width:auto}.mdc-notched-outline .mdc-floating-label{display:inline-block;position:relative;max-width:100%}.mdc-notched-outline .mdc-floating-label--float-above{text-overflow:clip}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:133.3333333333%}.mdc-notched-outline--notched .mdc-notched-outline__notch{padding-left:0;padding-right:8px;border-top:none}[dir=rtl] .mdc-notched-outline--notched .mdc-notched-outline__notch,.mdc-notched-outline--notched .mdc-notched-outline__notch[dir=rtl]{padding-left:8px;padding-right:0}.mdc-notched-outline--no-label .mdc-notched-outline__notch{display:none}.mdc-line-ripple::before,.mdc-line-ripple::after{position:absolute;bottom:0;left:0;width:100%;border-bottom-style:solid;content:""}.mdc-line-ripple::before{z-index:1}.mdc-line-ripple::after{transform:scaleX(0);opacity:0;z-index:2}.mdc-line-ripple--active::after{transform:scaleX(1);opacity:1}.mdc-line-ripple--deactivating::after{opacity:0}.mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-notched-outline__leading,.mdc-notched-outline__notch,.mdc-notched-outline__trailing{border-top:1px solid;border-bottom:1px solid}.mdc-notched-outline__leading{border-left:1px solid;border-right:none;width:12px}[dir=rtl] .mdc-notched-outline__leading,.mdc-notched-outline__leading[dir=rtl]{border-left:none;border-right:1px solid}.mdc-notched-outline__trailing{border-left:none;border-right:1px solid}[dir=rtl] .mdc-notched-outline__trailing,.mdc-notched-outline__trailing[dir=rtl]{border-left:1px solid;border-right:none}.mdc-notched-outline__notch{max-width:calc(100% - 12px*2)}.mdc-line-ripple::before{border-bottom-width:1px}.mdc-line-ripple::after{border-bottom-width:2px}.mdc-text-field--filled{border-top-left-radius:var(--mdc-filled-text-field-container-shape);border-top-right-radius:var(--mdc-filled-text-field-container-shape);border-bottom-right-radius:0;border-bottom-left-radius:0}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-filled-text-field-caret-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-filled-text-field-error-caret-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mdc-filled-text-field-input-text-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-text-field__input{color:var(--mdc-filled-text-field-disabled-input-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-label-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-focus-label-text-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-hover-label-text-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-disabled-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-focus-label-text-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-filled-text-field-error-hover-label-text-color)}.mdc-text-field--filled .mdc-floating-label{font-family:var(--mdc-filled-text-field-label-text-font);font-size:var(--mdc-filled-text-field-label-text-size);font-weight:var(--mdc-filled-text-field-label-text-weight);letter-spacing:var(--mdc-filled-text-field-label-text-tracking)}@media all{.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mdc-filled-text-field-input-text-placeholder-color)}}@media all{.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mdc-filled-text-field-input-text-placeholder-color)}}.mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:var(--mdc-filled-text-field-container-color)}.mdc-text-field--filled.mdc-text-field--disabled{background-color:var(--mdc-filled-text-field-disabled-container-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-active-indicator-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-hover-active-indicator-color)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-filled-text-field-focus-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--disabled .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-disabled-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-error-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mdc-filled-text-field-error-hover-active-indicator-color)}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mdc-filled-text-field-error-focus-active-indicator-color)}.mdc-text-field--filled .mdc-line-ripple::before{border-bottom-width:var(--mdc-filled-text-field-active-indicator-height)}.mdc-text-field--filled .mdc-line-ripple::after{border-bottom-width:var(--mdc-filled-text-field-focus-active-indicator-height)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-outlined-text-field-caret-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mdc-outlined-text-field-error-caret-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mdc-outlined-text-field-input-text-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input{color:var(--mdc-outlined-text-field-disabled-input-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-label-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-focus-label-text-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-hover-label-text-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-disabled-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-focus-label-text-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label--float-above{color:var(--mdc-outlined-text-field-error-hover-label-text-color)}.mdc-text-field--outlined .mdc-floating-label{font-family:var(--mdc-outlined-text-field-label-text-font);font-size:var(--mdc-outlined-text-field-label-text-size);font-weight:var(--mdc-outlined-text-field-label-text-weight);letter-spacing:var(--mdc-outlined-text-field-label-text-tracking)}@media all{.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mdc-outlined-text-field-input-text-placeholder-color)}}@media all{.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mdc-outlined-text-field-input-text-placeholder-color)}}.mdc-text-field--outlined.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above{font-size:calc(.75*var(--mdc-outlined-text-field-label-text-size))}.mdc-text-field--outlined.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined.mdc-text-field--textarea.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:var(--mdc-outlined-text-field-label-text-size)}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{border-top-left-radius:var(--mdc-outlined-text-field-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-outlined-text-field-container-shape)}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir=rtl]{border-top-left-radius:0;border-top-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-left-radius:0}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px,var(--mdc-outlined-text-field-container-shape))}}@supports(top: max(0%)){.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:calc(100% - max(12px,var(--mdc-outlined-text-field-container-shape))*2)}}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing{border-top-left-radius:0;border-top-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-right-radius:var(--mdc-outlined-text-field-container-shape);border-bottom-left-radius:0}[dir=rtl] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir=rtl]{border-top-left-radius:var(--mdc-outlined-text-field-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:var(--mdc-outlined-text-field-container-shape)}@supports(top: max(0%)){.mdc-text-field--outlined{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}@supports(top: max(0%)){.mdc-text-field--outlined+.mdc-text-field-helper-line{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-left:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-leading-icon{padding-right:max(16px,var(--mdc-outlined-text-field-container-shape))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-right:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir=rtl]{padding-left:max(16px,var(--mdc-outlined-text-field-container-shape))}}.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-right:0}@supports(top: max(0%)){.mdc-text-field--outlined.mdc-text-field--with-trailing-icon{padding-left:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-left:0}@supports(top: max(0%)){[dir=rtl] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir=rtl]{padding-right:max(16px,calc(var(--mdc-outlined-text-field-container-shape) + 4px))}}.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon{padding-left:0;padding-right:0}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-hover-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-focus-outline-color)}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-disabled-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-notched-outline .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-hover-outline-color)}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__notch,.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing{border-color:var(--mdc-outlined-text-field-error-focus-outline-color)}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__trailing{border-width:var(--mdc-outlined-text-field-outline-width)}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__leading,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__notch,.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mdc-notched-outline__trailing{border-width:var(--mdc-outlined-text-field-focus-outline-width)}.mat-mdc-form-field-textarea-control{vertical-align:middle;resize:vertical;box-sizing:border-box;height:auto;margin:0;padding:0;border:none;overflow:auto}.mat-mdc-form-field-input-control.mat-mdc-form-field-input-control{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font:inherit;letter-spacing:inherit;text-decoration:inherit;text-transform:inherit;border:none}.mat-mdc-form-field .mat-mdc-floating-label.mdc-floating-label{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;line-height:normal;pointer-events:all;will-change:auto}.mat-mdc-form-field:not(.mat-form-field-disabled) .mat-mdc-floating-label.mdc-floating-label{cursor:inherit}.mdc-text-field--no-label:not(.mdc-text-field--textarea) .mat-mdc-form-field-input-control.mdc-text-field__input,.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control{height:auto}.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control.mdc-text-field__input[type=color]{height:23px}.mat-mdc-text-field-wrapper{height:auto;flex:auto;will-change:auto}.mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-left:0;--mat-mdc-form-field-label-offset-x: -16px}.mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-right:0}[dir=rtl] .mat-mdc-text-field-wrapper{padding-left:16px;padding-right:16px}[dir=rtl] .mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-left:0}[dir=rtl] .mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-right:0}.mat-form-field-disabled .mdc-text-field__input::placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-form-field-disabled .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color)}.mat-mdc-form-field-label-always-float .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms;opacity:1}.mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-floating-label{left:auto;right:auto}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-text-field__input{display:inline-block}.mat-mdc-form-field .mat-mdc-text-field-wrapper.mdc-text-field .mdc-notched-outline__notch{padding-top:0}.mat-mdc-text-field-wrapper::before{content:none}.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:1px solid rgba(0,0,0,0)}[dir=rtl] .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:none;border-right:1px solid rgba(0,0,0,0)}.mat-mdc-form-field-infix{min-height:var(--mat-form-field-container-height);padding-top:var(--mat-form-field-filled-with-label-container-padding-top);padding-bottom:var(--mat-form-field-filled-with-label-container-padding-bottom)}.mdc-text-field--outlined .mat-mdc-form-field-infix,.mdc-text-field--no-label .mat-mdc-form-field-infix{padding-top:var(--mat-form-field-container-vertical-padding);padding-bottom:var(--mat-form-field-container-vertical-padding)}.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label{top:calc(var(--mat-form-field-container-height)/2)}.mdc-text-field--filled .mat-mdc-floating-label{display:var(--mat-form-field-filled-label-display, block)}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{--mat-mdc-form-field-label-transform: translateY(calc(calc(6.75px + var(--mat-form-field-container-height) / 2) * -1)) scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));transform:var(--mat-mdc-form-field-label-transform)}.mat-mdc-form-field-subscript-wrapper{box-sizing:border-box;width:100%;position:relative}.mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-error-wrapper{position:absolute;top:0;left:0;right:0;padding:0 16px}.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-error-wrapper{position:static}.mat-mdc-form-field-bottom-align::before{content:"";display:inline-block;height:16px}.mat-mdc-form-field-bottom-align.mat-mdc-form-field-subscript-dynamic-size::before{content:unset}.mat-mdc-form-field-hint-end{order:1}.mat-mdc-form-field-hint-wrapper{display:flex}.mat-mdc-form-field-hint-spacer{flex:1 0 1em}.mat-mdc-form-field-error{display:block;color:var(--mat-form-field-error-text-color)}.mat-mdc-form-field-subscript-wrapper,.mat-mdc-form-field-bottom-align::before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-form-field-subscript-text-font);line-height:var(--mat-form-field-subscript-text-line-height);font-size:var(--mat-form-field-subscript-text-size);letter-spacing:var(--mat-form-field-subscript-text-tracking);font-weight:var(--mat-form-field-subscript-text-weight)}.mat-mdc-form-field-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;opacity:0;pointer-events:none;background-color:var(--mat-form-field-state-layer-color)}.mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-hover-state-layer-opacity)}.mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-focus-state-layer-opacity)}select.mat-mdc-form-field-input-control{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(0,0,0,0);display:inline-flex;box-sizing:border-box}select.mat-mdc-form-field-input-control:not(:disabled){cursor:pointer}select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option{color:var(--mat-form-field-select-option-text-color)}select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option:disabled{color:var(--mat-form-field-select-disabled-option-text-color)}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{content:"";width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-top:5px solid;position:absolute;right:0;top:50%;margin-top:-2.5px;pointer-events:none;color:var(--mat-form-field-enabled-select-arrow-color)}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{right:auto;left:0}.mat-mdc-form-field-type-mat-native-select.mat-focused .mat-mdc-form-field-infix::after{color:var(--mat-form-field-focus-select-arrow-color)}.mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after{color:var(--mat-form-field-disabled-select-arrow-color)}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:15px}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:0;padding-left:15px}.cdk-high-contrast-active .mat-form-field-appearance-fill .mat-mdc-text-field-wrapper{outline:solid 1px}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-form-field-disabled .mat-mdc-text-field-wrapper{outline-color:GrayText}.cdk-high-contrast-active .mat-form-field-appearance-fill.mat-focused .mat-mdc-text-field-wrapper{outline:dashed 3px}.cdk-high-contrast-active .mat-mdc-form-field.mat-focused .mdc-notched-outline{border:dashed 3px}.mat-mdc-form-field-input-control[type=date],.mat-mdc-form-field-input-control[type=datetime],.mat-mdc-form-field-input-control[type=datetime-local],.mat-mdc-form-field-input-control[type=month],.mat-mdc-form-field-input-control[type=week],.mat-mdc-form-field-input-control[type=time]{line-height:1}.mat-mdc-form-field-input-control::-webkit-datetime-edit{line-height:1;padding:0;margin-bottom:-2px}.mat-mdc-form-field{--mat-mdc-form-field-floating-label-scale: 0.75;display:inline-flex;flex-direction:column;min-width:0;text-align:left;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-form-field-container-text-font);line-height:var(--mat-form-field-container-text-line-height);font-size:var(--mat-form-field-container-text-size);letter-spacing:var(--mat-form-field-container-text-tracking);font-weight:var(--mat-form-field-container-text-weight)}[dir=rtl] .mat-mdc-form-field{text-align:right}.mat-mdc-form-field .mdc-text-field--outlined .mdc-floating-label--float-above{font-size:calc(var(--mat-form-field-outlined-label-text-populated-size)*var(--mat-mdc-form-field-floating-label-scale))}.mat-mdc-form-field .mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:var(--mat-form-field-outlined-label-text-populated-size)}.mat-mdc-form-field-flex{display:inline-flex;align-items:baseline;box-sizing:border-box;width:100%}.mat-mdc-text-field-wrapper{width:100%;z-index:0}.mat-mdc-form-field-icon-prefix,.mat-mdc-form-field-icon-suffix{align-self:center;line-height:0;pointer-events:auto;position:relative;z-index:1}.mat-mdc-form-field-icon-prefix>.mat-icon,.mat-mdc-form-field-icon-suffix>.mat-icon{padding:0 12px;box-sizing:content-box}.mat-mdc-form-field-icon-prefix{color:var(--mat-form-field-leading-icon-color)}.mat-form-field-disabled .mat-mdc-form-field-icon-prefix{color:var(--mat-form-field-disabled-leading-icon-color)}.mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-trailing-icon-color)}.mat-form-field-disabled .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-disabled-trailing-icon-color)}.mat-form-field-invalid .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-trailing-icon-color)}.mat-form-field-invalid:not(.mat-focused):not(.mat-form-field-disabled) .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-hover-trailing-icon-color)}.mat-form-field-invalid.mat-focused .mat-mdc-text-field-wrapper .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-focus-trailing-icon-color)}.mat-mdc-form-field-icon-prefix,[dir=rtl] .mat-mdc-form-field-icon-suffix{padding:0 4px 0 0}.mat-mdc-form-field-icon-suffix,[dir=rtl] .mat-mdc-form-field-icon-prefix{padding:0 0 0 4px}.mat-mdc-form-field-subscript-wrapper .mat-icon,.mat-mdc-form-field label .mat-icon{width:1em;height:1em;font-size:inherit}.mat-mdc-form-field-infix{flex:auto;min-width:0;width:180px;position:relative;box-sizing:border-box}.mat-mdc-form-field .mdc-notched-outline__notch{margin-left:-1px;-webkit-clip-path:inset(-9em -999em -9em 1px);clip-path:inset(-9em -999em -9em 1px)}[dir=rtl] .mat-mdc-form-field .mdc-notched-outline__notch{margin-left:0;margin-right:-1px;-webkit-clip-path:inset(-9em 1px -9em -999em);clip-path:inset(-9em 1px -9em -999em)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition:opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms}}@media all{.mdc-text-field--no-label .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__input:-ms-input-placeholder{transition-delay:40ms;transition-duration:110ms}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field__affix{transition:opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled.mdc-ripple-upgraded--background-focused .mdc-text-field__ripple::before,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before{transition-duration:75ms}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea{transition:none}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-filled 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-filled{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-textarea-outlined 250ms 1}@keyframes mdc-floating-label-shake-float-above-textarea-outlined{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon{0%{transform:translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)}}[dir=rtl] .mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake,.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-text-field--with-leading-icon.mdc-text-field--outlined[dir=rtl] .mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1}@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl{0%{transform:translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}100%{transform:translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-floating-label{transition:transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-floating-label--shake{animation:mdc-floating-label-shake-float-above-standard 250ms 1}@keyframes mdc-floating-label-shake-float-above-standard{0%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}33%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(calc(4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}66%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(calc(-4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}100%{transform:translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)}}.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-line-ripple::after{transition:transform 180ms cubic-bezier(0.4, 0, 0.2, 1),opacity 180ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-notched-outline .mdc-floating-label{max-width:calc(100% + 1px)}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:calc(133.3333333333% + 1px)}'],encapsulation:2,data:{animation:[He.transitionMessages]},changeDetection:0})}return St})(),Jt=(()=>{class St{static#e=this.\u0275fac=function(we){return new(we||St)};static#t=this.\u0275mod=e.$C({type:St});static#i=this.\u0275inj=e.G2t({imports:[ee.yE,Q.MD,J.w5,ee.yE]})}return St})()},6195:(Qe,te,g)=>{"use strict";g.d(te,{B_:()=>Te,Fe:()=>de,NS:()=>F});var e=g(4438),t=g(6600),w=g(4085),S=g(8203);const l=["*"];class d{constructor(){this.columnIndex=0,this.rowIndex=0}get rowCount(){return this.rowIndex+1}get rowspan(){const c=Math.max(...this.tracker);return c>1?this.rowCount+c-1:this.rowCount}update(c,m){this.columnIndex=0,this.rowIndex=0,this.tracker=new Array(c),this.tracker.fill(0,0,this.tracker.length),this.positions=m.map(h=>this._trackTile(h))}_trackTile(c){const m=this._findMatchingGap(c.colspan);return this._markTilePosition(m,c),this.columnIndex=m+c.colspan,new T(this.rowIndex,m)}_findMatchingGap(c){let m=-1,h=-1;do{this.columnIndex+c>this.tracker.length?(this._nextRow(),m=this.tracker.indexOf(0,this.columnIndex),h=this._findGapEndIndex(m)):(m=this.tracker.indexOf(0,this.columnIndex),-1!=m?(h=this._findGapEndIndex(m),this.columnIndex=m+1):(this._nextRow(),m=this.tracker.indexOf(0,this.columnIndex),h=this._findGapEndIndex(m)))}while(h-m{class n{constructor(m,h){this._element=m,this._gridList=h,this._rowspan=1,this._colspan=1}get rowspan(){return this._rowspan}set rowspan(m){this._rowspan=Math.round((0,w.OE)(m))}get colspan(){return this._colspan}set colspan(m){this._colspan=Math.round((0,w.OE)(m))}_setStyle(m,h){this._element.nativeElement.style[m]=h}static#e=this.\u0275fac=function(h){return new(h||n)(e.rXU(e.aKT),e.rXU(y,8))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["mat-grid-tile"]],hostAttrs:[1,"mat-grid-tile"],hostVars:2,hostBindings:function(h,C){2&h&&e.BMQ("rowspan",C.rowspan)("colspan",C.colspan)},inputs:{rowspan:"rowspan",colspan:"colspan"},exportAs:["matGridTile"],standalone:!0,features:[e.aNF],ngContentSelectors:l,decls:2,vars:0,consts:[[1,"mat-grid-tile-content"]],template:function(h,C){1&h&&(e.NAR(),e.j41(0,"div",0),e.SdG(1),e.k0s())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-header{font-size:var(--mat-grid-list-tile-header-primary-text-size)}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size)}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size)}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size)}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}"],encapsulation:2,changeDetection:0})}return n})();const j=/^-?\d+((\.\d+)?[A-Za-z%$]?)+$/;class Q{constructor(){this._rows=0,this._rowspan=0}init(c,m,h,C){this._gutterSize=ae(c),this._rows=m.rowCount,this._rowspan=m.rowspan,this._cols=h,this._direction=C}getBaseTileSize(c,m){return`(${c}% - (${this._gutterSize} * ${m}))`}getTilePosition(c,m){return 0===m?"0":ge(`(${c} + ${this._gutterSize}) * ${m}`)}getTileSize(c,m){return`(${c} * ${m}) + (${m-1} * ${this._gutterSize})`}setStyle(c,m,h){let C=100/this._cols,k=(this._cols-1)/this._cols;this.setColStyles(c,h,C,k),this.setRowStyles(c,m,C,k)}setColStyles(c,m,h,C){let k=this.getBaseTileSize(h,C);c._setStyle("rtl"===this._direction?"right":"left",this.getTilePosition(k,m)),c._setStyle("width",ge(this.getTileSize(k,c.colspan)))}getGutterSpan(){return`${this._gutterSize} * (${this._rowspan} - 1)`}getTileSpan(c){return`${this._rowspan} * ${this.getTileSize(c,1)}`}getComputedHeight(){return null}}class J extends Q{constructor(c){super(),this.fixedRowHeight=c}init(c,m,h,C){super.init(c,m,h,C),this.fixedRowHeight=ae(this.fixedRowHeight),j.test(this.fixedRowHeight)}setRowStyles(c,m){c._setStyle("top",this.getTilePosition(this.fixedRowHeight,m)),c._setStyle("height",ge(this.getTileSize(this.fixedRowHeight,c.rowspan)))}getComputedHeight(){return["height",ge(`${this.getTileSpan(this.fixedRowHeight)} + ${this.getGutterSpan()}`)]}reset(c){c._setListStyle(["height",null]),c._tiles&&c._tiles.forEach(m=>{m._setStyle("top",null),m._setStyle("height",null)})}}class ee extends Q{constructor(c){super(),this._parseRatio(c)}setRowStyles(c,m,h,C){this.baseTileHeight=this.getBaseTileSize(h/this.rowHeightRatio,C),c._setStyle("marginTop",this.getTilePosition(this.baseTileHeight,m)),c._setStyle("paddingTop",ge(this.getTileSize(this.baseTileHeight,c.rowspan)))}getComputedHeight(){return["paddingBottom",ge(`${this.getTileSpan(this.baseTileHeight)} + ${this.getGutterSpan()}`)]}reset(c){c._setListStyle(["paddingBottom",null]),c._tiles.forEach(m=>{m._setStyle("marginTop",null),m._setStyle("paddingTop",null)})}_parseRatio(c){const m=c.split(":");this.rowHeightRatio=parseFloat(m[0])/parseFloat(m[1])}}class ie extends Q{setRowStyles(c,m){let k=this.getBaseTileSize(100/this._rowspan,(this._rows-1)/this._rows);c._setStyle("top",this.getTilePosition(k,m)),c._setStyle("height",ge(this.getTileSize(k,c.rowspan)))}reset(c){c._tiles&&c._tiles.forEach(m=>{m._setStyle("top",null),m._setStyle("height",null)})}}function ge(n){return`calc(${n})`}function ae(n){return n.match(/([A-Za-z%]+)$/)?n:`${n}px`}let Te=(()=>{class n{constructor(m,h){this._element=m,this._dir=h,this._gutter="1px"}get cols(){return this._cols}set cols(m){this._cols=Math.max(1,Math.round((0,w.OE)(m)))}get gutterSize(){return this._gutter}set gutterSize(m){this._gutter=`${m??""}`}get rowHeight(){return this._rowHeight}set rowHeight(m){const h=`${m??""}`;h!==this._rowHeight&&(this._rowHeight=h,this._setTileStyler(this._rowHeight))}ngOnInit(){this._checkCols(),this._checkRowHeight()}ngAfterContentChecked(){this._layoutTiles()}_checkCols(){}_checkRowHeight(){this._rowHeight||this._setTileStyler("1:1")}_setTileStyler(m){this._tileStyler&&this._tileStyler.reset(this),this._tileStyler="fit"===m?new ie:m&&m.indexOf(":")>-1?new ee(m):new J(m)}_layoutTiles(){this._tileCoordinator||(this._tileCoordinator=new d);const m=this._tileCoordinator,h=this._tiles.filter(k=>!k._gridList||k._gridList===this),C=this._dir?this._dir.value:"ltr";this._tileCoordinator.update(this.cols,h),this._tileStyler.init(this.gutterSize,m,this.cols,C),h.forEach((k,L)=>{const _=m.positions[L];this._tileStyler.setStyle(k,_.row,_.col)}),this._setListStyle(this._tileStyler.getComputedHeight())}_setListStyle(m){m&&(this._element.nativeElement.style[m[0]]=m[1])}static#e=this.\u0275fac=function(h){return new(h||n)(e.rXU(e.aKT),e.rXU(S.dS,8))};static#t=this.\u0275cmp=e.VBU({type:n,selectors:[["mat-grid-list"]],contentQueries:function(h,C,k){if(1&h&&e.wni(k,F,5),2&h){let L;e.mGM(L=e.lsd())&&(C._tiles=L)}},hostAttrs:[1,"mat-grid-list"],hostVars:1,hostBindings:function(h,C){2&h&&e.BMQ("cols",C.cols)},inputs:{cols:"cols",gutterSize:"gutterSize",rowHeight:"rowHeight"},exportAs:["matGridList"],standalone:!0,features:[e.Jv_([{provide:y,useExisting:n}]),e.aNF],ngContentSelectors:l,decls:2,vars:0,template:function(h,C){1&h&&(e.NAR(),e.j41(0,"div"),e.SdG(1),e.k0s())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-header{font-size:var(--mat-grid-list-tile-header-primary-text-size)}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size)}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size)}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size)}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}"],encapsulation:2,changeDetection:0})}return n})(),de=(()=>{class n{static#e=this.\u0275fac=function(h){return new(h||n)};static#t=this.\u0275mod=e.$C({type:n});static#i=this.\u0275inj=e.G2t({imports:[t.Np,t.yE,t.Np,t.yE]})}return n})()},9213:(Qe,te,g)=>{"use strict";g.d(te,{An:()=>v,m_:()=>V});var e=g(4438),t=g(6600),w=g(177),S=g(7673),l=g(8810),x=g(7468),f=g(8359),I=g(8141),d=g(6354),T=g(9437),y=g(980),F=g(7647),R=g(6697),z=g(1626),W=g(345);const $=["*"];let j;function J(N){return function Q(){if(void 0===j&&(j=null,typeof window<"u")){const N=window;void 0!==N.trustedTypes&&(j=N.trustedTypes.createPolicy("angular#components",{createHTML:ne=>ne}))}return j}()?.createHTML(N)||N}function ee(N){return Error(`Unable to find icon with the name "${N}"`)}function ge(N){return Error(`The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was "${N}".`)}function ae(N){return Error(`The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was "${N}".`)}class Me{constructor(ne,Ee,ze){this.url=ne,this.svgText=Ee,this.options=ze}}let Te=(()=>{class N{constructor(Ee,ze,qe,Ke){this._httpClient=Ee,this._sanitizer=ze,this._errorHandler=Ke,this._svgIconConfigs=new Map,this._iconSetConfigs=new Map,this._cachedIconsByUrl=new Map,this._inProgressUrlFetches=new Map,this._fontCssClassesByAlias=new Map,this._resolvers=[],this._defaultFontSetClass=["material-icons","mat-ligature-font"],this._document=qe}addSvgIcon(Ee,ze,qe){return this.addSvgIconInNamespace("",Ee,ze,qe)}addSvgIconLiteral(Ee,ze,qe){return this.addSvgIconLiteralInNamespace("",Ee,ze,qe)}addSvgIconInNamespace(Ee,ze,qe,Ke){return this._addSvgIconConfig(Ee,ze,new Me(qe,null,Ke))}addSvgIconResolver(Ee){return this._resolvers.push(Ee),this}addSvgIconLiteralInNamespace(Ee,ze,qe,Ke){const se=this._sanitizer.sanitize(e.WPN.HTML,qe);if(!se)throw ae(qe);const X=J(se);return this._addSvgIconConfig(Ee,ze,new Me("",X,Ke))}addSvgIconSet(Ee,ze){return this.addSvgIconSetInNamespace("",Ee,ze)}addSvgIconSetLiteral(Ee,ze){return this.addSvgIconSetLiteralInNamespace("",Ee,ze)}addSvgIconSetInNamespace(Ee,ze,qe){return this._addSvgIconSetConfig(Ee,new Me(ze,null,qe))}addSvgIconSetLiteralInNamespace(Ee,ze,qe){const Ke=this._sanitizer.sanitize(e.WPN.HTML,ze);if(!Ke)throw ae(ze);const se=J(Ke);return this._addSvgIconSetConfig(Ee,new Me("",se,qe))}registerFontClassAlias(Ee,ze=Ee){return this._fontCssClassesByAlias.set(Ee,ze),this}classNameForFontAlias(Ee){return this._fontCssClassesByAlias.get(Ee)||Ee}setDefaultFontSetClass(...Ee){return this._defaultFontSetClass=Ee,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(Ee){const ze=this._sanitizer.sanitize(e.WPN.RESOURCE_URL,Ee);if(!ze)throw ge(Ee);const qe=this._cachedIconsByUrl.get(ze);return qe?(0,S.of)(n(qe)):this._loadSvgIconFromConfig(new Me(Ee,null)).pipe((0,I.M)(Ke=>this._cachedIconsByUrl.set(ze,Ke)),(0,d.T)(Ke=>n(Ke)))}getNamedSvgIcon(Ee,ze=""){const qe=c(ze,Ee);let Ke=this._svgIconConfigs.get(qe);if(Ke)return this._getSvgFromConfig(Ke);if(Ke=this._getIconConfigFromResolvers(ze,Ee),Ke)return this._svgIconConfigs.set(qe,Ke),this._getSvgFromConfig(Ke);const se=this._iconSetConfigs.get(ze);return se?this._getSvgFromIconSetConfigs(Ee,se):(0,l.$)(ee(qe))}ngOnDestroy(){this._resolvers=[],this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(Ee){return Ee.svgText?(0,S.of)(n(this._svgElementFromConfig(Ee))):this._loadSvgIconFromConfig(Ee).pipe((0,d.T)(ze=>n(ze)))}_getSvgFromIconSetConfigs(Ee,ze){const qe=this._extractIconWithNameFromAnySet(Ee,ze);if(qe)return(0,S.of)(qe);const Ke=ze.filter(se=>!se.svgText).map(se=>this._loadSvgIconSetFromConfig(se).pipe((0,T.W)(X=>{const ce=`Loading icon set URL: ${this._sanitizer.sanitize(e.WPN.RESOURCE_URL,se.url)} failed: ${X.message}`;return this._errorHandler.handleError(new Error(ce)),(0,S.of)(null)})));return(0,x.p)(Ke).pipe((0,d.T)(()=>{const se=this._extractIconWithNameFromAnySet(Ee,ze);if(!se)throw ee(Ee);return se}))}_extractIconWithNameFromAnySet(Ee,ze){for(let qe=ze.length-1;qe>=0;qe--){const Ke=ze[qe];if(Ke.svgText&&Ke.svgText.toString().indexOf(Ee)>-1){const se=this._svgElementFromConfig(Ke),X=this._extractSvgIconFromSet(se,Ee,Ke.options);if(X)return X}}return null}_loadSvgIconFromConfig(Ee){return this._fetchIcon(Ee).pipe((0,I.M)(ze=>Ee.svgText=ze),(0,d.T)(()=>this._svgElementFromConfig(Ee)))}_loadSvgIconSetFromConfig(Ee){return Ee.svgText?(0,S.of)(null):this._fetchIcon(Ee).pipe((0,I.M)(ze=>Ee.svgText=ze))}_extractSvgIconFromSet(Ee,ze,qe){const Ke=Ee.querySelector(`[id="${ze}"]`);if(!Ke)return null;const se=Ke.cloneNode(!0);if(se.removeAttribute("id"),"svg"===se.nodeName.toLowerCase())return this._setSvgAttributes(se,qe);if("symbol"===se.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(se),qe);const X=this._svgElementFromString(J(""));return X.appendChild(se),this._setSvgAttributes(X,qe)}_svgElementFromString(Ee){const ze=this._document.createElement("DIV");ze.innerHTML=Ee;const qe=ze.querySelector("svg");if(!qe)throw Error(" tag not found");return qe}_toSvgElement(Ee){const ze=this._svgElementFromString(J("")),qe=Ee.attributes;for(let Ke=0;KeJ(ce)),(0,y.j)(()=>this._inProgressUrlFetches.delete(se)),(0,F.u)());return this._inProgressUrlFetches.set(se,me),me}_addSvgIconConfig(Ee,ze,qe){return this._svgIconConfigs.set(c(Ee,ze),qe),this}_addSvgIconSetConfig(Ee,ze){const qe=this._iconSetConfigs.get(Ee);return qe?qe.push(ze):this._iconSetConfigs.set(Ee,[ze]),this}_svgElementFromConfig(Ee){if(!Ee.svgElement){const ze=this._svgElementFromString(Ee.svgText);this._setSvgAttributes(ze,Ee.options),Ee.svgElement=ze}return Ee.svgElement}_getIconConfigFromResolvers(Ee,ze){for(let qe=0;qene?ne.pathname+ne.search:""}}}),L=["clip-path","color-profile","src","cursor","fill","filter","marker","marker-start","marker-mid","marker-end","mask","stroke"],_=L.map(N=>`[${N}]`).join(", "),r=/^url\(['"]?#(.*?)['"]?\)$/;let v=(()=>{class N{get color(){return this._color||this._defaultColor}set color(Ee){this._color=Ee}get svgIcon(){return this._svgIcon}set svgIcon(Ee){Ee!==this._svgIcon&&(Ee?this._updateSvgIcon(Ee):this._svgIcon&&this._clearSvgElement(),this._svgIcon=Ee)}get fontSet(){return this._fontSet}set fontSet(Ee){const ze=this._cleanupFontValue(Ee);ze!==this._fontSet&&(this._fontSet=ze,this._updateFontIconClasses())}get fontIcon(){return this._fontIcon}set fontIcon(Ee){const ze=this._cleanupFontValue(Ee);ze!==this._fontIcon&&(this._fontIcon=ze,this._updateFontIconClasses())}constructor(Ee,ze,qe,Ke,se,X){this._elementRef=Ee,this._iconRegistry=ze,this._location=Ke,this._errorHandler=se,this.inline=!1,this._previousFontSetClass=[],this._currentIconFetch=f.yU.EMPTY,X&&(X.color&&(this.color=this._defaultColor=X.color),X.fontSet&&(this.fontSet=X.fontSet)),qe||Ee.nativeElement.setAttribute("aria-hidden","true")}_splitIconName(Ee){if(!Ee)return["",""];const ze=Ee.split(":");switch(ze.length){case 1:return["",ze[0]];case 2:return ze;default:throw Error(`Invalid icon name: "${Ee}"`)}}ngOnInit(){this._updateFontIconClasses()}ngAfterViewChecked(){const Ee=this._elementsWithExternalReferences;if(Ee&&Ee.size){const ze=this._location.getPathname();ze!==this._previousPath&&(this._previousPath=ze,this._prependPathToReferences(ze))}}ngOnDestroy(){this._currentIconFetch.unsubscribe(),this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(Ee){this._clearSvgElement();const ze=this._location.getPathname();this._previousPath=ze,this._cacheChildrenWithExternalReferences(Ee),this._prependPathToReferences(ze),this._elementRef.nativeElement.appendChild(Ee)}_clearSvgElement(){const Ee=this._elementRef.nativeElement;let ze=Ee.childNodes.length;for(this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear();ze--;){const qe=Ee.childNodes[ze];(1!==qe.nodeType||"svg"===qe.nodeName.toLowerCase())&&qe.remove()}}_updateFontIconClasses(){if(!this._usingFontIcon())return;const Ee=this._elementRef.nativeElement,ze=(this.fontSet?this._iconRegistry.classNameForFontAlias(this.fontSet).split(/ +/):this._iconRegistry.getDefaultFontSetClass()).filter(qe=>qe.length>0);this._previousFontSetClass.forEach(qe=>Ee.classList.remove(qe)),ze.forEach(qe=>Ee.classList.add(qe)),this._previousFontSetClass=ze,this.fontIcon!==this._previousFontIconClass&&!ze.includes("mat-ligature-font")&&(this._previousFontIconClass&&Ee.classList.remove(this._previousFontIconClass),this.fontIcon&&Ee.classList.add(this.fontIcon),this._previousFontIconClass=this.fontIcon)}_cleanupFontValue(Ee){return"string"==typeof Ee?Ee.trim().split(" ")[0]:Ee}_prependPathToReferences(Ee){const ze=this._elementsWithExternalReferences;ze&&ze.forEach((qe,Ke)=>{qe.forEach(se=>{Ke.setAttribute(se.name,`url('${Ee}#${se.value}')`)})})}_cacheChildrenWithExternalReferences(Ee){const ze=Ee.querySelectorAll(_),qe=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let Ke=0;Ke{const X=ze[Ke],me=X.getAttribute(se),ce=me?me.match(r):null;if(ce){let fe=qe.get(X);fe||(fe=[],qe.set(X,fe)),fe.push({name:se,value:ce[1]})}})}_updateSvgIcon(Ee){if(this._svgNamespace=null,this._svgName=null,this._currentIconFetch.unsubscribe(),Ee){const[ze,qe]=this._splitIconName(Ee);ze&&(this._svgNamespace=ze),qe&&(this._svgName=qe),this._currentIconFetch=this._iconRegistry.getNamedSvgIcon(qe,ze).pipe((0,R.s)(1)).subscribe(Ke=>this._setSvgElement(Ke),Ke=>{this._errorHandler.handleError(new Error(`Error retrieving icon ${ze}:${qe}! ${Ke.message}`))})}}static#e=this.\u0275fac=function(ze){return new(ze||N)(e.rXU(e.aKT),e.rXU(Te),e.kS0("aria-hidden"),e.rXU(C),e.rXU(e.zcH),e.rXU(h,8))};static#t=this.\u0275cmp=e.VBU({type:N,selectors:[["mat-icon"]],hostAttrs:["role","img",1,"mat-icon","notranslate"],hostVars:10,hostBindings:function(ze,qe){2&ze&&(e.BMQ("data-mat-icon-type",qe._usingFontIcon()?"font":"svg")("data-mat-icon-name",qe._svgName||qe.fontIcon)("data-mat-icon-namespace",qe._svgNamespace||qe.fontSet)("fontIcon",qe._usingFontIcon()?qe.fontIcon:null),e.HbH(qe.color?"mat-"+qe.color:""),e.AVh("mat-icon-inline",qe.inline)("mat-icon-no-color","primary"!==qe.color&&"accent"!==qe.color&&"warn"!==qe.color))},inputs:{color:"color",inline:[2,"inline","inline",e.L39],svgIcon:"svgIcon",fontSet:"fontSet",fontIcon:"fontIcon"},exportAs:["matIcon"],standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:$,decls:1,vars:0,template:function(ze,qe){1&ze&&(e.NAR(),e.SdG(0))},styles:["mat-icon,mat-icon.mat-primary,mat-icon.mat-accent,mat-icon.mat-warn{color:var(--mat-icon-color)}.mat-icon{-webkit-user-select:none;user-select:none;background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px;overflow:hidden}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}.mat-icon.mat-ligature-font[fontIcon]::before{content:attr(fontIcon)}[dir=rtl] .mat-icon-rtl-mirror{transform:scale(-1, 1)}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon{display:block}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-icon{margin:auto}"],encapsulation:2,changeDetection:0})}return N})(),V=(()=>{class N{static#e=this.\u0275fac=function(ze){return new(ze||N)};static#t=this.\u0275mod=e.$C({type:N});static#i=this.\u0275inj=e.G2t({imports:[t.yE,t.yE]})}return N})()},9631:(Qe,te,g)=>{"use strict";g.d(te,{Oh:()=>W,fg:()=>Q,fS:()=>J});var e=g(4085),t=g(6860),w=g(4438),S=g(983),l=g(1413);const x=(0,t.BQ)({passive:!0});let f=(()=>{class ee{constructor(ge,ae){this._platform=ge,this._ngZone=ae,this._monitoredElements=new Map}monitor(ge){if(!this._platform.isBrowser)return S.w;const ae=(0,e.i8)(ge),Me=this._monitoredElements.get(ae);if(Me)return Me.subject;const Te=new l.B,de="cdk-text-field-autofilled",D=n=>{"cdk-text-field-autofill-start"!==n.animationName||ae.classList.contains(de)?"cdk-text-field-autofill-end"===n.animationName&&ae.classList.contains(de)&&(ae.classList.remove(de),this._ngZone.run(()=>Te.next({target:n.target,isAutofilled:!1}))):(ae.classList.add(de),this._ngZone.run(()=>Te.next({target:n.target,isAutofilled:!0})))};return this._ngZone.runOutsideAngular(()=>{ae.addEventListener("animationstart",D,x),ae.classList.add("cdk-text-field-autofill-monitored")}),this._monitoredElements.set(ae,{subject:Te,unlisten:()=>{ae.removeEventListener("animationstart",D,x)}}),Te}stopMonitoring(ge){const ae=(0,e.i8)(ge),Me=this._monitoredElements.get(ae);Me&&(Me.unlisten(),Me.subject.complete(),ae.classList.remove("cdk-text-field-autofill-monitored"),ae.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(ae))}ngOnDestroy(){this._monitoredElements.forEach((ge,ae)=>this.stopMonitoring(ae))}static#e=this.\u0275fac=function(ae){return new(ae||ee)(w.KVO(t.OD),w.KVO(w.SKi))};static#t=this.\u0275prov=w.jDH({token:ee,factory:ee.\u0275fac,providedIn:"root"})}return ee})(),T=(()=>{class ee{static#e=this.\u0275fac=function(ae){return new(ae||ee)};static#t=this.\u0275mod=w.$C({type:ee});static#i=this.\u0275inj=w.G2t({})}return ee})();var y=g(9417),F=g(6600),R=g(6467);const W=new w.nKC("MAT_INPUT_VALUE_ACCESSOR"),$=["button","checkbox","file","hidden","image","radio","range","reset","submit"];let j=0,Q=(()=>{class ee{get disabled(){return this._disabled}set disabled(ge){this._disabled=(0,e.he)(ge),this.focused&&(this.focused=!1,this.stateChanges.next())}get id(){return this._id}set id(ge){this._id=ge||this._uid}get required(){return this._required??this.ngControl?.control?.hasValidator(y.k0.required)??!1}set required(ge){this._required=(0,e.he)(ge)}get type(){return this._type}set type(ge){this._type=ge||"text",this._validateType(),!this._isTextarea&&(0,t.MU)().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(ge){this._errorStateTracker.matcher=ge}get value(){return this._inputValueAccessor.value}set value(ge){ge!==this.value&&(this._inputValueAccessor.value=ge,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(ge){this._readonly=(0,e.he)(ge)}get errorState(){return this._errorStateTracker.errorState}set errorState(ge){this._errorStateTracker.errorState=ge}constructor(ge,ae,Me,Te,de,D,n,c,m,h){this._elementRef=ge,this._platform=ae,this.ngControl=Me,this._autofillMonitor=c,this._formField=h,this._uid="mat-input-"+j++,this.focused=!1,this.stateChanges=new l.B,this.controlType="mat-input",this.autofilled=!1,this._disabled=!1,this._type="text",this._readonly=!1,this._neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(L=>(0,t.MU)().has(L)),this._iOSKeyupListener=L=>{const _=L.target;!_.value&&0===_.selectionStart&&0===_.selectionEnd&&(_.setSelectionRange(1,1),_.setSelectionRange(0,0))};const C=this._elementRef.nativeElement,k=C.nodeName.toLowerCase();this._inputValueAccessor=n||C,this._previousNativeValue=this.value,this.id=this.id,ae.IOS&&m.runOutsideAngular(()=>{ge.nativeElement.addEventListener("keyup",this._iOSKeyupListener)}),this._errorStateTracker=new F.X0(D,Me,de,Te,this.stateChanges),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===k,this._isTextarea="textarea"===k,this._isInFormField=!!h,this._isNativeSelect&&(this.controlType=C.multiple?"mat-native-select-multiple":"mat-native-select")}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(ge=>{this.autofilled=ge.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement),this._platform.IOS&&this._elementRef.nativeElement.removeEventListener("keyup",this._iOSKeyupListener)}ngDoCheck(){this.ngControl&&(this.updateErrorState(),null!==this.ngControl.disabled&&this.ngControl.disabled!==this.disabled&&(this.disabled=this.ngControl.disabled,this.stateChanges.next())),this._dirtyCheckNativeValue(),this._dirtyCheckPlaceholder()}focus(ge){this._elementRef.nativeElement.focus(ge)}updateErrorState(){this._errorStateTracker.updateErrorState()}_focusChanged(ge){ge!==this.focused&&(this.focused=ge,this.stateChanges.next())}_onInput(){}_dirtyCheckNativeValue(){const ge=this._elementRef.nativeElement.value;this._previousNativeValue!==ge&&(this._previousNativeValue=ge,this.stateChanges.next())}_dirtyCheckPlaceholder(){const ge=this._getPlaceholder();if(ge!==this._previousPlaceholder){const ae=this._elementRef.nativeElement;this._previousPlaceholder=ge,ge?ae.setAttribute("placeholder",ge):ae.removeAttribute("placeholder")}}_getPlaceholder(){return this.placeholder||null}_validateType(){$.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let ge=this._elementRef.nativeElement.validity;return ge&&ge.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const ge=this._elementRef.nativeElement,ae=ge.options[0];return this.focused||ge.multiple||!this.empty||!!(ge.selectedIndex>-1&&ae&&ae.label)}return this.focused||!this.empty}setDescribedByIds(ge){ge.length?this._elementRef.nativeElement.setAttribute("aria-describedby",ge.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const ge=this._elementRef.nativeElement;return this._isNativeSelect&&(ge.multiple||ge.size>1)}static#e=this.\u0275fac=function(ae){return new(ae||ee)(w.rXU(w.aKT),w.rXU(t.OD),w.rXU(y.vO,10),w.rXU(y.cV,8),w.rXU(y.j4,8),w.rXU(F.es),w.rXU(W,10),w.rXU(f),w.rXU(w.SKi),w.rXU(R.xb,8))};static#t=this.\u0275dir=w.FsC({type:ee,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-mdc-input-element"],hostVars:18,hostBindings:function(ae,Me){1&ae&&w.bIt("focus",function(){return Me._focusChanged(!0)})("blur",function(){return Me._focusChanged(!1)})("input",function(){return Me._onInput()}),2&ae&&(w.Mr5("id",Me.id)("disabled",Me.disabled)("required",Me.required),w.BMQ("name",Me.name||null)("readonly",Me.readonly&&!Me._isNativeSelect||null)("aria-invalid",Me.empty&&Me.required?null:Me.errorState)("aria-required",Me.required)("id",Me.id),w.AVh("mat-input-server",Me._isServer)("mat-mdc-form-field-textarea-control",Me._isInFormField&&Me._isTextarea)("mat-mdc-form-field-input-control",Me._isInFormField)("mdc-text-field__input",Me._isInFormField)("mat-mdc-native-select-inline",Me._isInlineSelect()))},inputs:{disabled:"disabled",id:"id",placeholder:"placeholder",name:"name",required:"required",type:"type",errorStateMatcher:"errorStateMatcher",userAriaDescribedBy:[0,"aria-describedby","userAriaDescribedBy"],value:"value",readonly:"readonly"},exportAs:["matInput"],standalone:!0,features:[w.Jv_([{provide:R.qT,useExisting:ee}]),w.OA$]})}return ee})(),J=(()=>{class ee{static#e=this.\u0275fac=function(ae){return new(ae||ee)};static#t=this.\u0275mod=w.$C({type:ee});static#i=this.\u0275inj=w.G2t({imports:[F.yE,R.RG,R.RG,T,F.yE]})}return ee})()},3902:(Qe,te,g)=>{"use strict";g.d(te,{Fg:()=>Ie,YE:()=>be,jt:()=>_e});var e=g(4438),t=g(4085),w=g(6860),S=g(6600),l=g(8359),x=g(7786),I=(g(1413),g(2318)),d=g(177),T=g(1997);g(8617),g(5024),g(7336),g(9417),g(6977);const $=["*"],Q=["unscopedContent"],J=["text"],ee=[[["","matListItemAvatar",""],["","matListItemIcon",""]],[["","matListItemTitle",""]],[["","matListItemLine",""]],"*",[["","matListItemMeta",""]],[["mat-divider"]]],ie=["[matListItemAvatar],[matListItemIcon]","[matListItemTitle]","[matListItemLine]","*","[matListItemMeta]","mat-divider"],N=new e.nKC("ListOption");let ne=(()=>{class He{constructor(yt){this._elementRef=yt}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemTitle",""]],hostAttrs:[1,"mat-mdc-list-item-title","mdc-list-item__primary-text"],standalone:!0})}return He})(),Ee=(()=>{class He{constructor(yt){this._elementRef=yt}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemLine",""]],hostAttrs:[1,"mat-mdc-list-item-line","mdc-list-item__secondary-text"],standalone:!0})}return He})(),ze=(()=>{class He{static#e=this.\u0275fac=function(Ye){return new(Ye||He)};static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemMeta",""]],hostAttrs:[1,"mat-mdc-list-item-meta","mdc-list-item__end"],standalone:!0})}return He})(),qe=(()=>{class He{constructor(yt){this._listOption=yt}_isAlignedAtStart(){return!this._listOption||"after"===this._listOption?._getTogglePosition()}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(N,8))};static#t=this.\u0275dir=e.FsC({type:He,hostVars:4,hostBindings:function(Ye,rt){2&Ye&&e.AVh("mdc-list-item__start",rt._isAlignedAtStart())("mdc-list-item__end",!rt._isAlignedAtStart())},standalone:!0})}return He})(),Ke=(()=>{class He extends qe{static#e=this.\u0275fac=(()=>{let yt;return function(rt){return(yt||(yt=e.xGo(He)))(rt||He)}})();static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemAvatar",""]],hostAttrs:[1,"mat-mdc-list-item-avatar"],standalone:!0,features:[e.Vt3]})}return He})(),se=(()=>{class He extends qe{static#e=this.\u0275fac=(()=>{let yt;return function(rt){return(yt||(yt=e.xGo(He)))(rt||He)}})();static#t=this.\u0275dir=e.FsC({type:He,selectors:[["","matListItemIcon",""]],hostAttrs:[1,"mat-mdc-list-item-icon"],standalone:!0,features:[e.Vt3]})}return He})();const X=new e.nKC("MAT_LIST_CONFIG");let me=(()=>{class He{constructor(){this._isNonInteractive=!0,this._disableRipple=!1,this._disabled=!1,this._defaultOptions=(0,e.WQX)(X,{optional:!0})}get disableRipple(){return this._disableRipple}set disableRipple(yt){this._disableRipple=(0,t.he)(yt)}get disabled(){return this._disabled}set disabled(yt){this._disabled=(0,t.he)(yt)}static#e=this.\u0275fac=function(Ye){return new(Ye||He)};static#t=this.\u0275dir=e.FsC({type:He,hostVars:1,hostBindings:function(Ye,rt){2&Ye&&e.BMQ("aria-disabled",rt.disabled)},inputs:{disableRipple:"disableRipple",disabled:"disabled"},standalone:!0})}return He})(),ce=(()=>{class He{set lines(yt){this._explicitLines=(0,t.OE)(yt,null),this._updateItemLines(!1)}get disableRipple(){return this.disabled||this._disableRipple||this._noopAnimations||!!this._listBase?.disableRipple}set disableRipple(yt){this._disableRipple=(0,t.he)(yt)}get disabled(){return this._disabled||!!this._listBase?.disabled}set disabled(yt){this._disabled=(0,t.he)(yt)}get rippleDisabled(){return this.disableRipple||!!this.rippleConfig.disabled}constructor(yt,Ye,rt,Yt,Nt,Et){this._elementRef=yt,this._ngZone=Ye,this._listBase=rt,this._platform=Yt,this._explicitLines=null,this._disableRipple=!1,this._disabled=!1,this._subscriptions=new l.yU,this._rippleRenderer=null,this._hasUnscopedTextContent=!1,this.rippleConfig=Nt||{},this._hostElement=this._elementRef.nativeElement,this._isButtonElement="button"===this._hostElement.nodeName.toLowerCase(),this._noopAnimations="NoopAnimations"===Et,rt&&!rt._isNonInteractive&&this._initInteractiveListItem(),this._isButtonElement&&!this._hostElement.hasAttribute("type")&&this._hostElement.setAttribute("type","button")}ngAfterViewInit(){this._monitorProjectedLinesAndTitle(),this._updateItemLines(!0)}ngOnDestroy(){this._subscriptions.unsubscribe(),null!==this._rippleRenderer&&this._rippleRenderer._removeTriggerEvents()}_hasIconOrAvatar(){return!(!this._avatars.length&&!this._icons.length)}_initInteractiveListItem(){this._hostElement.classList.add("mat-mdc-list-item-interactive"),this._rippleRenderer=new S.ug(this,this._ngZone,this._hostElement,this._platform),this._rippleRenderer.setupTriggerEvents(this._hostElement)}_monitorProjectedLinesAndTitle(){this._ngZone.runOutsideAngular(()=>{this._subscriptions.add((0,x.h)(this._lines.changes,this._titles.changes).subscribe(()=>this._updateItemLines(!1)))})}_updateItemLines(yt){if(!this._lines||!this._titles||!this._unscopedContent)return;yt&&this._checkDomForUnscopedTextContent();const Ye=this._explicitLines??this._inferLinesFromContent(),rt=this._unscopedContent.nativeElement;if(this._hostElement.classList.toggle("mat-mdc-list-item-single-line",Ye<=1),this._hostElement.classList.toggle("mdc-list-item--with-one-line",Ye<=1),this._hostElement.classList.toggle("mdc-list-item--with-two-lines",2===Ye),this._hostElement.classList.toggle("mdc-list-item--with-three-lines",3===Ye),this._hasUnscopedTextContent){const Yt=0===this._titles.length&&1===Ye;rt.classList.toggle("mdc-list-item__primary-text",Yt),rt.classList.toggle("mdc-list-item__secondary-text",!Yt)}else rt.classList.remove("mdc-list-item__primary-text"),rt.classList.remove("mdc-list-item__secondary-text")}_inferLinesFromContent(){let yt=this._titles.length+this._lines.length;return this._hasUnscopedTextContent&&(yt+=1),yt}_checkDomForUnscopedTextContent(){this._hasUnscopedTextContent=Array.from(this._unscopedContent.nativeElement.childNodes).filter(yt=>yt.nodeType!==yt.COMMENT_NODE).some(yt=>!(!yt.textContent||!yt.textContent.trim()))}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(me,8),e.rXU(w.OD),e.rXU(S.$E,8),e.rXU(e.bc$,8))};static#t=this.\u0275dir=e.FsC({type:He,contentQueries:function(Ye,rt,Yt){if(1&Ye&&(e.wni(Yt,Ke,4),e.wni(Yt,se,4)),2&Ye){let Nt;e.mGM(Nt=e.lsd())&&(rt._avatars=Nt),e.mGM(Nt=e.lsd())&&(rt._icons=Nt)}},hostVars:4,hostBindings:function(Ye,rt){2&Ye&&(e.BMQ("aria-disabled",rt.disabled)("disabled",rt._isButtonElement&&rt.disabled||null),e.AVh("mdc-list-item--disabled",rt.disabled))},inputs:{lines:"lines",disableRipple:"disableRipple",disabled:"disabled"},standalone:!0})}return He})(),_e=(()=>{class He extends me{static#e=this.\u0275fac=(()=>{let yt;return function(rt){return(yt||(yt=e.xGo(He)))(rt||He)}})();static#t=this.\u0275cmp=e.VBU({type:He,selectors:[["mat-list"]],hostAttrs:[1,"mat-mdc-list","mat-mdc-list-base","mdc-list"],exportAs:["matList"],standalone:!0,features:[e.Jv_([{provide:me,useExisting:He}]),e.Vt3,e.aNF],ngContentSelectors:$,decls:1,vars:0,template:function(Ye,rt){1&Ye&&(e.NAR(),e.SdG(0))},styles:['@media screen and (forced-colors: active),(-ms-high-contrast: active){.mdc-list-divider::after{content:"";display:block;border-bottom-width:1px;border-bottom-style:solid}}.mdc-list{margin:0;padding:8px 0;list-style-type:none}.mdc-list:focus{outline:none}.mdc-list-item__wrapper{display:block}.mdc-list-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;align-items:stretch;cursor:pointer}.mdc-list-item:focus{outline:none}.mdc-list-item.mdc-list-item--with-one-line{height:48px}.mdc-list-item.mdc-list-item--with-two-lines{height:64px}.mdc-list-item.mdc-list-item--with-three-lines{height:88px}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__start{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--disabled,.mdc-list-item.mdc-list-item--non-interactive{cursor:auto}.mdc-list-item:not(.mdc-list-item--selected):focus::before,.mdc-list-item.mdc-ripple-upgraded--background-focused::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item:not(.mdc-list-item--selected):focus::before,.mdc-list-item.mdc-ripple-upgraded--background-focused::before{border-color:CanvasText}}.mdc-list-item.mdc-list-item--selected::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:3px double rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item.mdc-list-item--selected::before{border-color:CanvasText}}.mdc-list-item.mdc-list-item--selected:focus::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:3px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-list-item.mdc-list-item--selected:focus::before{border-color:CanvasText}}a.mdc-list-item{color:inherit;text-decoration:none}.mdc-list-item__start{fill:currentColor;flex-shrink:0;pointer-events:none}.mdc-list-item__end{flex-shrink:0;pointer-events:none}.mdc-list-item__content{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;align-self:center;flex:1;pointer-events:none}.mdc-list-item--with-two-lines .mdc-list-item__content,.mdc-list-item--with-three-lines .mdc-list-item__content{align-self:stretch}.mdc-list-item__content[for]{pointer-events:none}.mdc-list-item__primary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-three-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item__secondary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:block;margin-top:0;line-height:normal}.mdc-list-item__secondary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item--with-three-lines .mdc-list-item__secondary-text{white-space:normal;line-height:20px}.mdc-list-item--with-overline .mdc-list-item__secondary-text{white-space:nowrap;line-height:auto}.mdc-list-item__overline-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:24px;content:"";vertical-align:0}.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-three-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-three-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-three-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-avatar.mdc-list-item,.mdc-list-item--with-leading-avatar.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-avatar .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-avatar .mdc-list-item__start,.mdc-list-item--with-leading-avatar .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-avatar .mdc-list-item__start{border-radius:50%}.mdc-list-item--with-leading-icon.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-icon.mdc-list-item,.mdc-list-item--with-leading-icon.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-icon .mdc-list-item__start{margin-left:16px;margin-right:32px}[dir=rtl] .mdc-list-item--with-leading-icon .mdc-list-item__start,.mdc-list-item--with-leading-icon .mdc-list-item__start[dir=rtl]{margin-left:32px;margin-right:16px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-thumbnail.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-thumbnail.mdc-list-item,.mdc-list-item--with-leading-thumbnail.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-thumbnail .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-thumbnail .mdc-list-item__start,.mdc-list-item--with-leading-thumbnail .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-thumbnail.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-image.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-image.mdc-list-item,.mdc-list-item--with-leading-image.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-image .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-image .mdc-list-item__start,.mdc-list-item--with-leading-image .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-image.mdc-list-item--with-one-line{height:72px}.mdc-list-item--with-leading-image.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-video.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-video.mdc-list-item,.mdc-list-item--with-leading-video.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-video .mdc-list-item__start{margin-left:0;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-video .mdc-list-item__start,.mdc-list-item--with-leading-video .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-video.mdc-list-item--with-one-line{height:72px}.mdc-list-item--with-leading-video.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-checkbox.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-checkbox.mdc-list-item,.mdc-list-item--with-leading-checkbox.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-checkbox .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-checkbox .mdc-list-item__start,.mdc-list-item--with-leading-checkbox .mdc-list-item__start[dir=rtl]{margin-left:24px;margin-right:8px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-radio.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-radio.mdc-list-item,.mdc-list-item--with-leading-radio.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-radio .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-radio .mdc-list-item__start,.mdc-list-item--with-leading-radio .mdc-list-item__start[dir=rtl]{margin-left:24px;margin-right:8px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-leading-switch.mdc-list-item{padding-left:0;padding-right:auto}[dir=rtl] .mdc-list-item--with-leading-switch.mdc-list-item,.mdc-list-item--with-leading-switch.mdc-list-item[dir=rtl]{padding-left:auto;padding-right:0}.mdc-list-item--with-leading-switch .mdc-list-item__start{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-leading-switch .mdc-list-item__start,.mdc-list-item--with-leading-switch .mdc-list-item__start[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines .mdc-list-item__overline-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-switch.mdc-list-item--with-one-line{height:56px}.mdc-list-item--with-leading-switch.mdc-list-item--with-two-lines{height:72px}.mdc-list-item--with-trailing-icon.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-icon.mdc-list-item,.mdc-list-item--with-trailing-icon.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-icon .mdc-list-item__end{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-icon .mdc-list-item__end,.mdc-list-item--with-trailing-icon .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-meta.mdc-list-item,.mdc-list-item--with-trailing-meta.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-meta .mdc-list-item__end{margin-left:28px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-trailing-meta .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:28px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-trailing-meta .mdc-list-item__end{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mdc-typography-caption-font-family);font-size:var(--mdc-typography-caption-font-size);line-height:var(--mdc-typography-caption-line-height);font-weight:var(--mdc-typography-caption-font-weight);letter-spacing:var(--mdc-typography-caption-letter-spacing);text-decoration:var(--mdc-typography-caption-text-decoration);text-transform:var(--mdc-typography-caption-text-transform)}.mdc-list-item--with-trailing-checkbox.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item,.mdc-list-item--with-trailing-checkbox.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-checkbox .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-checkbox .mdc-list-item__end,.mdc-list-item--with-trailing-checkbox .mdc-list-item__end[dir=rtl]{margin-left:8px;margin-right:24px}.mdc-list-item--with-trailing-checkbox.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:8px}.mdc-list-item--with-trailing-radio.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item,.mdc-list-item--with-trailing-radio.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-radio .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-radio .mdc-list-item__end,.mdc-list-item--with-trailing-radio .mdc-list-item__end[dir=rtl]{margin-left:8px;margin-right:24px}.mdc-list-item--with-trailing-radio.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:8px}.mdc-list-item--with-trailing-switch.mdc-list-item{padding-left:auto;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-switch.mdc-list-item,.mdc-list-item--with-trailing-switch.mdc-list-item[dir=rtl]{padding-left:0;padding-right:auto}.mdc-list-item--with-trailing-switch .mdc-list-item__end{margin-left:16px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-switch .mdc-list-item__end,.mdc-list-item--with-trailing-switch .mdc-list-item__end[dir=rtl]{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-switch.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item--with-overline.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-overline.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item--with-overline.mdc-list-item--with-three-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-overline.mdc-list-item--with-three-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item{padding-left:16px;padding-right:16px}[dir=rtl] .mdc-list-item,.mdc-list-item[dir=rtl]{padding-left:16px;padding-right:16px}.mdc-list-group .mdc-deprecated-list{padding:0}.mdc-list-group__subheader{margin:calc((3rem - 1.5rem)/2) 16px}.mdc-list-divider{padding:0;background-clip:content-box}.mdc-list-divider.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset{padding-left:16px;padding-right:auto}[dir=rtl] .mdc-list-divider.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset,[dir=rtl] .mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset,.mdc-list-divider.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-text.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-icon.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-image.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-switch.mdc-list-divider--with-leading-inset[dir=rtl],.mdc-list-divider--with-leading-radio.mdc-list-divider--with-leading-inset[dir=rtl]{padding-left:auto;padding-right:16px}.mdc-list-divider.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset,.mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset{padding-left:auto;padding-right:16px}[dir=rtl] .mdc-list-divider.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset,[dir=rtl] .mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset,.mdc-list-divider.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-text.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-icon.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-image.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-thumbnail.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-avatar.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-checkbox.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-switch.mdc-list-divider--with-trailing-inset[dir=rtl],.mdc-list-divider--with-leading-radio.mdc-list-divider--with-trailing-inset[dir=rtl]{padding-left:16px;padding-right:auto}.mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset{padding-left:0px;padding-right:auto}[dir=rtl] .mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset,.mdc-list-divider--with-leading-video.mdc-list-divider--with-leading-inset[dir=rtl]{padding-left:auto;padding-right:0px}[dir=rtl] .mdc-list-divider,.mdc-list-divider[dir=rtl]{padding:0}.mdc-list-item{background-color:var(--mdc-list-list-item-container-color)}.mdc-list-item.mdc-list-item--selected{background-color:var(--mdc-list-list-item-selected-container-color)}.mdc-list-item--with-one-line{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-one-line.mdc-list-item--with-leading-avatar,.mdc-list-item--with-one-line.mdc-list-item--with-leading-icon,.mdc-list-item--with-one-line.mdc-list-item--with-leading-thumbnail,.mdc-list-item--with-one-line.mdc-list-item--with-leading-checkbox,.mdc-list-item--with-one-line.mdc-list-item--with-leading-radio,.mdc-list-item--with-one-line.mdc-list-item--with-leading-switch{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-one-line.mdc-list-item--with-leading-image,.mdc-list-item--with-one-line.mdc-list-item--with-leading-video{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-two-lines{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-two-lines.mdc-list-item--with-leading-avatar,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-icon,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-thumbnail,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-checkbox,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-radio,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-switch,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-image,.mdc-list-item--with-two-lines.mdc-list-item--with-leading-video{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item--with-three-lines{border-radius:var(--mdc-list-list-item-container-shape)}.mdc-list-item.mdc-list-item--with-one-line{height:var(--mdc-list-list-item-one-line-container-height)}.mdc-list-item.mdc-list-item--with-two-lines{height:var(--mdc-list-list-item-two-line-container-height)}.mdc-list-item.mdc-list-item--with-three-lines{height:var(--mdc-list-list-item-three-line-container-height)}.mdc-list-item__primary-text{color:var(--mdc-list-list-item-label-text-color)}.mdc-list-item__primary-text{font-family:var(--mdc-list-list-item-label-text-font);line-height:var(--mdc-list-list-item-label-text-line-height);font-size:var(--mdc-list-list-item-label-text-size);font-weight:var(--mdc-list-list-item-label-text-weight);letter-spacing:var(--mdc-list-list-item-label-text-tracking)}.mdc-list-item__secondary-text{color:var(--mdc-list-list-item-supporting-text-color)}.mdc-list-item__secondary-text{font-family:var(--mdc-list-list-item-supporting-text-font);line-height:var(--mdc-list-list-item-supporting-text-line-height);font-size:var(--mdc-list-list-item-supporting-text-size);font-weight:var(--mdc-list-list-item-supporting-text-weight);letter-spacing:var(--mdc-list-list-item-supporting-text-tracking)}.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-list-list-item-leading-icon-color)}.mdc-list-item--with-leading-icon .mdc-list-item__start{width:var(--mdc-list-list-item-leading-icon-size);height:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start>i{font-size:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon{font-size:var(--mdc-list-list-item-leading-icon-size);width:var(--mdc-list-list-item-leading-icon-size);height:var(--mdc-list-list-item-leading-icon-size)}.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon,.mdc-list-item--with-leading-icon .mdc-list-item__start .mdc-list-item__icon>.materialdesignWizIconSvgsSvgIcon{display:block}.mdc-list-item--with-leading-avatar .mdc-list-item__start{width:var(--mdc-list-list-item-leading-avatar-size);height:var(--mdc-list-list-item-leading-avatar-size)}.mdc-list-item.mdc-list-item--with-trailing-meta .mdc-list-item__end{color:var(--mdc-list-list-item-trailing-supporting-text-color)}.mdc-list-item--with-trailing-meta .mdc-list-item__end{font-family:var(--mdc-list-list-item-trailing-supporting-text-font);line-height:var(--mdc-list-list-item-trailing-supporting-text-line-height);font-size:var(--mdc-list-list-item-trailing-supporting-text-size);font-weight:var(--mdc-list-list-item-trailing-supporting-text-weight);letter-spacing:var(--mdc-list-list-item-trailing-supporting-text-tracking)}.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-trailing-icon-color)}.mdc-list-item--with-trailing-icon .mdc-list-item__end{width:var(--mdc-list-list-item-trailing-icon-size);height:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end>i{font-size:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon{font-size:var(--mdc-list-list-item-trailing-icon-size);width:var(--mdc-list-list-item-trailing-icon-size);height:var(--mdc-list-list-item-trailing-icon-size)}.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon,.mdc-list-item--with-trailing-icon .mdc-list-item__end .mdc-list-item__icon>.materialdesignWizIconSvgsSvgIcon{display:block}.mdc-list-item--selected.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-selected-trailing-icon-color)}.mdc-list-item--disabled .mdc-list-item__start,.mdc-list-item--disabled .mdc-list-item__content,.mdc-list-item--disabled .mdc-list-item__end{opacity:1}.mdc-list-item--disabled .mdc-list-item__primary-text,.mdc-list-item--disabled .mdc-list-item__secondary-text,.mdc-list-item--disabled .mdc-list-item__overline-text{opacity:var(--mdc-list-list-item-disabled-label-text-opacity)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mdc-list-list-item-disabled-leading-icon-color)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{opacity:var(--mdc-list-list-item-disabled-leading-icon-opacity)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mdc-list-list-item-disabled-trailing-icon-color)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{opacity:var(--mdc-list-list-item-disabled-trailing-icon-opacity)}.mdc-list-item:hover .mdc-list-item__primary-text{color:var(--mdc-list-list-item-hover-label-text-color)}.mdc-list-item--with-leading-icon:hover .mdc-list-item__start{color:var(--mdc-list-list-item-hover-leading-icon-color)}.mdc-list-item--with-trailing-icon:hover .mdc-list-item__end{color:var(--mdc-list-list-item-hover-trailing-icon-color)}.mdc-list-item:focus .mdc-list-item__primary-text{color:var(--mdc-list-list-item-focus-label-text-color)}.mdc-list-item.mdc-list-item--disabled .mdc-list-item__primary-text{color:var(--mdc-list-list-item-disabled-label-text-color)}.mdc-list-item:hover::before{background-color:var(--mdc-list-list-item-hover-state-layer-color);opacity:var(--mdc-list-list-item-hover-state-layer-opacity)}.mdc-list-item.mdc-list-item--disabled::before{background-color:var(--mdc-list-list-item-disabled-state-layer-color);opacity:var(--mdc-list-list-item-disabled-state-layer-opacity)}.mdc-list-item:focus::before{background-color:var(--mdc-list-list-item-focus-state-layer-color);opacity:var(--mdc-list-list-item-focus-state-layer-opacity)}.mdc-list-item--disabled .mdc-radio,.mdc-list-item--disabled .mdc-checkbox{opacity:var(--mdc-list-list-item-disabled-label-text-opacity)}.mdc-list-item--with-leading-avatar .mat-mdc-list-item-avatar{border-radius:var(--mdc-list-list-item-leading-avatar-shape);background-color:var(--mdc-list-list-item-leading-avatar-color)}.mat-mdc-list-item-icon{font-size:var(--mdc-list-list-item-leading-icon-size)}.cdk-high-contrast-active a.mdc-list-item--activated::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}.cdk-high-contrast-active a.mdc-list-item--activated [dir=rtl]::after{right:auto;left:16px}.mat-mdc-list-base{display:block}.mat-mdc-list-base .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item__end,.mat-mdc-list-base .mdc-list-item__content{pointer-events:auto}.mat-mdc-list-item,.mat-mdc-list-option{width:100%;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-list-item:not(.mat-mdc-list-item-interactive),.mat-mdc-list-option:not(.mat-mdc-list-item-interactive){cursor:default}.mat-mdc-list-item .mat-divider-inset,.mat-mdc-list-option .mat-divider-inset{position:absolute;left:0;right:0;bottom:0}.mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,.mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-left:72px}[dir=rtl] .mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,[dir=rtl] .mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-right:72px}.mat-mdc-list-item-interactive::before{top:0;left:0;right:0;bottom:0;position:absolute;content:"";opacity:0;pointer-events:none}.mat-mdc-list-item>.mat-mdc-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-list-item:focus>.mat-mdc-focus-indicator::before{content:""}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-line.mdc-list-item__secondary-text{white-space:nowrap;line-height:normal}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-unscoped-content.mdc-list-item__secondary-text{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}mat-action-list button{background:none;color:inherit;border:none;font:inherit;outline:inherit;-webkit-tap-highlight-color:rgba(0,0,0,0);text-align:start}mat-action-list button::-moz-focus-inner{border:0}.mdc-list-item--with-leading-icon .mdc-list-item__start{margin-inline-start:var(--mat-list-list-item-leading-icon-start-space);margin-inline-end:var(--mat-list-list-item-leading-icon-end-space)}.mat-mdc-nav-list .mat-mdc-list-item{border-radius:var(--mat-list-active-indicator-shape);--mat-mdc-focus-indicator-border-radius:var(--mat-list-active-indicator-shape)}.mat-mdc-nav-list .mat-mdc-list-item.mdc-list-item--activated{background-color:var(--mat-list-active-indicator-color)}'],encapsulation:2,changeDetection:0})}return He})(),be=(()=>{class He extends ce{get activated(){return this._activated}set activated(yt){this._activated=(0,t.he)(yt)}constructor(yt,Ye,rt,Yt,Nt,Et){super(yt,Ye,rt,Yt,Nt,Et),this._activated=!1}_getAriaCurrent(){return"A"===this._hostElement.nodeName&&this._activated?"page":null}static#e=this.\u0275fac=function(Ye){return new(Ye||He)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(me,8),e.rXU(w.OD),e.rXU(S.$E,8),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:He,selectors:[["mat-list-item"],["a","mat-list-item",""],["button","mat-list-item",""]],contentQueries:function(Ye,rt,Yt){if(1&Ye&&(e.wni(Yt,Ee,5),e.wni(Yt,ne,5),e.wni(Yt,ze,5)),2&Ye){let Nt;e.mGM(Nt=e.lsd())&&(rt._lines=Nt),e.mGM(Nt=e.lsd())&&(rt._titles=Nt),e.mGM(Nt=e.lsd())&&(rt._meta=Nt)}},viewQuery:function(Ye,rt){if(1&Ye&&(e.GBs(Q,5),e.GBs(J,5)),2&Ye){let Yt;e.mGM(Yt=e.lsd())&&(rt._unscopedContent=Yt.first),e.mGM(Yt=e.lsd())&&(rt._itemText=Yt.first)}},hostAttrs:[1,"mat-mdc-list-item","mdc-list-item"],hostVars:11,hostBindings:function(Ye,rt){2&Ye&&(e.BMQ("aria-current",rt._getAriaCurrent()),e.AVh("mdc-list-item--activated",rt.activated)("mdc-list-item--with-leading-avatar",0!==rt._avatars.length)("mdc-list-item--with-leading-icon",0!==rt._icons.length)("mdc-list-item--with-trailing-meta",0!==rt._meta.length)("_mat-animation-noopable",rt._noopAnimations))},inputs:{activated:"activated"},exportAs:["matListItem"],standalone:!0,features:[e.Vt3,e.aNF],ngContentSelectors:ie,decls:10,vars:0,consts:[["unscopedContent",""],[1,"mdc-list-item__content"],[1,"mat-mdc-list-item-unscoped-content",3,"cdkObserveContent"],[1,"mat-mdc-focus-indicator"]],template:function(Ye,rt){if(1&Ye){const Yt=e.RV6();e.NAR(ee),e.SdG(0),e.j41(1,"span",1),e.SdG(2,1),e.SdG(3,2),e.j41(4,"span",2,0),e.bIt("cdkObserveContent",function(){return e.eBV(Yt),e.Njj(rt._updateItemLines(!0))}),e.SdG(6,3),e.k0s()(),e.SdG(7,4),e.SdG(8,5),e.nrm(9,"div",3)}},dependencies:[I.Wv],encapsulation:2,changeDetection:0})}return He})(),Ie=(()=>{class He{static#e=this.\u0275fac=function(Ye){return new(Ye||He)};static#t=this.\u0275mod=e.$C({type:He});static#i=this.\u0275inj=e.G2t({imports:[I.w5,d.MD,S.yE,S.pZ,S.O5,T.w]})}return He})()},9115:(Qe,te,g)=>{"use strict";g.d(te,{Cn:()=>fe,Cp:()=>ce,fb:()=>m,kk:()=>ze});var e=g(4438),t=g(8617),w=g(7336),S=g(1413),l=g(7786),x=g(8359),f=g(7673),I=g(5007),d=g(9172),T=g(5558),y=g(6697),F=g(6977),R=g(5964),z=g(5335),W=g(177),$=g(6600),j=g(6939),Q=g(9969),J=g(8203),ee=g(6969),ie=g(6860),ge=g(5542);const ae=["mat-menu-item",""],Me=[[["mat-icon"],["","matMenuItemIcon",""]],"*"],Te=["mat-icon, [matMenuItemIcon]","*"];function de(ke,mt){1&ke&&(e.qSk(),e.j41(0,"svg",2),e.nrm(1,"polygon",3),e.k0s())}const D=["*"];function n(ke,mt){if(1&ke){const _e=e.RV6();e.j41(0,"div",0),e.bIt("keydown",function(pe){e.eBV(_e);const Ze=e.XpG();return e.Njj(Ze._handleKeydown(pe))})("click",function(){e.eBV(_e);const pe=e.XpG();return e.Njj(pe.closed.emit("click"))})("@transformMenu.start",function(pe){e.eBV(_e);const Ze=e.XpG();return e.Njj(Ze._onAnimationStart(pe))})("@transformMenu.done",function(pe){e.eBV(_e);const Ze=e.XpG();return e.Njj(Ze._onAnimationDone(pe))}),e.j41(1,"div",1),e.SdG(2),e.k0s()()}if(2&ke){const _e=e.XpG();e.HbH(_e._classList),e.Y8G("id",_e.panelId)("@transformMenu",_e._panelAnimationState),e.BMQ("aria-label",_e.ariaLabel||null)("aria-labelledby",_e.ariaLabelledby||null)("aria-describedby",_e.ariaDescribedby||null)}}const c=new e.nKC("MAT_MENU_PANEL");let m=(()=>{class ke{constructor(_e,be,pe,Ze,_t){this._elementRef=_e,this._document=be,this._focusMonitor=pe,this._parentMenu=Ze,this._changeDetectorRef=_t,this.role="menuitem",this.disabled=!1,this.disableRipple=!1,this._hovered=new S.B,this._focused=new S.B,this._highlighted=!1,this._triggersSubmenu=!1,Ze?.addItem?.(this)}focus(_e,be){this._focusMonitor&&_e?this._focusMonitor.focusVia(this._getHostElement(),_e,be):this._getHostElement().focus(be),this._focused.next(this)}ngAfterViewInit(){this._focusMonitor&&this._focusMonitor.monitor(this._elementRef,!1)}ngOnDestroy(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._elementRef.nativeElement}_checkDisabled(_e){this.disabled&&(_e.preventDefault(),_e.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const _e=this._elementRef.nativeElement.cloneNode(!0),be=_e.querySelectorAll("mat-icon, .material-icons");for(let pe=0;pe enter",(0,Q.i0)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,Q.iF)({opacity:1,transform:"scale(1)"}))),(0,Q.kY)("* => void",(0,Q.i0)("100ms 25ms linear",(0,Q.iF)({opacity:0})))]),fadeInItems:(0,Q.hZ)("fadeInItems",[(0,Q.wk)("showing",(0,Q.iF)({opacity:1})),(0,Q.kY)("void => *",[(0,Q.iF)({opacity:0}),(0,Q.i0)("400ms 100ms cubic-bezier(0.55, 0, 0.55, 0.2)")])])};let N=0;const ne=new e.nKC("mat-menu-default-options",{providedIn:"root",factory:function Ee(){return{overlapTrigger:!1,xPosition:"after",yPosition:"below",backdropClass:"cdk-overlay-transparent-backdrop"}}});let ze=(()=>{class ke{get xPosition(){return this._xPosition}set xPosition(_e){this._xPosition=_e,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(_e){this._yPosition=_e,this.setPositionClasses()}set panelClass(_e){const be=this._previousPanelClass,pe={...this._classList};be&&be.length&&be.split(" ").forEach(Ze=>{pe[Ze]=!1}),this._previousPanelClass=_e,_e&&_e.length&&(_e.split(" ").forEach(Ze=>{pe[Ze]=!0}),this._elementRef.nativeElement.className=""),this._classList=pe}get classList(){return this.panelClass}set classList(_e){this.panelClass=_e}constructor(_e,be,pe,Ze){this._elementRef=_e,this._ngZone=be,this._changeDetectorRef=Ze,this._elevationPrefix="mat-elevation-z",this._baseElevation=8,this._directDescendantItems=new e.rOR,this._classList={},this._panelAnimationState="void",this._animationDone=new S.B,this.closed=new e.bkB,this.close=this.closed,this.panelId="mat-menu-panel-"+N++,this.overlayPanelClass=pe.overlayPanelClass||"",this._xPosition=pe.xPosition,this._yPosition=pe.yPosition,this.backdropClass=pe.backdropClass,this.overlapTrigger=pe.overlapTrigger,this.hasBackdrop=pe.hasBackdrop}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new t.Bu(this._directDescendantItems).withWrap().withTypeAhead().withHomeAndEnd(),this._keyManager.tabOut.subscribe(()=>this.closed.emit("tab")),this._directDescendantItems.changes.pipe((0,d.Z)(this._directDescendantItems),(0,T.n)(_e=>(0,l.h)(..._e.map(be=>be._focused)))).subscribe(_e=>this._keyManager.updateActiveItem(_e)),this._directDescendantItems.changes.subscribe(_e=>{const be=this._keyManager;if("enter"===this._panelAnimationState&&be.activeItem?._hasFocus()){const pe=_e.toArray(),Ze=Math.max(0,Math.min(pe.length-1,be.activeItemIndex||0));pe[Ze]&&!pe[Ze].disabled?be.setActiveItem(Ze):be.setNextItemActive()}})}ngOnDestroy(){this._keyManager?.destroy(),this._directDescendantItems.destroy(),this.closed.complete(),this._firstItemFocusSubscription?.unsubscribe()}_hovered(){return this._directDescendantItems.changes.pipe((0,d.Z)(this._directDescendantItems),(0,T.n)(be=>(0,l.h)(...be.map(pe=>pe._hovered))))}addItem(_e){}removeItem(_e){}_handleKeydown(_e){const be=_e.keyCode,pe=this._keyManager;switch(be){case w._f:(0,w.rp)(_e)||(_e.preventDefault(),this.closed.emit("keydown"));break;case w.UQ:this.parentMenu&&"ltr"===this.direction&&this.closed.emit("keydown");break;case w.LE:this.parentMenu&&"rtl"===this.direction&&this.closed.emit("keydown");break;default:return(be===w.i7||be===w.n6)&&pe.setFocusOrigin("keyboard"),void pe.onKeydown(_e)}_e.stopPropagation()}focusFirstItem(_e="program"){this._firstItemFocusSubscription?.unsubscribe(),this._firstItemFocusSubscription=this._ngZone.onStable.pipe((0,y.s)(1)).subscribe(()=>{let be=null;if(this._directDescendantItems.length&&(be=this._directDescendantItems.first._getHostElement().closest('[role="menu"]')),!be||!be.contains(document.activeElement)){const pe=this._keyManager;pe.setFocusOrigin(_e).setFirstItemActive(),!pe.activeItem&&be&&be.focus()}})}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(_e){const be=Math.min(this._baseElevation+_e,24),pe=`${this._elevationPrefix}${be}`,Ze=Object.keys(this._classList).find(_t=>_t.startsWith(this._elevationPrefix));if(!Ze||Ze===this._previousElevation){const _t={...this._classList};this._previousElevation&&(_t[this._previousElevation]=!1),_t[pe]=!0,this._previousElevation=pe,this._classList=_t}}setPositionClasses(_e=this.xPosition,be=this.yPosition){this._classList={...this._classList,"mat-menu-before":"before"===_e,"mat-menu-after":"after"===_e,"mat-menu-above":"above"===be,"mat-menu-below":"below"===be},this._changeDetectorRef?.markForCheck()}_startAnimation(){this._panelAnimationState="enter"}_resetAnimation(){this._panelAnimationState="void"}_onAnimationDone(_e){this._animationDone.next(_e),this._isAnimating=!1}_onAnimationStart(_e){this._isAnimating=!0,"enter"===_e.toState&&0===this._keyManager.activeItemIndex&&(_e.element.scrollTop=0)}_updateDirectDescendants(){this._allItems.changes.pipe((0,d.Z)(this._allItems)).subscribe(_e=>{this._directDescendantItems.reset(_e.filter(be=>be._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}static#e=this.\u0275fac=function(be){return new(be||ke)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(ne),e.rXU(e.gRc))};static#t=this.\u0275cmp=e.VBU({type:ke,selectors:[["mat-menu"]],contentQueries:function(be,pe,Ze){if(1&be&&(e.wni(Ze,L,5),e.wni(Ze,m,5),e.wni(Ze,m,4)),2&be){let _t;e.mGM(_t=e.lsd())&&(pe.lazyContent=_t.first),e.mGM(_t=e.lsd())&&(pe._allItems=_t),e.mGM(_t=e.lsd())&&(pe.items=_t)}},viewQuery:function(be,pe){if(1&be&&e.GBs(e.C4Q,5),2&be){let Ze;e.mGM(Ze=e.lsd())&&(pe.templateRef=Ze.first)}},hostVars:3,hostBindings:function(be,pe){2&be&&e.BMQ("aria-label",null)("aria-labelledby",null)("aria-describedby",null)},inputs:{backdropClass:"backdropClass",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],xPosition:"xPosition",yPosition:"yPosition",overlapTrigger:[2,"overlapTrigger","overlapTrigger",e.L39],hasBackdrop:[2,"hasBackdrop","hasBackdrop",_e=>null==_e?null:(0,e.L39)(_e)],panelClass:[0,"class","panelClass"],classList:"classList"},outputs:{closed:"closed",close:"close"},exportAs:["matMenu"],standalone:!0,features:[e.Jv_([{provide:c,useExisting:ke}]),e.GFd,e.aNF],ngContentSelectors:D,decls:1,vars:0,consts:[["tabindex","-1","role","menu",1,"mat-mdc-menu-panel","mat-mdc-elevation-specific",3,"keydown","click","id"],[1,"mat-mdc-menu-content"]],template:function(be,pe){1&be&&(e.NAR(),e.DNE(0,n,3,7,"ng-template"))},styles:['mat-menu{display:none}.mat-mdc-menu-content{margin:0;padding:8px 0;list-style-type:none}.mat-mdc-menu-content:focus{outline:none}.mat-mdc-menu-content,.mat-mdc-menu-content .mat-mdc-menu-item .mat-mdc-menu-item-text{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;flex:1;white-space:normal;font-family:var(--mat-menu-item-label-text-font);line-height:var(--mat-menu-item-label-text-line-height);font-size:var(--mat-menu-item-label-text-size);letter-spacing:var(--mat-menu-item-label-text-tracking);font-weight:var(--mat-menu-item-label-text-weight)}.mat-mdc-menu-panel{min-width:112px;max-width:280px;overflow:auto;-webkit-overflow-scrolling:touch;box-sizing:border-box;outline:0;border-radius:var(--mat-menu-container-shape);background-color:var(--mat-menu-container-color);will-change:transform,opacity}.mat-mdc-menu-panel.ng-animating{pointer-events:none}.cdk-high-contrast-active .mat-mdc-menu-panel{outline:solid 1px}.mat-divider{color:var(--mat-menu-divider-color);margin-bottom:var(--mat-menu-divider-bottom-spacing);margin-top:var(--mat-menu-divider-top-spacing)}.mat-mdc-menu-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;padding-left:var(--mat-menu-item-leading-spacing);padding-right:var(--mat-menu-item-trailing-spacing);-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0);cursor:pointer;width:100%;text-align:left;box-sizing:border-box;color:inherit;font-size:inherit;background:none;text-decoration:none;margin:0;align-items:center;min-height:48px}.mat-mdc-menu-item:focus{outline:none}[dir=rtl] .mat-mdc-menu-item,.mat-mdc-menu-item[dir=rtl]{padding-left:var(--mat-menu-item-trailing-spacing);padding-right:var(--mat-menu-item-leading-spacing)}.mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]){padding-left:var(--mat-menu-item-with-icon-leading-spacing);padding-right:var(--mat-menu-item-with-icon-trailing-spacing)}[dir=rtl] .mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]),.mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon])[dir=rtl]{padding-left:var(--mat-menu-item-with-icon-trailing-spacing);padding-right:var(--mat-menu-item-with-icon-leading-spacing)}.mat-mdc-menu-item::-moz-focus-inner{border:0}.mat-mdc-menu-item,.mat-mdc-menu-item:visited,.mat-mdc-menu-item:link{color:var(--mat-menu-item-label-text-color)}.mat-mdc-menu-item .mat-icon-no-color,.mat-mdc-menu-item .mat-mdc-menu-submenu-icon{color:var(--mat-menu-item-icon-color)}.mat-mdc-menu-item[disabled]{cursor:default;opacity:.38}.mat-mdc-menu-item[disabled]::after{display:block;position:absolute;content:"";top:0;left:0;bottom:0;right:0}.mat-mdc-menu-item .mat-icon{flex-shrink:0;margin-right:var(--mat-menu-item-spacing);height:var(--mat-menu-item-icon-size);width:var(--mat-menu-item-icon-size)}[dir=rtl] .mat-mdc-menu-item{text-align:right}[dir=rtl] .mat-mdc-menu-item .mat-icon{margin-right:0;margin-left:var(--mat-menu-item-spacing)}.mat-mdc-menu-item:not([disabled]):hover{background-color:var(--mat-menu-item-hover-state-layer-color)}.mat-mdc-menu-item:not([disabled]).cdk-program-focused,.mat-mdc-menu-item:not([disabled]).cdk-keyboard-focused,.mat-mdc-menu-item:not([disabled]).mat-mdc-menu-item-highlighted{background-color:var(--mat-menu-item-focus-state-layer-color)}.cdk-high-contrast-active .mat-mdc-menu-item{margin-top:1px}.mat-mdc-menu-submenu-icon{width:var(--mat-menu-item-icon-size);height:10px;fill:currentColor;padding-left:var(--mat-menu-item-spacing)}[dir=rtl] .mat-mdc-menu-submenu-icon{padding-right:var(--mat-menu-item-spacing);padding-left:0}[dir=rtl] .mat-mdc-menu-submenu-icon polygon{transform:scaleX(-1)}.cdk-high-contrast-active .mat-mdc-menu-submenu-icon{fill:CanvasText}.mat-mdc-menu-item .mat-mdc-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}'],encapsulation:2,data:{animation:[r.transformMenu,r.fadeInItems]},changeDetection:0})}return ke})();const qe=new e.nKC("mat-menu-scroll-strategy",{providedIn:"root",factory:()=>{const ke=(0,e.WQX)(ee.hJ);return()=>ke.scrollStrategies.reposition()}}),se={provide:qe,deps:[ee.hJ],useFactory:function Ke(ke){return()=>ke.scrollStrategies.reposition()}},X=(0,ie.BQ)({passive:!0});let ce=(()=>{class ke{get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(_e){this.menu=_e}get menu(){return this._menu}set menu(_e){_e!==this._menu&&(this._menu=_e,this._menuCloseSubscription.unsubscribe(),_e&&(this._menuCloseSubscription=_e.close.subscribe(be=>{this._destroyMenu(be),("click"===be||"tab"===be)&&this._parentMaterialMenu&&this._parentMaterialMenu.closed.emit(be)})),this._menuItemInstance?._setTriggersSubmenu(this.triggersSubmenu()))}constructor(_e,be,pe,Ze,_t,at,pt,Xt,ye){this._overlay=_e,this._element=be,this._viewContainerRef=pe,this._menuItemInstance=at,this._dir=pt,this._focusMonitor=Xt,this._ngZone=ye,this._overlayRef=null,this._menuOpen=!1,this._closingActionsSubscription=x.yU.EMPTY,this._hoverSubscription=x.yU.EMPTY,this._menuCloseSubscription=x.yU.EMPTY,this._changeDetectorRef=(0,e.WQX)(e.gRc),this._handleTouchStart=ue=>{(0,t.w6)(ue)||(this._openedBy="touch")},this._openedBy=void 0,this.restoreFocus=!0,this.menuOpened=new e.bkB,this.onMenuOpen=this.menuOpened,this.menuClosed=new e.bkB,this.onMenuClose=this.menuClosed,this._scrollStrategy=Ze,this._parentMaterialMenu=_t instanceof ze?_t:void 0,be.nativeElement.addEventListener("touchstart",this._handleTouchStart,X)}ngAfterContentInit(){this._handleHover()}ngOnDestroy(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null),this._element.nativeElement.removeEventListener("touchstart",this._handleTouchStart,X),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._hoverSubscription.unsubscribe()}get menuOpen(){return this._menuOpen}get dir(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}triggersSubmenu(){return!!(this._menuItemInstance&&this._parentMaterialMenu&&this.menu)}toggleMenu(){return this._menuOpen?this.closeMenu():this.openMenu()}openMenu(){const _e=this.menu;if(this._menuOpen||!_e)return;const be=this._createOverlay(_e),pe=be.getConfig(),Ze=pe.positionStrategy;this._setPosition(_e,Ze),pe.hasBackdrop=null==_e.hasBackdrop?!this.triggersSubmenu():_e.hasBackdrop,be.attach(this._getPortal(_e)),_e.lazyContent&&_e.lazyContent.attach(this.menuData),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this.closeMenu()),this._initMenu(_e),_e instanceof ze&&(_e._startAnimation(),_e._directDescendantItems.changes.pipe((0,F.Q)(_e.close)).subscribe(()=>{Ze.withLockedPosition(!1).reapplyLastPosition(),Ze.withLockedPosition(!0)}))}closeMenu(){this.menu?.close.emit()}focus(_e,be){this._focusMonitor&&_e?this._focusMonitor.focusVia(this._element,_e,be):this._element.nativeElement.focus(be)}updatePosition(){this._overlayRef?.updatePosition()}_destroyMenu(_e){if(!this._overlayRef||!this.menuOpen)return;const be=this.menu;this._closingActionsSubscription.unsubscribe(),this._overlayRef.detach(),this.restoreFocus&&("keydown"===_e||!this._openedBy||!this.triggersSubmenu())&&this.focus(this._openedBy),this._openedBy=void 0,be instanceof ze?(be._resetAnimation(),be.lazyContent?be._animationDone.pipe((0,R.p)(pe=>"void"===pe.toState),(0,y.s)(1),(0,F.Q)(be.lazyContent._attached)).subscribe({next:()=>be.lazyContent.detach(),complete:()=>this._setIsMenuOpen(!1)}):this._setIsMenuOpen(!1)):(this._setIsMenuOpen(!1),be?.lazyContent?.detach())}_initMenu(_e){_e.parentMenu=this.triggersSubmenu()?this._parentMaterialMenu:void 0,_e.direction=this.dir,this._setMenuElevation(_e),_e.focusFirstItem(this._openedBy||"program"),this._setIsMenuOpen(!0)}_setMenuElevation(_e){if(_e.setElevation){let be=0,pe=_e.parentMenu;for(;pe;)be++,pe=pe.parentMenu;_e.setElevation(be)}}_setIsMenuOpen(_e){_e!==this._menuOpen&&(this._menuOpen=_e,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this.triggersSubmenu()&&this._menuItemInstance._setHighlighted(_e),this._changeDetectorRef.markForCheck())}_createOverlay(_e){if(!this._overlayRef){const be=this._getOverlayConfig(_e);this._subscribeToPositions(_e,be.positionStrategy),this._overlayRef=this._overlay.create(be),this._overlayRef.keydownEvents().subscribe()}return this._overlayRef}_getOverlayConfig(_e){return new ee.rR({positionStrategy:this._overlay.position().flexibleConnectedTo(this._element).withLockedPosition().withGrowAfterOpen().withTransformOriginOn(".mat-menu-panel, .mat-mdc-menu-panel"),backdropClass:_e.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:_e.overlayPanelClass,scrollStrategy:this._scrollStrategy(),direction:this._dir})}_subscribeToPositions(_e,be){_e.setPositionClasses&&be.positionChanges.subscribe(pe=>{const Ze="start"===pe.connectionPair.overlayX?"after":"before",_t="top"===pe.connectionPair.overlayY?"below":"above";this._ngZone?this._ngZone.run(()=>_e.setPositionClasses(Ze,_t)):_e.setPositionClasses(Ze,_t)})}_setPosition(_e,be){let[pe,Ze]="before"===_e.xPosition?["end","start"]:["start","end"],[_t,at]="above"===_e.yPosition?["bottom","top"]:["top","bottom"],[pt,Xt]=[_t,at],[ye,ue]=[pe,Ze],Ie=0;if(this.triggersSubmenu()){if(ue=pe="before"===_e.xPosition?"start":"end",Ze=ye="end"===pe?"start":"end",this._parentMaterialMenu){if(null==this._parentInnerPadding){const He=this._parentMaterialMenu.items.first;this._parentInnerPadding=He?He._getHostElement().offsetTop:0}Ie="bottom"===_t?this._parentInnerPadding:-this._parentInnerPadding}}else _e.overlapTrigger||(pt="top"===_t?"bottom":"top",Xt="top"===at?"bottom":"top");be.withPositions([{originX:pe,originY:pt,overlayX:ye,overlayY:_t,offsetY:Ie},{originX:Ze,originY:pt,overlayX:ue,overlayY:_t,offsetY:Ie},{originX:pe,originY:Xt,overlayX:ye,overlayY:at,offsetY:-Ie},{originX:Ze,originY:Xt,overlayX:ue,overlayY:at,offsetY:-Ie}])}_menuClosingActions(){const _e=this._overlayRef.backdropClick(),be=this._overlayRef.detachments(),pe=this._parentMaterialMenu?this._parentMaterialMenu.closed:(0,f.of)(),Ze=this._parentMaterialMenu?this._parentMaterialMenu._hovered().pipe((0,R.p)(_t=>_t!==this._menuItemInstance),(0,R.p)(()=>this._menuOpen)):(0,f.of)();return(0,l.h)(_e,pe,Ze,be)}_handleMousedown(_e){(0,t._G)(_e)||(this._openedBy=0===_e.button?"mouse":void 0,this.triggersSubmenu()&&_e.preventDefault())}_handleKeydown(_e){const be=_e.keyCode;(be===w.Fm||be===w.t6)&&(this._openedBy="keyboard"),this.triggersSubmenu()&&(be===w.LE&&"ltr"===this.dir||be===w.UQ&&"rtl"===this.dir)&&(this._openedBy="keyboard",this.openMenu())}_handleClick(_e){this.triggersSubmenu()?(_e.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){!this.triggersSubmenu()||!this._parentMaterialMenu||(this._hoverSubscription=this._parentMaterialMenu._hovered().pipe((0,R.p)(_e=>_e===this._menuItemInstance&&!_e.disabled),(0,z.c)(0,I.$)).subscribe(()=>{this._openedBy="mouse",this.menu instanceof ze&&this.menu._isAnimating?this.menu._animationDone.pipe((0,y.s)(1),(0,z.c)(0,I.$),(0,F.Q)(this._parentMaterialMenu._hovered())).subscribe(()=>this.openMenu()):this.openMenu()}))}_getPortal(_e){return(!this._portal||this._portal.templateRef!==_e.templateRef)&&(this._portal=new j.VA(_e.templateRef,this._viewContainerRef)),this._portal}static#e=this.\u0275fac=function(be){return new(be||ke)(e.rXU(ee.hJ),e.rXU(e.aKT),e.rXU(e.c1b),e.rXU(qe),e.rXU(c,8),e.rXU(m,10),e.rXU(J.dS,8),e.rXU(t.FN),e.rXU(e.SKi))};static#t=this.\u0275dir=e.FsC({type:ke,selectors:[["","mat-menu-trigger-for",""],["","matMenuTriggerFor",""]],hostAttrs:[1,"mat-mdc-menu-trigger"],hostVars:3,hostBindings:function(be,pe){1&be&&e.bIt("click",function(_t){return pe._handleClick(_t)})("mousedown",function(_t){return pe._handleMousedown(_t)})("keydown",function(_t){return pe._handleKeydown(_t)}),2&be&&e.BMQ("aria-haspopup",pe.menu?"menu":null)("aria-expanded",pe.menuOpen)("aria-controls",pe.menuOpen?pe.menu.panelId:null)},inputs:{_deprecatedMatMenuTriggerFor:[0,"mat-menu-trigger-for","_deprecatedMatMenuTriggerFor"],menu:[0,"matMenuTriggerFor","menu"],menuData:[0,"matMenuTriggerData","menuData"],restoreFocus:[0,"matMenuTriggerRestoreFocus","restoreFocus"]},outputs:{menuOpened:"menuOpened",onMenuOpen:"onMenuOpen",menuClosed:"menuClosed",onMenuClose:"onMenuClose"},exportAs:["matMenuTrigger"],standalone:!0})}return ke})(),fe=(()=>{class ke{static#e=this.\u0275fac=function(be){return new(be||ke)};static#t=this.\u0275mod=e.$C({type:ke});static#i=this.\u0275inj=e.G2t({providers:[se],imports:[W.MD,$.pZ,$.yE,ee.z_,ge.Gj,$.yE]})}return ke})()},6695:(Qe,te,g)=>{"use strict";g.d(te,{Ou:()=>ae,iy:()=>ge,xX:()=>W});var e=g(4438),t=g(1413),w=g(2771),S=g(8834),l=g(2798),x=g(4823),f=g(6600),I=g(6467);function d(Me,Te){if(1&Me&&(e.j41(0,"mat-option",16),e.EFF(1),e.k0s()),2&Me){const de=Te.$implicit;e.Y8G("value",de),e.R7$(),e.SpI(" ",de," ")}}function T(Me,Te){if(1&Me){const de=e.RV6();e.j41(0,"mat-form-field",13)(1,"mat-select",15),e.bIt("selectionChange",function(n){e.eBV(de);const c=e.XpG(2);return e.Njj(c._changePageSize(n.value))}),e.Z7z(2,d,2,2,"mat-option",16,e.fX1),e.k0s()()}if(2&Me){const de=e.XpG(2);e.Y8G("appearance",de._formFieldAppearance)("color",de.color),e.R7$(),e.Y8G("value",de.pageSize)("disabled",de.disabled)("aria-labelledby",de._pageSizeLabelId)("panelClass",de.selectConfig.panelClass||"")("disableOptionCentering",de.selectConfig.disableOptionCentering),e.R7$(),e.Dyx(de._displayedPageSizeOptions)}}function y(Me,Te){if(1&Me&&(e.j41(0,"div",14),e.EFF(1),e.k0s()),2&Me){const de=e.XpG(2);e.R7$(),e.JRh(de.pageSize)}}function F(Me,Te){if(1&Me&&(e.j41(0,"div",2)(1,"div",12),e.EFF(2),e.k0s(),e.DNE(3,T,4,7,"mat-form-field",13)(4,y,2,1,"div",14),e.k0s()),2&Me){const de=e.XpG();e.R7$(),e.BMQ("id",de._pageSizeLabelId),e.R7$(),e.SpI(" ",de._intl.itemsPerPageLabel," "),e.R7$(),e.vxM(de._displayedPageSizeOptions.length>1?3:-1),e.R7$(),e.vxM(de._displayedPageSizeOptions.length<=1?4:-1)}}function R(Me,Te){if(1&Me){const de=e.RV6();e.j41(0,"button",17),e.bIt("click",function(){e.eBV(de);const n=e.XpG();return e.Njj(n.firstPage())}),e.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",18),e.k0s()()}if(2&Me){const de=e.XpG();e.Y8G("matTooltip",de._intl.firstPageLabel)("matTooltipDisabled",de._previousButtonsDisabled())("matTooltipPosition","above")("disabled",de._previousButtonsDisabled()),e.BMQ("aria-label",de._intl.firstPageLabel)}}function z(Me,Te){if(1&Me){const de=e.RV6();e.j41(0,"button",19),e.bIt("click",function(){e.eBV(de);const n=e.XpG();return e.Njj(n.lastPage())}),e.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",20),e.k0s()()}if(2&Me){const de=e.XpG();e.Y8G("matTooltip",de._intl.lastPageLabel)("matTooltipDisabled",de._nextButtonsDisabled())("matTooltipPosition","above")("disabled",de._nextButtonsDisabled()),e.BMQ("aria-label",de._intl.lastPageLabel)}}let W=(()=>{class Me{constructor(){this.changes=new t.B,this.itemsPerPageLabel="Items per page:",this.nextPageLabel="Next page",this.previousPageLabel="Previous page",this.firstPageLabel="First page",this.lastPageLabel="Last page",this.getRangeLabel=(de,D,n)=>{if(0==n||0==D)return`0 of ${n}`;const c=de*D;return`${c+1} \u2013 ${c<(n=Math.max(n,0))?Math.min(c+D,n):c+D} of ${n}`}}static#e=this.\u0275fac=function(D){return new(D||Me)};static#t=this.\u0275prov=e.jDH({token:Me,factory:Me.\u0275fac,providedIn:"root"})}return Me})();const j={provide:W,deps:[[new e.Xx1,new e.kdw,W]],useFactory:function $(Me){return Me||new W}},ee=new e.nKC("MAT_PAGINATOR_DEFAULT_OPTIONS");let ie=0,ge=(()=>{class Me{get pageIndex(){return this._pageIndex}set pageIndex(de){this._pageIndex=Math.max(de||0,0),this._changeDetectorRef.markForCheck()}get length(){return this._length}set length(de){this._length=de||0,this._changeDetectorRef.markForCheck()}get pageSize(){return this._pageSize}set pageSize(de){this._pageSize=Math.max(de||0,0),this._updateDisplayedPageSizeOptions()}get pageSizeOptions(){return this._pageSizeOptions}set pageSizeOptions(de){this._pageSizeOptions=(de||[]).map(D=>(0,e.Udg)(D,0)),this._updateDisplayedPageSizeOptions()}constructor(de,D,n){if(this._intl=de,this._changeDetectorRef=D,this._pageSizeLabelId="mat-paginator-page-size-label-"+ie++,this._isInitialized=!1,this._initializedStream=new w.m(1),this._pageIndex=0,this._length=0,this._pageSizeOptions=[],this.hidePageSize=!1,this.showFirstLastButtons=!1,this.selectConfig={},this.disabled=!1,this.page=new e.bkB,this.initialized=this._initializedStream,this._intlChanges=de.changes.subscribe(()=>this._changeDetectorRef.markForCheck()),n){const{pageSize:c,pageSizeOptions:m,hidePageSize:h,showFirstLastButtons:C}=n;null!=c&&(this._pageSize=c),null!=m&&(this._pageSizeOptions=m),null!=h&&(this.hidePageSize=h),null!=C&&(this.showFirstLastButtons=C)}this._formFieldAppearance=n?.formFieldAppearance||"outline"}ngOnInit(){this._isInitialized=!0,this._updateDisplayedPageSizeOptions(),this._initializedStream.next()}ngOnDestroy(){this._initializedStream.complete(),this._intlChanges.unsubscribe()}nextPage(){if(!this.hasNextPage())return;const de=this.pageIndex;this.pageIndex=this.pageIndex+1,this._emitPageEvent(de)}previousPage(){if(!this.hasPreviousPage())return;const de=this.pageIndex;this.pageIndex=this.pageIndex-1,this._emitPageEvent(de)}firstPage(){if(!this.hasPreviousPage())return;const de=this.pageIndex;this.pageIndex=0,this._emitPageEvent(de)}lastPage(){if(!this.hasNextPage())return;const de=this.pageIndex;this.pageIndex=this.getNumberOfPages()-1,this._emitPageEvent(de)}hasPreviousPage(){return this.pageIndex>=1&&0!=this.pageSize}hasNextPage(){const de=this.getNumberOfPages()-1;return this.pageIndexde-D),this._changeDetectorRef.markForCheck())}_emitPageEvent(de){this.page.emit({previousPageIndex:de,pageIndex:this.pageIndex,pageSize:this.pageSize,length:this.length})}static#e=this.\u0275fac=function(D){return new(D||Me)(e.rXU(W),e.rXU(e.gRc),e.rXU(ee,8))};static#t=this.\u0275cmp=e.VBU({type:Me,selectors:[["mat-paginator"]],hostAttrs:["role","group",1,"mat-mdc-paginator"],inputs:{color:"color",pageIndex:[2,"pageIndex","pageIndex",e.Udg],length:[2,"length","length",e.Udg],pageSize:[2,"pageSize","pageSize",e.Udg],pageSizeOptions:"pageSizeOptions",hidePageSize:[2,"hidePageSize","hidePageSize",e.L39],showFirstLastButtons:[2,"showFirstLastButtons","showFirstLastButtons",e.L39],selectConfig:"selectConfig",disabled:[2,"disabled","disabled",e.L39]},outputs:{page:"page"},exportAs:["matPaginator"],standalone:!0,features:[e.GFd,e.aNF],decls:14,vars:14,consts:[[1,"mat-mdc-paginator-outer-container"],[1,"mat-mdc-paginator-container"],[1,"mat-mdc-paginator-page-size"],[1,"mat-mdc-paginator-range-actions"],["aria-live","polite",1,"mat-mdc-paginator-range-label"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-previous",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["viewBox","0 0 24 24","focusable","false","aria-hidden","true",1,"mat-mdc-paginator-icon"],["d","M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-next",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],[1,"mat-mdc-paginator-page-size-label"],[1,"mat-mdc-paginator-page-size-select",3,"appearance","color"],[1,"mat-mdc-paginator-page-size-value"],["hideSingleSelectionIndicator","",3,"selectionChange","value","disabled","aria-labelledby","panelClass","disableOptionCentering"],[3,"value"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-first",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["d","M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"],["mat-icon-button","","type","button",1,"mat-mdc-paginator-navigation-last",3,"click","matTooltip","matTooltipDisabled","matTooltipPosition","disabled"],["d","M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"]],template:function(D,n){1&D&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,F,5,4,"div",2),e.j41(3,"div",3)(4,"div",4),e.EFF(5),e.k0s(),e.DNE(6,R,3,5,"button",5),e.j41(7,"button",6),e.bIt("click",function(){return n.previousPage()}),e.qSk(),e.j41(8,"svg",7),e.nrm(9,"path",8),e.k0s()(),e.joV(),e.j41(10,"button",9),e.bIt("click",function(){return n.nextPage()}),e.qSk(),e.j41(11,"svg",7),e.nrm(12,"path",10),e.k0s()(),e.DNE(13,z,3,5,"button",11),e.k0s()()()),2&D&&(e.R7$(2),e.vxM(n.hidePageSize?-1:2),e.R7$(3),e.SpI(" ",n._intl.getRangeLabel(n.pageIndex,n.pageSize,n.length)," "),e.R7$(),e.vxM(n.showFirstLastButtons?6:-1),e.R7$(),e.Y8G("matTooltip",n._intl.previousPageLabel)("matTooltipDisabled",n._previousButtonsDisabled())("matTooltipPosition","above")("disabled",n._previousButtonsDisabled()),e.BMQ("aria-label",n._intl.previousPageLabel),e.R7$(3),e.Y8G("matTooltip",n._intl.nextPageLabel)("matTooltipDisabled",n._nextButtonsDisabled())("matTooltipPosition","above")("disabled",n._nextButtonsDisabled()),e.BMQ("aria-label",n._intl.nextPageLabel),e.R7$(3),e.vxM(n.showFirstLastButtons?13:-1))},dependencies:[I.rl,l.VO,f.wT,S.iY,x.oV],styles:[".mat-mdc-paginator{display:block;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-paginator-container-text-color);background-color:var(--mat-paginator-container-background-color);font-family:var(--mat-paginator-container-text-font);line-height:var(--mat-paginator-container-text-line-height);font-size:var(--mat-paginator-container-text-size);font-weight:var(--mat-paginator-container-text-weight);letter-spacing:var(--mat-paginator-container-text-tracking);--mat-form-field-container-height:var(--mat-paginator-form-field-container-height);--mat-form-field-container-vertical-padding:var(--mat-paginator-form-field-container-vertical-padding)}.mat-mdc-paginator .mat-mdc-select-value{font-size:var(--mat-paginator-select-trigger-text-size)}.mat-mdc-paginator .mat-mdc-form-field-subscript-wrapper{display:none}.mat-mdc-paginator .mat-mdc-select{line-height:1.5}.mat-mdc-paginator-outer-container{display:flex}.mat-mdc-paginator-container{display:flex;align-items:center;justify-content:flex-end;padding:0 8px;flex-wrap:wrap;width:100%;min-height:var(--mat-paginator-container-size)}.mat-mdc-paginator-page-size{display:flex;align-items:baseline;margin-right:8px}[dir=rtl] .mat-mdc-paginator-page-size{margin-right:0;margin-left:8px}.mat-mdc-paginator-page-size-label{margin:0 4px}.mat-mdc-paginator-page-size-select{margin:0 4px;width:84px}.mat-mdc-paginator-range-label{margin:0 32px 0 24px}.mat-mdc-paginator-range-actions{display:flex;align-items:center}.mat-mdc-paginator-icon{display:inline-block;width:28px;fill:var(--mat-paginator-enabled-icon-color)}.mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon{fill:var(--mat-paginator-disabled-icon-color)}[dir=rtl] .mat-mdc-paginator-icon{transform:rotate(180deg)}.cdk-high-contrast-active .mat-mdc-icon-button[disabled] .mat-mdc-paginator-icon,.cdk-high-contrast-active .mat-mdc-paginator-icon{fill:currentColor;fill:CanvasText}.cdk-high-contrast-active .mat-mdc-paginator-range-actions .mat-mdc-icon-button{outline:solid 1px}"],encapsulation:2,changeDetection:0})}return Me})(),ae=(()=>{class Me{static#e=this.\u0275fac=function(D){return new(D||Me)};static#t=this.\u0275mod=e.$C({type:Me});static#i=this.\u0275inj=e.G2t({providers:[j],imports:[S.Hl,l.Ve,x.uc,ge]})}return Me})()},7575:(Qe,te,g)=>{"use strict";g.d(te,{HM:()=>I,PO:()=>T});var e=g(4438),w=(g(177),g(6600));function S(y,F){1&y&&e.nrm(0,"div",2)}const l=new e.nKC("MAT_PROGRESS_BAR_DEFAULT_OPTIONS");let I=(()=>{class y{constructor(R,z,W,$,j){this._elementRef=R,this._ngZone=z,this._changeDetectorRef=W,this._animationMode=$,this._isNoopAnimation=!1,this._defaultColor="primary",this._value=0,this._bufferValue=0,this.animationEnd=new e.bkB,this._mode="determinate",this._transitionendHandler=Q=>{0===this.animationEnd.observers.length||!Q.target||!Q.target.classList.contains("mdc-linear-progress__primary-bar")||("determinate"===this.mode||"buffer"===this.mode)&&this._ngZone.run(()=>this.animationEnd.next({value:this.value}))},this._isNoopAnimation="NoopAnimations"===$,j&&(j.color&&(this.color=this._defaultColor=j.color),this.mode=j.mode||this.mode)}get color(){return this._color||this._defaultColor}set color(R){this._color=R}get value(){return this._value}set value(R){this._value=d(R||0),this._changeDetectorRef.markForCheck()}get bufferValue(){return this._bufferValue||0}set bufferValue(R){this._bufferValue=d(R||0),this._changeDetectorRef.markForCheck()}get mode(){return this._mode}set mode(R){this._mode=R,this._changeDetectorRef.markForCheck()}ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{this._elementRef.nativeElement.addEventListener("transitionend",this._transitionendHandler)})}ngOnDestroy(){this._elementRef.nativeElement.removeEventListener("transitionend",this._transitionendHandler)}_getPrimaryBarTransform(){return`scaleX(${this._isIndeterminate()?1:this.value/100})`}_getBufferBarFlexBasis(){return`${"buffer"===this.mode?this.bufferValue:100}%`}_isIndeterminate(){return"indeterminate"===this.mode||"query"===this.mode}static#e=this.\u0275fac=function(z){return new(z||y)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(e.gRc),e.rXU(e.bc$,8),e.rXU(l,8))};static#t=this.\u0275cmp=e.VBU({type:y,selectors:[["mat-progress-bar"]],hostAttrs:["role","progressbar","aria-valuemin","0","aria-valuemax","100","tabindex","-1",1,"mat-mdc-progress-bar","mdc-linear-progress"],hostVars:10,hostBindings:function(z,W){2&z&&(e.BMQ("aria-valuenow",W._isIndeterminate()?null:W.value)("mode",W.mode),e.HbH("mat-"+W.color),e.AVh("_mat-animation-noopable",W._isNoopAnimation)("mdc-linear-progress--animation-ready",!W._isNoopAnimation)("mdc-linear-progress--indeterminate",W._isIndeterminate()))},inputs:{color:"color",value:[2,"value","value",e.Udg],bufferValue:[2,"bufferValue","bufferValue",e.Udg],mode:"mode"},outputs:{animationEnd:"animationEnd"},exportAs:["matProgressBar"],standalone:!0,features:[e.GFd,e.aNF],decls:7,vars:5,consts:[["aria-hidden","true",1,"mdc-linear-progress__buffer"],[1,"mdc-linear-progress__buffer-bar"],[1,"mdc-linear-progress__buffer-dots"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__primary-bar"],[1,"mdc-linear-progress__bar-inner"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__secondary-bar"]],template:function(z,W){1&z&&(e.j41(0,"div",0),e.nrm(1,"div",1),e.DNE(2,S,1,0,"div",2),e.k0s(),e.j41(3,"div",3),e.nrm(4,"span",4),e.k0s(),e.j41(5,"div",5),e.nrm(6,"span",4),e.k0s()),2&z&&(e.R7$(),e.xc7("flex-basis",W._getBufferBarFlexBasis()),e.R7$(),e.vxM("buffer"===W.mode?2:-1),e.R7$(),e.xc7("transform",W._getPrimaryBarTransform()))},styles:["@keyframes mdc-linear-progress-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(var(--mdc-linear-progress-primary-half))}100%{transform:translateX(var(--mdc-linear-progress-primary-full))}}@keyframes mdc-linear-progress-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mdc-linear-progress-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(var(--mdc-linear-progress-secondary-quarter))}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(var(--mdc-linear-progress-secondary-half))}100%{transform:translateX(var(--mdc-linear-progress-secondary-full))}}@keyframes mdc-linear-progress-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.205028, 0.057051, 0.57661, 0.453971);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.152313, 0.196432, 0.648374, 1.004315);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.257759, -0.003163, 0.211762, 1.38179);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mdc-linear-progress-primary-indeterminate-translate-reverse{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(var(--mdc-linear-progress-primary-half-neg))}100%{transform:translateX(var(--mdc-linear-progress-primary-full-neg))}}@keyframes mdc-linear-progress-secondary-indeterminate-translate-reverse{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(var(--mdc-linear-progress-secondary-quarter-neg))}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(var(--mdc-linear-progress-secondary-half-neg))}100%{transform:translateX(var(--mdc-linear-progress-secondary-full-neg))}}@keyframes mdc-linear-progress-buffering-reverse{from{transform:translateX(-10px)}}.mdc-linear-progress{position:relative;width:100%;transform:translateZ(0);outline:1px solid rgba(0,0,0,0);overflow-x:hidden;transition:opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}@media screen and (forced-colors: active){.mdc-linear-progress{outline-color:CanvasText}}.mdc-linear-progress__bar{position:absolute;top:0;bottom:0;margin:auto 0;width:100%;animation:none;transform-origin:top left;transition:transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-linear-progress__bar-inner{display:inline-block;position:absolute;width:100%;animation:none;border-top-style:solid}.mdc-linear-progress__buffer{display:flex;position:absolute;top:0;bottom:0;margin:auto 0;width:100%;overflow:hidden}.mdc-linear-progress__buffer-dots{background-repeat:repeat-x;flex:auto;transform:rotate(180deg);-webkit-mask-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='xMinYMin slice'%3E%3Ccircle cx='1' cy='1' r='1'/%3E%3C/svg%3E\");animation:mdc-linear-progress-buffering 250ms infinite linear}.mdc-linear-progress__buffer-bar{flex:0 1 100%;transition:flex-basis 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-linear-progress__primary-bar{transform:scaleX(0)}.mdc-linear-progress__secondary-bar{display:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__bar{transition:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{left:-145.166611%}.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{left:-54.888891%;display:block}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation:mdc-linear-progress-primary-indeterminate-translate 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-primary-indeterminate-scale 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation:mdc-linear-progress-secondary-indeterminate-translate 2s infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-secondary-indeterminate-scale 2s infinite linear}[dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__bar{right:0;-webkit-transform-origin:center right;transform-origin:center right}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation-name:mdc-linear-progress-primary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation-name:mdc-linear-progress-secondary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress:not([dir=ltr]) .mdc-linear-progress__buffer-dots,.mdc-linear-progress[dir=rtl]:not([dir=ltr]) .mdc-linear-progress__buffer-dots{animation:mdc-linear-progress-buffering-reverse 250ms infinite linear;transform:rotate(0)}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{right:-145.166611%;left:auto}[dir=rtl] .mdc-linear-progress:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar,.mdc-linear-progress[dir=rtl]:not([dir=ltr]).mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{right:-54.888891%;left:auto}.mdc-linear-progress--closed{opacity:0}.mdc-linear-progress--closed-animation-off .mdc-linear-progress__buffer-dots{animation:none}.mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar,.mdc-linear-progress--closed-animation-off.mdc-linear-progress--indeterminate .mdc-linear-progress__bar .mdc-linear-progress__bar-inner{animation:none}@keyframes mdc-linear-progress-buffering{from{transform:rotate(180deg) translateX(calc(var(--mdc-linear-progress-track-height) * -2.5))}}.mdc-linear-progress__bar-inner{border-color:var(--mdc-linear-progress-active-indicator-color)}.mdc-linear-progress__buffer-dots{background-color:var(--mdc-linear-progress-track-color)}@media(forced-colors: active){.mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress__buffer-dots{background-color:rgba(0,0,0,0);background-image:url(\"data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(244, 67, 54, 0.25)'/%3E%3C/svg%3E\")}}.mdc-linear-progress__buffer-bar{background-color:var(--mdc-linear-progress-track-color)}.mdc-linear-progress{height:max(var(--mdc-linear-progress-track-height), var(--mdc-linear-progress-active-indicator-height))}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress{height:4px}}.mdc-linear-progress__bar{height:var(--mdc-linear-progress-active-indicator-height)}.mdc-linear-progress__bar-inner{border-top-width:var(--mdc-linear-progress-active-indicator-height)}.mdc-linear-progress__buffer{height:var(--mdc-linear-progress-track-height)}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.mdc-linear-progress__buffer-dots{background-size:10px var(--mdc-linear-progress-track-height)}}.mdc-linear-progress__buffer{border-radius:var(--mdc-linear-progress-track-shape)}.mat-mdc-progress-bar{display:block;text-align:start;--mdc-linear-progress-primary-half: 83.67142%;--mdc-linear-progress-primary-full: 200.611057%;--mdc-linear-progress-secondary-quarter: 37.651913%;--mdc-linear-progress-secondary-half: 84.386165%;--mdc-linear-progress-secondary-full: 160.277782%;--mdc-linear-progress-primary-half-neg: -83.67142%;--mdc-linear-progress-primary-full-neg: -200.611057%;--mdc-linear-progress-secondary-quarter-neg: -37.651913%;--mdc-linear-progress-secondary-half-neg: -84.386165%;--mdc-linear-progress-secondary-full-neg: -160.277782%}.mat-mdc-progress-bar[mode=query]{transform:scaleX(-1)}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-dots,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__secondary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__bar-inner.mdc-linear-progress__bar-inner{animation:none}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-bar{transition:transform 1ms}"],encapsulation:2,changeDetection:0})}return y})();function d(y,F=0,R=100){return Math.max(F,Math.min(R,y))}let T=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275mod=e.$C({type:y});static#i=this.\u0275inj=e.G2t({imports:[w.yE]})}return y})()},9183:(Qe,te,g)=>{"use strict";g.d(te,{D6:()=>F,LG:()=>T});var e=g(4438),t=g(177),w=g(6600);const S=["determinateSpinner"];function l(R,z){if(1&R&&(e.qSk(),e.j41(0,"svg",11),e.nrm(1,"circle",12),e.k0s()),2&R){const W=e.XpG();e.BMQ("viewBox",W._viewBox()),e.R7$(),e.xc7("stroke-dasharray",W._strokeCircumference(),"px")("stroke-dashoffset",W._strokeCircumference()/2,"px")("stroke-width",W._circleStrokeWidth(),"%"),e.BMQ("r",W._circleRadius())}}const x=new e.nKC("mat-progress-spinner-default-options",{providedIn:"root",factory:function f(){return{diameter:I}}}),I=100;let T=(()=>{class R{get color(){return this._color||this._defaultColor}set color(W){this._color=W}constructor(W,$,j){this._elementRef=W,this._defaultColor="primary",this._value=0,this._diameter=I,this._noopAnimations="NoopAnimations"===$&&!!j&&!j._forceAnimations,this.mode="mat-spinner"===W.nativeElement.nodeName.toLowerCase()?"indeterminate":"determinate",j&&(j.color&&(this.color=this._defaultColor=j.color),j.diameter&&(this.diameter=j.diameter),j.strokeWidth&&(this.strokeWidth=j.strokeWidth))}get value(){return"determinate"===this.mode?this._value:0}set value(W){this._value=Math.max(0,Math.min(100,W||0))}get diameter(){return this._diameter}set diameter(W){this._diameter=W||0}get strokeWidth(){return this._strokeWidth??this.diameter/10}set strokeWidth(W){this._strokeWidth=W||0}_circleRadius(){return(this.diameter-10)/2}_viewBox(){const W=2*this._circleRadius()+this.strokeWidth;return`0 0 ${W} ${W}`}_strokeCircumference(){return 2*Math.PI*this._circleRadius()}_strokeDashOffset(){return"determinate"===this.mode?this._strokeCircumference()*(100-this._value)/100:null}_circleStrokeWidth(){return this.strokeWidth/this.diameter*100}static#e=this.\u0275fac=function($){return new($||R)(e.rXU(e.aKT),e.rXU(e.bc$,8),e.rXU(x))};static#t=this.\u0275cmp=e.VBU({type:R,selectors:[["mat-progress-spinner"],["mat-spinner"]],viewQuery:function($,j){if(1&$&&e.GBs(S,5),2&$){let Q;e.mGM(Q=e.lsd())&&(j._determinateCircle=Q.first)}},hostAttrs:["role","progressbar","tabindex","-1",1,"mat-mdc-progress-spinner","mdc-circular-progress"],hostVars:18,hostBindings:function($,j){2&$&&(e.BMQ("aria-valuemin",0)("aria-valuemax",100)("aria-valuenow","determinate"===j.mode?j.value:null)("mode",j.mode),e.HbH("mat-"+j.color),e.xc7("width",j.diameter,"px")("height",j.diameter,"px")("--mdc-circular-progress-size",j.diameter+"px")("--mdc-circular-progress-active-indicator-width",j.diameter+"px"),e.AVh("_mat-animation-noopable",j._noopAnimations)("mdc-circular-progress--indeterminate","indeterminate"===j.mode))},inputs:{color:"color",mode:"mode",value:[2,"value","value",e.Udg],diameter:[2,"diameter","diameter",e.Udg],strokeWidth:[2,"strokeWidth","strokeWidth",e.Udg]},exportAs:["matProgressSpinner"],standalone:!0,features:[e.GFd,e.aNF],decls:14,vars:11,consts:[["circle",""],["determinateSpinner",""],["aria-hidden","true",1,"mdc-circular-progress__determinate-container"],["xmlns","http://www.w3.org/2000/svg","focusable","false",1,"mdc-circular-progress__determinate-circle-graphic"],["cx","50%","cy","50%",1,"mdc-circular-progress__determinate-circle"],["aria-hidden","true",1,"mdc-circular-progress__indeterminate-container"],[1,"mdc-circular-progress__spinner-layer"],[1,"mdc-circular-progress__circle-clipper","mdc-circular-progress__circle-left"],[3,"ngTemplateOutlet"],[1,"mdc-circular-progress__gap-patch"],[1,"mdc-circular-progress__circle-clipper","mdc-circular-progress__circle-right"],["xmlns","http://www.w3.org/2000/svg","focusable","false",1,"mdc-circular-progress__indeterminate-circle-graphic"],["cx","50%","cy","50%"]],template:function($,j){if(1&$&&(e.DNE(0,l,2,8,"ng-template",null,0,e.C5r),e.j41(2,"div",2,1),e.qSk(),e.j41(4,"svg",3),e.nrm(5,"circle",4),e.k0s()(),e.joV(),e.j41(6,"div",5)(7,"div",6)(8,"div",7),e.eu8(9,8),e.k0s(),e.j41(10,"div",9),e.eu8(11,8),e.k0s(),e.j41(12,"div",10),e.eu8(13,8),e.k0s()()()),2&$){const Q=e.sdS(1);e.R7$(4),e.BMQ("viewBox",j._viewBox()),e.R7$(),e.xc7("stroke-dasharray",j._strokeCircumference(),"px")("stroke-dashoffset",j._strokeDashOffset(),"px")("stroke-width",j._circleStrokeWidth(),"%"),e.BMQ("r",j._circleRadius()),e.R7$(4),e.Y8G("ngTemplateOutlet",Q),e.R7$(2),e.Y8G("ngTemplateOutlet",Q),e.R7$(2),e.Y8G("ngTemplateOutlet",Q)}},dependencies:[t.T3],styles:["@keyframes mdc-circular-progress-container-rotate{to{transform:rotate(360deg)}}@keyframes mdc-circular-progress-spinner-layer-rotate{12.5%{transform:rotate(135deg)}25%{transform:rotate(270deg)}37.5%{transform:rotate(405deg)}50%{transform:rotate(540deg)}62.5%{transform:rotate(675deg)}75%{transform:rotate(810deg)}87.5%{transform:rotate(945deg)}100%{transform:rotate(1080deg)}}@keyframes mdc-circular-progress-color-1-fade-in-out{from{opacity:.99}25%{opacity:.99}26%{opacity:0}89%{opacity:0}90%{opacity:.99}to{opacity:.99}}@keyframes mdc-circular-progress-color-2-fade-in-out{from{opacity:0}15%{opacity:0}25%{opacity:.99}50%{opacity:.99}51%{opacity:0}to{opacity:0}}@keyframes mdc-circular-progress-color-3-fade-in-out{from{opacity:0}40%{opacity:0}50%{opacity:.99}75%{opacity:.99}76%{opacity:0}to{opacity:0}}@keyframes mdc-circular-progress-color-4-fade-in-out{from{opacity:0}65%{opacity:0}75%{opacity:.99}90%{opacity:.99}to{opacity:0}}@keyframes mdc-circular-progress-left-spin{from{transform:rotate(265deg)}50%{transform:rotate(130deg)}to{transform:rotate(265deg)}}@keyframes mdc-circular-progress-right-spin{from{transform:rotate(-265deg)}50%{transform:rotate(-130deg)}to{transform:rotate(-265deg)}}.mdc-circular-progress{display:inline-flex;position:relative;direction:ltr;line-height:0;transition:opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-circular-progress__determinate-container,.mdc-circular-progress__indeterminate-circle-graphic,.mdc-circular-progress__indeterminate-container,.mdc-circular-progress__spinner-layer{position:absolute;width:100%;height:100%}.mdc-circular-progress__determinate-container{transform:rotate(-90deg)}.mdc-circular-progress__indeterminate-container{font-size:0;letter-spacing:0;white-space:nowrap;opacity:0}.mdc-circular-progress__determinate-circle-graphic,.mdc-circular-progress__indeterminate-circle-graphic{fill:rgba(0,0,0,0)}.mdc-circular-progress__determinate-circle{transition:stroke-dashoffset 500ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-circular-progress__gap-patch{position:absolute;top:0;left:47.5%;box-sizing:border-box;width:5%;height:100%;overflow:hidden}.mdc-circular-progress__gap-patch .mdc-circular-progress__indeterminate-circle-graphic{left:-900%;width:2000%;transform:rotate(180deg)}.mdc-circular-progress__circle-clipper{display:inline-flex;position:relative;width:50%;height:100%;overflow:hidden}.mdc-circular-progress__circle-clipper .mdc-circular-progress__indeterminate-circle-graphic{width:200%}.mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{left:-100%}.mdc-circular-progress--indeterminate .mdc-circular-progress__determinate-container{opacity:0}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{opacity:1}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{animation:mdc-circular-progress-container-rotate 1568.2352941176ms linear infinite}.mdc-circular-progress--indeterminate .mdc-circular-progress__spinner-layer{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-1{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-1-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-2{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-2-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-3{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-3-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__color-4{animation:mdc-circular-progress-spinner-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both,mdc-circular-progress-color-4-fade-in-out 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-left .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--closed{opacity:0}.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:var(--mdc-circular-progress-active-indicator-color)}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mat-mdc-progress-spinner circle{stroke-width:var(--mdc-circular-progress-active-indicator-width)}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-1 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-2 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-3 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}@media screen and (forced-colors: active),(-ms-high-contrast: active){.mat-mdc-progress-spinner .mdc-circular-progress--four-color .mdc-circular-progress__color-4 .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mat-mdc-progress-spinner .mdc-circular-progress{width:var(--mdc-circular-progress-size) !important;height:var(--mdc-circular-progress-size) !important}.mat-mdc-progress-spinner{display:block;overflow:hidden;line-height:0}.mat-mdc-progress-spinner._mat-animation-noopable,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__determinate-circle{transition:none}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-circle-graphic,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__spinner-layer,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container{animation:none}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container circle{stroke-dasharray:0 !important}.cdk-high-contrast-active .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic,.cdk-high-contrast-active .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle{stroke:currentColor;stroke:CanvasText}"],encapsulation:2,changeDetection:0})}return R})(),F=(()=>{class R{static#e=this.\u0275fac=function($){return new($||R)};static#t=this.\u0275mod=e.$C({type:R});static#i=this.\u0275inj=e.G2t({imports:[t.MD,w.yE]})}return R})()},5951:(Qe,te,g)=>{"use strict";g.d(te,{VT:()=>$,Wk:()=>Q,_g:()=>j});var e=g(4438),t=g(6600),w=g(8617),S=g(5024),l=g(9417),x=g(177);const f=["input"],I=["formField"],d=["*"];let T=0;class y{constructor(ee,ie){this.source=ee,this.value=ie}}const F={provide:l.kq,useExisting:(0,e.Rfq)(()=>$),multi:!0},R=new e.nKC("MatRadioGroup"),z=new e.nKC("mat-radio-default-options",{providedIn:"root",factory:function W(){return{color:"accent"}}});let $=(()=>{class J{get name(){return this._name}set name(ie){this._name=ie,this._updateRadioButtonNames()}get labelPosition(){return this._labelPosition}set labelPosition(ie){this._labelPosition="before"===ie?"before":"after",this._markRadiosForCheck()}get value(){return this._value}set value(ie){this._value!==ie&&(this._value=ie,this._updateSelectedRadioFromValue(),this._checkSelectedRadioButton())}_checkSelectedRadioButton(){this._selected&&!this._selected.checked&&(this._selected.checked=!0)}get selected(){return this._selected}set selected(ie){this._selected=ie,this.value=ie?ie.value:null,this._checkSelectedRadioButton()}get disabled(){return this._disabled}set disabled(ie){this._disabled=ie,this._markRadiosForCheck()}get required(){return this._required}set required(ie){this._required=ie,this._markRadiosForCheck()}constructor(ie){this._changeDetector=ie,this._value=null,this._name="mat-radio-group-"+T++,this._selected=null,this._isInitialized=!1,this._labelPosition="after",this._disabled=!1,this._required=!1,this._controlValueAccessorChangeFn=()=>{},this.onTouched=()=>{},this.change=new e.bkB}ngAfterContentInit(){this._isInitialized=!0,this._buttonChanges=this._radios.changes.subscribe(()=>{this.selected&&!this._radios.find(ie=>ie===this.selected)&&(this._selected=null)})}ngOnDestroy(){this._buttonChanges?.unsubscribe()}_touch(){this.onTouched&&this.onTouched()}_updateRadioButtonNames(){this._radios&&this._radios.forEach(ie=>{ie.name=this.name,ie._markForCheck()})}_updateSelectedRadioFromValue(){this._radios&&(null===this._selected||this._selected.value!==this._value)&&(this._selected=null,this._radios.forEach(ge=>{ge.checked=this.value===ge.value,ge.checked&&(this._selected=ge)}))}_emitChangeEvent(){this._isInitialized&&this.change.emit(new y(this._selected,this._value))}_markRadiosForCheck(){this._radios&&this._radios.forEach(ie=>ie._markForCheck())}writeValue(ie){this.value=ie,this._changeDetector.markForCheck()}registerOnChange(ie){this._controlValueAccessorChangeFn=ie}registerOnTouched(ie){this.onTouched=ie}setDisabledState(ie){this.disabled=ie,this._changeDetector.markForCheck()}static#e=this.\u0275fac=function(ge){return new(ge||J)(e.rXU(e.gRc))};static#t=this.\u0275dir=e.FsC({type:J,selectors:[["mat-radio-group"]],contentQueries:function(ge,ae,Me){if(1&ge&&e.wni(Me,j,5),2&ge){let Te;e.mGM(Te=e.lsd())&&(ae._radios=Te)}},hostAttrs:["role","radiogroup",1,"mat-mdc-radio-group"],inputs:{color:"color",name:"name",labelPosition:"labelPosition",value:"value",selected:"selected",disabled:[2,"disabled","disabled",e.L39],required:[2,"required","required",e.L39]},outputs:{change:"change"},exportAs:["matRadioGroup"],standalone:!0,features:[e.Jv_([F,{provide:R,useExisting:J}]),e.GFd]})}return J})(),j=(()=>{class J{get checked(){return this._checked}set checked(ie){this._checked!==ie&&(this._checked=ie,ie&&this.radioGroup&&this.radioGroup.value!==this.value?this.radioGroup.selected=this:!ie&&this.radioGroup&&this.radioGroup.value===this.value&&(this.radioGroup.selected=null),ie&&this._radioDispatcher.notify(this.id,this.name),this._changeDetector.markForCheck())}get value(){return this._value}set value(ie){this._value!==ie&&(this._value=ie,null!==this.radioGroup&&(this.checked||(this.checked=this.radioGroup.value===ie),this.checked&&(this.radioGroup.selected=this)))}get labelPosition(){return this._labelPosition||this.radioGroup&&this.radioGroup.labelPosition||"after"}set labelPosition(ie){this._labelPosition=ie}get disabled(){return this._disabled||null!==this.radioGroup&&this.radioGroup.disabled}set disabled(ie){this._setDisabled(ie)}get required(){return this._required||this.radioGroup&&this.radioGroup.required}set required(ie){this._required=ie}get color(){return this._color||this.radioGroup&&this.radioGroup.color||this._providerOverride&&this._providerOverride.color||"accent"}set color(ie){this._color=ie}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(ie,ge,ae,Me,Te,de,D,n){this._elementRef=ge,this._changeDetector=ae,this._focusMonitor=Me,this._radioDispatcher=Te,this._providerOverride=D,this._uniqueId="mat-radio-"+ ++T,this.id=this._uniqueId,this.disableRipple=!1,this.tabIndex=0,this.change=new e.bkB,this._checked=!1,this._value=null,this._removeUniqueSelectionListener=()=>{},this.radioGroup=ie,this._noopAnimations="NoopAnimations"===de,n&&(this.tabIndex=(0,e.Udg)(n,0))}focus(ie,ge){ge?this._focusMonitor.focusVia(this._inputElement,ge,ie):this._inputElement.nativeElement.focus(ie)}_markForCheck(){this._changeDetector.markForCheck()}ngOnInit(){this.radioGroup&&(this.checked=this.radioGroup.value===this._value,this.checked&&(this.radioGroup.selected=this),this.name=this.radioGroup.name),this._removeUniqueSelectionListener=this._radioDispatcher.listen((ie,ge)=>{ie!==this.id&&ge===this.name&&(this.checked=!1)})}ngDoCheck(){this._updateTabIndex()}ngAfterViewInit(){this._updateTabIndex(),this._focusMonitor.monitor(this._elementRef,!0).subscribe(ie=>{!ie&&this.radioGroup&&this.radioGroup._touch()})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._removeUniqueSelectionListener()}_emitChangeEvent(){this.change.emit(new y(this,this._value))}_isRippleDisabled(){return this.disableRipple||this.disabled}_onInputClick(ie){ie.stopPropagation()}_onInputInteraction(ie){if(ie.stopPropagation(),!this.checked&&!this.disabled){const ge=this.radioGroup&&this.value!==this.radioGroup.value;this.checked=!0,this._emitChangeEvent(),this.radioGroup&&(this.radioGroup._controlValueAccessorChangeFn(this.value),ge&&this.radioGroup._emitChangeEvent())}}_onTouchTargetClick(ie){this._onInputInteraction(ie),this.disabled||this._inputElement.nativeElement.focus()}_setDisabled(ie){this._disabled!==ie&&(this._disabled=ie,this._changeDetector.markForCheck())}_updateTabIndex(){const ie=this.radioGroup;let ge;if(ge=ie&&ie.selected&&!this.disabled?ie.selected===this?this.tabIndex:-1:this.tabIndex,ge!==this._previousTabIndex){const ae=this._inputElement?.nativeElement;ae&&(ae.setAttribute("tabindex",ge+""),this._previousTabIndex=ge)}}static#e=this.\u0275fac=function(ge){return new(ge||J)(e.rXU(R,8),e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(w.FN),e.rXU(S.zP),e.rXU(e.bc$,8),e.rXU(z,8),e.kS0("tabindex"))};static#t=this.\u0275cmp=e.VBU({type:J,selectors:[["mat-radio-button"]],viewQuery:function(ge,ae){if(1&ge&&(e.GBs(f,5),e.GBs(I,7,e.aKT)),2&ge){let Me;e.mGM(Me=e.lsd())&&(ae._inputElement=Me.first),e.mGM(Me=e.lsd())&&(ae._rippleTrigger=Me.first)}},hostAttrs:[1,"mat-mdc-radio-button"],hostVars:15,hostBindings:function(ge,ae){1&ge&&e.bIt("focus",function(){return ae._inputElement.nativeElement.focus()}),2&ge&&(e.BMQ("id",ae.id)("tabindex",null)("aria-label",null)("aria-labelledby",null)("aria-describedby",null),e.AVh("mat-primary","primary"===ae.color)("mat-accent","accent"===ae.color)("mat-warn","warn"===ae.color)("mat-mdc-radio-checked",ae.checked)("_mat-animation-noopable",ae._noopAnimations))},inputs:{id:"id",name:"name",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",ie=>null==ie?0:(0,e.Udg)(ie)],checked:[2,"checked","checked",e.L39],value:"value",labelPosition:"labelPosition",disabled:[2,"disabled","disabled",e.L39],required:[2,"required","required",e.L39],color:"color"},outputs:{change:"change"},exportAs:["matRadioButton"],standalone:!0,features:[e.GFd,e.aNF],ngContentSelectors:d,decls:13,vars:16,consts:[["formField",""],["input",""],["mat-internal-form-field","",3,"labelPosition"],[1,"mdc-radio"],[1,"mat-mdc-radio-touch-target",3,"click"],["type","radio",1,"mdc-radio__native-control",3,"change","id","checked","disabled","required"],[1,"mdc-radio__background"],[1,"mdc-radio__outer-circle"],[1,"mdc-radio__inner-circle"],["mat-ripple","",1,"mat-radio-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mat-ripple-element","mat-radio-persistent-ripple"],[1,"mdc-label",3,"for"]],template:function(ge,ae){if(1&ge){const Me=e.RV6();e.NAR(),e.j41(0,"div",2,0)(2,"div",3)(3,"div",4),e.bIt("click",function(de){return e.eBV(Me),e.Njj(ae._onTouchTargetClick(de))}),e.k0s(),e.j41(4,"input",5,1),e.bIt("change",function(de){return e.eBV(Me),e.Njj(ae._onInputInteraction(de))}),e.k0s(),e.j41(6,"div",6),e.nrm(7,"div",7)(8,"div",8),e.k0s(),e.j41(9,"div",9),e.nrm(10,"div",10),e.k0s()(),e.j41(11,"label",11),e.SdG(12),e.k0s()()}2&ge&&(e.Y8G("labelPosition",ae.labelPosition),e.R7$(2),e.AVh("mdc-radio--disabled",ae.disabled),e.R7$(2),e.Y8G("id",ae.inputId)("checked",ae.checked)("disabled",ae.disabled)("required",ae.required),e.BMQ("name",ae.name)("value",ae.value)("aria-label",ae.ariaLabel)("aria-labelledby",ae.ariaLabelledby)("aria-describedby",ae.ariaDescribedby),e.R7$(5),e.Y8G("matRippleTrigger",ae._rippleTrigger.nativeElement)("matRippleDisabled",ae._isRippleDisabled())("matRippleCentered",!0),e.R7$(2),e.Y8G("for",ae.inputId))},dependencies:[t.r6,t.tO],styles:['.mdc-radio{display:inline-block;position:relative;flex:0 0 auto;box-sizing:content-box;width:20px;height:20px;cursor:pointer;will-change:opacity,transform,border-color,color}.mdc-radio[hidden]{display:none}.mdc-radio__background{display:inline-block;position:relative;box-sizing:border-box;width:20px;height:20px}.mdc-radio__background::before{position:absolute;transform:scale(0, 0);border-radius:50%;opacity:0;pointer-events:none;content:"";transition:opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1),transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__outer-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;border-width:2px;border-style:solid;border-radius:50%;transition:border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__inner-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;transform:scale(0, 0);border-width:10px;border-style:solid;border-radius:50%;transition:transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1),border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-radio__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit;z-index:1}.mdc-radio--touch{margin-top:4px;margin-bottom:4px;margin-right:4px;margin-left:4px}.mdc-radio--touch .mdc-radio__native-control{top:calc((40px - 48px) / 2);right:calc((40px - 48px) / 2);left:calc((40px - 48px) / 2);width:48px;height:48px}.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring{pointer-events:none;border:2px solid rgba(0,0,0,0);border-radius:6px;box-sizing:content-box;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:100%;width:100%}@media screen and (forced-colors: active){.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring{border-color:CanvasText}}.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring::after,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring::after{content:"";border:2px solid rgba(0,0,0,0);border-radius:8px;display:block;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);height:calc(100% + 4px);width:calc(100% + 4px)}@media screen and (forced-colors: active){.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__focus-ring::after,.mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__focus-ring::after{border-color:CanvasText}}.mdc-radio__native-control:checked+.mdc-radio__background,.mdc-radio__native-control:disabled+.mdc-radio__background{transition:opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__outer-circle{transition:border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__inner-circle,.mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{transition:transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1),border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio--disabled{cursor:default;pointer-events:none}.mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__inner-circle{transform:scale(0.5);transition:transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1),border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-radio__native-control:disabled+.mdc-radio__background,[aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background{cursor:default}.mdc-radio__native-control:focus+.mdc-radio__background::before{transform:scale(1);opacity:.12;transition:opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-radio-button .mdc-radio{padding:calc((var(--mdc-radio-state-layer-size) - 20px) / 2)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-selected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-disabled-selected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:checked+.mdc-radio__background .mdc-radio__outer-circle{opacity:var(--mdc-radio-disabled-selected-icon-opacity)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled+.mdc-radio__background .mdc-radio__inner-circle{opacity:var(--mdc-radio-disabled-selected-icon-opacity)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-disabled-unselected-icon-color)}.mat-mdc-radio-button .mdc-radio [aria-disabled=true] .mdc-radio__native-control:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{opacity:var(--mdc-radio-disabled-unselected-icon-opacity)}.mat-mdc-radio-button .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-focus-icon-color)}.mat-mdc-radio-button .mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio:not(.mdc-ripple-upgraded):focus .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-focus-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled:checked+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-selected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled+.mdc-radio__background .mdc-radio__inner-circle{border-color:var(--mdc-radio-selected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-hover-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-icon-color)}.mat-mdc-radio-button .mdc-radio:not(:disabled):active .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-pressed-icon-color)}.mat-mdc-radio-button .mdc-radio .mdc-radio__background::before{top:calc(-1 * (var(--mdc-radio-state-layer-size) - 20px) / 2);left:calc(-1 * (var(--mdc-radio-state-layer-size) - 20px) / 2);width:var(--mdc-radio-state-layer-size);height:var(--mdc-radio-state-layer-size)}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control{top:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);right:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);left:calc((var(--mdc-radio-state-layer-size) - var(--mdc-radio-state-layer-size)) / 2);width:var(--mdc-radio-state-layer-size);height:var(--mdc-radio-state-layer-size)}.mat-mdc-radio-button .mdc-radio .mdc-radio__background::before{background-color:var(--mat-radio-ripple-color)}.mat-mdc-radio-button .mdc-radio:hover .mdc-radio__native-control:not([disabled]):not(:focus)~.mdc-radio__background::before{opacity:.04;transform:scale(1)}.mat-mdc-radio-button.mat-mdc-radio-checked .mdc-radio__background::before{background-color:var(--mat-radio-checked-ripple-color)}.mat-mdc-radio-button.mat-mdc-radio-checked .mat-ripple-element{background-color:var(--mat-radio-checked-ripple-color)}.mat-mdc-radio-button .mdc-radio--disabled+label{color:var(--mat-radio-disabled-label-color)}.mat-mdc-radio-button .mat-radio-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:50%}.mat-mdc-radio-button .mat-radio-ripple .mat-ripple-element{opacity:.14}.mat-mdc-radio-button .mat-radio-ripple::before{border-radius:50%}.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__background::before,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__outer-circle,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__inner-circle{transition:none !important}.mat-mdc-radio-button .mdc-radio .mdc-radio__native-control:focus:enabled:not(:checked)~.mdc-radio__background .mdc-radio__outer-circle{border-color:var(--mdc-radio-unselected-focus-icon-color, black)}.mat-mdc-radio-button.cdk-focused .mat-mdc-focus-indicator::before{content:""}.mat-mdc-radio-touch-target{position:absolute;top:50%;height:48px;left:50%;width:48px;transform:translate(-50%, -50%);display:var(--mat-radio-touch-target-display)}[dir=rtl] .mat-mdc-radio-touch-target{left:0;right:50%;transform:translate(50%, -50%)}'],encapsulation:2,changeDetection:0})}return J})(),Q=(()=>{class J{static#e=this.\u0275fac=function(ge){return new(ge||J)};static#t=this.\u0275mod=e.$C({type:J});static#i=this.\u0275inj=e.G2t({imports:[t.yE,x.MD,t.pZ,j,t.yE]})}return J})()},2798:(Qe,te,g)=>{"use strict";g.d(te,{$2:()=>Ke,JO:()=>N,VO:()=>qe,Ve:()=>se});var e=g(6969),t=g(177),w=g(4438),S=g(6600),l=g(6467),x=g(5542),f=g(8617),I=g(8203),d=g(5024),T=g(7336),y=g(9417),F=g(1413),R=g(9030),z=g(7786),W=g(9172),$=g(5558),j=g(5964),Q=g(6354),J=g(3294),ee=g(6977),ie=g(6697),ge=g(9969);const ae=["trigger"],Me=["panel"],Te=[[["mat-select-trigger"]],"*"],de=["mat-select-trigger","*"];function D(X,me){if(1&X&&(w.j41(0,"span",4),w.EFF(1),w.k0s()),2&X){const ce=w.XpG();w.R7$(),w.JRh(ce.placeholder)}}function n(X,me){1&X&&w.SdG(0)}function c(X,me){if(1&X&&(w.j41(0,"span",11),w.EFF(1),w.k0s()),2&X){const ce=w.XpG(2);w.R7$(),w.JRh(ce.triggerValue)}}function m(X,me){if(1&X&&(w.j41(0,"span",5),w.DNE(1,n,1,0)(2,c,2,1,"span",11),w.k0s()),2&X){const ce=w.XpG();w.R7$(),w.vxM(ce.customTrigger?1:2)}}function h(X,me){if(1&X){const ce=w.RV6();w.j41(0,"div",12,1),w.bIt("@transformPanel.done",function(ke){w.eBV(ce);const mt=w.XpG();return w.Njj(mt._panelDoneAnimatingStream.next(ke.toState))})("keydown",function(ke){w.eBV(ce);const mt=w.XpG();return w.Njj(mt._handleKeydown(ke))}),w.SdG(2,1),w.k0s()}if(2&X){const ce=w.XpG();w.ZvI("mat-mdc-select-panel mdc-menu-surface mdc-menu-surface--open ",ce._getPanelTheme(),""),w.Y8G("ngClass",ce.panelClass)("@transformPanel","showing"),w.BMQ("id",ce.id+"-panel")("aria-multiselectable",ce.multiple)("aria-label",ce.ariaLabel||null)("aria-labelledby",ce._getPanelAriaLabelledby())}}const C={transformPanelWrap:(0,ge.hZ)("transformPanelWrap",[(0,ge.kY)("* => void",(0,ge.P)("@transformPanel",[(0,ge.MA)()],{optional:!0}))]),transformPanel:(0,ge.hZ)("transformPanel",[(0,ge.wk)("void",(0,ge.iF)({opacity:0,transform:"scale(1, 0.8)"})),(0,ge.kY)("void => showing",(0,ge.i0)("120ms cubic-bezier(0, 0, 0.2, 1)",(0,ge.iF)({opacity:1,transform:"scale(1, 1)"}))),(0,ge.kY)("* => void",(0,ge.i0)("100ms linear",(0,ge.iF)({opacity:0})))])};let r=0;const v=new w.nKC("mat-select-scroll-strategy",{providedIn:"root",factory:()=>{const X=(0,w.WQX)(e.hJ);return()=>X.scrollStrategies.reposition()}}),N=new w.nKC("MAT_SELECT_CONFIG"),ne={provide:v,deps:[e.hJ],useFactory:function V(X){return()=>X.scrollStrategies.reposition()}},Ee=new w.nKC("MatSelectTrigger");class ze{constructor(me,ce){this.source=me,this.value=ce}}let qe=(()=>{class X{_scrollOptionIntoView(ce){const fe=this.options.toArray()[ce];if(fe){const ke=this.panel.nativeElement,mt=(0,S.jb)(ce,this.options,this.optionGroups),_e=fe._getHostElement();ke.scrollTop=0===ce&&1===mt?0:(0,S.TL)(_e.offsetTop,_e.offsetHeight,ke.scrollTop,ke.offsetHeight)}}_positioningSettled(){this._scrollOptionIntoView(this._keyManager.activeItemIndex||0)}_getChangeEvent(ce){return new ze(this,ce)}get focused(){return this._focused||this._panelOpen}get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(ce){this._hideSingleSelectionIndicator=ce,this._syncParentProperties()}get placeholder(){return this._placeholder}set placeholder(ce){this._placeholder=ce,this.stateChanges.next()}get required(){return this._required??this.ngControl?.control?.hasValidator(y.k0.required)??!1}set required(ce){this._required=ce,this.stateChanges.next()}get multiple(){return this._multiple}set multiple(ce){this._multiple=ce}get compareWith(){return this._compareWith}set compareWith(ce){this._compareWith=ce,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(ce){this._assignValue(ce)&&this._onChange(ce)}get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(ce){this._errorStateTracker.matcher=ce}get id(){return this._id}set id(ce){this._id=ce||this._uid,this.stateChanges.next()}get errorState(){return this._errorStateTracker.errorState}set errorState(ce){this._errorStateTracker.errorState=ce}constructor(ce,fe,ke,mt,_e,be,pe,Ze,_t,at,pt,Xt,ye,ue){this._viewportRuler=ce,this._changeDetectorRef=fe,this._elementRef=_e,this._dir=be,this._parentFormField=_t,this.ngControl=at,this._liveAnnouncer=ye,this._defaultOptions=ue,this._positions=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"}],this._panelOpen=!1,this._compareWith=(Ie,He)=>Ie===He,this._uid="mat-select-"+r++,this._triggerAriaLabelledBy=null,this._destroy=new F.B,this.stateChanges=new F.B,this.disableAutomaticLabeling=!0,this._onChange=()=>{},this._onTouched=()=>{},this._valueId="mat-select-value-"+r++,this._panelDoneAnimatingStream=new F.B,this._overlayPanelClass=this._defaultOptions?.overlayPanelClass||"",this._focused=!1,this.controlType="mat-select",this.disabled=!1,this.disableRipple=!1,this.tabIndex=0,this._hideSingleSelectionIndicator=this._defaultOptions?.hideSingleSelectionIndicator??!1,this._multiple=!1,this.disableOptionCentering=this._defaultOptions?.disableOptionCentering??!1,this.ariaLabel="",this.panelWidth=this._defaultOptions&&typeof this._defaultOptions.panelWidth<"u"?this._defaultOptions.panelWidth:"auto",this._initialized=new F.B,this.optionSelectionChanges=(0,R.v)(()=>{const Ie=this.options;return Ie?Ie.changes.pipe((0,W.Z)(Ie),(0,$.n)(()=>(0,z.h)(...Ie.map(He=>He.onSelectionChange)))):this._initialized.pipe((0,$.n)(()=>this.optionSelectionChanges))}),this.openedChange=new w.bkB,this._openedStream=this.openedChange.pipe((0,j.p)(Ie=>Ie),(0,Q.T)(()=>{})),this._closedStream=this.openedChange.pipe((0,j.p)(Ie=>!Ie),(0,Q.T)(()=>{})),this.selectionChange=new w.bkB,this.valueChange=new w.bkB,this._trackedModal=null,this._skipPredicate=Ie=>!this.panelOpen&&Ie.disabled,this.ngControl&&(this.ngControl.valueAccessor=this),null!=ue?.typeaheadDebounceInterval&&(this.typeaheadDebounceInterval=ue.typeaheadDebounceInterval),this._errorStateTracker=new S.X0(mt,at,Ze,pe,this.stateChanges),this._scrollStrategyFactory=Xt,this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=parseInt(pt)||0,this.id=this.id}ngOnInit(){this._selectionModel=new d.CB(this.multiple),this.stateChanges.next(),this._panelDoneAnimatingStream.pipe((0,J.F)(),(0,ee.Q)(this._destroy)).subscribe(()=>this._panelDoneAnimating(this.panelOpen)),this._viewportRuler.change().pipe((0,ee.Q)(this._destroy)).subscribe(()=>{this.panelOpen&&(this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._changeDetectorRef.detectChanges())})}ngAfterContentInit(){this._initialized.next(),this._initialized.complete(),this._initKeyManager(),this._selectionModel.changed.pipe((0,ee.Q)(this._destroy)).subscribe(ce=>{ce.added.forEach(fe=>fe.select()),ce.removed.forEach(fe=>fe.deselect())}),this.options.changes.pipe((0,W.Z)(null),(0,ee.Q)(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){const ce=this._getTriggerAriaLabelledby(),fe=this.ngControl;if(ce!==this._triggerAriaLabelledBy){const ke=this._elementRef.nativeElement;this._triggerAriaLabelledBy=ce,ce?ke.setAttribute("aria-labelledby",ce):ke.removeAttribute("aria-labelledby")}fe&&(this._previousControl!==fe.control&&(void 0!==this._previousControl&&null!==fe.disabled&&fe.disabled!==this.disabled&&(this.disabled=fe.disabled),this._previousControl=fe.control),this.updateErrorState())}ngOnChanges(ce){(ce.disabled||ce.userAriaDescribedBy)&&this.stateChanges.next(),ce.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this.typeaheadDebounceInterval)}ngOnDestroy(){this._keyManager?.destroy(),this._destroy.next(),this._destroy.complete(),this.stateChanges.complete(),this._clearFromModal()}toggle(){this.panelOpen?this.close():this.open()}open(){this._canOpen()&&(this._parentFormField&&(this._preferredOverlayOrigin=this._parentFormField.getConnectedOverlayOrigin()),this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._applyModalPanelOwnership(),this._panelOpen=!0,this._keyManager.withHorizontalOrientation(null),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_applyModalPanelOwnership(){const ce=this._elementRef.nativeElement.closest('body > .cdk-overlay-container [aria-modal="true"]');if(!ce)return;const fe=`${this.id}-panel`;this._trackedModal&&(0,f.Ae)(this._trackedModal,"aria-owns",fe),(0,f.px)(ce,"aria-owns",fe),this._trackedModal=ce}_clearFromModal(){this._trackedModal&&((0,f.Ae)(this._trackedModal,"aria-owns",`${this.id}-panel`),this._trackedModal=null)}close(){this._panelOpen&&(this._panelOpen=!1,this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched(),this.stateChanges.next())}writeValue(ce){this._assignValue(ce)}registerOnChange(ce){this._onChange=ce}registerOnTouched(ce){this._onTouched=ce}setDisabledState(ce){this.disabled=ce,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){return this.multiple?this._selectionModel?.selected||[]:this._selectionModel?.selected[0]}get triggerValue(){if(this.empty)return"";if(this._multiple){const ce=this._selectionModel.selected.map(fe=>fe.viewValue);return this._isRtl()&&ce.reverse(),ce.join(", ")}return this._selectionModel.selected[0].viewValue}updateErrorState(){this._errorStateTracker.updateErrorState()}_isRtl(){return!!this._dir&&"rtl"===this._dir.value}_handleKeydown(ce){this.disabled||(this.panelOpen?this._handleOpenKeydown(ce):this._handleClosedKeydown(ce))}_handleClosedKeydown(ce){const fe=ce.keyCode,ke=fe===T.n6||fe===T.i7||fe===T.UQ||fe===T.LE,mt=fe===T.Fm||fe===T.t6,_e=this._keyManager;if(!_e.isTyping()&&mt&&!(0,T.rp)(ce)||(this.multiple||ce.altKey)&&ke)ce.preventDefault(),this.open();else if(!this.multiple){const be=this.selected;_e.onKeydown(ce);const pe=this.selected;pe&&be!==pe&&this._liveAnnouncer.announce(pe.viewValue,1e4)}}_handleOpenKeydown(ce){const fe=this._keyManager,ke=ce.keyCode,mt=ke===T.n6||ke===T.i7,_e=fe.isTyping();if(mt&&ce.altKey)ce.preventDefault(),this.close();else if(_e||ke!==T.Fm&&ke!==T.t6||!fe.activeItem||(0,T.rp)(ce))if(!_e&&this._multiple&&ke===T.A&&ce.ctrlKey){ce.preventDefault();const be=this.options.some(pe=>!pe.disabled&&!pe.selected);this.options.forEach(pe=>{pe.disabled||(be?pe.select():pe.deselect())})}else{const be=fe.activeItemIndex;fe.onKeydown(ce),this._multiple&&mt&&ce.shiftKey&&fe.activeItem&&fe.activeItemIndex!==be&&fe.activeItem._selectViaInteraction()}else ce.preventDefault(),fe.activeItem._selectViaInteraction()}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,this._keyManager?.cancelTypeahead(),!this.disabled&&!this.panelOpen&&(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_onAttached(){this._overlayDir.positionChange.pipe((0,ie.s)(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._positioningSettled()})}_getPanelTheme(){return this._parentFormField?`mat-${this._parentFormField.color}`:""}get empty(){return!this._selectionModel||this._selectionModel.isEmpty()}_initializeSelection(){Promise.resolve().then(()=>{this.ngControl&&(this._value=this.ngControl.value),this._setSelectionByValue(this._value),this.stateChanges.next()})}_setSelectionByValue(ce){if(this.options.forEach(fe=>fe.setInactiveStyles()),this._selectionModel.clear(),this.multiple&&ce)Array.isArray(ce),ce.forEach(fe=>this._selectOptionByValue(fe)),this._sortValues();else{const fe=this._selectOptionByValue(ce);fe?this._keyManager.updateActiveItem(fe):this.panelOpen||this._keyManager.updateActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectOptionByValue(ce){const fe=this.options.find(ke=>{if(this._selectionModel.isSelected(ke))return!1;try{return null!=ke.value&&this._compareWith(ke.value,ce)}catch{return!1}});return fe&&this._selectionModel.select(fe),fe}_assignValue(ce){return!!(ce!==this._value||this._multiple&&Array.isArray(ce))&&(this.options&&this._setSelectionByValue(ce),this._value=ce,!0)}_getOverlayWidth(ce){return"auto"===this.panelWidth?(ce instanceof e.$Q?ce.elementRef:ce||this._elementRef).nativeElement.getBoundingClientRect().width:null===this.panelWidth?"":this.panelWidth}_syncParentProperties(){if(this.options)for(const ce of this.options)ce._changeDetectorRef.markForCheck()}_initKeyManager(){this._keyManager=new f.Au(this.options).withTypeAhead(this.typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?"rtl":"ltr").withHomeAndEnd().withPageUpDown().withAllowedModifierKeys(["shiftKey"]).skipPredicate(this._skipPredicate),this._keyManager.tabOut.subscribe(()=>{this.panelOpen&&(!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close())}),this._keyManager.change.subscribe(()=>{this._panelOpen&&this.panel?this._scrollOptionIntoView(this._keyManager.activeItemIndex||0):!this._panelOpen&&!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const ce=(0,z.h)(this.options.changes,this._destroy);this.optionSelectionChanges.pipe((0,ee.Q)(ce)).subscribe(fe=>{this._onSelect(fe.source,fe.isUserInput),fe.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),(0,z.h)(...this.options.map(fe=>fe._stateChanges)).pipe((0,ee.Q)(ce)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this.stateChanges.next()})}_onSelect(ce,fe){const ke=this._selectionModel.isSelected(ce);null!=ce.value||this._multiple?(ke!==ce.selected&&(ce.selected?this._selectionModel.select(ce):this._selectionModel.deselect(ce)),fe&&this._keyManager.setActiveItem(ce),this.multiple&&(this._sortValues(),fe&&this.focus())):(ce.deselect(),this._selectionModel.clear(),null!=this.value&&this._propagateChanges(ce.value)),ke!==this._selectionModel.isSelected(ce)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const ce=this.options.toArray();this._selectionModel.sort((fe,ke)=>this.sortComparator?this.sortComparator(fe,ke,ce):ce.indexOf(fe)-ce.indexOf(ke)),this.stateChanges.next()}}_propagateChanges(ce){let fe;fe=this.multiple?this.selected.map(ke=>ke.value):this.selected?this.selected.value:ce,this._value=fe,this.valueChange.emit(fe),this._onChange(fe),this.selectionChange.emit(this._getChangeEvent(fe)),this._changeDetectorRef.markForCheck()}_highlightCorrectOption(){if(this._keyManager)if(this.empty){let ce=-1;for(let fe=0;fe0}focus(ce){this._elementRef.nativeElement.focus(ce)}_getPanelAriaLabelledby(){if(this.ariaLabel)return null;const ce=this._parentFormField?.getLabelId();return this.ariaLabelledby?(ce?ce+" ":"")+this.ariaLabelledby:ce}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_getTriggerAriaLabelledby(){if(this.ariaLabel)return null;const ce=this._parentFormField?.getLabelId();let fe=(ce?ce+" ":"")+this._valueId;return this.ariaLabelledby&&(fe+=" "+this.ariaLabelledby),fe}_panelDoneAnimating(ce){this.openedChange.emit(ce)}setDescribedByIds(ce){ce.length?this._elementRef.nativeElement.setAttribute("aria-describedby",ce.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this.panelOpen||!this.empty||this.focused&&!!this.placeholder}static#e=this.\u0275fac=function(fe){return new(fe||X)(w.rXU(x.Xj),w.rXU(w.gRc),w.rXU(w.SKi),w.rXU(S.es),w.rXU(w.aKT),w.rXU(I.dS,8),w.rXU(y.cV,8),w.rXU(y.j4,8),w.rXU(l.xb,8),w.rXU(y.vO,10),w.kS0("tabindex"),w.rXU(v),w.rXU(f.Ai),w.rXU(N,8))};static#t=this.\u0275cmp=w.VBU({type:X,selectors:[["mat-select"]],contentQueries:function(fe,ke,mt){if(1&fe&&(w.wni(mt,Ee,5),w.wni(mt,S.wT,5),w.wni(mt,S.QC,5)),2&fe){let _e;w.mGM(_e=w.lsd())&&(ke.customTrigger=_e.first),w.mGM(_e=w.lsd())&&(ke.options=_e),w.mGM(_e=w.lsd())&&(ke.optionGroups=_e)}},viewQuery:function(fe,ke){if(1&fe&&(w.GBs(ae,5),w.GBs(Me,5),w.GBs(e.WB,5)),2&fe){let mt;w.mGM(mt=w.lsd())&&(ke.trigger=mt.first),w.mGM(mt=w.lsd())&&(ke.panel=mt.first),w.mGM(mt=w.lsd())&&(ke._overlayDir=mt.first)}},hostAttrs:["role","combobox","aria-autocomplete","none","aria-haspopup","listbox",1,"mat-mdc-select"],hostVars:19,hostBindings:function(fe,ke){1&fe&&w.bIt("keydown",function(_e){return ke._handleKeydown(_e)})("focus",function(){return ke._onFocus()})("blur",function(){return ke._onBlur()}),2&fe&&(w.BMQ("id",ke.id)("tabindex",ke.disabled?-1:ke.tabIndex)("aria-controls",ke.panelOpen?ke.id+"-panel":null)("aria-expanded",ke.panelOpen)("aria-label",ke.ariaLabel||null)("aria-required",ke.required.toString())("aria-disabled",ke.disabled.toString())("aria-invalid",ke.errorState)("aria-activedescendant",ke._getAriaActiveDescendant()),w.AVh("mat-mdc-select-disabled",ke.disabled)("mat-mdc-select-invalid",ke.errorState)("mat-mdc-select-required",ke.required)("mat-mdc-select-empty",ke.empty)("mat-mdc-select-multiple",ke.multiple))},inputs:{userAriaDescribedBy:[0,"aria-describedby","userAriaDescribedBy"],panelClass:"panelClass",disabled:[2,"disabled","disabled",w.L39],disableRipple:[2,"disableRipple","disableRipple",w.L39],tabIndex:[2,"tabIndex","tabIndex",ce=>null==ce?0:(0,w.Udg)(ce)],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",w.L39],placeholder:"placeholder",required:[2,"required","required",w.L39],multiple:[2,"multiple","multiple",w.L39],disableOptionCentering:[2,"disableOptionCentering","disableOptionCentering",w.L39],compareWith:"compareWith",value:"value",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],errorStateMatcher:"errorStateMatcher",typeaheadDebounceInterval:[2,"typeaheadDebounceInterval","typeaheadDebounceInterval",w.Udg],sortComparator:"sortComparator",id:"id",panelWidth:"panelWidth"},outputs:{openedChange:"openedChange",_openedStream:"opened",_closedStream:"closed",selectionChange:"selectionChange",valueChange:"valueChange"},exportAs:["matSelect"],standalone:!0,features:[w.Jv_([{provide:l.qT,useExisting:X},{provide:S.is,useExisting:X}]),w.GFd,w.OA$,w.aNF],ngContentSelectors:de,decls:11,vars:8,consts:[["fallbackOverlayOrigin","cdkOverlayOrigin","trigger",""],["panel",""],["cdk-overlay-origin","",1,"mat-mdc-select-trigger",3,"click"],[1,"mat-mdc-select-value"],[1,"mat-mdc-select-placeholder","mat-mdc-select-min-line"],[1,"mat-mdc-select-value-text"],[1,"mat-mdc-select-arrow-wrapper"],[1,"mat-mdc-select-arrow"],["viewBox","0 0 24 24","width","24px","height","24px","focusable","false","aria-hidden","true"],["d","M7 10l5 5 5-5z"],["cdk-connected-overlay","","cdkConnectedOverlayLockPosition","","cdkConnectedOverlayHasBackdrop","","cdkConnectedOverlayBackdropClass","cdk-overlay-transparent-backdrop",3,"backdropClick","attach","detach","cdkConnectedOverlayPanelClass","cdkConnectedOverlayScrollStrategy","cdkConnectedOverlayOrigin","cdkConnectedOverlayOpen","cdkConnectedOverlayPositions","cdkConnectedOverlayWidth"],[1,"mat-mdc-select-min-line"],["role","listbox","tabindex","-1",3,"keydown","ngClass"]],template:function(fe,ke){if(1&fe){const mt=w.RV6();w.NAR(Te),w.j41(0,"div",2,0),w.bIt("click",function(){return w.eBV(mt),w.Njj(ke.open())}),w.j41(3,"div",3),w.DNE(4,D,2,1,"span",4)(5,m,3,1,"span",5),w.k0s(),w.j41(6,"div",6)(7,"div",7),w.qSk(),w.j41(8,"svg",8),w.nrm(9,"path",9),w.k0s()()()(),w.DNE(10,h,3,9,"ng-template",10),w.bIt("backdropClick",function(){return w.eBV(mt),w.Njj(ke.close())})("attach",function(){return w.eBV(mt),w.Njj(ke._onAttached())})("detach",function(){return w.eBV(mt),w.Njj(ke.close())})}if(2&fe){const mt=w.sdS(1);w.R7$(3),w.BMQ("id",ke._valueId),w.R7$(),w.vxM(ke.empty?4:5),w.R7$(6),w.Y8G("cdkConnectedOverlayPanelClass",ke._overlayPanelClass)("cdkConnectedOverlayScrollStrategy",ke._scrollStrategy)("cdkConnectedOverlayOrigin",ke._preferredOverlayOrigin||mt)("cdkConnectedOverlayOpen",ke.panelOpen)("cdkConnectedOverlayPositions",ke._positions)("cdkConnectedOverlayWidth",ke._overlayWidth)}},dependencies:[e.$Q,e.WB,t.YU],styles:['.mat-mdc-select{display:inline-block;width:100%;outline:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-select-enabled-trigger-text-color);font-family:var(--mat-select-trigger-text-font);line-height:var(--mat-select-trigger-text-line-height);font-size:var(--mat-select-trigger-text-size);font-weight:var(--mat-select-trigger-text-weight);letter-spacing:var(--mat-select-trigger-text-tracking)}div.mat-mdc-select-panel{box-shadow:var(--mat-select-container-elevation-shadow)}.mat-mdc-select-disabled{color:var(--mat-select-disabled-trigger-text-color)}.mat-mdc-select-trigger{display:inline-flex;align-items:center;cursor:pointer;position:relative;box-sizing:border-box;width:100%}.mat-mdc-select-disabled .mat-mdc-select-trigger{-webkit-user-select:none;user-select:none;cursor:default}.mat-mdc-select-value{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-mdc-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-mdc-select-arrow-wrapper{height:24px;flex-shrink:0;display:inline-flex;align-items:center}.mat-form-field-appearance-fill .mdc-text-field--no-label .mat-mdc-select-arrow-wrapper{transform:none}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-invalid .mat-mdc-select-arrow,.mat-form-field-invalid:not(.mat-form-field-disabled) .mat-mdc-form-field-infix::after{color:var(--mat-select-invalid-arrow-color)}.mat-mdc-select-arrow{width:10px;height:5px;position:relative;color:var(--mat-select-enabled-arrow-color)}.mat-mdc-form-field.mat-focused .mat-mdc-select-arrow{color:var(--mat-select-focused-arrow-color)}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-arrow{color:var(--mat-select-disabled-arrow-color)}.mat-mdc-select-arrow svg{fill:currentColor;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:CanvasText}.mat-mdc-select-disabled .cdk-high-contrast-active .mat-mdc-select-arrow svg{fill:GrayText}div.mat-mdc-select-panel{width:100%;max-height:275px;outline:0;overflow:auto;padding:8px 0;border-radius:4px;box-sizing:border-box;position:static;background-color:var(--mat-select-panel-background-color)}.cdk-high-contrast-active div.mat-mdc-select-panel{outline:solid 1px}.cdk-overlay-pane:not(.mat-mdc-select-panel-above) div.mat-mdc-select-panel{border-top-left-radius:0;border-top-right-radius:0;transform-origin:top center}.mat-mdc-select-panel-above div.mat-mdc-select-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:bottom center}div.mat-mdc-select-panel .mat-mdc-option{--mdc-list-list-item-container-color: var(--mat-select-panel-background-color)}.mat-mdc-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);color:var(--mat-select-placeholder-text-color)}._mat-animation-noopable .mat-mdc-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-mdc-select-placeholder{color:rgba(0,0,0,0);-webkit-text-fill-color:rgba(0,0,0,0);transition:none;display:block}.mat-mdc-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-mdc-text-field-wrapper{cursor:pointer}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mat-mdc-floating-label{max-width:calc(100% - 18px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 24px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-text-field--label-floating .mdc-notched-outline__notch{max-width:calc(100% - 24px)}.mat-mdc-select-min-line:empty::before{content:" ";white-space:pre;width:1px;display:inline-block;visibility:hidden}.mat-form-field-appearance-fill .mat-mdc-select-arrow-wrapper{transform:var(--mat-select-arrow-transform)}'],encapsulation:2,data:{animation:[C.transformPanel]},changeDetection:0})}return X})(),Ke=(()=>{class X{static#e=this.\u0275fac=function(fe){return new(fe||X)};static#t=this.\u0275dir=w.FsC({type:X,selectors:[["mat-select-trigger"]],standalone:!0,features:[w.Jv_([{provide:Ee,useExisting:X}])]})}return X})(),se=(()=>{class X{static#e=this.\u0275fac=function(fe){return new(fe||X)};static#t=this.\u0275mod=w.$C({type:X});static#i=this.\u0275inj=w.G2t({providers:[ne],imports:[t.MD,e.z_,S.Sy,S.yE,x.Gj,l.RG,S.Sy,S.yE]})}return X})()},882:(Qe,te,g)=>{"use strict";g.d(te,{El:()=>Ee,LG:()=>ze,US:()=>qe,vg:()=>Ke});var e=g(5542),t=g(4438),w=g(6600),S=g(8617),l=g(8203),x=g(4085),f=g(7336),I=g(6860),d=g(177),T=g(1413),y=g(3726),F=g(7786),R=g(5964),z=g(6354),W=g(3703),$=g(6977),j=g(3294),Q=g(6697),J=g(9172),ee=g(152),ie=g(9969);const ge=["*"],ae=["content"],Me=[[["mat-drawer"]],[["mat-drawer-content"]],"*"],Te=["mat-drawer","mat-drawer-content","*"];function de(se,X){if(1&se){const me=t.RV6();t.j41(0,"div",1),t.bIt("click",function(){t.eBV(me);const fe=t.XpG();return t.Njj(fe._onBackdropClicked())}),t.k0s()}if(2&se){const me=t.XpG();t.AVh("mat-drawer-shown",me._isShowingBackdrop())}}function D(se,X){1&se&&(t.j41(0,"mat-drawer-content"),t.SdG(1,2),t.k0s())}const n=[[["mat-sidenav"]],[["mat-sidenav-content"]],"*"],c=["mat-sidenav","mat-sidenav-content","*"];function m(se,X){if(1&se){const me=t.RV6();t.j41(0,"div",1),t.bIt("click",function(){t.eBV(me);const fe=t.XpG();return t.Njj(fe._onBackdropClicked())}),t.k0s()}if(2&se){const me=t.XpG();t.AVh("mat-drawer-shown",me._isShowingBackdrop())}}function h(se,X){1&se&&(t.j41(0,"mat-sidenav-content"),t.SdG(1,2),t.k0s())}const k={transformDrawer:(0,ie.hZ)("transform",[(0,ie.wk)("open, open-instant",(0,ie.iF)({transform:"none",visibility:"visible"})),(0,ie.wk)("void",(0,ie.iF)({"box-shadow":"none",visibility:"hidden"})),(0,ie.kY)("void => open-instant",(0,ie.i0)("0ms")),(0,ie.kY)("void <=> open, open-instant => void",(0,ie.i0)("400ms cubic-bezier(0.25, 0.8, 0.25, 1)"))])},_=new t.nKC("MAT_DRAWER_DEFAULT_AUTOSIZE",{providedIn:"root",factory:function v(){return!1}}),r=new t.nKC("MAT_DRAWER_CONTAINER");let V=(()=>{class se extends e.uv{constructor(me,ce,fe,ke,mt){super(fe,ke,mt),this._changeDetectorRef=me,this._container=ce}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}static#e=this.\u0275fac=function(ce){return new(ce||se)(t.rXU(t.gRc),t.rXU((0,t.Rfq)(()=>ne)),t.rXU(t.aKT),t.rXU(e.R),t.rXU(t.SKi))};static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-drawer-content"]],hostAttrs:[1,"mat-drawer-content"],hostVars:4,hostBindings:function(ce,fe){2&ce&&t.xc7("margin-left",fe._container._contentMargins.left,"px")("margin-right",fe._container._contentMargins.right,"px")},standalone:!0,features:[t.Jv_([{provide:e.uv,useExisting:se}]),t.Vt3,t.aNF],ngContentSelectors:ge,decls:1,vars:0,template:function(ce,fe){1&ce&&(t.NAR(),t.SdG(0))},encapsulation:2,changeDetection:0})}return se})(),N=(()=>{class se{get position(){return this._position}set position(me){(me="end"===me?"end":"start")!==this._position&&(this._isAttached&&this._updatePositionInParent(me),this._position=me,this.onPositionChanged.emit())}get mode(){return this._mode}set mode(me){this._mode=me,this._updateFocusTrapState(),this._modeChanged.next()}get disableClose(){return this._disableClose}set disableClose(me){this._disableClose=(0,x.he)(me)}get autoFocus(){return this._autoFocus??("side"===this.mode?"dialog":"first-tabbable")}set autoFocus(me){("true"===me||"false"===me||null==me)&&(me=(0,x.he)(me)),this._autoFocus=me}get opened(){return this._opened}set opened(me){this.toggle((0,x.he)(me))}constructor(me,ce,fe,ke,mt,_e,be,pe){this._elementRef=me,this._focusTrapFactory=ce,this._focusMonitor=fe,this._platform=ke,this._ngZone=mt,this._interactivityChecker=_e,this._doc=be,this._container=pe,this._focusTrap=null,this._elementFocusedBeforeDrawerWasOpened=null,this._enableAnimations=!1,this._position="start",this._mode="over",this._disableClose=!1,this._opened=!1,this._animationStarted=new T.B,this._animationEnd=new T.B,this._animationState="void",this.openedChange=new t.bkB(!0),this._openedStream=this.openedChange.pipe((0,R.p)(Ze=>Ze),(0,z.T)(()=>{})),this.openedStart=this._animationStarted.pipe((0,R.p)(Ze=>Ze.fromState!==Ze.toState&&0===Ze.toState.indexOf("open")),(0,W.u)(void 0)),this._closedStream=this.openedChange.pipe((0,R.p)(Ze=>!Ze),(0,z.T)(()=>{})),this.closedStart=this._animationStarted.pipe((0,R.p)(Ze=>Ze.fromState!==Ze.toState&&"void"===Ze.toState),(0,W.u)(void 0)),this._destroyed=new T.B,this.onPositionChanged=new t.bkB,this._modeChanged=new T.B,this.openedChange.subscribe(Ze=>{Ze?(this._doc&&(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement),this._takeFocus()):this._isFocusWithinDrawer()&&this._restoreFocus(this._openedVia||"program")}),this._ngZone.runOutsideAngular(()=>{(0,y.R)(this._elementRef.nativeElement,"keydown").pipe((0,R.p)(Ze=>Ze.keyCode===f._f&&!this.disableClose&&!(0,f.rp)(Ze)),(0,$.Q)(this._destroyed)).subscribe(Ze=>this._ngZone.run(()=>{this.close(),Ze.stopPropagation(),Ze.preventDefault()}))}),this._animationEnd.pipe((0,j.F)((Ze,_t)=>Ze.fromState===_t.fromState&&Ze.toState===_t.toState)).subscribe(Ze=>{const{fromState:_t,toState:at}=Ze;(0===at.indexOf("open")&&"void"===_t||"void"===at&&0===_t.indexOf("open"))&&this.openedChange.emit(this._opened)})}_forceFocus(me,ce){this._interactivityChecker.isFocusable(me)||(me.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const fe=()=>{me.removeEventListener("blur",fe),me.removeEventListener("mousedown",fe),me.removeAttribute("tabindex")};me.addEventListener("blur",fe),me.addEventListener("mousedown",fe)})),me.focus(ce)}_focusByCssSelector(me,ce){let fe=this._elementRef.nativeElement.querySelector(me);fe&&this._forceFocus(fe,ce)}_takeFocus(){if(!this._focusTrap)return;const me=this._elementRef.nativeElement;switch(this.autoFocus){case!1:case"dialog":return;case!0:case"first-tabbable":this._focusTrap.focusInitialElementWhenReady().then(ce=>{!ce&&"function"==typeof this._elementRef.nativeElement.focus&&me.focus()});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this.autoFocus)}}_restoreFocus(me){"dialog"!==this.autoFocus&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,me):this._elementRef.nativeElement.blur(),this._elementFocusedBeforeDrawerWasOpened=null)}_isFocusWithinDrawer(){const me=this._doc.activeElement;return!!me&&this._elementRef.nativeElement.contains(me)}ngAfterViewInit(){this._isAttached=!0,"end"===this._position&&this._updatePositionInParent("end"),this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState())}ngAfterContentChecked(){this._platform.isBrowser&&(this._enableAnimations=!0)}ngOnDestroy(){this._focusTrap?.destroy(),this._anchor?.remove(),this._anchor=null,this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}open(me){return this.toggle(!0,me)}close(){return this.toggle(!1)}_closeViaBackdropClick(){return this._setOpen(!1,!0,"mouse")}toggle(me=!this.opened,ce){me&&ce&&(this._openedVia=ce);const fe=this._setOpen(me,!me&&this._isFocusWithinDrawer(),this._openedVia||"program");return me||(this._openedVia=null),fe}_setOpen(me,ce,fe){return this._opened=me,me?this._animationState=this._enableAnimations?"open":"open-instant":(this._animationState="void",ce&&this._restoreFocus(fe)),this._updateFocusTrapState(),new Promise(ke=>{this.openedChange.pipe((0,Q.s)(1)).subscribe(mt=>ke(mt?"open":"close"))})}_getWidth(){return this._elementRef.nativeElement&&this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=!!this._container?.hasBackdrop)}_updatePositionInParent(me){if(!this._platform.isBrowser)return;const ce=this._elementRef.nativeElement,fe=ce.parentNode;"end"===me?(this._anchor||(this._anchor=this._doc.createComment("mat-drawer-anchor"),fe.insertBefore(this._anchor,ce)),fe.appendChild(ce)):this._anchor&&this._anchor.parentNode.insertBefore(ce,this._anchor)}static#e=this.\u0275fac=function(ce){return new(ce||se)(t.rXU(t.aKT),t.rXU(S.GX),t.rXU(S.FN),t.rXU(I.OD),t.rXU(t.SKi),t.rXU(S.Z7),t.rXU(d.qQ,8),t.rXU(r,8))};static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-drawer"]],viewQuery:function(ce,fe){if(1&ce&&t.GBs(ae,5),2&ce){let ke;t.mGM(ke=t.lsd())&&(fe._content=ke.first)}},hostAttrs:["tabIndex","-1",1,"mat-drawer"],hostVars:12,hostBindings:function(ce,fe){1&ce&&t.Kam("@transform.start",function(mt){return fe._animationStarted.next(mt)})("@transform.done",function(mt){return fe._animationEnd.next(mt)}),2&ce&&(t.zvX("@transform",fe._animationState),t.BMQ("align",null),t.AVh("mat-drawer-end","end"===fe.position)("mat-drawer-over","over"===fe.mode)("mat-drawer-push","push"===fe.mode)("mat-drawer-side","side"===fe.mode)("mat-drawer-opened",fe.opened))},inputs:{position:"position",mode:"mode",disableClose:"disableClose",autoFocus:"autoFocus",opened:"opened"},outputs:{openedChange:"openedChange",_openedStream:"opened",openedStart:"openedStart",_closedStream:"closed",closedStart:"closedStart",onPositionChanged:"positionChanged"},exportAs:["matDrawer"],standalone:!0,features:[t.aNF],ngContentSelectors:ge,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(ce,fe){1&ce&&(t.NAR(),t.j41(0,"div",1,0),t.SdG(2),t.k0s())},dependencies:[e.uv],encapsulation:2,data:{animation:[k.transformDrawer]},changeDetection:0})}return se})(),ne=(()=>{class se{get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(me){this._autosize=(0,x.he)(me)}get hasBackdrop(){return this._drawerHasBackdrop(this._start)||this._drawerHasBackdrop(this._end)}set hasBackdrop(me){this._backdropOverride=null==me?null:(0,x.he)(me)}get scrollable(){return this._userContent||this._content}constructor(me,ce,fe,ke,mt,_e=!1,be){this._dir=me,this._element=ce,this._ngZone=fe,this._changeDetectorRef=ke,this._animationMode=be,this._drawers=new t.rOR,this.backdropClick=new t.bkB,this._destroyed=new T.B,this._doCheckSubject=new T.B,this._contentMargins={left:null,right:null},this._contentMarginChanges=new T.B,me&&me.change.pipe((0,$.Q)(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),mt.change().pipe((0,$.Q)(this._destroyed)).subscribe(()=>this.updateContentMargins()),this._autosize=_e}ngAfterContentInit(){this._allDrawers.changes.pipe((0,J.Z)(this._allDrawers),(0,$.Q)(this._destroyed)).subscribe(me=>{this._drawers.reset(me.filter(ce=>!ce._container||ce._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe((0,J.Z)(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(me=>{this._watchDrawerToggle(me),this._watchDrawerPosition(me),this._watchDrawerMode(me)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._ngZone.runOutsideAngular(()=>{this._doCheckSubject.pipe((0,ee.B)(10),(0,$.Q)(this._destroyed)).subscribe(()=>this.updateContentMargins())})}ngOnDestroy(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}open(){this._drawers.forEach(me=>me.open())}close(){this._drawers.forEach(me=>me.close())}updateContentMargins(){let me=0,ce=0;if(this._left&&this._left.opened)if("side"==this._left.mode)me+=this._left._getWidth();else if("push"==this._left.mode){const fe=this._left._getWidth();me+=fe,ce-=fe}if(this._right&&this._right.opened)if("side"==this._right.mode)ce+=this._right._getWidth();else if("push"==this._right.mode){const fe=this._right._getWidth();ce+=fe,me-=fe}me=me||null,ce=ce||null,(me!==this._contentMargins.left||ce!==this._contentMargins.right)&&(this._contentMargins={left:me,right:ce},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(me){me._animationStarted.pipe((0,R.p)(ce=>ce.fromState!==ce.toState),(0,$.Q)(this._drawers.changes)).subscribe(ce=>{"open-instant"!==ce.toState&&"NoopAnimations"!==this._animationMode&&this._element.nativeElement.classList.add("mat-drawer-transition"),this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),"side"!==me.mode&&me.openedChange.pipe((0,$.Q)(this._drawers.changes)).subscribe(()=>this._setContainerClass(me.opened))}_watchDrawerPosition(me){me&&me.onPositionChanged.pipe((0,$.Q)(this._drawers.changes)).subscribe(()=>{this._ngZone.onMicrotaskEmpty.pipe((0,Q.s)(1)).subscribe(()=>{this._validateDrawers()})})}_watchDrawerMode(me){me&&me._modeChanged.pipe((0,$.Q)((0,F.h)(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(me){const ce=this._element.nativeElement.classList,fe="mat-drawer-container-has-open";me?ce.add(fe):ce.remove(fe)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(me=>{"end"==me.position?this._end=me:this._start=me}),this._right=this._left=null,this._dir&&"rtl"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}_isPushed(){return this._isDrawerOpen(this._start)&&"over"!=this._start.mode||this._isDrawerOpen(this._end)&&"over"!=this._end.mode}_onBackdropClicked(){this.backdropClick.emit(),this._closeModalDrawersViaBackdrop()}_closeModalDrawersViaBackdrop(){[this._start,this._end].filter(me=>me&&!me.disableClose&&this._drawerHasBackdrop(me)).forEach(me=>me._closeViaBackdropClick())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._drawerHasBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._drawerHasBackdrop(this._end)}_isDrawerOpen(me){return null!=me&&me.opened}_drawerHasBackdrop(me){return null==this._backdropOverride?!!me&&"side"!==me.mode:this._backdropOverride}static#e=this.\u0275fac=function(ce){return new(ce||se)(t.rXU(l.dS,8),t.rXU(t.aKT),t.rXU(t.SKi),t.rXU(t.gRc),t.rXU(e.Xj),t.rXU(_),t.rXU(t.bc$,8))};static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-drawer-container"]],contentQueries:function(ce,fe,ke){if(1&ce&&(t.wni(ke,V,5),t.wni(ke,N,5)),2&ce){let mt;t.mGM(mt=t.lsd())&&(fe._content=mt.first),t.mGM(mt=t.lsd())&&(fe._allDrawers=mt)}},viewQuery:function(ce,fe){if(1&ce&&t.GBs(V,5),2&ce){let ke;t.mGM(ke=t.lsd())&&(fe._userContent=ke.first)}},hostAttrs:[1,"mat-drawer-container"],hostVars:2,hostBindings:function(ce,fe){2&ce&&t.AVh("mat-drawer-container-explicit-backdrop",fe._backdropOverride)},inputs:{autosize:"autosize",hasBackdrop:"hasBackdrop"},outputs:{backdropClick:"backdropClick"},exportAs:["matDrawerContainer"],standalone:!0,features:[t.Jv_([{provide:r,useExisting:se}]),t.aNF],ngContentSelectors:Te,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(ce,fe){1&ce&&(t.NAR(Me),t.DNE(0,de,1,2,"div",0),t.SdG(1),t.SdG(2,1),t.DNE(3,D,2,0,"mat-drawer-content")),2&ce&&(t.vxM(fe.hasBackdrop?0:-1),t.R7$(3),t.vxM(fe._content?-1:3))},dependencies:[V],styles:['.mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color);background-color:var(--mat-sidenav-content-background-color);box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible;background-color:var(--mat-sidenav-scrim-color)}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;color:var(--mat-sidenav-container-text-color);box-shadow:var(--mat-sidenav-container-elevation-shadow);background-color:var(--mat-sidenav-container-background-color);border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);width:var(--mat-sidenav-container-width);display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0);border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}'],encapsulation:2,changeDetection:0})}return se})(),Ee=(()=>{class se extends V{constructor(me,ce,fe,ke,mt){super(me,ce,fe,ke,mt)}static#e=this.\u0275fac=function(ce){return new(ce||se)(t.rXU(t.gRc),t.rXU((0,t.Rfq)(()=>qe)),t.rXU(t.aKT),t.rXU(e.R),t.rXU(t.SKi))};static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-sidenav-content"]],hostAttrs:[1,"mat-drawer-content","mat-sidenav-content"],hostVars:4,hostBindings:function(ce,fe){2&ce&&t.xc7("margin-left",fe._container._contentMargins.left,"px")("margin-right",fe._container._contentMargins.right,"px")},standalone:!0,features:[t.Jv_([{provide:e.uv,useExisting:se}]),t.Vt3,t.aNF],ngContentSelectors:ge,decls:1,vars:0,template:function(ce,fe){1&ce&&(t.NAR(),t.SdG(0))},encapsulation:2,changeDetection:0})}return se})(),ze=(()=>{class se extends N{constructor(){super(...arguments),this._fixedInViewport=!1,this._fixedTopGap=0,this._fixedBottomGap=0}get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(me){this._fixedInViewport=(0,x.he)(me)}get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(me){this._fixedTopGap=(0,x.OE)(me)}get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(me){this._fixedBottomGap=(0,x.OE)(me)}static#e=this.\u0275fac=(()=>{let me;return function(fe){return(me||(me=t.xGo(se)))(fe||se)}})();static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-sidenav"]],hostAttrs:["tabIndex","-1",1,"mat-drawer","mat-sidenav"],hostVars:17,hostBindings:function(ce,fe){2&ce&&(t.BMQ("align",null),t.xc7("top",fe.fixedInViewport?fe.fixedTopGap:null,"px")("bottom",fe.fixedInViewport?fe.fixedBottomGap:null,"px"),t.AVh("mat-drawer-end","end"===fe.position)("mat-drawer-over","over"===fe.mode)("mat-drawer-push","push"===fe.mode)("mat-drawer-side","side"===fe.mode)("mat-drawer-opened",fe.opened)("mat-sidenav-fixed",fe.fixedInViewport))},inputs:{fixedInViewport:"fixedInViewport",fixedTopGap:"fixedTopGap",fixedBottomGap:"fixedBottomGap"},exportAs:["matSidenav"],standalone:!0,features:[t.Vt3,t.aNF],ngContentSelectors:ge,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(ce,fe){1&ce&&(t.NAR(),t.j41(0,"div",1,0),t.SdG(2),t.k0s())},dependencies:[e.uv],encapsulation:2,data:{animation:[k.transformDrawer]},changeDetection:0})}return se})(),qe=(()=>{class se extends ne{constructor(){super(...arguments),this._allDrawers=void 0,this._content=void 0}static#e=this.\u0275fac=(()=>{let me;return function(fe){return(me||(me=t.xGo(se)))(fe||se)}})();static#t=this.\u0275cmp=t.VBU({type:se,selectors:[["mat-sidenav-container"]],contentQueries:function(ce,fe,ke){if(1&ce&&(t.wni(ke,Ee,5),t.wni(ke,ze,5)),2&ce){let mt;t.mGM(mt=t.lsd())&&(fe._content=mt.first),t.mGM(mt=t.lsd())&&(fe._allDrawers=mt)}},hostAttrs:[1,"mat-drawer-container","mat-sidenav-container"],hostVars:2,hostBindings:function(ce,fe){2&ce&&t.AVh("mat-drawer-container-explicit-backdrop",fe._backdropOverride)},exportAs:["matSidenavContainer"],standalone:!0,features:[t.Jv_([{provide:r,useExisting:se}]),t.Vt3,t.aNF],ngContentSelectors:c,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(ce,fe){1&ce&&(t.NAR(n),t.DNE(0,m,1,2,"div",0),t.SdG(1),t.SdG(2,1),t.DNE(3,h,2,0,"mat-sidenav-content")),2&ce&&(t.vxM(fe.hasBackdrop?0:-1),t.R7$(3),t.vxM(fe._content?-1:3))},dependencies:[Ee],styles:['.mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color);background-color:var(--mat-sidenav-content-background-color);box-sizing:border-box;-webkit-overflow-scrolling:touch;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible;background-color:var(--mat-sidenav-scrim-color)}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}.cdk-high-contrast-active .mat-drawer-backdrop{opacity:.5}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;color:var(--mat-sidenav-container-text-color);box-shadow:var(--mat-sidenav-container-elevation-shadow);background-color:var(--mat-sidenav-container-background-color);border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);width:var(--mat-sidenav-container-width);display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}.cdk-high-contrast-active .mat-drawer,.cdk-high-contrast-active [dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}.cdk-high-contrast-active [dir=rtl] .mat-drawer,.cdk-high-contrast-active .mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0);border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape);border-bottom-left-radius:var(--mat-sidenav-container-shape);border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape);border-bottom-right-radius:var(--mat-sidenav-container-shape);border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer[style*="visibility: hidden"]{display:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto;-webkit-overflow-scrolling:touch}.mat-sidenav-fixed{position:fixed}'],encapsulation:2,changeDetection:0})}return se})(),Ke=(()=>{class se{static#e=this.\u0275fac=function(ce){return new(ce||se)};static#t=this.\u0275mod=t.$C({type:se});static#i=this.\u0275inj=t.G2t({imports:[w.yE,e.Gj,e.Gj,w.yE]})}return se})()},450:(Qe,te,g)=>{"use strict";g.d(te,{mV:()=>$,sG:()=>F});var e=g(4438),t=g(9417),w=g(8617),S=g(6600);const l=["switch"],x=["*"];function f(j,Q){1&j&&(e.j41(0,"div",10),e.qSk(),e.j41(1,"svg",12),e.nrm(2,"path",13),e.k0s(),e.j41(3,"svg",14),e.nrm(4,"path",15),e.k0s()())}const I=new e.nKC("mat-slide-toggle-default-options",{providedIn:"root",factory:()=>({disableToggleValue:!1,hideIcon:!1})}),d={provide:t.kq,useExisting:(0,e.Rfq)(()=>F),multi:!0};class T{constructor(Q,J){this.source=Q,this.checked=J}}let y=0,F=(()=>{class j{_createChangeEvent(J){return new T(this,J)}get buttonId(){return`${this.id||this._uniqueId}-button`}focus(){this._switchElement.nativeElement.focus()}get checked(){return this._checked}set checked(J){this._checked=J,this._changeDetectorRef.markForCheck()}get inputId(){return`${this.id||this._uniqueId}-input`}constructor(J,ee,ie,ge,ae,Me){this._elementRef=J,this._focusMonitor=ee,this._changeDetectorRef=ie,this.defaults=ae,this._onChange=Te=>{},this._onTouched=()=>{},this._validatorOnChange=()=>{},this._checked=!1,this.name=null,this.labelPosition="after",this.ariaLabel=null,this.ariaLabelledby=null,this.disabled=!1,this.disableRipple=!1,this.tabIndex=0,this.change=new e.bkB,this.toggleChange=new e.bkB,this.tabIndex=parseInt(ge)||0,this.color=ae.color||"accent",this._noopAnimations="NoopAnimations"===Me,this.id=this._uniqueId="mat-mdc-slide-toggle-"+ ++y,this.hideIcon=ae.hideIcon??!1,this._labelId=this._uniqueId+"-label"}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(J=>{"keyboard"===J||"program"===J?(this._focused=!0,this._changeDetectorRef.markForCheck()):J||Promise.resolve().then(()=>{this._focused=!1,this._onTouched(),this._changeDetectorRef.markForCheck()})})}ngOnChanges(J){J.required&&this._validatorOnChange()}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}writeValue(J){this.checked=!!J}registerOnChange(J){this._onChange=J}registerOnTouched(J){this._onTouched=J}validate(J){return this.required&&!0!==J.value?{required:!0}:null}registerOnValidatorChange(J){this._validatorOnChange=J}setDisabledState(J){this.disabled=J,this._changeDetectorRef.markForCheck()}toggle(){this.checked=!this.checked,this._onChange(this.checked)}_emitChangeEvent(){this._onChange(this.checked),this.change.emit(this._createChangeEvent(this.checked))}_handleClick(){this.toggleChange.emit(),this.defaults.disableToggleValue||(this.checked=!this.checked,this._onChange(this.checked),this.change.emit(new T(this,this.checked)))}_getAriaLabelledBy(){return this.ariaLabelledby?this.ariaLabelledby:this.ariaLabel?null:this._labelId}static#e=this.\u0275fac=function(ee){return new(ee||j)(e.rXU(e.aKT),e.rXU(w.FN),e.rXU(e.gRc),e.kS0("tabindex"),e.rXU(I),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:j,selectors:[["mat-slide-toggle"]],viewQuery:function(ee,ie){if(1&ee&&e.GBs(l,5),2&ee){let ge;e.mGM(ge=e.lsd())&&(ie._switchElement=ge.first)}},hostAttrs:[1,"mat-mdc-slide-toggle"],hostVars:13,hostBindings:function(ee,ie){2&ee&&(e.Mr5("id",ie.id),e.BMQ("tabindex",null)("aria-label",null)("name",null)("aria-labelledby",null),e.HbH(ie.color?"mat-"+ie.color:""),e.AVh("mat-mdc-slide-toggle-focused",ie._focused)("mat-mdc-slide-toggle-checked",ie.checked)("_mat-animation-noopable",ie._noopAnimations))},inputs:{name:"name",id:"id",labelPosition:"labelPosition",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],required:[2,"required","required",e.L39],color:"color",disabled:[2,"disabled","disabled",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",J=>null==J?0:(0,e.Udg)(J)],checked:[2,"checked","checked",e.L39],hideIcon:[2,"hideIcon","hideIcon",e.L39]},outputs:{change:"change",toggleChange:"toggleChange"},exportAs:["matSlideToggle"],standalone:!0,features:[e.Jv_([d,{provide:t.cz,useExisting:j,multi:!0}]),e.GFd,e.OA$,e.aNF],ngContentSelectors:x,decls:13,vars:24,consts:[["switch",""],["mat-internal-form-field","",3,"labelPosition"],["role","switch","type","button",1,"mdc-switch",3,"click","tabIndex","disabled"],[1,"mdc-switch__track"],[1,"mdc-switch__handle-track"],[1,"mdc-switch__handle"],[1,"mdc-switch__shadow"],[1,"mdc-elevation-overlay"],[1,"mdc-switch__ripple"],["mat-ripple","",1,"mat-mdc-slide-toggle-ripple","mat-mdc-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-switch__icons"],[1,"mdc-label",3,"click","for"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--on"],["d","M19.69,5.23L8.96,15.96l-4.23-4.23L2.96,13.5l6,6L21.46,7L19.69,5.23z"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--off"],["d","M20 13H4v-2h16v2z"]],template:function(ee,ie){if(1&ee){const ge=e.RV6();e.NAR(),e.j41(0,"div",1)(1,"button",2,0),e.bIt("click",function(){return e.eBV(ge),e.Njj(ie._handleClick())}),e.nrm(3,"div",3),e.j41(4,"div",4)(5,"div",5)(6,"div",6),e.nrm(7,"div",7),e.k0s(),e.j41(8,"div",8),e.nrm(9,"div",9),e.k0s(),e.DNE(10,f,5,0,"div",10),e.k0s()()(),e.j41(11,"label",11),e.bIt("click",function(Me){return e.eBV(ge),e.Njj(Me.stopPropagation())}),e.SdG(12),e.k0s()()}if(2&ee){const ge=e.sdS(2);e.Y8G("labelPosition",ie.labelPosition),e.R7$(),e.AVh("mdc-switch--selected",ie.checked)("mdc-switch--unselected",!ie.checked)("mdc-switch--checked",ie.checked)("mdc-switch--disabled",ie.disabled),e.Y8G("tabIndex",ie.disabled?-1:ie.tabIndex)("disabled",ie.disabled),e.BMQ("id",ie.buttonId)("name",ie.name)("aria-label",ie.ariaLabel)("aria-labelledby",ie._getAriaLabelledBy())("aria-describedby",ie.ariaDescribedby)("aria-required",ie.required||null)("aria-checked",ie.checked),e.R7$(8),e.Y8G("matRippleTrigger",ge)("matRippleDisabled",ie.disableRipple||ie.disabled)("matRippleCentered",!0),e.R7$(),e.vxM(ie.hideIcon?-1:10),e.R7$(),e.Y8G("for",ie.buttonId),e.BMQ("id",ie._labelId)}},dependencies:[S.r6,S.tO],styles:['.mdc-elevation-overlay{position:absolute;border-radius:inherit;pointer-events:none;opacity:var(--mdc-elevation-overlay-opacity);transition:opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);background-color:var(--mdc-elevation-overlay-color)}.mdc-switch{align-items:center;background:none;border:none;cursor:pointer;display:inline-flex;flex-shrink:0;margin:0;outline:none;overflow:visible;padding:0;position:relative}.mdc-switch[hidden]{display:none}.mdc-switch:disabled{cursor:default;pointer-events:none}.mdc-switch__track{overflow:hidden;position:relative;width:100%}.mdc-switch__track::before,.mdc-switch__track::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";height:100%;left:0;position:absolute;width:100%}@media screen and (forced-colors: active){.mdc-switch__track::before,.mdc-switch__track::after{border-color:currentColor}}.mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0)}.mdc-switch__track::after{transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);transform:translateX(-100%)}[dir=rtl] .mdc-switch__track::after,.mdc-switch__track[dir=rtl]::after{transform:translateX(100%)}.mdc-switch--selected .mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch__track::before,.mdc-switch--selected .mdc-switch__track[dir=rtl]::before{transform:translateX(-100%)}.mdc-switch--selected .mdc-switch__track::after{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0)}.mdc-switch__handle-track{height:100%;pointer-events:none;position:absolute;top:0;transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);left:0;right:auto;transform:translateX(0)}[dir=rtl] .mdc-switch__handle-track,.mdc-switch__handle-track[dir=rtl]{left:auto;right:0}.mdc-switch--selected .mdc-switch__handle-track{transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch__handle-track,.mdc-switch--selected .mdc-switch__handle-track[dir=rtl]{transform:translateX(-100%)}.mdc-switch__handle{display:flex;pointer-events:auto;position:absolute;top:50%;transform:translateY(-50%);left:0;right:auto}[dir=rtl] .mdc-switch__handle,.mdc-switch__handle[dir=rtl]{left:auto;right:0}.mdc-switch__handle::before,.mdc-switch__handle::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";width:100%;height:100%;left:0;position:absolute;top:0;transition:background-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1),border-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);z-index:-1}@media screen and (forced-colors: active){.mdc-switch__handle::before,.mdc-switch__handle::after{border-color:currentColor}}.mdc-switch__shadow{border-radius:inherit;bottom:0;left:0;position:absolute;right:0;top:0}.mdc-elevation-overlay{bottom:0;left:0;right:0;top:0}.mdc-switch__ripple{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);z-index:-1}.mdc-switch:disabled .mdc-switch__ripple{display:none}.mdc-switch__icons{height:100%;position:relative;width:100%;z-index:1}.mdc-switch__icon{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;opacity:0;transition:opacity 30ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-switch--selected .mdc-switch__icon--on,.mdc-switch--unselected .mdc-switch__icon--off{opacity:1;transition:opacity 45ms 30ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle .mdc-switch--disabled+label{color:var(--mdc-switch-disabled-label-text-color)}.mdc-switch{width:var(--mdc-switch-track-width)}.mdc-switch.mdc-switch--selected:enabled .mdc-switch__handle::after{background:var(--mdc-switch-selected-handle-color)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-selected-hover-handle-color)}.mdc-switch.mdc-switch--selected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-selected-focus-handle-color)}.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__handle::after{background:var(--mdc-switch-selected-pressed-handle-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__handle::after{background:var(--mdc-switch-disabled-selected-handle-color)}.mdc-switch.mdc-switch--unselected:enabled .mdc-switch__handle::after{background:var(--mdc-switch-unselected-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-unselected-hover-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mdc-switch-unselected-focus-handle-color)}.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__handle::after{background:var(--mdc-switch-unselected-pressed-handle-color)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__handle::after{background:var(--mdc-switch-disabled-unselected-handle-color)}.mdc-switch .mdc-switch__handle::before{background:var(--mdc-switch-handle-surface-color)}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-handle-elevation)}.mdc-switch:disabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-disabled-handle-elevation)}.mdc-switch .mdc-switch__focus-ring-wrapper,.mdc-switch .mdc-switch__handle{height:var(--mdc-switch-handle-height)}.mdc-switch .mdc-switch__handle{border-radius:var(--mdc-switch-handle-shape)}.mdc-switch .mdc-switch__handle{width:var(--mdc-switch-handle-width)}.mdc-switch .mdc-switch__handle-track{width:calc(100% - var(--mdc-switch-handle-width))}.mdc-switch.mdc-switch--selected:enabled .mdc-switch__icon{fill:var(--mdc-switch-selected-icon-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icon{fill:var(--mdc-switch-disabled-selected-icon-color)}.mdc-switch.mdc-switch--unselected:enabled .mdc-switch__icon{fill:var(--mdc-switch-unselected-icon-color)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__icon{fill:var(--mdc-switch-disabled-unselected-icon-color)}.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icons{opacity:var(--mdc-switch-disabled-selected-icon-opacity)}.mdc-switch.mdc-switch--unselected:disabled .mdc-switch__icons{opacity:var(--mdc-switch-disabled-unselected-icon-opacity)}.mdc-switch.mdc-switch--selected .mdc-switch__icon{width:var(--mdc-switch-selected-icon-size);height:var(--mdc-switch-selected-icon-size)}.mdc-switch.mdc-switch--unselected .mdc-switch__icon{width:var(--mdc-switch-unselected-icon-size);height:var(--mdc-switch-unselected-icon-size)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-hover-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:focus .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:focus .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-focus-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:active .mdc-switch__ripple::after{background-color:var(--mdc-switch-selected-pressed-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-hover-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-focus-state-layer-color)}.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:active .mdc-switch__ripple::after{background-color:var(--mdc-switch-unselected-pressed-state-layer-color)}.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus):hover .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:hover:not(:focus).mdc-ripple-surface--hover .mdc-switch__ripple::before{opacity:var(--mdc-switch-selected-hover-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:focus.mdc-ripple-upgraded--background-focused .mdc-switch__ripple::before,.mdc-switch.mdc-switch--selected:enabled:focus:not(.mdc-ripple-upgraded):focus .mdc-switch__ripple::before{transition-duration:75ms;opacity:var(--mdc-switch-selected-focus-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:active:not(.mdc-ripple-upgraded) .mdc-switch__ripple::after{transition:opacity 150ms linear}.mdc-switch.mdc-switch--selected:enabled:active:not(.mdc-ripple-upgraded):active .mdc-switch__ripple::after{transition-duration:75ms;opacity:var(--mdc-switch-selected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--selected:enabled:active.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-switch-selected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus):hover .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:hover:not(:focus).mdc-ripple-surface--hover .mdc-switch__ripple::before{opacity:var(--mdc-switch-unselected-hover-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:focus.mdc-ripple-upgraded--background-focused .mdc-switch__ripple::before,.mdc-switch.mdc-switch--unselected:enabled:focus:not(.mdc-ripple-upgraded):focus .mdc-switch__ripple::before{transition-duration:75ms;opacity:var(--mdc-switch-unselected-focus-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:active:not(.mdc-ripple-upgraded) .mdc-switch__ripple::after{transition:opacity 150ms linear}.mdc-switch.mdc-switch--unselected:enabled:active:not(.mdc-ripple-upgraded):active .mdc-switch__ripple::after{transition-duration:75ms;opacity:var(--mdc-switch-unselected-pressed-state-layer-opacity)}.mdc-switch.mdc-switch--unselected:enabled:active.mdc-ripple-upgraded{--mdc-ripple-fg-opacity:var(--mdc-switch-unselected-pressed-state-layer-opacity)}.mdc-switch .mdc-switch__ripple{height:var(--mdc-switch-state-layer-size);width:var(--mdc-switch-state-layer-size)}.mdc-switch .mdc-switch__track{height:var(--mdc-switch-track-height)}.mdc-switch:disabled .mdc-switch__track{opacity:var(--mdc-switch-disabled-track-opacity)}.mdc-switch:enabled .mdc-switch__track::after{background:var(--mdc-switch-selected-track-color)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::after{background:var(--mdc-switch-selected-hover-track-color)}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::after{background:var(--mdc-switch-selected-focus-track-color)}.mdc-switch:enabled:active .mdc-switch__track::after{background:var(--mdc-switch-selected-pressed-track-color)}.mdc-switch:disabled .mdc-switch__track::after{background:var(--mdc-switch-disabled-selected-track-color)}.mdc-switch:enabled .mdc-switch__track::before{background:var(--mdc-switch-unselected-track-color)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::before{background:var(--mdc-switch-unselected-hover-track-color)}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::before{background:var(--mdc-switch-unselected-focus-track-color)}.mdc-switch:enabled:active .mdc-switch__track::before{background:var(--mdc-switch-unselected-pressed-track-color)}.mdc-switch:disabled .mdc-switch__track::before{background:var(--mdc-switch-disabled-unselected-track-color)}.mdc-switch .mdc-switch__track{border-radius:var(--mdc-switch-track-shape)}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-handle-elevation-shadow)}.mdc-switch:disabled .mdc-switch__shadow{box-shadow:var(--mdc-switch-disabled-handle-elevation-shadow)}.mat-mdc-slide-toggle{display:inline-block;-webkit-tap-highlight-color:rgba(0,0,0,0);outline:0}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple,.mat-mdc-slide-toggle .mdc-switch__ripple::after{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple:not(:empty),.mat-mdc-slide-toggle .mdc-switch__ripple::after:not(:empty){transform:translateZ(0)}.mat-mdc-slide-toggle .mdc-switch__ripple::after{content:"";opacity:0}.mat-mdc-slide-toggle .mdc-switch:hover .mdc-switch__ripple::after{opacity:.04;transition:opacity 75ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mdc-switch .mdc-switch__ripple::after{opacity:.12}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mat-mdc-focus-indicator::before{content:""}.mat-mdc-slide-toggle .mat-ripple-element{opacity:.12}.mat-mdc-slide-toggle .mat-mdc-focus-indicator::before{border-radius:50%}.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle-track,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-elevation-overlay,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__icon,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::after,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::after{transition:none}.mat-mdc-slide-toggle .mdc-switch:enabled+.mdc-label{cursor:pointer}.mdc-switch__handle{transition:width 75ms cubic-bezier(0.4, 0, 0.2, 1),height 75ms cubic-bezier(0.4, 0, 0.2, 1),margin 75ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-switch--selected .mdc-switch__track::before{opacity:var(--mat-switch-hidden-track-opacity);transition:var(--mat-switch-hidden-track-transition)}.mdc-switch--selected .mdc-switch__track::after{opacity:var(--mat-switch-visible-track-opacity);transition:var(--mat-switch-visible-track-transition)}.mdc-switch--unselected .mdc-switch__track::before{opacity:var(--mat-switch-visible-track-opacity);transition:var(--mat-switch-visible-track-transition)}.mdc-switch--unselected .mdc-switch__track::after{opacity:var(--mat-switch-hidden-track-opacity);transition:var(--mat-switch-hidden-track-transition)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle{width:var(--mat-switch-unselected-handle-size);height:var(--mat-switch-unselected-handle-size)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle{width:var(--mat-switch-selected-handle-size);height:var(--mat-switch-selected-handle-size)}.mat-mdc-slide-toggle .mdc-switch__handle:has(.mdc-switch__icons){width:var(--mat-switch-with-icon-handle-size);height:var(--mat-switch-with-icon-handle-size)}.mat-mdc-slide-toggle:active .mdc-switch:not(.mdc-switch--disabled) .mdc-switch__handle{width:var(--mat-switch-pressed-handle-size);height:var(--mat-switch-pressed-handle-size)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle{margin:var(--mat-switch-selected-handle-horizontal-margin)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-switch-selected-with-icon-handle-horizontal-margin)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle{margin:var(--mat-switch-unselected-handle-horizontal-margin)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-switch-unselected-with-icon-handle-horizontal-margin)}.mat-mdc-slide-toggle:active .mdc-switch--selected:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-switch-selected-pressed-handle-horizontal-margin)}.mat-mdc-slide-toggle:active .mdc-switch--unselected:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-switch-unselected-pressed-handle-horizontal-margin)}.mdc-switch__track::after,.mdc-switch__track::before{border-width:var(--mat-switch-track-outline-width);border-color:var(--mat-switch-track-outline-color)}.mdc-switch--selected .mdc-switch__track::after,.mdc-switch--selected .mdc-switch__track::before{border-width:var(--mat-switch-selected-track-outline-width)}.mdc-switch--disabled .mdc-switch__track::after,.mdc-switch--disabled .mdc-switch__track::before{border-width:var(--mat-switch-disabled-unselected-track-outline-width);border-color:var(--mat-switch-disabled-unselected-track-outline-color)}.mdc-switch--disabled.mdc-switch--selected .mdc-switch__handle::after{opacity:var(--mat-switch-disabled-selected-handle-opacity)}.mdc-switch--disabled.mdc-switch--unselected .mdc-switch__handle::after{opacity:var(--mat-switch-disabled-unselected-handle-opacity)}'],encapsulation:2,changeDetection:0})}return j})(),$=(()=>{class j{static#e=this.\u0275fac=function(ee){return new(ee||j)};static#t=this.\u0275mod=e.$C({type:j});static#i=this.\u0275inj=e.G2t({imports:[F,S.yE,S.yE]})}return j})()},5416:(Qe,te,g)=>{"use strict";g.d(te,{UG:()=>c,_T:()=>h,x6:()=>n});var e=g(4438),t=g(8834),w=g(1413),S=g(177),l=g(9969),x=g(6939),f=g(6860),I=g(8617),d=g(9327),T=g(6969),y=g(6977),F=g(6600);function R(C,k){if(1&C){const L=e.RV6();e.j41(0,"div",1)(1,"button",2),e.bIt("click",function(){e.eBV(L);const r=e.XpG();return e.Njj(r.action())}),e.EFF(2),e.k0s()()}if(2&C){const L=e.XpG();e.R7$(2),e.SpI(" ",L.data.action," ")}}const z=["label"];function W(C,k){}const $=Math.pow(2,31)-1;class j{constructor(k,L){this._overlayRef=L,this._afterDismissed=new w.B,this._afterOpened=new w.B,this._onAction=new w.B,this._dismissedByAction=!1,this.containerInstance=k,k._onExit.subscribe(()=>this._finishDismiss())}dismiss(){this._afterDismissed.closed||this.containerInstance.exit(),clearTimeout(this._durationTimeoutId)}dismissWithAction(){this._onAction.closed||(this._dismissedByAction=!0,this._onAction.next(),this._onAction.complete(),this.dismiss()),clearTimeout(this._durationTimeoutId)}closeWithAction(){this.dismissWithAction()}_dismissAfter(k){this._durationTimeoutId=setTimeout(()=>this.dismiss(),Math.min(k,$))}_open(){this._afterOpened.closed||(this._afterOpened.next(),this._afterOpened.complete())}_finishDismiss(){this._overlayRef.dispose(),this._onAction.closed||this._onAction.complete(),this._afterDismissed.next({dismissedByAction:this._dismissedByAction}),this._afterDismissed.complete(),this._dismissedByAction=!1}afterDismissed(){return this._afterDismissed}afterOpened(){return this.containerInstance._onEnter}onAction(){return this._onAction}}const Q=new e.nKC("MatSnackBarData");class J{constructor(){this.politeness="assertive",this.announcementMessage="",this.duration=0,this.data=null,this.horizontalPosition="center",this.verticalPosition="bottom"}}let ee=(()=>{class C{static#e=this.\u0275fac=function(_){return new(_||C)};static#t=this.\u0275dir=e.FsC({type:C,selectors:[["","matSnackBarLabel",""]],hostAttrs:[1,"mat-mdc-snack-bar-label","mdc-snackbar__label"],standalone:!0})}return C})(),ie=(()=>{class C{static#e=this.\u0275fac=function(_){return new(_||C)};static#t=this.\u0275dir=e.FsC({type:C,selectors:[["","matSnackBarActions",""]],hostAttrs:[1,"mat-mdc-snack-bar-actions","mdc-snackbar__actions"],standalone:!0})}return C})(),ge=(()=>{class C{static#e=this.\u0275fac=function(_){return new(_||C)};static#t=this.\u0275dir=e.FsC({type:C,selectors:[["","matSnackBarAction",""]],hostAttrs:[1,"mat-mdc-snack-bar-action","mdc-snackbar__action"],standalone:!0})}return C})(),ae=(()=>{class C{constructor(L,_){this.snackBarRef=L,this.data=_}action(){this.snackBarRef.dismissWithAction()}get hasAction(){return!!this.data.action}static#e=this.\u0275fac=function(_){return new(_||C)(e.rXU(j),e.rXU(Q))};static#t=this.\u0275cmp=e.VBU({type:C,selectors:[["simple-snack-bar"]],hostAttrs:[1,"mat-mdc-simple-snack-bar"],exportAs:["matSnackBar"],standalone:!0,features:[e.aNF],decls:3,vars:2,consts:[["matSnackBarLabel",""],["matSnackBarActions",""],["mat-button","","matSnackBarAction","",3,"click"]],template:function(_,r){1&_&&(e.j41(0,"div",0),e.EFF(1),e.k0s(),e.DNE(2,R,3,1,"div",1)),2&_&&(e.R7$(),e.SpI(" ",r.data.message,"\n"),e.R7$(),e.vxM(r.hasAction?2:-1))},dependencies:[t.$z,ee,ie,ge],styles:[".mat-mdc-simple-snack-bar{display:flex}"],encapsulation:2,changeDetection:0})}return C})();const Me={snackBarState:(0,l.hZ)("state",[(0,l.wk)("void, hidden",(0,l.iF)({transform:"scale(0.8)",opacity:0})),(0,l.wk)("visible",(0,l.iF)({transform:"scale(1)",opacity:1})),(0,l.kY)("* => visible",(0,l.i0)("150ms cubic-bezier(0, 0, 0.2, 1)")),(0,l.kY)("* => void, * => hidden",(0,l.i0)("75ms cubic-bezier(0.4, 0.0, 1, 1)",(0,l.iF)({opacity:0})))])};let Te=0,de=(()=>{class C extends x.lb{constructor(L,_,r,v,V){super(),this._ngZone=L,this._elementRef=_,this._changeDetectorRef=r,this._platform=v,this.snackBarConfig=V,this._document=(0,e.WQX)(S.qQ),this._trackedModals=new Set,this._announceDelay=150,this._destroyed=!1,this._onAnnounce=new w.B,this._onExit=new w.B,this._onEnter=new w.B,this._animationState="void",this._liveElementId="mat-snack-bar-container-live-"+Te++,this.attachDomPortal=N=>{this._assertNotAttached();const ne=this._portalOutlet.attachDomPortal(N);return this._afterPortalAttached(),ne},this._live="assertive"!==V.politeness||V.announcementMessage?"off"===V.politeness?"off":"polite":"assertive",this._platform.FIREFOX&&("polite"===this._live&&(this._role="status"),"assertive"===this._live&&(this._role="alert"))}attachComponentPortal(L){this._assertNotAttached();const _=this._portalOutlet.attachComponentPortal(L);return this._afterPortalAttached(),_}attachTemplatePortal(L){this._assertNotAttached();const _=this._portalOutlet.attachTemplatePortal(L);return this._afterPortalAttached(),_}onAnimationEnd(L){const{fromState:_,toState:r}=L;if(("void"===r&&"void"!==_||"hidden"===r)&&this._completeExit(),"visible"===r){const v=this._onEnter;this._ngZone.run(()=>{v.next(),v.complete()})}}enter(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.markForCheck(),this._changeDetectorRef.detectChanges(),this._screenReaderAnnounce())}exit(){return this._ngZone.run(()=>{this._animationState="hidden",this._changeDetectorRef.markForCheck(),this._elementRef.nativeElement.setAttribute("mat-exit",""),clearTimeout(this._announceTimeoutId)}),this._onExit}ngOnDestroy(){this._destroyed=!0,this._clearFromModals(),this._completeExit()}_completeExit(){queueMicrotask(()=>{this._onExit.next(),this._onExit.complete()})}_afterPortalAttached(){const L=this._elementRef.nativeElement,_=this.snackBarConfig.panelClass;_&&(Array.isArray(_)?_.forEach(V=>L.classList.add(V)):L.classList.add(_)),this._exposeToModals();const r=this._label.nativeElement,v="mdc-snackbar__label";r.classList.toggle(v,!r.querySelector(`.${v}`))}_exposeToModals(){const L=this._liveElementId,_=this._document.querySelectorAll('body > .cdk-overlay-container [aria-modal="true"]');for(let r=0;r<_.length;r++){const v=_[r],V=v.getAttribute("aria-owns");this._trackedModals.add(v),V?-1===V.indexOf(L)&&v.setAttribute("aria-owns",V+" "+L):v.setAttribute("aria-owns",L)}}_clearFromModals(){this._trackedModals.forEach(L=>{const _=L.getAttribute("aria-owns");if(_){const r=_.replace(this._liveElementId,"").trim();r.length>0?L.setAttribute("aria-owns",r):L.removeAttribute("aria-owns")}}),this._trackedModals.clear()}_assertNotAttached(){this._portalOutlet.hasAttached()}_screenReaderAnnounce(){this._announceTimeoutId||this._ngZone.runOutsideAngular(()=>{this._announceTimeoutId=setTimeout(()=>{const L=this._elementRef.nativeElement.querySelector("[aria-hidden]"),_=this._elementRef.nativeElement.querySelector("[aria-live]");if(L&&_){let r=null;this._platform.isBrowser&&document.activeElement instanceof HTMLElement&&L.contains(document.activeElement)&&(r=document.activeElement),L.removeAttribute("aria-hidden"),_.appendChild(L),r?.focus(),this._onAnnounce.next(),this._onAnnounce.complete()}},this._announceDelay)})}static#e=this.\u0275fac=function(_){return new(_||C)(e.rXU(e.SKi),e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(f.OD),e.rXU(J))};static#t=this.\u0275cmp=e.VBU({type:C,selectors:[["mat-snack-bar-container"]],viewQuery:function(_,r){if(1&_&&(e.GBs(x.I3,7),e.GBs(z,7)),2&_){let v;e.mGM(v=e.lsd())&&(r._portalOutlet=v.first),e.mGM(v=e.lsd())&&(r._label=v.first)}},hostAttrs:[1,"mdc-snackbar","mat-mdc-snack-bar-container","mdc-snackbar--open"],hostVars:1,hostBindings:function(_,r){1&_&&e.Kam("@state.done",function(V){return r.onAnimationEnd(V)}),2&_&&e.zvX("@state",r._animationState)},standalone:!0,features:[e.Vt3,e.aNF],decls:6,vars:3,consts:[["label",""],[1,"mdc-snackbar__surface"],[1,"mat-mdc-snack-bar-label"],["aria-hidden","true"],["cdkPortalOutlet",""]],template:function(_,r){1&_&&(e.j41(0,"div",1)(1,"div",2,0)(3,"div",3),e.DNE(4,W,0,0,"ng-template",4),e.k0s(),e.nrm(5,"div"),e.k0s()()),2&_&&(e.R7$(5),e.BMQ("aria-live",r._live)("role",r._role)("id",r._liveElementId))},dependencies:[x.I3],styles:['.mdc-snackbar{display:none;position:fixed;right:0;bottom:0;left:0;align-items:center;justify-content:center;box-sizing:border-box;pointer-events:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mdc-snackbar--opening,.mdc-snackbar--open,.mdc-snackbar--closing{display:flex}.mdc-snackbar--open .mdc-snackbar__label,.mdc-snackbar--open .mdc-snackbar__actions{visibility:visible}.mdc-snackbar__surface{padding-left:0;padding-right:8px;display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;transform:scale(0.8);opacity:0}.mdc-snackbar__surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-snackbar__surface::before{border-color:CanvasText}}[dir=rtl] .mdc-snackbar__surface,.mdc-snackbar__surface[dir=rtl]{padding-left:8px;padding-right:0}.mdc-snackbar--open .mdc-snackbar__surface{transform:scale(1);opacity:1;pointer-events:auto}.mdc-snackbar--closing .mdc-snackbar__surface{transform:scale(1)}.mdc-snackbar__label{padding-left:16px;padding-right:8px;width:100%;flex-grow:1;box-sizing:border-box;margin:0;visibility:hidden;padding-top:14px;padding-bottom:14px}[dir=rtl] .mdc-snackbar__label,.mdc-snackbar__label[dir=rtl]{padding-left:8px;padding-right:16px}.mdc-snackbar__label::before{display:inline;content:attr(data-mdc-snackbar-label-text)}.mdc-snackbar__actions{display:flex;flex-shrink:0;align-items:center;box-sizing:border-box;visibility:hidden}.mdc-snackbar__action+.mdc-snackbar__dismiss{margin-left:8px;margin-right:0}[dir=rtl] .mdc-snackbar__action+.mdc-snackbar__dismiss,.mdc-snackbar__action+.mdc-snackbar__dismiss[dir=rtl]{margin-left:0;margin-right:8px}.mat-mdc-snack-bar-container{margin:8px;position:static}.mat-mdc-snack-bar-container .mdc-snackbar__surface{min-width:344px}@media(max-width: 480px),(max-width: 344px){.mat-mdc-snack-bar-container .mdc-snackbar__surface{min-width:100%}}@media(max-width: 480px),(max-width: 344px){.mat-mdc-snack-bar-container{width:100vw}}.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:672px}.mat-mdc-snack-bar-container .mdc-snackbar__surface{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-mdc-snack-bar-container .mdc-snackbar__surface{background-color:var(--mdc-snackbar-container-color)}.mat-mdc-snack-bar-container .mdc-snackbar__surface{border-radius:var(--mdc-snackbar-container-shape)}.mat-mdc-snack-bar-container .mdc-snackbar__label{color:var(--mdc-snackbar-supporting-text-color)}.mat-mdc-snack-bar-container .mdc-snackbar__label{font-size:var(--mdc-snackbar-supporting-text-size);font-family:var(--mdc-snackbar-supporting-text-font);font-weight:var(--mdc-snackbar-supporting-text-weight);line-height:var(--mdc-snackbar-supporting-text-line-height)}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled){color:var(--mat-snack-bar-button-color);--mat-text-button-state-layer-color:currentColor;--mat-text-button-ripple-color:currentColor}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled) .mat-ripple-element{opacity:.1}.mat-mdc-snack-bar-container .mdc-snackbar__label::before{display:none}.mat-mdc-snack-bar-handset,.mat-mdc-snack-bar-container,.mat-mdc-snack-bar-label{flex:1 1 auto}.mat-mdc-snack-bar-handset .mdc-snackbar__surface{width:100%}'],encapsulation:2,data:{animation:[Me.snackBarState]}})}return C})();const n=new e.nKC("mat-snack-bar-default-options",{providedIn:"root",factory:function D(){return new J}});let c=(()=>{class C{get _openedSnackBarRef(){const L=this._parentSnackBar;return L?L._openedSnackBarRef:this._snackBarRefAtThisLevel}set _openedSnackBarRef(L){this._parentSnackBar?this._parentSnackBar._openedSnackBarRef=L:this._snackBarRefAtThisLevel=L}constructor(L,_,r,v,V,N){this._overlay=L,this._live=_,this._injector=r,this._breakpointObserver=v,this._parentSnackBar=V,this._defaultConfig=N,this._snackBarRefAtThisLevel=null,this.simpleSnackBarComponent=ae,this.snackBarContainerComponent=de,this.handsetCssClass="mat-mdc-snack-bar-handset"}openFromComponent(L,_){return this._attach(L,_)}openFromTemplate(L,_){return this._attach(L,_)}open(L,_="",r){const v={...this._defaultConfig,...r};return v.data={message:L,action:_},v.announcementMessage===L&&(v.announcementMessage=void 0),this.openFromComponent(this.simpleSnackBarComponent,v)}dismiss(){this._openedSnackBarRef&&this._openedSnackBarRef.dismiss()}ngOnDestroy(){this._snackBarRefAtThisLevel&&this._snackBarRefAtThisLevel.dismiss()}_attachSnackBarContainer(L,_){const v=e.zZn.create({parent:_&&_.viewContainerRef&&_.viewContainerRef.injector||this._injector,providers:[{provide:J,useValue:_}]}),V=new x.A8(this.snackBarContainerComponent,_.viewContainerRef,v),N=L.attach(V);return N.instance.snackBarConfig=_,N.instance}_attach(L,_){const r={...new J,...this._defaultConfig,..._},v=this._createOverlay(r),V=this._attachSnackBarContainer(v,r),N=new j(V,v);if(L instanceof e.C4Q){const ne=new x.VA(L,null,{$implicit:r.data,snackBarRef:N});N.instance=V.attachTemplatePortal(ne)}else{const ne=this._createInjector(r,N),Ee=new x.A8(L,void 0,ne),ze=V.attachComponentPortal(Ee);N.instance=ze.instance}return this._breakpointObserver.observe(d.Rp.HandsetPortrait).pipe((0,y.Q)(v.detachments())).subscribe(ne=>{v.overlayElement.classList.toggle(this.handsetCssClass,ne.matches)}),r.announcementMessage&&V._onAnnounce.subscribe(()=>{this._live.announce(r.announcementMessage,r.politeness)}),this._animateSnackBar(N,r),this._openedSnackBarRef=N,this._openedSnackBarRef}_animateSnackBar(L,_){L.afterDismissed().subscribe(()=>{this._openedSnackBarRef==L&&(this._openedSnackBarRef=null),_.announcementMessage&&this._live.clear()}),this._openedSnackBarRef?(this._openedSnackBarRef.afterDismissed().subscribe(()=>{L.containerInstance.enter()}),this._openedSnackBarRef.dismiss()):L.containerInstance.enter(),_.duration&&_.duration>0&&L.afterOpened().subscribe(()=>L._dismissAfter(_.duration))}_createOverlay(L){const _=new T.rR;_.direction=L.direction;let r=this._overlay.position().global();const v="rtl"===L.direction,V="left"===L.horizontalPosition||"start"===L.horizontalPosition&&!v||"end"===L.horizontalPosition&&v,N=!V&&"center"!==L.horizontalPosition;return V?r.left("0"):N?r.right("0"):r.centerHorizontally(),"top"===L.verticalPosition?r.top("0"):r.bottom("0"),_.positionStrategy=r,this._overlay.create(_)}_createInjector(L,_){return e.zZn.create({parent:L&&L.viewContainerRef&&L.viewContainerRef.injector||this._injector,providers:[{provide:j,useValue:_},{provide:Q,useValue:L.data}]})}static#e=this.\u0275fac=function(_){return new(_||C)(e.KVO(T.hJ),e.KVO(I.Ai),e.KVO(e.zZn),e.KVO(d.QP),e.KVO(C,12),e.KVO(n))};static#t=this.\u0275prov=e.jDH({token:C,factory:C.\u0275fac,providedIn:"root"})}return C})(),h=(()=>{class C{static#e=this.\u0275fac=function(_){return new(_||C)};static#t=this.\u0275mod=e.$C({type:C});static#i=this.\u0275inj=e.G2t({providers:[c],imports:[T.z_,x.jc,t.Hl,F.yE,ae,F.yE]})}return C})()},2042:(Qe,te,g)=>{"use strict";g.d(te,{B4:()=>j,NQ:()=>Te,aE:()=>Me});var e=g(4438),t=g(8617),w=g(7336),S=g(2771),l=g(1413),x=g(7786),f=g(9969),I=g(6600);const d=["mat-sort-header",""],T=["*"];function y(de,D){if(1&de){const n=e.RV6();e.j41(0,"div",2),e.bIt("@arrowPosition.start",function(){e.eBV(n);const m=e.XpG();return e.Njj(m._disableViewStateAnimation=!0)})("@arrowPosition.done",function(){e.eBV(n);const m=e.XpG();return e.Njj(m._disableViewStateAnimation=!1)}),e.nrm(1,"div",3),e.j41(2,"div",4),e.nrm(3,"div",5)(4,"div",6)(5,"div",7),e.k0s()()}if(2&de){const n=e.XpG();e.Y8G("@arrowOpacity",n._getArrowViewState())("@arrowPosition",n._getArrowViewState())("@allowChildren",n._getArrowDirectionState()),e.R7$(2),e.Y8G("@indicator",n._getArrowDirectionState()),e.R7$(),e.Y8G("@leftPointer",n._getArrowDirectionState()),e.R7$(),e.Y8G("@rightPointer",n._getArrowDirectionState())}}const $=new e.nKC("MAT_SORT_DEFAULT_OPTIONS");let j=(()=>{class de{get direction(){return this._direction}set direction(n){this._direction=n}constructor(n){this._defaultOptions=n,this._initializedStream=new S.m(1),this.sortables=new Map,this._stateChanges=new l.B,this.start="asc",this._direction="",this.disabled=!1,this.sortChange=new e.bkB,this.initialized=this._initializedStream}register(n){this.sortables.set(n.id,n)}deregister(n){this.sortables.delete(n.id)}sort(n){this.active!=n.id?(this.active=n.id,this.direction=n.start?n.start:this.start):this.direction=this.getNextSortDirection(n),this.sortChange.emit({active:this.active,direction:this.direction})}getNextSortDirection(n){if(!n)return"";let m=function Q(de,D){let n=["asc","desc"];return"desc"==de&&n.reverse(),D||n.push(""),n}(n.start||this.start,n?.disableClear??this.disableClear??!!this._defaultOptions?.disableClear),h=m.indexOf(this.direction)+1;return h>=m.length&&(h=0),m[h]}ngOnInit(){this._initializedStream.next()}ngOnChanges(){this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete(),this._initializedStream.complete()}static#e=this.\u0275fac=function(c){return new(c||de)(e.rXU($,8))};static#t=this.\u0275dir=e.FsC({type:de,selectors:[["","matSort",""]],hostAttrs:[1,"mat-sort"],inputs:{active:[0,"matSortActive","active"],start:[0,"matSortStart","start"],direction:[0,"matSortDirection","direction"],disableClear:[2,"matSortDisableClear","disableClear",e.L39],disabled:[2,"matSortDisabled","disabled",e.L39]},outputs:{sortChange:"matSortChange"},exportAs:["matSort"],standalone:!0,features:[e.GFd,e.OA$]})}return de})();const J=I.ed.ENTERING+" "+I.r5.STANDARD_CURVE,ee={indicator:(0,f.hZ)("indicator",[(0,f.wk)("active-asc, asc",(0,f.iF)({transform:"translateY(0px)"})),(0,f.wk)("active-desc, desc",(0,f.iF)({transform:"translateY(10px)"})),(0,f.kY)("active-asc <=> active-desc",(0,f.i0)(J))]),leftPointer:(0,f.hZ)("leftPointer",[(0,f.wk)("active-asc, asc",(0,f.iF)({transform:"rotate(-45deg)"})),(0,f.wk)("active-desc, desc",(0,f.iF)({transform:"rotate(45deg)"})),(0,f.kY)("active-asc <=> active-desc",(0,f.i0)(J))]),rightPointer:(0,f.hZ)("rightPointer",[(0,f.wk)("active-asc, asc",(0,f.iF)({transform:"rotate(45deg)"})),(0,f.wk)("active-desc, desc",(0,f.iF)({transform:"rotate(-45deg)"})),(0,f.kY)("active-asc <=> active-desc",(0,f.i0)(J))]),arrowOpacity:(0,f.hZ)("arrowOpacity",[(0,f.wk)("desc-to-active, asc-to-active, active",(0,f.iF)({opacity:1})),(0,f.wk)("desc-to-hint, asc-to-hint, hint",(0,f.iF)({opacity:.54})),(0,f.wk)("hint-to-desc, active-to-desc, desc, hint-to-asc, active-to-asc, asc, void",(0,f.iF)({opacity:0})),(0,f.kY)("* => asc, * => desc, * => active, * => hint, * => void",(0,f.i0)("0ms")),(0,f.kY)("* <=> *",(0,f.i0)(J))]),arrowPosition:(0,f.hZ)("arrowPosition",[(0,f.kY)("* => desc-to-hint, * => desc-to-active",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(-25%)"}),(0,f.iF)({transform:"translateY(0)"})]))),(0,f.kY)("* => hint-to-desc, * => active-to-desc",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(0)"}),(0,f.iF)({transform:"translateY(25%)"})]))),(0,f.kY)("* => asc-to-hint, * => asc-to-active",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(25%)"}),(0,f.iF)({transform:"translateY(0)"})]))),(0,f.kY)("* => hint-to-asc, * => active-to-asc",(0,f.i0)(J,(0,f.i7)([(0,f.iF)({transform:"translateY(0)"}),(0,f.iF)({transform:"translateY(-25%)"})]))),(0,f.wk)("desc-to-hint, asc-to-hint, hint, desc-to-active, asc-to-active, active",(0,f.iF)({transform:"translateY(0)"})),(0,f.wk)("hint-to-desc, active-to-desc, desc",(0,f.iF)({transform:"translateY(-25%)"})),(0,f.wk)("hint-to-asc, active-to-asc, asc",(0,f.iF)({transform:"translateY(25%)"}))]),allowChildren:(0,f.hZ)("allowChildren",[(0,f.kY)("* <=> *",[(0,f.P)("@*",(0,f.MA)(),{optional:!0})])])};let ie=(()=>{class de{constructor(){this.changes=new l.B}static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275prov=e.jDH({token:de,factory:de.\u0275fac,providedIn:"root"})}return de})();const ae={provide:ie,deps:[[new e.Xx1,new e.kdw,ie]],useFactory:function ge(de){return de||new ie}};let Me=(()=>{class de{get sortActionDescription(){return this._sortActionDescription}set sortActionDescription(n){this._updateSortActionDescription(n)}constructor(n,c,m,h,C,k,L,_){this._intl=n,this._changeDetectorRef=c,this._sort=m,this._columnDef=h,this._focusMonitor=C,this._elementRef=k,this._ariaDescriber=L,this._showIndicatorHint=!1,this._viewState={},this._arrowDirection="",this._disableViewStateAnimation=!1,this.arrowPosition="after",this.disabled=!1,this._sortActionDescription="Sort",_?.arrowPosition&&(this.arrowPosition=_?.arrowPosition),this._handleStateChanges()}ngOnInit(){!this.id&&this._columnDef&&(this.id=this._columnDef.name),this._updateArrowDirection(),this._setAnimationTransitionState({toState:this._isSorted()?"active":this._arrowDirection}),this._sort.register(this),this._sortButton=this._elementRef.nativeElement.querySelector(".mat-sort-header-container"),this._updateSortActionDescription(this._sortActionDescription)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(n=>{const c=!!n;c!==this._showIndicatorHint&&(this._setIndicatorHintVisible(c),this._changeDetectorRef.markForCheck())})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._sort.deregister(this),this._rerenderSubscription.unsubscribe(),this._sortButton&&this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription)}_setIndicatorHintVisible(n){this._isDisabled()&&n||(this._showIndicatorHint=n,this._isSorted()||(this._updateArrowDirection(),this._setAnimationTransitionState(this._showIndicatorHint?{fromState:this._arrowDirection,toState:"hint"}:{fromState:"hint",toState:this._arrowDirection})))}_setAnimationTransitionState(n){this._viewState=n||{},this._disableViewStateAnimation&&(this._viewState={toState:n.toState})}_toggleOnInteraction(){this._sort.sort(this),("hint"===this._viewState.toState||"active"===this._viewState.toState)&&(this._disableViewStateAnimation=!0)}_handleClick(){this._isDisabled()||this._sort.sort(this)}_handleKeydown(n){!this._isDisabled()&&(n.keyCode===w.t6||n.keyCode===w.Fm)&&(n.preventDefault(),this._toggleOnInteraction())}_isSorted(){return this._sort.active==this.id&&("asc"===this._sort.direction||"desc"===this._sort.direction)}_getArrowDirectionState(){return`${this._isSorted()?"active-":""}${this._arrowDirection}`}_getArrowViewState(){const n=this._viewState.fromState;return(n?`${n}-to-`:"")+this._viewState.toState}_updateArrowDirection(){this._arrowDirection=this._isSorted()?this._sort.direction:this.start||this._sort.start}_isDisabled(){return this._sort.disabled||this.disabled}_getAriaSortAttribute(){return this._isSorted()?"asc"==this._sort.direction?"ascending":"descending":"none"}_renderArrow(){return!this._isDisabled()||this._isSorted()}_updateSortActionDescription(n){this._sortButton&&(this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription),this._ariaDescriber?.describe(this._sortButton,n)),this._sortActionDescription=n}_handleStateChanges(){this._rerenderSubscription=(0,x.h)(this._sort.sortChange,this._sort._stateChanges,this._intl.changes).subscribe(()=>{this._isSorted()&&(this._updateArrowDirection(),("hint"===this._viewState.toState||"active"===this._viewState.toState)&&(this._disableViewStateAnimation=!0),this._setAnimationTransitionState({fromState:this._arrowDirection,toState:"active"}),this._showIndicatorHint=!1),!this._isSorted()&&this._viewState&&"active"===this._viewState.toState&&(this._disableViewStateAnimation=!1,this._setAnimationTransitionState({fromState:"active",toState:this._arrowDirection})),this._changeDetectorRef.markForCheck()})}static#e=this.\u0275fac=function(c){return new(c||de)(e.rXU(ie),e.rXU(e.gRc),e.rXU(j,8),e.rXU("MAT_SORT_HEADER_COLUMN_DEF",8),e.rXU(t.FN),e.rXU(e.aKT),e.rXU(t.vr,8),e.rXU($,8))};static#t=this.\u0275cmp=e.VBU({type:de,selectors:[["","mat-sort-header",""]],hostAttrs:[1,"mat-sort-header"],hostVars:3,hostBindings:function(c,m){1&c&&e.bIt("click",function(){return m._handleClick()})("keydown",function(C){return m._handleKeydown(C)})("mouseenter",function(){return m._setIndicatorHintVisible(!0)})("mouseleave",function(){return m._setIndicatorHintVisible(!1)}),2&c&&(e.BMQ("aria-sort",m._getAriaSortAttribute()),e.AVh("mat-sort-header-disabled",m._isDisabled()))},inputs:{id:[0,"mat-sort-header","id"],arrowPosition:"arrowPosition",start:"start",disabled:[2,"disabled","disabled",e.L39],sortActionDescription:"sortActionDescription",disableClear:[2,"disableClear","disableClear",e.L39]},exportAs:["matSortHeader"],standalone:!0,features:[e.GFd,e.aNF],attrs:d,ngContentSelectors:T,decls:4,vars:7,consts:[[1,"mat-sort-header-container","mat-focus-indicator"],[1,"mat-sort-header-content"],[1,"mat-sort-header-arrow"],[1,"mat-sort-header-stem"],[1,"mat-sort-header-indicator"],[1,"mat-sort-header-pointer-left"],[1,"mat-sort-header-pointer-right"],[1,"mat-sort-header-pointer-middle"]],template:function(c,m){1&c&&(e.NAR(),e.j41(0,"div",0)(1,"div",1),e.SdG(2),e.k0s(),e.DNE(3,y,6,6,"div",2),e.k0s()),2&c&&(e.AVh("mat-sort-header-sorted",m._isSorted())("mat-sort-header-position-before","before"===m.arrowPosition),e.BMQ("tabindex",m._isDisabled()?null:0)("role",m._isDisabled()?null:"button"),e.R7$(3),e.vxM(m._renderArrow()?3:-1))},styles:[".mat-sort-header-container{display:flex;cursor:pointer;align-items:center;letter-spacing:normal;outline:0}[mat-sort-header].cdk-keyboard-focused .mat-sort-header-container,[mat-sort-header].cdk-program-focused .mat-sort-header-container{border-bottom:solid 1px currentColor}.mat-sort-header-disabled .mat-sort-header-container{cursor:default}.mat-sort-header-container::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-sort-header-content{text-align:center;display:flex;align-items:center}.mat-sort-header-position-before{flex-direction:row-reverse}.mat-sort-header-arrow{height:12px;width:12px;min-width:12px;position:relative;display:flex;color:var(--mat-sort-arrow-color);opacity:0}.mat-sort-header-arrow,[dir=rtl] .mat-sort-header-position-before .mat-sort-header-arrow{margin:0 0 0 6px}.mat-sort-header-position-before .mat-sort-header-arrow,[dir=rtl] .mat-sort-header-arrow{margin:0 6px 0 0}.mat-sort-header-stem{background:currentColor;height:10px;width:2px;margin:auto;display:flex;align-items:center}.cdk-high-contrast-active .mat-sort-header-stem{width:0;border-left:solid 2px}.mat-sort-header-indicator{width:100%;height:2px;display:flex;align-items:center;position:absolute;top:0;left:0}.mat-sort-header-pointer-middle{margin:auto;height:2px;width:2px;background:currentColor;transform:rotate(45deg)}.cdk-high-contrast-active .mat-sort-header-pointer-middle{width:0;height:0;border-top:solid 2px;border-left:solid 2px}.mat-sort-header-pointer-left,.mat-sort-header-pointer-right{background:currentColor;width:6px;height:2px;position:absolute;top:0}.cdk-high-contrast-active .mat-sort-header-pointer-left,.cdk-high-contrast-active .mat-sort-header-pointer-right{width:0;height:0;border-left:solid 6px;border-top:solid 2px}.mat-sort-header-pointer-left{transform-origin:right;left:0}.mat-sort-header-pointer-right{transform-origin:left;right:0}"],encapsulation:2,data:{animation:[ee.indicator,ee.leftPointer,ee.rightPointer,ee.arrowOpacity,ee.arrowPosition,ee.allowChildren]},changeDetection:0})}return de})(),Te=(()=>{class de{static#e=this.\u0275fac=function(c){return new(c||de)};static#t=this.\u0275mod=e.$C({type:de});static#i=this.\u0275inj=e.G2t({providers:[ae],imports:[I.yE]})}return de})()},6013:(Qe,te,g)=>{"use strict";g.d(te,{F7:()=>pe,FR:()=>Ze,M6:()=>be,Ti:()=>ze,V5:()=>_e,aP:()=>_t,xJ:()=>ke});var e=g(6939),t=g(7768),w=g(177),S=g(4438),l=g(6600),x=g(9213),f=g(8617),I=g(1413),d=g(8359),T=g(8203),y=g(5558),F=g(6354),R=g(9172),z=g(6977),W=g(3294),$=g(9969),j=g(6860);function Q(at,pt){if(1&at&&S.eu8(0,2),2&at){const Xt=S.XpG();S.Y8G("ngTemplateOutlet",Xt.iconOverrides[Xt.state])("ngTemplateOutletContext",Xt._getIconContext())}}function J(at,pt){if(1&at&&(S.j41(0,"span",7),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG(2);S.R7$(),S.JRh(Xt._getDefaultTextForState(Xt.state))}}function ee(at,pt){if(1&at&&(S.j41(0,"span",8),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG(3);S.R7$(),S.JRh(Xt._intl.completedLabel)}}function ie(at,pt){if(1&at&&(S.j41(0,"span",8),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG(3);S.R7$(),S.JRh(Xt._intl.editableLabel)}}function ge(at,pt){if(1&at&&(S.DNE(0,ee,2,1,"span",8)(1,ie,2,1,"span",8),S.j41(2,"mat-icon",7),S.EFF(3),S.k0s()),2&at){const Xt=S.XpG(2);S.vxM("done"===Xt.state?0:"edit"===Xt.state?1:-1),S.R7$(3),S.JRh(Xt._getDefaultTextForState(Xt.state))}}function ae(at,pt){if(1&at&&S.DNE(0,J,2,1,"span",7)(1,ge,4,2,"mat-icon",7),2&at){let Xt;const ye=S.XpG();S.vxM("number"===(Xt=ye.state)?0:1)}}function Me(at,pt){1&at&&(S.j41(0,"div",4),S.eu8(1,9),S.k0s()),2&at&&(S.R7$(),S.Y8G("ngTemplateOutlet",pt.template))}function Te(at,pt){if(1&at&&(S.j41(0,"div",4),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG();S.R7$(),S.JRh(Xt.label)}}function de(at,pt){if(1&at&&(S.j41(0,"div",5),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG();S.R7$(),S.JRh(Xt._intl.optionalLabel)}}function D(at,pt){if(1&at&&(S.j41(0,"div",6),S.EFF(1),S.k0s()),2&at){const Xt=S.XpG();S.R7$(),S.JRh(Xt.errorMessage)}}const n=["*"];function c(at,pt){}function m(at,pt){if(1&at&&(S.SdG(0),S.DNE(1,c,0,0,"ng-template",0)),2&at){const Xt=S.XpG();S.R7$(),S.Y8G("cdkPortalOutlet",Xt._portal)}}const h=(at,pt)=>({step:at,i:pt}),C=at=>({animationDuration:at}),k=(at,pt)=>({value:at,params:pt});function L(at,pt){1&at&&S.SdG(0)}function _(at,pt){1&at&&S.nrm(0,"div",6)}function r(at,pt){if(1&at&&(S.eu8(0,5),S.DNE(1,_,1,0,"div",6)),2&at){const Xt=pt.$implicit,ye=pt.$index,ue=pt.$count;S.XpG(2);const Ie=S.sdS(4);S.Y8G("ngTemplateOutlet",Ie)("ngTemplateOutletContext",S.l_i(3,h,Xt,ye)),S.R7$(),S.vxM(ye!==ue-1?1:-1)}}function v(at,pt){if(1&at){const Xt=S.RV6();S.j41(0,"div",7),S.bIt("@horizontalStepTransition.done",function(ue){S.eBV(Xt);const Ie=S.XpG(2);return S.Njj(Ie._animationDone.next(ue))}),S.eu8(1,8),S.k0s()}if(2&at){const Xt=pt.$implicit,ye=pt.$index,ue=S.XpG(2);S.AVh("mat-horizontal-stepper-content-inactive",ue.selectedIndex!==ye),S.Y8G("@horizontalStepTransition",S.l_i(8,k,ue._getAnimationDirection(ye),S.eq3(6,C,ue._getAnimationDuration())))("id",ue._getStepContentId(ye)),S.BMQ("aria-labelledby",ue._getStepLabelId(ye)),S.R7$(),S.Y8G("ngTemplateOutlet",Xt.content)}}function V(at,pt){if(1&at&&(S.j41(0,"div",1)(1,"div",2),S.Z7z(2,r,2,6,null,null,S.fX1),S.k0s(),S.j41(4,"div",3),S.Z7z(5,v,2,11,"div",4,S.fX1),S.k0s()()),2&at){const Xt=S.XpG();S.R7$(2),S.Dyx(Xt.steps),S.R7$(3),S.Dyx(Xt.steps)}}function N(at,pt){if(1&at){const Xt=S.RV6();S.j41(0,"div",9),S.eu8(1,5),S.j41(2,"div",10)(3,"div",11),S.bIt("@verticalStepTransition.done",function(ue){S.eBV(Xt);const Ie=S.XpG(2);return S.Njj(Ie._animationDone.next(ue))}),S.j41(4,"div",12),S.eu8(5,8),S.k0s()()()()}if(2&at){const Xt=pt.$implicit,ye=pt.$index,ue=pt.$count,Ie=S.XpG(2),He=S.sdS(4);S.R7$(),S.Y8G("ngTemplateOutlet",He)("ngTemplateOutletContext",S.l_i(10,h,Xt,ye)),S.R7$(),S.AVh("mat-stepper-vertical-line",ye!==ue-1),S.R7$(),S.AVh("mat-vertical-stepper-content-inactive",Ie.selectedIndex!==ye),S.Y8G("@verticalStepTransition",S.l_i(15,k,Ie._getAnimationDirection(ye),S.eq3(13,C,Ie._getAnimationDuration())))("id",Ie._getStepContentId(ye)),S.BMQ("aria-labelledby",Ie._getStepLabelId(ye)),S.R7$(2),S.Y8G("ngTemplateOutlet",Xt.content)}}function ne(at,pt){if(1&at&&S.Z7z(0,N,6,18,"div",9,S.fX1),2&at){const Xt=S.XpG();S.Dyx(Xt.steps)}}function Ee(at,pt){if(1&at){const Xt=S.RV6();S.j41(0,"mat-step-header",13),S.bIt("click",function(){const ue=S.eBV(Xt).step;return S.Njj(ue.select())})("keydown",function(ue){S.eBV(Xt);const Ie=S.XpG();return S.Njj(Ie._onKeydown(ue))}),S.k0s()}if(2&at){const Xt=pt.step,ye=pt.i,ue=S.XpG();S.AVh("mat-horizontal-stepper-header","horizontal"===ue.orientation)("mat-vertical-stepper-header","vertical"===ue.orientation),S.Y8G("tabIndex",ue._getFocusIndex()===ye?0:-1)("id",ue._getStepLabelId(ye))("index",ye)("state",ue._getIndicatorType(ye,Xt.state))("label",Xt.stepLabel||Xt.label)("selected",ue.selectedIndex===ye)("active",ue._stepIsNavigable(ye,Xt))("optional",Xt.optional)("errorMessage",Xt.errorMessage)("iconOverrides",ue._iconOverrides)("disableRipple",ue.disableRipple||!ue._stepIsNavigable(ye,Xt))("color",Xt.color||ue.color),S.BMQ("aria-posinset",ye+1)("aria-setsize",ue.steps.length)("aria-controls",ue._getStepContentId(ye))("aria-selected",ue.selectedIndex==ye)("aria-label",Xt.ariaLabel||null)("aria-labelledby",!Xt.ariaLabel&&Xt.ariaLabelledby?Xt.ariaLabelledby:null)("aria-disabled",!ue._stepIsNavigable(ye,Xt)||null)}}let ze=(()=>{class at extends t.nb{static#e=this.\u0275fac=(()=>{let Xt;return function(ue){return(Xt||(Xt=S.xGo(at)))(ue||at)}})();static#t=this.\u0275dir=S.FsC({type:at,selectors:[["","matStepLabel",""]],standalone:!0,features:[S.Vt3]})}return at})(),qe=(()=>{class at{constructor(){this.changes=new I.B,this.optionalLabel="Optional",this.completedLabel="Completed",this.editableLabel="Editable"}static#e=this.\u0275fac=function(ye){return new(ye||at)};static#t=this.\u0275prov=S.jDH({token:at,factory:at.\u0275fac,providedIn:"root"})}return at})();const se={provide:qe,deps:[[new S.Xx1,new S.kdw,qe]],useFactory:function Ke(at){return at||new qe}};let X=(()=>{class at extends t.oX{constructor(Xt,ye,ue,Ie){super(ue),this._intl=Xt,this._focusMonitor=ye,this._intlSubscription=Xt.changes.subscribe(()=>Ie.markForCheck())}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._intlSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._elementRef)}focus(Xt,ye){Xt?this._focusMonitor.focusVia(this._elementRef,Xt,ye):this._elementRef.nativeElement.focus(ye)}_stringLabel(){return this.label instanceof ze?null:this.label}_templateLabel(){return this.label instanceof ze?this.label:null}_getHostElement(){return this._elementRef.nativeElement}_getIconContext(){return{index:this.index,active:this.active,optional:this.optional}}_getDefaultTextForState(Xt){return"number"==Xt?`${this.index+1}`:"edit"==Xt?"create":"error"==Xt?"warning":Xt}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU(qe),S.rXU(f.FN),S.rXU(S.aKT),S.rXU(S.gRc))};static#t=this.\u0275cmp=S.VBU({type:at,selectors:[["mat-step-header"]],hostAttrs:["role","tab",1,"mat-step-header"],hostVars:2,hostBindings:function(ye,ue){2&ye&&S.HbH("mat-"+(ue.color||"primary"))},inputs:{state:"state",label:"label",errorMessage:"errorMessage",iconOverrides:"iconOverrides",index:"index",selected:"selected",active:"active",optional:"optional",disableRipple:"disableRipple",color:"color"},standalone:!0,features:[S.Vt3,S.aNF],decls:10,vars:17,consts:[["matRipple","",1,"mat-step-header-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled"],[1,"mat-step-icon-content"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[1,"mat-step-label"],[1,"mat-step-text-label"],[1,"mat-step-optional"],[1,"mat-step-sub-label-error"],["aria-hidden","true"],[1,"cdk-visually-hidden"],[3,"ngTemplateOutlet"]],template:function(ye,ue){if(1&ye&&(S.nrm(0,"div",0),S.j41(1,"div")(2,"div",1),S.DNE(3,Q,1,2,"ng-container",2)(4,ae,2,1),S.k0s()(),S.j41(5,"div",3),S.DNE(6,Me,2,1,"div",4)(7,Te,2,1,"div",4)(8,de,2,1,"div",5)(9,D,2,1,"div",6),S.k0s()),2&ye){let Ie;S.Y8G("matRippleTrigger",ue._getHostElement())("matRippleDisabled",ue.disableRipple),S.R7$(),S.ZvI("mat-step-icon-state-",ue.state," mat-step-icon"),S.AVh("mat-step-icon-selected",ue.selected),S.R7$(2),S.vxM(ue.iconOverrides&&ue.iconOverrides[ue.state]?3:4),S.R7$(2),S.AVh("mat-step-label-active",ue.active)("mat-step-label-selected",ue.selected)("mat-step-label-error","error"==ue.state),S.R7$(),S.vxM((Ie=ue._templateLabel())?6:ue._stringLabel()?7:-1,Ie),S.R7$(2),S.vxM(ue.optional&&"error"!=ue.state?8:-1),S.R7$(),S.vxM("error"===ue.state?9:-1)}},dependencies:[l.r6,w.T3,x.An],styles:['.mat-step-header{overflow:hidden;outline:none;cursor:pointer;position:relative;box-sizing:content-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-step-header:focus .mat-focus-indicator::before{content:""}.mat-step-header:hover[aria-disabled=true]{cursor:default}.mat-step-header:hover:not([aria-disabled]),.mat-step-header:hover[aria-disabled=false]{background-color:var(--mat-stepper-header-hover-state-layer-color);border-radius:var(--mat-stepper-header-hover-state-layer-shape)}.mat-step-header.cdk-keyboard-focused,.mat-step-header.cdk-program-focused{background-color:var(--mat-stepper-header-focus-state-layer-color);border-radius:var(--mat-stepper-header-focus-state-layer-shape)}@media(hover: none){.mat-step-header:hover{background:none}}.cdk-high-contrast-active .mat-step-header{outline:solid 1px}.cdk-high-contrast-active .mat-step-header[aria-selected=true] .mat-step-label{text-decoration:underline}.cdk-high-contrast-active .mat-step-header[aria-disabled=true]{outline-color:GrayText}.cdk-high-contrast-active .mat-step-header[aria-disabled=true] .mat-step-label,.cdk-high-contrast-active .mat-step-header[aria-disabled=true] .mat-step-icon,.cdk-high-contrast-active .mat-step-header[aria-disabled=true] .mat-step-optional{color:GrayText}.mat-step-optional{font-size:12px;color:var(--mat-stepper-header-optional-label-text-color)}.mat-step-sub-label-error{font-size:12px;font-weight:normal}.mat-step-icon{border-radius:50%;height:24px;width:24px;flex-shrink:0;position:relative;color:var(--mat-stepper-header-icon-foreground-color);background-color:var(--mat-stepper-header-icon-background-color)}.mat-step-icon-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);display:flex}.mat-step-icon .mat-icon{font-size:16px;height:16px;width:16px}.mat-step-icon-state-error{background-color:var(--mat-stepper-header-error-state-icon-background-color);color:var(--mat-stepper-header-error-state-icon-foreground-color)}.mat-step-icon-state-error .mat-icon{font-size:24px;height:24px;width:24px}.mat-step-label{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:50px;vertical-align:middle;font-family:var(--mat-stepper-header-label-text-font);font-size:var(--mat-stepper-header-label-text-size);font-weight:var(--mat-stepper-header-label-text-weight);color:var(--mat-stepper-header-label-text-color)}.mat-step-label.mat-step-label-active{color:var(--mat-stepper-header-selected-state-label-text-color)}.mat-step-label.mat-step-label-error{color:var(--mat-stepper-header-error-state-label-text-color);font-size:var(--mat-stepper-header-error-state-label-text-size)}.mat-step-label.mat-step-label-selected{font-size:var(--mat-stepper-header-selected-state-label-text-size);font-weight:var(--mat-stepper-header-selected-state-label-text-weight)}.mat-step-text-label{text-overflow:ellipsis;overflow:hidden}.mat-step-header .mat-step-header-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-step-icon-selected{background-color:var(--mat-stepper-header-selected-state-icon-background-color);color:var(--mat-stepper-header-selected-state-icon-foreground-color)}.mat-step-icon-state-done{background-color:var(--mat-stepper-header-done-state-icon-background-color);color:var(--mat-stepper-header-done-state-icon-foreground-color)}.mat-step-icon-state-edit{background-color:var(--mat-stepper-header-edit-state-icon-background-color);color:var(--mat-stepper-header-edit-state-icon-foreground-color)}'],encapsulation:2,changeDetection:0})}return at})();const fe={horizontalStepTransition:(0,$.hZ)("horizontalStepTransition",[(0,$.wk)("previous",(0,$.iF)({transform:"translate3d(-100%, 0, 0)",visibility:"hidden"})),(0,$.wk)("current",(0,$.iF)({transform:"none",visibility:"inherit"})),(0,$.wk)("next",(0,$.iF)({transform:"translate3d(100%, 0, 0)",visibility:"hidden"})),(0,$.kY)("* => *",(0,$.Os)([(0,$.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)"),(0,$.P)("@*",(0,$.MA)(),{optional:!0})]),{params:{animationDuration:"500ms"}})]),verticalStepTransition:(0,$.hZ)("verticalStepTransition",[(0,$.wk)("previous",(0,$.iF)({height:"0px",visibility:"hidden"})),(0,$.wk)("next",(0,$.iF)({height:"0px",visibility:"hidden"})),(0,$.wk)("current",(0,$.iF)({height:"*",visibility:"inherit"})),(0,$.kY)("* <=> current",(0,$.Os)([(0,$.i0)("{{animationDuration}} cubic-bezier(0.4, 0.0, 0.2, 1)"),(0,$.P)("@*",(0,$.MA)(),{optional:!0})]),{params:{animationDuration:"225ms"}})])};let ke=(()=>{class at{constructor(Xt){this.templateRef=Xt}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU(S.C4Q))};static#t=this.\u0275dir=S.FsC({type:at,selectors:[["ng-template","matStepperIcon",""]],inputs:{name:[0,"matStepperIcon","name"]},standalone:!0})}return at})(),mt=(()=>{class at{constructor(Xt){this._template=Xt}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU(S.C4Q))};static#t=this.\u0275dir=S.FsC({type:at,selectors:[["ng-template","matStepContent",""]],standalone:!0})}return at})(),_e=(()=>{class at extends t.VI{constructor(Xt,ye,ue,Ie){super(Xt,Ie),this._errorStateMatcher=ye,this._viewContainerRef=ue,this._isSelected=d.yU.EMPTY,this.stepLabel=void 0}ngAfterContentInit(){this._isSelected=this._stepper.steps.changes.pipe((0,y.n)(()=>this._stepper.selectionChange.pipe((0,F.T)(Xt=>Xt.selectedStep===this),(0,R.Z)(this._stepper.selected===this)))).subscribe(Xt=>{Xt&&this._lazyContent&&!this._portal&&(this._portal=new e.VA(this._lazyContent._template,this._viewContainerRef))})}ngOnDestroy(){this._isSelected.unsubscribe()}isErrorState(Xt,ye){return this._errorStateMatcher.isErrorState(Xt,ye)||!!(Xt&&Xt.invalid&&this.interacted)}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU((0,S.Rfq)(()=>be)),S.rXU(l.es,4),S.rXU(S.c1b),S.rXU(t.x8,8))};static#t=this.\u0275cmp=S.VBU({type:at,selectors:[["mat-step"]],contentQueries:function(ye,ue,Ie){if(1&ye&&(S.wni(Ie,ze,5),S.wni(Ie,mt,5)),2&ye){let He;S.mGM(He=S.lsd())&&(ue.stepLabel=He.first),S.mGM(He=S.lsd())&&(ue._lazyContent=He.first)}},hostAttrs:["hidden",""],inputs:{color:"color"},exportAs:["matStep"],standalone:!0,features:[S.Jv_([{provide:l.es,useExisting:at},{provide:t.VI,useExisting:at}]),S.Vt3,S.aNF],ngContentSelectors:n,decls:1,vars:0,consts:[[3,"cdkPortalOutlet"]],template:function(ye,ue){1&ye&&(S.NAR(),S.DNE(0,m,2,1,"ng-template"))},dependencies:[e.I3],encapsulation:2,changeDetection:0})}return at})(),be=(()=>{class at extends t.Up{get animationDuration(){return this._animationDuration}set animationDuration(Xt){this._animationDuration=/^\d+$/.test(Xt)?Xt+"ms":Xt}constructor(Xt,ye,ue){super(Xt,ye,ue),this._stepHeader=void 0,this._steps=void 0,this.steps=new S.rOR,this.animationDone=new S.bkB,this.labelPosition="end",this.headerPosition="top",this._iconOverrides={},this._animationDone=new I.B,this._animationDuration="",this._isServer=!(0,S.WQX)(j.OD).isBrowser;const Ie=ue.nativeElement.nodeName.toLowerCase();this.orientation="mat-vertical-stepper"===Ie?"vertical":"horizontal"}ngAfterContentInit(){super.ngAfterContentInit(),this._icons.forEach(({name:Xt,templateRef:ye})=>this._iconOverrides[Xt]=ye),this.steps.changes.pipe((0,z.Q)(this._destroyed)).subscribe(()=>{this._stateChanged()}),this._animationDone.pipe((0,W.F)((Xt,ye)=>Xt.fromState===ye.fromState&&Xt.toState===ye.toState),(0,z.Q)(this._destroyed)).subscribe(Xt=>{"current"===Xt.toState&&this.animationDone.emit()})}_stepIsNavigable(Xt,ye){return ye.completed||this.selectedIndex===Xt||!this.linear}_getAnimationDuration(){return this.animationDuration?this.animationDuration:"horizontal"===this.orientation?"500ms":"225ms"}static#e=this.\u0275fac=function(ye){return new(ye||at)(S.rXU(T.dS,8),S.rXU(S.gRc),S.rXU(S.aKT))};static#t=this.\u0275cmp=S.VBU({type:at,selectors:[["mat-stepper"],["mat-vertical-stepper"],["mat-horizontal-stepper"],["","matStepper",""]],contentQueries:function(ye,ue,Ie){if(1&ye&&(S.wni(Ie,_e,5),S.wni(Ie,ke,5)),2&ye){let He;S.mGM(He=S.lsd())&&(ue._steps=He),S.mGM(He=S.lsd())&&(ue._icons=He)}},viewQuery:function(ye,ue){if(1&ye&&S.GBs(X,5),2&ye){let Ie;S.mGM(Ie=S.lsd())&&(ue._stepHeader=Ie)}},hostAttrs:["role","tablist"],hostVars:11,hostBindings:function(ye,ue){2&ye&&(S.BMQ("aria-orientation",ue.orientation),S.AVh("mat-stepper-horizontal","horizontal"===ue.orientation)("mat-stepper-vertical","vertical"===ue.orientation)("mat-stepper-label-position-end","horizontal"===ue.orientation&&"end"==ue.labelPosition)("mat-stepper-label-position-bottom","horizontal"===ue.orientation&&"bottom"==ue.labelPosition)("mat-stepper-header-position-bottom","bottom"===ue.headerPosition))},inputs:{disableRipple:"disableRipple",color:"color",labelPosition:"labelPosition",headerPosition:"headerPosition",animationDuration:"animationDuration"},outputs:{animationDone:"animationDone"},exportAs:["matStepper","matVerticalStepper","matHorizontalStepper"],standalone:!0,features:[S.Jv_([{provide:t.Up,useExisting:at}]),S.Vt3,S.aNF],ngContentSelectors:n,decls:5,vars:2,consts:[["stepTemplate",""],[1,"mat-horizontal-stepper-wrapper"],[1,"mat-horizontal-stepper-header-container"],[1,"mat-horizontal-content-container"],["role","tabpanel",1,"mat-horizontal-stepper-content",3,"id","mat-horizontal-stepper-content-inactive"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[1,"mat-stepper-horizontal-line"],["role","tabpanel",1,"mat-horizontal-stepper-content",3,"id"],[3,"ngTemplateOutlet"],[1,"mat-step"],[1,"mat-vertical-content-container"],["role","tabpanel",1,"mat-vertical-stepper-content",3,"id"],[1,"mat-vertical-content"],[3,"click","keydown","tabIndex","id","index","state","label","selected","active","optional","errorMessage","iconOverrides","disableRipple","color"]],template:function(ye,ue){if(1&ye&&(S.NAR(),S.DNE(0,L,1,0)(1,V,7,0,"div",1)(2,ne,2,0)(3,Ee,1,23,"ng-template",null,0,S.C5r)),2&ye){let Ie;S.vxM(ue._isServer?0:-1),S.R7$(),S.vxM("horizontal"===(Ie=ue.orientation)?1:"vertical"===Ie?2:-1)}},dependencies:[w.T3,X],styles:['.mat-stepper-vertical,.mat-stepper-horizontal{display:block;font-family:var(--mat-stepper-container-text-font);background:var(--mat-stepper-container-color)}.mat-horizontal-stepper-header-container{white-space:nowrap;display:flex;align-items:center}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header-container{align-items:flex-start}.mat-stepper-header-position-bottom .mat-horizontal-stepper-header-container{order:1}.mat-stepper-horizontal-line{border-top-width:1px;border-top-style:solid;flex:auto;height:0;margin:0 -16px;min-width:32px;border-top-color:var(--mat-stepper-line-color)}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{margin:0;min-width:0;position:relative;top:calc(calc((var(--mat-stepper-header-height) - 24px) / 2) + 12px)}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::before,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::after{border-top-width:1px;border-top-style:solid;content:"";display:inline-block;height:0;position:absolute;width:calc(50% - 20px)}.mat-horizontal-stepper-header{display:flex;height:72px;overflow:hidden;align-items:center;padding:0 24px;height:var(--mat-stepper-header-height)}.mat-horizontal-stepper-header .mat-step-icon{margin-right:8px;flex:none}[dir=rtl] .mat-horizontal-stepper-header .mat-step-icon{margin-right:0;margin-left:8px}.mat-horizontal-stepper-header::before,.mat-horizontal-stepper-header::after{border-top-color:var(--mat-stepper-line-color)}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{padding:calc((var(--mat-stepper-header-height) - 24px) / 2) 24px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after{top:calc(calc((var(--mat-stepper-header-height) - 24px) / 2) + 12px)}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{box-sizing:border-box;flex-direction:column;height:auto}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::after{right:0}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::before{left:0}[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:last-child::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:first-child::after{display:none}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header .mat-step-icon{margin-right:0;margin-left:0}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header .mat-step-label{padding:16px 0 0 0;text-align:center;width:100%}.mat-vertical-stepper-header{display:flex;align-items:center;height:24px;padding:calc((var(--mat-stepper-header-height) - 24px) / 2) 24px}.mat-vertical-stepper-header .mat-step-icon{margin-right:12px}[dir=rtl] .mat-vertical-stepper-header .mat-step-icon{margin-right:0;margin-left:12px}.mat-horizontal-stepper-wrapper{display:flex;flex-direction:column}.mat-horizontal-stepper-content{outline:0}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-inactive{height:0;overflow:hidden}.mat-horizontal-stepper-content:not(.mat-horizontal-stepper-content-inactive){visibility:inherit !important}.mat-horizontal-content-container{overflow:hidden;padding:0 24px 24px 24px}.cdk-high-contrast-active .mat-horizontal-content-container{outline:solid 1px}.mat-stepper-header-position-bottom .mat-horizontal-content-container{padding:24px 24px 0 24px}.mat-vertical-content-container{margin-left:36px;border:0;position:relative}.cdk-high-contrast-active .mat-vertical-content-container{outline:solid 1px}[dir=rtl] .mat-vertical-content-container{margin-left:0;margin-right:36px}.mat-stepper-vertical-line::before{content:"";position:absolute;left:0;border-left-width:1px;border-left-style:solid;border-left-color:var(--mat-stepper-line-color);top:calc(8px - calc((var(--mat-stepper-header-height) - 24px) / 2));bottom:calc(8px - calc((var(--mat-stepper-header-height) - 24px) / 2))}[dir=rtl] .mat-stepper-vertical-line::before{left:auto;right:0}.mat-vertical-stepper-content{overflow:hidden;outline:0}.mat-vertical-stepper-content:not(.mat-vertical-stepper-content-inactive){visibility:inherit !important}.mat-vertical-content{padding:0 24px 24px 24px}.mat-step:last-child .mat-vertical-content-container{border:none}'],encapsulation:2,data:{animation:[fe.horizontalStepTransition,fe.verticalStepTransition]},changeDetection:0})}return at})(),pe=(()=>{class at extends t.v5{static#e=this.\u0275fac=(()=>{let Xt;return function(ue){return(Xt||(Xt=S.xGo(at)))(ue||at)}})();static#t=this.\u0275dir=S.FsC({type:at,selectors:[["button","matStepperNext",""]],hostAttrs:[1,"mat-stepper-next"],hostVars:1,hostBindings:function(ye,ue){2&ye&&S.Mr5("type",ue.type)},standalone:!0,features:[S.Vt3]})}return at})(),Ze=(()=>{class at extends t.FK{static#e=this.\u0275fac=(()=>{let Xt;return function(ue){return(Xt||(Xt=S.xGo(at)))(ue||at)}})();static#t=this.\u0275dir=S.FsC({type:at,selectors:[["button","matStepperPrevious",""]],hostAttrs:[1,"mat-stepper-previous"],hostVars:1,hostBindings:function(ye,ue){2&ye&&S.Mr5("type",ue.type)},standalone:!0,features:[S.Vt3]})}return at})(),_t=(()=>{class at{static#e=this.\u0275fac=function(ye){return new(ye||at)};static#t=this.\u0275mod=S.$C({type:at});static#i=this.\u0275inj=S.G2t({providers:[se,l.es],imports:[l.yE,w.MD,e.jc,t.uY,x.m_,l.pZ,be,X,l.yE]})}return at})()},9159:(Qe,te,g)=>{"use strict";g.d(te,{$R:()=>et,YV:()=>Re,cC:()=>$e,Qo:()=>Ge,Zq:()=>gt,iF:()=>Xi,xW:()=>mi,KS:()=>Fe,tL:()=>Ne,YZ:()=>Pt,ji:()=>Tt,NB:()=>di,iL:()=>Kt,Zl:()=>q,I6:()=>Qt,tP:()=>Li});var e=g(4438),t=g(8203),w=g(5024),S=g(6860),l=g(5542),x=g(177),f=g(1413),I=g(2806),d=g(4412),T=g(4402),y=g(7673),F=g(6977),R=g(6697);const z=[[["caption"]],[["colgroup"],["col"]],"*"],W=["caption","colgroup, col","*"];function $(Mt,it){1&Mt&&e.SdG(0,2)}function j(Mt,it){1&Mt&&(e.j41(0,"thead",0),e.eu8(1,1),e.k0s(),e.j41(2,"tbody",0),e.eu8(3,2)(4,3),e.k0s(),e.j41(5,"tfoot",0),e.eu8(6,4),e.k0s())}function Q(Mt,it){1&Mt&&e.eu8(0,1)(1,2)(2,3)(3,4)}const ie=new e.nKC("CDK_TABLE");let ae=(()=>{class Mt{constructor(ct){this.template=ct}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkCellDef",""]],standalone:!0})}return Mt})(),Me=(()=>{class Mt{constructor(ct){this.template=ct}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkHeaderCellDef",""]],standalone:!0})}return Mt})(),Te=(()=>{class Mt{constructor(ct){this.template=ct}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkFooterCellDef",""]],standalone:!0})}return Mt})(),de=(()=>{class Mt{get name(){return this._name}set name(ct){this._setNameInput(ct)}get sticky(){return this._sticky}set sticky(ct){ct!==this._sticky&&(this._sticky=ct,this._hasStickyChanged=!0)}get stickyEnd(){return this._stickyEnd}set stickyEnd(ct){ct!==this._stickyEnd&&(this._stickyEnd=ct,this._hasStickyChanged=!0)}constructor(ct){this._table=ct,this._hasStickyChanged=!1,this._sticky=!1,this._stickyEnd=!1}hasStickyChanged(){const ct=this._hasStickyChanged;return this.resetStickyChanged(),ct}resetStickyChanged(){this._hasStickyChanged=!1}_updateColumnCssClassName(){this._columnCssClassName=[`cdk-column-${this.cssClassFriendlyName}`]}_setNameInput(ct){ct&&(this._name=ct,this.cssClassFriendlyName=ct.replace(/[^a-z0-9_-]/gi,"-"),this._updateColumnCssClassName())}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(ie,8))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkColumnDef",""]],contentQueries:function(wt,Ut,xi){if(1&wt&&(e.wni(xi,ae,5),e.wni(xi,Me,5),e.wni(xi,Te,5)),2&wt){let Si;e.mGM(Si=e.lsd())&&(Ut.cell=Si.first),e.mGM(Si=e.lsd())&&(Ut.headerCell=Si.first),e.mGM(Si=e.lsd())&&(Ut.footerCell=Si.first)}},inputs:{name:[0,"cdkColumnDef","name"],sticky:[2,"sticky","sticky",e.L39],stickyEnd:[2,"stickyEnd","stickyEnd",e.L39]},standalone:!0,features:[e.Jv_([{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Mt}]),e.GFd]})}return Mt})();class D{constructor(it,ct){ct.nativeElement.classList.add(...it._columnCssClassName)}}let n=(()=>{class Mt extends D{constructor(ct,wt){super(ct,wt)}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(de),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["cdk-header-cell"],["th","cdk-header-cell",""]],hostAttrs:["role","columnheader",1,"cdk-header-cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),c=(()=>{class Mt extends D{constructor(ct,wt){super(ct,wt);const Ut=ct._table?._getCellRole();Ut&&wt.nativeElement.setAttribute("role",Ut)}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(de),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["cdk-footer-cell"],["td","cdk-footer-cell",""]],hostAttrs:[1,"cdk-footer-cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),m=(()=>{class Mt extends D{constructor(ct,wt){super(ct,wt);const Ut=ct._table?._getCellRole();Ut&&wt.nativeElement.setAttribute("role",Ut)}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(de),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["cdk-cell"],["td","cdk-cell",""]],hostAttrs:[1,"cdk-cell"],standalone:!0,features:[e.Vt3]})}return Mt})();class h{constructor(){this.tasks=[],this.endTasks=[]}}const C=new e.nKC("_COALESCED_STYLE_SCHEDULER");let k=(()=>{class Mt{constructor(ct){this._ngZone=ct,this._currentSchedule=null,this._destroyed=new f.B}schedule(ct){this._createScheduleIfNeeded(),this._currentSchedule.tasks.push(ct)}scheduleEnd(ct){this._createScheduleIfNeeded(),this._currentSchedule.endTasks.push(ct)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_createScheduleIfNeeded(){this._currentSchedule||(this._currentSchedule=new h,this._getScheduleObservable().pipe((0,F.Q)(this._destroyed)).subscribe(()=>{for(;this._currentSchedule.tasks.length||this._currentSchedule.endTasks.length;){const ct=this._currentSchedule;this._currentSchedule=new h;for(const wt of ct.tasks)wt();for(const wt of ct.endTasks)wt()}this._currentSchedule=null}))}_getScheduleObservable(){return this._ngZone.isStable?(0,I.H)(Promise.resolve(void 0)):this._ngZone.onStable.pipe((0,R.s)(1))}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.KVO(e.SKi))};static#t=this.\u0275prov=e.jDH({token:Mt,factory:Mt.\u0275fac})}return Mt})(),_=(()=>{class Mt{constructor(ct,wt){this.template=ct,this._differs=wt}ngOnChanges(ct){if(!this._columnsDiffer){const wt=ct.columns&&ct.columns.currentValue||[];this._columnsDiffer=this._differs.find(wt).create(),this._columnsDiffer.diff(wt)}}getColumnsDiff(){return this._columnsDiffer.diff(this.columns)}extractCellTemplate(ct){return this instanceof r?ct.headerCell.template:this instanceof v?ct.footerCell.template:ct.cell.template}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q),e.rXU(e._q3))};static#t=this.\u0275dir=e.FsC({type:Mt,features:[e.OA$]})}return Mt})(),r=(()=>{class Mt extends _{get sticky(){return this._sticky}set sticky(ct){ct!==this._sticky&&(this._sticky=ct,this._hasStickyChanged=!0)}constructor(ct,wt,Ut){super(ct,wt),this._table=Ut,this._hasStickyChanged=!1,this._sticky=!1}ngOnChanges(ct){super.ngOnChanges(ct)}hasStickyChanged(){const ct=this._hasStickyChanged;return this.resetStickyChanged(),ct}resetStickyChanged(){this._hasStickyChanged=!1}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q),e.rXU(e._q3),e.rXU(ie,8))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkHeaderRowDef",""]],inputs:{columns:[0,"cdkHeaderRowDef","columns"],sticky:[2,"cdkHeaderRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.GFd,e.Vt3,e.OA$]})}return Mt})(),v=(()=>{class Mt extends _{get sticky(){return this._sticky}set sticky(ct){ct!==this._sticky&&(this._sticky=ct,this._hasStickyChanged=!0)}constructor(ct,wt,Ut){super(ct,wt),this._table=Ut,this._hasStickyChanged=!1,this._sticky=!1}ngOnChanges(ct){super.ngOnChanges(ct)}hasStickyChanged(){const ct=this._hasStickyChanged;return this.resetStickyChanged(),ct}resetStickyChanged(){this._hasStickyChanged=!1}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q),e.rXU(e._q3),e.rXU(ie,8))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkFooterRowDef",""]],inputs:{columns:[0,"cdkFooterRowDef","columns"],sticky:[2,"cdkFooterRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.GFd,e.Vt3,e.OA$]})}return Mt})(),V=(()=>{class Mt extends _{constructor(ct,wt,Ut){super(ct,wt),this._table=Ut}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q),e.rXU(e._q3),e.rXU(ie,8))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkRowDef",""]],inputs:{columns:[0,"cdkRowDefColumns","columns"],when:[0,"cdkRowDefWhen","when"]},standalone:!0,features:[e.Vt3]})}return Mt})(),N=(()=>{class Mt{static#e=this.mostRecentCellOutlet=null;constructor(ct){this._viewContainer=ct,Mt.mostRecentCellOutlet=this}ngOnDestroy(){Mt.mostRecentCellOutlet===this&&(Mt.mostRecentCellOutlet=null)}static#t=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b))};static#i=this.\u0275dir=e.FsC({type:Mt,selectors:[["","cdkCellOutlet",""]],standalone:!0})}return Mt})(),ne=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["cdk-header-row"],["tr","cdk-header-row",""]],hostAttrs:["role","row",1,"cdk-header-row"],standalone:!0,features:[e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),Ee=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["cdk-footer-row"],["tr","cdk-footer-row",""]],hostAttrs:["role","row",1,"cdk-footer-row"],standalone:!0,features:[e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),ze=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["cdk-row"],["tr","cdk-row",""]],hostAttrs:["role","row",1,"cdk-row"],standalone:!0,features:[e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),qe=(()=>{class Mt{constructor(ct){this.templateRef=ct,this._contentClassName="cdk-no-data-row"}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["ng-template","cdkNoDataRow",""]],standalone:!0})}return Mt})();const Ke=["top","bottom","left","right"];class se{constructor(it,ct,wt,Ut,xi=!0,Si=!0,zi){this._isNativeHtmlTable=it,this._stickCellCss=ct,this.direction=wt,this._coalescedStyleScheduler=Ut,this._isBrowser=xi,this._needsPositionStickyOnElement=Si,this._positionListener=zi,this._cachedCellWidths=[],this._borderCellCss={top:`${ct}-border-elem-top`,bottom:`${ct}-border-elem-bottom`,left:`${ct}-border-elem-left`,right:`${ct}-border-elem-right`}}clearStickyPositioning(it,ct){const wt=[];for(const Ut of it)if(Ut.nodeType===Ut.ELEMENT_NODE){wt.push(Ut);for(let xi=0;xi{for(const Ut of wt)this._removeStickyStyle(Ut,ct)})}updateStickyColumns(it,ct,wt,Ut=!0){it.length&&this._isBrowser&&(ct.some(xi=>xi)||wt.some(xi=>xi))?this._coalescedStyleScheduler.schedule(()=>{const xi=it[0],Si=xi.children.length,zi=this._getCellWidths(xi,Ut),en=this._getStickyStartColumnPositions(zi,ct),Ni=this._getStickyEndColumnPositions(zi,wt),fn=ct.lastIndexOf(!0),Zt=wt.indexOf(!0),bt="rtl"===this.direction,re=bt?"right":"left",je=bt?"left":"right";for(const Ce of it)for(let ot=0;otct[ot]?Ce:null)}),this._positionListener.stickyEndColumnsUpdated({sizes:-1===Zt?[]:zi.slice(Zt).map((Ce,ot)=>wt[ot+Zt]?Ce:null).reverse()}))}):this._positionListener&&(this._positionListener.stickyColumnsUpdated({sizes:[]}),this._positionListener.stickyEndColumnsUpdated({sizes:[]}))}stickRows(it,ct,wt){this._isBrowser&&this._coalescedStyleScheduler.schedule(()=>{const Ut="bottom"===wt?it.slice().reverse():it,xi="bottom"===wt?ct.slice().reverse():ct,Si=[],zi=[],en=[];for(let fn=0,Zt=0;fn{const wt=it.querySelector("tfoot");wt&&(ct.some(Ut=>!Ut)?this._removeStickyStyle(wt,["bottom"]):this._addStickyStyle(wt,"bottom",0,!1))})}_removeStickyStyle(it,ct){for(const Ut of ct)it.style[Ut]="",it.classList.remove(this._borderCellCss[Ut]);Ke.some(Ut=>-1===ct.indexOf(Ut)&&it.style[Ut])?it.style.zIndex=this._getCalculatedZIndex(it):(it.style.zIndex="",this._needsPositionStickyOnElement&&(it.style.position=""),it.classList.remove(this._stickCellCss))}_addStickyStyle(it,ct,wt,Ut){it.classList.add(this._stickCellCss),Ut&&it.classList.add(this._borderCellCss[ct]),it.style[ct]=`${wt}px`,it.style.zIndex=this._getCalculatedZIndex(it),this._needsPositionStickyOnElement&&(it.style.cssText+="position: -webkit-sticky; position: sticky; ")}_getCalculatedZIndex(it){const ct={top:100,bottom:10,left:1,right:1};let wt=0;for(const Ut of Ke)it.style[Ut]&&(wt+=ct[Ut]);return wt?`${wt}`:""}_getCellWidths(it,ct=!0){if(!ct&&this._cachedCellWidths.length)return this._cachedCellWidths;const wt=[],Ut=it.children;for(let xi=0;xi0;xi--)ct[xi]&&(wt[xi]=Ut,Ut+=it[xi]);return wt}}const pe=new e.nKC("CDK_SPL");let _t=(()=>{class Mt{constructor(ct,wt){this.viewContainer=ct,this.elementRef=wt;const Ut=(0,e.WQX)(ie);Ut._rowOutlet=this,Ut._outletAssigned()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","rowOutlet",""]],standalone:!0})}return Mt})(),at=(()=>{class Mt{constructor(ct,wt){this.viewContainer=ct,this.elementRef=wt;const Ut=(0,e.WQX)(ie);Ut._headerRowOutlet=this,Ut._outletAssigned()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","headerRowOutlet",""]],standalone:!0})}return Mt})(),pt=(()=>{class Mt{constructor(ct,wt){this.viewContainer=ct,this.elementRef=wt;const Ut=(0,e.WQX)(ie);Ut._footerRowOutlet=this,Ut._outletAssigned()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","footerRowOutlet",""]],standalone:!0})}return Mt})(),Xt=(()=>{class Mt{constructor(ct,wt){this.viewContainer=ct,this.elementRef=wt;const Ut=(0,e.WQX)(ie);Ut._noDataRowOutlet=this,Ut._outletAssigned()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e.c1b),e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","noDataRowOutlet",""]],standalone:!0})}return Mt})(),Ie=(()=>{class Mt{_getCellRole(){if(void 0===this._cellRoleInternal){const ct=this._elementRef.nativeElement.getAttribute("role"),wt="grid"===ct||"treegrid"===ct?"gridcell":"cell";this._cellRoleInternal=this._isNativeHtmlTable&&"cell"===wt?null:wt}return this._cellRoleInternal}get trackBy(){return this._trackByFn}set trackBy(ct){this._trackByFn=ct}get dataSource(){return this._dataSource}set dataSource(ct){this._dataSource!==ct&&this._switchDataSource(ct)}get multiTemplateDataRows(){return this._multiTemplateDataRows}set multiTemplateDataRows(ct){this._multiTemplateDataRows=ct,this._rowOutlet&&this._rowOutlet.viewContainer.length&&(this._forceRenderDataRows(),this.updateStickyColumnStyles())}get fixedLayout(){return this._fixedLayout}set fixedLayout(ct){this._fixedLayout=ct,this._forceRecalculateCellWidths=!0,this._stickyColumnStylesNeedReset=!0}constructor(ct,wt,Ut,xi,Si,zi,en,Ni,fn,Zt,bt,re){this._differs=ct,this._changeDetectorRef=wt,this._elementRef=Ut,this._dir=Si,this._platform=en,this._viewRepeater=Ni,this._coalescedStyleScheduler=fn,this._viewportRuler=Zt,this._stickyPositioningListener=bt,this._ngZone=re,this._onDestroy=new f.B,this._columnDefsByName=new Map,this._customColumnDefs=new Set,this._customRowDefs=new Set,this._customHeaderRowDefs=new Set,this._customFooterRowDefs=new Set,this._headerRowDefChanged=!0,this._footerRowDefChanged=!0,this._stickyColumnStylesNeedReset=!0,this._forceRecalculateCellWidths=!0,this._cachedRenderRowsMap=new Map,this.stickyCssClass="cdk-table-sticky",this.needsPositionStickyOnElement=!0,this._isShowingNoDataRow=!1,this._hasAllOutlets=!1,this._hasInitialized=!1,this._cellRoleInternal=void 0,this._multiTemplateDataRows=!1,this._fixedLayout=!1,this.contentChanged=new e.bkB,this.viewChange=new d.t({start:0,end:Number.MAX_VALUE}),xi||Ut.nativeElement.setAttribute("role","table"),this._document=zi,this._isServer=!en.isBrowser,this._isNativeHtmlTable="TABLE"===Ut.nativeElement.nodeName}ngOnInit(){this._setupStickyStyler(),this._dataDiffer=this._differs.find([]).create((ct,wt)=>this.trackBy?this.trackBy(wt.dataIndex,wt.data):wt),this._viewportRuler.change().pipe((0,F.Q)(this._onDestroy)).subscribe(()=>{this._forceRecalculateCellWidths=!0})}ngAfterContentInit(){this._hasInitialized=!0}ngAfterContentChecked(){this._canRender()&&this._render()}ngOnDestroy(){[this._rowOutlet?.viewContainer,this._headerRowOutlet?.viewContainer,this._footerRowOutlet?.viewContainer,this._cachedRenderRowsMap,this._customColumnDefs,this._customRowDefs,this._customHeaderRowDefs,this._customFooterRowDefs,this._columnDefsByName].forEach(ct=>{ct?.clear()}),this._headerRowDefs=[],this._footerRowDefs=[],this._defaultRowDef=null,this._onDestroy.next(),this._onDestroy.complete(),(0,w.y4)(this.dataSource)&&this.dataSource.disconnect(this)}renderRows(){this._renderRows=this._getAllRenderRows();const ct=this._dataDiffer.diff(this._renderRows);if(!ct)return this._updateNoDataRow(),void this.contentChanged.next();const wt=this._rowOutlet.viewContainer;this._viewRepeater.applyChanges(ct,wt,(Ut,xi,Si)=>this._getEmbeddedViewArgs(Ut.item,Si),Ut=>Ut.item.data,Ut=>{Ut.operation===w.Q3.INSERTED&&Ut.context&&this._renderCellTemplateForItem(Ut.record.item.rowDef,Ut.context)}),this._updateRowIndexContext(),ct.forEachIdentityChange(Ut=>{wt.get(Ut.currentIndex).context.$implicit=Ut.item.data}),this._updateNoDataRow(),this._ngZone&&e.SKi.isInAngularZone()?this._ngZone.onStable.pipe((0,R.s)(1),(0,F.Q)(this._onDestroy)).subscribe(()=>{this.updateStickyColumnStyles()}):this.updateStickyColumnStyles(),this.contentChanged.next()}addColumnDef(ct){this._customColumnDefs.add(ct)}removeColumnDef(ct){this._customColumnDefs.delete(ct)}addRowDef(ct){this._customRowDefs.add(ct)}removeRowDef(ct){this._customRowDefs.delete(ct)}addHeaderRowDef(ct){this._customHeaderRowDefs.add(ct),this._headerRowDefChanged=!0}removeHeaderRowDef(ct){this._customHeaderRowDefs.delete(ct),this._headerRowDefChanged=!0}addFooterRowDef(ct){this._customFooterRowDefs.add(ct),this._footerRowDefChanged=!0}removeFooterRowDef(ct){this._customFooterRowDefs.delete(ct),this._footerRowDefChanged=!0}setNoDataRow(ct){this._customNoDataRow=ct}updateStickyHeaderRowStyles(){const ct=this._getRenderedRows(this._headerRowOutlet);if(this._isNativeHtmlTable){const Ut=Xe(this._headerRowOutlet,"thead");Ut&&(Ut.style.display=ct.length?"":"none")}const wt=this._headerRowDefs.map(Ut=>Ut.sticky);this._stickyStyler.clearStickyPositioning(ct,["top"]),this._stickyStyler.stickRows(ct,wt,"top"),this._headerRowDefs.forEach(Ut=>Ut.resetStickyChanged())}updateStickyFooterRowStyles(){const ct=this._getRenderedRows(this._footerRowOutlet);if(this._isNativeHtmlTable){const Ut=Xe(this._footerRowOutlet,"tfoot");Ut&&(Ut.style.display=ct.length?"":"none")}const wt=this._footerRowDefs.map(Ut=>Ut.sticky);this._stickyStyler.clearStickyPositioning(ct,["bottom"]),this._stickyStyler.stickRows(ct,wt,"bottom"),this._stickyStyler.updateStickyFooterContainer(this._elementRef.nativeElement,wt),this._footerRowDefs.forEach(Ut=>Ut.resetStickyChanged())}updateStickyColumnStyles(){const ct=this._getRenderedRows(this._headerRowOutlet),wt=this._getRenderedRows(this._rowOutlet),Ut=this._getRenderedRows(this._footerRowOutlet);(this._isNativeHtmlTable&&!this._fixedLayout||this._stickyColumnStylesNeedReset)&&(this._stickyStyler.clearStickyPositioning([...ct,...wt,...Ut],["left","right"]),this._stickyColumnStylesNeedReset=!1),ct.forEach((xi,Si)=>{this._addStickyColumnStyles([xi],this._headerRowDefs[Si])}),this._rowDefs.forEach(xi=>{const Si=[];for(let zi=0;zi{this._addStickyColumnStyles([xi],this._footerRowDefs[Si])}),Array.from(this._columnDefsByName.values()).forEach(xi=>xi.resetStickyChanged())}_outletAssigned(){!this._hasAllOutlets&&this._rowOutlet&&this._headerRowOutlet&&this._footerRowOutlet&&this._noDataRowOutlet&&(this._hasAllOutlets=!0,this._canRender()&&this._render())}_canRender(){return this._hasAllOutlets&&this._hasInitialized}_render(){this._cacheRowDefs(),this._cacheColumnDefs();const wt=this._renderUpdatedColumns()||this._headerRowDefChanged||this._footerRowDefChanged;this._stickyColumnStylesNeedReset=this._stickyColumnStylesNeedReset||wt,this._forceRecalculateCellWidths=wt,this._headerRowDefChanged&&(this._forceRenderHeaderRows(),this._headerRowDefChanged=!1),this._footerRowDefChanged&&(this._forceRenderFooterRows(),this._footerRowDefChanged=!1),this.dataSource&&this._rowDefs.length>0&&!this._renderChangeSubscription?this._observeRenderChanges():this._stickyColumnStylesNeedReset&&this.updateStickyColumnStyles(),this._checkStickyStates()}_getAllRenderRows(){const ct=[],wt=this._cachedRenderRowsMap;this._cachedRenderRowsMap=new Map;for(let Ut=0;Ut{const zi=Ut&&Ut.has(Si)?Ut.get(Si):[];if(zi.length){const en=zi.shift();return en.dataIndex=wt,en}return{data:ct,rowDef:Si,dataIndex:wt}})}_cacheColumnDefs(){this._columnDefsByName.clear(),He(this._getOwnDefs(this._contentColumnDefs),this._customColumnDefs).forEach(wt=>{this._columnDefsByName.has(wt.name),this._columnDefsByName.set(wt.name,wt)})}_cacheRowDefs(){this._headerRowDefs=He(this._getOwnDefs(this._contentHeaderRowDefs),this._customHeaderRowDefs),this._footerRowDefs=He(this._getOwnDefs(this._contentFooterRowDefs),this._customFooterRowDefs),this._rowDefs=He(this._getOwnDefs(this._contentRowDefs),this._customRowDefs);const ct=this._rowDefs.filter(wt=>!wt.when);this._defaultRowDef=ct[0]}_renderUpdatedColumns(){const ct=(Si,zi)=>Si||!!zi.getColumnsDiff(),wt=this._rowDefs.reduce(ct,!1);wt&&this._forceRenderDataRows();const Ut=this._headerRowDefs.reduce(ct,!1);Ut&&this._forceRenderHeaderRows();const xi=this._footerRowDefs.reduce(ct,!1);return xi&&this._forceRenderFooterRows(),wt||Ut||xi}_switchDataSource(ct){this._data=[],(0,w.y4)(this.dataSource)&&this.dataSource.disconnect(this),this._renderChangeSubscription&&(this._renderChangeSubscription.unsubscribe(),this._renderChangeSubscription=null),ct||(this._dataDiffer&&this._dataDiffer.diff([]),this._rowOutlet&&this._rowOutlet.viewContainer.clear()),this._dataSource=ct}_observeRenderChanges(){if(!this.dataSource)return;let ct;(0,w.y4)(this.dataSource)?ct=this.dataSource.connect(this):(0,T.A)(this.dataSource)?ct=this.dataSource:Array.isArray(this.dataSource)&&(ct=(0,y.of)(this.dataSource)),this._renderChangeSubscription=ct.pipe((0,F.Q)(this._onDestroy)).subscribe(wt=>{this._data=wt||[],this.renderRows()})}_forceRenderHeaderRows(){this._headerRowOutlet.viewContainer.length>0&&this._headerRowOutlet.viewContainer.clear(),this._headerRowDefs.forEach((ct,wt)=>this._renderRow(this._headerRowOutlet,ct,wt)),this.updateStickyHeaderRowStyles()}_forceRenderFooterRows(){this._footerRowOutlet.viewContainer.length>0&&this._footerRowOutlet.viewContainer.clear(),this._footerRowDefs.forEach((ct,wt)=>this._renderRow(this._footerRowOutlet,ct,wt)),this.updateStickyFooterRowStyles()}_addStickyColumnStyles(ct,wt){const Ut=Array.from(wt.columns||[]).map(zi=>this._columnDefsByName.get(zi)),xi=Ut.map(zi=>zi.sticky),Si=Ut.map(zi=>zi.stickyEnd);this._stickyStyler.updateStickyColumns(ct,xi,Si,!this._fixedLayout||this._forceRecalculateCellWidths)}_getRenderedRows(ct){const wt=[];for(let Ut=0;Ut!xi.when||xi.when(wt,ct));else{let xi=this._rowDefs.find(Si=>Si.when&&Si.when(wt,ct))||this._defaultRowDef;xi&&Ut.push(xi)}return Ut}_getEmbeddedViewArgs(ct,wt){return{templateRef:ct.rowDef.template,context:{$implicit:ct.data},index:wt}}_renderRow(ct,wt,Ut,xi={}){const Si=ct.viewContainer.createEmbeddedView(wt.template,xi,Ut);return this._renderCellTemplateForItem(wt,xi),Si}_renderCellTemplateForItem(ct,wt){for(let Ut of this._getCellTemplates(ct))N.mostRecentCellOutlet&&N.mostRecentCellOutlet._viewContainer.createEmbeddedView(Ut,wt);this._changeDetectorRef.markForCheck()}_updateRowIndexContext(){const ct=this._rowOutlet.viewContainer;for(let wt=0,Ut=ct.length;wt{const Ut=this._columnDefsByName.get(wt);return ct.extractCellTemplate(Ut)}):[]}_forceRenderDataRows(){this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear(),this.renderRows()}_checkStickyStates(){const ct=(wt,Ut)=>wt||Ut.hasStickyChanged();this._headerRowDefs.reduce(ct,!1)&&this.updateStickyHeaderRowStyles(),this._footerRowDefs.reduce(ct,!1)&&this.updateStickyFooterRowStyles(),Array.from(this._columnDefsByName.values()).reduce(ct,!1)&&(this._stickyColumnStylesNeedReset=!0,this.updateStickyColumnStyles())}_setupStickyStyler(){this._stickyStyler=new se(this._isNativeHtmlTable,this.stickyCssClass,this._dir?this._dir.value:"ltr",this._coalescedStyleScheduler,this._platform.isBrowser,this.needsPositionStickyOnElement,this._stickyPositioningListener),(this._dir?this._dir.change:(0,y.of)()).pipe((0,F.Q)(this._onDestroy)).subscribe(wt=>{this._stickyStyler.direction=wt,this.updateStickyColumnStyles()})}_getOwnDefs(ct){return ct.filter(wt=>!wt._table||wt._table===this)}_updateNoDataRow(){const ct=this._customNoDataRow||this._noDataRow;if(!ct)return;const wt=0===this._rowOutlet.viewContainer.length;if(wt===this._isShowingNoDataRow)return;const Ut=this._noDataRowOutlet.viewContainer;if(wt){const xi=Ut.createEmbeddedView(ct.templateRef),Si=xi.rootNodes[0];1===xi.rootNodes.length&&Si?.nodeType===this._document.ELEMENT_NODE&&(Si.setAttribute("role","row"),Si.classList.add(ct._contentClassName))}else Ut.clear();this._isShowingNoDataRow=wt,this._changeDetectorRef.markForCheck()}static#e=this.\u0275fac=function(wt){return new(wt||Mt)(e.rXU(e._q3),e.rXU(e.gRc),e.rXU(e.aKT),e.kS0("role"),e.rXU(t.dS,8),e.rXU(x.qQ),e.rXU(S.OD),e.rXU(w.sL),e.rXU(C),e.rXU(l.Xj),e.rXU(pe,12),e.rXU(e.SKi,8))};static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["cdk-table"],["table","cdk-table",""]],contentQueries:function(wt,Ut,xi){if(1&wt&&(e.wni(xi,qe,5),e.wni(xi,de,5),e.wni(xi,V,5),e.wni(xi,r,5),e.wni(xi,v,5)),2&wt){let Si;e.mGM(Si=e.lsd())&&(Ut._noDataRow=Si.first),e.mGM(Si=e.lsd())&&(Ut._contentColumnDefs=Si),e.mGM(Si=e.lsd())&&(Ut._contentRowDefs=Si),e.mGM(Si=e.lsd())&&(Ut._contentHeaderRowDefs=Si),e.mGM(Si=e.lsd())&&(Ut._contentFooterRowDefs=Si)}},hostAttrs:[1,"cdk-table"],hostVars:2,hostBindings:function(wt,Ut){2&wt&&e.AVh("cdk-table-fixed-layout",Ut.fixedLayout)},inputs:{trackBy:"trackBy",dataSource:"dataSource",multiTemplateDataRows:[2,"multiTemplateDataRows","multiTemplateDataRows",e.L39],fixedLayout:[2,"fixedLayout","fixedLayout",e.L39]},outputs:{contentChanged:"contentChanged"},exportAs:["cdkTable"],standalone:!0,features:[e.Jv_([{provide:ie,useExisting:Mt},{provide:w.sL,useClass:w.xn},{provide:C,useClass:k},{provide:pe,useValue:null}]),e.GFd,e.aNF],ngContentSelectors:W,decls:5,vars:2,consts:[["role","rowgroup"],["headerRowOutlet",""],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(wt,Ut){1&wt&&(e.NAR(z),e.SdG(0),e.SdG(1,1),e.DNE(2,$,1,0)(3,j,7,0)(4,Q,4,0)),2&wt&&(e.R7$(2),e.vxM(Ut._isServer?2:-1),e.R7$(),e.vxM(Ut._isNativeHtmlTable?3:4))},dependencies:[at,_t,Xt,pt],styles:[".cdk-table-fixed-layout{table-layout:fixed}"],encapsulation:2})}return Mt})();function He(Mt,it){return Mt.concat(Array.from(it))}function Xe(Mt,it){const ct=it.toUpperCase();let wt=Mt.viewContainer.element.nativeElement;for(;wt;){const Ut=1===wt.nodeType?wt.nodeName:null;if(Ut===ct)return wt;if("TABLE"===Ut)break;wt=wt.parentNode}return null}let rt=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275mod=e.$C({type:Mt});static#i=this.\u0275inj=e.G2t({imports:[l.E9]})}return Mt})();var Nt=g(6600),Et=g(7786),Vt=g(4572),oe=g(4085),tt=g(6354);const $t=[[["caption"]],[["colgroup"],["col"]],"*"],zt=["caption","colgroup, col","*"];function Jt(Mt,it){1&Mt&&e.SdG(0,2)}function St(Mt,it){1&Mt&&(e.j41(0,"thead",0),e.eu8(1,1),e.k0s(),e.j41(2,"tbody",2),e.eu8(3,3)(4,4),e.k0s(),e.j41(5,"tfoot",0),e.eu8(6,5),e.k0s())}function dt(Mt,it){1&Mt&&e.eu8(0,1)(1,3)(2,4)(3,5)}let q=(()=>{class Mt extends Ie{constructor(){super(...arguments),this.stickyCssClass="mat-mdc-table-sticky",this.needsPositionStickyOnElement=!1}static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["mat-table"],["table","mat-table",""]],hostAttrs:[1,"mat-mdc-table","mdc-data-table__table"],hostVars:2,hostBindings:function(wt,Ut){2&wt&&e.AVh("mdc-table-fixed-layout",Ut.fixedLayout)},exportAs:["matTable"],standalone:!0,features:[e.Jv_([{provide:Ie,useExisting:Mt},{provide:ie,useExisting:Mt},{provide:C,useClass:k},{provide:w.sL,useClass:w.xn},{provide:pe,useValue:null}]),e.Vt3,e.aNF],ngContentSelectors:zt,decls:5,vars:2,consts:[["role","rowgroup"],["headerRowOutlet",""],["role","rowgroup",1,"mdc-data-table__content"],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(wt,Ut){1&wt&&(e.NAR($t),e.SdG(0),e.SdG(1,1),e.DNE(2,Jt,1,0)(3,St,7,0)(4,dt,4,0)),2&wt&&(e.R7$(2),e.vxM(Ut._isServer?2:-1),e.R7$(),e.vxM(Ut._isNativeHtmlTable?3:4))},dependencies:[at,_t,Xt,pt],styles:[".mat-mdc-table-sticky{position:sticky !important}.mdc-data-table{-webkit-overflow-scrolling:touch;display:inline-flex;flex-direction:column;box-sizing:border-box;position:relative}.mdc-data-table__table-container{-webkit-overflow-scrolling:touch;overflow-x:auto;width:100%}.mdc-data-table__table{min-width:100%;border:0;white-space:nowrap;border-spacing:0;table-layout:fixed}.mdc-data-table__cell{box-sizing:border-box;overflow:hidden;text-align:left;text-overflow:ellipsis}[dir=rtl] .mdc-data-table__cell,.mdc-data-table__cell[dir=rtl]{text-align:right}.mdc-data-table__cell--numeric{text-align:right}[dir=rtl] .mdc-data-table__cell--numeric,.mdc-data-table__cell--numeric[dir=rtl]{text-align:left}.mdc-data-table__header-cell{box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;outline:none;text-align:left}[dir=rtl] .mdc-data-table__header-cell,.mdc-data-table__header-cell[dir=rtl]{text-align:right}.mdc-data-table__header-cell--numeric{text-align:right}[dir=rtl] .mdc-data-table__header-cell--numeric,.mdc-data-table__header-cell--numeric[dir=rtl]{text-align:left}.mdc-data-table__header-cell-wrapper{align-items:center;display:inline-flex;vertical-align:middle}.mdc-data-table__cell,.mdc-data-table__header-cell{padding:0 16px 0 16px}.mdc-data-table__header-cell--checkbox,.mdc-data-table__cell--checkbox{padding-left:4px;padding-right:0}[dir=rtl] .mdc-data-table__header-cell--checkbox,[dir=rtl] .mdc-data-table__cell--checkbox,.mdc-data-table__header-cell--checkbox[dir=rtl],.mdc-data-table__cell--checkbox[dir=rtl]{padding-left:0;padding-right:4px}mat-table{display:block}mat-header-row{min-height:56px}mat-row,mat-footer-row{min-height:48px}mat-row,mat-header-row,mat-footer-row{display:flex;border-width:0;border-bottom-width:1px;border-style:solid;align-items:center;box-sizing:border-box}mat-cell:first-of-type,mat-header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:24px}[dir=rtl] mat-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:first-of-type:not(:only-of-type){padding-left:0;padding-right:24px}mat-cell:last-of-type,mat-header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:24px}[dir=rtl] mat-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:last-of-type:not(:only-of-type){padding-right:0;padding-left:24px}mat-cell,mat-header-cell,mat-footer-cell{flex:1;display:flex;align-items:center;overflow:hidden;word-wrap:break-word;min-height:inherit}.mat-mdc-table{table-layout:auto;white-space:normal;background-color:var(--mat-table-background-color)}.mat-mdc-header-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-header-container-height, 56px);color:var(--mat-table-header-headline-color, rgba(0, 0, 0, 0.87));font-family:var(--mat-table-header-headline-font, Roboto, sans-serif);line-height:var(--mat-table-header-headline-line-height);font-size:var(--mat-table-header-headline-size, 14px);font-weight:var(--mat-table-header-headline-weight, 500)}.mat-mdc-row{height:var(--mat-table-row-item-container-height, 52px);color:var(--mat-table-row-item-label-text-color, rgba(0, 0, 0, 0.87))}.mat-mdc-row,.mdc-data-table__content{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-table-row-item-label-text-font, Roboto, sans-serif);line-height:var(--mat-table-row-item-label-text-line-height);font-size:var(--mat-table-row-item-label-text-size, 14px);font-weight:var(--mat-table-row-item-label-text-weight)}.mat-mdc-footer-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-footer-container-height, 52px);color:var(--mat-table-row-item-label-text-color, rgba(0, 0, 0, 0.87));font-family:var(--mat-table-footer-supporting-text-font, Roboto, sans-serif);line-height:var(--mat-table-footer-supporting-text-line-height);font-size:var(--mat-table-footer-supporting-text-size, 14px);font-weight:var(--mat-table-footer-supporting-text-weight);letter-spacing:var(--mat-table-footer-supporting-text-tracking)}.mat-mdc-header-cell{border-bottom-color:var(--mat-table-row-item-outline-color, rgba(0, 0, 0, 0.12));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-header-headline-tracking);font-weight:inherit;line-height:inherit}.mat-mdc-cell{border-bottom-color:var(--mat-table-row-item-outline-color, rgba(0, 0, 0, 0.12));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-row-item-label-text-tracking);line-height:inherit}.mdc-data-table__row:last-child .mat-mdc-cell{border-bottom:none}.mat-mdc-footer-cell{letter-spacing:var(--mat-table-row-item-label-text-tracking)}mat-row.mat-mdc-row,mat-header-row.mat-mdc-header-row,mat-footer-row.mat-mdc-footer-row{border-bottom:none}.mat-mdc-table tbody,.mat-mdc-table tfoot,.mat-mdc-table thead,.mat-mdc-cell,.mat-mdc-footer-cell,.mat-mdc-header-row,.mat-mdc-row,.mat-mdc-footer-row,.mat-mdc-table .mat-mdc-header-cell{background:inherit}.mat-mdc-table mat-header-row.mat-mdc-header-row,.mat-mdc-table mat-row.mat-mdc-row,.mat-mdc-table mat-footer-row.mat-mdc-footer-cell{height:unset}mat-header-cell.mat-mdc-header-cell,mat-cell.mat-mdc-cell,mat-footer-cell.mat-mdc-footer-cell{align-self:stretch}"],encapsulation:2})}return Mt})(),Re=(()=>{class Mt extends ae{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matCellDef",""]],standalone:!0,features:[e.Jv_([{provide:ae,useExisting:Mt}]),e.Vt3]})}return Mt})(),Ne=(()=>{class Mt extends Me{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matHeaderCellDef",""]],standalone:!0,features:[e.Jv_([{provide:Me,useExisting:Mt}]),e.Vt3]})}return Mt})(),gt=(()=>{class Mt extends Te{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matFooterCellDef",""]],standalone:!0,features:[e.Jv_([{provide:Te,useExisting:Mt}]),e.Vt3]})}return Mt})(),$e=(()=>{class Mt extends de{get name(){return this._name}set name(ct){this._setNameInput(ct)}_updateColumnCssClassName(){super._updateColumnCssClassName(),this._columnCssClassName.push(`mat-column-${this.cssClassFriendlyName}`)}static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matColumnDef",""]],inputs:{name:[0,"matColumnDef","name"]},standalone:!0,features:[e.Jv_([{provide:de,useExisting:Mt},{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Mt}]),e.Vt3]})}return Mt})(),Fe=(()=>{class Mt extends n{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["mat-header-cell"],["th","mat-header-cell",""]],hostAttrs:["role","columnheader",1,"mat-mdc-header-cell","mdc-data-table__header-cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),Ge=(()=>{class Mt extends c{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["mat-footer-cell"],["td","mat-footer-cell",""]],hostAttrs:[1,"mat-mdc-footer-cell","mdc-data-table__cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),et=(()=>{class Mt extends m{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["mat-cell"],["td","mat-cell",""]],hostAttrs:[1,"mat-mdc-cell","mdc-data-table__cell"],standalone:!0,features:[e.Vt3]})}return Mt})(),Tt=(()=>{class Mt extends r{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matHeaderRowDef",""]],inputs:{columns:[0,"matHeaderRowDef","columns"],sticky:[2,"matHeaderRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.Jv_([{provide:r,useExisting:Mt}]),e.GFd,e.Vt3]})}return Mt})(),mi=(()=>{class Mt extends v{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matFooterRowDef",""]],inputs:{columns:[0,"matFooterRowDef","columns"],sticky:[2,"matFooterRowDefSticky","sticky",e.L39]},standalone:!0,features:[e.Jv_([{provide:v,useExisting:Mt}]),e.GFd,e.Vt3]})}return Mt})(),Kt=(()=>{class Mt extends V{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275dir=e.FsC({type:Mt,selectors:[["","matRowDef",""]],inputs:{columns:[0,"matRowDefColumns","columns"],when:[0,"matRowDefWhen","when"]},standalone:!0,features:[e.Jv_([{provide:V,useExisting:Mt}]),e.Vt3]})}return Mt})(),Pt=(()=>{class Mt extends ne{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["mat-header-row"],["tr","mat-header-row",""]],hostAttrs:["role","row",1,"mat-mdc-header-row","mdc-data-table__header-row"],exportAs:["matHeaderRow"],standalone:!0,features:[e.Jv_([{provide:ne,useExisting:Mt}]),e.Vt3,e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),Xi=(()=>{class Mt extends Ee{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["mat-footer-row"],["tr","mat-footer-row",""]],hostAttrs:["role","row",1,"mat-mdc-footer-row","mdc-data-table__row"],exportAs:["matFooterRow"],standalone:!0,features:[e.Jv_([{provide:Ee,useExisting:Mt}]),e.Vt3,e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),di=(()=>{class Mt extends ze{static#e=this.\u0275fac=(()=>{let ct;return function(Ut){return(ct||(ct=e.xGo(Mt)))(Ut||Mt)}})();static#t=this.\u0275cmp=e.VBU({type:Mt,selectors:[["mat-row"],["tr","mat-row",""]],hostAttrs:["role","row",1,"mat-mdc-row","mdc-data-table__row"],exportAs:["matRow"],standalone:!0,features:[e.Jv_([{provide:ze,useExisting:Mt}]),e.Vt3,e.aNF],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(wt,Ut){1&wt&&e.eu8(0,0)},dependencies:[N],encapsulation:2})}return Mt})(),Li=(()=>{class Mt{static#e=this.\u0275fac=function(wt){return new(wt||Mt)};static#t=this.\u0275mod=e.$C({type:Mt});static#i=this.\u0275inj=e.G2t({imports:[Nt.yE,rt,Nt.yE]})}return Mt})();class Qt extends w.qS{get data(){return this._data.value}set data(it){it=Array.isArray(it)?it:[],this._data.next(it),this._renderChangesSubscription||this._filterData(it)}get filter(){return this._filter.value}set filter(it){this._filter.next(it),this._renderChangesSubscription||this._filterData(this.data)}get sort(){return this._sort}set sort(it){this._sort=it,this._updateChangeSubscription()}get paginator(){return this._paginator}set paginator(it){this._paginator=it,this._updateChangeSubscription()}constructor(it=[]){super(),this._renderData=new d.t([]),this._filter=new d.t(""),this._internalPageChanges=new f.B,this._renderChangesSubscription=null,this.sortingDataAccessor=(ct,wt)=>{const Ut=ct[wt];if((0,oe.o1)(Ut)){const xi=Number(Ut);return xi<9007199254740991?xi:Ut}return Ut},this.sortData=(ct,wt)=>{const Ut=wt.active,xi=wt.direction;return Ut&&""!=xi?ct.sort((Si,zi)=>{let en=this.sortingDataAccessor(Si,Ut),Ni=this.sortingDataAccessor(zi,Ut);const fn=typeof en,Zt=typeof Ni;fn!==Zt&&("number"===fn&&(en+=""),"number"===Zt&&(Ni+=""));let bt=0;return null!=en&&null!=Ni?en>Ni?bt=1:en{const Ut=Object.keys(ct).reduce((Si,zi)=>Si+ct[zi]+"\u25ec","").toLowerCase(),xi=wt.trim().toLowerCase();return-1!=Ut.indexOf(xi)},this._data=new d.t(it),this._updateChangeSubscription()}_updateChangeSubscription(){const it=this._sort?(0,Et.h)(this._sort.sortChange,this._sort.initialized):(0,y.of)(null),ct=this._paginator?(0,Et.h)(this._paginator.page,this._internalPageChanges,this._paginator.initialized):(0,y.of)(null),Ut=(0,Vt.z)([this._data,this._filter]).pipe((0,tt.T)(([zi])=>this._filterData(zi))),xi=(0,Vt.z)([Ut,it]).pipe((0,tt.T)(([zi])=>this._orderData(zi))),Si=(0,Vt.z)([xi,ct]).pipe((0,tt.T)(([zi])=>this._pageData(zi)));this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=Si.subscribe(zi=>this._renderData.next(zi))}_filterData(it){return this.filteredData=null==this.filter||""===this.filter?it:it.filter(ct=>this.filterPredicate(ct,this.filter)),this.paginator&&this._updatePaginator(this.filteredData.length),this.filteredData}_orderData(it){return this.sort?this.sortData(it.slice(),this.sort):it}_pageData(it){if(!this.paginator)return it;const ct=this.paginator.pageIndex*this.paginator.pageSize;return it.slice(ct,ct+this.paginator.pageSize)}_updatePaginator(it){Promise.resolve().then(()=>{const ct=this.paginator;if(ct&&(ct.length=it,ct.pageIndex>0)){const wt=Math.ceil(ct.length/ct.pageSize)-1||0,Ut=Math.min(ct.pageIndex,wt);Ut!==ct.pageIndex&&(ct.pageIndex=Ut,this._internalPageChanges.next())}})}connect(){return this._renderChangesSubscription||this._updateChangeSubscription(),this._renderData}disconnect(){this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=null}}},6850:(Qe,te,g)=>{"use strict";g.d(te,{Bu:()=>Jt,ES:()=>_e,Ql:()=>St,RI:()=>Ae,T8:()=>tt,hQ:()=>dt,mq:()=>pe});var e=g(4438),t=g(6600),w=g(6939),S=g(1413),l=g(3726),x=g(7673),f=g(7786),I=g(983),d=g(1985),T=g(1807),y=g(8359),F=g(4412),R=g(5542),z=g(6860),W=g(8203),$=g(8617),j=g(7336),Q=g(6977),J=g(6697),ee=g(9172),ie=g(5558),ge=g(5245),ae=g(5964),Me=g(3294),Te=g(2318),de=g(177),D=g(9969);const n=["*"];function c(we,he){1&we&&e.SdG(0)}const m=["tabListContainer"],h=["tabList"],C=["tabListInner"],k=["nextPaginator"],L=["previousPaginator"],_=we=>({animationDuration:we}),r=(we,he)=>({value:we,params:he});function v(we,he){}const V=["tabBodyWrapper"],N=["tabHeader"];function ne(we,he){}function Ee(we,he){if(1&we&&e.DNE(0,ne,0,0,"ng-template",12),2&we){const q=e.XpG().$implicit;e.Y8G("cdkPortalOutlet",q.templateLabel)}}function ze(we,he){if(1&we&&e.EFF(0),2&we){const q=e.XpG().$implicit;e.JRh(q.textLabel)}}function qe(we,he){if(1&we){const q=e.RV6();e.j41(0,"div",7,2),e.bIt("click",function(){const Ne=e.eBV(q),gt=Ne.$implicit,$e=Ne.$index,Fe=e.XpG(),Ge=e.sdS(1);return e.Njj(Fe._handleClick(gt,Ge,$e))})("cdkFocusChange",function(Ne){const gt=e.eBV(q).$index,$e=e.XpG();return e.Njj($e._tabFocusChanged(Ne,gt))}),e.nrm(2,"span",8)(3,"div",9),e.j41(4,"span",10)(5,"span",11),e.DNE(6,Ee,1,1,null,12)(7,ze,1,1),e.k0s()()()}if(2&we){const q=he.$implicit,Re=he.$index,Ne=e.sdS(1),gt=e.XpG();e.HbH(q.labelClass),e.AVh("mdc-tab--active",gt.selectedIndex===Re),e.Y8G("id",gt._getTabLabelId(Re))("disabled",q.disabled)("fitInkBarToContent",gt.fitInkBarToContent),e.BMQ("tabIndex",gt._getTabIndex(Re))("aria-posinset",Re+1)("aria-setsize",gt._tabs.length)("aria-controls",gt._getTabContentId(Re))("aria-selected",gt.selectedIndex===Re)("aria-label",q.ariaLabel||null)("aria-labelledby",!q.ariaLabel&&q.ariaLabelledby?q.ariaLabelledby:null),e.R7$(3),e.Y8G("matRippleTrigger",Ne)("matRippleDisabled",q.disabled||gt.disableRipple),e.R7$(3),e.vxM(q.templateLabel?6:7)}}function Ke(we,he){1&we&&e.SdG(0)}function se(we,he){if(1&we){const q=e.RV6();e.j41(0,"mat-tab-body",13),e.bIt("_onCentered",function(){e.eBV(q);const Ne=e.XpG();return e.Njj(Ne._removeTabBodyWrapperHeight())})("_onCentering",function(Ne){e.eBV(q);const gt=e.XpG();return e.Njj(gt._setTabBodyWrapperHeight(Ne))}),e.k0s()}if(2&we){const q=he.$implicit,Re=he.$index,Ne=e.XpG();e.HbH(q.bodyClass),e.AVh("mat-mdc-tab-body-active",Ne.selectedIndex===Re),e.Y8G("id",Ne._getTabContentId(Re))("content",q.content)("position",q.position)("origin",q.origin)("animationDuration",Ne.animationDuration)("preserveContent",Ne.preserveContent),e.BMQ("tabindex",null!=Ne.contentTabIndex&&Ne.selectedIndex===Re?Ne.contentTabIndex:null)("aria-labelledby",Ne._getTabLabelId(Re))("aria-hidden",Ne.selectedIndex!==Re)}}const X=["mat-tab-nav-bar",""],me=["mat-tab-link",""],ce=new e.nKC("MatTabContent");let fe=(()=>{class we{constructor(q){this.template=q}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.C4Q))};static#t=this.\u0275dir=e.FsC({type:we,selectors:[["","matTabContent",""]],standalone:!0,features:[e.Jv_([{provide:ce,useExisting:we}])]})}return we})();const ke=new e.nKC("MatTabLabel"),mt=new e.nKC("MAT_TAB");let _e=(()=>{class we extends w.bV{constructor(q,Re,Ne){super(q,Re),this._closestTab=Ne}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.C4Q),e.rXU(e.c1b),e.rXU(mt,8))};static#t=this.\u0275dir=e.FsC({type:we,selectors:[["","mat-tab-label",""],["","matTabLabel",""]],standalone:!0,features:[e.Jv_([{provide:ke,useExisting:we}]),e.Vt3]})}return we})();const be=new e.nKC("MAT_TAB_GROUP");let pe=(()=>{class we{get templateLabel(){return this._templateLabel}set templateLabel(q){this._setTemplateLabelInput(q)}get content(){return this._contentPortal}constructor(q,Re){this._viewContainerRef=q,this._closestTabGroup=Re,this.disabled=!1,this._explicitContent=void 0,this.textLabel="",this._contentPortal=null,this._stateChanges=new S.B,this.position=null,this.origin=null,this.isActive=!1}ngOnChanges(q){(q.hasOwnProperty("textLabel")||q.hasOwnProperty("disabled"))&&this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}ngOnInit(){this._contentPortal=new w.VA(this._explicitContent||this._implicitContent,this._viewContainerRef)}_setTemplateLabelInput(q){q&&q._closestTab===this&&(this._templateLabel=q)}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.c1b),e.rXU(be,8))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab"]],contentQueries:function(Re,Ne,gt){if(1&Re&&(e.wni(gt,_e,5),e.wni(gt,fe,7,e.C4Q)),2&Re){let $e;e.mGM($e=e.lsd())&&(Ne.templateLabel=$e.first),e.mGM($e=e.lsd())&&(Ne._explicitContent=$e.first)}},viewQuery:function(Re,Ne){if(1&Re&&e.GBs(e.C4Q,7),2&Re){let gt;e.mGM(gt=e.lsd())&&(Ne._implicitContent=gt.first)}},hostAttrs:["hidden",""],inputs:{disabled:[2,"disabled","disabled",e.L39],textLabel:[0,"label","textLabel"],ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],labelClass:"labelClass",bodyClass:"bodyClass"},exportAs:["matTab"],standalone:!0,features:[e.Jv_([{provide:mt,useExisting:we}]),e.GFd,e.OA$,e.aNF],ngContentSelectors:n,decls:1,vars:0,template:function(Re,Ne){1&Re&&(e.NAR(),e.DNE(0,c,1,0,"ng-template"))},encapsulation:2})}return we})();const Ze="mdc-tab-indicator--active",_t="mdc-tab-indicator--no-transition";class at{constructor(he){this._items=he}hide(){this._items.forEach(he=>he.deactivateInkBar())}alignToElement(he){const q=this._items.find(Ne=>Ne.elementRef.nativeElement===he),Re=this._currentItem;if(q!==Re&&(Re?.deactivateInkBar(),q)){const Ne=Re?.elementRef.nativeElement.getBoundingClientRect?.();q.activateInkBar(Ne),this._currentItem=q}}}let pt=(()=>{class we{constructor(){this._elementRef=(0,e.WQX)(e.aKT),this._fitToContent=!1}get fitInkBarToContent(){return this._fitToContent}set fitInkBarToContent(q){this._fitToContent!==q&&(this._fitToContent=q,this._inkBarElement&&this._appendInkBarElement())}activateInkBar(q){const Re=this._elementRef.nativeElement;if(!q||!Re.getBoundingClientRect||!this._inkBarContentElement)return void Re.classList.add(Ze);const Ne=Re.getBoundingClientRect(),gt=q.width/Ne.width,$e=q.left-Ne.left;Re.classList.add(_t),this._inkBarContentElement.style.setProperty("transform",`translateX(${$e}px) scaleX(${gt})`),Re.getBoundingClientRect(),Re.classList.remove(_t),Re.classList.add(Ze),this._inkBarContentElement.style.setProperty("transform","")}deactivateInkBar(){this._elementRef.nativeElement.classList.remove(Ze)}ngOnInit(){this._createInkBarElement()}ngOnDestroy(){this._inkBarElement?.remove(),this._inkBarElement=this._inkBarContentElement=null}_createInkBarElement(){const q=this._elementRef.nativeElement.ownerDocument||document,Re=this._inkBarElement=q.createElement("span"),Ne=this._inkBarContentElement=q.createElement("span");Re.className="mdc-tab-indicator",Ne.className="mdc-tab-indicator__content mdc-tab-indicator__content--underline",Re.appendChild(this._inkBarContentElement),this._appendInkBarElement()}_appendInkBarElement(){(this._fitToContent?this._elementRef.nativeElement.querySelector(".mdc-tab__content"):this._elementRef.nativeElement).appendChild(this._inkBarElement)}static#e=this.\u0275fac=function(Re){return new(Re||we)};static#t=this.\u0275dir=e.FsC({type:we,inputs:{fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",e.L39]},features:[e.GFd]})}return we})(),ue=(()=>{class we extends pt{constructor(q){super(),this.elementRef=q,this.disabled=!1}focus(){this.elementRef.nativeElement.focus()}getOffsetLeft(){return this.elementRef.nativeElement.offsetLeft}getOffsetWidth(){return this.elementRef.nativeElement.offsetWidth}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT))};static#t=this.\u0275dir=e.FsC({type:we,selectors:[["","matTabLabelWrapper",""]],hostVars:3,hostBindings:function(Re,Ne){2&Re&&(e.BMQ("aria-disabled",!!Ne.disabled),e.AVh("mat-mdc-tab-disabled",Ne.disabled))},inputs:{disabled:[2,"disabled","disabled",e.L39]},standalone:!0,features:[e.GFd,e.Vt3]})}return we})();const Ie=(0,z.BQ)({passive:!0});let yt=(()=>{class we{get selectedIndex(){return this._selectedIndex}set selectedIndex(q){const Re=isNaN(q)?0:q;this._selectedIndex!=Re&&(this._selectedIndexChanged=!0,this._selectedIndex=Re,this._keyManager&&this._keyManager.updateActiveItem(Re))}constructor(q,Re,Ne,gt,$e,Fe,Ge){this._elementRef=q,this._changeDetectorRef=Re,this._viewportRuler=Ne,this._dir=gt,this._ngZone=$e,this._platform=Fe,this._animationMode=Ge,this._scrollDistance=0,this._selectedIndexChanged=!1,this._destroyed=new S.B,this._showPaginationControls=!1,this._disableScrollAfter=!0,this._disableScrollBefore=!0,this._stopScrolling=new S.B,this.disablePagination=!1,this._selectedIndex=0,this.selectFocusedIndex=new e.bkB,this.indexFocused=new e.bkB,$e.runOutsideAngular(()=>{(0,l.R)(q.nativeElement,"mouseleave").pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._stopInterval()})})}ngAfterViewInit(){(0,l.R)(this._previousPaginator.nativeElement,"touchstart",Ie).pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("before")}),(0,l.R)(this._nextPaginator.nativeElement,"touchstart",Ie).pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._handlePaginatorPress("after")})}ngAfterContentInit(){const q=this._dir?this._dir.change:(0,x.of)("ltr"),Re=this._viewportRuler.change(150),Ne=()=>{this.updatePagination(),this._alignInkBarToSelectedTab()};this._keyManager=new $.Bu(this._items).withHorizontalOrientation(this._getLayoutDirection()).withHomeAndEnd().withWrap().skipPredicate(()=>!1),this._keyManager.updateActiveItem(this._selectedIndex),this._ngZone.onStable.pipe((0,J.s)(1)).subscribe(Ne),(0,f.h)(q,Re,this._items.changes,this._itemsResized()).pipe((0,Q.Q)(this._destroyed)).subscribe(()=>{this._ngZone.run(()=>{Promise.resolve().then(()=>{this._scrollDistance=Math.max(0,Math.min(this._getMaxScrollDistance(),this._scrollDistance)),Ne()})}),this._keyManager.withHorizontalOrientation(this._getLayoutDirection())}),this._keyManager.change.subscribe(gt=>{this.indexFocused.emit(gt),this._setTabFocus(gt)})}_itemsResized(){return"function"!=typeof ResizeObserver?I.w:this._items.changes.pipe((0,ee.Z)(this._items),(0,ie.n)(q=>new d.c(Re=>this._ngZone.runOutsideAngular(()=>{const Ne=new ResizeObserver(gt=>Re.next(gt));return q.forEach(gt=>Ne.observe(gt.elementRef.nativeElement)),()=>{Ne.disconnect()}}))),(0,ge.i)(1),(0,ae.p)(q=>q.some(Re=>Re.contentRect.width>0&&Re.contentRect.height>0)))}ngAfterContentChecked(){this._tabLabelCount!=this._items.length&&(this.updatePagination(),this._tabLabelCount=this._items.length,this._changeDetectorRef.markForCheck()),this._selectedIndexChanged&&(this._scrollToLabel(this._selectedIndex),this._checkScrollingControls(),this._alignInkBarToSelectedTab(),this._selectedIndexChanged=!1,this._changeDetectorRef.markForCheck()),this._scrollDistanceChanged&&(this._updateTabScrollPosition(),this._scrollDistanceChanged=!1,this._changeDetectorRef.markForCheck())}ngOnDestroy(){this._keyManager?.destroy(),this._destroyed.next(),this._destroyed.complete(),this._stopScrolling.complete()}_handleKeydown(q){if(!(0,j.rp)(q))switch(q.keyCode){case j.Fm:case j.t6:if(this.focusIndex!==this.selectedIndex){const Re=this._items.get(this.focusIndex);Re&&!Re.disabled&&(this.selectFocusedIndex.emit(this.focusIndex),this._itemSelected(q))}break;default:this._keyManager.onKeydown(q)}}_onContentChanges(){const q=this._elementRef.nativeElement.textContent;q!==this._currentTextContent&&(this._currentTextContent=q||"",this._ngZone.run(()=>{this.updatePagination(),this._alignInkBarToSelectedTab(),this._changeDetectorRef.markForCheck()}))}updatePagination(){this._checkPaginationEnabled(),this._checkScrollingControls(),this._updateTabScrollPosition()}get focusIndex(){return this._keyManager?this._keyManager.activeItemIndex:0}set focusIndex(q){!this._isValidIndex(q)||this.focusIndex===q||!this._keyManager||this._keyManager.setActiveItem(q)}_isValidIndex(q){return!this._items||!!this._items.toArray()[q]}_setTabFocus(q){if(this._showPaginationControls&&this._scrollToLabel(q),this._items&&this._items.length){this._items.toArray()[q].focus();const Re=this._tabListContainer.nativeElement;Re.scrollLeft="ltr"==this._getLayoutDirection()?0:Re.scrollWidth-Re.offsetWidth}}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_updateTabScrollPosition(){if(this.disablePagination)return;const q=this.scrollDistance,Re="ltr"===this._getLayoutDirection()?-q:q;this._tabList.nativeElement.style.transform=`translateX(${Math.round(Re)}px)`,(this._platform.TRIDENT||this._platform.EDGE)&&(this._tabListContainer.nativeElement.scrollLeft=0)}get scrollDistance(){return this._scrollDistance}set scrollDistance(q){this._scrollTo(q)}_scrollHeader(q){return this._scrollTo(this._scrollDistance+("before"==q?-1:1)*this._tabListContainer.nativeElement.offsetWidth/3)}_handlePaginatorClick(q){this._stopInterval(),this._scrollHeader(q)}_scrollToLabel(q){if(this.disablePagination)return;const Re=this._items?this._items.toArray()[q]:null;if(!Re)return;const Ne=this._tabListContainer.nativeElement.offsetWidth,{offsetLeft:gt,offsetWidth:$e}=Re.elementRef.nativeElement;let Fe,Ge;"ltr"==this._getLayoutDirection()?(Fe=gt,Ge=Fe+$e):(Ge=this._tabListInner.nativeElement.offsetWidth-gt,Fe=Ge-$e);const et=this.scrollDistance,st=this.scrollDistance+Ne;Fest&&(this.scrollDistance+=Math.min(Ge-st,Fe-et))}_checkPaginationEnabled(){if(this.disablePagination)this._showPaginationControls=!1;else{const q=this._tabListInner.nativeElement.scrollWidth>this._elementRef.nativeElement.offsetWidth;q||(this.scrollDistance=0),q!==this._showPaginationControls&&this._changeDetectorRef.markForCheck(),this._showPaginationControls=q}}_checkScrollingControls(){this.disablePagination?this._disableScrollAfter=this._disableScrollBefore=!0:(this._disableScrollBefore=0==this.scrollDistance,this._disableScrollAfter=this.scrollDistance==this._getMaxScrollDistance(),this._changeDetectorRef.markForCheck())}_getMaxScrollDistance(){return this._tabListInner.nativeElement.scrollWidth-this._tabListContainer.nativeElement.offsetWidth||0}_alignInkBarToSelectedTab(){const q=this._items&&this._items.length?this._items.toArray()[this.selectedIndex]:null,Re=q?q.elementRef.nativeElement:null;Re?this._inkBar.alignToElement(Re):this._inkBar.hide()}_stopInterval(){this._stopScrolling.next()}_handlePaginatorPress(q,Re){Re&&null!=Re.button&&0!==Re.button||(this._stopInterval(),(0,T.O)(650,100).pipe((0,Q.Q)((0,f.h)(this._stopScrolling,this._destroyed))).subscribe(()=>{const{maxScrollDistance:Ne,distance:gt}=this._scrollHeader(q);(0===gt||gt>=Ne)&&this._stopInterval()}))}_scrollTo(q){if(this.disablePagination)return{maxScrollDistance:0,distance:0};const Re=this._getMaxScrollDistance();return this._scrollDistance=Math.max(0,Math.min(Re,q)),this._scrollDistanceChanged=!0,this._checkScrollingControls(),{maxScrollDistance:Re,distance:this._scrollDistance}}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(R.Xj),e.rXU(W.dS,8),e.rXU(e.SKi),e.rXU(z.OD),e.rXU(e.bc$,8))};static#t=this.\u0275dir=e.FsC({type:we,inputs:{disablePagination:[2,"disablePagination","disablePagination",e.L39],selectedIndex:[2,"selectedIndex","selectedIndex",e.Udg]},outputs:{selectFocusedIndex:"selectFocusedIndex",indexFocused:"indexFocused"},features:[e.GFd]})}return we})(),Ye=(()=>{class we extends yt{constructor(q,Re,Ne,gt,$e,Fe,Ge){super(q,Re,Ne,gt,$e,Fe,Ge),this.disableRipple=!1}ngAfterContentInit(){this._inkBar=new at(this._items),super.ngAfterContentInit()}_itemSelected(q){q.preventDefault()}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(R.Xj),e.rXU(W.dS,8),e.rXU(e.SKi),e.rXU(z.OD),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab-header"]],contentQueries:function(Re,Ne,gt){if(1&Re&&e.wni(gt,ue,4),2&Re){let $e;e.mGM($e=e.lsd())&&(Ne._items=$e)}},viewQuery:function(Re,Ne){if(1&Re&&(e.GBs(m,7),e.GBs(h,7),e.GBs(C,7),e.GBs(k,5),e.GBs(L,5)),2&Re){let gt;e.mGM(gt=e.lsd())&&(Ne._tabListContainer=gt.first),e.mGM(gt=e.lsd())&&(Ne._tabList=gt.first),e.mGM(gt=e.lsd())&&(Ne._tabListInner=gt.first),e.mGM(gt=e.lsd())&&(Ne._nextPaginator=gt.first),e.mGM(gt=e.lsd())&&(Ne._previousPaginator=gt.first)}},hostAttrs:[1,"mat-mdc-tab-header"],hostVars:4,hostBindings:function(Re,Ne){2&Re&&e.AVh("mat-mdc-tab-header-pagination-controls-enabled",Ne._showPaginationControls)("mat-mdc-tab-header-rtl","rtl"==Ne._getLayoutDirection())},inputs:{disableRipple:[2,"disableRipple","disableRipple",e.L39]},standalone:!0,features:[e.GFd,e.Vt3,e.aNF],ngContentSelectors:n,decls:13,vars:10,consts:[["previousPaginator",""],["tabListContainer",""],["tabList",""],["tabListInner",""],["nextPaginator",""],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-before",3,"click","mousedown","touchend","matRippleDisabled","disabled"],[1,"mat-mdc-tab-header-pagination-chevron"],[1,"mat-mdc-tab-label-container",3,"keydown"],["role","tablist",1,"mat-mdc-tab-list",3,"cdkObserveContent"],[1,"mat-mdc-tab-labels"],["aria-hidden","true","type","button","mat-ripple","","tabindex","-1",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-after",3,"mousedown","click","touchend","matRippleDisabled","disabled"]],template:function(Re,Ne){if(1&Re){const gt=e.RV6();e.NAR(),e.j41(0,"button",5,0),e.bIt("click",function(){return e.eBV(gt),e.Njj(Ne._handlePaginatorClick("before"))})("mousedown",function(Fe){return e.eBV(gt),e.Njj(Ne._handlePaginatorPress("before",Fe))})("touchend",function(){return e.eBV(gt),e.Njj(Ne._stopInterval())}),e.nrm(2,"div",6),e.k0s(),e.j41(3,"div",7,1),e.bIt("keydown",function(Fe){return e.eBV(gt),e.Njj(Ne._handleKeydown(Fe))}),e.j41(5,"div",8,2),e.bIt("cdkObserveContent",function(){return e.eBV(gt),e.Njj(Ne._onContentChanges())}),e.j41(7,"div",9,3),e.SdG(9),e.k0s()()(),e.j41(10,"button",10,4),e.bIt("mousedown",function(Fe){return e.eBV(gt),e.Njj(Ne._handlePaginatorPress("after",Fe))})("click",function(){return e.eBV(gt),e.Njj(Ne._handlePaginatorClick("after"))})("touchend",function(){return e.eBV(gt),e.Njj(Ne._stopInterval())}),e.nrm(12,"div",6),e.k0s()}2&Re&&(e.AVh("mat-mdc-tab-header-pagination-disabled",Ne._disableScrollBefore),e.Y8G("matRippleDisabled",Ne._disableScrollBefore||Ne.disableRipple)("disabled",Ne._disableScrollBefore||null),e.R7$(3),e.AVh("_mat-animation-noopable","NoopAnimations"===Ne._animationMode),e.R7$(7),e.AVh("mat-mdc-tab-header-pagination-disabled",Ne._disableScrollAfter),e.Y8G("matRippleDisabled",Ne._disableScrollAfter||Ne.disableRipple)("disabled",Ne._disableScrollAfter||null))},dependencies:[t.r6,Te.Wv],styles:[".mat-mdc-tab-header{display:flex;overflow:hidden;position:relative;flex-shrink:0}.mdc-tab-indicator .mdc-tab-indicator__content{transition-duration:var(--mat-tab-animation-duration, 250ms)}.mat-mdc-tab-header-pagination{-webkit-user-select:none;user-select:none;position:relative;display:none;justify-content:center;align-items:center;min-width:32px;cursor:pointer;z-index:2;-webkit-tap-highlight-color:rgba(0,0,0,0);touch-action:none;box-sizing:content-box;background:none;border:none;outline:0;padding:0}.mat-mdc-tab-header-pagination::-moz-focus-inner{border:0}.mat-mdc-tab-header-pagination .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-header-pagination-controls-enabled .mat-mdc-tab-header-pagination{display:flex}.mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after{padding-left:4px}.mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(-135deg)}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-pagination-after{padding-right:4px}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(45deg)}.mat-mdc-tab-header-pagination-chevron{border-style:solid;border-width:2px 2px 0 0;height:8px;width:8px;border-color:var(--mat-tab-header-pagination-icon-color)}.mat-mdc-tab-header-pagination-disabled{box-shadow:none;cursor:default;pointer-events:none}.mat-mdc-tab-header-pagination-disabled .mat-mdc-tab-header-pagination-chevron{opacity:.4}.mat-mdc-tab-list{flex-grow:1;position:relative;transition:transform 500ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-mdc-tab-list{transition:none}._mat-animation-noopable span.mdc-tab-indicator__content,._mat-animation-noopable span.mdc-tab__text-label{transition:none}.mat-mdc-tab-label-container{display:flex;flex-grow:1;overflow:hidden;z-index:1;border-bottom-style:solid;border-bottom-width:var(--mat-tab-header-divider-height);border-bottom-color:var(--mat-tab-header-divider-color)}.mat-mdc-tab-group-inverted-header .mat-mdc-tab-label-container{border-bottom:none;border-top-style:solid;border-top-width:var(--mat-tab-header-divider-height);border-top-color:var(--mat-tab-header-divider-color)}.mat-mdc-tab-labels{display:flex;flex:1 0 auto}[mat-align-tabs=center]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:center}[mat-align-tabs=end]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:flex-end}.mat-mdc-tab::before{margin:5px}.cdk-high-contrast-active .mat-mdc-tab[aria-disabled=true]{color:GrayText}"],encapsulation:2})}return we})();const rt=new e.nKC("MAT_TABS_CONFIG"),Yt={translateTab:(0,D.hZ)("translateTab",[(0,D.wk)("center, void, left-origin-center, right-origin-center",(0,D.iF)({transform:"none"})),(0,D.wk)("left",(0,D.iF)({transform:"translate3d(-100%, 0, 0)",minHeight:"1px",visibility:"hidden"})),(0,D.wk)("right",(0,D.iF)({transform:"translate3d(100%, 0, 0)",minHeight:"1px",visibility:"hidden"})),(0,D.kY)("* => left, * => right, left => center, right => center",(0,D.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")),(0,D.kY)("void => left-origin-center",[(0,D.iF)({transform:"translate3d(-100%, 0, 0)",visibility:"hidden"}),(0,D.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")]),(0,D.kY)("void => right-origin-center",[(0,D.iF)({transform:"translate3d(100%, 0, 0)",visibility:"hidden"}),(0,D.i0)("{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)")])])};let Nt=(()=>{class we extends w.I3{constructor(q,Re,Ne,gt){super(q,Re,gt),this._host=Ne,this._centeringSub=y.yU.EMPTY,this._leavingSub=y.yU.EMPTY}ngOnInit(){super.ngOnInit(),this._centeringSub=this._host._beforeCentering.pipe((0,ee.Z)(this._host._isCenterPosition(this._host._position))).subscribe(q=>{q&&!this.hasAttached()&&this.attach(this._host._content)}),this._leavingSub=this._host._afterLeavingCenter.subscribe(()=>{this._host.preserveContent||this.detach()})}ngOnDestroy(){super.ngOnDestroy(),this._centeringSub.unsubscribe(),this._leavingSub.unsubscribe()}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.OM3),e.rXU(e.c1b),e.rXU((0,e.Rfq)(()=>Et)),e.rXU(de.qQ))};static#t=this.\u0275dir=e.FsC({type:we,selectors:[["","matTabBodyHost",""]],standalone:!0,features:[e.Vt3]})}return we})(),Et=(()=>{class we{set position(q){this._positionIndex=q,this._computePositionAnimationState()}constructor(q,Re,Ne){this._elementRef=q,this._dir=Re,this._dirChangeSubscription=y.yU.EMPTY,this._translateTabComplete=new S.B,this._onCentering=new e.bkB,this._beforeCentering=new e.bkB,this._afterLeavingCenter=new e.bkB,this._onCentered=new e.bkB(!0),this.animationDuration="500ms",this.preserveContent=!1,Re&&(this._dirChangeSubscription=Re.change.subscribe(gt=>{this._computePositionAnimationState(gt),Ne.markForCheck()})),this._translateTabComplete.pipe((0,Me.F)((gt,$e)=>gt.fromState===$e.fromState&>.toState===$e.toState)).subscribe(gt=>{this._isCenterPosition(gt.toState)&&this._isCenterPosition(this._position)&&this._onCentered.emit(),this._isCenterPosition(gt.fromState)&&!this._isCenterPosition(this._position)&&this._afterLeavingCenter.emit()})}ngOnInit(){"center"==this._position&&null!=this.origin&&(this._position=this._computePositionFromOrigin(this.origin))}ngOnDestroy(){this._dirChangeSubscription.unsubscribe(),this._translateTabComplete.complete()}_onTranslateTabStarted(q){const Re=this._isCenterPosition(q.toState);this._beforeCentering.emit(Re),Re&&this._onCentering.emit(this._elementRef.nativeElement.clientHeight)}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_isCenterPosition(q){return"center"==q||"left-origin-center"==q||"right-origin-center"==q}_computePositionAnimationState(q=this._getLayoutDirection()){this._position=this._positionIndex<0?"ltr"==q?"left":"right":this._positionIndex>0?"ltr"==q?"right":"left":"center"}_computePositionFromOrigin(q){const Re=this._getLayoutDirection();return"ltr"==Re&&q<=0||"rtl"==Re&&q>0?"left-origin-center":"right-origin-center"}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT),e.rXU(W.dS,8),e.rXU(e.gRc))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab-body"]],viewQuery:function(Re,Ne){if(1&Re&&e.GBs(w.I3,5),2&Re){let gt;e.mGM(gt=e.lsd())&&(Ne._portalHost=gt.first)}},hostAttrs:[1,"mat-mdc-tab-body"],inputs:{_content:[0,"content","_content"],origin:"origin",animationDuration:"animationDuration",preserveContent:"preserveContent",position:"position"},outputs:{_onCentering:"_onCentering",_beforeCentering:"_beforeCentering",_afterLeavingCenter:"_afterLeavingCenter",_onCentered:"_onCentered"},standalone:!0,features:[e.aNF],decls:3,vars:6,consts:[["content",""],["cdkScrollable","",1,"mat-mdc-tab-body-content"],["matTabBodyHost",""]],template:function(Re,Ne){if(1&Re){const gt=e.RV6();e.j41(0,"div",1,0),e.bIt("@translateTab.start",function(Fe){return e.eBV(gt),e.Njj(Ne._onTranslateTabStarted(Fe))})("@translateTab.done",function(Fe){return e.eBV(gt),e.Njj(Ne._translateTabComplete.next(Fe))}),e.DNE(2,v,0,0,"ng-template",2),e.k0s()}2&Re&&e.Y8G("@translateTab",e.l_i(3,r,Ne._position,e.eq3(1,_,Ne.animationDuration)))},dependencies:[Nt,R.uv],styles:['.mat-mdc-tab-body{top:0;left:0;right:0;bottom:0;position:absolute;display:block;overflow:hidden;outline:0;flex-basis:100%}.mat-mdc-tab-body.mat-mdc-tab-body-active{position:relative;overflow-x:hidden;overflow-y:auto;z-index:1;flex-grow:1}.mat-mdc-tab-group.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body.mat-mdc-tab-body-active{overflow-y:hidden}.mat-mdc-tab-body-content{height:100%;overflow:auto}.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body-content{overflow:hidden}.mat-mdc-tab-body-content[style*="visibility: hidden"]{display:none}'],encapsulation:2,data:{animation:[Yt.translateTab]}})}return we})(),Vt=0,tt=(()=>{class we{get fitInkBarToContent(){return this._fitInkBarToContent}set fitInkBarToContent(q){this._fitInkBarToContent=q,this._changeDetectorRef.markForCheck()}get selectedIndex(){return this._selectedIndex}set selectedIndex(q){this._indexToSelect=isNaN(q)?null:q}get animationDuration(){return this._animationDuration}set animationDuration(q){const Re=q+"";this._animationDuration=/^\d+$/.test(Re)?q+"ms":Re}get contentTabIndex(){return this._contentTabIndex}set contentTabIndex(q){this._contentTabIndex=isNaN(q)?null:q}get backgroundColor(){return this._backgroundColor}set backgroundColor(q){const Re=this._elementRef.nativeElement.classList;Re.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),q&&Re.add("mat-tabs-with-background",`mat-background-${q}`),this._backgroundColor=q}constructor(q,Re,Ne,gt){this._elementRef=q,this._changeDetectorRef=Re,this._animationMode=gt,this._tabs=new e.rOR,this._indexToSelect=0,this._lastFocusedTabIndex=null,this._tabBodyWrapperHeight=0,this._tabsSubscription=y.yU.EMPTY,this._tabLabelSubscription=y.yU.EMPTY,this._fitInkBarToContent=!1,this.stretchTabs=!0,this.dynamicHeight=!1,this._selectedIndex=null,this.headerPosition="above",this.disablePagination=!1,this.disableRipple=!1,this.preserveContent=!1,this.selectedIndexChange=new e.bkB,this.focusChange=new e.bkB,this.animationDone=new e.bkB,this.selectedTabChange=new e.bkB(!0),this._isServer=!(0,e.WQX)(z.OD).isBrowser,this._groupId=Vt++,this.animationDuration=Ne&&Ne.animationDuration?Ne.animationDuration:"500ms",this.disablePagination=!(!Ne||null==Ne.disablePagination)&&Ne.disablePagination,this.dynamicHeight=!(!Ne||null==Ne.dynamicHeight)&&Ne.dynamicHeight,null!=Ne?.contentTabIndex&&(this.contentTabIndex=Ne.contentTabIndex),this.preserveContent=!!Ne?.preserveContent,this.fitInkBarToContent=!(!Ne||null==Ne.fitInkBarToContent)&&Ne.fitInkBarToContent,this.stretchTabs=!Ne||null==Ne.stretchTabs||Ne.stretchTabs}ngAfterContentChecked(){const q=this._indexToSelect=this._clampTabIndex(this._indexToSelect);if(this._selectedIndex!=q){const Re=null==this._selectedIndex;if(!Re){this.selectedTabChange.emit(this._createChangeEvent(q));const Ne=this._tabBodyWrapper.nativeElement;Ne.style.minHeight=Ne.clientHeight+"px"}Promise.resolve().then(()=>{this._tabs.forEach((Ne,gt)=>Ne.isActive=gt===q),Re||(this.selectedIndexChange.emit(q),this._tabBodyWrapper.nativeElement.style.minHeight="")})}this._tabs.forEach((Re,Ne)=>{Re.position=Ne-q,null!=this._selectedIndex&&0==Re.position&&!Re.origin&&(Re.origin=q-this._selectedIndex)}),this._selectedIndex!==q&&(this._selectedIndex=q,this._lastFocusedTabIndex=null,this._changeDetectorRef.markForCheck())}ngAfterContentInit(){this._subscribeToAllTabChanges(),this._subscribeToTabLabels(),this._tabsSubscription=this._tabs.changes.subscribe(()=>{const q=this._clampTabIndex(this._indexToSelect);if(q===this._selectedIndex){const Re=this._tabs.toArray();let Ne;for(let gt=0;gt{Re[q].isActive=!0,this.selectedTabChange.emit(this._createChangeEvent(q))})}this._changeDetectorRef.markForCheck()})}_subscribeToAllTabChanges(){this._allTabs.changes.pipe((0,ee.Z)(this._allTabs)).subscribe(q=>{this._tabs.reset(q.filter(Re=>Re._closestTabGroup===this||!Re._closestTabGroup)),this._tabs.notifyOnChanges()})}ngOnDestroy(){this._tabs.destroy(),this._tabsSubscription.unsubscribe(),this._tabLabelSubscription.unsubscribe()}realignInkBar(){this._tabHeader&&this._tabHeader._alignInkBarToSelectedTab()}updatePagination(){this._tabHeader&&this._tabHeader.updatePagination()}focusTab(q){const Re=this._tabHeader;Re&&(Re.focusIndex=q)}_focusChanged(q){this._lastFocusedTabIndex=q,this.focusChange.emit(this._createChangeEvent(q))}_createChangeEvent(q){const Re=new $t;return Re.index=q,this._tabs&&this._tabs.length&&(Re.tab=this._tabs.toArray()[q]),Re}_subscribeToTabLabels(){this._tabLabelSubscription&&this._tabLabelSubscription.unsubscribe(),this._tabLabelSubscription=(0,f.h)(...this._tabs.map(q=>q._stateChanges)).subscribe(()=>this._changeDetectorRef.markForCheck())}_clampTabIndex(q){return Math.min(this._tabs.length-1,Math.max(q||0,0))}_getTabLabelId(q){return`mat-tab-label-${this._groupId}-${q}`}_getTabContentId(q){return`mat-tab-content-${this._groupId}-${q}`}_setTabBodyWrapperHeight(q){if(!this.dynamicHeight||!this._tabBodyWrapperHeight)return;const Re=this._tabBodyWrapper.nativeElement;Re.style.height=this._tabBodyWrapperHeight+"px",this._tabBodyWrapper.nativeElement.offsetHeight&&(Re.style.height=q+"px")}_removeTabBodyWrapperHeight(){const q=this._tabBodyWrapper.nativeElement;this._tabBodyWrapperHeight=q.clientHeight,q.style.height="",this.animationDone.emit()}_handleClick(q,Re,Ne){Re.focusIndex=Ne,q.disabled||(this.selectedIndex=Ne)}_getTabIndex(q){return q===(this._lastFocusedTabIndex??this.selectedIndex)?0:-1}_tabFocusChanged(q,Re){q&&"mouse"!==q&&"touch"!==q&&(this._tabHeader.focusIndex=Re)}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(e.aKT),e.rXU(e.gRc),e.rXU(rt,8),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab-group"]],contentQueries:function(Re,Ne,gt){if(1&Re&&e.wni(gt,pe,5),2&Re){let $e;e.mGM($e=e.lsd())&&(Ne._allTabs=$e)}},viewQuery:function(Re,Ne){if(1&Re&&(e.GBs(V,5),e.GBs(N,5)),2&Re){let gt;e.mGM(gt=e.lsd())&&(Ne._tabBodyWrapper=gt.first),e.mGM(gt=e.lsd())&&(Ne._tabHeader=gt.first)}},hostAttrs:[1,"mat-mdc-tab-group"],hostVars:10,hostBindings:function(Re,Ne){2&Re&&(e.HbH("mat-"+(Ne.color||"primary")),e.xc7("--mat-tab-animation-duration",Ne.animationDuration),e.AVh("mat-mdc-tab-group-dynamic-height",Ne.dynamicHeight)("mat-mdc-tab-group-inverted-header","below"===Ne.headerPosition)("mat-mdc-tab-group-stretch-tabs",Ne.stretchTabs))},inputs:{color:"color",fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",e.L39],stretchTabs:[2,"mat-stretch-tabs","stretchTabs",e.L39],dynamicHeight:[2,"dynamicHeight","dynamicHeight",e.L39],selectedIndex:[2,"selectedIndex","selectedIndex",e.Udg],headerPosition:"headerPosition",animationDuration:"animationDuration",contentTabIndex:[2,"contentTabIndex","contentTabIndex",e.Udg],disablePagination:[2,"disablePagination","disablePagination",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],preserveContent:[2,"preserveContent","preserveContent",e.L39],backgroundColor:"backgroundColor"},outputs:{selectedIndexChange:"selectedIndexChange",focusChange:"focusChange",animationDone:"animationDone",selectedTabChange:"selectedTabChange"},exportAs:["matTabGroup"],standalone:!0,features:[e.Jv_([{provide:be,useExisting:we}]),e.GFd,e.aNF],ngContentSelectors:n,decls:9,vars:6,consts:[["tabHeader",""],["tabBodyWrapper",""],["tabNode",""],[3,"indexFocused","selectFocusedIndex","selectedIndex","disableRipple","disablePagination"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-mdc-focus-indicator",3,"id","mdc-tab--active","class","disabled","fitInkBarToContent"],[1,"mat-mdc-tab-body-wrapper"],["role","tabpanel",3,"id","mat-mdc-tab-body-active","class","content","position","origin","animationDuration","preserveContent"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-mdc-focus-indicator",3,"click","cdkFocusChange","id","disabled","fitInkBarToContent"],[1,"mdc-tab__ripple"],["mat-ripple","",1,"mat-mdc-tab-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mdc-tab__content"],[1,"mdc-tab__text-label"],[3,"cdkPortalOutlet"],["role","tabpanel",3,"_onCentered","_onCentering","id","content","position","origin","animationDuration","preserveContent"]],template:function(Re,Ne){if(1&Re){const gt=e.RV6();e.NAR(),e.j41(0,"mat-tab-header",3,0),e.bIt("indexFocused",function(Fe){return e.eBV(gt),e.Njj(Ne._focusChanged(Fe))})("selectFocusedIndex",function(Fe){return e.eBV(gt),e.Njj(Ne.selectedIndex=Fe)}),e.Z7z(2,qe,8,17,"div",4,e.fX1),e.k0s(),e.DNE(4,Ke,1,0),e.j41(5,"div",5,1),e.Z7z(7,se,1,13,"mat-tab-body",6,e.fX1),e.k0s()}2&Re&&(e.Y8G("selectedIndex",Ne.selectedIndex||0)("disableRipple",Ne.disableRipple)("disablePagination",Ne.disablePagination),e.R7$(2),e.Dyx(Ne._tabs),e.R7$(2),e.vxM(Ne._isServer?4:-1),e.R7$(),e.AVh("_mat-animation-noopable","NoopAnimations"===Ne._animationMode),e.R7$(2),e.Dyx(Ne._tabs))},dependencies:[Ye,ue,$.vR,t.r6,w.I3,Et],styles:['.mdc-tab{min-width:90px;padding-right:24px;padding-left:24px;display:flex;flex:1 0 auto;justify-content:center;box-sizing:border-box;margin:0;padding-top:0;padding-bottom:0;border:none;outline:none;text-align:center;white-space:nowrap;cursor:pointer;-webkit-appearance:none;z-index:1}.mdc-tab::-moz-focus-inner{padding:0;border:0}.mdc-tab[hidden]{display:none}.mdc-tab--min-width{flex:0 1 auto}.mdc-tab__content{display:flex;align-items:center;justify-content:center;height:inherit;pointer-events:none}.mdc-tab__text-label{transition:150ms color linear;display:inline-block;line-height:1;z-index:2}.mdc-tab__icon{transition:150ms color linear;z-index:2}.mdc-tab--stacked .mdc-tab__content{flex-direction:column;align-items:center;justify-content:center}.mdc-tab--stacked .mdc-tab__text-label{padding-top:6px;padding-bottom:4px}.mdc-tab--active .mdc-tab__text-label,.mdc-tab--active .mdc-tab__icon{transition-delay:100ms}.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label{padding-left:8px;padding-right:0}[dir=rtl] .mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label,.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon+.mdc-tab__text-label[dir=rtl]{padding-left:0;padding-right:8px}.mdc-tab-indicator{display:flex;position:absolute;top:0;left:0;justify-content:center;width:100%;height:100%;pointer-events:none;z-index:1}.mdc-tab-indicator__content{transform-origin:left;opacity:0}.mdc-tab-indicator__content--underline{align-self:flex-end;box-sizing:border-box;width:100%;border-top-style:solid}.mdc-tab-indicator__content--icon{align-self:center;margin:0 auto}.mdc-tab-indicator--active .mdc-tab-indicator__content{opacity:1}.mdc-tab-indicator .mdc-tab-indicator__content{transition:250ms transform cubic-bezier(0.4, 0, 0.2, 1)}.mdc-tab-indicator--no-transition .mdc-tab-indicator__content{transition:none}.mdc-tab-indicator--fade .mdc-tab-indicator__content{transition:150ms opacity linear}.mdc-tab-indicator--active.mdc-tab-indicator--fade .mdc-tab-indicator__content{transition-delay:100ms}.mat-mdc-tab-ripple{position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none}.mat-mdc-tab{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none;background:none;font-family:var(--mat-tab-header-label-text-font);font-size:var(--mat-tab-header-label-text-size);letter-spacing:var(--mat-tab-header-label-text-tracking);line-height:var(--mat-tab-header-label-text-line-height);font-weight:var(--mat-tab-header-label-text-weight)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-top-width:var(--mdc-tab-indicator-active-indicator-height)}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-radius:var(--mdc-tab-indicator-active-indicator-shape)}.mat-mdc-tab:not(.mdc-tab--stacked){height:var(--mdc-secondary-navigation-tab-container-height)}.mat-mdc-tab:not(:disabled).mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):hover.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):focus.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):active.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:disabled.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):hover:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):focus:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:not(:disabled):active:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab:disabled:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab.mdc-tab{flex-grow:0}.mat-mdc-tab:hover .mdc-tab__text-label{color:var(--mat-tab-header-inactive-hover-label-text-color)}.mat-mdc-tab:focus .mdc-tab__text-label{color:var(--mat-tab-header-inactive-focus-label-text-color)}.mat-mdc-tab.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-header-active-label-text-color)}.mat-mdc-tab.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-header-active-ripple-color)}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-header-active-hover-label-text-color)}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-hover-indicator-color)}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-header-active-focus-label-text-color)}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-focus-indicator-color)}.mat-mdc-tab.mat-mdc-tab-disabled{opacity:.4;pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__content{pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab.mat-mdc-tab-disabled .mat-ripple-element{background-color:var(--mat-tab-header-disabled-ripple-color)}.mat-mdc-tab .mdc-tab__ripple::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;pointer-events:none;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-header-inactive-label-text-color);display:inline-flex;align-items:center}.mat-mdc-tab .mdc-tab__content{position:relative;pointer-events:auto}.mat-mdc-tab:hover .mdc-tab__ripple::before{opacity:.04}.mat-mdc-tab.cdk-program-focused .mdc-tab__ripple::before,.mat-mdc-tab.cdk-keyboard-focused .mdc-tab__ripple::before{opacity:.12}.mat-mdc-tab .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs>.mat-mdc-tab-header .mat-mdc-tab{flex-grow:1}.mat-mdc-tab-group{display:flex;flex-direction:column;max-width:100%}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination{background-color:var(--mat-tab-header-with-background-background-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-focus-indicator::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-focus-indicator::before{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mdc-tab__ripple::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mdc-tab__ripple::before{background-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header{flex-direction:column-reverse}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header .mdc-tab-indicator__content--underline{align-self:flex-start}.mat-mdc-tab-body-wrapper{position:relative;overflow:hidden;display:flex;transition:height 500ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-mdc-tab-body-wrapper._mat-animation-noopable{transition:none !important;animation:none !important}'],encapsulation:2})}return we})();class $t{}let zt=0,Jt=(()=>{class we extends yt{get fitInkBarToContent(){return this._fitInkBarToContent.value}set fitInkBarToContent(q){this._fitInkBarToContent.next(q),this._changeDetectorRef.markForCheck()}get animationDuration(){return this._animationDuration}set animationDuration(q){const Re=q+"";this._animationDuration=/^\d+$/.test(Re)?q+"ms":Re}get backgroundColor(){return this._backgroundColor}set backgroundColor(q){const Re=this._elementRef.nativeElement.classList;Re.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),q&&Re.add("mat-tabs-with-background",`mat-background-${q}`),this._backgroundColor=q}constructor(q,Re,Ne,gt,$e,Fe,Ge,et){super(q,gt,$e,Re,Ne,Fe,Ge),this._fitInkBarToContent=new F.t(!1),this.stretchTabs=!0,this.disableRipple=!1,this.color="primary",this.disablePagination=!(!et||null==et.disablePagination)&&et.disablePagination,this.fitInkBarToContent=!(!et||null==et.fitInkBarToContent)&&et.fitInkBarToContent,this.stretchTabs=!et||null==et.stretchTabs||et.stretchTabs}_itemSelected(){}ngAfterContentInit(){this._inkBar=new at(this._items),this._items.changes.pipe((0,ee.Z)(null),(0,Q.Q)(this._destroyed)).subscribe(()=>{this.updateActiveLink()}),super.ngAfterContentInit()}ngAfterViewInit(){super.ngAfterViewInit()}updateActiveLink(){if(!this._items)return;const q=this._items.toArray();for(let Re=0;Re.mat-mdc-tab-link-container .mat-mdc-tab-links{justify-content:center}[mat-align-tabs=end]>.mat-mdc-tab-link-container .mat-mdc-tab-links{justify-content:flex-end}.mat-mdc-tab-link-container{display:flex;flex-grow:1;overflow:hidden;z-index:1;border-bottom-style:solid;border-bottom-width:var(--mat-tab-header-divider-height);border-bottom-color:var(--mat-tab-header-divider-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination{background-color:var(--mat-tab-header-with-background-background-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background.mat-primary>.mat-mdc-tab-link-container .mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background.mat-primary>.mat-mdc-tab-link-container .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-link-container .mat-mdc-tab-link:not(.mdc-tab--active) .mdc-tab__text-label{color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-link-container .mat-mdc-tab-link:not(.mdc-tab--active) .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-focus-indicator::before,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-focus-indicator::before{border-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mdc-tab__ripple::before,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mdc-tab__ripple::before{background-color:var(--mat-tab-header-with-background-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron{color:var(--mat-tab-header-with-background-foreground-color)}"],encapsulation:2})}return we})(),St=(()=>{class we extends pt{get active(){return this._isActive}set active(q){q!==this._isActive&&(this._isActive=q,this._tabNavBar.updateActiveLink())}get rippleDisabled(){return this.disabled||this.disableRipple||this._tabNavBar.disableRipple||!!this.rippleConfig.disabled}constructor(q,Re,Ne,gt,$e,Fe){super(),this._tabNavBar=q,this.elementRef=Re,this._focusMonitor=$e,this._destroyed=new S.B,this._isActive=!1,this.disabled=!1,this.disableRipple=!1,this.tabIndex=0,this.id="mat-tab-link-"+zt++,this.rippleConfig=Ne||{},this.tabIndex=parseInt(gt)||0,"NoopAnimations"===Fe&&(this.rippleConfig.animation={enterDuration:0,exitDuration:0}),q._fitInkBarToContent.pipe((0,Q.Q)(this._destroyed)).subscribe(Ge=>{this.fitInkBarToContent=Ge})}focus(){this.elementRef.nativeElement.focus()}ngAfterViewInit(){this._focusMonitor.monitor(this.elementRef)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete(),super.ngOnDestroy(),this._focusMonitor.stopMonitoring(this.elementRef)}_handleFocus(){this._tabNavBar.focusIndex=this._tabNavBar._items.toArray().indexOf(this)}_handleKeydown(q){(q.keyCode===j.t6||q.keyCode===j.Fm)&&(this.disabled?q.preventDefault():this._tabNavBar.tabPanel&&(q.keyCode===j.t6&&q.preventDefault(),this.elementRef.nativeElement.click()))}_getAriaControls(){return this._tabNavBar.tabPanel?this._tabNavBar.tabPanel?.id:this.elementRef.nativeElement.getAttribute("aria-controls")}_getAriaSelected(){return this._tabNavBar.tabPanel?this.active?"true":"false":this.elementRef.nativeElement.getAttribute("aria-selected")}_getAriaCurrent(){return this.active&&!this._tabNavBar.tabPanel?"page":null}_getRole(){return this._tabNavBar.tabPanel?"tab":this.elementRef.nativeElement.getAttribute("role")}_getTabIndex(){return this._tabNavBar.tabPanel?this._isActive&&!this.disabled?0:-1:this.disabled?-1:this.tabIndex}static#e=this.\u0275fac=function(Re){return new(Re||we)(e.rXU(Jt),e.rXU(e.aKT),e.rXU(t.$E,8),e.kS0("tabindex"),e.rXU($.FN),e.rXU(e.bc$,8))};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["","mat-tab-link",""],["","matTabLink",""]],hostAttrs:[1,"mdc-tab","mat-mdc-tab-link","mat-mdc-focus-indicator"],hostVars:11,hostBindings:function(Re,Ne){1&Re&&e.bIt("focus",function(){return Ne._handleFocus()})("keydown",function($e){return Ne._handleKeydown($e)}),2&Re&&(e.BMQ("aria-controls",Ne._getAriaControls())("aria-current",Ne._getAriaCurrent())("aria-disabled",Ne.disabled)("aria-selected",Ne._getAriaSelected())("id",Ne.id)("tabIndex",Ne._getTabIndex())("role",Ne._getRole()),e.AVh("mat-mdc-tab-disabled",Ne.disabled)("mdc-tab--active",Ne.active))},inputs:{active:[2,"active","active",e.L39],disabled:[2,"disabled","disabled",e.L39],disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",q=>null==q?0:(0,e.Udg)(q)],id:"id"},exportAs:["matTabLink"],standalone:!0,features:[e.GFd,e.Vt3,e.aNF],attrs:me,ngContentSelectors:n,decls:5,vars:2,consts:[[1,"mdc-tab__ripple"],["mat-ripple","",1,"mat-mdc-tab-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mdc-tab__content"],[1,"mdc-tab__text-label"]],template:function(Re,Ne){1&Re&&(e.NAR(),e.nrm(0,"span",0)(1,"div",1),e.j41(2,"span",2)(3,"span",3),e.SdG(4),e.k0s()()),2&Re&&(e.R7$(),e.Y8G("matRippleTrigger",Ne.elementRef.nativeElement)("matRippleDisabled",Ne.rippleDisabled))},dependencies:[t.r6],styles:['.mat-mdc-tab-link{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none;background:none;font-family:var(--mat-tab-header-label-text-font);font-size:var(--mat-tab-header-label-text-size);letter-spacing:var(--mat-tab-header-label-text-tracking);line-height:var(--mat-tab-header-label-text-line-height);font-weight:var(--mat-tab-header-label-text-weight)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-color:var(--mdc-tab-indicator-active-indicator-color)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-top-width:var(--mdc-tab-indicator-active-indicator-height)}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-radius:var(--mdc-tab-indicator-active-indicator-shape)}.mat-mdc-tab-link:not(.mdc-tab--stacked){height:var(--mdc-secondary-navigation-tab-container-height)}.mat-mdc-tab-link:not(:disabled).mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):hover.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):focus.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):active.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:disabled.mdc-tab--active .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):hover:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):focus:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:not(:disabled):active:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link:disabled:not(.mdc-tab--active) .mdc-tab__icon{fill:currentColor}.mat-mdc-tab-link.mdc-tab{flex-grow:0}.mat-mdc-tab-link:hover .mdc-tab__text-label{color:var(--mat-tab-header-inactive-hover-label-text-color)}.mat-mdc-tab-link:focus .mdc-tab__text-label{color:var(--mat-tab-header-inactive-focus-label-text-color)}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-header-active-label-text-color)}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab-link.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-header-active-ripple-color)}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-header-active-hover-label-text-color)}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-hover-indicator-color)}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-header-active-focus-label-text-color)}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-header-active-focus-indicator-color)}.mat-mdc-tab-link.mat-mdc-tab-disabled{opacity:.4;pointer-events:none}.mat-mdc-tab-link.mat-mdc-tab-disabled .mdc-tab__content{pointer-events:none}.mat-mdc-tab-link.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab-link.mat-mdc-tab-disabled .mat-ripple-element{background-color:var(--mat-tab-header-disabled-ripple-color)}.mat-mdc-tab-link .mdc-tab__ripple::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;pointer-events:none;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-header-inactive-label-text-color);display:inline-flex;align-items:center}.mat-mdc-tab-link .mdc-tab__content{position:relative;pointer-events:auto}.mat-mdc-tab-link:hover .mdc-tab__ripple::before{opacity:.04}.mat-mdc-tab-link.cdk-program-focused .mdc-tab__ripple::before,.mat-mdc-tab-link.cdk-keyboard-focused .mdc-tab__ripple::before{opacity:.12}.mat-mdc-tab-link .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-header-inactive-ripple-color)}.mat-mdc-tab-header.mat-mdc-tab-nav-bar-stretch-tabs .mat-mdc-tab-link{flex-grow:1}.mat-mdc-tab-link::before{margin:5px}@media(max-width: 599px){.mat-mdc-tab-link{min-width:72px}}'],encapsulation:2,changeDetection:0})}return we})(),dt=(()=>{class we{constructor(){this.id="mat-tab-nav-panel-"+zt++}static#e=this.\u0275fac=function(Re){return new(Re||we)};static#t=this.\u0275cmp=e.VBU({type:we,selectors:[["mat-tab-nav-panel"]],hostAttrs:["role","tabpanel",1,"mat-mdc-tab-nav-panel"],hostVars:2,hostBindings:function(Re,Ne){2&Re&&e.BMQ("aria-labelledby",Ne._activeTabId)("id",Ne.id)},inputs:{id:"id"},exportAs:["matTabNavPanel"],standalone:!0,features:[e.aNF],ngContentSelectors:n,decls:1,vars:0,template:function(Re,Ne){1&Re&&(e.NAR(),e.SdG(0))},encapsulation:2,changeDetection:0})}return we})(),Ae=(()=>{class we{static#e=this.\u0275fac=function(Re){return new(Re||we)};static#t=this.\u0275mod=e.$C({type:we});static#i=this.\u0275inj=e.G2t({imports:[t.yE,t.yE]})}return we})()},5911:(Qe,te,g)=>{"use strict";g.d(te,{KQ:()=>I,s5:()=>T});var e=g(4438),t=g(6600),w=g(6860),S=g(177);const l=["*",[["mat-toolbar-row"]]],x=["*","mat-toolbar-row"];let f=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275dir=e.FsC({type:y,selectors:[["mat-toolbar-row"]],hostAttrs:[1,"mat-toolbar-row"],exportAs:["matToolbarRow"],standalone:!0})}return y})(),I=(()=>{class y{constructor(R,z,W){this._elementRef=R,this._platform=z,this._document=W}ngAfterViewInit(){this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){}static#e=this.\u0275fac=function(z){return new(z||y)(e.rXU(e.aKT),e.rXU(w.OD),e.rXU(S.qQ))};static#t=this.\u0275cmp=e.VBU({type:y,selectors:[["mat-toolbar"]],contentQueries:function(z,W,$){if(1&z&&e.wni($,f,5),2&z){let j;e.mGM(j=e.lsd())&&(W._toolbarRows=j)}},hostAttrs:[1,"mat-toolbar"],hostVars:6,hostBindings:function(z,W){2&z&&(e.HbH(W.color?"mat-"+W.color:""),e.AVh("mat-toolbar-multiple-rows",W._toolbarRows.length>0)("mat-toolbar-single-row",0===W._toolbarRows.length))},inputs:{color:"color"},exportAs:["matToolbar"],standalone:!0,features:[e.aNF],ngContentSelectors:x,decls:2,vars:0,template:function(z,W){1&z&&(e.NAR(l),e.SdG(0),e.SdG(1,1))},styles:[".mat-toolbar{background:var(--mat-toolbar-container-background-color);color:var(--mat-toolbar-container-text-color)}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font-family:var(--mat-toolbar-title-text-font);font-size:var(--mat-toolbar-title-text-size);line-height:var(--mat-toolbar-title-text-line-height);font-weight:var(--mat-toolbar-title-text-weight);letter-spacing:var(--mat-toolbar-title-text-tracking);margin:0}.cdk-high-contrast-active .mat-toolbar{outline:solid 1px}.mat-toolbar .mat-form-field-underline,.mat-toolbar .mat-form-field-ripple,.mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.mat-toolbar .mat-form-field-label,.mat-toolbar .mat-focused .mat-form-field-label,.mat-toolbar .mat-select-value,.mat-toolbar .mat-select-arrow,.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar .mat-mdc-button-base.mat-mdc-button-base.mat-unthemed{--mdc-text-button-label-text-color:var(--mat-toolbar-container-text-color);--mdc-outlined-button-label-text-color:var(--mat-toolbar-container-text-color)}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap;height:var(--mat-toolbar-standard-height)}@media(max-width: 599px){.mat-toolbar-row,.mat-toolbar-single-row{height:var(--mat-toolbar-mobile-height)}}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%;min-height:var(--mat-toolbar-standard-height)}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:var(--mat-toolbar-mobile-height)}}"],encapsulation:2,changeDetection:0})}return y})(),T=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275mod=e.$C({type:y});static#i=this.\u0275inj=e.G2t({imports:[t.yE,t.yE]})}return y})()},4823:(Qe,te,g)=>{"use strict";g.d(te,{oV:()=>h,uc:()=>L});var e=g(6977),t=g(6697),w=g(4085),S=g(7336),l=g(4438),x=g(177),f=g(6860),I=g(8617),d=g(8203),T=g(6969),y=g(5542),F=g(6939),R=g(1413),W=(g(9969),g(6600));const $=["tooltip"],J=new l.nKC("mat-tooltip-scroll-strategy",{providedIn:"root",factory:()=>{const _=(0,l.WQX)(T.hJ);return()=>_.scrollStrategies.reposition({scrollThrottle:20})}}),ie={provide:J,deps:[T.hJ],useFactory:function ee(_){return()=>_.scrollStrategies.reposition({scrollThrottle:20})}},ae=new l.nKC("mat-tooltip-default-options",{providedIn:"root",factory:function ge(){return{showDelay:0,hideDelay:0,touchendHideDelay:1500}}}),Te="tooltip-panel",de=(0,f.BQ)({passive:!0});let h=(()=>{class _{get position(){return this._position}set position(v){v!==this._position&&(this._position=v,this._overlayRef&&(this._updatePosition(this._overlayRef),this._tooltipInstance?.show(0),this._overlayRef.updatePosition()))}get positionAtOrigin(){return this._positionAtOrigin}set positionAtOrigin(v){this._positionAtOrigin=(0,w.he)(v),this._detach(),this._overlayRef=null}get disabled(){return this._disabled}set disabled(v){this._disabled=(0,w.he)(v),this._disabled?this.hide(0):this._setupPointerEnterEventsIfNeeded()}get showDelay(){return this._showDelay}set showDelay(v){this._showDelay=(0,w.OE)(v)}get hideDelay(){return this._hideDelay}set hideDelay(v){this._hideDelay=(0,w.OE)(v),this._tooltipInstance&&(this._tooltipInstance._mouseLeaveHideDelay=this._hideDelay)}get message(){return this._message}set message(v){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this._message,"tooltip"),this._message=null!=v?String(v).trim():"",!this._message&&this._isTooltipVisible()?this.hide(0):(this._setupPointerEnterEventsIfNeeded(),this._updateTooltipMessage(),this._ngZone.runOutsideAngular(()=>{Promise.resolve().then(()=>{this._ariaDescriber.describe(this._elementRef.nativeElement,this.message,"tooltip")})}))}get tooltipClass(){return this._tooltipClass}set tooltipClass(v){this._tooltipClass=v,this._tooltipInstance&&this._setTooltipClass(this._tooltipClass)}constructor(v,V,N,ne,Ee,ze,qe,Ke,se,X,me,ce){this._overlay=v,this._elementRef=V,this._scrollDispatcher=N,this._viewContainerRef=ne,this._ngZone=Ee,this._platform=ze,this._ariaDescriber=qe,this._focusMonitor=Ke,this._dir=X,this._defaultOptions=me,this._position="below",this._positionAtOrigin=!1,this._disabled=!1,this._viewInitialized=!1,this._pointerExitEventsInitialized=!1,this._tooltipComponent=C,this._viewportMargin=8,this._cssClassPrefix="mat-mdc",this.touchGestures="auto",this._message="",this._passiveListeners=[],this._destroyed=new R.B,this._scrollStrategy=se,this._document=ce,me&&(this._showDelay=me.showDelay,this._hideDelay=me.hideDelay,me.position&&(this.position=me.position),me.positionAtOrigin&&(this.positionAtOrigin=me.positionAtOrigin),me.touchGestures&&(this.touchGestures=me.touchGestures)),X.change.pipe((0,e.Q)(this._destroyed)).subscribe(()=>{this._overlayRef&&this._updatePosition(this._overlayRef)}),this._viewportMargin=8}ngAfterViewInit(){this._viewInitialized=!0,this._setupPointerEnterEventsIfNeeded(),this._focusMonitor.monitor(this._elementRef).pipe((0,e.Q)(this._destroyed)).subscribe(v=>{v?"keyboard"===v&&this._ngZone.run(()=>this.show()):this._ngZone.run(()=>this.hide(0))})}ngOnDestroy(){const v=this._elementRef.nativeElement;clearTimeout(this._touchstartTimeout),this._overlayRef&&(this._overlayRef.dispose(),this._tooltipInstance=null),this._passiveListeners.forEach(([V,N])=>{v.removeEventListener(V,N,de)}),this._passiveListeners.length=0,this._destroyed.next(),this._destroyed.complete(),this._ariaDescriber.removeDescription(v,this.message,"tooltip"),this._focusMonitor.stopMonitoring(v)}show(v=this.showDelay,V){if(this.disabled||!this.message||this._isTooltipVisible())return void this._tooltipInstance?._cancelPendingAnimations();const N=this._createOverlay(V);this._detach(),this._portal=this._portal||new F.A8(this._tooltipComponent,this._viewContainerRef);const ne=this._tooltipInstance=N.attach(this._portal).instance;ne._triggerElement=this._elementRef.nativeElement,ne._mouseLeaveHideDelay=this._hideDelay,ne.afterHidden().pipe((0,e.Q)(this._destroyed)).subscribe(()=>this._detach()),this._setTooltipClass(this._tooltipClass),this._updateTooltipMessage(),ne.show(v)}hide(v=this.hideDelay){const V=this._tooltipInstance;V&&(V.isVisible()?V.hide(v):(V._cancelPendingAnimations(),this._detach()))}toggle(v){this._isTooltipVisible()?this.hide():this.show(void 0,v)}_isTooltipVisible(){return!!this._tooltipInstance&&this._tooltipInstance.isVisible()}_createOverlay(v){if(this._overlayRef){const ne=this._overlayRef.getConfig().positionStrategy;if((!this.positionAtOrigin||!v)&&ne._origin instanceof l.aKT)return this._overlayRef;this._detach()}const V=this._scrollDispatcher.getAncestorScrollContainers(this._elementRef),N=this._overlay.position().flexibleConnectedTo(this.positionAtOrigin&&v||this._elementRef).withTransformOriginOn(`.${this._cssClassPrefix}-tooltip`).withFlexibleDimensions(!1).withViewportMargin(this._viewportMargin).withScrollableContainers(V);return N.positionChanges.pipe((0,e.Q)(this._destroyed)).subscribe(ne=>{this._updateCurrentPositionClass(ne.connectionPair),this._tooltipInstance&&ne.scrollableViewProperties.isOverlayClipped&&this._tooltipInstance.isVisible()&&this._ngZone.run(()=>this.hide(0))}),this._overlayRef=this._overlay.create({direction:this._dir,positionStrategy:N,panelClass:`${this._cssClassPrefix}-${Te}`,scrollStrategy:this._scrollStrategy()}),this._updatePosition(this._overlayRef),this._overlayRef.detachments().pipe((0,e.Q)(this._destroyed)).subscribe(()=>this._detach()),this._overlayRef.outsidePointerEvents().pipe((0,e.Q)(this._destroyed)).subscribe(()=>this._tooltipInstance?._handleBodyInteraction()),this._overlayRef.keydownEvents().pipe((0,e.Q)(this._destroyed)).subscribe(ne=>{this._isTooltipVisible()&&ne.keyCode===S._f&&!(0,S.rp)(ne)&&(ne.preventDefault(),ne.stopPropagation(),this._ngZone.run(()=>this.hide(0)))}),this._defaultOptions?.disableTooltipInteractivity&&this._overlayRef.addPanelClass(`${this._cssClassPrefix}-tooltip-panel-non-interactive`),this._overlayRef}_detach(){this._overlayRef&&this._overlayRef.hasAttached()&&this._overlayRef.detach(),this._tooltipInstance=null}_updatePosition(v){const V=v.getConfig().positionStrategy,N=this._getOrigin(),ne=this._getOverlayPosition();V.withPositions([this._addOffset({...N.main,...ne.main}),this._addOffset({...N.fallback,...ne.fallback})])}_addOffset(v){const N=!this._dir||"ltr"==this._dir.value;return"top"===v.originY?v.offsetY=-8:"bottom"===v.originY?v.offsetY=8:"start"===v.originX?v.offsetX=N?-8:8:"end"===v.originX&&(v.offsetX=N?8:-8),v}_getOrigin(){const v=!this._dir||"ltr"==this._dir.value,V=this.position;let N;"above"==V||"below"==V?N={originX:"center",originY:"above"==V?"top":"bottom"}:"before"==V||"left"==V&&v||"right"==V&&!v?N={originX:"start",originY:"center"}:("after"==V||"right"==V&&v||"left"==V&&!v)&&(N={originX:"end",originY:"center"});const{x:ne,y:Ee}=this._invertPosition(N.originX,N.originY);return{main:N,fallback:{originX:ne,originY:Ee}}}_getOverlayPosition(){const v=!this._dir||"ltr"==this._dir.value,V=this.position;let N;"above"==V?N={overlayX:"center",overlayY:"bottom"}:"below"==V?N={overlayX:"center",overlayY:"top"}:"before"==V||"left"==V&&v||"right"==V&&!v?N={overlayX:"end",overlayY:"center"}:("after"==V||"right"==V&&v||"left"==V&&!v)&&(N={overlayX:"start",overlayY:"center"});const{x:ne,y:Ee}=this._invertPosition(N.overlayX,N.overlayY);return{main:N,fallback:{overlayX:ne,overlayY:Ee}}}_updateTooltipMessage(){this._tooltipInstance&&(this._tooltipInstance.message=this.message,this._tooltipInstance._markForCheck(),this._ngZone.onMicrotaskEmpty.pipe((0,t.s)(1),(0,e.Q)(this._destroyed)).subscribe(()=>{this._tooltipInstance&&this._overlayRef.updatePosition()}))}_setTooltipClass(v){this._tooltipInstance&&(this._tooltipInstance.tooltipClass=v,this._tooltipInstance._markForCheck())}_invertPosition(v,V){return"above"===this.position||"below"===this.position?"top"===V?V="bottom":"bottom"===V&&(V="top"):"end"===v?v="start":"start"===v&&(v="end"),{x:v,y:V}}_updateCurrentPositionClass(v){const{overlayY:V,originX:N,originY:ne}=v;let Ee;if(Ee="center"===V?this._dir&&"rtl"===this._dir.value?"end"===N?"left":"right":"start"===N?"left":"right":"bottom"===V&&"top"===ne?"above":"below",Ee!==this._currentPosition){const ze=this._overlayRef;if(ze){const qe=`${this._cssClassPrefix}-${Te}-`;ze.removePanelClass(qe+this._currentPosition),ze.addPanelClass(qe+Ee)}this._currentPosition=Ee}}_setupPointerEnterEventsIfNeeded(){this._disabled||!this.message||!this._viewInitialized||this._passiveListeners.length||(this._platformSupportsMouseEvents()?this._passiveListeners.push(["mouseenter",v=>{let V;this._setupPointerExitEventsIfNeeded(),void 0!==v.x&&void 0!==v.y&&(V=v),this.show(void 0,V)}]):"off"!==this.touchGestures&&(this._disableNativeGesturesIfNecessary(),this._passiveListeners.push(["touchstart",v=>{const V=v.targetTouches?.[0],N=V?{x:V.clientX,y:V.clientY}:void 0;this._setupPointerExitEventsIfNeeded(),clearTimeout(this._touchstartTimeout),this._touchstartTimeout=setTimeout(()=>this.show(void 0,N),this._defaultOptions.touchLongPressShowDelay??500)}])),this._addListeners(this._passiveListeners))}_setupPointerExitEventsIfNeeded(){if(this._pointerExitEventsInitialized)return;this._pointerExitEventsInitialized=!0;const v=[];if(this._platformSupportsMouseEvents())v.push(["mouseleave",V=>{const N=V.relatedTarget;(!N||!this._overlayRef?.overlayElement.contains(N))&&this.hide()}],["wheel",V=>this._wheelListener(V)]);else if("off"!==this.touchGestures){this._disableNativeGesturesIfNecessary();const V=()=>{clearTimeout(this._touchstartTimeout),this.hide(this._defaultOptions.touchendHideDelay)};v.push(["touchend",V],["touchcancel",V])}this._addListeners(v),this._passiveListeners.push(...v)}_addListeners(v){v.forEach(([V,N])=>{this._elementRef.nativeElement.addEventListener(V,N,de)})}_platformSupportsMouseEvents(){return!this._platform.IOS&&!this._platform.ANDROID}_wheelListener(v){if(this._isTooltipVisible()){const V=this._document.elementFromPoint(v.clientX,v.clientY),N=this._elementRef.nativeElement;V!==N&&!N.contains(V)&&this.hide()}}_disableNativeGesturesIfNecessary(){const v=this.touchGestures;if("off"!==v){const V=this._elementRef.nativeElement,N=V.style;("on"===v||"INPUT"!==V.nodeName&&"TEXTAREA"!==V.nodeName)&&(N.userSelect=N.msUserSelect=N.webkitUserSelect=N.MozUserSelect="none"),("on"===v||!V.draggable)&&(N.webkitUserDrag="none"),N.touchAction="none",N.webkitTapHighlightColor="transparent"}}static#e=this.\u0275fac=function(V){return new(V||_)(l.rXU(T.hJ),l.rXU(l.aKT),l.rXU(y.R),l.rXU(l.c1b),l.rXU(l.SKi),l.rXU(f.OD),l.rXU(I.vr),l.rXU(I.FN),l.rXU(J),l.rXU(d.dS),l.rXU(ae,8),l.rXU(x.qQ))};static#t=this.\u0275dir=l.FsC({type:_,selectors:[["","matTooltip",""]],hostAttrs:[1,"mat-mdc-tooltip-trigger"],hostVars:2,hostBindings:function(V,N){2&V&&l.AVh("mat-mdc-tooltip-disabled",N.disabled)},inputs:{position:[0,"matTooltipPosition","position"],positionAtOrigin:[0,"matTooltipPositionAtOrigin","positionAtOrigin"],disabled:[0,"matTooltipDisabled","disabled"],showDelay:[0,"matTooltipShowDelay","showDelay"],hideDelay:[0,"matTooltipHideDelay","hideDelay"],touchGestures:[0,"matTooltipTouchGestures","touchGestures"],message:[0,"matTooltip","message"],tooltipClass:[0,"matTooltipClass","tooltipClass"]},exportAs:["matTooltip"],standalone:!0})}return _})(),C=(()=>{class _{constructor(v,V,N){this._changeDetectorRef=v,this._elementRef=V,this._isMultiline=!1,this._closeOnInteraction=!1,this._isVisible=!1,this._onHide=new R.B,this._showAnimation="mat-mdc-tooltip-show",this._hideAnimation="mat-mdc-tooltip-hide",this._animationsDisabled="NoopAnimations"===N}show(v){null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=setTimeout(()=>{this._toggleVisibility(!0),this._showTimeoutId=void 0},v)}hide(v){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),this._hideTimeoutId=setTimeout(()=>{this._toggleVisibility(!1),this._hideTimeoutId=void 0},v)}afterHidden(){return this._onHide}isVisible(){return this._isVisible}ngOnDestroy(){this._cancelPendingAnimations(),this._onHide.complete(),this._triggerElement=null}_handleBodyInteraction(){this._closeOnInteraction&&this.hide(0)}_markForCheck(){this._changeDetectorRef.markForCheck()}_handleMouseLeave({relatedTarget:v}){(!v||!this._triggerElement.contains(v))&&(this.isVisible()?this.hide(this._mouseLeaveHideDelay):this._finalizeAnimation(!1))}_onShow(){this._isMultiline=this._isTooltipMultiline(),this._markForCheck()}_isTooltipMultiline(){const v=this._elementRef.nativeElement.getBoundingClientRect();return v.height>24&&v.width>=200}_handleAnimationEnd({animationName:v}){(v===this._showAnimation||v===this._hideAnimation)&&this._finalizeAnimation(v===this._showAnimation)}_cancelPendingAnimations(){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=this._hideTimeoutId=void 0}_finalizeAnimation(v){v?this._closeOnInteraction=!0:this.isVisible()||this._onHide.next()}_toggleVisibility(v){const V=this._tooltip.nativeElement,N=this._showAnimation,ne=this._hideAnimation;if(V.classList.remove(v?ne:N),V.classList.add(v?N:ne),this._isVisible!==v&&(this._isVisible=v,this._changeDetectorRef.markForCheck()),v&&!this._animationsDisabled&&"function"==typeof getComputedStyle){const Ee=getComputedStyle(V);("0s"===Ee.getPropertyValue("animation-duration")||"none"===Ee.getPropertyValue("animation-name"))&&(this._animationsDisabled=!0)}v&&this._onShow(),this._animationsDisabled&&(V.classList.add("_mat-animation-noopable"),this._finalizeAnimation(v))}static#e=this.\u0275fac=function(V){return new(V||_)(l.rXU(l.gRc),l.rXU(l.aKT),l.rXU(l.bc$,8))};static#t=this.\u0275cmp=l.VBU({type:_,selectors:[["mat-tooltip-component"]],viewQuery:function(V,N){if(1&V&&l.GBs($,7),2&V){let ne;l.mGM(ne=l.lsd())&&(N._tooltip=ne.first)}},hostAttrs:["aria-hidden","true"],hostVars:2,hostBindings:function(V,N){1&V&&l.bIt("mouseleave",function(Ee){return N._handleMouseLeave(Ee)}),2&V&&l.xc7("zoom",N.isVisible()?1:null)},standalone:!0,features:[l.aNF],decls:4,vars:4,consts:[["tooltip",""],[1,"mdc-tooltip","mdc-tooltip--shown","mat-mdc-tooltip",3,"animationend","ngClass"],[1,"mdc-tooltip__surface","mdc-tooltip__surface-animation"]],template:function(V,N){if(1&V){const ne=l.RV6();l.j41(0,"div",1,0),l.bIt("animationend",function(ze){return l.eBV(ne),l.Njj(N._handleAnimationEnd(ze))}),l.j41(2,"div",2),l.EFF(3),l.k0s()()}2&V&&(l.AVh("mdc-tooltip--multiline",N._isMultiline),l.Y8G("ngClass",N.tooltipClass),l.R7$(3),l.JRh(N.message))},dependencies:[x.YU],styles:['.mdc-tooltip__surface{word-break:break-all;word-break:var(--mdc-tooltip-word-break, normal);overflow-wrap:anywhere}.mdc-tooltip--showing-transition .mdc-tooltip__surface-animation{transition:opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1),transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1)}.mdc-tooltip--hide-transition .mdc-tooltip__surface-animation{transition:opacity 75ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-tooltip{position:fixed;display:none;z-index:9}.mdc-tooltip-wrapper--rich{position:relative}.mdc-tooltip--shown,.mdc-tooltip--showing,.mdc-tooltip--hide{display:inline-flex}.mdc-tooltip--shown.mdc-tooltip--rich,.mdc-tooltip--showing.mdc-tooltip--rich,.mdc-tooltip--hide.mdc-tooltip--rich{display:inline-block;left:-320px;position:absolute}.mdc-tooltip__surface{line-height:16px;padding:4px 8px;min-width:40px;max-width:200px;min-height:24px;max-height:40vh;box-sizing:border-box;overflow:hidden;text-align:center}.mdc-tooltip__surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}@media screen and (forced-colors: active){.mdc-tooltip__surface::before{border-color:CanvasText}}.mdc-tooltip--rich .mdc-tooltip__surface{align-items:flex-start;display:flex;flex-direction:column;min-height:24px;min-width:40px;max-width:320px;position:relative}.mdc-tooltip--multiline .mdc-tooltip__surface{text-align:left}[dir=rtl] .mdc-tooltip--multiline .mdc-tooltip__surface,.mdc-tooltip--multiline .mdc-tooltip__surface[dir=rtl]{text-align:right}.mdc-tooltip__surface .mdc-tooltip__title{margin:0 8px}.mdc-tooltip__surface .mdc-tooltip__content{max-width:calc(200px - 2*8px);margin:8px;text-align:left}[dir=rtl] .mdc-tooltip__surface .mdc-tooltip__content,.mdc-tooltip__surface .mdc-tooltip__content[dir=rtl]{text-align:right}.mdc-tooltip--rich .mdc-tooltip__surface .mdc-tooltip__content{max-width:calc(320px - 2*8px);align-self:stretch}.mdc-tooltip__surface .mdc-tooltip__content-link{text-decoration:none}.mdc-tooltip--rich-actions,.mdc-tooltip__content,.mdc-tooltip__title{z-index:1}.mdc-tooltip__surface-animation{opacity:0;transform:scale(0.8);will-change:transform,opacity}.mdc-tooltip--shown .mdc-tooltip__surface-animation{transform:scale(1);opacity:1}.mdc-tooltip--hide .mdc-tooltip__surface-animation{transform:scale(1)}.mdc-tooltip__caret-surface-top,.mdc-tooltip__caret-surface-bottom{position:absolute;height:24px;width:24px;transform:rotate(35deg) skewY(20deg) scaleX(0.9396926208)}.mdc-tooltip__caret-surface-top .mdc-elevation-overlay,.mdc-tooltip__caret-surface-bottom .mdc-elevation-overlay{width:100%;height:100%;top:0;left:0}.mdc-tooltip__caret-surface-bottom{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);outline:1px solid rgba(0,0,0,0);z-index:-1}@media screen and (forced-colors: active){.mdc-tooltip__caret-surface-bottom{outline-color:CanvasText}}.mat-mdc-tooltip .mdc-tooltip__surface{background-color:var(--mdc-plain-tooltip-container-color)}.mat-mdc-tooltip .mdc-tooltip__surface{border-radius:var(--mdc-plain-tooltip-container-shape)}.mat-mdc-tooltip .mdc-tooltip__caret-surface-top,.mat-mdc-tooltip .mdc-tooltip__caret-surface-bottom{border-radius:var(--mdc-plain-tooltip-container-shape)}.mat-mdc-tooltip .mdc-tooltip__surface{color:var(--mdc-plain-tooltip-supporting-text-color)}.mat-mdc-tooltip .mdc-tooltip__surface{font-family:var(--mdc-plain-tooltip-supporting-text-font);line-height:var(--mdc-plain-tooltip-supporting-text-line-height);font-size:var(--mdc-plain-tooltip-supporting-text-size);font-weight:var(--mdc-plain-tooltip-supporting-text-weight);letter-spacing:var(--mdc-plain-tooltip-supporting-text-tracking)}.mat-mdc-tooltip{position:relative;transform:scale(0)}.mat-mdc-tooltip::before{content:"";top:0;right:0;bottom:0;left:0;z-index:-1;position:absolute}.mat-mdc-tooltip-panel-below .mat-mdc-tooltip::before{top:-8px}.mat-mdc-tooltip-panel-above .mat-mdc-tooltip::before{bottom:-8px}.mat-mdc-tooltip-panel-right .mat-mdc-tooltip::before{left:-8px}.mat-mdc-tooltip-panel-left .mat-mdc-tooltip::before{right:-8px}.mat-mdc-tooltip._mat-animation-noopable{animation:none;transform:scale(1)}.mat-mdc-tooltip-panel.mat-mdc-tooltip-panel-non-interactive{pointer-events:none}@keyframes mat-mdc-tooltip-show{0%{opacity:0;transform:scale(0.8)}100%{opacity:1;transform:scale(1)}}@keyframes mat-mdc-tooltip-hide{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(0.8)}}.mat-mdc-tooltip-show{animation:mat-mdc-tooltip-show 150ms cubic-bezier(0, 0, 0.2, 1) forwards}.mat-mdc-tooltip-hide{animation:mat-mdc-tooltip-hide 75ms cubic-bezier(0.4, 0, 1, 1) forwards}'],encapsulation:2,changeDetection:0})}return _})(),L=(()=>{class _{static#e=this.\u0275fac=function(V){return new(V||_)};static#t=this.\u0275mod=l.$C({type:_});static#i=this.\u0275inj=l.G2t({providers:[ie],imports:[I.Pd,x.MD,T.z_,W.yE,W.yE,y.Gj]})}return _})()},7358:(Qe,te,g)=>{"use strict";g.d(te,{Zh:()=>J,d6:()=>I,jH:()=>$,lQ:()=>R,pO:()=>z,q1:()=>T,wx:()=>F,yI:()=>d});var e=g(4109),t=g(4438),w=g(6600),S=g(5024),l=g(4412),x=g(7786),f=g(6354);let I=(()=>{class ee extends e.xn{constructor(ge,ae,Me){super(ge,ae),this.disabled=!1,this.tabIndex=Number(Me)||0}ngOnInit(){super.ngOnInit()}ngOnDestroy(){super.ngOnDestroy()}static#e=this.\u0275fac=function(ae){return new(ae||ee)(t.rXU(t.aKT),t.rXU(e.NL),t.kS0("tabindex"))};static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["mat-tree-node"]],hostAttrs:[1,"mat-tree-node"],inputs:{disabled:[2,"disabled","disabled",t.L39],tabIndex:[2,"tabIndex","tabIndex",ge=>null==ge?0:(0,t.Udg)(ge)]},exportAs:["matTreeNode"],standalone:!0,features:[t.Jv_([{provide:e.xn,useExisting:ee}]),t.GFd,t.Vt3]})}return ee})(),d=(()=>{class ee extends e.Sz{static#e=this.\u0275fac=(()=>{let ge;return function(Me){return(ge||(ge=t.xGo(ee)))(Me||ee)}})();static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["","matTreeNodeDef",""]],inputs:{when:[0,"matTreeNodeDefWhen","when"],data:[0,"matTreeNode","data"]},standalone:!0,features:[t.Jv_([{provide:e.Sz,useExisting:ee}]),t.Vt3]})}return ee})(),T=(()=>{class ee extends e.s3{get tabIndex(){return this.disabled?-1:this._tabIndex}set tabIndex(ge){this._tabIndex=ge??0}constructor(ge,ae,Me,Te){super(ge,ae,Me),this.disabled=!1,this.tabIndex=Number(Te)||0}ngOnInit(){super.ngOnInit()}ngAfterContentInit(){super.ngAfterContentInit()}ngOnDestroy(){super.ngOnDestroy()}static#e=this.\u0275fac=function(ae){return new(ae||ee)(t.rXU(t.aKT),t.rXU(e.NL),t.rXU(t._q3),t.kS0("tabindex"))};static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["mat-nested-tree-node"]],hostAttrs:[1,"mat-nested-tree-node"],inputs:{node:[0,"matNestedTreeNode","node"],disabled:[2,"disabled","disabled",t.L39],tabIndex:"tabIndex"},exportAs:["matNestedTreeNode"],standalone:!0,features:[t.Jv_([{provide:e.s3,useExisting:ee},{provide:e.xn,useExisting:ee},{provide:e.kZ,useExisting:ee}]),t.GFd,t.Vt3]})}return ee})(),F=(()=>{class ee{constructor(ge,ae){this.viewContainer=ge,this._node=ae}static#e=this.\u0275fac=function(ae){return new(ae||ee)(t.rXU(t.c1b),t.rXU(e.kZ,8))};static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["","matTreeNodeOutlet",""]],standalone:!0,features:[t.Jv_([{provide:e.a$,useExisting:ee}])]})}return ee})(),R=(()=>{class ee extends e.NL{constructor(){super(...arguments),this._nodeOutlet=void 0}static#e=this.\u0275fac=(()=>{let ge;return function(Me){return(ge||(ge=t.xGo(ee)))(Me||ee)}})();static#t=this.\u0275cmp=t.VBU({type:ee,selectors:[["mat-tree"]],viewQuery:function(ae,Me){if(1&ae&&t.GBs(F,7),2&ae){let Te;t.mGM(Te=t.lsd())&&(Me._nodeOutlet=Te.first)}},hostAttrs:["role","tree",1,"mat-tree"],exportAs:["matTree"],standalone:!0,features:[t.Jv_([{provide:e.NL,useExisting:ee}]),t.Vt3,t.aNF],decls:1,vars:0,consts:[["matTreeNodeOutlet",""]],template:function(ae,Me){1&ae&&t.eu8(0,0)},dependencies:[F],styles:[".mat-tree{display:block;background-color:var(--mat-tree-container-background-color)}.mat-tree-node,.mat-nested-tree-node{color:var(--mat-tree-node-text-color);font-family:var(--mat-tree-node-text-font);font-size:var(--mat-tree-node-text-size);font-weight:var(--mat-tree-node-text-weight)}.mat-tree-node{display:flex;align-items:center;flex:1;word-wrap:break-word;min-height:var(--mat-tree-node-min-height)}.mat-nested-tree-node{border-bottom-width:0}"],encapsulation:2})}return ee})(),z=(()=>{class ee extends e.Hy{static#e=this.\u0275fac=(()=>{let ge;return function(Me){return(ge||(ge=t.xGo(ee)))(Me||ee)}})();static#t=this.\u0275dir=t.FsC({type:ee,selectors:[["","matTreeNodeToggle",""]],inputs:{recursive:[0,"matTreeNodeToggleRecursive","recursive"]},standalone:!0,features:[t.Jv_([{provide:e.Hy,useExisting:ee}]),t.Vt3]})}return ee})(),$=(()=>{class ee{static#e=this.\u0275fac=function(ae){return new(ae||ee)};static#t=this.\u0275mod=t.$C({type:ee});static#i=this.\u0275inj=t.G2t({imports:[e.Dc,w.yE,w.yE]})}return ee})();class J extends S.qS{constructor(){super(...arguments),this._data=new l.t([])}get data(){return this._data.value}set data(ie){this._data.next(ie)}connect(ie){return(0,x.h)(ie.viewChange,this._data).pipe((0,f.T)(()=>this.data))}disconnect(){}}},345:(Qe,te,g)=>{"use strict";g.d(te,{B7:()=>Te,Bb:()=>ke,fM:()=>rt,hE:()=>be,sG:()=>X,up:()=>Yt});var e=g(177),t=g(4438);class w extends e.VF{constructor(){super(...arguments),this.supportsDOMEvents=!0}}class S extends w{static makeCurrent(){(0,e.ZD)(new S)}onAndCancel(we,he,q){return we.addEventListener(he,q),()=>{we.removeEventListener(he,q)}}dispatchEvent(we,he){we.dispatchEvent(he)}remove(we){we.parentNode&&we.parentNode.removeChild(we)}createElement(we,he){return(he=he||this.getDefaultDocument()).createElement(we)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(we){return we.nodeType===Node.ELEMENT_NODE}isShadowRoot(we){return we instanceof DocumentFragment}getGlobalEventTarget(we,he){return"window"===he?window:"document"===he?we:"body"===he?we.body:null}getBaseHref(we){const he=function x(){return l=l||document.querySelector("base"),l?l.getAttribute("href"):null}();return null==he?null:function f(Ae){return new URL(Ae,document.baseURI).pathname}(he)}resetBaseElement(){l=null}getUserAgent(){return window.navigator.userAgent}getCookie(we){return(0,e._b)(document.cookie,we)}}let l=null,d=(()=>{class Ae{build(){return new XMLHttpRequest}static#e=this.\u0275fac=function(q){return new(q||Ae)};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();const T=new t.nKC("");let y=(()=>{class Ae{constructor(he,q){this._zone=q,this._eventNameToPlugin=new Map,he.forEach(Re=>{Re.manager=this}),this._plugins=he.slice().reverse()}addEventListener(he,q,Re){return this._findPluginFor(q).addEventListener(he,q,Re)}getZone(){return this._zone}_findPluginFor(he){let q=this._eventNameToPlugin.get(he);if(q)return q;if(q=this._plugins.find(Ne=>Ne.supports(he)),!q)throw new t.wOt(5101,!1);return this._eventNameToPlugin.set(he,q),q}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(T),t.KVO(t.SKi))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();class F{constructor(we){this._doc=we}}const R="ng-app-id";let z=(()=>{class Ae{constructor(he,q,Re,Ne={}){this.doc=he,this.appId=q,this.nonce=Re,this.platformId=Ne,this.styleRef=new Map,this.hostNodes=new Set,this.styleNodesInDOM=this.collectServerRenderedStyles(),this.platformIsServer=(0,e.Vy)(Ne),this.resetHostNodes()}addStyles(he){for(const q of he)1===this.changeUsageCount(q,1)&&this.onStyleAdded(q)}removeStyles(he){for(const q of he)this.changeUsageCount(q,-1)<=0&&this.onStyleRemoved(q)}ngOnDestroy(){const he=this.styleNodesInDOM;he&&(he.forEach(q=>q.remove()),he.clear());for(const q of this.getAllStyles())this.onStyleRemoved(q);this.resetHostNodes()}addHost(he){this.hostNodes.add(he);for(const q of this.getAllStyles())this.addStyleToHost(he,q)}removeHost(he){this.hostNodes.delete(he)}getAllStyles(){return this.styleRef.keys()}onStyleAdded(he){for(const q of this.hostNodes)this.addStyleToHost(q,he)}onStyleRemoved(he){const q=this.styleRef;q.get(he)?.elements?.forEach(Re=>Re.remove()),q.delete(he)}collectServerRenderedStyles(){const he=this.doc.head?.querySelectorAll(`style[${R}="${this.appId}"]`);if(he?.length){const q=new Map;return he.forEach(Re=>{null!=Re.textContent&&q.set(Re.textContent,Re)}),q}return null}changeUsageCount(he,q){const Re=this.styleRef;if(Re.has(he)){const Ne=Re.get(he);return Ne.usage+=q,Ne.usage}return Re.set(he,{usage:q,elements:[]}),q}getStyleElement(he,q){const Re=this.styleNodesInDOM,Ne=Re?.get(q);if(Ne?.parentNode===he)return Re.delete(q),Ne.removeAttribute(R),Ne;{const gt=this.doc.createElement("style");return this.nonce&>.setAttribute("nonce",this.nonce),gt.textContent=q,this.platformIsServer&>.setAttribute(R,this.appId),he.appendChild(gt),gt}}addStyleToHost(he,q){const Re=this.getStyleElement(he,q),Ne=this.styleRef,gt=Ne.get(q)?.elements;gt?gt.push(Re):Ne.set(q,{elements:[Re],usage:1})}resetHostNodes(){const he=this.hostNodes;he.clear(),he.add(this.doc.head)}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ),t.KVO(t.sZ2),t.KVO(t.BIS,8),t.KVO(t.Agw))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();const W={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/",math:"http://www.w3.org/1998/Math/MathML"},$=/%COMP%/g,j="%COMP%",Q=`_nghost-${j}`,J=`_ngcontent-${j}`,ie=new t.nKC("",{providedIn:"root",factory:()=>!0});function Me(Ae,we){return we.map(he=>he.replace($,Ae))}let Te=(()=>{class Ae{constructor(he,q,Re,Ne,gt,$e,Fe,Ge=null){this.eventManager=he,this.sharedStylesHost=q,this.appId=Re,this.removeStylesOnCompDestroy=Ne,this.doc=gt,this.platformId=$e,this.ngZone=Fe,this.nonce=Ge,this.rendererByCompId=new Map,this.platformIsServer=(0,e.Vy)($e),this.defaultRenderer=new de(he,gt,Fe,this.platformIsServer)}createRenderer(he,q){if(!he||!q)return this.defaultRenderer;this.platformIsServer&&q.encapsulation===t.gXe.ShadowDom&&(q={...q,encapsulation:t.gXe.Emulated});const Re=this.getOrCreateRenderer(he,q);return Re instanceof C?Re.applyToHost(he):Re instanceof h&&Re.applyStyles(),Re}getOrCreateRenderer(he,q){const Re=this.rendererByCompId;let Ne=Re.get(q.id);if(!Ne){const gt=this.doc,$e=this.ngZone,Fe=this.eventManager,Ge=this.sharedStylesHost,et=this.removeStylesOnCompDestroy,st=this.platformIsServer;switch(q.encapsulation){case t.gXe.Emulated:Ne=new C(Fe,Ge,q,this.appId,et,gt,$e,st);break;case t.gXe.ShadowDom:return new m(Fe,Ge,he,q,gt,$e,this.nonce,st);default:Ne=new h(Fe,Ge,q,et,gt,$e,st)}Re.set(q.id,Ne)}return Ne}ngOnDestroy(){this.rendererByCompId.clear()}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(y),t.KVO(z),t.KVO(t.sZ2),t.KVO(ie),t.KVO(e.qQ),t.KVO(t.Agw),t.KVO(t.SKi),t.KVO(t.BIS))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();class de{constructor(we,he,q,Re){this.eventManager=we,this.doc=he,this.ngZone=q,this.platformIsServer=Re,this.data=Object.create(null),this.throwOnSyntheticProps=!0,this.destroyNode=null}destroy(){}createElement(we,he){return he?this.doc.createElementNS(W[he]||he,we):this.doc.createElement(we)}createComment(we){return this.doc.createComment(we)}createText(we){return this.doc.createTextNode(we)}appendChild(we,he){(c(we)?we.content:we).appendChild(he)}insertBefore(we,he,q){we&&(c(we)?we.content:we).insertBefore(he,q)}removeChild(we,he){we&&we.removeChild(he)}selectRootElement(we,he){let q="string"==typeof we?this.doc.querySelector(we):we;if(!q)throw new t.wOt(-5104,!1);return he||(q.textContent=""),q}parentNode(we){return we.parentNode}nextSibling(we){return we.nextSibling}setAttribute(we,he,q,Re){if(Re){he=Re+":"+he;const Ne=W[Re];Ne?we.setAttributeNS(Ne,he,q):we.setAttribute(he,q)}else we.setAttribute(he,q)}removeAttribute(we,he,q){if(q){const Re=W[q];Re?we.removeAttributeNS(Re,he):we.removeAttribute(`${q}:${he}`)}else we.removeAttribute(he)}addClass(we,he){we.classList.add(he)}removeClass(we,he){we.classList.remove(he)}setStyle(we,he,q,Re){Re&(t.czy.DashCase|t.czy.Important)?we.style.setProperty(he,q,Re&t.czy.Important?"important":""):we.style[he]=q}removeStyle(we,he,q){q&t.czy.DashCase?we.style.removeProperty(he):we.style[he]=""}setProperty(we,he,q){null!=we&&(we[he]=q)}setValue(we,he){we.nodeValue=he}listen(we,he,q){if("string"==typeof we&&!(we=(0,e.QT)().getGlobalEventTarget(this.doc,we)))throw new Error(`Unsupported event target ${we} for event ${he}`);return this.eventManager.addEventListener(we,he,this.decoratePreventDefault(q))}decoratePreventDefault(we){return he=>{if("__ngUnwrap__"===he)return we;!1===(this.platformIsServer?this.ngZone.runGuarded(()=>we(he)):we(he))&&he.preventDefault()}}}function c(Ae){return"TEMPLATE"===Ae.tagName&&void 0!==Ae.content}class m extends de{constructor(we,he,q,Re,Ne,gt,$e,Fe){super(we,Ne,gt,Fe),this.sharedStylesHost=he,this.hostEl=q,this.shadowRoot=q.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);const Ge=Me(Re.id,Re.styles);for(const et of Ge){const st=document.createElement("style");$e&&st.setAttribute("nonce",$e),st.textContent=et,this.shadowRoot.appendChild(st)}}nodeOrShadowRoot(we){return we===this.hostEl?this.shadowRoot:we}appendChild(we,he){return super.appendChild(this.nodeOrShadowRoot(we),he)}insertBefore(we,he,q){return super.insertBefore(this.nodeOrShadowRoot(we),he,q)}removeChild(we,he){return super.removeChild(this.nodeOrShadowRoot(we),he)}parentNode(we){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(we)))}destroy(){this.sharedStylesHost.removeHost(this.shadowRoot)}}class h extends de{constructor(we,he,q,Re,Ne,gt,$e,Fe){super(we,Ne,gt,$e),this.sharedStylesHost=he,this.removeStylesOnCompDestroy=Re,this.styles=Fe?Me(Fe,q.styles):q.styles}applyStyles(){this.sharedStylesHost.addStyles(this.styles)}destroy(){this.removeStylesOnCompDestroy&&this.sharedStylesHost.removeStyles(this.styles)}}class C extends h{constructor(we,he,q,Re,Ne,gt,$e,Fe){const Ge=Re+"-"+q.id;super(we,he,q,Ne,gt,$e,Fe,Ge),this.contentAttr=function ge(Ae){return J.replace($,Ae)}(Ge),this.hostAttr=function ae(Ae){return Q.replace($,Ae)}(Ge)}applyToHost(we){this.applyStyles(),this.setAttribute(we,this.hostAttr,"")}createElement(we,he){const q=super.createElement(we,he);return super.setAttribute(q,this.contentAttr,""),q}}let k=(()=>{class Ae extends F{constructor(he){super(he)}supports(he){return!0}addEventListener(he,q,Re){return he.addEventListener(q,Re,!1),()=>this.removeEventListener(he,q,Re)}removeEventListener(he,q,Re){return he.removeEventListener(q,Re)}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();const L=["alt","control","meta","shift"],_={"\b":"Backspace","\t":"Tab","\x7f":"Delete","\x1b":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},r={alt:Ae=>Ae.altKey,control:Ae=>Ae.ctrlKey,meta:Ae=>Ae.metaKey,shift:Ae=>Ae.shiftKey};let v=(()=>{class Ae extends F{constructor(he){super(he)}supports(he){return null!=Ae.parseEventName(he)}addEventListener(he,q,Re){const Ne=Ae.parseEventName(q),gt=Ae.eventCallback(Ne.fullKey,Re,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>(0,e.QT)().onAndCancel(he,Ne.domEventName,gt))}static parseEventName(he){const q=he.toLowerCase().split("."),Re=q.shift();if(0===q.length||"keydown"!==Re&&"keyup"!==Re)return null;const Ne=Ae._normalizeKey(q.pop());let gt="",$e=q.indexOf("code");if($e>-1&&(q.splice($e,1),gt="code."),L.forEach(Ge=>{const et=q.indexOf(Ge);et>-1&&(q.splice(et,1),gt+=Ge+".")}),gt+=Ne,0!=q.length||0===Ne.length)return null;const Fe={};return Fe.domEventName=Re,Fe.fullKey=gt,Fe}static matchEventFullKeyCode(he,q){let Re=_[he.key]||he.key,Ne="";return q.indexOf("code.")>-1&&(Re=he.code,Ne="code."),!(null==Re||!Re)&&(Re=Re.toLowerCase()," "===Re?Re="space":"."===Re&&(Re="dot"),L.forEach(gt=>{gt!==Re&&(0,r[gt])(he)&&(Ne+=gt+".")}),Ne+=Re,Ne===q)}static eventCallback(he,q,Re){return Ne=>{Ae.matchEventFullKeyCode(Ne,he)&&Re.runGuarded(()=>q(Ne))}}static _normalizeKey(he){return"esc"===he?"escape":he}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})();const X=(0,t.oH4)(t.fpN,"browser",[{provide:t.Agw,useValue:e.AJ},{provide:t.PLl,useValue:function ze(){S.makeCurrent()},multi:!0},{provide:e.qQ,useFactory:function Ke(){return(0,t.TL$)(document),document},deps:[]}]),me=new t.nKC(""),ce=[{provide:t.e01,useClass:class I{addToWindow(we){t.JZv.getAngularTestability=(q,Re=!0)=>{const Ne=we.findTestabilityInTree(q,Re);if(null==Ne)throw new t.wOt(5103,!1);return Ne},t.JZv.getAllAngularTestabilities=()=>we.getAllTestabilities(),t.JZv.getAllAngularRootElements=()=>we.getAllRootElements(),t.JZv.frameworkStabilizers||(t.JZv.frameworkStabilizers=[]),t.JZv.frameworkStabilizers.push(q=>{const Re=t.JZv.getAllAngularTestabilities();let Ne=Re.length;const gt=function(){Ne--,0==Ne&&q()};Re.forEach($e=>{$e.whenStable(gt)})})}findTestabilityInTree(we,he,q){return null==he?null:we.getTestability(he)??(q?(0,e.QT)().isShadowRoot(he)?this.findTestabilityInTree(we,he.host,!0):this.findTestabilityInTree(we,he.parentElement,!0):null)}},deps:[]},{provide:t.WHO,useClass:t.NYb,deps:[t.SKi,t.giA,t.e01]},{provide:t.NYb,useClass:t.NYb,deps:[t.SKi,t.giA,t.e01]}],fe=[{provide:t.H8p,useValue:"root"},{provide:t.zcH,useFactory:function qe(){return new t.zcH},deps:[]},{provide:T,useClass:k,multi:!0,deps:[e.qQ,t.SKi,t.Agw]},{provide:T,useClass:v,multi:!0,deps:[e.qQ]},Te,z,y,{provide:t._9s,useExisting:Te},{provide:e.N0,useClass:d,deps:[]},[]];let ke=(()=>{class Ae{constructor(he){}static withServerTransition(he){return{ngModule:Ae,providers:[{provide:t.sZ2,useValue:he.appId}]}}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(me,12))};static#t=this.\u0275mod=t.$C({type:Ae});static#i=this.\u0275inj=t.G2t({providers:[...fe,...ce],imports:[e.MD,t.Hbi]})}return Ae})(),be=(()=>{class Ae{constructor(he){this._doc=he}getTitle(){return this._doc.title}setTitle(he){this._doc.title=he||""}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac,providedIn:"root"})}return Ae})();const Ie={pan:!0,panstart:!0,panmove:!0,panend:!0,pancancel:!0,panleft:!0,panright:!0,panup:!0,pandown:!0,pinch:!0,pinchstart:!0,pinchmove:!0,pinchend:!0,pinchcancel:!0,pinchin:!0,pinchout:!0,press:!0,pressup:!0,rotate:!0,rotatestart:!0,rotatemove:!0,rotateend:!0,rotatecancel:!0,swipe:!0,swipeleft:!0,swiperight:!0,swipeup:!0,swipedown:!0,tap:!0,doubletap:!0},He=new t.nKC("HammerGestureConfig"),Xe=new t.nKC("HammerLoader");let yt=(()=>{class Ae{constructor(){this.events=[],this.overrides={}}buildHammer(he){const q=new Hammer(he,this.options);q.get("pinch").set({enable:!0}),q.get("rotate").set({enable:!0});for(const Re in this.overrides)q.get(Re).set(this.overrides[Re]);return q}static#e=this.\u0275fac=function(q){return new(q||Ae)};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})(),Ye=(()=>{class Ae extends F{constructor(he,q,Re,Ne){super(he),this._config=q,this.console=Re,this.loader=Ne,this._loaderPromise=null}supports(he){return!(!Ie.hasOwnProperty(he.toLowerCase())&&!this.isCustomEvent(he)||!window.Hammer&&!this.loader)}addEventListener(he,q,Re){const Ne=this.manager.getZone();if(q=q.toLowerCase(),!window.Hammer&&this.loader){this._loaderPromise=this._loaderPromise||Ne.runOutsideAngular(()=>this.loader());let gt=!1,$e=()=>{gt=!0};return Ne.runOutsideAngular(()=>this._loaderPromise.then(()=>{window.Hammer?gt||($e=this.addEventListener(he,q,Re)):$e=()=>{}}).catch(()=>{$e=()=>{}})),()=>{$e()}}return Ne.runOutsideAngular(()=>{const gt=this._config.buildHammer(he),$e=function(Fe){Ne.runGuarded(function(){Re(Fe)})};return gt.on(q,$e),()=>{gt.off(q,$e),"function"==typeof gt.destroy&>.destroy()}})}isCustomEvent(he){return this._config.events.indexOf(he)>-1}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ),t.KVO(He),t.KVO(t.H3F),t.KVO(Xe,8))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac})}return Ae})(),rt=(()=>{class Ae{static#e=this.\u0275fac=function(q){return new(q||Ae)};static#t=this.\u0275mod=t.$C({type:Ae});static#i=this.\u0275inj=t.G2t({providers:[{provide:T,useClass:Ye,multi:!0,deps:[e.qQ,He,t.H3F,[new t.Xx1,Xe]]},{provide:He,useClass:yt,deps:[]}]})}return Ae})(),Yt=(()=>{class Ae{static#e=this.\u0275fac=function(q){return new(q||Ae)};static#t=this.\u0275prov=t.jDH({token:Ae,factory:function(q){let Re=null;return Re=q?new(q||Ae):t.KVO(Nt),Re},providedIn:"root"})}return Ae})(),Nt=(()=>{class Ae extends Yt{constructor(he){super(),this._doc=he}sanitize(he,q){if(null==q)return null;switch(he){case t.WPN.NONE:return q;case t.WPN.HTML:return(0,t.ZF7)(q,"HTML")?(0,t.rcV)(q):(0,t.h9k)(this._doc,String(q)).toString();case t.WPN.STYLE:return(0,t.ZF7)(q,"Style")?(0,t.rcV)(q):q;case t.WPN.SCRIPT:if((0,t.ZF7)(q,"Script"))return(0,t.rcV)(q);throw new t.wOt(5200,!1);case t.WPN.URL:return(0,t.ZF7)(q,"URL")?(0,t.rcV)(q):(0,t.$MX)(String(q));case t.WPN.RESOURCE_URL:if((0,t.ZF7)(q,"ResourceURL"))return(0,t.rcV)(q);throw new t.wOt(5201,!1);default:throw new t.wOt(5202,!1)}}bypassSecurityTrustHtml(he){return(0,t.Kcf)(he)}bypassSecurityTrustStyle(he){return(0,t.cWb)(he)}bypassSecurityTrustScript(he){return(0,t.UyX)(he)}bypassSecurityTrustUrl(he){return(0,t.osQ)(he)}bypassSecurityTrustResourceUrl(he){return(0,t.e5t)(he)}static#e=this.\u0275fac=function(q){return new(q||Ae)(t.KVO(e.qQ))};static#t=this.\u0275prov=t.jDH({token:Ae,factory:Ae.\u0275fac,providedIn:"root"})}return Ae})()},1188:(Qe,te,g)=>{"use strict";g.d(te,{nX:()=>Rr,j5:()=>si,wF:()=>ot,L6:()=>mn,Z:()=>Ce,gx:()=>rr,Ix:()=>sn,Wk:()=>fa,wQ:()=>Ya,iI:()=>En,n3:()=>hn});var e=g(467),t=g(4438),w=g(4402),S=g(2806),l=g(7673),x=g(4412),f=g(4572),I=g(9350),d=g(8793),T=g(9030),y=g(1203),F=g(8810),R=g(983),z=g(17),W=g(1413),$=g(8359),j=g(177),Q=g(6354),J=g(5558),ee=g(6697),ie=g(9172),ge=g(5964),ae=g(1397),Me=g(1594),Te=g(274),de=g(8141),D=g(9437),n=g(2816),c=g(9901),m=g(9974),h=g(4360);function C(ve){return ve<=0?()=>R.w:(0,m.N)((Pe,xe)=>{let Be=[];Pe.subscribe((0,h._)(xe,ft=>{Be.push(ft),ve{for(const ft of Be)xe.next(ft);xe.complete()},void 0,()=>{Be=null}))})}var k=g(3774),L=g(3669),r=g(3703),v=g(980),V=g(9898),N=g(6977),ne=g(6365),Ee=g(345);const ze="primary",qe=Symbol("RouteTitle");class Ke{constructor(Pe){this.params=Pe||{}}has(Pe){return Object.prototype.hasOwnProperty.call(this.params,Pe)}get(Pe){if(this.has(Pe)){const xe=this.params[Pe];return Array.isArray(xe)?xe[0]:xe}return null}getAll(Pe){if(this.has(Pe)){const xe=this.params[Pe];return Array.isArray(xe)?xe:[xe]}return[]}get keys(){return Object.keys(this.params)}}function se(ve){return new Ke(ve)}function X(ve,Pe,xe){const Be=xe.path.split("/");if(Be.length>ve.length||"full"===xe.pathMatch&&(Pe.hasChildren()||Be.lengthBe[Ot]===ft)}return ve===Pe}function mt(ve){return ve.length>0?ve[ve.length-1]:null}function _e(ve){return(0,w.A)(ve)?ve:(0,t.jNT)(ve)?(0,S.H)(Promise.resolve(ve)):(0,l.of)(ve)}const be={exact:function at(ve,Pe,xe){if(!Ye(ve.segments,Pe.segments)||!ue(ve.segments,Pe.segments,xe)||ve.numberOfChildren!==Pe.numberOfChildren)return!1;for(const Be in Pe.children)if(!ve.children[Be]||!at(ve.children[Be],Pe.children[Be],xe))return!1;return!0},subset:Xt},pe={exact:function _t(ve,Pe){return ce(ve,Pe)},subset:function pt(ve,Pe){return Object.keys(Pe).length<=Object.keys(ve).length&&Object.keys(Pe).every(xe=>ke(ve[xe],Pe[xe]))},ignored:()=>!0};function Ze(ve,Pe,xe){return be[xe.paths](ve.root,Pe.root,xe.matrixParams)&&pe[xe.queryParams](ve.queryParams,Pe.queryParams)&&!("exact"===xe.fragment&&ve.fragment!==Pe.fragment)}function Xt(ve,Pe,xe){return ye(ve,Pe,Pe.segments,xe)}function ye(ve,Pe,xe,Be){if(ve.segments.length>xe.length){const ft=ve.segments.slice(0,xe.length);return!(!Ye(ft,xe)||Pe.hasChildren()||!ue(ft,xe,Be))}if(ve.segments.length===xe.length){if(!Ye(ve.segments,xe)||!ue(ve.segments,xe,Be))return!1;for(const ft in Pe.children)if(!ve.children[ft]||!Xt(ve.children[ft],Pe.children[ft],Be))return!1;return!0}{const ft=xe.slice(0,ve.segments.length),Ot=xe.slice(ve.segments.length);return!!(Ye(ve.segments,ft)&&ue(ve.segments,ft,Be)&&ve.children[ze])&&ye(ve.children[ze],Pe,Ot,Be)}}function ue(ve,Pe,xe){return Pe.every((Be,ft)=>pe[xe](ve[ft].parameters,Be.parameters))}class Ie{constructor(Pe=new He([],{}),xe={},Be=null){this.root=Pe,this.queryParams=xe,this.fragment=Be}get queryParamMap(){return this._queryParamMap??=se(this.queryParams),this._queryParamMap}toString(){return Et.serialize(this)}}class He{constructor(Pe,xe){this.segments=Pe,this.children=xe,this.parent=null,Object.values(xe).forEach(Be=>Be.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Vt(this)}}class Xe{constructor(Pe,xe){this.path=Pe,this.parameters=xe}get parameterMap(){return this._parameterMap??=se(this.parameters),this._parameterMap}toString(){return Ae(this)}}function Ye(ve,Pe){return ve.length===Pe.length&&ve.every((xe,Be)=>xe.path===Pe[Be].path)}let Yt=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>new Nt,providedIn:"root"})}return ve})();class Nt{parse(Pe){const xe=new st(Pe);return new Ie(xe.parseRootSegment(),xe.parseQueryParams(),xe.parseFragment())}serialize(Pe){const xe=`/${oe(Pe.root,!0)}`,Be=function he(ve){const Pe=Object.entries(ve).map(([xe,Be])=>Array.isArray(Be)?Be.map(ft=>`${$t(xe)}=${$t(ft)}`).join("&"):`${$t(xe)}=${$t(Be)}`).filter(xe=>xe);return Pe.length?`?${Pe.join("&")}`:""}(Pe.queryParams);return`${xe}${Be}${"string"==typeof Pe.fragment?`#${function zt(ve){return encodeURI(ve)}(Pe.fragment)}`:""}`}}const Et=new Nt;function Vt(ve){return ve.segments.map(Pe=>Ae(Pe)).join("/")}function oe(ve,Pe){if(!ve.hasChildren())return Vt(ve);if(Pe){const xe=ve.children[ze]?oe(ve.children[ze],!1):"",Be=[];return Object.entries(ve.children).forEach(([ft,Ot])=>{ft!==ze&&Be.push(`${ft}:${oe(Ot,!1)}`)}),Be.length>0?`${xe}(${Be.join("//")})`:xe}{const xe=function rt(ve,Pe){let xe=[];return Object.entries(ve.children).forEach(([Be,ft])=>{Be===ze&&(xe=xe.concat(Pe(ft,Be)))}),Object.entries(ve.children).forEach(([Be,ft])=>{Be!==ze&&(xe=xe.concat(Pe(ft,Be)))}),xe}(ve,(Be,ft)=>ft===ze?[oe(ve.children[ze],!1)]:[`${ft}:${oe(Be,!1)}`]);return 1===Object.keys(ve.children).length&&null!=ve.children[ze]?`${Vt(ve)}/${xe[0]}`:`${Vt(ve)}/(${xe.join("//")})`}}function tt(ve){return encodeURIComponent(ve).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function $t(ve){return tt(ve).replace(/%3B/gi,";")}function Jt(ve){return tt(ve).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function St(ve){return decodeURIComponent(ve)}function dt(ve){return St(ve.replace(/\+/g,"%20"))}function Ae(ve){return`${Jt(ve.path)}${function we(ve){return Object.entries(ve).map(([Pe,xe])=>`;${Jt(Pe)}=${Jt(xe)}`).join("")}(ve.parameters)}`}const q=/^[^\/()?;#]+/;function Re(ve){const Pe=ve.match(q);return Pe?Pe[0]:""}const Ne=/^[^\/()?;=#]+/,$e=/^[^=?&#]+/,Ge=/^[^&#]+/;class st{constructor(Pe){this.url=Pe,this.remaining=Pe}parseRootSegment(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new He([],{}):new He([],this.parseChildren())}parseQueryParams(){const Pe={};if(this.consumeOptional("?"))do{this.parseQueryParam(Pe)}while(this.consumeOptional("&"));return Pe}parseFragment(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null}parseChildren(){if(""===this.remaining)return{};this.consumeOptional("/");const Pe=[];for(this.peekStartsWith("(")||Pe.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),Pe.push(this.parseSegment());let xe={};this.peekStartsWith("/(")&&(this.capture("/"),xe=this.parseParens(!0));let Be={};return this.peekStartsWith("(")&&(Be=this.parseParens(!1)),(Pe.length>0||Object.keys(xe).length>0)&&(Be[ze]=new He(Pe,xe)),Be}parseSegment(){const Pe=Re(this.remaining);if(""===Pe&&this.peekStartsWith(";"))throw new t.wOt(4009,!1);return this.capture(Pe),new Xe(St(Pe),this.parseMatrixParams())}parseMatrixParams(){const Pe={};for(;this.consumeOptional(";");)this.parseParam(Pe);return Pe}parseParam(Pe){const xe=function gt(ve){const Pe=ve.match(Ne);return Pe?Pe[0]:""}(this.remaining);if(!xe)return;this.capture(xe);let Be="";if(this.consumeOptional("=")){const ft=Re(this.remaining);ft&&(Be=ft,this.capture(Be))}Pe[St(xe)]=St(Be)}parseQueryParam(Pe){const xe=function Fe(ve){const Pe=ve.match($e);return Pe?Pe[0]:""}(this.remaining);if(!xe)return;this.capture(xe);let Be="";if(this.consumeOptional("=")){const qt=function et(ve){const Pe=ve.match(Ge);return Pe?Pe[0]:""}(this.remaining);qt&&(Be=qt,this.capture(Be))}const ft=dt(xe),Ot=dt(Be);if(Pe.hasOwnProperty(ft)){let qt=Pe[ft];Array.isArray(qt)||(qt=[qt],Pe[ft]=qt),qt.push(Ot)}else Pe[ft]=Ot}parseParens(Pe){const xe={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){const Be=Re(this.remaining),ft=this.remaining[Be.length];if("/"!==ft&&")"!==ft&&";"!==ft)throw new t.wOt(4010,!1);let Ot;Be.indexOf(":")>-1?(Ot=Be.slice(0,Be.indexOf(":")),this.capture(Ot),this.capture(":")):Pe&&(Ot=ze);const qt=this.parseChildren();xe[Ot]=1===Object.keys(qt).length?qt[ze]:new He([],qt),this.consumeOptional("//")}return xe}peekStartsWith(Pe){return this.remaining.startsWith(Pe)}consumeOptional(Pe){return!!this.peekStartsWith(Pe)&&(this.remaining=this.remaining.substring(Pe.length),!0)}capture(Pe){if(!this.consumeOptional(Pe))throw new t.wOt(4011,!1)}}function Tt(ve){return ve.segments.length>0?new He([],{[ze]:ve}):ve}function mi(ve){const Pe={};for(const[Be,ft]of Object.entries(ve.children)){const Ot=mi(ft);if(Be===ze&&0===Ot.segments.length&&Ot.hasChildren())for(const[qt,Mi]of Object.entries(Ot.children))Pe[qt]=Mi;else(Ot.segments.length>0||Ot.hasChildren())&&(Pe[Be]=Ot)}return function Kt(ve){if(1===ve.numberOfChildren&&ve.children[ze]){const Pe=ve.children[ze];return new He(ve.segments.concat(Pe.segments),Pe.children)}return ve}(new He(ve.segments,Pe))}function Pt(ve){return ve instanceof Ie}function di(ve){let Pe;const ft=Tt(function xe(Ot){const qt={};for(const vi of Ot.children){const on=xe(vi);qt[vi.outlet]=on}const Mi=new He(Ot.url,qt);return Ot===ve&&(Pe=Mi),Mi}(ve.root));return Pe??ft}function fi(ve,Pe,xe,Be){let ft=ve;for(;ft.parent;)ft=ft.parent;if(0===Pe.length)return Li(ft,ft,ft,xe,Be);const Ot=function Mt(ve){if("string"==typeof ve[0]&&1===ve.length&&"/"===ve[0])return new Qt(!0,0,ve);let Pe=0,xe=!1;const Be=ve.reduce((ft,Ot,qt)=>{if("object"==typeof Ot&&null!=Ot){if(Ot.outlets){const Mi={};return Object.entries(Ot.outlets).forEach(([vi,on])=>{Mi[vi]="string"==typeof on?on.split("/"):on}),[...ft,{outlets:Mi}]}if(Ot.segmentPath)return[...ft,Ot.segmentPath]}return"string"!=typeof Ot?[...ft,Ot]:0===qt?(Ot.split("/").forEach((Mi,vi)=>{0==vi&&"."===Mi||(0==vi&&""===Mi?xe=!0:".."===Mi?Pe++:""!=Mi&&ft.push(Mi))}),ft):[...ft,Ot]},[]);return new Qt(xe,Pe,Be)}(Pe);if(Ot.toRoot())return Li(ft,ft,new He([],{}),xe,Be);const qt=function ct(ve,Pe,xe){if(ve.isAbsolute)return new it(Pe,!0,0);if(!xe)return new it(Pe,!1,NaN);if(null===xe.parent)return new it(xe,!0,0);const Be=vn(ve.commands[0])?0:1;return function wt(ve,Pe,xe){let Be=ve,ft=Pe,Ot=xe;for(;Ot>ft;){if(Ot-=ft,Be=Be.parent,!Be)throw new t.wOt(4005,!1);ft=Be.segments.length}return new it(Be,!1,ft-Ot)}(xe,xe.segments.length-1+Be,ve.numberOfDoubleDots)}(Ot,ft,ve),Mi=qt.processChildren?Si(qt.segmentGroup,qt.index,Ot.commands):xi(qt.segmentGroup,qt.index,Ot.commands);return Li(ft,qt.segmentGroup,Mi,xe,Be)}function vn(ve){return"object"==typeof ve&&null!=ve&&!ve.outlets&&!ve.segmentPath}function Qi(ve){return"object"==typeof ve&&null!=ve&&ve.outlets}function Li(ve,Pe,xe,Be,ft){let qt,Ot={};Be&&Object.entries(Be).forEach(([vi,on])=>{Ot[vi]=Array.isArray(on)?on.map(Sn=>`${Sn}`):`${on}`}),qt=ve===Pe?xe:Zi(ve,Pe,xe);const Mi=Tt(mi(qt));return new Ie(Mi,Ot,ft)}function Zi(ve,Pe,xe){const Be={};return Object.entries(ve.children).forEach(([ft,Ot])=>{Be[ft]=Ot===Pe?xe:Zi(Ot,Pe,xe)}),new He(ve.segments,Be)}class Qt{constructor(Pe,xe,Be){if(this.isAbsolute=Pe,this.numberOfDoubleDots=xe,this.commands=Be,Pe&&Be.length>0&&vn(Be[0]))throw new t.wOt(4003,!1);const ft=Be.find(Qi);if(ft&&ft!==mt(Be))throw new t.wOt(4004,!1)}toRoot(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]}}class it{constructor(Pe,xe,Be){this.segmentGroup=Pe,this.processChildren=xe,this.index=Be}}function xi(ve,Pe,xe){if(ve??=new He([],{}),0===ve.segments.length&&ve.hasChildren())return Si(ve,Pe,xe);const Be=function zi(ve,Pe,xe){let Be=0,ft=Pe;const Ot={match:!1,pathIndex:0,commandIndex:0};for(;ft=xe.length)return Ot;const qt=ve.segments[ft],Mi=xe[Be];if(Qi(Mi))break;const vi=`${Mi}`,on=Be0&&void 0===vi)break;if(vi&&on&&"object"==typeof on&&void 0===on.outlets){if(!Zt(vi,on,qt))return Ot;Be+=2}else{if(!Zt(vi,{},qt))return Ot;Be++}ft++}return{match:!0,pathIndex:ft,commandIndex:Be}}(ve,Pe,xe),ft=xe.slice(Be.commandIndex);if(Be.match&&Be.pathIndexOt!==ze)&&ve.children[ze]&&1===ve.numberOfChildren&&0===ve.children[ze].segments.length){const Ot=Si(ve.children[ze],Pe,xe);return new He(ve.segments,Ot.children)}return Object.entries(Be).forEach(([Ot,qt])=>{"string"==typeof qt&&(qt=[qt]),null!==qt&&(ft[Ot]=xi(ve.children[Ot],Pe,qt))}),Object.entries(ve.children).forEach(([Ot,qt])=>{void 0===Be[Ot]&&(ft[Ot]=qt)}),new He(ve.segments,ft)}}function en(ve,Pe,xe){const Be=ve.segments.slice(0,Pe);let ft=0;for(;ft{"string"==typeof Be&&(Be=[Be]),null!==Be&&(Pe[xe]=en(new He([],{}),0,Be))}),Pe}function fn(ve){const Pe={};return Object.entries(ve).forEach(([xe,Be])=>Pe[xe]=`${Be}`),Pe}function Zt(ve,Pe,xe){return ve==xe.path&&ce(Pe,xe.parameters)}const bt="imperative";var re=function(ve){return ve[ve.NavigationStart=0]="NavigationStart",ve[ve.NavigationEnd=1]="NavigationEnd",ve[ve.NavigationCancel=2]="NavigationCancel",ve[ve.NavigationError=3]="NavigationError",ve[ve.RoutesRecognized=4]="RoutesRecognized",ve[ve.ResolveStart=5]="ResolveStart",ve[ve.ResolveEnd=6]="ResolveEnd",ve[ve.GuardsCheckStart=7]="GuardsCheckStart",ve[ve.GuardsCheckEnd=8]="GuardsCheckEnd",ve[ve.RouteConfigLoadStart=9]="RouteConfigLoadStart",ve[ve.RouteConfigLoadEnd=10]="RouteConfigLoadEnd",ve[ve.ChildActivationStart=11]="ChildActivationStart",ve[ve.ChildActivationEnd=12]="ChildActivationEnd",ve[ve.ActivationStart=13]="ActivationStart",ve[ve.ActivationEnd=14]="ActivationEnd",ve[ve.Scroll=15]="Scroll",ve[ve.NavigationSkipped=16]="NavigationSkipped",ve}(re||{});class je{constructor(Pe,xe){this.id=Pe,this.url=xe}}class Ce extends je{constructor(Pe,xe,Be="imperative",ft=null){super(Pe,xe),this.type=re.NavigationStart,this.navigationTrigger=Be,this.restoredState=ft}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class ot extends je{constructor(Pe,xe,Be){super(Pe,xe),this.urlAfterRedirects=Be,this.type=re.NavigationEnd}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}var ut=function(ve){return ve[ve.Redirect=0]="Redirect",ve[ve.SupersededByNewNavigation=1]="SupersededByNewNavigation",ve[ve.NoDataFromResolver=2]="NoDataFromResolver",ve[ve.GuardRejected=3]="GuardRejected",ve}(ut||{}),ii=function(ve){return ve[ve.IgnoredSameUrlNavigation=0]="IgnoredSameUrlNavigation",ve[ve.IgnoredByUrlHandlingStrategy=1]="IgnoredByUrlHandlingStrategy",ve}(ii||{});class si extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.reason=Be,this.code=ft,this.type=re.NavigationCancel}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class Pi extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.reason=Be,this.code=ft,this.type=re.NavigationSkipped}}class mn extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.error=Be,this.target=ft,this.type=re.NavigationError}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class Fn extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.type=re.RoutesRecognized}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class $n extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.type=re.GuardsCheckStart}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Yn extends je{constructor(Pe,xe,Be,ft,Ot){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.shouldActivate=Ot,this.type=re.GuardsCheckEnd}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class Qn extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.type=re.ResolveStart}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class rr extends je{constructor(Pe,xe,Be,ft){super(Pe,xe),this.urlAfterRedirects=Be,this.state=ft,this.type=re.ResolveEnd}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class Rn{constructor(Pe){this.route=Pe,this.type=re.RouteConfigLoadStart}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class _i{constructor(Pe){this.route=Pe,this.type=re.RouteConfigLoadEnd}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class Oi{constructor(Pe){this.snapshot=Pe,this.type=re.ChildActivationStart}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class jt{constructor(Pe){this.snapshot=Pe,this.type=re.ChildActivationEnd}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Ci{constructor(Pe){this.snapshot=Pe,this.type=re.ActivationStart}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class hi{constructor(Pe){this.snapshot=Pe,this.type=re.ActivationEnd}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class yi{constructor(Pe,xe,Be){this.routerEvent=Pe,this.position=xe,this.anchor=Be,this.type=re.Scroll}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}class Vi{}class ji{constructor(Pe,xe){this.url=Pe,this.navigationBehaviorOptions=xe}}class ar{constructor(Pe){this.injector=Pe,this.outlet=null,this.route=null,this.children=new sr(this.injector),this.attachRef=null}}let sr=(()=>{class ve{constructor(xe){this.parentInjector=xe,this.contexts=new Map}onChildOutletCreated(xe,Be){const ft=this.getOrCreateContext(xe);ft.outlet=Be,this.contexts.set(xe,ft)}onChildOutletDestroyed(xe){const Be=this.getContext(xe);Be&&(Be.outlet=null,Be.attachRef=null)}onOutletDeactivated(){const xe=this.contexts;return this.contexts=new Map,xe}onOutletReAttached(xe){this.contexts=xe}getOrCreateContext(xe){let Be=this.getContext(xe);return Be||(Be=new ar(this.parentInjector),this.contexts.set(xe,Be)),Be}getContext(xe){return this.contexts.get(xe)||null}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.KVO(t.uvJ))};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();class nr{constructor(Pe){this._root=Pe}get root(){return this._root.value}parent(Pe){const xe=this.pathFromRoot(Pe);return xe.length>1?xe[xe.length-2]:null}children(Pe){const xe=or(Pe,this._root);return xe?xe.children.map(Be=>Be.value):[]}firstChild(Pe){const xe=or(Pe,this._root);return xe&&xe.children.length>0?xe.children[0].value:null}siblings(Pe){const xe=Xr(Pe,this._root);return xe.length<2?[]:xe[xe.length-2].children.map(ft=>ft.value).filter(ft=>ft!==Pe)}pathFromRoot(Pe){return Xr(Pe,this._root).map(xe=>xe.value)}}function or(ve,Pe){if(ve===Pe.value)return Pe;for(const xe of Pe.children){const Be=or(ve,xe);if(Be)return Be}return null}function Xr(ve,Pe){if(ve===Pe.value)return[Pe];for(const xe of Pe.children){const Be=Xr(ve,xe);if(Be.length)return Be.unshift(Pe),Be}return[]}class Sr{constructor(Pe,xe){this.value=Pe,this.children=xe}toString(){return`TreeNode(${this.value})`}}function zr(ve){const Pe={};return ve&&ve.children.forEach(xe=>Pe[xe.value.outlet]=xe),Pe}class Ho extends nr{constructor(Pe,xe){super(Pe),this.snapshot=xe,ho(this,Pe)}toString(){return this.snapshot.toString()}}function xo(ve){const Pe=function is(ve){const Ot=new Ea([],{},{},"",{},ze,ve,null,{});return new no("",new Sr(Ot,[]))}(ve),xe=new x.t([new Xe("",{})]),Be=new x.t({}),ft=new x.t({}),Ot=new x.t({}),qt=new x.t(""),Mi=new Rr(xe,Be,Ot,qt,ft,ze,ve,Pe.root);return Mi.snapshot=Pe.root,new Ho(new Sr(Mi,[]),Pe)}class Rr{constructor(Pe,xe,Be,ft,Ot,qt,Mi,vi){this.urlSubject=Pe,this.paramsSubject=xe,this.queryParamsSubject=Be,this.fragmentSubject=ft,this.dataSubject=Ot,this.outlet=qt,this.component=Mi,this._futureSnapshot=vi,this.title=this.dataSubject?.pipe((0,Q.T)(on=>on[qe]))??(0,l.of)(void 0),this.url=Pe,this.params=xe,this.queryParams=Be,this.fragment=ft,this.data=Ot}get routeConfig(){return this._futureSnapshot.routeConfig}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap??=this.params.pipe((0,Q.T)(Pe=>se(Pe))),this._paramMap}get queryParamMap(){return this._queryParamMap??=this.queryParams.pipe((0,Q.T)(Pe=>se(Pe))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function Ma(ve,Pe,xe="emptyOnly"){let Be;const{routeConfig:ft}=ve;return Be=null===Pe||"always"!==xe&&""!==ft?.path&&(Pe.component||Pe.routeConfig?.loadComponent)?{params:{...ve.params},data:{...ve.data},resolve:{...ve.data,...ve._resolvedData??{}}}:{params:{...Pe.params,...ve.params},data:{...Pe.data,...ve.data},resolve:{...ve.data,...Pe.data,...ft?.data,...ve._resolvedData}},ft&&ro(ft)&&(Be.resolve[qe]=ft.title),Be}class Ea{get title(){return this.data?.[qe]}constructor(Pe,xe,Be,ft,Ot,qt,Mi,vi,on){this.url=Pe,this.params=xe,this.queryParams=Be,this.fragment=ft,this.data=Ot,this.outlet=qt,this.component=Mi,this.routeConfig=vi,this._resolve=on}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap??=se(this.params),this._paramMap}get queryParamMap(){return this._queryParamMap??=se(this.queryParams),this._queryParamMap}toString(){return`Route(url:'${this.url.map(Be=>Be.toString()).join("/")}', path:'${this.routeConfig?this.routeConfig.path:""}')`}}class no extends nr{constructor(Pe,xe){super(xe),this.url=Pe,ho(this,xe)}toString(){return xr(this._root)}}function ho(ve,Pe){Pe.value._routerState=ve,Pe.children.forEach(xe=>ho(ve,xe))}function xr(ve){const Pe=ve.children.length>0?` { ${ve.children.map(xr).join(", ")} } `:"";return`${ve.value}${Pe}`}function Sa(ve){if(ve.snapshot){const Pe=ve.snapshot,xe=ve._futureSnapshot;ve.snapshot=xe,ce(Pe.queryParams,xe.queryParams)||ve.queryParamsSubject.next(xe.queryParams),Pe.fragment!==xe.fragment&&ve.fragmentSubject.next(xe.fragment),ce(Pe.params,xe.params)||ve.paramsSubject.next(xe.params),function me(ve,Pe){if(ve.length!==Pe.length)return!1;for(let xe=0;xece(xe.parameters,Pe[Be].parameters))}(ve.url,Pe.url);return xe&&!(!ve.parent!=!Pe.parent)&&(!ve.parent||zn(ve.parent,Pe.parent))}function ro(ve){return"string"==typeof ve.title||null===ve.title}let hn=(()=>{class ve{constructor(){this.activated=null,this._activatedRoute=null,this.name=ze,this.activateEvents=new t.bkB,this.deactivateEvents=new t.bkB,this.attachEvents=new t.bkB,this.detachEvents=new t.bkB,this.parentContexts=(0,t.WQX)(sr),this.location=(0,t.WQX)(t.c1b),this.changeDetector=(0,t.WQX)(t.gRc),this.inputBinder=(0,t.WQX)(Ta,{optional:!0}),this.supportsBindingToComponentInputs=!0}get activatedComponentRef(){return this.activated}ngOnChanges(xe){if(xe.name){const{firstChange:Be,previousValue:ft}=xe.name;if(Be)return;this.isTrackedInParentContexts(ft)&&(this.deactivate(),this.parentContexts.onChildOutletDestroyed(ft)),this.initializeOutletWithName()}}ngOnDestroy(){this.isTrackedInParentContexts(this.name)&&this.parentContexts.onChildOutletDestroyed(this.name),this.inputBinder?.unsubscribeFromRouteData(this)}isTrackedInParentContexts(xe){return this.parentContexts.getContext(xe)?.outlet===this}ngOnInit(){this.initializeOutletWithName()}initializeOutletWithName(){if(this.parentContexts.onChildOutletCreated(this.name,this),this.activated)return;const xe=this.parentContexts.getContext(this.name);xe?.route&&(xe.attachRef?this.attach(xe.attachRef,xe.route):this.activateWith(xe.route,xe.injector))}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new t.wOt(4012,!1);return this.activated.instance}get activatedRoute(){if(!this.activated)throw new t.wOt(4012,!1);return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new t.wOt(4012,!1);this.location.detach();const xe=this.activated;return this.activated=null,this._activatedRoute=null,this.detachEvents.emit(xe.instance),xe}attach(xe,Be){this.activated=xe,this._activatedRoute=Be,this.location.insert(xe.hostView),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.attachEvents.emit(xe.instance)}deactivate(){if(this.activated){const xe=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(xe)}}activateWith(xe,Be){if(this.isActivated)throw new t.wOt(4013,!1);this._activatedRoute=xe;const ft=this.location,qt=xe.snapshot.component,Mi=this.parentContexts.getOrCreateContext(this.name).children,vi=new Yr(xe,Mi,ft.injector);this.activated=ft.createComponent(qt,{index:ft.length,injector:vi,environmentInjector:Be}),this.changeDetector.markForCheck(),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.activateEvents.emit(this.activated.instance)}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275dir=t.FsC({type:ve,selectors:[["router-outlet"]],inputs:{name:"name"},outputs:{activateEvents:"activate",deactivateEvents:"deactivate",attachEvents:"attach",detachEvents:"detach"},exportAs:["outlet"],standalone:!0,features:[t.OA$]})}return ve})();class Yr{__ngOutletInjector(Pe){return new Yr(this.route,this.childContexts,Pe)}constructor(Pe,xe,Be){this.route=Pe,this.childContexts=xe,this.parent=Be}get(Pe,xe){return Pe===Rr?this.route:Pe===sr?this.childContexts:this.parent.get(Pe,xe)}}const Ta=new t.nKC("");let Co=(()=>{class ve{constructor(){this.outletDataSubscriptions=new Map}bindActivatedRouteToOutletComponent(xe){this.unsubscribeFromRouteData(xe),this.subscribeToRouteData(xe)}unsubscribeFromRouteData(xe){this.outletDataSubscriptions.get(xe)?.unsubscribe(),this.outletDataSubscriptions.delete(xe)}subscribeToRouteData(xe){const{activatedRoute:Be}=xe,ft=(0,f.z)([Be.queryParams,Be.params,Be.data]).pipe((0,J.n)(([Ot,qt,Mi],vi)=>(Mi={...Ot,...qt,...Mi},0===vi?(0,l.of)(Mi):Promise.resolve(Mi)))).subscribe(Ot=>{if(!xe.isActivated||!xe.activatedComponentRef||xe.activatedRoute!==Be||null===Be.component)return void this.unsubscribeFromRouteData(xe);const qt=(0,t.HJs)(Be.component);if(qt)for(const{templateName:Mi}of qt.inputs)xe.activatedComponentRef.setInput(Mi,Ot[Mi]);else this.unsubscribeFromRouteData(xe)});this.outletDataSubscriptions.set(xe,ft)}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac})}return ve})();function zo(ve,Pe,xe){if(xe&&ve.shouldReuseRoute(Pe.value,xe.value.snapshot)){const Be=xe.value;Be._futureSnapshot=Pe.value;const ft=function da(ve,Pe,xe){return Pe.children.map(Be=>{for(const ft of xe.children)if(ve.shouldReuseRoute(Be.value,ft.value.snapshot))return zo(ve,Be,ft);return zo(ve,Be)})}(ve,Pe,xe);return new Sr(Be,ft)}{if(ve.shouldAttach(Pe.value)){const Ot=ve.retrieve(Pe.value);if(null!==Ot){const qt=Ot.route;return qt.value._futureSnapshot=Pe.value,qt.children=Pe.children.map(Mi=>zo(ve,Mi)),qt}}const Be=function ao(ve){return new Rr(new x.t(ve.url),new x.t(ve.params),new x.t(ve.queryParams),new x.t(ve.fragment),new x.t(ve.data),ve.outlet,ve.component,ve)}(Pe.value),ft=Pe.children.map(Ot=>zo(ve,Ot));return new Sr(Be,ft)}}class Oa{constructor(Pe,xe){this.redirectTo=Pe,this.navigationBehaviorOptions=xe}}const ns="ngNavigationCancelingError";function Fa(ve,Pe){const{redirectTo:xe,navigationBehaviorOptions:Be}=Pt(Pe)?{redirectTo:Pe,navigationBehaviorOptions:void 0}:Pe,ft=Ro(!1,ut.Redirect);return ft.url=xe,ft.navigationBehaviorOptions=Be,ft}function Ro(ve,Pe){const xe=new Error(`NavigationCancelingError: ${ve||""}`);return xe[ns]=!0,xe.cancellationCode=Pe,xe}function ha(ve){return!!ve&&ve[ns]}let Br=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275cmp=t.VBU({type:ve,selectors:[["ng-component"]],standalone:!0,features:[t.aNF],decls:1,vars:0,template:function(Be,ft){1&Be&&t.nrm(0,"router-outlet")},dependencies:[hn],encapsulation:2})}return ve})();function Za(ve){const Pe=ve.children&&ve.children.map(Za),xe=Pe?{...ve,children:Pe}:{...ve};return!xe.component&&!xe.loadComponent&&(Pe||xe.loadChildren)&&xe.outlet&&xe.outlet!==ze&&(xe.component=Br),xe}function Lr(ve){return ve.outlet||ze}function Oo(ve){if(!ve)return null;if(ve.routeConfig?._injector)return ve.routeConfig._injector;for(let Pe=ve.parent;Pe;Pe=Pe.parent){const xe=Pe.routeConfig;if(xe?._loadedInjector)return xe._loadedInjector;if(xe?._injector)return xe._injector}return null}class Da{constructor(Pe,xe,Be,ft,Ot){this.routeReuseStrategy=Pe,this.futureState=xe,this.currState=Be,this.forwardEvent=ft,this.inputBindingEnabled=Ot}activate(Pe){const xe=this.futureState._root,Be=this.currState?this.currState._root:null;this.deactivateChildRoutes(xe,Be,Pe),Sa(this.futureState.root),this.activateChildRoutes(xe,Be,Pe)}deactivateChildRoutes(Pe,xe,Be){const ft=zr(xe);Pe.children.forEach(Ot=>{const qt=Ot.value.outlet;this.deactivateRoutes(Ot,ft[qt],Be),delete ft[qt]}),Object.values(ft).forEach(Ot=>{this.deactivateRouteAndItsChildren(Ot,Be)})}deactivateRoutes(Pe,xe,Be){const ft=Pe.value,Ot=xe?xe.value:null;if(ft===Ot)if(ft.component){const qt=Be.getContext(ft.outlet);qt&&this.deactivateChildRoutes(Pe,xe,qt.children)}else this.deactivateChildRoutes(Pe,xe,Be);else Ot&&this.deactivateRouteAndItsChildren(xe,Be)}deactivateRouteAndItsChildren(Pe,xe){Pe.value.component&&this.routeReuseStrategy.shouldDetach(Pe.value.snapshot)?this.detachAndStoreRouteSubtree(Pe,xe):this.deactivateRouteAndOutlet(Pe,xe)}detachAndStoreRouteSubtree(Pe,xe){const Be=xe.getContext(Pe.value.outlet),ft=Be&&Pe.value.component?Be.children:xe,Ot=zr(Pe);for(const qt of Object.values(Ot))this.deactivateRouteAndItsChildren(qt,ft);if(Be&&Be.outlet){const qt=Be.outlet.detach(),Mi=Be.children.onOutletDeactivated();this.routeReuseStrategy.store(Pe.value.snapshot,{componentRef:qt,route:Pe,contexts:Mi})}}deactivateRouteAndOutlet(Pe,xe){const Be=xe.getContext(Pe.value.outlet),ft=Be&&Pe.value.component?Be.children:xe,Ot=zr(Pe);for(const qt of Object.values(Ot))this.deactivateRouteAndItsChildren(qt,ft);Be&&(Be.outlet&&(Be.outlet.deactivate(),Be.children.onOutletDeactivated()),Be.attachRef=null,Be.route=null)}activateChildRoutes(Pe,xe,Be){const ft=zr(xe);Pe.children.forEach(Ot=>{this.activateRoutes(Ot,ft[Ot.value.outlet],Be),this.forwardEvent(new hi(Ot.value.snapshot))}),Pe.children.length&&this.forwardEvent(new jt(Pe.value.snapshot))}activateRoutes(Pe,xe,Be){const ft=Pe.value,Ot=xe?xe.value:null;if(Sa(ft),ft===Ot)if(ft.component){const qt=Be.getOrCreateContext(ft.outlet);this.activateChildRoutes(Pe,xe,qt.children)}else this.activateChildRoutes(Pe,xe,Be);else if(ft.component){const qt=Be.getOrCreateContext(ft.outlet);if(this.routeReuseStrategy.shouldAttach(ft.snapshot)){const Mi=this.routeReuseStrategy.retrieve(ft.snapshot);this.routeReuseStrategy.store(ft.snapshot,null),qt.children.onOutletReAttached(Mi.contexts),qt.attachRef=Mi.componentRef,qt.route=Mi.route.value,qt.outlet&&qt.outlet.attach(Mi.componentRef,Mi.route.value),Sa(Mi.route.value),this.activateChildRoutes(Pe,null,qt.children)}else{const Mi=Oo(ft.snapshot);qt.attachRef=null,qt.route=ft,qt.injector=Mi??qt.injector,qt.outlet&&qt.outlet.activateWith(ft,qt.injector),this.activateChildRoutes(Pe,null,qt.children)}}else this.activateChildRoutes(Pe,null,Be)}}class Go{constructor(Pe){this.path=Pe,this.route=this.path[this.path.length-1]}}class Wa{constructor(Pe,xe){this.component=Pe,this.route=xe}}function as(ve,Pe,xe){const Be=ve._root;return xt(Be,Pe?Pe._root:null,xe,[Be.value])}function ri(ve,Pe){const xe=Symbol(),Be=Pe.get(ve,xe);return Be===xe?"function"!=typeof ve||(0,t.LfX)(ve)?Pe.get(ve):ve:Be}function xt(ve,Pe,xe,Be,ft={canDeactivateChecks:[],canActivateChecks:[]}){const Ot=zr(Pe);return ve.children.forEach(qt=>{(function ai(ve,Pe,xe,Be,ft={canDeactivateChecks:[],canActivateChecks:[]}){const Ot=ve.value,qt=Pe?Pe.value:null,Mi=xe?xe.getContext(ve.value.outlet):null;if(qt&&Ot.routeConfig===qt.routeConfig){const vi=function Ei(ve,Pe,xe){if("function"==typeof xe)return xe(ve,Pe);switch(xe){case"pathParamsChange":return!Ye(ve.url,Pe.url);case"pathParamsOrQueryParamsChange":return!Ye(ve.url,Pe.url)||!ce(ve.queryParams,Pe.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!zn(ve,Pe)||!ce(ve.queryParams,Pe.queryParams);default:return!zn(ve,Pe)}}(qt,Ot,Ot.routeConfig.runGuardsAndResolvers);vi?ft.canActivateChecks.push(new Go(Be)):(Ot.data=qt.data,Ot._resolvedData=qt._resolvedData),xt(ve,Pe,Ot.component?Mi?Mi.children:null:xe,Be,ft),vi&&Mi&&Mi.outlet&&Mi.outlet.isActivated&&ft.canDeactivateChecks.push(new Wa(Mi.outlet.component,qt))}else qt&&Ki(Pe,Mi,ft),ft.canActivateChecks.push(new Go(Be)),xt(ve,null,Ot.component?Mi?Mi.children:null:xe,Be,ft)})(qt,Ot[qt.value.outlet],xe,Be.concat([qt.value]),ft),delete Ot[qt.value.outlet]}),Object.entries(Ot).forEach(([qt,Mi])=>Ki(Mi,xe.getContext(qt),ft)),ft}function Ki(ve,Pe,xe){const Be=zr(ve),ft=ve.value;Object.entries(Be).forEach(([Ot,qt])=>{Ki(qt,ft.component?Pe?Pe.children.getContext(Ot):null:Pe,xe)}),xe.canDeactivateChecks.push(new Wa(ft.component&&Pe&&Pe.outlet&&Pe.outlet.isActivated?Pe.outlet.component:null,ft))}function tr(ve){return"function"==typeof ve}function oa(ve){return ve instanceof I.G||"EmptyError"===ve?.name}const Ri=Symbol("INITIAL_VALUE");function lt(){return(0,J.n)(ve=>(0,f.z)(ve.map(Pe=>Pe.pipe((0,ee.s)(1),(0,ie.Z)(Ri)))).pipe((0,Q.T)(Pe=>{for(const xe of Pe)if(!0!==xe){if(xe===Ri)return Ri;if(!1===xe||ht(xe))return xe}return!0}),(0,ge.p)(Pe=>Pe!==Ri),(0,ee.s)(1)))}function ht(ve){return Pt(ve)||ve instanceof Oa}function dc(ve){return(0,y.F)((0,de.M)(Pe=>{if("boolean"!=typeof Pe)throw Fa(0,Pe)}),(0,Q.T)(Pe=>!0===Pe))}class jo{constructor(Pe){this.segmentGroup=Pe||null}}class Wo extends Error{constructor(Pe){super(),this.urlTree=Pe}}function fo(ve){return(0,F.$)(new jo(ve))}class ua{constructor(Pe,xe){this.urlSerializer=Pe,this.urlTree=xe}lineralizeSegments(Pe,xe){let Be=[],ft=xe.root;for(;;){if(Be=Be.concat(ft.segments),0===ft.numberOfChildren)return(0,l.of)(Be);if(ft.numberOfChildren>1||!ft.children[ze])return(0,F.$)(new t.wOt(4e3,!1));ft=ft.children[ze]}}applyRedirectCommands(Pe,xe,Be,ft,Ot){if("string"!=typeof xe){const Mi=xe,{queryParams:vi,fragment:on,routeConfig:Sn,url:Jn,outlet:_r,params:ys,data:Nr,title:Ka}=ft,ls=(0,t.N4e)(Ot,()=>Mi({params:ys,data:Nr,queryParams:vi,fragment:on,routeConfig:Sn,url:Jn,outlet:_r,title:Ka}));if(ls instanceof Ie)throw new Wo(ls);xe=ls}const qt=this.applyRedirectCreateUrlTree(xe,this.urlSerializer.parse(xe),Pe,Be);if("/"===xe[0])throw new Wo(qt);return qt}applyRedirectCreateUrlTree(Pe,xe,Be,ft){const Ot=this.createSegmentGroup(Pe,xe.root,Be,ft);return new Ie(Ot,this.createQueryParams(xe.queryParams,this.urlTree.queryParams),xe.fragment)}createQueryParams(Pe,xe){const Be={};return Object.entries(Pe).forEach(([ft,Ot])=>{if("string"==typeof Ot&&":"===Ot[0]){const Mi=Ot.substring(1);Be[ft]=xe[Mi]}else Be[ft]=Ot}),Be}createSegmentGroup(Pe,xe,Be,ft){const Ot=this.createSegments(Pe,xe.segments,Be,ft);let qt={};return Object.entries(xe.children).forEach(([Mi,vi])=>{qt[Mi]=this.createSegmentGroup(Pe,vi,Be,ft)}),new He(Ot,qt)}createSegments(Pe,xe,Be,ft){return xe.map(Ot=>":"===Ot.path[0]?this.findPosParam(Pe,Ot,ft):this.findOrReturn(Ot,Be))}findPosParam(Pe,xe,Be){const ft=Be[xe.path.substring(1)];if(!ft)throw new t.wOt(4001,!1);return ft}findOrReturn(Pe,xe){let Be=0;for(const ft of xe){if(ft.path===Pe.path)return xe.splice(Be),ft;Be++}return Pe}}const so={matched:!1,consumedSegments:[],remainingSegments:[],parameters:{},positionalParamSegments:{}};function Ir(ve,Pe,xe,Be,ft){const Ot=Aa(ve,Pe,xe);return Ot.matched?(Be=function Ua(ve,Pe){return ve.providers&&!ve._injector&&(ve._injector=(0,t.Ol2)(ve.providers,Pe,`Route: ${ve.path}`)),ve._injector??Pe}(Pe,Be),function hc(ve,Pe,xe,Be){const ft=Pe.canMatch;if(!ft||0===ft.length)return(0,l.of)(!0);const Ot=ft.map(qt=>{const Mi=ri(qt,ve);return _e(function Ms(ve){return ve&&tr(ve.canMatch)}(Mi)?Mi.canMatch(Pe,xe):(0,t.N4e)(ve,()=>Mi(Pe,xe)))});return(0,l.of)(Ot).pipe(lt(),dc())}(Be,Pe,xe).pipe((0,Q.T)(qt=>!0===qt?Ot:{...so}))):(0,l.of)(Ot)}function Aa(ve,Pe,xe){if("**"===Pe.path)return function $s(ve){return{matched:!0,parameters:ve.length>0?mt(ve).parameters:{},consumedSegments:ve,remainingSegments:[],positionalParamSegments:{}}}(xe);if(""===Pe.path)return"full"===Pe.pathMatch&&(ve.hasChildren()||xe.length>0)?{...so}:{matched:!0,consumedSegments:[],remainingSegments:xe,parameters:{},positionalParamSegments:{}};const ft=(Pe.matcher||X)(xe,ve,Pe);if(!ft)return{...so};const Ot={};Object.entries(ft.posParams??{}).forEach(([Mi,vi])=>{Ot[Mi]=vi.path});const qt=ft.consumed.length>0?{...Ot,...ft.consumed[ft.consumed.length-1].parameters}:Ot;return{matched:!0,consumedSegments:ft.consumed,remainingSegments:xe.slice(ft.consumed.length),parameters:qt,positionalParamSegments:ft.posParams??{}}}function dn(ve,Pe,xe,Be){return xe.length>0&&function Ss(ve,Pe,xe){return xe.some(Be=>_s(ve,Pe,Be)&&Lr(Be)!==ze)}(ve,xe,Be)?{segmentGroup:new He(Pe,uc(Be,new He(xe,ve.children))),slicedSegments:[]}:0===xe.length&&function fc(ve,Pe,xe){return xe.some(Be=>_s(ve,Pe,Be))}(ve,xe,Be)?{segmentGroup:new He(ve.segments,Es(ve,xe,Be,ve.children)),slicedSegments:xe}:{segmentGroup:new He(ve.segments,ve.children),slicedSegments:xe}}function Es(ve,Pe,xe,Be){const ft={};for(const Ot of xe)if(_s(ve,Pe,Ot)&&!Be[Lr(Ot)]){const qt=new He([],{});ft[Lr(Ot)]=qt}return{...Be,...ft}}function uc(ve,Pe){const xe={};xe[ze]=Pe;for(const Be of ve)if(""===Be.path&&Lr(Be)!==ze){const ft=new He([],{});xe[Lr(Be)]=ft}return xe}function _s(ve,Pe,xe){return(!(ve.hasChildren()||Pe.length>0)||"full"!==xe.pathMatch)&&""===xe.path}class Ll{}class Qs{constructor(Pe,xe,Be,ft,Ot,qt,Mi){this.injector=Pe,this.configLoader=xe,this.rootComponentType=Be,this.config=ft,this.urlTree=Ot,this.paramsInheritanceStrategy=qt,this.urlSerializer=Mi,this.applyRedirects=new ua(this.urlSerializer,this.urlTree),this.absoluteRedirectCount=0,this.allowRedirects=!0}noMatchError(Pe){return new t.wOt(4002,`'${Pe.segmentGroup}'`)}recognize(){const Pe=dn(this.urlTree.root,[],[],this.config).segmentGroup;return this.match(Pe).pipe((0,Q.T)(({children:xe,rootSnapshot:Be})=>{const ft=new Sr(Be,xe),Ot=new no("",ft),qt=function Xi(ve,Pe,xe=null,Be=null){return fi(di(ve),Pe,xe,Be)}(Be,[],this.urlTree.queryParams,this.urlTree.fragment);return qt.queryParams=this.urlTree.queryParams,Ot.url=this.urlSerializer.serialize(qt),{state:Ot,tree:qt}}))}match(Pe){const xe=new Ea([],Object.freeze({}),Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Object.freeze({}),ze,this.rootComponentType,null,{});return this.processSegmentGroup(this.injector,this.config,Pe,ze,xe).pipe((0,Q.T)(Be=>({children:Be,rootSnapshot:xe})),(0,D.W)(Be=>{if(Be instanceof Wo)return this.urlTree=Be.urlTree,this.match(Be.urlTree.root);throw Be instanceof jo?this.noMatchError(Be):Be}))}processSegmentGroup(Pe,xe,Be,ft,Ot){return 0===Be.segments.length&&Be.hasChildren()?this.processChildren(Pe,xe,Be,Ot):this.processSegment(Pe,xe,Be,Be.segments,ft,!0,Ot).pipe((0,Q.T)(qt=>qt instanceof Sr?[qt]:[]))}processChildren(Pe,xe,Be,ft){const Ot=[];for(const qt of Object.keys(Be.children))"primary"===qt?Ot.unshift(qt):Ot.push(qt);return(0,S.H)(Ot).pipe((0,Te.H)(qt=>{const Mi=Be.children[qt],vi=function _a(ve,Pe){const xe=ve.filter(Be=>Lr(Be)===Pe);return xe.push(...ve.filter(Be=>Lr(Be)!==Pe)),xe}(xe,qt);return this.processSegmentGroup(Pe,vi,Mi,qt,ft)}),(0,n.S)((qt,Mi)=>(qt.push(...Mi),qt)),(0,c.U)(null),function _(ve,Pe){const xe=arguments.length>=2;return Be=>Be.pipe(ve?(0,ge.p)((ft,Ot)=>ve(ft,Ot,Be)):L.D,C(1),xe?(0,c.U)(Pe):(0,k.v)(()=>new I.G))}(),(0,ae.Z)(qt=>{if(null===qt)return fo(Be);const Mi=Eo(qt);return function Zs(ve){ve.sort((Pe,xe)=>Pe.value.outlet===ze?-1:xe.value.outlet===ze?1:Pe.value.outlet.localeCompare(xe.value.outlet))}(Mi),(0,l.of)(Mi)}))}processSegment(Pe,xe,Be,ft,Ot,qt,Mi){return(0,S.H)(xe).pipe((0,Te.H)(vi=>this.processSegmentAgainstRoute(vi._injector??Pe,xe,vi,Be,ft,Ot,qt,Mi).pipe((0,D.W)(on=>{if(on instanceof jo)return(0,l.of)(null);throw on}))),(0,Me.$)(vi=>!!vi),(0,D.W)(vi=>{if(oa(vi))return function vs(ve,Pe,xe){return 0===Pe.length&&!ve.children[xe]}(Be,ft,Ot)?(0,l.of)(new Ll):fo(Be);throw vi}))}processSegmentAgainstRoute(Pe,xe,Be,ft,Ot,qt,Mi,vi){return function kl(ve,Pe,xe,Be){return!!(Lr(ve)===Be||Be!==ze&&_s(Pe,xe,ve))&&Aa(Pe,ve,xe).matched}(Be,ft,Ot,qt)?void 0===Be.redirectTo?this.matchSegmentAgainstRoute(Pe,ft,Be,Ot,qt,vi):this.allowRedirects&&Mi?this.expandSegmentAgainstRouteUsingRedirect(Pe,ft,xe,Be,Ot,qt,vi):fo(ft):fo(ft)}expandSegmentAgainstRouteUsingRedirect(Pe,xe,Be,ft,Ot,qt,Mi){const{matched:vi,parameters:on,consumedSegments:Sn,positionalParamSegments:Jn,remainingSegments:_r}=Aa(xe,ft,Ot);if(!vi)return fo(xe);"string"==typeof ft.redirectTo&&"/"===ft.redirectTo[0]&&(this.absoluteRedirectCount++,this.absoluteRedirectCount>31&&(this.allowRedirects=!1));const ys=new Ea(Ot,on,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Js(ft),Lr(ft),ft.component??ft._loadedComponent??null,ft,bs(ft)),Nr=Ma(ys,Mi,this.paramsInheritanceStrategy);ys.params=Object.freeze(Nr.params),ys.data=Object.freeze(Nr.data);const Ka=this.applyRedirects.applyRedirectCommands(Sn,ft.redirectTo,Jn,ys,Pe);return this.applyRedirects.lineralizeSegments(ft,Ka).pipe((0,ae.Z)(ls=>this.processSegment(Pe,Be,xe,ls.concat(_r),qt,!1,Mi)))}matchSegmentAgainstRoute(Pe,xe,Be,ft,Ot,qt){const Mi=Ir(xe,Be,ft,Pe);return"**"===Be.path&&(xe.children={}),Mi.pipe((0,J.n)(vi=>vi.matched?this.getChildConfig(Pe=Be._injector??Pe,Be,ft).pipe((0,J.n)(({routes:on})=>{const Sn=Be._loadedInjector??Pe,{parameters:Jn,consumedSegments:_r,remainingSegments:ys}=vi,Nr=new Ea(_r,Jn,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Js(Be),Lr(Be),Be.component??Be._loadedComponent??null,Be,bs(Be)),Ka=Ma(Nr,qt,this.paramsInheritanceStrategy);Nr.params=Object.freeze(Ka.params),Nr.data=Object.freeze(Ka.data);const{segmentGroup:ls,slicedSegments:xc}=dn(xe,_r,ys,on);if(0===xc.length&&ls.hasChildren())return this.processChildren(Sn,on,ls,Nr).pipe((0,Q.T)(Ko=>new Sr(Nr,Ko)));if(0===on.length&&0===xc.length)return(0,l.of)(new Sr(Nr,[]));const Pl=Lr(Be)===Ot;return this.processSegment(Sn,on,ls,xc,Pl?ze:Ot,!0,Nr).pipe((0,Q.T)(Ko=>new Sr(Nr,Ko instanceof Sr?[Ko]:[])))})):fo(xe)))}getChildConfig(Pe,xe,Be){return xe.children?(0,l.of)({routes:xe.children,injector:Pe}):xe.loadChildren?void 0!==xe._loadedRoutes?(0,l.of)({routes:xe._loadedRoutes,injector:xe._loadedInjector}):function lc(ve,Pe,xe,Be){const ft=Pe.canLoad;if(void 0===ft||0===ft.length)return(0,l.of)(!0);const Ot=ft.map(qt=>{const Mi=ri(qt,ve);return _e(function Fr(ve){return ve&&tr(ve.canLoad)}(Mi)?Mi.canLoad(Pe,xe):(0,t.N4e)(ve,()=>Mi(Pe,xe)))});return(0,l.of)(Ot).pipe(lt(),dc())}(Pe,xe,Be).pipe((0,ae.Z)(ft=>ft?this.configLoader.loadChildren(Pe,xe).pipe((0,de.M)(Ot=>{xe._loadedRoutes=Ot.routes,xe._loadedInjector=Ot.injector})):function Kr(ve){return(0,F.$)(Ro(!1,ut.GuardRejected))}())):(0,l.of)({routes:[],injector:Pe})}}function Rs(ve){const Pe=ve.value.routeConfig;return Pe&&""===Pe.path}function Eo(ve){const Pe=[],xe=new Set;for(const Be of ve){if(!Rs(Be)){Pe.push(Be);continue}const ft=Pe.find(Ot=>Be.value.routeConfig===Ot.value.routeConfig);void 0!==ft?(ft.children.push(...Be.children),xe.add(ft)):Pe.push(Be)}for(const Be of xe){const ft=Eo(Be.children);Pe.push(new Sr(Be.value,ft))}return Pe.filter(Be=>!xe.has(Be))}function Js(ve){return ve.data||{}}function bs(ve){return ve.resolve||{}}function os(ve){const Pe=ve.children.map(xe=>os(xe)).flat();return[ve,...Pe]}function Rc(ve){return(0,J.n)(Pe=>{const xe=ve(Pe);return xe?(0,S.H)(xe).pipe((0,Q.T)(()=>Pe)):(0,l.of)(Pe)})}let Il=(()=>{class ve{buildTitle(xe){let Be,ft=xe.root;for(;void 0!==ft;)Be=this.getResolvedTitleForRoute(ft)??Be,ft=ft.children.find(Ot=>Ot.outlet===ze);return Be}getResolvedTitleForRoute(xe){return xe.data[qe]}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>(0,t.WQX)(il),providedIn:"root"})}return ve})(),il=(()=>{class ve extends Il{constructor(xe){super(),this.title=xe}updateTitle(xe){const Be=this.buildTitle(xe);void 0!==Be&&this.title.setTitle(Be)}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.KVO(Ee.hE))};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();const ss=new t.nKC("",{providedIn:"root",factory:()=>({})}),Fs=new t.nKC("");let nt=(()=>{class ve{constructor(){this.componentLoaders=new WeakMap,this.childrenLoaders=new WeakMap,this.compiler=(0,t.WQX)(t.Ql9)}loadComponent(xe){if(this.componentLoaders.get(xe))return this.componentLoaders.get(xe);if(xe._loadedComponent)return(0,l.of)(xe._loadedComponent);this.onLoadStartListener&&this.onLoadStartListener(xe);const Be=_e(xe.loadComponent()).pipe((0,Q.T)(Z),(0,de.M)(Ot=>{this.onLoadEndListener&&this.onLoadEndListener(xe),xe._loadedComponent=Ot}),(0,v.j)(()=>{this.componentLoaders.delete(xe)})),ft=new z.G(Be,()=>new W.B).pipe((0,V.B)());return this.componentLoaders.set(xe,ft),ft}loadChildren(xe,Be){if(this.childrenLoaders.get(Be))return this.childrenLoaders.get(Be);if(Be._loadedRoutes)return(0,l.of)({routes:Be._loadedRoutes,injector:Be._loadedInjector});this.onLoadStartListener&&this.onLoadStartListener(Be);const Ot=function Rt(ve,Pe,xe,Be){return _e(ve.loadChildren()).pipe((0,Q.T)(Z),(0,ae.Z)(ft=>ft instanceof t.Co$||Array.isArray(ft)?(0,l.of)(ft):(0,S.H)(Pe.compileModuleAsync(ft))),(0,Q.T)(ft=>{Be&&Be(ve);let Ot,qt,Mi=!1;return Array.isArray(ft)?(qt=ft,!0):(Ot=ft.create(xe).injector,qt=Ot.get(Fs,[],{optional:!0,self:!0}).flat()),{routes:qt.map(Za),injector:Ot}}))}(Be,this.compiler,xe,this.onLoadEndListener).pipe((0,v.j)(()=>{this.childrenLoaders.delete(Be)})),qt=new z.G(Ot,()=>new W.B).pipe((0,V.B)());return this.childrenLoaders.set(Be,qt),qt}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();function Z(ve){return function kt(ve){return ve&&"object"==typeof ve&&"default"in ve}(ve)?ve.default:ve}let Ve=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>(0,t.WQX)(De),providedIn:"root"})}return ve})(),De=(()=>{class ve{shouldProcessUrl(xe){return!0}extract(xe){return xe}merge(xe,Be){return xe}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();const We=new t.nKC(""),Dt=new t.nKC("");function ei(ve,Pe,xe){const Be=ve.get(Dt),ft=ve.get(j.qQ);return ve.get(t.SKi).runOutsideAngular(()=>{if(!ft.startViewTransition||Be.skipNextTransition)return Be.skipNextTransition=!1,new Promise(on=>setTimeout(on));let Ot;const qt=new Promise(on=>{Ot=on}),Mi=ft.startViewTransition(()=>(Ot(),function pi(ve){return new Promise(Pe=>{(0,t.mal)(Pe,{injector:ve})})}(ve))),{onViewTransitionCreated:vi}=Be;return vi&&(0,t.N4e)(ve,()=>vi({transition:Mi,from:Pe,to:xe})),qt})}const Di=new t.nKC("");let an=(()=>{class ve{get hasRequestedNavigation(){return 0!==this.navigationId}constructor(){this.currentNavigation=null,this.currentTransition=null,this.lastSuccessfulNavigation=null,this.events=new W.B,this.transitionAbortSubject=new W.B,this.configLoader=(0,t.WQX)(nt),this.environmentInjector=(0,t.WQX)(t.uvJ),this.urlSerializer=(0,t.WQX)(Yt),this.rootContexts=(0,t.WQX)(sr),this.location=(0,t.WQX)(j.aZ),this.inputBindingEnabled=null!==(0,t.WQX)(Ta,{optional:!0}),this.titleStrategy=(0,t.WQX)(Il),this.options=(0,t.WQX)(ss,{optional:!0})||{},this.paramsInheritanceStrategy=this.options.paramsInheritanceStrategy||"emptyOnly",this.urlHandlingStrategy=(0,t.WQX)(Ve),this.createViewTransition=(0,t.WQX)(We,{optional:!0}),this.navigationErrorHandler=(0,t.WQX)(Di,{optional:!0}),this.navigationId=0,this.afterPreactivation=()=>(0,l.of)(void 0),this.rootComponentType=null,this.configLoader.onLoadEndListener=ft=>this.events.next(new _i(ft)),this.configLoader.onLoadStartListener=ft=>this.events.next(new Rn(ft))}complete(){this.transitions?.complete()}handleNavigationRequest(xe){const Be=++this.navigationId;this.transitions?.next({...this.transitions.value,...xe,id:Be})}setupNavigations(xe,Be,ft){return this.transitions=new x.t({id:0,currentUrlTree:Be,currentRawUrl:Be,extractedUrl:this.urlHandlingStrategy.extract(Be),urlAfterRedirects:this.urlHandlingStrategy.extract(Be),rawUrl:Be,extras:{},resolve:()=>{},reject:()=>{},promise:Promise.resolve(!0),source:bt,restoredState:null,currentSnapshot:ft.snapshot,targetSnapshot:null,currentRouterState:ft,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null}),this.transitions.pipe((0,ge.p)(Ot=>0!==Ot.id),(0,Q.T)(Ot=>({...Ot,extractedUrl:this.urlHandlingStrategy.extract(Ot.rawUrl)})),(0,J.n)(Ot=>{let qt=!1,Mi=!1;return(0,l.of)(Ot).pipe((0,J.n)(vi=>{if(this.navigationId>Ot.id)return this.cancelNavigationTransition(Ot,"",ut.SupersededByNewNavigation),R.w;this.currentTransition=Ot,this.currentNavigation={id:vi.id,initialUrl:vi.rawUrl,extractedUrl:vi.extractedUrl,trigger:vi.source,extras:vi.extras,previousNavigation:this.lastSuccessfulNavigation?{...this.lastSuccessfulNavigation,previousNavigation:null}:null};const on=!xe.navigated||this.isUpdatingInternalState()||this.isUpdatedBrowserUrl();if(!on&&"reload"!==(vi.extras.onSameUrlNavigation??xe.onSameUrlNavigation)){const Jn="";return this.events.next(new Pi(vi.id,this.urlSerializer.serialize(vi.rawUrl),Jn,ii.IgnoredSameUrlNavigation)),vi.resolve(!1),R.w}if(this.urlHandlingStrategy.shouldProcessUrl(vi.rawUrl))return(0,l.of)(vi).pipe((0,J.n)(Jn=>{const _r=this.transitions?.getValue();return this.events.next(new Ce(Jn.id,this.urlSerializer.serialize(Jn.extractedUrl),Jn.source,Jn.restoredState)),_r!==this.transitions?.getValue()?R.w:Promise.resolve(Jn)}),function gc(ve,Pe,xe,Be,ft,Ot){return(0,ae.Z)(qt=>function mc(ve,Pe,xe,Be,ft,Ot,qt="emptyOnly"){return new Qs(ve,Pe,xe,Be,ft,qt,Ot).recognize()}(ve,Pe,xe,Be,qt.extractedUrl,ft,Ot).pipe((0,Q.T)(({state:Mi,tree:vi})=>({...qt,targetSnapshot:Mi,urlAfterRedirects:vi}))))}(this.environmentInjector,this.configLoader,this.rootComponentType,xe.config,this.urlSerializer,this.paramsInheritanceStrategy),(0,de.M)(Jn=>{Ot.targetSnapshot=Jn.targetSnapshot,Ot.urlAfterRedirects=Jn.urlAfterRedirects,this.currentNavigation={...this.currentNavigation,finalUrl:Jn.urlAfterRedirects};const _r=new Fn(Jn.id,this.urlSerializer.serialize(Jn.extractedUrl),this.urlSerializer.serialize(Jn.urlAfterRedirects),Jn.targetSnapshot);this.events.next(_r)}));if(on&&this.urlHandlingStrategy.shouldProcessUrl(vi.currentRawUrl)){const{id:Jn,extractedUrl:_r,source:ys,restoredState:Nr,extras:Ka}=vi,ls=new Ce(Jn,this.urlSerializer.serialize(_r),ys,Nr);this.events.next(ls);const xc=xo(this.rootComponentType).snapshot;return this.currentTransition=Ot={...vi,targetSnapshot:xc,urlAfterRedirects:_r,extras:{...Ka,skipLocationChange:!1,replaceUrl:!1}},this.currentNavigation.finalUrl=_r,(0,l.of)(Ot)}{const Jn="";return this.events.next(new Pi(vi.id,this.urlSerializer.serialize(vi.extractedUrl),Jn,ii.IgnoredByUrlHandlingStrategy)),vi.resolve(!1),R.w}}),(0,de.M)(vi=>{const on=new $n(vi.id,this.urlSerializer.serialize(vi.extractedUrl),this.urlSerializer.serialize(vi.urlAfterRedirects),vi.targetSnapshot);this.events.next(on)}),(0,Q.T)(vi=>(this.currentTransition=Ot={...vi,guards:as(vi.targetSnapshot,vi.currentSnapshot,this.rootContexts)},Ot)),function Ue(ve,Pe){return(0,ae.Z)(xe=>{const{targetSnapshot:Be,currentSnapshot:ft,guards:{canActivateChecks:Ot,canDeactivateChecks:qt}}=xe;return 0===qt.length&&0===Ot.length?(0,l.of)({...xe,guardsResult:!0}):function At(ve,Pe,xe,Be){return(0,S.H)(ve).pipe((0,ae.Z)(ft=>function Xa(ve,Pe,xe,Be,ft){const Ot=Pe&&Pe.routeConfig?Pe.routeConfig.canDeactivate:null;if(!Ot||0===Ot.length)return(0,l.of)(!0);const qt=Ot.map(Mi=>{const vi=Oo(Pe)??ft,on=ri(Mi,vi);return _e(function oo(ve){return ve&&tr(ve.canDeactivate)}(on)?on.canDeactivate(ve,Pe,xe,Be):(0,t.N4e)(vi,()=>on(ve,Pe,xe,Be))).pipe((0,Me.$)())});return(0,l.of)(qt).pipe(lt())}(ft.component,ft.route,xe,Pe,Be)),(0,Me.$)(ft=>!0!==ft,!0))}(qt,Be,ft,ve).pipe((0,ae.Z)(Mi=>Mi&&function Or(ve){return"boolean"==typeof ve}(Mi)?function ni(ve,Pe,xe,Be){return(0,S.H)(Pe).pipe((0,Te.H)(ft=>(0,d.x)(function Zn(ve,Pe){return null!==ve&&Pe&&Pe(new Oi(ve)),(0,l.of)(!0)}(ft.route.parent,Be),function pn(ve,Pe){return null!==ve&&Pe&&Pe(new Ci(ve)),(0,l.of)(!0)}(ft.route,Be),function vr(ve,Pe,xe){const Be=Pe[Pe.length-1],Ot=Pe.slice(0,Pe.length-1).reverse().map(qt=>function Ft(ve){const Pe=ve.routeConfig?ve.routeConfig.canActivateChild:null;return Pe&&0!==Pe.length?{node:ve,guards:Pe}:null}(qt)).filter(qt=>null!==qt).map(qt=>(0,T.v)(()=>{const Mi=qt.guards.map(vi=>{const on=Oo(qt.node)??xe,Sn=ri(vi,on);return _e(function gs(ve){return ve&&tr(ve.canActivateChild)}(Sn)?Sn.canActivateChild(Be,ve):(0,t.N4e)(on,()=>Sn(Be,ve))).pipe((0,Me.$)())});return(0,l.of)(Mi).pipe(lt())}));return(0,l.of)(Ot).pipe(lt())}(ve,ft.path,xe),function Fo(ve,Pe,xe){const Be=Pe.routeConfig?Pe.routeConfig.canActivate:null;if(!Be||0===Be.length)return(0,l.of)(!0);const ft=Be.map(Ot=>(0,T.v)(()=>{const qt=Oo(Pe)??xe,Mi=ri(Ot,qt);return _e(function Mo(ve){return ve&&tr(ve.canActivate)}(Mi)?Mi.canActivate(Pe,ve):(0,t.N4e)(qt,()=>Mi(Pe,ve))).pipe((0,Me.$)())}));return(0,l.of)(ft).pipe(lt())}(ve,ft.route,xe))),(0,Me.$)(ft=>!0!==ft,!0))}(Be,Ot,ve,Pe):(0,l.of)(Mi)),(0,Q.T)(Mi=>({...xe,guardsResult:Mi})))})}(this.environmentInjector,vi=>this.events.next(vi)),(0,de.M)(vi=>{if(Ot.guardsResult=vi.guardsResult,vi.guardsResult&&"boolean"!=typeof vi.guardsResult)throw Fa(0,vi.guardsResult);const on=new Yn(vi.id,this.urlSerializer.serialize(vi.extractedUrl),this.urlSerializer.serialize(vi.urlAfterRedirects),vi.targetSnapshot,!!vi.guardsResult);this.events.next(on)}),(0,ge.p)(vi=>!!vi.guardsResult||(this.cancelNavigationTransition(vi,"",ut.GuardRejected),!1)),Rc(vi=>{if(vi.guards.canActivateChecks.length)return(0,l.of)(vi).pipe((0,de.M)(on=>{const Sn=new Qn(on.id,this.urlSerializer.serialize(on.extractedUrl),this.urlSerializer.serialize(on.urlAfterRedirects),on.targetSnapshot);this.events.next(Sn)}),(0,J.n)(on=>{let Sn=!1;return(0,l.of)(on).pipe(function _c(ve,Pe){return(0,ae.Z)(xe=>{const{targetSnapshot:Be,guards:{canActivateChecks:ft}}=xe;if(!ft.length)return(0,l.of)(xe);const Ot=new Set(ft.map(vi=>vi.route)),qt=new Set;for(const vi of Ot)if(!qt.has(vi))for(const on of os(vi))qt.add(on);let Mi=0;return(0,S.H)(qt).pipe((0,Te.H)(vi=>Ot.has(vi)?function So(ve,Pe,xe,Be){const ft=ve.routeConfig,Ot=ve._resolve;return void 0!==ft?.title&&!ro(ft)&&(Ot[qe]=ft.title),function Os(ve,Pe,xe,Be){const ft=fe(ve);if(0===ft.length)return(0,l.of)({});const Ot={};return(0,S.H)(ft).pipe((0,ae.Z)(qt=>function tl(ve,Pe,xe,Be){const ft=Oo(Pe)??Be,Ot=ri(ve,ft);return _e(Ot.resolve?Ot.resolve(Pe,xe):(0,t.N4e)(ft,()=>Ot(Pe,xe)))}(ve[qt],Pe,xe,Be).pipe((0,Me.$)(),(0,de.M)(Mi=>{if(Mi instanceof Oa)throw Fa(new Nt,Mi);Ot[qt]=Mi}))),C(1),(0,r.u)(Ot),(0,D.W)(qt=>oa(qt)?R.w:(0,F.$)(qt)))}(Ot,ve,Pe,Be).pipe((0,Q.T)(qt=>(ve._resolvedData=qt,ve.data=Ma(ve,ve.parent,xe).resolve,null)))}(vi,Be,ve,Pe):(vi.data=Ma(vi,vi.parent,ve).resolve,(0,l.of)(void 0))),(0,de.M)(()=>Mi++),C(1),(0,ae.Z)(vi=>Mi===qt.size?(0,l.of)(xe):R.w))})}(this.paramsInheritanceStrategy,this.environmentInjector),(0,de.M)({next:()=>Sn=!0,complete:()=>{Sn||this.cancelNavigationTransition(on,"",ut.NoDataFromResolver)}}))}),(0,de.M)(on=>{const Sn=new rr(on.id,this.urlSerializer.serialize(on.extractedUrl),this.urlSerializer.serialize(on.urlAfterRedirects),on.targetSnapshot);this.events.next(Sn)}))}),Rc(vi=>{const on=Sn=>{const Jn=[];Sn.routeConfig?.loadComponent&&!Sn.routeConfig._loadedComponent&&Jn.push(this.configLoader.loadComponent(Sn.routeConfig).pipe((0,de.M)(_r=>{Sn.component=_r}),(0,Q.T)(()=>{})));for(const _r of Sn.children)Jn.push(...on(_r));return Jn};return(0,f.z)(on(vi.targetSnapshot.root)).pipe((0,c.U)(null),(0,ee.s)(1))}),Rc(()=>this.afterPreactivation()),(0,J.n)(()=>{const{currentSnapshot:vi,targetSnapshot:on}=Ot,Sn=this.createViewTransition?.(this.environmentInjector,vi.root,on.root);return Sn?(0,S.H)(Sn).pipe((0,Q.T)(()=>Ot)):(0,l.of)(Ot)}),(0,Q.T)(vi=>{const on=function wo(ve,Pe,xe){const Be=zo(ve,Pe._root,xe?xe._root:void 0);return new Ho(Be,Pe)}(xe.routeReuseStrategy,vi.targetSnapshot,vi.currentRouterState);return this.currentTransition=Ot={...vi,targetRouterState:on},this.currentNavigation.targetRouterState=on,Ot}),(0,de.M)(()=>{this.events.next(new Vi)}),((ve,Pe,xe,Be)=>(0,Q.T)(ft=>(new Da(Pe,ft.targetRouterState,ft.currentRouterState,xe,Be).activate(ve),ft)))(this.rootContexts,xe.routeReuseStrategy,vi=>this.events.next(vi),this.inputBindingEnabled),(0,ee.s)(1),(0,de.M)({next:vi=>{qt=!0,this.lastSuccessfulNavigation=this.currentNavigation,this.events.next(new ot(vi.id,this.urlSerializer.serialize(vi.extractedUrl),this.urlSerializer.serialize(vi.urlAfterRedirects))),this.titleStrategy?.updateTitle(vi.targetRouterState.snapshot),vi.resolve(!0)},complete:()=>{qt=!0}}),(0,N.Q)(this.transitionAbortSubject.pipe((0,de.M)(vi=>{throw vi}))),(0,v.j)(()=>{!qt&&!Mi&&this.cancelNavigationTransition(Ot,"",ut.SupersededByNewNavigation),this.currentTransition?.id===Ot.id&&(this.currentNavigation=null,this.currentTransition=null)}),(0,D.W)(vi=>{if(Mi=!0,ha(vi))this.events.next(new si(Ot.id,this.urlSerializer.serialize(Ot.extractedUrl),vi.message,vi.cancellationCode)),function kr(ve){return ha(ve)&&Pt(ve.url)}(vi)?this.events.next(new ji(vi.url,vi.navigationBehaviorOptions)):Ot.resolve(!1);else{const on=new mn(Ot.id,this.urlSerializer.serialize(Ot.extractedUrl),vi,Ot.targetSnapshot??void 0);try{const Sn=(0,t.N4e)(this.environmentInjector,()=>this.navigationErrorHandler?.(on));if(Sn instanceof Oa){const{message:Jn,cancellationCode:_r}=Fa(0,Sn);this.events.next(new si(Ot.id,this.urlSerializer.serialize(Ot.extractedUrl),Jn,_r)),this.events.next(new ji(Sn.redirectTo,Sn.navigationBehaviorOptions))}else{this.events.next(on);const Jn=xe.errorHandler(vi);Ot.resolve(!!Jn)}}catch(Sn){this.options.resolveNavigationPromiseOnError?Ot.resolve(!1):Ot.reject(Sn)}}return R.w}))}))}cancelNavigationTransition(xe,Be,ft){const Ot=new si(xe.id,this.urlSerializer.serialize(xe.extractedUrl),Be,ft);this.events.next(Ot),xe.resolve(!1)}isUpdatingInternalState(){return this.currentTransition?.extractedUrl.toString()!==this.currentTransition?.currentUrlTree.toString()}isUpdatedBrowserUrl(){return this.urlHandlingStrategy.extract(this.urlSerializer.parse(this.location.path(!0))).toString()!==this.currentTransition?.extractedUrl.toString()&&!this.currentTransition?.extras.skipLocationChange}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();function gn(ve){return ve!==bt}let yn=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>(0,t.WQX)(hr),providedIn:"root"})}return ve})();class Dn{shouldDetach(Pe){return!1}store(Pe,xe){}shouldAttach(Pe){return!1}retrieve(Pe){return null}shouldReuseRoute(Pe,xe){return Pe.routeConfig===xe.routeConfig}}let hr=(()=>{class ve extends Dn{static#e=this.\u0275fac=(()=>{let xe;return function(ft){return(xe||(xe=t.xGo(ve)))(ft||ve)}})();static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})(),ir=(()=>{class ve{static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:()=>(0,t.WQX)(br),providedIn:"root"})}return ve})(),br=(()=>{class ve extends ir{constructor(){super(...arguments),this.location=(0,t.WQX)(j.aZ),this.urlSerializer=(0,t.WQX)(Yt),this.options=(0,t.WQX)(ss,{optional:!0})||{},this.canceledNavigationResolution=this.options.canceledNavigationResolution||"replace",this.urlHandlingStrategy=(0,t.WQX)(Ve),this.urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred",this.currentUrlTree=new Ie,this.rawUrlTree=this.currentUrlTree,this.currentPageId=0,this.lastSuccessfulId=-1,this.routerState=xo(null),this.stateMemento=this.createStateMemento()}getCurrentUrlTree(){return this.currentUrlTree}getRawUrlTree(){return this.rawUrlTree}restoredState(){return this.location.getState()}get browserPageId(){return"computed"!==this.canceledNavigationResolution?this.currentPageId:this.restoredState()?.\u0275routerPageId??this.currentPageId}getRouterState(){return this.routerState}createStateMemento(){return{rawUrlTree:this.rawUrlTree,currentUrlTree:this.currentUrlTree,routerState:this.routerState}}registerNonRouterCurrentEntryChangeListener(xe){return this.location.subscribe(Be=>{"popstate"===Be.type&&xe(Be.url,Be.state)})}handleRouterEvent(xe,Be){if(xe instanceof Ce)this.stateMemento=this.createStateMemento();else if(xe instanceof Pi)this.rawUrlTree=Be.initialUrl;else if(xe instanceof Fn){if("eager"===this.urlUpdateStrategy&&!Be.extras.skipLocationChange){const ft=this.urlHandlingStrategy.merge(Be.finalUrl,Be.initialUrl);this.setBrowserUrl(ft,Be)}}else xe instanceof Vi?(this.currentUrlTree=Be.finalUrl,this.rawUrlTree=this.urlHandlingStrategy.merge(Be.finalUrl,Be.initialUrl),this.routerState=Be.targetRouterState,"deferred"===this.urlUpdateStrategy&&(Be.extras.skipLocationChange||this.setBrowserUrl(this.rawUrlTree,Be))):xe instanceof si&&(xe.code===ut.GuardRejected||xe.code===ut.NoDataFromResolver)?this.restoreHistory(Be):xe instanceof mn?this.restoreHistory(Be,!0):xe instanceof ot&&(this.lastSuccessfulId=xe.id,this.currentPageId=this.browserPageId)}setBrowserUrl(xe,Be){const ft=this.urlSerializer.serialize(xe);if(this.location.isCurrentPathEqualTo(ft)||Be.extras.replaceUrl){const qt={...Be.extras.state,...this.generateNgRouterState(Be.id,this.browserPageId)};this.location.replaceState(ft,"",qt)}else{const Ot={...Be.extras.state,...this.generateNgRouterState(Be.id,this.browserPageId+1)};this.location.go(ft,"",Ot)}}restoreHistory(xe,Be=!1){if("computed"===this.canceledNavigationResolution){const Ot=this.currentPageId-this.browserPageId;0!==Ot?this.location.historyGo(Ot):this.currentUrlTree===xe.finalUrl&&0===Ot&&(this.resetState(xe),this.resetUrlToCurrentUrlTree())}else"replace"===this.canceledNavigationResolution&&(Be&&this.resetState(xe),this.resetUrlToCurrentUrlTree())}resetState(xe){this.routerState=this.stateMemento.routerState,this.currentUrlTree=this.stateMemento.currentUrlTree,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,xe.finalUrl??this.rawUrlTree)}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.rawUrlTree),"",this.generateNgRouterState(this.lastSuccessfulId,this.currentPageId))}generateNgRouterState(xe,Be){return"computed"===this.canceledNavigationResolution?{navigationId:xe,\u0275routerPageId:Be}:{navigationId:xe}}static#e=this.\u0275fac=(()=>{let xe;return function(ft){return(xe||(xe=t.xGo(ve)))(ft||ve)}})();static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();var gr=function(ve){return ve[ve.COMPLETE=0]="COMPLETE",ve[ve.FAILED=1]="FAILED",ve[ve.REDIRECTING=2]="REDIRECTING",ve}(gr||{});function Cr(ve,Pe){ve.events.pipe((0,ge.p)(xe=>xe instanceof ot||xe instanceof si||xe instanceof mn||xe instanceof Pi),(0,Q.T)(xe=>xe instanceof ot||xe instanceof Pi?gr.COMPLETE:xe instanceof si&&(xe.code===ut.Redirect||xe.code===ut.SupersededByNewNavigation)?gr.REDIRECTING:gr.FAILED),(0,ge.p)(xe=>xe!==gr.REDIRECTING),(0,ee.s)(1)).subscribe(()=>{Pe()})}function sa(ve){throw ve}const Hn={paths:"exact",fragment:"ignored",matrixParams:"ignored",queryParams:"exact"},Bi={paths:"subset",fragment:"ignored",matrixParams:"ignored",queryParams:"subset"};let sn=(()=>{class ve{get currentUrlTree(){return this.stateManager.getCurrentUrlTree()}get rawUrlTree(){return this.stateManager.getRawUrlTree()}get events(){return this._events}get routerState(){return this.stateManager.getRouterState()}constructor(){this.disposed=!1,this.console=(0,t.WQX)(t.H3F),this.stateManager=(0,t.WQX)(ir),this.options=(0,t.WQX)(ss,{optional:!0})||{},this.pendingTasks=(0,t.WQX)(t.TgB),this.urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred",this.navigationTransitions=(0,t.WQX)(an),this.urlSerializer=(0,t.WQX)(Yt),this.location=(0,t.WQX)(j.aZ),this.urlHandlingStrategy=(0,t.WQX)(Ve),this._events=new W.B,this.errorHandler=this.options.errorHandler||sa,this.navigated=!1,this.routeReuseStrategy=(0,t.WQX)(yn),this.onSameUrlNavigation=this.options.onSameUrlNavigation||"ignore",this.config=(0,t.WQX)(Fs,{optional:!0})?.flat()??[],this.componentInputBindingEnabled=!!(0,t.WQX)(Ta,{optional:!0}),this.eventsSubscription=new $.yU,this.resetConfig(this.config),this.navigationTransitions.setupNavigations(this,this.currentUrlTree,this.routerState).subscribe({error:xe=>{this.console.warn(xe)}}),this.subscribeToNavigationEvents()}subscribeToNavigationEvents(){const xe=this.navigationTransitions.events.subscribe(Be=>{try{const ft=this.navigationTransitions.currentTransition,Ot=this.navigationTransitions.currentNavigation;if(null!==ft&&null!==Ot)if(this.stateManager.handleRouterEvent(Be,Ot),Be instanceof si&&Be.code!==ut.Redirect&&Be.code!==ut.SupersededByNewNavigation)this.navigated=!0;else if(Be instanceof ot)this.navigated=!0;else if(Be instanceof ji){const qt=Be.navigationBehaviorOptions,Mi=this.urlHandlingStrategy.merge(Be.url,ft.currentRawUrl),vi={info:ft.extras.info,skipLocationChange:ft.extras.skipLocationChange,replaceUrl:ft.extras.replaceUrl||"eager"===this.urlUpdateStrategy||gn(ft.source),...qt};this.scheduleNavigation(Mi,bt,null,vi,{resolve:ft.resolve,reject:ft.reject,promise:ft.promise})}(function $r(ve){return!(ve instanceof Vi||ve instanceof ji)})(Be)&&this._events.next(Be)}catch(ft){this.navigationTransitions.transitionAbortSubject.next(ft)}});this.eventsSubscription.add(xe)}resetRootComponentType(xe){this.routerState.root.component=xe,this.navigationTransitions.rootComponentType=xe}initialNavigation(){this.setUpLocationChangeListener(),this.navigationTransitions.hasRequestedNavigation||this.navigateToSyncWithBrowser(this.location.path(!0),bt,this.stateManager.restoredState())}setUpLocationChangeListener(){this.nonRouterCurrentEntryChangeSubscription??=this.stateManager.registerNonRouterCurrentEntryChangeListener((xe,Be)=>{setTimeout(()=>{this.navigateToSyncWithBrowser(xe,"popstate",Be)},0)})}navigateToSyncWithBrowser(xe,Be,ft){const Ot={replaceUrl:!0},qt=ft?.navigationId?ft:null;if(ft){const vi={...ft};delete vi.navigationId,delete vi.\u0275routerPageId,0!==Object.keys(vi).length&&(Ot.state=vi)}const Mi=this.parseUrl(xe);this.scheduleNavigation(Mi,Be,qt,Ot)}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return this.navigationTransitions.currentNavigation}get lastSuccessfulNavigation(){return this.navigationTransitions.lastSuccessfulNavigation}resetConfig(xe){this.config=xe.map(Za),this.navigated=!1}ngOnDestroy(){this.dispose()}dispose(){this.navigationTransitions.complete(),this.nonRouterCurrentEntryChangeSubscription&&(this.nonRouterCurrentEntryChangeSubscription.unsubscribe(),this.nonRouterCurrentEntryChangeSubscription=void 0),this.disposed=!0,this.eventsSubscription.unsubscribe()}createUrlTree(xe,Be={}){const{relativeTo:ft,queryParams:Ot,fragment:qt,queryParamsHandling:Mi,preserveFragment:vi}=Be,on=vi?this.currentUrlTree.fragment:qt;let Jn,Sn=null;switch(Mi){case"merge":Sn={...this.currentUrlTree.queryParams,...Ot};break;case"preserve":Sn=this.currentUrlTree.queryParams;break;default:Sn=Ot||null}null!==Sn&&(Sn=this.removeEmptyProps(Sn));try{Jn=di(ft?ft.snapshot:this.routerState.snapshot.root)}catch{("string"!=typeof xe[0]||"/"!==xe[0][0])&&(xe=[]),Jn=this.currentUrlTree.root}return fi(Jn,xe,Sn,on??null)}navigateByUrl(xe,Be={skipLocationChange:!1}){const ft=Pt(xe)?xe:this.parseUrl(xe),Ot=this.urlHandlingStrategy.merge(ft,this.rawUrlTree);return this.scheduleNavigation(Ot,bt,null,Be)}navigate(xe,Be={skipLocationChange:!1}){return function fr(ve){for(let Pe=0;Pe(null!=Ot&&(Be[ft]=Ot),Be),{})}scheduleNavigation(xe,Be,ft,Ot,qt){if(this.disposed)return Promise.resolve(!1);let Mi,vi,on;qt?(Mi=qt.resolve,vi=qt.reject,on=qt.promise):on=new Promise((Jn,_r)=>{Mi=Jn,vi=_r});const Sn=this.pendingTasks.add();return Cr(this,()=>{queueMicrotask(()=>this.pendingTasks.remove(Sn))}),this.navigationTransitions.handleNavigationRequest({source:Be,restoredState:ft,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,rawUrl:xe,extras:Ot,resolve:Mi,reject:vi,promise:on,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),on.catch(Jn=>Promise.reject(Jn))}static#e=this.\u0275fac=function(Be){return new(Be||ve)};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})(),fa=(()=>{class ve{constructor(xe,Be,ft,Ot,qt,Mi){this.router=xe,this.route=Be,this.tabIndexAttribute=ft,this.renderer=Ot,this.el=qt,this.locationStrategy=Mi,this.href=null,this.commands=null,this.onChanges=new W.B,this.preserveFragment=!1,this.skipLocationChange=!1,this.replaceUrl=!1;const vi=qt.nativeElement.tagName?.toLowerCase();this.isAnchorElement="a"===vi||"area"===vi,this.isAnchorElement?this.subscription=xe.events.subscribe(on=>{on instanceof ot&&this.updateHref()}):this.setTabIndexIfNotOnNativeEl("0")}setTabIndexIfNotOnNativeEl(xe){null!=this.tabIndexAttribute||this.isAnchorElement||this.applyAttributeValue("tabindex",xe)}ngOnChanges(xe){this.isAnchorElement&&this.updateHref(),this.onChanges.next(this)}set routerLink(xe){null!=xe?(this.commands=Array.isArray(xe)?xe:[xe],this.setTabIndexIfNotOnNativeEl("0")):(this.commands=null,this.setTabIndexIfNotOnNativeEl(null))}onClick(xe,Be,ft,Ot,qt){const Mi=this.urlTree;return!!(null===Mi||this.isAnchorElement&&(0!==xe||Be||ft||Ot||qt||"string"==typeof this.target&&"_self"!=this.target))||(this.router.navigateByUrl(Mi,{skipLocationChange:this.skipLocationChange,replaceUrl:this.replaceUrl,state:this.state,info:this.info}),!this.isAnchorElement)}ngOnDestroy(){this.subscription?.unsubscribe()}updateHref(){const xe=this.urlTree;this.href=null!==xe&&this.locationStrategy?this.locationStrategy?.prepareExternalUrl(this.router.serializeUrl(xe)):null;const Be=null===this.href?null:(0,t.n$t)(this.href,this.el.nativeElement.tagName.toLowerCase(),"href");this.applyAttributeValue("href",Be)}applyAttributeValue(xe,Be){const ft=this.renderer,Ot=this.el.nativeElement;null!==Be?ft.setAttribute(Ot,xe,Be):ft.removeAttribute(Ot,xe)}get urlTree(){return null===this.commands?null:this.router.createUrlTree(this.commands,{relativeTo:void 0!==this.relativeTo?this.relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,queryParamsHandling:this.queryParamsHandling,preserveFragment:this.preserveFragment})}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.rXU(sn),t.rXU(Rr),t.kS0("tabindex"),t.rXU(t.sFG),t.rXU(t.aKT),t.rXU(j.hb))};static#t=this.\u0275dir=t.FsC({type:ve,selectors:[["","routerLink",""]],hostVars:1,hostBindings:function(Be,ft){1&Be&&t.bIt("click",function(qt){return ft.onClick(qt.button,qt.ctrlKey,qt.shiftKey,qt.altKey,qt.metaKey)}),2&Be&&t.BMQ("target",ft.target)},inputs:{target:"target",queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",state:"state",info:"info",relativeTo:"relativeTo",preserveFragment:[2,"preserveFragment","preserveFragment",t.L39],skipLocationChange:[2,"skipLocationChange","skipLocationChange",t.L39],replaceUrl:[2,"replaceUrl","replaceUrl",t.L39],routerLink:"routerLink"},standalone:!0,features:[t.GFd,t.OA$]})}return ve})(),Ya=(()=>{class ve{get isActive(){return this._isActive}constructor(xe,Be,ft,Ot,qt){this.router=xe,this.element=Be,this.renderer=ft,this.cdr=Ot,this.link=qt,this.classes=[],this._isActive=!1,this.routerLinkActiveOptions={exact:!1},this.isActiveChange=new t.bkB,this.routerEventsSubscription=xe.events.subscribe(Mi=>{Mi instanceof ot&&this.update()})}ngAfterContentInit(){(0,l.of)(this.links.changes,(0,l.of)(null)).pipe((0,ne.U)()).subscribe(xe=>{this.update(),this.subscribeToEachLinkOnChanges()})}subscribeToEachLinkOnChanges(){this.linkInputChangesSubscription?.unsubscribe();const xe=[...this.links.toArray(),this.link].filter(Be=>!!Be).map(Be=>Be.onChanges);this.linkInputChangesSubscription=(0,S.H)(xe).pipe((0,ne.U)()).subscribe(Be=>{this._isActive!==this.isLinkActive(this.router)(Be)&&this.update()})}set routerLinkActive(xe){const Be=Array.isArray(xe)?xe:xe.split(" ");this.classes=Be.filter(ft=>!!ft)}ngOnChanges(xe){this.update()}ngOnDestroy(){this.routerEventsSubscription.unsubscribe(),this.linkInputChangesSubscription?.unsubscribe()}update(){!this.links||!this.router.navigated||queueMicrotask(()=>{const xe=this.hasActiveLinks();this.classes.forEach(Be=>{xe?this.renderer.addClass(this.element.nativeElement,Be):this.renderer.removeClass(this.element.nativeElement,Be)}),xe&&void 0!==this.ariaCurrentWhenActive?this.renderer.setAttribute(this.element.nativeElement,"aria-current",this.ariaCurrentWhenActive.toString()):this.renderer.removeAttribute(this.element.nativeElement,"aria-current"),this._isActive!==xe&&(this._isActive=xe,this.cdr.markForCheck(),this.isActiveChange.emit(xe))})}isLinkActive(xe){const Be=function vc(ve){return!!ve.paths}(this.routerLinkActiveOptions)?this.routerLinkActiveOptions:this.routerLinkActiveOptions.exact||!1;return ft=>{const Ot=ft.urlTree;return!!Ot&&xe.isActive(Ot,Be)}}hasActiveLinks(){const xe=this.isLinkActive(this.router);return this.link&&xe(this.link)||this.links.some(xe)}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.rXU(sn),t.rXU(t.aKT),t.rXU(t.sFG),t.rXU(t.gRc),t.rXU(fa,8))};static#t=this.\u0275dir=t.FsC({type:ve,selectors:[["","routerLinkActive",""]],contentQueries:function(Be,ft,Ot){if(1&Be&&t.wni(Ot,fa,5),2&Be){let qt;t.mGM(qt=t.lsd())&&(ft.links=qt)}},inputs:{routerLinkActiveOptions:"routerLinkActiveOptions",ariaCurrentWhenActive:"ariaCurrentWhenActive",routerLinkActive:"routerLinkActive"},outputs:{isActiveChange:"isActiveChange"},exportAs:["routerLinkActive"],standalone:!0,features:[t.OA$]})}return ve})();class Ur{}let Wn=(()=>{class ve{constructor(xe,Be,ft,Ot,qt){this.router=xe,this.injector=ft,this.preloadingStrategy=Ot,this.loader=qt}setUpPreloading(){this.subscription=this.router.events.pipe((0,ge.p)(xe=>xe instanceof ot),(0,Te.H)(()=>this.preload())).subscribe(()=>{})}preload(){return this.processRoutes(this.injector,this.router.config)}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}processRoutes(xe,Be){const ft=[];for(const Ot of Be){Ot.providers&&!Ot._injector&&(Ot._injector=(0,t.Ol2)(Ot.providers,xe,`Route: ${Ot.path}`));const qt=Ot._injector??xe,Mi=Ot._loadedInjector??qt;(Ot.loadChildren&&!Ot._loadedRoutes&&void 0===Ot.canLoad||Ot.loadComponent&&!Ot._loadedComponent)&&ft.push(this.preloadConfig(qt,Ot)),(Ot.children||Ot._loadedRoutes)&&ft.push(this.processRoutes(Mi,Ot.children??Ot._loadedRoutes))}return(0,S.H)(ft).pipe((0,ne.U)())}preloadConfig(xe,Be){return this.preloadingStrategy.preload(Be,()=>{let ft;ft=Be.loadChildren&&void 0===Be.canLoad?this.loader.loadChildren(xe,Be):(0,l.of)(null);const Ot=ft.pipe((0,ae.Z)(qt=>null===qt?(0,l.of)(void 0):(Be._loadedRoutes=qt.routes,Be._loadedInjector=qt.injector,this.processRoutes(qt.injector??xe,qt.routes))));if(Be.loadComponent&&!Be._loadedComponent){const qt=this.loader.loadComponent(Be);return(0,S.H)([Ot,qt]).pipe((0,ne.U)())}return Ot})}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.KVO(sn),t.KVO(t.Ql9),t.KVO(t.uvJ),t.KVO(Ur),t.KVO(nt))};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac,providedIn:"root"})}return ve})();const bc=new t.nKC("");let Rl=(()=>{class ve{constructor(xe,Be,ft,Ot,qt={}){this.urlSerializer=xe,this.transitions=Be,this.viewportScroller=ft,this.zone=Ot,this.options=qt,this.lastId=0,this.lastSource="imperative",this.restoredId=0,this.store={},this.environmentInjector=(0,t.WQX)(t.uvJ),qt.scrollPositionRestoration||="disabled",qt.anchorScrolling||="disabled"}init(){"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration("manual"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.transitions.events.subscribe(xe=>{xe instanceof Ce?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=xe.navigationTrigger,this.restoredId=xe.restoredState?xe.restoredState.navigationId:0):xe instanceof ot?(this.lastId=xe.id,this.scheduleScrollEvent(xe,this.urlSerializer.parse(xe.urlAfterRedirects).fragment)):xe instanceof Pi&&xe.code===ii.IgnoredSameUrlNavigation&&(this.lastSource=void 0,this.restoredId=0,this.scheduleScrollEvent(xe,this.urlSerializer.parse(xe.url).fragment))})}consumeScrollEvents(){return this.transitions.events.subscribe(xe=>{xe instanceof yi&&(xe.position?"top"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0]):"enabled"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(xe.position):xe.anchor&&"enabled"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(xe.anchor):"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0]))})}scheduleScrollEvent(xe,Be){var ft=this;this.zone.runOutsideAngular((0,e.A)(function*(){yield new Promise(Ot=>{setTimeout(()=>{Ot()}),(0,t.mal)(()=>{Ot()},{injector:ft.environmentInjector})}),ft.zone.run(()=>{ft.transitions.events.next(new yi(xe,"popstate"===ft.lastSource?ft.store[ft.restoredId]:null,Be))})}))}ngOnDestroy(){this.routerEventsSubscription?.unsubscribe(),this.scrollEventsSubscription?.unsubscribe()}static#e=this.\u0275fac=function(Be){t.QTQ()};static#t=this.\u0275prov=t.jDH({token:ve,factory:ve.\u0275fac})}return ve})();function mo(ve,Pe){return{\u0275kind:ve,\u0275providers:Pe}}function Gi(){const ve=(0,t.WQX)(t.zZn);return Pe=>{const xe=ve.get(t.o8S);if(Pe!==xe.components[0])return;const Be=ve.get(sn),ft=ve.get(Fc);1===ve.get(Ps)&&Be.initialNavigation(),ve.get(Xo,null,t.$GK.Optional)?.setUpPreloading(),ve.get(bc,null,t.$GK.Optional)?.init(),Be.resetRootComponentType(xe.componentTypes[0]),ft.closed||(ft.next(),ft.complete(),ft.unsubscribe())}}const Fc=new t.nKC("",{factory:()=>new W.B}),Ps=new t.nKC("",{providedIn:"root",factory:()=>1}),Xo=new t.nKC("");function Ol(ve){return mo(0,[{provide:Xo,useExisting:Wn},{provide:Ur,useExisting:ve}])}function ba(ve){return mo(9,[{provide:We,useValue:ei},{provide:Dt,useValue:{skipNextTransition:!!ve?.skipInitialTransition,...ve}}])}const Vs=new t.nKC("ROUTER_FORROOT_GUARD"),Ja=[j.aZ,{provide:Yt,useClass:Nt},sn,sr,{provide:Rr,useFactory:function Qr(ve){return ve.routerState.root},deps:[sn]},nt,[]];let En=(()=>{class ve{constructor(xe){}static forRoot(xe,Be){return{ngModule:ve,providers:[Ja,[],{provide:Fs,multi:!0,useValue:xe},{provide:Vs,useFactory:$i,deps:[[sn,new t.Xx1,new t.kdw]]},{provide:ss,useValue:Be||{}},Be?.useHash?{provide:j.hb,useClass:j.fw}:{provide:j.hb,useClass:j.Sm},{provide:bc,useFactory:()=>{const ve=(0,t.WQX)(j.Xr),Pe=(0,t.WQX)(t.SKi),xe=(0,t.WQX)(ss),Be=(0,t.WQX)(an),ft=(0,t.WQX)(Yt);return xe.scrollOffset&&ve.setOffset(xe.scrollOffset),new Rl(ft,Be,ve,Pe,xe)}},Be?.preloadingStrategy?Ol(Be.preloadingStrategy).\u0275providers:[],Be?.initialNavigation?mr(Be):[],Be?.bindToComponentInputs?mo(8,[Co,{provide:Ta,useExisting:Co}]).\u0275providers:[],Be?.enableViewTransitions?ba().\u0275providers:[],[{provide:ca,useFactory:Gi},{provide:t.iLQ,multi:!0,useExisting:ca}]]}}static forChild(xe){return{ngModule:ve,providers:[{provide:Fs,multi:!0,useValue:xe}]}}static#e=this.\u0275fac=function(Be){return new(Be||ve)(t.KVO(Vs,8))};static#t=this.\u0275mod=t.$C({type:ve});static#i=this.\u0275inj=t.G2t({})}return ve})();function $i(ve){return"guarded"}function mr(ve){return["disabled"===ve.initialNavigation?mo(3,[{provide:t.hnV,multi:!0,useFactory:()=>{const Pe=(0,t.WQX)(sn);return()=>{Pe.setUpLocationChangeListener()}}},{provide:Ps,useValue:2}]).\u0275providers:[],"enabledBlocking"===ve.initialNavigation?mo(2,[{provide:Ps,useValue:0},{provide:t.hnV,multi:!0,deps:[t.zZn],useFactory:Pe=>{const xe=Pe.get(j.hj,Promise.resolve());return()=>xe.then(()=>new Promise(Be=>{const ft=Pe.get(sn),Ot=Pe.get(Fc);Cr(ft,()=>{Be(!0)}),Pe.get(an).afterPreactivation=()=>(Be(!0),Ot.closed?(0,l.of)(void 0):Ot),ft.initialNavigation()}))}}]).\u0275providers:[]]}const ca=new t.nKC("")},60:(Qe,te,g)=>{"use strict";g.d(te,{aY:()=>Os,dX:()=>Fs});var e=g(4438),t=g(177);function w(nt,Rt){var kt=Object.keys(nt);if(Object.getOwnPropertySymbols){var Z=Object.getOwnPropertySymbols(nt);Rt&&(Z=Z.filter(function(Ve){return Object.getOwnPropertyDescriptor(nt,Ve).enumerable})),kt.push.apply(kt,Z)}return kt}function S(nt){for(var Rt=1;Rtnt.length)&&(Rt=nt.length);for(var kt=0,Z=new Array(Rt);kt0;)Rt+=$e[62*Math.random()|0];return Rt}function Ge(nt){for(var Rt=[],kt=(nt||[]).length>>>0;kt--;)Rt[kt]=nt[kt];return Rt}function et(nt){return nt.classList?Ge(nt.classList):(nt.getAttribute("class")||"").split(" ").filter(function(Rt){return Rt})}function st(nt){return"".concat(nt).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function mi(nt){return Object.keys(nt||{}).reduce(function(Rt,kt){return Rt+"".concat(kt,": ").concat(nt[kt].trim(),";")},"")}function Kt(nt){return nt.size!==Ne.size||nt.x!==Ne.x||nt.y!==Ne.y||nt.rotate!==Ne.rotate||nt.flipX||nt.flipY}var di=':root, :host {\n --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Solid";\n --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Regular";\n --fa-font-light: normal 300 1em/1 "Font Awesome 6 Light";\n --fa-font-thin: normal 100 1em/1 "Font Awesome 6 Thin";\n --fa-font-duotone: normal 900 1em/1 "Font Awesome 6 Duotone";\n --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 6 Sharp";\n --fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 6 Sharp";\n --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 6 Sharp";\n --fa-font-sharp-thin: normal 100 1em/1 "Font Awesome 6 Sharp";\n --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";\n}\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n overflow: visible;\n box-sizing: content-box;\n}\n\n.svg-inline--fa {\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285705em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: var(--fa-pull-margin, 0.3em);\n width: auto;\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n top: 0.25em;\n}\n.svg-inline--fa.fa-fw {\n width: var(--fa-fw-width, 1.25em);\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n transform: scale(var(--fa-counter-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n transform: scale(var(--fa-layers-scale, 0.25));\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: 0.625em;\n line-height: 0.1em;\n vertical-align: 0.225em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n line-height: 0.0833333337em;\n vertical-align: 0.125em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n line-height: 0.0714285718em;\n vertical-align: 0.0535714295em;\n}\n\n.fa-lg {\n font-size: 1.25em;\n line-height: 0.05em;\n vertical-align: -0.075em;\n}\n\n.fa-xl {\n font-size: 1.5em;\n line-height: 0.0416666682em;\n vertical-align: -0.125em;\n}\n\n.fa-2xl {\n font-size: 2em;\n line-height: 0.03125em;\n vertical-align: -0.1875em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: var(--fa-li-margin, 2.5em);\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: calc(var(--fa-li-width, 2em) * -1);\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.08em);\n padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);\n}\n\n.fa-pull-left {\n float: left;\n margin-right: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right {\n float: right;\n margin-left: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n -webkit-animation-name: fa-beat;\n animation-name: fa-beat;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n -webkit-animation-name: fa-bounce;\n animation-name: fa-bounce;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n -webkit-animation-name: fa-fade;\n animation-name: fa-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n -webkit-animation-name: fa-beat-fade;\n animation-name: fa-beat-fade;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n -webkit-animation-name: fa-flip;\n animation-name: fa-flip;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n -webkit-animation-name: fa-shake;\n animation-name: fa-shake;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-delay: var(--fa-animation-delay, 0s);\n animation-delay: var(--fa-animation-delay, 0s);\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 2s);\n animation-duration: var(--fa-animation-duration, 2s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n -webkit-animation-name: fa-spin;\n animation-name: fa-spin;\n -webkit-animation-direction: var(--fa-animation-direction, normal);\n animation-direction: var(--fa-animation-direction, normal);\n -webkit-animation-duration: var(--fa-animation-duration, 1s);\n animation-duration: var(--fa-animation-duration, 1s);\n -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n.fa-bounce,\n.fa-fade,\n.fa-beat-fade,\n.fa-flip,\n.fa-pulse,\n.fa-shake,\n.fa-spin,\n.fa-spin-pulse {\n -webkit-animation-delay: -1ms;\n animation-delay: -1ms;\n -webkit-animation-duration: 1ms;\n animation-duration: 1ms;\n -webkit-animation-iteration-count: 1;\n animation-iteration-count: 1;\n -webkit-transition-delay: 0s;\n transition-delay: 0s;\n -webkit-transition-duration: 0s;\n transition-duration: 0s;\n }\n}\n@-webkit-keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 45% {\n -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@-webkit-keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-bounce {\n 0% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n -webkit-transform: scale(1, 1) translateY(0);\n transform: scale(1, 1) translateY(0);\n }\n}\n@-webkit-keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@-webkit-keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n -webkit-transform: scale(1);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@-webkit-keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-flip {\n 50% {\n -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@-webkit-keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@keyframes fa-shake {\n 0% {\n -webkit-transform: rotate(-15deg);\n transform: rotate(-15deg);\n }\n 4% {\n -webkit-transform: rotate(15deg);\n transform: rotate(15deg);\n }\n 8%, 24% {\n -webkit-transform: rotate(-18deg);\n transform: rotate(-18deg);\n }\n 12%, 28% {\n -webkit-transform: rotate(18deg);\n transform: rotate(18deg);\n }\n 16% {\n -webkit-transform: rotate(-22deg);\n transform: rotate(-22deg);\n }\n 20% {\n -webkit-transform: rotate(22deg);\n transform: rotate(22deg);\n }\n 32% {\n -webkit-transform: rotate(-12deg);\n transform: rotate(-12deg);\n }\n 36% {\n -webkit-transform: rotate(12deg);\n transform: rotate(12deg);\n }\n 40%, 100% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n -webkit-transform: rotate(var(--fa-rotate-angle, 0));\n transform: rotate(var(--fa-rotate-angle, 0));\n}\n\n.fa-stack {\n display: inline-block;\n vertical-align: middle;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n z-index: var(--fa-stack-z-index, auto);\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.sr-only,\n.fa-sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n color: var(--fa-inverse, #fff);\n}';function fi(){var nt=se,Rt=X,kt=we.cssPrefix,Z=we.replacementClass,Ve=di;if(kt!==nt||Z!==Rt){var De=new RegExp("\\.".concat(nt,"\\-"),"g"),We=new RegExp("\\--".concat(nt,"\\-"),"g"),Dt=new RegExp("\\.".concat(Rt),"g");Ve=Ve.replace(De,".".concat(kt,"-")).replace(We,"--".concat(kt,"-")).replace(Dt,".".concat(Z))}return Ve}var vn=!1;function Qi(){we.autoAddCss&&!vn&&(function gt(nt){if(nt&&r){var Rt=C.createElement("style");Rt.setAttribute("type","text/css"),Rt.innerHTML=nt;for(var kt=C.head.childNodes,Z=null,Ve=kt.length-1;Ve>-1;Ve--){var De=kt[Ve],We=(De.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(We)>-1&&(Z=De)}C.head.insertBefore(Rt,Z)}}(fi()),vn=!0)}var Li={mixout:function(){return{dom:{css:fi,insertCss:Qi}}},hooks:function(){return{beforeDOMElementCreation:function(){Qi()},beforeI2svg:function(){Qi()}}}},Zi=h||{};Zi[qe]||(Zi[qe]={}),Zi[qe].styles||(Zi[qe].styles={}),Zi[qe].hooks||(Zi[qe].hooks={}),Zi[qe].shims||(Zi[qe].shims=[]);var Qt=Zi[qe],Mt=[],ct=!1;function Ut(nt){var Rt=nt.tag,kt=nt.attributes,Z=void 0===kt?{}:kt,Ve=nt.children,De=void 0===Ve?[]:Ve;return"string"==typeof nt?st(nt):"<".concat(Rt," ").concat(function Tt(nt){return Object.keys(nt||{}).reduce(function(Rt,kt){return Rt+"".concat(kt,'="').concat(st(nt[kt]),'" ')},"").trim()}(Z),">").concat(De.map(Ut).join(""),"")}function xi(nt,Rt,kt){if(nt&&nt[Rt]&&nt[Rt][kt])return{prefix:Rt,iconName:kt,icon:nt[Rt][kt]}}r&&((ct=(C.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(C.readyState))||C.addEventListener("DOMContentLoaded",function nt(){C.removeEventListener("DOMContentLoaded",nt),ct=1,Mt.map(function(Rt){return Rt()})}));var zi=function(Rt,kt,Z,Ve){var ei,pi,Di,De=Object.keys(Rt),We=De.length,Dt=void 0!==Ve?function(Rt,kt){return function(Z,Ve,De,We){return Rt.call(kt,Z,Ve,De,We)}}(kt,Ve):kt;for(void 0===Z?(ei=1,Di=Rt[De[0]]):(ei=0,Di=Z);ei=55296&&Ve<=56319&&kt2&&void 0!==arguments[2]?arguments[2]:{}).skipHooks,Ve=void 0!==Z&&Z,De=Zt(Rt);"function"!=typeof Qt.hooks.addPack||Ve?Qt.styles[nt]=S(S({},Qt.styles[nt]||{}),De):Qt.hooks.addPack(nt,Zt(Rt)),"fas"===nt&&bt("fa",Rt)}var je,Ce,ot,ut=Qt.styles,ii=Qt.shims,si=(T(je={},_t,Object.values(Ie[_t])),T(je,at,Object.values(Ie[at])),je),Pi=null,mn={},Fn={},$n={},Yn={},Qn={},rr=(T(Ce={},_t,Object.keys(ye[_t])),T(Ce,at,Object.keys(ye[at])),Ce);var Oi=function(){var Rt=function(De){return zi(ut,function(We,Dt,ei){return We[ei]=zi(Dt,De,{}),We},{})};mn=Rt(function(Ve,De,We){return De[3]&&(Ve[De[3]]=We),De[2]&&De[2].filter(function(ei){return"number"==typeof ei}).forEach(function(ei){Ve[ei.toString(16)]=We}),Ve}),Fn=Rt(function(Ve,De,We){return Ve[We]=We,De[2]&&De[2].filter(function(ei){return"string"==typeof ei}).forEach(function(ei){Ve[ei]=We}),Ve}),Qn=Rt(function(Ve,De,We){var Dt=De[2];return Ve[We]=We,Dt.forEach(function(ei){Ve[ei]=We}),Ve});var kt="far"in ut||we.autoFetchSvg,Z=zi(ii,function(Ve,De){var We=De[0],Dt=De[1],ei=De[2];return"far"===Dt&&!kt&&(Dt="fas"),"string"==typeof We&&(Ve.names[We]={prefix:Dt,iconName:ei}),"number"==typeof We&&(Ve.unicodes[We.toString(16)]={prefix:Dt,iconName:ei}),Ve},{names:{},unicodes:{}});$n=Z.names,Yn=Z.unicodes,Pi=ar(we.styleDefault,{family:we.familyDefault})};function jt(nt,Rt){return(mn[nt]||{})[Rt]}function hi(nt,Rt){return(Qn[nt]||{})[Rt]}function yi(nt){return $n[nt]||{prefix:null,iconName:null}}function ji(){return Pi}(function q(nt){he.push(nt)})(function(nt){Pi=ar(nt.styleDefault,{family:we.familyDefault})}),Oi();var rn=function(){return{prefix:null,iconName:null,rest:[]}};function ar(nt){var kt=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).family,Z=void 0===kt?_t:kt;return ue[Z][nt]||ue[Z][ye[Z][nt]]||(nt in Qt.styles?nt:null)||null}var sr=(T(ot={},_t,Object.keys(Ie[_t])),T(ot,at,Object.keys(Ie[at])),ot);function nr(nt){var Rt,Z=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).skipLookups,Ve=void 0!==Z&&Z,De=(T(Rt={},_t,"".concat(we.cssPrefix,"-").concat(_t)),T(Rt,at,"".concat(we.cssPrefix,"-").concat(at)),Rt),We=null,Dt=_t;(nt.includes(De[_t])||nt.some(function(pi){return sr[_t].includes(pi)}))&&(Dt=_t),(nt.includes(De[at])||nt.some(function(pi){return sr[at].includes(pi)}))&&(Dt=at);var ei=nt.reduce(function(pi,Di){var an=function _i(nt,Rt){var kt=Rt.split("-"),Z=kt[0],Ve=kt.slice(1).join("-");return Z!==nt||""===Ve||function Rn(nt){return~tt.indexOf(nt)}(Ve)?null:Ve}(we.cssPrefix,Di);if(ut[Di]?(Di=si[Dt].includes(Di)?He[Dt][Di]:Di,We=Di,pi.prefix=Di):rr[Dt].indexOf(Di)>-1?(We=Di,pi.prefix=ar(Di,{family:Dt})):an?pi.iconName=an:Di!==we.replacementClass&&Di!==De[_t]&&Di!==De[at]&&pi.rest.push(Di),!Ve&&pi.prefix&&pi.iconName){var gn="fa"===We?yi(pi.iconName):{},yn=hi(pi.prefix,pi.iconName);gn.prefix&&(We=null),pi.iconName=gn.iconName||yn||pi.iconName,pi.prefix=gn.prefix||pi.prefix,"far"===pi.prefix&&!ut.far&&ut.fas&&!we.autoFetchSvg&&(pi.prefix="fas")}return pi},rn());return(nt.includes("fa-brands")||nt.includes("fab"))&&(ei.prefix="fab"),(nt.includes("fa-duotone")||nt.includes("fad"))&&(ei.prefix="fad"),!ei.prefix&&Dt===at&&(ut.fass||we.autoFetchSvg)&&(ei.prefix="fass",ei.iconName=hi(ei.prefix,ei.iconName)||ei.iconName),("fa"===ei.prefix||"fa"===We)&&(ei.prefix=ji()||"fas"),ei}var or=function(){function nt(){(function f(nt,Rt){if(!(nt instanceof Rt))throw new TypeError("Cannot call a class as a function")})(this,nt),this.definitions={}}return function d(nt,Rt,kt){Rt&&I(nt.prototype,Rt),kt&&I(nt,kt),Object.defineProperty(nt,"prototype",{writable:!1})}(nt,[{key:"add",value:function(){for(var kt=this,Z=arguments.length,Ve=new Array(Z),De=0;De0&&Di.forEach(function(an){"string"==typeof an&&(kt[Dt][an]=pi)}),kt[Dt][ei]=pi}),kt}}]),nt}(),Xr=[],Sr={},zr={},Ho=Object.keys(zr);function is(nt,Rt){for(var kt=arguments.length,Z=new Array(kt>2?kt-2:0),Ve=2;Ve1?Rt-1:0),Z=1;Z0&&void 0!==arguments[0]?arguments[0]:{};return r?(Rr("beforeI2svg",Rt),Ma("pseudoElements2svg",Rt),Ma("i2svg",Rt)):Promise.reject("Operation requires a DOM of some kind.")},watch:function(){var Rt=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},kt=Rt.autoReplaceSvgRoot;!1===we.autoReplaceSvg&&(we.autoReplaceSvg=!0),we.observeMutations=!0,function wt(nt){r&&(ct?setTimeout(nt,0):Mt.push(nt))}(function(){ro({autoReplaceSvgRoot:kt}),Rr("watch",Rt)})}},zn={noAuto:function(){we.autoReplaceSvg=!1,we.observeMutations=!1,Rr("noAuto")},config:we,dom:xr,parse:{icon:function(Rt){if(null===Rt)return null;if("object"===l(Rt)&&Rt.prefix&&Rt.iconName)return{prefix:Rt.prefix,iconName:hi(Rt.prefix,Rt.iconName)||Rt.iconName};if(Array.isArray(Rt)&&2===Rt.length){var kt=0===Rt[1].indexOf("fa-")?Rt[1].slice(3):Rt[1],Z=ar(Rt[0]);return{prefix:Z,iconName:hi(Z,kt)||kt}}if("string"==typeof Rt&&(Rt.indexOf("".concat(we.cssPrefix,"-"))>-1||Rt.match(Xe))){var Ve=nr(Rt.split(" "),{skipLookups:!0});return{prefix:Ve.prefix||ji(),iconName:hi(Ve.prefix,Ve.iconName)||Ve.iconName}}if("string"==typeof Rt){var De=ji();return{prefix:De,iconName:hi(De,Rt)||Rt}}}},library:no,findIconDefinition:Ea,toHtml:Ut},ro=function(){var kt=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}).autoReplaceSvgRoot,Z=void 0===kt?C:kt;(Object.keys(Qt.styles).length>0||we.autoFetchSvg)&&r&&we.autoReplaceSvg&&zn.dom.i2svg({node:Z})};function hn(nt,Rt){return Object.defineProperty(nt,"abstract",{get:Rt}),Object.defineProperty(nt,"html",{get:function(){return nt.abstract.map(function(Z){return Ut(Z)})}}),Object.defineProperty(nt,"node",{get:function(){if(r){var Z=C.createElement("div");return Z.innerHTML=nt.html,Z.children}}}),nt}function Co(nt){var Rt=nt.icons,kt=Rt.main,Z=Rt.mask,Ve=nt.prefix,De=nt.iconName,We=nt.transform,Dt=nt.symbol,ei=nt.title,pi=nt.maskId,Di=nt.titleId,an=nt.extra,gn=nt.watchable,yn=void 0!==gn&&gn,Dn=Z.found?Z:kt,hr=Dn.width,ir=Dn.height,br="fak"===Ve,gr=[we.replacementClass,De?"".concat(we.cssPrefix,"-").concat(De):""].filter(function($r){return-1===an.classes.indexOf($r)}).filter(function($r){return""!==$r||!!$r}).concat(an.classes).join(" "),Cr={children:[],attributes:S(S({},an.attributes),{},{"data-prefix":Ve,"data-icon":De,class:gr,role:an.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(hr," ").concat(ir)})},sa=br&&!~an.classes.indexOf("fa-fw")?{width:"".concat(hr/ir*16*.0625,"em")}:{};yn&&(Cr.attributes[me]=""),ei&&(Cr.children.push({tag:"title",attributes:{id:Cr.attributes["aria-labelledby"]||"title-".concat(Di||Fe())},children:[ei]}),delete Cr.attributes.title);var Hn=S(S({},Cr),{},{prefix:Ve,iconName:De,main:kt,mask:Z,maskId:pi,transform:We,symbol:Dt,styles:S(S({},sa),an.styles)}),Bi=Z.found&&kt.found?Ma("generateAbstractMask",Hn)||{children:[],attributes:{}}:Ma("generateAbstractIcon",Hn)||{children:[],attributes:{}},fr=Bi.attributes;return Hn.children=Bi.children,Hn.attributes=fr,Dt?function Ta(nt){var kt=nt.iconName,Z=nt.children,Ve=nt.attributes,De=nt.symbol,We=!0===De?"".concat(nt.prefix,"-").concat(we.cssPrefix,"-").concat(kt):De;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:S(S({},Ve),{},{id:We}),children:Z}]}]}(Hn):function Yr(nt){var Rt=nt.children,kt=nt.main,Z=nt.mask,Ve=nt.attributes,De=nt.styles,We=nt.transform;if(Kt(We)&&kt.found&&!Z.found){var pi={x:kt.width/kt.height/2,y:.5};Ve.style=mi(S(S({},De),{},{"transform-origin":"".concat(pi.x+We.x/16,"em ").concat(pi.y+We.y/16,"em")}))}return[{tag:"svg",attributes:Ve,children:Rt}]}(Hn)}function wo(nt){var Rt=nt.content,kt=nt.width,Z=nt.height,Ve=nt.transform,De=nt.title,We=nt.extra,Dt=nt.watchable,ei=void 0!==Dt&&Dt,pi=S(S(S({},We.attributes),De?{title:De}:{}),{},{class:We.classes.join(" ")});ei&&(pi[me]="");var Di=S({},We.styles);Kt(Ve)&&(Di.transform=function Xi(nt){var Rt=nt.transform,kt=nt.width,Ve=nt.height,De=void 0===Ve?16:Ve,We=nt.startCentered,Dt=void 0!==We&&We,ei="";return ei+=Dt&&v?"translate(".concat(Rt.x/16-(void 0===kt?16:kt)/2,"em, ").concat(Rt.y/16-De/2,"em) "):Dt?"translate(calc(-50% + ".concat(Rt.x/16,"em), calc(-50% + ").concat(Rt.y/16,"em)) "):"translate(".concat(Rt.x/16,"em, ").concat(Rt.y/16,"em) "),(ei+="scale(".concat(Rt.size/16*(Rt.flipX?-1:1),", ").concat(Rt.size/16*(Rt.flipY?-1:1),") "))+"rotate(".concat(Rt.rotate,"deg) ")}({transform:Ve,startCentered:!0,width:kt,height:Z}),Di["-webkit-transform"]=Di.transform);var an=mi(Di);an.length>0&&(pi.style=an);var gn=[];return gn.push({tag:"span",attributes:pi,children:[Rt]}),De&&gn.push({tag:"span",attributes:{class:"sr-only"},children:[De]}),gn}var da=Qt.styles;function ao(nt){var Rt=nt[0],kt=nt[1],De=R(nt.slice(4),1)[0];return{found:!0,width:Rt,height:kt,icon:Array.isArray(De)?{tag:"g",attributes:{class:"".concat(we.cssPrefix,"-").concat(Vt.GROUP)},children:[{tag:"path",attributes:{class:"".concat(we.cssPrefix,"-").concat(Vt.SECONDARY),fill:"currentColor",d:De[0]}},{tag:"path",attributes:{class:"".concat(we.cssPrefix,"-").concat(Vt.PRIMARY),fill:"currentColor",d:De[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:De}}}}var Oa={found:!1,width:512,height:512};function Fa(nt,Rt){var kt=Rt;return"fa"===Rt&&null!==we.styleDefault&&(Rt=ji()),new Promise(function(Z,Ve){if(Ma("missingIconAbstract"),"fa"===kt){var We=yi(nt)||{};nt=We.iconName||nt,Rt=We.prefix||Rt}if(nt&&Rt&&da[Rt]&&da[Rt][nt])return Z(ao(da[Rt][nt]));(function ns(nt,Rt){!Ze&&!we.showMissingIcons&&nt&&console.error('Icon with name "'.concat(nt,'" and prefix "').concat(Rt,'" is missing.'))})(nt,Rt),Z(S(S({},Oa),{},{icon:we.showMissingIcons&&nt&&Ma("missingIconAbstract")||{}}))})}var Ro=function(){},kr=we.measurePerformance&&L&&L.mark&&L.measure?L:{mark:Ro,measure:Ro},ha='FA "6.5.2"',Ua=function(Rt){kr.mark("".concat(ha," ").concat(Rt," ends")),kr.measure("".concat(ha," ").concat(Rt),"".concat(ha," ").concat(Rt," begins"),"".concat(ha," ").concat(Rt," ends"))},rs={begin:function(Rt){return kr.mark("".concat(ha," ").concat(Rt," begins")),function(){return Ua(Rt)}},end:Ua},Ga=function(){};function Na(nt){return"string"==typeof(nt.getAttribute?nt.getAttribute(me):null)}function uo(nt){return C.createElementNS("http://www.w3.org/2000/svg",nt)}function ga(nt){return C.createElement(nt)}function Za(nt){var kt=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).ceFn,Z=void 0===kt?"svg"===nt.tag?uo:ga:kt;if("string"==typeof nt)return C.createTextNode(nt);var Ve=Z(nt.tag);return Object.keys(nt.attributes||[]).forEach(function(We){Ve.setAttribute(We,nt.attributes[We])}),(nt.children||[]).forEach(function(We){Ve.appendChild(Za(We,{ceFn:Z}))}),Ve}var _a={replace:function(Rt){var kt=Rt[0];if(kt.parentNode)if(Rt[1].forEach(function(Ve){kt.parentNode.insertBefore(Za(Ve),kt)}),null===kt.getAttribute(me)&&we.keepOriginalSource){var Z=C.createComment(function Lr(nt){var Rt=" ".concat(nt.outerHTML," ");return"".concat(Rt,"Font Awesome fontawesome.com ")}(kt));kt.parentNode.replaceChild(Z,kt)}else kt.remove()},nest:function(Rt){var kt=Rt[0],Z=Rt[1];if(~et(kt).indexOf(we.replacementClass))return _a.replace(Rt);var Ve=new RegExp("".concat(we.cssPrefix,"-.*"));if(delete Z[0].attributes.id,Z[0].attributes.class){var De=Z[0].attributes.class.split(" ").reduce(function(Dt,ei){return ei===we.replacementClass||ei.match(Ve)?Dt.toSvg.push(ei):Dt.toNode.push(ei),Dt},{toNode:[],toSvg:[]});Z[0].attributes.class=De.toSvg.join(" "),0===De.toNode.length?kt.removeAttribute("class"):kt.setAttribute("class",De.toNode.join(" "))}var We=Z.map(function(Dt){return Ut(Dt)}).join("\n");kt.setAttribute(me,""),kt.innerHTML=We}};function Oo(nt){nt()}function qr(nt,Rt){var kt="function"==typeof Rt?Rt:Ga;if(0===nt.length)kt();else{var Z=Oo;we.mutateApproach===be&&(Z=h.requestAnimationFrame||Oo),Z(function(){var Ve=function Uo(){return!0===we.autoReplaceSvg?_a.replace:_a[we.autoReplaceSvg]||_a.replace}(),De=rs.begin("mutate");nt.map(Ve),De(),kt()})}}var Bn=!1;function Da(){Bn=!0}function Go(){Bn=!1}var Wa=null;function as(nt){if(k&&we.observeMutations){var Rt=nt.treeCallback,kt=void 0===Rt?Ga:Rt,Z=nt.nodeCallback,Ve=void 0===Z?Ga:Z,De=nt.pseudoElementsCallback,We=void 0===De?Ga:De,Dt=nt.observeMutationsRoot,ei=void 0===Dt?C:Dt;Wa=new k(function(pi){if(!Bn){var Di=ji();Ge(pi).forEach(function(an){if("childList"===an.type&&an.addedNodes.length>0&&!Na(an.addedNodes[0])&&(we.searchPseudoElements&&We(an.target),kt(an.target)),"attributes"===an.type&&an.target.parentNode&&we.searchPseudoElements&&We(an.target.parentNode),"attributes"===an.type&&Na(an.target)&&~Et.indexOf(an.attributeName))if("class"===an.attributeName&&function ja(nt){var Rt=nt.getAttribute?nt.getAttribute(ke):null,kt=nt.getAttribute?nt.getAttribute(mt):null;return Rt&&kt}(an.target)){var gn=nr(et(an.target)),Dn=gn.iconName;an.target.setAttribute(ke,gn.prefix||Di),Dn&&an.target.setAttribute(mt,Dn)}else(function Bo(nt){return nt&&nt.classList&&nt.classList.contains&&nt.classList.contains(we.replacementClass)})(an.target)&&Ve(an.target)})}}),r&&Wa.observe(ei,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function Ki(nt){var Rt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{styleParser:!0},kt=function xt(nt){var Rt=nt.getAttribute("data-prefix"),kt=nt.getAttribute("data-icon"),Z=void 0!==nt.innerText?nt.innerText.trim():"",Ve=nr(et(nt));return Ve.prefix||(Ve.prefix=ji()),Rt&&kt&&(Ve.prefix=Rt,Ve.iconName=kt),Ve.iconName&&Ve.prefix||(Ve.prefix&&Z.length>0&&(Ve.iconName=function Ci(nt,Rt){return(Fn[nt]||{})[Rt]}(Ve.prefix,nt.innerText)||jt(Ve.prefix,Ni(nt.innerText))),!Ve.iconName&&we.autoFetchSvg&&nt.firstChild&&nt.firstChild.nodeType===Node.TEXT_NODE&&(Ve.iconName=nt.firstChild.data)),Ve}(nt),Z=kt.iconName,Ve=kt.prefix,De=kt.rest,We=function ai(nt){var Rt=Ge(nt.attributes).reduce(function(Ve,De){return"class"!==Ve.name&&"style"!==Ve.name&&(Ve[De.name]=De.value),Ve},{}),kt=nt.getAttribute("title"),Z=nt.getAttribute("data-fa-title-id");return we.autoA11y&&(kt?Rt["aria-labelledby"]="".concat(we.replacementClass,"-title-").concat(Z||Fe()):(Rt["aria-hidden"]="true",Rt.focusable="false")),Rt}(nt),Dt=is("parseNodeAttributes",{},nt),ei=Rt.styleParser?function ri(nt){var Rt=nt.getAttribute("style"),kt=[];return Rt&&(kt=Rt.split(";").reduce(function(Z,Ve){var De=Ve.split(":"),We=De[0],Dt=De.slice(1);return We&&Dt.length>0&&(Z[We]=Dt.join(":").trim()),Z},{})),kt}(nt):[];return S({iconName:Z,title:nt.getAttribute("title"),titleId:nt.getAttribute("data-fa-title-id"),prefix:Ve,transform:Ne,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:De,styles:ei,attributes:We}},Dt)}var tr=Qt.styles;function Or(nt){var Rt="nest"===we.autoReplaceSvg?Ki(nt,{styleParser:!1}):Ki(nt);return~Rt.extra.classes.indexOf(yt)?Ma("generateLayersText",nt,Rt):Ma("generateSvgReplacementMutation",nt,Rt)}var Fr=new Set;function Mo(nt){var Rt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!r)return Promise.resolve();var kt=C.documentElement.classList,Z=function(an){return kt.add("".concat(_e,"-").concat(an))},Ve=function(an){return kt.remove("".concat(_e,"-").concat(an))},De=we.autoFetchSvg?Fr:pt.map(function(Di){return"fa-".concat(Di)}).concat(Object.keys(tr));De.includes("fa")||De.push("fa");var We=[".".concat(yt,":not([").concat(me,"])")].concat(De.map(function(Di){return".".concat(Di,":not([").concat(me,"])")})).join(", ");if(0===We.length)return Promise.resolve();var Dt=[];try{Dt=Ge(nt.querySelectorAll(We))}catch{}if(!(Dt.length>0))return Promise.resolve();Z("pending"),Ve("complete");var ei=rs.begin("onTree"),pi=Dt.reduce(function(Di,an){try{var gn=Or(an);gn&&Di.push(gn)}catch(yn){Ze||"MissingIcon"===yn.name&&console.error(yn)}return Di},[]);return new Promise(function(Di,an){Promise.all(pi).then(function(gn){qr(gn,function(){Z("active"),Z("complete"),Ve("pending"),"function"==typeof Rt&&Rt(),ei(),Di()})}).catch(function(gn){ei(),an(gn)})})}function gs(nt){var Rt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;Or(nt).then(function(kt){kt&&qr([kt],Rt)})}pt.map(function(nt){Fr.add("fa-".concat(nt))}),Object.keys(ye[_t]).map(Fr.add.bind(Fr)),Object.keys(ye[at]).map(Fr.add.bind(Fr)),Fr=z(Fr);var Ms=function(Rt){var kt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Z=kt.transform,Ve=void 0===Z?Ne:Z,De=kt.symbol,We=void 0!==De&&De,Dt=kt.mask,ei=void 0===Dt?null:Dt,pi=kt.maskId,Di=void 0===pi?null:pi,an=kt.title,gn=void 0===an?null:an,yn=kt.titleId,Dn=void 0===yn?null:yn,hr=kt.classes,ir=void 0===hr?[]:hr,br=kt.attributes,gr=void 0===br?{}:br,Cr=kt.styles,sa=void 0===Cr?{}:Cr;if(Rt){var Hn=Rt.prefix,Bi=Rt.iconName,sn=Rt.icon;return hn(S({type:"icon"},Rt),function(){return Rr("beforeDOMElementCreation",{iconDefinition:Rt,params:kt}),we.autoA11y&&(gn?gr["aria-labelledby"]="".concat(we.replacementClass,"-title-").concat(Dn||Fe()):(gr["aria-hidden"]="true",gr.focusable="false")),Co({icons:{main:ao(sn),mask:ei?ao(ei.icon):{found:!1,width:null,height:null,icon:{}}},prefix:Hn,iconName:Bi,transform:S(S({},Ne),Ve),symbol:We,title:gn,maskId:Di,titleId:Dn,extra:{attributes:gr,styles:sa,classes:ir}})})}},oa={mixout:function(){return{icon:(nt=Ms,function(Rt){var kt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Z=(Rt||{}).icon?Rt:Ea(Rt||{}),Ve=kt.mask;return Ve&&(Ve=(Ve||{}).icon?Ve:Ea(Ve||{})),nt(Z,S(S({},kt),{},{mask:Ve}))})};var nt},hooks:function(){return{mutationObserverCallbacks:function(kt){return kt.treeCallback=Mo,kt.nodeCallback=gs,kt}}},provides:function(Rt){Rt.i2svg=function(kt){var Z=kt.node,De=kt.callback;return Mo(void 0===Z?C:Z,void 0===De?function(){}:De)},Rt.generateSvgReplacementMutation=function(kt,Z){var Ve=Z.iconName,De=Z.title,We=Z.titleId,Dt=Z.prefix,ei=Z.transform,pi=Z.symbol,Di=Z.mask,an=Z.maskId,gn=Z.extra;return new Promise(function(yn,Dn){Promise.all([Fa(Ve,Dt),Di.iconName?Fa(Di.iconName,Di.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(hr){var ir=R(hr,2);yn([kt,Co({icons:{main:ir[0],mask:ir[1]},prefix:Dt,iconName:Ve,transform:ei,symbol:pi,maskId:an,title:De,titleId:We,extra:gn,watchable:!0})])}).catch(Dn)})},Rt.generateAbstractIcon=function(kt){var pi,Z=kt.children,Ve=kt.attributes,De=kt.main,We=kt.transform,ei=mi(kt.styles);return ei.length>0&&(Ve.style=ei),Kt(We)&&(pi=Ma("generateAbstractTransformGrouping",{main:De,transform:We,containerWidth:De.width,iconWidth:De.width})),Z.push(pi||De.icon),{children:Z,attributes:Ve}}}},Ri={mixout:function(){return{layer:function(kt){var Z=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Ve=Z.classes,De=void 0===Ve?[]:Ve;return hn({type:"layer"},function(){Rr("beforeDOMElementCreation",{assembler:kt,params:Z});var We=[];return kt(function(Dt){Array.isArray(Dt)?Dt.map(function(ei){We=We.concat(ei.abstract)}):We=We.concat(Dt.abstract)}),[{tag:"span",attributes:{class:["".concat(we.cssPrefix,"-layers")].concat(z(De)).join(" ")},children:We}]})}}}},lt={mixout:function(){return{counter:function(kt){var Z=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Ve=Z.title,De=void 0===Ve?null:Ve,We=Z.classes,Dt=void 0===We?[]:We,ei=Z.attributes,pi=void 0===ei?{}:ei,Di=Z.styles,an=void 0===Di?{}:Di;return hn({type:"counter",content:kt},function(){return Rr("beforeDOMElementCreation",{content:kt,params:Z}),function zo(nt){var Rt=nt.content,kt=nt.title,Z=nt.extra,Ve=S(S(S({},Z.attributes),kt?{title:kt}:{}),{},{class:Z.classes.join(" ")}),De=mi(Z.styles);De.length>0&&(Ve.style=De);var We=[];return We.push({tag:"span",attributes:Ve,children:[Rt]}),kt&&We.push({tag:"span",attributes:{class:"sr-only"},children:[kt]}),We}({content:kt.toString(),title:De,extra:{attributes:pi,styles:an,classes:["".concat(we.cssPrefix,"-layers-counter")].concat(z(Dt))}})})}}}},ht={mixout:function(){return{text:function(kt){var Z=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},Ve=Z.transform,De=void 0===Ve?Ne:Ve,We=Z.title,Dt=void 0===We?null:We,ei=Z.classes,pi=void 0===ei?[]:ei,Di=Z.attributes,an=void 0===Di?{}:Di,gn=Z.styles,yn=void 0===gn?{}:gn;return hn({type:"text",content:kt},function(){return Rr("beforeDOMElementCreation",{content:kt,params:Z}),wo({content:kt,transform:S(S({},Ne),De),title:Dt,extra:{attributes:an,styles:yn,classes:["".concat(we.cssPrefix,"-layers-text")].concat(z(pi))}})})}}},provides:function(Rt){Rt.generateLayersText=function(kt,Z){var Ve=Z.title,De=Z.transform,We=Z.extra,Dt=null,ei=null;if(v){var pi=parseInt(getComputedStyle(kt).fontSize,10),Di=kt.getBoundingClientRect();Dt=Di.width/pi,ei=Di.height/pi}return we.autoA11y&&!Ve&&(We.attributes["aria-hidden"]="true"),Promise.resolve([kt,wo({content:kt.innerHTML,width:Dt,height:ei,transform:De,title:Ve,extra:We,watchable:!0})])}}},Ue=new RegExp('"',"ug"),At=[1105920,1112319];function pn(nt,Rt){var kt="".concat(fe).concat(Rt.replace(":","-"));return new Promise(function(Z,Ve){if(null!==nt.getAttribute(kt))return Z();var We=Ge(nt.children).filter(function(sn){return sn.getAttribute(ce)===Rt})[0],Dt=h.getComputedStyle(nt,Rt),ei=Dt.getPropertyValue("font-family").match(Ye),pi=Dt.getPropertyValue("font-weight"),Di=Dt.getPropertyValue("content");if(We&&!ei)return nt.removeChild(We),Z();if(ei&&"none"!==Di&&""!==Di){var an=Dt.getPropertyValue("content"),gn=~["Sharp"].indexOf(ei[2])?at:_t,yn=~["Solid","Regular","Light","Thin","Duotone","Brands","Kit"].indexOf(ei[2])?ue[gn][ei[2].toLowerCase()]:rt[gn][pi],Dn=function ni(nt){var Rt=nt.replace(Ue,""),kt=function fn(nt,Rt){var Ve,kt=nt.length,Z=nt.charCodeAt(Rt);return Z>=55296&&Z<=56319&&kt>Rt+1&&(Ve=nt.charCodeAt(Rt+1))>=56320&&Ve<=57343?1024*(Z-55296)+Ve-56320+65536:Z}(Rt,0),Z=kt>=At[0]&&kt<=At[1],Ve=2===Rt.length&&Rt[0]===Rt[1];return{value:Ni(Ve?Rt[0]:Rt),isSecondary:Z||Ve}}(an),hr=Dn.value,ir=Dn.isSecondary,br=ei[0].startsWith("FontAwesome"),gr=jt(yn,hr),Cr=gr;if(br){var sa=function Vi(nt){var Rt=Yn[nt],kt=jt("fas",nt);return Rt||(kt?{prefix:"fas",iconName:kt}:null)||{prefix:null,iconName:null}}(hr);sa.iconName&&sa.prefix&&(gr=sa.iconName,yn=sa.prefix)}if(!gr||ir||We&&We.getAttribute(ke)===yn&&We.getAttribute(mt)===Cr)Z();else{nt.setAttribute(kt,Cr),We&&nt.removeChild(We);var Hn=function Ei(){return{iconName:null,title:null,titleId:null,prefix:null,transform:Ne,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}}}(),Bi=Hn.extra;Bi.attributes[ce]=Rt,Fa(gr,yn).then(function(sn){var fr=Co(S(S({},Hn),{},{icons:{main:sn,mask:rn()},prefix:yn,iconName:Cr,extra:Bi,watchable:!0})),$r=C.createElementNS("http://www.w3.org/2000/svg","svg");"::before"===Rt?nt.insertBefore($r,nt.firstChild):nt.appendChild($r),$r.outerHTML=fr.map(function(fa){return Ut(fa)}).join("\n"),nt.removeAttribute(kt),Z()}).catch(Ve)}}else Z()})}function Zn(nt){return Promise.all([pn(nt,"::before"),pn(nt,"::after")])}function Fo(nt){return!(nt.parentNode===document.head||~pe.indexOf(nt.tagName.toUpperCase())||nt.getAttribute(ce)||nt.parentNode&&"svg"===nt.parentNode.tagName)}function vr(nt){if(r)return new Promise(function(Rt,kt){var Z=Ge(nt.querySelectorAll("*")).filter(Fo).map(Zn),Ve=rs.begin("searchPseudoElements");Da(),Promise.all(Z).then(function(){Ve(),Go(),Rt()}).catch(function(){Ve(),Go(),kt()})})}var lc=!1,hc=function(Rt){return Rt.toLowerCase().split(" ").reduce(function(Z,Ve){var De=Ve.toLowerCase().split("-"),We=De[0],Dt=De.slice(1).join("-");if(We&&"h"===Dt)return Z.flipX=!0,Z;if(We&&"v"===Dt)return Z.flipY=!0,Z;if(Dt=parseFloat(Dt),isNaN(Dt))return Z;switch(We){case"grow":Z.size=Z.size+Dt;break;case"shrink":Z.size=Z.size-Dt;break;case"left":Z.x=Z.x-Dt;break;case"right":Z.x=Z.x+Dt;break;case"up":Z.y=Z.y-Dt;break;case"down":Z.y=Z.y+Dt;break;case"rotate":Z.rotate=Z.rotate+Dt}return Z},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0})},Wo={x:0,y:0,width:"100%",height:"100%"};function fo(nt){return nt.attributes&&(nt.attributes.fill||!(arguments.length>1&&void 0!==arguments[1])||arguments[1])&&(nt.attributes.fill="black"),nt}!function xo(nt,Rt){var kt=Rt.mixoutsTo;Xr=nt,Sr={},Object.keys(zr).forEach(function(Z){-1===Ho.indexOf(Z)&&delete zr[Z]}),Xr.forEach(function(Z){var Ve=Z.mixout?Z.mixout():{};if(Object.keys(Ve).forEach(function(We){"function"==typeof Ve[We]&&(kt[We]=Ve[We]),"object"===l(Ve[We])&&Object.keys(Ve[We]).forEach(function(Dt){kt[We]||(kt[We]={}),kt[We][Dt]=Ve[We][Dt]})}),Z.hooks){var De=Z.hooks();Object.keys(De).forEach(function(We){Sr[We]||(Sr[We]=[]),Sr[We].push(De[We])})}Z.provides&&Z.provides(zr)})}([Li,oa,Ri,lt,ht,{hooks:function(){return{mutationObserverCallbacks:function(kt){return kt.pseudoElementsCallback=vr,kt}}},provides:function(Rt){Rt.pseudoElements2svg=function(kt){var Z=kt.node;we.searchPseudoElements&&vr(void 0===Z?C:Z)}}},{mixout:function(){return{dom:{unwatch:function(){Da(),lc=!0}}}},hooks:function(){return{bootstrap:function(){as(is("mutationObserverCallbacks",{}))},noAuto:function(){!function Ft(){Wa&&Wa.disconnect()}()},watch:function(kt){var Z=kt.observeMutationsRoot;lc?Go():as(is("mutationObserverCallbacks",{observeMutationsRoot:Z}))}}}},{mixout:function(){return{parse:{transform:function(kt){return hc(kt)}}}},hooks:function(){return{parseNodeAttributes:function(kt,Z){var Ve=Z.getAttribute("data-fa-transform");return Ve&&(kt.transform=hc(Ve)),kt}}},provides:function(Rt){Rt.generateAbstractTransformGrouping=function(kt){var Z=kt.main,Ve=kt.transform,We=kt.iconWidth,Dt={transform:"translate(".concat(kt.containerWidth/2," 256)")},ei="translate(".concat(32*Ve.x,", ").concat(32*Ve.y,") "),pi="scale(".concat(Ve.size/16*(Ve.flipX?-1:1),", ").concat(Ve.size/16*(Ve.flipY?-1:1),") "),Di="rotate(".concat(Ve.rotate," 0 0)"),yn={outer:Dt,inner:{transform:"".concat(ei," ").concat(pi," ").concat(Di)},path:{transform:"translate(".concat(We/2*-1," -256)")}};return{tag:"g",attributes:S({},yn.outer),children:[{tag:"g",attributes:S({},yn.inner),children:[{tag:Z.icon.tag,children:Z.icon.children,attributes:S(S({},Z.icon.attributes),yn.path)}]}]}}}},{hooks:function(){return{parseNodeAttributes:function(kt,Z){var Ve=Z.getAttribute("data-fa-mask"),De=Ve?nr(Ve.split(" ").map(function(We){return We.trim()})):rn();return De.prefix||(De.prefix=ji()),kt.mask=De,kt.maskId=Z.getAttribute("data-fa-mask-id"),kt}}},provides:function(Rt){Rt.generateAbstractMask=function(kt){var nt,Z=kt.children,Ve=kt.attributes,De=kt.main,We=kt.mask,Dt=kt.maskId,Di=De.icon,gn=We.icon,yn=function Pt(nt){var Rt=nt.transform,Z=nt.iconWidth,Ve={transform:"translate(".concat(nt.containerWidth/2," 256)")},De="translate(".concat(32*Rt.x,", ").concat(32*Rt.y,") "),We="scale(".concat(Rt.size/16*(Rt.flipX?-1:1),", ").concat(Rt.size/16*(Rt.flipY?-1:1),") "),Dt="rotate(".concat(Rt.rotate," 0 0)");return{outer:Ve,inner:{transform:"".concat(De," ").concat(We," ").concat(Dt)},path:{transform:"translate(".concat(Z/2*-1," -256)")}}}({transform:kt.transform,containerWidth:We.width,iconWidth:De.width}),Dn={tag:"rect",attributes:S(S({},Wo),{},{fill:"white"})},hr=Di.children?{children:Di.children.map(fo)}:{},ir={tag:"g",attributes:S({},yn.inner),children:[fo(S({tag:Di.tag,attributes:S(S({},Di.attributes),yn.path)},hr))]},br={tag:"g",attributes:S({},yn.outer),children:[ir]},gr="mask-".concat(Dt||Fe()),Cr="clip-".concat(Dt||Fe()),sa={tag:"mask",attributes:S(S({},Wo),{},{id:gr,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[Dn,br]},Hn={tag:"defs",children:[{tag:"clipPath",attributes:{id:Cr},children:(nt=gn,"g"===nt.tag?nt.children:[nt])},sa]};return Z.push(Hn,{tag:"rect",attributes:S({fill:"currentColor","clip-path":"url(#".concat(Cr,")"),mask:"url(#".concat(gr,")")},Wo)}),{children:Z,attributes:Ve}}}},{provides:function(Rt){var kt=!1;h.matchMedia&&(kt=h.matchMedia("(prefers-reduced-motion: reduce)").matches),Rt.missingIconAbstract=function(){var Z=[],Ve={fill:"currentColor"},De={attributeType:"XML",repeatCount:"indefinite",dur:"2s"};Z.push({tag:"path",attributes:S(S({},Ve),{},{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})});var We=S(S({},De),{},{attributeName:"opacity"}),Dt={tag:"circle",attributes:S(S({},Ve),{},{cx:"256",cy:"364",r:"28"}),children:[]};return kt||Dt.children.push({tag:"animate",attributes:S(S({},De),{},{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:S(S({},We),{},{values:"1;0;1;1;0;1;"})}),Z.push(Dt),Z.push({tag:"path",attributes:S(S({},Ve),{},{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),children:kt?[]:[{tag:"animate",attributes:S(S({},We),{},{values:"1;0;0;0;0;1;"})}]}),kt||Z.push({tag:"path",attributes:S(S({},Ve),{},{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),children:[{tag:"animate",attributes:S(S({},We),{},{values:"0;0;1;1;0;0;"})}]}),{tag:"g",attributes:{class:"missing"},children:Z}}}},{hooks:function(){return{parseNodeAttributes:function(kt,Z){var Ve=Z.getAttribute("data-fa-symbol");return kt.symbol=null!==Ve&&(""===Ve||Ve),kt}}}}],{mixoutsTo:zn});var Aa=zn.config,dn=zn.dom,Es=zn.parse,fc=zn.icon,Ll=g(345);const mc=["*"],Zs=nt=>{const Rt={[`fa-${nt.animation}`]:null!=nt.animation&&!nt.animation.startsWith("spin"),"fa-spin":"spin"===nt.animation||"spin-reverse"===nt.animation,"fa-spin-pulse":"spin-pulse"===nt.animation||"spin-pulse-reverse"===nt.animation,"fa-spin-reverse":"spin-reverse"===nt.animation||"spin-pulse-reverse"===nt.animation,"fa-pulse":"spin-pulse"===nt.animation||"spin-pulse-reverse"===nt.animation,"fa-fw":nt.fixedWidth,"fa-border":nt.border,"fa-inverse":nt.inverse,"fa-layers-counter":nt.counter,"fa-flip-horizontal":"horizontal"===nt.flip||"both"===nt.flip,"fa-flip-vertical":"vertical"===nt.flip||"both"===nt.flip,[`fa-${nt.size}`]:null!==nt.size,[`fa-rotate-${nt.rotate}`]:null!==nt.rotate,[`fa-pull-${nt.pull}`]:null!==nt.pull,[`fa-stack-${nt.stackItemSize}`]:null!=nt.stackItemSize};return Object.keys(Rt).map(kt=>Rt[kt]?kt:null).filter(kt=>kt)},Rs=new WeakSet,Eo="fa-auto-css";let gc=(()=>{class nt{constructor(){this.defaultPrefix="fas",this.fallbackIcon=null,this._autoAddCss=!0}set autoAddCss(kt){Aa.autoAddCss=kt,this._autoAddCss=kt}get autoAddCss(){return this._autoAddCss}static#e=this.\u0275fac=function(Z){return new(Z||nt)};static#t=this.\u0275prov=e.jDH({token:nt,factory:nt.\u0275fac,providedIn:"root"})}return nt})(),_c=(()=>{class nt{constructor(){this.definitions={}}addIcons(...kt){for(const Z of kt){Z.prefix in this.definitions||(this.definitions[Z.prefix]={}),this.definitions[Z.prefix][Z.iconName]=Z;for(const Ve of Z.icon[2])"string"==typeof Ve&&(this.definitions[Z.prefix][Ve]=Z)}}addIconPacks(...kt){for(const Z of kt){const Ve=Object.keys(Z).map(De=>Z[De]);this.addIcons(...Ve)}}getIconDefinition(kt,Z){return kt in this.definitions&&Z in this.definitions[kt]?this.definitions[kt][Z]:null}static#e=this.\u0275fac=function(Z){return new(Z||nt)};static#t=this.\u0275prov=e.jDH({token:nt,factory:nt.\u0275fac,providedIn:"root"})}return nt})(),os=(()=>{class nt{constructor(){this.stackItemSize="1x"}ngOnChanges(kt){if("size"in kt)throw new Error('fa-icon is not allowed to customize size when used inside fa-stack. Set size on the enclosing fa-stack instead: ....')}static#e=this.\u0275fac=function(Z){return new(Z||nt)};static#t=this.\u0275dir=e.FsC({type:nt,selectors:[["fa-icon","stackItemSize",""],["fa-duotone-icon","stackItemSize",""]],inputs:{stackItemSize:"stackItemSize",size:"size"},standalone:!0,features:[e.OA$]})}return nt})(),So=(()=>{class nt{constructor(kt,Z){this.renderer=kt,this.elementRef=Z}ngOnInit(){this.renderer.addClass(this.elementRef.nativeElement,"fa-stack")}ngOnChanges(kt){"size"in kt&&(null!=kt.size.currentValue&&this.renderer.addClass(this.elementRef.nativeElement,`fa-${kt.size.currentValue}`),null!=kt.size.previousValue&&this.renderer.removeClass(this.elementRef.nativeElement,`fa-${kt.size.previousValue}`))}static#e=this.\u0275fac=function(Z){return new(Z||nt)(e.rXU(e.sFG),e.rXU(e.aKT))};static#t=this.\u0275cmp=e.VBU({type:nt,selectors:[["fa-stack"]],inputs:{size:"size"},standalone:!0,features:[e.OA$,e.aNF],ngContentSelectors:mc,decls:1,vars:0,template:function(Z,Ve){1&Z&&(e.NAR(),e.SdG(0))},encapsulation:2})}return nt})(),Os=(()=>{class nt{constructor(kt,Z,Ve,De,We){this.sanitizer=kt,this.config=Z,this.iconLibrary=Ve,this.stackItem=De,this.document=(0,e.WQX)(t.qQ),null!=We&&null==De&&console.error('FontAwesome: fa-icon and fa-duotone-icon elements must specify stackItemSize attribute when wrapped into fa-stack. Example: .')}ngOnChanges(kt){if(null!=this.icon||null!=this.config.fallbackIcon){if(kt){const Z=this.findIconDefinition(this.icon??this.config.fallbackIcon);if(null!=Z){const Ve=this.buildParams();!function pc(nt,Rt){if(!Rt.autoAddCss||Rs.has(nt))return;if(null!=nt.getElementById(Eo))return Rt.autoAddCss=!1,void Rs.add(nt);const kt=nt.createElement("style");kt.setAttribute("type","text/css"),kt.setAttribute("id",Eo),kt.innerHTML=dn.css();const Z=nt.head.childNodes;let Ve=null;for(let De=Z.length-1;De>-1;De--){const We=Z[De],Dt=We.nodeName.toUpperCase();["STYLE","LINK"].indexOf(Dt)>-1&&(Ve=We)}nt.head.insertBefore(kt,Ve),Rt.autoAddCss=!1,Rs.add(nt)}(this.document,this.config);const De=fc(Z,Ve);this.renderedIconHTML=this.sanitizer.bypassSecurityTrustHtml(De.html.join("\n"))}}}else(()=>{throw new Error("Property `icon` is required for `fa-icon`/`fa-duotone-icon` components.")})()}render(){this.ngOnChanges({})}findIconDefinition(kt){const Z=((nt,Rt)=>(nt=>void 0!==nt.prefix&&void 0!==nt.iconName)(nt)?nt:Array.isArray(nt)&&2===nt.length?{prefix:nt[0],iconName:nt[1]}:{prefix:Rt,iconName:nt})(kt,this.config.defaultPrefix);return"icon"in Z?Z:this.iconLibrary.getIconDefinition(Z.prefix,Z.iconName)??((nt=>{throw new Error(`Could not find icon with iconName=${nt.iconName} and prefix=${nt.prefix} in the icon library.`)})(Z),null)}buildParams(){const kt={flip:this.flip,animation:this.animation,border:this.border,inverse:this.inverse,size:this.size||null,pull:this.pull||null,rotate:this.rotate||null,fixedWidth:"boolean"==typeof this.fixedWidth?this.fixedWidth:this.config.fixedWidth,stackItemSize:null!=this.stackItem?this.stackItem.stackItemSize:null},Z="string"==typeof this.transform?Es.transform(this.transform):this.transform;return{title:this.title,transform:Z,classes:Zs(kt),mask:null!=this.mask?this.findIconDefinition(this.mask):null,symbol:this.symbol,attributes:{role:this.a11yRole}}}static#e=this.\u0275fac=function(Z){return new(Z||nt)(e.rXU(Ll.up),e.rXU(gc),e.rXU(_c),e.rXU(os,8),e.rXU(So,8))};static#t=this.\u0275cmp=e.VBU({type:nt,selectors:[["fa-icon"]],hostAttrs:[1,"ng-fa-icon"],hostVars:2,hostBindings:function(Z,Ve){2&Z&&(e.Mr5("innerHTML",Ve.renderedIconHTML,e.npT),e.BMQ("title",Ve.title))},inputs:{icon:"icon",title:"title",animation:"animation",mask:"mask",flip:"flip",size:"size",pull:"pull",border:"border",inverse:"inverse",symbol:"symbol",rotate:"rotate",fixedWidth:"fixedWidth",transform:"transform",a11yRole:"a11yRole"},standalone:!0,features:[e.OA$,e.aNF],decls:0,vars:0,template:function(Z,Ve){},encapsulation:2})}return nt})(),Fs=(()=>{class nt{static#e=this.\u0275fac=function(Z){return new(Z||nt)};static#t=this.\u0275mod=e.$C({type:nt});static#i=this.\u0275inj=e.G2t({})}return nt})()},5383:(Qe,te,g)=>{"use strict";g.d(te,{$$g:()=>da,$Fj:()=>pl,$sC:()=>N6,BA1:()=>o0,C8j:()=>b9,CQO:()=>Lg,Ccf:()=>h7,D6w:()=>dl,DW4:()=>ei,EvL:()=>R4,FYJ:()=>Dm,GR4:()=>BC,GRI:()=>Cv,HEq:()=>jo,If6:()=>d_,Int:()=>e9,JKM:()=>Zh,Kcb:()=>JC,M29:()=>kh,McB:()=>Gt,Mf0:()=>Ng,MjD:()=>Og,Oh6:()=>Ci,QLR:()=>rp,TBz:()=>f3,Tq9:()=>Wg,Vpi:()=>q8,VwO:()=>U6,W1p:()=>J2,WKo:()=>Uv,WxX:()=>oe,Xbc:()=>s0,_eQ:()=>Dt,_qq:()=>Y8,aAJ:()=>p_,aFw:()=>rh,cbP:()=>ng,dB:()=>yo,e4L:()=>Gd,eGi:()=>q6,f6_:()=>Au,gdJ:()=>yc,hb3:()=>Mp,iW_:()=>yb,iy8:()=>E3,jPR:()=>qg,jTw:()=>N4,k02:()=>Wr,k6j:()=>Qr,knH:()=>Wp,ld_:()=>yp,njF:()=>f5,nsx:()=>Yp,o97:()=>Zm,pCJ:()=>ii,pS3:()=>d6,peG:()=>Hf,qFF:()=>Jg,qIE:()=>Ui,s5m:()=>js,vfE:()=>g1,xiI:()=>L_,ymQ:()=>Mc,zPk:()=>Du,zjW:()=>f7,zm_:()=>zm,zpE:()=>j3});var oe={prefix:"fas",iconName:"angles-down",icon:[448,512,["angle-double-down"],"f103","M246.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 402.7 361.4 265.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-160 160zm160-352l-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L224 210.7 361.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z"]},ii={prefix:"fas",iconName:"user-check",icon:[640,512,[],"f4fc","M96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3zM625 177L497 305c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L591 143c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"]},Ci={prefix:"fas",iconName:"box-archive",icon:[512,512,["archive"],"f187","M32 32H480c17.7 0 32 14.3 32 32V96c0 17.7-14.3 32-32 32H32C14.3 128 0 113.7 0 96V64C0 46.3 14.3 32 32 32zm0 128H480V416c0 35.3-28.7 64-64 64H96c-35.3 0-64-28.7-64-64V160zm128 80c0 8.8 7.2 16 16 16H336c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16z"]},da={prefix:"fas",iconName:"pen-ruler",icon:[512,512,["pencil-ruler"],"f5ae","M469.3 19.3l23.4 23.4c25 25 25 65.5 0 90.5l-56.4 56.4L322.3 75.7l56.4-56.4c25-25 65.5-25 90.5 0zM44.9 353.2L299.7 98.3 413.7 212.3 158.8 467.1c-6.7 6.7-15.1 11.6-24.2 14.2l-104 29.7c-8.4 2.4-17.4 .1-23.6-6.1s-8.5-15.2-6.1-23.6l29.7-104c2.6-9.2 7.5-17.5 14.2-24.2zM249.4 103.4L103.4 249.4 16 161.9c-18.7-18.7-18.7-49.1 0-67.9L94.1 16c18.7-18.7 49.1-18.7 67.9 0l19.8 19.8c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1l45.1 45.1zM408.6 262.6l45.1 45.1c-.3 .3-.7 .6-1 .9l-64 64c-6.2 6.2-6.2 16.4 0 22.6s16.4 6.2 22.6 0l64-64c.3-.3 .6-.7 .9-1L496 350.1c18.7 18.7 18.7 49.1 0 67.9L417.9 496c-18.7 18.7-49.1 18.7-67.9 0l-87.4-87.4L408.6 262.6z"]},jo={prefix:"fas",iconName:"unlock-keyhole",icon:[448,512,["unlock-alt"],"f13e","M224 64c-44.2 0-80 35.8-80 80v48H384c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80V144C80 64.5 144.5 0 224 0c57.5 0 107 33.7 130.1 82.3c7.6 16 .8 35.1-15.2 42.6s-35.1 .8-42.6-15.2C283.4 82.6 255.9 64 224 64zm32 320c17.7 0 32-14.3 32-32s-14.3-32-32-32H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h64z"]},Dt={prefix:"fas",iconName:"paintbrush",icon:[576,512,[128396,"paint-brush"],"f1fc","M339.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L568.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S517.7-4.4 499.1 9.6L262.4 187.2c-24 18-38.2 46.1-38.4 76.1L339.3 367.1zm-19.6 25.4l-116-104.4C143.9 290.3 96 339.6 96 400c0 3.9 .2 7.8 .6 11.6C98.4 429.1 86.4 448 68.8 448H64c-17.7 0-32 14.3-32 32s14.3 32 32 32H208c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z"]},ei={prefix:"fas",iconName:"lock",icon:[448,512,[128274],"f023","M144 144v48H304V144c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192V144C80 64.5 144.5 0 224 0s144 64.5 144 144v48h16c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64H80z"]},yc={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M144 0a80 80 0 1 1 0 160A80 80 0 1 1 144 0zM512 0a80 80 0 1 1 0 160A80 80 0 1 1 512 0zM0 298.7C0 239.8 47.8 192 106.7 192h42.7c15.9 0 31 3.5 44.6 9.7c-1.3 7.2-1.9 14.7-1.9 22.3c0 38.2 16.8 72.5 43.3 96c-.2 0-.4 0-.7 0H21.3C9.6 320 0 310.4 0 298.7zM405.3 320c-.2 0-.4 0-.7 0c26.6-23.5 43.3-57.8 43.3-96c0-7.6-.7-15-1.9-22.3c13.6-6.3 28.7-9.7 44.6-9.7h42.7C592.2 192 640 239.8 640 298.7c0 11.8-9.6 21.3-21.3 21.3H405.3zM224 224a96 96 0 1 1 192 0 96 96 0 1 1 -192 0zM128 485.3C128 411.7 187.7 352 261.3 352H378.7C452.3 352 512 411.7 512 485.3c0 14.7-11.9 26.7-26.7 26.7H154.7c-14.7 0-26.7-11.9-26.7-26.7z"]},Qr={prefix:"fas",iconName:"eye-slash",icon:[640,512,[],"f070","M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zM373 389.9c-16.4 6.5-34.3 10.1-53 10.1c-79.5 0-144-64.5-144-144c0-6.9 .5-13.6 1.4-20.2L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5L373 389.9z"]},Gd={prefix:"fas",iconName:"bullhorn",icon:[512,512,[128226,128363],"f0a1","M480 32c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9L381.7 53c-48 48-113.1 75-181 75H192 160 64c-35.3 0-64 28.7-64 64v96c0 35.3 28.7 64 64 64l0 128c0 17.7 14.3 32 32 32h64c17.7 0 32-14.3 32-32V352l8.7 0c67.9 0 133 27 181 75l43.6 43.6c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V300.4c18.6-8.8 32-32.5 32-60.4s-13.4-51.6-32-60.4V32zm-64 76.7V240 371.3C357.2 317.8 280.5 288 200.7 288H192V192h8.7c79.8 0 156.5-29.8 215.3-83.3z"]},Mc={prefix:"fas",iconName:"money-bill-wave",icon:[576,512,[],"f53a","M0 112.5V422.3c0 18 10.1 35 27 41.3c87 32.5 174 10.3 261-11.9c79.8-20.3 159.6-40.7 239.3-18.9c23 6.3 48.7-9.5 48.7-33.4V89.7c0-18-10.1-35-27-41.3C462 15.9 375 38.1 288 60.3C208.2 80.6 128.4 100.9 48.7 79.1C25.6 72.8 0 88.6 0 112.5zM288 352c-44.2 0-80-43-80-96s35.8-96 80-96s80 43 80 96s-35.8 96-80 96zM64 352c35.3 0 64 28.7 64 64H64V352zm64-208c0 35.3-28.7 64-64 64V144h64zM512 304v64H448c0-35.3 28.7-64 64-64zM448 96h64v64c-35.3 0-64-28.7-64-64z"]},dl={prefix:"fas",iconName:"server",icon:[512,512,[],"f233","M64 32C28.7 32 0 60.7 0 96v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm48 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64 288c-35.3 0-64 28.7-64 64v64c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V352c0-35.3-28.7-64-64-64H64zm280 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"]},pl={prefix:"fas",iconName:"chart-bar",icon:[512,512,["bar-chart"],"f080","M32 32c17.7 0 32 14.3 32 32V400c0 8.8 7.2 16 16 16H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H80c-44.2 0-80-35.8-80-80V64C0 46.3 14.3 32 32 32zm96 96c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32zm32 64H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 96H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H160c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},rh={prefix:"fas",iconName:"window-restore",icon:[512,512,[],"f2d2","M432 64H208c-8.8 0-16 7.2-16 16V96H128V80c0-44.2 35.8-80 80-80H432c44.2 0 80 35.8 80 80V304c0 44.2-35.8 80-80 80H416V320h16c8.8 0 16-7.2 16-16V80c0-8.8-7.2-16-16-16zM0 192c0-35.3 28.7-64 64-64H320c35.3 0 64 28.7 64 64V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V192zm64 32c0 17.7 14.3 32 32 32H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H96c-17.7 0-32 14.3-32 32z"]},js={prefix:"fas",iconName:"euro-sign",icon:[320,512,[8364,"eur","euro"],"f153","M48.1 240c-.1 2.7-.1 5.3-.1 8v16c0 2.7 0 5.3 .1 8H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H60.3C89.9 419.9 170 480 264 480h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264c-57.9 0-108.2-32.4-133.9-80H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112.2c-.1-2.6-.2-5.3-.2-8V248c0-2.7 .1-5.4 .2-8H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H130.1c25.7-47.6 76-80 133.9-80h24c17.7 0 32-14.3 32-32s-14.3-32-32-32H264C170 32 89.9 92.1 60.3 176H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48.1z"]},g1={prefix:"fas",iconName:"sterling-sign",icon:[320,512,[163,"gbp","pound-sign"],"f154","M112 160.4c0-35.5 28.8-64.4 64.4-64.4c6.9 0 13.8 1.1 20.4 3.3l81.2 27.1c16.8 5.6 34.9-3.5 40.5-20.2s-3.5-34.9-20.2-40.5L217 38.6c-13.1-4.4-26.8-6.6-40.6-6.6C105.5 32 48 89.5 48 160.4V224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v44.5c0 17.4-4.7 34.5-13.7 49.4L4.6 431.5c-5.9 9.9-6.1 22.2-.4 32.2S20.5 480 32 480H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H88.5l.7-1.1C104.1 390 112 361.5 112 332.5V288H224c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V160.4z"]},kh={prefix:"fas",iconName:"burst",icon:[512,512,[],"e4dc","M37.6 4.2C28-2.3 15.2-1.1 7 7s-9.4 21-2.8 30.5l112 163.3L16.6 233.2C6.7 236.4 0 245.6 0 256s6.7 19.6 16.6 22.8l103.1 33.4L66.8 412.8c-4.9 9.3-3.2 20.7 4.3 28.1s18.8 9.2 28.1 4.3l100.6-52.9 33.4 103.1c3.2 9.9 12.4 16.6 22.8 16.6s19.6-6.7 22.8-16.6l33.4-103.1 100.6 52.9c9.3 4.9 20.7 3.2 28.1-4.3s9.2-18.8 4.3-28.1L392.3 312.2l103.1-33.4c9.9-3.2 16.6-12.4 16.6-22.8s-6.7-19.6-16.6-22.8L388.9 198.7l25.7-70.4c3.2-8.8 1-18.6-5.6-25.2s-16.4-8.8-25.2-5.6l-70.4 25.7L278.8 16.6C275.6 6.7 266.4 0 256 0s-19.6 6.7-22.8 16.6l-32.3 99.6L37.6 4.2z"]},Hf={prefix:"fas",iconName:"arrows-turn-right",icon:[448,512,[],"e4c0","M297.4 9.4c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L338.7 160H128c-35.3 0-64 28.7-64 64v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V224C0 153.3 57.3 96 128 96H338.7L297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3zm-96 256c12.5-12.5 32.8-12.5 45.3 0l96 96c12.5 12.5 12.5 32.8 0 45.3l-96 96c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 416H96c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96H242.7l-41.4-41.4c-12.5-12.5-12.5-32.8 0-45.3z"]},Ui={prefix:"fas",iconName:"layer-group",icon:[576,512,[],"f5fd","M264.5 5.2c14.9-6.9 32.1-6.9 47 0l218.6 101c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 149.8C37.4 145.8 32 137.3 32 128s5.4-17.9 13.9-21.8L264.5 5.2zM476.9 209.6l53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 277.8C37.4 273.8 32 265.3 32 256s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0l152-70.2zm-152 198.2l152-70.2 53.2 24.6c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L45.9 405.8C37.4 401.8 32 393.3 32 384s5.4-17.9 13.9-21.8l53.2-24.6 152 70.2c23.4 10.8 50.4 10.8 73.8 0z"]},R4={prefix:"fas",iconName:"question",icon:[320,512,[10067,10068,61736],"3f","M80 160c0-35.3 28.7-64 64-64h32c35.3 0 64 28.7 64 64v3.6c0 21.8-11.1 42.1-29.4 53.8l-42.2 27.1c-25.2 16.2-40.4 44.1-40.4 74V320c0 17.7 14.3 32 32 32s32-14.3 32-32v-1.4c0-8.2 4.2-15.8 11-20.2l42.2-27.1c36.6-23.6 58.8-64.1 58.8-107.7V160c0-70.7-57.3-128-128-128H144C73.3 32 16 89.3 16 160c0 17.7 14.3 32 32 32s32-14.3 32-32zm80 320a40 40 0 1 0 0-80 40 40 0 1 0 0 80z"]},N4={prefix:"fas",iconName:"code",icon:[640,512,[],"f121","M392.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm80.6 120.1c-12.5 12.5-12.5 32.8 0 45.3L562.7 256l-89.4 89.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l112-112c12.5-12.5 12.5-32.8 0-45.3l-112-112c-12.5-12.5-32.8-12.5-45.3 0zm-306.7 0c-12.5-12.5-32.8-12.5-45.3 0l-112 112c-12.5 12.5-12.5 32.8 0 45.3l112 112c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256l89.4-89.4c12.5-12.5 12.5-32.8 0-45.3z"]},Zh={prefix:"fas",iconName:"won-sign",icon:[512,512,[8361,"krw","won"],"f159","M62.4 53.9C56.8 37.1 38.6 28.1 21.9 33.6S-3.9 57.4 1.6 74.1L51.6 224H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H72.9l56.7 170.1c4.5 13.5 17.4 22.4 31.6 21.9s26.4-10.4 29.8-24.2L233 288h46L321 455.8c3.4 13.8 15.6 23.7 29.8 24.2s27.1-8.4 31.6-21.9L439.1 288H480c17.7 0 32-14.3 32-32s-14.3-32-32-32H460.4l50-149.9c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2L392.9 224H329L287 56.2C283.5 42 270.7 32 256 32s-27.5 10-31 24.2L183 224h-64L62.4 53.9zm78 234.1H167l-11.4 45.6L140.4 288zM249 224l7-28.1 7 28.1H249zm96 64h26.6l-15.2 45.6L345 288z"]},J2={prefix:"fas",iconName:"chart-pie",icon:[576,512,["pie-chart"],"f200","M304 240V16.6c0-9 7-16.6 16-16.6C443.7 0 544 100.3 544 224c0 9-7.6 16-16.6 16H304zM32 272C32 150.7 122.1 50.3 239 34.3c9.2-1.3 17 6.1 17 15.4V288L412.5 444.5c6.7 6.7 6.2 17.7-1.5 23.1C371.8 495.6 323.8 512 272 512C139.5 512 32 404.6 32 272zm526.4 16c9.3 0 16.6 7.8 15.4 17c-7.7 55.9-34.6 105.6-73.9 142.3c-6 5.6-15.4 5.2-21.2-.7L320 288H558.4z"]},f5={prefix:"fas",iconName:"eject",icon:[448,512,[9167],"f052","M224 32c13.5 0 26.3 5.6 35.4 15.6l176 192c12.9 14 16.2 34.3 8.6 51.8S419 320 400 320H48c-19 0-36.3-11.2-43.9-28.7s-4.3-37.7 8.6-51.8l176-192C197.7 37.6 210.5 32 224 32zM0 432c0-26.5 21.5-48 48-48H400c26.5 0 48 21.5 48 48s-21.5 48-48 48H48c-26.5 0-48-21.5-48-48z"]},Wp={prefix:"fas",iconName:"signs-post",icon:[512,512,["map-signs"],"f277","M224 32H64C46.3 32 32 46.3 32 64v64c0 17.7 14.3 32 32 32H441.4c4.2 0 8.3-1.7 11.3-4.7l48-48c6.2-6.2 6.2-16.4 0-22.6l-48-48c-3-3-7.1-4.7-11.3-4.7H288c0-17.7-14.3-32-32-32s-32 14.3-32 32zM480 256c0-17.7-14.3-32-32-32H288V192H224v32H70.6c-4.2 0-8.3 1.7-11.3 4.7l-48 48c-6.2 6.2-6.2 16.4 0 22.6l48 48c3 3 7.1 4.7 11.3 4.7H448c17.7 0 32-14.3 32-32V256zM288 480V384H224v96c0 17.7 14.3 32 32 32s32-14.3 32-32z"]},Yp={prefix:"fas",iconName:"screwdriver-wrench",icon:[512,512,["tools"],"f7d9","M78.6 5C69.1-2.4 55.6-1.5 47 7L7 47c-8.5 8.5-9.4 22-2.1 31.6l80 104c4.5 5.9 11.6 9.4 19 9.4h54.1l109 109c-14.7 29-10 65.4 14.3 89.6l112 112c12.5 12.5 32.8 12.5 45.3 0l64-64c12.5-12.5 12.5-32.8 0-45.3l-112-112c-24.2-24.2-60.6-29-89.6-14.3l-109-109V104c0-7.5-3.5-14.5-9.4-19L78.6 5zM19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L233.7 374.3c-7.8-20.9-9-43.6-3.6-65.1l-61.7-61.7L19.9 396.1zM512 144c0-10.5-1.1-20.7-3.2-30.5c-2.4-11.2-16.1-14.1-24.2-6l-63.9 63.9c-3 3-7.1 4.7-11.3 4.7H352c-8.8 0-16-7.2-16-16V102.6c0-4.2 1.7-8.3 4.7-11.3l63.9-63.9c8.1-8.1 5.2-21.8-6-24.2C388.7 1.1 378.5 0 368 0C288.5 0 224 64.5 224 144l0 .8 85.3 85.3c36-9.1 75.8 .5 104 28.7L429 274.5c49-23 83-72.8 83-130.5zM56 432a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"]},o0={prefix:"fas",iconName:"wallet",icon:[512,512,[],"f555","M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V192c0-35.3-28.7-64-64-64H80c-8.8 0-16-7.2-16-16s7.2-16 16-16H448c17.7 0 32-14.3 32-32s-14.3-32-32-32H64zM416 272a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},s0={prefix:"fas",iconName:"code-branch",icon:[448,512,[],"f126","M80 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm80-24c0 32.8-19.7 61-48 73.3v87.8c18.8-10.9 40.7-17.1 64-17.1h96c35.3 0 64-28.7 64-64v-6.7C307.7 141 288 112.8 288 80c0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3V160c0 70.7-57.3 128-128 128H176c-35.3 0-64 28.7-64 64v6.7c28.3 12.3 48 40.5 48 73.3c0 44.2-35.8 80-80 80s-80-35.8-80-80c0-32.8 19.7-61 48-73.3V352 153.3C19.7 141 0 112.8 0 80C0 35.8 35.8 0 80 0s80 35.8 80 80zm232 0a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM80 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"]},f3={prefix:"fas",iconName:"route",icon:[512,512,[],"f4d7","M512 96c0 50.2-59.1 125.1-84.6 155c-3.8 4.4-9.4 6.1-14.5 5H320c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c53 0 96 43 96 96s-43 96-96 96H139.6c8.7-9.9 19.3-22.6 30-36.8c6.3-8.4 12.8-17.6 19-27.2H416c17.7 0 32-14.3 32-32s-14.3-32-32-32H320c-53 0-96-43-96-96s43-96 96-96h39.8c-21-31.5-39.8-67.7-39.8-96c0-53 43-96 96-96s96 43 96 96zM117.1 489.1c-3.8 4.3-7.2 8.1-10.1 11.3l-1.8 2-.2-.2c-6 4.6-14.6 4-20-1.8C59.8 473 0 402.5 0 352c0-53 43-96 96-96s96 43 96 96c0 30-21.1 67-43.5 97.9c-10.7 14.7-21.7 28-30.8 38.5l-.6 .7zM128 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z"]},d6={prefix:"fas",iconName:"eye",icon:[576,512,[128065],"f06e","M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z"]},Gt={prefix:"fas",iconName:"user-gear",icon:[640,512,["user-cog"],"f4fe","M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.4c11.8 0 23.4 1.2 34.5 3.3c-2.1 18.5 7.4 35.6 21.8 44.8c-16.6 10.6-26.7 31.6-20 53.3c4 12.9 9.4 25.5 16.4 37.6s15.2 23.1 24.4 33c15.7 16.9 39.6 18.4 57.2 8.7v.9c0 9.2 2.7 18.5 7.9 26.3H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM436 218.2c0-7 4.5-13.3 11.3-14.8c10.5-2.4 21.5-3.7 32.7-3.7s22.2 1.3 32.7 3.7c6.8 1.5 11.3 7.8 11.3 14.8v17.7c0 7.8 4.8 14.8 11.6 18.7c6.8 3.9 15.1 4.5 21.8 .6l13.8-7.9c6.1-3.5 13.7-2.7 18.5 2.4c7.6 8.1 14.3 17.2 20.1 27.2s10.3 20.4 13.5 31c2.1 6.7-1.1 13.7-7.2 17.2l-14.4 8.3c-6.5 3.7-10 10.9-10 18.4s3.5 14.7 10 18.4l14.4 8.3c6.1 3.5 9.2 10.5 7.2 17.2c-3.3 10.6-7.8 21-13.5 31s-12.5 19.1-20.1 27.2c-4.8 5.1-12.5 5.9-18.5 2.4l-13.8-7.9c-6.7-3.9-15.1-3.3-21.8 .6c-6.8 3.9-11.6 10.9-11.6 18.7v17.7c0 7-4.5 13.3-11.3 14.8c-10.5 2.4-21.5 3.7-32.7 3.7s-22.2-1.3-32.7-3.7c-6.8-1.5-11.3-7.8-11.3-14.8V467.8c0-7.9-4.9-14.9-11.7-18.9c-6.8-3.9-15.2-4.5-22-.6l-13.5 7.8c-6.1 3.5-13.7 2.7-18.5-2.4c-7.6-8.1-14.3-17.2-20.1-27.2s-10.3-20.4-13.5-31c-2.1-6.7 1.1-13.7 7.2-17.2l14-8.1c6.5-3.8 10.1-11.1 10.1-18.6s-3.5-14.8-10.1-18.6l-14-8.1c-6.1-3.5-9.2-10.5-7.2-17.2c3.3-10.6 7.7-21 13.5-31s12.5-19.1 20.1-27.2c4.8-5.1 12.4-5.9 18.5-2.4l13.6 7.8c6.8 3.9 15.2 3.3 22-.6c6.9-3.9 11.7-11 11.7-18.9V218.2zm92.1 133.5a48.1 48.1 0 1 0 -96.1 0 48.1 48.1 0 1 0 96.1 0z"]},Wr={prefix:"fas",iconName:"up-right-from-square",icon:[512,512,["external-link-alt"],"f35d","M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6V32c0-17.7-14.3-32-32-32H352zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"]},N6={prefix:"fas",iconName:"angles-up",icon:[448,512,["angle-double-up"],"f102","M246.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L224 109.3 361.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160zm160 352l-160-160c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L224 301.3 361.4 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z"]},yb={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM216 336h24V272H216c-13.3 0-24-10.7-24-24s10.7-24 24-24h48c13.3 0 24 10.7 24 24v88h8c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24s10.7-24 24-24zm40-208a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},U6={prefix:"fas",iconName:"dumbbell",icon:[640,512,[],"f44b","M96 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32V224v64V448c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V384H64c-17.7 0-32-14.3-32-32V288c-17.7 0-32-14.3-32-32s14.3-32 32-32V160c0-17.7 14.3-32 32-32H96V64zm448 0v64h32c17.7 0 32 14.3 32 32v64c17.7 0 32 14.3 32 32s-14.3 32-32 32v64c0 17.7-14.3 32-32 32H544v64c0 17.7-14.3 32-32 32H480c-17.7 0-32-14.3-32-32V288 224 64c0-17.7 14.3-32 32-32h32c17.7 0 32 14.3 32 32zM416 224v64H224V224H416z"]},Dm={prefix:"fas",iconName:"indian-rupee-sign",icon:[320,512,["indian-rupee","inr"],"e1bc","M0 64C0 46.3 14.3 32 32 32H96h16H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H231.8c9.6 14.4 16.7 30.6 20.7 48H288c17.7 0 32 14.3 32 32s-14.3 32-32 32H252.4c-13.2 58.3-61.9 103.2-122.2 110.9L274.6 422c14.4 10.3 17.7 30.3 7.4 44.6s-30.3 17.7-44.6 7.4L13.4 314C2.1 306-2.7 291.5 1.5 278.2S18.1 256 32 256h80c32.8 0 61-19.7 73.3-48H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H185.3C173 115.7 144.8 96 112 96H96 32C14.3 96 0 81.7 0 64z"]},h7={prefix:"fas",iconName:"money-bill-1",icon:[576,512,["money-bill-alt"],"f3d1","M64 64C28.7 64 0 92.7 0 128V384c0 35.3 28.7 64 64 64H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H64zm64 320H64V320c35.3 0 64 28.7 64 64zM64 192V128h64c0 35.3-28.7 64-64 64zM448 384c0-35.3 28.7-64 64-64v64H448zm64-192c-35.3 0-64-28.7-64-64h64v64zM176 256a112 112 0 1 1 224 0 112 112 0 1 1 -224 0zm76-48c0 9.7 6.9 17.7 16 19.6V276h-4c-11 0-20 9-20 20s9 20 20 20h24 24c11 0 20-9 20-20s-9-20-20-20h-4V208c0-11-9-20-20-20H272c-11 0-20 9-20 20z"]},E3=h7,f7={prefix:"fas",iconName:"franc-sign",icon:[320,512,[],"e18f","M80 32C62.3 32 48 46.3 48 64V224v96H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H48v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V256H256c17.7 0 32-14.3 32-32s-14.3-32-32-32H112V96H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z"]},yo={prefix:"fas",iconName:"gear",icon:[512,512,[9881,"cog"],"f013","M495.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4L83.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L22.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9-16.3 18.2-17.8C227.3 1.2 241.5 0 256 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z"]},q6={prefix:"fas",iconName:"network-wired",icon:[640,512,[],"f6ff","M256 64H384v64H256V64zM240 0c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48h48v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32h96v32H80c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H240c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H192V288H448v32H400c-26.5 0-48 21.5-48 48v96c0 26.5 21.5 48 48 48H560c26.5 0 48-21.5 48-48V368c0-26.5-21.5-48-48-48H512V288h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H352V192h48c26.5 0 48-21.5 48-48V48c0-26.5-21.5-48-48-48H240zM96 448V384H224v64H96zm320-64H544v64H416V384z"]},ng={prefix:"fas",iconName:"download",icon:[512,512,[],"f019","M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"]},zm={prefix:"fas",iconName:"bolt",icon:[448,512,[9889,"zap"],"f0e7","M349.4 44.6c5.9-13.7 1.5-29.7-10.6-38.5s-28.6-8-39.9 1.8l-256 224c-10 8.8-13.6 22.9-8.9 35.3S50.7 288 64 288H175.5L98.6 467.4c-5.9 13.7-1.5 29.7 10.6 38.5s28.6 8 39.9-1.8l256-224c10-8.8 13.6-22.9 8.9-35.3s-16.6-20.7-30-20.7H272.5L349.4 44.6z"]},Du={prefix:"fas",iconName:"yen-sign",icon:[320,512,[165,"cny","jpy","rmb","yen"],"f157","M58.6 46.2C48.8 31.5 29 27.6 14.3 37.4S-4.4 67 5.4 81.7L100.2 224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v32H48c-17.7 0-32 14.3-32 32s14.3 32 32 32h80v64c0 17.7 14.3 32 32 32s32-14.3 32-32V384h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H192V288h80c17.7 0 32-14.3 32-32s-14.3-32-32-32H219.8L314.6 81.7c9.8-14.7 5.8-34.6-8.9-44.4s-34.6-5.8-44.4 8.9L160 198.3 58.6 46.2z"]},Au={prefix:"fas",iconName:"ruble-sign",icon:[384,512,[8381,"rouble","rub","ruble"],"f158","M96 32C78.3 32 64 46.3 64 64V256H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32H32c-17.7 0-32 14.3-32 32s14.3 32 32 32H64v32c0 17.7 14.3 32 32 32s32-14.3 32-32V416H288c17.7 0 32-14.3 32-32s-14.3-32-32-32H128V320H240c79.5 0 144-64.5 144-144s-64.5-144-144-144H96zM240 256H128V96H240c44.2 0 80 35.8 80 80s-35.8 80-80 80z"]},d_={prefix:"fas",iconName:"arrows-turn-to-dots",icon:[512,512,[],"e4c1","M249.4 25.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L269.3 96 416 96c53 0 96 43 96 96v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V192c0-17.7-14.3-32-32-32l-146.7 0 25.4 25.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-80-80c-12.5-12.5-12.5-32.8 0-45.3l80-80zm13.3 256l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 416 96 416c-17.7 0-32 14.3-32 32v32c0 17.7-14.3 32-32 32s-32-14.3-32-32V448c0-53 43-96 96-96l146.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0zM384 384a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM64 192A64 64 0 1 1 64 64a64 64 0 1 1 0 128z"]},p_={prefix:"fas",iconName:"user-lock",icon:[640,512,[],"f502","M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H392.6c-5.4-9.4-8.6-20.3-8.6-32V352c0-2.1 .1-4.2 .3-6.3c-31-26-71-41.7-114.6-41.7H178.3zM528 240c17.7 0 32 14.3 32 32v48H496V272c0-17.7 14.3-32 32-32zm-80 32v48c-17.7 0-32 14.3-32 32V480c0 17.7 14.3 32 32 32H608c17.7 0 32-14.3 32-32V352c0-17.7-14.3-32-32-32V272c0-44.2-35.8-80-80-80s-80 35.8-80 80z"]},L_={prefix:"fas",iconName:"gauge-high",icon:[512,512,[62461,"tachometer-alt","tachometer-alt-fast"],"f625","M0 256a256 256 0 1 1 512 0A256 256 0 1 1 0 256zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM256 416c35.3 0 64-28.7 64-64c0-17.4-6.9-33.1-18.1-44.6L366 161.7c5.3-12.1-.2-26.3-12.3-31.6s-26.3 .2-31.6 12.3L257.9 288c-.6 0-1.3 0-1.9 0c-35.3 0-64 28.7-64 64s28.7 64 64 64zM176 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM96 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm352-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"]},Zm={prefix:"fas",iconName:"bars-staggered",icon:[512,512,["reorder","stream"],"f550","M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM64 256c0-17.7 14.3-32 32-32H480c17.7 0 32 14.3 32 32s-14.3 32-32 32H96c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z"]},Lg={prefix:"fas",iconName:"link",icon:[640,512,[128279,"chain"],"f0c1","M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0L579.8 267.7zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5L217.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z"]},Og={prefix:"fas",iconName:"magnifying-glass",icon:[512,512,[128269,"search"],"f002","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"]},Ng={prefix:"fas",iconName:"receipt",icon:[384,512,[129534],"f543","M14 2.2C22.5-1.7 32.5-.3 39.6 5.8L80 40.4 120.4 5.8c9-7.7 22.3-7.7 31.2 0L192 40.4 232.4 5.8c9-7.7 22.3-7.7 31.2 0L304 40.4 344.4 5.8c7.1-6.1 17.1-7.5 25.6-3.6s14 12.4 14 21.8V488c0 9.4-5.5 17.9-14 21.8s-18.5 2.5-25.6-3.6L304 471.6l-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L192 471.6l-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L80 471.6 39.6 506.2c-7.1 6.1-17.1 7.5-25.6 3.6S0 497.4 0 488V24C0 14.6 5.5 6.1 14 2.2zM96 144c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96zM80 352c0 8.8 7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96c-8.8 0-16 7.2-16 16zM96 240c-8.8 0-16 7.2-16 16s7.2 16 16 16H288c8.8 0 16-7.2 16-16s-7.2-16-16-16H96z"]},Wg={prefix:"fas",iconName:"brazilian-real-sign",icon:[512,512,[],"e46c","M400 0c17.7 0 32 14.3 32 32V50.2c12.5 2.3 24.7 6.4 36.2 12.1l10.1 5.1c15.8 7.9 22.2 27.1 14.3 42.9s-27.1 22.2-42.9 14.3l-10.2-5.1c-9.9-5-20.9-7.5-32-7.5h-1.7c-29.8 0-53.9 24.1-53.9 53.9c0 22 13.4 41.8 33.9 50l52 20.8c44.7 17.9 74.1 61.2 74.1 109.4v3.4c0 51.2-33.6 94.6-80 109.2V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V460.6c-15-3.5-29.4-9.7-42.3-18.3l-23.4-15.6c-14.7-9.8-18.7-29.7-8.9-44.4s29.7-18.7 44.4-8.9L361.2 389c10.8 7.2 23.4 11 36.3 11c27.9 0 50.5-22.6 50.5-50.5v-3.4c0-22-13.4-41.8-33.9-50l-52-20.8C317.3 257.4 288 214.1 288 165.9C288 114 321.5 70 368 54.2V32c0-17.7 14.3-32 32-32zM0 64C0 46.3 14.3 32 32 32h80c79.5 0 144 64.5 144 144c0 58.8-35.2 109.3-85.7 131.7l51.4 128.4c6.6 16.4-1.4 35-17.8 41.6s-35-1.4-41.6-17.8L106.3 320H64V448c0 17.7-14.3 32-32 32s-32-14.3-32-32V288 64zM64 256h48c44.2 0 80-35.8 80-80s-35.8-80-80-80H64V256z"]},Jg={prefix:"fas",iconName:"diagram-project",icon:[576,512,["project-diagram"],"f542","M0 80C0 53.5 21.5 32 48 32h96c26.5 0 48 21.5 48 48V96H384V80c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H432c-26.5 0-48-21.5-48-48V160H192v16c0 1.7-.1 3.4-.3 5L272 288h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48H272c-26.5 0-48-21.5-48-48V336c0-1.7 .1-3.4 .3-5L144 224H48c-26.5 0-48-21.5-48-48V80z"]},qg={prefix:"fas",iconName:"copy",icon:[448,512,[],"f0c5","M208 0H332.1c12.7 0 24.9 5.1 33.9 14.1l67.9 67.9c9 9 14.1 21.2 14.1 33.9V336c0 26.5-21.5 48-48 48H208c-26.5 0-48-21.5-48-48V48c0-26.5 21.5-48 48-48zM48 128h80v64H64V448H256V416h64v48c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V176c0-26.5 21.5-48 48-48z"]},rp={prefix:"fas",iconName:"plus",icon:[448,512,[10133,61543,"add"],"2b","M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z"]},Cv={prefix:"fas",iconName:"xmark",icon:[384,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"]},Uv={prefix:"fas",iconName:"percent",icon:[384,512,[62101,62785,"percentage"],"25","M374.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-320 320c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l320-320zM128 128A64 64 0 1 0 0 128a64 64 0 1 0 128 0zM384 384a64 64 0 1 0 -128 0 64 64 0 1 0 128 0z"]},e9={prefix:"fas",iconName:"clock-rotate-left",icon:[512,512,["history"],"f1da","M75 75L41 41C25.9 25.9 0 36.6 0 57.9V168c0 13.3 10.7 24 24 24H134.1c21.4 0 32.1-25.9 17-41l-30.8-30.8C155 85.5 203 64 256 64c106 0 192 86 192 192s-86 192-192 192c-40.8 0-78.6-12.7-109.7-34.4c-14.5-10.1-34.4-6.6-44.6 7.9s-6.6 34.4 7.9 44.6C151.2 495 201.7 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C185.3 0 121.3 28.7 75 75zm181 53c-13.3 0-24 10.7-24 24V256c0 6.4 2.5 12.5 7 17l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-65-65V152c0-13.3-10.7-24-24-24z"]},b9={prefix:"fas",iconName:"infinity",icon:[640,512,[8734,9854],"f534","M0 241.1C0 161 65 96 145.1 96c38.5 0 75.4 15.3 102.6 42.5L320 210.7l72.2-72.2C419.5 111.3 456.4 96 494.9 96C575 96 640 161 640 241.1v29.7C640 351 575 416 494.9 416c-38.5 0-75.4-15.3-102.6-42.5L320 301.3l-72.2 72.2C220.5 400.7 183.6 416 145.1 416C65 416 0 351 0 270.9V241.1zM274.7 256l-72.2-72.2c-15.2-15.2-35.9-23.8-57.4-23.8C100.3 160 64 196.3 64 241.1v29.7c0 44.8 36.3 81.1 81.1 81.1c21.5 0 42.2-8.5 57.4-23.8L274.7 256zm90.5 0l72.2 72.2c15.2 15.2 35.9 23.8 57.4 23.8c44.8 0 81.1-36.3 81.1-81.1V241.1c0-44.8-36.3-81.1-81.1-81.1c-21.5 0-42.2 8.5-57.4 23.8L365.3 256z"]},BC={prefix:"fas",iconName:"scale-balanced",icon:[640,512,[9878,"balance-scale"],"f24e","M384 32H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H398.4c-5.2 25.8-22.9 47.1-46.4 57.3V448H512c17.7 0 32 14.3 32 32s-14.3 32-32 32H320 128c-17.7 0-32-14.3-32-32s14.3-32 32-32H288V153.3c-23.5-10.3-41.2-31.6-46.4-57.3H128c-17.7 0-32-14.3-32-32s14.3-32 32-32H256c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32zm55.6 288H584.4L512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C627.2 382 574.9 416 512 416zM126.8 195.8L54.4 320H199.3L126.8 195.8zM.9 337.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1C242 382 189.7 416 126.8 416S11.7 382 .9 337.1z"]},JC={prefix:"fas",iconName:"baht-sign",icon:[320,512,[],"e0ac","M144 0c-17.7 0-32 14.3-32 32V64H37.6C16.8 64 0 80.8 0 101.6V224v41.7V288 406.3c0 23 18.7 41.7 41.7 41.7H112v32c0 17.7 14.3 32 32 32s32-14.3 32-32V448h32c61.9 0 112-50.1 112-112c0-40.1-21.1-75.3-52.7-95.1C280.3 222.6 288 200.2 288 176c0-61.9-50.1-112-112-112V32c0-17.7-14.3-32-32-32zM112 128v96H64V128h48zm64 96V128c26.5 0 48 21.5 48 48s-21.5 48-48 48zm-64 64v96H64V288h48zm64 96V288h32c26.5 0 48 21.5 48 48s-21.5 48-48 48H176z"]},j3={prefix:"fas",iconName:"triangle-exclamation",icon:[512,512,[9888,"exclamation-triangle","warning"],"f071","M256 32c14.2 0 27.3 7.5 34.5 19.8l216 368c7.3 12.4 7.3 27.7 .2 40.1S486.3 480 472 480H40c-14.3 0-27.6-7.7-34.7-20.1s-7-27.8 .2-40.1l216-368C228.7 39.5 241.8 32 256 32zm0 128c-13.3 0-24 10.7-24 24V296c0 13.3 10.7 24 24 24s24-10.7 24-24V184c0-13.3-10.7-24-24-24zm32 224a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"]},Y8={prefix:"fas",iconName:"right-left",icon:[512,512,["exchange-alt"],"f362","M32 96l320 0V32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160L32 160c-17.7 0-32-14.3-32-32s14.3-32 32-32zM480 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H160v64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-96-96c-6-6-9.4-14.1-9.4-22.6s3.4-16.6 9.4-22.6l96-96c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 64H480z"]},yp={prefix:"fas",iconName:"user-clock",icon:[640,512,[],"f4fd","M224 0a128 128 0 1 1 0 256A128 128 0 1 1 224 0zM178.3 304h91.4c20.6 0 40.4 3.5 58.8 9.9C323 331 320 349.1 320 368c0 59.5 29.5 112.1 74.8 144H29.7C13.3 512 0 498.7 0 482.3C0 383.8 79.8 304 178.3 304zM352 368a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-80c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16h48c8.8 0 16-7.2 16-16s-7.2-16-16-16H512V304c0-8.8-7.2-16-16-16z"]},Mp={prefix:"fas",iconName:"turkish-lira-sign",icon:[384,512,["try","turkish-lira"],"e2bb","M96 32c17.7 0 32 14.3 32 32V99.3L247.2 65.2c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 165.9v29.4l119.2-34.1c17-4.9 34.7 5 39.6 22s-5 34.7-22 39.6L128 261.9V416h63.8c68.2 0 124.4-53.5 127.8-121.6l.4-8c.9-17.7 15.9-31.2 33.6-30.4s31.2 15.9 30.4 33.6l-.4 8C378.5 399.8 294.1 480 191.8 480H96c-17.7 0-32-14.3-32-32V280.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 213.6V184.1l-23.2 6.6c-17 4.9-34.7-5-39.6-22s5-34.7 22-39.6L64 117.6V64c0-17.7 14.3-32 32-32z"]},q8={prefix:"fas",iconName:"dollar-sign",icon:[320,512,[128178,61781,"dollar","usd"],"24","M160 0c17.7 0 32 14.3 32 32V67.7c1.6 .2 3.1 .4 4.7 .7c.4 .1 .7 .1 1.1 .2l48 8.8c17.4 3.2 28.9 19.9 25.7 37.2s-19.9 28.9-37.2 25.7l-47.5-8.7c-31.3-4.6-58.9-1.5-78.3 6.2s-27.2 18.3-29 28.1c-2 10.7-.5 16.7 1.2 20.4c1.8 3.9 5.5 8.3 12.8 13.2c16.3 10.7 41.3 17.7 73.7 26.3l2.9 .8c28.6 7.6 63.6 16.8 89.6 33.8c14.2 9.3 27.6 21.9 35.9 39.5c8.5 17.9 10.3 37.9 6.4 59.2c-6.9 38-33.1 63.4-65.6 76.7c-13.7 5.6-28.6 9.2-44.4 11V480c0 17.7-14.3 32-32 32s-32-14.3-32-32V445.1c-.4-.1-.9-.1-1.3-.2l-.2 0 0 0c-24.4-3.8-64.5-14.3-91.5-26.3c-16.1-7.2-23.4-26.1-16.2-42.2s26.1-23.4 42.2-16.2c20.9 9.3 55.3 18.5 75.2 21.6c31.9 4.7 58.2 2 76-5.3c16.9-6.9 24.6-16.9 26.8-28.9c1.9-10.6 .4-16.7-1.3-20.4c-1.9-4-5.6-8.4-13-13.3c-16.4-10.7-41.5-17.7-74-26.3l-2.8-.7 0 0C119.4 279.3 84.4 270 58.4 253c-14.2-9.3-27.5-22-35.8-39.6c-8.4-17.9-10.1-37.9-6.1-59.2C23.7 116 52.3 91.2 84.8 78.3c13.3-5.3 27.9-8.9 43.2-11V32c0-17.7 14.3-32 32-32z"]}},4054:(Qe,te,g)=>{"use strict";g.d(te,{En:()=>Ke,Vm:()=>oe,EH:()=>C,gp:()=>se});var e=g(7673);g(274),g(3993);var x=g(7786),f=g(1985),I=g(1413),d=g(3557),T=g(983),y=g(8810),F=g(8071);class z{constructor(Ae,we,he){this.kind=Ae,this.value=we,this.error=he,this.hasValue="N"===Ae}observe(Ae){return W(this,Ae)}do(Ae,we,he){const{kind:q,value:Re,error:Ne}=this;return"N"===q?Ae?.(Re):"E"===q?we?.(Ne):he?.()}accept(Ae,we,he){var q;return(0,F.T)(null===(q=Ae)||void 0===q?void 0:q.next)?this.observe(Ae):this.do(Ae,we,he)}toObservable(){const{kind:Ae,value:we,error:he}=this,q="N"===Ae?(0,e.of)(we):"E"===Ae?(0,y.$)(()=>he):"C"===Ae?T.w:0;if(!q)throw new TypeError(`Unexpected notification kind ${Ae}`);return q}static createNext(Ae){return new z("N",Ae)}static createError(Ae){return new z("E",void 0,Ae)}static createComplete(){return z.completeNotification}}function W(dt,Ae){var we,he,q;const{kind:Re,value:Ne,error:gt}=dt;if("string"!=typeof Re)throw new TypeError('Invalid notification, missing "kind"');"N"===Re?null===(we=Ae.next)||void 0===we||we.call(Ae,Ne):"E"===Re?null===(he=Ae.error)||void 0===he||he.call(Ae,gt):null===(q=Ae.complete)||void 0===q||q.call(Ae)}z.completeNotification=new z("C");var $=g(9974),j=g(4360),J=g(6354),ee=g(9437),ie=g(5964),ge=g(8750);function ae(dt,Ae,we,he){return(0,$.N)((q,Re)=>{let Ne;Ae&&"function"!=typeof Ae?({duration:we,element:Ne,connector:he}=Ae):Ne=Ae;const gt=new Map,$e=mi=>{gt.forEach(mi),mi(Re)},Fe=mi=>$e(Kt=>Kt.error(mi));let Ge=0,et=!1;const st=new j.H(Re,mi=>{try{const Kt=dt(mi);let Pt=gt.get(Kt);if(!Pt){gt.set(Kt,Pt=he?he():new I.B);const Xi=function Tt(mi,Kt){const Pt=new f.c(Xi=>{Ge++;const di=Kt.subscribe(Xi);return()=>{di.unsubscribe(),0==--Ge&&et&&st.unsubscribe()}});return Pt.key=mi,Pt}(Kt,Pt);if(Re.next(Xi),we){const di=(0,j._)(Pt,()=>{Pt.complete(),di?.unsubscribe()},void 0,void 0,()=>gt.delete(Kt));st.add((0,ge.Tg)(we(Xi)).subscribe(di))}}Pt.next(Ne?Ne(mi):mi)}catch(Kt){Fe(Kt)}},()=>$e(mi=>mi.complete()),Fe,()=>gt.clear(),()=>(et=!0,0===Ge));q.subscribe(st)})}var Me=g(1397);function Te(dt,Ae){return Ae?we=>we.pipe(Te((he,q)=>(0,ge.Tg)(dt(he,q)).pipe((0,J.T)((Re,Ne)=>Ae(he,Re,q,Ne))))):(0,$.N)((we,he)=>{let q=0,Re=null,Ne=!1;we.subscribe((0,j._)(he,gt=>{Re||(Re=(0,j._)(he,void 0,()=>{Re=null,Ne&&he.complete()}),(0,ge.Tg)(dt(gt,q++)).subscribe(Re))},()=>{Ne=!0,!Re&&he.complete()}))})}var D=g(6697),n=g(4438),c=g(9640);const m={dispatch:!0,functional:!1,useEffectsErrorHandler:!0},h="__@ngrx/effects_create__";function C(dt,Ae={}){const we=Ae.functional?dt:dt(),he={...m,...Ae};return Object.defineProperty(we,h,{value:he}),we}function r(dt){return Object.getPrototypeOf(dt)}function V(dt){return"function"==typeof dt}function N(dt){return dt.filter(V)}function Ee(dt,Ae,we){const he=r(dt),Re=he&&"Object"!==he.constructor.name?he.constructor.name:null,Ne=function _(dt){return function k(dt){return Object.getOwnPropertyNames(dt).filter(he=>!(!dt[he]||!dt[he].hasOwnProperty(h))&&dt[he][h].hasOwnProperty("dispatch")).map(he=>({propertyName:he,...dt[he][h]}))}(dt)}(dt).map(({propertyName:gt,dispatch:$e,useEffectsErrorHandler:Fe})=>{const Ge="function"==typeof dt[gt]?dt[gt]():dt[gt],et=Fe?we(Ge,Ae):Ge;return!1===$e?et.pipe((0,d.w)()):et.pipe(function Q(){return(0,$.N)((dt,Ae)=>{dt.subscribe((0,j._)(Ae,we=>{Ae.next(z.createNext(we))},()=>{Ae.next(z.createComplete()),Ae.complete()},we=>{Ae.next(z.createError(we)),Ae.complete()}))})}()).pipe((0,J.T)(Tt=>({effect:dt[gt],notification:Tt,propertyName:gt,sourceName:Re,sourceInstance:dt})))});return(0,x.h)(...Ne)}function qe(dt,Ae,we=10){return dt.pipe((0,ee.W)(he=>(Ae&&Ae.handleError(he),we<=1?dt:qe(dt,Ae,we-1))))}let Ke=(()=>{class dt extends f.c{constructor(we){super(),we&&(this.source=we)}lift(we){const he=new dt;return he.source=this,he.operator=we,he}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(c.sA))};static#t=this.\u0275prov=n.jDH({token:dt,factory:dt.\u0275fac,providedIn:"root"})}return dt})();function se(...dt){return(0,ie.p)(Ae=>dt.some(we=>"string"==typeof we?we===Ae.type:we.type===Ae.type))}const X=new n.nKC("@ngrx/effects Internal Root Guard"),me=new n.nKC("@ngrx/effects User Provided Effects"),ce=new n.nKC("@ngrx/effects Internal Root Effects"),fe=new n.nKC("@ngrx/effects Internal Root Effects Instances"),ke=new n.nKC("@ngrx/effects Internal Feature Effects"),mt=new n.nKC("@ngrx/effects Internal Feature Effects Instance Groups"),_e=new n.nKC("@ngrx/effects Effects Error Handler",{providedIn:"root",factory:()=>qe}),be="@ngrx/effects/init";(0,c.VP)(be);function Xe(dt){return yt(dt,"ngrxOnInitEffects")}function yt(dt,Ae){return dt&&Ae in dt&&"function"==typeof dt[Ae]}let Ye=(()=>{class dt extends I.B{constructor(we,he){super(),this.errorHandler=we,this.effectsErrorHandler=he}addEffects(we){this.next(we)}toActions(){return this.pipe(ae(we=>function v(dt){return!!dt.constructor&&"Object"!==dt.constructor.name&&"Function"!==dt.constructor.name}(we)?r(we):we),(0,Me.Z)(we=>we.pipe(ae(rt))),(0,Me.Z)(we=>{const he=we.pipe(Te(Re=>function Yt(dt,Ae){return we=>{const he=Ee(we,dt,Ae);return function Ie(dt){return yt(dt,"ngrxOnRunEffects")}(we)?we.ngrxOnRunEffects(he):he}}(this.errorHandler,this.effectsErrorHandler)(Re)),(0,J.T)(Re=>(function Ze(dt,Ae){if("N"===dt.notification.kind){const we=dt.notification.value;!function _t(dt){return"function"!=typeof dt&&dt&&dt.type&&"string"==typeof dt.type}(we)&&Ae.handleError(new Error(`Effect ${function at({propertyName:dt,sourceInstance:Ae,sourceName:we}){const he="function"==typeof Ae[dt];return we?`"${we}.${String(dt)}${he?"()":""}"`:`"${String(dt)}()"`}(dt)} dispatched an invalid action: ${function pt(dt){try{return JSON.stringify(dt)}catch{return dt}}(we)}`))}}(Re,this.errorHandler),Re.notification)),(0,ie.p)(Re=>"N"===Re.kind&&null!=Re.value),function de(){return(0,$.N)((dt,Ae)=>{dt.subscribe((0,j._)(Ae,we=>W(we,Ae)))})}()),q=we.pipe((0,D.s)(1),(0,ie.p)(Xe),(0,J.T)(Re=>Re.ngrxOnInitEffects()));return(0,x.h)(he,q)}))}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(n.zcH),n.KVO(_e))};static#t=this.\u0275prov=n.jDH({token:dt,factory:dt.\u0275fac,providedIn:"root"})}return dt})();function rt(dt){return function ye(dt){return yt(dt,"ngrxOnIdentifyEffects")}(dt)?dt.ngrxOnIdentifyEffects():""}let Nt=(()=>{class dt{get isStarted(){return!!this.effectsSubscription}constructor(we,he){this.effectSources=we,this.store=he,this.effectsSubscription=null}start(){this.effectsSubscription||(this.effectsSubscription=this.effectSources.toActions().subscribe(this.store))}ngOnDestroy(){this.effectsSubscription&&(this.effectsSubscription.unsubscribe(),this.effectsSubscription=null)}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(Ye),n.KVO(c.il))};static#t=this.\u0275prov=n.jDH({token:dt,factory:dt.\u0275fac,providedIn:"root"})}return dt})(),Et=(()=>{class dt{constructor(we,he,q,Re,Ne,gt,$e){this.sources=we,he.start();for(const Fe of Re)we.addEffects(Fe);q.dispatch({type:be})}addEffects(we){this.sources.addEffects(we)}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(Ye),n.KVO(Nt),n.KVO(c.il),n.KVO(fe),n.KVO(c.wc,8),n.KVO(c.ae,8),n.KVO(X,8))};static#t=this.\u0275mod=n.$C({type:dt});static#i=this.\u0275inj=n.G2t({})}return dt})(),Vt=(()=>{class dt{constructor(we,he,q,Re){const Ne=he.flat();for(const gt of Ne)we.addEffects(gt)}static#e=this.\u0275fac=function(he){return new(he||dt)(n.KVO(Et),n.KVO(mt),n.KVO(c.wc,8),n.KVO(c.ae,8))};static#t=this.\u0275mod=n.$C({type:dt});static#i=this.\u0275inj=n.G2t({})}return dt})(),oe=(()=>{class dt{static forFeature(...we){const he=we.flat(),q=N(he);return{ngModule:Vt,providers:[q,{provide:ke,multi:!0,useValue:he},{provide:me,multi:!0,useValue:[]},{provide:mt,multi:!0,useFactory:tt,deps:[ke,me]}]}}static forRoot(...we){const he=we.flat(),q=N(he);return{ngModule:Et,providers:[q,{provide:ce,useValue:[he]},{provide:X,useFactory:$t},{provide:me,multi:!0,useValue:[]},{provide:fe,useFactory:tt,deps:[ce,me]}]}}static#e=this.\u0275fac=function(he){return new(he||dt)};static#t=this.\u0275mod=n.$C({type:dt});static#i=this.\u0275inj=n.G2t({})}return dt})();function tt(dt,Ae){const we=[];for(const he of dt)we.push(...he);for(const he of Ae)we.push(...he);return we.map(he=>function ne(dt){return dt instanceof n.nKC||V(dt)}(he)?(0,n.WQX)(he):he)}function $t(){const dt=(0,n.WQX)(Nt,{optional:!0,skipSelf:!0}),Ae=(0,n.WQX)(ce,{self:!0});if((1!==Ae.length||0!==Ae[0].length)&&dt)throw new TypeError("EffectsModule.forRoot() called twice. Feature modules should use EffectsModule.forFeature() instead.");return"guarded"}},9640:(Qe,te,g)=>{"use strict";g.d(te,{SS:()=>de,Zz:()=>Te,N_:()=>m,Bh:()=>at,QU:()=>_t,sA:()=>ue,h1:()=>He,il:()=>rt,ae:()=>rr,md:()=>Rn,wc:()=>Qn,q6:()=>pt,VP:()=>W,UX:()=>Kt,vy:()=>Oi,Mz:()=>st,on:()=>_i,xk:()=>$});var e=g(4438),t=g(4412),w=g(1985),S=g(1413),l=g(7242),x=g(941),f=g(3993),I=g(2816),d=g(6354),y=g(3294),F=g(9079);const R={};function W(jt,Ci){if(R[jt]=(R[jt]||0)+1,"function"==typeof Ci)return Q(jt,(...yi)=>({...Ci(...yi),type:jt}));switch(Ci?Ci._as:"empty"){case"empty":return Q(jt,()=>({type:jt}));case"props":return Q(jt,yi=>({...yi,type:jt}));default:throw new Error("Unexpected config.")}}function $(){return{_as:"props",_p:void 0}}function Q(jt,Ci){return Object.defineProperty(Ci,"type",{value:jt,writable:!1})}const Te="@ngrx/store/init";let de=(()=>{class jt extends t.t{constructor(){super({type:Te})}next(hi){if("function"==typeof hi)throw new TypeError("\n Dispatch expected an object, instead it received a function.\n If you're using the createAction function, make sure to invoke the function\n before dispatching the action. For example, someAction should be someAction().");if(typeof hi>"u")throw new TypeError("Actions must be objects");if(typeof hi.type>"u")throw new TypeError("Actions must have a type property");super.next(hi)}complete(){}ngOnDestroy(){super.complete()}static#e=this.\u0275fac=function(yi){return new(yi||jt)};static#t=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();const D=[de],n=new e.nKC("@ngrx/store Internal Root Guard"),c=new e.nKC("@ngrx/store Internal Initial State"),m=new e.nKC("@ngrx/store Initial State"),h=new e.nKC("@ngrx/store Reducer Factory"),C=new e.nKC("@ngrx/store Internal Reducer Factory Provider"),k=new e.nKC("@ngrx/store Initial Reducers"),L=new e.nKC("@ngrx/store Internal Initial Reducers"),_=new e.nKC("@ngrx/store Store Features"),r=new e.nKC("@ngrx/store Internal Store Reducers"),v=new e.nKC("@ngrx/store Internal Feature Reducers"),V=new e.nKC("@ngrx/store Internal Feature Configs"),N=new e.nKC("@ngrx/store Internal Store Features"),ne=new e.nKC("@ngrx/store Internal Feature Reducers Token"),Ee=new e.nKC("@ngrx/store Feature Reducers"),ze=new e.nKC("@ngrx/store User Provided Meta Reducers"),qe=new e.nKC("@ngrx/store Meta Reducers"),Ke=new e.nKC("@ngrx/store Internal Resolved Meta Reducers"),se=new e.nKC("@ngrx/store User Runtime Checks Config"),X=new e.nKC("@ngrx/store Internal User Runtime Checks Config"),me=new e.nKC("@ngrx/store Internal Runtime Checks"),ce=new e.nKC("@ngrx/store Check if Action types are unique");function mt(jt,Ci={}){const hi=Object.keys(jt),yi={};for(let ji=0;jiji(Vi),hi(Ci))}}function pe(jt,Ci){return Array.isArray(Ci)&&Ci.length>0&&(jt=be.apply(null,[...Ci,jt])),(hi,yi)=>{const Vi=jt(hi);return(ji,rn)=>Vi(ji=void 0===ji?yi:ji,rn)}}new e.nKC("@ngrx/store Root Store Provider"),new e.nKC("@ngrx/store Feature State Provider");class _t extends w.c{}class at extends de{}const pt="@ngrx/store/update-reducers";let Xt=(()=>{class jt extends t.t{get currentReducers(){return this.reducers}constructor(hi,yi,Vi,ji){super(ji(Vi,yi)),this.dispatcher=hi,this.initialState=yi,this.reducers=Vi,this.reducerFactory=ji}addFeature(hi){this.addFeatures([hi])}addFeatures(hi){const yi=hi.reduce((Vi,{reducers:ji,reducerFactory:rn,metaReducers:ar,initialState:sr,key:nr})=>{const or="function"==typeof ji?function Ze(jt){const Ci=Array.isArray(jt)&&jt.length>0?be(...jt):hi=>hi;return(hi,yi)=>(hi=Ci(hi),(Vi,ji)=>hi(Vi=void 0===Vi?yi:Vi,ji))}(ar)(ji,sr):pe(rn,ar)(ji,sr);return Vi[nr]=or,Vi},{});this.addReducers(yi)}removeFeature(hi){this.removeFeatures([hi])}removeFeatures(hi){this.removeReducers(hi.map(yi=>yi.key))}addReducer(hi,yi){this.addReducers({[hi]:yi})}addReducers(hi){this.reducers={...this.reducers,...hi},this.updateReducers(Object.keys(hi))}removeReducer(hi){this.removeReducers([hi])}removeReducers(hi){hi.forEach(yi=>{this.reducers=function _e(jt,Ci){return Object.keys(jt).filter(hi=>hi!==Ci).reduce((hi,yi)=>Object.assign(hi,{[yi]:jt[yi]}),{})}(this.reducers,yi)}),this.updateReducers(hi)}updateReducers(hi){this.next(this.reducerFactory(this.reducers,this.initialState)),this.dispatcher.next({type:pt,features:hi})}ngOnDestroy(){this.complete()}static#e=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(at),e.KVO(m),e.KVO(k),e.KVO(h))};static#t=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();const ye=[Xt,{provide:_t,useExisting:Xt},{provide:at,useExisting:de}];let ue=(()=>{class jt extends S.B{ngOnDestroy(){this.complete()}static#e=this.\u0275fac=(()=>{let hi;return function(Vi){return(hi||(hi=e.xGo(jt)))(Vi||jt)}})();static#t=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();const Ie=[ue];class He extends w.c{}let Xe=(()=>{class jt extends t.t{static#e=this.INIT=Te;constructor(hi,yi,Vi,ji){super(ji);const nr=hi.pipe((0,x.Q)(l.T)).pipe((0,f.E)(yi)).pipe((0,I.S)(yt,{state:ji}));this.stateSubscription=nr.subscribe(({state:or,action:Xr})=>{this.next(or),Vi.next(Xr)}),this.state=(0,F.ot)(this,{manualCleanup:!0,requireSync:!0})}ngOnDestroy(){this.stateSubscription.unsubscribe(),this.complete()}static#t=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(de),e.KVO(_t),e.KVO(ue),e.KVO(m))};static#i=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();function yt(jt={state:void 0},[Ci,hi]){const{state:yi}=jt;return{state:hi(yi,Ci),action:Ci}}const Ye=[Xe,{provide:He,useExisting:Xe}];let rt=(()=>{class jt extends w.c{constructor(hi,yi,Vi){super(),this.actionsObserver=yi,this.reducerManager=Vi,this.source=hi,this.state=hi.state}select(hi,...yi){return Nt.call(null,hi,...yi)(this)}selectSignal(hi,yi){return(0,e.EWP)(()=>hi(this.state()),yi)}lift(hi){const yi=new jt(this,this.actionsObserver,this.reducerManager);return yi.operator=hi,yi}dispatch(hi){this.actionsObserver.next(hi)}next(hi){this.actionsObserver.next(hi)}error(hi){this.actionsObserver.error(hi)}complete(){this.actionsObserver.complete()}addReducer(hi,yi){this.reducerManager.addReducer(hi,yi)}removeReducer(hi){this.reducerManager.removeReducer(hi)}static#e=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(He),e.KVO(de),e.KVO(Xt))};static#t=this.\u0275prov=e.jDH({token:jt,factory:jt.\u0275fac})}return jt})();const Yt=[rt];function Nt(jt,Ci,...hi){return function(Vi){let ji;if("string"==typeof jt){const rn=[Ci,...hi].filter(Boolean);ji=Vi.pipe(function T(...jt){const Ci=jt.length;if(0===Ci)throw new Error("list of properties cannot be empty.");return(0,d.T)(hi=>{let yi=hi;for(let Vi=0;Vijt(rn,Ci)))}return ji.pipe((0,y.F)())}}const Et="https://ngrx.io/guide/store/configuration/runtime-checks";function Vt(jt){return void 0===jt}function oe(jt){return null===jt}function tt(jt){return Array.isArray(jt)}function St(jt){return"object"==typeof jt&&null!==jt}function we(jt){return"function"==typeof jt}let Re=!1;function $e(jt,Ci){return jt===Ci}function et(jt,Ci=$e,hi=$e){let ji,yi=null,Vi=null;return{memoized:function nr(){if(void 0!==ji)return ji.result;if(!yi)return Vi=jt.apply(null,arguments),yi=arguments,Vi;if(!function Fe(jt,Ci,hi){for(let yi=0;yi"function"==typeof Ci)}(yi[0])&&(yi=function Xi(jt){const Ci=Object.values(jt),hi=Object.keys(jt);return[...Ci,(...Vi)=>hi.reduce((ji,rn,ar)=>({...ji,[rn]:Vi[ar]}),{})]}(yi[0]));const Vi=yi.slice(0,yi.length-1),ji=yi[yi.length-1],rn=Vi.filter(or=>or.release&&"function"==typeof or.release),ar=jt(function(...or){return ji.apply(null,or)}),sr=et(function(or,Xr){return Ci.stateFn.apply(null,[or,Vi,Xr,ar])});return Object.assign(sr.memoized,{release:function nr(){sr.reset(),ar.reset(),rn.forEach(or=>or.release())},projector:ar.memoized,setResult:sr.setResult,clearResult:sr.clearResult})}}(et)(...jt)}function Tt(jt,Ci,hi,yi){if(void 0===hi){const ji=Ci.map(rn=>rn(jt));return yi.memoized.apply(null,ji)}const Vi=Ci.map(ji=>ji(jt,hi));return yi.memoized.apply(null,[...Vi,hi])}function Kt(jt){return st(Ci=>{const hi=Ci[jt];return!function gt(){return Re}()&&(0,e.naY)()&&!(jt in Ci)&&console.warn(`@ngrx/store: The feature name "${jt}" does not exist in the state, therefore createFeatureSelector cannot access it. Be sure it is imported in a loaded module using StoreModule.forRoot('${jt}', ...) or StoreModule.forFeature('${jt}', ...). If the default state is intended to be undefined, as is the case with router state, this development-only warning message can be ignored.`),hi},Ci=>Ci)}function Qi(jt){return jt instanceof e.nKC?(0,e.WQX)(jt):jt}function Li(jt,Ci){return Ci.map((hi,yi)=>{if(jt[yi]instanceof e.nKC){const Vi=(0,e.WQX)(jt[yi]);return{key:hi.key,reducerFactory:Vi.reducerFactory?Vi.reducerFactory:mt,metaReducers:Vi.metaReducers?Vi.metaReducers:[],initialState:Vi.initialState}}return hi})}function Zi(jt){return jt.map(Ci=>Ci instanceof e.nKC?(0,e.WQX)(Ci):Ci)}function Qt(jt){return"function"==typeof jt?jt():jt}function Mt(jt,Ci){return jt.concat(Ci)}function it(){if((0,e.WQX)(rt,{optional:!0,skipSelf:!0}))throw new TypeError("The root Store has been provided more than once. Feature modules should provide feature states instead.");return"guarded"}function wt(jt){Object.freeze(jt);const Ci=we(jt);return Object.getOwnPropertyNames(jt).forEach(hi=>{if(!hi.startsWith("\u0275")&&function q(jt,Ci){return Object.prototype.hasOwnProperty.call(jt,Ci)}(jt,hi)&&(!Ci||"caller"!==hi&&"callee"!==hi&&"arguments"!==hi)){const yi=jt[hi];(St(yi)||we(yi))&&!Object.isFrozen(yi)&&wt(yi)}}),jt}function xi(jt,Ci=[]){return(Vt(jt)||oe(jt))&&0===Ci.length?{path:["root"],value:jt}:Object.keys(jt).reduce((yi,Vi)=>{if(yi)return yi;const ji=jt[Vi];return function he(jt){return we(jt)&&jt.hasOwnProperty("\u0275cmp")}(ji)?yi:!(Vt(ji)||oe(ji)||function Jt(jt){return"number"==typeof jt}(ji)||function zt(jt){return"boolean"==typeof jt}(ji)||function $t(jt){return"string"==typeof jt}(ji)||tt(ji))&&(function Ae(jt){if(!function dt(jt){return St(jt)&&!tt(jt)}(jt))return!1;const Ci=Object.getPrototypeOf(jt);return Ci===Object.prototype||null===Ci}(ji)?xi(ji,[...Ci,Vi]):{path:[...Ci,Vi],value:ji})},!1)}function Si(jt,Ci){if(!1===jt)return;const hi=jt.path.join("."),yi=new Error(`Detected unserializable ${Ci} at "${hi}". ${Et}#strict${Ci}serializability`);throw yi.value=jt.value,yi.unserializablePath=hi,yi}function en(jt){return(0,e.naY)()?{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!0,strictActionImmutability:!0,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1,...jt}:{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!1,strictActionImmutability:!1,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1}}function Ni({strictActionSerializability:jt,strictStateSerializability:Ci}){return hi=>jt||Ci?function Ut(jt,Ci){return function(hi,yi){Ci.action(yi)&&Si(xi(yi),"action");const Vi=jt(hi,yi);return Ci.state()&&Si(xi(Vi),"state"),Vi}}(hi,{action:yi=>jt&&!Zt(yi),state:()=>Ci}):hi}function fn({strictActionImmutability:jt,strictStateImmutability:Ci}){return hi=>jt||Ci?function ct(jt,Ci){return function(hi,yi){const Vi=Ci.action(yi)?wt(yi):yi,ji=jt(hi,Vi);return Ci.state()?wt(ji):ji}}(hi,{action:yi=>jt&&!Zt(yi),state:()=>Ci}):hi}function Zt(jt){return jt.type.startsWith("@ngrx")}function bt({strictActionWithinNgZone:jt}){return Ci=>jt?function zi(jt,Ci){return function(hi,yi){if(Ci.action(yi)&&!e.SKi.isInAngularZone())throw new Error(`Action '${yi.type}' running outside NgZone. ${Et}#strictactionwithinngzone`);return jt(hi,yi)}}(Ci,{action:hi=>jt&&!Zt(hi)}):Ci}function re(jt){return[{provide:X,useValue:jt},{provide:se,useFactory:Ce,deps:[X]},{provide:me,deps:[se],useFactory:en},{provide:qe,multi:!0,deps:[me],useFactory:fn},{provide:qe,multi:!0,deps:[me],useFactory:Ni},{provide:qe,multi:!0,deps:[me],useFactory:bt}]}function je(){return[{provide:ce,multi:!0,deps:[me],useFactory:ot}]}function Ce(jt){return jt}function ot(jt){if(!jt.strictActionTypeUniqueness)return;const Ci=Object.entries(R).filter(([,hi])=>hi>1).map(([hi])=>hi);if(Ci.length)throw new Error(`Action types are registered more than once, ${Ci.map(hi=>`"${hi}"`).join(", ")}. ${Et}#strictactiontypeuniqueness`)}function ii(jt={},Ci={}){return[{provide:n,useFactory:it},{provide:c,useValue:Ci.initialState},{provide:m,useFactory:Qt,deps:[c]},{provide:L,useValue:jt},{provide:r,useExisting:jt instanceof e.nKC?jt:L},{provide:k,deps:[L,[new e.y_5(r)]],useFactory:Qi},{provide:ze,useValue:Ci.metaReducers?Ci.metaReducers:[]},{provide:Ke,deps:[qe,ze],useFactory:Mt},{provide:C,useValue:Ci.reducerFactory?Ci.reducerFactory:mt},{provide:h,deps:[C,Ke],useFactory:pe},D,ye,Ie,Ye,Yt,re(Ci.runtimeChecks),je()]}function Yn(jt,Ci,hi={}){return[{provide:V,multi:!0,useValue:jt instanceof Object?{}:hi},{provide:_,multi:!0,useValue:{key:jt instanceof Object?jt.name:jt,reducerFactory:hi instanceof e.nKC||!hi.reducerFactory?mt:hi.reducerFactory,metaReducers:hi instanceof e.nKC||!hi.metaReducers?[]:hi.metaReducers,initialState:hi instanceof e.nKC||!hi.initialState?void 0:hi.initialState}},{provide:N,deps:[V,_],useFactory:Li},{provide:v,multi:!0,useValue:jt instanceof Object?jt.reducer:Ci},{provide:ne,multi:!0,useExisting:Ci instanceof e.nKC?Ci:v},{provide:Ee,multi:!0,deps:[v,[new e.y_5(ne)]],useFactory:Zi},je()]}let Qn=(()=>{class jt{constructor(hi,yi,Vi,ji,rn,ar){}static#e=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(de),e.KVO(_t),e.KVO(ue),e.KVO(rt),e.KVO(n,8),e.KVO(ce,8))};static#t=this.\u0275mod=e.$C({type:jt});static#i=this.\u0275inj=e.G2t({})}return jt})(),rr=(()=>{class jt{constructor(hi,yi,Vi,ji,rn){this.features=hi,this.featureReducers=yi,this.reducerManager=Vi;const ar=hi.map((sr,nr)=>{const Xr=yi.shift()[nr];return{...sr,reducers:Xr,initialState:Qt(sr.initialState)}});Vi.addFeatures(ar)}ngOnDestroy(){this.reducerManager.removeFeatures(this.features)}static#e=this.\u0275fac=function(yi){return new(yi||jt)(e.KVO(N),e.KVO(Ee),e.KVO(Xt),e.KVO(Qn),e.KVO(ce,8))};static#t=this.\u0275mod=e.$C({type:jt});static#i=this.\u0275inj=e.G2t({})}return jt})(),Rn=(()=>{class jt{static forRoot(hi,yi){return{ngModule:Qn,providers:[...ii(hi,yi)]}}static forFeature(hi,yi,Vi={}){return{ngModule:rr,providers:[...Yn(hi,yi,Vi)]}}static#e=this.\u0275fac=function(yi){return new(yi||jt)};static#t=this.\u0275mod=e.$C({type:jt});static#i=this.\u0275inj=e.G2t({})}return jt})();function _i(...jt){return{reducer:jt.pop(),types:jt.map(yi=>yi.type)}}function Oi(jt,...Ci){const hi=new Map;for(const yi of Ci)for(const Vi of yi.types){const ji=hi.get(Vi);hi.set(Vi,ji?(ar,sr)=>yi.reducer(ji(ar,sr),sr):yi.reducer)}return function(yi=jt,Vi){const ji=hi.get(Vi.type);return ji?ji(yi,Vi):yi}}},6064:(Qe,te,g)=>{"use strict";g.d(te,{Dl:()=>c6,L8:()=>um,dV:()=>C3});var e=g(4438),t=g(177),w=g(1635),S=g(6939),l=g(3726),x=g(152),f=g(9969);function I(){}function d(u){return null==u?I:function(){return this.querySelector(u)}}function F(){return[]}function R(u){return null==u?F:function(){return this.querySelectorAll(u)}}function $(u){return function(){return this.matches(u)}}function j(u){return function(A){return A.matches(u)}}var Q=Array.prototype.find;function ee(){return this.firstElementChild}var ge=Array.prototype.filter;function ae(){return Array.from(this.children)}function D(u){return new Array(u.length)}function c(u,A){this.ownerDocument=u.ownerDocument,this.namespaceURI=u.namespaceURI,this._next=null,this._parent=u,this.__data__=A}function h(u,A,o,M,B,Y){for(var Ct,Le=0,Gt=A.length,Ht=Y.length;LeA?1:u>=A?0:NaN}c.prototype={constructor:c,appendChild:function(u){return this._parent.insertBefore(u,this._next)},insertBefore:function(u,A){return this._parent.insertBefore(u,A)},querySelector:function(u){return this._parent.querySelector(u)},querySelectorAll:function(u){return this._parent.querySelectorAll(u)}};var ce="http://www.w3.org/1999/xhtml";const fe={svg:"http://www.w3.org/2000/svg",xhtml:ce,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function ke(u){var A=u+="",o=A.indexOf(":");return o>=0&&"xmlns"!==(A=u.slice(0,o))&&(u=u.slice(o+1)),fe.hasOwnProperty(A)?{space:fe[A],local:u}:u}function mt(u){return function(){this.removeAttribute(u)}}function _e(u){return function(){this.removeAttributeNS(u.space,u.local)}}function be(u,A){return function(){this.setAttribute(u,A)}}function pe(u,A){return function(){this.setAttributeNS(u.space,u.local,A)}}function Ze(u,A){return function(){var o=A.apply(this,arguments);null==o?this.removeAttribute(u):this.setAttribute(u,o)}}function _t(u,A){return function(){var o=A.apply(this,arguments);null==o?this.removeAttributeNS(u.space,u.local):this.setAttributeNS(u.space,u.local,o)}}function pt(u){return u.ownerDocument&&u.ownerDocument.defaultView||u.document&&u||u.defaultView}function Xt(u){return function(){this.style.removeProperty(u)}}function ye(u,A,o){return function(){this.style.setProperty(u,A,o)}}function ue(u,A,o){return function(){var M=A.apply(this,arguments);null==M?this.style.removeProperty(u):this.style.setProperty(u,M,o)}}function He(u,A){return u.style.getPropertyValue(A)||pt(u).getComputedStyle(u,null).getPropertyValue(A)}function Xe(u){return function(){delete this[u]}}function yt(u,A){return function(){this[u]=A}}function Ye(u,A){return function(){var o=A.apply(this,arguments);null==o?delete this[u]:this[u]=o}}function Yt(u){return u.trim().split(/^|\s+/)}function Nt(u){return u.classList||new Et(u)}function Et(u){this._node=u,this._names=Yt(u.getAttribute("class")||"")}function Vt(u,A){for(var o=Nt(u),M=-1,B=A.length;++M=0&&(this._names.splice(A,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(u){return this._names.indexOf(u)>=0}};var en=[null];function Ni(u,A){this._groups=u,this._parents=A}function fn(){return new Ni([[document.documentElement]],en)}Ni.prototype=fn.prototype={constructor:Ni,select:function T(u){"function"!=typeof u&&(u=d(u));for(var A=this._groups,o=A.length,M=new Array(o),B=0;B=_n&&(_n=Ln+1);!(Xn=ki[_n])&&++_n=0;)(Le=M[B])&&(Y&&4^Le.compareDocumentPosition(Y)&&Y.parentNode.insertBefore(Le,Y),Y=Le);return this},sort:function ne(u){function A(gi,wi){return gi&&wi?u(gi.__data__,wi.__data__):!gi-!wi}u||(u=Ee);for(var o=this._groups,M=o.length,B=new Array(M),Y=0;Y1?this.each((null==A?Xt:"function"==typeof A?ue:ye)(u,A,o??"")):He(this.node(),u)},property:function rt(u,A){return arguments.length>1?this.each((null==A?Xe:"function"==typeof A?Ye:yt)(u,A)):this.node()[u]},classed:function Jt(u,A){var o=Yt(u+"");if(arguments.length<2){for(var M=Nt(this.node()),B=-1,Y=o.length;++B=0&&(o=A.slice(M+1),A=A.slice(0,M)),{type:A,name:o}})}(u+""),Y=M.length;if(!(arguments.length<2)){for(Ct=A?it:Mt,B=0;B{}};function Ce(){for(var M,u=0,A=arguments.length,o={};u=0&&(M=o.slice(B+1),o=o.slice(0,B)),o&&!A.hasOwnProperty(o))throw new Error("unknown type: "+o);return{type:o,name:M}})}(u+"",o),Y=-1,Le=M.length;if(!(arguments.length<2)){if(null!=A&&"function"!=typeof A)throw new Error("invalid callback: "+A);for(;++Y0)for(var B,Y,o=new Array(B),M=0;M>8&15|A>>4&240,A>>4&15|240&A,(15&A)<<4|15&A,1):8===o?Ea(A>>24&255,A>>16&255,A>>8&255,(255&A)/255):4===o?Ea(A>>12&15|A>>8&240,A>>8&15|A>>4&240,A>>4&15|240&A,((15&A)<<4|15&A)/255):null):(A=rn.exec(u))?new xr(A[1],A[2],A[3],1):(A=ar.exec(u))?new xr(255*A[1]/100,255*A[2]/100,255*A[3]/100,1):(A=sr.exec(u))?Ea(A[1],A[2],A[3],A[4]):(A=nr.exec(u))?Ea(255*A[1]/100,255*A[2]/100,255*A[3]/100,A[4]):(A=or.exec(u))?Co(A[1],A[2]/100,A[3]/100,1):(A=Xr.exec(u))?Co(A[1],A[2]/100,A[3]/100,A[4]):Sr.hasOwnProperty(u)?Ma(Sr[u]):"transparent"===u?new xr(NaN,NaN,NaN,0):null}function Ma(u){return new xr(u>>16&255,u>>8&255,255&u,1)}function Ea(u,A,o,M){return M<=0&&(u=A=o=NaN),new xr(u,A,o,M)}function ho(u,A,o,M){return 1===arguments.length?function no(u){return u instanceof Oi||(u=Rr(u)),u?new xr((u=u.rgb()).r,u.g,u.b,u.opacity):new xr}(u):new xr(u,A,o,M??1)}function xr(u,A,o,M){this.r=+u,this.g=+A,this.b=+o,this.opacity=+M}function Sa(){return`#${Ta(this.r)}${Ta(this.g)}${Ta(this.b)}`}function ro(){const u=hn(this.opacity);return`${1===u?"rgb(":"rgba("}${Yr(this.r)}, ${Yr(this.g)}, ${Yr(this.b)}${1===u?")":`, ${u})`}`}function hn(u){return isNaN(u)?1:Math.max(0,Math.min(1,u))}function Yr(u){return Math.max(0,Math.min(255,Math.round(u)||0))}function Ta(u){return((u=Yr(u))<16?"0":"")+u.toString(16)}function Co(u,A,o,M){return M<=0?u=A=o=NaN:o<=0||o>=1?u=A=NaN:A<=0&&(u=NaN),new da(u,A,o,M)}function wo(u){if(u instanceof da)return new da(u.h,u.s,u.l,u.opacity);if(u instanceof Oi||(u=Rr(u)),!u)return new da;if(u instanceof da)return u;var A=(u=u.rgb()).r/255,o=u.g/255,M=u.b/255,B=Math.min(A,o,M),Y=Math.max(A,o,M),Le=NaN,Ct=Y-B,Gt=(Y+B)/2;return Ct?(Le=A===Y?(o-M)/Ct+6*(o0&&Gt<1?0:Le,new da(Le,Ct,Gt,u.opacity)}function da(u,A,o,M){this.h=+u,this.s=+A,this.l=+o,this.opacity=+M}function ao(u){return(u=(u||0)%360)<0?u+360:u}function Oa(u){return Math.max(0,Math.min(1,u||0))}function ns(u,A,o){return 255*(u<60?A+(o-A)*u/60:u<180?o:u<240?A+(o-A)*(240-u)/60:A)}function Fa(u,A,o,M,B){var Y=u*u,Le=Y*u;return((1-3*u+3*Y-Le)*A+(4-6*Y+3*Le)*o+(1+3*u+3*Y-3*Le)*M+Le*B)/6}Rn(Oi,Rr,{copy(u){return Object.assign(new this.constructor,this,u)},displayable(){return this.rgb().displayable()},hex:zr,formatHex:zr,formatHex8:function Ho(){return this.rgb().formatHex8()},formatHsl:function xo(){return wo(this).formatHsl()},formatRgb:is,toString:is}),Rn(xr,ho,_i(Oi,{brighter(u){return u=null==u?Ci:Math.pow(Ci,u),new xr(this.r*u,this.g*u,this.b*u,this.opacity)},darker(u){return u=null==u?.7:Math.pow(.7,u),new xr(this.r*u,this.g*u,this.b*u,this.opacity)},rgb(){return this},clamp(){return new xr(Yr(this.r),Yr(this.g),Yr(this.b),hn(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:Sa,formatHex:Sa,formatHex8:function zn(){return`#${Ta(this.r)}${Ta(this.g)}${Ta(this.b)}${Ta(255*(isNaN(this.opacity)?1:this.opacity))}`},formatRgb:ro,toString:ro})),Rn(da,function zo(u,A,o,M){return 1===arguments.length?wo(u):new da(u,A,o,M??1)},_i(Oi,{brighter(u){return u=null==u?Ci:Math.pow(Ci,u),new da(this.h,this.s,this.l*u,this.opacity)},darker(u){return u=null==u?.7:Math.pow(.7,u),new da(this.h,this.s,this.l*u,this.opacity)},rgb(){var u=this.h%360+360*(this.h<0),A=isNaN(u)||isNaN(this.s)?0:this.s,o=this.l,M=o+(o<.5?o:1-o)*A,B=2*o-M;return new xr(ns(u>=240?u-240:u+120,B,M),ns(u,B,M),ns(u<120?u+240:u-120,B,M),this.opacity)},clamp(){return new da(ao(this.h),Oa(this.s),Oa(this.l),hn(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const u=hn(this.opacity);return`${1===u?"hsl(":"hsla("}${ao(this.h)}, ${100*Oa(this.s)}%, ${100*Oa(this.l)}%${1===u?")":`, ${u})`}`}}));const ha=u=>()=>u;function Na(u,A){var o=A-u;return o?function Br(u,A){return function(o){return u+o*A}}(u,o):ha(isNaN(u)?A:u)}const ja=function u(A){var o=function Ga(u){return 1==(u=+u)?Na:function(A,o){return o-A?function Ua(u,A,o){return u=Math.pow(u,o),A=Math.pow(A,o)-u,o=1/o,function(M){return Math.pow(u+M*A,o)}}(A,o,u):ha(isNaN(A)?o:A)}}(A);function M(B,Y){var Le=o((B=ho(B)).r,(Y=ho(Y)).r),Ct=o(B.g,Y.g),Gt=o(B.b,Y.b),Ht=Na(B.opacity,Y.opacity);return function(li){return B.r=Le(li),B.g=Ct(li),B.b=Gt(li),B.opacity=Ht(li),B+""}}return M.gamma=u,M}(1);function Bo(u){return function(A){var Le,Ct,o=A.length,M=new Array(o),B=new Array(o),Y=new Array(o);for(Le=0;Le=1?(o=1,A-1):Math.floor(o*A),B=u[M],Y=u[M+1];return Fa((o-M/A)*A,M>0?u[M-1]:2*B-Y,B,Y,Mo&&(Y=A.slice(o,Y),Ct[Le]?Ct[Le]+=Y:Ct[++Le]=Y),(M=M[0])===(B=B[0])?Ct[Le]?Ct[Le]+=B:Ct[++Le]=B:(Ct[++Le]=null,Gt.push({i:Le,x:_a(M,B)})),o=Bn.lastIndex;return o=0&&u._call.call(void 0,A),u=u._next;--Ei}()}finally{Ei=0,function Fo(){for(var u,o,A=Fr,M=1/0;A;)A._call?(M>A._time&&(M=A._time),u=A,A=A._next):(o=A._next,A._next=null,A=u?u._next=o:Fr=o);Mo=u,vr(M)}(),oo=0}}function Zn(){var u=oa.now(),A=u-gs;A>Or&&(Ms-=A,gs=u)}function vr(u){Ei||(Ki&&(Ki=clearTimeout(Ki)),u-oo>24?(u<1/0&&(Ki=setTimeout(pn,u-oa.now()-Ms)),tr&&(tr=clearInterval(tr))):(tr||(gs=oa.now(),tr=setInterval(Zn,Or)),Ei=1,Ri(pn)))}function Xa(u,A,o){var M=new Ue;return M.restart(B=>{M.stop(),u(B+A)},A=null==A?0:+A,o),M}Ue.prototype=At.prototype={constructor:Ue,restart:function(u,A,o){if("function"!=typeof u)throw new TypeError("callback is not a function");o=(null==o?lt():+o)+(null==A?0:+A),!this._next&&Mo!==this&&(Mo?Mo._next=this:Fr=this,Mo=this),this._call=u,this._time=o,vr()},stop:function(){this._call&&(this._call=null,this._time=1/0,vr())}};var lc=Pi("start","end","cancel","interrupt"),dc=[],hc=0,fo=3;function ua(u,A,o,M,B,Y){var Le=u.__transition;if(Le){if(o in Le)return}else u.__transition={};!function $s(u,A,o){var B,M=u.__transition;function Le(Ht){var li,gi,wi,Ai;if(1!==o.state)return Gt();for(li in M)if((Ai=M[li]).name===o.name){if(Ai.state===fo)return Xa(Le);4===Ai.state?(Ai.state=6,Ai.timer.stop(),Ai.on.call("interrupt",u,u.__data__,Ai.index,Ai.group),delete M[li]):+lihc)throw new Error("too late; already scheduled");return o}function Ir(u,A){var o=Aa(u,A);if(o.state>fo)throw new Error("too late; already running");return o}function Aa(u,A){var o=u.__transition;if(!o||!(o=o[A]))throw new Error("transition not found");return o}var _s,uc=180/Math.PI,Ss={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function fc(u,A,o,M,B,Y){var Le,Ct,Gt;return(Le=Math.sqrt(u*u+A*A))&&(u/=Le,A/=Le),(Gt=u*o+A*M)&&(o-=u*Gt,M-=A*Gt),(Ct=Math.sqrt(o*o+M*M))&&(o/=Ct,M/=Ct,Gt/=Ct),u*M180?li+=360:li-Ht>180&&(Ht+=360),wi.push({i:gi.push(B(gi)+"rotate(",null,M)-2,x:_a(Ht,li)})):li&&gi.push(B(gi)+"rotate("+li+M)}(Ht.rotate,li.rotate,gi,wi),function Ct(Ht,li,gi,wi){Ht!==li?wi.push({i:gi.push(B(gi)+"skewX(",null,M)-2,x:_a(Ht,li)}):li&&gi.push(B(gi)+"skewX("+li+M)}(Ht.skewX,li.skewX,gi,wi),function Gt(Ht,li,gi,wi,Ai,cn){if(Ht!==gi||li!==wi){var Tn=Ai.push(B(Ai)+"scale(",null,",",null,")");cn.push({i:Tn-4,x:_a(Ht,gi)},{i:Tn-2,x:_a(li,wi)})}else(1!==gi||1!==wi)&&Ai.push(B(Ai)+"scale("+gi+","+wi+")")}(Ht.scaleX,Ht.scaleY,li.scaleX,li.scaleY,gi,wi),Ht=li=null,function(Ai){for(var ki,cn=-1,Tn=wi.length;++cn=0&&(A=A.slice(0,o)),!A||"start"===A})}(A)?so:Ir;return function(){var Le=Y(this,u),Ct=Le.on;Ct!==M&&(B=(M=Ct).copy()).on(A,o),Le.on=B}}(o,u,A))},attr:function Os(u,A){var o=ke(u),M="transform"===o?el:pc;return this.attrTween(u,"function"==typeof A?(o.local?So:os)(o,M,Eo(this,"attr."+u,A)):null==A?(o.local?bs:Js)(o):(o.local?_c:gc)(o,M,A))},attrTween:function ss(u,A){var o="attr."+u;if(arguments.length<2)return(o=this.tween(o))&&o._value;if(null==A)return this.tween(o,null);if("function"!=typeof A)throw new Error;var M=ke(u);return this.tween(o,(M.local?Il:il)(M,A))},style:function $r(u,A,o){var M="transform"==(u+="")?mc:pc;return null==A?this.styleTween(u,function sa(u,A){var o,M,B;return function(){var Y=He(this,u),Le=(this.style.removeProperty(u),He(this,u));return Y===Le?null:Y===o&&Le===M?B:B=A(o=Y,M=Le)}}(u,M)).on("end.style."+u,Hn(u)):"function"==typeof A?this.styleTween(u,function sn(u,A,o){var M,B,Y;return function(){var Le=He(this,u),Ct=o(this),Gt=Ct+"";return null==Ct&&(this.style.removeProperty(u),Gt=Ct=He(this,u)),Le===Gt?null:Le===M&&Gt===B?Y:(B=Gt,Y=A(M=Le,Ct))}}(u,M,Eo(this,"style."+u,A))).each(function fr(u,A){var o,M,B,Ct,Y="style."+A,Le="end."+Y;return function(){var Gt=Ir(this,u),Ht=Gt.on,li=null==Gt.value[Y]?Ct||(Ct=Hn(A)):void 0;(Ht!==o||B!==li)&&(M=(o=Ht).copy()).on(Le,B=li),Gt.on=M}}(this._id,u)):this.styleTween(u,function Bi(u,A,o){var M,Y,B=o+"";return function(){var Le=He(this,u);return Le===B?null:Le===M?Y:Y=A(M=Le,o)}}(u,M,A),o).on("end.style."+u,null)},styleTween:function vc(u,A,o){var M="style."+(u+="");if(arguments.length<2)return(M=this.tween(M))&&M._value;if(null==A)return this.tween(M,null);if("function"!=typeof A)throw new Error;return this.tween(M,function Ya(u,A,o){var M,B;function Y(){var Le=A.apply(this,arguments);return Le!==B&&(M=(B=Le)&&function fa(u,A,o){return function(M){this.style.setProperty(u,A.call(this,M),o)}}(u,Le,o)),M}return Y._value=A,Y}(u,A,o??""))},text:function cs(u){return this.tween("text","function"==typeof u?function va(u){return function(){var A=u(this);this.textContent=A??""}}(Eo(this,"text",u)):function Ur(u){return function(){this.textContent=u}}(null==u?"":u+""))},textTween:function Rl(u){var A="text";if(arguments.length<1)return(A=this.tween(A))&&A._value;if(null==u)return this.tween(A,null);if("function"!=typeof u)throw new Error;return this.tween(A,function bc(u){var A,o;function M(){var B=u.apply(this,arguments);return B!==o&&(A=(o=B)&&function Wn(u){return function(A){this.textContent=u.call(this,A)}}(B)),A}return M._value=u,M}(u))},remove:function hr(){return this.on("end.remove",function Dn(u){return function(){var A=this.parentNode;for(var o in this.__transition)if(+o!==u)return;A&&A.removeChild(this)}}(this._id))},tween:function Rs(u,A){var o=this._id;if(u+="",arguments.length<2){for(var Le,M=Aa(this.node(),o).tween,B=0,Y=M.length;B2&&M.state<5,M.state=6,M.timer.stop(),M.on.call(B?"interrupt":"cancel",u,u.__data__,M.index,M.group),delete o[Le]):Y=!1;Y&&delete u.__transition}}(this,u)})},bt.prototype.transition=function rl(u){var A,o;u instanceof To?(A=u._id,u=u._name):(A=Oc(),(o=kn).time=lt(),u=null==u?null:u+"");for(var M=this._groups,B=M.length,Y=0;YA?1:u>=A?0:NaN}function on(u,A){return null==u||null==A?NaN:Au?1:A>=u?0:NaN}function Sn(u){let A,o,M;function B(Ct,Gt,Ht=0,li=Ct.length){if(Ht>>1;o(Ct[gi],Gt)<0?Ht=gi+1:li=gi}while(Htvi(u(Ct),Gt),M=(Ct,Gt)=>u(Ct)-Gt):(A=u===vi||u===on?u:Jn,o=u,M=u),{left:B,center:function Le(Ct,Gt,Ht=0,li=Ct.length){const gi=B(Ct,Gt,Ht,li-1);return gi>Ht&&M(Ct[gi-1],Gt)>-M(Ct[gi],Gt)?gi-1:gi},right:function Y(Ct,Gt,Ht=0,li=Ct.length){if(Ht>>1;o(Ct[gi],Gt)<=0?Ht=gi+1:li=gi}while(Ht=_r?10:Y>=ys?5:Y>=Nr?2:1;let Ct,Gt,Ht;return B<0?(Ht=Math.pow(10,-B)/Le,Ct=Math.round(u*Ht),Gt=Math.round(A*Ht),Ct/HtA&&--Gt,Ht=-Ht):(Ht=Math.pow(10,B)*Le,Ct=Math.round(u/Ht),Gt=Math.round(A/Ht),Ct*HtA&&--Gt),Gt(u(Y=new Date(+Y)),Y),B.ceil=Y=>(u(Y=new Date(Y-1)),A(Y,1),u(Y),Y),B.round=Y=>{const Le=B(Y),Ct=B.ceil(Y);return Y-Le(A(Y=new Date(+Y),null==Le?1:Math.floor(Le)),Y),B.range=(Y,Le,Ct)=>{const Gt=[];if(Y=B.ceil(Y),Ct=null==Ct?1:Math.floor(Ct),!(Y0))return Gt;let Ht;do{Gt.push(Ht=new Date(+Y)),A(Y,Ct),u(Y)}while(HtLa(Le=>{if(Le>=Le)for(;u(Le),!Y(Le);)Le.setTime(Le-1)},(Le,Ct)=>{if(Le>=Le)if(Ct<0)for(;++Ct<=0;)for(;A(Le,-1),!Y(Le););else for(;--Ct>=0;)for(;A(Le,1),!Y(Le););}),o&&(B.count=(Y,Le)=>(wr.setTime(+Y),ld.setTime(+Le),u(wr),u(ld),Math.floor(o(wr,ld))),B.every=Y=>(Y=Math.floor(Y),isFinite(Y)&&Y>0?Y>1?B.filter(M?Le=>M(Le)%Y==0:Le=>B.count(0,Le)%Y==0):B:null)),B}const po=La(()=>{},(u,A)=>{u.setTime(+u+A)},(u,A)=>A-u);po.every=u=>(u=Math.floor(u),isFinite(u)&&u>0?u>1?La(A=>{A.setTime(Math.floor(A/u)*u)},(A,o)=>{A.setTime(+A+o*u)},(A,o)=>(o-A)/u):po:null);const ec=La(u=>{u.setTime(u-u.getMilliseconds())},(u,A)=>{u.setTime(+u+A*Ko)},(u,A)=>(A-u)/Ko,u=>u.getUTCSeconds()),$o=La(u=>{u.setTime(u-u.getMilliseconds()-u.getSeconds()*Ko)},(u,A)=>{u.setTime(+u+A*Ds)},(u,A)=>(A-u)/Ds,u=>u.getMinutes()),zd=La(u=>{u.setUTCSeconds(0,0)},(u,A)=>{u.setTime(+u+A*Ds)},(u,A)=>(A-u)/Ds,u=>u.getUTCMinutes()),qa=La(u=>{u.setTime(u-u.getMilliseconds()-u.getSeconds()*Ko-u.getMinutes()*Ds)},(u,A)=>{u.setTime(+u+A*Hs)},(u,A)=>(A-u)/Hs,u=>u.getHours()),y0=La(u=>{u.setUTCMinutes(0,0,0)},(u,A)=>{u.setTime(+u+A*Hs)},(u,A)=>(A-u)/Hs,u=>u.getUTCHours()),al=La(u=>u.setHours(0,0,0,0),(u,A)=>u.setDate(u.getDate()+A),(u,A)=>(A-u-(A.getTimezoneOffset()-u.getTimezoneOffset())*Ds)/Cc,u=>u.getDate()-1),wc=(La(u=>{u.setUTCHours(0,0,0,0)},(u,A)=>{u.setUTCDate(u.getUTCDate()+A)},(u,A)=>(A-u)/Cc,u=>u.getUTCDate()-1),La(u=>{u.setUTCHours(0,0,0,0)},(u,A)=>{u.setUTCDate(u.getUTCDate()+A)},(u,A)=>(A-u)/Cc,u=>Math.floor(u/Cc)));function Nn(u){return La(A=>{A.setDate(A.getDate()-(A.getDay()+7-u)%7),A.setHours(0,0,0,0)},(A,o)=>{A.setDate(A.getDate()+7*o)},(A,o)=>(o-A-(o.getTimezoneOffset()-A.getTimezoneOffset())*Ds)/As)}const zl=Nn(0);function Ii(u){return La(A=>{A.setUTCDate(A.getUTCDate()-(A.getUTCDay()+7-u)%7),A.setUTCHours(0,0,0,0)},(A,o)=>{A.setUTCDate(A.getUTCDate()+7*o)},(A,o)=>(o-A)/As)}Nn(1),Nn(2),Nn(3),Nn(4),Nn(5),Nn(6);const ur=Ii(0),jd=(Ii(1),Ii(2),Ii(3),Ii(4),Ii(5),Ii(6),La(u=>{u.setDate(1),u.setHours(0,0,0,0)},(u,A)=>{u.setMonth(u.getMonth()+A)},(u,A)=>A.getMonth()-u.getMonth()+12*(A.getFullYear()-u.getFullYear()),u=>u.getMonth())),tc=La(u=>{u.setUTCDate(1),u.setUTCHours(0,0,0,0)},(u,A)=>{u.setUTCMonth(u.getUTCMonth()+A)},(u,A)=>A.getUTCMonth()-u.getUTCMonth()+12*(A.getUTCFullYear()-u.getUTCFullYear()),u=>u.getUTCMonth()),us=La(u=>{u.setMonth(0,1),u.setHours(0,0,0,0)},(u,A)=>{u.setFullYear(u.getFullYear()+A)},(u,A)=>A.getFullYear()-u.getFullYear(),u=>u.getFullYear());us.every=u=>isFinite(u=Math.floor(u))&&u>0?La(A=>{A.setFullYear(Math.floor(A.getFullYear()/u)*u),A.setMonth(0,1),A.setHours(0,0,0,0)},(A,o)=>{A.setFullYear(A.getFullYear()+o*u)}):null;const dd=La(u=>{u.setUTCMonth(0,1),u.setUTCHours(0,0,0,0)},(u,A)=>{u.setUTCFullYear(u.getUTCFullYear()+A)},(u,A)=>A.getUTCFullYear()-u.getUTCFullYear(),u=>u.getUTCFullYear());function xa(u,A,o,M,B,Y){const Le=[[ec,1,Ko],[ec,5,5e3],[ec,15,15e3],[ec,30,3e4],[Y,1,Ds],[Y,5,5*Ds],[Y,15,15*Ds],[Y,30,30*Ds],[B,1,Hs],[B,3,3*Hs],[B,6,6*Hs],[B,12,12*Hs],[M,1,Cc],[M,2,2*Cc],[o,1,As],[A,1,Vl],[A,3,3*Vl],[u,1,Hd]];function Gt(Ht,li,gi){const wi=Math.abs(li-Ht)/gi,Ai=Sn(([,,ki])=>ki).right(Le,wi);if(Ai===Le.length)return u.every(Pl(Ht/Hd,li/Hd,gi));if(0===Ai)return po.every(Math.max(Pl(Ht,li,gi),1));const[cn,Tn]=Le[wi/Le[Ai-1][2]isFinite(u=Math.floor(u))&&u>0?La(A=>{A.setUTCFullYear(Math.floor(A.getUTCFullYear()/u)*u),A.setUTCMonth(0,1),A.setUTCHours(0,0,0,0)},(A,o)=>{A.setUTCFullYear(A.getUTCFullYear()+o*u)}):null;const[Pa,n2]=xa(dd,tc,ur,wc,y0,zd),[Ca,Vc]=xa(us,jd,zl,al,qa,$o);var ic=new Date,Ul=new Date;function zs(u,A,o,M){function B(Y){return u(Y=0===arguments.length?new Date:new Date(+Y)),Y}return B.floor=function(Y){return u(Y=new Date(+Y)),Y},B.ceil=function(Y){return u(Y=new Date(Y-1)),A(Y,1),u(Y),Y},B.round=function(Y){var Le=B(Y),Ct=B.ceil(Y);return Y-Le0))return Gt;do{Gt.push(Ht=new Date(+Y)),A(Y,Ct),u(Y)}while(Ht=Le)for(;u(Le),!Y(Le);)Le.setTime(Le-1)},function(Le,Ct){if(Le>=Le)if(Ct<0)for(;++Ct<=0;)for(;A(Le,-1),!Y(Le););else for(;--Ct>=0;)for(;A(Le,1),!Y(Le););})},o&&(B.count=function(Y,Le){return ic.setTime(+Y),Ul.setTime(+Le),u(ic),u(Ul),Math.floor(o(ic,Ul))},B.every=function(Y){return Y=Math.floor(Y),isFinite(Y)&&Y>0?Y>1?B.filter(M?function(Le){return M(Le)%Y==0}:function(Le){return B.count(0,Le)%Y==0}):B:null}),B}const Gl=864e5,Xd=7*Gl;function Va(u){return zs(function(A){A.setUTCDate(A.getUTCDate()-(A.getUTCDay()+7-u)%7),A.setUTCHours(0,0,0,0)},function(A,o){A.setUTCDate(A.getUTCDate()+7*o)},function(A,o){return(o-A)/Xd})}var Hc=Va(0),Pr=Va(1),cl=(Va(2),Va(3),Va(4));const s2=(Va(5),Va(6),zs(function(u){u.setUTCHours(0,0,0,0)},function(u,A){u.setUTCDate(u.getUTCDate()+A)},function(u,A){return(A-u)/Gl},function(u){return u.getUTCDate()-1}));function ll(u){return zs(function(A){A.setDate(A.getDate()-(A.getDay()+7-u)%7),A.setHours(0,0,0,0)},function(A,o){A.setDate(A.getDate()+7*o)},function(A,o){return(o-A-6e4*(o.getTimezoneOffset()-A.getTimezoneOffset()))/Xd})}var zc=ll(0),Bc=ll(1),dl=(ll(2),ll(3),ll(4));const nf=(ll(5),ll(6),zs(u=>u.setHours(0,0,0,0),(u,A)=>u.setDate(u.getDate()+A),(u,A)=>(A-u-6e4*(A.getTimezoneOffset()-u.getTimezoneOffset()))/Gl,u=>u.getDate()-1));var Qd=zs(function(u){u.setMonth(0,1),u.setHours(0,0,0,0)},function(u,A){u.setFullYear(u.getFullYear()+A)},function(u,A){return A.getFullYear()-u.getFullYear()},function(u){return u.getFullYear()});Qd.every=function(u){return isFinite(u=Math.floor(u))&&u>0?zs(function(A){A.setFullYear(Math.floor(A.getFullYear()/u)*u),A.setMonth(0,1),A.setHours(0,0,0,0)},function(A,o){A.setFullYear(A.getFullYear()+o*u)}):null};const jl=Qd;var l2=zs(function(u){u.setUTCMonth(0,1),u.setUTCHours(0,0,0,0)},function(u,A){u.setUTCFullYear(u.getUTCFullYear()+A)},function(u,A){return A.getUTCFullYear()-u.getUTCFullYear()},function(u){return u.getUTCFullYear()});l2.every=function(u){return isFinite(u=Math.floor(u))&&u>0?zs(function(A){A.setUTCFullYear(Math.floor(A.getUTCFullYear()/u)*u),A.setUTCMonth(0,1),A.setUTCHours(0,0,0,0)},function(A,o){A.setUTCFullYear(A.getUTCFullYear()+o*u)}):null};const Uc=l2;function Zd(u){if(0<=u.y&&u.y<100){var A=new Date(-1,u.m,u.d,u.H,u.M,u.S,u.L);return A.setFullYear(u.y),A}return new Date(u.y,u.m,u.d,u.H,u.M,u.S,u.L)}function Wl(u){if(0<=u.y&&u.y<100){var A=new Date(Date.UTC(-1,u.m,u.d,u.H,u.M,u.S,u.L));return A.setUTCFullYear(u.y),A}return new Date(Date.UTC(u.y,u.m,u.d,u.H,u.M,u.S,u.L))}function fl(u,A,o){return{y:u,m:A,d:o,H:0,M:0,S:0,L:0}}var d2={"-":"",_:" ",0:"0"},eo=/^\s*\d+/,N0=/^%/,h2=/[\\^$*+?|[\]().{}]/g;function Dr(u,A,o){var M=u<0?"-":"",B=(M?-u:u)+"",Y=B.length;return M+(Y[A.toLowerCase(),o]))}function P0(u,A,o){var M=eo.exec(A.slice(o,o+1));return M?(u.w=+M[0],o+M[0].length):-1}function u2(u,A,o){var M=eo.exec(A.slice(o,o+1));return M?(u.u=+M[0],o+M[0].length):-1}function Xl(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.U=+M[0],o+M[0].length):-1}function Yl(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.V=+M[0],o+M[0].length):-1}function to(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.W=+M[0],o+M[0].length):-1}function V0(u,A,o){var M=eo.exec(A.slice(o,o+4));return M?(u.y=+M[0],o+M[0].length):-1}function f2(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.y=+M[0]+(+M[0]>68?1900:2e3),o+M[0].length):-1}function m2(u,A,o){var M=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(A.slice(o,o+6));return M?(u.Z=M[1]?0:-(M[2]+(M[3]||"00")),o+M[0].length):-1}function H0(u,A,o){var M=eo.exec(A.slice(o,o+1));return M?(u.q=3*M[0]-3,o+M[0].length):-1}function z0(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.m=M[0]-1,o+M[0].length):-1}function Kl(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.d=+M[0],o+M[0].length):-1}function rf(u,A,o){var M=eo.exec(A.slice(o,o+3));return M?(u.m=0,u.d=+M[0],o+M[0].length):-1}function qd(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.H=+M[0],o+M[0].length):-1}function p2(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.M=+M[0],o+M[0].length):-1}function e1(u,A,o){var M=eo.exec(A.slice(o,o+2));return M?(u.S=+M[0],o+M[0].length):-1}function B0(u,A,o){var M=eo.exec(A.slice(o,o+3));return M?(u.L=+M[0],o+M[0].length):-1}function af(u,A,o){var M=eo.exec(A.slice(o,o+6));return M?(u.L=Math.floor(M[0]/1e3),o+M[0].length):-1}function U0(u,A,o){var M=N0.exec(A.slice(o,o+1));return M?o+M[0].length:-1}function G0(u,A,o){var M=eo.exec(A.slice(o));return M?(u.Q=+M[0],o+M[0].length):-1}function t1(u,A,o){var M=eo.exec(A.slice(o));return M?(u.s=+M[0],o+M[0].length):-1}function fd(u,A){return Dr(u.getDate(),A,2)}function g2(u,A){return Dr(u.getHours(),A,2)}function sf(u,A){return Dr(u.getHours()%12||12,A,2)}function cf(u,A){return Dr(1+nf.count(jl(u),u),A,3)}function lf(u,A){return Dr(u.getMilliseconds(),A,3)}function j0(u,A){return lf(u,A)+"000"}function W0(u,A){return Dr(u.getMonth()+1,A,2)}function go(u,A){return Dr(u.getMinutes(),A,2)}function e4(u,A){return Dr(u.getSeconds(),A,2)}function X0(u){var A=u.getDay();return 0===A?7:A}function t4(u,A){return Dr(zc.count(jl(u)-1,u),A,2)}function _2(u){var A=u.getDay();return A>=4||0===A?dl(u):dl.ceil(u)}function i4(u,A){return u=_2(u),Dr(dl.count(jl(u),u)+(4===jl(u).getDay()),A,2)}function n1(u){return u.getDay()}function Bs(u,A){return Dr(Bc.count(jl(u)-1,u),A,2)}function r1(u,A){return Dr(u.getFullYear()%100,A,2)}function ml(u,A){return Dr((u=_2(u)).getFullYear()%100,A,2)}function df(u,A){return Dr(u.getFullYear()%1e4,A,4)}function Y0(u,A){var o=u.getDay();return Dr((u=o>=4||0===o?dl(u):dl.ceil(u)).getFullYear()%1e4,A,4)}function v2(u){var A=u.getTimezoneOffset();return(A>0?"-":(A*=-1,"+"))+Dr(A/60|0,"0",2)+Dr(A%60,"0",2)}function md(u,A){return Dr(u.getUTCDate(),A,2)}function hf(u,A){return Dr(u.getUTCHours(),A,2)}function n4(u,A){return Dr(u.getUTCHours()%12||12,A,2)}function r4(u,A){return Dr(1+s2.count(Uc(u),u),A,3)}function uf(u,A){return Dr(u.getUTCMilliseconds(),A,3)}function ff(u,A){return uf(u,A)+"000"}function $l(u,A){return Dr(u.getUTCMonth()+1,A,2)}function pd(u,A){return Dr(u.getUTCMinutes(),A,2)}function Ql(u,A){return Dr(u.getUTCSeconds(),A,2)}function mf(u){var A=u.getUTCDay();return 0===A?7:A}function a1(u,A){return Dr(Hc.count(Uc(u)-1,u),A,2)}function Us(u){var A=u.getUTCDay();return A>=4||0===A?cl(u):cl.ceil(u)}function K0(u,A){return u=Us(u),Dr(cl.count(Uc(u),u)+(4===Uc(u).getUTCDay()),A,2)}function o1(u){return u.getUTCDay()}function gd(u,A){return Dr(Pr.count(Uc(u)-1,u),A,2)}function $0(u,A){return Dr(u.getUTCFullYear()%100,A,2)}function Q0(u,A){return Dr((u=Us(u)).getUTCFullYear()%100,A,2)}function Z0(u,A){return Dr(u.getUTCFullYear()%1e4,A,4)}function _d(u,A){var o=u.getUTCDay();return Dr((u=o>=4||0===o?cl(u):cl.ceil(u)).getUTCFullYear()%1e4,A,4)}function s1(){return"+0000"}function c1(){return"%"}function J0(u){return+u}function q0(u){return Math.floor(+u/1e3)}function l1(u){return null===u?NaN:+u}!function y2(u){(function F0(u){var A=u.dateTime,o=u.date,M=u.time,B=u.periods,Y=u.days,Le=u.shortDays,Ct=u.months,Gt=u.shortMonths,Ht=ks(B),li=ud(B),gi=ks(Y),wi=ud(Y),Ai=ks(Le),cn=ud(Le),Tn=ks(Ct),ki=ud(Ct),xn=ks(Gt),Ln=ud(Gt),_n={a:function pa(Mn){return Le[Mn.getDay()]},A:function Do(Mn){return Y[Mn.getDay()]},b:function Zr(Mn){return Gt[Mn.getMonth()]},B:function Ao(Mn){return Ct[Mn.getMonth()]},c:null,d:fd,e:fd,f:j0,g:ml,G:Y0,H:g2,I:sf,j:cf,L:lf,m:W0,M:go,p:function co(Mn){return B[+(Mn.getHours()>=12)]},q:function lo(Mn){return 1+~~(Mn.getMonth()/3)},Q:J0,s:q0,S:e4,u:X0,U:t4,V:i4,w:n1,W:Bs,x:null,X:null,y:r1,Y:df,Z:v2,"%":c1},qn={a:function h0(Mn){return Le[Mn.getUTCDay()]},A:function P1(Mn){return Y[Mn.getUTCDay()]},b:function V1(Mn){return Gt[Mn.getUTCMonth()]},B:function H1(Mn){return Ct[Mn.getUTCMonth()]},c:null,d:md,e:md,f:ff,g:Q0,G:_d,H:hf,I:n4,j:r4,L:uf,m:$l,M:pd,p:function ko(Mn){return B[+(Mn.getUTCHours()>=12)]},q:function Pd(Mn){return 1+~~(Mn.getUTCMonth()/3)},Q:J0,s:q0,S:Ql,u:mf,U:a1,V:K0,w:o1,W:gd,x:null,X:null,y:$0,Y:Z0,Z:s1,"%":c1},Xn={a:function Hr(Mn,dr,yr){var tn=Ai.exec(dr.slice(yr));return tn?(Mn.w=cn.get(tn[0].toLowerCase()),yr+tn[0].length):-1},A:function Pn(Mn,dr,yr){var tn=gi.exec(dr.slice(yr));return tn?(Mn.w=wi.get(tn[0].toLowerCase()),yr+tn[0].length):-1},b:function Po(Mn,dr,yr){var tn=xn.exec(dr.slice(yr));return tn?(Mn.m=Ln.get(tn[0].toLowerCase()),yr+tn[0].length):-1},B:function Er(Mn,dr,yr){var tn=Tn.exec(dr.slice(yr));return tn?(Mn.m=ki.get(tn[0].toLowerCase()),yr+tn[0].length):-1},c:function aa(Mn,dr,yr){return ra(Mn,A,dr,yr)},d:Kl,e:Kl,f:af,g:f2,G:V0,H:qd,I:qd,j:rf,L:B0,m:z0,M:p2,p:function ms(Mn,dr,yr){var tn=Ht.exec(dr.slice(yr));return tn?(Mn.p=li.get(tn[0].toLowerCase()),yr+tn[0].length):-1},q:H0,Q:G0,s:t1,S:e1,u:u2,U:Xl,V:Yl,w:P0,W:to,x:function Ls(Mn,dr,yr){return ra(Mn,o,dr,yr)},X:function za(Mn,dr,yr){return ra(Mn,M,dr,yr)},y:f2,Y:V0,Z:m2,"%":U0};function In(Mn,dr){return function(yr){var Vo,Kn,Qa,tn=[],$a=-1,Wr=0,ps=Mn.length;for(yr instanceof Date||(yr=new Date(+yr));++$a53)return null;"w"in tn||(tn.w=1),"Z"in tn?(ps=(Wr=Wl(fl(tn.y,0,1))).getUTCDay(),Wr=ps>4||0===ps?Pr.ceil(Wr):Pr(Wr),Wr=s2.offset(Wr,7*(tn.V-1)),tn.y=Wr.getUTCFullYear(),tn.m=Wr.getUTCMonth(),tn.d=Wr.getUTCDate()+(tn.w+6)%7):(ps=(Wr=Zd(fl(tn.y,0,1))).getDay(),Wr=ps>4||0===ps?Bc.ceil(Wr):Bc(Wr),Wr=nf.offset(Wr,7*(tn.V-1)),tn.y=Wr.getFullYear(),tn.m=Wr.getMonth(),tn.d=Wr.getDate()+(tn.w+6)%7)}else("W"in tn||"U"in tn)&&("w"in tn||(tn.w="u"in tn?tn.u%7:"W"in tn?1:0),ps="Z"in tn?Wl(fl(tn.y,0,1)).getUTCDay():Zd(fl(tn.y,0,1)).getDay(),tn.m=0,tn.d="W"in tn?(tn.w+6)%7+7*tn.W-(ps+5)%7:tn.w+7*tn.U-(ps+6)%7);return"Z"in tn?(tn.H+=tn.Z/100|0,tn.M+=tn.Z%100,Wl(tn)):Zd(tn)}}function ra(Mn,dr,yr,tn){for(var Vo,Kn,$a=0,Wr=dr.length,ps=yr.length;$a=ps)return-1;if(37===(Vo=dr.charCodeAt($a++))){if(Vo=dr.charAt($a++),!(Kn=Xn[Vo in d2?dr.charAt($a++):Vo])||(tn=Kn(Mn,yr,tn))<0)return-1}else if(Vo!=yr.charCodeAt(tn++))return-1}return tn}return _n.x=In(o,_n),_n.X=In(M,_n),_n.c=In(A,_n),qn.x=In(o,qn),qn.X=In(M,qn),qn.c=In(A,qn),{format:function(Mn){var dr=In(Mn+="",_n);return dr.toString=function(){return Mn},dr},parse:function(Mn){var dr=na(Mn+="",!1);return dr.toString=function(){return Mn},dr},utcFormat:function(Mn){var dr=In(Mn+="",qn);return dr.toString=function(){return Mn},dr},utcParse:function(Mn){var dr=na(Mn+="",!0);return dr.toString=function(){return Mn},dr}}})(u)}({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});const a4=Sn(vi).right,C2=(Sn(l1),a4);function w2(u,A){return u=+u,A=+A,function(o){return Math.round(u*(1-o)+A*o)}}function th(u){return+u}var ih=[0,1];function Gc(u){return u}function M2(u,A){return(A-=u=+u)?function(o){return(o-u)/A}:function _f(u){return function(){return u}}(isNaN(A)?NaN:.5)}function vf(u,A,o){var M=u[0],B=u[1],Y=A[0],Le=A[1];return BA&&(o=u,u=A,A=o),function(M){return Math.max(u,Math.min(A,M))}}(u[0],u[wi-1])),Ct=wi>2?rh:vf,Gt=Ht=null,gi}function gi(wi){return null==wi||isNaN(wi=+wi)?Y:(Gt||(Gt=Ct(u.map(M),A,o)))(M(Le(wi)))}return gi.invert=function(wi){return Le(B((Ht||(Ht=Ct(A,u.map(M),_a)))(wi)))},gi.domain=function(wi){return arguments.length?(u=Array.from(wi,th),li()):u.slice()},gi.range=function(wi){return arguments.length?(A=Array.from(wi),li()):A.slice()},gi.rangeRound=function(wi){return A=Array.from(wi),o=w2,li()},gi.clamp=function(wi){return arguments.length?(Le=!!wi||Gc,li()):Le!==Gc},gi.interpolate=function(wi){return arguments.length?(o=wi,li()):o},gi.unknown=function(wi){return arguments.length?(Y=wi,gi):Y},function(wi,Ai){return M=wi,B=Ai,li()}}()(Gc,Gc)}function Jl(u,A){switch(arguments.length){case 0:break;case 1:this.range(u);break;default:this.range(A).domain(u)}return this}var A2,xf=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function h1(u){if(!(A=xf.exec(u)))throw new Error("invalid format: "+u);var A;return new D2({fill:A[1],align:A[2],sign:A[3],symbol:A[4],zero:A[5],width:A[6],comma:A[7],precision:A[8]&&A[8].slice(1),trim:A[9],type:A[10]})}function D2(u){this.fill=void 0===u.fill?" ":u.fill+"",this.align=void 0===u.align?">":u.align+"",this.sign=void 0===u.sign?"-":u.sign+"",this.symbol=void 0===u.symbol?"":u.symbol+"",this.zero=!!u.zero,this.width=void 0===u.width?void 0:+u.width,this.comma=!!u.comma,this.precision=void 0===u.precision?void 0:+u.precision,this.trim=!!u.trim,this.type=void 0===u.type?"":u.type+""}function ql(u,A){if((o=(u=A?u.toExponential(A-1):u.toExponential()).indexOf("e"))<0)return null;var o,M=u.slice(0,o);return[M.length>1?M[0]+M.slice(2):M,+u.slice(o+1)]}function vd(u){return(u=ql(Math.abs(u)))?u[1]:NaN}function u1(u,A){var o=ql(u,A);if(!o)return u+"";var M=o[0],B=o[1];return B<0?"0."+new Array(-B).join("0")+M:M.length>B+1?M.slice(0,B+1)+"."+M.slice(B+1):M+new Array(B-M.length+2).join("0")}h1.prototype=D2.prototype,D2.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};const ch={"%":(u,A)=>(100*u).toFixed(A),b:u=>Math.round(u).toString(2),c:u=>u+"",d:function Cf(u){return Math.abs(u=Math.round(u))>=1e21?u.toLocaleString("en").replace(/,/g,""):u.toString(10)},e:(u,A)=>u.toExponential(A),f:(u,A)=>u.toFixed(A),g:(u,A)=>u.toPrecision(A),o:u=>Math.round(u).toString(8),p:(u,A)=>u1(100*u,A),r:u1,s:function sh(u,A){var o=ql(u,A);if(!o)return u+"";var M=o[0],B=o[1],Y=B-(A2=3*Math.max(-8,Math.min(8,Math.floor(B/3))))+1,Le=M.length;return Y===Le?M:Y>Le?M+new Array(Y-Le+1).join("0"):Y>0?M.slice(0,Y)+"."+M.slice(Y):"0."+new Array(1-Y).join("0")+ql(u,Math.max(0,A+Y-1))[0]},X:u=>Math.round(u).toString(16).toUpperCase(),x:u=>Math.round(u).toString(16)};function Dc(u){return u}var ed,dh,hh,f1=Array.prototype.map,k2=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"];function c4(u){var A=u.domain;return u.ticks=function(o){var M=A();return function ls(u,A,o){if(!((o=+o)>0))return[];if((u=+u)==(A=+A))return[u];const M=A=B))return[];const Ct=Y-B+1,Gt=new Array(Ct);if(M)if(Le<0)for(let Ht=0;Ht0;){if((Ht=xc(Le,Ct,o))===Gt)return M[B]=Le,M[Y]=Ct,A(M);if(Ht>0)Le=Math.floor(Le/Ht)*Ht,Ct=Math.ceil(Ct/Ht)*Ht;else{if(!(Ht<0))break;Le=Math.ceil(Le*Ht)/Ht,Ct=Math.floor(Ct*Ht)/Ht}Gt=Ht}return u},u}function Gs(){var u=S2();return u.copy=function(){return function E2(u,A){return A.domain(u.domain()).range(u.range()).interpolate(u.interpolate()).clamp(u.clamp()).unknown(u.unknown())}(u,Gs())},Jl.apply(u,arguments),c4(u)}function fh(u,A,o){u=+u,A=+A,o=(B=arguments.length)<2?(A=u,u=0,1):B<3?1:+o;for(var M=-1,B=0|Math.max(0,Math.ceil((A-u)/o)),Y=new Array(B);++M0&&Ct>0&&(Gt+Ct+1>M&&(Ct=Math.max(1,M-Gt)),Y.push(o.substring(B-=Ct,B+Ct)),!((Gt+=Ct+1)>M));)Ct=u[Le=(Le+1)%u.length];return Y.reverse().join(A)}}(f1.call(u.grouping,Number),u.thousands+""),o=void 0===u.currency?"":u.currency[0]+"",M=void 0===u.currency?"":u.currency[1]+"",B=void 0===u.decimal?".":u.decimal+"",Y=void 0===u.numerals?Dc:function Mf(u){return function(A){return A.replace(/[0-9]/g,function(o){return u[+o]})}}(f1.call(u.numerals,String)),Le=void 0===u.percent?"%":u.percent+"",Ct=void 0===u.minus?"\u2212":u.minus+"",Gt=void 0===u.nan?"NaN":u.nan+"";function Ht(gi){var wi=(gi=h1(gi)).fill,Ai=gi.align,cn=gi.sign,Tn=gi.symbol,ki=gi.zero,xn=gi.width,Ln=gi.comma,_n=gi.precision,qn=gi.trim,Xn=gi.type;"n"===Xn?(Ln=!0,Xn="g"):ch[Xn]||(void 0===_n&&(_n=12),qn=!0,Xn="g"),(ki||"0"===wi&&"="===Ai)&&(ki=!0,wi="0",Ai="=");var In="$"===Tn?o:"#"===Tn&&/[boxX]/.test(Xn)?"0"+Xn.toLowerCase():"",na="$"===Tn?M:/[%p]/.test(Xn)?Le:"",ra=ch[Xn],ms=/[defgprs%]/.test(Xn);function Hr(Pn){var aa,Ls,za,Po=In,Er=na;if("c"===Xn)Er=ra(Pn)+Er,Pn="";else{var pa=(Pn=+Pn)<0||1/Pn<0;if(Pn=isNaN(Pn)?Gt:ra(Math.abs(Pn),_n),qn&&(Pn=function o4(u){e:for(var B,A=u.length,o=1,M=-1;o0&&(M=0)}return M>0?u.slice(0,M)+u.slice(B+1):u}(Pn)),pa&&0==+Pn&&"+"!==cn&&(pa=!1),Po=(pa?"("===cn?cn:Ct:"-"===cn||"("===cn?"":cn)+Po,Er=("s"===Xn?k2[8+A2/3]:"")+Er+(pa&&"("===cn?")":""),ms)for(aa=-1,Ls=Pn.length;++aa(za=Pn.charCodeAt(aa))||za>57){Er=(46===za?B+Pn.slice(aa+1):Pn.slice(aa))+Er,Pn=Pn.slice(0,aa);break}}Ln&&!ki&&(Pn=A(Pn,1/0));var Do=Po.length+Pn.length+Er.length,Zr=Do>1)+Po+Pn+Er+Zr.slice(Do);break;default:Pn=Zr+Po+Pn+Er}return Y(Pn)}return _n=void 0===_n?6:/[gprs]/.test(Xn)?Math.max(1,Math.min(21,_n)):Math.max(0,Math.min(20,_n)),Hr.toString=function(){return gi+""},Hr}return{format:Ht,formatPrefix:function li(gi,wi){var Ai=Ht(((gi=h1(gi)).type="f",gi)),cn=3*Math.max(-8,Math.min(8,Math.floor(vd(wi)/3))),Tn=Math.pow(10,-cn),ki=k2[8+cn/3];return function(xn){return Ai(Tn*xn)+ki}}}}(u),dh=ed.format,hh=ed.formatPrefix}({thousands:",",grouping:[3],currency:["$",""]});class m1 extends Map{constructor(A,o=td){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:o}}),null!=A)for(const[M,B]of A)this.set(M,B)}get(A){return super.get(js(this,A))}has(A){return super.has(js(this,A))}set(A,o){return super.set(function yd({_intern:u,_key:A},o){const M=A(o);return u.has(M)?u.get(M):(u.set(M,o),o)}(this,A),o)}delete(A){return super.delete(function p1({_intern:u,_key:A},o){const M=A(o);return u.has(M)&&(o=u.get(M),u.delete(M)),o}(this,A))}}function js({_intern:u,_key:A},o){const M=A(o);return u.has(M)?u.get(M):o}function td(u){return null!==u&&"object"==typeof u?u.valueOf():u}Set;const id=Symbol("implicit");function Wc(){var u=new m1,A=[],o=[],M=id;function B(Y){let Le=u.get(Y);if(void 0===Le){if(M!==id)return M;u.set(Y,Le=A.push(Y)-1)}return o[Le%o.length]}return B.domain=function(Y){if(!arguments.length)return A.slice();A=[],u=new m1;for(const Le of Y)u.has(Le)||u.set(Le,A.push(Le)-1);return B},B.range=function(Y){return arguments.length?(o=Array.from(Y),B):o.slice()},B.unknown=function(Y){return arguments.length?(M=Y,B):M},B.copy=function(){return Wc(A,o).unknown(M)},Jl.apply(B,arguments),B}function Ac(){var Y,Le,u=Wc().unknown(void 0),A=u.domain,o=u.range,M=0,B=1,Ct=!1,Gt=0,Ht=0,li=.5;function gi(){var wi=A().length,Ai=B=1)return+o(u[M-1],M-1,u);var M,B=(M-1)*A,Y=Math.floor(B),Le=+o(u[Y],Y,u);return Le+(+o(u[Y+1],Y+1,u)-Le)*(B-Y)}}function Cd(){var M,u=[],A=[],o=[];function B(){var Le=0,Ct=Math.max(1,A.length);for(o=new Array(Ct-1);++Le0?o[Ct-1]:u[0],Ct({model:u});function Df(u,A){}function io(u,A){if(1&u&&(e.j41(0,"span"),e.DNE(1,Df,0,0,"ng-template",5),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngTemplateOutlet",o.template)("ngTemplateOutletContext",e.eq3(2,h4,o.context))}}function _h(u,A){if(1&u&&e.nrm(0,"span",6),2&u){const o=e.XpG();e.Y8G("innerHTML",o.title,e.npT)}}function Af(u,A){if(1&u&&(e.j41(0,"header",4)(1,"span",5),e.EFF(2),e.k0s()()),2&u){const o=e.XpG();e.R7$(2),e.JRh(o.title)}}function vh(u,A){if(1&u){const o=e.RV6();e.j41(0,"li",6)(1,"ngx-charts-legend-entry",7),e.bIt("select",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.labelClick.emit(B))})("activate",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.activate(B))})("deactivate",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.deactivate(B))}),e.k0s()()}if(2&u){const o=A.$implicit,M=e.XpG();e.R7$(),e.Y8G("label",o.label)("formattedLabel",o.formattedLabel)("color",o.color)("isActive",M.isActive(o))}}const rd=["*"];function bh(u,A){if(1&u&&e.nrm(0,"ngx-charts-scale-legend",4),2&u){const o=e.XpG();e.Y8G("horizontal",o.legendOptions&&o.legendOptions.position===o.LegendPosition.Below)("valueRange",o.legendOptions.domain)("colors",o.legendOptions.colors)("height",o.view[1])("width",o.legendWidth)}}function L2(u,A){if(1&u){const o=e.RV6();e.j41(0,"ngx-charts-legend",5),e.bIt("labelClick",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.legendLabelClick.emit(B))})("labelActivate",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.legendLabelActivate.emit(B))})("labelDeactivate",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.legendLabelDeactivate.emit(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("horizontal",o.legendOptions&&o.legendOptions.position===o.LegendPosition.Below)("data",o.legendOptions.domain)("title",o.legendOptions.title)("colors",o.legendOptions.colors)("height",o.view[1])("width",o.legendWidth)("activeEntries",o.activeEntries)}}const kf=["ngx-charts-axis-label",""],g1=["ticksel"],u4=["ngx-charts-x-axis-ticks",""];function wd(u,A){1&u&&(e.qSk(),e.eu8(0))}function Lf(u,A){if(1&u&&(e.qSk(),e.j41(0,"tspan",10),e.EFF(1),e.k0s()),2&u){const o=A.$implicit;e.BMQ("y",12*A.index),e.R7$(),e.SpI(" ",o," ")}}function _1(u,A){if(1&u&&(e.qSk(),e.qex(0),e.DNE(1,Lf,2,2,"tspan",9),e.bVm()),2&u){const o=A.ngIf;e.R7$(),e.Y8G("ngForOf",o)}}function I2(u,A){if(1&u&&e.DNE(0,_1,2,1,"ng-container",6),2&u){const o=e.XpG(2).$implicit,M=e.XpG();e.Y8G("ngIf",M.tickChunks(o))}}function R2(u,A){if(1&u&&e.EFF(0),2&u){const o=e.XpG().ngIf,M=e.XpG(2);e.SpI(" ",M.tickTrim(o)," ")}}function No(u,A){if(1&u&&(e.qSk(),e.qex(0),e.j41(1,"title"),e.EFF(2),e.k0s(),e.j41(3,"text",7),e.DNE(4,wd,1,0,"ng-container",8),e.k0s(),e.DNE(5,I2,1,1,"ng-template",null,1,e.C5r)(7,R2,1,1,"ng-template",null,2,e.C5r),e.bVm()),2&u){const o=A.ngIf,M=e.sdS(6),B=e.sdS(8),Y=e.XpG(2);e.R7$(2),e.JRh(o),e.R7$(),e.BMQ("text-anchor",Y.textAnchor)("transform",Y.textTransform),e.R7$(),e.Y8G("ngIf",Y.isWrapTicksSupported)("ngIfThen",M)("ngIfElse",B)}}function O2(u,A){if(1&u&&(e.qSk(),e.j41(0,"g",5),e.DNE(1,No,9,6,"ng-container",6),e.k0s()),2&u){const o=A.$implicit,M=e.XpG();e.BMQ("transform",M.tickTransform(o)),e.R7$(),e.Y8G("ngIf",M.tickFormat(o))}}function F2(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.nrm(1,"line",11),e.k0s()),2&u){const o=e.XpG(2);e.BMQ("transform",o.gridLineTransform()),e.R7$(),e.BMQ("y1",-o.gridLineHeight)}}function N2(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,F2,2,2,"g",6),e.k0s()),2&u){const o=A.$implicit,M=e.XpG();e.BMQ("transform",M.tickTransform(o)),e.R7$(),e.Y8G("ngIf",M.showGridLines)}}const Md=["ngx-charts-x-axis",""];function yh(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.emitTicksHeight(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("trimTicks",o.trimTicks)("rotateTicks",o.rotateTicks)("maxTickLength",o.maxTickLength)("tickFormatting",o.tickFormatting)("tickArguments",o.tickArguments)("tickStroke",o.tickStroke)("scale",o.xScale)("orient",o.xOrient)("showGridLines",o.showGridLines)("gridLineHeight",o.dims.height)("width",o.dims.width)("tickValues",o.ticks)("wrapTicks",o.wrapTicks)}}function Ed(u,A){if(1&u&&(e.qSk(),e.nrm(0,"g",3)),2&u){const o=e.XpG();e.Y8G("label",o.labelText)("offset",o.labelOffset)("orient",o.orientation.Bottom)("height",o.dims.height)("width",o.dims.width)}}const xh=["ngx-charts-y-axis-ticks",""];function P2(u,A){1&u&&(e.qSk(),e.eu8(0))}function Ch(u,A){if(1&u&&(e.qSk(),e.j41(0,"tspan",12),e.EFF(1),e.k0s()),2&u){const o=A.$implicit,M=A.index,B=e.XpG(6);e.BMQ("y",M*(8+B.tickSpacing)),e.R7$(),e.SpI(" ",o," ")}}function wh(u,A){if(1&u&&(e.qSk(),e.qex(0),e.DNE(1,Ch,2,2,"tspan",11),e.bVm()),2&u){const o=e.XpG().ngIf;e.R7$(),e.Y8G("ngForOf",o)}}function Sd(u,A){if(1&u&&(e.qSk(),e.qex(0),e.DNE(1,wh,2,1,"ng-container",10),e.bVm()),2&u){const o=A.ngIf;e.XpG(2);const M=e.sdS(8);e.R7$(),e.Y8G("ngIf",o.length>1)("ngIfElse",M)}}function V2(u,A){if(1&u&&e.DNE(0,Sd,2,2,"ng-container",7),2&u){const o=e.XpG(2).$implicit,M=e.XpG();e.Y8G("ngIf",M.tickChunks(o))}}function gl(u,A){if(1&u&&e.EFF(0),2&u){const o=e.XpG().ngIf,M=e.XpG(2);e.SpI(" ",M.tickTrim(o)," ")}}function If(u,A){if(1&u&&(e.qSk(),e.qex(0),e.j41(1,"title"),e.EFF(2),e.k0s(),e.j41(3,"text",8),e.DNE(4,P2,1,0,"ng-container",9),e.k0s(),e.DNE(5,V2,1,1,"ng-template",null,1,e.C5r)(7,gl,1,1,"ng-template",null,2,e.C5r),e.bVm()),2&u){const o=A.ngIf,M=e.sdS(6),B=e.sdS(8),Y=e.XpG(2);e.R7$(2),e.JRh(o),e.R7$(),e.xc7("font-size","12px"),e.BMQ("dy",Y.dy)("x",Y.x1)("y",Y.y1)("text-anchor",Y.textAnchor),e.R7$(),e.Y8G("ngIf",Y.wrapTicks)("ngIfThen",M)("ngIfElse",B)}}function Mh(u,A){if(1&u&&(e.qSk(),e.j41(0,"g",6),e.DNE(1,If,9,10,"ng-container",7),e.k0s()),2&u){const o=A.$implicit,M=e.XpG();e.BMQ("transform",M.transform(o)),e.R7$(),e.Y8G("ngIf",M.tickFormat(o))}}function f4(u,A){if(1&u&&(e.qSk(),e.nrm(0,"path",13)),2&u){const o=e.XpG();e.BMQ("d",o.referenceAreaPath)("transform",o.gridLineTransform())}}function v1(u,A){if(1&u&&(e.qSk(),e.nrm(0,"line",15)),2&u){const o=e.XpG(3);e.BMQ("x2",o.gridLineWidth)}}function H2(u,A){if(1&u&&(e.qSk(),e.nrm(0,"line",15)),2&u){const o=e.XpG(3);e.BMQ("x2",-o.gridLineWidth)}}function Eh(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,v1,1,1,"line",14)(2,H2,1,1,"line",14),e.k0s()),2&u){const o=e.XpG(2);e.BMQ("transform",o.gridLineTransform()),e.R7$(),e.Y8G("ngIf",o.orient===o.Orientation.Left),e.R7$(),e.Y8G("ngIf",o.orient===o.Orientation.Right)}}function Sh(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Eh,3,3,"g",7),e.k0s()),2&u){const o=A.$implicit,M=e.XpG();e.BMQ("transform",M.transform(o)),e.R7$(),e.Y8G("ngIf",M.showGridLines)}}function Th(u,A){if(1&u&&(e.qSk(),e.j41(0,"g")(1,"title"),e.EFF(2),e.k0s(),e.j41(3,"text",17),e.EFF(4),e.k0s()()),2&u){const o=e.XpG(2).$implicit,M=e.XpG();e.R7$(2),e.JRh(M.tickTrim(M.tickFormat(o.value))),e.R7$(),e.BMQ("dy",M.dy)("y",-6)("x",M.gridLineWidth)("text-anchor",M.textAnchor),e.R7$(),e.SpI(" ",o.name," ")}}function _l(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.nrm(1,"line",16),e.DNE(2,Th,5,6,"g",7),e.k0s()),2&u){const o=e.XpG().$implicit,M=e.XpG();e.BMQ("transform",M.transform(o.value)),e.R7$(),e.BMQ("x2",M.gridLineWidth)("transform",M.gridLineTransform()),e.R7$(),e.Y8G("ngIf",M.showRefLabels)}}function b1(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,_l,3,4,"g",7),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngIf",o.showRefLines)}}const Rf=["ngx-charts-y-axis",""];function Of(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.emitTicksWidth(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("trimTicks",o.trimTicks)("maxTickLength",o.maxTickLength)("tickFormatting",o.tickFormatting)("tickArguments",o.tickArguments)("tickValues",o.ticks)("tickStroke",o.tickStroke)("scale",o.yScale)("orient",o.yOrient)("showGridLines",o.showGridLines)("gridLineWidth",o.dims.width)("referenceLines",o.referenceLines)("showRefLines",o.showRefLines)("showRefLabels",o.showRefLabels)("height",o.dims.height)("wrapTicks",o.wrapTicks)}}function Ff(u,A){if(1&u&&(e.qSk(),e.nrm(0,"g",3)),2&u){const o=e.XpG();e.Y8G("label",o.labelText)("offset",o.labelOffset)("orient",o.yOrient)("height",o.dims.height)("width",o.dims.width)}}const Nf=["ngx-charts-svg-linear-gradient",""];function Ws(u,A){if(1&u&&(e.qSk(),e.nrm(0,"stop")),2&u){const o=A.$implicit;e.xc7("stop-color",o.color)("stop-opacity",o.opacity),e.BMQ("offset",o.offset+"%")}}const Dh=["ngx-charts-grid-panel",""],Ah=["ngx-charts-grid-panel-series",""];function kh(u,A){if(1&u&&(e.qSk(),e.nrm(0,"g",1)),2&u){const o=A.$implicit;e.AVh("grid-panel",!0)("odd","odd"===o.class)("even","even"===o.class),e.Y8G("height",o.height)("width",o.width)("x",o.x)("y",o.y)}}const Dd=["tooltipTemplate"],vl=(u,A)=>[u,A],C1=".ngx-charts-outer{animation:chartFadeIn linear .6s}@keyframes chartFadeIn{0%{opacity:0}20%{opacity:0}to{opacity:1}}.ngx-charts{float:left;overflow:visible}.ngx-charts .circle,.ngx-charts .cell,.ngx-charts .bar,.ngx-charts .node,.ngx-charts .link,.ngx-charts .arc{cursor:pointer}.ngx-charts .bar.active,.ngx-charts .bar:hover,.ngx-charts .cell.active,.ngx-charts .cell:hover,.ngx-charts .arc.active,.ngx-charts .arc:hover,.ngx-charts .node.active,.ngx-charts .node:hover,.ngx-charts .link.active,.ngx-charts .link:hover,.ngx-charts .card.active,.ngx-charts .card:hover{opacity:.8;transition:opacity .1s ease-in-out}.ngx-charts .bar:focus,.ngx-charts .cell:focus,.ngx-charts .arc:focus,.ngx-charts .node:focus,.ngx-charts .link:focus,.ngx-charts .card:focus{outline:none}.ngx-charts .bar.hidden,.ngx-charts .cell.hidden,.ngx-charts .arc.hidden,.ngx-charts .node.hidden,.ngx-charts .link.hidden,.ngx-charts .card.hidden{display:none}.ngx-charts g:focus{outline:none}.ngx-charts .line-series.inactive,.ngx-charts .line-series-range.inactive,.ngx-charts .polar-series-path.inactive,.ngx-charts .polar-series-area.inactive,.ngx-charts .area-series.inactive{transition:opacity .1s ease-in-out;opacity:.2}.ngx-charts .line-highlight{display:none}.ngx-charts .line-highlight.active{display:block}.ngx-charts .area{opacity:.6}.ngx-charts .circle:hover{cursor:pointer}.ngx-charts .label{font-size:12px;font-weight:400}.ngx-charts .tooltip-anchor{fill:#000}.ngx-charts .gridline-path{stroke:#ddd;stroke-width:1;fill:none}.ngx-charts .refline-path{stroke:#a8b2c7;stroke-width:1;stroke-dasharray:5;stroke-dashoffset:5}.ngx-charts .refline-label{font-size:9px}.ngx-charts .reference-area{fill-opacity:.05;fill:#000}.ngx-charts .gridline-path-dotted{stroke:#ddd;stroke-width:1;fill:none;stroke-dasharray:1,20;stroke-dashoffset:3}.ngx-charts .grid-panel rect{fill:none}.ngx-charts .grid-panel.odd rect{fill:#0000000d}\n",Ad=["ngx-charts-bar",""];function jh(u,A){if(1&u&&(e.qSk(),e.j41(0,"defs"),e.nrm(1,"g",2),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("orientation",o.orientation)("name",o.gradientId)("stops",o.gradientStops)}}const Wh=["ngx-charts-bar-label",""],bn=["ngx-charts-series-vertical",""];function Yi(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("select",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.onClick(B))})("activate",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.activate.emit(B))})("deactivate",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.deactivate.emit(B))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("@animationState","active")("@.disabled",!M.animations)("width",o.width)("height",o.height)("x",o.x)("y",o.y)("fill",o.color)("stops",o.gradientStops)("data",o.data)("orientation",M.barOrientation.Vertical)("roundEdges",o.roundEdges)("gradient",M.gradient)("ariaLabel",o.ariaLabel)("isActive",M.isActive(o.data))("tooltipDisabled",M.tooltipDisabled)("tooltipPlacement",M.tooltipPlacement)("tooltipType",M.tooltipType)("tooltipTitle",M.tooltipTemplate?void 0:o.tooltipText)("tooltipTemplate",M.tooltipTemplate)("tooltipContext",o.data)("noBarWhenZero",M.noBarWhenZero)("animations",M.animations)}}function Ji(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Yi,1,22,"g",1),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.bars)("ngForTrackBy",o.trackBy)}}function An(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",2),e.bIt("select",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.onClick(B))})("activate",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.activate.emit(B))})("deactivate",function(B){e.eBV(o);const Y=e.XpG(2);return e.Njj(Y.deactivate.emit(B))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("width",o.width)("height",o.height)("x",o.x)("y",o.y)("fill",o.color)("stops",o.gradientStops)("data",o.data)("orientation",M.barOrientation.Vertical)("roundEdges",o.roundEdges)("gradient",M.gradient)("ariaLabel",o.ariaLabel)("isActive",M.isActive(o.data))("tooltipDisabled",M.tooltipDisabled)("tooltipPlacement",M.tooltipPlacement)("tooltipType",M.tooltipType)("tooltipTitle",M.tooltipTemplate?void 0:o.tooltipText)("tooltipTemplate",M.tooltipTemplate)("tooltipContext",o.data)("noBarWhenZero",M.noBarWhenZero)("animations",M.animations)}}function Un(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,An,1,20,"g",1),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.bars)("ngForTrackBy",o.trackBy)}}function Vr(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",4),e.bIt("dimensionsChanged",function(B){const Y=e.eBV(o).index,Le=e.XpG(2);return e.Njj(Le.dataLabelHeightChanged.emit({size:B,index:Y}))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("barX",o.x)("barY",o.y)("barWidth",o.width)("barHeight",o.height)("value",o.total)("valueFormatting",M.dataLabelFormatting)("orientation",M.barOrientation.Vertical)}}function la(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Vr,1,7,"g",3),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.barsForDataLabels)("ngForTrackBy",o.trackDataLabelBy)}}function cr(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",5),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.updateXAxisHeight(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("xScale",o.xScale)("dims",o.dims)("showGridLines",o.showGridLines)("showLabel",o.showXAxisLabel)("labelText",o.xAxisLabel)("trimTicks",o.trimXAxisTicks)("rotateTicks",o.rotateXAxisTicks)("maxTickLength",o.maxXAxisTickLength)("tickFormatting",o.xAxisTickFormatting)("ticks",o.xAxisTicks)("xAxisOffset",o.dataLabelMaxHeight.negative)("wrapTicks",o.wrapTicks)}}function ta(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",6),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.updateYAxisWidth(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("yScale",o.yScale)("dims",o.dims)("showGridLines",o.showGridLines)("showLabel",o.showYAxisLabel)("labelText",o.yAxisLabel)("trimTicks",o.trimYAxisTicks)("maxTickLength",o.maxYAxisTickLength)("tickFormatting",o.yAxisTickFormatting)("ticks",o.yAxisTicks)("wrapTicks",o.wrapTicks)}}function Ar(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",6),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.updateXAxisHeight(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("xScale",o.groupScale)("dims",o.dims)("showLabel",o.showXAxisLabel)("labelText",o.xAxisLabel)("trimTicks",o.trimXAxisTicks)("rotateTicks",o.rotateXAxisTicks)("maxTickLength",o.maxXAxisTickLength)("tickFormatting",o.xAxisTickFormatting)("ticks",o.xAxisTicks)("xAxisOffset",o.dataLabelMaxHeight.negative)("wrapTicks",o.wrapTicks)}}function ma(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",7),e.bIt("dimensionsChanged",function(B){e.eBV(o);const Y=e.XpG();return e.Njj(Y.updateYAxisWidth(B))}),e.k0s()}if(2&u){const o=e.XpG();e.Y8G("yScale",o.valueScale)("dims",o.dims)("showGridLines",o.showGridLines)("showLabel",o.showYAxisLabel)("labelText",o.yAxisLabel)("trimTicks",o.trimYAxisTicks)("maxTickLength",o.maxYAxisTickLength)("tickFormatting",o.yAxisTickFormatting)("ticks",o.yAxisTicks)("wrapTicks",o.wrapTicks)}}function ia(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",9),e.bIt("select",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onClick(B,Y))})("activate",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onActivate(B,Y))})("deactivate",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onDeactivate(B,Y))})("dataLabelHeightChanged",function(B){const Y=e.eBV(o).index,Le=e.XpG(2);return e.Njj(Le.onDataLabelMaxHeightChanged(B,Y))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("@animationState","active")("activeEntries",M.activeEntries)("xScale",M.innerScale)("yScale",M.valueScale)("colors",M.colors)("series",o.series)("dims",M.dims)("gradient",M.gradient)("tooltipDisabled",M.tooltipDisabled)("tooltipTemplate",M.tooltipTemplate)("showDataLabel",M.showDataLabel)("dataLabelFormatting",M.dataLabelFormatting)("seriesName",o.name)("roundEdges",M.roundEdges)("animations",M.animations)("noBarWhenZero",M.noBarWhenZero),e.BMQ("transform",M.groupTransform(o))}}function rc(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,ia,1,17,"g",8),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.results)("ngForTrackBy",o.trackBy)}}function Lc(u,A){if(1&u){const o=e.RV6();e.qSk(),e.j41(0,"g",9),e.bIt("select",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onClick(B,Y))})("activate",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onActivate(B,Y))})("deactivate",function(B){const Y=e.eBV(o).$implicit,Le=e.XpG(2);return e.Njj(Le.onDeactivate(B,Y))})("dataLabelHeightChanged",function(B){const Y=e.eBV(o).index,Le=e.XpG(2);return e.Njj(Le.onDataLabelMaxHeightChanged(B,Y))}),e.k0s()}if(2&u){const o=A.$implicit,M=e.XpG(2);e.Y8G("activeEntries",M.activeEntries)("xScale",M.innerScale)("yScale",M.valueScale)("colors",M.colors)("series",o.series)("dims",M.dims)("gradient",M.gradient)("tooltipDisabled",M.tooltipDisabled)("tooltipTemplate",M.tooltipTemplate)("showDataLabel",M.showDataLabel)("dataLabelFormatting",M.dataLabelFormatting)("seriesName",o.name)("roundEdges",M.roundEdges)("animations",M.animations)("noBarWhenZero",M.noBarWhenZero),e.BMQ("transform",M.groupTransform(o))}}function M1(u,A){if(1&u&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Lc,1,16,"g",8),e.k0s()),2&u){const o=e.XpG();e.R7$(),e.Y8G("ngForOf",o.results)("ngForTrackBy",o.trackBy)}}function Zc(u,A,o){o=o||{};let M,B,Y,Le=null,Ct=0;function Gt(){Ct=!1===o.leading?0:+new Date,Le=null,Y=u.apply(M,B)}return function(){const Ht=+new Date;!Ct&&!1===o.leading&&(Ct=Ht);const li=A-(Ht-Ct);return M=this,B=arguments,li<=0?(clearTimeout(Le),Le=null,Ct=Ht,Y=u.apply(M,B)):!Le&&!1!==o.trailing&&(Le=setTimeout(Gt,li)),Y}}function qp(u,A){return function(M,B,Y){return{configurable:!0,enumerable:Y.enumerable,get:function(){return Object.defineProperty(this,B,{configurable:!0,enumerable:Y.enumerable,value:Zc(Y.value,u,A)}),this[B]}}}}var pr=function(u){return u.Top="top",u.Bottom="bottom",u.Left="left",u.Right="right",u.Center="center",u}(pr||{});function Q4(u,A,o){return o===pr.Top?u.top-7:o===pr.Bottom?u.top+u.height-A.height+7:o===pr.Center?u.top+u.height/2-A.height/2:void 0}function Rd(u,A,o){return o===pr.Left?u.left-7:o===pr.Right?u.left+u.width-A.width+7:o===pr.Center?u.left+u.width/2-A.width/2:void 0}class Cs{static calculateVerticalAlignment(A,o,M){let B=Q4(A,o,M);return B+o.height>window.innerHeight&&(B=window.innerHeight-o.height),B}static calculateVerticalCaret(A,o,M,B){let Y;B===pr.Top&&(Y=A.height/2-M.height/2+7),B===pr.Bottom&&(Y=o.height-A.height/2-M.height/2-7),B===pr.Center&&(Y=o.height/2-M.height/2);const Le=Q4(A,o,B);return Le+o.height>window.innerHeight&&(Y+=Le+o.height-window.innerHeight),Y}static calculateHorizontalAlignment(A,o,M){let B=Rd(A,o,M);return B+o.width>window.innerWidth&&(B=window.innerWidth-o.width),B}static calculateHorizontalCaret(A,o,M,B){let Y;B===pr.Left&&(Y=A.width/2-M.width/2+7),B===pr.Right&&(Y=o.width-A.width/2-M.width/2-7),B===pr.Center&&(Y=o.width/2-M.width/2);const Le=Rd(A,o,B);return Le+o.width>window.innerWidth&&(Y+=Le+o.width-window.innerWidth),Y}static shouldFlip(A,o,M,B){let Y=!1;return M===pr.Right&&A.left+A.width+o.width+B>window.innerWidth&&(Y=!0),M===pr.Left&&A.left-o.width-B<0&&(Y=!0),M===pr.Top&&A.top-o.height-B<0&&(Y=!0),M===pr.Bottom&&A.top+A.height+o.height+B>window.innerHeight&&(Y=!0),Y}static positionCaret(A,o,M,B,Y){let Le=0,Ct=0;return A===pr.Right?(Ct=-7,Le=Cs.calculateVerticalCaret(M,o,B,Y)):A===pr.Left?(Ct=o.width,Le=Cs.calculateVerticalCaret(M,o,B,Y)):A===pr.Top?(Le=o.height,Ct=Cs.calculateHorizontalCaret(M,o,B,Y)):A===pr.Bottom&&(Le=-7,Ct=Cs.calculateHorizontalCaret(M,o,B,Y)),{top:Le,left:Ct}}static positionContent(A,o,M,B,Y){let Le=0,Ct=0;return A===pr.Right?(Ct=M.left+M.width+B,Le=Cs.calculateVerticalAlignment(M,o,Y)):A===pr.Left?(Ct=M.left-o.width-B,Le=Cs.calculateVerticalAlignment(M,o,Y)):A===pr.Top?(Le=M.top-o.height-B,Ct=Cs.calculateHorizontalAlignment(M,o,Y)):A===pr.Bottom&&(Le=M.top+M.height+B,Ct=Cs.calculateHorizontalAlignment(M,o,Y)),{top:Le,left:Ct}}static determinePlacement(A,o,M,B){if(Cs.shouldFlip(M,o,A,B)){if(A===pr.Right)return pr.Left;if(A===pr.Left)return pr.Right;if(A===pr.Top)return pr.Bottom;if(A===pr.Bottom)return pr.Top}return A}}let Od=(()=>{class u{constructor(o,M,B){this.element=o,this.renderer=M,this.platformId=B}get cssClasses(){let o="ngx-charts-tooltip-content";return o+=` position-${this.placement}`,o+=` type-${this.type}`,o+=` ${this.cssClass}`,o}ngAfterViewInit(){setTimeout(this.position.bind(this))}position(){if(!(0,t.UE)(this.platformId))return;const o=this.element.nativeElement,M=this.host.nativeElement.getBoundingClientRect();if(!M.height&&!M.width)return;const B=o.getBoundingClientRect();this.checkFlip(M,B),this.positionContent(o,M,B),this.showCaret&&this.positionCaret(M,B),setTimeout(()=>this.renderer.addClass(o,"animate"),1)}positionContent(o,M,B){const{top:Y,left:Le}=Cs.positionContent(this.placement,B,M,this.spacing,this.alignment);this.renderer.setStyle(o,"top",`${Y}px`),this.renderer.setStyle(o,"left",`${Le}px`)}positionCaret(o,M){const B=this.caretElm.nativeElement,Y=B.getBoundingClientRect(),{top:Le,left:Ct}=Cs.positionCaret(this.placement,M,o,Y,this.alignment);this.renderer.setStyle(B,"top",`${Le}px`),this.renderer.setStyle(B,"left",`${Ct}px`)}checkFlip(o,M){this.placement=Cs.determinePlacement(this.placement,M,o,this.spacing)}onWindowResize(){this.position()}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT),e.rXU(e.sFG),e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-tooltip-content"]],viewQuery:function(o,M){if(1&o&&e.GBs(Tf,5),2&o){let B;e.mGM(B=e.lsd())&&(M.caretElm=B.first)}},hostVars:2,hostBindings:function(o,M){1&o&&e.bIt("resize",function(){return M.onWindowResize()},!1,e.tSv),2&o&&e.HbH(M.cssClasses)},inputs:{host:"host",showCaret:"showCaret",type:"type",placement:"placement",alignment:"alignment",spacing:"spacing",cssClass:"cssClass",title:"title",template:"template",context:"context"},decls:6,vars:6,consts:[["caretElm",""],[3,"hidden"],[1,"tooltip-content"],[4,"ngIf"],[3,"innerHTML",4,"ngIf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"innerHTML"]],template:function(o,M){1&o&&(e.j41(0,"div"),e.nrm(1,"span",1,0),e.j41(3,"div",2),e.DNE(4,io,2,4,"span",3)(5,_h,1,1,"span",4),e.k0s()()),2&o&&(e.R7$(),e.ZvI("tooltip-caret position-",M.placement,""),e.Y8G("hidden",!M.showCaret),e.R7$(3),e.Y8G("ngIf",!M.title),e.R7$(),e.Y8G("ngIf",M.title))},dependencies:[t.bT,t.T3],styles:[".ngx-charts-tooltip-content{position:fixed;border-radius:3px;z-index:5000;display:block;font-weight:400;opacity:0;pointer-events:none!important}.ngx-charts-tooltip-content.type-popover{background:#fff;color:#060709;border:1px solid #72809b;box-shadow:0 1px 3px #0003,0 1px 1px #00000024,0 2px 1px -1px #0000001f;font-size:13px;padding:4px}.ngx-charts-tooltip-content.type-popover .tooltip-caret{position:absolute;z-index:5001;width:0;height:0}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-left{border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-top{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-right{border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-bottom{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #fff}.ngx-charts-tooltip-content.type-tooltip{color:#fff;background:rgba(0,0,0,.75);font-size:12px;padding:0 10px;text-align:center;pointer-events:auto}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-left{border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-top{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-right{border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-bottom{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content .tooltip-label{display:block;line-height:1em;padding:8px 5px 5px;font-size:1em}.ngx-charts-tooltip-content .tooltip-val{display:block;font-size:1.3em;line-height:1em;padding:0 5px 8px}.ngx-charts-tooltip-content .tooltip-caret{position:absolute;z-index:5001;width:0;height:0}.ngx-charts-tooltip-content.position-right{transform:translate(10px)}.ngx-charts-tooltip-content.position-left{transform:translate(-10px)}.ngx-charts-tooltip-content.position-top{transform:translateY(-10px)}.ngx-charts-tooltip-content.position-bottom{transform:translateY(10px)}.ngx-charts-tooltip-content.animate{opacity:1;transition:opacity .3s,transform .3s;transform:translate(0);pointer-events:auto}.area-tooltip-container{padding:5px 0;pointer-events:none}.tooltip-item{text-align:left;line-height:1.2em;padding:5px 0}.tooltip-item .tooltip-item-color{display:inline-block;height:12px;width:12px;margin-right:5px;color:#5b646b;border-radius:3px}\n"],encapsulation:2}),(0,w.Cg)([qp(100)],u.prototype,"onWindowResize",null),u})();class S1{constructor(A){this.injectionService=A,this.defaults={},this.components=new Map}getByType(A=this.type){return this.components.get(A)}create(A){return this.createByType(this.type,A)}createByType(A,o){o=this.assignDefaults(o);const M=this.injectComponent(A,o);return this.register(A,M),M}destroy(A){const o=this.components.get(A.componentType);if(o&&o.length){const M=o.indexOf(A);M>-1&&(o[M].destroy(),o.splice(M,1))}}destroyAll(){this.destroyByType(this.type)}destroyByType(A){const o=this.components.get(A);if(o&&o.length){let M=o.length-1;for(;M>=0;)this.destroy(o[M--])}}injectComponent(A,o){return this.injectionService.appendComponent(A,o)}assignDefaults(A){const o={...this.defaults.inputs},M={...this.defaults.outputs};return!A.inputs&&!A.outputs&&(A={inputs:A}),o&&(A.inputs={...o,...A.inputs}),M&&(A.outputs={...M,...A.outputs}),A}register(A,o){this.components.has(A)||this.components.set(A,[]),this.components.get(A).push(o)}}let Cl=(()=>{class u{constructor(o,M,B){this.applicationRef=o,this.componentFactoryResolver=M,this.injector=B}static setGlobalRootViewContainer(o){u.globalRootViewContainer=o}getRootViewContainer(){if(this._container)return this._container;if(u.globalRootViewContainer)return u.globalRootViewContainer;if(this.applicationRef.components.length)return this.applicationRef.components[0];throw new Error("View Container not found! ngUpgrade needs to manually set this via setRootViewContainer or setGlobalRootViewContainer.")}setRootViewContainer(o){this._container=o}getComponentRootNode(o){return function n3(u){return u.element}(o)?o.element.nativeElement:o.hostView&&o.hostView.rootNodes.length>0?o.hostView.rootNodes[0]:o.location.nativeElement}getRootViewContainerNode(o){return this.getComponentRootNode(o)}projectComponentBindings(o,M){if(M){if(void 0!==M.inputs){const B=Object.getOwnPropertyNames(M.inputs);for(const Y of B)o.instance[Y]=M.inputs[Y]}if(void 0!==M.outputs){const B=Object.getOwnPropertyNames(M.outputs);for(const Y of B)o.instance[Y]=M.outputs[Y]}}return o}appendComponent(o,M={},B){B||(B=this.getRootViewContainer());const Y=this.getComponentRootNode(B),Le=new S.aI(Y,this.componentFactoryResolver,this.applicationRef,this.injector),Ct=new S.A8(o),Gt=Le.attach(Ct);return this.projectComponentBindings(Gt,M),Gt}}return u.globalRootViewContainer=null,u.\u0275fac=function(o){return new(o||u)(e.KVO(e.o8S),e.KVO(e.OM3),e.KVO(e.zZn))},u.\u0275prov=e.jDH({token:u,factory:u.\u0275fac}),u})(),qh=(()=>{class u extends S1{constructor(o){super(o),this.type=Od}}return u.\u0275fac=function(o){return new(o||u)(e.KVO(Cl))},u.\u0275prov=e.jDH({token:u,factory:u.\u0275fac}),u})();var wl=function(u){return u.Right="right",u.Below="below",u}(wl||{}),e0=function(u){return u.ScaleLegend="scaleLegend",u.Legend="legend",u}(e0||{}),jn=function(u){return u.Time="time",u.Linear="linear",u.Ordinal="ordinal",u.Quantile="quantile",u}(jn||{});let Z4=(()=>{class u{constructor(){this.horizontal=!1}ngOnChanges(o){const M=this.gradientString(this.colors.range(),this.colors.domain());this.gradient=`linear-gradient(to ${this.horizontal?"right":"bottom"}, ${M})`}gradientString(o,M){M.push(1);const B=[];return o.reverse().forEach((Y,Le)=>{B.push(`${Y} ${Math.round(100*M[Le])}%`)}),B.join(", ")}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-scale-legend"]],inputs:{valueRange:"valueRange",colors:"colors",height:"height",width:"width",horizontal:"horizontal"},features:[e.OA$],decls:8,vars:10,consts:[[1,"scale-legend"],[1,"scale-legend-label"],[1,"scale-legend-wrap"]],template:function(o,M){1&o&&(e.j41(0,"div",0)(1,"div",1)(2,"span"),e.EFF(3),e.k0s()(),e.nrm(4,"div",2),e.j41(5,"div",1)(6,"span"),e.EFF(7),e.k0s()()()),2&o&&(e.xc7("height",M.horizontal?void 0:M.height,"px")("width",M.width,"px"),e.AVh("horizontal-legend",M.horizontal),e.R7$(3),e.JRh(M.valueRange[1].toLocaleString()),e.R7$(),e.xc7("background",M.gradient),e.R7$(3),e.JRh(M.valueRange[0].toLocaleString()))},styles:[".chart-legend{display:inline-block;padding:0;width:auto!important}.chart-legend .scale-legend{text-align:center;display:flex;flex-direction:column}.chart-legend .scale-legend-wrap{display:inline-block;flex:1;width:30px;border-radius:5px;margin:0 auto}.chart-legend .scale-legend-label{font-size:12px}.chart-legend .horizontal-legend.scale-legend{flex-direction:row}.chart-legend .horizontal-legend .scale-legend-wrap{width:auto;height:30px;margin:0 16px}\n"],encapsulation:2,changeDetection:0}),u})();function t0(u){return u instanceof Date?u.toLocaleDateString():u.toLocaleString()}let n0=(()=>{class u{constructor(){this.isActive=!1,this.select=new e.bkB,this.activate=new e.bkB,this.deactivate=new e.bkB,this.toggle=new e.bkB}get trimmedLabel(){return this.formattedLabel||"(empty)"}onMouseEnter(){this.activate.emit({name:this.label})}onMouseLeave(){this.deactivate.emit({name:this.label})}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-legend-entry"]],hostBindings:function(o,M){1&o&&e.bIt("mouseenter",function(){return M.onMouseEnter()})("mouseleave",function(){return M.onMouseLeave()})},inputs:{color:"color",label:"label",formattedLabel:"formattedLabel",isActive:"isActive"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",toggle:"toggle"},decls:4,vars:6,consts:[["tabindex","-1",3,"click","title"],[1,"legend-label-color",3,"click"],[1,"legend-label-text"]],template:function(o,M){1&o&&(e.j41(0,"span",0),e.bIt("click",function(){return M.select.emit(M.formattedLabel)}),e.j41(1,"span",1),e.bIt("click",function(){return M.toggle.emit(M.formattedLabel)}),e.k0s(),e.j41(2,"span",2),e.EFF(3),e.k0s()()),2&o&&(e.AVh("active",M.isActive),e.Y8G("title",M.formattedLabel),e.R7$(),e.xc7("background-color",M.color),e.R7$(2),e.SpI(" ",M.trimmedLabel," "))},encapsulation:2,changeDetection:0}),u})(),J4=(()=>{class u{constructor(o){this.cd=o,this.horizontal=!1,this.labelClick=new e.bkB,this.labelActivate=new e.bkB,this.labelDeactivate=new e.bkB,this.legendEntries=[]}ngOnChanges(o){this.update()}update(){this.cd.markForCheck(),this.legendEntries=this.getLegendEntries()}getLegendEntries(){const o=[];for(const M of this.data){const B=t0(M);-1===o.findIndex(Le=>Le.label===B)&&o.push({label:M,formattedLabel:B,color:this.colors.getColor(M)})}return o}isActive(o){return!!this.activeEntries&&void 0!==this.activeEntries.find(B=>o.label===B.name)}activate(o){this.labelActivate.emit(o)}deactivate(o){this.labelDeactivate.emit(o)}trackBy(o,M){return M.label}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.gRc))},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-legend"]],inputs:{data:"data",title:"title",colors:"colors",height:"height",width:"width",activeEntries:"activeEntries",horizontal:"horizontal"},outputs:{labelClick:"labelClick",labelActivate:"labelActivate",labelDeactivate:"labelDeactivate"},features:[e.OA$],decls:5,vars:9,consts:[["class","legend-title",4,"ngIf"],[1,"legend-wrap"],[1,"legend-labels"],["class","legend-label",4,"ngFor","ngForOf","ngForTrackBy"],[1,"legend-title"],[1,"legend-title-text"],[1,"legend-label"],[3,"select","activate","deactivate","label","formattedLabel","color","isActive"]],template:function(o,M){1&o&&(e.j41(0,"div"),e.DNE(1,Af,3,1,"header",0),e.j41(2,"div",1)(3,"ul",2),e.DNE(4,vh,2,4,"li",3),e.k0s()()()),2&o&&(e.xc7("width",M.width,"px"),e.R7$(),e.Y8G("ngIf",(null==M.title?null:M.title.length)>0),e.R7$(2),e.xc7("max-height",M.height-45,"px"),e.AVh("horizontal-legend",M.horizontal),e.R7$(),e.Y8G("ngForOf",M.legendEntries)("ngForTrackBy",M.trackBy))},dependencies:[n0,t.bT,t.Sq],styles:[".chart-legend{display:inline-block;padding:0;width:auto!important}.chart-legend .legend-title{white-space:nowrap;overflow:hidden;margin-left:10px;margin-bottom:5px;font-size:14px;font-weight:700}.chart-legend ul,.chart-legend li{padding:0;margin:0;list-style:none}.chart-legend .horizontal-legend li{display:inline-block}.chart-legend .legend-wrap{width:calc(100% - 10px)}.chart-legend .legend-labels{line-height:85%;list-style:none;text-align:left;float:left;width:100%;border-radius:3px;overflow-y:auto;overflow-x:hidden;white-space:nowrap;background:rgba(0,0,0,.05)}.chart-legend .legend-label{cursor:pointer;font-size:90%;margin:8px;color:#afb7c8}.chart-legend .legend-label:hover{color:#000;transition:.2s}.chart-legend .legend-label .active .legend-label-text{color:#000}.chart-legend .legend-label-color{display:inline-block;height:15px;width:15px;margin-right:5px;color:#5b646b;border-radius:3px}.chart-legend .legend-label-text{display:inline-block;vertical-align:top;line-height:15px;font-size:12px;width:calc(100% - 20px);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.chart-legend .legend-title-text{vertical-align:bottom;display:inline-block;line-height:16px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}\n"],encapsulation:2,changeDetection:0}),u})(),eu=(()=>{class u{constructor(){this.showLegend=!1,this.animations=!0,this.legendLabelClick=new e.bkB,this.legendLabelActivate=new e.bkB,this.legendLabelDeactivate=new e.bkB,this.LegendPosition=wl,this.LegendType=e0}ngOnChanges(o){this.update()}update(){let o=0;this.showLegend&&(this.legendType=this.getLegendType(),(!this.legendOptions||this.legendOptions.position===wl.Right)&&(o=this.legendType===e0.ScaleLegend?1:2)),this.chartWidth=Math.floor(this.view[0]*(12-o)/12),this.legendWidth=this.legendOptions&&this.legendOptions.position!==wl.Right?this.chartWidth:Math.floor(this.view[0]*o/12)}getLegendType(){return this.legendOptions.scaleType===jn.Linear?e0.ScaleLegend:e0.Legend}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-chart"]],inputs:{view:"view",showLegend:"showLegend",legendOptions:"legendOptions",legendType:"legendType",activeEntries:"activeEntries",animations:"animations"},outputs:{legendLabelClick:"legendLabelClick",legendLabelActivate:"legendLabelActivate",legendLabelDeactivate:"legendLabelDeactivate"},features:[e.Jv_([qh]),e.OA$],ngContentSelectors:rd,decls:5,vars:8,consts:[[1,"ngx-charts-outer"],[1,"ngx-charts"],["class","chart-legend",3,"horizontal","valueRange","colors","height","width",4,"ngIf"],["class","chart-legend",3,"horizontal","data","title","colors","height","width","activeEntries","labelClick","labelActivate","labelDeactivate",4,"ngIf"],[1,"chart-legend",3,"horizontal","valueRange","colors","height","width"],[1,"chart-legend",3,"labelClick","labelActivate","labelDeactivate","horizontal","data","title","colors","height","width","activeEntries"]],template:function(o,M){1&o&&(e.NAR(),e.j41(0,"div",0),e.qSk(),e.j41(1,"svg",1),e.SdG(2),e.k0s(),e.DNE(3,bh,1,5,"ngx-charts-scale-legend",2)(4,L2,1,7,"ngx-charts-legend",3),e.k0s()),2&o&&(e.xc7("width",M.view[0],"px")("height",M.view[1],"px"),e.R7$(),e.BMQ("width",M.chartWidth)("height",M.view[1]),e.R7$(2),e.Y8G("ngIf",M.showLegend&&M.legendType===M.LegendType.ScaleLegend),e.R7$(),e.Y8G("ngIf",M.showLegend&&M.legendType===M.LegendType.Legend))},dependencies:[Z4,J4,t.bT],encapsulation:2,changeDetection:0}),u})(),e6=(()=>{class u{constructor(o,M){this.element=o,this.zone=M,this.visible=new e.bkB,this.isVisible=!1,this.runCheck()}destroy(){clearTimeout(this.timeout)}onVisibilityChange(){this.zone.run(()=>{this.isVisible=!0,this.visible.emit(!0)})}runCheck(){const o=()=>{if(!this.element)return;const{offsetHeight:M,offsetWidth:B}=this.element.nativeElement;M&&B?(clearTimeout(this.timeout),this.onVisibilityChange()):(clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>o(),100)}))};this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>o())})}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT),e.rXU(e.SKi))},u.\u0275dir=e.FsC({type:u,selectors:[["visibility-observer"]],outputs:{visible:"visible"}}),u})();function q4(u){return"[object Date]"===toString.call(u)}let a3=(()=>{class u{constructor(o,M,B,Y){this.chartElement=o,this.zone=M,this.cd=B,this.platformId=Y,this.scheme="cool",this.schemeType=jn.Ordinal,this.animations=!0,this.select=new e.bkB}ngOnInit(){(0,t.Vy)(this.platformId)&&(this.animations=!1)}ngAfterViewInit(){this.bindWindowResizeEvent(),this.visibilityObserver=new e6(this.chartElement,this.zone),this.visibilityObserver.visible.subscribe(this.update.bind(this))}ngOnDestroy(){this.unbindEvents(),this.visibilityObserver&&(this.visibilityObserver.visible.unsubscribe(),this.visibilityObserver.destroy())}ngOnChanges(o){this.update()}update(){if(this.results=this.results?this.cloneData(this.results):[],this.view)this.width=this.view[0],this.height=this.view[1];else{const o=this.getContainerDims();o&&(this.width=o.width,this.height=o.height)}this.width||(this.width=600),this.height||(this.height=400),this.width=Math.floor(this.width),this.height=Math.floor(this.height),this.cd&&this.cd.markForCheck()}getContainerDims(){let o,M;const B=this.chartElement.nativeElement;if((0,t.UE)(this.platformId)&&null!==B.parentNode){const Y=B.parentNode.getBoundingClientRect();o=Y.width,M=Y.height}return o&&M?{width:o,height:M}:null}formatDates(){for(let o=0;o{this.update(),this.cd&&this.cd.markForCheck()});this.resizeSubscription=M}cloneData(o){const M=[];for(const B of o){const Y={};if(void 0!==B.name&&(Y.name=B.name),void 0!==B.value&&(Y.value=B.value),void 0!==B.series){Y.series=[];for(const Le of B.series){const Ct=Object.assign({},Le);Y.series.push(Ct)}}void 0!==B.extra&&(Y.extra=JSON.parse(JSON.stringify(B.extra))),void 0!==B.source&&(Y.source=B.source),void 0!==B.target&&(Y.target=B.target),M.push(Y)}return M}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT),e.rXU(e.SKi),e.rXU(e.gRc),e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["base-chart"]],inputs:{results:"results",view:"view",scheme:"scheme",schemeType:"schemeType",customColors:"customColors",animations:"animations"},outputs:{select:"select"},features:[e.OA$],decls:1,vars:0,template:function(o,M){1&o&&e.nrm(0,"div")},encapsulation:2}),u})();var Jo=function(u){return u.Top="top",u.Bottom="bottom",u.Left="left",u.Right="right",u}(Jo||{});let tu=(()=>{class u{constructor(o){this.textHeight=25,this.margin=5,this.element=o.nativeElement}ngOnChanges(o){this.update()}update(){switch(this.strokeWidth="0.01",this.textAnchor="middle",this.transform="",this.orient){case Jo.Top:case Jo.Bottom:this.y=this.offset,this.x=this.width/2;break;case Jo.Left:this.y=-(this.offset+this.textHeight+this.margin),this.x=-this.height/2,this.transform="rotate(270)";break;case Jo.Right:this.y=this.offset+this.margin,this.x=-this.height/2,this.transform="rotate(270)"}}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-axis-label",""]],inputs:{orient:"orient",label:"label",offset:"offset",width:"width",height:"height"},features:[e.OA$],attrs:kf,decls:2,vars:6,template:function(o,M){1&o&&(e.qSk(),e.j41(0,"text"),e.EFF(1),e.k0s()),2&o&&(e.BMQ("stroke-width",M.strokeWidth)("x",M.x)("y",M.y)("text-anchor",M.textAnchor)("transform",M.transform),e.R7$(),e.SpI(" ",M.label," "))},encapsulation:2,changeDetection:0}),u})();function r0(u,A=16){return"string"!=typeof u?"number"==typeof u?u+"":"":(u=u.trim()).length<=A?u:`${u.slice(0,A)}...`}function o3(u,A){if(u.length>A){const o=[],M=Math.floor(u.length/A);for(let B=0;B{const Ct=(Y.pop()||"")+" ";return Ct.length+Le.length>A?[...Y,Ct.trim(),Le.trim()]:[...Y,Ct+Le]},[]);else{let Y=0;for(;Yo&&(B=B.splice(0,o),B[B.length-1]+="..."),B}var Ys=function(u){return u.Start="start",u.Middle="middle",u.End="end",u}(Ys||{});let D1=(()=>{class u{constructor(o){this.platformId=o,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.rotateTicks=!0,this.wrapTicks=!1,this.dimensionsChanged=new e.bkB,this.verticalSpacing=20,this.rotateLabels=!1,this.innerTickSize=6,this.outerTickSize=6,this.tickPadding=3,this.textAnchor=Ys.Middle,this.maxTicksLength=0,this.maxAllowedLength=16,this.height=0,this.approxHeight=10,this.maxPossibleLengthForTickIfWrapped=16}get isWrapTicksSupported(){return this.wrapTicks&&this.scale.step}ngOnChanges(o){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,t.UE)(this.platformId))return void this.dimensionsChanged.emit({height:this.approxHeight});const o=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().height,10);o!==this.height&&(this.height=o,this.dimensionsChanged.emit({height:this.height}),setTimeout(()=>this.updateDims()))}update(){const o=this.scale;this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:o.tickFormat?o.tickFormat.apply(o,this.tickArguments):function(B){return"Date"===B.constructor.name?B.toLocaleDateString():B.toLocaleString()};const M=this.rotateTicks?this.getRotationAngle(this.ticks):null;this.adjustedScale=this.scale.bandwidth?function(B){return this.scale(B)+.5*this.scale.bandwidth()}:this.scale,this.textTransform="",M&&0!==M?(this.textTransform=`rotate(${M})`,this.textAnchor=Ys.End,this.verticalSpacing=10):this.textAnchor=Ys.Middle,setTimeout(()=>this.updateDims())}getRotationAngle(o){let M=0;this.maxTicksLength=0;for(let gi=0;githis.maxTicksLength&&(this.maxTicksLength=Ai)}const Le=7*Math.min(this.maxTicksLength,this.maxAllowedLength);let Ct=Le;const Gt=Math.floor(this.width/o.length);for(;Ct>Gt&&M>-90;)M-=30,Ct=Math.cos(M*(Math.PI/180))*Le;let Ht=14;if(this.isWrapTicksSupported){const gi=this.ticks.reduce((Ai,cn)=>cn.length>Ai.length?cn:Ai,"");Ht=14*(this.tickChunks(gi).length||1),this.maxPossibleLengthForTickIfWrapped=this.getMaxPossibleLengthForTick(gi)}const li=0!==M?Math.max(Math.abs(Math.sin(M*Math.PI/180))*this.maxTickLength*7,10):Ht;return this.approxHeight=Math.min(li,200),M}getTicks(){let o;const M=this.getMaxTicks(20),B=this.getMaxTicks(100);return this.tickValues?o=this.tickValues:this.scale.ticks?o=this.scale.ticks.apply(this.scale,[B]):(o=this.scale.domain(),o=o3(o,M)),o}getMaxTicks(o){return Math.floor(this.width/o)}tickTransform(o){return"translate("+this.adjustedScale(o)+","+this.verticalSpacing+")"}gridLineTransform(){return`translate(0,${-this.verticalSpacing-5})`}tickTrim(o){return this.trimTicks?r0(o,this.maxTickLength):o}getMaxPossibleLengthForTick(o){if(this.scale.bandwidth){const B=Math.floor(this.scale.bandwidth()/7),Y=o.slice(0,B);return Math.max(Y.length,this.maxTickLength)}return this.maxTickLength}tickChunks(o){if(o.toString().length>this.maxTickLength&&this.scale.bandwidth){let B=this.rotateTicks?Math.floor(this.scale.step()/14):5;if(B<=1)return[this.tickTrim(o)];let Y=Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength);return(0,t.UE)(this.platformId)||(Y=Math.floor(Math.min(this.approxHeight/5,Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength)))),B=Math.min(B,5),T1(o,Y,B<1?1:B)}return[this.tickTrim(o)]}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-x-axis-ticks",""]],viewQuery:function(o,M){if(1&o&&e.GBs(g1,5),2&o){let B;e.mGM(B=e.lsd())&&(M.ticksElement=B.first)}},inputs:{scale:"scale",orient:"orient",tickArguments:"tickArguments",tickValues:"tickValues",tickStroke:"tickStroke",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",gridLineHeight:"gridLineHeight",width:"width",rotateTicks:"rotateTicks",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:u4,decls:4,vars:2,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],[4,"ngFor","ngForOf"],[1,"tick"],[4,"ngIf"],["stroke-width","0.01","font-size","12px"],[4,"ngIf","ngIfThen","ngIfElse"],["x","0",4,"ngFor","ngForOf"],["x","0"],["y2","0",1,"gridline-path","gridline-path-vertical"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"g",null,0),e.DNE(2,O2,2,2,"g",3),e.k0s(),e.DNE(3,N2,2,2,"g",4)),2&o&&(e.R7$(2),e.Y8G("ngForOf",M.ticks),e.R7$(),e.Y8G("ngForOf",M.ticks))},dependencies:[t.Sq,t.bT],encapsulation:2,changeDetection:0}),u})(),s3=(()=>{class u{constructor(){this.rotateTicks=!0,this.showGridLines=!1,this.xOrient=Jo.Bottom,this.xAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new e.bkB,this.xAxisClassName="x axis",this.labelOffset=0,this.fill="none",this.stroke="stroke",this.tickStroke="#ccc",this.strokeWidth="none",this.padding=5,this.orientation=Jo}ngOnChanges(o){this.update()}update(){this.transform=`translate(0,${this.xAxisOffset+this.padding+this.dims.height})`,typeof this.xAxisTickCount<"u"&&(this.tickArguments=[this.xAxisTickCount])}emitTicksHeight({height:o}){const M=o+25+5;M!==this.labelOffset&&(this.labelOffset=M,setTimeout(()=>{this.dimensionsChanged.emit({height:o})},0))}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-x-axis",""]],viewQuery:function(o,M){if(1&o&&e.GBs(D1,5),2&o){let B;e.mGM(B=e.lsd())&&(M.ticksComponent=B.first)}},inputs:{xScale:"xScale",dims:"dims",trimTicks:"trimTicks",rotateTicks:"rotateTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",showLabel:"showLabel",labelText:"labelText",ticks:"ticks",xAxisTickCount:"xAxisTickCount",xOrient:"xOrient",xAxisOffset:"xAxisOffset",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:Md,decls:3,vars:4,consts:[["ngx-charts-x-axis-ticks","",3,"trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","width","tickValues","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-x-axis-ticks","",3,"dimensionsChanged","trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","width","tickValues","wrapTicks"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"g"),e.DNE(1,yh,1,13,"g",0)(2,Ed,1,5,"g",1),e.k0s()),2&o&&(e.BMQ("class",M.xAxisClassName)("transform",M.transform),e.R7$(),e.Y8G("ngIf",M.xScale),e.R7$(),e.Y8G("ngIf",M.showLabel))},dependencies:[D1,tu,t.bT],encapsulation:2,changeDetection:0}),u})();function ad(u,A,o,M,B,[Y,Le,Ct,Gt]){let Ht="";return Ht=`M${[u+B,A]}`,Ht+="h"+((o=0===(o=Math.floor(o))?1:o)-2*B),Ht+=Le?`a${[B,B]} 0 0 1 ${[B,B]}`:`h${B}v${B}`,Ht+="v"+((M=0===(M=Math.floor(M))?1:M)-2*B),Ht+=Gt?`a${[B,B]} 0 0 1 ${[-B,B]}`:`v${B}h${-B}`,Ht+="h"+(2*B-o),Ht+=Ct?`a${[B,B]} 0 0 1 ${[-B,-B]}`:`h${-B}v${-B}`,Ht+="v"+(2*B-M),Ht+=Y?`a${[B,B]} 0 0 1 ${[B,-B]}`:`v${-B}h${B}`,Ht+="z",Ht}let tm=(()=>{class u{constructor(o){this.platformId=o,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.showRefLabels=!1,this.showRefLines=!1,this.wrapTicks=!1,this.dimensionsChanged=new e.bkB,this.innerTickSize=6,this.tickPadding=3,this.verticalSpacing=20,this.textAnchor=Ys.Middle,this.width=0,this.outerTickSize=6,this.rotateLabels=!1,this.referenceLineLength=0,this.Orientation=Jo}ngOnChanges(o){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,t.UE)(this.platformId))return this.width=this.getApproximateAxisWidth(),void this.dimensionsChanged.emit({width:this.width});const o=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().width,10);o!==this.width&&(this.width=o,this.dimensionsChanged.emit({width:o}),setTimeout(()=>this.updateDims()))}update(){const o=this.scale,M=this.orient===Jo.Top||this.orient===Jo.Right?-1:1;switch(this.tickSpacing=Math.max(this.innerTickSize,0)+this.tickPadding,this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:o.tickFormat?o.tickFormat.apply(o,this.tickArguments):function(B){return"Date"===B.constructor.name?B.toLocaleDateString():B.toLocaleString()},this.adjustedScale=o.bandwidth?B=>{const Y=o(B)+.5*o.bandwidth();if(this.wrapTicks&&B.toString().length>this.maxTickLength){const Le=this.tickChunks(B).length;if(1===Le)return Y;const Ht=.5*o.bandwidth()-8*Le*.5;return o(B)+Ht}return Y}:o,this.showRefLines&&this.referenceLines&&this.setReferencelines(),this.orient){case Jo.Top:case Jo.Bottom:this.transform=function(B){return"translate("+this.adjustedScale(B)+",0)"},this.textAnchor=Ys.Middle,this.y2=this.innerTickSize*M,this.y1=this.tickSpacing*M,this.dy=M<0?"0em":".71em";break;case Jo.Left:this.transform=function(B){return"translate(0,"+this.adjustedScale(B)+")"},this.textAnchor=Ys.End,this.x2=this.innerTickSize*-M,this.x1=this.tickSpacing*-M,this.dy=".32em";break;case Jo.Right:this.transform=function(B){return"translate(0,"+this.adjustedScale(B)+")"},this.textAnchor=Ys.Start,this.x2=this.innerTickSize*-M,this.x1=this.tickSpacing*-M,this.dy=".32em"}setTimeout(()=>this.updateDims())}setReferencelines(){this.refMin=this.adjustedScale(Math.min.apply(null,this.referenceLines.map(o=>o.value))),this.refMax=this.adjustedScale(Math.max.apply(null,this.referenceLines.map(o=>o.value))),this.referenceLineLength=this.referenceLines.length,this.referenceAreaPath=ad(0,this.refMax,this.gridLineWidth,this.refMin-this.refMax,0,[!1,!1,!1,!1])}getTicks(){let o;const M=this.getMaxTicks(20),B=this.getMaxTicks(50);return this.tickValues?o=this.tickValues:this.scale.ticks?o=this.scale.ticks.apply(this.scale,[B]):(o=this.scale.domain(),o=o3(o,M)),o}getMaxTicks(o){return Math.floor(this.height/o)}tickTransform(o){return`translate(${this.adjustedScale(o)},${this.verticalSpacing})`}gridLineTransform(){return"translate(5,0)"}tickTrim(o){return this.trimTicks?r0(o,this.maxTickLength):o}getApproximateAxisWidth(){return 7*Math.max(...this.ticks.map(B=>this.tickTrim(this.tickFormat(B)).length))}tickChunks(o){if(o.toString().length>this.maxTickLength&&this.scale.bandwidth){const M=this.maxTickLength,B=Math.floor(this.scale.bandwidth()/15);return B<=1?[this.tickTrim(o)]:T1(o,M,Math.min(B,5))}return[this.tickFormat(o)]}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-y-axis-ticks",""]],viewQuery:function(o,M){if(1&o&&e.GBs(g1,5),2&o){let B;e.mGM(B=e.lsd())&&(M.ticksElement=B.first)}},inputs:{scale:"scale",orient:"orient",tickArguments:"tickArguments",tickValues:"tickValues",tickStroke:"tickStroke",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",gridLineWidth:"gridLineWidth",height:"height",referenceLines:"referenceLines",showRefLabels:"showRefLabels",showRefLines:"showRefLines",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:xh,decls:6,vars:4,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],["class","reference-area",4,"ngIf"],[4,"ngFor","ngForOf"],[1,"tick"],[4,"ngIf"],["stroke-width","0.01"],[4,"ngIf","ngIfThen","ngIfElse"],[4,"ngIf","ngIfElse"],["x","0",4,"ngFor","ngForOf"],["x","0"],[1,"reference-area"],["class","gridline-path gridline-path-horizontal","x1","0",4,"ngIf"],["x1","0",1,"gridline-path","gridline-path-horizontal"],["x1","0",1,"refline-path","gridline-path-horizontal"],[1,"refline-label"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"g",null,0),e.DNE(2,Mh,2,2,"g",3),e.k0s(),e.DNE(3,f4,1,2,"path",4)(4,Sh,2,2,"g",5)(5,b1,2,1,"g",5)),2&o&&(e.R7$(2),e.Y8G("ngForOf",M.ticks),e.R7$(),e.Y8G("ngIf",M.referenceLineLength>1&&M.refMax&&M.refMin&&M.showRefLines),e.R7$(),e.Y8G("ngForOf",M.ticks),e.R7$(),e.Y8G("ngForOf",M.referenceLines))},dependencies:[t.Sq,t.bT],encapsulation:2,changeDetection:0}),u})(),A1=(()=>{class u{constructor(){this.showGridLines=!1,this.yOrient=Jo.Left,this.yAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new e.bkB,this.yAxisClassName="y axis",this.labelOffset=15,this.fill="none",this.stroke="#CCC",this.tickStroke="#CCC",this.strokeWidth=1,this.padding=5}ngOnChanges(o){this.update()}update(){this.offset=-(this.yAxisOffset+this.padding),this.yOrient===Jo.Right?(this.labelOffset=65,this.transform=`translate(${this.offset+this.dims.width} , 0)`):this.transform=`translate(${this.offset} , 0)`,void 0!==this.yAxisTickCount&&(this.tickArguments=[this.yAxisTickCount])}emitTicksWidth({width:o}){o!==this.labelOffset&&this.yOrient===Jo.Right?(this.labelOffset=o+this.labelOffset,setTimeout(()=>{this.dimensionsChanged.emit({width:o})},0)):o!==this.labelOffset&&(this.labelOffset=o,setTimeout(()=>{this.dimensionsChanged.emit({width:o})},0))}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-y-axis",""]],viewQuery:function(o,M){if(1&o&&e.GBs(tm,5),2&o){let B;e.mGM(B=e.lsd())&&(M.ticksComponent=B.first)}},inputs:{yScale:"yScale",dims:"dims",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",ticks:"ticks",showGridLines:"showGridLines",showLabel:"showLabel",labelText:"labelText",yAxisTickCount:"yAxisTickCount",yOrient:"yOrient",referenceLines:"referenceLines",showRefLines:"showRefLines",showRefLabels:"showRefLabels",yAxisOffset:"yAxisOffset",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:Rf,decls:3,vars:4,consts:[["ngx-charts-y-axis-ticks","",3,"trimTicks","maxTickLength","tickFormatting","tickArguments","tickValues","tickStroke","scale","orient","showGridLines","gridLineWidth","referenceLines","showRefLines","showRefLabels","height","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-y-axis-ticks","",3,"dimensionsChanged","trimTicks","maxTickLength","tickFormatting","tickArguments","tickValues","tickStroke","scale","orient","showGridLines","gridLineWidth","referenceLines","showRefLines","showRefLabels","height","wrapTicks"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"g"),e.DNE(1,Of,1,15,"g",0)(2,Ff,1,5,"g",1),e.k0s()),2&o&&(e.BMQ("class",M.yAxisClassName)("transform",M.transform),e.R7$(),e.Y8G("ngIf",M.yScale),e.R7$(),e.Y8G("ngIf",M.showLabel))},dependencies:[tm,tu,t.bT],encapsulation:2,changeDetection:0}),u})(),iu=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[t.MD]]}),u})();var k1=function(u){return u.popover="popover",u.tooltip="tooltip",u}(k1||{}),a0=function(u){return u[u.all="all"]="all",u[u.focus="focus"]="focus",u[u.mouseover="mouseover"]="mouseover",u}(a0||{});let c3=(()=>{class u{constructor(o,M,B){this.tooltipService=o,this.viewContainerRef=M,this.renderer=B,this.tooltipCssClass="",this.tooltipAppendToBody=!0,this.tooltipSpacing=10,this.tooltipDisabled=!1,this.tooltipShowCaret=!0,this.tooltipPlacement=pr.Top,this.tooltipAlignment=pr.Center,this.tooltipType=k1.popover,this.tooltipCloseOnClickOutside=!0,this.tooltipCloseOnMouseLeave=!0,this.tooltipHideTimeout=300,this.tooltipShowTimeout=100,this.tooltipShowEvent=a0.all,this.tooltipImmediateExit=!1,this.show=new e.bkB,this.hide=new e.bkB}get listensForFocus(){return this.tooltipShowEvent===a0.all||this.tooltipShowEvent===a0.focus}get listensForHover(){return this.tooltipShowEvent===a0.all||this.tooltipShowEvent===a0.mouseover}ngOnDestroy(){this.hideTooltip(!0)}onFocus(){this.listensForFocus&&this.showTooltip()}onBlur(){this.listensForFocus&&this.hideTooltip(!0)}onMouseEnter(){this.listensForHover&&this.showTooltip()}onMouseLeave(o){if(this.listensForHover&&this.tooltipCloseOnMouseLeave){if(clearTimeout(this.timeout),this.component&&this.component.instance.element.nativeElement.contains(o))return;this.hideTooltip(this.tooltipImmediateExit)}}onMouseClick(){this.listensForHover&&this.hideTooltip(!0)}showTooltip(o){if(this.component||this.tooltipDisabled)return;const M=o?0:this.tooltipShowTimeout+(navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)?400:0);clearTimeout(this.timeout),this.timeout=setTimeout(()=>{this.tooltipService.destroyAll();const B=this.createBoundOptions();this.component=this.tooltipService.create(B),setTimeout(()=>{this.component&&this.addHideListeners(this.component.instance.element.nativeElement)},10),this.show.emit(!0)},M)}addHideListeners(o){this.mouseEnterContentEvent=this.renderer.listen(o,"mouseenter",()=>{clearTimeout(this.timeout)}),this.tooltipCloseOnMouseLeave&&(this.mouseLeaveContentEvent=this.renderer.listen(o,"mouseleave",()=>{this.hideTooltip(this.tooltipImmediateExit)})),this.tooltipCloseOnClickOutside&&(this.documentClickEvent=this.renderer.listen("window","click",M=>{o.contains(M.target)||this.hideTooltip()}))}hideTooltip(o=!1){if(!this.component)return;const M=()=>{this.mouseLeaveContentEvent&&this.mouseLeaveContentEvent(),this.mouseEnterContentEvent&&this.mouseEnterContentEvent(),this.documentClickEvent&&this.documentClickEvent(),this.hide.emit(!0),this.tooltipService.destroy(this.component),this.component=void 0};clearTimeout(this.timeout),o?M():this.timeout=setTimeout(M,this.tooltipHideTimeout)}createBoundOptions(){return{title:this.tooltipTitle,template:this.tooltipTemplate,host:this.viewContainerRef.element,placement:this.tooltipPlacement,alignment:this.tooltipAlignment,type:this.tooltipType,showCaret:this.tooltipShowCaret,cssClass:this.tooltipCssClass,spacing:this.tooltipSpacing,context:this.tooltipContext}}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(qh),e.rXU(e.c1b),e.rXU(e.sFG))},u.\u0275dir=e.FsC({type:u,selectors:[["","ngx-tooltip",""]],hostBindings:function(o,M){1&o&&e.bIt("focusin",function(){return M.onFocus()})("blur",function(){return M.onBlur()})("mouseenter",function(){return M.onMouseEnter()})("mouseleave",function(Y){return M.onMouseLeave(Y.target)})("click",function(){return M.onMouseClick()})},inputs:{tooltipCssClass:"tooltipCssClass",tooltipTitle:"tooltipTitle",tooltipAppendToBody:"tooltipAppendToBody",tooltipSpacing:"tooltipSpacing",tooltipDisabled:"tooltipDisabled",tooltipShowCaret:"tooltipShowCaret",tooltipPlacement:"tooltipPlacement",tooltipAlignment:"tooltipAlignment",tooltipType:"tooltipType",tooltipCloseOnClickOutside:"tooltipCloseOnClickOutside",tooltipCloseOnMouseLeave:"tooltipCloseOnMouseLeave",tooltipHideTimeout:"tooltipHideTimeout",tooltipShowTimeout:"tooltipShowTimeout",tooltipTemplate:"tooltipTemplate",tooltipShowEvent:"tooltipShowEvent",tooltipContext:"tooltipContext",tooltipImmediateExit:"tooltipImmediateExit"},outputs:{show:"show",hide:"hide"}}),u})(),im=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({providers:[Cl,qh],imports:[[t.MD]]}),u})();const nm={};function o0(){let u=("0000"+(Math.random()*Math.pow(36,4)|0).toString(36)).slice(-4);return u=`a${u}`,nm[u]?o0():(nm[u]=!0,u)}var bo=function(u){return u.Vertical="vertical",u.Horizontal="horizontal",u}(bo||{});let l3=(()=>{class u{constructor(){this.orientation=bo.Vertical}ngOnChanges(o){this.x1="0%",this.x2="0%",this.y1="0%",this.y2="0%",this.orientation===bo.Horizontal?this.x2="100%":this.orientation===bo.Vertical&&(this.y1="100%")}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-svg-linear-gradient",""]],inputs:{orientation:"orientation",name:"name",stops:"stops"},features:[e.OA$],attrs:Nf,decls:2,vars:6,consts:[[3,"id"],[3,"stop-color","stop-opacity",4,"ngFor","ngForOf"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"linearGradient",0),e.DNE(1,Ws,1,5,"stop",1),e.k0s()),2&o&&(e.Y8G("id",M.name),e.BMQ("x1",M.x1)("y1",M.y1)("x2",M.x2)("y2",M.y2),e.R7$(),e.Y8G("ngForOf",M.stops))},dependencies:[t.Sq],encapsulation:2,changeDetection:0}),u})(),ru=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-grid-panel",""]],inputs:{width:"width",height:"height",x:"x",y:"y"},attrs:Dh,decls:1,vars:4,consts:[["stroke","none",1,"gridpanel"]],template:function(o,M){1&o&&(e.qSk(),e.nrm(0,"rect",0)),2&o&&e.BMQ("height",M.height)("width",M.width)("x",M.x)("y",M.y)},encapsulation:2,changeDetection:0}),u})();var Ml=function(u){return u.Odd="odd",u.Even="even",u}(Ml||{});let s0,au=(()=>{class u{ngOnChanges(o){this.update()}update(){this.gridPanels=this.getGridPanels()}getGridPanels(){return this.data.map(o=>{let M,B,Y,Le,Ct,Gt=Ml.Odd;if(this.orient===bo.Vertical){const Ht=this.xScale(o.name);Number.parseInt((Ht/this.xScale.step()).toString(),10)%2==1&&(Gt=Ml.Even),M=this.xScale.bandwidth()*this.xScale.paddingInner(),B=this.xScale.bandwidth()+M,Y=this.dims.height,Le=this.xScale(o.name)-M/2,Ct=0}else if(this.orient===bo.Horizontal){const Ht=this.yScale(o.name);Number.parseInt((Ht/this.yScale.step()).toString(),10)%2==1&&(Gt=Ml.Even),M=this.yScale.bandwidth()*this.yScale.paddingInner(),B=this.dims.width,Y=this.yScale.bandwidth()+M,Le=0,Ct=this.yScale(o.name)-M/2}return{name:o.name,class:Gt,height:Y,width:B,x:Le,y:Ct}})}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-grid-panel-series",""]],inputs:{data:"data",dims:"dims",xScale:"xScale",yScale:"yScale",orient:"orient"},features:[e.OA$],attrs:Ah,decls:1,vars:1,consts:[["ngx-charts-grid-panel","",3,"height","width","x","y","grid-panel","odd","even",4,"ngFor","ngForOf"],["ngx-charts-grid-panel","",3,"height","width","x","y"]],template:function(o,M){1&o&&e.DNE(0,kh,1,10,"g",0),2&o&&e.Y8G("ngForOf",M.gridPanels)},dependencies:[ru,t.Sq],encapsulation:2,changeDetection:0}),u})();typeof window<"u"?s0=window:typeof global<"u"&&(s0=global);let qo=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[t.MD,iu,im],t.MD,iu,im]}),u})();function om({width:u,height:A,margins:o,showXAxis:M=!1,showYAxis:B=!1,xAxisHeight:Y=0,yAxisWidth:Le=0,showXLabel:Ct=!1,showYLabel:Gt=!1,showLegend:Ht=!1,legendType:li=jn.Ordinal,legendPosition:gi=wl.Right,columns:wi=12}){let Ai=o[3],cn=u,Tn=A-o[0]-o[2];return Ht&&gi===wl.Right&&(wi-=li===jn.Ordinal?2:1),cn=cn*wi/12,cn=cn-o[1]-o[3],M&&(Tn-=5,Tn-=Y,Ct&&(Tn-=30)),B&&(cn-=5,cn-=Le,Ai+=Le,Ai+=10,Gt&&(cn-=30,Ai+=30)),cn=Math.max(0,cn),Tn=Math.max(0,Tn),{width:Math.floor(cn),height:Math.floor(Tn),xOffset:Math.floor(Ai)}}const f3=[{name:"vivid",selectable:!0,group:jn.Ordinal,domain:["#647c8a","#3f51b5","#2196f3","#00b862","#afdf0a","#a7b61a","#f3e562","#ff9800","#ff5722","#ff4514"]},{name:"natural",selectable:!0,group:jn.Ordinal,domain:["#bf9d76","#e99450","#d89f59","#f2dfa7","#a5d7c6","#7794b1","#afafaf","#707160","#ba9383","#d9d5c3"]},{name:"cool",selectable:!0,group:jn.Ordinal,domain:["#a8385d","#7aa3e5","#a27ea8","#aae3f5","#adcded","#a95963","#8796c0","#7ed3ed","#50abcc","#ad6886"]},{name:"fire",selectable:!0,group:jn.Ordinal,domain:["#ff3d00","#bf360c","#ff8f00","#ff6f00","#ff5722","#e65100","#ffca28","#ffab00"]},{name:"solar",selectable:!0,group:jn.Linear,domain:["#fff8e1","#ffecb3","#ffe082","#ffd54f","#ffca28","#ffc107","#ffb300","#ffa000","#ff8f00","#ff6f00"]},{name:"air",selectable:!0,group:jn.Linear,domain:["#e1f5fe","#b3e5fc","#81d4fa","#4fc3f7","#29b6f6","#03a9f4","#039be5","#0288d1","#0277bd","#01579b"]},{name:"aqua",selectable:!0,group:jn.Linear,domain:["#e0f7fa","#b2ebf2","#80deea","#4dd0e1","#26c6da","#00bcd4","#00acc1","#0097a7","#00838f","#006064"]},{name:"flame",selectable:!1,group:jn.Ordinal,domain:["#A10A28","#D3342D","#EF6D49","#FAAD67","#FDDE90","#DBED91","#A9D770","#6CBA67","#2C9653","#146738"]},{name:"ocean",selectable:!1,group:jn.Ordinal,domain:["#1D68FB","#33C0FC","#4AFFFE","#AFFFFF","#FFFC63","#FDBD2D","#FC8A25","#FA4F1E","#FA141B","#BA38D1"]},{name:"forest",selectable:!1,group:jn.Ordinal,domain:["#55C22D","#C1F33D","#3CC099","#AFFFFF","#8CFC9D","#76CFFA","#BA60FB","#EE6490","#C42A1C","#FC9F32"]},{name:"horizon",selectable:!1,group:jn.Ordinal,domain:["#2597FB","#65EBFD","#99FDD0","#FCEE4B","#FEFCFA","#FDD6E3","#FCB1A8","#EF6F7B","#CB96E8","#EFDEE0"]},{name:"neons",selectable:!1,group:jn.Ordinal,domain:["#FF3333","#FF33FF","#CC33FF","#0000FF","#33CCFF","#33FFFF","#33FF66","#CCFF33","#FFCC00","#FF6600"]},{name:"picnic",selectable:!1,group:jn.Ordinal,domain:["#FAC51D","#66BD6D","#FAA026","#29BB9C","#E96B56","#55ACD2","#B7332F","#2C83C9","#9166B8","#92E7E8"]},{name:"night",selectable:!1,group:jn.Ordinal,domain:["#2B1B5A","#501356","#183356","#28203F","#391B3C","#1E2B3C","#120634","#2D0432","#051932","#453080","#75267D","#2C507D","#4B3880","#752F7D","#35547D"]},{name:"nightLights",selectable:!1,group:jn.Ordinal,domain:["#4e31a5","#9c25a7","#3065ab","#57468b","#904497","#46648b","#32118d","#a00fb3","#1052a2","#6e51bd","#b63cc3","#6c97cb","#8671c1","#b455be","#7496c3"]}];class sm{constructor(A,o,M,B){"string"==typeof A&&(A=f3.find(Y=>Y.name===A)),this.colorDomain=A.domain,this.scaleType=o,this.domain=M,this.customColors=B,this.scale=this.generateColorScheme(A,o,this.domain)}generateColorScheme(A,o,M){let B;switch("string"==typeof A&&(A=f3.find(Y=>Y.name===A)),o){case jn.Quantile:B=Cd().range(A.domain).domain(M);break;case jn.Ordinal:B=Wc().range(A.domain).domain(M);break;case jn.Linear:{const Y=[...A.domain];1===Y.length&&(Y.push(Y[0]),this.colorDomain=Y);const Le=fh(0,1,1/Y.length);B=Gs().range(Y).domain(Le)}}return B}getColor(A){if(null==A)throw new Error("Value can not be null");if(this.scaleType===jn.Linear){const o=Gs().domain(this.domain).range([0,1]);return this.scale(o(A))}{if("function"==typeof this.customColors)return this.customColors(A);const o=A.toString();let M;return this.customColors&&this.customColors.length>0&&(M=this.customColors.find(B=>B.name.toLowerCase()===o.toLowerCase())),M?M.value:this.scale(A)}}getLinearGradientStops(A,o){void 0===o&&(o=this.domain[0]);const M=Gs().domain(this.domain).range([0,1]),B=Ac().domain(this.colorDomain).range([0,1]),Y=this.getColor(A),Le=M(o),Ct=this.getColor(o),Gt=M(A);let Ht=1,li=Le;const gi=[];for(gi.push({color:Ct,offset:Le,originalOffset:Le,opacity:1});li=(Gt-B.bandwidth()).toFixed(4))break;gi.push({color:wi,offset:Ai,opacity:1}),li=Ai,Ht++}}if(gi[gi.length-1].offset<100&&gi.push({color:Y,offset:Gt,opacity:1}),Gt===Le)gi[0].offset=0,gi[1].offset=100;else if(100!==gi[gi.length-1].offset)for(const wi of gi)wi.offset=(wi.offset-Le)/(Gt-Le)*100;return gi}}let cu=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),c0=(()=>{class u{constructor(o){this.roundEdges=!0,this.gradient=!1,this.offset=0,this.isActive=!1,this.animations=!0,this.noBarWhenZero=!0,this.select=new e.bkB,this.activate=new e.bkB,this.deactivate=new e.bkB,this.hasGradient=!1,this.hideBar=!1,this.element=o.nativeElement}ngOnChanges(o){o.roundEdges&&this.loadAnimation(),this.update()}update(){this.gradientId="grad"+o0().toString(),this.gradientFill=`url(#${this.gradientId})`,this.gradient||this.stops?(this.gradientStops=this.getGradient(),this.hasGradient=!0):this.hasGradient=!1,this.updatePathEl(),this.checkToHideBar()}loadAnimation(){this.path=this.getStartingPath(),setTimeout(this.update.bind(this),100)}updatePathEl(){const o=function re(u){return"string"==typeof u?new Ni([[document.querySelector(u)]],[document.documentElement]):new Ni([[u]],en)}(this.element).select(".bar"),M=this.getPath();this.animations?o.transition().duration(500).attr("d",M):o.attr("d",M)}getGradient(){return this.stops?this.stops:[{offset:0,color:this.fill,opacity:this.getStartOpacity()},{offset:100,color:this.fill,opacity:1}]}getStartingPath(){if(!this.animations)return this.getPath();let M,o=this.getRadius();return this.roundEdges?this.orientation===bo.Vertical?(o=Math.min(this.height,o),M=ad(this.x,this.y+this.height,this.width,1,0,this.edges)):this.orientation===bo.Horizontal&&(o=Math.min(this.width,o),M=ad(this.x,this.y,1,this.height,0,this.edges)):this.orientation===bo.Vertical?M=ad(this.x,this.y+this.height,this.width,1,0,this.edges):this.orientation===bo.Horizontal&&(M=ad(this.x,this.y,1,this.height,0,this.edges)),M}getPath(){let M,o=this.getRadius();return this.roundEdges?this.orientation===bo.Vertical?(o=Math.min(this.height,o),M=ad(this.x,this.y,this.width,this.height,o,this.edges)):this.orientation===bo.Horizontal&&(o=Math.min(this.width,o),M=ad(this.x,this.y,this.width,this.height,o,this.edges)):M=ad(this.x,this.y,this.width,this.height,o,this.edges),M}getRadius(){let o=0;return this.roundEdges&&this.height>5&&this.width>5&&(o=Math.floor(Math.min(5,this.height/2,this.width/2))),o}getStartOpacity(){return this.roundEdges?.2:.5}get edges(){let o=[!1,!1,!1,!1];return this.roundEdges&&(this.orientation===bo.Vertical?o=this.data.value>0?[!0,!0,!1,!1]:[!1,!1,!0,!0]:this.orientation===bo.Horizontal&&(o=this.data.value>0?[!1,!0,!1,!0]:[!0,!1,!0,!1])),o}onMouseEnter(){this.activate.emit(this.data)}onMouseLeave(){this.deactivate.emit(this.data)}checkToHideBar(){this.hideBar=this.noBarWhenZero&&(this.orientation===bo.Vertical&&0===this.height||this.orientation===bo.Horizontal&&0===this.width)}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-bar",""]],hostBindings:function(o,M){1&o&&e.bIt("mouseenter",function(){return M.onMouseEnter()})("mouseleave",function(){return M.onMouseLeave()})},inputs:{fill:"fill",data:"data",width:"width",height:"height",x:"x",y:"y",orientation:"orientation",roundEdges:"roundEdges",gradient:"gradient",offset:"offset",isActive:"isActive",stops:"stops",animations:"animations",ariaLabel:"ariaLabel",noBarWhenZero:"noBarWhenZero"},outputs:{select:"select",activate:"activate",deactivate:"deactivate"},features:[e.OA$],attrs:Ad,decls:2,vars:8,consts:[[4,"ngIf"],["stroke","none","role","img","tabIndex","-1",1,"bar",3,"click"],["ngx-charts-svg-linear-gradient","",3,"orientation","name","stops"]],template:function(o,M){1&o&&(e.DNE(0,jh,2,3,"defs",0),e.qSk(),e.j41(1,"path",1),e.bIt("click",function(){return M.select.emit(M.data)}),e.k0s()),2&o&&(e.Y8G("ngIf",M.hasGradient),e.R7$(),e.AVh("active",M.isActive)("hidden",M.hideBar),e.BMQ("d",M.path)("aria-label",M.ariaLabel)("fill",M.hasGradient?M.gradientFill:M.fill))},dependencies:[l3,t.bT],encapsulation:2,changeDetection:0}),u})();var El=function(u){return u.Standard="standard",u.Normalized="normalized",u.Stacked="stacked",u}(El||{}),Fd=function(u){return u.positive="positive",u.negative="negative",u}(Fd||{});let l0=(()=>{class u{constructor(o){this.dimensionsChanged=new e.bkB,this.horizontalPadding=2,this.verticalPadding=5,this.element=o.nativeElement}ngOnChanges(o){this.update()}getSize(){return{height:this.element.getBoundingClientRect().height,width:this.element.getBoundingClientRect().width,negative:this.value<0}}ngAfterViewInit(){this.dimensionsChanged.emit(this.getSize())}update(){this.formatedValue=this.valueFormatting?this.valueFormatting(this.value):t0(this.value),"horizontal"===this.orientation?(this.x=this.barX+this.barWidth,this.value<0?(this.x=this.x-this.horizontalPadding,this.textAnchor="end"):(this.x=this.x+this.horizontalPadding,this.textAnchor="start"),this.y=this.barY+this.barHeight/2):(this.x=this.barX+this.barWidth/2,this.y=this.barY+this.barHeight,this.value<0?(this.y=this.y+this.verticalPadding,this.textAnchor="end"):(this.y=this.y-this.verticalPadding,this.textAnchor="start"),this.transform=`rotate(-45, ${this.x} , ${this.y})`)}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.aKT))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-bar-label",""]],inputs:{value:"value",valueFormatting:"valueFormatting",barX:"barX",barY:"barY",barWidth:"barWidth",barHeight:"barHeight",orientation:"orientation"},outputs:{dimensionsChanged:"dimensionsChanged"},features:[e.OA$],attrs:Wh,decls:2,vars:5,consts:[["alignment-baseline","middle",1,"textDataLabel"]],template:function(o,M){1&o&&(e.qSk(),e.j41(0,"text",0),e.EFF(1),e.k0s()),2&o&&(e.BMQ("text-anchor",M.textAnchor)("transform",M.transform)("x",M.x)("y",M.y),e.R7$(),e.SpI(" ",M.formatedValue," "))},styles:[".textDataLabel[_ngcontent-%COMP%]{font-size:11px}"],changeDetection:0}),u})(),hm=(()=>{class u{constructor(o){this.platformId=o,this.type=El.Standard,this.tooltipDisabled=!1,this.animations=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.select=new e.bkB,this.activate=new e.bkB,this.deactivate=new e.bkB,this.dataLabelHeightChanged=new e.bkB,this.barsForDataLabels=[],this.barOrientation=bo,this.isSSR=!1}ngOnInit(){(0,t.Vy)(this.platformId)&&(this.isSSR=!0)}ngOnChanges(o){this.update()}update(){let o;this.updateTooltipSettings(),this.series.length&&(o=this.xScale.bandwidth()),o=Math.round(o);const M=Math.max(this.yScale.domain()[0],0),B={[Fd.positive]:0,[Fd.negative]:0};let Le,Y=Fd.positive;this.type===El.Normalized&&(Le=this.series.map(Ct=>Ct.value).reduce((Ct,Gt)=>Ct+Gt,0)),this.bars=this.series.map((Ct,Gt)=>{let Ht=Ct.value;const li=this.getLabel(Ct),gi=t0(li);Y=Ht>0?Fd.positive:Fd.negative;const Ai={value:Ht,label:li,roundEdges:this.roundEdges,data:Ct,width:o,formattedLabel:gi,height:0,x:0,y:0};if(this.type===El.Standard)Ai.height=Math.abs(this.yScale(Ht)-this.yScale(M)),Ai.x=this.xScale(li),Ai.y=this.yScale(Ht<0?0:Ht);else if(this.type===El.Stacked){const Tn=B[Y],ki=Tn+Ht;B[Y]+=Ht,Ai.height=this.yScale(Tn)-this.yScale(ki),Ai.x=0,Ai.y=this.yScale(ki),Ai.offset0=Tn,Ai.offset1=ki}else if(this.type===El.Normalized){let Tn=B[Y],ki=Tn+Ht;B[Y]+=Ht,Le>0?(Tn=100*Tn/Le,ki=100*ki/Le):(Tn=0,ki=0),Ai.height=this.yScale(Tn)-this.yScale(ki),Ai.x=0,Ai.y=this.yScale(ki),Ai.offset0=Tn,Ai.offset1=ki,Ht=(ki-Tn).toFixed(2)+"%"}this.colors.scaleType===jn.Ordinal?Ai.color=this.colors.getColor(li):this.type===El.Standard?(Ai.color=this.colors.getColor(Ht),Ai.gradientStops=this.colors.getLinearGradientStops(Ht)):(Ai.color=this.colors.getColor(Ai.offset1),Ai.gradientStops=this.colors.getLinearGradientStops(Ai.offset1,Ai.offset0));let cn=gi;return Ai.ariaLabel=gi+" "+Ht.toLocaleString(),null!=this.seriesName&&(cn=`${this.seriesName} \u2022 ${gi}`,Ai.data.series=this.seriesName,Ai.ariaLabel=this.seriesName+" "+Ai.ariaLabel),Ai.tooltipText=this.tooltipDisabled?void 0:`\n ${function r3(u){return u.toLocaleString().replace(/[&'`"<>]/g,A=>({"&":"&","'":"'","`":"`",'"':""","<":"<",">":">"}[A]))}(cn)}\n ${this.dataLabelFormatting?this.dataLabelFormatting(Ht):Ht.toLocaleString()}\n `,Ai}),this.updateDataLabels()}updateDataLabels(){if(this.type===El.Stacked){this.barsForDataLabels=[];const o={};o.series=this.seriesName;const M=this.series.map(Y=>Y.value).reduce((Y,Le)=>Le>0?Y+Le:Y,0),B=this.series.map(Y=>Y.value).reduce((Y,Le)=>Le<0?Y+Le:Y,0);o.total=M+B,o.x=0,o.y=0,o.height=this.yScale(o.total>0?M:B),o.width=this.xScale.bandwidth(),this.barsForDataLabels.push(o)}else this.barsForDataLabels=this.series.map(o=>{const M={};return M.series=this.seriesName??o.label,M.total=o.value,M.x=this.xScale(o.label),M.y=this.yScale(0),M.height=this.yScale(M.total)-this.yScale(0),M.width=this.xScale.bandwidth(),M})}updateTooltipSettings(){this.tooltipPlacement=this.tooltipDisabled?void 0:pr.Top,this.tooltipType=this.tooltipDisabled?void 0:k1.tooltip}isActive(o){return!!this.activeEntries&&void 0!==this.activeEntries.find(B=>o.name===B.name&&o.value===B.value)}onClick(o){this.select.emit(o)}getLabel(o){return o.label?o.label:o.name}trackBy(o,M){return M.label}trackDataLabelBy(o,M){return o+"#"+M.series+"#"+M.total}}return u.\u0275fac=function(o){return new(o||u)(e.rXU(e.Agw))},u.\u0275cmp=e.VBU({type:u,selectors:[["g","ngx-charts-series-vertical",""]],inputs:{dims:"dims",type:"type",series:"series",xScale:"xScale",yScale:"yScale",colors:"colors",gradient:"gradient",activeEntries:"activeEntries",seriesName:"seriesName",tooltipDisabled:"tooltipDisabled",tooltipTemplate:"tooltipTemplate",roundEdges:"roundEdges",animations:"animations",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",dataLabelHeightChanged:"dataLabelHeightChanged"},features:[e.OA$],attrs:bn,decls:3,vars:3,consts:[[4,"ngIf"],["ngx-charts-bar","","ngx-tooltip","",3,"width","height","x","y","fill","stops","data","orientation","roundEdges","gradient","ariaLabel","isActive","tooltipDisabled","tooltipPlacement","tooltipType","tooltipTitle","tooltipTemplate","tooltipContext","noBarWhenZero","animations","select","activate","deactivate",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-bar","","ngx-tooltip","",3,"select","activate","deactivate","width","height","x","y","fill","stops","data","orientation","roundEdges","gradient","ariaLabel","isActive","tooltipDisabled","tooltipPlacement","tooltipType","tooltipTitle","tooltipTemplate","tooltipContext","noBarWhenZero","animations"],["ngx-charts-bar-label","",3,"barX","barY","barWidth","barHeight","value","valueFormatting","orientation","dimensionsChanged",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-bar-label","",3,"dimensionsChanged","barX","barY","barWidth","barHeight","value","valueFormatting","orientation"]],template:function(o,M){1&o&&e.DNE(0,Ji,2,2,"g",0)(1,Un,2,2,"g",0)(2,la,2,2,"g",0),2&o&&(e.Y8G("ngIf",!M.isSSR),e.R7$(),e.Y8G("ngIf",M.isSSR),e.R7$(),e.Y8G("ngIf",M.showDataLabel))},dependencies:[c0,l0,t.bT,t.Sq,c3],encapsulation:2,data:{animation:[(0,f.hZ)("animationState",[(0,f.kY)(":leave",[(0,f.iF)({opacity:1}),(0,f.i0)(500,(0,f.iF)({opacity:0}))])])]},changeDetection:0}),u})(),um=(()=>{class u extends a3{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=wl.Right,this.tooltipDisabled=!1,this.showGridLines=!0,this.activeEntries=[],this.trimXAxisTicks=!0,this.trimYAxisTicks=!0,this.rotateXAxisTicks=!0,this.maxXAxisTickLength=16,this.maxYAxisTickLength=16,this.barPadding=8,this.roundDomains=!1,this.roundEdges=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.wrapTicks=!1,this.activate=new e.bkB,this.deactivate=new e.bkB,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0}}update(){super.update(),this.showDataLabel||(this.dataLabelMaxHeight={negative:0,positive:0}),this.margin=[10+this.dataLabelMaxHeight.positive,20,10+this.dataLabelMaxHeight.negative,20],this.dims=om({width:this.width,height:this.height,margins:this.margin,showXAxis:this.xAxis,showYAxis:this.yAxis,xAxisHeight:this.xAxisHeight,yAxisWidth:this.yAxisWidth,showXLabel:this.showXAxisLabel,showYLabel:this.showYAxisLabel,showLegend:this.legend,legendType:this.schemeType,legendPosition:this.legendPosition}),this.formatDates(),this.showDataLabel&&(this.dims.height-=this.dataLabelMaxHeight.negative),this.xScale=this.getXScale(),this.yScale=this.getYScale(),this.setColors(),this.legendOptions=this.getLegendOptions(),this.transform=`translate(${this.dims.xOffset} , ${this.margin[0]+this.dataLabelMaxHeight.negative})`}getXScale(){this.xDomain=this.getXDomain();const o=this.xDomain.length/(this.dims.width/this.barPadding+1);return Ac().range([0,this.dims.width]).paddingInner(o).domain(this.xDomain)}getYScale(){this.yDomain=this.getYDomain();const o=Gs().range([this.dims.height,0]).domain(this.yDomain);return this.roundDomains?o.nice():o}getXDomain(){return this.results.map(o=>o.label)}getYDomain(){const o=this.results.map(Y=>Y.value);let M=this.yScaleMin?Math.min(this.yScaleMin,...o):Math.min(0,...o);this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(M=Math.min(M,...this.yAxisTicks));let B=this.yScaleMax?Math.max(this.yScaleMax,...o):Math.max(0,...o);return this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(B=Math.max(B,...this.yAxisTicks)),[M,B]}onClick(o){this.select.emit(o)}setColors(){let o;o=this.schemeType===jn.Ordinal?this.xDomain:this.yDomain,this.colors=new sm(this.scheme,this.schemeType,o,this.customColors)}getLegendOptions(){const o={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return o.scaleType===jn.Ordinal?(o.domain=this.xDomain,o.colors=this.colors,o.title=this.legendTitle):(o.domain=this.yDomain,o.colors=this.colors.scale),o}updateYAxisWidth({width:o}){this.yAxisWidth=o,this.update()}updateXAxisHeight({height:o}){this.xAxisHeight=o,this.update()}onDataLabelMaxHeightChanged(o){o.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,o.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,o.size.height),o.index===this.results.length-1&&setTimeout(()=>this.update())}onActivate(o,M=!1){o=this.results.find(Y=>M?Y.label===o.name:Y.name===o.name),!(this.activeEntries.findIndex(Y=>Y.name===o.name&&Y.value===o.value&&Y.series===o.series)>-1)&&(this.activeEntries=[o,...this.activeEntries],this.activate.emit({value:o,entries:this.activeEntries}))}onDeactivate(o,M=!1){o=this.results.find(Y=>M?Y.label===o.name:Y.name===o.name);const B=this.activeEntries.findIndex(Y=>Y.name===o.name&&Y.value===o.value&&Y.series===o.series);this.activeEntries.splice(B,1),this.activeEntries=[...this.activeEntries],this.deactivate.emit({value:o,entries:this.activeEntries})}}return u.\u0275fac=(()=>{let A;return function(M){return(A||(A=e.xGo(u)))(M||u)}})(),u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-bar-vertical"]],contentQueries:function(o,M,B){if(1&o&&e.wni(B,Dd,5),2&o){let Y;e.mGM(Y=e.lsd())&&(M.tooltipTemplate=Y.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",gradient:"gradient",showGridLines:"showGridLines",activeEntries:"activeEntries",schemeType:"schemeType",trimXAxisTicks:"trimXAxisTicks",trimYAxisTicks:"trimYAxisTicks",rotateXAxisTicks:"rotateXAxisTicks",maxXAxisTickLength:"maxXAxisTickLength",maxYAxisTickLength:"maxYAxisTickLength",xAxisTickFormatting:"xAxisTickFormatting",yAxisTickFormatting:"yAxisTickFormatting",xAxisTicks:"xAxisTicks",yAxisTicks:"yAxisTicks",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",yScaleMin:"yScaleMin",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},features:[e.Vt3],decls:5,vars:25,consts:[[3,"legendLabelClick","legendLabelActivate","legendLabelDeactivate","view","showLegend","legendOptions","activeEntries","animations"],[1,"bar-chart","chart"],["ngx-charts-x-axis","",3,"xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-series-vertical","",3,"activate","deactivate","select","dataLabelHeightChanged","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","activeEntries","roundEdges","animations","noBarWhenZero"],["ngx-charts-x-axis","",3,"dimensionsChanged","xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks"],["ngx-charts-y-axis","",3,"dimensionsChanged","yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks"]],template:function(o,M){1&o&&(e.j41(0,"ngx-charts-chart",0),e.bIt("legendLabelClick",function(Y){return M.onClick(Y)})("legendLabelActivate",function(Y){return M.onActivate(Y,!0)})("legendLabelDeactivate",function(Y){return M.onDeactivate(Y,!0)}),e.qSk(),e.j41(1,"g",1),e.DNE(2,cr,1,12,"g",2)(3,ta,1,10,"g",3),e.j41(4,"g",4),e.bIt("activate",function(Y){return M.onActivate(Y)})("deactivate",function(Y){return M.onDeactivate(Y)})("select",function(Y){return M.onClick(Y)})("dataLabelHeightChanged",function(Y){return M.onDataLabelMaxHeightChanged(Y)}),e.k0s()()()),2&o&&(e.Y8G("view",e.l_i(22,vl,M.width,M.height))("showLegend",M.legend)("legendOptions",M.legendOptions)("activeEntries",M.activeEntries)("animations",M.animations),e.R7$(),e.BMQ("transform",M.transform),e.R7$(),e.Y8G("ngIf",M.xAxis),e.R7$(),e.Y8G("ngIf",M.yAxis),e.R7$(),e.Y8G("xScale",M.xScale)("yScale",M.yScale)("colors",M.colors)("series",M.results)("dims",M.dims)("gradient",M.gradient)("tooltipDisabled",M.tooltipDisabled)("tooltipTemplate",M.tooltipTemplate)("showDataLabel",M.showDataLabel)("dataLabelFormatting",M.dataLabelFormatting)("activeEntries",M.activeEntries)("roundEdges",M.roundEdges)("animations",M.animations)("noBarWhenZero",M.noBarWhenZero))},dependencies:[eu,s3,A1,hm,t.bT],styles:[C1],encapsulation:2,changeDetection:0}),u})(),c6=(()=>{class u extends a3{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=wl.Right,this.tooltipDisabled=!1,this.scaleType=jn.Ordinal,this.showGridLines=!0,this.activeEntries=[],this.trimXAxisTicks=!0,this.trimYAxisTicks=!0,this.rotateXAxisTicks=!0,this.maxXAxisTickLength=16,this.maxYAxisTickLength=16,this.groupPadding=16,this.barPadding=8,this.roundDomains=!1,this.roundEdges=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.wrapTicks=!1,this.activate=new e.bkB,this.deactivate=new e.bkB,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0},this.isSSR=!1,this.barOrientation=bo,this.trackBy=(o,M)=>M.name}ngOnInit(){(0,t.Vy)(this.platformId)&&(this.isSSR=!0)}update(){super.update(),this.showDataLabel||(this.dataLabelMaxHeight={negative:0,positive:0}),this.margin=[10+this.dataLabelMaxHeight.positive,20,10+this.dataLabelMaxHeight.negative,20],this.dims=om({width:this.width,height:this.height,margins:this.margin,showXAxis:this.xAxis,showYAxis:this.yAxis,xAxisHeight:this.xAxisHeight,yAxisWidth:this.yAxisWidth,showXLabel:this.showXAxisLabel,showYLabel:this.showYAxisLabel,showLegend:this.legend,legendType:this.schemeType,legendPosition:this.legendPosition}),this.showDataLabel&&(this.dims.height-=this.dataLabelMaxHeight.negative),this.formatDates(),this.groupDomain=this.getGroupDomain(),this.innerDomain=this.getInnerDomain(),this.valueDomain=this.getValueDomain(),this.groupScale=this.getGroupScale(),this.innerScale=this.getInnerScale(),this.valueScale=this.getValueScale(),this.setColors(),this.legendOptions=this.getLegendOptions(),this.transform=`translate(${this.dims.xOffset} , ${this.margin[0]+this.dataLabelMaxHeight.negative})`}onDataLabelMaxHeightChanged(o,M){o.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,o.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,o.size.height),M===this.results.length-1&&setTimeout(()=>this.update())}getGroupScale(){const o=this.groupDomain.length/(this.dims.height/this.groupPadding+1);return Ac().rangeRound([0,this.dims.width]).paddingInner(o).paddingOuter(o/2).domain(this.groupDomain)}getInnerScale(){const o=this.groupScale.bandwidth(),M=this.innerDomain.length/(o/this.barPadding+1);return Ac().rangeRound([0,o]).paddingInner(M).domain(this.innerDomain)}getValueScale(){const o=Gs().range([this.dims.height,0]).domain(this.valueDomain);return this.roundDomains?o.nice():o}getGroupDomain(){const o=[];for(const M of this.results)o.includes(M.label)||o.push(M.label);return o}getInnerDomain(){const o=[];for(const M of this.results)for(const B of M.series)o.includes(B.label)||o.push(B.label);return o}getValueDomain(){const o=[];for(const Y of this.results)for(const Le of Y.series)o.includes(Le.value)||o.push(Le.value);return[Math.min(0,...o),this.yScaleMax?Math.max(this.yScaleMax,...o):Math.max(0,...o)]}groupTransform(o){return`translate(${this.groupScale(o.label)}, 0)`}onClick(o,M){M&&(o.series=M.name),this.select.emit(o)}setColors(){let o;o=this.schemeType===jn.Ordinal?this.innerDomain:this.valueDomain,this.colors=new sm(this.scheme,this.schemeType,o,this.customColors)}getLegendOptions(){const o={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return o.scaleType===jn.Ordinal?(o.domain=this.innerDomain,o.colors=this.colors,o.title=this.legendTitle):(o.domain=this.valueDomain,o.colors=this.colors.scale),o}updateYAxisWidth({width:o}){this.yAxisWidth=o,this.update()}updateXAxisHeight({height:o}){this.xAxisHeight=o,this.update()}onActivate(o,M,B=!1){const Y=Object.assign({},o);M&&(Y.series=M.name);const Le=this.results.map(Ct=>Ct.series).flat().filter(Ct=>B?Ct.label===Y.name:Ct.name===Y.name&&Ct.series===Y.series);this.activeEntries=[...Le],this.activate.emit({value:Y,entries:this.activeEntries})}onDeactivate(o,M,B=!1){const Y=Object.assign({},o);M&&(Y.series=M.name),this.activeEntries=this.activeEntries.filter(Le=>B?Le.label!==Y.name:!(Le.name===Y.name&&Le.series===Y.series)),this.deactivate.emit({value:Y,entries:this.activeEntries})}}return u.\u0275fac=(()=>{let A;return function(M){return(A||(A=e.xGo(u)))(M||u)}})(),u.\u0275cmp=e.VBU({type:u,selectors:[["ngx-charts-bar-vertical-2d"]],contentQueries:function(o,M,B){if(1&o&&e.wni(B,Dd,5),2&o){let Y;e.mGM(Y=e.lsd())&&(M.tooltipTemplate=Y.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",scaleType:"scaleType",gradient:"gradient",showGridLines:"showGridLines",activeEntries:"activeEntries",schemeType:"schemeType",trimXAxisTicks:"trimXAxisTicks",trimYAxisTicks:"trimYAxisTicks",rotateXAxisTicks:"rotateXAxisTicks",maxXAxisTickLength:"maxXAxisTickLength",maxYAxisTickLength:"maxYAxisTickLength",xAxisTickFormatting:"xAxisTickFormatting",yAxisTickFormatting:"yAxisTickFormatting",xAxisTicks:"xAxisTicks",yAxisTicks:"yAxisTicks",groupPadding:"groupPadding",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},features:[e.Vt3],decls:7,vars:18,consts:[[3,"legendLabelActivate","legendLabelDeactivate","legendLabelClick","view","showLegend","legendOptions","activeEntries","animations"],[1,"bar-chart","chart"],["ngx-charts-grid-panel-series","",3,"xScale","yScale","data","dims","orient"],["ngx-charts-x-axis","",3,"xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks","dimensionsChanged",4,"ngIf"],[4,"ngIf"],["ngx-charts-x-axis","",3,"dimensionsChanged","xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks"],["ngx-charts-y-axis","",3,"dimensionsChanged","yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks"],["ngx-charts-series-vertical","",3,"activeEntries","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","seriesName","roundEdges","animations","noBarWhenZero","select","activate","deactivate","dataLabelHeightChanged",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-series-vertical","",3,"select","activate","deactivate","dataLabelHeightChanged","activeEntries","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","seriesName","roundEdges","animations","noBarWhenZero"]],template:function(o,M){1&o&&(e.j41(0,"ngx-charts-chart",0),e.bIt("legendLabelActivate",function(Y){return M.onActivate(Y,void 0,!0)})("legendLabelDeactivate",function(Y){return M.onDeactivate(Y,void 0,!0)})("legendLabelClick",function(Y){return M.onClick(Y)}),e.qSk(),e.j41(1,"g",1),e.nrm(2,"g",2),e.DNE(3,Ar,1,11,"g",3)(4,ma,1,10,"g",4)(5,rc,2,2,"g",5),e.k0s(),e.DNE(6,M1,2,2,"g",5),e.k0s()),2&o&&(e.Y8G("view",e.l_i(15,vl,M.width,M.height))("showLegend",M.legend)("legendOptions",M.legendOptions)("activeEntries",M.activeEntries)("animations",M.animations),e.R7$(),e.BMQ("transform",M.transform),e.R7$(),e.Y8G("xScale",M.groupScale)("yScale",M.valueScale)("data",M.results)("dims",M.dims)("orient",M.barOrientation.Vertical),e.R7$(),e.Y8G("ngIf",M.xAxis),e.R7$(),e.Y8G("ngIf",M.yAxis),e.R7$(),e.Y8G("ngIf",!M.isSSR),e.R7$(),e.Y8G("ngIf",M.isSSR))},dependencies:[eu,au,s3,A1,hm,t.bT,t.Sq],styles:[C1],encapsulation:2,data:{animation:[(0,f.hZ)("animationState",[(0,f.kY)(":leave",[(0,f.iF)({opacity:1,transform:"*"}),(0,f.i0)(500,(0,f.iF)({opacity:0,transform:"scale(0)"}))])])]},changeDetection:0}),u})(),g3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})();d4();let u6=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),d0=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),O1=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),v3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})();Math;let Nd=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),g6=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo,Nd,v3]]}),u})(),b3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),y3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),x3=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo,Nd,g3]]}),u})(),S6=(()=>{class u{}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[[qo]]}),u})(),C3=(()=>{class u{constructor(){!function U5(){typeof SVGElement<"u"&&typeof SVGElement.prototype.contains>"u"&&(SVGElement.prototype.contains=HTMLDivElement.prototype.contains)}()}}return u.\u0275fac=function(o){return new(o||u)},u.\u0275mod=e.$C({type:u}),u.\u0275inj=e.G2t({imports:[qo,cu,g3,u6,d0,O1,S6,v3,g6,b3,Nd,y3,x3]}),u})()},8288:(Qe,te,g)=>{"use strict";g.d(te,{Um:()=>d,XK:()=>T});var e=g(467),t=g(4438),w=g(177),S=g(8314);function l(y,F){if(1&y&&t.nrm(0,"canvas",1),2&y){const R=t.XpG();t.HbH(R.styleClass),t.Y8G("qrCode",R.value)("qrCodeErrorCorrectionLevel",R.errorCorrectionLevel)("qrCodeCenterImageSrc",R.centerImageSrc)("qrCodeCenterImageWidth",R.centerImageSize)("qrCodeCenterImageHeight",R.centerImageSize)("qrCodeMargin",R.margin)("width",R.size)("height",R.size)("ngStyle",R.style)("darkColor",R.darkColor)("lightColor",R.lightColor)}}const x=/^#(?:[0-9a-fA-F]{3,4}){1,2}$/;let f=(()=>{class y{static#e=this.DEFAULT_ERROR_CORRECTION_LEVEL="M";static#t=this.DEFAULT_CENTER_IMAGE_SIZE=40;constructor(R){this.viewContainerRef=R,this.errorCorrectionLevel=y.DEFAULT_ERROR_CORRECTION_LEVEL,this.darkColor="#000000FF",this.lightColor="#FFFFFFFF",this.margin=16}ngOnChanges(){var R=this;return(0,e.A)(function*(){if(!R.value)return;R.version&&R.version>40?(console.warn("[qrCode] max version is 40, clamping"),R.version=40):R.version&&R.version<1?(console.warn("[qrCode] min version is 1, clamping"),R.version=1):void 0!==R.version&&isNaN(R.version)&&(console.warn("[qrCode] version should be set to a number, defaulting to auto"),R.version=void 0);const z=R.viewContainerRef.element.nativeElement;if(!z)return;const W=z.getContext("2d");W&&W.clearRect(0,0,W.canvas.width,W.canvas.height);const $=R.errorCorrectionLevel??y.DEFAULT_ERROR_CORRECTION_LEVEL,j=x.test(R.darkColor)?R.darkColor:void 0,Q=x.test(R.lightColor)?R.lightColor:void 0;(0,t.naY)()&&(!j&&R.darkColor&&console.error("[ng-qrcode] darkColor set to invalid value, must be RGBA hex color string, eg: #3050A1FF"),!Q&&R.lightColor&&console.error("[ng-qrcode] lightColor set to invalid value, must be RGBA hex color string, eg: #3050A130")),yield S.toCanvas(z,R.value,{version:R.version,errorCorrectionLevel:$,width:R.width,margin:R.margin,color:{dark:j,light:Q}});const J=R.centerImageSrc,ee=I(R.centerImageWidth,y.DEFAULT_CENTER_IMAGE_SIZE),ie=I(R.centerImageHeight,y.DEFAULT_CENTER_IMAGE_SIZE);if(J&&W){R.centerImage||(R.centerImage=new Image(ee,ie));const ge=R.centerImage;J!==R.centerImage.src&&(ge.src=J),ee!==R.centerImage.width&&(ge.width=ee),ie!==R.centerImage.height&&(ge.height=ie);const ae=()=>{W.drawImage(ge,z.width/2-ee/2,z.height/2-ie/2,ee,ie)};ge.onload=ae,ge.complete&&ae()}})()}static#i=this.\u0275fac=function(z){return new(z||y)(t.rXU(t.c1b))};static#n=this.\u0275dir=t.FsC({type:y,selectors:[["canvas","qrCode",""]],inputs:{value:[0,"qrCode","value"],version:[0,"qrCodeVersion","version"],errorCorrectionLevel:[0,"qrCodeErrorCorrectionLevel","errorCorrectionLevel"],width:"width",height:"height",darkColor:"darkColor",lightColor:"lightColor",centerImageSrc:[0,"qrCodeCenterImageSrc","centerImageSrc"],centerImageWidth:[0,"qrCodeCenterImageWidth","centerImageWidth"],centerImageHeight:[0,"qrCodeCenterImageHeight","centerImageHeight"],margin:[0,"qrCodeMargin","margin"]},features:[t.OA$]})}return y})();function I(y,F){return void 0===y||""===y?F:"string"==typeof y?parseInt(y,10):y}let d=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275cmp=t.VBU({type:y,selectors:[["qr-code"]],inputs:{value:"value",size:"size",style:"style",styleClass:"styleClass",darkColor:"darkColor",lightColor:"lightColor",errorCorrectionLevel:"errorCorrectionLevel",centerImageSrc:"centerImageSrc",centerImageSize:"centerImageSize",margin:"margin"},decls:1,vars:1,consts:[[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","width","height","class","ngStyle","darkColor","lightColor"],[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","width","height","ngStyle","darkColor","lightColor"]],template:function(z,W){1&z&&t.DNE(0,l,1,13,"canvas",0),2&z&&t.vxM(W.value?0:-1)},dependencies:[w.B3,f],encapsulation:2})}return y})(),T=(()=>{class y{static#e=this.\u0275fac=function(z){return new(z||y)};static#t=this.\u0275mod=t.$C({type:y});static#i=this.\u0275inj=t.G2t({imports:[w.MD]})}return y})()},497:(Qe,te,g)=>{"use strict";g.d(te,{kU:()=>St,ZF:()=>Re,Ld:()=>q,U$:()=>gt});var e=g(1413),t=g(3726),w=g(7786),S=g(3798),l=g(6977),x=g(3294),f=g(3703),I=g(4438),d=g(177);function T($e){return getComputedStyle($e)}function y($e,Fe){for(var Ge in Fe){var et=Fe[Ge];"number"==typeof et&&(et+="px"),$e.style[Ge]=et}return $e}function F($e){var Fe=document.createElement("div");return Fe.className=$e,Fe}var R=typeof Element<"u"&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function z($e,Fe){if(!R)throw new Error("No element matching method supported");return R.call($e,Fe)}function W($e){$e.remove?$e.remove():$e.parentNode&&$e.parentNode.removeChild($e)}function $($e,Fe){return Array.prototype.filter.call($e.children,function(Ge){return z(Ge,Fe)})}var j={main:"ps",rtl:"ps__rtl",element:{thumb:function($e){return"ps__thumb-"+$e},rail:function($e){return"ps__rail-"+$e},consuming:"ps__child--consume"},state:{focus:"ps--focus",clicking:"ps--clicking",active:function($e){return"ps--active-"+$e},scrolling:function($e){return"ps--scrolling-"+$e}}},Q={x:null,y:null};function J($e,Fe){var Ge=$e.element.classList,et=j.state.scrolling(Fe);Ge.contains(et)?clearTimeout(Q[Fe]):Ge.add(et)}function ee($e,Fe){Q[Fe]=setTimeout(function(){return $e.isAlive&&$e.element.classList.remove(j.state.scrolling(Fe))},$e.settings.scrollingThreshold)}var ge=function(Fe){this.element=Fe,this.handlers={}},ae={isEmpty:{configurable:!0}};ge.prototype.bind=function(Fe,Ge){typeof this.handlers[Fe]>"u"&&(this.handlers[Fe]=[]),this.handlers[Fe].push(Ge),this.element.addEventListener(Fe,Ge,!1)},ge.prototype.unbind=function(Fe,Ge){var et=this;this.handlers[Fe]=this.handlers[Fe].filter(function(st){return!(!Ge||st===Ge)||(et.element.removeEventListener(Fe,st,!1),!1)})},ge.prototype.unbindAll=function(){for(var Fe in this.handlers)this.unbind(Fe)},ae.isEmpty.get=function(){var $e=this;return Object.keys(this.handlers).every(function(Fe){return 0===$e.handlers[Fe].length})},Object.defineProperties(ge.prototype,ae);var Me=function(){this.eventElements=[]};function Te($e){if("function"==typeof window.CustomEvent)return new CustomEvent($e);var Fe=document.createEvent("CustomEvent");return Fe.initCustomEvent($e,!1,!1,void 0),Fe}function de($e,Fe,Ge,et,st){var Tt;if(void 0===et&&(et=!0),void 0===st&&(st=!1),"top"===Fe)Tt=["contentHeight","containerHeight","scrollTop","y","up","down"];else{if("left"!==Fe)throw new Error("A proper axis should be provided");Tt=["contentWidth","containerWidth","scrollLeft","x","left","right"]}!function D($e,Fe,Ge,et,st){var Tt=Ge[0],mi=Ge[1],Kt=Ge[2],Pt=Ge[3],Xi=Ge[4],di=Ge[5];void 0===et&&(et=!0),void 0===st&&(st=!1);var fi=$e.element;$e.reach[Pt]=null,fi[Kt]<1&&($e.reach[Pt]="start"),fi[Kt]>$e[Tt]-$e[mi]-1&&($e.reach[Pt]="end"),Fe&&(fi.dispatchEvent(Te("ps-scroll-"+Pt)),Fe<0?fi.dispatchEvent(Te("ps-scroll-"+Xi)):Fe>0&&fi.dispatchEvent(Te("ps-scroll-"+di)),et&&function ie($e,Fe){J($e,Fe),ee($e,Fe)}($e,Pt)),$e.reach[Pt]&&(Fe||st)&&fi.dispatchEvent(Te("ps-"+Pt+"-reach-"+$e.reach[Pt]))}($e,Ge,Tt,et,st)}function n($e){return parseInt($e,10)||0}Me.prototype.eventElement=function(Fe){var Ge=this.eventElements.filter(function(et){return et.element===Fe})[0];return Ge||(Ge=new ge(Fe),this.eventElements.push(Ge)),Ge},Me.prototype.bind=function(Fe,Ge,et){this.eventElement(Fe).bind(Ge,et)},Me.prototype.unbind=function(Fe,Ge,et){var st=this.eventElement(Fe);st.unbind(Ge,et),st.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(st),1)},Me.prototype.unbindAll=function(){this.eventElements.forEach(function(Fe){return Fe.unbindAll()}),this.eventElements=[]},Me.prototype.once=function(Fe,Ge,et){var st=this.eventElement(Fe),Tt=function(mi){st.unbind(Ge,Tt),et(mi)};st.bind(Ge,Tt)};var h={isWebKit:typeof document<"u"&&"WebkitAppearance"in document.documentElement.style,supportsTouch:typeof window<"u"&&("ontouchstart"in window||"maxTouchPoints"in window.navigator&&window.navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:typeof navigator<"u"&&navigator.msMaxTouchPoints,isChrome:typeof navigator<"u"&&/Chrome/i.test(navigator&&navigator.userAgent)};function C($e){var Fe=$e.element,Ge=Math.floor(Fe.scrollTop),et=Fe.getBoundingClientRect();$e.containerWidth=Math.round(et.width),$e.containerHeight=Math.round(et.height),$e.contentWidth=Fe.scrollWidth,$e.contentHeight=Fe.scrollHeight,Fe.contains($e.scrollbarXRail)||($(Fe,j.element.rail("x")).forEach(function(st){return W(st)}),Fe.appendChild($e.scrollbarXRail)),Fe.contains($e.scrollbarYRail)||($(Fe,j.element.rail("y")).forEach(function(st){return W(st)}),Fe.appendChild($e.scrollbarYRail)),!$e.settings.suppressScrollX&&$e.containerWidth+$e.settings.scrollXMarginOffset<$e.contentWidth?($e.scrollbarXActive=!0,$e.railXWidth=$e.containerWidth-$e.railXMarginWidth,$e.railXRatio=$e.containerWidth/$e.railXWidth,$e.scrollbarXWidth=k($e,n($e.railXWidth*$e.containerWidth/$e.contentWidth)),$e.scrollbarXLeft=n(($e.negativeScrollAdjustment+Fe.scrollLeft)*($e.railXWidth-$e.scrollbarXWidth)/($e.contentWidth-$e.containerWidth))):$e.scrollbarXActive=!1,!$e.settings.suppressScrollY&&$e.containerHeight+$e.settings.scrollYMarginOffset<$e.contentHeight?($e.scrollbarYActive=!0,$e.railYHeight=$e.containerHeight-$e.railYMarginHeight,$e.railYRatio=$e.containerHeight/$e.railYHeight,$e.scrollbarYHeight=k($e,n($e.railYHeight*$e.containerHeight/$e.contentHeight)),$e.scrollbarYTop=n(Ge*($e.railYHeight-$e.scrollbarYHeight)/($e.contentHeight-$e.containerHeight))):$e.scrollbarYActive=!1,$e.scrollbarXLeft>=$e.railXWidth-$e.scrollbarXWidth&&($e.scrollbarXLeft=$e.railXWidth-$e.scrollbarXWidth),$e.scrollbarYTop>=$e.railYHeight-$e.scrollbarYHeight&&($e.scrollbarYTop=$e.railYHeight-$e.scrollbarYHeight),function L($e,Fe){var Ge={width:Fe.railXWidth},et=Math.floor($e.scrollTop);Ge.left=Fe.isRtl?Fe.negativeScrollAdjustment+$e.scrollLeft+Fe.containerWidth-Fe.contentWidth:$e.scrollLeft,Fe.isScrollbarXUsingBottom?Ge.bottom=Fe.scrollbarXBottom-et:Ge.top=Fe.scrollbarXTop+et,y(Fe.scrollbarXRail,Ge);var st={top:et,height:Fe.railYHeight};Fe.isScrollbarYUsingRight?st.right=Fe.isRtl?Fe.contentWidth-(Fe.negativeScrollAdjustment+$e.scrollLeft)-Fe.scrollbarYRight-Fe.scrollbarYOuterWidth-9:Fe.scrollbarYRight-$e.scrollLeft:st.left=Fe.isRtl?Fe.negativeScrollAdjustment+$e.scrollLeft+2*Fe.containerWidth-Fe.contentWidth-Fe.scrollbarYLeft-Fe.scrollbarYOuterWidth:Fe.scrollbarYLeft+$e.scrollLeft,y(Fe.scrollbarYRail,st),y(Fe.scrollbarX,{left:Fe.scrollbarXLeft,width:Fe.scrollbarXWidth-Fe.railBorderXWidth}),y(Fe.scrollbarY,{top:Fe.scrollbarYTop,height:Fe.scrollbarYHeight-Fe.railBorderYWidth})}(Fe,$e),$e.scrollbarXActive?Fe.classList.add(j.state.active("x")):(Fe.classList.remove(j.state.active("x")),$e.scrollbarXWidth=0,$e.scrollbarXLeft=0,Fe.scrollLeft=!0===$e.isRtl?$e.contentWidth:0),$e.scrollbarYActive?Fe.classList.add(j.state.active("y")):(Fe.classList.remove(j.state.active("y")),$e.scrollbarYHeight=0,$e.scrollbarYTop=0,Fe.scrollTop=0)}function k($e,Fe){return $e.settings.minScrollbarLength&&(Fe=Math.max(Fe,$e.settings.minScrollbarLength)),$e.settings.maxScrollbarLength&&(Fe=Math.min(Fe,$e.settings.maxScrollbarLength)),Fe}function v($e,Fe){var Ge=Fe[0],et=Fe[1],st=Fe[2],Tt=Fe[3],mi=Fe[4],Kt=Fe[5],Pt=Fe[6],Xi=Fe[7],di=Fe[8],fi=$e.element,vn=null,Qi=null,Li=null;function Zi(it){it.touches&&it.touches[0]&&(it[st]=it.touches[0].pageY),fi[Pt]=vn+Li*(it[st]-Qi),J($e,Xi),C($e),it.stopPropagation(),it.type.startsWith("touch")&&it.changedTouches.length>1&&it.preventDefault()}function Qt(){ee($e,Xi),$e[di].classList.remove(j.state.clicking),$e.event.unbind($e.ownerDocument,"mousemove",Zi)}function Mt(it,ct){vn=fi[Pt],ct&&it.touches&&(it[st]=it.touches[0].pageY),Qi=it[st],Li=($e[et]-$e[Ge])/($e[Tt]-$e[Kt]),ct?$e.event.bind($e.ownerDocument,"touchmove",Zi):($e.event.bind($e.ownerDocument,"mousemove",Zi),$e.event.once($e.ownerDocument,"mouseup",Qt),it.preventDefault()),$e[di].classList.add(j.state.clicking),it.stopPropagation()}$e.event.bind($e[mi],"mousedown",function(it){Mt(it)}),$e.event.bind($e[mi],"touchstart",function(it){Mt(it,!0)})}var ze={"click-rail":function _($e){$e.event.bind($e.scrollbarY,"mousedown",function(Ge){return Ge.stopPropagation()}),$e.event.bind($e.scrollbarYRail,"mousedown",function(Ge){var et=Ge.pageY-window.pageYOffset-$e.scrollbarYRail.getBoundingClientRect().top;$e.element.scrollTop+=(et>$e.scrollbarYTop?1:-1)*$e.containerHeight,C($e),Ge.stopPropagation()}),$e.event.bind($e.scrollbarX,"mousedown",function(Ge){return Ge.stopPropagation()}),$e.event.bind($e.scrollbarXRail,"mousedown",function(Ge){var et=Ge.pageX-window.pageXOffset-$e.scrollbarXRail.getBoundingClientRect().left;$e.element.scrollLeft+=(et>$e.scrollbarXLeft?1:-1)*$e.containerWidth,C($e),Ge.stopPropagation()})},"drag-thumb":function r($e){v($e,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),v($e,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])},keyboard:function V($e){var Fe=$e.element;$e.event.bind($e.ownerDocument,"keydown",function(Tt){if(!(Tt.isDefaultPrevented&&Tt.isDefaultPrevented()||Tt.defaultPrevented)&&(z(Fe,":hover")||z($e.scrollbarX,":focus")||z($e.scrollbarY,":focus"))){var mi=document.activeElement?document.activeElement:$e.ownerDocument.activeElement;if(mi){if("IFRAME"===mi.tagName)mi=mi.contentDocument.activeElement;else for(;mi.shadowRoot;)mi=mi.shadowRoot.activeElement;if(function c($e){return z($e,"input,[contenteditable]")||z($e,"select,[contenteditable]")||z($e,"textarea,[contenteditable]")||z($e,"button,[contenteditable]")}(mi))return}var Kt=0,Pt=0;switch(Tt.which){case 37:Kt=Tt.metaKey?-$e.contentWidth:Tt.altKey?-$e.containerWidth:-30;break;case 38:Pt=Tt.metaKey?$e.contentHeight:Tt.altKey?$e.containerHeight:30;break;case 39:Kt=Tt.metaKey?$e.contentWidth:Tt.altKey?$e.containerWidth:30;break;case 40:Pt=Tt.metaKey?-$e.contentHeight:Tt.altKey?-$e.containerHeight:-30;break;case 32:Pt=Tt.shiftKey?$e.containerHeight:-$e.containerHeight;break;case 33:Pt=$e.containerHeight;break;case 34:Pt=-$e.containerHeight;break;case 36:Pt=$e.contentHeight;break;case 35:Pt=-$e.contentHeight;break;default:return}$e.settings.suppressScrollX&&0!==Kt||$e.settings.suppressScrollY&&0!==Pt||(Fe.scrollTop-=Pt,Fe.scrollLeft+=Kt,C($e),function st(Tt,mi){var Kt=Math.floor(Fe.scrollTop);if(0===Tt){if(!$e.scrollbarYActive)return!1;if(0===Kt&&mi>0||Kt>=$e.contentHeight-$e.containerHeight&&mi<0)return!$e.settings.wheelPropagation}var Pt=Fe.scrollLeft;if(0===mi){if(!$e.scrollbarXActive)return!1;if(0===Pt&&Tt<0||Pt>=$e.contentWidth-$e.containerWidth&&Tt>0)return!$e.settings.wheelPropagation}return!0}(Kt,Pt)&&Tt.preventDefault())}})},wheel:function N($e){var Fe=$e.element;function Tt(mi){var Kt=function et(mi){var Kt=mi.deltaX,Pt=-1*mi.deltaY;return(typeof Kt>"u"||typeof Pt>"u")&&(Kt=-1*mi.wheelDeltaX/6,Pt=mi.wheelDeltaY/6),mi.deltaMode&&1===mi.deltaMode&&(Kt*=10,Pt*=10),Kt!=Kt&&Pt!=Pt&&(Kt=0,Pt=mi.wheelDelta),mi.shiftKey?[-Pt,-Kt]:[Kt,Pt]}(mi),Pt=Kt[0],Xi=Kt[1];if(!function st(mi,Kt,Pt){if(!h.isWebKit&&Fe.querySelector("select:focus"))return!0;if(!Fe.contains(mi))return!1;for(var Xi=mi;Xi&&Xi!==Fe;){if(Xi.classList.contains(j.element.consuming))return!0;var di=T(Xi);if(Pt&&di.overflowY.match(/(scroll|auto)/)){var fi=Xi.scrollHeight-Xi.clientHeight;if(fi>0&&(Xi.scrollTop>0&&Pt<0||Xi.scrollTop0))return!0}if(Kt&&di.overflowX.match(/(scroll|auto)/)){var vn=Xi.scrollWidth-Xi.clientWidth;if(vn>0&&(Xi.scrollLeft>0&&Kt<0||Xi.scrollLeft0))return!0}Xi=Xi.parentNode}return!1}(mi.target,Pt,Xi)){var di=!1;$e.settings.useBothWheelAxes?$e.scrollbarYActive&&!$e.scrollbarXActive?(Xi?Fe.scrollTop-=Xi*$e.settings.wheelSpeed:Fe.scrollTop+=Pt*$e.settings.wheelSpeed,di=!0):$e.scrollbarXActive&&!$e.scrollbarYActive&&(Pt?Fe.scrollLeft+=Pt*$e.settings.wheelSpeed:Fe.scrollLeft-=Xi*$e.settings.wheelSpeed,di=!0):(Fe.scrollTop-=Xi*$e.settings.wheelSpeed,Fe.scrollLeft+=Pt*$e.settings.wheelSpeed),C($e),di=di||function Ge(mi,Kt){var Pt=Math.floor(Fe.scrollTop),Xi=0===Fe.scrollTop,di=Pt+Fe.offsetHeight===Fe.scrollHeight,fi=0===Fe.scrollLeft,vn=Fe.scrollLeft+Fe.offsetWidth===Fe.scrollWidth;return!(Math.abs(Kt)>Math.abs(mi)?Xi||di:fi||vn)||!$e.settings.wheelPropagation}(Pt,Xi),di&&!mi.ctrlKey&&(mi.stopPropagation(),mi.preventDefault())}}typeof window.onwheel<"u"?$e.event.bind(Fe,"wheel",Tt):typeof window.onmousewheel<"u"&&$e.event.bind(Fe,"mousewheel",Tt)},touch:function ne($e){if(h.supportsTouch||h.supportsIePointer){var Fe=$e.element,st={},Tt=0,mi={},Kt=null;h.supportsTouch?($e.event.bind(Fe,"touchstart",di),$e.event.bind(Fe,"touchmove",vn),$e.event.bind(Fe,"touchend",Qi)):h.supportsIePointer&&(window.PointerEvent?($e.event.bind(Fe,"pointerdown",di),$e.event.bind(Fe,"pointermove",vn),$e.event.bind(Fe,"pointerup",Qi)):window.MSPointerEvent&&($e.event.bind(Fe,"MSPointerDown",di),$e.event.bind(Fe,"MSPointerMove",vn),$e.event.bind(Fe,"MSPointerUp",Qi)))}function et(Li,Zi){Fe.scrollTop-=Zi,Fe.scrollLeft-=Li,C($e)}function Pt(Li){return Li.targetTouches?Li.targetTouches[0]:Li}function Xi(Li){return!(Li.pointerType&&"pen"===Li.pointerType&&0===Li.buttons||!(Li.targetTouches&&1===Li.targetTouches.length||Li.pointerType&&"mouse"!==Li.pointerType&&Li.pointerType!==Li.MSPOINTER_TYPE_MOUSE))}function di(Li){if(Xi(Li)){var Zi=Pt(Li);st.pageX=Zi.pageX,st.pageY=Zi.pageY,Tt=(new Date).getTime(),null!==Kt&&clearInterval(Kt)}}function vn(Li){if(Xi(Li)){var Zi=Pt(Li),Qt={pageX:Zi.pageX,pageY:Zi.pageY},Mt=Qt.pageX-st.pageX,it=Qt.pageY-st.pageY;if(function fi(Li,Zi,Qt){if(!Fe.contains(Li))return!1;for(var Mt=Li;Mt&&Mt!==Fe;){if(Mt.classList.contains(j.element.consuming))return!0;var it=T(Mt);if(Qt&&it.overflowY.match(/(scroll|auto)/)){var ct=Mt.scrollHeight-Mt.clientHeight;if(ct>0&&(Mt.scrollTop>0&&Qt<0||Mt.scrollTop0))return!0}if(Zi&&it.overflowX.match(/(scroll|auto)/)){var wt=Mt.scrollWidth-Mt.clientWidth;if(wt>0&&(Mt.scrollLeft>0&&Zi<0||Mt.scrollLeft0))return!0}Mt=Mt.parentNode}return!1}(Li.target,Mt,it))return;et(Mt,it),st=Qt;var ct=(new Date).getTime(),wt=ct-Tt;wt>0&&(mi.x=Mt/wt,mi.y=it/wt,Tt=ct),function Ge(Li,Zi){var Qt=Math.floor(Fe.scrollTop),Mt=Fe.scrollLeft,it=Math.abs(Li),ct=Math.abs(Zi);if(ct>it){if(Zi<0&&Qt===$e.contentHeight-$e.containerHeight||Zi>0&&0===Qt)return 0===window.scrollY&&Zi>0&&h.isChrome}else if(it>ct&&(Li<0&&Mt===$e.contentWidth-$e.containerWidth||Li>0&&0===Mt))return!0;return!0}(Mt,it)&&Li.preventDefault()}}function Qi(){$e.settings.swipeEasing&&(clearInterval(Kt),Kt=setInterval(function(){$e.isInitialized?clearInterval(Kt):mi.x||mi.y?Math.abs(mi.x)<.01&&Math.abs(mi.y)<.01?clearInterval(Kt):$e.element?(et(30*mi.x,30*mi.y),mi.x*=.8,mi.y*=.8):clearInterval(Kt):clearInterval(Kt)},10))}}},qe=function(Fe,Ge){var et=this;if(void 0===Ge&&(Ge={}),"string"==typeof Fe&&(Fe=document.querySelector(Fe)),!Fe||!Fe.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");for(var st in this.element=Fe,Fe.classList.add(j.main),this.settings={handlers:["click-rail","drag-thumb","keyboard","wheel","touch"],maxScrollbarLength:null,minScrollbarLength:null,scrollingThreshold:1e3,scrollXMarginOffset:0,scrollYMarginOffset:0,suppressScrollX:!1,suppressScrollY:!1,swipeEasing:!0,useBothWheelAxes:!1,wheelPropagation:!0,wheelSpeed:1},Ge)this.settings[st]=Ge[st];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var di,Xi,Tt=function(){return Fe.classList.add(j.state.focus)},mi=function(){return Fe.classList.remove(j.state.focus)};this.isRtl="rtl"===T(Fe).direction,!0===this.isRtl&&Fe.classList.add(j.rtl),this.isNegativeScroll=(Xi=Fe.scrollLeft,Fe.scrollLeft=-1,di=Fe.scrollLeft<0,Fe.scrollLeft=Xi,di),this.negativeScrollAdjustment=this.isNegativeScroll?Fe.scrollWidth-Fe.clientWidth:0,this.event=new Me,this.ownerDocument=Fe.ownerDocument||document,this.scrollbarXRail=F(j.element.rail("x")),Fe.appendChild(this.scrollbarXRail),this.scrollbarX=F(j.element.thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",Tt),this.event.bind(this.scrollbarX,"blur",mi),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var Kt=T(this.scrollbarXRail);this.scrollbarXBottom=parseInt(Kt.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=n(Kt.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=n(Kt.borderLeftWidth)+n(Kt.borderRightWidth),y(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=n(Kt.marginLeft)+n(Kt.marginRight),y(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=F(j.element.rail("y")),Fe.appendChild(this.scrollbarYRail),this.scrollbarY=F(j.element.thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",Tt),this.event.bind(this.scrollbarY,"blur",mi),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var Pt=T(this.scrollbarYRail);this.scrollbarYRight=parseInt(Pt.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=n(Pt.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?function m($e){var Fe=T($e);return n(Fe.width)+n(Fe.paddingLeft)+n(Fe.paddingRight)+n(Fe.borderLeftWidth)+n(Fe.borderRightWidth)}(this.scrollbarY):null,this.railBorderYWidth=n(Pt.borderTopWidth)+n(Pt.borderBottomWidth),y(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=n(Pt.marginTop)+n(Pt.marginBottom),y(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:Fe.scrollLeft<=0?"start":Fe.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:Fe.scrollTop<=0?"start":Fe.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(Xi){return ze[Xi](et)}),this.lastScrollTop=Math.floor(Fe.scrollTop),this.lastScrollLeft=Fe.scrollLeft,this.event.bind(this.element,"scroll",function(Xi){return et.onScroll(Xi)}),C(this)};qe.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,y(this.scrollbarXRail,{display:"block"}),y(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=n(T(this.scrollbarXRail).marginLeft)+n(T(this.scrollbarXRail).marginRight),this.railYMarginHeight=n(T(this.scrollbarYRail).marginTop)+n(T(this.scrollbarYRail).marginBottom),y(this.scrollbarXRail,{display:"none"}),y(this.scrollbarYRail,{display:"none"}),C(this),de(this,"top",0,!1,!0),de(this,"left",0,!1,!0),y(this.scrollbarXRail,{display:""}),y(this.scrollbarYRail,{display:""}))},qe.prototype.onScroll=function(Fe){this.isAlive&&(C(this),de(this,"top",this.element.scrollTop-this.lastScrollTop),de(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)},qe.prototype.destroy=function(){this.isAlive&&(this.event.unbindAll(),W(this.scrollbarX),W(this.scrollbarY),W(this.scrollbarXRail),W(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)},qe.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(Fe){return!Fe.match(/^ps([-_].+|)$/)}).join(" ")};const Ke=qe;var se=function(){if(typeof Map<"u")return Map;function $e(Fe,Ge){var et=-1;return Fe.some(function(st,Tt){return st[0]===Ge&&(et=Tt,!0)}),et}return function(){function Fe(){this.__entries__=[]}return Object.defineProperty(Fe.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),Fe.prototype.get=function(Ge){var et=$e(this.__entries__,Ge),st=this.__entries__[et];return st&&st[1]},Fe.prototype.set=function(Ge,et){var st=$e(this.__entries__,Ge);~st?this.__entries__[st][1]=et:this.__entries__.push([Ge,et])},Fe.prototype.delete=function(Ge){var et=this.__entries__,st=$e(et,Ge);~st&&et.splice(st,1)},Fe.prototype.has=function(Ge){return!!~$e(this.__entries__,Ge)},Fe.prototype.clear=function(){this.__entries__.splice(0)},Fe.prototype.forEach=function(Ge,et){void 0===et&&(et=null);for(var st=0,Tt=this.__entries__;st0},$e.prototype.connect_=function(){!X||this.connected_||(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),be?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},$e.prototype.disconnect_=function(){!X||!this.connected_||(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},$e.prototype.onTransitionEnd_=function(Fe){var Ge=Fe.propertyName,et=void 0===Ge?"":Ge;_e.some(function(Tt){return!!~et.indexOf(Tt)})&&this.refresh()},$e.getInstance=function(){return this.instance_||(this.instance_=new $e),this.instance_},$e.instance_=null,$e}(),Ze=function($e,Fe){for(var Ge=0,et=Object.keys(Fe);Ge"u")&&Element instanceof Object){if(!(Fe instanceof _t(Fe).Element))throw new TypeError('parameter 1 is not of type "Element".');var Ge=this.observations_;Ge.has(Fe)||(Ge.set(Fe,new Yt(Fe)),this.controller_.addObserver(this),this.controller_.refresh())}},$e.prototype.unobserve=function(Fe){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if(!(typeof Element>"u")&&Element instanceof Object){if(!(Fe instanceof _t(Fe).Element))throw new TypeError('parameter 1 is not of type "Element".');var Ge=this.observations_;Ge.has(Fe)&&(Ge.delete(Fe),Ge.size||this.controller_.removeObserver(this))}},$e.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},$e.prototype.gatherActive=function(){var Fe=this;this.clearActive(),this.observations_.forEach(function(Ge){Ge.isActive()&&Fe.activeObservations_.push(Ge)})},$e.prototype.broadcastActive=function(){if(this.hasActive()){var Fe=this.callbackCtx_,Ge=this.activeObservations_.map(function(et){return new Nt(et.target,et.broadcastRect())});this.callback_.call(Fe,Ge,Fe),this.clearActive()}},$e.prototype.clearActive=function(){this.activeObservations_.splice(0)},$e.prototype.hasActive=function(){return this.activeObservations_.length>0},$e}(),Vt=typeof WeakMap<"u"?new WeakMap:new se,oe=function(){return function $e(Fe){if(!(this instanceof $e))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var Ge=pe.getInstance(),et=new Et(Fe,Ge,this);Vt.set(this,et)}}();["observe","unobserve","disconnect"].forEach(function($e){oe.prototype[$e]=function(){var Fe;return(Fe=Vt.get(this))[$e].apply(Fe,arguments)}});const $t=typeof me.ResizeObserver<"u"?me.ResizeObserver:oe,zt=["*"];function Jt($e,Fe){if(1&$e&&(I.j41(0,"div",3),I.nrm(1,"div",4)(2,"div",5)(3,"div",6)(4,"div",7),I.k0s()),2&$e){const Ge=I.XpG();I.AVh("ps-at-top",Ge.states.top)("ps-at-left",Ge.states.left)("ps-at-right",Ge.states.right)("ps-at-bottom",Ge.states.bottom),I.R7$(),I.AVh("ps-indicator-show",Ge.indicatorY&&Ge.interaction),I.R7$(),I.AVh("ps-indicator-show",Ge.indicatorX&&Ge.interaction),I.R7$(),I.AVh("ps-indicator-show",Ge.indicatorX&&Ge.interaction),I.R7$(),I.AVh("ps-indicator-show",Ge.indicatorY&&Ge.interaction)}}const St=new I.nKC("PERFECT_SCROLLBAR_CONFIG");class dt{constructor(Fe,Ge,et,st){this.x=Fe,this.y=Ge,this.w=et,this.h=st}}class Ae{constructor(Fe,Ge){this.x=Fe,this.y=Ge}}const we=["psScrollY","psScrollX","psScrollUp","psScrollDown","psScrollLeft","psScrollRight","psYReachEnd","psYReachStart","psXReachEnd","psXReachStart"];class he{constructor(Fe={}){this.assign(Fe)}assign(Fe={}){for(const Ge in Fe)this[Ge]=Fe[Ge]}}let q=(()=>{class $e{constructor(Ge,et,st,Tt,mi){this.zone=Ge,this.differs=et,this.elementRef=st,this.platformId=Tt,this.defaults=mi,this.instance=null,this.ro=null,this.timeout=null,this.animation=null,this.configDiff=null,this.ngDestroy=new e.B,this.disabled=!1,this.psScrollY=new I.bkB,this.psScrollX=new I.bkB,this.psScrollUp=new I.bkB,this.psScrollDown=new I.bkB,this.psScrollLeft=new I.bkB,this.psScrollRight=new I.bkB,this.psYReachEnd=new I.bkB,this.psYReachStart=new I.bkB,this.psXReachEnd=new I.bkB,this.psXReachStart=new I.bkB}ngOnInit(){if(!this.disabled&&(0,d.UE)(this.platformId)){const Ge=new he(this.defaults);Ge.assign(this.config),this.zone.runOutsideAngular(()=>{this.instance=new Ke(this.elementRef.nativeElement,Ge)}),this.configDiff||(this.configDiff=this.differs.find(this.config||{}).create(),this.configDiff.diff(this.config||{})),this.zone.runOutsideAngular(()=>{this.ro=new $t(()=>{this.update()}),this.elementRef.nativeElement.children[0]&&this.ro.observe(this.elementRef.nativeElement.children[0]),this.ro.observe(this.elementRef.nativeElement)}),this.zone.runOutsideAngular(()=>{we.forEach(et=>{const st=et.replace(/([A-Z])/g,Tt=>`-${Tt.toLowerCase()}`);(0,t.R)(this.elementRef.nativeElement,st).pipe((0,S.Z)(20),(0,l.Q)(this.ngDestroy)).subscribe(Tt=>{this[et].emit(Tt)})})})}}ngOnDestroy(){(0,d.UE)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.complete(),this.ro&&this.ro.disconnect(),this.timeout&&typeof window<"u"&&window.clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.instance&&this.instance.destroy()}),this.instance=null)}ngDoCheck(){!this.disabled&&this.configDiff&&(0,d.UE)(this.platformId)&&this.configDiff.diff(this.config||{})&&(this.ngOnDestroy(),this.ngOnInit())}ngOnChanges(Ge){Ge.disabled&&!Ge.disabled.isFirstChange()&&(0,d.UE)(this.platformId)&&Ge.disabled.currentValue!==Ge.disabled.previousValue&&(!0===Ge.disabled.currentValue?this.ngOnDestroy():!1===Ge.disabled.currentValue&&this.ngOnInit())}ps(){return this.instance}update(){typeof window<"u"&&(this.timeout&&window.clearTimeout(this.timeout),this.timeout=window.setTimeout(()=>{if(!this.disabled&&this.configDiff)try{this.zone.runOutsideAngular(()=>{this.instance&&this.instance.update()})}catch{}},0))}geometry(Ge="scroll"){return new dt(this.elementRef.nativeElement[Ge+"Left"],this.elementRef.nativeElement[Ge+"Top"],this.elementRef.nativeElement[Ge+"Width"],this.elementRef.nativeElement[Ge+"Height"])}position(Ge=!1){return!Ge&&this.instance?new Ae(this.instance.reach.x||0,this.instance.reach.y||0):new Ae(this.elementRef.nativeElement.scrollLeft,this.elementRef.nativeElement.scrollTop)}scrollable(Ge="any"){const et=this.elementRef.nativeElement;return"any"===Ge?et.classList.contains("ps--active-x")||et.classList.contains("ps--active-y"):"both"===Ge?et.classList.contains("ps--active-x")&&et.classList.contains("ps--active-y"):et.classList.contains("ps--active-"+Ge)}scrollTo(Ge,et,st){this.disabled||(null==et&&null==st?this.animateScrolling("scrollTop",Ge,st):(null!=Ge&&this.animateScrolling("scrollLeft",Ge,st),null!=et&&this.animateScrolling("scrollTop",et,st)))}scrollToX(Ge,et){this.animateScrolling("scrollLeft",Ge,et)}scrollToY(Ge,et){this.animateScrolling("scrollTop",Ge,et)}scrollToTop(Ge,et){this.animateScrolling("scrollTop",Ge||0,et)}scrollToLeft(Ge,et){this.animateScrolling("scrollLeft",Ge||0,et)}scrollToRight(Ge,et){this.animateScrolling("scrollLeft",this.elementRef.nativeElement.scrollWidth-this.elementRef.nativeElement.clientWidth-(Ge||0),et)}scrollToBottom(Ge,et){this.animateScrolling("scrollTop",this.elementRef.nativeElement.scrollHeight-this.elementRef.nativeElement.clientHeight-(Ge||0),et)}scrollToElement(Ge,et,st){if("string"==typeof Ge&&(Ge=this.elementRef.nativeElement.querySelector(Ge)),Ge){const Tt=Ge.getBoundingClientRect(),mi=this.elementRef.nativeElement.getBoundingClientRect();this.elementRef.nativeElement.classList.contains("ps--active-x")&&this.animateScrolling("scrollLeft",Tt.left-mi.left+this.elementRef.nativeElement.scrollLeft+(et||0),st),this.elementRef.nativeElement.classList.contains("ps--active-y")&&this.animateScrolling("scrollTop",Tt.top-mi.top+this.elementRef.nativeElement.scrollTop+(et||0),st)}}animateScrolling(Ge,et,st){if(this.animation&&(window.cancelAnimationFrame(this.animation),this.animation=null),!st||typeof window>"u")this.elementRef.nativeElement[Ge]=et;else if(et!==this.elementRef.nativeElement[Ge]){let Tt=0,mi=0,Kt=performance.now(),Pt=this.elementRef.nativeElement[Ge];const Xi=(Pt-et)/2,di=fi=>{mi+=Math.PI/(st/(fi-Kt)),Tt=Math.round(et+Xi+Xi*Math.cos(mi)),this.elementRef.nativeElement[Ge]===Pt&&(mi>=Math.PI?this.animateScrolling(Ge,et,0):(this.elementRef.nativeElement[Ge]=Tt,Pt=this.elementRef.nativeElement[Ge],Kt=fi,this.animation=window.requestAnimationFrame(di)))};window.requestAnimationFrame(di)}}}return $e.\u0275fac=function(Ge){return new(Ge||$e)(I.rXU(I.SKi),I.rXU(I.MKu),I.rXU(I.aKT),I.rXU(I.Agw),I.rXU(St,8))},$e.\u0275dir=I.FsC({type:$e,selectors:[["","perfectScrollbar",""]],inputs:{disabled:"disabled",config:[0,"perfectScrollbar","config"]},outputs:{psScrollY:"psScrollY",psScrollX:"psScrollX",psScrollUp:"psScrollUp",psScrollDown:"psScrollDown",psScrollLeft:"psScrollLeft",psScrollRight:"psScrollRight",psYReachEnd:"psYReachEnd",psYReachStart:"psYReachStart",psXReachEnd:"psXReachEnd",psXReachStart:"psXReachStart"},exportAs:["ngxPerfectScrollbar"],features:[I.OA$]}),$e})(),Re=(()=>{class $e{constructor(Ge,et,st){this.zone=Ge,this.cdRef=et,this.platformId=st,this.states={},this.indicatorX=!1,this.indicatorY=!1,this.interaction=!1,this.scrollPositionX=0,this.scrollPositionY=0,this.scrollDirectionX=0,this.scrollDirectionY=0,this.usePropagationX=!1,this.usePropagationY=!1,this.allowPropagationX=!1,this.allowPropagationY=!1,this.stateTimeout=null,this.ngDestroy=new e.B,this.stateUpdate=new e.B,this.disabled=!1,this.usePSClass=!0,this.autoPropagation=!1,this.scrollIndicators=!1,this.psScrollY=new I.bkB,this.psScrollX=new I.bkB,this.psScrollUp=new I.bkB,this.psScrollDown=new I.bkB,this.psScrollLeft=new I.bkB,this.psScrollRight=new I.bkB,this.psYReachEnd=new I.bkB,this.psYReachStart=new I.bkB,this.psXReachEnd=new I.bkB,this.psXReachStart=new I.bkB}ngOnInit(){(0,d.UE)(this.platformId)&&(this.stateUpdate.pipe((0,l.Q)(this.ngDestroy),(0,x.F)((Ge,et)=>Ge===et&&!this.stateTimeout)).subscribe(Ge=>{this.stateTimeout&&typeof window<"u"&&(window.clearTimeout(this.stateTimeout),this.stateTimeout=null),"x"===Ge||"y"===Ge?(this.interaction=!1,"x"===Ge?(this.indicatorX=!1,this.states.left=!1,this.states.right=!1,this.autoPropagation&&this.usePropagationX&&(this.allowPropagationX=!1)):"y"===Ge&&(this.indicatorY=!1,this.states.top=!1,this.states.bottom=!1,this.autoPropagation&&this.usePropagationY&&(this.allowPropagationY=!1))):("left"===Ge||"right"===Ge?(this.states.left=!1,this.states.right=!1,this.states[Ge]=!0,this.autoPropagation&&this.usePropagationX&&(this.indicatorX=!0)):("top"===Ge||"bottom"===Ge)&&(this.states.top=!1,this.states.bottom=!1,this.states[Ge]=!0,this.autoPropagation&&this.usePropagationY&&(this.indicatorY=!0)),this.autoPropagation&&typeof window<"u"&&(this.stateTimeout=window.setTimeout(()=>{this.indicatorX=!1,this.indicatorY=!1,this.stateTimeout=null,this.interaction&&(this.states.left||this.states.right)&&(this.allowPropagationX=!0),this.interaction&&(this.states.top||this.states.bottom)&&(this.allowPropagationY=!0),this.cdRef.markForCheck()},500))),this.cdRef.markForCheck(),this.cdRef.detectChanges()}),this.zone.runOutsideAngular(()=>{if(this.directiveRef){const Ge=this.directiveRef.elementRef.nativeElement;(0,t.R)(Ge,"wheel").pipe((0,l.Q)(this.ngDestroy)).subscribe(et=>{!this.disabled&&this.autoPropagation&&this.checkPropagation(et,et.deltaX,et.deltaY)}),(0,t.R)(Ge,"touchmove").pipe((0,l.Q)(this.ngDestroy)).subscribe(et=>{if(!this.disabled&&this.autoPropagation){const st=et.touches[0].clientX,Tt=et.touches[0].clientY;this.checkPropagation(et,st-this.scrollPositionX,Tt-this.scrollPositionY),this.scrollPositionX=st,this.scrollPositionY=Tt}}),(0,w.h)((0,t.R)(Ge,"ps-scroll-x").pipe((0,f.u)("x")),(0,t.R)(Ge,"ps-scroll-y").pipe((0,f.u)("y")),(0,t.R)(Ge,"ps-x-reach-end").pipe((0,f.u)("right")),(0,t.R)(Ge,"ps-y-reach-end").pipe((0,f.u)("bottom")),(0,t.R)(Ge,"ps-x-reach-start").pipe((0,f.u)("left")),(0,t.R)(Ge,"ps-y-reach-start").pipe((0,f.u)("top"))).pipe((0,l.Q)(this.ngDestroy)).subscribe(et=>{!this.disabled&&(this.autoPropagation||this.scrollIndicators)&&this.stateUpdate.next(et)})}}),window.setTimeout(()=>{we.forEach(Ge=>{this.directiveRef&&(this.directiveRef[Ge]=this[Ge])})},0))}ngOnDestroy(){(0,d.UE)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.unsubscribe(),this.stateTimeout&&typeof window<"u"&&window.clearTimeout(this.stateTimeout))}ngDoCheck(){if((0,d.UE)(this.platformId)&&!this.disabled&&this.autoPropagation&&this.directiveRef){const Ge=this.directiveRef.elementRef.nativeElement;this.usePropagationX=Ge.classList.contains("ps--active-x"),this.usePropagationY=Ge.classList.contains("ps--active-y")}}checkPropagation(Ge,et,st){this.interaction=!0;const Tt=et<0?-1:1,mi=st<0?-1:1;(this.usePropagationX&&this.usePropagationY||this.usePropagationX&&(!this.allowPropagationX||this.scrollDirectionX!==Tt)||this.usePropagationY&&(!this.allowPropagationY||this.scrollDirectionY!==mi))&&(Ge.preventDefault(),Ge.stopPropagation()),et&&(this.scrollDirectionX=Tt),st&&(this.scrollDirectionY=mi),this.stateUpdate.next("interaction"),this.cdRef.detectChanges()}}return $e.\u0275fac=function(Ge){return new(Ge||$e)(I.rXU(I.SKi),I.rXU(I.gRc),I.rXU(I.Agw))},$e.\u0275cmp=I.VBU({type:$e,selectors:[["perfect-scrollbar"]],viewQuery:function(Ge,et){if(1&Ge&&I.GBs(q,7),2&Ge){let st;I.mGM(st=I.lsd())&&(et.directiveRef=st.first)}},hostVars:4,hostBindings:function(Ge,et){2&Ge&&I.AVh("ps-show-limits",et.autoPropagation)("ps-show-active",et.scrollIndicators)},inputs:{disabled:"disabled",usePSClass:"usePSClass",autoPropagation:"autoPropagation",scrollIndicators:"scrollIndicators",config:"config"},outputs:{psScrollY:"psScrollY",psScrollX:"psScrollX",psScrollUp:"psScrollUp",psScrollDown:"psScrollDown",psScrollLeft:"psScrollLeft",psScrollRight:"psScrollRight",psYReachEnd:"psYReachEnd",psYReachStart:"psYReachStart",psXReachEnd:"psXReachEnd",psXReachStart:"psXReachStart"},exportAs:["ngxPerfectScrollbar"],ngContentSelectors:zt,decls:4,vars:5,consts:[[2,"position","static",3,"perfectScrollbar","disabled"],[1,"ps-content"],["class","ps-overlay",3,"ps-at-top","ps-at-left","ps-at-right","ps-at-bottom",4,"ngIf"],[1,"ps-overlay"],[1,"ps-indicator-top"],[1,"ps-indicator-left"],[1,"ps-indicator-right"],[1,"ps-indicator-bottom"]],template:function(Ge,et){1&Ge&&(I.NAR(),I.j41(0,"div",0)(1,"div",1),I.SdG(2),I.k0s(),I.DNE(3,Jt,5,16,"div",2),I.k0s()),2&Ge&&(I.AVh("ps",et.usePSClass),I.Y8G("perfectScrollbar",et.config)("disabled",et.disabled),I.R7$(3),I.Y8G("ngIf",et.scrollIndicators))},dependencies:[q,d.bT],styles:["perfect-scrollbar{position:relative;display:block;overflow:hidden;width:100%;height:100%;max-width:100%;max-height:100%}perfect-scrollbar[hidden]{display:none}perfect-scrollbar[fxflex]{display:flex;flex-direction:column;height:auto;min-width:0;min-height:0}perfect-scrollbar[fxflex]>.ps{flex:1 1 auto;width:auto;height:auto;min-width:0;min-height:0;-webkit-box-flex:1}perfect-scrollbar[fxlayout]>.ps,perfect-scrollbar[fxlayout]>.ps>.ps-content{display:flex;flex:1 1 auto;flex-direction:inherit;align-items:inherit;align-content:inherit;justify-content:inherit;width:100%;height:100%;-webkit-box-align:inherit;-webkit-box-flex:1;-webkit-box-pack:inherit}perfect-scrollbar[fxlayout=row]>.ps,perfect-scrollbar[fxlayout=row]>.ps>.ps-content{flex-direction:row!important}perfect-scrollbar[fxlayout=column]>.ps,perfect-scrollbar[fxlayout=column]>.ps>.ps-content{flex-direction:column!important}perfect-scrollbar>.ps{position:static;display:block;width:100%;height:100%;max-width:100%;max-height:100%}perfect-scrollbar>.ps textarea{-ms-overflow-style:scrollbar}perfect-scrollbar>.ps>.ps-overlay{position:absolute;top:0;right:0;bottom:0;left:0;display:block;overflow:hidden;pointer-events:none}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{position:absolute;opacity:0;transition:opacity .3s ease-in-out}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{left:0;min-width:100%;min-height:24px}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right{top:0;min-width:24px;min-height:100%}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top{top:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left{left:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right{right:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{bottom:0}perfect-scrollbar>.ps.ps--active-y>.ps__rail-y{top:0!important;right:0!important;left:auto!important;width:10px;cursor:default;transition:width .2s linear,opacity .2s linear,background-color .2s linear}perfect-scrollbar>.ps.ps--active-y>.ps__rail-y:hover,perfect-scrollbar>.ps.ps--active-y>.ps__rail-y.ps--clicking{width:15px}perfect-scrollbar>.ps.ps--active-x>.ps__rail-x{top:auto!important;bottom:0!important;left:0!important;height:10px;cursor:default;transition:height .2s linear,opacity .2s linear,background-color .2s linear}perfect-scrollbar>.ps.ps--active-x>.ps__rail-x:hover,perfect-scrollbar>.ps.ps--active-x>.ps__rail-x.ps--clicking{height:15px}perfect-scrollbar>.ps.ps--active-x.ps--active-y>.ps__rail-y{margin:0 0 10px}perfect-scrollbar>.ps.ps--active-x.ps--active-y>.ps__rail-x{margin:0 10px 0 0}perfect-scrollbar>.ps.ps--scrolling-y>.ps__rail-y,perfect-scrollbar>.ps.ps--scrolling-x>.ps__rail-x{opacity:.9;background-color:#eee}perfect-scrollbar.ps-show-always>.ps.ps--active-y>.ps__rail-y,perfect-scrollbar.ps-show-always>.ps.ps--active-x>.ps__rail-x{opacity:.6}perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-top) .ps-indicator-top{opacity:1;background:linear-gradient(to bottom,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-bottom) .ps-indicator-bottom{opacity:1;background:linear-gradient(to top,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-x>.ps-overlay:not(.ps-at-left) .ps-indicator-left{opacity:1;background:linear-gradient(to right,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-x>.ps-overlay:not(.ps-at-right) .ps-indicator-right{opacity:1;background:linear-gradient(to left,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-top .ps-indicator-top{background:linear-gradient(to bottom,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-bottom .ps-indicator-bottom{background:linear-gradient(to top,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-left .ps-indicator-left{background:linear-gradient(to right,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-right .ps-indicator-right{background:linear-gradient(to left,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-top .ps-indicator-top.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-bottom .ps-indicator-bottom.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-left .ps-indicator-left.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-right .ps-indicator-right.ps-indicator-show{opacity:1}\n",".ps{overflow:hidden!important;overflow-anchor:none;-ms-overflow-style:none;touch-action:auto;-ms-touch-action:auto}.ps__rail-x{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;height:15px;bottom:0px;position:absolute}.ps__rail-y{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;width:15px;right:0;position:absolute}.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y,.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y{opacity:.6}.ps .ps__rail-x:hover,.ps .ps__rail-y:hover,.ps .ps__rail-x:focus,.ps .ps__rail-y:focus,.ps .ps__rail-x.ps--clicking,.ps .ps__rail-y.ps--clicking{background-color:#eee;opacity:.9}.ps__thumb-x{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:6px;bottom:2px;position:absolute}.ps__thumb-y{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:6px;right:2px;position:absolute}.ps__rail-x:hover>.ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x.ps--clicking .ps__thumb-x{background-color:#999;height:11px}.ps__rail-y:hover>.ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y.ps--clicking .ps__thumb-y{background-color:#999;width:11px}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.ps{overflow:auto!important}}\n"],encapsulation:2}),$e})(),gt=(()=>{class $e{}return $e.\u0275fac=function(Ge){return new(Ge||$e)},$e.\u0275mod=I.$C({type:$e}),$e.\u0275inj=I.G2t({imports:[[d.MD],d.MD]}),$e})()},467:(Qe,te,g)=>{"use strict";function e(w,S,l,x,f,I,d){try{var T=w[I](d),y=T.value}catch(F){return void l(F)}T.done?S(y):Promise.resolve(y).then(x,f)}function t(w){return function(){var S=this,l=arguments;return new Promise(function(x,f){var I=w.apply(S,l);function d(y){e(I,x,f,d,T,"next",y)}function T(y){e(I,x,f,d,T,"throw",y)}d(void 0)})}}g.d(te,{A:()=>t})},1635:(Qe,te,g)=>{"use strict";function l(r,v,V,N){var ze,ne=arguments.length,Ee=ne<3?v:null===N?N=Object.getOwnPropertyDescriptor(v,V):N;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)Ee=Reflect.decorate(r,v,V,N);else for(var qe=r.length-1;qe>=0;qe--)(ze=r[qe])&&(Ee=(ne<3?ze(Ee):ne>3?ze(v,V,Ee):ze(v,V))||Ee);return ne>3&&Ee&&Object.defineProperty(v,V,Ee),Ee}function F(r,v,V,N){return new(V||(V=Promise))(function(Ee,ze){function qe(X){try{se(N.next(X))}catch(me){ze(me)}}function Ke(X){try{se(N.throw(X))}catch(me){ze(me)}}function se(X){X.done?Ee(X.value):function ne(Ee){return Ee instanceof V?Ee:new V(function(ze){ze(Ee)})}(X.value).then(qe,Ke)}se((N=N.apply(r,v||[])).next())})}function ie(r){return this instanceof ie?(this.v=r,this):new ie(r)}function ge(r,v,V){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var ne,N=V.apply(r,v||[]),Ee=[];return ne={},qe("next"),qe("throw"),qe("return",function ze(fe){return function(ke){return Promise.resolve(ke).then(fe,me)}}),ne[Symbol.asyncIterator]=function(){return this},ne;function qe(fe,ke){N[fe]&&(ne[fe]=function(mt){return new Promise(function(_e,be){Ee.push([fe,mt,_e,be])>1||Ke(fe,mt)})},ke&&(ne[fe]=ke(ne[fe])))}function Ke(fe,ke){try{!function se(fe){fe.value instanceof ie?Promise.resolve(fe.value.v).then(X,me):ce(Ee[0][2],fe)}(N[fe](ke))}catch(mt){ce(Ee[0][3],mt)}}function X(fe){Ke("next",fe)}function me(fe){Ke("throw",fe)}function ce(fe,ke){fe(ke),Ee.shift(),Ee.length&&Ke(Ee[0][0],Ee[0][1])}}function Me(r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var V,v=r[Symbol.asyncIterator];return v?v.call(r):(r=function $(r){var v="function"==typeof Symbol&&Symbol.iterator,V=v&&r[v],N=0;if(V)return V.call(r);if(r&&"number"==typeof r.length)return{next:function(){return r&&N>=r.length&&(r=void 0),{value:r&&r[N++],done:!r}}};throw new TypeError(v?"Object is not iterable.":"Symbol.iterator is not defined.")}(r),V={},N("next"),N("throw"),N("return"),V[Symbol.asyncIterator]=function(){return this},V);function N(Ee){V[Ee]=r[Ee]&&function(ze){return new Promise(function(qe,Ke){!function ne(Ee,ze,qe,Ke){Promise.resolve(Ke).then(function(se){Ee({value:se,done:qe})},ze)}(qe,Ke,(ze=r[Ee](ze)).done,ze.value)})}}}g.d(te,{AQ:()=>ge,Cg:()=>l,N3:()=>ie,sH:()=>F,xN:()=>Me}),"function"==typeof SuppressedError&&SuppressedError},3219:Qe=>{"use strict";Qe.exports=JSON.parse('{"aes-128-ecb":{"cipher":"AES","key":128,"iv":0,"mode":"ECB","type":"block"},"aes-192-ecb":{"cipher":"AES","key":192,"iv":0,"mode":"ECB","type":"block"},"aes-256-ecb":{"cipher":"AES","key":256,"iv":0,"mode":"ECB","type":"block"},"aes-128-cbc":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes-192-cbc":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes-256-cbc":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes128":{"cipher":"AES","key":128,"iv":16,"mode":"CBC","type":"block"},"aes192":{"cipher":"AES","key":192,"iv":16,"mode":"CBC","type":"block"},"aes256":{"cipher":"AES","key":256,"iv":16,"mode":"CBC","type":"block"},"aes-128-cfb":{"cipher":"AES","key":128,"iv":16,"mode":"CFB","type":"stream"},"aes-192-cfb":{"cipher":"AES","key":192,"iv":16,"mode":"CFB","type":"stream"},"aes-256-cfb":{"cipher":"AES","key":256,"iv":16,"mode":"CFB","type":"stream"},"aes-128-cfb8":{"cipher":"AES","key":128,"iv":16,"mode":"CFB8","type":"stream"},"aes-192-cfb8":{"cipher":"AES","key":192,"iv":16,"mode":"CFB8","type":"stream"},"aes-256-cfb8":{"cipher":"AES","key":256,"iv":16,"mode":"CFB8","type":"stream"},"aes-128-cfb1":{"cipher":"AES","key":128,"iv":16,"mode":"CFB1","type":"stream"},"aes-192-cfb1":{"cipher":"AES","key":192,"iv":16,"mode":"CFB1","type":"stream"},"aes-256-cfb1":{"cipher":"AES","key":256,"iv":16,"mode":"CFB1","type":"stream"},"aes-128-ofb":{"cipher":"AES","key":128,"iv":16,"mode":"OFB","type":"stream"},"aes-192-ofb":{"cipher":"AES","key":192,"iv":16,"mode":"OFB","type":"stream"},"aes-256-ofb":{"cipher":"AES","key":256,"iv":16,"mode":"OFB","type":"stream"},"aes-128-ctr":{"cipher":"AES","key":128,"iv":16,"mode":"CTR","type":"stream"},"aes-192-ctr":{"cipher":"AES","key":192,"iv":16,"mode":"CTR","type":"stream"},"aes-256-ctr":{"cipher":"AES","key":256,"iv":16,"mode":"CTR","type":"stream"},"aes-128-gcm":{"cipher":"AES","key":128,"iv":12,"mode":"GCM","type":"auth"},"aes-192-gcm":{"cipher":"AES","key":192,"iv":12,"mode":"GCM","type":"auth"},"aes-256-gcm":{"cipher":"AES","key":256,"iv":12,"mode":"GCM","type":"auth"}}')},2951:Qe=>{"use strict";Qe.exports=JSON.parse('{"sha224WithRSAEncryption":{"sign":"rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"RSA-SHA224":{"sign":"ecdsa/rsa","hash":"sha224","id":"302d300d06096086480165030402040500041c"},"sha256WithRSAEncryption":{"sign":"rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"RSA-SHA256":{"sign":"ecdsa/rsa","hash":"sha256","id":"3031300d060960864801650304020105000420"},"sha384WithRSAEncryption":{"sign":"rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"RSA-SHA384":{"sign":"ecdsa/rsa","hash":"sha384","id":"3041300d060960864801650304020205000430"},"sha512WithRSAEncryption":{"sign":"rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA512":{"sign":"ecdsa/rsa","hash":"sha512","id":"3051300d060960864801650304020305000440"},"RSA-SHA1":{"sign":"rsa","hash":"sha1","id":"3021300906052b0e03021a05000414"},"ecdsa-with-SHA1":{"sign":"ecdsa","hash":"sha1","id":""},"sha256":{"sign":"ecdsa","hash":"sha256","id":""},"sha224":{"sign":"ecdsa","hash":"sha224","id":""},"sha384":{"sign":"ecdsa","hash":"sha384","id":""},"sha512":{"sign":"ecdsa","hash":"sha512","id":""},"DSA-SHA":{"sign":"dsa","hash":"sha1","id":""},"DSA-SHA1":{"sign":"dsa","hash":"sha1","id":""},"DSA":{"sign":"dsa","hash":"sha1","id":""},"DSA-WITH-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-SHA224":{"sign":"dsa","hash":"sha224","id":""},"DSA-WITH-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-SHA256":{"sign":"dsa","hash":"sha256","id":""},"DSA-WITH-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-SHA384":{"sign":"dsa","hash":"sha384","id":""},"DSA-WITH-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-SHA512":{"sign":"dsa","hash":"sha512","id":""},"DSA-RIPEMD160":{"sign":"dsa","hash":"rmd160","id":""},"ripemd160WithRSA":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"RSA-RIPEMD160":{"sign":"rsa","hash":"rmd160","id":"3021300906052b2403020105000414"},"md5WithRSAEncryption":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"},"RSA-MD5":{"sign":"rsa","hash":"md5","id":"3020300c06082a864886f70d020505000410"}}')},4589:Qe=>{"use strict";Qe.exports=JSON.parse('{"1.3.132.0.10":"secp256k1","1.3.132.0.33":"p224","1.2.840.10045.3.1.1":"p192","1.2.840.10045.3.1.7":"p256","1.3.132.0.34":"p384","1.3.132.0.35":"p521"}')},3241:Qe=>{"use strict";Qe.exports=JSON.parse('{"modp1":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a63a3620ffffffffffffffff"},"modp2":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece65381ffffffffffffffff"},"modp5":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca237327ffffffffffffffff"},"modp14":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aacaa68ffffffffffffffff"},"modp15":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a93ad2caffffffffffffffff"},"modp16":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c934063199ffffffffffffffff"},"modp17":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dcc4024ffffffffffffffff"},"modp18":{"gen":"02","prime":"ffffffffffffffffc90fdaa22168c234c4c6628b80dc1cd129024e088a67cc74020bbea63b139b22514a08798e3404ddef9519b3cd3a431b302b0a6df25f14374fe1356d6d51c245e485b576625e7ec6f44c42e9a637ed6b0bff5cb6f406b7edee386bfb5a899fa5ae9f24117c4b1fe649286651ece45b3dc2007cb8a163bf0598da48361c55d39a69163fa8fd24cf5f83655d23dca3ad961c62f356208552bb9ed529077096966d670c354e4abc9804f1746c08ca18217c32905e462e36ce3be39e772c180e86039b2783a2ec07a28fb5c55df06f4c52c9de2bcbf6955817183995497cea956ae515d2261898fa051015728e5a8aaac42dad33170d04507a33a85521abdf1cba64ecfb850458dbef0a8aea71575d060c7db3970f85a6e1e4c7abf5ae8cdb0933d71e8c94e04a25619dcee3d2261ad2ee6bf12ffa06d98a0864d87602733ec86a64521f2b18177b200cbbe117577a615d6c770988c0bad946e208e24fa074e5ab3143db5bfce0fd108e4b82d120a92108011a723c12a787e6d788719a10bdba5b2699c327186af4e23c1a946834b6150bda2583e9ca2ad44ce8dbbbc2db04de8ef92e8efc141fbecaa6287c59474e6bc05d99b2964fa090c3a2233ba186515be7ed1f612970cee2d7afb81bdd762170481cd0069127d5b05aa993b4ea988d8fddc186ffb7dc90a6c08f4df435c93402849236c3fab4d27c7026c1d4dcb2602646dec9751e763dba37bdf8ff9406ad9e530ee5db382f413001aeb06a53ed9027d831179727b0865a8918da3edbebcf9b14ed44ce6cbaced4bb1bdb7f1447e6cc254b332051512bd7af426fb8f401378cd2bf5983ca01c64b92ecf032ea15d1721d03f482d7ce6e74fef6d55e702f46980c82b5a84031900b1c9e59e7c97fbec7e8f323a97a7e36cc88be0f1d45b7ff585ac54bd407b22b4154aacc8f6d7ebf48e1d814cc5ed20f8037e0a79715eef29be32806a1d58bb7c5da76f550aa3d8a1fbff0eb19ccb1a313d55cda56c9ec2ef29632387fe8d76e3c0468043e8f663f4860ee12bf2d5b0b7474d6e694f91e6dbe115974a3926f12fee5e438777cb6a932df8cd8bec4d073b931ba3bc832b68d9dd300741fa7bf8afc47ed2576f6936ba424663aab639c5ae4f5683423b4742bf1c978238f16cbe39d652de3fdb8befc848ad922222e04a4037c0713eb57a81a23f0c73473fc646cea306b4bcbc8862f8385ddfa9d4b7fa2c087e879683303ed5bdd3a062b3cf5b3a278a66d2a13f83f44f82ddf310ee074ab6a364597e899a0255dc164f31cc50846851df9ab48195ded7ea1b1d510bd7ee74d73faf36bc31ecfa268359046f4eb879f924009438b481c6cd7889a002ed5ee382bc9190da6fc026e479558e4475677e9aa9e3050e2765694dfc81f56e880b96e7160c980dd98edd3dfffffffffffffffff"}}')},1636:Qe=>{"use strict";Qe.exports={rE:"6.5.5"}},5579:Qe=>{"use strict";Qe.exports=JSON.parse('{"2.16.840.1.101.3.4.1.1":"aes-128-ecb","2.16.840.1.101.3.4.1.2":"aes-128-cbc","2.16.840.1.101.3.4.1.3":"aes-128-ofb","2.16.840.1.101.3.4.1.4":"aes-128-cfb","2.16.840.1.101.3.4.1.21":"aes-192-ecb","2.16.840.1.101.3.4.1.22":"aes-192-cbc","2.16.840.1.101.3.4.1.23":"aes-192-ofb","2.16.840.1.101.3.4.1.24":"aes-192-cfb","2.16.840.1.101.3.4.1.41":"aes-256-ecb","2.16.840.1.101.3.4.1.42":"aes-256-cbc","2.16.840.1.101.3.4.1.43":"aes-256-ofb","2.16.840.1.101.3.4.1.44":"aes-256-cfb"}')}},Qe=>{Qe(Qe.s=3471)}]); \ No newline at end of file diff --git a/frontend/main.87c60b2108713046.js b/frontend/main.87c60b2108713046.js new file mode 100644 index 00000000..7fac260c --- /dev/null +++ b/frontend/main.87c60b2108713046.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[792],{8430(Zt,pe,l){"use strict";l.d(pe,{$6:()=>F,$J:()=>Le,$Q:()=>ne,Aw:()=>f,C2:()=>C,CK:()=>re,Db:()=>Sn,Do:()=>P,Dq:()=>$,ED:()=>Qn,EM:()=>nt,Eb:()=>Ye,Ew:()=>ht,Fd:()=>Ee,GZ:()=>oe,Gy:()=>Pe,Gz:()=>rt,Hm:()=>be,Jx:()=>H,Ml:()=>cn,N4:()=>V,NS:()=>e,NU:()=>h,Qj:()=>le,Qv:()=>Ft,Sn:()=>O,T4:()=>ce,Uj:()=>xe,VK:()=>ve,We:()=>j,XT:()=>B,Yi:()=>lt,Zi:()=>G,a5:()=>Ke,aB:()=>Vt,cR:()=>_e,dv:()=>J,ed:()=>W,fy:()=>De,g6:()=>ot,gf:()=>T,ij:()=>Dt,jQ:()=>Gt,kQ:()=>gt,kX:()=>L,kv:()=>ie,lg:()=>w,no:()=>v,qw:()=>fe,sq:()=>Ce,uK:()=>te,vL:()=>Re,w0:()=>Xe,x1:()=>u,y0:()=>Qe,zU:()=>he});var i=l(9640),d=l(4416);const v=(0,i.VP)(d.TC.UPDATE_API_CALL_STATUS_CLN,(0,i.xk)()),T=(0,i.VP)(d.TC.RESET_CLN_STORE),w=(0,i.VP)(d.TC.FETCH_PAGE_SETTINGS_CLN),e=(0,i.VP)(d.TC.SET_PAGE_SETTINGS_CLN,(0,i.xk)()),O=(0,i.VP)(d.TC.SAVE_PAGE_SETTINGS_CLN,(0,i.xk)()),f=(0,i.VP)(d.TC.FETCH_INFO_CLN,(0,i.xk)()),u=(0,i.VP)(d.TC.SET_INFO_CLN,(0,i.xk)()),L=(0,i.VP)(d.TC.FETCH_FEE_RATES_CLN,(0,i.xk)()),C=(0,i.VP)(d.TC.SET_FEE_RATES_CLN,(0,i.xk)()),B=(0,i.VP)(d.TC.GET_NEW_ADDRESS_CLN,(0,i.xk)()),Pe=((0,i.VP)(d.TC.SET_NEW_ADDRESS_CLN,(0,i.xk)()),(0,i.VP)(d.TC.FETCH_PEERS_CLN)),le=(0,i.VP)(d.TC.SET_PEERS_CLN,(0,i.xk)()),Ce=(0,i.VP)(d.TC.SAVE_NEW_PEER_CLN,(0,i.xk)()),j=((0,i.VP)(d.TC.NEWLY_ADDED_PEER_CLN,(0,i.xk)()),(0,i.VP)(d.TC.ADD_PEER_CLN,(0,i.xk)())),W=(0,i.VP)(d.TC.DETACH_PEER_CLN,(0,i.xk)()),G=(0,i.VP)(d.TC.REMOVE_PEER_CLN,(0,i.xk)()),re=(0,i.VP)(d.TC.FETCH_PAYMENTS_CLN),xe=(0,i.VP)(d.TC.SET_PAYMENTS_CLN,(0,i.xk)()),Ee=(0,i.VP)(d.TC.SEND_PAYMENT_CLN,(0,i.xk)()),V=(0,i.VP)(d.TC.SEND_PAYMENT_STATUS_CLN,(0,i.xk)()),ce=(0,i.VP)(d.TC.GET_QUERY_ROUTES_CLN,(0,i.xk)()),be=(0,i.VP)(d.TC.SET_QUERY_ROUTES_CLN,(0,i.xk)()),ne=(0,i.VP)(d.TC.FETCH_CHANNELS_CLN),J=(0,i.VP)(d.TC.SET_CHANNELS_CLN,(0,i.xk)()),De=(0,i.VP)(d.TC.UPDATE_CHANNEL_CLN,(0,i.xk)()),Re=(0,i.VP)(d.TC.SAVE_NEW_CHANNEL_CLN,(0,i.xk)()),Xe=(0,i.VP)(d.TC.CLOSE_CHANNEL_CLN,(0,i.xk)()),_e=(0,i.VP)(d.TC.REMOVE_CHANNEL_CLN,(0,i.xk)()),he=(0,i.VP)(d.TC.PEER_LOOKUP_CLN,(0,i.xk)()),Dt=(0,i.VP)(d.TC.CHANNEL_LOOKUP_CLN,(0,i.xk)()),lt=(0,i.VP)(d.TC.INVOICE_LOOKUP_CLN,(0,i.xk)()),Le=(0,i.VP)(d.TC.SET_LOOKUP_CLN,(0,i.xk)()),te=(0,i.VP)(d.TC.GET_FORWARDING_HISTORY_CLN,(0,i.xk)()),ie=(0,i.VP)(d.TC.SET_FORWARDING_HISTORY_CLN,(0,i.xk)()),P=(0,i.VP)(d.TC.FETCH_INVOICES_CLN),F=(0,i.VP)(d.TC.SET_INVOICES_CLN,(0,i.xk)()),ve=(0,i.VP)(d.TC.SAVE_NEW_INVOICE_CLN,(0,i.xk)()),H=(0,i.VP)(d.TC.ADD_INVOICE_CLN,(0,i.xk)()),$=(0,i.VP)(d.TC.UPDATE_INVOICE_CLN,(0,i.xk)()),Ke=(0,i.VP)(d.TC.DELETE_EXPIRED_INVOICE_CLN,(0,i.xk)()),Vt=(0,i.VP)(d.TC.SET_CHANNEL_TRANSACTION_CLN,(0,i.xk)()),ot=((0,i.VP)(d.TC.SET_CHANNEL_TRANSACTION_RES_CLN,(0,i.xk)()),(0,i.VP)(d.TC.FETCH_UTXO_BALANCES_CLN)),nt=(0,i.VP)(d.TC.SET_UTXO_BALANCES_CLN,(0,i.xk)()),ht=(0,i.VP)(d.TC.FETCH_OFFER_INVOICE_CLN,(0,i.xk)()),oe=(0,i.VP)(d.TC.SET_OFFER_INVOICE_CLN,(0,i.xk)()),Ye=(0,i.VP)(d.TC.FETCH_OFFERS_CLN),fe=(0,i.VP)(d.TC.SET_OFFERS_CLN,(0,i.xk)()),Qe=(0,i.VP)(d.TC.SAVE_NEW_OFFER_CLN,(0,i.xk)()),gt=(0,i.VP)(d.TC.ADD_OFFER_CLN,(0,i.xk)()),Gt=(0,i.VP)(d.TC.DISABLE_OFFER_CLN,(0,i.xk)()),rt=(0,i.VP)(d.TC.UPDATE_OFFER_CLN,(0,i.xk)()),cn=(0,i.VP)(d.TC.FETCH_OFFER_BOOKMARKS_CLN),Ft=(0,i.VP)(d.TC.SET_OFFER_BOOKMARKS_CLN,(0,i.xk)()),Sn=(0,i.VP)(d.TC.ADD_UPDATE_OFFER_BOOKMARK_CLN,(0,i.xk)()),Qn=(0,i.VP)(d.TC.DELETE_OFFER_BOOKMARK_CLN,(0,i.xk)()),h=(0,i.VP)(d.TC.REMOVE_OFFER_BOOKMARK_CLN,(0,i.xk)())},283(Zt,pe,l){"use strict";l.d(pe,{i:()=>V});var i=l(1747),d=l(1413),v=l(7673),T=l(9437),w=l(6354),e=l(1397),O=l(6977),f=l(2462),u=l(8321),L=l(4416),C=l(1771),B=l(8430),A=l(9584),Pe=l(2142),le=l(2615),Ce=l(9330),Ae=l(9640),j=l(3202),W=l(2571),G=l(8570),re=l(3694),xe=l(7879),Ee=l(7303);let V=(()=>{var ce;class be{constructor(J,De,Re,Xe,_e,he,Dt,lt,Le){this.actions=J,this.httpClient=De,this.store=Re,this.sessionService=Xe,this.commonService=_e,this.logger=he,this.router=Dt,this.wsService=lt,this.location=Le,this.CHILD_API_URL=L.H$+"/cln",this.CLN_VERISON="",this.flgInitialized=!1,this.unSubs=[new d.B,new d.B,new d.B],this.infoFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_INFO_CLN),(0,e.Z)(te=>(this.flgInitialized=!1,this.store.dispatch((0,C.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,B.no)({payload:{action:"FetchInfo",status:L.wn.INITIATED}})),this.store.dispatch((0,C.mt)({payload:L.MZ.GET_NODE_INFO})),this.httpClient.get(this.CHILD_API_URL+L.rl.GETINFO_API).pipe((0,O.Q)(this.actions.pipe((0,i.gp)(L.aU.SET_SELECTED_NODE))),(0,w.T)(ie=>(this.logger.info(ie),this.CLN_VERISON=ie.version||"",ie.chains&&ie.chains.length&&ie.chains[0]&&"object"==typeof ie.chains[0]&&ie.chains[0].hasOwnProperty("chain")&&ie?.chains[0].chain&&ie?.chains[0].chain.toLowerCase().indexOf("bitcoin")<0&&ie?.chains[0].chain.toLowerCase().indexOf("liquid")<0?(this.store.dispatch((0,B.no)({payload:{action:"FetchInfo",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.GET_NODE_INFO})),this.store.dispatch((0,C.Jh)()),setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{type:L.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}}))},500),{type:L.aU.LOGOUT,payload:"Sorry Not Sorry, RTL is Bitcoin Only!"}):(this.initializeRemainingData(ie,te.payload.loadPage),this.store.dispatch((0,B.no)({payload:{action:"FetchInfo",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.GET_NODE_INFO})),{type:L.TC.SET_INFO_CLN,payload:ie||{}}))),(0,T.W)(ie=>{const P=this.commonService.extractErrorCode(ie),F=503===P?"Unable to Connect to Core Lightning Server.":this.commonService.extractErrorMessage(ie);return this.router.navigate(["/error"],{state:{errorCode:P,errorMessage:F}}),this.handleErrorWithoutAlert("FetchInfo",L.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:P,error:F}),(0,v.of)({type:L.aU.VOID})})))))),this.fetchFeeRatesCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_FEE_RATES_CLN),(0,e.Z)(te=>(this.store.dispatch((0,B.no)({payload:{action:"FetchFeeRates"+te.payload,status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.NETWORK_API+"/feeRates",{style:te.payload}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"FetchFeeRates"+te.payload,status:L.wn.COMPLETED}})),{type:L.TC.SET_FEE_RATES_CLN,payload:ie||{}})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("FetchFeeRates"+te.payload,L.MZ.NO_SPINNER,"Fetching Fee Rates Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.getNewAddressCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.GET_NEW_ADDRESS_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.post(this.CHILD_API_URL+L.rl.ON_CHAIN_API+"/newaddr",{addresstype:te.payload.addressCode}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,C.y0)({payload:L.MZ.GENERATE_NEW_ADDRESS})),{type:L.TC.SET_NEW_ADDRESS_CLN,payload:ie&&ie[te.payload.addressCode]?ie[te.payload.addressCode]:{}})),(0,T.W)(ie=>(this.handleErrorWithAlert("GenerateNewAddress",L.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+L.rl.ON_CHAIN_API,ie),(0,v.of)({type:L.aU.VOID})))))))),this.setNewAddressCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SET_NEW_ADDRESS_CLN),(0,w.T)(te=>(this.logger.info(te.payload),te.payload))),{dispatch:!1}),this.peersFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_PEERS_CLN),(0,e.Z)(()=>(this.store.dispatch((0,B.no)({payload:{action:"FetchPeers",status:L.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+L.rl.PEERS_API).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.no)({payload:{action:"FetchPeers",status:L.wn.COMPLETED}})),{type:L.TC.SET_PEERS_CLN,payload:te||[]})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchPeers",L.MZ.NO_SPINNER,"Fetching Peers Failed.",te),(0,v.of)({type:L.aU.VOID})))))))),this.saveNewPeerCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SAVE_NEW_PEER_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.CONNECT_PEER})),this.store.dispatch((0,B.no)({payload:{action:"SaveNewPeer",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.PEERS_API,{id:te.payload.id}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"SaveNewPeer",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.CONNECT_PEER})),this.store.dispatch((0,B.Qj)({payload:ie||[]})),{type:L.TC.NEWLY_ADDED_PEER_CLN,payload:{peer:ie.find(P=>0===te.payload.id.indexOf(P.id?P.id:""))}})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("SaveNewPeer",L.MZ.CONNECT_PEER,"Peer Connection Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.detachPeerCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.DETACH_PEER_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.DISCONNECT_PEER})),this.httpClient.post(this.CHILD_API_URL+L.rl.PEERS_API+"/disconnect",{id:te.payload.id,force:te.payload.force}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,C.y0)({payload:L.MZ.DISCONNECT_PEER})),this.store.dispatch((0,C.UI)({payload:"Peer Disconnected Successfully!"})),{type:L.TC.REMOVE_PEER_CLN,payload:{id:te.payload.id}})),(0,T.W)(ie=>(this.handleErrorWithAlert("PeerDisconnect",L.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+L.rl.PEERS_API+"/"+te.payload.id,ie),(0,v.of)({type:L.aU.VOID})))))))),this.channelsFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_CHANNELS_CLN),(0,e.Z)(()=>(this.store.dispatch((0,B.no)({payload:{action:"FetchChannels",status:L.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+L.rl.CHANNELS_API+"/listPeerChannels"))),(0,w.T)(te=>{this.logger.info(te),this.store.dispatch((0,B.no)({payload:{action:"FetchChannels",status:L.wn.COMPLETED}}));const ie={activeChannels:[],pendingChannels:[],inactiveChannels:[]};return te.forEach(P=>{"CHANNELD_NORMAL"===P.state?P.peer_connected?ie.activeChannels.push(P):ie.inactiveChannels.push(P):ie.pendingChannels.push(P)}),{type:L.TC.SET_CHANNELS_CLN,payload:ie}}),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchChannels",L.MZ.NO_SPINNER,"Fetching Channels Failed.",te),(0,v.of)({type:L.aU.VOID}))))),this.openNewChannelCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SAVE_NEW_CHANNEL_CLN),(0,e.Z)(te=>{this.store.dispatch((0,C.mt)({payload:L.MZ.OPEN_CHANNEL})),this.store.dispatch((0,B.no)({payload:{action:"SaveNewChannel",status:L.wn.INITIATED}}));const ie={id:te.payload.peerId,amount:te.payload.amount,feerate:te.payload.feeRate,announce:te.payload.announce};return te.payload.minconf&&(ie.minconf=te.payload.minconf),te.payload.utxos&&(ie.utxos=te.payload.utxos),te.payload.requestAmount&&(ie.request_amt=te.payload.requestAmount),te.payload.compactLease&&(ie.compact_lease=te.payload.compactLease),this.httpClient.post(this.CHILD_API_URL+L.rl.CHANNELS_API,ie).pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,B.no)({payload:{action:"SaveNewChannel",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.OPEN_CHANNEL})),this.store.dispatch((0,C.UI)({payload:"Channel Added Successfully!"})),this.store.dispatch((0,B.g6)()),{type:L.TC.FETCH_CHANNELS_CLN})),(0,T.W)(P=>(this.handleErrorWithoutAlert("SaveNewChannel",L.MZ.OPEN_CHANNEL,"Opening Channel Failed.",P),(0,v.of)({type:L.aU.VOID}))))}))),this.updateChannelCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.UPDATE_CHANNEL_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+L.rl.CHANNELS_API+"/setChannelFee",te.payload).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,C.y0)({payload:L.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,C.UI)("all"===te.payload.id?{payload:{message:"All Channels Updated Successfully. Fee policy updates may take some time to reflect on the channel.",duration:5e3}}:{payload:{message:"Channel Updated Successfully. Fee policy updates may take some time to reflect on the channel.",duration:5e3}})),{type:L.TC.FETCH_CHANNELS_CLN})),(0,T.W)(ie=>(this.handleErrorWithAlert("UpdateChannel",L.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+L.rl.CHANNELS_API,ie),(0,v.of)({type:L.aU.VOID})))))))),this.closeChannelCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.CLOSE_CHANNEL_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:te.payload.force?L.MZ.FORCE_CLOSE_CHANNEL:L.MZ.CLOSE_CHANNEL})),this.httpClient.post(this.CHILD_API_URL+L.rl.CHANNELS_API+"/close",{id:te.payload.channelId,unilateraltimeout:te.payload.force?1:null}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,C.y0)({payload:te.payload.force?L.MZ.FORCE_CLOSE_CHANNEL:L.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,B.$Q)()),this.store.dispatch((0,B.g6)()),this.store.dispatch((0,C.UI)({payload:"Channel Closed Successfully!"})),{type:L.TC.REMOVE_CHANNEL_CLN,payload:te.payload})),(0,T.W)(ie=>(this.handleErrorWithAlert("CloseChannel",te.payload.force?L.MZ.FORCE_CLOSE_CHANNEL:L.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+L.rl.CHANNELS_API,ie),(0,v.of)({type:L.aU.VOID})))))))),this.paymentsFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_PAYMENTS_CLN),(0,e.Z)(()=>(this.store.dispatch((0,B.no)({payload:{action:"FetchPayments",status:L.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+L.rl.PAYMENTS_API))),(0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.no)({payload:{action:"FetchPayments",status:L.wn.COMPLETED}})),{type:L.TC.SET_PAYMENTS_CLN,payload:te||[]})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchPayments",L.MZ.NO_SPINNER,"Fetching Payments Failed.",te),(0,v.of)({type:L.aU.VOID}))))),this.fetchOfferInvoiceCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_OFFER_INVOICE_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.FETCH_INVOICE})),this.store.dispatch((0,B.no)({payload:{action:"FetchOfferInvoice",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.OFFERS_API+"/fetchOfferInvoice",te.payload).pipe((0,w.T)(ie=>{this.logger.info(ie),setTimeout(()=>{this.store.dispatch((0,B.no)({payload:{action:"FetchOfferInvoice",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.FETCH_INVOICE})),this.store.dispatch((0,B.GZ)({payload:ie||{}}))},500)}),(0,T.W)(ie=>(this.handleErrorWithoutAlert("FetchOfferInvoice",L.MZ.FETCH_INVOICE,"Offer Invoice Fetch Failed",ie),(0,v.of)({type:L.aU.VOID}))))))),{dispatch:!1}),this.setOfferInvoiceCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SET_OFFER_INVOICE_CLN),(0,w.T)(te=>(this.logger.info(te.payload),te.payload))),{dispatch:!1}),this.sendPaymentCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SEND_PAYMENT_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:te.payload.uiMessage})),this.store.dispatch((0,B.no)({payload:{action:"SendPayment",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.PAYMENTS_API,te.payload).pipe((0,w.T)(ie=>{this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"SendPayment",status:L.wn.COMPLETED}}));let P="Payment Sent Successfully!";ie.saveToDBError&&(P="Payment Sent Successfully but Offer Saving to Database Failed."),ie.saveToDBResponse&&"NA"!==ie.saveToDBResponse&&(this.store.dispatch((0,B.Db)({payload:ie.saveToDBResponse})),P="Payment Sent Successfully and Offer Saved to Database."),setTimeout(()=>{this.store.dispatch((0,B.$Q)()),this.store.dispatch((0,B.g6)()),this.store.dispatch((0,B.CK)()),this.store.dispatch((0,C.y0)({payload:te.payload.uiMessage})),this.store.dispatch((0,C.UI)({payload:P})),this.store.dispatch((0,B.N4)({payload:ie.paymentResponse}))},1e3)}),(0,T.W)(ie=>(this.logger.error("Error: "+JSON.stringify(ie)),te.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",te.payload.uiMessage,"Send Payment Failed.",ie):this.handleErrorWithAlert("SendPayment",te.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+L.rl.PAYMENTS_API,ie),(0,v.of)({type:L.aU.VOID}))))))),{dispatch:!1}),this.queryRoutesFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.GET_QUERY_ROUTES_CLN),(0,e.Z)(te=>(this.store.dispatch((0,B.no)({payload:{action:"GetQueryRoutes",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.NETWORK_API+"/getRoute",{id:te.payload.destPubkey,amount_msat:te.payload.amount,riskfactor:0}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"GetQueryRoutes",status:L.wn.COMPLETED}})),{type:L.TC.SET_QUERY_ROUTES_CLN,payload:ie})),(0,T.W)(ie=>(this.store.dispatch((0,B.Hm)({payload:{route:[]}})),this.handleErrorWithAlert("GetQueryRoutes",L.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+L.rl.NETWORK_API+"/getRoute",ie),(0,v.of)({type:L.aU.VOID})))))))),this.setQueryRoutesCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SET_QUERY_ROUTES_CLN),(0,w.T)(te=>te.payload)),{dispatch:!1}),this.peerLookupCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.PEER_LOOKUP_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.SEARCHING_NODE})),this.store.dispatch((0,B.no)({payload:{action:"Lookup",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.NETWORK_API+"/listNodes",{id:te.payload}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"Lookup",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.SEARCHING_NODE})),{type:L.TC.SET_LOOKUP_CLN,payload:ie})),(0,T.W)(ie=>(this.handleErrorWithAlert("Lookup",L.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+L.rl.NETWORK_API+"/listNodes/"+te.payload,ie),(0,v.of)({type:L.aU.VOID})))))))),this.channelLookupCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.CHANNEL_LOOKUP_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:te.payload.uiMessage})),this.store.dispatch((0,B.no)({payload:{action:"Lookup",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.NETWORK_API+"/listChannels",{short_channel_id:te.payload.shortChannelID}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"Lookup",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:te.payload.uiMessage})),{type:L.TC.SET_LOOKUP_CLN,payload:ie})),(0,T.W)(ie=>(te.payload.showError?this.handleErrorWithAlert("Lookup",te.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+L.rl.NETWORK_API+"/listChannels/"+te.payload.shortChannelID,ie):this.store.dispatch((0,C.y0)({payload:te.payload.uiMessage})),this.store.dispatch((0,B.$J)({payload:[]})),(0,v.of)({type:L.aU.VOID})))))))),this.invoiceLookupCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.INVOICE_LOOKUP_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,B.no)({payload:{action:"Lookup",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.INVOICES_API+"/lookup",{label:te.payload}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"Lookup",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.SEARCHING_INVOICE})),ie.invoices&&ie.invoices.length&&ie.invoices.length>0&&this.store.dispatch((0,B.Dq)({payload:ie.invoices[0]})),{type:L.TC.SET_LOOKUP_CLN,payload:ie.invoices&&ie.invoices.length&&ie.invoices.length>0?ie.invoices[0]:ie})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("Lookup",L.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",ie),this.store.dispatch((0,C.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,v.of)({type:L.aU.VOID})))))))),this.setLookupCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SET_LOOKUP_CLN),(0,w.T)(te=>(this.logger.info(te.payload),te.payload))),{dispatch:!1}),this.fetchForwardingHistoryCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.GET_FORWARDING_HISTORY_CLN),(0,e.Z)(te=>{const ie=te.payload.status.charAt(0).toUpperCase();return this.store.dispatch((0,B.no)({payload:{action:"FetchForwardingHistory"+ie,status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.CHANNELS_API+"/listForwards",te.payload).pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,B.no)({payload:{action:"FetchForwardingHistory"+ie,status:L.wn.COMPLETED}})),te.payload.status===L.xk.FAILED?this.store.dispatch((0,B.kv)({payload:{status:L.xk.FAILED,totalForwards:P.length,listForwards:P}})):te.payload.status===L.xk.LOCAL_FAILED?this.store.dispatch((0,B.kv)({payload:{status:L.xk.LOCAL_FAILED,totalForwards:P.length,listForwards:P}})):te.payload.status===L.xk.SETTLED&&this.store.dispatch((0,B.kv)({payload:{status:L.xk.SETTLED,totalForwards:P.length,listForwards:P}})),{type:L.aU.VOID})),(0,T.W)(P=>(this.handleErrorWithAlert("FetchForwardingHistory"+ie,L.MZ.NO_SPINNER,"Get "+te.payload.status+" Forwarding History Failed",this.CHILD_API_URL+L.rl.CHANNELS_API+"/listForwards",P),(0,v.of)({type:L.aU.VOID}))))}))),this.deleteExpiredInvoiceCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.DELETE_EXPIRED_INVOICE_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.DELETE_INVOICE})),this.httpClient.post(this.CHILD_API_URL+L.rl.INVOICES_API+"/delete",{subsystem:"expiredinvoices",age:L.NG}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,C.y0)({payload:L.MZ.DELETE_INVOICE})),this.store.dispatch((0,C.UI)({payload:ie.status})),{type:L.TC.FETCH_INVOICES_CLN})),(0,T.W)(ie=>(this.handleErrorWithAlert("DeleteInvoices",L.MZ.DELETE_INVOICE,"Delete Invoice Failed",this.CHILD_API_URL+L.rl.INVOICES_API,ie),(0,v.of)({type:L.aU.VOID})))))))),this.saveNewInvoiceCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SAVE_NEW_INVOICE_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.ADD_INVOICE})),this.store.dispatch((0,B.no)({payload:{action:"SaveNewInvoice",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.INVOICES_API,te.payload).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"SaveNewInvoice",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.ADD_INVOICE})),ie.amount_msat=te.payload.amount_msat,ie.label=te.payload.label,ie.expires_at=Math.round((new Date).getTime()/1e3+te.payload.expiry),ie.description=te.payload.description,ie.status="unpaid",setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{invoice:ie,newlyAdded:!0,component:u.y}}}))},200),{type:L.TC.ADD_INVOICE_CLN,payload:ie})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("SaveNewInvoice",L.MZ.ADD_INVOICE,"Add Invoice Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.saveNewOfferCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SAVE_NEW_OFFER_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.CREATE_OFFER})),this.store.dispatch((0,B.no)({payload:{action:"SaveNewOffer",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.OFFERS_API,te.payload).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"SaveNewOffer",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.CREATE_OFFER})),setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{offer:ie,newlyAdded:!0,component:Pe.f}}}))},100),{type:L.TC.ADD_OFFER_CLN,payload:ie})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("SaveNewOffer",L.MZ.CREATE_OFFER,"Create Offer Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.invoicesFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_INVOICES_CLN),(0,e.Z)(()=>(this.store.dispatch((0,B.no)({payload:{action:"FetchInvoices",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.INVOICES_API+"/lookup",null))),(0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.no)({payload:{action:"FetchInvoices",status:L.wn.COMPLETED}})),{type:L.TC.SET_INVOICES_CLN,payload:te})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchInvoices",L.MZ.NO_SPINNER,"Fetching Invoices Failed.",te),(0,v.of)({type:L.aU.VOID}))))),this.offersFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_OFFERS_CLN),(0,e.Z)(te=>(this.store.dispatch((0,B.no)({payload:{action:"FetchOffers",status:L.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+L.rl.OFFERS_API).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"FetchOffers",status:L.wn.COMPLETED}})),{type:L.TC.SET_OFFERS_CLN,payload:ie.offers?ie.offers:[]})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("FetchOffers",L.MZ.NO_SPINNER,"Fetching Offers Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.offersDisableCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.DISABLE_OFFER_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.DISABLE_OFFER})),this.store.dispatch((0,B.no)({payload:{action:"DisableOffer",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.OFFERS_API+"/disableOffer",{offer_id:te.payload.offer_id}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"DisableOffer",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.DISABLE_OFFER})),this.store.dispatch((0,C.UI)({payload:"Offer Disabled Successfully!"})),{type:L.TC.UPDATE_OFFER_CLN,payload:{offer:ie}})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("DisableOffer",L.MZ.DISABLE_OFFER,"Disabling Offer Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.offerBookmarksFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_OFFER_BOOKMARKS_CLN),(0,e.Z)(te=>(this.store.dispatch((0,B.no)({payload:{action:"FetchOfferBookmarks",status:L.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+L.rl.OFFERS_API+"/offerbookmarks").pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"FetchOfferBookmarks",status:L.wn.COMPLETED}})),{type:L.TC.SET_OFFER_BOOKMARKS_CLN,payload:ie||[]})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("FetchOfferBookmarks",L.MZ.NO_SPINNER,"Fetching Offer Bookmarks Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.peidOffersDeleteCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.DELETE_OFFER_BOOKMARK_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,B.no)({payload:{action:"DeleteOfferBookmark",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.OFFERS_API+"/offerbookmark/delete",{offer_str:te.payload.bolt12}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"DeleteOfferBookmark",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.DELETE_OFFER_BOOKMARK})),this.store.dispatch((0,C.UI)({payload:"Offer Bookmark Deleted Successfully!"})),{type:L.TC.REMOVE_OFFER_BOOKMARK_CLN,payload:{bolt12:te.payload.bolt12}})),(0,T.W)(ie=>(this.handleErrorWithAlert("DeleteOfferBookmark",L.MZ.DELETE_OFFER_BOOKMARK,"Deleting Offer Bookmark Failed.",this.CHILD_API_URL+L.rl.OFFERS_API+"/offerbookmark/"+te.payload.bolt12,ie),(0,v.of)({type:L.aU.VOID})))))))),this.SetChannelTransactionCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SET_CHANNEL_TRANSACTION_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.SEND_FUNDS})),this.store.dispatch((0,B.no)({payload:{action:"SetChannelTransaction",status:L.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+L.rl.ON_CHAIN_API,te.payload).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"SetChannelTransaction",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.SEND_FUNDS})),this.store.dispatch((0,B.g6)()),{type:L.TC.SET_CHANNEL_TRANSACTION_RES_CLN,payload:ie})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("SetChannelTransaction",L.MZ.SEND_FUNDS,"Sending Fund Failed.",ie),(0,v.of)({type:L.aU.VOID})))))))),this.utxoBalancesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_UTXO_BALANCES_CLN),(0,e.Z)(()=>(this.store.dispatch((0,B.no)({payload:{action:"FetchUTXOBalances",status:L.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+L.rl.ON_CHAIN_API+"/utxos"))),(0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.no)({payload:{action:"FetchUTXOBalances",status:L.wn.COMPLETED}})),{type:L.TC.SET_UTXO_BALANCES_CLN,payload:te})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchUTXOBalances",L.MZ.NO_SPINNER,"Fetching UTXO and Balances Failed.",te),(0,v.of)({type:L.aU.VOID}))))),this.pageSettingsFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.FETCH_PAGE_SETTINGS_CLN),(0,e.Z)(()=>(this.store.dispatch((0,B.no)({payload:{action:"FetchPageSettings",status:L.wn.INITIATED}})),this.httpClient.get(L.rl.PAGE_SETTINGS_API).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.no)({payload:{action:"FetchPageSettings",status:L.wn.COMPLETED}})),{type:L.TC.SET_PAGE_SETTINGS_CLN,payload:te||[]})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchPageSettings",L.MZ.NO_SPINNER,"Fetching Page Settings Failed.",te),(0,v.of)({type:L.aU.VOID})))))))),this.savePageSettingsCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(L.TC.SAVE_PAGE_SETTINGS_CLN),(0,e.Z)(te=>(this.store.dispatch((0,C.mt)({payload:L.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,B.no)({payload:{action:"SavePageSettings",status:L.wn.INITIATED}})),this.httpClient.post(L.rl.PAGE_SETTINGS_API,te.payload).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.no)({payload:{action:"SavePageSettings",status:L.wn.COMPLETED}})),this.store.dispatch((0,C.y0)({payload:L.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,C.UI)({payload:"Page Layout Updated Successfully!"})),{type:L.TC.SET_PAGE_SETTINGS_CLN,payload:ie||[]})),(0,T.W)(ie=>(this.handleErrorWithAlert("SavePageSettings",L.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",L.rl.PAGE_SETTINGS_API,ie),(0,v.of)({type:L.aU.VOID})))))))),this.store.select(A.ru).pipe((0,O.Q)(this.unSubs[0])).subscribe(te=>{te.FetchInfo.status!==L.wn.COMPLETED&&te.FetchInfo.status!==L.wn.ERROR||te.FetchChannels.status!==L.wn.COMPLETED&&te.FetchChannels.status!==L.wn.ERROR||te.FetchUTXOBalances.status!==L.wn.COMPLETED&&te.FetchUTXOBalances.status!==L.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,C.y0)({payload:L.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.clWSMessages.pipe((0,O.Q)(this.unSubs[1])).subscribe(te=>{this.logger.info("Received new message from the service: "+JSON.stringify(te)),te&&te.data&&te.data[L.Jr.INVOICE_PAYMENT]&&te.data[L.Jr.INVOICE_PAYMENT].label&&this.store.dispatch((0,B.Dq)({payload:te.data[L.Jr.INVOICE_PAYMENT]}))})}initializeRemainingData(J,De){this.sessionService.setItem("clnUnlocked","true");const Re={identity_pubkey:J.id,alias:J.alias,testnet:"testnet"===J.network.toLowerCase(),chains:J.chains,uris:J.uris,version:J.version,api_version:J.api_version,numberOfPendingChannels:J.num_pending_channels};this.store.dispatch((0,C.mt)({payload:L.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,C.Fl)({payload:Re}));let Xe=this.location.path();Xe.includes("/lnd/")?Xe=Xe?.replace("/lnd/","/cln/"):Xe.includes("/ecl/")&&(Xe=Xe?.replace("/ecl/","/cln/")),(Xe.includes("/login")||Xe.includes("/error")||""===Xe||"HOME"===De||Xe.includes("?access-key="))&&(Xe="/cln/home"),this.router.navigate([Xe]),this.store.dispatch((0,B.Do)()),this.store.dispatch((0,B.$Q)()),this.store.dispatch((0,B.g6)()),this.store.dispatch((0,B.kX)({payload:"perkw"})),this.store.dispatch((0,B.kX)({payload:"perkb"})),this.store.dispatch((0,B.Gy)()),this.store.dispatch((0,B.CK)())}handleErrorWithoutAlert(J,De,Re,Xe){if(this.logger.error("ERROR IN: "+J+"\n"+JSON.stringify(Xe)),401===Xe.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,C.Jh)()),this.store.dispatch((0,C.ri)({payload:"Authentication Failed: "+JSON.stringify(Xe.error)}));else{this.store.dispatch((0,C.y0)({payload:De}));const _e=this.commonService.extractErrorMessage(Xe,Re);this.store.dispatch((0,B.no)({payload:{action:J,status:L.wn.ERROR,statusCode:Xe.status.toString(),message:_e}}))}}handleErrorWithAlert(J,De,Re,Xe,_e){if(this.logger.error(_e),401===_e.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,C.Jh)()),this.store.dispatch((0,C.ri)({payload:"Authentication Failed: "+JSON.stringify(_e.error)})),this.store.dispatch((0,C.UI)({payload:"Authentication Failed: "+_e.error}));else{this.store.dispatch((0,C.y0)({payload:De}));const he=this.commonService.extractErrorMessage(_e);this.store.dispatch((0,C.xO)({payload:{data:{type:"ERROR",alertTitle:Re,message:{code:_e.status,message:he,URL:Xe},component:f.f}}})),this.store.dispatch((0,B.no)({payload:{action:J,status:L.wn.ERROR,statusCode:_e.status.toString(),message:he,URL:Xe}}))}}ngOnDestroy(){this.unSubs.forEach(J=>{J.next(null),J.complete()})}static#e=ce=()=>(this.\u0275fac=function(De){return new(De||be)(le.KVO(i.En),le.KVO(Ce.Qq),le.KVO(Ae.il),le.KVO(j.Q),le.KVO(W.h),le.KVO(G.gP),le.KVO(re.Ix),le.KVO(xe.I),le.KVO(Ee.aZ))},this.\u0275prov=le.jDH({token:be,factory:be.\u0275fac}))}return ce(),be})()},9584(Zt,pe,l){"use strict";l.d(pe,{Al:()=>A,BM:()=>Pe,Dv:()=>Ce,GX:()=>j,Ie:()=>le,KT:()=>f,O5:()=>re,Pj:()=>B,RB:()=>C,RQ:()=>G,aJ:()=>Ae,av:()=>T,ip:()=>xe,kQ:()=>W,kr:()=>L,mH:()=>w,os:()=>u,ru:()=>O});var d=l(9640);const v=(0,d.UX)("cln"),T=(0,d.Mz)(v,V=>({pageSettings:V.pageSettings,apiCallStatus:V.apisCallStatus.FetchPageSettings})),w=(0,d.Mz)(v,V=>V.information),O=((0,d.Mz)(v,V=>V.apisCallStatus.FetchInfo),(0,d.Mz)(v,V=>V.apisCallStatus)),f=(0,d.Mz)(v,V=>({payments:V.payments,apiCallStatus:V.apisCallStatus.FetchPayments})),u=(0,d.Mz)(v,V=>({peers:V.peers,apiCallStatus:V.apisCallStatus.FetchPeers})),L=(0,d.Mz)(v,V=>({feeRatesPerKB:V.feeRatesPerKB,apiCallStatus:V.apisCallStatus.FetchFeeRatesperkb})),C=(0,d.Mz)(v,V=>({feeRatesPerKW:V.feeRatesPerKW,apiCallStatus:V.apisCallStatus.FetchFeeRatesperkw})),B=(0,d.Mz)(v,V=>({listInvoices:V.invoices,apiCallStatus:V.apisCallStatus.FetchInvoices})),A=(0,d.Mz)(v,V=>({utxos:V.utxos,balance:V.balance,localRemoteBalance:V.localRemoteBalance,apiCallStatus:V.apisCallStatus.FetchUTXOBalances})),Pe=(0,d.Mz)(v,V=>({activeChannels:V.activeChannels,pendingChannels:V.pendingChannels,inactiveChannels:V.inactiveChannels,apiCallStatus:V.apisCallStatus.FetchChannels})),le=(0,d.Mz)(v,V=>({forwardingHistory:V.forwardingHistory,apiCallStatus:V.apisCallStatus.FetchForwardingHistoryS})),Ce=(0,d.Mz)(v,V=>({failedForwardingHistory:V.failedForwardingHistory,apiCallStatus:V.apisCallStatus.FetchForwardingHistoryF})),Ae=(0,d.Mz)(v,V=>({localFailedForwardingHistory:V.localFailedForwardingHistory,apiCallStatus:V.apisCallStatus.FetchForwardingHistoryL})),j=(0,d.Mz)(v,V=>({information:V.information,balance:V.balance,numPeers:V.peers.length})),W=(0,d.Mz)(v,V=>({information:V.information,balance:V.balance})),G=(0,d.Mz)(v,V=>({information:V.information,fees:V.fees,apisCallStatus:[V.apisCallStatus.FetchInfo,V.apisCallStatus.FetchForwardingHistoryS]})),re=(0,d.Mz)(v,V=>({offers:V.offers,apiCallStatus:V.apisCallStatus.FetchOffers})),xe=(0,d.Mz)(v,V=>({offersBookmarks:V.offersBookmarks,apiCallStatus:V.apisCallStatus.FetchOfferBookmarks}))},8321(Zt,pe,l){"use strict";l.d(pe,{y:()=>fe});var i=l(1585),d=l(5383),v=l(1413),T=l(6977),w=l(4416),e=l(9584),O=l(2615),f=l(3664),u=l(8570),L=l(2571),C=l(5416),B=l(9640),A=l(2200),Pe=l(60),le=l(8834),Ce=l(5596),Ae=l(1997),j=l(9183),W=l(2920),G=l(6038),re=l(455),xe=l(8288),Ee=l(9157),V=l(9587);const ce=Qe=>({"display-none":Qe}),be=Qe=>({"xs-scroll-y":Qe}),ne=(Qe,gt)=>({"mt-2":Qe,"mt-1":gt}),J=Qe=>({"mr-0":Qe}),De=()=>[];function Re(Qe,gt){if(1&Qe&&f.nrm(0,"qr-code",33),2&Qe){const Gt=f.XpG();f.Y8G("value",(null==Gt.invoice?null:Gt.invoice.bolt11)||(null==Gt.invoice?null:Gt.invoice.bolt12))("size",Gt.qrWidth)}}function Xe(Qe,gt){1&Qe&&(f.j41(0,"span",34),f.EFF(1,"N/A"),f.k0s())}function _e(Qe,gt){if(1&Qe&&f.nrm(0,"span",35),2&Qe){const Gt=f.XpG();f.Y8G("ngClass",f.eq3(1,J,Gt.screenSize===Gt.screenSizeEnum.XS))}}function he(Qe,gt){if(1&Qe&&f.nrm(0,"span",36),2&Qe){const Gt=f.XpG();f.Y8G("ngClass",f.eq3(1,J,Gt.screenSize===Gt.screenSizeEnum.XS))}}function Dt(Qe,gt){if(1&Qe&&f.nrm(0,"span",37),2&Qe){const Gt=f.XpG();f.Y8G("ngClass",f.eq3(1,J,Gt.screenSize===Gt.screenSizeEnum.XS))}}function lt(Qe,gt){if(1&Qe&&f.nrm(0,"qr-code",33),2&Qe){const Gt=f.XpG();f.Y8G("value",(null==Gt.invoice?null:Gt.invoice.bolt11)||(null==Gt.invoice?null:Gt.invoice.bolt12))("size",Gt.qrWidth)}}function Le(Qe,gt){1&Qe&&(f.j41(0,"span",38),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function te(Qe,gt){1&Qe&&f.nrm(0,"mat-divider",39)}function ie(Qe,gt){if(1&Qe&&(f.j41(0,"div",20)(1,"div",40),f.nrm(2,"fa-icon",41),f.j41(3,"span"),f.EFF(4),f.k0s()()()),2&Qe){const Gt=f.XpG();f.R7$(2),f.Y8G("icon",Gt.faExclamationTriangle),f.R7$(2),f.JRh(null==Gt.invoice?null:Gt.invoice.warning_capacity)}}function P(Qe,gt){1&Qe&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function F(Qe,gt){1&Qe&&f.nrm(0,"span",47)}function ve(Qe,gt){if(1&Qe&&(f.j41(0,"div",43)(1,"div",44)(2,"span",45),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,F,1,0,"span",46),f.k0s()()),2&Qe){const Gt=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,(null==Gt.invoice?null:Gt.invoice.amount_received_msat)/1e3)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,De).constructor(35))}}function H(Qe,gt){if(1&Qe&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&Qe){const Gt=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,(null==Gt.invoice?null:Gt.invoice.amount_received_msat)/1e3)," Sats")}}function $(Qe,gt){if(1&Qe&&(f.qex(0),f.DNE(1,ve,6,5,"div",42)(2,H,3,3,"div",24),f.bVm()),2&Qe){const Gt=f.XpG();f.R7$(),f.Y8G("ngIf",Gt.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!Gt.flgInvoicePaid)}}function Ke(Qe,gt){1&Qe&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function Vt(Qe,gt){1&Qe&&f.nrm(0,"mat-spinner",49),2&Qe&&f.Y8G("diameter",20)}function St(Qe,gt){if(1&Qe&&(f.qex(0),f.DNE(1,Ke,2,0,"span",24)(2,Vt,1,1,"mat-spinner",48),f.bVm()),2&Qe){const Gt=f.XpG();f.R7$(),f.Y8G("ngIf","unpaid"!==(null==Gt.invoice?null:Gt.invoice.status)),f.R7$(),f.Y8G("ngIf","unpaid"===(null==Gt.invoice?null:Gt.invoice.status))}}function ot(Qe,gt){if(1&Qe&&(f.j41(0,"div"),f.nrm(1,"mat-divider",26),f.j41(2,"div",20)(3,"div",27)(4,"h4",22),f.EFF(5,"Payment Hash"),f.k0s(),f.j41(6,"span",25),f.EFF(7),f.k0s()()(),f.nrm(8,"mat-divider",26),f.j41(9,"div",20)(10,"div",27)(11,"h4",22),f.EFF(12,"Label"),f.k0s(),f.j41(13,"span",25),f.EFF(14),f.k0s()()(),f.nrm(15,"mat-divider",26),f.k0s()),2&Qe){const Gt=f.XpG();f.R7$(7),f.JRh(null==Gt.invoice?null:Gt.invoice.payment_hash),f.R7$(7),f.JRh(null==Gt.invoice?null:Gt.invoice.label)}}function nt(Qe,gt){1&Qe&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function ht(Qe,gt){1&Qe&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function oe(Qe,gt){if(1&Qe){const Gt=f.RV6();f.j41(0,"button",50),f.bIt("copied",function(cn){O.eBV(Gt);const Ft=f.XpG();return O.Njj(Ft.onCopyPayment(cn))}),f.EFF(1,"Copy Invoice"),f.k0s()}if(2&Qe){const Gt=f.XpG();f.Y8G("payload",(null==Gt.invoice?null:Gt.invoice.bolt11)||(null==Gt.invoice?null:Gt.invoice.bolt12))}}function Ye(Qe,gt){if(1&Qe){const Gt=f.RV6();f.j41(0,"button",51),f.bIt("click",function(){O.eBV(Gt);const cn=f.XpG();return O.Njj(cn.onClose())}),f.EFF(1,"OK"),f.k0s()}}let fe=(()=>{var Qe;class gt{constructor(rt,cn,Ft,Sn,Qn,h){this.dialogRef=rt,this.data=cn,this.logger=Ft,this.commonService=Sn,this.snackBar=Qn,this.store=h,this.faReceipt=d.Mf0,this.faExclamationTriangle=d.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.invoiceStatus="",this.qrWidth=240,this.screenSize="",this.screenSizeEnum=w.f7,this.flgInvoicePaid=!1,this.unSubs=[new v.B,new v.B,new v.B,new v.B,new v.B]}ngOnInit(){this.invoice=this.data.invoice,this.invoiceStatus=this.invoice.status,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===w.f7.XS&&(this.qrWidth=220),this.store.select(e.Pj).pipe((0,T.Q)(this.unSubs[1])).subscribe(rt=>{const Ft=(rt.listInvoices.invoices||[])?.find(Sn=>Sn.payment_hash===this.invoice.payment_hash)||null;Ft&&(this.invoice=Ft),this.invoiceStatus!==this.invoice.status&&"paid"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(this.invoice),this.logger.info(this.invoiceStatus),this.logger.info(Ft),this.logger.info(rt)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(rt){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+rt)}ngOnDestroy(){this.unSubs.forEach(rt=>{rt.next(null),rt.complete()})}static#e=Qe=()=>(this.\u0275fac=function(cn){return new(cn||gt)(f.rXU(i.CP),f.rXU(i.Vh),f.rXU(u.gP),f.rXU(L.h),f.rXU(C.UG),f.rXU(B.il))},this.\u0275cmp=f.VBU({type:gt,selectors:[["rtl-cln-invoice-information"]],standalone:!1,decls:72,vars:49,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["class","dot green ml-1","matTooltip","Paid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow ml-1","matTooltip","Unpaid","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red ml-1","matTooltip","Expired","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"overflow-wrap","foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],["matTooltip","Paid","matTooltipPosition","right",1,"dot","green","ml-1",3,"ngClass"],["matTooltip","Unpaid","matTooltipPosition","right",1,"dot","yellow","ml-1",3,"ngClass"],["matTooltip","Expired","matTooltipPosition","right",1,"dot","red","ml-1",3,"ngClass"],[1,"font-size-120"],[1,"my-1"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(cn,Ft){if(1&cn){const Sn=f.RV6();f.j41(0,"div",1)(1,"div",2),f.DNE(2,Re,1,2,"qr-code",3)(3,Xe,2,0,"span",4),f.k0s(),f.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),f.nrm(7,"fa-icon",8),f.j41(8,"span",9),f.EFF(9),f.DNE(10,_e,1,3,"span",10)(11,he,1,3,"span",11)(12,Dt,1,3,"span",12),f.k0s()(),f.j41(13,"button",13),f.bIt("click",function(){return O.eBV(Sn),O.Njj(Ft.onClose())}),f.EFF(14,"X"),f.k0s()(),f.j41(15,"mat-card-content",14)(16,"div",15)(17,"div",16),f.DNE(18,lt,1,2,"qr-code",3)(19,Le,2,0,"span",17),f.k0s(),f.DNE(20,te,1,0,"mat-divider",18)(21,ie,5,2,"div",19),f.j41(22,"div",20)(23,"div",21)(24,"h4",22),f.EFF(25),f.k0s(),f.j41(26,"span",23),f.EFF(27),f.nI1(28,"number"),f.DNE(29,P,2,0,"ng-container",24),f.k0s()(),f.j41(30,"div",21)(31,"h4",22),f.EFF(32,"Amount Received"),f.k0s(),f.j41(33,"span",25),f.DNE(34,$,3,2,"ng-container",24)(35,St,3,2,"ng-container",24),f.k0s()()(),f.nrm(36,"mat-divider",26),f.j41(37,"div",20)(38,"div",21)(39,"h4",22),f.EFF(40,"Date Expiry"),f.k0s(),f.j41(41,"span",23),f.EFF(42),f.nI1(43,"date"),f.k0s()(),f.j41(44,"div",21)(45,"h4",22),f.EFF(46,"Date Settled"),f.k0s(),f.j41(47,"span",23),f.EFF(48),f.nI1(49,"date"),f.k0s()()(),f.nrm(50,"mat-divider",26),f.j41(51,"div",20)(52,"div",27)(53,"h4",22),f.EFF(54,"Description"),f.k0s(),f.j41(55,"span",23),f.EFF(56),f.k0s()()(),f.nrm(57,"mat-divider",26),f.j41(58,"div",20)(59,"div",27)(60,"h4",22),f.EFF(61),f.k0s(),f.j41(62,"span",25),f.EFF(63),f.k0s()()(),f.DNE(64,ot,16,2,"div",24),f.j41(65,"div",28)(66,"button",29),f.bIt("click",function(){return O.eBV(Sn),O.Njj(Ft.onShowAdvanced())}),f.DNE(67,nt,2,0,"p",30)(68,ht,2,0,"ng-template",null,0,f.C5r),f.k0s(),f.DNE(70,oe,2,1,"button",31)(71,Ye,2,0,"button",32),f.k0s()()()()()}if(2&cn){const Sn=f.sdS(69);f.R7$(),f.Y8G("fxLayoutAlign",null!=Ft.invoice&&Ft.invoice.bolt11&&""!==(null==Ft.invoice?null:Ft.invoice.bolt11)||null!=Ft.invoice&&Ft.invoice.bolt12&&""!==(null==Ft.invoice?null:Ft.invoice.bolt12)?"center start":"center center")("ngClass",f.eq3(40,ce,Ft.screenSize===Ft.screenSizeEnum.XS||Ft.screenSize===Ft.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Ft.invoice?null:Ft.invoice.bolt11)&&""!==(null==Ft.invoice?null:Ft.invoice.bolt11)||(null==Ft.invoice?null:Ft.invoice.bolt12)&&""!==(null==Ft.invoice?null:Ft.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=Ft.invoice&&Ft.invoice.bolt11||null!=Ft.invoice&&Ft.invoice.bolt12)),f.R7$(4),f.Y8G("icon",Ft.faReceipt),f.R7$(2),f.SpI(" ",Ft.screenSize===Ft.screenSizeEnum.XS?Ft.newlyAdded?"Created":"Invoice":Ft.newlyAdded?"Invoice Created":"Invoice Information"," "),f.R7$(),f.Y8G("ngIf","paid"===(null==Ft.invoice?null:Ft.invoice.status)),f.R7$(),f.Y8G("ngIf","unpaid"===(null==Ft.invoice?null:Ft.invoice.status)),f.R7$(),f.Y8G("ngIf","expired"===(null==Ft.invoice?null:Ft.invoice.status)),f.R7$(3),f.Y8G("ngClass",f.eq3(42,be,Ft.screenSize===Ft.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=Ft.invoice&&Ft.invoice.bolt11&&""!==(null==Ft.invoice?null:Ft.invoice.bolt11)||null!=Ft.invoice&&Ft.invoice.bolt12&&""!==(null==Ft.invoice?null:Ft.invoice.bolt12)?"center start":"center center")("ngClass",f.eq3(44,ce,Ft.screenSize!==Ft.screenSizeEnum.XS&&Ft.screenSize!==Ft.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Ft.invoice?null:Ft.invoice.bolt11)&&""!==(null==Ft.invoice?null:Ft.invoice.bolt11)||(null==Ft.invoice?null:Ft.invoice.bolt12)&&""!==(null==Ft.invoice?null:Ft.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=Ft.invoice&&Ft.invoice.bolt11||null!=Ft.invoice&&Ft.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",Ft.screenSize===Ft.screenSizeEnum.XS||Ft.screenSize===Ft.screenSizeEnum.SM),f.R7$(),f.Y8G("ngIf",null==Ft.invoice?null:Ft.invoice.warning_capacity),f.R7$(4),f.JRh(Ft.screenSize===Ft.screenSizeEnum.XS?"Amount":"Amount Requested"),f.R7$(2),f.SpI(" ",f.bMT(28,32,(null==Ft.invoice?null:Ft.invoice.amount_msat)/1e3||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=Ft.invoice&&Ft.invoice.amount_msat)||"0"===(null==Ft.invoice?null:Ft.invoice.amount_msat)||"any"===(null==Ft.invoice?null:Ft.invoice.amount_msat)),f.R7$(5),f.Y8G("ngIf","paid"===(null==Ft.invoice?null:Ft.invoice.status)),f.R7$(),f.Y8G("ngIf","paid"!==(null==Ft.invoice?null:Ft.invoice.status)),f.R7$(7),f.JRh(f.i5U(43,34,1e3*(null==Ft.invoice?null:Ft.invoice.expires_at),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.i5U(49,37,1e3*(null==Ft.invoice?null:Ft.invoice.paid_at),"dd/MMM/y HH:mm")||"-"),f.R7$(8),f.JRh((null==Ft.invoice?null:Ft.invoice.description)||"-"),f.R7$(5),f.SpI("",null!=Ft.invoice&&Ft.invoice.bolt12?"Bolt12":null!=Ft.invoice&&Ft.invoice.bolt11&&!Ft.invoice.label.includes("keysend-")?"Bolt11":"Keysend"," Invoice"),f.R7$(2),f.JRh((null==Ft.invoice?null:Ft.invoice.bolt11)||(null==Ft.invoice?null:Ft.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",Ft.showAdvanced),f.R7$(),f.Y8G("ngClass",f.l_i(46,ne,!Ft.showAdvanced,Ft.showAdvanced)),f.R7$(2),f.Y8G("ngIf",!Ft.showAdvanced)("ngIfElse",Sn),f.R7$(3),f.Y8G("ngIf",(null==Ft.invoice?null:Ft.invoice.bolt11)&&""!==(null==Ft.invoice?null:Ft.invoice.bolt11)||(null==Ft.invoice?null:Ft.invoice.bolt12)&&""!==(null==Ft.invoice?null:Ft.invoice.bolt12)),f.R7$(),f.Y8G("ngIf",!(null!=Ft.invoice&&Ft.invoice.bolt11||null!=Ft.invoice&&Ft.invoice.bolt12))}},dependencies:[A.YU,A.Sq,A.bT,Pe.aY,le.$z,Ce.m2,Ce.MM,Ae.q,j.LG,W.DJ,W.sA,W.UI,G.PW,re.oV,xe.Um,Ee.U,V.N,A.QX,A.vh],encapsulation:2}))}return Qe(),gt})()},2142(Zt,pe,l){"use strict";l.d(pe,{f:()=>ve});var i=l(1585),d=l(5383),v=l(1413),T=l(6977),w=l(4416),e=l(2615),O=l(3664),f=l(8570),u=l(2571),L=l(5416),C=l(1534),B=l(2200),A=l(60),Pe=l(8834),le=l(5596),Ce=l(1997),Ae=l(2920),j=l(6038),W=l(8288),G=l(9157),re=l(9587);const xe=H=>({"display-none":H}),Ee=H=>({"xs-scroll-y":H}),V=(H,$)=>({"mt-2":H,"mt-1":$});function ce(H,$){if(1&H&&O.nrm(0,"qr-code",28),2&H){const Ke=O.XpG();O.Y8G("value",null==Ke.offer?null:Ke.offer.bolt12)("size",Ke.qrWidth)}}function be(H,$){1&H&&(O.j41(0,"span",29),O.EFF(1,"N/A"),O.k0s())}function ne(H,$){if(1&H&&O.nrm(0,"qr-code",28),2&H){const Ke=O.XpG();O.Y8G("value",null==Ke.offer?null:Ke.offer.bolt12)("size",Ke.qrWidth)}}function J(H,$){1&H&&(O.j41(0,"span",30),O.EFF(1,"QR Code Not Applicable"),O.k0s())}function De(H,$){1&H&&O.nrm(0,"mat-divider",31),2&H&&O.Y8G("inset",!0)}function Re(H,$){1&H&&O.nrm(0,"mat-divider",20)}function Xe(H,$){if(1&H&&(O.j41(0,"div",16)(1,"div",17)(2,"h4",18),O.EFF(3,"Used"),O.k0s(),O.j41(4,"span",19),O.EFF(5),O.k0s()(),O.j41(6,"div",17)(7,"h4",18),O.EFF(8,"Single Use"),O.k0s(),O.j41(9,"span",19),O.EFF(10),O.k0s()()()),2&H){const Ke=O.XpG(2);O.R7$(5),O.SpI(" ",null!=Ke.offer&&Ke.offer.used?null!=Ke.offer&&Ke.offer.used?"Yes":"No":"N/K"," "),O.R7$(5),O.SpI(" ",null!=Ke.offer&&Ke.offer.single_use?null!=Ke.offer&&Ke.offer.single_use?"Yes":"No":"N/K"," ")}}function _e(H,$){1&H&&O.nrm(0,"mat-divider",20)}function he(H,$){if(1&H&&(O.j41(0,"div",16)(1,"div",21)(2,"h4",18),O.EFF(3,"Issuer"),O.k0s(),O.j41(4,"span",34),O.EFF(5),O.k0s()()()),2&H){const Ke=O.XpG(2);O.R7$(5),O.JRh(null==Ke.offerDecoded?null:Ke.offerDecoded.offer_issuer)}}function Dt(H,$){1&H&&O.nrm(0,"mat-divider",20)}function lt(H,$){if(1&H&&(O.j41(0,"div",16)(1,"div",21)(2,"h4",18),O.EFF(3,"Label"),O.k0s(),O.j41(4,"span",19),O.EFF(5),O.k0s()()()),2&H){const Ke=O.XpG(2);O.R7$(5),O.JRh(Ke.offer.label)}}function Le(H,$){if(1&H&&(O.j41(0,"div"),O.DNE(1,Re,1,0,"mat-divider",32)(2,Xe,11,2,"div",33)(3,_e,1,0,"mat-divider",32)(4,he,6,1,"div",33)(5,Dt,1,0,"mat-divider",32)(6,lt,6,1,"div",33),O.nrm(7,"mat-divider",20),O.j41(8,"div",16)(9,"div",21)(10,"h4",18),O.EFF(11,"Offer ID"),O.k0s(),O.j41(12,"span",19),O.EFF(13),O.k0s()()(),O.nrm(14,"mat-divider",20),O.j41(15,"div",16)(16,"div",21)(17,"h4",18),O.EFF(18,"Offer Node ID"),O.k0s(),O.j41(19,"span",19),O.EFF(20),O.k0s()()(),O.nrm(21,"mat-divider",20),O.k0s()),2&H){const Ke=O.XpG();O.R7$(),O.Y8G("ngIf",(null==Ke.offer?null:Ke.offer.used)||(null==Ke.offer?null:Ke.offer.single_use)),O.R7$(),O.Y8G("ngIf",(null==Ke.offer?null:Ke.offer.used)||(null==Ke.offer?null:Ke.offer.single_use)),O.R7$(),O.Y8G("ngIf",null==Ke.offerDecoded?null:Ke.offerDecoded.issuer),O.R7$(),O.Y8G("ngIf",null==Ke.offerDecoded?null:Ke.offerDecoded.issuer),O.R7$(),O.Y8G("ngIf",Ke.offer.label),O.R7$(),O.Y8G("ngIf",Ke.offer.label),O.R7$(7),O.JRh(Ke.offerDecoded.offer_id),O.R7$(7),O.JRh(null==Ke.offerDecoded?null:Ke.offerDecoded.offer_node_id)}}function te(H,$){1&H&&(O.j41(0,"p"),O.EFF(1,"Show Advanced"),O.k0s())}function ie(H,$){1&H&&(O.j41(0,"p"),O.EFF(1,"Hide Advanced"),O.k0s())}function P(H,$){if(1&H){const Ke=O.RV6();O.j41(0,"button",35),O.bIt("copied",function(St){e.eBV(Ke);const ot=O.XpG();return e.Njj(ot.onCopyOffer(St))}),O.EFF(1,"Copy Offer"),O.k0s()}if(2&H){const Ke=O.XpG();O.Y8G("payload",null==Ke.offer?null:Ke.offer.bolt12)}}function F(H,$){if(1&H){const Ke=O.RV6();O.j41(0,"button",36),O.bIt("click",function(){e.eBV(Ke);const St=O.XpG();return e.Njj(St.onClose())}),O.EFF(1,"OK"),O.k0s()}}let ve=(()=>{var H;class ${constructor(Vt,St,ot,nt,ht,oe){this.dialogRef=Vt,this.data=St,this.logger=ot,this.commonService=nt,this.snackBar=ht,this.dataService=oe,this.faReceipt=d.Mf0,this.faExclamationTriangle=d.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.offerDecoded={},this.qrWidth=240,this.screenSize="",this.screenSizeEnum=w.f7,this.flgOfferPaid=!1,this.unSubs=[new v.B,new v.B,new v.B,new v.B,new v.B]}ngOnInit(){this.offer=this.data.offer,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===w.f7.XS&&(this.qrWidth=220),this.dataService.decodePayment(this.offer.bolt12,!0).pipe((0,T.Q)(this.unSubs[1])).subscribe(Vt=>{this.offerDecoded=Vt,this.offerDecoded.offer_id&&!this.offerDecoded.offer_amount_msat&&(this.offerDecoded.offer_amount_msat=0)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyOffer(Vt){this.snackBar.open("Offer copied."),this.logger.info("Copied Text: "+Vt)}ngOnDestroy(){this.unSubs.forEach(Vt=>{Vt.next(null),Vt.complete()})}static#e=H=()=>(this.\u0275fac=function(St){return new(St||$)(O.rXU(i.CP),O.rXU(i.Vh),O.rXU(f.gP),O.rXU(u.h),O.rXU(L.UG),O.rXU(C.u))},this.\u0275cmp=O.VBU({type:$,selectors:[["rtl-cln-offer-information"]],standalone:!1,decls:52,vars:33,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxFlex","100"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],[1,"overflow-wrap","foreground-secondary-text"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(St,ot){if(1&St){const nt=O.RV6();O.j41(0,"div",1)(1,"div",2),O.DNE(2,ce,1,2,"qr-code",3)(3,be,2,0,"span",4),O.k0s(),O.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),O.nrm(7,"fa-icon",8),O.j41(8,"span",9),O.EFF(9),O.k0s()(),O.j41(10,"button",10),O.bIt("click",function(){return e.eBV(nt),e.Njj(ot.onClose())}),O.EFF(11,"X"),O.k0s()(),O.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),O.DNE(15,ne,1,2,"qr-code",3)(16,J,2,0,"span",14),O.k0s(),O.DNE(17,De,1,1,"mat-divider",15),O.j41(18,"div",16)(19,"div",17)(20,"h4",18),O.EFF(21,"Amount Requested (Sats)"),O.k0s(),O.j41(22,"span",19),O.EFF(23),O.nI1(24,"number"),O.k0s()(),O.j41(25,"div",17)(26,"h4",18),O.EFF(27,"Valid"),O.k0s(),O.j41(28,"span",19),O.EFF(29),O.k0s()()(),O.nrm(30,"mat-divider",20),O.j41(31,"div",16)(32,"div",21)(33,"h4",18),O.EFF(34,"Description"),O.k0s(),O.j41(35,"span",19),O.EFF(36),O.k0s()()(),O.nrm(37,"mat-divider",20),O.j41(38,"div",16)(39,"div",21)(40,"h4",18),O.EFF(41,"Offer"),O.k0s(),O.j41(42,"span",19),O.EFF(43),O.k0s()()(),O.DNE(44,Le,22,8,"div",22),O.j41(45,"div",23)(46,"button",24),O.bIt("click",function(){return e.eBV(nt),e.Njj(ot.onShowAdvanced())}),O.DNE(47,te,2,0,"p",25)(48,ie,2,0,"ng-template",null,0,O.C5r),O.k0s(),O.DNE(50,P,2,1,"button",26)(51,F,2,0,"button",27),O.k0s()()()()()}if(2&St){const nt=O.sdS(49);O.R7$(),O.Y8G("fxLayoutAlign",null!=ot.offer&&ot.offer.bolt12&&""!==(null==ot.offer?null:ot.offer.bolt12)?"center start":"center center")("ngClass",O.eq3(24,xe,ot.screenSize===ot.screenSizeEnum.XS||ot.screenSize===ot.screenSizeEnum.SM)),O.R7$(),O.Y8G("ngIf",(null==ot.offer?null:ot.offer.bolt12)&&""!==(null==ot.offer?null:ot.offer.bolt12)),O.R7$(),O.Y8G("ngIf",!(null!=ot.offer&&ot.offer.bolt12)||""===(null==ot.offer?null:ot.offer.bolt12)),O.R7$(4),O.Y8G("icon",ot.faReceipt),O.R7$(2),O.JRh(ot.screenSize===ot.screenSizeEnum.XS?ot.newlyAdded?"Created":"Offer":ot.newlyAdded?"Offer Created":"Offer Information"),O.R7$(3),O.Y8G("ngClass",O.eq3(26,Ee,ot.screenSize===ot.screenSizeEnum.XS)),O.R7$(2),O.Y8G("fxLayoutAlign",null!=ot.offer&&ot.offer.bolt12&&""!==(null==ot.offer?null:ot.offer.bolt12)?"center start":"center center")("ngClass",O.eq3(28,xe,ot.screenSize!==ot.screenSizeEnum.XS&&ot.screenSize!==ot.screenSizeEnum.SM)),O.R7$(),O.Y8G("ngIf",(null==ot.offer?null:ot.offer.bolt12)&&""!==(null==ot.offer?null:ot.offer.bolt12)),O.R7$(),O.Y8G("ngIf",!(null!=ot.offer&&ot.offer.bolt12)||""===(null==ot.offer?null:ot.offer.bolt12)),O.R7$(),O.Y8G("ngIf",ot.screenSize===ot.screenSizeEnum.XS||ot.screenSize===ot.screenSizeEnum.SM),O.R7$(6),O.SpI(" ",null!=ot.offerDecoded&&ot.offerDecoded.offer_amount_msat&&0!==(null==ot.offerDecoded?null:ot.offerDecoded.offer_amount_msat)?O.bMT(24,22,(null==ot.offerDecoded?null:ot.offerDecoded.offer_amount_msat)/1e3):"Open Offer"," "),O.R7$(6),O.SpI(" ",null!=ot.offerDecoded&&ot.offerDecoded.valid?null!=ot.offerDecoded&&ot.offerDecoded.valid?"Yes":"No":"N/K"," "),O.R7$(7),O.SpI(" ",null==ot.offerDecoded?null:ot.offerDecoded.offer_description," "),O.R7$(7),O.JRh(null==ot.offer?null:ot.offer.bolt12),O.R7$(),O.Y8G("ngIf",ot.showAdvanced),O.R7$(),O.Y8G("ngClass",O.l_i(30,V,!ot.showAdvanced,ot.showAdvanced)),O.R7$(2),O.Y8G("ngIf",!ot.showAdvanced)("ngIfElse",nt),O.R7$(3),O.Y8G("ngIf",(null==ot.offer?null:ot.offer.bolt12)&&""!==(null==ot.offer?null:ot.offer.bolt12)),O.R7$(),O.Y8G("ngIf",!(null!=ot.offer&&ot.offer.bolt12)||""===(null==ot.offer?null:ot.offer.bolt12))}},dependencies:[B.YU,B.bT,A.aY,Pe.$z,le.m2,le.MM,Ce.q,Ae.DJ,Ae.sA,Ae.UI,j.PW,W.Um,G.U,re.N,B.QX],encapsulation:2}))}return H(),$})()},5428(Zt,pe,l){"use strict";l.d(pe,{$6:()=>Ke,$Q:()=>B,As:()=>F,CK:()=>he,Do:()=>$,Dq:()=>ot,Fd:()=>te,Gy:()=>G,Hh:()=>T,Hm:()=>Le,I6:()=>le,Jx:()=>St,Lc:()=>ce,Lz:()=>ve,N4:()=>ie,N8:()=>j,NS:()=>e,Qj:()=>re,Sn:()=>O,T4:()=>lt,Tp:()=>A,Uj:()=>Dt,Uo:()=>C,XT:()=>ne,Xx:()=>Ae,Yi:()=>ht,ZE:()=>W,Zi:()=>be,cR:()=>_e,cU:()=>Pe,fy:()=>Re,gZ:()=>Ye,iO:()=>Vt,jJ:()=>Ce,lg:()=>w,mh:()=>P,sq:()=>xe,uL:()=>v,vL:()=>De,w0:()=>Xe,x1:()=>u,yn:()=>fe,yp:()=>L,zR:()=>f,zU:()=>nt});var i=l(9640),d=l(4416);const v=(0,i.VP)(d.Uu.UPDATE_API_CALL_STATUS_ECL,(0,i.xk)()),T=(0,i.VP)(d.Uu.RESET_ECL_STORE),w=(0,i.VP)(d.Uu.FETCH_PAGE_SETTINGS_ECL),e=(0,i.VP)(d.Uu.SET_PAGE_SETTINGS_ECL,(0,i.xk)()),O=(0,i.VP)(d.Uu.SAVE_PAGE_SETTINGS_ECL,(0,i.xk)()),f=(0,i.VP)(d.Uu.FETCH_INFO_ECL,(0,i.xk)()),u=(0,i.VP)(d.Uu.SET_INFO_ECL,(0,i.xk)()),L=(0,i.VP)(d.Uu.FETCH_FEES_ECL),C=(0,i.VP)(d.Uu.SET_FEES_ECL,(0,i.xk)()),B=(0,i.VP)(d.Uu.FETCH_CHANNELS_ECL),A=(0,i.VP)(d.Uu.SET_ACTIVE_CHANNELS_ECL,(0,i.xk)()),Pe=(0,i.VP)(d.Uu.SET_PENDING_CHANNELS_ECL,(0,i.xk)()),le=(0,i.VP)(d.Uu.SET_INACTIVE_CHANNELS_ECL,(0,i.xk)()),Ce=(0,i.VP)(d.Uu.FETCH_ONCHAIN_BALANCE_ECL),Ae=(0,i.VP)(d.Uu.SET_ONCHAIN_BALANCE_ECL,(0,i.xk)()),j=(0,i.VP)(d.Uu.SET_LIGHTNING_BALANCE_ECL,(0,i.xk)()),W=(0,i.VP)(d.Uu.SET_CHANNELS_STATUS_ECL,(0,i.xk)()),G=(0,i.VP)(d.Uu.FETCH_PEERS_ECL),re=(0,i.VP)(d.Uu.SET_PEERS_ECL,(0,i.xk)()),xe=(0,i.VP)(d.Uu.SAVE_NEW_PEER_ECL,(0,i.xk)()),ce=((0,i.VP)(d.Uu.NEWLY_ADDED_PEER_ECL,(0,i.xk)()),(0,i.VP)(d.Uu.ADD_PEER_ECL,(0,i.xk)()),(0,i.VP)(d.Uu.DETACH_PEER_ECL,(0,i.xk)())),be=(0,i.VP)(d.Uu.REMOVE_PEER_ECL,(0,i.xk)()),ne=(0,i.VP)(d.Uu.GET_NEW_ADDRESS_ECL),De=((0,i.VP)(d.Uu.SET_NEW_ADDRESS_ECL,(0,i.xk)()),(0,i.VP)(d.Uu.SAVE_NEW_CHANNEL_ECL,(0,i.xk)())),Re=(0,i.VP)(d.Uu.UPDATE_CHANNEL_ECL,(0,i.xk)()),Xe=(0,i.VP)(d.Uu.CLOSE_CHANNEL_ECL,(0,i.xk)()),_e=(0,i.VP)(d.Uu.REMOVE_CHANNEL_ECL,(0,i.xk)()),he=(0,i.VP)(d.Uu.FETCH_PAYMENTS_ECL,(0,i.xk)()),Dt=(0,i.VP)(d.Uu.SET_PAYMENTS_ECL,(0,i.xk)()),lt=(0,i.VP)(d.Uu.GET_QUERY_ROUTES_ECL,(0,i.xk)()),Le=(0,i.VP)(d.Uu.SET_QUERY_ROUTES_ECL,(0,i.xk)()),te=(0,i.VP)(d.Uu.SEND_PAYMENT_ECL,(0,i.xk)()),ie=(0,i.VP)(d.Uu.SEND_PAYMENT_STATUS_ECL,(0,i.xk)()),P=(0,i.VP)(d.Uu.FETCH_TRANSACTIONS_ECL,(0,i.xk)()),F=(0,i.VP)(d.Uu.SET_TRANSACTIONS_ECL,(0,i.xk)()),ve=(0,i.VP)(d.Uu.SEND_ONCHAIN_FUNDS_ECL,(0,i.xk)()),$=((0,i.VP)(d.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,(0,i.xk)()),(0,i.VP)(d.Uu.FETCH_INVOICES_ECL,(0,i.xk)())),Ke=(0,i.VP)(d.Uu.SET_INVOICES_ECL,(0,i.xk)()),Vt=(0,i.VP)(d.Uu.CREATE_INVOICE_ECL,(0,i.xk)()),St=(0,i.VP)(d.Uu.ADD_INVOICE_ECL,(0,i.xk)()),ot=(0,i.VP)(d.Uu.UPDATE_INVOICE_ECL,(0,i.xk)()),nt=(0,i.VP)(d.Uu.PEER_LOOKUP_ECL,(0,i.xk)()),ht=(0,i.VP)(d.Uu.INVOICE_LOOKUP_ECL,(0,i.xk)()),Ye=((0,i.VP)(d.Uu.SET_LOOKUP_ECL,(0,i.xk)()),(0,i.VP)(d.Uu.UPDATE_CHANNEL_STATE_ECL,(0,i.xk)())),fe=(0,i.VP)(d.Uu.UPDATE_RELAYED_PAYMENT_ECL,(0,i.xk)())},3017(Zt,pe,l){"use strict";l.d(pe,{B:()=>Ee});var i=l(1747),d=l(1413),v=l(7673),T=l(9437),w=l(6354),e=l(1397),O=l(6977),f=l(2462),u=l(4416),L=l(1771),C=l(6439),B=l(5428),A=l(2730),Pe=l(2615),le=l(9330),Ce=l(9640),Ae=l(3202),j=l(2571),W=l(8570),G=l(3694),re=l(7879),xe=l(7303);let Ee=(()=>{var V;class ce{constructor(ne,J,De,Re,Xe,_e,he,Dt,lt){this.actions=ne,this.httpClient=J,this.store=De,this.sessionService=Re,this.commonService=Xe,this.logger=_e,this.router=he,this.wsService=Dt,this.location=lt,this.CHILD_API_URL=u.H$+"/ecl",this.invoicesPageSettings=u.X8.find(Le=>"transactions"===Le.pageId)?.tables.find(Le=>"invoices"===Le.tableId),this.paymentsPageSettings=u.X8.find(Le=>"transactions"===Le.pageId)?.tables.find(Le=>"payments"===Le.tableId),this.flgInitialized=!1,this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.rawChannelsList=[],this.unSubs=[new d.B,new d.B,new d.B],this.infoFetchECL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_INFO_ECL),(0,e.Z)(Le=>(this.flgInitialized=!1,this.store.dispatch((0,L.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,L.mt)({payload:u.MZ.GET_NODE_INFO})),this.store.dispatch((0,B.uL)({payload:{action:"FetchInfo",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.GETINFO_API).pipe((0,O.Q)(this.actions.pipe((0,i.gp)(u.aU.SET_SELECTED_NODE))),(0,w.T)(te=>(this.logger.info(te),this.initializeRemainingData(te,Le.payload.loadPage),this.store.dispatch((0,B.uL)({payload:{action:"FetchInfo",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.GET_NODE_INFO})),{type:u.Uu.SET_INFO_ECL,payload:te||{}})),(0,T.W)(te=>{const ie=this.commonService.extractErrorCode(te),P=503===ie?"Unable to Connect to Eclair Server.":this.commonService.extractErrorMessage(te);return this.router.navigate(["/error"],{state:{errorCode:ie,errorMessage:P}}),this.handleErrorWithoutAlert("FetchInfo",u.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:ie,error:P}),(0,v.of)({type:u.aU.VOID})})))))),this.fetchFees=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_FEES_ECL),(0,e.Z)(()=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchFees",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.FEES_API+"/fees").pipe((0,w.T)(Le=>(this.logger.info(Le),this.store.dispatch((0,B.uL)({payload:{action:"FetchFees",status:u.wn.COMPLETED}})),{type:u.Uu.SET_FEES_ECL,payload:Le||{}})),(0,T.W)(Le=>(this.handleErrorWithoutAlert("FetchFees",u.MZ.NO_SPINNER,"Fetching Fees Failed.",Le),(0,v.of)({type:u.aU.VOID})))))))),this.fetchPayments=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_PAYMENTS_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchPayments",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.FEES_API+"/payments?count="+Le.payload.count+"&skip="+Le.payload.skip).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"FetchPayments",status:u.wn.COMPLETED}})),{type:u.Uu.SET_PAYMENTS_ECL,payload:te||{}})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchPayments",u.MZ.NO_SPINNER,"Fetching Payments Failed.",te),(0,v.of)({type:u.aU.VOID})))))))),this.channelsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_CHANNELS_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchChannels",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.CHANNELS_API).pipe((0,w.T)(te=>(this.logger.info(te),this.rawChannelsList=te,this.setChannelsAndStatusAndBalances(),this.store.dispatch((0,B.uL)({payload:{action:"FetchChannels",status:u.wn.COMPLETED}})),{type:u.aU.VOID})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchChannels",u.MZ.NO_SPINNER,"Fetching Channels Failed.",te),(0,v.of)({type:u.aU.VOID})))))))),this.fetchOnchainBalance=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_ONCHAIN_BALANCE_ECL),(0,e.Z)(()=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchOnchainBalance",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.ON_CHAIN_API+"/balance"))),(0,w.T)(Le=>(this.logger.info(Le),this.store.dispatch((0,B.uL)({payload:{action:"FetchOnchainBalance",status:u.wn.COMPLETED}})),{type:u.Uu.SET_ONCHAIN_BALANCE_ECL,payload:Le||{}})),(0,T.W)(Le=>(this.handleErrorWithoutAlert("FetchOnchainBalance",u.MZ.NO_SPINNER,"Fetching Onchain Balances Failed.",Le),(0,v.of)({type:u.aU.VOID}))))),this.peersFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_PEERS_ECL),(0,e.Z)(()=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchPeers",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.PEERS_API).pipe((0,w.T)(Le=>(this.logger.info(Le),this.store.dispatch((0,B.uL)({payload:{action:"FetchPeers",status:u.wn.COMPLETED}})),{type:u.Uu.SET_PEERS_ECL,payload:Le||[]})),(0,T.W)(Le=>(this.handleErrorWithoutAlert("FetchPeers",u.MZ.NO_SPINNER,"Fetching Peers Failed.",Le),(0,v.of)({type:u.aU.VOID})))))))),this.getNewAddress=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.GET_NEW_ADDRESS_ECL),(0,e.Z)(()=>(this.store.dispatch((0,L.mt)({payload:u.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+u.rl.ON_CHAIN_API).pipe((0,w.T)(Le=>(this.logger.info(Le),this.store.dispatch((0,L.y0)({payload:u.MZ.GENERATE_NEW_ADDRESS})),{type:u.Uu.SET_NEW_ADDRESS_ECL,payload:Le})),(0,T.W)(Le=>(this.handleErrorWithAlert("GetNewAddress",u.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+u.rl.ON_CHAIN_API,Le),(0,v.of)({type:u.aU.VOID})))))))),this.setNewAddress=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SET_NEW_ADDRESS_ECL),(0,w.T)(Le=>(this.logger.info(Le.payload),Le.payload))),{dispatch:!1}),this.saveNewPeer=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SAVE_NEW_PEER_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.CONNECT_PEER})),this.store.dispatch((0,B.uL)({payload:{action:"SaveNewPeer",status:u.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+u.rl.PEERS_API+(Le.payload.id.includes("@")?"?uri=":"?nodeId=")+Le.payload.id,{}).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"SaveNewPeer",status:u.wn.COMPLETED}})),te=te||[],this.store.dispatch((0,L.y0)({payload:u.MZ.CONNECT_PEER})),this.store.dispatch((0,B.Qj)({payload:te})),{type:u.Uu.NEWLY_ADDED_PEER_ECL,payload:{peer:te.find(ie=>ie.nodeId===(Le.payload.id.includes("@")?Le.payload.id.substring(0,Le.payload.id.indexOf("@")):Le.payload.id))}})),(0,T.W)(te=>(this.handleErrorWithoutAlert("SaveNewPeer",u.MZ.CONNECT_PEER,"Peer Connection Failed.",te),(0,v.of)({type:u.aU.VOID})))))))),this.detachPeer=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.DETACH_PEER_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+u.rl.PEERS_API+"/"+Le.payload.nodeId).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,L.y0)({payload:u.MZ.DISCONNECT_PEER})),this.store.dispatch((0,L.UI)({payload:"Disconnecting Peer!"})),{type:u.Uu.REMOVE_PEER_ECL,payload:{nodeId:Le.payload.nodeId}})),(0,T.W)(te=>(this.handleErrorWithAlert("DisconnectPeer",u.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+u.rl.PEERS_API+"/"+Le.payload.nodeId,te),(0,v.of)({type:u.aU.VOID})))))))),this.openNewChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SAVE_NEW_CHANNEL_ECL),(0,e.Z)(Le=>{this.store.dispatch((0,L.mt)({payload:u.MZ.OPEN_CHANNEL})),this.store.dispatch((0,B.uL)({payload:{action:"SaveNewChannel",status:u.wn.INITIATED}}));const te={nodeId:Le.payload.nodeId,fundingSatoshis:Le.payload.amount,announceChannel:!Le.payload.private};return Le.payload.feeRate&&Le.payload.feeRate>0&&(te.fundingFeerateSatByte=Le.payload.feeRate),this.httpClient.post(this.CHILD_API_URL+u.rl.CHANNELS_API,te).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,B.uL)({payload:{action:"SaveNewChannel",status:u.wn.COMPLETED}})),this.store.dispatch((0,B.Gy)()),this.store.dispatch((0,B.jJ)()),this.store.dispatch((0,L.y0)({payload:u.MZ.OPEN_CHANNEL})),this.store.dispatch((0,L.UI)({payload:"Channel Added Successfully!"})),{type:u.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,T.W)(ie=>(this.handleErrorWithoutAlert("SaveNewChannel",u.MZ.OPEN_CHANNEL,"Opening Channel Failed.",ie),(0,v.of)({type:u.aU.VOID}))))}))),this.updateChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.UPDATE_CHANNEL_ECL),(0,e.Z)(Le=>{this.store.dispatch((0,L.mt)({payload:u.MZ.UPDATE_CHAN_POLICY}));let te="?feeBaseMsat="+Le.payload.baseFeeMsat+"&feeProportionalMillionths="+Le.payload.feeRate;return te=Le.payload.nodeIds?te+"&nodeIds="+Le.payload.nodeIds:Le.payload.nodeId?te+"&nodeId="+Le.payload.nodeId:Le.payload.channelIds?te+"&channelIds="+Le.payload.channelIds:te+"&channelId="+Le.payload.channelId,this.httpClient.post(this.CHILD_API_URL+u.rl.CHANNELS_API+"/updateRelayFee"+te,{}).pipe((0,w.T)(ie=>(this.logger.info(ie),this.store.dispatch((0,L.y0)({payload:u.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,L.UI)(Le.payload.nodeIds||Le.payload.channelIds?{payload:"Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:u.Uu.FETCH_CHANNELS_ECL,payload:{fetchPayments:!1}})),(0,T.W)(ie=>(this.handleErrorWithAlert("UpdateChannels",u.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+u.rl.CHANNELS_API,ie),(0,v.of)({type:u.aU.VOID}))))}))),this.closeChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.CLOSE_CHANNEL_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:Le.payload.force?u.MZ.FORCE_CLOSE_CHANNEL:u.MZ.CLOSE_CHANNEL})),this.httpClient.delete(this.CHILD_API_URL+u.rl.CHANNELS_API+"?channelId="+Le.payload.channelId+"&force="+Le.payload.force).pipe((0,w.T)(te=>(this.logger.info(te),setTimeout(()=>{this.store.dispatch((0,L.y0)({payload:Le.payload.force?u.MZ.FORCE_CLOSE_CHANNEL:u.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,L.UI)({payload:Le.payload.force?"Channel Force Closed Successfully!":"Channel Closed Successfully!"}))},2e3),{type:u.aU.VOID})),(0,T.W)(te=>(this.handleErrorWithAlert("CloseChannel",Le.payload.force?u.MZ.FORCE_CLOSE_CHANNEL:u.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+u.rl.CHANNELS_API,te),(0,v.of)({type:u.aU.VOID})))))))),this.queryRoutesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.GET_QUERY_ROUTES_ECL),(0,e.Z)(Le=>this.httpClient.get(this.CHILD_API_URL+u.rl.PAYMENTS_API+"/route?nodeId="+Le.payload.nodeId+"&amountMsat="+Le.payload.amount).pipe((0,w.T)(te=>(this.logger.info(te),{type:u.Uu.SET_QUERY_ROUTES_ECL,payload:te})),(0,T.W)(te=>(this.store.dispatch((0,B.Hm)({payload:[]})),this.handleErrorWithAlert("GetQueryRoutes",u.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+u.rl.PAYMENTS_API+"/route?nodeId="+Le.payload.nodeId+"&amountMsat="+Le.payload.amount,te),(0,v.of)({type:u.aU.VOID}))))))),this.setQueryRoutes=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SET_QUERY_ROUTES_ECL),(0,w.T)(Le=>Le.payload)),{dispatch:!1}),this.sendPayment=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SEND_PAYMENT_ECL),(0,e.Z)(Le=>(this.flgReceivedPaymentUpdateFromWS=!1,this.latestPaymentRes="",this.store.dispatch((0,L.mt)({payload:u.MZ.SEND_PAYMENT})),this.store.dispatch((0,B.uL)({payload:{action:"SendPayment",status:u.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+u.rl.PAYMENTS_API,Le.payload).pipe((0,w.T)(te=>(this.logger.info(te),this.latestPaymentRes=te,setTimeout(()=>{this.flgReceivedPaymentUpdateFromWS||this.handleSendPaymentStatus("Payment Submitted!")},3e3),{type:u.aU.VOID})),(0,T.W)(te=>(this.logger.error("Error: "+JSON.stringify(te)),Le.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",u.MZ.SEND_PAYMENT,"Send Payment Failed.",te):this.handleErrorWithAlert("SendPayment",u.MZ.SEND_PAYMENT,"Send Payment Failed",this.CHILD_API_URL+u.rl.PAYMENTS_API,te),(0,v.of)({type:u.aU.VOID})))))))),this.transactionsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_TRANSACTIONS_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchTransactions",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.ON_CHAIN_API+"/transactions?count="+Le.payload.count+"&skip="+Le.payload.skip))),(0,w.T)(Le=>(this.logger.info(Le),this.store.dispatch((0,B.uL)({payload:{action:"FetchTransactions",status:u.wn.COMPLETED}})),{type:u.Uu.SET_TRANSACTIONS_ECL,payload:Le||[]})),(0,T.W)(Le=>(this.handleErrorWithoutAlert("FetchTransactions",u.MZ.NO_SPINNER,"Fetching Transactions Failed.",Le),(0,v.of)({type:u.aU.VOID}))))),this.SendOnchainFunds=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SEND_ONCHAIN_FUNDS_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.SEND_FUNDS})),this.store.dispatch((0,B.uL)({payload:{action:"SendOnchainFunds",status:u.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+u.rl.ON_CHAIN_API,Le.payload).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"SendOnchainFunds",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.SEND_FUNDS})),this.store.dispatch((0,B.jJ)()),{type:u.Uu.SEND_ONCHAIN_FUNDS_RES_ECL,payload:te})),(0,T.W)(te=>(this.handleErrorWithoutAlert("SendOnchainFunds",u.MZ.SEND_FUNDS,"Sending Fund Failed.",te),(0,v.of)({type:u.aU.VOID})))))))),this.createInvoice=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.CREATE_INVOICE_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.CREATE_INVOICE})),this.store.dispatch((0,B.uL)({payload:{action:"CreateInvoice",status:u.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+u.rl.INVOICES_API,Le.payload).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"CreateInvoice",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.CREATE_INVOICE})),te.timestamp=Math.round((new Date).getTime()/1e3),te.expiresAt=Math.round(te.timestamp+Le.payload.expireIn),te.description=Le.payload.description,te.status="unpaid",setTimeout(()=>{this.store.dispatch((0,L.xO)({payload:{data:{invoice:te,newlyAdded:!0,component:C.Z}}}))},200),{type:u.Uu.ADD_INVOICE_ECL,payload:te})),(0,T.W)(te=>(this.handleErrorWithoutAlert("CreateInvoice",u.MZ.CREATE_INVOICE,"Create Invoice Failed.",te),(0,v.of)({type:u.aU.VOID})))))))),this.invoicesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_INVOICES_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchInvoices",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.INVOICES_API+"?count="+Le.payload.count+"&skip="+Le.payload.skip).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"FetchInvoices",status:u.wn.COMPLETED}})),{type:u.Uu.SET_INVOICES_ECL,payload:te})),(0,T.W)(te=>(this.handleErrorWithoutAlert("FetchInvoices",u.MZ.NO_SPINNER,"Fetching Invoices Failed.",te),(0,v.of)({type:u.aU.VOID})))))))),this.peerLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.PEER_LOOKUP_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.SEARCHING_NODE})),this.store.dispatch((0,B.uL)({payload:{action:"Lookup",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.NETWORK_API+"/nodes/"+Le.payload).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"Lookup",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.SEARCHING_NODE})),{type:u.Uu.SET_LOOKUP_ECL,payload:te})),(0,T.W)(te=>(this.handleErrorWithAlert("Lookup",u.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+u.rl.NETWORK_API+"/nodes/"+Le.payload,te),(0,v.of)({type:u.aU.VOID})))))))),this.invoiceLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.INVOICE_LOOKUP_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,B.uL)({payload:{action:"Lookup",status:u.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+u.rl.INVOICES_API+"/"+Le.payload).pipe((0,w.T)(te=>(this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"Lookup",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,B.Dq)({payload:te})),{type:u.Uu.SET_LOOKUP_ECL,payload:te})),(0,T.W)(te=>(this.handleErrorWithoutAlert("Lookup",u.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",te),this.store.dispatch((0,L.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,v.of)({type:u.aU.VOID})))))))),this.setLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SET_LOOKUP_ECL),(0,w.T)(Le=>(this.logger.info(Le.payload),Le.payload))),{dispatch:!1}),this.pageSettingsFetchCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.FETCH_PAGE_SETTINGS_ECL),(0,e.Z)(()=>(this.store.dispatch((0,B.uL)({payload:{action:"FetchPageSettings",status:u.wn.INITIATED}})),this.httpClient.get(u.rl.PAGE_SETTINGS_API).pipe((0,w.T)(Le=>(this.logger.info(Le),this.store.dispatch((0,B.uL)({payload:{action:"FetchPageSettings",status:u.wn.COMPLETED}})),this.invoicesPageSettings=Le&&Object.keys(Le).length>0?Le.find(te=>"transactions"===te.pageId)?.tables.find(te=>"invoices"===te.tableId):u.X8.find(te=>"transactions"===te.pageId)?.tables.find(te=>"invoices"===te.tableId),this.paymentsPageSettings=Le&&Object.keys(Le).length>0?Le.find(te=>"transactions"===te.pageId)?.tables.find(te=>"payments"===te.tableId):u.X8.find(te=>"transactions"===te.pageId)?.tables.find(te=>"payments"===te.tableId),{type:u.Uu.SET_PAGE_SETTINGS_ECL,payload:Le||[]})),(0,T.W)(Le=>(this.handleErrorWithoutAlert("FetchPageSettings",u.MZ.NO_SPINNER,"Fetching Page Settings Failed.",Le),(0,v.of)({type:u.aU.VOID})))))))),this.savePageSettingsCL=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(u.Uu.SAVE_PAGE_SETTINGS_ECL),(0,e.Z)(Le=>(this.store.dispatch((0,L.mt)({payload:u.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,B.uL)({payload:{action:"SavePageSettings",status:u.wn.INITIATED}})),this.httpClient.post(u.rl.PAGE_SETTINGS_API,Le.payload).pipe((0,w.T)(te=>{this.logger.info(te),this.store.dispatch((0,B.uL)({payload:{action:"SavePageSettings",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,L.UI)({payload:"Page Layout Updated Successfully!"}));const ie=(te.find(F=>"transactions"===F.pageId)?.tables.find(F=>"invoices"===F.tableId)||u.X8.find(F=>"transactions"===F.pageId)?.tables.find(F=>"invoices"===F.tableId))?.recordsPerPage,P=(te.find(F=>"transactions"===F.pageId)?.tables.find(F=>"payments"===F.tableId)||u.X8.find(F=>"transactions"===F.pageId)?.tables.find(F=>"payments"===F.tableId))?.recordsPerPage;return this.invoicesPageSettings&&ie!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=ie),this.paymentsPageSettings&&P!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=P),{type:u.Uu.SET_PAGE_SETTINGS_ECL,payload:te||[]}}),(0,T.W)(te=>(this.handleErrorWithAlert("SavePageSettings",u.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",u.rl.PAGE_SETTINGS_API,te),(0,v.of)({type:u.aU.VOID})))))))),this.handleSendPaymentStatus=Le=>{this.store.dispatch((0,B.uL)({payload:{action:"SendPayment",status:u.wn.COMPLETED}})),this.store.dispatch((0,L.y0)({payload:u.MZ.SEND_PAYMENT})),this.store.dispatch((0,B.N4)({payload:this.latestPaymentRes})),this.store.dispatch((0,L.UI)({payload:Le}))},this.store.select(A.ru).pipe((0,O.Q)(this.unSubs[0])).subscribe(Le=>{Le.FetchInfo.status!==u.wn.COMPLETED&&Le.FetchInfo.status!==u.wn.ERROR||Le.FetchFees.status!==u.wn.COMPLETED&&Le.FetchFees.status!==u.wn.ERROR||Le.FetchOnchainBalance.status!==u.wn.COMPLETED&&Le.FetchOnchainBalance.status!==u.wn.ERROR||Le.FetchChannels.status!==u.wn.COMPLETED&&Le.FetchChannels.status!==u.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,L.y0)({payload:u.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.eclWSMessages.pipe((0,O.Q)(this.unSubs[1])).subscribe(Le=>{this.logger.info("Received new message from the service: "+JSON.stringify(Le));let te="";if(Le)switch(Le.type){case u.ck.PAYMENT_SENT:Le&&Le.id&&this.latestPaymentRes===Le.id&&(this.flgReceivedPaymentUpdateFromWS=!0,te="Payment Sent: "+(Le.paymentHash?"with payment hash "+Le.paymentHash:JSON.stringify(Le)),this.handleSendPaymentStatus(te));break;case u.ck.PAYMENT_FAILED:Le&&Le.id&&this.latestPaymentRes===Le.id&&(this.flgReceivedPaymentUpdateFromWS=!0,te="Payment Failed: "+(Le.failures&&Le.failures.length&&Le.failures.length>0&&Le.failures[0].t?Le.failures[0].t:Le.failures&&Le.failures.length&&Le.failures.length>0&&Le.failures[0].e&&Le.failures[0].e.failureMessage?Le.failures[0].e.failureMessage:JSON.stringify(Le)),this.handleSendPaymentStatus(te));break;case u.ck.PAYMENT_RECEIVED:this.store.dispatch((0,B.Dq)({payload:Le}));break;case u.ck.PAYMENT_RELAYED:delete Le.source,Le.amountIn=Math.round((Le.amountIn||0)/1e3),Le.amountOut=Math.round((Le.amountOut||0)/1e3),Le.timestamp.unix&&(Le.timestamp=1e3*Le.timestamp.unix),this.store.dispatch((0,B.yn)({payload:Le}));break;case u.ck.CHANNEL_STATE_CHANGED:"NORMAL"===Le.currentState||"CLOSED"===Le.currentState?(this.rawChannelsList=this.rawChannelsList?.map(ie=>(ie.channelId===Le.channelId&&ie.nodeId===Le.remoteNodeId&&(ie.state=Le.currentState),ie)),this.setChannelsAndStatusAndBalances()):this.store.dispatch((0,B.gZ)({payload:Le}));break;default:this.logger.info("Received Event from WS: "+JSON.stringify(Le))}})}setChannelsAndStatusAndBalances(){let ne=0,J=0,De=0,Re={localBalance:0,remoteBalance:0},Xe=[];const _e=[],he=[],Dt={active:{channels:0,capacity:0},inactive:{channels:0,capacity:0},pending:{channels:0,capacity:0}};this.rawChannelsList.forEach((lt,Le)=>{lt&&("NORMAL"===lt.state?(ne=(lt.toLocal||0)+(lt.toRemote||0),J+=lt.toLocal||0,De+=lt.toRemote||0,lt.balancedness=0===ne?1:+(1-Math.abs(((lt.toLocal||0)-(lt.toRemote||0))/ne)).toFixed(3),Xe.push(lt),Dt.active.channels=Dt.active.channels+1,Dt.active.capacity=Dt.active.capacity+(lt.toLocal||0)):lt.state?.includes("WAIT")||lt.state?.includes("CLOSING")||lt.state?.includes("SYNCING")?(lt.state=lt.state?.replace(/_/g," "),_e.push(lt),Dt.pending.channels=Dt.pending.channels+1,Dt.pending.capacity=Dt.pending.capacity+(lt.toLocal||0)):(lt.state=lt.state?.replace(/_/g," "),he.push(lt),Dt.inactive.channels=Dt.inactive.channels+1,Dt.inactive.capacity=Dt.inactive.capacity+(lt.toLocal||0)))}),Re={localBalance:J,remoteBalance:De},Xe=this.commonService.sortDescByKey(Xe,"balancedness"),this.logger.info("Active Channels: "+JSON.stringify(Xe)),this.logger.info("Pending Channels: "+JSON.stringify(_e)),this.logger.info("Inactive Channels: "+JSON.stringify(he)),this.logger.info("Lightning Balances: "+JSON.stringify(Re)),this.logger.info("Channels Status: "+JSON.stringify(Dt)),this.logger.info("Channel, status and balances: "+JSON.stringify({active:Xe,pending:_e,inactive:he,balances:Re,status:Dt})),this.store.dispatch((0,B.Tp)({payload:Xe})),this.store.dispatch((0,B.cU)({payload:_e})),this.store.dispatch((0,B.I6)({payload:he})),this.store.dispatch((0,B.N8)({payload:Re})),this.store.dispatch((0,B.ZE)({payload:Dt}))}initializeRemainingData(ne,J){this.sessionService.setItem("eclUnlocked","true");const De={identity_pubkey:ne.nodeId,alias:ne.alias,testnet:"testnet"===ne.network,chains:ne.publicAddresses,uris:ne.uris,version:ne.version,numberOfPendingChannels:0};this.store.dispatch((0,L.mt)({payload:u.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,L.Fl)({payload:De}));let Re=this.location.path();Re.includes("/lnd/")?Re=Re?.replace("/lnd/","/ecl/"):Re.includes("/cln/")&&(Re=Re?.replace("/cln/","/ecl/")),(Re.includes("/login")||Re.includes("/error")||""===Re||"HOME"===J||Re.includes("?access-key="))&&(Re="/ecl/home"),this.router.navigate([Re]),this.store.dispatch((0,B.$Q)()),this.store.dispatch((0,B.yp)()),this.store.dispatch((0,B.jJ)()),this.store.dispatch((0,B.Gy)())}handleErrorWithoutAlert(ne,J,De,Re){this.logger.error("ERROR IN: "+ne+"\n"+JSON.stringify(Re)),401===Re.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,L.Jh)()),this.store.dispatch((0,L.ri)({payload:"Authentication Failed: "+JSON.stringify(Re.error)}))):(this.store.dispatch((0,L.y0)({payload:J})),this.store.dispatch((0,B.uL)({payload:{action:ne,status:u.wn.ERROR,statusCode:Re.status.toString(),message:this.commonService.extractErrorMessage(Re,De)}})))}handleErrorWithAlert(ne,J,De,Re,Xe){if(this.logger.error(Xe),401===Xe.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,L.Jh)()),this.store.dispatch((0,L.ri)({payload:"Authentication Failed: "+JSON.stringify(Xe.error)}));else{this.store.dispatch((0,L.y0)({payload:J}));const _e=this.commonService.extractErrorMessage(Xe);this.store.dispatch((0,L.xO)({payload:{data:{type:"ERROR",alertTitle:De,message:{code:Xe.status,message:_e,URL:Re},component:f.f}}})),this.store.dispatch((0,B.uL)({payload:{action:ne,status:u.wn.ERROR,statusCode:Xe.status.toString(),message:_e,URL:Re}}))}}ngOnDestroy(){this.unSubs.forEach(ne=>{ne.next(null),ne.complete()})}static#e=V=()=>(this.\u0275fac=function(J){return new(J||ce)(Pe.KVO(i.En),Pe.KVO(le.Qq),Pe.KVO(Ce.il),Pe.KVO(Ae.Q),Pe.KVO(j.h),Pe.KVO(W.gP),Pe.KVO(G.Ix),Pe.KVO(re.I),Pe.KVO(xe.aZ))},this.\u0275prov=Pe.jDH({token:ce,factory:ce.\u0275fac}))}return V(),ce})()},2730(Zt,pe,l){"use strict";l.d(pe,{DW:()=>Ae,KT:()=>f,Ou:()=>A,b_:()=>w,gN:()=>Pe,jZ:()=>v,oR:()=>u,os:()=>Ce,p3:()=>T,rN:()=>le,ru:()=>O});var i=l(9640);const d=(0,i.UX)("ecl"),v=(0,i.Mz)(d,j=>({pageSettings:j.pageSettings,apiCallStatus:j.apisCallStatus.FetchPageSettings})),T=(0,i.Mz)(d,j=>j.information),w=(0,i.Mz)(d,j=>({information:j.information,apiCallStatus:j.apisCallStatus.FetchInfo})),O=((0,i.Mz)(d,j=>j.apisCallStatus.FetchInfo),(0,i.Mz)(d,j=>j.apisCallStatus)),f=(0,i.Mz)(d,j=>({payments:j.payments,apiCallStatus:j.apisCallStatus.FetchPayments})),u=(0,i.Mz)(d,j=>({fees:j.fees,apiCallStatus:j.apisCallStatus.FetchFees})),A=((0,i.Mz)(d,j=>({activeChannels:j.activeChannels,apiCallStatus:j.apisCallStatus.FetchChannels})),(0,i.Mz)(d,j=>({pendingChannels:j.pendingChannels,apiCallStatus:j.apisCallStatus.FetchChannels})),(0,i.Mz)(d,j=>({inactiveChannels:j.inactiveChannels,apiCallStatus:j.apisCallStatus.FetchChannels})),(0,i.Mz)(d,j=>({activeChannels:j.activeChannels,pendingChannels:j.pendingChannels,inactiveChannels:j.inactiveChannels,lightningBalance:j.lightningBalance,channelsStatus:j.channelsStatus,apiCallStatus:j.apisCallStatus.FetchChannels}))),Pe=(0,i.Mz)(d,j=>({transactions:j.transactions,apiCallStatus:j.apisCallStatus.FetchTransactions})),le=(0,i.Mz)(d,j=>({invoices:j.invoices,apiCallStatus:j.apisCallStatus.FetchInvoices})),Ce=(0,i.Mz)(d,j=>({peers:j.peers,apiCallStatus:j.apisCallStatus.FetchPeers})),Ae=(0,i.Mz)(d,j=>({onchainBalance:j.onchainBalance,apiCallStatus:j.apisCallStatus.FetchOnchainBalance}))},6439(Zt,pe,l){"use strict";l.d(pe,{Z:()=>St});var i=l(1585),d=l(5383),v=l(1413),T=l(6977),w=l(4416),e=l(2730),O=l(2615),f=l(3664),u=l(8570),L=l(2571),C=l(5416),B=l(9640),A=l(2200),Pe=l(60),le=l(8834),Ce=l(5596),Ae=l(1997),j=l(9183),W=l(2920),G=l(6038),re=l(8288),xe=l(9157),Ee=l(9587);const V=ot=>({"display-none":ot}),ce=ot=>({"xs-scroll-y":ot}),be=(ot,nt)=>({"mt-2":ot,"mt-1":nt}),ne=()=>[];function J(ot,nt){if(1&ot&&f.nrm(0,"qr-code",29),2&ot){const ht=f.XpG();f.Y8G("value",null==ht.invoice?null:ht.invoice.serialized)("size",ht.qrWidth)}}function De(ot,nt){1&ot&&(f.j41(0,"span",30),f.EFF(1,"N/A"),f.k0s())}function Re(ot,nt){if(1&ot&&f.nrm(0,"qr-code",29),2&ot){const ht=f.XpG();f.Y8G("value",null==ht.invoice?null:ht.invoice.serialized)("size",ht.qrWidth)}}function Xe(ot,nt){1&ot&&(f.j41(0,"span",31),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function _e(ot,nt){1&ot&&f.nrm(0,"mat-divider",32),2&ot&&f.Y8G("inset",!0)}function he(ot,nt){1&ot&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function Dt(ot,nt){1&ot&&f.nrm(0,"span",38)}function lt(ot,nt){if(1&ot&&(f.j41(0,"div",34)(1,"div",35)(2,"span",36),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,Dt,1,0,"span",37),f.k0s()()),2&ot){const ht=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,null==ht.invoice?null:ht.invoice.amountSettled)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,ne).constructor(35))}}function Le(ot,nt){if(1&ot&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&ot){const ht=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,null==ht.invoice?null:ht.invoice.amountSettled)," Sats")}}function te(ot,nt){if(1&ot&&(f.qex(0),f.DNE(1,lt,6,5,"div",33)(2,Le,3,3,"div",20),f.bVm()),2&ot){const ht=f.XpG();f.R7$(),f.Y8G("ngIf",ht.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!ht.flgInvoicePaid)}}function ie(ot,nt){1&ot&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function P(ot,nt){1&ot&&f.nrm(0,"mat-spinner",40),2&ot&&f.Y8G("diameter",20)}function F(ot,nt){if(1&ot&&(f.qex(0),f.DNE(1,ie,2,0,"span",20)(2,P,1,1,"mat-spinner",39),f.bVm()),2&ot){const ht=f.XpG();f.R7$(),f.Y8G("ngIf","unpaid"!==(null==ht.invoice?null:ht.invoice.status)||!ht.flgVersionCompatible),f.R7$(),f.Y8G("ngIf","unpaid"===(null==ht.invoice?null:ht.invoice.status)&&ht.flgVersionCompatible)}}function ve(ot,nt){if(1&ot&&(f.j41(0,"div"),f.nrm(1,"mat-divider",21),f.j41(2,"div",16)(3,"div",41)(4,"h4",18),f.EFF(5,"Date Expiry"),f.k0s(),f.j41(6,"span",19),f.EFF(7),f.nI1(8,"date"),f.k0s()(),f.j41(9,"div",42)(10,"h4",18),f.EFF(11,"Date Settled"),f.k0s(),f.j41(12,"span",22),f.EFF(13),f.nI1(14,"date"),f.k0s()()(),f.nrm(15,"mat-divider",21),f.j41(16,"div",16)(17,"div",23)(18,"h4",18),f.EFF(19,"Payment Hash"),f.k0s(),f.j41(20,"span",22),f.EFF(21),f.k0s()()(),f.nrm(22,"mat-divider",21),f.j41(23,"div",16)(24,"div",23)(25,"h4",18),f.EFF(26,"Node ID"),f.k0s(),f.j41(27,"span",22),f.EFF(28),f.k0s()()(),f.nrm(29,"mat-divider",21),f.k0s()),2&ot){const ht=f.XpG();f.R7$(7),f.JRh(f.i5U(8,4,1e3*(null==ht.invoice?null:ht.invoice.expiresAt),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.i5U(14,7,1e3*(null==ht.invoice?null:ht.invoice.receivedAt),"dd/MMM/y HH:mm")),f.R7$(8),f.JRh(null==ht.invoice?null:ht.invoice.paymentHash),f.R7$(7),f.JRh(null==ht.invoice?null:ht.invoice.nodeId)}}function H(ot,nt){1&ot&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function $(ot,nt){1&ot&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function Ke(ot,nt){if(1&ot){const ht=f.RV6();f.j41(0,"button",43),f.bIt("copied",function(Ye){O.eBV(ht);const fe=f.XpG();return O.Njj(fe.onCopyPayment(Ye))}),f.EFF(1,"Copy Invoice"),f.k0s()}if(2&ot){const ht=f.XpG();f.Y8G("payload",null==ht.invoice?null:ht.invoice.serialized)}}function Vt(ot,nt){if(1&ot){const ht=f.RV6();f.j41(0,"button",44),f.bIt("click",function(){O.eBV(ht);const Ye=f.XpG();return O.Njj(Ye.onClose())}),f.EFF(1,"OK"),f.k0s()}}let St=(()=>{var ot;class nt{constructor(oe,Ye,fe,Qe,gt,Gt){this.dialogRef=oe,this.data=Ye,this.logger=fe,this.commonService=Qe,this.snackBar=gt,this.store=Gt,this.faReceipt=d.Mf0,this.faExclamationTriangle=d.zpE,this.showAdvanced=!1,this.newlyAdded=!1,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=w.f7,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new v.B,new v.B,new v.B,new v.B,new v.B]}ngOnInit(){this.invoice=this.data.invoice,this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===w.f7.XS&&(this.qrWidth=220),this.store.select(e.p3).pipe((0,T.Q)(this.unSubs[0])).subscribe(oe=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(oe.version,"0.5.0")}),this.store.select(e.rN).pipe((0,T.Q)(this.unSubs[1])).subscribe(oe=>{const Ye=this.invoice.status,Qe=(oe.invoices&&oe.invoices.length>0?oe.invoices:[])?.find(gt=>gt.paymentHash===this.invoice.paymentHash)||null;Qe&&(this.invoice=Qe),Ye!==this.invoice.status&&"received"===this.invoice.status&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(oe)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onCopyPayment(oe){this.snackBar.open("Invoice copied."),this.logger.info("Copied Text: "+oe)}ngOnDestroy(){this.unSubs.forEach(oe=>{oe.next(null),oe.complete()})}static#e=ot=()=>(this.\u0275fac=function(Ye){return new(Ye||nt)(f.rXU(i.CP),f.rXU(i.Vh),f.rXU(u.gP),f.rXU(L.h),f.rXU(C.UG),f.rXU(B.il))},this.\u0275cmp=f.VBU({type:nt,selectors:[["rtl-ecl-invoice-information"]],standalone:!1,decls:68,vars:42,consts:[["hideAdvancedText",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"w-100","my-1"],[1,"overflow-wrap","foreground-secondary-text"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","end center",3,"ngClass"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],["fxFlex","40"],["fxFlex","60"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"]],template:function(Ye,fe){if(1&Ye){const Qe=f.RV6();f.j41(0,"div",1)(1,"div",2),f.DNE(2,J,1,2,"qr-code",3)(3,De,2,0,"span",4),f.k0s(),f.j41(4,"div",5)(5,"mat-card-header",6)(6,"div",7),f.nrm(7,"fa-icon",8),f.j41(8,"span",9),f.EFF(9),f.k0s()(),f.j41(10,"button",10),f.bIt("click",function(){return O.eBV(Qe),O.Njj(fe.onClose())}),f.EFF(11,"X"),f.k0s()(),f.j41(12,"mat-card-content",11)(13,"div",12)(14,"div",13),f.DNE(15,Re,1,2,"qr-code",3)(16,Xe,2,0,"span",14),f.k0s(),f.DNE(17,_e,1,1,"mat-divider",15),f.j41(18,"div",16)(19,"div",17)(20,"h4",18),f.EFF(21,"Amount Requested"),f.k0s(),f.j41(22,"span",19),f.EFF(23),f.nI1(24,"number"),f.DNE(25,he,2,0,"ng-container",20),f.k0s()(),f.j41(26,"div",17)(27,"h4",18),f.EFF(28,"Amount Settled"),f.k0s(),f.j41(29,"span",19),f.DNE(30,te,3,2,"ng-container",20)(31,F,3,2,"ng-container",20),f.k0s()()(),f.nrm(32,"mat-divider",21),f.j41(33,"div",16)(34,"div",17)(35,"h4",18),f.EFF(36,"Date Created"),f.k0s(),f.j41(37,"span",22),f.EFF(38),f.nI1(39,"date"),f.k0s()(),f.j41(40,"div",17)(41,"h4",18),f.EFF(42,"Status"),f.k0s(),f.j41(43,"span",22),f.EFF(44),f.nI1(45,"titlecase"),f.k0s()()(),f.nrm(46,"mat-divider",21),f.j41(47,"div",16)(48,"div",23)(49,"h4",18),f.EFF(50,"Description"),f.k0s(),f.j41(51,"span",19),f.EFF(52),f.k0s()()(),f.nrm(53,"mat-divider",21),f.j41(54,"div",16)(55,"div",23)(56,"h4",18),f.EFF(57,"Invoice"),f.k0s(),f.j41(58,"span",22),f.EFF(59),f.k0s()()(),f.DNE(60,ve,30,10,"div",20),f.j41(61,"div",24)(62,"button",25),f.bIt("click",function(){return O.eBV(Qe),O.Njj(fe.onShowAdvanced())}),f.DNE(63,H,2,0,"p",26)(64,$,2,0,"ng-template",null,0,f.C5r),f.k0s(),f.DNE(66,Ke,2,1,"button",27)(67,Vt,2,0,"button",28),f.k0s()()()()()}if(2&Ye){const Qe=f.sdS(65);f.R7$(),f.Y8G("fxLayoutAlign",null!=fe.invoice&&fe.invoice.serialized&&""!==(null==fe.invoice?null:fe.invoice.serialized)?"center start":"center center")("ngClass",f.eq3(33,V,fe.screenSize===fe.screenSizeEnum.XS||fe.screenSize===fe.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==fe.invoice?null:fe.invoice.serialized)&&""!==(null==fe.invoice?null:fe.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=fe.invoice&&fe.invoice.serialized)||""===(null==fe.invoice?null:fe.invoice.serialized)),f.R7$(4),f.Y8G("icon",fe.faReceipt),f.R7$(2),f.JRh(fe.screenSize===fe.screenSizeEnum.XS?fe.newlyAdded?"Created":"Invoice":fe.newlyAdded?"Invoice Created":"Invoice Information"),f.R7$(3),f.Y8G("ngClass",f.eq3(35,ce,fe.screenSize===fe.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=fe.invoice&&fe.invoice.serialized&&""!==(null==fe.invoice?null:fe.invoice.serialized)?"center start":"center center")("ngClass",f.eq3(37,V,fe.screenSize!==fe.screenSizeEnum.XS&&fe.screenSize!==fe.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==fe.invoice?null:fe.invoice.serialized)&&""!==(null==fe.invoice?null:fe.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=fe.invoice&&fe.invoice.serialized)||""===(null==fe.invoice?null:fe.invoice.serialized)),f.R7$(),f.Y8G("ngIf",fe.screenSize===fe.screenSizeEnum.XS||fe.screenSize===fe.screenSizeEnum.SM),f.R7$(6),f.SpI("",f.bMT(24,26,(null==fe.invoice?null:fe.invoice.amount)||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=fe.invoice&&fe.invoice.amount)||"0"===(null==fe.invoice?null:fe.invoice.amount)),f.R7$(5),f.Y8G("ngIf",null==fe.invoice?null:fe.invoice.amountSettled),f.R7$(),f.Y8G("ngIf",!(null!=fe.invoice&&fe.invoice.amountSettled)),f.R7$(7),f.JRh(f.i5U(39,28,1e3*(null==fe.invoice?null:fe.invoice.timestamp),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(f.bMT(45,31,null==fe.invoice?null:fe.invoice.status)),f.R7$(8),f.JRh((null==fe.invoice?null:fe.invoice.description)||"-"),f.R7$(7),f.JRh((null==fe.invoice?null:fe.invoice.serialized)||"N/A"),f.R7$(),f.Y8G("ngIf",fe.showAdvanced),f.R7$(),f.Y8G("ngClass",f.l_i(39,be,!fe.showAdvanced,fe.showAdvanced)),f.R7$(2),f.Y8G("ngIf",!fe.showAdvanced)("ngIfElse",Qe),f.R7$(3),f.Y8G("ngIf",(null==fe.invoice?null:fe.invoice.serialized)&&""!==(null==fe.invoice?null:fe.invoice.serialized)),f.R7$(),f.Y8G("ngIf",!(null!=fe.invoice&&fe.invoice.serialized)||""===(null==fe.invoice?null:fe.invoice.serialized))}},dependencies:[A.YU,A.Sq,A.bT,Pe.aY,le.$z,Ce.m2,Ce.MM,Ae.q,j.LG,W.DJ,W.sA,W.UI,G.PW,re.Um,xe.U,Ee.N,A.QX,A.PV,A.vh],encapsulation:2}))}return ot(),nt})()},190(Zt,pe,l){"use strict";l.d(pe,{$6:()=>Vt,$J:()=>F,$Q:()=>be,As:()=>ht,Br:()=>u,CK:()=>fe,DI:()=>Ee,DY:()=>xe,Do:()=>Ke,Dq:()=>St,Fd:()=>gt,GZ:()=>wt,Gy:()=>C,H2:()=>Le,Hm:()=>ye,J9:()=>ce,Jx:()=>W,L:()=>te,Lf:()=>H,NS:()=>O,O8:()=>Ye,Qj:()=>B,SM:()=>oe,Sn:()=>f,T4:()=>ee,Uj:()=>Qe,Uo:()=>re,VK:()=>Ae,WE:()=>Pt,X9:()=>e,XT:()=>Ft,Yi:()=>vi,Zi:()=>Ce,_$:()=>ot,aB:()=>Qn,ar:()=>J,b1:()=>Se,cR:()=>lt,cU:()=>De,dv:()=>ne,e8:()=>v,ed:()=>le,fy:()=>_e,ij:()=>ei,jk:()=>Ni,kv:()=>vt,lg:()=>w,mh:()=>nt,oX:()=>jt,p1:()=>T,pL:()=>Re,sq:()=>A,t0:()=>rt,t5:()=>ve,tG:()=>ke,tf:()=>V,uK:()=>Ri,vL:()=>he,w0:()=>Dt,x1:()=>L,yp:()=>G,z2:()=>Xe,zU:()=>gn});var i=l(9640),d=l(4416);const v=(0,i.VP)(d.QP.UPDATE_API_CALL_STATUS_LND,(0,i.xk)()),T=(0,i.VP)(d.QP.RESET_LND_STORE),w=(0,i.VP)(d.QP.FETCH_PAGE_SETTINGS_LND),e=(0,i.VP)(d.QP.UPDATE_SELECTED_NODE_OPTIONS),O=(0,i.VP)(d.QP.SET_PAGE_SETTINGS_LND,(0,i.xk)()),f=(0,i.VP)(d.QP.SAVE_PAGE_SETTINGS_LND,(0,i.xk)()),u=(0,i.VP)(d.QP.FETCH_INFO_LND,(0,i.xk)()),L=(0,i.VP)(d.QP.SET_INFO_LND,(0,i.xk)()),C=(0,i.VP)(d.QP.FETCH_PEERS_LND),B=(0,i.VP)(d.QP.SET_PEERS_LND,(0,i.xk)()),A=(0,i.VP)(d.QP.SAVE_NEW_PEER_LND,(0,i.xk)()),le=((0,i.VP)(d.QP.NEWLY_ADDED_PEER_LND,(0,i.xk)()),(0,i.VP)(d.QP.DETACH_PEER_LND,(0,i.xk)())),Ce=(0,i.VP)(d.QP.REMOVE_PEER_LND,(0,i.xk)()),Ae=(0,i.VP)(d.QP.SAVE_NEW_INVOICE_LND,(0,i.xk)()),W=((0,i.VP)(d.QP.NEWLY_SAVED_INVOICE_LND,(0,i.xk)()),(0,i.VP)(d.QP.ADD_INVOICE_LND,(0,i.xk)())),G=(0,i.VP)(d.QP.FETCH_FEES_LND),re=(0,i.VP)(d.QP.SET_FEES_LND,(0,i.xk)()),xe=(0,i.VP)(d.QP.FETCH_BLOCKCHAIN_BALANCE_LND),Ee=(0,i.VP)(d.QP.SET_BLOCKCHAIN_BALANCE_LND,(0,i.xk)()),V=(0,i.VP)(d.QP.FETCH_NETWORK_LND),ce=(0,i.VP)(d.QP.SET_NETWORK_LND,(0,i.xk)()),be=(0,i.VP)(d.QP.FETCH_CHANNELS_LND),ne=(0,i.VP)(d.QP.SET_CHANNELS_LND,(0,i.xk)()),J=(0,i.VP)(d.QP.FETCH_PENDING_CHANNELS_LND),De=(0,i.VP)(d.QP.SET_PENDING_CHANNELS_LND,(0,i.xk)()),Re=(0,i.VP)(d.QP.FETCH_CLOSED_CHANNELS_LND),Xe=(0,i.VP)(d.QP.SET_CLOSED_CHANNELS_LND,(0,i.xk)()),_e=(0,i.VP)(d.QP.UPDATE_CHANNEL_LND,(0,i.xk)()),he=(0,i.VP)(d.QP.SAVE_NEW_CHANNEL_LND,(0,i.xk)()),Dt=(0,i.VP)(d.QP.CLOSE_CHANNEL_LND,(0,i.xk)()),lt=(0,i.VP)(d.QP.REMOVE_CHANNEL_LND,(0,i.xk)()),Le=(0,i.VP)(d.QP.BACKUP_CHANNELS_LND,(0,i.xk)()),te=(0,i.VP)(d.QP.VERIFY_CHANNEL_LND,(0,i.xk)()),F=((0,i.VP)(d.QP.BACKUP_CHANNELS_RES_LND,(0,i.xk)()),(0,i.VP)(d.QP.VERIFY_CHANNEL_RES_LND,(0,i.xk)()),(0,i.VP)(d.QP.RESTORE_CHANNELS_LIST_LND)),ve=(0,i.VP)(d.QP.SET_RESTORE_CHANNELS_LIST_LND,(0,i.xk)()),H=(0,i.VP)(d.QP.RESTORE_CHANNELS_LND,(0,i.xk)()),Ke=((0,i.VP)(d.QP.RESTORE_CHANNELS_RES_LND,(0,i.xk)()),(0,i.VP)(d.QP.FETCH_INVOICES_LND,(0,i.xk)())),Vt=(0,i.VP)(d.QP.SET_INVOICES_LND,(0,i.xk)()),St=(0,i.VP)(d.QP.UPDATE_INVOICE_LND,(0,i.xk)()),ot=(0,i.VP)(d.QP.UPDATE_PAYMENT_LND,(0,i.xk)()),nt=(0,i.VP)(d.QP.FETCH_TRANSACTIONS_LND),ht=(0,i.VP)(d.QP.SET_TRANSACTIONS_LND,(0,i.xk)()),oe=(0,i.VP)(d.QP.FETCH_UTXOS_LND),Ye=(0,i.VP)(d.QP.SET_UTXOS_LND,(0,i.xk)()),fe=(0,i.VP)(d.QP.FETCH_PAYMENTS_LND,(0,i.xk)()),Qe=(0,i.VP)(d.QP.SET_PAYMENTS_LND,(0,i.xk)()),gt=(0,i.VP)(d.QP.SEND_PAYMENT_LND,(0,i.xk)()),rt=((0,i.VP)(d.QP.SEND_PAYMENT_STATUS_LND,(0,i.xk)()),(0,i.VP)(d.QP.FETCH_GRAPH_NODE_LND,(0,i.xk)())),Ft=((0,i.VP)(d.QP.SET_GRAPH_NODE_LND,(0,i.xk)()),(0,i.VP)(d.QP.GET_NEW_ADDRESS_LND,(0,i.xk)())),Qn=((0,i.VP)(d.QP.SET_NEW_ADDRESS_LND,(0,i.xk)()),(0,i.VP)(d.QP.SET_CHANNEL_TRANSACTION_LND,(0,i.xk)())),jt=((0,i.VP)(d.QP.SET_CHANNEL_TRANSACTION_RES_LND,(0,i.xk)()),(0,i.VP)(d.QP.GEN_SEED_LND,(0,i.xk)())),wt=((0,i.VP)(d.QP.GEN_SEED_RESPONSE_LND,(0,i.xk)()),(0,i.VP)(d.QP.INIT_WALLET_LND,(0,i.xk)())),Pt=((0,i.VP)(d.QP.INIT_WALLET_RESPONSE_LND,(0,i.xk)()),(0,i.VP)(d.QP.UNLOCK_WALLET_LND,(0,i.xk)())),gn=(0,i.VP)(d.QP.PEER_LOOKUP_LND,(0,i.xk)()),ei=(0,i.VP)(d.QP.CHANNEL_LOOKUP_LND,(0,i.xk)()),vi=(0,i.VP)(d.QP.INVOICE_LOOKUP_LND,(0,i.xk)()),Ni=(0,i.VP)(d.QP.PAYMENT_LOOKUP_LND,(0,i.xk)()),Ri=((0,i.VP)(d.QP.SET_LOOKUP_LND,(0,i.xk)()),(0,i.VP)(d.QP.GET_FORWARDING_HISTORY_LND,(0,i.xk)())),vt=(0,i.VP)(d.QP.SET_FORWARDING_HISTORY_LND,(0,i.xk)()),ee=(0,i.VP)(d.QP.GET_QUERY_ROUTES_LND,(0,i.xk)()),ye=(0,i.VP)(d.QP.SET_QUERY_ROUTES_LND,(0,i.xk)()),ke=(0,i.VP)(d.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),Se=(0,i.VP)(d.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,(0,i.xk)())},9579(Zt,pe,l){"use strict";l.d(pe,{L:()=>ce});var i=l(1747),d=l(1413),v=l(7673),T=l(9437),w=l(6354),e=l(1397),O=l(6977),f=l(3993),u=l(6391),L=l(2462),C=l(4416),B=l(1771),A=l(190),Pe=l(3536),le=l(2615),Ce=l(9330),Ae=l(9640),j=l(8570),W=l(2571),G=l(3202),re=l(1585),xe=l(3694),Ee=l(7879),V=l(7303);let ce=(()=>{var be;class ne{constructor(De,Re,Xe,_e,he,Dt,lt,Le,te,ie){this.actions=De,this.httpClient=Re,this.store=Xe,this.logger=_e,this.commonService=he,this.sessionService=Dt,this.dialog=lt,this.router=Le,this.wsService=te,this.location=ie,this.CHILD_API_URL=C.H$+"/lnd",this.invoicesPageSettings=C.ZC.find(P=>"transactions"===P.pageId)?.tables.find(P=>"invoices"===P.tableId),this.paymentsPageSettings=C.ZC.find(P=>"transactions"===P.pageId)?.tables.find(P=>"payments"===P.tableId),this.flgInitialized=!1,this.unSubs=[new d.B,new d.B],this.infoFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_INFO_LND),(0,e.Z)(P=>(this.flgInitialized=!1,this.store.dispatch((0,B.My)({payload:this.CHILD_API_URL})),this.store.dispatch((0,B.Jh)()),this.store.dispatch((0,B.mt)({payload:C.MZ.GET_NODE_INFO})),this.store.dispatch((0,A.e8)({payload:{action:"FetchInfo",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.GETINFO_API).pipe((0,O.Q)(this.actions.pipe((0,i.gp)(C.aU.SET_SELECTED_NODE))),(0,w.T)(F=>(this.logger.info(F),F.chains&&F.chains.length&&F.chains[0]&&("string"==typeof F.chains[0]&&F.chains[0].toLowerCase().indexOf("bitcoin")<0||"object"==typeof F.chains[0]&&F.chains[0].hasOwnProperty("chain")&&F.chains[0].chain&&F.chains[0].chain.toLowerCase().indexOf("bitcoin")<0)?(this.store.dispatch((0,A.e8)({payload:{action:"FetchInfo",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.Jh)()),this.store.dispatch((0,B.xO)({payload:{data:{type:C.A$.ERROR,alertTitle:"Shitcoin Found",titleMessage:"Sorry Not Sorry, RTL is Bitcoin Only!"}}})),{type:C.aU.LOGOUT}):F.identity_pubkey?(F.lnImplementation="LND",this.initializeRemainingData(F,P.payload.loadPage),this.store.dispatch((0,A.e8)({payload:{action:"FetchInfo",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.Jh)()),{type:C.QP.SET_INFO_LND,payload:F||{}}):(this.store.dispatch((0,A.e8)({payload:{action:"FetchInfo",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.Jh)()),this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),{type:C.QP.SET_INFO_LND,payload:{}}))),(0,T.W)(F=>{if("string"==typeof F.error.error&&F.error.error.includes("Not Found")||"string"==typeof F.error.error&&F.error.error.includes("wallet locked")||502===F.status&&!F.error.message.includes("Bad or Missing Macaroon"))this.sessionService.removeItem("lndUnlocked"),this.logger.info("Redirecting to Unlock"),this.router.navigate(["/lnd/wallet"]),this.handleErrorWithoutAlert("FetchInfo",C.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",F);else if("string"==typeof F.error.error&&F.error.error.includes("starting up")&&500===F.status)setTimeout(()=>{this.store.dispatch((0,A.Br)({payload:{loadPage:"HOME"}}))},2e3);else{const ve=this.commonService.extractErrorCode(F),H=503===ve?"Unable to Connect to LND Server.":this.commonService.extractErrorMessage(F);this.router.navigate(["/error"],{state:{errorCode:ve,errorMessage:H}}),this.handleErrorWithoutAlert("FetchInfo",C.MZ.GET_NODE_INFO,"Fetching Node Info Failed.",{status:ve,error:H})}return(0,v.of)({type:C.aU.VOID})})))))),this.peersFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_PEERS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchPeers",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.PEERS_API).pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchPeers",status:C.wn.COMPLETED}})),{type:C.QP.SET_PEERS_LND,payload:P||[]})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchPeers",C.MZ.NO_SPINNER,"Fetching Peers Failed.",P),(0,v.of)({type:C.aU.VOID})))))))),this.saveNewPeer=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SAVE_NEW_PEER_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.CONNECT_PEER})),this.store.dispatch((0,A.e8)({payload:{action:"SaveNewPeer",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.PEERS_API,{pubkey:P.payload.pubkey,host:P.payload.host,perm:P.payload.perm}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"SaveNewPeer",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:C.MZ.CONNECT_PEER})),this.store.dispatch((0,A.Qj)({payload:F||[]})),{type:C.QP.NEWLY_ADDED_PEER_LND,payload:{peer:F[0]}})),(0,T.W)(F=>(this.handleErrorWithoutAlert("SaveNewPeer",C.MZ.CONNECT_PEER,"Peer Connection Failed.",F),(0,v.of)({type:C.aU.VOID})))))))),this.detachPeer=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.DETACH_PEER_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.DISCONNECT_PEER})),this.httpClient.delete(this.CHILD_API_URL+C.rl.PEERS_API+"/"+P.payload.pubkey).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.DISCONNECT_PEER})),this.store.dispatch((0,B.UI)({payload:"Peer Disconnected Successfully."})),{type:C.QP.REMOVE_PEER_LND,payload:{pubkey:P.payload.pubkey}})),(0,T.W)(F=>(this.handleErrorWithAlert("DetachPeer",C.MZ.DISCONNECT_PEER,"Unable to Detach Peer. Try again later.",this.CHILD_API_URL+C.rl.PEERS_API+"/"+P.payload.pubkey,F),(0,v.of)({type:C.aU.VOID})))))))),this.saveNewInvoice=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SAVE_NEW_INVOICE_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"SaveNewInvoice",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.INVOICES_API,{memo:P.payload.memo,value:P.payload.value,private:P.payload.private,expiry:P.payload.expiry,is_amp:P.payload.is_amp}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"SaveNewInvoice",status:C.wn.COMPLETED}})),this.store.dispatch((0,A.Do)({payload:{num_max_invoices:P.payload.pageSize,reversed:!0}})),P.payload.openModal?(F.memo=P.payload.memo,F.value=P.payload.value,F.expiry=P.payload.expiry,F.private=P.payload.private,F.is_amp=P.payload.is_amp,F.cltv_expiry="144",F.creation_date=Math.round((new Date).getTime()/1e3).toString(),setTimeout(()=>{this.store.dispatch((0,B.xO)({payload:{data:{invoice:F,newlyAdded:!0,component:u.H}}}))},200),{type:C.aU.CLOSE_SPINNER,payload:P.payload.uiMessage}):{type:C.QP.NEWLY_SAVED_INVOICE_LND,payload:{paymentRequest:F.payment_request}})),(0,T.W)(F=>(this.handleErrorWithoutAlert("SaveNewInvoice",P.payload.uiMessage,"Add Invoice Failed.",F),(0,v.of)({type:C.aU.VOID})))))))),this.openNewChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SAVE_NEW_CHANNEL_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.OPEN_CHANNEL})),this.store.dispatch((0,A.e8)({payload:{action:"SaveNewChannel",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.CHANNELS_API,{node_pubkey:P.payload.selectedPeerPubkey,local_funding_amount:P.payload.fundingAmount,private:P.payload.private,trans_type:P.payload.transType,trans_type_value:P.payload.transTypeValue,spend_unconfirmed:P.payload.spendUnconfirmed,commitment_type:P.payload.commitmentType}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"SaveNewChannel",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:C.MZ.OPEN_CHANNEL})),this.store.dispatch((0,A.DY)()),this.store.dispatch((0,A.$Q)()),this.store.dispatch((0,A.H2)({payload:{uiMessage:C.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:"Channel Added Successfully!"}})),{type:C.QP.FETCH_PENDING_CHANNELS_LND})),(0,T.W)(F=>(this.handleErrorWithoutAlert("SaveNewChannel",C.MZ.OPEN_CHANNEL,"Opening Channel Failed.",F),(0,v.of)({type:C.aU.VOID})))))))),this.updateChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.UPDATE_CHANNEL_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.UPDATE_CHAN_POLICY})),this.httpClient.post(this.CHILD_API_URL+C.rl.CHANNELS_API+"/chanPolicy",{baseFeeMsat:P.payload.baseFeeMsat,feeRate:P.payload.feeRate,timeLockDelta:P.payload.timeLockDelta,max_htlc_msat:P.payload.maxHtlcMsat,min_htlc_msat:P.payload.minHtlcMsat,chanPoint:P.payload.chanPoint}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.UPDATE_CHAN_POLICY})),this.store.dispatch((0,B.UI)("all"===P.payload.chanPoint?{payload:"All Channels Updated Successfully."}:{payload:"Channel Updated Successfully!"})),{type:C.QP.FETCH_CHANNELS_LND})),(0,T.W)(F=>(this.handleErrorWithAlert("UpdateChannels",C.MZ.UPDATE_CHAN_POLICY,"Update Channel Failed",this.CHILD_API_URL+C.rl.CHANNELS_API+"/chanPolicy",F),(0,v.of)({type:C.aU.VOID})))))))),this.closeChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.CLOSE_CHANNEL_LND),(0,e.Z)(P=>{this.store.dispatch((0,B.mt)({payload:P.payload.forcibly?C.MZ.FORCE_CLOSE_CHANNEL:C.MZ.CLOSE_CHANNEL}));let F=this.CHILD_API_URL+C.rl.CHANNELS_API+"/"+P.payload.channelPoint+"?force="+P.payload.forcibly;return P.payload.targetConf&&(F=F+"&target_conf="+P.payload.targetConf),P.payload.satPerVByte&&(F=F+"&sat_per_vbyte="+P.payload.satPerVByte),this.httpClient.delete(F).pipe((0,w.T)(ve=>(this.logger.info(ve),this.store.dispatch((0,B.y0)({payload:P.payload.forcibly?C.MZ.FORCE_CLOSE_CHANNEL:C.MZ.CLOSE_CHANNEL})),this.store.dispatch((0,A.$Q)()),this.store.dispatch((0,A.ar)()),this.store.dispatch((0,A.H2)({payload:{uiMessage:C.MZ.NO_SPINNER,channelPoint:"ALL",showMessage:ve.message}})),{type:C.aU.VOID})),(0,T.W)(ve=>(this.handleErrorWithAlert("CloseChannel",P.payload.forcibly?C.MZ.FORCE_CLOSE_CHANNEL:C.MZ.CLOSE_CHANNEL,"Unable to Close Channel. Try again later.",this.CHILD_API_URL+C.rl.CHANNELS_API+"/"+P.payload.channelPoint+"?force="+P.payload.forcibly,ve),(0,v.of)({type:C.aU.VOID}))))}))),this.backupChannels=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.BACKUP_CHANNELS_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"BackupChannels",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/"+P.payload.channelPoint).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"BackupChannels",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:P.payload.uiMessage})),this.store.dispatch((0,B.UI)({payload:P.payload.showMessage+" "+F.message})),{type:C.QP.BACKUP_CHANNELS_RES_LND,payload:F.message})),(0,T.W)(F=>(this.handleErrorWithAlert("BackupChannels",P.payload.uiMessage,P.payload.showMessage+" Unable to Backup Channel. Try again later.",this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/"+P.payload.channelPoint,F),(0,v.of)({type:C.aU.VOID})))))))),this.verifyChannel=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.VERIFY_CHANNEL_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,A.e8)({payload:{action:"VerifyChannel",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/verify/"+P.payload.channelPoint,{}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"VerifyChannel",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:C.MZ.VERIFY_CHANNEL})),this.store.dispatch((0,B.UI)({payload:F.message})),{type:C.QP.VERIFY_CHANNEL_RES_LND,payload:F.message})),(0,T.W)(F=>(this.handleErrorWithAlert("VerifyChannel",C.MZ.VERIFY_CHANNEL,"Unable to Verify Channel. Try again later.",this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/verify/"+P.payload.channelPoint,F),(0,v.of)({type:C.aU.VOID})))))))),this.restoreChannels=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.RESTORE_CHANNELS_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,A.e8)({payload:{action:"RestoreChannels",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/restore/"+P.payload.channelPoint,{}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"RestoreChannels",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:C.MZ.RESTORE_CHANNEL})),this.store.dispatch((0,B.UI)({payload:F.message})),this.store.dispatch((0,A.t5)({payload:F.list})),{type:C.QP.RESTORE_CHANNELS_RES_LND,payload:F.message})),(0,T.W)(F=>(this.handleErrorWithAlert("RestoreChannels",C.MZ.RESTORE_CHANNEL,"Unable to Restore Channel. Try again later.",this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/restore/"+P.payload.channelPoint,F),(0,v.of)({type:C.aU.VOID})))))))),this.fetchFees=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_FEES_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchFees",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.FEES_API))),(0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchFees",status:C.wn.COMPLETED}})),P.forwarding_events_history&&(this.store.dispatch((0,A.kv)({payload:P.forwarding_events_history})),delete P.forwarding_events_history),{type:C.QP.SET_FEES_LND,payload:P||{}})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchFees",C.MZ.NO_SPINNER,"Fetching Fees Failed.",P),(0,v.of)({type:C.aU.VOID}))))),this.balanceBlockchainFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_BLOCKCHAIN_BALANCE_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchBalance",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.BALANCE_API))),(0,w.T)(P=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchBalance",status:C.wn.COMPLETED}})),this.logger.info(P),{type:C.QP.SET_BLOCKCHAIN_BALANCE_LND,payload:P||{total_balance:""}})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchBalance",C.MZ.NO_SPINNER,"Fetching Blockchain Balance Failed.",P),(0,v.of)({type:C.aU.VOID}))))),this.networkInfoFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_NETWORK_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchNetwork",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.NETWORK_API+"/info"))),(0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchNetwork",status:C.wn.COMPLETED}})),{type:C.QP.SET_NETWORK_LND,payload:P||{}})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchNetwork",C.MZ.NO_SPINNER,"Fetching Network Failed.",P),(0,v.of)({type:C.aU.VOID}))))),this.channelsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_CHANNELS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchChannels",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.CHANNELS_API).pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchChannels",status:C.wn.COMPLETED}})),{type:C.QP.SET_CHANNELS_LND,payload:P.channels||[]})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchChannels",C.MZ.NO_SPINNER,"Fetching Channels Failed.",P),(0,v.of)({type:C.aU.VOID})))))))),this.channelsPendingFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_PENDING_CHANNELS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchPendingChannels",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.CHANNELS_API+"/pending").pipe((0,w.T)(P=>{this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchPendingChannels",status:C.wn.COMPLETED}}));const F={open:{num_channels:0,limbo_balance:0},closing:{num_channels:0,limbo_balance:0},force_closing:{num_channels:0,limbo_balance:0},waiting_close:{num_channels:0,limbo_balance:0},total_channels:0,total_limbo_balance:0};return P&&(F.total_limbo_balance=P.total_limbo_balance,P.pending_closing_channels&&(F.closing.num_channels=P.pending_closing_channels.length,F.total_channels=F.total_channels+P.pending_closing_channels.length,P.pending_closing_channels.forEach(ve=>{F.closing.limbo_balance=+F.closing.limbo_balance+(ve.channel.local_balance?+ve.channel.local_balance:0)})),P.pending_force_closing_channels&&(F.force_closing.num_channels=P.pending_force_closing_channels.length,F.total_channels=F.total_channels+P.pending_force_closing_channels.length,P.pending_force_closing_channels.forEach(ve=>{F.force_closing.limbo_balance=+F.force_closing.limbo_balance+(ve.channel.local_balance?+ve.channel.local_balance:0)})),P.pending_open_channels&&(F.open.num_channels=P.pending_open_channels.length,F.total_channels=F.total_channels+P.pending_open_channels.length,P.pending_open_channels.forEach(ve=>{F.open.limbo_balance=+F.open.limbo_balance+(ve.channel.local_balance?+ve.channel.local_balance:0)})),P.waiting_close_channels&&(F.waiting_close.num_channels=P.waiting_close_channels.length,F.total_channels=F.total_channels+P.waiting_close_channels.length,P.waiting_close_channels.forEach(ve=>{F.waiting_close.limbo_balance=+F.waiting_close.limbo_balance+(ve.channel.local_balance?+ve.channel.local_balance:0)}))),{type:C.QP.SET_PENDING_CHANNELS_LND,payload:P?{pendingChannels:P,pendingChannelsSummary:F}:{pendingChannels:{},pendingChannelsSummary:F}}}),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchPendingChannels",C.MZ.NO_SPINNER,"Fetching Pending Channels Failed.",P),(0,v.of)({type:C.aU.VOID})))))))),this.channelsClosedFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_CLOSED_CHANNELS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchClosedChannels",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.CHANNELS_API+"/closed").pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchClosedChannels",status:C.wn.COMPLETED}})),{type:C.QP.SET_CLOSED_CHANNELS_LND,payload:P.channels||[]})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchClosedChannels",C.MZ.NO_SPINNER,"Fetching Closed Channels Failed.",P),(0,v.of)({type:C.aU.VOID})))))))),this.invoicesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_INVOICES_LND),(0,e.Z)(P=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchInvoices",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.INVOICES_API+"?num_max_invoices="+(P.payload.num_max_invoices?P.payload.num_max_invoices:100)+"&index_offset="+(P.payload.index_offset?P.payload.index_offset:0)+"&reversed="+(!!P.payload.reversed&&P.payload.reversed)).pipe((0,w.T)($=>(this.logger.info($),this.store.dispatch((0,A.e8)({payload:{action:"FetchInvoices",status:C.wn.COMPLETED}})),P.payload.reversed&&!P.payload.index_offset&&($.total_invoices=+($.last_index_offset||0)),{type:C.QP.SET_INVOICES_LND,payload:$})),(0,T.W)($=>(this.handleErrorWithoutAlert("FetchInvoices",C.MZ.NO_SPINNER,"Fetching Invoices Failed.",$),(0,v.of)({type:C.aU.VOID})))))))),this.transactionsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_TRANSACTIONS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchTransactions",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.TRANSACTIONS_API))),(0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchTransactions",status:C.wn.COMPLETED}})),{type:C.QP.SET_TRANSACTIONS_LND,payload:P||[]})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchTransactions",C.MZ.NO_SPINNER,"Fetching Transactions Failed.",P),(0,v.of)({type:C.aU.VOID}))))),this.utxosFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_UTXOS_LND),(0,f.E)(this.store.select(Pe.pI)),(0,e.Z)(([P,F])=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchUTXOs",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.WALLET_API+"/getUTXOs?max_confs="+(F&&F.block_height?F.block_height:1e9)))),(0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchUTXOs",status:C.wn.COMPLETED}})),{type:C.QP.SET_UTXOS_LND,payload:P||[]})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchUTXOs",C.MZ.NO_SPINNER,"Fetching UTXOs Failed.",P),(0,v.of)({type:C.aU.VOID}))))),this.paymentsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_PAYMENTS_LND),(0,e.Z)(P=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchPayments",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.PAYMENTS_API+"?max_payments="+(P.payload.max_payments?P.payload.max_payments:100)+"&index_offset="+(P.payload.index_offset?P.payload.index_offset:0)+"&reversed="+(!!P.payload.reversed&&P.payload.reversed)).pipe((0,w.T)($=>(this.logger.info($),this.store.dispatch((0,A.e8)({payload:{action:"FetchPayments",status:C.wn.COMPLETED}})),this.commonService.sortByKey($.payments||[],this.paymentsPageSettings?.sortBy||"creation_date","number",this.paymentsPageSettings?.sortOrder),{type:C.QP.SET_PAYMENTS_LND,payload:$})),(0,T.W)($=>(this.handleErrorWithoutAlert("FetchPayments",C.MZ.NO_SPINNER,"Fetching Payments Failed.",$),(0,v.of)({type:C.QP.SET_PAYMENTS_LND,payload:{payments:[]}})))))))),this.sendPayment=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SEND_PAYMENT_LND),(0,e.Z)(P=>{this.store.dispatch((0,B.mt)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"SendPayment",status:C.wn.INITIATED}}));const F=JSON.parse(JSON.stringify(P.payload));return delete F.uiMessage,delete F.fromDialog,this.httpClient.post(this.CHILD_API_URL+C.rl.PAYMENTS_API+"/send",F).pipe((0,w.T)(ve=>{if(this.logger.info(ve),this.store.dispatch((0,B.y0)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"SendPayment",status:C.wn.COMPLETED}})),ve.payment_error)return P.payload.allow_self_payment?(this.store.dispatch((0,A.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),{type:C.QP.SEND_PAYMENT_STATUS_LND,payload:ve}):(P.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed.",ve.payment_error):this.handleErrorWithAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+C.rl.CHANNELS_API+"/transactions",ve.payment_error),{type:C.aU.VOID});if(this.store.dispatch((0,B.y0)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"SendPayment",status:C.wn.COMPLETED}})),this.store.dispatch((0,A.$Q)()),this.store.dispatch((0,A.CK)({payload:{max_payments:this.paymentsPageSettings?.recordsPerPage,reversed:!0}})),P.payload.allow_self_payment)this.store.dispatch((0,A.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}));else{let H="Payment Sent Successfully.";ve.payment_route&&ve.payment_route.total_fees_msat&&(H="Payment sent successfully with the total fee "+ve.payment_route.total_fees_msat+" (mSats)."),this.store.dispatch((0,B.UI)({payload:H}))}return{type:C.QP.SEND_PAYMENT_STATUS_LND,payload:ve}}),(0,T.W)(ve=>(this.logger.error("Error: "+JSON.stringify(ve)),P.payload.allow_self_payment?(this.handleErrorWithoutAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed.",ve),this.store.dispatch((0,A.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}})),(0,v.of)({type:C.QP.SEND_PAYMENT_STATUS_LND,payload:{error:this.commonService.extractErrorMessage(ve)}})):(P.payload.fromDialog?this.handleErrorWithoutAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed.",ve):this.handleErrorWithAlert("SendPayment",P.payload.uiMessage,"Send Payment Failed",this.CHILD_API_URL+C.rl.CHANNELS_API+"/transactions",ve),(0,v.of)({type:C.aU.VOID})))))}))),this.graphNodeFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_GRAPH_NODE_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,A.e8)({payload:{action:"FetchGraphNode",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.NETWORK_API+"/node/"+P.payload.pubkey).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.GET_NODE_ADDRESS})),this.store.dispatch((0,A.e8)({payload:{action:"FetchGraphNode",status:C.wn.COMPLETED}})),{type:C.QP.SET_GRAPH_NODE_LND,payload:F&&F.node?{node:F.node}:{node:null}})),(0,T.W)(F=>(this.handleErrorWithoutAlert("FetchGraphNode",C.MZ.GET_NODE_ADDRESS,"Fetching Graph Node Failed.",F),(0,v.of)({type:C.aU.VOID})))))))),this.setGraphNode=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SET_GRAPH_NODE_LND),(0,w.T)(P=>(this.logger.info(P.payload),P.payload))),{dispatch:!1}),this.getNewAddress=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.GET_NEW_ADDRESS_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.GENERATE_NEW_ADDRESS})),this.httpClient.get(this.CHILD_API_URL+C.rl.NEW_ADDRESS_API+"?type="+P.payload.addressId).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.GENERATE_NEW_ADDRESS})),{type:C.QP.SET_NEW_ADDRESS_LND,payload:F&&F.address?F.address:{}})),(0,T.W)(F=>(this.handleErrorWithAlert("GetNewAddress",C.MZ.GENERATE_NEW_ADDRESS,"Generate New Address Failed",this.CHILD_API_URL+C.rl.NEW_ADDRESS_API+"?type="+P.payload.addressId,F),(0,v.of)({type:C.aU.VOID})))))))),this.setNewAddress=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SET_NEW_ADDRESS_LND),(0,w.T)(P=>(this.logger.info(P.payload),P.payload))),{dispatch:!1}),this.SetChannelTransaction=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SET_CHANNEL_TRANSACTION_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.SEND_FUNDS})),this.store.dispatch((0,A.e8)({payload:{action:"SetChannelTransaction",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.TRANSACTIONS_API,{amount:P.payload.amount,address:P.payload.address,sendAll:P.payload.sendAll,fees:P.payload.fees,blocks:P.payload.blocks}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"SetChannelTransaction",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:C.MZ.SEND_FUNDS})),this.store.dispatch((0,A.mh)()),this.store.dispatch((0,A.DY)()),this.store.dispatch((0,A.$Q)()),{type:C.QP.SET_CHANNEL_TRANSACTION_RES_LND,payload:F})),(0,T.W)(F=>(this.handleErrorWithoutAlert("SetChannelTransaction",C.MZ.SEND_FUNDS,"Sending Fund Failed.",F),(0,v.of)({type:C.aU.VOID})))))))),this.fetchForwardingHistory=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.GET_FORWARDING_HISTORY_LND),(0,e.Z)(P=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchForwardingHistory",status:C.wn.INITIATED}})),this.httpClient.post(this.CHILD_API_URL+C.rl.SWITCH_API,{num_max_events:P.payload.num_max_events,index_offset:P.payload.index_offset,end_time:P.payload.end_time,start_time:P.payload.start_time}).pipe((0,w.T)(ve=>(this.logger.info(ve),this.store.dispatch((0,A.e8)({payload:{action:"FetchForwardingHistory",status:C.wn.COMPLETED}})),{type:C.QP.SET_FORWARDING_HISTORY_LND,payload:ve})),(0,T.W)(ve=>(this.handleErrorWithAlert("FetchForwardingHistory",C.MZ.NO_SPINNER,"Get Forwarding History Failed",this.CHILD_API_URL+C.rl.SWITCH_API,ve),(0,v.of)({type:C.aU.VOID})))))))),this.queryRoutesFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.GET_QUERY_ROUTES_LND),(0,e.Z)(P=>this.httpClient.get(this.CHILD_API_URL+C.rl.NETWORK_API+"/routes/"+P.payload.destPubkey+"/"+P.payload.amount).pipe((0,w.T)(ve=>(this.logger.info(ve),{type:C.QP.SET_QUERY_ROUTES_LND,payload:ve})),(0,T.W)(ve=>(this.store.dispatch((0,A.Hm)({payload:{routes:[]}})),this.handleErrorWithAlert("GetQueryRoutes",C.MZ.NO_SPINNER,"Get Query Routes Failed",this.CHILD_API_URL+C.rl.NETWORK_API,ve),(0,v.of)({type:C.aU.VOID}))))))),this.setQueryRoutes=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SET_QUERY_ROUTES_LND),(0,w.T)(P=>P.payload)),{dispatch:!1}),this.genSeed=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.GEN_SEED_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.GEN_SEED})),this.httpClient.get(this.CHILD_API_URL+C.rl.WALLET_API+"/genseed/"+P.payload).pipe((0,w.T)(F=>(this.logger.info("Generated GenSeed!"),this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.GEN_SEED})),{type:C.QP.GEN_SEED_RESPONSE_LND,payload:F.cipher_seed_mnemonic})),(0,T.W)(F=>(this.handleErrorWithAlert("GenSeed",C.MZ.GEN_SEED,"Genseed Generation Failed",this.CHILD_API_URL+C.rl.WALLET_API+"/genseed/"+P.payload,F),(0,v.of)({type:C.aU.VOID})))))))),this.updateSelNodeOptions=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.UPDATE_SELECTED_NODE_OPTIONS),(0,e.Z)(()=>this.httpClient.get(this.CHILD_API_URL+C.rl.WALLET_API+"/updateSelNodeOptions").pipe((0,w.T)(P=>(this.logger.info("Update Sel Node Successfull"),this.logger.info(P),{type:C.aU.VOID})),(0,T.W)(P=>(this.handleErrorWithAlert("UpdateSelectedNodeOptions",C.MZ.NO_SPINNER,"Update macaroon for newly initialized node failed! Please check the macaroon path and restart the server!","Update Macaroon",P),(0,v.of)({type:C.aU.VOID}))))))),this.genSeedResponse=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.GEN_SEED_RESPONSE_LND),(0,w.T)(P=>P.payload)),{dispatch:!1}),this.initWalletRes=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.INIT_WALLET_RESPONSE_LND),(0,w.T)(P=>P.payload)),{dispatch:!1}),this.initWallet=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.INIT_WALLET_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.INITIALIZE_WALLET})),this.httpClient.post(this.CHILD_API_URL+C.rl.WALLET_API+"/wallet/initwallet",{wallet_password:P.payload.pwd,cipher_seed_mnemonic:P.payload.cipher?P.payload.cipher:"",aezeed_passphrase:P.payload.passphrase?P.payload.passphrase:""}).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.INITIALIZE_WALLET})),{type:C.QP.INIT_WALLET_RESPONSE_LND,payload:F})),(0,T.W)(F=>(this.handleErrorWithAlert("InitWallet",C.MZ.INITIALIZE_WALLET,"Wallet Initialization Failed",this.CHILD_API_URL+C.rl.WALLET_API+"/initwallet",F),(0,v.of)({type:C.aU.VOID})))))))),this.unlockWallet=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.UNLOCK_WALLET_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.UNLOCK_WALLET})),this.httpClient.post(this.CHILD_API_URL+C.rl.WALLET_API+"/wallet/unlockwallet",{wallet_password:P.payload.pwd}).pipe((0,w.T)(F=>(this.logger.info(F),this.logger.info("Successfully Unlocked!"),this.sessionService.setItem("lndUnlocked","true"),this.store.dispatch((0,B.y0)({payload:C.MZ.UNLOCK_WALLET})),this.store.dispatch((0,B.mt)({payload:C.MZ.WAIT_SYNC_NODE})),setTimeout(()=>{this.store.dispatch((0,B.y0)({payload:C.MZ.WAIT_SYNC_NODE})),this.store.dispatch((0,A.Br)({payload:{loadPage:"HOME"}}))},5e3),{type:C.aU.VOID})),(0,T.W)(F=>(this.handleErrorWithAlert("UnlockWallet",C.MZ.UNLOCK_WALLET,"Unlock Wallet Failed",this.CHILD_API_URL+C.rl.WALLET_API+"/unlockwallet",F),(0,v.of)({type:C.aU.VOID}))))))),{dispatch:!1}),this.peerLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.PEER_LOOKUP_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.SEARCHING_NODE})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.NETWORK_API+"/node/"+P.payload).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.SEARCHING_NODE})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.COMPLETED}})),{type:C.QP.SET_LOOKUP_LND,payload:F})),(0,T.W)(F=>(this.handleErrorWithAlert("Lookup",C.MZ.SEARCHING_NODE,"Peer Lookup Failed",this.CHILD_API_URL+C.rl.NETWORK_API+"/node/"+P.payload,F),(0,v.of)({type:C.aU.VOID})))))))),this.channelLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.CHANNEL_LOOKUP_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.NETWORK_API+"/edge/"+P.payload.channelID).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:P.payload.uiMessage})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.COMPLETED}})),{type:C.QP.SET_LOOKUP_LND,payload:F})),(0,T.W)(F=>(this.handleErrorWithAlert("Lookup",P.payload.uiMessage,"Channel Lookup Failed",this.CHILD_API_URL+C.rl.NETWORK_API+"/edge/"+P.payload.channelID,F),(0,v.of)({type:C.aU.VOID})))))))),this.invoiceLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.INVOICE_LOOKUP_LND),(0,e.Z)(P=>{this.store.dispatch((0,B.mt)({payload:C.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.INITIATED}}));let F=this.CHILD_API_URL+C.rl.INVOICES_API+"/lookup";return F=P.payload.paymentAddress&&""!==P.payload.paymentAddress?F+"?payment_addr="+P.payload.paymentAddress:F+"?payment_hash="+P.payload.paymentHash,this.httpClient.get(F).pipe((0,w.T)(ve=>(this.logger.info(ve),this.store.dispatch((0,B.y0)({payload:C.MZ.SEARCHING_INVOICE})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.COMPLETED}})),this.store.dispatch((0,A.Dq)({payload:ve})),{type:C.QP.SET_LOOKUP_LND,payload:ve})),(0,T.W)(ve=>(this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",C.MZ.SEARCHING_INVOICE,"Invoice Lookup Failed",ve),P.payload.openSnackBar&&this.store.dispatch((0,B.UI)({payload:{message:"Invoice Refresh Failed.",type:"ERROR"}})),(0,v.of)({type:C.QP.SET_LOOKUP_LND,payload:{error:ve}}))))}))),this.paymentLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.PAYMENT_LOOKUP_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.PAYMENTS_API+"/lookup/"+P.payload).pipe((0,w.T)(F=>(this.logger.info(F),this.store.dispatch((0,B.y0)({payload:C.MZ.SEARCHING_PAYMENT})),this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.COMPLETED}})),this.store.dispatch((0,A._$)({payload:F})),{type:C.QP.SET_LOOKUP_LND,payload:F})),(0,T.W)(F=>(this.store.dispatch((0,A.e8)({payload:{action:"Lookup",status:C.wn.ERROR}})),this.handleErrorWithoutAlert("Lookup",C.MZ.SEARCHING_PAYMENT,"Payment Lookup Failed",F),(0,v.of)({type:C.QP.SET_LOOKUP_LND,payload:{error:F}})))))))),this.setLookup=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SET_LOOKUP_LND),(0,w.T)(P=>(this.logger.info(P.payload),P.payload))),{dispatch:!1}),this.getRestoreChannelList=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.RESTORE_CHANNELS_LIST_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"RestoreChannelsList",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API+"/restore/list").pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"RestoreChannelsList",status:C.wn.COMPLETED}})),{type:C.QP.SET_RESTORE_CHANNELS_LIST_LND,payload:P||{all_restore_exists:!1,files:[]}})),(0,T.W)(P=>(this.handleErrorWithAlert("RestoreChannelsList",C.MZ.NO_SPINNER,"Restore Channels List Failed",this.CHILD_API_URL+C.rl.CHANNELS_BACKUP_API,P),(0,v.of)({type:C.aU.VOID})))))))),this.setRestoreChannelList=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SET_RESTORE_CHANNELS_LIST_LND),(0,w.T)(P=>(this.logger.info(P.payload),P.payload))),{dispatch:!1}),this.allLightningTransactionsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.GET_ALL_LIGHTNING_TRANSATIONS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchLightningTransactions",status:C.wn.INITIATED}})),this.httpClient.get(this.CHILD_API_URL+C.rl.PAYMENTS_API+"/alltransactions").pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchLightningTransactions",status:C.wn.COMPLETED}})),{type:C.QP.SET_ALL_LIGHTNING_TRANSATIONS_LND,payload:P})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchLightningTransactions",C.MZ.NO_SPINNER,"Fetching All Lightning Transaction Failed.",P),(0,v.of)({type:C.aU.VOID})))))))),this.pageSettingsFetch=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.FETCH_PAGE_SETTINGS_LND),(0,e.Z)(()=>(this.store.dispatch((0,A.e8)({payload:{action:"FetchPageSettings",status:C.wn.INITIATED}})),this.httpClient.get(C.rl.PAGE_SETTINGS_API).pipe((0,w.T)(P=>(this.logger.info(P),this.store.dispatch((0,A.e8)({payload:{action:"FetchPageSettings",status:C.wn.COMPLETED}})),this.invoicesPageSettings=P&&Object.keys(P).length>0?P.find(F=>"transactions"===F.pageId)?.tables.find(F=>"invoices"===F.tableId):C.ZC.find(F=>"transactions"===F.pageId)?.tables.find(F=>"invoices"===F.tableId),this.paymentsPageSettings=P&&Object.keys(P).length>0?P.find(F=>"transactions"===F.pageId)?.tables.find(F=>"payments"===F.tableId):C.ZC.find(F=>"transactions"===F.pageId)?.tables.find(F=>"payments"===F.tableId),{type:C.QP.SET_PAGE_SETTINGS_LND,payload:P||[]})),(0,T.W)(P=>(this.handleErrorWithoutAlert("FetchPageSettings",C.MZ.NO_SPINNER,"Fetching Page Settings Failed.",P),(0,v.of)({type:C.aU.VOID})))))))),this.savePageSettings=(0,i.EH)(()=>this.actions.pipe((0,i.gp)(C.QP.SAVE_PAGE_SETTINGS_LND),(0,e.Z)(P=>(this.store.dispatch((0,B.mt)({payload:C.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,A.e8)({payload:{action:"SavePageSettings",status:C.wn.INITIATED}})),this.httpClient.post(C.rl.PAGE_SETTINGS_API,P.payload).pipe((0,w.T)(F=>{this.logger.info(F),this.store.dispatch((0,A.e8)({payload:{action:"SavePageSettings",status:C.wn.COMPLETED}})),this.store.dispatch((0,B.y0)({payload:C.MZ.UPDATE_PAGE_SETTINGS})),this.store.dispatch((0,B.UI)({payload:"Page Layout Updated Successfully!"}));const ve=(F.find($=>"transactions"===$.pageId)?.tables.find($=>"invoices"===$.tableId)||C.ZC.find($=>"transactions"===$.pageId)?.tables.find($=>"invoices"===$.tableId)).recordsPerPage,H=(F.find($=>"transactions"===$.pageId)?.tables.find($=>"payments"===$.tableId)||C.ZC.find($=>"transactions"===$.pageId)?.tables.find($=>"payments"===$.tableId)).recordsPerPage;return this.invoicesPageSettings&&ve!==this.invoicesPageSettings?.recordsPerPage&&(this.invoicesPageSettings.recordsPerPage=ve,this.store.dispatch((0,A.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))),this.paymentsPageSettings&&H!==this.paymentsPageSettings?.recordsPerPage&&(this.paymentsPageSettings.recordsPerPage=H),{type:C.QP.SET_PAGE_SETTINGS_LND,payload:F||[]}}),(0,T.W)(F=>(this.handleErrorWithAlert("SavePageSettings",C.MZ.UPDATE_PAGE_SETTINGS,"Page Settings Update Failed.",C.rl.PAGE_SETTINGS_API,F),(0,v.of)({type:C.aU.VOID})))))))),this.store.select(Pe.ru).pipe((0,O.Q)(this.unSubs[0])).subscribe(P=>{P.FetchInfo.status!==C.wn.COMPLETED&&P.FetchInfo.status!==C.wn.ERROR||P.FetchFees.status!==C.wn.COMPLETED&&P.FetchFees.status!==C.wn.ERROR||P.FetchBalanceBlockchain.status!==C.wn.COMPLETED&&P.FetchBalanceBlockchain.status!==C.wn.ERROR||P.FetchAllChannels.status!==C.wn.COMPLETED&&P.FetchAllChannels.status!==C.wn.ERROR||P.FetchPendingChannels.status!==C.wn.COMPLETED&&P.FetchPendingChannels.status!==C.wn.ERROR||this.flgInitialized||(this.store.dispatch((0,B.y0)({payload:C.MZ.INITALIZE_NODE_DATA})),this.flgInitialized=!0)}),this.wsService.lndWSMessages.pipe((0,O.Q)(this.unSubs[1])).subscribe(P=>{this.logger.info("Received new message from the service: "+JSON.stringify(P)),P&&(P.type===C.o1.INVOICE?(this.logger.info(P),P&&P.result&&P.result.payment_request&&this.store.dispatch((0,A.Dq)({payload:P.result}))):this.logger.info("Received Event from WS: "+JSON.stringify(P)))})}initializeRemainingData(De,Re){this.sessionService.setItem("lndUnlocked","true");const Xe={identity_pubkey:De.identity_pubkey,alias:De.alias,testnet:De.testnet,chains:De.chains,uris:De.uris,version:De.version?De.version.split(" ")[0]:""};this.store.dispatch((0,B.mt)({payload:C.MZ.INITALIZE_NODE_DATA})),this.store.dispatch((0,B.Fl)({payload:Xe}));let _e=this.location.path();_e.includes("/cln/")?_e=_e?.replace("/cln/","/lnd/"):_e.includes("/ecl/")&&(_e=_e?.replace("/ecl/","/lnd/")),(_e.includes("/unlock")||_e.includes("/login")||_e.includes("/error")||""===_e||"HOME"===Re||_e.includes("?access-key="))&&(_e="/lnd/home"),this.router.navigate([_e]),this.store.dispatch((0,A.DY)()),this.store.dispatch((0,A.$Q)()),this.store.dispatch((0,A.ar)()),this.store.dispatch((0,A.pL)()),this.store.dispatch((0,A.Gy)()),this.store.dispatch((0,A.tf)()),this.store.dispatch((0,A.yp)()),this.store.dispatch((0,A.CK)({payload:{max_payments:1e5,reversed:!0}})),this.store.dispatch((0,A.Do)({payload:{num_max_invoices:this.invoicesPageSettings?.recordsPerPage,reversed:!0}}))}handleErrorWithoutAlert(De,Re,Xe,_e){this.logger.error("ERROR IN: "+De+"\n"+JSON.stringify(_e)),401===_e.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,B.Jh)()),this.store.dispatch((0,B.ri)({payload:"Authentication Failed: "+JSON.stringify(_e.error)}))):(this.store.dispatch((0,B.y0)({payload:Re})),this.store.dispatch((0,A.e8)({payload:{action:De,status:C.wn.ERROR,statusCode:_e.status.toString(),message:this.commonService.extractErrorMessage(_e,Xe)}})))}handleErrorWithAlert(De,Re,Xe,_e,he){if(this.logger.error(he),401===he.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,B.Jh)()),this.store.dispatch((0,B.ri)({payload:"Authentication Failed: "+JSON.stringify(he.error)}));else{this.store.dispatch((0,B.y0)({payload:Re}));const Dt=this.commonService.extractErrorMessage(he);this.store.dispatch((0,B.xO)({payload:{data:{type:"ERROR",alertTitle:Xe,message:{code:he.status,message:Dt,URL:_e},component:L.f}}})),this.store.dispatch((0,A.e8)({payload:{action:De,status:C.wn.ERROR,statusCode:he.status.toString(),message:Dt,URL:_e}}))}}ngOnDestroy(){this.unSubs.forEach(De=>{De.next(null),De.complete()})}static#e=be=()=>(this.\u0275fac=function(Re){return new(Re||ne)(le.KVO(i.En),le.KVO(Ce.Qq),le.KVO(Ae.il),le.KVO(j.gP),le.KVO(W.h),le.KVO(G.Q),le.KVO(re.bZ),le.KVO(xe.Ix),le.KVO(Ee.I),le.KVO(V.aZ))},this.\u0275prov=le.jDH({token:ne,factory:ne.\u0275fac}))}return be(),ne})()},3536(Zt,pe,l){"use strict";l.d(pe,{$7:()=>Ae,$G:()=>v,BM:()=>A,Bw:()=>Ce,Ie:()=>O,KT:()=>f,Uv:()=>le,ah:()=>W,eO:()=>xe,gN:()=>C,gj:()=>Ee,n_:()=>re,oR:()=>u,os:()=>L,pI:()=>T,rN:()=>B,ru:()=>e,tA:()=>G});var i=l(9640);const d=(0,i.UX)("lnd"),v=(0,i.Mz)(d,V=>({pageSettings:V.pageSettings,apiCallStatus:V.apisCallStatus.FetchPageSettings})),T=(0,i.Mz)(d,V=>V.information),e=((0,i.Mz)(d,V=>({information:V.information,apiCallStatus:V.apisCallStatus.FetchInfo})),(0,i.Mz)(d,V=>V.apisCallStatus)),O=(0,i.Mz)(d,V=>({forwardingHistory:V.forwardingHistory,apiCallStatus:V.apisCallStatus.FetchForwardingHistory})),f=(0,i.Mz)(d,V=>({listPayments:V.listPayments,apiCallStatus:V.apisCallStatus.FetchPayments})),u=(0,i.Mz)(d,V=>({fees:V.fees,apiCallStatus:V.apisCallStatus.FetchFees})),L=(0,i.Mz)(d,V=>({peers:V.peers,apiCallStatus:V.apisCallStatus.FetchPeers})),C=(0,i.Mz)(d,V=>({transactions:V.transactions,apiCallStatus:V.apisCallStatus.FetchTransactions})),B=(0,i.Mz)(d,V=>({listInvoices:V.listInvoices,apiCallStatus:V.apisCallStatus.FetchInvoices})),A=(0,i.Mz)(d,V=>({channels:V.channels,channelsSummary:V.channelsSummary,lightningBalance:V.lightningBalance,apiCallStatus:V.apisCallStatus.FetchAllChannels})),le=((0,i.Mz)(d,V=>({channelsSummary:V.channelsSummary,pendingChannels:V.pendingChannels,closedChannels:V.closedChannels,apiCallStatus:V.apisCallStatus.FetchAllChannels})),(0,i.Mz)(d,V=>({pendingChannels:V.pendingChannels,pendingChannelsSummary:V.pendingChannelsSummary,apiCallStatus:V.apisCallStatus.FetchPendingChannels}))),Ce=(0,i.Mz)(d,V=>({closedChannels:V.closedChannels,apiCallStatus:V.apisCallStatus.FetchClosedChannels})),Ae=(0,i.Mz)(d,V=>({blockchainBalance:V.blockchainBalance,apiCallStatus:V.apisCallStatus.FetchBalanceBlockchain})),W=((0,i.Mz)(d,V=>({lightningBalance:V.lightningBalance,apiCallStatus:V.apisCallStatus.FetchAllChannels})),(0,i.Mz)(d,V=>({utxos:V.utxos,apiCallStatus:V.apisCallStatus.FetchUTXOs}))),G=(0,i.Mz)(d,V=>({networkInfo:V.networkInfo,apiCallStatus:V.apisCallStatus.FetchNetwork})),re=(0,i.Mz)(d,V=>({allLightningTransactions:V.allLightningTransactions,apiCallStatus:V.apisCallStatus.FetchLightningTransactions})),xe=(0,i.Mz)(d,V=>({channels:V.channels,pendingChannels:V.pendingChannels,closedChannels:V.closedChannels})),Ee=(0,i.Mz)(d,V=>({information:V.information,apiCallStatus:V.apisCallStatus.FetchInfo}))},6391(Zt,pe,l){"use strict";l.d(pe,{H:()=>Qn});var i=l(1585),d=l(5383),v=l(1413),T=l(6977),w=l(4416),e=l(3536),O=l(2615),f=l(3664),u=l(8570),L=l(2571),C=l(5416),B=l(9640),A=l(2200),Pe=l(60),le=l(8834),Ce=l(5596),Ae=l(9454),j=l(2629),W=l(1997),G=l(9183),re=l(2920),xe=l(6038),Ee=l(455),V=l(8288),ce=l(9157),be=l(9587);const ne=["scrollContainer"],J=h=>({"display-none":h}),De=h=>({"xs-scroll-y":h}),Re=h=>({"h-50":h}),Xe=()=>[],_e=h=>({"mr-0":h});function he(h,jt){if(1&h&&f.nrm(0,"qr-code",33),2&h){const Ue=f.XpG();f.Y8G("value",null==Ue.invoice?null:Ue.invoice.payment_request)("size",Ue.qrWidth)}}function Dt(h,jt){1&h&&(f.j41(0,"span",34),f.EFF(1,"N/A"),f.k0s())}function lt(h,jt){if(1&h&&f.nrm(0,"qr-code",33),2&h){const Ue=f.XpG();f.Y8G("value",null==Ue.invoice?null:Ue.invoice.payment_request)("size",Ue.qrWidth)}}function Le(h,jt){1&h&&(f.j41(0,"span",35),f.EFF(1,"QR Code Not Applicable"),f.k0s())}function te(h,jt){1&h&&f.nrm(0,"mat-divider",24),2&h&&f.Y8G("inset",!0)}function ie(h,jt){1&h&&(f.qex(0),f.EFF(1," (zero amount) "),f.bVm())}function P(h,jt){1&h&&f.nrm(0,"span",41)}function F(h,jt){if(1&h&&(f.j41(0,"div",37)(1,"div",38)(2,"span",39),f.EFF(3),f.nI1(4,"number"),f.k0s(),f.DNE(5,P,1,0,"span",40),f.k0s()()),2&h){const Ue=f.XpG(2);f.R7$(3),f.SpI("",f.bMT(4,2,null==Ue.invoice?null:Ue.invoice.amt_paid_sat)," Sats"),f.R7$(2),f.Y8G("ngForOf",f.lJ4(4,Xe).constructor(35))}}function ve(h,jt){if(1&h&&(f.j41(0,"div"),f.EFF(1),f.nI1(2,"number"),f.k0s()),2&h){const Ue=f.XpG(2);f.R7$(),f.SpI("",f.bMT(2,1,null==Ue.invoice?null:Ue.invoice.amt_paid_sat)," Sats")}}function H(h,jt){if(1&h&&(f.qex(0),f.DNE(1,F,6,5,"div",36)(2,ve,3,3,"div",23),f.bVm()),2&h){const Ue=f.XpG();f.R7$(),f.Y8G("ngIf",Ue.flgInvoicePaid),f.R7$(),f.Y8G("ngIf",!Ue.flgInvoicePaid)}}function $(h,jt){1&h&&(f.j41(0,"span"),f.EFF(1,"-"),f.k0s())}function Ke(h,jt){1&h&&f.nrm(0,"mat-spinner",43),2&h&&f.Y8G("diameter",20)}function Vt(h,jt){if(1&h&&(f.qex(0),f.DNE(1,$,2,0,"span",23)(2,Ke,1,1,"mat-spinner",42),f.bVm()),2&h){const Ue=f.XpG();f.R7$(),f.Y8G("ngIf","OPEN"!==(null==Ue.invoice?null:Ue.invoice.state)||!Ue.flgVersionCompatible),f.R7$(),f.Y8G("ngIf","OPEN"===(null==Ue.invoice?null:Ue.invoice.state)&&Ue.flgVersionCompatible)}}function St(h,jt){1&h&&f.eu8(0)}function ot(h,jt){if(1&h&&(f.j41(0,"div"),f.DNE(1,St,1,0,"ng-container",44),f.k0s()),2&h){f.XpG();const Ue=f.sdS(79);f.R7$(),f.Y8G("ngTemplateOutlet",Ue)}}function nt(h,jt){if(1&h){const Ue=f.RV6();f.j41(0,"div",45)(1,"button",46),f.bIt("click",function(){O.eBV(Ue);const pt=f.XpG();return O.Njj(pt.onScrollDown())}),f.j41(2,"mat-icon",47),f.EFF(3,"arrow_downward"),f.k0s()()()}}function ht(h,jt){1&h&&(f.j41(0,"p"),f.EFF(1,"Show Advanced"),f.k0s())}function oe(h,jt){1&h&&(f.j41(0,"p"),f.EFF(1,"Hide Advanced"),f.k0s())}function Ye(h,jt){if(1&h){const Ue=f.RV6();f.j41(0,"button",48),f.bIt("copied",function(pt){O.eBV(Ue);const Pt=f.XpG();return O.Njj(Pt.onCopyPayment(pt))}),f.EFF(1),f.k0s()}if(2&h){const Ue=f.XpG();f.Y8G("payload",null==Ue.invoice?null:Ue.invoice.payment_request),f.R7$(),f.JRh(Ue.screenSize===Ue.screenSizeEnum.XS?"Copy Payment":"Copy Payment Request")}}function fe(h,jt){if(1&h){const Ue=f.RV6();f.j41(0,"button",49),f.bIt("click",function(){O.eBV(Ue);const pt=f.XpG();return O.Njj(pt.onClose())}),f.EFF(1,"OK"),f.k0s()}}function Qe(h,jt){if(1&h&&f.nrm(0,"span",64),2&h){const Ue=f.XpG(4);f.Y8G("ngClass",f.eq3(1,_e,Ue.screenSize===Ue.screenSizeEnum.XS))}}function gt(h,jt){if(1&h&&f.nrm(0,"span",65),2&h){const Ue=f.XpG(4);f.Y8G("ngClass",f.eq3(1,_e,Ue.screenSize===Ue.screenSizeEnum.XS))}}function Gt(h,jt){if(1&h&&f.nrm(0,"span",66),2&h){const Ue=f.XpG(4);f.Y8G("ngClass",f.eq3(1,_e,Ue.screenSize===Ue.screenSizeEnum.XS))}}function rt(h,jt){if(1&h&&(f.j41(0,"div",53)(1,"div",58)(2,"span",59),f.DNE(3,Qe,1,3,"span",60)(4,gt,1,3,"span",61)(5,Gt,1,3,"span",62),f.EFF(6),f.k0s(),f.j41(7,"span",63),f.EFF(8),f.nI1(9,"number"),f.k0s()(),f.nrm(10,"mat-divider",24),f.k0s()),2&h){const Ue=jt.$implicit,wt=f.XpG(3);f.R7$(3),f.Y8G("ngIf","SETTLED"===Ue.state),f.R7$(),f.Y8G("ngIf","ACCEPTED"===Ue.state),f.R7$(),f.Y8G("ngIf","CANCELED"===Ue.state),f.R7$(),f.SpI(" ",Ue.chan_id," "),f.R7$(2),f.JRh(f.i5U(9,6,+Ue.amt_msat/1e3||0,wt.getDecimalFormat(Ue))),f.R7$(2),f.Y8G("inset",!0)}}function cn(h,jt){if(1&h){const Ue=f.RV6();f.j41(0,"div",19)(1,"mat-expansion-panel",51),f.bIt("opened",function(){O.eBV(Ue);const pt=f.XpG(2);return O.Njj(pt.flgOpened=!0)})("closed",function(){O.eBV(Ue);const pt=f.XpG(2);return O.Njj(pt.onExpansionClosed())}),f.j41(2,"mat-expansion-panel-header")(3,"mat-panel-title")(4,"h4",52),f.EFF(5,"HTLCs"),f.k0s()()(),f.j41(6,"div",53)(7,"div",54)(8,"span",55),f.EFF(9,"Channel ID"),f.k0s(),f.j41(10,"span",56),f.EFF(11,"Amount (Sats)"),f.k0s()(),f.nrm(12,"mat-divider",24),f.DNE(13,rt,11,9,"div",57),f.k0s()()()}if(2&h){const Ue=f.XpG(2);f.R7$(12),f.Y8G("inset",!0),f.R7$(),f.Y8G("ngForOf",null==Ue.invoice?null:Ue.invoice.htlcs)}}function Ft(h,jt){1&h&&f.nrm(0,"mat-divider",24),2&h&&f.Y8G("inset",!0)}function Sn(h,jt){if(1&h&&(f.nrm(0,"mat-divider",24),f.j41(1,"div",19)(2,"div",25)(3,"h4",21),f.EFF(4,"Preimage"),f.k0s(),f.j41(5,"span",26),f.EFF(6),f.k0s()()(),f.nrm(7,"mat-divider",24),f.j41(8,"div",19)(9,"div",20)(10,"h4",21),f.EFF(11,"State"),f.k0s(),f.j41(12,"span",26),f.EFF(13),f.k0s()(),f.j41(14,"div",20)(15,"h4",21),f.EFF(16,"Expiry"),f.k0s(),f.j41(17,"span",26),f.EFF(18),f.nI1(19,"date"),f.k0s()()(),f.nrm(20,"mat-divider",24),f.j41(21,"div",19)(22,"div",20)(23,"h4",21),f.EFF(24,"Private Routing Hints"),f.k0s(),f.j41(25,"span",26),f.EFF(26),f.k0s()(),f.j41(27,"div",20)(28,"h4",21),f.EFF(29,"AMP Invoice"),f.k0s(),f.j41(30,"span",26),f.EFF(31),f.k0s()()(),f.nrm(32,"mat-divider",24),f.DNE(33,cn,14,2,"div",50)(34,Ft,1,1,"mat-divider",17)),2&h){const Ue=f.XpG();f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Ue.invoice?null:Ue.invoice.r_preimage)||"-"),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh(null==Ue.invoice?null:Ue.invoice.state),f.R7$(5),f.JRh(f.i5U(19,11,1e3*(+(null==Ue.invoice?null:Ue.invoice.creation_date)+ +(null==Ue.invoice?null:Ue.invoice.expiry)),"dd/MMM/y HH:mm")),f.R7$(2),f.Y8G("inset",!0),f.R7$(6),f.JRh(null!=Ue.invoice&&Ue.invoice.private?"Yes":"No"),f.R7$(5),f.JRh(null!=Ue.invoice&&Ue.invoice.is_amp?"Yes":"No"),f.R7$(),f.Y8G("inset",!0),f.R7$(),f.Y8G("ngIf",(null==Ue.invoice?null:Ue.invoice.htlcs)&&(null==Ue.invoice?null:Ue.invoice.htlcs.length)>0),f.R7$(),f.Y8G("ngIf",(null==Ue.invoice?null:Ue.invoice.htlcs)&&(null==Ue.invoice?null:Ue.invoice.htlcs.length)>0)}}let Qn=(()=>{var h;class jt{set container(wt){wt&&(this.scrollContainer=wt)}constructor(wt,pt,Pt,gn,ei,vi){this.dialogRef=wt,this.data=pt,this.logger=Pt,this.commonService=gn,this.snackBar=ei,this.store=vi,this.faReceipt=d.Mf0,this.showAdvanced=!1,this.newlyAdded=!1,this.invoice=null,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=w.f7,this.flgOpened=!1,this.flgInvoicePaid=!1,this.flgVersionCompatible=!0,this.unSubs=[new v.B,new v.B,new v.B,new v.B,new v.B]}ngOnInit(){this.invoice=JSON.parse(JSON.stringify(this.data.invoice)),this.newlyAdded=!!this.data.newlyAdded,this.screenSize=this.commonService.getScreenSize(),this.screenSize===w.f7.XS&&(this.qrWidth=220),this.store.select(e.pI).pipe((0,T.Q)(this.unSubs[0])).subscribe(pt=>{this.flgVersionCompatible=this.commonService.isVersionCompatible(pt.version,"0.11.0")});const wt=JSON.parse(JSON.stringify(this.invoice));this.store.select(e.rN).pipe((0,T.Q)(this.unSubs[1])).subscribe(pt=>{const Pt=this.invoice?.state,ei=(pt.listInvoices.invoices||[]).find(vi=>vi.r_hash===wt.r_hash)||null;ei&&(this.invoice=ei),Pt!==this.invoice?.state&&"SETTLED"===this.invoice?.state&&(this.flgInvoicePaid=!0,setTimeout(()=>{this.flgInvoicePaid=!1},4e3)),this.logger.info(pt)})}onClose(){this.dialogRef.close(!1)}onShowAdvanced(){this.showAdvanced=!this.showAdvanced,this.flgOpened=!1}onScrollDown(){this.scrollContainer.nativeElement.scrollTop=this.scrollContainer.nativeElement.scrollTop+60}onExpansionClosed(){this.flgOpened=!1,this.scrollContainer.nativeElement.scrollTop=0}onCopyPayment(wt){this.snackBar.open("Payment request copied."),this.logger.info("Copied Text: "+wt)}getDecimalFormat(wt){return wt.amt_msat<1e3?"1.0-4":"1.0-0"}ngOnDestroy(){this.unSubs.forEach(wt=>{wt.next(null),wt.complete()})}static#e=h=()=>(this.\u0275fac=function(pt){return new(pt||jt)(f.rXU(i.CP),f.rXU(i.Vh),f.rXU(u.gP),f.rXU(L.h),f.rXU(C.UG),f.rXU(B.il))},this.\u0275cmp=f.VBU({type:jt,selectors:[["rtl-invoice-information"]],viewQuery:function(pt,Pt){if(1&pt&&f.GBs(ne,5),2&pt){let gn;f.mGM(gn=f.lsd())&&(Pt.container=gn.first)}},standalone:!1,decls:80,vars:49,consts:[["scrollContainer",""],["hideAdvancedText",""],["advancedBlock",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign.gt-sm","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["class","font-size-300",4,"ngIf"],["fxLayout","column","fxFlex","65"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large",3,"ngClass"],["fxLayout","column"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],[3,"ngClass"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[4,"ngIf"],[1,"my-1",3,"inset"],["fxFlex","100"],[1,"overflow-wrap","foreground-secondary-text"],["fxLayout","row","fxLayoutAlign","start end","class","btn-sticky-container padding-gap-x-large",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center","fxFlex","100",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],[4,"ngIf","ngIfElse"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"font-size-300"],[1,"font-size-120"],["class","invoice-animation-container",4,"ngIf"],[1,"invoice-animation-container"],[1,"invoice-animation-div"],[1,"wiggle"],["class","particles-circle",4,"ngFor","ngForOf"],[1,"particles-circle"],[3,"diameter",4,"ngIf"],[3,"diameter"],[4,"ngTemplateOutlet"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll Down","fxLayoutAlign","center center",3,"click"],["fxLayoutAlign","center center"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","button",3,"click"],["fxLayout","row",4,"ngIf"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",1,"flat-expansion-panel",3,"opened","closed"],["fxLayoutAlign","start center","fxFlex","100",1,"font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100",1,"mt-minus-1"],["fxFlex","60",1,"foreground-secondary-text","font-bold-500"],["fxFlex","40",1,"foreground-secondary-text","font-bold-500"],["fxLayout","column","fxLayoutAlign","start stretch","fxFlex","100",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start","fxFlex","100"],["fxFlex","60",1,"foreground-secondary-text"],["class","dot green","matTooltip","Settled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot yellow","matTooltip","Accepted","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["class","dot red","matTooltip","Cancelled","matTooltipPosition","right",3,"ngClass",4,"ngIf"],["fxFlex","40",1,"foreground-secondary-text"],["matTooltip","Settled","matTooltipPosition","right",1,"dot","green",3,"ngClass"],["matTooltip","Accepted","matTooltipPosition","right",1,"dot","yellow",3,"ngClass"],["matTooltip","Cancelled","matTooltipPosition","right",1,"dot","red",3,"ngClass"]],template:function(pt,Pt){if(1&pt){const gn=f.RV6();f.j41(0,"div",3)(1,"div",4),f.DNE(2,he,1,2,"qr-code",5)(3,Dt,2,0,"span",6),f.k0s(),f.j41(4,"div",7)(5,"mat-card-header",8)(6,"div",9),f.nrm(7,"fa-icon",10),f.j41(8,"span",11),f.EFF(9),f.k0s()(),f.j41(10,"button",12),f.bIt("click",function(){return O.eBV(gn),O.Njj(Pt.onClose())}),f.EFF(11,"X"),f.k0s()(),f.j41(12,"mat-card-content",13)(13,"div",14)(14,"div",15),f.DNE(15,lt,1,2,"qr-code",5)(16,Le,2,0,"span",16),f.k0s(),f.DNE(17,te,1,1,"mat-divider",17),f.j41(18,"div",18,0)(20,"div",19)(21,"div",20)(22,"h4",21),f.EFF(23),f.k0s(),f.j41(24,"span",22),f.EFF(25),f.nI1(26,"number"),f.DNE(27,ie,2,0,"ng-container",23),f.k0s()(),f.j41(28,"div",20)(29,"h4",21),f.EFF(30,"Amount Settled"),f.k0s(),f.j41(31,"span",22),f.DNE(32,H,3,2,"ng-container",23)(33,Vt,3,2,"ng-container",23),f.k0s()()(),f.nrm(34,"mat-divider",24),f.j41(35,"div",19)(36,"div",20)(37,"h4",21),f.EFF(38,"Date Created"),f.k0s(),f.j41(39,"span",22),f.EFF(40),f.nI1(41,"date"),f.k0s()(),f.j41(42,"div",20)(43,"h4",21),f.EFF(44,"Date Settled"),f.k0s(),f.j41(45,"span",22),f.EFF(46),f.nI1(47,"date"),f.k0s()()(),f.nrm(48,"mat-divider",24),f.j41(49,"div",19)(50,"div",25)(51,"h4",21),f.EFF(52,"Memo"),f.k0s(),f.j41(53,"span",22),f.EFF(54),f.k0s()()(),f.nrm(55,"mat-divider",24),f.j41(56,"div",19)(57,"div",25)(58,"h4",21),f.EFF(59,"Payment Request"),f.k0s(),f.j41(60,"span",26),f.EFF(61),f.k0s()()(),f.nrm(62,"mat-divider",24),f.j41(63,"div",19)(64,"div",25)(65,"h4",21),f.EFF(66,"Payment Hash"),f.k0s(),f.j41(67,"span",26),f.EFF(68),f.k0s()()(),f.DNE(69,ot,2,1,"div",23),f.k0s()()(),f.DNE(70,nt,4,0,"div",27),f.j41(71,"div",28)(72,"button",29),f.bIt("click",function(){return O.eBV(gn),O.Njj(Pt.onShowAdvanced())}),f.DNE(73,ht,2,0,"p",30)(74,oe,2,0,"ng-template",null,1,f.C5r),f.k0s(),f.DNE(76,Ye,2,2,"button",31)(77,fe,2,0,"button",32),f.k0s()()(),f.DNE(78,Sn,35,14,"ng-template",null,2,f.C5r)}if(2&pt){const gn=f.sdS(75);f.R7$(),f.Y8G("fxLayoutAlign",null!=Pt.invoice&&Pt.invoice.payment_request&&""!==(null==Pt.invoice?null:Pt.invoice.payment_request)?"center start":"center center")("ngClass",f.eq3(41,J,Pt.screenSize===Pt.screenSizeEnum.XS||Pt.screenSize===Pt.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Pt.invoice?null:Pt.invoice.payment_request)&&""!==(null==Pt.invoice?null:Pt.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Pt.invoice&&Pt.invoice.payment_request)||""===(null==Pt.invoice?null:Pt.invoice.payment_request)),f.R7$(4),f.Y8G("icon",Pt.faReceipt),f.R7$(2),f.JRh(Pt.screenSize===Pt.screenSizeEnum.XS?Pt.newlyAdded?"Created":"Invoice":Pt.newlyAdded?"Invoice Created":"Invoice Information"),f.R7$(3),f.Y8G("ngClass",f.eq3(43,De,Pt.screenSize===Pt.screenSizeEnum.XS)),f.R7$(2),f.Y8G("fxLayoutAlign",null!=Pt.invoice&&Pt.invoice.payment_request&&""!==(null==Pt.invoice?null:Pt.invoice.payment_request)?"center start":"center center")("ngClass",f.eq3(45,J,Pt.screenSize!==Pt.screenSizeEnum.XS&&Pt.screenSize!==Pt.screenSizeEnum.SM)),f.R7$(),f.Y8G("ngIf",(null==Pt.invoice?null:Pt.invoice.payment_request)&&""!==(null==Pt.invoice?null:Pt.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Pt.invoice&&Pt.invoice.payment_request)||""===(null==Pt.invoice?null:Pt.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",Pt.screenSize===Pt.screenSizeEnum.XS||Pt.screenSize===Pt.screenSizeEnum.SM),f.R7$(),f.Y8G("ngClass",f.eq3(47,Re,(null==Pt.invoice?null:Pt.invoice.htlcs)&&(null==Pt.invoice?null:Pt.invoice.htlcs.length)>0&&Pt.showAdvanced)),f.R7$(5),f.JRh(Pt.screenSize===Pt.screenSizeEnum.XS?"Amount":"Amount Requested"),f.R7$(2),f.SpI("",f.bMT(26,33,(null==Pt.invoice?null:Pt.invoice.value)||0)," Sats"),f.R7$(2),f.Y8G("ngIf",!(null!=Pt.invoice&&Pt.invoice.value)||"0"===(null==Pt.invoice?null:Pt.invoice.value)),f.R7$(5),f.Y8G("ngIf",(null==Pt.invoice?null:Pt.invoice.amt_paid_sat)&&"OPEN"!==(null==Pt.invoice?null:Pt.invoice.state)),f.R7$(),f.Y8G("ngIf",!(null!=Pt.invoice&&Pt.invoice.amt_paid_sat)||"0"===(null==Pt.invoice?null:Pt.invoice.amt_paid_sat)),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh(f.i5U(41,35,1e3*(null==Pt.invoice?null:Pt.invoice.creation_date),"dd/MMM/y HH:mm")),f.R7$(6),f.JRh(0!=+(null==Pt.invoice?null:Pt.invoice.settle_date)?f.i5U(47,38,1e3*+(null==Pt.invoice?null:Pt.invoice.settle_date),"dd/MMM/y HH:mm"):"-"),f.R7$(2),f.Y8G("inset",!0),f.R7$(6),f.JRh(null==Pt.invoice?null:Pt.invoice.memo),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Pt.invoice?null:Pt.invoice.payment_request)||"N/A"),f.R7$(),f.Y8G("inset",!0),f.R7$(6),f.JRh((null==Pt.invoice?null:Pt.invoice.r_hash)||""),f.R7$(),f.Y8G("ngIf",Pt.showAdvanced),f.R7$(),f.Y8G("ngIf",(null==Pt.invoice?null:Pt.invoice.htlcs)&&(null==Pt.invoice?null:Pt.invoice.htlcs.length)>0&&Pt.showAdvanced&&Pt.flgOpened),f.R7$(3),f.Y8G("ngIf",!Pt.showAdvanced)("ngIfElse",gn),f.R7$(3),f.Y8G("ngIf",(null==Pt.invoice?null:Pt.invoice.payment_request)&&""!==(null==Pt.invoice?null:Pt.invoice.payment_request)),f.R7$(),f.Y8G("ngIf",!(null!=Pt.invoice&&Pt.invoice.payment_request)||""===(null==Pt.invoice?null:Pt.invoice.payment_request))}},dependencies:[A.YU,A.Sq,A.bT,A.T3,Pe.aY,le.$z,le.$0,Ce.m2,Ce.MM,Ae.GK,Ae.Z2,Ae.WN,j.An,W.q,G.LG,re.DJ,re.sA,re.UI,xe.PW,Ee.oV,V.Um,ce.U,be.N,A.QX,A.vh],encapsulation:2}))}return h(),jt})()},1001(Zt,pe,l){"use strict";l.d(pe,{C:()=>d,q:()=>v});var i=l(1514);const d=[(0,i.hZ)("opacityAnimation",[(0,i.kY)(":enter",[(0,i.iF)({opacity:0}),(0,i.i0)("1000ms ease-in",(0,i.iF)({opacity:1}))]),(0,i.kY)(":leave",[(0,i.i0)("0ms",(0,i.iF)({opacity:0}))])])],v=[(0,i.hZ)("fadeIn",[(0,i.kY)("void => *",[]),(0,i.kY)("* => void",[]),(0,i.kY)("* => *",[(0,i.i0)(800,(0,i.i7)([(0,i.iF)({opacity:0,transform:"translateY(100%)"}),(0,i.iF)({opacity:1,transform:"translateY(0%)"})]))])])]},9881(Zt,pe,l){"use strict";l.d(pe,{E:()=>d});var i=l(1514);const d=(0,i.hZ)("routeAnimation",[(0,i.kY)("* => *",[(0,i.P)(":enter, :leave",(0,i.iF)({position:"fixed",width:"100%"}),{optional:!0}),(0,i.Os)([(0,i.P)(":enter",[(0,i.iF)({transform:"translateX(100%)"}),(0,i.i0)("1000ms ease-in-out",(0,i.iF)({transform:"translateX(0%)"}))],{optional:!0}),(0,i.P)(":leave",[(0,i.iF)({transform:"translateX(0%)"}),(0,i.i0)("1000ms ease-in-out",(0,i.iF)({transform:"translateX(-100%)"}))],{optional:!0})])])])},6949(Zt,pe,l){"use strict";l.d(pe,{k:()=>d});var i=l(1514);const d=[(0,i.hZ)("sliderAnimation",[(0,i.wk)("*",(0,i.iF)({transform:"translateX(0)"})),(0,i.kY)("void => backward",[(0,i.iF)({transform:"translateX(-100%"}),(0,i.i0)("800ms")]),(0,i.kY)("backward => void",[(0,i.i0)("0ms",(0,i.iF)({transform:"translateX(100%)"}))]),(0,i.kY)("void => forward",[(0,i.iF)({transform:"translateX(100%"}),(0,i.i0)("800ms")]),(0,i.kY)("forward => void",[(0,i.i0)("0ms",(0,i.iF)({transform:"translateX(-100%)"}))])])]},2462(Zt,pe,l){"use strict";l.d(pe,{f:()=>C});var i=l(1585),d=l(3664),v=l(8570),T=l(2200),w=l(8834),e=l(5596),O=l(1997),f=l(2920),u=l(9587);function L(B,A){if(1&B&&(d.j41(0,"p",14),d.EFF(1),d.k0s()),2&B){const Pe=d.XpG();d.R7$(),d.JRh(Pe.data.titleMessage)}}let C=(()=>{var B;class A{constructor(le,Ce,Ae){this.dialogRef=le,this.data=Ce,this.logger=Ae,this.errorMessage=""}ngOnInit(){this.errorMessage=this.data.message&&this.data.message.message&&"object"==typeof this.data.message.message?JSON.stringify(this.data.message.message):this.data.message&&this.data.message.message?this.data.message.message:"",!this.data.message&&!this.data.titleMessage&&!this.data.message&&(this.data.titleMessage="Please Check Server Connection"),this.logger.info(this.data.message)}onClose(){this.dialogRef.close(!1)}static#e=B=()=>(this.\u0275fac=function(Ce){return new(Ce||A)(d.rXU(i.CP),d.rXU(i.Vh),d.rXU(v.gP))},this.\u0275cmp=d.VBU({type:A,selectors:[["rtl-error-message"]],standalone:!1,decls:29,vars:6,consts:[["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large","error-alert-block"],["fxLayout","column"],["fxLayoutAlign","start center","class","pb-1",4,"ngIf"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"],[1,"word-break"],["fxLayout","row","fxLayoutAlign","end center"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close"],["fxLayoutAlign","start center",1,"pb-1"]],template:function(Ce,Ae){1&Ce&&(d.j41(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),d.EFF(5),d.k0s()(),d.j41(6,"button",5),d.bIt("click",function(){return Ae.onClose()}),d.EFF(7,"X"),d.k0s()(),d.j41(8,"mat-card-content",6)(9,"div",7),d.DNE(10,L,2,1,"p",8),d.j41(11,"h4",9),d.EFF(12,"Error Code"),d.k0s(),d.j41(13,"span"),d.EFF(14),d.k0s(),d.nrm(15,"mat-divider",10),d.j41(16,"h4",9),d.EFF(17,"Error Message"),d.k0s(),d.j41(18,"span",11),d.EFF(19),d.k0s(),d.nrm(20,"mat-divider",10),d.j41(21,"h4",9),d.EFF(22,"API URL"),d.k0s(),d.j41(23,"span",11),d.EFF(24),d.k0s(),d.nrm(25,"mat-divider",10),d.j41(26,"div",12)(27,"button",13),d.EFF(28,"OK"),d.k0s()()()()()()),2&Ce&&(d.R7$(5),d.JRh(Ae.data.alertTitle||"ERROR"),d.R7$(5),d.Y8G("ngIf",Ae.data.titleMessage),d.R7$(4),d.JRh(Ae.data.message.code),d.R7$(5),d.JRh(Ae.errorMessage),d.R7$(5),d.JRh(Ae.data.message.URL),d.R7$(3),d.Y8G("mat-dialog-close",!1))},dependencies:[T.bT,i.tx,w.$z,e.m2,e.MM,O.q,f.DJ,f.sA,f.UI,u.N],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]}))}return B(),A})()},1092(Zt,pe,l){"use strict";l.d(pe,{D:()=>Tt});var i=l(9417),d=l(1413),v=l(6977),T=l(1585),w=l(5383),e=l(1001),O=l(4416),f=l(3536),u=l(3664),L=l(2615),C=l(9640),B=l(4104),A=l(2200),Pe=l(8570),le=l(3694),Ce=l(2571),Ae=l(8834),j=l(5596),W=l(9454),G=l(2629),re=l(3746),xe=l(9588),Ee=l(7575),V=l(5951),ce=l(2920),be=l(6038),ne=l(450),J=l(455),De=l(6013),Re=l(9587),Xe=l(1997);const _e=At=>({"h-5":At});function he(At,we){1&At&&u.eu8(0)}function Dt(At,we){1&At&&u.eu8(0)}function lt(At,we){if(1&At&&(u.j41(0,"mat-expansion-panel",3)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",4),u.EFF(4),u.nI1(5,"number"),u.k0s()()(),u.DNE(6,Dt,1,0,"ng-container",2),u.k0s()),2&At){const ae=u.XpG(),Lt=u.sdS(4);u.Y8G("expanded",ae.panelExpanded)("ngClass",u.eq3(7,_e,!ae.flgShowPanel)),u.R7$(4),u.Lme("Quote for ",ae.termCaption," amount (",u.bMT(5,5,ae.quote.amount)," Sats)"),u.R7$(2),u.Y8G("ngTemplateOutlet",Lt)}}function Le(At,we){if(1&At&&(u.j41(0,"div",19)(1,"h4",8),u.EFF(2," Prepay Amount (Sats) "),u.j41(3,"mat-icon",20),u.EFF(4,"info_outline"),u.k0s()(),u.j41(5,"span",10),u.EFF(6),u.nI1(7,"number"),u.k0s()()),2&At){const ae=u.XpG(2);u.R7$(6),u.JRh(u.bMT(7,1,null==ae.quote?null:ae.quote.prepay_amt_sat))}}function te(At,we){1&At&&u.nrm(0,"mat-divider",13)}function ie(At,we){if(1&At&&(u.j41(0,"div",6)(1,"div",21)(2,"h4",8),u.EFF(3," Swap Server Node Pubkey "),u.j41(4,"mat-icon",22),u.EFF(5,"info_outline"),u.k0s()(),u.j41(6,"span",10),u.EFF(7),u.k0s()()()),2&At){const ae=u.XpG(2);u.R7$(7),u.JRh(null==ae.quote?null:ae.quote.swap_payment_dest)}}function P(At,we){if(1&At&&(u.j41(0,"div",5)(1,"div",6)(2,"div",7)(3,"h4",8),u.EFF(4," Swap Fee (Sats) "),u.j41(5,"mat-icon",9),u.EFF(6,"info_outline"),u.k0s()(),u.j41(7,"span",10),u.EFF(8),u.nI1(9,"number"),u.k0s()(),u.j41(10,"div",7)(11,"h4",8),u.EFF(12),u.j41(13,"mat-icon",11),u.EFF(14,"info_outline"),u.k0s()(),u.j41(15,"span",10),u.EFF(16),u.nI1(17,"number"),u.k0s()(),u.DNE(18,Le,8,3,"div",12),u.k0s(),u.nrm(19,"mat-divider",13),u.j41(20,"div",6)(21,"div",14)(22,"h4",8),u.EFF(23," Max Off-chain Swap Routing Fee (Sats) "),u.j41(24,"mat-icon",15),u.EFF(25,"info_outline"),u.k0s()(),u.j41(26,"span",10),u.EFF(27),u.nI1(28,"number"),u.k0s()(),u.j41(29,"div",14)(30,"h4",8),u.EFF(31," Max Off-chain Prepay Routing Fee (Sats) "),u.j41(32,"mat-icon",16),u.EFF(33,"info_outline"),u.k0s()(),u.j41(34,"span",10),u.EFF(35,"36"),u.k0s()()(),u.DNE(36,te,1,0,"mat-divider",17)(37,ie,8,1,"div",18),u.k0s()),2&At){const ae=u.XpG();u.R7$(2),u.Y8G("ngClass",null!=ae.quote&&ae.quote.prepay_amt_sat?"flex-30":"flex-50"),u.R7$(6),u.JRh(u.bMT(9,9,null==ae.quote?null:ae.quote.swap_fee_sat)),u.R7$(2),u.Y8G("ngClass",null!=ae.quote&&ae.quote.prepay_amt_sat?"flex-35":"flex-50"),u.R7$(2),u.SpI(" ",null!=ae.quote&&ae.quote.htlc_sweep_fee_sat?"HTLC Sweep Fee (Sats)":null!=ae.quote&&ae.quote.htlc_publish_fee_sat?"HTLC Publish Fee (Sats)":""," "),u.R7$(4),u.JRh(u.bMT(17,11,null!=ae.quote&&ae.quote.htlc_sweep_fee_sat?ae.quote.htlc_sweep_fee_sat:null!=ae.quote&&ae.quote.htlc_publish_fee_sat?ae.quote.htlc_publish_fee_sat:0)),u.R7$(2),u.Y8G("ngIf",null==ae.quote?null:ae.quote.prepay_amt_sat),u.R7$(9),u.JRh(u.bMT(28,13,(null==ae.quote?null:ae.quote.amount)*((null!=ae.quote&&ae.quote.off_chain_swap_routing_fee_percentage?null==ae.quote?null:ae.quote.off_chain_swap_routing_fee_percentage:2)/100))),u.R7$(9),u.Y8G("ngIf",""!==(null==ae.quote?null:ae.quote.swap_payment_dest)),u.R7$(),u.Y8G("ngIf",""!==(null==ae.quote?null:ae.quote.swap_payment_dest))}}let F=(()=>{var At;class we{constructor(){this.quote={},this.termCaption="",this.showPanel=!0,this.panelExpanded=!1,this.flgShowPanel=!1}ngOnInit(){setTimeout(()=>{this.flgShowPanel=!0},1200)}static#e=At=()=>(this.\u0275fac=function(Ht){return new(Ht||we)},this.\u0275cmp=u.VBU({type:we,selectors:[["rtl-loop-quote"]],inputs:{quote:"quote",termCaption:"termCaption",showPanel:"showPanel",panelExpanded:"panelExpanded"},standalone:!1,decls:5,vars:1,consts:[["informationBlock",""],["quoteDetailsBlock",""],[4,"ngTemplateOutlet"],["fxFlex","100",1,"flat-expansion-panel","mb-1",3,"expanded","ngClass"],["fxLayoutAlign","start center","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],[3,"ngClass"],["fxLayoutAlign","start center",1,"font-bold-500"],["matTooltip","Estimated fee charged by the loop server for the swap",1,"info-icon","info-icon-text"],[1,"foreground-secondary-text"],["matTooltip","An estimate of the on-chain fee that needs to be paid to sweep the HTLC",1,"info-icon","info-icon-text"],["fxFlex","35",4,"ngIf"],[1,"w-100","my-1"],["fxFlex","50"],["matTooltip","Maximum off-chain fee that may be paid for routing the payment amount to the server",1,"info-icon","info-icon-text"],["matTooltip","Maximum off-chain fee that may be paid for routing the pre-payment amount to the server","matTooltipPosition","before",1,"info-icon","info-icon-text"],["class","w-100 my-1",4,"ngIf"],["fxLayout","row",4,"ngIf"],["fxFlex","35"],["matTooltip","The part of the swap fee that is requested as a prepayment","matTooltipPosition","before",1,"info-icon","info-icon-text"],["fxFlex","100"],["matTooltip","The node pubkey, where the swap payments will be sent",1,"info-icon","info-icon-text"]],template:function(Ht,_n){if(1&Ht&&u.DNE(0,he,1,0,"ng-container",2)(1,lt,7,9,"ng-template",null,0,u.C5r)(3,P,38,15,"ng-template",null,1,u.C5r),2&Ht){const fi=u.sdS(2),bi=u.sdS(4);u.Y8G("ngTemplateOutlet",_n.showPanel?fi:bi)}},dependencies:[A.YU,A.bT,A.T3,W.GK,W.Z2,W.WN,G.An,Xe.q,ce.DJ,ce.sA,ce.UI,be.PW,J.oV,A.QX],encapsulation:2}))}return At(),we})();function ve(At,we){1&At&&u.eu8(0)}function H(At,we){if(1&At&&(u.j41(0,"div",3)(1,"span",4),u.EFF(2),u.k0s()()),2&At){const ae=u.XpG();u.R7$(2),u.JRh(null!=ae.loopStatus&&ae.loopStatus.error?null==ae.loopStatus?null:ae.loopStatus.error:"Unknown Error.")}}function $(At,we){if(1&At&&(u.j41(0,"div",3)(1,"div",5)(2,"div",6)(3,"h4",7),u.EFF(4,"ID"),u.k0s(),u.j41(5,"span",4),u.EFF(6),u.k0s()()(),u.nrm(7,"mat-divider",8),u.j41(8,"div",5)(9,"div",6)(10,"h4",7),u.EFF(11,"HTLC Address"),u.k0s(),u.j41(12,"span",4),u.EFF(13),u.k0s()()()()),2&At){const ae=u.XpG();u.R7$(6),u.JRh(null==ae.loopStatus?null:ae.loopStatus.id_bytes),u.R7$(7),u.JRh(null==ae.loopStatus?null:ae.loopStatus.htlc_address)}}let Ke=(()=>{var At;class we{constructor(){}static#e=At=()=>(this.\u0275fac=function(Ht){return new(Ht||we)},this.\u0275cmp=u.VBU({type:we,selectors:[["rtl-loop-status"]],inputs:{loopStatus:"loopStatus"},standalone:!1,decls:5,vars:1,consts:[["loopFailedBlock",""],["loopSuccessfulBlock",""],[4,"ngTemplateOutlet"],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"w-100","my-1"]],template:function(Ht,_n){if(1&Ht&&u.DNE(0,ve,1,0,"ng-container",2)(1,H,3,1,"ng-template",null,0,u.C5r)(3,$,14,2,"ng-template",null,1,u.C5r),2&Ht){const fi=u.sdS(2),bi=u.sdS(4);u.Y8G("ngTemplateOutlet",null!=_n.loopStatus&&_n.loopStatus.error?fi:bi)}},dependencies:[A.T3,Xe.q,ce.DJ,ce.sA,ce.UI],encapsulation:2}))}return At(),we})();var Vt=l(6949);const St=(At,we)=>({"small-svg":At,"large-svg":we});function ot(At,we){1&At&&u.eu8(0)}function nt(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",7)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),u.nrm(8,"circle",12)(9,"path",13),u.k0s(),u.j41(10,"g",14),u.nrm(11,"ellipse",15)(12,"ellipse",16)(13,"rect",17)(14,"rect",18)(15,"rect",19)(16,"rect",20)(17,"rect",21)(18,"rect",22)(19,"rect",23)(20,"rect",24)(21,"rect",25)(22,"rect",26)(23,"rect",27)(24,"rect",28)(25,"rect",29),u.k0s()()()()(),L.joV(),u.j41(26,"div",30)(27,"mat-card-title"),u.EFF(28,"Loop In explained."),u.k0s()(),u.j41(29,"div",31)(30,"mat-card-subtitle",32),u.EFF(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,St,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function ht(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",33)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"defs")(5,"linearGradient",34),u.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),u.k0s()(),u.j41(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40),u.nrm(13,"rect",41)(14,"rect",42)(15,"rect",43)(16,"circle",44)(17,"rect",45)(18,"rect",46)(19,"circle",47)(20,"rect",48)(21,"rect",49)(22,"rect",50)(23,"rect",51)(24,"rect",52)(25,"circle",53)(26,"circle",54)(27,"circle",55),u.k0s(),u.j41(28,"g",56)(29,"g",57)(30,"g",58),u.nrm(31,"path",59)(32,"rect",60)(33,"polygon",61),u.j41(34,"g",62),u.nrm(35,"path",63),u.k0s(),u.nrm(36,"rect",64)(37,"rect",65)(38,"rect",66)(39,"rect",67)(40,"rect",68)(41,"rect",69)(42,"rect",70)(43,"path",71)(44,"path",72),u.k0s(),u.j41(45,"g",73),u.nrm(46,"path",74)(47,"path",75)(48,"path",76)(49,"path",77)(50,"path",78)(51,"path",79)(52,"path",80)(53,"path",81)(54,"path",82)(55,"path",83)(56,"path",84)(57,"circle",85)(58,"circle",86),u.k0s(),u.nrm(59,"path",87),u.k0s()()()()()(),L.joV(),u.j41(60,"div",30)(61,"mat-card-title"),u.EFF(62,"Step 1: Deciding to Loop In"),u.k0s()(),u.j41(63,"div",31)(64,"mat-card-subtitle",32),u.EFF(65," Your outgoing capacity is depleted and you want to regain it without opening new channels. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,St,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function oe(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",88)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"defs")(5,"linearGradient",89),u.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),u.k0s()(),u.j41(9,"g",90)(10,"g",91)(11,"g",92)(12,"g",93)(13,"g",94),u.nrm(14,"circle",95)(15,"path",96),u.j41(16,"g",97),u.nrm(17,"polygon",98)(18,"polygon",99)(19,"path",100),u.k0s(),u.j41(20,"g",101),u.nrm(21,"polygon",102)(22,"path",103)(23,"rect",104)(24,"path",105)(25,"rect",106)(26,"rect",107)(27,"rect",108)(28,"rect",109)(29,"circle",110)(30,"path",111),u.j41(31,"g",112)(32,"g",113),u.nrm(33,"g",114),u.k0s(),u.nrm(34,"g",115),u.k0s()()(),u.j41(35,"g",116)(36,"g",40),u.nrm(37,"rect",117)(38,"rect",42)(39,"rect",43)(40,"circle",118)(41,"rect",45)(42,"rect",46)(43,"circle",119)(44,"rect",48)(45,"rect",49)(46,"rect",50)(47,"rect",51)(48,"rect",52)(49,"circle",120)(50,"circle",54)(51,"circle",55)(52,"circle",121),u.k0s(),u.j41(53,"g",56)(54,"g",57)(55,"g",58),u.nrm(56,"path",59)(57,"rect",60)(58,"polygon",61),u.j41(59,"g",122),u.nrm(60,"path",63),u.k0s(),u.nrm(61,"rect",123)(62,"rect",124)(63,"rect",125)(64,"rect",126)(65,"rect",127)(66,"rect",128)(67,"rect",129)(68,"path",130)(69,"path",72),u.k0s(),u.j41(70,"g",73),u.nrm(71,"path",131)(72,"path",132)(73,"path",133)(74,"path",134)(75,"path",135)(76,"path",136)(77,"path",80)(78,"path",81)(79,"path",137)(80,"path",83)(81,"path",138)(82,"circle",85)(83,"circle",86),u.k0s(),u.nrm(84,"path",139),u.k0s()()()(),u.nrm(85,"path",140)(86,"path",141),u.k0s()()()(),L.joV(),u.j41(87,"div",30)(88,"mat-card-title"),u.EFF(89,"Step 2: Send payment out"),u.k0s()(),u.j41(90,"div",31)(91,"mat-card-subtitle",32),u.EFF(92," Your node sends funds on-chain to loop server to be swapped with off-chain liquidity. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,St,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function Ye(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",142)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"g",90)(5,"g",143)(6,"g",144)(7,"g")(8,"g",145)(9,"g",146),u.nrm(10,"circle",12)(11,"path",147),u.k0s(),u.j41(12,"g",14),u.nrm(13,"ellipse",148)(14,"ellipse",16)(15,"rect",17)(16,"rect",18)(17,"rect",19)(18,"rect",20)(19,"rect",21)(20,"rect",22)(21,"rect",23)(22,"rect",24)(23,"rect",25)(24,"rect",26)(25,"rect",27)(26,"rect",28)(27,"rect",29),u.k0s()(),u.j41(28,"g",149),u.nrm(29,"polygon",150)(30,"polygon",99)(31,"path",151),u.k0s(),u.j41(32,"g",152),u.nrm(33,"polygon",102)(34,"path",103)(35,"rect",104)(36,"path",105)(37,"rect",106)(38,"rect",107)(39,"rect",108)(40,"rect",109)(41,"circle",110)(42,"path",111),u.j41(43,"g",112)(44,"g",113),u.nrm(45,"g",114),u.k0s(),u.nrm(46,"g",115),u.k0s()()(),u.nrm(47,"path",153),u.k0s()()()(),L.joV(),u.j41(48,"div",30)(49,"mat-card-title"),u.EFF(50,"Step 3: Recieve Funds Off-chain"),u.k0s()(),u.j41(51,"div",31)(52,"mat-card-subtitle",32),u.EFF(53," Loop server sends equivalent funds off-chain to your node by making a lightning payment to you. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,St,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function fe(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",154)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"defs")(5,"linearGradient",34),u.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),u.k0s()(),u.j41(9,"g",90)(10,"g",155)(11,"g",156)(12,"g",157)(13,"g",158)(14,"g",40),u.nrm(15,"rect",159)(16,"rect",160)(17,"rect",161)(18,"circle",162)(19,"rect",163)(20,"rect",164)(21,"circle",165)(22,"rect",166)(23,"rect",167)(24,"rect",168)(25,"rect",169)(26,"circle",170)(27,"circle",171),u.k0s(),u.j41(28,"g",172),u.nrm(29,"path",173)(30,"rect",174)(31,"polygon",175)(32,"circle",176)(33,"path",177)(34,"rect",178)(35,"rect",179)(36,"rect",180)(37,"rect",181)(38,"rect",182)(39,"rect",183)(40,"rect",184)(41,"path",185)(42,"path",186),u.k0s(),u.nrm(43,"path",187),u.k0s()(),u.nrm(44,"circle",188),u.k0s()()()(),L.joV(),u.j41(45,"div",30)(46,"mat-card-title"),u.EFF(47,"Done!"),u.k0s()(),u.j41(48,"div",31)(49,"mat-card-subtitle",32),u.EFF(50," You send the payment on-chain from your wallet and also move remote balance to the local side of the node, gaining outgoing capacity. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,St,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}let Qe=(()=>{var At;class we{constructor(Lt){this.commonService=Lt,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new u.bkB,this.screenSize="",this.screenSizeEnum=O.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(Lt){2===Lt.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===Lt.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=At=()=>(this.\u0275fac=function(Ht){return new(Ht||we)(u.rXU(Ce.h))},this.\u0275cmp=u.VBU({type:we,selectors:[["rtl-loop-in-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 108 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","Loopv0.2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopIn_Step01","transform","translate(-594.000000, -215.000000)","fill-rule","nonzero"],["id","Loop_Step01","transform","translate(594.000000, 215.000000)"],["id","Group-16","transform","translate(23.000000, 0.000000)"],["id","Oval","cx","42.4877419","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M56.0827415,28.5000036 C60.4468211,28.5000036 63.9999285,25.1343958 63.9999285,21.0000215 C63.9999285,16.8656472 60.4468211,13.5000393 56.0827415,13.5000393 C52.9843297,13.5000393 50.5608889,15.4359631 48.9999642,17.1843872 C47.4390396,15.4359631 45.0155987,13.5000393 41.9171869,13.5000393 C37.5531074,13.5000393 34,16.8656472 34,21.0000215 C34,25.1343958 37.5531074,28.5000036 41.9171869,28.5000036 C45.0155987,28.5000036 47.4390396,26.5640798 48.9999642,24.8156557 C50.5608889,26.5640798 52.9843297,28.5000036 56.0827415,28.5000036 Z M41.9171869,24.0000143 C40.0328073,24.0000143 38.4999893,22.6546959 38.4999893,21.0000286 C38.4999893,19.3453471 40.0328073,18.0000286 41.9171869,18.0000286 C43.707771,18.0000286 45.3577763,19.6921938 46.3234264,21.0000286 C45.3671604,22.2937501 43.7031019,24.0000143 41.9171869,24.0000143 Z M56.0827415,24.0000143 C54.2921574,24.0000143 52.6421522,22.3078492 51.676502,21.0000286 C52.6327681,19.7062929 54.2968266,18.0000286 56.0827415,18.0000286 C57.9671212,18.0000286 59.4999392,19.3453471 59.4999392,21.0000286 C59.4999392,22.6546959 57.9671212,24.0000143 56.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Group-21","transform","translate(0.000000, 36.000000)"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-7"],["id","Oval","opacity","0.1","cx","48.644129","cy","75.1589677","rx","40.8402581","ry","5.55600756",1,"fill-color-27"],["id","Rectangle","x","25.2325161","y","6.09470968","width","54.1068387","height","62.9512258",1,"fill-color-26"],["id","Rectangle","x","20","y","1.24344979e-14","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","20","y","26","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","19.7698065","y","52.9179355","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","67.6335484","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 200 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","0%","id","linearGradient-1"],["stop-color","#808080","stop-opacity","0.25","offset","0%"],["stop-color","#808080","stop-opacity","0.12","offset","54%"],["stop-color","#808080","stop-opacity","0.1","offset","100%"],["id","LoopIn_Step02","transform","translate(-542.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step02","transform","translate(542.000000, 210.000000)"],["id","Group-2"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-11"],["id","Rectangle","x","1.34483737","y","60.660286","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","67.352783","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","31.345208","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","38.0377051","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","2.03013005","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","8.72460769","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Rectangle","x","7.80560248","y","67.352783","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","38.0377051","width","33.2298507","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","8.72460769","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.93434243",1,"fill-color-31"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","45.3719212","r","7.93434243"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","74.6850186","r","7.93434243"],["id","Group-16","transform","translate(55.804478, 34.674627)"],["id","Group-29","transform","translate(0.310627, 0.751284)"],["id","Group"],["d","M132.777455,1.04124409 L82.2582659,1.04124409 L82.2582659,0 L59.3509036,0 L59.3509036,1.04124409 L8.62346042,1.04124409 C7.71715136,1.04124358 6.84796221,1.40127322 6.20710493,2.0421305 C5.56624765,2.68298778 5.20621852,3.55217693 5.20621852,4.45848599 L5.20621852,73.6347918 C5.20621852,74.5411031 5.56624437,75.4102953 6.2071016,76.0511558 C6.84795882,76.6920163 7.71714912,77.0520512 8.62346042,77.0520512 L132.777455,77.0520512 C134.664749,77.0520512 136.194697,75.522091 136.194697,73.6347977 L136.194697,4.45848599 C136.194697,3.55217693 135.834668,2.68298778 135.193811,2.0421305 C134.552953,1.40127322 133.683764,1.04124358 132.777455,1.04124409 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.78769098","y","7.08045867","width","121.825532","height","68.7220946",1,"fill-color-7"],["id","Path","opacity","0.306775484","points","96.7732181 75.8025901 9.78772787 75.8025901 9.78772787 7.08050333",1,"fill-color-27"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary-darker"],["d","M14.5668332,29.1332406 C8.67527117,29.1332406 3.36383033,25.5842492 1.10922733,20.1411555 C-1.14537566,14.6980619 0.100864684,8.43279022 4.26682842,4.26682704 C8.43279215,0.100863866 14.698064,-1.14537564 20.1411573,1.10922807 C25.5842507,3.36383179 29.1332406,8.67527311 29.1332406,14.5668351 C29.124133,22.607864 22.6078621,29.1241341 14.5668332,29.1332406 L14.5668332,29.1332406 Z M14.5668332,0.190838576 C6.62718953,0.190838576 0.190836635,6.62719147 0.190836635,14.5668351 C0.190836635,22.5064788 6.62718953,28.9428317 14.5668332,28.9428317 C22.5064768,28.9428317 28.9428297,22.5064788 28.9428297,14.5668351 C28.9338602,6.63090975 22.5027586,0.199808125 14.5668332,0.190838576 L14.5668332,0.190838576 Z","id","Shape"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-5"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-19"],["d","M139.615294,74.5530572 L127.725913,74.5530572 L127.725913,73.6964356 C127.725915,73.6513884 127.708021,73.6081857 127.676168,73.5763323 C127.644315,73.544479 127.601113,73.5265862 127.556065,73.5265862 L123.479706,73.5265862 C123.434659,73.5265862 123.391457,73.5444797 123.359604,73.5763329 C123.327751,73.6081861 123.309857,73.6513886 123.309859,73.6964356 L123.309859,74.5530572 L120.762134,74.5530572 L120.762134,73.6964356 C120.762135,73.6513886 120.744241,73.6081861 120.712388,73.5763329 C120.680536,73.5444797 120.637333,73.5265862 120.592286,73.5265862 L116.515927,73.5265862 C116.47088,73.5265862 116.427677,73.5444789 116.395824,73.5763322 C116.36397,73.6081855 116.346076,73.6513882 116.346078,73.6964356 L116.346078,74.5530572 L113.798355,74.5530572 L113.798355,73.6964356 C113.798356,73.6513882 113.780462,73.6081855 113.748609,73.5763322 C113.716755,73.5444789 113.673553,73.5265862 113.628505,73.5265862 L109.552146,73.5265862 C109.507099,73.5265862 109.463897,73.5444797 109.432044,73.5763329 C109.400191,73.6081861 109.382297,73.6513886 109.382299,73.6964356 L109.382299,74.5530572 L106.834574,74.5530572 L106.834574,73.6964356 C106.834575,73.6513886 106.816681,73.6081861 106.784828,73.5763329 C106.752975,73.5444797 106.709773,73.5265862 106.664726,73.5265862 L102.588363,73.5265862 C102.543316,73.5265862 102.500113,73.544479 102.46826,73.5763323 C102.436407,73.6081857 102.418513,73.6513884 102.418516,73.6964356 L102.418516,74.5530572 L99.8707946,74.5530572 L99.8707946,73.6964356 C99.8707961,73.6513882 99.8529018,73.6081855 99.8210486,73.5763322 C99.7891953,73.5444789 99.7459925,73.5265862 99.7009452,73.5265862 L95.6245878,73.5265862 C95.5795404,73.5265862 95.5363377,73.5444789 95.5044844,73.5763322 C95.4726311,73.6081855 95.4547369,73.6513882 95.4547384,73.6964356 L95.4547384,74.5530572 L92.9070135,74.5530572 L92.9070135,73.6964356 C92.9070151,73.6513886 92.889121,73.6081861 92.8572682,73.5763329 C92.8254153,73.5444797 92.7822131,73.5265862 92.7371661,73.5265862 L88.6608067,73.5265862 C88.6157597,73.5265862 88.5725575,73.5444797 88.5407046,73.5763329 C88.5088518,73.6081861 88.4909577,73.6513886 88.4909593,73.6964356 L88.4909593,74.5530572 L85.9432383,74.5530572 L85.9432383,73.6964356 C85.9432399,73.6513886 85.9253458,73.6081861 85.893493,73.5763329 C85.8616401,73.5444797 85.8184379,73.5265862 85.7733909,73.5265862 L53.8419073,73.5265862 C53.7968603,73.5265862 53.7536581,73.5444797 53.7218052,73.5763329 C53.6899524,73.6081861 53.6720584,73.6513886 53.6720599,73.6964356 L53.6720599,74.5530572 L51.124335,74.5530572 L51.124335,73.6964356 C51.1243366,73.6513882 51.1064423,73.6081855 51.074589,73.5763322 C51.0427358,73.5444789 50.999533,73.5265862 50.9544857,73.5265862 L46.8781379,73.5265862 C46.8330906,73.5265862 46.7898879,73.5444789 46.7580346,73.5763322 C46.7261813,73.6081855 46.708287,73.6513882 46.7082886,73.6964356 L46.7082886,74.5530572 L44.160554,74.5530572 L44.160554,73.6964356 C44.1605561,73.6513884 44.1426622,73.6081857 44.1108092,73.5763323 C44.0789563,73.544479 44.0357537,73.5265862 43.9907066,73.5265862 L39.9143472,73.5265862 C39.8693002,73.5265862 39.8260979,73.5444797 39.7942451,73.5763329 C39.7623922,73.6081861 39.7444982,73.6513886 39.7444998,73.6964356 L39.7444998,74.5530572 L37.1967749,74.5530572 L37.1967749,73.6964356 C37.1967764,73.6513886 37.1788824,73.6081861 37.1470296,73.5763329 C37.1151767,73.5444797 37.0719745,73.5265862 37.0269275,73.5265862 L32.9505681,73.5265862 C32.9055208,73.5265862 32.862318,73.5444789 32.8304647,73.5763322 C32.7986115,73.6081855 32.7807172,73.6513882 32.7807187,73.6964356 L32.7807187,74.5530572 L30.2329958,74.5530572 L30.2329958,73.6964356 C30.2329973,73.6513882 30.215103,73.6081855 30.1832498,73.5763322 C30.1513965,73.5444789 30.1081938,73.5265862 30.0631464,73.5265862 L25.986787,73.5265862 C25.94174,73.5265862 25.8985378,73.5444797 25.866685,73.5763329 C25.8348321,73.6081861 25.8169381,73.6513886 25.8169396,73.6964356 L25.8169396,74.5530572 L23.2692109,74.5530572 L23.2692109,73.6964356 C23.2692124,73.6513886 23.2513184,73.6081861 23.2194655,73.5763329 C23.1876127,73.5444797 23.1444104,73.5265862 23.0993634,73.5265862 L19.0230079,73.5265862 C18.9779608,73.5265862 18.9347582,73.544479 18.9029053,73.5763323 C18.8710523,73.6081857 18.8531585,73.6513884 18.8531605,73.6964356 L18.8531605,74.5530572 L16.3054357,74.5530572 L16.3054357,73.6964356 C16.3054372,73.6513882 16.2875429,73.6081855 16.2556896,73.5763322 C16.2238364,73.5444789 16.1806336,73.5265862 16.1355863,73.5265862 L12.0592288,73.5265862 C12.0141815,73.5265862 11.9709788,73.5444789 11.9391255,73.5763322 C11.9072722,73.6081855 11.8893779,73.6513882 11.8893795,73.6964356 L11.8893795,74.5530572 L4.07635746,74.5530572 C1.82504753,74.5530594 0,76.3781067 0,78.6294166 L0,80.4726504 C0,82.7239563 1.82505163,84.5489982 4.07635746,84.5489982 L139.615294,84.5489982 C141.8666,84.5489982 143.691654,82.7239566 143.691654,80.4726504 L143.691654,78.6294166 C143.691654,76.3781064 141.866605,74.5530594 139.615294,74.5530572 Z","id","Path",1,"fill-color-20"],["id","Group","transform","translate(14.563343, 25.890388)"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary-darker"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M54.316416,4.55250111 L54.316416,3.34665629 C54.316416,1.49819202 52.8172532,0 50.9687888,0 L3.34762718,0 C1.49916283,0 0,1.49819202 0,3.34665629 L0,5.56999336 L54.316416,4.55250111 Z","id","Path",1,"fill-color-16"],["d","M55.6018738,5.73601547 L55.6018738,39.231705 C55.6018738,39.9999836 55.2966099,40.7367813 54.7532639,41.2799452 C54.2099179,41.8231092 53.4730179,42.1278687 52.7047393,42.1278687 L2.89810531,42.1278687 C1.29897753,42.1273325 0.00291266866,40.8308329 0.00291266866,39.231705 L0.00291266866,2.35926161 C1.43012031,2.88936731 1.43012031,2.88936731 2.89810531,2.84470639 L52.7047393,2.84470639 C54.3025103,2.84470316 55.5986611,4.13824772 55.6018738,5.73601547 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-19"],["d","M55.4601239,18.5459322 L55.4601239,29.2577567 L45.0716057,29.2577567 C42.141738,29.2183086 39.7873207,26.8319777 39.7873207,23.9018444 C39.7873207,20.9717112 42.141738,18.5853803 45.0716057,18.5459322 L55.4601239,18.5459322 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-17"],["id","Oval","opacity","0.1","cx","45.7114219","cy","23.9023299","r","2.08838343",1,"fill-color-27"],["id","Oval","cx","45.8531718","cy","23.6188301","r","2.08838343",1,"fill-color-28"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-30"],["fxFlex","30","viewBox","0 0 364 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","8.86848147e-15%","id","linearGradient-1"],["id","Loopv0.3","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopIn_Step03","transform","translate(-1127.000000, -164.000000)"],["id","LoopIn_Step03","transform","translate(1127.000000, 164.000000)"],["id","Group-21"],["id","Group-35","transform","translate(107.000000, 10.000000)"],["id","Oval","fill-rule","nonzero","cx","214.487742","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M232.082742,28.5000036 C236.446821,28.5000036 239.999928,25.1343958 239.999928,21.0000215 C239.999928,16.8656472 236.446821,13.5000393 232.082742,13.5000393 C228.98433,13.5000393 226.560889,15.4359631 224.999964,17.1843872 C223.43904,15.4359631 221.015599,13.5000393 217.917187,13.5000393 C213.553107,13.5000393 210,16.8656472 210,21.0000215 C210,25.1343958 213.553107,28.5000036 217.917187,28.5000036 C221.015599,28.5000036 223.43904,26.5640798 224.999964,24.8156557 C226.560889,26.5640798 228.98433,28.5000036 232.082742,28.5000036 Z M217.917187,24.0000143 C216.032807,24.0000143 214.499989,22.6546959 214.499989,21.0000286 C214.499989,19.3453471 216.032807,18.0000286 217.917187,18.0000286 C219.707771,18.0000286 221.357776,19.6921938 222.323426,21.0000286 C221.36716,22.2937501 219.703102,24.0000143 217.917187,24.0000143 Z M232.082742,24.0000143 C230.292157,24.0000143 228.642152,22.3078492 227.676502,21.0000286 C228.632768,19.7062929 230.296827,18.0000286 232.082742,18.0000286 C233.967121,18.0000286 235.499939,19.3453471 235.499939,21.0000286 C235.499939,22.6546959 233.967121,24.0000143 232.082742,24.0000143 Z","id","i","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-44","transform","translate(0.000000, 64.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-20"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-23"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-20"],["id","Group-43","transform","translate(152.000000, 35.000000)"],["id","Path","fill-rule","nonzero","points","-9.84073267e-14 7.36243469 92.3919279 7.36243469 92.3919279 70.3073253 -1.13686838e-13 70.3073253",1,"fill-color-23"],["d","M97.5448374,1.70530257e-13 L6.62592538,1.70530257e-13 C6.01615907,0.000922175294 5.52114394,0.495001701 5.52114394,1.104768 L5.52114394,62.57664 C5.52114394,62.8696481 5.63752746,63.150658 5.84471672,63.3578447 C6.05190598,63.5650315 6.3329173,63.681408 6.62592538,63.681408 L97.5448374,63.681408 C97.8378436,63.681408 98.1188523,63.5650282 98.3260389,63.3578415 C98.5332256,63.1506549 98.6496054,62.8696462 98.6496054,62.57664 L98.6496054,1.104768 C98.6496054,0.495005713 98.1545997,0.000926622272 97.5448374,1.70530257e-13 L97.5448374,1.70530257e-13 Z M97.9130952,62.57664 C97.9130952,62.6744022 97.8747043,62.7682496 97.8055756,62.8373783 C97.736447,62.9065069 97.6425996,62.9448978 97.5448374,62.9448978 L6.62592538,62.9448978 C6.52816341,62.9448978 6.4343164,62.906506 6.3651879,62.8373775 C6.29605941,62.768249 6.25766754,62.674402 6.25766754,62.57664 L6.25766754,1.104768 C6.25766754,0.901512883 6.42267026,0.736512 6.62592538,0.736512 L97.5448374,0.736512 C97.7480931,0.736512 97.9130952,0.901512271 97.9130952,1.104768 L97.9130952,62.57664 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","10.3066764","y","43.4358624","width","41.5947948","height","4.78524211","rx","0.5376",1,"fill-color-19"],["d","M89.8141359,39.3872559 L76.5649839,39.3872559 C76.2719769,39.3872559 75.9909677,39.5036372 75.7837792,39.7108232 C75.5765907,39.9180091 75.4602025,40.1990169 75.4602025,40.4920239 L75.4602025,50.7978159 C75.4602025,51.090824 75.576586,51.3718339 75.7837753,51.5790207 C75.9909645,51.7862074 76.2719759,51.9025839 76.5649839,51.9025839 L89.8141359,51.9025839 C90.107143,51.9025839 90.3881533,51.7862079 90.5953406,51.5790206 C90.8025279,51.3718333 90.9189039,51.090823 90.9189039,50.7978159 L90.9189039,40.4920239 C90.9189039,40.199018 90.8025232,39.9180097 90.5953367,39.7108232 C90.3881502,39.5036367 90.1071419,39.3872559 89.8141359,39.3872559 Z M90.1823938,50.7978159 C90.182087,51.0010717 90.0173917,51.165767 89.8141359,51.1660719 L76.5649839,51.1660719 C76.3617256,51.165767 76.1970256,51.0010743 76.19671,50.7978159 L76.19671,40.4920239 C76.1964064,40.3942603 76.2351088,40.3004129 76.30424,40.2312847 C76.3733712,40.1621565 76.4672203,40.1234582 76.5649839,40.1237661 L89.8141359,40.1237661 C89.9118981,40.1234582 90.0057456,40.162157 90.0748742,40.2312857 C90.1440029,40.3004143 90.1827017,40.3942617 90.1823938,40.4920239 L90.1823938,50.7978159 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","41.7652758","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","44.7100416","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","47.6548047","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","11.4109632","y","4.41773875","width","19.1409684","height","8.09810266","rx","0.5376",1,"fill-color-19"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-4"],["d","M50.1798649,51.9764517 C43.6553251,51.9764517 37.7732336,48.0461636 35.2764005,42.0182748 C32.7795674,35.990386 34.1597014,29.0519859 38.773248,24.4384399 C43.3867946,19.824894 50.3251948,18.4447609 56.3530833,20.9415948 C62.3809718,23.4384287 66.3112582,29.3205207 66.3112582,35.8450605 C66.3011721,44.7500015 59.0848059,51.9663668 50.1798649,51.9764517 L50.1798649,51.9764517 Z M50.1798649,19.9245354 C41.3872016,19.9245354 34.2593397,27.0523972 34.2593397,35.8450605 C34.2593397,44.6377237 41.3872016,51.7655856 50.1798649,51.7655856 C58.9725281,51.7655856 66.10039,44.6377237 66.10039,35.8450605 C66.0904567,27.056515 58.9684103,19.9344686 50.1798649,19.9245354 L50.1798649,19.9245354 Z","id","Shape","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-23","transform","translate(5.000000, 0.001193)"],["id","Group-22"],["id","Group","transform","translate(0.378134, 0.000000)"],["id","Group-24","transform","translate(29.048000, 19.712000)"],["id","LoopIn_Step03","fill-rule","nonzero"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-10"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","15.8607624","r","7.93434243"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.35996418",1,"fill-color-31"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-20"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-4"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-20"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-20"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-16"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-9"],["d","M93.2292414,91.9116485 L93.2292414,89.7922708 C93.647506,89.8022089 94.0558324,89.8022089 94.4442517,89.8022089 L94.4442517,91.9116485 L95.9779294,91.9116485 L95.9779294,89.7623948 C98.5473303,89.6229527 100.264986,88.975618 100.494057,86.5555973 C100.673282,84.6136241 99.757032,83.7471573 98.3030443,83.3986138 C99.1794183,82.9504733 99.7371558,82.1537275 99.6076827,80.8291821 C99.4383337,79.0166511 97.9497787,78.4091306 95.9778985,78.2398742 L95.9778985,75.7301945 L94.4442208,75.7301945 L94.4442208,78.1701531 C94.0458325,78.1701531 93.6375061,78.1800912 93.2292106,78.1900602 L93.2292106,75.7301945 L91.695502,75.7301945 L91.695502,78.2398742 C91.1316227,78.2569109 90.4748746,78.2485777 88.6181777,78.2398742 L88.6181777,79.8731181 C89.8290831,79.8516987 90.4644118,79.7738914 90.6099957,80.5502979 L90.6099957,87.4220333 C90.517559,88.0380413 90.0245427,87.9493391 88.926907,87.9299259 L88.6181777,89.7524258 L89.5798445,89.7528809 C91.4824304,89.7548325 91.6955329,89.7623948 91.6955329,89.7623948 L91.6955329,91.9116485 L93.2292414,91.9116485 Z M93.2591175,83.0400705 L93.2591175,79.9826533 C94.1255534,79.9826533 96.8343964,79.7137998 96.8343964,81.5163618 C96.8343964,83.2392647 94.1255843,83.0400705 93.2591175,83.0400705 Z M93.2591175,87.9398948 L93.2591175,84.5737791 C94.2948407,84.5737791 97.4665153,84.2849568 97.4665153,86.2568678 C97.4665153,88.1589961 94.2948407,87.9398948 93.2591175,87.9398948 Z","id","b","fill-rule","nonzero","transform","translate(94.567271, 83.820921) rotate(14.000000) translate(-94.567271, -83.820921) ",1,"fill-color-9"],["d","M305.611064,96.181454 L305.611064,94.0620763 C306.029328,94.0720144 306.437655,94.0720144 306.826074,94.0720144 L306.826074,96.181454 L308.359752,96.181454 L308.359752,94.0322003 C310.929153,93.8927582 312.646809,93.2454235 312.875879,90.8254028 C313.055104,88.8834296 312.138854,88.0169628 310.684867,87.6684193 C311.561241,87.2202788 312.118978,86.423533 311.989505,85.0989876 C311.820156,83.2864566 310.331601,82.678936 308.359721,82.5096797 L308.359721,80 L306.826043,80 L306.826043,82.4399586 C306.427655,82.4399586 306.019328,82.4498967 305.611033,82.4598657 L305.611033,80 L304.077324,80 L304.077324,82.5096797 C303.513445,82.5267164 302.856697,82.5183832 301,82.5096797 L301,84.1429236 C302.210905,84.1215042 302.846234,84.0436969 302.991818,84.8201034 L302.991818,91.6918387 C302.899381,92.3078468 302.406365,92.2191446 301.308729,92.1997314 L301,94.0222313 L301.961667,94.0226864 C303.864253,94.024638 304.077355,94.0322003 304.077355,94.0322003 L304.077355,96.181454 L305.611064,96.181454 Z M305.64094,87.309876 L305.64094,84.2524587 C306.507376,84.2524587 309.216219,83.9836053 309.216219,85.7861673 C309.216219,87.5090702 306.507407,87.309876 305.64094,87.309876 Z M305.64094,92.2097003 L305.64094,88.8435846 C306.676663,88.8435846 309.848338,88.5547623 309.848338,90.5266733 C309.848338,92.4288016 306.676663,92.2097003 305.64094,92.2097003 Z","id","b","fill-rule","nonzero","transform","translate(306.949093, 88.090727) rotate(14.000000) translate(-306.949093, -88.090727) ",1,"fill-color-26"],["fxFlex","30","viewBox","0 0 278 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopIn_Step04","transform","translate(-1799.000000, -756.000000)"],["id","LoopIn_Step04","transform","translate(1799.000000, 756.000000)"],["id","Loop","fill-rule","nonzero"],["id","Group-16","transform","translate(24.000000, 0.000000)"],["d","M55.0827415,28.5000036 C59.4468211,28.5000036 62.9999285,25.1343958 62.9999285,21.0000215 C62.9999285,16.8656472 59.4468211,13.5000393 55.0827415,13.5000393 C51.9843297,13.5000393 49.5608889,15.4359631 47.9999642,17.1843872 C46.4390396,15.4359631 44.0155987,13.5000393 40.9171869,13.5000393 C36.5531074,13.5000393 33,16.8656472 33,21.0000215 C33,25.1343958 36.5531074,28.5000036 40.9171869,28.5000036 C44.0155987,28.5000036 46.4390396,26.5640798 47.9999642,24.8156557 C49.5608889,26.5640798 51.9843297,28.5000036 55.0827415,28.5000036 Z M40.9171869,24.0000143 C39.0328073,24.0000143 37.4999893,22.6546959 37.4999893,21.0000286 C37.4999893,19.3453471 39.0328073,18.0000286 40.9171869,18.0000286 C42.707771,18.0000286 44.3577763,19.6921938 45.3234264,21.0000286 C44.3671604,22.2937501 42.7031019,24.0000143 40.9171869,24.0000143 Z M55.0827415,24.0000143 C53.2921574,24.0000143 51.6421522,22.3078492 50.676502,21.0000286 C51.6327681,19.7062929 53.2968266,18.0000286 55.0827415,18.0000286 C56.9671212,18.0000286 58.4999392,19.3453471 58.4999392,21.0000286 C58.4999392,22.6546959 56.9671212,24.0000143 55.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-2"],["id","Group-44","transform","translate(27.000000, 69.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-19"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-19"],["id","Group-43","transform","translate(179.000000, 40.000000)"],["d","M225.805162,92.2474279 C226.071703,92.2474279 226.325569,92.1077892 226.465207,91.8666288 L232.050261,82.2197185 C232.345374,81.7151473 231.980441,81.0773212 231.393376,81.0773212 L227.731346,81.0773212 L229.083201,76.9583506 C229.210134,76.4759989 228.845202,76 228.346983,76 L223.777394,76 C223.396595,76 223.07291,76.2824384 223.022149,76.6600456 L222.006685,84.2760274 C221.946379,84.7329987 222.301798,85.1391782 222.76193,85.1391782 L226.528674,85.1391782 L225.065752,91.3112968 C224.951525,91.7936485 225.319618,92.2474279 225.805162,92.2474279 Z","id","b","fill-rule","nonzero","transform","translate(227.077378, 84.123714) rotate(14.000000) translate(-227.077378, -84.123714) ",1,"fill-color-12"],["fxFlex","30","viewBox","0 0 205 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopIn_Step05","transform","translate(-2386.000000, -764.000000)","fill-rule","nonzero"],["id","LoopIn_Step05","transform","translate(2386.000000, 764.000000)"],["id","Illustration_Step02"],["id","Group-31"],["id","Rectangle","x","0","y","0","width","90.1490688","height","100.616012",1,"fill-color-10"],["id","Rectangle","x","1.48932403","y","67.1775068","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","82.4918815","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","34.712875","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","42.1244006","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","50.0294431","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","2.2482432","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","24","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","42.1244006","width","36.8","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","9.66196224","width","51.2","height","16.0118784",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","50.2465905","r","8.78679245"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","82.7090289","r","8.78679245"],["id","Group","transform","translate(60.115627, 35.744427)"],["d","M133.318807,1.04548939 L82.5936439,1.04548939 L82.5936439,0 L59.5928852,0 L59.5928852,1.04548939 L8.65861943,1.04548939 C7.74861523,1.04548887 6.87588228,1.4069864 6.23241214,2.05045654 C5.58894199,2.69392669 5.22744498,3.56665964 5.22744498,4.47666384 L5.22744498,73.9350108 C5.22744498,74.8450173 5.5889387,75.7177532 6.23240879,76.3612266 C6.87587888,77.0047 7.74861298,77.3662028 8.65861943,77.3662028 L133.318807,77.3662028 C135.213795,77.3662028 136.749981,75.8300048 136.749981,73.9350167 L136.749981,4.47666384 C136.749981,3.56665964 136.388484,2.69392669 135.745014,2.05045654 C135.101544,1.4069864 134.228811,1.04548887 133.318807,1.04548939 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-25"],["id","Path","opacity","0.257273065","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-24"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-25"],["d","M31.5848237,68.0274261 C25.669241,68.0274261 20.3361447,64.4639649 18.0723494,58.9986791 C15.808554,53.5333932 17.0598755,47.2425772 21.2428244,43.0596288 C25.4257733,38.8766804 31.7165895,37.6253598 37.1818751,39.8891559 C42.6471607,42.1529519 46.2106203,47.4860487 46.2106203,53.4016314 C46.2014756,61.4754447 39.6586369,68.0182825 31.5848237,68.0274261 L31.5848237,68.0274261 Z M31.5848237,38.967022 C23.612809,38.967022 17.1502143,45.4296168 17.1502143,53.4016314 C17.1502143,61.3736461 23.612809,67.8362409 31.5848237,67.8362409 C39.5568383,67.8362409 46.0194331,61.3736461 46.0194331,53.4016314 C46.010427,45.4333502 39.5531049,38.9760281 31.5848237,38.967022 L31.5848237,38.967022 Z","id","Shape",1,"fill-color-primary"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","119.89017","y","8.50924347","width","4.7751428","height","4.7751428",1,"fill-color-6"],["d","M126.882344,15.5014148 L121.083948,15.5014148 L121.083948,9.70301894 L126.882344,9.70301894 L126.882344,15.5014148 Z M121.336061,15.2493191 L126.63024,15.2493191 L126.63024,9.95513218 L121.336061,9.95513218 L121.336061,15.2493191 Z","id","Shape",1,"fill-color-19"],["d","M140.184525,74.8570201 L128.246669,74.8570201 L128.246669,73.9969059 C128.246671,73.9516751 128.228704,73.9082962 128.196721,73.876313 C128.164738,73.8443298 128.12136,73.826364 128.076129,73.826364 L123.98315,73.826364 C123.937919,73.826364 123.89454,73.8443305 123.862558,73.8763135 C123.830575,73.9082966 123.812608,73.9516752 123.81261,73.9969059 L123.81261,74.8570201 L121.254497,74.8570201 L121.254497,73.9969059 C121.254499,73.9516752 121.236532,73.9082966 121.204549,73.8763135 C121.172566,73.8443305 121.129188,73.826364 121.083957,73.826364 L116.990978,73.826364 C116.945747,73.826364 116.902368,73.8443297 116.870385,73.8763129 C116.838402,73.908296 116.820435,73.9516749 116.820436,73.9969059 L116.820436,74.8570201 L114.262326,74.8570201 L114.262326,73.9969059 C114.262328,73.9516749 114.24436,73.908296 114.212377,73.8763129 C114.180394,73.8443297 114.137015,73.826364 114.091784,73.826364 L109.998805,73.826364 C109.953574,73.826364 109.910196,73.8443305 109.878213,73.8763135 C109.84623,73.9082966 109.828263,73.9516752 109.828265,73.9969059 L109.828265,74.8570201 L107.270153,74.8570201 L107.270153,73.9969059 C107.270154,73.9516752 107.252187,73.9082966 107.220204,73.8763135 C107.188222,73.8443305 107.144843,73.826364 107.099613,73.826364 L103.00663,73.826364 C102.961399,73.826364 102.91802,73.8443298 102.886037,73.876313 C102.854054,73.9082962 102.836088,73.9516751 102.83609,73.9969059 L102.83609,74.8570201 L100.277981,74.8570201 L100.277981,73.9969059 C100.277983,73.9516749 100.260016,73.908296 100.228032,73.8763129 C100.196049,73.8443297 100.15267,73.826364 100.107439,73.826364 L96.0144621,73.826364 C95.9692311,73.826364 95.9258522,73.8443297 95.8938691,73.8763129 C95.861886,73.908296 95.8439187,73.9516749 95.8439202,73.9969059 L95.8439202,74.8570201 L93.285808,74.8570201 L93.285808,73.9969059 C93.2858095,73.9516752 93.2678425,73.9082966 93.2358598,73.8763135 C93.2038771,73.8443305 93.1604987,73.826364 93.1152681,73.826364 L89.0222888,73.826364 C88.9770581,73.826364 88.9336797,73.8443305 88.901697,73.8763135 C88.8697143,73.9082966 88.8517473,73.9516752 88.8517489,73.9969059 L88.8517489,74.8570201 L86.2936405,74.8570201 L86.2936405,73.9969059 C86.293642,73.9516752 86.2756751,73.9082966 86.2436923,73.8763135 C86.2117096,73.8443305 86.1683312,73.826364 86.1231006,73.826364 L54.061428,73.826364 C54.0161974,73.826364 53.972819,73.8443305 53.9408363,73.8763135 C53.9088536,73.9082966 53.8908866,73.9516752 53.8908881,73.9969059 L53.8908881,74.8570201 L51.3327759,74.8570201 L51.3327759,73.9969059 C51.3327774,73.9516749 51.3148102,73.908296 51.282827,73.8763129 C51.2508439,73.8443297 51.207465,73.826364 51.162234,73.826364 L47.0692664,73.826364 C47.0240354,73.826364 46.9806565,73.8443297 46.9486734,73.8763129 C46.9166903,73.908296 46.898723,73.9516749 46.8987246,73.9969059 L46.8987246,74.8570201 L44.3406025,74.8570201 L44.3406025,73.9969059 C44.3406046,73.9516751 44.3226378,73.9082962 44.290655,73.876313 C44.2586721,73.8443298 44.2152934,73.826364 44.1700626,73.826364 L40.0770834,73.826364 C40.0318527,73.826364 39.9884743,73.8443305 39.9564916,73.8763135 C39.9245089,73.9082966 39.9065419,73.9516752 39.9065435,73.9969059 L39.9065435,74.8570201 L37.3484312,74.8570201 L37.3484312,73.9969059 C37.3484327,73.9516752 37.3304657,73.9082966 37.298483,73.8763135 C37.2665003,73.8443305 37.2231219,73.826364 37.1778913,73.826364 L33.084912,73.826364 C33.039681,73.826364 32.9963021,73.8443297 32.964319,73.8763129 C32.9323358,73.908296 32.9143686,73.9516749 32.9143701,73.9969059 L32.9143701,74.8570201 L30.3562598,74.8570201 L30.3562598,73.9969059 C30.3562614,73.9516749 30.3382941,73.908296 30.306311,73.8763129 C30.2743278,73.8443297 30.2309489,73.826364 30.1857179,73.826364 L26.0927387,73.826364 C26.047508,73.826364 26.0041296,73.8443305 25.9721469,73.8763135 C25.9401642,73.9082966 25.9221972,73.9516752 25.9221988,73.9969059 L25.9221988,74.8570201 L23.3640826,74.8570201 L23.3640826,73.9969059 C23.3640841,73.9516752 23.3461171,73.9082966 23.3141344,73.8763135 C23.2821517,73.8443305 23.2387733,73.826364 23.1935427,73.826364 L19.1005673,73.826364 C19.0553365,73.826364 19.0119578,73.8443298 18.979975,73.876313 C18.9479921,73.9082962 18.9300253,73.9516751 18.9300274,73.9969059 L18.9300274,74.8570201 L16.3719151,74.8570201 L16.3719151,73.9969059 C16.3719167,73.9516749 16.3539494,73.908296 16.3219663,73.8763129 C16.2899831,73.8443297 16.2466042,73.826364 16.2013733,73.826364 L12.1083959,73.826364 C12.0631649,73.826364 12.0197861,73.8443297 11.9878029,73.8763129 C11.9558198,73.908296 11.9378525,73.9516749 11.9378541,73.9969059 L11.9378541,74.8570201 L4.09297732,74.8570201 C1.83248849,74.8570223 0,76.6895106 0,78.9499994 L0,80.8007483 C0,83.061233 1.83249262,84.8937159 4.09297732,84.8937159 L140.184525,84.8937159 C142.44501,84.8937159 144.277504,83.0612333 144.277504,80.8007483 L144.277504,78.9499994 C144.277504,76.6895102 142.445014,74.8570223 140.184525,74.8570201 Z","id","Path",1,"fill-color-20"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-21"],["id","Oval","cx","74.1507041","cy","17.5648113","r","8.15070413",1,"fill-color-primary"]],template:function(Ht,_n){if(1&Ht&&u.DNE(0,ot,1,0,"ng-container",5)(1,nt,32,5,"ng-template",null,0,u.C5r)(3,ht,66,5,"ng-template",null,1,u.C5r)(5,oe,93,5,"ng-template",null,2,u.C5r)(7,Ye,54,5,"ng-template",null,3,u.C5r)(9,fe,51,5,"ng-template",null,4,u.C5r),2&Ht){const fi=u.sdS(2),bi=u.sdS(4),Qi=u.sdS(6),zi=u.sdS(8),It=u.sdS(10);u.Y8G("ngTemplateOutlet",1===_n.stepNumber?fi:2===_n.stepNumber?bi:3===_n.stepNumber?Qi:4===_n.stepNumber?zi:It)}},dependencies:[A.YU,A.T3,j.Lc,j.dh,ce.DJ,ce.sA,ce.UI,be.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Vt.k]}}))}return At(),we})();const gt=(At,we)=>({"small-svg":At,"large-svg":we});function Gt(At,we){1&At&&u.eu8(0)}function rt(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",7)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"g",8)(5,"g",9)(6,"g",10)(7,"g",11),u.nrm(8,"circle",12)(9,"path",13),u.k0s(),u.j41(10,"g",14),u.nrm(11,"ellipse",15)(12,"ellipse",16)(13,"rect",17)(14,"rect",18)(15,"rect",19)(16,"rect",20)(17,"rect",21)(18,"rect",22)(19,"rect",23)(20,"rect",24)(21,"rect",25)(22,"rect",26)(23,"rect",27)(24,"rect",28)(25,"rect",29),u.k0s()()()()(),L.joV(),u.j41(26,"div",30)(27,"mat-card-title"),u.EFF(28,"Loop Out explained."),u.k0s()(),u.j41(29,"div",31)(30,"mat-card-subtitle",32),u.EFF(31," Lightning Loop is a non custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using Submarine swaps. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,gt,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function cn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",33)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"defs")(5,"linearGradient",34),u.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),u.k0s()(),u.j41(9,"g",8)(10,"g",38)(11,"g",39)(12,"g",40)(13,"g",41)(14,"g",42),u.nrm(15,"rect",43)(16,"rect",44)(17,"rect",45)(18,"circle",46)(19,"rect",47)(20,"rect",48)(21,"circle",49)(22,"rect",50)(23,"rect",51)(24,"rect",52)(25,"rect",53)(26,"circle",54)(27,"circle",55),u.k0s(),u.j41(28,"g",56),u.nrm(29,"path",57)(30,"rect",58)(31,"polygon",59)(32,"circle",60)(33,"path",61)(34,"rect",62)(35,"rect",63)(36,"rect",64)(37,"rect",65)(38,"rect",66)(39,"rect",67)(40,"rect",68)(41,"path",69)(42,"path",70),u.k0s(),u.nrm(43,"path",71),u.k0s()(),u.nrm(44,"circle",72),u.k0s()()()(),L.joV(),u.j41(45,"div",30)(46,"mat-card-title"),u.EFF(47,"Step 1: Deciding to Loop Out"),u.k0s()(),u.j41(48,"div",31)(49,"mat-card-subtitle",32),u.EFF(50," You have a channel with a local balance amount and you want to gain inbound liquidity. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,gt,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function Ft(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",73)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"defs")(5,"linearGradient",74),u.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),u.k0s()(),u.j41(9,"g",8)(10,"g",75)(11,"g",76),u.nrm(12,"circle",77)(13,"path",78),u.j41(14,"g",79),u.nrm(15,"polygon",80)(16,"polygon",81)(17,"path",82),u.k0s(),u.j41(18,"g",83),u.nrm(19,"polygon",84)(20,"path",85)(21,"rect",86)(22,"path",87)(23,"rect",88)(24,"rect",89)(25,"rect",90)(26,"rect",91)(27,"circle",92)(28,"path",93),u.j41(29,"g",94)(30,"g",95),u.nrm(31,"g",96),u.k0s(),u.nrm(32,"g",97),u.k0s(),u.nrm(33,"path",98),u.k0s(),u.j41(34,"g",99)(35,"g",41)(36,"g",42),u.nrm(37,"rect",43)(38,"rect",44)(39,"rect",45)(40,"circle",46)(41,"rect",47)(42,"rect",48)(43,"circle",49)(44,"rect",50)(45,"rect",51)(46,"rect",52)(47,"rect",53)(48,"circle",100)(49,"circle",54)(50,"circle",55)(51,"circle",101),u.k0s(),u.j41(52,"g",56),u.nrm(53,"path",57)(54,"rect",102)(55,"polygon",103)(56,"circle",104)(57,"path",61)(58,"rect",105)(59,"rect",106)(60,"rect",107)(61,"rect",108)(62,"rect",109)(63,"rect",110)(64,"rect",68)(65,"path",69)(66,"path",70),u.k0s(),u.nrm(67,"path",111),u.k0s()()()()()(),L.joV(),u.j41(68,"div",30)(69,"mat-card-title"),u.EFF(70,"Step 2: Send lightning payment"),u.k0s()(),u.j41(71,"div",31)(72,"mat-card-subtitle",32),u.EFF(73," Your node pays a lightning invoice for the amount requested via the loop service. This moves the local balance, for the amount paid, to the remote side of the channel. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,gt,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function Sn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",112)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"g",8)(5,"g",113)(6,"g",114)(7,"g",115)(8,"g",116),u.nrm(9,"circle",12)(10,"path",117),u.k0s(),u.j41(11,"g",14),u.nrm(12,"ellipse",118)(13,"ellipse",16)(14,"rect",17)(15,"rect",18)(16,"rect",19)(17,"rect",20)(18,"rect",21)(19,"rect",22)(20,"rect",23)(21,"rect",24)(22,"rect",25)(23,"rect",26)(24,"rect",27)(25,"rect",28)(26,"rect",29),u.k0s()(),u.j41(27,"g",119),u.nrm(28,"polygon",80)(29,"polygon",120)(30,"path",82),u.k0s(),u.j41(31,"g",121),u.nrm(32,"polygon",84)(33,"path",85)(34,"rect",86)(35,"path",87)(36,"rect",88)(37,"rect",89)(38,"rect",90)(39,"rect",91)(40,"circle",122)(41,"path",93),u.j41(42,"g",94)(43,"g",95),u.nrm(44,"g",96),u.k0s(),u.nrm(45,"g",97),u.k0s(),u.nrm(46,"path",123),u.k0s()()()()(),L.joV(),u.j41(47,"div",30)(48,"mat-card-title"),u.EFF(49,"Step 3: Receive funds back"),u.k0s()(),u.j41(50,"div",31)(51,"mat-card-subtitle",32),u.EFF(52," Loop service then sends you a payment on-chain for the amount same as the lightning payment minus the fee. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,gt,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}function Qn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",6),u.bIt("swipe",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.onSwipe(Ht))}),L.qSk(),u.j41(1,"svg",124)(2,"desc"),u.EFF(3,"Created with Sketch."),u.k0s(),u.j41(4,"defs")(5,"linearGradient",34),u.nrm(6,"stop",35)(7,"stop",36)(8,"stop",37),u.k0s()(),u.j41(9,"g",8)(10,"g",125)(11,"g",126)(12,"g",42),u.nrm(13,"rect",127)(14,"rect",128)(15,"rect",129)(16,"circle",130)(17,"rect",131)(18,"rect",132)(19,"circle",133)(20,"rect",134)(21,"rect",135)(22,"rect",136)(23,"rect",137)(24,"rect",138)(25,"circle",139)(26,"circle",140)(27,"circle",141),u.k0s(),u.j41(28,"g",142)(29,"g",143)(30,"g",144),u.nrm(31,"path",145)(32,"rect",146)(33,"polygon",147),u.j41(34,"g",148),u.nrm(35,"path",149),u.k0s(),u.nrm(36,"rect",150)(37,"rect",151)(38,"rect",152)(39,"rect",153)(40,"rect",154)(41,"rect",155)(42,"rect",156)(43,"path",157)(44,"path",158),u.k0s(),u.j41(45,"g",159),u.nrm(46,"path",160)(47,"path",161)(48,"path",162)(49,"path",163)(50,"path",164)(51,"path",165)(52,"path",166)(53,"path",167)(54,"path",168)(55,"path",169)(56,"path",170)(57,"circle",171)(58,"circle",172),u.k0s(),u.nrm(59,"path",173),u.k0s()()()()()(),L.joV(),u.j41(60,"div",30)(61,"mat-card-title"),u.EFF(62,"Done!"),u.k0s()(),u.j41(63,"div",31)(64,"mat-card-subtitle",32),u.EFF(65," Final settlement occurs when your node sweeps the on-chain payment and the loop server settles the lightning invoice. You receive the payment on-chain in your wallet and also move local balance to the remote side of the channel, gaining inbound capacity. "),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@sliderAnimation",ae.animationDirection),u.R7$(),u.Y8G("ngClass",u.l_i(2,gt,ae.screenSize===ae.screenSizeEnum.XS,ae.screenSize!==ae.screenSizeEnum.XS))}}let h=(()=>{var At;class we{constructor(Lt){this.commonService=Lt,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new u.bkB,this.screenSize="",this.screenSizeEnum=O.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(Lt){2===Lt.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===Lt.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=At=()=>(this.\u0275fac=function(Ht){return new(Ht||we)(u.rXU(Ce.h))},this.\u0275cmp=u.VBU({type:we,selectors:[["rtl-loop-out-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["loopStepBlock1",""],["loopStepBlock2",""],["loopStepBlock3",""],["loopStepBlock4",""],["loopStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",3,"swipe"],["fxFlex","30","viewBox","0 0 108 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","Loopv0.2","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","LoopOut_Step01","transform","translate(-594.000000, -215.000000)","fill-rule","nonzero"],["id","Loop_Step01","transform","translate(594.000000, 215.000000)"],["id","Group-16","transform","translate(23.000000, 0.000000)"],["id","Oval","cx","42.4877419","cy","42.4877419","r","42.4877419",1,"fill-color-2"],["d","M56.0827415,28.5000036 C60.4468211,28.5000036 63.9999285,25.1343958 63.9999285,21.0000215 C63.9999285,16.8656472 60.4468211,13.5000393 56.0827415,13.5000393 C52.9843297,13.5000393 50.5608889,15.4359631 48.9999642,17.1843872 C47.4390396,15.4359631 45.0155987,13.5000393 41.9171869,13.5000393 C37.5531074,13.5000393 34,16.8656472 34,21.0000215 C34,25.1343958 37.5531074,28.5000036 41.9171869,28.5000036 C45.0155987,28.5000036 47.4390396,26.5640798 48.9999642,24.8156557 C50.5608889,26.5640798 52.9843297,28.5000036 56.0827415,28.5000036 Z M41.9171869,24.0000143 C40.0328073,24.0000143 38.4999893,22.6546959 38.4999893,21.0000286 C38.4999893,19.3453471 40.0328073,18.0000286 41.9171869,18.0000286 C43.707771,18.0000286 45.3577763,19.6921938 46.3234264,21.0000286 C45.3671604,22.2937501 43.7031019,24.0000143 41.9171869,24.0000143 Z M56.0827415,24.0000143 C54.2921574,24.0000143 52.6421522,22.3078492 51.676502,21.0000286 C52.6327681,19.7062929 54.2968266,18.0000286 56.0827415,18.0000286 C57.9671212,18.0000286 59.4999392,19.3453471 59.4999392,21.0000286 C59.4999392,22.6546959 57.9671212,24.0000143 56.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Group-21","transform","translate(0.000000, 36.000000)"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-7"],["id","Oval","opacity","0.1","cx","48.644129","cy","75.1589677","rx","40.8402581","ry","5.55600756",1,"fill-color-27"],["id","Rectangle","x","25.2325161","y","6.09470968","width","54.1068387","height","62.9512258",1,"fill-color-26"],["id","Rectangle","x","20","y","1.24344979e-14","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","20","y","26","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","19.7698065","y","52.9179355","width","65.0322581","height","22.3710968",1,"fill-color-19"],["id","Rectangle","x","67.6335484","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","3.75354839","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","30.0265806","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","67.6335484","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","73.6165161","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["id","Rectangle","x","79.5994839","y","56.2996129","width","4.16206452","height","4.16206452",1,"fill-color-green-light"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","viewBox","0 0 205 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","0%","id","linearGradient-1"],["stop-color","#808080","stop-opacity","0.25","offset","0%"],["stop-color","#808080","stop-opacity","0.12","offset","54%"],["stop-color","#808080","stop-opacity","0.1","offset","100%"],["id","LoopOut_Step02","transform","translate(-540.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step02","transform","translate(540.000000, 210.000000)"],["id","Illustration_Step02"],["id","Group-31"],["id","Group-2"],["id","Rectangle","x","0","y","0","width","90.1490688","height","100.616012",1,"fill-color-10"],["id","Rectangle","x","1.48932403","y","67.1775068","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","82.4918815","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","34.712875","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","42.1244006","width","51.2","height","16.0118784",1,"fill-color-primary-lighter"],["id","Oval","cx","76.317438","cy","50.0294431","r","8.15070413",1,"fill-color-primary-darker"],["id","Rectangle","x","1.48932403","y","2.2482432","width","87.1682273","height","31.2472904",1,"fill-color-1"],["id","Rectangle","x","8.64422093","y","74.5890324","width","24","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","42.1244006","width","36.8","height","16.0118784",1,"fill-color-primary"],["id","Rectangle","x","8.64422093","y","9.66196224","width","51.2","height","16.0118784",1,"fill-color-primary"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","50.2465905","r","8.78679245"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","82.7090289","r","8.78679245"],["id","Group","transform","translate(60.115627, 35.744427)"],["d","M133.318807,1.04548939 L82.5936439,1.04548939 L82.5936439,0 L59.5928852,0 L59.5928852,1.04548939 L8.65861943,1.04548939 C7.74861523,1.04548887 6.87588228,1.4069864 6.23241214,2.05045654 C5.58894199,2.69392669 5.22744498,3.56665964 5.22744498,4.47666384 L5.22744498,73.9350108 C5.22744498,74.8450173 5.5889387,75.7177532 6.23240879,76.3612266 C6.87587888,77.0047 7.74861298,77.3662028 8.65861943,77.3662028 L133.318807,77.3662028 C135.213795,77.3662028 136.749981,75.8300048 136.749981,73.9350167 L136.749981,4.47666384 C136.749981,3.56665964 136.388484,2.69392669 135.745014,2.05045654 C135.101544,1.4069864 134.228811,1.04548887 133.318807,1.04548939 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-25"],["id","Path","opacity","0.257273065","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-24"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-25"],["d","M31.5848237,68.0274261 C25.669241,68.0274261 20.3361447,64.4639649 18.0723494,58.9986791 C15.808554,53.5333932 17.0598755,47.2425772 21.2428244,43.0596288 C25.4257733,38.8766804 31.7165895,37.6253598 37.1818751,39.8891559 C42.6471607,42.1529519 46.2106203,47.4860487 46.2106203,53.4016314 C46.2014756,61.4754447 39.6586369,68.0182825 31.5848237,68.0274261 L31.5848237,68.0274261 Z M31.5848237,38.967022 C23.612809,38.967022 17.1502143,45.4296168 17.1502143,53.4016314 C17.1502143,61.3736461 23.612809,67.8362409 31.5848237,67.8362409 C39.5568383,67.8362409 46.0194331,61.3736461 46.0194331,53.4016314 C46.010427,45.4333502 39.5531049,38.9760281 31.5848237,38.967022 L31.5848237,38.967022 Z","id","Shape",1,"fill-color-primary"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-13"],["id","Rectangle","x","119.89017","y","8.50924347","width","4.7751428","height","4.7751428",1,"fill-color-6"],["d","M126.882344,15.5014148 L121.083948,15.5014148 L121.083948,9.70301894 L126.882344,9.70301894 L126.882344,15.5014148 Z M121.336061,15.2493191 L126.63024,15.2493191 L126.63024,9.95513218 L121.336061,9.95513218 L121.336061,15.2493191 Z","id","Shape",1,"fill-color-19"],["d","M140.184525,74.8570201 L128.246669,74.8570201 L128.246669,73.9969059 C128.246671,73.9516751 128.228704,73.9082962 128.196721,73.876313 C128.164738,73.8443298 128.12136,73.826364 128.076129,73.826364 L123.98315,73.826364 C123.937919,73.826364 123.89454,73.8443305 123.862558,73.8763135 C123.830575,73.9082966 123.812608,73.9516752 123.81261,73.9969059 L123.81261,74.8570201 L121.254497,74.8570201 L121.254497,73.9969059 C121.254499,73.9516752 121.236532,73.9082966 121.204549,73.8763135 C121.172566,73.8443305 121.129188,73.826364 121.083957,73.826364 L116.990978,73.826364 C116.945747,73.826364 116.902368,73.8443297 116.870385,73.8763129 C116.838402,73.908296 116.820435,73.9516749 116.820436,73.9969059 L116.820436,74.8570201 L114.262326,74.8570201 L114.262326,73.9969059 C114.262328,73.9516749 114.24436,73.908296 114.212377,73.8763129 C114.180394,73.8443297 114.137015,73.826364 114.091784,73.826364 L109.998805,73.826364 C109.953574,73.826364 109.910196,73.8443305 109.878213,73.8763135 C109.84623,73.9082966 109.828263,73.9516752 109.828265,73.9969059 L109.828265,74.8570201 L107.270153,74.8570201 L107.270153,73.9969059 C107.270154,73.9516752 107.252187,73.9082966 107.220204,73.8763135 C107.188222,73.8443305 107.144843,73.826364 107.099613,73.826364 L103.00663,73.826364 C102.961399,73.826364 102.91802,73.8443298 102.886037,73.876313 C102.854054,73.9082962 102.836088,73.9516751 102.83609,73.9969059 L102.83609,74.8570201 L100.277981,74.8570201 L100.277981,73.9969059 C100.277983,73.9516749 100.260016,73.908296 100.228032,73.8763129 C100.196049,73.8443297 100.15267,73.826364 100.107439,73.826364 L96.0144621,73.826364 C95.9692311,73.826364 95.9258522,73.8443297 95.8938691,73.8763129 C95.861886,73.908296 95.8439187,73.9516749 95.8439202,73.9969059 L95.8439202,74.8570201 L93.285808,74.8570201 L93.285808,73.9969059 C93.2858095,73.9516752 93.2678425,73.9082966 93.2358598,73.8763135 C93.2038771,73.8443305 93.1604987,73.826364 93.1152681,73.826364 L89.0222888,73.826364 C88.9770581,73.826364 88.9336797,73.8443305 88.901697,73.8763135 C88.8697143,73.9082966 88.8517473,73.9516752 88.8517489,73.9969059 L88.8517489,74.8570201 L86.2936405,74.8570201 L86.2936405,73.9969059 C86.293642,73.9516752 86.2756751,73.9082966 86.2436923,73.8763135 C86.2117096,73.8443305 86.1683312,73.826364 86.1231006,73.826364 L54.061428,73.826364 C54.0161974,73.826364 53.972819,73.8443305 53.9408363,73.8763135 C53.9088536,73.9082966 53.8908866,73.9516752 53.8908881,73.9969059 L53.8908881,74.8570201 L51.3327759,74.8570201 L51.3327759,73.9969059 C51.3327774,73.9516749 51.3148102,73.908296 51.282827,73.8763129 C51.2508439,73.8443297 51.207465,73.826364 51.162234,73.826364 L47.0692664,73.826364 C47.0240354,73.826364 46.9806565,73.8443297 46.9486734,73.8763129 C46.9166903,73.908296 46.898723,73.9516749 46.8987246,73.9969059 L46.8987246,74.8570201 L44.3406025,74.8570201 L44.3406025,73.9969059 C44.3406046,73.9516751 44.3226378,73.9082962 44.290655,73.876313 C44.2586721,73.8443298 44.2152934,73.826364 44.1700626,73.826364 L40.0770834,73.826364 C40.0318527,73.826364 39.9884743,73.8443305 39.9564916,73.8763135 C39.9245089,73.9082966 39.9065419,73.9516752 39.9065435,73.9969059 L39.9065435,74.8570201 L37.3484312,74.8570201 L37.3484312,73.9969059 C37.3484327,73.9516752 37.3304657,73.9082966 37.298483,73.8763135 C37.2665003,73.8443305 37.2231219,73.826364 37.1778913,73.826364 L33.084912,73.826364 C33.039681,73.826364 32.9963021,73.8443297 32.964319,73.8763129 C32.9323358,73.908296 32.9143686,73.9516749 32.9143701,73.9969059 L32.9143701,74.8570201 L30.3562598,74.8570201 L30.3562598,73.9969059 C30.3562614,73.9516749 30.3382941,73.908296 30.306311,73.8763129 C30.2743278,73.8443297 30.2309489,73.826364 30.1857179,73.826364 L26.0927387,73.826364 C26.047508,73.826364 26.0041296,73.8443305 25.9721469,73.8763135 C25.9401642,73.9082966 25.9221972,73.9516752 25.9221988,73.9969059 L25.9221988,74.8570201 L23.3640826,74.8570201 L23.3640826,73.9969059 C23.3640841,73.9516752 23.3461171,73.9082966 23.3141344,73.8763135 C23.2821517,73.8443305 23.2387733,73.826364 23.1935427,73.826364 L19.1005673,73.826364 C19.0553365,73.826364 19.0119578,73.8443298 18.979975,73.876313 C18.9479921,73.9082962 18.9300253,73.9516751 18.9300274,73.9969059 L18.9300274,74.8570201 L16.3719151,74.8570201 L16.3719151,73.9969059 C16.3719167,73.9516749 16.3539494,73.908296 16.3219663,73.8763129 C16.2899831,73.8443297 16.2466042,73.826364 16.2013733,73.826364 L12.1083959,73.826364 C12.0631649,73.826364 12.0197861,73.8443297 11.9878029,73.8763129 C11.9558198,73.908296 11.9378525,73.9516749 11.9378541,73.9969059 L11.9378541,74.8570201 L4.09297732,74.8570201 C1.83248849,74.8570223 0,76.6895106 0,78.9499994 L0,80.8007483 C0,83.061233 1.83249262,84.8937159 4.09297732,84.8937159 L140.184525,84.8937159 C142.44501,84.8937159 144.277504,83.0612333 144.277504,80.8007483 L144.277504,78.9499994 C144.277504,76.6895102 142.445014,74.8570223 140.184525,74.8570201 Z","id","Path",1,"fill-color-20"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-21"],["id","Oval","cx","74.1507041","cy","17.5648113","r","8.15070413",1,"fill-color-primary"],["fxFlex","30","viewBox","0 0 373 121","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["x1","50%","y1","100%","x2","50%","y2","8.86848147e-15%","id","linearGradient-1"],["id","LoopOut_Step03","transform","translate(-460.000000, -210.000000)"],["id","Loop_Step03","transform","translate(460.000000, 210.000000)"],["id","Oval","fill-rule","nonzero","cx","330.487742","cy","57.4877419","r","42.4877419",1,"fill-color-2"],["d","M345.082742,43.5000036 C349.446821,43.5000036 352.999928,40.1343958 352.999928,36.0000215 C352.999928,31.8656472 349.446821,28.5000393 345.082742,28.5000393 C341.98433,28.5000393 339.560889,30.4359631 337.999964,32.1843872 C336.43904,30.4359631 334.015599,28.5000393 330.917187,28.5000393 C326.553107,28.5000393 323,31.8656472 323,36.0000215 C323,40.1343958 326.553107,43.5000036 330.917187,43.5000036 C334.015599,43.5000036 336.43904,41.5640798 337.999964,39.8156557 C339.560889,41.5640798 341.98433,43.5000036 345.082742,43.5000036 Z M330.917187,39.0000143 C329.032807,39.0000143 327.499989,37.6546959 327.499989,36.0000286 C327.499989,34.3453471 329.032807,33.0000286 330.917187,33.0000286 C332.707771,33.0000286 334.357776,34.6921938 335.323426,36.0000286 C334.36716,37.2937501 332.703102,39.0000143 330.917187,39.0000143 Z M345.082742,39.0000143 C343.292157,39.0000143 341.642152,37.3078492 340.676502,36.0000286 C341.632768,34.7062929 343.296827,33.0000286 345.082742,33.0000286 C346.967121,33.0000286 348.499939,34.3453471 348.499939,36.0000286 C348.499939,37.6546959 346.967121,39.0000143 345.082742,39.0000143 Z","id","i","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-44","transform","translate(113.000000, 79.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 7.089946) scale(-1, 1) translate(-118.400000, -7.089946) ","points","234.731878 6.60770626 8.52651283e-14 6.60770626 8.52651283e-14 7.57218541 236.8 7.57218541",1,"fill-color-19"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-22"],["d","M120.192,8.96 L105.856,8.96 L105.856,1.86517468e-14 L120.192,1.86517468e-14 L120.192,8.96 Z M106.479304,8.57043501 L119.568696,8.57043501 L119.568696,0.389564988 L106.479304,0.389564988 L106.479304,8.57043501 Z","id","Shape","transform","translate(113.024000, 4.480000) scale(-1, 1) translate(-113.024000, -4.480000) ",1,"fill-color-19"],["id","Group-43","transform","translate(265.000000, 50.000000)"],["id","Path","fill-rule","nonzero","points","-9.84073267e-14 7.36243469 92.3919279 7.36243469 92.3919279 70.3073253 -1.13686838e-13 70.3073253",1,"fill-color-23"],["d","M97.5448374,1.70530257e-13 L6.62592538,1.70530257e-13 C6.01615907,0.000922175294 5.52114394,0.495001701 5.52114394,1.104768 L5.52114394,62.57664 C5.52114394,62.8696481 5.63752746,63.150658 5.84471672,63.3578447 C6.05190598,63.5650315 6.3329173,63.681408 6.62592538,63.681408 L97.5448374,63.681408 C97.8378436,63.681408 98.1188523,63.5650282 98.3260389,63.3578415 C98.5332256,63.1506549 98.6496054,62.8696462 98.6496054,62.57664 L98.6496054,1.104768 C98.6496054,0.495005713 98.1545997,0.000926622272 97.5448374,1.70530257e-13 L97.5448374,1.70530257e-13 Z M97.9130952,62.57664 C97.9130952,62.6744022 97.8747043,62.7682496 97.8055756,62.8373783 C97.736447,62.9065069 97.6425996,62.9448978 97.5448374,62.9448978 L6.62592538,62.9448978 C6.52816341,62.9448978 6.4343164,62.906506 6.3651879,62.8373775 C6.29605941,62.768249 6.25766754,62.674402 6.25766754,62.57664 L6.25766754,1.104768 C6.25766754,0.901512883 6.42267026,0.736512 6.62592538,0.736512 L97.5448374,0.736512 C97.7480931,0.736512 97.9130952,0.901512271 97.9130952,1.104768 L97.9130952,62.57664 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","10.3066764","y","43.4358624","width","41.5947948","height","4.78524211","rx","0.5376",1,"fill-color-19"],["d","M89.8141359,39.3872559 L76.5649839,39.3872559 C76.2719769,39.3872559 75.9909677,39.5036372 75.7837792,39.7108232 C75.5765907,39.9180091 75.4602025,40.1990169 75.4602025,40.4920239 L75.4602025,50.7978159 C75.4602025,51.090824 75.576586,51.3718339 75.7837753,51.5790207 C75.9909645,51.7862074 76.2719759,51.9025839 76.5649839,51.9025839 L89.8141359,51.9025839 C90.107143,51.9025839 90.3881533,51.7862079 90.5953406,51.5790206 C90.8025279,51.3718333 90.9189039,51.090823 90.9189039,50.7978159 L90.9189039,40.4920239 C90.9189039,40.199018 90.8025232,39.9180097 90.5953367,39.7108232 C90.3881502,39.5036367 90.1071419,39.3872559 89.8141359,39.3872559 Z M90.1823938,50.7978159 C90.182087,51.0010717 90.0173917,51.165767 89.8141359,51.1660719 L76.5649839,51.1660719 C76.3617256,51.165767 76.1970256,51.0010743 76.19671,50.7978159 L76.19671,40.4920239 C76.1964064,40.3942603 76.2351088,40.3004129 76.30424,40.2312847 C76.3733712,40.1621565 76.4672203,40.1234582 76.5649839,40.1237661 L89.8141359,40.1237661 C89.9118981,40.1234582 90.0057456,40.162157 90.0748742,40.2312857 C90.1440029,40.3004143 90.1827017,40.3942617 90.1823938,40.4920239 L90.1823938,50.7978159 Z","id","Shape","fill-rule","nonzero",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","41.7652758","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","44.7100416","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","78.6733409","y","47.6548047","width","9.03249715","height","1.86879168","rx","0.5376",1,"fill-color-19"],["id","Rectangle","fill-rule","nonzero","x","11.4109632","y","4.41773875","width","19.1409684","height","8.09810266","rx","0.5376",1,"fill-color-19"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-3"],["d","M50.1798649,51.9764517 C43.6553251,51.9764517 37.7732336,48.0461636 35.2764005,42.0182748 C32.7795674,35.990386 34.1597014,29.0519859 38.773248,24.4384399 C43.3867946,19.824894 50.3251948,18.4447609 56.3530833,20.9415948 C62.3809718,23.4384287 66.3112582,29.3205207 66.3112582,35.8450605 C66.3011721,44.7500015 59.0848059,51.9663668 50.1798649,51.9764517 L50.1798649,51.9764517 Z M50.1798649,19.9245354 C41.3872016,19.9245354 34.2593397,27.0523972 34.2593397,35.8450605 C34.2593397,44.6377237 41.3872016,51.7655856 50.1798649,51.7655856 C58.9725281,51.7655856 66.10039,44.6377237 66.10039,35.8450605 C66.0904567,27.056515 58.9684103,19.9344686 50.1798649,19.9245354 L50.1798649,19.9245354 Z","id","Shape","fill-rule","nonzero",1,"fill-color-primary"],["id","Group-23","transform","translate(5.000000, 0.001193)"],["id","Group-22"],["id","Group","transform","translate(0.378134, 0.000000)"],["id","Group-24","transform","translate(29.048000, 19.712000)"],["d","M46.60483,51.432122 C46.8713708,51.432122 47.1252368,51.2924832 47.2648756,51.0513229 L52.8499289,41.4044125 C53.145042,40.8998413 52.7801095,40.2620153 52.1930443,40.2620153 L48.5310139,40.2620153 L49.8828693,36.1430446 C50.0098023,35.6606929 49.6448699,35.184694 49.1466515,35.184694 L44.5770624,35.184694 C44.1962633,35.184694 43.8725779,35.4671324 43.8218171,35.8447396 L42.8063528,43.4607214 C42.7460473,43.9176927 43.1014659,44.3238722 43.5615982,44.3238722 L47.3283421,44.3238722 L45.8654203,50.4959909 C45.751193,50.9783426 46.1192864,51.432122 46.60483,51.432122 Z","id","b","fill-rule","nonzero","transform","translate(47.877046, 43.308408) rotate(14.000000) translate(-47.877046, -43.308408) ",1,"fill-color-12"],["id","Group-34","fill-rule","nonzero"],["id","Oval","fill","url(#linearGradient-1)","cx","76.317438","cy","17.5648113","r","8.78679245"],["id","Oval","cx","76.317438","cy","17.5648113","r","8.15070413",1,"fill-color-primary"],["id","Rectangle","x","9.82759671","y","7.10932665","width","122.322231","height","69.0022838",1,"fill-color-8"],["id","Path","opacity","0.222721354","points","97.1677755 76.1116475 9.82763376 76.1116475 9.82763376 7.10937149",1,"fill-color-18"],["id","Oval","cx","28.9673627","cy","59.1901502","r","11.7579927",1,"fill-color-8"],["id","Rectangle","x","99.4252759","y","44.3228077","width","11.4262324","height","2.38757043",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","25.733862","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","28.9741379","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","32.2144137","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","35.4546875","width","39.05384","height","1.0232453",1,"fill-color-14"],["id","Rectangle","x","85.6114731","y","38.6949634","width","39.05384","height","1.0232453",1,"fill-color-14"],["d","M88.0406297,103.870828 C88.3071704,103.870828 88.5610365,103.731189 88.7006752,103.490029 L94.2857286,93.8431185 C94.5808417,93.3385473 94.2159092,92.7007212 93.6288439,92.7007212 L89.9668136,92.7007212 L91.318669,88.5817505 C91.445602,88.0993988 91.0806695,87.6234 90.5824512,87.6234 L86.0128621,87.6234 C85.632063,87.6234 85.3083776,87.9058383 85.2576168,88.2834455 L84.2421525,95.8994274 C84.1818469,96.3563987 84.5372656,96.7625782 84.9973979,96.7625782 L88.7641417,96.7625782 L87.30122,102.934697 C87.1869926,103.417048 87.555086,103.870828 88.0406297,103.870828 Z","id","b","transform","translate(89.312846, 95.747114) rotate(14.000000) translate(-89.312846, -95.747114) ",1,"fill-color-12"],["fxFlex","30","viewBox","0 0 278 118","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopOut_Step04","transform","translate(-503.000000, -212.000000)"],["id","Loop_Step04","transform","translate(503.000000, 212.000000)"],["id","Loop","fill-rule","nonzero"],["id","Group-16","transform","translate(24.000000, 0.000000)"],["d","M55.0827415,28.5000036 C59.4468211,28.5000036 62.9999285,25.1343958 62.9999285,21.0000215 C62.9999285,16.8656472 59.4468211,13.5000393 55.0827415,13.5000393 C51.9843297,13.5000393 49.5608889,15.4359631 47.9999642,17.1843872 C46.4390396,15.4359631 44.0155987,13.5000393 40.9171869,13.5000393 C36.5531074,13.5000393 33,16.8656472 33,21.0000215 C33,25.1343958 36.5531074,28.5000036 40.9171869,28.5000036 C44.0155987,28.5000036 46.4390396,26.5640798 47.9999642,24.8156557 C49.5608889,26.5640798 51.9843297,28.5000036 55.0827415,28.5000036 Z M40.9171869,24.0000143 C39.0328073,24.0000143 37.4999893,22.6546959 37.4999893,21.0000286 C37.4999893,19.3453471 39.0328073,18.0000286 40.9171869,18.0000286 C42.707771,18.0000286 44.3577763,19.6921938 45.3234264,21.0000286 C44.3671604,22.2937501 42.7031019,24.0000143 40.9171869,24.0000143 Z M55.0827415,24.0000143 C53.2921574,24.0000143 51.6421522,22.3078492 50.676502,21.0000286 C51.6327681,19.7062929 53.2968266,18.0000286 55.0827415,18.0000286 C56.9671212,18.0000286 58.4999392,19.3453471 58.4999392,21.0000286 C58.4999392,22.6546959 56.9671212,24.0000143 55.0827415,24.0000143 Z","id","i",1,"fill-color-primary"],["id","Oval","cx","48.644129","cy","75.1589677","rx","48.644129","ry","6.61766437",1,"fill-color-2"],["id","Group-44","transform","translate(27.000000, 69.000000)","fill-rule","nonzero"],["id","Path","transform","translate(118.400000, 8.960000) scale(-1, 1) translate(-118.400000, -8.960000) ","points","113.024 5.376 123.776 5.376 123.776 12.544 113.024 12.544",1,"fill-color-23"],["id","Group-43","transform","translate(179.000000, 40.000000)"],["id","Oval","fill-rule","nonzero","cx","47.2929593","cy","42.2294561","r","12.9683743",1,"fill-color-4"],["d","M46.519593,50.6740439 L46.519593,48.5460252 C46.9395628,48.5560039 47.349554,48.5560039 47.739557,48.5560039 L47.739557,50.6740439 L49.2794877,50.6740439 L49.2794877,48.5160274 C51.8593644,48.3760168 53.5840235,47.7260428 53.8140277,45.2961554 C53.9939838,43.3462645 53.0739982,42.476265 51.6140824,42.1263004 C52.4940295,41.6763328 53.054041,40.8763386 52.92404,39.5463928 C52.7540005,37.7264719 51.2593765,37.1164744 49.2794567,36.9465279 L49.2794567,34.4266159 L47.739526,34.4266159 L47.739526,36.8765226 C47.3395134,36.8765226 46.9295222,36.8865012 46.519562,36.8965108 L46.519562,34.4266159 L44.9796003,34.4266159 L44.9796003,36.9465279 C44.413422,36.9636341 43.7539962,36.9552669 41.8897293,36.9465279 L41.8897293,38.5864308 C43.1055717,38.564924 43.7434908,38.4867995 43.8896683,39.2663716 L43.8896683,46.1661239 C43.7968547,46.7846435 43.3018283,46.6955796 42.1997174,46.6760872 L41.8897293,48.5060178 C44.6975648,48.5060178 44.9796313,48.5160274 44.9796313,48.5160274 L44.9796313,50.6740439 L46.519593,50.6740439 Z M46.5495908,41.7662953 L46.5495908,38.6964125 C47.4195593,38.6964125 50.1394466,38.4264629 50.1394466,40.2363742 C50.1394466,41.9663016 47.4195903,41.7662953 46.5495908,41.7662953 Z M46.5495908,46.6860969 L46.5495908,43.306257 C47.5895368,43.306257 50.7741427,43.0162572 50.7741427,44.9962079 C50.7741427,46.9060914 47.5895368,46.6860969 46.5495908,46.6860969 Z","id","B","fill-rule","nonzero","transform","translate(47.863077, 42.550330) rotate(14.000000) translate(-47.863077, -42.550330) ",1,"fill-color-29"],["fxFlex","30","viewBox","0 0 200 120","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["id","LoopOut_Step05","transform","translate(-542.000000, -210.000000)","fill-rule","nonzero"],["id","Loop_Step05","transform","translate(542.000000, 210.000000)"],["id","Rectangle","x","0","y","0","width","81.4032636","height","90.8547569",1,"fill-color-11"],["id","Rectangle","x","1.34483737","y","60.660286","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","67.352783","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","74.4889377","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","31.345208","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","38.0377051","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Oval","cx","68.9135074","cy","45.1758404","r","7.35996418",1,"fill-color-primary-darker"],["id","Rectangle","x","1.34483737","y","2.03013005","width","78.7116083","height","28.2158368",1,"fill-color-9"],["id","Rectangle","x","7.80560248","y","8.72460769","width","46.2328358","height","14.4584872",1,"fill-color-primary-lighter"],["id","Rectangle","x","7.80560248","y","67.352783","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","38.0377051","width","33.2298507","height","14.4584872",1,"fill-color-primary"],["id","Rectangle","x","7.80560248","y","8.72460769","width","23.1164179","height","14.4584872",1,"fill-color-primary"],["id","Oval","cx","68.9135074","cy","15.8607624","r","7.93434243",1,"fill-color-31"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","45.3719212","r","7.93434243"],["id","Oval","fill","url(#linearGradient-1)","cx","68.9135074","cy","74.6850186","r","7.93434243"],["id","Group-16","transform","translate(55.804478, 34.674627)"],["id","Group-29","transform","translate(0.310627, 0.751284)"],["id","Group"],["d","M132.777455,1.04124409 L82.2582659,1.04124409 L82.2582659,0 L59.3509036,0 L59.3509036,1.04124409 L8.62346042,1.04124409 C7.71715136,1.04124358 6.84796221,1.40127322 6.20710493,2.0421305 C5.56624765,2.68298778 5.20621852,3.55217693 5.20621852,4.45848599 L5.20621852,73.6347918 C5.20621852,74.5411031 5.56624437,75.4102953 6.2071016,76.0511558 C6.84795882,76.6920163 7.71714912,77.0520512 8.62346042,77.0520512 L132.777455,77.0520512 C134.664749,77.0520512 136.194697,75.522091 136.194697,73.6347977 L136.194697,4.45848599 C136.194697,3.55217693 135.834668,2.68298778 135.193811,2.0421305 C134.552953,1.40127322 133.683764,1.04124358 132.777455,1.04124409 Z","id","Path",1,"fill-color-20"],["id","Rectangle","x","9.78769098","y","7.08045867","width","121.825532","height","68.7220946",1,"fill-color-7"],["id","Path","opacity","0.306775484","points","96.7732181 75.8025901 9.78772787 75.8025901 9.78772787 7.08050333",1,"fill-color-27"],["id","Group-24","transform","translate(16.889738, 38.617955)",1,"fill-color-primary-darker"],["d","M14.5668332,29.1332406 C8.67527117,29.1332406 3.36383033,25.5842492 1.10922733,20.1411555 C-1.14537566,14.6980619 0.100864684,8.43279022 4.26682842,4.26682704 C8.43279215,0.100863866 14.698064,-1.14537564 20.1411573,1.10922807 C25.5842507,3.36383179 29.1332406,8.67527311 29.1332406,14.5668351 C29.124133,22.607864 22.6078621,29.1241341 14.5668332,29.1332406 L14.5668332,29.1332406 Z M14.5668332,0.190838576 C6.62718953,0.190838576 0.190836635,6.62719147 0.190836635,14.5668351 C0.190836635,22.5064788 6.62718953,28.9428317 14.5668332,28.9428317 C22.5064768,28.9428317 28.9428297,22.5064788 28.9428297,14.5668351 C28.9338602,6.63090975 22.5027586,0.199808125 14.5668332,0.190838576 L14.5668332,0.190838576 Z","id","Shape"],["id","Rectangle","x","99.0215517","y","44.1428314","width","11.3798353","height","2.37787551",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","25.6293676","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","28.8564861","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","32.0836045","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","35.310721","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","85.2638409","y","38.5378394","width","38.8952588","height","1.01909033",1,"fill-color-15"],["id","Rectangle","x","119.403347","y","8.47469101","width","4.75575295","height","4.75575295",1,"fill-color-5"],["d","M126.367128,15.4384701 L120.592277,15.4384701 L120.592277,9.66361906 L126.367128,9.66361906 L126.367128,15.4384701 Z M120.843366,15.1873981 L126.116048,15.1873981 L126.116048,9.91470857 L120.843366,9.91470857 L120.843366,15.1873981 Z","id","Shape",1,"fill-color-19"],["d","M139.615294,74.5530572 L127.725913,74.5530572 L127.725913,73.6964356 C127.725915,73.6513884 127.708021,73.6081857 127.676168,73.5763323 C127.644315,73.544479 127.601113,73.5265862 127.556065,73.5265862 L123.479706,73.5265862 C123.434659,73.5265862 123.391457,73.5444797 123.359604,73.5763329 C123.327751,73.6081861 123.309857,73.6513886 123.309859,73.6964356 L123.309859,74.5530572 L120.762134,74.5530572 L120.762134,73.6964356 C120.762135,73.6513886 120.744241,73.6081861 120.712388,73.5763329 C120.680536,73.5444797 120.637333,73.5265862 120.592286,73.5265862 L116.515927,73.5265862 C116.47088,73.5265862 116.427677,73.5444789 116.395824,73.5763322 C116.36397,73.6081855 116.346076,73.6513882 116.346078,73.6964356 L116.346078,74.5530572 L113.798355,74.5530572 L113.798355,73.6964356 C113.798356,73.6513882 113.780462,73.6081855 113.748609,73.5763322 C113.716755,73.5444789 113.673553,73.5265862 113.628505,73.5265862 L109.552146,73.5265862 C109.507099,73.5265862 109.463897,73.5444797 109.432044,73.5763329 C109.400191,73.6081861 109.382297,73.6513886 109.382299,73.6964356 L109.382299,74.5530572 L106.834574,74.5530572 L106.834574,73.6964356 C106.834575,73.6513886 106.816681,73.6081861 106.784828,73.5763329 C106.752975,73.5444797 106.709773,73.5265862 106.664726,73.5265862 L102.588363,73.5265862 C102.543316,73.5265862 102.500113,73.544479 102.46826,73.5763323 C102.436407,73.6081857 102.418513,73.6513884 102.418516,73.6964356 L102.418516,74.5530572 L99.8707946,74.5530572 L99.8707946,73.6964356 C99.8707961,73.6513882 99.8529018,73.6081855 99.8210486,73.5763322 C99.7891953,73.5444789 99.7459925,73.5265862 99.7009452,73.5265862 L95.6245878,73.5265862 C95.5795404,73.5265862 95.5363377,73.5444789 95.5044844,73.5763322 C95.4726311,73.6081855 95.4547369,73.6513882 95.4547384,73.6964356 L95.4547384,74.5530572 L92.9070135,74.5530572 L92.9070135,73.6964356 C92.9070151,73.6513886 92.889121,73.6081861 92.8572682,73.5763329 C92.8254153,73.5444797 92.7822131,73.5265862 92.7371661,73.5265862 L88.6608067,73.5265862 C88.6157597,73.5265862 88.5725575,73.5444797 88.5407046,73.5763329 C88.5088518,73.6081861 88.4909577,73.6513886 88.4909593,73.6964356 L88.4909593,74.5530572 L85.9432383,74.5530572 L85.9432383,73.6964356 C85.9432399,73.6513886 85.9253458,73.6081861 85.893493,73.5763329 C85.8616401,73.5444797 85.8184379,73.5265862 85.7733909,73.5265862 L53.8419073,73.5265862 C53.7968603,73.5265862 53.7536581,73.5444797 53.7218052,73.5763329 C53.6899524,73.6081861 53.6720584,73.6513886 53.6720599,73.6964356 L53.6720599,74.5530572 L51.124335,74.5530572 L51.124335,73.6964356 C51.1243366,73.6513882 51.1064423,73.6081855 51.074589,73.5763322 C51.0427358,73.5444789 50.999533,73.5265862 50.9544857,73.5265862 L46.8781379,73.5265862 C46.8330906,73.5265862 46.7898879,73.5444789 46.7580346,73.5763322 C46.7261813,73.6081855 46.708287,73.6513882 46.7082886,73.6964356 L46.7082886,74.5530572 L44.160554,74.5530572 L44.160554,73.6964356 C44.1605561,73.6513884 44.1426622,73.6081857 44.1108092,73.5763323 C44.0789563,73.544479 44.0357537,73.5265862 43.9907066,73.5265862 L39.9143472,73.5265862 C39.8693002,73.5265862 39.8260979,73.5444797 39.7942451,73.5763329 C39.7623922,73.6081861 39.7444982,73.6513886 39.7444998,73.6964356 L39.7444998,74.5530572 L37.1967749,74.5530572 L37.1967749,73.6964356 C37.1967764,73.6513886 37.1788824,73.6081861 37.1470296,73.5763329 C37.1151767,73.5444797 37.0719745,73.5265862 37.0269275,73.5265862 L32.9505681,73.5265862 C32.9055208,73.5265862 32.862318,73.5444789 32.8304647,73.5763322 C32.7986115,73.6081855 32.7807172,73.6513882 32.7807187,73.6964356 L32.7807187,74.5530572 L30.2329958,74.5530572 L30.2329958,73.6964356 C30.2329973,73.6513882 30.215103,73.6081855 30.1832498,73.5763322 C30.1513965,73.5444789 30.1081938,73.5265862 30.0631464,73.5265862 L25.986787,73.5265862 C25.94174,73.5265862 25.8985378,73.5444797 25.866685,73.5763329 C25.8348321,73.6081861 25.8169381,73.6513886 25.8169396,73.6964356 L25.8169396,74.5530572 L23.2692109,74.5530572 L23.2692109,73.6964356 C23.2692124,73.6513886 23.2513184,73.6081861 23.2194655,73.5763329 C23.1876127,73.5444797 23.1444104,73.5265862 23.0993634,73.5265862 L19.0230079,73.5265862 C18.9779608,73.5265862 18.9347582,73.544479 18.9029053,73.5763323 C18.8710523,73.6081857 18.8531585,73.6513884 18.8531605,73.6964356 L18.8531605,74.5530572 L16.3054357,74.5530572 L16.3054357,73.6964356 C16.3054372,73.6513882 16.2875429,73.6081855 16.2556896,73.5763322 C16.2238364,73.5444789 16.1806336,73.5265862 16.1355863,73.5265862 L12.0592288,73.5265862 C12.0141815,73.5265862 11.9709788,73.5444789 11.9391255,73.5763322 C11.9072722,73.6081855 11.8893779,73.6513882 11.8893795,73.6964356 L11.8893795,74.5530572 L4.07635746,74.5530572 C1.82504753,74.5530594 0,76.3781067 0,78.6294166 L0,80.4726504 C0,82.7239563 1.82505163,84.5489982 4.07635746,84.5489982 L139.615294,84.5489982 C141.8666,84.5489982 143.691654,82.7239566 143.691654,80.4726504 L143.691654,78.6294166 C143.691654,76.3781064 141.866605,74.5530594 139.615294,74.5530572 Z","id","Path",1,"fill-color-20"],["id","Group","transform","translate(14.563343, 25.890388)"],["d","M34.1898756,18.6935074 C34.8335754,18.7760331 35.5015474,18.8284611 36.1180622,18.6284578 C36.2151512,18.5983603 36.321949,18.5313689 36.3122401,18.4342799 C36.3052976,18.3990002 36.2903506,18.3657846 36.2685501,18.337191 C36.0361522,17.9886397 35.8409087,17.6167008 35.6860164,17.2274642 C35.6798777,17.2071636 35.6672606,17.1894314 35.6500935,17.176978 C35.6300188,17.1697099 35.6080312,17.1697099 35.5879565,17.176978 C35.3034859,17.2517365 35.0578508,17.4352346 34.775322,17.5138766 C34.6312683,17.5533966 34.4809179,17.5646069 34.3325963,17.5468869 C34.2044389,17.5323235 34.0296788,17.4264966 33.9131721,17.440089 C33.9791925,17.8643678 34.1403602,18.2604907 34.1898756,18.6935074 Z","id","Path",1,"fill-color-primary-darker"],["d","M46.3638597,17.6187327 C46.7881384,17.3274658 47.2279514,17.0216356 47.4784409,16.5721138 C47.4963243,16.5452282 47.5067138,16.5140596 47.5085385,16.481821 C47.5042662,16.4500929 47.4918946,16.4199997 47.4726155,16.394441 C47.2340087,16.0151166 46.9268212,15.6835648 46.5667756,15.4167552 C46.3789189,15.549458 46.2091963,15.7061249 46.061913,15.8827822 C45.9551152,15.9954054 45.6599648,16.1740491 45.6570521,16.3458965 C45.6570521,16.4429855 45.7696753,16.5556086 45.8221033,16.6371634 C45.8929782,16.7420194 45.9599696,16.8488173 46.0240483,16.9575569 C46.0609421,17.0109558 46.3978408,17.5973731 46.3638597,17.6187327 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2730042,20.0320475 30.3444715,19.9740213 30.423795,19.9284789 L30.7548683,19.7148832 C30.9101158,19.6051008 31.0788103,19.515696 31.2568182,19.4488595 C31.3878883,19.4061404 31.5267255,19.3876935 31.6597374,19.3517706 C32.1247935,19.215846 32.4801391,18.846908 32.8102415,18.4925333 L33.2607343,18.011943 C33.3028503,17.9590638 33.3562578,17.9162715 33.4170475,17.8866982 C33.4795282,17.8658617 33.5459388,17.8595527 33.6112254,17.8682513 C34.0488232,17.8994947 34.4713668,18.041122 34.8394007,18.2799085 C34.9334629,18.3504651 35.0350556,18.4103788 35.1423182,18.4585522 C35.4064002,18.5614665 35.7452406,18.4837953 35.9889339,18.3536961 C36.1044698,18.2915592 36.0792267,18.2566071 36.1277711,18.1459257 C36.1763156,18.0352443 36.2947641,17.9643694 36.3976784,18.0653419 C36.4287289,18.1002598 36.4507324,18.1422664 36.4617571,18.187674 C36.5588461,18.5080675 36.5219523,18.8527333 36.5219523,19.1886611 C36.519104,19.2411857 36.5256803,19.2937961 36.5413701,19.3440034 C36.566144,19.3946232 36.5957307,19.4427421 36.629721,19.4876951 C36.6366398,19.4995928 36.642801,19.5119152 36.6481679,19.5245889 C36.7075588,19.673314 36.7298837,19.8342531 36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M36.7132175,19.9935285 C36.7207976,20.0935521 36.6933371,20.1930963 36.6355464,20.2750865 C36.5902231,20.3206727 36.5341172,20.3540691 36.4724369,20.3721755 C35.5724223,20.6945108 34.5306578,20.2925625 33.632585,20.6100434 C33.448116,20.675093 33.2733558,20.7692693 33.0879159,20.8314062 C32.8668382,20.8978733 32.6387504,20.9382775 32.4082933,20.9517965 C32.0908124,20.9818941 31.7713897,21.0013119 31.4529379,21.0100499 C31.2109788,21.0271812 30.9678332,21.0058814 30.7325379,20.9469421 C30.494578,20.8860354 30.29373,20.7268395 30.1801017,20.5090709 C30.1312849,20.4125511 30.1215484,20.3009295 30.1529168,20.1974154 C30.1669968,20.1619216 30.1870252,20.1290882 30.2121411,20.1003264 C30.2645691,20.2100369 30.3024338,20.3556704 30.3354441,20.4080984 C30.4256618,20.5652773 30.5791886,20.6760005 30.7568101,20.7119868 C30.8882242,20.7200556 31.0199808,20.7032567 31.1451659,20.6624715 C31.9607132,20.4605264 32.8277175,20.4576138 33.6112254,20.1517835 C33.8801618,20.0459566 34.1364767,19.9051776 34.4190055,19.8410989 C34.7015344,19.7770202 35.0015392,19.7944962 35.2928061,19.770224 C35.7530078,19.7333301 36.1986461,19.5944929 36.6520515,19.5216762 C36.7105975,19.6716231 36.7315958,19.83361 36.7132175,19.9935285 L36.7132175,19.9935285 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.3279723,20.332004 43.3179103,20.2563656 43.3356552,20.1847938 C43.3626747,20.1059564 43.4090817,20.0351774 43.4706088,19.9789652 C43.5770067,19.8683202 43.6912186,19.7654647 43.8123619,19.6711932 C43.9785829,19.5639234 44.1283649,19.4331094 44.2570293,19.2828374 C44.335968,19.1640934 44.3940832,19.0327597 44.4288768,18.8944816 C44.4976483,18.652227 44.5396476,18.4031617 44.5541216,18.1517511 C44.5535898,17.9846963 44.5708393,17.8180593 44.6055787,17.6546556 C44.6774245,17.3983408 44.8677189,17.1692108 44.8463593,16.904158 C44.8377185,16.866204 44.8411119,16.8265011 44.8560682,16.7905639 C44.8786704,16.7624825 44.9101823,16.7429588 44.94539,16.7352232 C45.0937604,16.6760869 45.2502282,16.6397523 45.4094752,16.6274545 C45.571226,16.6162976 45.7294484,16.6783037 45.8405502,16.7963893 C45.9065707,16.8760022 45.9502607,16.9905672 46.0473497,17.0216356 C46.0954598,17.0347655 46.1459295,17.0367577 46.1949249,17.027461 C46.4337637,17.0031887 46.686195,16.9730912 46.8745476,16.8187197 C47.0505482,16.6608586 47.152616,16.4366614 47.1561056,16.2002631 C47.1561056,16.1119121 47.1162991,16.0196776 47.2531945,16.0060852 C47.3561088,15.9924927 47.4376635,16.1031741 47.4900916,16.1711364 C47.679415,16.4245386 47.8735929,16.6895914 47.9444679,16.9983343 C47.9720312,16.9876362 48.0013112,16.9820434 48.030877,16.9818292 C48.1537854,16.9807475 48.2694521,17.0398499 48.3405908,17.1400842 C48.4179108,17.2653269 48.447872,17.4140998 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M48.4250582,17.5595084 C48.3823391,17.9012616 48.1658307,18.1954411 47.9279627,18.4449597 C47.6900948,18.6944783 47.4211584,18.9187538 47.2318349,19.2061371 C46.9988214,19.5624536 46.8939654,20.0042083 46.5910478,20.3051841 C46.4747693,20.4146353 46.3441148,20.5077266 46.202692,20.5818876 C46.0442646,20.6753601 45.8767312,20.752458 45.7026839,20.8119884 C45.2502494,20.956651 44.7628628,20.9236407 44.2900396,20.8886887 C44.1365309,20.8872131 43.9845596,20.8579372 43.8414886,20.8022795 C43.7763574,20.7691922 43.7140162,20.7308783 43.6550778,20.6877146 C43.5365551,20.6147292 43.4367964,20.5149704 43.363811,20.3964477 C43.4548211,20.3526902 43.5541213,20.3288581 43.6550778,20.3265437 C43.86479,20.3381943 44.0181905,20.5362558 44.2191647,20.5974219 C44.5055771,20.683831 44.7910186,20.481886 45.0813146,20.4129528 C45.270638,20.3682919 45.4696704,20.3799426 45.6570521,20.3158639 C45.8132081,20.2555144 45.9574928,20.168089 46.0832726,20.0576073 C46.2556706,19.9343474 46.4090818,19.786497 46.5386198,19.6187652 C46.646198,19.4510234 46.735696,19.2723528 46.8056144,19.0857468 C46.9589198,18.7281302 47.1393856,18.3827784 47.345429,18.0527203 C47.375905,18.0004629 47.4127576,17.9521958 47.4551395,17.9090287 C47.5007713,17.8672804 47.5522285,17.8381537 47.6036856,17.8012599 C47.7978635,17.6546556 47.8784474,17.4129041 47.9464096,17.1760071 C47.9648208,17.1040024 47.9905203,17.0340608 48.0231099,16.9672512 C48.1460183,16.9661841 48.2616849,17.0252865 48.3328237,17.1255208 C48.4163608,17.2537243 48.4492363,17.4084124 48.4250582,17.5595084 L48.4250582,17.5595084 Z","id","Path",1,"fill-color-primary-darker"],["d","M54.316416,4.55250111 L54.316416,3.34665629 C54.316416,1.49819202 52.8172532,0 50.9687888,0 L3.34762718,0 C1.49916283,0 0,1.49819202 0,3.34665629 L0,5.56999336 L54.316416,4.55250111 Z","id","Path",1,"fill-color-16"],["d","M55.6018738,5.73601547 L55.6018738,39.231705 C55.6018738,39.9999836 55.2966099,40.7367813 54.7532639,41.2799452 C54.2099179,41.8231092 53.4730179,42.1278687 52.7047393,42.1278687 L2.89810531,42.1278687 C1.29897753,42.1273325 0.00291266866,40.8308329 0.00291266866,39.231705 L0.00291266866,2.35926161 C1.43012031,2.88936731 1.43012031,2.88936731 2.89810531,2.84470639 L52.7047393,2.84470639 C54.3025103,2.84470316 55.5986611,4.13824772 55.6018738,5.73601547 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,6.16223599 L55.6018738,39.6579255 C55.6018738,41.2575895 54.3044034,42.5540891 52.7047393,42.5540891 L2.89810531,42.5540891 C1.29897753,42.553553 0.00291266866,41.2570534 0.00291266866,39.6579255 L0.00291266866,2.78451124 C1.43012031,3.31364604 1.43012031,3.31364604 2.89810531,3.26995601 L52.7047393,3.26995601 C54.3028886,3.26995377 55.5991959,4.56408894 55.6018738,6.16223599 Z","id","Path",1,"fill-color-19"],["d","M55.4601239,18.5459322 L55.4601239,29.2577567 L45.0716057,29.2577567 C42.141738,29.2183086 39.7873207,26.8319777 39.7873207,23.9018444 C39.7873207,20.9717112 42.141738,18.5853803 45.0716057,18.5459322 L55.4601239,18.5459322 Z","id","Path","opacity","0.1",1,"fill-color-27"],["d","M55.6018738,18.2604907 L55.6018738,28.9742569 L45.2133556,28.9742569 C42.2834879,28.9348088 39.9290706,26.5484779 39.9290706,23.6183447 C39.9290706,20.6882114 42.2834879,18.3018806 45.2133556,18.2624325 L55.6018738,18.2604907 Z","id","Path",1,"fill-color-17"],["id","Oval","opacity","0.1","cx","45.7114219","cy","23.9023299","r","2.08838343",1,"fill-color-27"],["id","Oval","cx","45.8531718","cy","23.6188301","r","2.08838343",1,"fill-color-28"],["d","M37.114137,56.485738 L37.114137,54.3663604 C37.5324015,54.3762985 37.9407279,54.3762985 38.3291472,54.3762985 L38.3291472,56.485738 L39.8628249,56.485738 L39.8628249,54.3364843 C42.4322258,54.1970423 44.1498818,53.5497076 44.378952,51.1296869 C44.5581774,49.1877136 43.6419275,48.3212469 42.1879398,47.9727034 C43.0643138,47.5245628 43.6220513,46.7278171 43.4925782,45.4032717 C43.3232292,43.5907407 41.8346742,42.9832201 39.8627941,42.8139637 L39.8627941,40.3042841 L38.3291164,40.3042841 L38.3291164,42.7442427 C37.9307281,42.7442427 37.5224017,42.7541808 37.1141061,42.7641498 L37.1141061,40.3042841 L35.5803975,40.3042841 L35.5803975,42.8139637 C35.0165182,42.8310005 34.3597701,42.8226673 32.5030732,42.8139637 L32.5030732,44.4472076 C33.7139786,44.4257882 34.3493073,44.3479809 34.4948913,45.1243875 L34.4948913,51.9961228 C34.4024546,52.6121309 33.9094382,52.5234287 32.8118025,52.5040154 L32.5030732,54.3265154 L33.46474,54.3269705 C35.3673259,54.328922 35.5804284,54.3364843 35.5804284,54.3364843 L35.5804284,56.485738 L37.114137,56.485738 Z M37.144013,47.6141601 L37.144013,44.5567428 C38.0104489,44.5567428 40.7192919,44.2878893 40.7192919,46.0904514 C40.7192919,47.8133542 38.0104798,47.6141601 37.144013,47.6141601 Z M37.144013,52.5139844 L37.144013,49.1478686 C38.1797362,49.1478686 41.3514108,48.8590464 41.3514108,50.8309574 C41.3514108,52.7330856 38.1797362,52.5139844 37.144013,52.5139844 Z","id","b","transform","translate(38.452166, 48.395011) rotate(14.000000) translate(-38.452166, -48.395011) ",1,"fill-color-30"]],template:function(Ht,_n){if(1&Ht&&u.DNE(0,Gt,1,0,"ng-container",5)(1,rt,32,5,"ng-template",null,0,u.C5r)(3,cn,51,5,"ng-template",null,1,u.C5r)(5,Ft,74,5,"ng-template",null,2,u.C5r)(7,Sn,53,5,"ng-template",null,3,u.C5r)(9,Qn,66,5,"ng-template",null,4,u.C5r),2&Ht){const fi=u.sdS(2),bi=u.sdS(4),Qi=u.sdS(6),zi=u.sdS(8),It=u.sdS(10);u.Y8G("ngTemplateOutlet",1===_n.stepNumber?fi:2===_n.stepNumber?bi:3===_n.stepNumber?Qi:4===_n.stepNumber?zi:It)}},dependencies:[A.YU,A.T3,j.Lc,j.dh,ce.DJ,ce.sA,ce.UI,be.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Vt.k]}}))}return At(),we})();const jt=["stepper"],Ue=()=>[1,2,3,4,5],wt=(At,we)=>({"dot-primary":At,"dot-primary-lighter":we});function pt(At,we){if(1&At&&(u.j41(0,"div",49)(1,"p",50)(2,"strong"),u.EFF(3,"Channel Peer:\xa0"),u.k0s(),u.EFF(4),u.nI1(5,"titlecase"),u.k0s(),u.j41(6,"p",51)(7,"strong"),u.EFF(8,"Channel ID:\xa0"),u.k0s(),u.EFF(9),u.k0s(),u.nrm(10,"p",51),u.k0s()),2&At){const ae=u.XpG(2);u.R7$(4),u.JRh(u.bMT(5,2,ae.channel.remote_alias)),u.R7$(5),u.JRh(ae.channel.chan_id)}}function Pt(At,we){if(1&At&&u.EFF(0),2&At){const ae=u.XpG(2);u.JRh(ae.inputFormLabel)}}function gn(At,we){1&At&&(u.j41(0,"mat-error"),u.EFF(1,"Amount is required."),u.k0s())}function ei(At,we){if(1&At&&(u.j41(0,"mat-error"),u.EFF(1),u.nI1(2,"number"),u.k0s()),2&At){const ae=u.XpG(2);u.R7$(),u.SpI("Amount must be greater than or equal to ",u.bMT(2,1,ae.minQuote.amount),".")}}function vi(At,we){if(1&At&&(u.j41(0,"mat-error"),u.EFF(1),u.nI1(2,"number"),u.k0s()),2&At){const ae=u.XpG(2);u.R7$(),u.SpI("Amount must be less than or equal to ",u.bMT(2,1,ae.maxQuote.amount),".")}}function Ni(At,we){1&At&&(u.j41(0,"mat-error"),u.EFF(1,"Confirmation target is required."),u.k0s())}function kn(At,we){1&At&&(u.j41(0,"mat-error"),u.EFF(1,"Confirmation target must be a positive number."),u.k0s())}function Ri(At,we){1&At&&(u.j41(0,"mat-error"),u.EFF(1,"Percentage is required."),u.k0s())}function vt(At,we){1&At&&(u.j41(0,"mat-error"),u.EFF(1,"Percentage must be a positive number."),u.k0s())}function ee(At,we){if(1&At&&(u.j41(0,"mat-form-field",51)(1,"mat-label"),u.EFF(2,"Max Off-chain Routing Fee (%)"),u.k0s(),u.nrm(3,"input",52),u.DNE(4,Ri,2,0,"mat-error",26)(5,vt,2,0,"mat-error",26),u.k0s()),2&At){const ae=u.XpG(2);u.R7$(3),u.Y8G("step",1),u.R7$(),u.Y8G("ngIf",null==ae.inputFormGroup.controls.routingFeePercent.errors?null:ae.inputFormGroup.controls.routingFeePercent.errors.required),u.R7$(),u.Y8G("ngIf",null==ae.inputFormGroup.controls.routingFeePercent.errors?null:ae.inputFormGroup.controls.routingFeePercent.errors.min)}}function ye(At,we){1&At&&(u.j41(0,"div",53)(1,"mat-slide-toggle",54),u.EFF(2,"Fast"),u.k0s(),u.j41(3,"mat-icon",55),u.EFF(4,"info_outline"),u.k0s()())}function ke(At,we){if(1&At&&u.EFF(0),2&At){const ae=u.XpG(2);u.JRh(ae.quoteFormLabel)}}function Se(At,we){1&At&&(u.j41(0,"p",56)(1,"mat-icon",57),u.EFF(2,"close"),u.k0s(),u.EFF(3,"Local balance amount is insufficient for swap."),u.k0s())}function ge(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",58),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onValidateAmount())}),u.EFF(1,"Next"),u.k0s()}}function N(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",59),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onLoop())}),u.EFF(1),u.k0s()}if(2&At){const ae=u.XpG(2);u.R7$(),u.SpI("Initiate ",ae.loopDirectionCaption)}}function Z(At,we){if(1&At&&u.EFF(0),2&At){const ae=u.XpG(3);u.JRh(ae.addressFormLabel)}}function Me(At,we){1&At&&(u.j41(0,"mat-error"),u.EFF(1,"Address is required."),u.k0s())}function at(At,we){if(1&At){const ae=u.RV6();u.j41(0,"mat-step",16)(1,"form",17),u.DNE(2,Z,1,1,"ng-template",18),u.j41(3,"div",60)(4,"mat-radio-group",61),u.bIt("change",function(Ht){L.eBV(ae);const _n=u.XpG(2);return L.Njj(_n.onAddressTypeChange(Ht))}),u.j41(5,"mat-radio-button",62),u.EFF(6,"Node Local Address"),u.k0s(),u.j41(7,"mat-radio-button",63),u.EFF(8,"External Address"),u.k0s()(),u.j41(9,"mat-form-field",64)(10,"mat-label"),u.EFF(11,"Address"),u.k0s(),u.nrm(12,"input",65),u.DNE(13,Me,2,0,"mat-error",26),u.k0s()(),u.j41(14,"div",30)(15,"button",66),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onLoop())}),u.EFF(16),u.k0s()()()()}if(2&At){const ae=u.XpG(2);u.Y8G("stepControl",ae.addressFormGroup)("editable",ae.flgEditable),u.R7$(),u.Y8G("formGroup",ae.addressFormGroup),u.R7$(11),u.Y8G("required","external"===ae.addressFormGroup.controls.addressType.value),u.R7$(),u.Y8G("ngIf",null==ae.addressFormGroup.controls.address.errors?null:ae.addressFormGroup.controls.address.errors.required),u.R7$(3),u.SpI("Initiate ",ae.loopDirectionCaption)}}function qe(At,we){if(1&At&&u.EFF(0),2&At){const ae=u.XpG(2);u.SpI("",ae.loopDirectionCaption," Status")}}function pn(At,we){if(1&At&&(u.j41(0,"mat-icon",67),u.EFF(1),u.k0s()),2&At){const ae=u.XpG(2);u.R7$(),u.JRh(ae.loopStatus&&null!=ae.loopStatus&&ae.loopStatus.id_bytes?"check":"close")}}function Je(At,we){1&At&&u.nrm(0,"div")}function Be(At,we){1&At&&u.nrm(0,"mat-progress-bar",68)}function ut(At,we){if(1&At&&(u.j41(0,"h4",69),u.EFF(1),u.k0s()),2&At){const ae=u.XpG(2);u.R7$(),u.JRh(ae.loopStatus&&ae.loopStatus.error?ae.loopDirectionCaption+" failed.":ae.loopStatus&&ae.loopStatus.id_bytes&&ae.channel?ae.loopDirectionCaption+" request placed successfully. You can check the status of the request on the 'Loop' menu.":ae.loopDirectionCaption+" request placed successfully.")}}function Ge(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",70),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.goToLoop())}),u.EFF(1,"Check Status"),u.k0s()}}function Ot(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",71),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onRestart())}),u.EFF(1,"Start Again"),u.k0s()}}function se(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),u.EFF(5),u.k0s()(),u.j41(6,"div",9)(7,"button",10),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG();return L.Njj(Ht.showInfo())}),u.EFF(8,"?"),u.k0s(),u.j41(9,"button",11),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG();return L.Njj(Ht.onClose())}),u.EFF(10,"X"),u.k0s()()(),u.j41(11,"mat-card-content",12)(12,"div",13),u.DNE(13,pt,11,4,"div",14),u.j41(14,"mat-vertical-stepper",15,1),u.bIt("selectionChange",function(Ht){L.eBV(ae);const _n=u.XpG();return L.Njj(_n.stepSelectionChanged(Ht))}),u.j41(16,"mat-step",16)(17,"form",17),u.DNE(18,Pt,1,1,"ng-template",18),u.j41(19,"div",19),u.nrm(20,"rtl-loop-quote",20)(21,"rtl-loop-quote",21),u.k0s(),u.j41(22,"div",22)(23,"mat-form-field",23)(24,"mat-label"),u.EFF(25,"Amount"),u.k0s(),u.nrm(26,"input",24),u.j41(27,"mat-hint"),u.EFF(28),u.nI1(29,"number"),u.nI1(30,"number"),u.k0s(),u.j41(31,"span",25),u.EFF(32,"Sats"),u.k0s(),u.DNE(33,gn,2,0,"mat-error",26)(34,ei,3,3,"mat-error",26)(35,vi,3,3,"mat-error",26),u.k0s(),u.j41(36,"mat-form-field",23)(37,"mat-label"),u.EFF(38,"Sweep Confirmation Target"),u.k0s(),u.nrm(39,"input",27),u.DNE(40,Ni,2,0,"mat-error",26)(41,kn,2,0,"mat-error",26),u.k0s(),u.DNE(42,ee,6,3,"mat-form-field",28),u.k0s(),u.DNE(43,ye,5,0,"div",29),u.j41(44,"div",30)(45,"button",31),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG();return L.Njj(Ht.onEstimateQuote())}),u.EFF(46,"Estimate Quote"),u.k0s()()()(),u.j41(47,"mat-step",16)(48,"form",17),u.DNE(49,ke,1,1,"ng-template",18),u.nrm(50,"rtl-loop-quote",32),u.DNE(51,Se,4,0,"p",33),u.j41(52,"div",30),u.DNE(53,ge,2,0,"button",34)(54,N,2,1,"button",35),u.k0s()()(),u.DNE(55,at,17,6,"mat-step",36),u.j41(56,"mat-step",37)(57,"form",17),u.DNE(58,qe,1,1,"ng-template",18),u.j41(59,"div",38)(60,"mat-expansion-panel",39)(61,"mat-expansion-panel-header")(62,"mat-panel-title")(63,"span",40),u.EFF(64),u.DNE(65,pn,2,1,"mat-icon",41),u.k0s()()(),u.DNE(66,Je,1,0,"div",42),u.k0s(),u.DNE(67,Be,1,0,"mat-progress-bar",43),u.k0s(),u.DNE(68,ut,2,1,"h4",44),u.j41(69,"div",30),u.DNE(70,Ge,2,0,"button",45)(71,Ot,2,0,"button",46),u.k0s()()()(),u.j41(72,"div",47)(73,"button",48),u.EFF(74,"Close"),u.k0s()()()()()()}if(2&At){const ae=u.XpG(),Lt=u.sdS(2);u.Y8G("@opacityAnimation",void 0),u.R7$(3),u.Y8G("ngClass",ae.screenSize===ae.screenSizeEnum.XS||ae.screenSize===ae.screenSizeEnum.SM?"flex-83":"flex-91"),u.R7$(2),u.JRh(ae.channel?"Channel "+ae.loopDirectionCaption:ae.loopDirectionCaption),u.R7$(),u.Y8G("ngClass",ae.screenSize===ae.screenSizeEnum.XS||ae.screenSize===ae.screenSizeEnum.SM?"flex-17":"flex-9"),u.R7$(7),u.Y8G("ngIf",ae.channel),u.R7$(),u.Y8G("linear",!0),u.R7$(2),u.Y8G("stepControl",ae.inputFormGroup)("editable",ae.flgEditable),u.R7$(),u.Y8G("formGroup",ae.inputFormGroup),u.R7$(3),u.Y8G("quote",ae.minQuote)("panelExpanded",!1)("showPanel",!0),u.R7$(),u.Y8G("quote",ae.maxQuote)("panelExpanded",!1)("showPanel",!0),u.R7$(2),u.Y8G("ngClass",ae.direction===ae.LoopTypeEnum.LOOP_OUT?"flex-35":"flex-48"),u.R7$(3),u.Y8G("step",1e3),u.R7$(2),u.Lme("Range: ",u.bMT(29,49,ae.minQuote.amount),"-",u.bMT(30,51,ae.maxQuote.amount)),u.R7$(5),u.Y8G("ngIf",null==ae.inputFormGroup.controls.amount.errors?null:ae.inputFormGroup.controls.amount.errors.required),u.R7$(),u.Y8G("ngIf",null==ae.inputFormGroup.controls.amount.errors?null:ae.inputFormGroup.controls.amount.errors.min),u.R7$(),u.Y8G("ngIf",null==ae.inputFormGroup.controls.amount.errors?null:ae.inputFormGroup.controls.amount.errors.max),u.R7$(),u.Y8G("ngClass",ae.direction===ae.LoopTypeEnum.LOOP_OUT?"flex-30":"flex-48"),u.R7$(3),u.Y8G("step",1),u.R7$(),u.Y8G("ngIf",null==ae.inputFormGroup.controls.sweepConfTarget.errors?null:ae.inputFormGroup.controls.sweepConfTarget.errors.required),u.R7$(),u.Y8G("ngIf",null==ae.inputFormGroup.controls.sweepConfTarget.errors?null:ae.inputFormGroup.controls.sweepConfTarget.errors.min),u.R7$(),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_OUT),u.R7$(),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_OUT),u.R7$(4),u.Y8G("stepControl",ae.quoteFormGroup)("editable",ae.flgEditable),u.R7$(),u.Y8G("formGroup",ae.quoteFormGroup),u.R7$(2),u.Y8G("quote",ae.quote)("showPanel",!1),u.R7$(),u.Y8G("ngIf",ae.inputFormGroup.controls.amount.value>ae.localBalanceToCompare),u.R7$(2),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_OUT),u.R7$(),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_IN),u.R7$(),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_OUT),u.R7$(),u.Y8G("stepControl",ae.statusFormGroup),u.R7$(),u.Y8G("formGroup",ae.statusFormGroup),u.R7$(3),u.Y8G("expanded",!!ae.loopStatus),u.R7$(4),u.JRh(ae.loopStatus?ae.loopStatus.id_bytes?ae.loopDirectionCaption+" request details":ae.loopDirectionCaption+" error details":"Waiting for "+ae.loopDirectionCaption+" request..."),u.R7$(),u.Y8G("ngIf",ae.loopStatus),u.R7$(),u.Y8G("ngIf",!ae.loopStatus)("ngIfElse",Lt),u.R7$(),u.Y8G("ngIf",!ae.loopStatus),u.R7$(),u.Y8G("ngIf",ae.loopStatus),u.R7$(2),u.Y8G("ngIf",ae.loopStatus&&ae.loopStatus.id_bytes&&ae.channel),u.R7$(),u.Y8G("ngIf",ae.loopStatus&&(ae.loopStatus.error||!ae.loopStatus.id_bytes)),u.R7$(2),u.Y8G("mat-dialog-close",!1)}}function We(At,we){if(1&At&&u.nrm(0,"rtl-loop-status",72),2&At){const ae=u.XpG();u.Y8G("loopStatus",ae.loopStatus)}}function bt(At,we){if(1&At){const ae=u.RV6();u.j41(0,"rtl-loop-out-info-graphics",88),u.mxI("stepNumberChange",function(Ht){L.eBV(ae);const _n=u.XpG(2);return u.DH7(_n.stepNumber,Ht)||(_n.stepNumber=Ht),L.Njj(Ht)}),u.k0s()}if(2&At){const ae=u.XpG(2);u.Y8G("animationDirection",ae.animationDirection),u.R50("stepNumber",ae.stepNumber)}}function tn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"rtl-loop-in-info-graphics",88),u.mxI("stepNumberChange",function(Ht){L.eBV(ae);const _n=u.XpG(2);return u.DH7(_n.stepNumber,Ht)||(_n.stepNumber=Ht),L.Njj(Ht)}),u.k0s()}if(2&At){const ae=u.XpG(2);u.Y8G("animationDirection",ae.animationDirection),u.R50("stepNumber",ae.stepNumber)}}function on(At,we){if(1&At){const ae=u.RV6();u.j41(0,"span",89),u.bIt("click",function(){const Ht=L.eBV(ae).$implicit,_n=u.XpG(2);return L.Njj(_n.onStepChanged(Ht))}),u.nrm(1,"p",90),u.k0s()}if(2&At){const ae=we.$implicit,Lt=u.XpG(2);u.R7$(),u.Y8G("ngClass",u.l_i(1,wt,Lt.stepNumber===ae,Lt.stepNumber!==ae))}}function un(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",91),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onReadMore())}),u.EFF(1,"Read More"),u.k0s()}}function Nt(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",92),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onStepChanged(4))}),u.EFF(1,"Back"),u.k0s()}}function dn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",93),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return Ht.flgShowInfo=!1,L.Njj(Ht.stepNumber=1)}),u.EFF(1,"Close"),u.k0s()}}function xn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",94),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return Ht.flgShowInfo=!1,L.Njj(Ht.stepNumber=1)}),u.EFF(1,"Close"),u.k0s()}}function Jn(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",95),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onStepChanged(Ht.stepNumber-1))}),u.EFF(1,"Back"),u.k0s()}}function xi(At,we){if(1&At){const ae=u.RV6();u.j41(0,"button",96),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG(2);return L.Njj(Ht.onStepChanged(Ht.stepNumber+1))}),u.EFF(1,"Next"),u.k0s()}}function Yi(At,we){if(1&At){const ae=u.RV6();u.j41(0,"div",73)(1,"div",19)(2,"mat-card-header",74)(3,"div",75),u.nrm(4,"span",8),u.k0s(),u.j41(5,"div",76)(6,"button",11),u.bIt("click",function(){L.eBV(ae);const Ht=u.XpG();return Ht.flgShowInfo=!1,L.Njj(Ht.stepNumber=1)}),u.EFF(7,"X"),u.k0s()()(),u.j41(8,"mat-card-content",77),u.DNE(9,bt,1,2,"rtl-loop-out-info-graphics",78)(10,tn,1,2,"rtl-loop-in-info-graphics",78),u.k0s(),u.j41(11,"div",79),u.DNE(12,on,2,4,"span",80),u.k0s(),u.j41(13,"div",81),u.DNE(14,un,2,0,"button",82)(15,Nt,2,0,"button",83)(16,dn,2,0,"button",84)(17,xn,2,0,"button",85)(18,Jn,2,0,"button",86)(19,xi,2,0,"button",87),u.k0s()()()}if(2&At){const ae=u.XpG();u.Y8G("@opacityAnimation",void 0),u.R7$(9),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_OUT),u.R7$(),u.Y8G("ngIf",ae.direction===ae.LoopTypeEnum.LOOP_IN),u.R7$(2),u.Y8G("ngForOf",u.lJ4(10,Ue)),u.R7$(2),u.Y8G("ngIf",5===ae.stepNumber),u.R7$(),u.Y8G("ngIf",5===ae.stepNumber),u.R7$(),u.Y8G("ngIf",5===ae.stepNumber),u.R7$(),u.Y8G("ngIf",ae.stepNumber<5),u.R7$(),u.Y8G("ngIf",ae.stepNumber>1&&ae.stepNumber<5),u.R7$(),u.Y8G("ngIf",ae.stepNumber<5)}}let Tt=(()=>{var At;class we{constructor(Lt,Ht,_n,fi,bi,Qi,zi,It,an){this.dialogRef=Lt,this.data=Ht,this.store=_n,this.loopService=fi,this.formBuilder=bi,this.decimalPipe=Qi,this.logger=zi,this.router=It,this.commonService=an,this.faInfoCircle=w.iW_,this.LoopTypeEnum=O.C7,this.direction=O.C7.LOOP_OUT,this.loopDirectionCaption="Loop out",this.loopStatus=null,this.inputFormLabel="Amount to loop out",this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address",this.prepayRoutingFee=36,this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=O.f7,this.animationDirection="forward",this.flgEditable=!0,this.localBalanceToCompare=null,this.unSubs=[new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.channel=this.data.channel,this.minQuote=this.data.minQuote?this.data.minQuote:{},this.maxQuote=this.data.maxQuote?this.data.maxQuote:{},this.direction=this.data.direction||O.C7.LOOP_OUT,this.loopDirectionCaption=this.direction===O.C7.LOOP_IN?"Loop in":"Loop out",this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.minQuote.amount,[i.k0.required,i.k0.min(this.minQuote.amount||0),i.k0.max(this.maxQuote.amount||0)]],sweepConfTarget:[6,[i.k0.required,i.k0.min(1)]],routingFeePercent:[2,[i.k0.required,i.k0.min(0)]],fast:[!1,[i.k0.required]]}),this.inputFormGroup.setErrors({Invalid:!0}),this.quoteFormGroup=this.formBuilder.group({}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[i.k0.required]],address:[{value:"",disabled:!0}]}),this.direction===O.C7.LOOP_OUT&&this.addressFormGroup.setErrors({Invalid:!0}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.store.select(f.BM).pipe((0,v.Q)(this.unSubs[6])).subscribe(Lt=>{this.localBalanceToCompare=this.channel&&this.channel.local_balance?+this.channel.local_balance:Lt.lightningBalance&&Lt.lightningBalance.local?+Lt.lightningBalance.local:null})}onFormValueChanges(){this.inputFormGroup.valueChanges.pipe((0,v.Q)(this.unSubs[4])).subscribe(Lt=>{this.inputFormGroup.setErrors({Invalid:!0})}),this.direction===O.C7.LOOP_OUT&&this.addressFormGroup.valueChanges.pipe((0,v.Q)(this.unSubs[5])).subscribe(Lt=>{this.addressFormGroup.setErrors({Invalid:!0})})}onAddressTypeChange(Lt){"external"===Lt.value?(this.addressFormGroup.controls.address.setValidators([i.k0.required]),this.addressFormGroup.controls.address.markAsTouched(),this.addressFormGroup.controls.address.enable()):(this.addressFormGroup.controls.address.setValidators(null),this.addressFormGroup.controls.address.markAsPristine(),this.addressFormGroup.controls.address.disable(),this.addressFormGroup.controls.address.setValue("")),this.addressFormGroup.setErrors({Invalid:!0})}onValidateAmount(){this.localBalanceToCompare&&this.inputFormGroup.controls.amount.value<=this.localBalanceToCompare&&this.stepper.next()}onLoop(){if(!this.inputFormGroup.controls.amount.value||this.minQuote.amount&&this.inputFormGroup.controls.amount.valuethis.maxQuote.amount||!this.inputFormGroup.controls.sweepConfTarget.value||this.inputFormGroup.controls.sweepConfTarget.value<2||this.direction===O.C7.LOOP_OUT&&(!this.inputFormGroup.controls.routingFeePercent.value||this.inputFormGroup.controls.routingFeePercent.value<0)||this.direction===O.C7.LOOP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;if(this.flgEditable=!1,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===O.C7.LOOP_IN)this.loopService.loopIn(this.inputFormGroup.controls.amount.value,+(this.quote.swap_fee_sat||0),+(this.quote.htlc_publish_fee_sat||0),"",!0).pipe((0,v.Q)(this.unSubs[0])).subscribe({next:Lt=>{this.loopStatus=Lt,this.loopService.listSwaps(),this.flgEditable=!0},error:Lt=>{this.loopStatus={error:Lt},this.flgEditable=!0,this.logger.error(Lt)}});else{const Lt=Math.ceil(this.inputFormGroup.controls.amount.value*(this.inputFormGroup.controls.routingFeePercent.value/100)),Ht="external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",_n=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.loopService.loopOut(this.inputFormGroup.controls.amount.value,this.channel&&this.channel.chan_id?this.channel.chan_id:"",this.inputFormGroup.controls.sweepConfTarget.value,Lt,+(this.quote.htlc_sweep_fee_sat||0),this.prepayRoutingFee,+(this.quote.prepay_amt_sat||0),+(this.quote.swap_fee_sat||0),_n,Ht).pipe((0,v.Q)(this.unSubs[1])).subscribe({next:fi=>{this.loopStatus=fi,this.loopService.listSwaps(),this.flgEditable=!0},error:fi=>{this.loopStatus={error:fi},this.flgEditable=!0,this.logger.error(fi)}})}}onEstimateQuote(){if(!this.inputFormGroup.controls.amount.value||this.minQuote.amount&&this.inputFormGroup.controls.amount.valuethis.maxQuote.amount||!this.inputFormGroup.controls.sweepConfTarget.value||this.inputFormGroup.controls.sweepConfTarget.value<2)return!0;const Lt=this.inputFormGroup.controls.fast.value?0:(new Date).getTime()+18e5;this.direction===O.C7.LOOP_IN?this.loopService.getLoopInQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,Lt).pipe((0,v.Q)(this.unSubs[2])).subscribe(Ht=>{this.quote=Ht,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}):this.loopService.getLoopOutQuote(this.inputFormGroup.controls.amount.value,this.inputFormGroup.controls.sweepConfTarget.value,Lt).pipe((0,v.Q)(this.unSubs[3])).subscribe(Ht=>{this.quote=Ht,this.quote.off_chain_swap_routing_fee_percentage=this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:2}),this.stepper.selected?.stepControl.setErrors(null),this.stepper.next()}stepSelectionChanged(Lt){switch(Lt.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.loopDirectionCaption,this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address";break;case 1:this.inputFormLabel=this.inputFormGroup.controls.amount.value||this.inputFormGroup.controls.sweepConfTarget.value?this.direction===O.C7.LOOP_IN?this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6):this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6)+" | Percentage: "+(this.inputFormGroup.controls.routingFeePercent.value?this.inputFormGroup.controls.routingFeePercent.value:"2")+" | Fast: "+(this.inputFormGroup.controls.fast.value?"Enabled":"Disabled"):"Amount to "+this.loopDirectionCaption,this.quoteFormLabel="Confirm Quote",this.addressFormLabel="Withdrawal Address";break;case 2:this.inputFormLabel=this.inputFormGroup.controls.amount.value||this.inputFormGroup.controls.sweepConfTarget.value?this.direction===O.C7.LOOP_IN?this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6):this.loopDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Target Confirmation: "+(this.inputFormGroup.controls.sweepConfTarget.value?this.inputFormGroup.controls.sweepConfTarget.value:6)+" | Fast: "+(this.inputFormGroup.controls.fast.value?"Enabled":"Disabled"):"Amount to "+this.loopDirectionCaption,this.quoteFormLabel=this.quote&&this.quote.swap_fee_sat&&(this.quote.htlc_sweep_fee_sat||this.quote.htlc_publish_fee_sat)&&this.quote.prepay_amt_sat?"Quote confirmed | Estimated Fees: "+this.decimalPipe.transform(+this.quote.swap_fee_sat+ +(this.quote.htlc_sweep_fee_sat?this.quote.htlc_sweep_fee_sat:this.quote.htlc_publish_fee_sat?this.quote.htlc_publish_fee_sat:0))+" Sats":"Quote confirmed",this.addressFormLabel=this.addressFormGroup.controls.addressType.value?"Withdrawal Address | Type: "+this.addressFormGroup.controls.addressType.value:"Withdrawal Address"}(this.direction===O.C7.LOOP_OUT&&1!==Lt.selectedIndex&&Lt.selectedIndex{Lt.next(null),Lt.complete()})}static#e=At=()=>(this.\u0275fac=function(Ht){return new(Ht||we)(u.rXU(T.CP),u.rXU(T.Vh),u.rXU(C.il),u.rXU(B.Q),u.rXU(i.ze),u.rXU(A.QX),u.rXU(Pe.gP),u.rXU(le.Ix),u.rXU(Ce.h))},this.\u0275cmp=u.VBU({type:we,selectors:[["rtl-loop-modal"]],viewQuery:function(Ht,_n){if(1&Ht&&u.GBs(jt,5),2&Ht){let fi;u.mGM(fi=u.lsd())&&(_n.stepper=fi.first)}},standalone:!1,decls:4,vars:2,consts:[["loopStatusBlock",""],["stepper",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"ngClass"],[1,"page-title"],["fxLayoutAlign","space-between end",3,"ngClass"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["class","padding-gap-large","fxLayout","row wrap","fxLayoutAlign","space-between stretch",4,"ngIf"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["termCaption","min",3,"quote","panelExpanded","showPanel"],["termCaption","max",3,"quote","panelExpanded","showPanel"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],[3,"ngClass"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["matInput","","type","number","tabindex","2","formControlName","sweepConfTarget","required","",3,"step"],["fxFlex","30",4,"ngIf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center","class","mt-1",4,"ngIf"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","5","type","button",3,"click"],[3,"quote","showPanel"],["fxFlex","100","class","color-warn mt-2","fxLayoutAlign","start center",4,"ngIf"],["mat-button","","color","primary","tabindex","6","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","7","type","button",3,"click",4,"ngIf"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[4,"ngIf","ngIfElse"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxLayoutAlign","start","class","font-bold-500 mt-2",4,"ngIf"],["mat-button","","color","primary","tabindex","12","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","13","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end end"],["mat-button","","color","primary","tabindex","14","type","button","default","",3,"mat-dialog-close"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch",1,"padding-gap-large"],["fxFlex","40"],["fxFlex","30"],["matInput","","type","number","tabindex","3","formControlName","routingFeePercent","required","",3,"step"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center",1,"mt-1"],["tabindex","4","color","primary","formControlName","fast","fxFlex","none"],["matTooltip","Swap immediately (Might end up paying a higher on-chain fee)","matTooltipPosition","above","fxFlex","none",1,"info-icon"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn","mt-2"],[1,"mr-1","icon-small"],["mat-button","","color","primary","tabindex","6","type","button",3,"click"],["mat-button","","color","primary","tabindex","7","type","button",3,"click"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["color","primary","name","addressType","formControlName","addressType","fxFlex","100","fxLayoutAlign","space-between stretch",3,"change"],["fxFlex","48","tabindex","8","value","local"],["fxFlex","48","tabindex","9","value","external"],["fxLayout","column","fxFlex","100",1,"mt-1"],["matInput","","tabindex","10","formControlName","address",3,"required"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-2"],["mat-button","","color","primary","tabindex","12","type","button",3,"click"],["mat-button","","color","primary","tabindex","13","type","button",3,"click"],["fxLayout","column",3,"loopStatus"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","15","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","15","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(Ht,_n){1&Ht&&u.DNE(0,se,75,53,"div",2)(1,We,1,1,"ng-template",null,0,u.C5r)(3,Yi,20,11,"div",3),2&Ht&&(u.Y8G("ngIf",!_n.flgShowInfo),u.R7$(3),u.Y8G("ngIf",_n.flgShowInfo))},dependencies:[A.YU,A.Sq,A.bT,i.qT,i.me,i.Q0,i.BC,i.cb,i.YS,i.j4,i.JD,T.tx,Ae.$z,j.m2,j.MM,W.GK,W.Z2,W.WN,G.An,re.fg,xe.rl,xe.nJ,xe.MV,xe.TL,xe.yw,Ee.HM,V.VT,V._g,ce.DJ,ce.sA,ce.UI,be.PW,ne.sG,J.oV,De.V5,De.Ti,De.M6,Re.N,F,Ke,Qe,h,A.QX,A.PV],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[e.C]}}))}return At(),we})()},13(Zt,pe,l){"use strict";l.d(pe,{X:()=>f});var i=l(5383),d=l(3664),v=l(3694),T=l(60),w=l(8834),e=l(5596),O=l(2920);let f=(()=>{var u;class L{constructor(B){this.router=B,this.faTimes=i.GRI}goToHelp(){this.router.navigate(["/help"])}static#e=u=()=>(this.\u0275fac=function(A){return new(A||L)(d.rXU(v.Ix))},this.\u0275cmp=d.VBU({type:L,selectors:[["rtl-not-found"]],standalone:!1,decls:13,vars:1,consts:[["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column",1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","start start"],[1,"box-text"],["fxLayout","row","fxLayoutAlign","center","fxFlex","80"],["mat-flat-button","","color","primary","type","button",1,"mt-2",3,"click"]],template:function(A,Pe){1&A&&(d.j41(0,"div",0),d.nrm(1,"fa-icon",1),d.j41(2,"span",2),d.EFF(3,"Page Not Found"),d.k0s()(),d.j41(4,"div",3)(5,"mat-card")(6,"mat-card-content",4)(7,"div",5)(8,"div",6),d.EFF(9,"This page does not exist!"),d.k0s(),d.j41(10,"span",7)(11,"button",8),d.bIt("click",function(){return Pe.goToHelp()}),d.EFF(12,"Go To Help"),d.k0s()()()()()()),2&A&&(d.R7$(),d.Y8G("icon",Pe.faTimes))},dependencies:[T.aY,w.$z,e.RN,e.m2,O.DJ,O.sA,O.UI],encapsulation:2}))}return u(),L})()},9587(Zt,pe,l){"use strict";l.d(pe,{N:()=>d});var i=l(3664);let d=(()=>{var v;class T{constructor(e){this.el=e}ngAfterContentInit(){setTimeout(()=>{this.el.nativeElement.focus()},500)}static#e=v=()=>(this.\u0275fac=function(O){return new(O||T)(i.rXU(i.aKT))},this.\u0275dir=i.FsC({type:T,selectors:[["","autoFocus",""]],inputs:{appAutoFocus:"appAutoFocus"},standalone:!1}))}return v(),T})()},9157(Zt,pe,l){"use strict";l.d(pe,{U:()=>d});var i=l(3664);let d=(()=>{var v;class T{constructor(){this.copied=new i.bkB}onClick(e){e.preventDefault(),this.payload&&(navigator.clipboard?this.copyUsingClipboardAPI():this.copyUsingFallbackMethod())}copyUsingFallbackMethod(){const e=document.createElement("textarea");e.value=this.payload,document.body.appendChild(e),e.select();try{document.execCommand("copy")?this.copied.emit(this.payload.toString()):this.copied.emit("Error could not copy text.")}finally{document.body.removeChild(e)}}copyUsingClipboardAPI(){navigator.clipboard.writeText(this.payload.toString()).then(()=>{this.copied.emit(this.payload.toString())}).catch(e=>{this.copied.emit("Error could not copy text: "+JSON.stringify(e))})}static#e=v=()=>(this.\u0275fac=function(O){return new(O||T)},this.\u0275dir=i.FsC({type:T,selectors:[["","rtlClipboard",""]],hostBindings:function(O,f){1&O&&i.bIt("click",function(L){return f.onClick(L)})},inputs:{payload:"payload"},outputs:{copied:"copied"},standalone:!1}))}return v(),T})()},92(Zt,pe,l){"use strict";l.d(pe,{z:()=>v});var i=l(9417),d=l(3664);let v=(()=>{var T;class w{validate(O){return this.max?i.k0.max(+this.max)(O):null}static#e=T=()=>(this.\u0275fac=function(f){return new(f||w)},this.\u0275dir=d.FsC({type:w,selectors:[["input","max",""]],inputs:{max:"max"},standalone:!1,features:[d.Jv_([{provide:i.cz,useExisting:w,multi:!0}])]}))}return T(),w})()},6114(Zt,pe,l){"use strict";l.d(pe,{V:()=>v});var i=l(9417),d=l(3664);let v=(()=>{var T;class w{validate(O){return this.min?i.k0.min(+this.min)(O):null}static#e=T=()=>(this.\u0275fac=function(f){return new(f||w)},this.\u0275dir=d.FsC({type:w,selectors:[["input","min",""]],inputs:{min:"min"},standalone:!1,features:[d.Jv_([{provide:i.cz,useExisting:w,multi:!0}])]}))}return T(),w})()},2929(Zt,pe,l){"use strict";l.d(pe,{Qu:()=>T,VD:()=>w,ZE:()=>v,gZ:()=>d});var i=l(3664);let d=(()=>{var e;class O{transform(u,L){return u?.replace(/^[0]+/g,"")}static#e=e=()=>(this.\u0275fac=function(L){return new(L||O)},this.\u0275pipe=i.EJ8({name:"removeleadingzeros",type:O,pure:!0,standalone:!1}))}return e(),O})(),v=(()=>{var e;class O{transform(u,L){return u?.replace(/(?:^\w|[A-Z]|\b\w)/g,(C,B)=>C.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}static#e=e=()=>(this.\u0275fac=function(L){return new(L||O)},this.\u0275pipe=i.EJ8({name:"camelcase",type:O,pure:!0,standalone:!1}))}return e(),O})(),T=(()=>{var e;class O{transform(u,L,C){return u.replace(/(?:^\w|[A-Z]|\b\w)/g,(B,A)=>" "+B.toUpperCase())}static#e=e=()=>(this.\u0275fac=function(L){return new(L||O)},this.\u0275pipe=i.EJ8({name:"camelCaseWithSpaces",type:O,pure:!0,standalone:!1}))}return e(),O})(),w=(()=>{var e;class O{transform(u,L,C){return u=u?u.toLowerCase().replace(/\s+/g,"")?.replace(/-/g," "):"",L&&(u=u.replace(new RegExp(L,"g")," ")),C&&(u=u.replace(new RegExp(C,"g")," ")),u.replace(/(?:^\w|[A-Z]|\b\w)/g,(B,A)=>B.toUpperCase())}static#e=e=()=>(this.\u0275fac=function(L){return new(L||O)},this.\u0275pipe=i.EJ8({name:"camelcaseWithReplace",type:O,pure:!0,standalone:!1}))}return e(),O})()},7186(Zt,pe,l){"use strict";l.d(pe,{Wz:()=>O,fe:()=>f,jn:()=>e,q_:()=>w});var i=l(2615),d=l(3694),v=l(3202),T=l(6354);function w(){return()=>{const u=(0,i.WQX)(d.Ix),L=(0,i.WQX)(d.nX),C=(0,i.WQX)(v.Q);return!(!C.getItem("token")||L.snapshot.url&&L.snapshot.url.length&&"settings"!==L.snapshot.url[0].path&&"auth"!==L.snapshot.url[0].path&&"true"===C.getItem("defaultPassword")&&(u.navigate(["/settings/auth"]),1))}}function e(){return()=>!!(0,i.WQX)(v.Q).watchSession().pipe((0,T.T)(L=>L.lndUnlocked))}function O(){return()=>!!(0,i.WQX)(v.Q).watchSession().pipe((0,T.T)(L=>L.clnUnlocked))}function f(){return()=>!!(0,i.WQX)(v.Q).watchSession().pipe((0,T.T)(L=>L.eclUnlocked))}},2571(Zt,pe,l){"use strict";l.d(pe,{h:()=>Pe});var i=l(1413),d=l(4412),v=l(7673),T=l(8810),w=l(9437),e=l(5558),O=l(6977),f=l(4416),u=l(2615),L=l(1534),C=l(8570),B=l(2200),A=l(345);let Pe=(()=>{var le;class Ce{constructor(j,W,G,re){this.dataService=j,this.logger=W,this.datePipe=G,this.sanitizer=re,this.currencyUnits=[],this.CurrencyUnitEnum=f.BQ,this.conversionData={data:null,last_fetched:null},this.ratesAPIStatus=f.wn.UN_INITIATED,this.screenSize=f.f7.MD,this.containerSize={width:0,height:0},this.containerSizeUpdated=new d.t(this.containerSize),this.unSubs=[new i.B,new i.B,new i.B]}getScreenSize(){return this.screenSize}setScreenSize(j){this.screenSize=j}getContainerSize(){return this.containerSize}setContainerSize(j,W){this.containerSize={width:j,height:W},this.logger.info("Container Size: "+JSON.stringify(this.containerSize)),this.containerSizeUpdated.next(this.containerSize)}sortByKey(j,W,G,re="asc"){return j.sort("number"===G?"desc"===re?(xe,Ee)=>+xe[W]>+Ee[W]?-1:1:(xe,Ee)=>+xe[W]>+Ee[W]?1:-1:"desc"===re?(xe,Ee)=>xe[W]>Ee[W]?-1:1:(xe,Ee)=>xe[W]>Ee[W]?1:-1)}sortDescByKey(j,W){return j.sort((G,re)=>{const xe=+G[W],Ee=+re[W];return xe>Ee?-1:xe{const xe=+G[W],Ee=+re[W];return xeEe?1:0})}camelCase(j){return j?.replace(/(?:^\w|[A-Z]|\b\w)/g,(W,G)=>W.toUpperCase())?.replace(/\s+/g,"")?.replace(/-/g," ")}titleCase(j,W,G){return W&&G&&""!==W&&""!==G&&(j=j?.replace(new RegExp(W,"g"),G)),j.indexOf("!\n")>0||j.indexOf(".\n")>0?j.split("\n")?.reduce((re,xe)=>re+xe.charAt(0).toUpperCase()+xe.substring(1).toLowerCase()+"\n",""):j.indexOf(" ")>0?j.split(" ")?.reduce((re,xe)=>re+xe.charAt(0).toUpperCase()+xe.substring(1).toLowerCase()+" ",""):j.charAt(0).toUpperCase()+j.substring(1).toLowerCase()}convertCurrency(j,W,G,re,xe){const Ee=(new Date).valueOf();try{return xe&&re&&(W===f.BQ.OTHER||G===f.BQ.OTHER)?this.ratesAPIStatus!==f.wn.INITIATED?this.conversionData.data&&this.conversionData.last_fetched&&Ee(this.ratesAPIStatus=f.wn.COMPLETED,this.conversionData.data=V&&"object"==typeof V?V:V&&"string"==typeof V?JSON.parse(V):{},this.conversionData.last_fetched=Ee,(0,v.of)(this.convertWithFiat(j,W,re)))),(0,w.W)(V=>(this.ratesAPIStatus=f.wn.ERROR,(0,T.$)(()=>"Currency Conversion Error."))))):(0,v.of)(this.conversionData.data&&this.conversionData.last_fetched&&Ee"Currency Conversion Error.")}}convertWithoutFiat(j,W){const G={};switch(G[f.BQ.SATS]=0,G[f.BQ.BTC]=0,W){case f.BQ.SATS:G[f.BQ.SATS]=j,G[f.BQ.BTC]=1e-8*j;break;case f.BQ.BTC:G[f.BQ.SATS]=1e8*j,G[f.BQ.BTC]=j}return G}convertWithFiat(j,W,G){const re={unit:G,iconType:"FA",symbol:null};if(G){const xe=(0,f.Zo)(this.conversionData.data[G].symbol);re.iconType=xe.iconType,re.symbol=xe&&"SVG"===xe.iconType&&xe.symbol&&"string"==typeof xe.symbol?this.sanitizer.bypassSecurityTrustHtml(xe.symbol):xe.symbol}switch(re[f.BQ.SATS]=0,re[f.BQ.BTC]=0,re[f.BQ.OTHER]=0,W){case f.BQ.SATS:re[f.BQ.SATS]=j,re[f.BQ.BTC]=1e-8*j,re[f.BQ.OTHER]=1e-8*j*this.conversionData.data[G].last;break;case f.BQ.BTC:re[f.BQ.SATS]=1e8*j,re[f.BQ.BTC]=j,re[f.BQ.OTHER]=j*this.conversionData.data[G].last;break;case f.BQ.OTHER:re[f.BQ.SATS]=j/this.conversionData.data[G].last*1e8,re[f.BQ.BTC]=j/this.conversionData.data[G].last,re[f.BQ.OTHER]=j}return re}convertTime(j,W,G){switch(W){case f.F7.SECS:switch(G){case f.F7.MINS:j/=60;break;case f.F7.HOURS:j/=f.bz;break;case f.F7.DAYS:j/=24*f.bz}break;case f.F7.MINS:switch(G){case f.F7.SECS:j*=60;break;case f.F7.HOURS:j/=60;break;case f.F7.DAYS:j/=1440}break;case f.F7.HOURS:switch(G){case f.F7.SECS:j*=f.bz;break;case f.F7.MINS:j*=60;break;case f.F7.DAYS:j/=24}break;case f.F7.DAYS:switch(G){case f.F7.SECS:j=j*f.bz*24;break;case f.F7.MINS:j=60*j*24;break;case f.F7.HOURS:j*=24}}return j}downloadFile(j,W,G=".json",re=".csv"){let xe=new Blob;xe=".json"===G?new Blob(["\ufeff"+this.convertToCSV(j)],{type:"text/csv;charset=utf-8;"}):new Blob([j.toString()],{type:"text/plain;charset=utf-8"});const Ee=document.createElement("a"),V=URL.createObjectURL(xe);-1!==navigator.userAgent.indexOf("Safari")&&-1===navigator.userAgent.indexOf("Chrome")&&Ee.setAttribute("target","_blank"),Ee.setAttribute("href",V),Ee.setAttribute("download",W+re),Ee.style.visibility="hidden",document.body.appendChild(Ee),Ee.click(),document.body.removeChild(Ee)}convertToCSV(j){const W=[];let G="",re="",xe="";return"object"!=typeof j&&(j=JSON.parse(j)),j.forEach((V,ce)=>{for(const be in V)W.findIndex(ne=>ne===be)<0&&W.push(be)}),xe=W.join(",")+"\r\n",j.forEach(V=>{G="",W.forEach(ce=>{if(V.hasOwnProperty(ce))if(Array.isArray(V[ce]))re="",V[ce].forEach((be,ne)=>{re+="object"==typeof be?"("+JSON.stringify(be)?.replace(/\,/g,";")+")":"("+be+")"}),G+=re+",";else if("object"==typeof V[ce])G+=JSON.stringify(V[ce])?.replace(/\,/g,";")+",";else if(ce.includes("timestamp")||ce.includes("date"))try{switch(V[ce].toString().length){case 10:G+=this.datePipe.transform(new Date(1e3*V[ce]),"dd/MMM/y HH:mm")+",";break;case 13:G+=this.datePipe.transform(new Date(V[ce]),"dd/MMM/y HH:mm")+",";break;default:G+=V[ce]+","}}catch{G+=V[ce]+","}else G+=V[ce]+",";else G+=","}),xe+=G.slice(0,-1)+"\r\n"}),xe}isVersionCompatible(j,W){if(j){const G=j.match(/v?(?\d+(?:\.\d+)*)/);if(G&&G.groups&&G.groups.version){this.logger.info("Current Version: "+G.groups.version),this.logger.info("Checking Compatiblility with Version: "+W);const re=G.groups.version.split(".")||[],xe=W.split(".");return+re[0]>+xe[0]||+re[0]==+xe[0]&&+re[1]>+xe[1]||+re[0]==+xe[0]&&+re[1]==+xe[1]&&+re[2]>=+xe[2]}return this.logger.error("Invalid Version String: "+j),!1}return!1}extractErrorMessage(j,W="Unknown Error."){const G=this.titleCase(j.error&&j.error.text&&"string"==typeof j.error.text&&j.error.text.includes('')?"API Route Does Not Exist.":j.error&&j.error.error&&j.error.error.error&&j.error.error.error.error&&j.error.error.error.error.error&&"string"==typeof j.error.error.error.error.error?j.error.error.error.error.error:j.error&&j.error.error&&j.error.error.error&&j.error.error.error.error&&"string"==typeof j.error.error.error.error?j.error.error.error.error:j.error&&j.error.error&&j.error.error.error&&"string"==typeof j.error.error.error?j.error.error.error:j.error&&j.error.error&&"string"==typeof j.error.error?j.error.error:j.error&&"string"==typeof j.error?j.error:j.error&&j.error.error&&j.error.error.error&&j.error.error.error.error&&j.error.error.error.error.message&&"string"==typeof j.error.error.error.error.message?j.error.error.error.error.message:j.error&&j.error.error&&j.error.error.error&&j.error.error.error.message&&"string"==typeof j.error.error.error.message?j.error.error.error.message:j.error&&j.error.error&&j.error.error.message&&"string"==typeof j.error.error.message?j.error.error.message:j.error&&j.error.message&&"string"==typeof j.error.message?j.error.message:j.message&&"string"==typeof j.message?j.message:W);return this.logger.info("Error Message: "+G),G}extractErrorCode(j,W=500){const G=j.error&&j.error.error&&j.error.error.message&&j.error.error.message.code?j.error.error.message.code:j.error&&j.error.error&&j.error.error.code?j.error.error.code:j.error&&j.error.code?j.error.code:j.code?j.code:j.status?j.status:W;return this.logger.info("Error Code: "+G),G}extractErrorNumber(j,W=500){const G=j.error&&j.error.error&&j.error.error.errno?j.error.error.errno:j.error&&j.error.errno?j.error.errno:j.errno?j.errno:j.status?j.status:W;return this.logger.info("Error Number: "+G),G}ngOnDestroy(){this.containerSizeUpdated.next(null),this.containerSizeUpdated.complete()}static#e=le=()=>(this.\u0275fac=function(W){return new(W||Ce)(u.KVO(L.u),u.KVO(C.gP),u.KVO(B.vh),u.KVO(A.up))},this.\u0275prov=u.jDH({token:Ce,factory:Ce.\u0275fac}))}return le(),Ce})()},4416(Zt,pe,l){"use strict";l.d(pe,{A$:()=>be,A0:()=>C,Ah:()=>Ke,BQ:()=>Re,Bd:()=>P,Bv:()=>re,C6:()=>vt,C7:()=>ie,F7:()=>J,G:()=>G,H$:()=>u,HW:()=>ce,Hx:()=>te,It:()=>O,Jd:()=>pt,Jr:()=>Ee,KR:()=>ve,Ld:()=>Ae,MZ:()=>St,NG:()=>e,QP:()=>oe,SY:()=>A,TC:()=>Ye,TH:()=>Qe,U1:()=>ne,UN:()=>Xe,Uq:()=>gt,Uu:()=>fe,WW:()=>vi,X8:()=>ei,XG:()=>j,Y0:()=>ot,ZC:()=>Pt,Zb:()=>Le,Zi:()=>kn,Zo:()=>Ri,_1:()=>gn,_U:()=>Gt,aG:()=>Dt,aR:()=>nt,aU:()=>ht,bz:()=>w,ck:()=>xe,f7:()=>_e,iI:()=>lt,jG:()=>Ue,k:()=>B,md:()=>le,mu:()=>wt,nv:()=>W,o1:()=>V,oi:()=>jt,on:()=>T,q9:()=>F,rl:()=>L,rs:()=>H,tj:()=>he,ul:()=>rt,wn:()=>Vt,xk:()=>cn,xp:()=>Ce,xv:()=>f});var i=l(7705),d=l(6695),v=l(5383);function T(ee){const ye=new d.xX;return ye.itemsPerPageLabel=ee+" per page:",ye}const w=3600,e=31536e3,O=24*w*7,f="0.15.10-beta",u=(0,i.naY)()?"http://localhost:3000/rtl/api":"./api",L={AUTHENTICATE_API:u+"/authenticate",CONF_API:u+"/conf",PAGE_SETTINGS_API:u+"/pagesettings",BALANCE_API:"/balance",FEES_API:"/fees",PEERS_API:"/peers",CHANNELS_API:"/channels",CHANNELS_BACKUP_API:"/channels/backup",GETINFO_API:"/getinfo",WALLET_API:"/wallet",NETWORK_API:"/network",NEW_ADDRESS_API:"/newaddress",TRANSACTIONS_API:"/transactions",PAYMENTS_API:"/payments",INVOICES_API:"/invoices",SWITCH_API:"/switch",ON_CHAIN_API:"/onchain",MESSAGE_API:"/message",OFFERS_API:"/offers",UTILITY_API:"/utility",LOOP_API:"/loop",BOLTZ_API:"/boltz",Web_SOCKET_API:"/ws"},C=["Sats","BTC"],B={Sats:"1.0-0",BTC:"1.6-6",OTHER:"1.2-2"},A=["SECS","MINS","HOURS","DAYS"],le=10,Ce=[5,10,25,100],Ae=[{addressId:"0",addressCode:"bech32",addressTp:"Bech32 (P2WKH)",addressDetails:"Pay to witness key hash"},{addressId:"1",addressCode:"p2sh-segwit",addressTp:"P2SH (NP2WKH)",addressDetails:"Pay to nested witness key hash (default)"},{addressId:"4",addressCode:"p2tr",addressTp:"Taproot (P2TR)",addressDetails:"Pay to taproot pubkey"}],j=[{id:"0",name:"Priority (Default)"},{id:"1",name:"Target Confirmation Blocks"},{id:"2",name:"Fee"}],W=[{id:"none",name:"No Fee Limit",placeholder:"No Limit"},{id:"fixed",name:"Fixed Limit (Sats)",placeholder:"Fixed Limit in Sats"},{id:"percent",name:"Percentage of Amount",placeholder:"Percentage Limit"}],G=[{feeRateId:"urgent",feeRateType:"Urgent"},{feeRateId:"normal",feeRateType:"Normal"},{feeRateId:"slow",feeRateType:"Slow"},{feeRateId:"customperkb",feeRateType:"Custom"}],re={themes:[{id:"PURPLE",name:"Diogo"},{id:"TEAL",name:"My2Sats"},{id:"INDIGO",name:"RTL"},{id:"PINK",name:"BK"},{id:"YELLOW",name:"Gold"}],modes:[{id:"DAY",name:"Day"},{id:"NIGHT",name:"Night"}]};var xe=function(ee){return ee.PAYMENT_RECEIVED="payment-received",ee.PAYMENT_RELAYED="payment-relayed",ee.PAYMENT_SENT="payment-sent",ee.PAYMENT_SETTLING_ONCHAIN="payment-settling-onchain",ee.PAYMENT_FAILED="payment-failed",ee.CHANNEL_OPENED="channel-opened",ee.CHANNEL_STATE_CHANGED="channel-state-changed",ee.CHANNEL_CLOSED="channel-closed",ee}(xe||{}),Ee=function(ee){return ee.CONNECT="connect",ee.DISCONNECT="disconnect",ee.WARNING="warning",ee.INVOICE_PAYMENT="invoice_payment",ee.INVOICE_CREATION="invoice_creation",ee.CHANNEL_OPENED="channel_opened",ee.CHANNEL_STATE_CHANGED="channel_state_changed",ee.SENDPAY_SUCCESS="sendpay_success",ee.SENDPAY_FAILURE="sendpay_failure",ee.COIN_MOVEMENT="coin_movement",ee.BALANCE_SNAPSHOT="balance_snapshot",ee.BLOCK_ADDED="block_added",ee.OPENCHANNEL_PEER_SIGS="openchannel_peer_sigs",ee.CHANNEL_OPEN_FAILED="channel_open_failed",ee}(Ee||{}),V=function(ee){return ee.INVOICE="invoice",ee}(V||{}),ce=function(ee){return ee.OPERATOR="OPERATOR",ee.MERCHANT="MERCHANT",ee.ALL="ALL",ee}(ce||{}),be=function(ee){return ee.INFORMATION="Information",ee.WARNING="Warning",ee.ERROR="Error",ee.SUCCESS="Success",ee.CONFIRM="Confirm",ee}(be||{}),ne=function(ee){return ee.NOAUTH="NOAUTH",ee.JWT="JWT",ee.PASSWORD="PASSWORD",ee}(ne||{}),J=function(ee){return ee.SECS="SECS",ee.MINS="MINS",ee.HOURS="HOURS",ee.DAYS="DAYS",ee}(J||{}),Re=function(ee){return ee.SATS="Sats",ee.BTC="BTC",ee.OTHER="OTHER",ee}(Re||{}),Xe=function(ee){return ee.ARRAY="ARRAY",ee.NUMBER="NUMBER",ee.STRING="STRING",ee.BOOLEAN="BOOLEAN",ee.PASSWORD="PASSWORD",ee.DATE="DATE",ee.DATE_TIME="DATE_TIME",ee}(Xe||{}),_e=function(ee){return ee.XS="XS",ee.SM="SM",ee.MD="MD",ee.LG="LG",ee.XL="XL",ee}(_e||{});const he={COOPERATIVE_CLOSE:{name:"Co-operative Close",tooltip:"Channel closed cooperatively"},LOCAL_FORCE_CLOSE:{name:"Local Force Close",tooltip:"Channel force-closed by the local node"},REMOTE_FORCE_CLOSE:{name:"Remote Force Close",tooltip:"Channel force-closed by the remote node"},BREACH_CLOSE:{name:"Breach Close",tooltip:"Remote node attempted to broadcast a prior revoked channel state"},FUNDING_CANCELED:{name:"Funding Canceled",tooltip:"Channel never fully opened"},ABANDONED:{name:"Abandoned",tooltip:"Channel abandoned by the local node"}},Dt={WITNESS_PUBKEY_HASH:{name:"Witness Pubkey Hash",tooltip:""},NESTED_PUBKEY_HASH:{name:"Nested Pubkey Hash",tooltip:""},UNUSED_WITNESS_PUBKEY_HASH:{name:"Unused Witness Pubkey Hash",tooltip:""},UNUSED_NESTED_PUBKEY_HASH:{name:"Unused Nested Pubkey Hash",tooltip:""},TAPROOT_PUBKEY:{name:"Taproot Pubkey Hash",tooltip:""}};var lt=function(ee){return ee.WIRE_INVALID_ONION_VERSION="Invalid Onion Version",ee.WIRE_INVALID_ONION_HMAC="Invalid Onion HMAC",ee.WIRE_INVALID_ONION_KEY="Invalid Onion Key",ee.WIRE_TEMPORARY_CHANNEL_FAILURE="Temporary Channel Failure",ee.WIRE_PERMANENT_CHANNEL_FAILURE="Permanent Channel Failure",ee.WIRE_REQUIRED_CHANNEL_FEATURE_MISSING="Missing Required Channel Feature",ee.WIRE_UNKNOWN_NEXT_PEER="Unknown Next Peer",ee.WIRE_AMOUNT_BELOW_MINIMUM="Amount Below Minimum",ee.WIRE_FEE_INSUFFICIENT="Insufficient Fee",ee.WIRE_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",ee.WIRE_EXPIRY_TOO_FAR="Expiry Too Far",ee.WIRE_EXPIRY_TOO_SOON="Expiry Too Soon",ee.WIRE_CHANNEL_DISABLED="Channel Disabled",ee.WIRE_INVALID_ONION_PAYLOAD="Invalid Onion Payload",ee.WIRE_INVALID_REALM="Invalid Realm",ee.WIRE_PERMANENT_NODE_FAILURE="Permanent Node Failure",ee.WIRE_TEMPORARY_NODE_FAILURE="Temporary Node Failure",ee.WIRE_REQUIRED_NODE_FEATURE_MISSING="Missing Required Node Feature",ee.WIRE_INVALID_ONION_BLINDING="Invalid Onion Binding",ee.WIRE_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS="Incorrect or Unknow Payment Details",ee.WIRE_MPP_TIMEOUT="MPP Timeout",ee.WIRE_FINAL_INCORRECT_CLTV_EXPIRY="Incorrect CLTV Expiry",ee.WIRE_FINAL_INCORRECT_HTLC_AMOUNT="Incorrect HTLC Amount",ee}(lt||{}),Le=function(ee){return ee.CHANNELD_NORMAL="Active",ee.OPENINGD="Opening",ee.CHANNELD_AWAITING_LOCKIN="Pending Open",ee.CHANNELD_SHUTTING_DOWN="Shutting Down",ee.CLOSINGD_SIGEXCHANGE="Closing: Sig Exchange",ee.CLOSINGD_COMPLETE="Closed",ee.AWAITING_UNILATERAL="Awaiting Unilateral Close",ee.FUNDING_SPEND_SEEN="Funding Spend Seen",ee.ONCHAIN="Onchain",ee.DUALOPEND_OPEN_INIT="Dual Open Initialized",ee.DUALOPEND_AWAITING_LOCKIN="Dual Pending Open",ee}(Le||{}),te=function(ee){return ee.INITIATED="Initiated",ee.PREIMAGE_REVEALED="Preimage Revealed",ee.HTLC_PUBLISHED="HTLC Published",ee.SUCCESS="Successful",ee.FAILED="Failed",ee.INVOICE_SETTLED="Invoice Settled",ee}(te||{}),ie=function(ee){return ee.LOOP_OUT="LOOP_OUT",ee.LOOP_IN="LOOP_IN",ee}(ie||{}),P=function(ee){return ee.SWAP_OUT="SWAP_OUT",ee.SWAP_IN="SWAP_IN",ee}(P||{}),F=function(ee){return ee["swap.created"]="Swap Created",ee["swap.expired"]="Swap Expired",ee["invoice.set"]="Invoice Set",ee["invoice.paid"]="Invoice Paid",ee["invoice.pending"]="Invoice Pending",ee["invoice.settled"]="Invoice Settled",ee["invoice.failedToPay"]="Invoice Failed To Pay",ee["channel.created"]="Channel Created",ee["transaction.failed"]="Transaction Failed",ee["transaction.mempool"]="Transaction Mempool",ee["transaction.claimed"]="Transaction Claimed",ee["transaction.refunded"]="Transaction Refunded",ee["transaction.confirmed"]="Transaction Confirmed",ee["transaction.lockupFailed"]="Lockup Transaction Failed",ee["swap.refunded"]="Swap Refunded",ee["swap.abandoned"]="Swap Abandoned",ee}(F||{});const ve=[{name:"Jan",days:31},{name:"Feb",days:28},{name:"Mar",days:31},{name:"Apr",days:30},{name:"May",days:31},{name:"Jun",days:30},{name:"Jul",days:31},{name:"Aug",days:31},{name:"Sep",days:30},{name:"Oct",days:31},{name:"Nov",days:30},{name:"Dec",days:31}],H=["MONTHLY","YEARLY"],Ke=["password","changeme","moneyprintergobrrr"];var Vt=function(ee){return ee.UN_INITIATED="UN_INITIATED",ee.INITIATED="INITIATED",ee.COMPLETED="COMPLETED",ee.ERROR="ERROR",ee}(Vt||{});const St={NO_SPINNER:"No Spinner...",GET_NODE_INFO:"Getting Node Information...",INITALIZE_NODE_DATA:"Initializing Node Data...",GENERATE_NEW_ADDRESS:"Getting New Address...",SEND_FUNDS:"Sending Funds...",UPDATE_CHAN_POLICY:"Updating Channel Policy...",GET_CHAN_POLICY:"Fetching Channel Policy...",GET_REMOTE_POLICY:"Fetching Remote Policy...",CLOSE_CHANNEL:"Closing Channel...",FORCE_CLOSE_CHANNEL:"Force Closing Channel...",OPEN_CHANNEL:"Opening Channel...",CONNECT_PEER:"Connecting Peer...",DISCONNECT_PEER:"Disconnecting Peer...",ADD_INVOICE:"Adding Invoice...",CREATE_INVOICE:"Creating Invoice...",DELETE_INVOICE:"Deleting Invoices...",DECODE_PAYMENT:"Decoding Payment...",DECODE_OFFER:"Decoding Offer...",DECODE_PAYMENTS:"Decoding Payments...",FETCH_INVOICE:"Fetching Invoice...",GET_SENT_PAYMENTS:"Getting Sent Payments...",SEND_PAYMENT:"Sending Payment...",SEND_KEYSEND:"Sending Keysend Payment...",SEARCHING_NODE:"Searching Node...",SEARCHING_CHANNEL:"Searching Channel...",SEARCHING_INVOICE:"Searching Invoice...",SEARCHING_PAYMENT:"Searching Payment...",BACKUP_CHANNEL:"Backup Channels...",VERIFY_CHANNEL:"Verify Channel...",DOWNLOAD_BACKUP_FILE:"Downloading Backup File...",RESTORE_CHANNEL:"Restoring Channels...",GET_TERMS_QUOTES:"Getting Terms and Quotes...",LABEL_UTXO:"Labelling UTXO...",GET_NODE_ADDRESS:"Getting Node Address...",GEN_SEED:"Generating Seed...",INITIALIZE_WALLET:"Initializing Wallet...",UNLOCK_WALLET:"Unlocking Wallet...",WAIT_SYNC_NODE:"Waiting for Node Sync...",UPDATE_BOLTZ_SETTINGS:"Updating Boltz Service Settings...",UPDATE_LOOP_SETTINGS:"Updating Loop Service Settings...",UPDATE_PEERSWAP_SETTINGS:"Updating Peerswap Service Settings...",UPDATE_SETTING:"Updating Setting...",UPDATE_APPLICATION_SETTINGS:"Updating Application Settings...",UPDATE_NODE_SETTINGS:"Updating Node Settings...",UPDATE_SELECTED_NODE:"Updating Selected Node...",OPEN_CONFIG_FILE:"Opening Config File...",GET_BOLTZ_INFO:"Getting Boltz Info...",GET_SERVICE_INFO:"Getting Service Info...",GET_QUOTE:"Getting Quotes...",UPDATE_DEFAULT_NODE_SETTING:"Updating Defaule Node Settings...",GET_BOLTZ_SWAPS:"Getting Boltz Swaps...",SIGN_MESSAGE:"Signing Message...",VERIFY_MESSAGE:"Verifying Message...",BUMP_FEE:"Bumping Fee...",LEASE_UTXO:"Leasing UTXO...",GET_LOOP_INFO:"Getting Loop Info...",GET_LOOP_SWAPS:"Getting List Swaps...",GET_FORWARDING_HISTORY:"Getting Forwarding History...",GET_LOOKUP_DETAILS:"Getting Lookup Details...",GET_RTL_CONFIG:"Getting RTL Config...",VERIFY_TOKEN:"Verify Token...",DISABLE_OFFER:"Disabling Offer...",CREATE_OFFER:"Creating Offer...",DELETE_OFFER_BOOKMARK:"Deleting Bookmark...",GET_FUNDER_POLICY:"Getting Or Updating Funder Policy...",GET_LIST_CONFIGS:"Getting Configurations List...",LIST_NETWORK_NODES:"Getting Network Nodes List...",GET_PAGE_SETTINGS:"Getting Page Settings...",SET_PAGE_SETTINGS:"Setting Page Settings...",UPDATE_PAGE_SETTINGS:"Updating Page Layout...",REBALANCE_CHANNEL:"Rebalancing Channel...",LOG_OUT:"Logging Out..."};var ot=function(ee){return ee.INVOICE="INVOICE",ee.OFFER="OFFER",ee.KEYSEND="KEYSEND",ee}(ot||{}),nt=function(ee){return ee.FEES="FEES",ee.EVENTS="EVENTS",ee}(nt||{}),ht=function(ee){return ee.VOID="VOID",ee.SET_API_URL_ECL="SET_API_URL_ECL",ee.UPDATE_API_CALL_STATUS_ROOT="UPDATE_API_CALL_STATUS_ROOT",ee.RESET_ROOT_STORE="RESET_ROOT_STORE",ee.CLOSE_ALL_DIALOGS="CLOSE_ALL_DIALOGS",ee.OPEN_SNACK_BAR="OPEN_SNACKBAR",ee.OPEN_SPINNER="OPEN_SPINNER",ee.CLOSE_SPINNER="CLOSE_SPINNER",ee.OPEN_ALERT="OPEN_ALERT",ee.CLOSE_ALERT="CLOSE_ALERT",ee.OPEN_CONFIRMATION="OPEN_CONFIRMATION",ee.CLOSE_CONFIRMATION="CLOSE_CONFIRMATION",ee.SHOW_PUBKEY="SHOW_PUBKEY",ee.FETCH_CONFIG="FETCH_CONFIG",ee.SHOW_CONFIG="SHOW_CONFIG",ee.FETCH_STORE="FETCH_STORE",ee.SET_STORE="SET_STORE",ee.FETCH_APPLICATION_SETTINGS="FETCH_APPLICATION_SETTINGS",ee.SET_APPLICATION_SETTINGS="SET_APPLICATION_SETTINGS",ee.SAVE_SETTINGS="SAVE_SETTINGS",ee.SET_SELECTED_NODE="SET_SELECTED_NODE",ee.UPDATE_ROOT_NODE_SETTINGS="UPDATE_ROOT_NODE_SETTINGS",ee.UPDATE_APPLICATION_SETTINGS="UPDATE_APPLICATION_SETTINGS",ee.UPDATE_NODE_SETTINGS="UPDATE_NODE_SETTINGS",ee.SET_SELECTED_NODE_SETTINGS="SET_SELECTED_NODE_SETTINGS",ee.SET_NODE_DATA="SET_NODE_DATA",ee.IS_AUTHORIZED="IS_AUTHORIZED",ee.IS_AUTHORIZED_RES="IS_AUTHORIZED_RES",ee.LOGIN="LOGIN",ee.VERIFY_TWO_FA="VERIFY_TWO_FA",ee.LOGOUT="LOGOUT",ee.RESET_PASSWORD="RESET_PASSWORD",ee.RESET_PASSWORD_RES="RESET_PASSWORD_RES",ee.FETCH_FILE="FETCH_FILE",ee.SHOW_FILE="SHOW_FILE",ee}(ht||{}),oe=function(ee){return ee.RESET_LND_STORE="RESET_LND_STORE",ee.UPDATE_API_CALL_STATUS_LND="UPDATE_API_CALL_STATUS_LND",ee.SET_CHILD_NODE_SETTINGS_LND="SET_CHILD_NODE_SETTINGS_LND",ee.UPDATE_SELECTED_NODE_OPTIONS="UPDATE_SELECTED_NODE_OPTIONS",ee.FETCH_PAGE_SETTINGS_LND="FETCH_PAGE_SETTINGS_LND",ee.SET_PAGE_SETTINGS_LND="SET_PAGE_SETTINGS_LND",ee.SAVE_PAGE_SETTINGS_LND="SAVE_PAGE_SETTINGS_LND",ee.FETCH_INFO_LND="FETCH_INFO_LND",ee.SET_INFO_LND="SET_INFO_LND",ee.FETCH_PEERS_LND="FETCH_PEERS_LND",ee.SET_PEERS_LND="SET_PEERS_LND",ee.SAVE_NEW_PEER_LND="SAVE_NEW_PEER_LND",ee.NEWLY_ADDED_PEER_LND="NEWLY_ADDED_PEER_LND",ee.DETACH_PEER_LND="DETACH_PEER_LND",ee.REMOVE_PEER_LND="REMOVE_PEER_LND",ee.SAVE_NEW_INVOICE_LND="SAVE_NEW_INVOICE_LND",ee.NEWLY_SAVED_INVOICE_LND="NEWLY_SAVED_INVOICE_LND",ee.ADD_INVOICE_LND="ADD_INVOICE_LND",ee.FETCH_FEES_LND="FETCH_FEES_LND",ee.SET_FEES_LND="SET_FEES_LND",ee.FETCH_BLOCKCHAIN_BALANCE_LND="FETCH_BLOCKCHAIN_BALANCE_LND",ee.SET_BLOCKCHAIN_BALANCE_LND="SET_BLOCKCHAIN_BALANCE_LND",ee.FETCH_NETWORK_LND="FETCH_NETWORK_LND",ee.SET_NETWORK_LND="SET_NETWORK_LND",ee.FETCH_CHANNELS_LND="FETCH_CHANNELS_LND",ee.FETCH_PENDING_CHANNELS_LND="FETCH_PENDING_CHANNELS_LND",ee.FETCH_CLOSED_CHANNELS_LND="FETCH_CLOSED_CHANNELS_LND",ee.SET_CHANNELS_LND="SET_CHANNELS_LND",ee.SET_PENDING_CHANNELS_LND="SET_PENDING_CHANNELS_LND",ee.SET_CLOSED_CHANNELS_LND="SET_CLOSED_CHANNELS_LND",ee.UPDATE_CHANNEL_LND="UPDATE_CHANNEL_LND",ee.SAVE_NEW_CHANNEL_LND="SAVE_NEW_CHANNEL_LND",ee.CLOSE_CHANNEL_LND="CLOSE_CHANNEL_LND",ee.REMOVE_CHANNEL_LND="REMOVE_CHANNEL_LND",ee.BACKUP_CHANNELS_LND="BACKUP_CHANNELS_LND",ee.VERIFY_CHANNEL_LND="VERIFY_CHANNEL_LND",ee.BACKUP_CHANNELS_RES_LND="BACKUP_CHANNELS_RES_LND",ee.VERIFY_CHANNEL_RES_LND="VERIFY_CHANNEL_RES_LND",ee.RESTORE_CHANNELS_LIST_LND="RESTORE_CHANNELS_LIST_LND",ee.SET_RESTORE_CHANNELS_LIST_LND="SET_RESTORE_CHANNELS_LIST_LND",ee.RESTORE_CHANNELS_LND="RESTORE_CHANNELS_LND",ee.RESTORE_CHANNELS_RES_LND="RESTORE_CHANNELS_RES_LND",ee.FETCH_INVOICES_LND="FETCH_INVOICES_LND",ee.SET_INVOICES_LND="SET_INVOICES_LND",ee.UPDATE_INVOICE_LND="UPDATE_INVOICE_LND",ee.UPDATE_PAYMENT_LND="UPDATE_PAYMENT_LND",ee.SET_TOTAL_INVOICES_LND="SET_TOTAL_INVOICES_LND",ee.FETCH_TRANSACTIONS_LND="FETCH_TRANSACTIONS_LND",ee.SET_TRANSACTIONS_LND="SET_TRANSACTIONS_LND",ee.FETCH_UTXOS_LND="FETCH_UTXOS_LND",ee.SET_UTXOS_LND="SET_UTXOS_LND",ee.FETCH_PAYMENTS_LND="FETCH_PAYMENTS_LND",ee.SET_PAYMENTS_LND="SET_PAYMENTS_LND",ee.SEND_PAYMENT_LND="SEND_PAYMENT_LND",ee.SEND_PAYMENT_STATUS_LND="SEND_PAYMENT_STATUS_LND",ee.FETCH_GRAPH_NODE_LND="FETCH_GRAPH_NODE_LND",ee.SET_GRAPH_NODE_LND="SET_GRAPH_NODE_LND",ee.GET_NEW_ADDRESS_LND="GET_NEW_ADDRESS_LND",ee.SET_NEW_ADDRESS_LND="SET_NEW_ADDRESS_LND",ee.SET_CHANNEL_TRANSACTION_LND="SET_CHANNEL_TRANSACTION_LND",ee.SET_CHANNEL_TRANSACTION_RES_LND="SET_CHANNEL_TRANSACTION_RES_LND",ee.GEN_SEED_LND="GEN_SEED_LND",ee.GEN_SEED_RESPONSE_LND="GEN_SEED_RESPONSE_LND",ee.INIT_WALLET_LND="INIT_WALLET_LND",ee.INIT_WALLET_RESPONSE_LND="INIT_WALLET_RESPONSE_LND",ee.UNLOCK_WALLET_LND="UNLOCK_WALLET_LND",ee.PEER_LOOKUP_LND="PEER_LOOKUP_LND",ee.CHANNEL_LOOKUP_LND="CHANNEL_LOOKUP_LND",ee.INVOICE_LOOKUP_LND="INVOICE_LOOKUP_LND",ee.PAYMENT_LOOKUP_LND="PAYMENT_LOOKUP_LND",ee.SET_LOOKUP_LND="SET_LOOKUP_LND",ee.GET_FORWARDING_HISTORY_LND="GET_FORWARDING_HISTORY_LND",ee.SET_FORWARDING_HISTORY_LND="SET_FORWARDING_HISTORY_LND",ee.GET_QUERY_ROUTES_LND="GET_QUERY_ROUTES_LND",ee.SET_QUERY_ROUTES_LND="SET_QUERY_ROUTES_LND",ee.GET_ALL_LIGHTNING_TRANSATIONS_LND="GET_ALL_LIGHTNING_TRANSATIONS_LND",ee.SET_ALL_LIGHTNING_TRANSATIONS_LND="SET_ALL_LIGHTNING_TRANSATIONS_LND",ee}(oe||{}),Ye=function(ee){return ee.RESET_CLN_STORE="RESET_CLN_STORE",ee.UPDATE_API_CALL_STATUS_CLN="UPDATE_API_CALL_STATUS_CLN",ee.SET_CHILD_NODE_SETTINGS_CLN="SET_CHILD_NODE_SETTINGS_CLN",ee.FETCH_PAGE_SETTINGS_CLN="FETCH_PAGE_SETTINGS_CLN",ee.SET_PAGE_SETTINGS_CLN="SET_PAGE_SETTINGS_CLN",ee.SAVE_PAGE_SETTINGS_CLN="SAVE_PAGE_SETTINGS_CLN",ee.FETCH_INFO_CLN="FETCH_INFO_CL_CLN",ee.SET_INFO_CLN="SET_INFO_CLN",ee.FETCH_FEES_CLN="FETCH_FEES_CLN",ee.SET_FEES_CLN="SET_FEES_CLN",ee.FETCH_FEE_RATES_CLN="FETCH_FEE_RATES_CLN",ee.SET_FEE_RATES_CLN="SET_FEE_RATES_CLN",ee.GET_NEW_ADDRESS_CLN="GET_NEW_ADDRESS_CLN",ee.SET_NEW_ADDRESS_CLN="SET_NEW_ADDRESS_CLN",ee.FETCH_UTXO_BALANCES_CLN="FETCH_UTXO_BALANCES_CLN",ee.SET_UTXO_BALANCES_CLN="SET_UTXO_BALANCES_CLN",ee.FETCH_PEERS_CLN="FETCH_PEERS_CLN",ee.SET_PEERS_CLN="SET_PEERS_CLN",ee.SAVE_NEW_PEER_CLN="SAVE_NEW_PEER_CLN",ee.NEWLY_ADDED_PEER_CLN="NEWLY_ADDED_PEER_CLN",ee.ADD_PEER_CLN="ADD_PEER_CLN",ee.DETACH_PEER_CLN="DETACH_PEER_CLN",ee.REMOVE_PEER_CLN="REMOVE_PEER_CLN",ee.FETCH_CHANNELS_CLN="FETCH_CHANNELS_CLN",ee.SET_CHANNELS_CLN="SET_CHANNELS_CLN",ee.UPDATE_CHANNEL_CLN="UPDATE_CHANNEL_CLN",ee.SAVE_NEW_CHANNEL_CLN="SAVE_NEW_CHANNEL_CLN",ee.CLOSE_CHANNEL_CLN="CLOSE_CHANNEL_CLN",ee.REMOVE_CHANNEL_CLN="REMOVE_CHANNEL_CLN",ee.FETCH_PAYMENTS_CLN="FETCH_PAYMENTS_CLN",ee.SET_PAYMENTS_CLN="SET_PAYMENTS_CLN",ee.SEND_PAYMENT_CLN="SEND_PAYMENT_CLN",ee.SEND_PAYMENT_STATUS_CLN="SEND_PAYMENT_STATUS_CLN",ee.GET_QUERY_ROUTES_CLN="GET_QUERY_ROUTES_CLN",ee.SET_QUERY_ROUTES_CLN="SET_QUERY_ROUTES_CLN",ee.PEER_LOOKUP_CLN="PEER_LOOKUP_CLN",ee.CHANNEL_LOOKUP_CLN="CHANNEL_LOOKUP_CLN",ee.INVOICE_LOOKUP_CLN="INVOICE_LOOKUP_CLN",ee.SET_LOOKUP_CLN="SET_LOOKUP_CLN",ee.GET_FORWARDING_HISTORY_CLN="GET_FORWARDING_HISTORY_CLN",ee.SET_FORWARDING_HISTORY_CLN="SET_FORWARDING_HISTORY_CLN",ee.GET_FAILED_FORWARDING_HISTORY_CLN="GET_FAILED_FORWARDING_HISTORY_CLN",ee.SET_FAILED_FORWARDING_HISTORY_CLN="SET_FAILED_FORWARDING_HISTORY_CLN",ee.GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="GET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",ee.SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN="SET_LOCAL_FAILED_FORWARDING_HISTORY_CLN",ee.FETCH_INVOICES_CLN="FETCH_INVOICES_CLN",ee.SET_INVOICES_CLN="SET_INVOICES_CLN",ee.SAVE_NEW_INVOICE_CLN="SAVE_NEW_INVOICE_CLN",ee.ADD_INVOICE_CLN="ADD_INVOICE_CLN",ee.UPDATE_INVOICE_CLN="UPDATE_INVOICE_CLN",ee.DELETE_EXPIRED_INVOICE_CLN="DELETE_EXPIRED_INVOICE_CLN",ee.SET_CHANNEL_TRANSACTION_CLN="SET_CHANNEL_TRANSACTION_CLN",ee.SET_CHANNEL_TRANSACTION_RES_CLN="SET_CHANNEL_TRANSACTION_RES_CLN",ee.FETCH_OFFER_INVOICE_CLN="FETCH_OFFER_INVOICE_CLN",ee.SET_OFFER_INVOICE_CLN="SET_OFFER_INVOICE_CLN",ee.FETCH_OFFERS_CLN="FETCH_OFFERS_CLN",ee.SET_OFFERS_CLN="SET_OFFERS_CLN",ee.SAVE_NEW_OFFER_CLN="SAVE_NEW_OFFER_CLN",ee.ADD_OFFER_CLN="ADD_OFFER_CLN",ee.DISABLE_OFFER_CLN="DISABLE_OFFER_CLN",ee.UPDATE_OFFER_CLN="UPDATE_OFFER_CLN",ee.FETCH_OFFER_BOOKMARKS_CLN="FETCH_OFFER_BOOKMARKS_CLN",ee.SET_OFFER_BOOKMARKS_CLN="SET_OFFER_BOOKMARKS_CLN",ee.ADD_UPDATE_OFFER_BOOKMARK_CLN="ADD_UPDATE_OFFER_BOOKMARK_CLN",ee.DELETE_OFFER_BOOKMARK_CLN="DELETE_OFFER_BOOKMARK_CLN",ee.REMOVE_OFFER_BOOKMARK_CLN="REMOVE_OFFER_BOOKMARK_CL",ee}(Ye||{}),fe=function(ee){return ee.RESET_ECL_STORE="RESET_ECL_STORE",ee.UPDATE_API_CALL_STATUS_ECL="UPDATE_API_CALL_STATUS_ECL",ee.SET_CHILD_NODE_SETTINGS_ECL="SET_CHILD_NODE_SETTINGS_ECL",ee.FETCH_PAGE_SETTINGS_ECL="FETCH_PAGE_SETTINGS_ECL",ee.SET_PAGE_SETTINGS_ECL="SET_PAGE_SETTINGS_ECL",ee.SAVE_PAGE_SETTINGS_ECL="SAVE_PAGE_SETTINGS_ECL",ee.FETCH_INFO_ECL="FETCH_INFO_ECL",ee.SET_INFO_ECL="SET_INFO_ECL",ee.FETCH_FEES_ECL="FETCH_FEES_ECL",ee.SET_FEES_ECL="SET_FEES_ECL",ee.FETCH_CHANNELS_ECL="FETCH_CHANNELS_ECL",ee.SET_ACTIVE_CHANNELS_ECL="SET_ACTIVE_CHANNELS_ECL",ee.SET_PENDING_CHANNELS_ECL="SET_PENDING_CHANNELS_ECL",ee.SET_INACTIVE_CHANNELS_ECL="SET_INACTIVE_CHANNELS_ECL",ee.FETCH_ONCHAIN_BALANCE_ECL="FETCH_ONCHAIN_BALANCE_ECL",ee.SET_ONCHAIN_BALANCE_ECL="SET_ONCHAIN_BALANCE_ECL",ee.FETCH_LIGHTNING_BALANCE_ECL="FETCH_LIGHTNING_BALANCE_ECL",ee.SET_LIGHTNING_BALANCE_ECL="SET_LIGHTNING_BALANCE_ECL",ee.SET_CHANNELS_STATUS_ECL="SET_CHANNELS_STATUS_ECL",ee.FETCH_PEERS_ECL="FETCH_PEERS_ECL",ee.SET_PEERS_ECL="SET_PEERS_ECL",ee.SAVE_NEW_PEER_ECL="SAVE_NEW_PEER_ECL",ee.NEWLY_ADDED_PEER_ECL="NEWLY_ADDED_PEER_ECL",ee.ADD_PEER_ECL="ADD_PEER_ECL",ee.DETACH_PEER_ECL="DETACH_PEER_ECL",ee.REMOVE_PEER_ECL="REMOVE_PEER_ECL",ee.GET_NEW_ADDRESS_ECL="GET_NEW_ADDRESS_ECL",ee.SET_NEW_ADDRESS_ECL="SET_NEW_ADDRESS_ECL",ee.SAVE_NEW_CHANNEL_ECL="SAVE_NEW_CHANNEL_ECL",ee.UPDATE_CHANNEL_ECL="UPDATE_CHANNEL_ECL",ee.CLOSE_CHANNEL_ECL="CLOSE_CHANNEL_ECL",ee.REMOVE_CHANNEL_ECL="REMOVE_CHANNEL_ECL",ee.FETCH_PAYMENTS_ECL="FETCH_PAYMENTS_ECL",ee.SET_PAYMENTS_ECL="SET_PAYMENTS_ECL",ee.GET_QUERY_ROUTES_ECL="GET_QUERY_ROUTES_ECL",ee.SET_QUERY_ROUTES_ECL="SET_QUERY_ROUTES_ECL",ee.SEND_PAYMENT_ECL="SEND_PAYMENT_ECL",ee.SEND_PAYMENT_STATUS_ECL="SEND_PAYMENT_STATUS_ECL",ee.FETCH_TRANSACTIONS_ECL="FETCH_TRANSACTIONS_ECL",ee.SET_TRANSACTIONS_ECL="SET_TRANSACTIONS_ECL",ee.SEND_ONCHAIN_FUNDS_ECL="SEND_ONCHAIN_FUNDS_ECL",ee.SEND_ONCHAIN_FUNDS_RES_ECL="SEND_ONCHAIN_FUNDS_RES_ECL",ee.FETCH_INVOICES_ECL="FETCH_INVOICES_ECL",ee.SET_INVOICES_ECL="SET_INVOICES_ECL",ee.SET_TOTAL_INVOICES_ECL="SET_TOTAL_INVOICES_ECL",ee.CREATE_INVOICE_ECL="CREATE_INVOICE_ECL",ee.ADD_INVOICE_ECL="ADD_INVOICE_ECL",ee.UPDATE_INVOICE_ECL="UPDATE_INVOICE_ECL",ee.PEER_LOOKUP_ECL="PEER_LOOKUP_ECL",ee.INVOICE_LOOKUP_ECL="INVOICE_LOOKUP_ECL",ee.SET_LOOKUP_ECL="SET_LOOKUP_ECL",ee.UPDATE_CHANNEL_STATE_ECL="UPDATE_CHANNEL_STATE_ECL",ee.UPDATE_RELAYED_PAYMENT_ECL="UPDATE_RELAYED_PAYMENT_ECL",ee}(fe||{});const Qe=[{range:{min:0,max:1},description:"Requires or supports extra channel re-establish fields"},{range:{min:4,max:5},description:"Commits to a shutdown script pubkey when opening channel"},{range:{min:6,max:7},description:"More sophisticated gossip control"},{range:{min:8,max:9},description:"Requires/supports variable-length routing onion payloads"},{range:{min:10,max:11},description:"Gossip queries can include additional information"},{range:{min:12,max:13},description:"Static key for remote output"},{range:{min:14,max:15},description:"Node supports payment secret field"},{range:{min:16,max:17},description:"Node can receive basic multi-part payments"},{range:{min:18,max:19},description:"Node can create large channels"},{range:{min:20,max:21},description:"Anchor outputs"},{range:{min:22,max:23},description:"Anchor commitment type with zero fee HTLC transactions"},{range:{min:26,max:27},description:"Future segwit versions allowed in shutdown"},{range:{min:30,max:31},description:"AMP support"},{range:{min:44,max:45},description:"Explicit commitment type"}];var gt=function(ee){return ee.gossip_queries_ex="Gossip queries including additional information",ee.option_anchor_outputs="Anchor outputs",ee.option_data_loss_protect="Extra channel re-establish fields",ee.var_onion_optin="Variable-length routing onion payloads",ee.option_static_remotekey="Static key for remote output",ee.option_support_large_channel="Create large channels",ee.option_anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",ee.payment_secret="Payment secret field",ee.option_shutdown_anysegwit="Future segwit versions allowed in shutdown",ee.basic_mpp="Basic multi-part payments",ee.gossip_queries="More sophisticated gossip control",ee.option_upfront_shutdown_script="Shutdown script pubkey when opening channel",ee.anchors_zero_fee_htlc_tx="Anchor commitment type with zero fee HTLC transactions",ee.amp="AMP",ee}(gt||{}),Gt=function(ee){return ee["data-loss-protect"]="Extra channel re-establish fields",ee["upfront-shutdown-script"]="Shutdown script pubkey when opening channel",ee["gossip-queries"]="More sophisticated gossip control",ee["tlv-onion"]="Variable-length routing onion payloads",ee["ext-gossip-queries"]="Gossip queries can include additional information",ee["static-remote-key"]="Static key for remote output",ee["payment-addr"]="Payment secret field",ee["multi-path-payments"]="Basic multi-part payments",ee["wumbo-channels"]="Wumbo Channels",ee.anchors="Anchor outputs",ee["anchors-zero-fee-htlc-tx"]="Anchor commitment type with zero fee HTLC transactions",ee.amp="AMP",ee}(Gt||{});const rt=[{id:"match",placeholder:"Policy Match (%age)",min:0,max:200},{id:"available",placeholder:"Policy Available (%age)",min:0,max:100},{id:"fixed",placeholder:"Fixed Policy (Sats)",min:0,max:100}];var cn=function(ee){return ee.OFFERED="offered",ee.SETTLED="settled",ee.FAILED="failed",ee.LOCAL_FAILED="local_failed",ee}(cn||{}),jt=function(ee){return ee.ASCENDING="asc",ee.DESCENDING="desc",ee}(jt||{});const Ue=["asc","desc"],wt=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:le,sortBy:"blockheight",sortOrder:jt.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]},{tableId:"dust_utxos",recordsPerPage:le,sortBy:"blockheight",sortOrder:jt.DESCENDING,columnSelectionSM:["txid","value"],columnSelection:["txid","output","value","blockheight"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:le,sortBy:"msatoshi_to_us",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","msatoshi_to_us","msatoshi_to_them"],columnSelection:["short_channel_id","alias","msatoshi_to_us","msatoshi_to_them","balancedness"]},{tableId:"pending_inactive_channels",recordsPerPage:le,sortBy:"state",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","state"],columnSelection:["alias","connected","state","msatoshi_total"]},{tableId:"peers",recordsPerPage:le,sortBy:"alias",sortOrder:jt.ASCENDING,columnSelectionSM:["alias","id"],columnSelection:["alias","id","netaddr"]},{tableId:"active_HTLCs",recordsPerPage:le,sortBy:"expiry",sortOrder:jt.DESCENDING,columnSelectionSM:["amount_msat","direction","expiry"],columnSelection:["amount_msat","direction","expiry","state"]}]},{pageId:"liquidity_ads",tables:[{tableId:"liquidity_ads",recordsPerPage:le,sortBy:"channel_opening_fee",sortOrder:jt.ASCENDING,columnSelectionSM:["alias","channel_opening_fee"],columnSelection:["alias","last_timestamp","lease_fee","routing_fee","channel_opening_fee"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:le,sortBy:"created_at",sortOrder:jt.DESCENDING,columnSelectionSM:["created_at","msatoshi"],columnSelection:["created_at","type","payment_hash","msatoshi_sent","msatoshi"]},{tableId:"invoices",recordsPerPage:le,sortBy:"expires_at",sortOrder:jt.DESCENDING,columnSelectionSM:["expires_at","msatoshi"],columnSelection:["expires_at","paid_at","type","description","msatoshi","msatoshi_received"]},{tableId:"offers",recordsPerPage:le,sortBy:"offer_id",sortOrder:jt.DESCENDING,columnSelectionSM:["offer_id","single_use"],columnSelection:["offer_id","single_use","used"]},{tableId:"offer_bookmarks",recordsPerPage:le,sortBy:"lastUpdatedAt",sortOrder:jt.DESCENDING,columnSelectionSM:["lastUpdatedAt","amountMSat"],columnSelection:["lastUpdatedAt","title","description","amountMSat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:le,sortBy:"received_time",sortOrder:jt.DESCENDING,columnSelectionSM:["received_time","in_msatoshi","out_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"routing_peers",recordsPerPage:le,sortBy:"total_fee",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","events","total_fee"],columnSelection:["channel_id","alias","events","total_amount","total_fee"]},{tableId:"failed",recordsPerPage:le,sortBy:"received_time",sortOrder:jt.DESCENDING,columnSelectionSM:["received_time","in_channel_alias","in_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"local_failed",recordsPerPage:le,sortBy:"received_time",sortOrder:jt.DESCENDING,columnSelectionSM:["received_time","in_channel_alias","in_msatoshi"],columnSelection:["received_time","in_channel_alias","in_msatoshi","style","failreason"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:le,sortBy:"received_time",sortOrder:jt.DESCENDING,columnSelectionSM:["received_time","in_msatoshi","out_msatoshi"],columnSelection:["received_time","resolved_time","in_channel_alias","out_channel_alias","in_msatoshi","out_msatoshi","fee"]},{tableId:"transactions",recordsPerPage:le,sortBy:"date",sortOrder:jt.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]},{pageId:"graph_lookup",tables:[{tableId:"query_routes",recordsPerPage:le,sortBy:"msatoshi",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","direction","msatoshi"],columnSelection:["alias","channel","direction","delay","msatoshi"]}]}],pt={on_chain:{utxos:{maxColumns:7,allowedColumns:[{column:"txid",label:"Transaction ID"},{column:"address"},{column:"scriptpubkey",label:"Script Pubkey"},{column:"output"},{column:"value"},{column:"blockheight"},{column:"reserved"}]},dust_utxos:{maxColumns:7,allowedColumns:[{column:"txid",label:"Transaction ID"},{column:"address"},{column:"scriptpubkey",label:"Script Pubkey"},{column:"output"},{column:"value"},{column:"blockheight"},{column:"reserved"}]}},peers_channels:{open_channels:{maxColumns:8,allowedColumns:[{column:"short_channel_id"},{column:"alias"},{column:"id"},{column:"channel_id"},{column:"funding_txid",label:"Funding Transaction ID"},{column:"connected"},{column:"our_channel_reserve_satoshis",label:"Local Reserve"},{column:"their_channel_reserve_satoshis",label:"Remote Reserve"},{column:"msatoshi_total",label:"Total"},{column:"spendable_msatoshi",label:"Spendable"},{column:"msatoshi_to_us",label:"Local Balance"},{column:"msatoshi_to_them",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},pending_inactive_channels:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"id"},{column:"channel_id"},{column:"funding_txid",label:"Funding Transaction ID"},{column:"connected"},{column:"state"},{column:"our_channel_reserve_satoshis",label:"Local Reserve"},{column:"their_channel_reserve_satoshis",label:"Remote Reserve"},{column:"msatoshi_total",label:"Total"},{column:"spendable_msatoshi",label:"Spendable"},{column:"msatoshi_to_us",label:"Local Balance"},{column:"msatoshi_to_them",label:"Remote Balance"}]},peers:{maxColumns:3,allowedColumns:[{column:"alias"},{column:"id"},{column:"netaddr",label:"Network Address"}]},active_HTLCs:{maxColumns:7,allowedColumns:[{column:"amount_msat",label:"Amount (Sats)"},{column:"direction"},{column:"id",label:"HTLC ID"},{column:"state"},{column:"expiry"},{column:"payment_hash"},{column:"local_trimmed"}]}},liquidity_ads:{liquidity_ads:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"nodeid",label:"Node ID"},{column:"last_timestamp",label:"Last Announcement At"},{column:"compact_lease"},{column:"lease_fee"},{column:"routing_fee"},{column:"channel_opening_fee"},{column:"funding_weight"}]}},transactions:{payments:{maxColumns:7,allowedColumns:[{column:"created_at",label:"Created At"},{column:"type"},{column:"payment_hash"},{column:"bolt11",label:"Invoice"},{column:"destination"},{column:"memo"},{column:"label"},{column:"msatoshi_sent",label:"Sats Sent"},{column:"msatoshi",label:"Sats Received"}]},invoices:{maxColumns:7,allowedColumns:[{column:"expires_at",label:"Expiry Date"},{column:"paid_at",label:"Date Settled"},{column:"type"},{column:"description"},{column:"label"},{column:"payment_hash"},{column:"bolt11",label:"Invoice"},{column:"msatoshi",label:"Amount"},{column:"msatoshi_received",label:"Amount Settled"}]},offers:{maxColumns:4,allowedColumns:[{column:"offer_id",label:"Offer ID"},{column:"single_use"},{column:"used"},{column:"bolt12",label:"Invoice"}]},offer_bookmarks:{maxColumns:6,allowedColumns:[{column:"lastUpdatedAt",label:"Updated At"},{column:"title"},{column:"description"},{column:"issuer"},{column:"bolt12",label:"Invoice"},{column:"amountMSat",label:"Amount"}]}},routing:{forwarding_history:{maxColumns:8,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"payment_hash"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},routing_peers:{maxColumns:5,allowedColumns:[{column:"channel_id"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"total_amount",label:"Amount"},{column:"total_fee",label:"Fee"}]},failed:{maxColumns:7,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},local_failed:{maxColumns:6,allowedColumns:[{column:"received_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"in_msatoshi",label:"Amount In"},{column:"style"},{column:"failreason",label:"Fail Reason"}]}},reports:{routing:{maxColumns:8,allowedColumns:[{column:"received_time"},{column:"resolved_time"},{column:"in_channel",label:"In Channel ID"},{column:"in_channel_alias",label:"In Channel"},{column:"out_channel",label:"Out Channel ID"},{column:"out_channel_alias",label:"Out Channel"},{column:"payment_hash"},{column:"in_msatoshi",label:"Amount In"},{column:"out_msatoshi",label:"Amount Out"},{column:"fee"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}},graph_lookup:{query_routes:{maxColumns:6,allowedColumns:[{column:"id"},{column:"alias"},{column:"channel"},{column:"direction"},{column:"delay"},{column:"msatoshi",label:"Amount"}]}}},Pt=[{pageId:"on_chain",tables:[{tableId:"utxos",recordsPerPage:le,sortBy:"tx_id",sortOrder:jt.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]},{tableId:"transactions",recordsPerPage:le,sortBy:"time_stamp",sortOrder:jt.DESCENDING,columnSelectionSM:["time_stamp","amount","num_confirmations"],columnSelection:["time_stamp","label","amount","total_fees","block_height","num_confirmations"]},{tableId:"dust_utxos",recordsPerPage:le,sortBy:"tx_id",sortOrder:jt.DESCENDING,columnSelectionSM:["output","amount_sat"],columnSelection:["tx_id","output","label","amount_sat","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open",recordsPerPage:le,sortBy:"balancedness",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","local_balance"],columnSelection:["remote_alias","uptime_str","total_satoshis_sent","total_satoshis_received","local_balance","remote_balance","balancedness"]},{tableId:"pending_open",sortBy:"capacity",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","commit_fee","commit_weight","capacity"]},{tableId:"pending_force_closing",sortBy:"limbo_balance",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","blocks_til_maturity","limbo_balance"],columnSelection:["remote_alias","blocks_til_maturity","recovered_balance","limbo_balance","capacity"]},{tableId:"pending_closing",sortBy:"capacity",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","capacity"],columnSelection:["remote_alias","local_balance","remote_balance","capacity"]},{tableId:"pending_waiting_close",sortBy:"limbo_balance",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","limbo_balance"],columnSelection:["remote_alias","limbo_balance","local_balance","remote_balance"]},{tableId:"closed",recordsPerPage:le,sortBy:"close_type",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","settled_balance"],columnSelection:["close_type","remote_alias","capacity","close_height","settled_balance"]},{tableId:"active_HTLCs",recordsPerPage:le,sortBy:"incoming",sortOrder:jt.ASCENDING,columnSelectionSM:["amount","incoming","expiration_height"],columnSelection:["amount","incoming","expiration_height","hash_lock"]},{tableId:"peers",recordsPerPage:le,sortBy:"alias",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","sat_sent","sat_recv"],columnSelection:["alias","pub_key","sat_sent","sat_recv","ping_time"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:le,sortBy:"creation_date",sortOrder:jt.DESCENDING,columnSelectionSM:["creation_date","fee","value"],columnSelection:["creation_date","payment_hash","fee","value","hops"]},{tableId:"invoices",recordsPerPage:le,sortBy:"creation_date",sortOrder:jt.DESCENDING,columnSelectionSM:["creation_date","settle_date","value"],columnSelection:["creation_date","settle_date","memo","value","amt_paid_sat"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:le,sortBy:"timestamp",sortOrder:jt.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"routing_peers",recordsPerPage:le,sortBy:"total_amount",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","events","total_amount"],columnSelection:["chan_id","alias","events","total_amount"]},{tableId:"non_routing_peers",recordsPerPage:le,sortBy:"remote_alias",sortOrder:jt.DESCENDING,columnSelectionSM:["remote_alias","local_balance","remote_balance"],columnSelection:["chan_id","remote_alias","total_satoshis_received","total_satoshis_sent","local_balance","remote_balance"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:le,sortBy:"timestamp",sortOrder:jt.DESCENDING,columnSelectionSM:["timestamp","amt_in","amt_out"],columnSelection:["timestamp","alias_in","alias_out","amt_in","amt_out","fee_msat"]},{tableId:"transactions",recordsPerPage:le,sortBy:"date",sortOrder:jt.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]},{pageId:"graph_lookup",tables:[{tableId:"query_routes",recordsPerPage:le,sortBy:"hop_sequence",sortOrder:jt.ASCENDING,columnSelectionSM:["hop_sequence","pubkey_alias","fee_msat"],columnSelection:["hop_sequence","pubkey_alias","chan_capacity","amt_to_forward_msat","fee_msat"]}]},{pageId:"loop",tables:[{tableId:"loop",recordsPerPage:le,sortBy:"initiation_time",sortOrder:jt.DESCENDING,columnSelectionSM:["state","amt"],columnSelection:["state","initiation_time","amt","cost_server","cost_offchain","cost_onchain"]}]},{pageId:"boltz",tables:[{tableId:"swap_out",recordsPerPage:le,sortBy:"status",sortOrder:jt.DESCENDING,columnSelectionSM:["status","id","onchainAmount"],columnSelection:["status","id","claimAddress","onchainAmount","timeoutBlockHeight"]},{tableId:"swap_in",recordsPerPage:le,sortBy:"status",sortOrder:jt.DESCENDING,columnSelectionSM:["status","id","expectedAmount"],columnSelection:["status","id","lockupAddress","expectedAmount","timeoutBlockHeight"]}]}],gn={on_chain:{utxos:{maxColumns:7,allowedColumns:[{column:"tx_id",label:"Transaction ID"},{column:"output"},{column:"label"},{column:"address_type"},{column:"address"},{column:"amount_sat",label:"Amount"},{column:"confirmations"}]},transactions:{maxColumns:7,allowedColumns:[{column:"time_stamp",label:"Date/Time"},{column:"label"},{column:"block_hash"},{column:"tx_hash",label:"Transaction Hash"},{column:"amount"},{column:"total_fees",label:"Fees"},{column:"block_height"},{column:"num_confirmations",label:"Confirmations"}]},dust_utxos:{maxColumns:7,allowedColumns:[{column:"tx_id",label:"Transaction ID"},{column:"output"},{column:"label"},{column:"address_type"},{column:"address"},{column:"amount_sat"},{column:"confirmations"}]}},peers_channels:{open:{maxColumns:8,allowedColumns:[{column:"remote_alias",label:"Peer"},{column:"remote_pubkey",label:"Pubkey"},{column:"channel_point"},{column:"chan_id",label:"Channel ID"},{column:"initiator"},{column:"static_remote_key"},{column:"uptime_str",label:"Uptime"},{column:"lifetime_str",label:"Lifetime"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"num_updates",label:"Updates"},{column:"unsettled_balance"},{column:"capacity"},{column:"local_chan_reserve_sat",label:"Local Reserve"},{column:"remote_chan_reserve_sat",label:"Remote Reserve"},{column:"total_satoshis_sent",label:"Sats Sent"},{column:"total_satoshis_received",label:"Sats Received"},{column:"local_balance"},{column:"remote_balance"},{column:"balancedness",label:"Balance Score"}]},pending_open:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"confirmation_height"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_force_closing:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"limbo_balance"},{column:"maturity_height"},{column:"blocks_til_maturity",label:"Blocks till Maturity"},{column:"recovered_balance"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_closing:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},pending_waiting_close:{maxColumns:7,disablePageSize:!0,allowedColumns:[{column:"closing_txid",label:"Closing Tx ID"},{column:"remote_alias",label:"Peer"},{column:"remote_node_pub",label:"Pubkey"},{column:"channel_point"},{column:"initiator"},{column:"commitment_type"},{column:"limbo_balance"},{column:"capacity"},{column:"local_balance"},{column:"remote_balance"}]},closed:{maxColumns:7,allowedColumns:[{column:"close_type"},{column:"remote_alias",label:"Peer"},{column:"remote_pubkey",label:"Pubkey"},{column:"channel_point"},{column:"chan_id",label:"Channel ID"},{column:"closing_tx_hash",label:"Closing Tx Hash"},{column:"chain_hash"},{column:"open_initiator"},{column:"close_initiator"},{column:"time_locked_balance",label:"Timelocked Balance"},{column:"capacity"},{column:"close_height"},{column:"settled_balance"}]},active_HTLCs:{maxColumns:7,allowedColumns:[{column:"amount"},{column:"incoming"},{column:"forwarding_channel"},{column:"htlc_index"},{column:"forwarding_htlc_index"},{column:"expiration_height"},{column:"hash_lock"}]},peers:{maxColumns:8,allowedColumns:[{column:"alias"},{column:"pub_key",label:"Public Key"},{column:"address"},{column:"sync_type"},{column:"inbound"},{column:"bytes_sent"},{column:"bytes_recv",label:"Bytes Received"},{column:"sat_sent",label:"Sats Sent"},{column:"sat_recv",label:"Sats Received"},{column:"ping_time"}]}},transactions:{payments:{maxColumns:8,allowedColumns:[{column:"creation_date"},{column:"payment_hash"},{column:"payment_request"},{column:"payment_preimage"},{column:"description"},{column:"description_hash"},{column:"failure_reason"},{column:"payment_index"},{column:"fee"},{column:"value"},{column:"hops"}]},invoices:{maxColumns:9,allowedColumns:[{column:"private"},{column:"is_keysend",label:"Keysend"},{column:"is_amp",label:"AMP"},{column:"creation_date",label:"Date Created"},{column:"settle_date",label:"Date Settled"},{column:"memo"},{column:"r_preimage",label:"Preimage"},{column:"r_hash",label:"Preimage Hash"},{column:"payment_addr",label:"Payment Address"},{column:"payment_request"},{column:"description_hash"},{column:"expiry"},{column:"cltv_expiry"},{column:"add_index"},{column:"settle_index"},{column:"value",label:"Amount"},{column:"amt_paid_sat",label:"Amount Settled"}]}},routing:{forwarding_history:{maxColumns:6,allowedColumns:[{column:"timestamp"},{column:"alias_in",label:"Inbound Alias"},{column:"chan_id_in",label:"Inbound Channel"},{column:"alias_out",label:"Outbound Alias"},{column:"chan_id_out",label:"Outbound Channel"},{column:"amt_in",label:"Inbound Amount"},{column:"amt_out",label:"Outbound Amount"},{column:"fee_msat",label:"Fee"}]},routing_peers:{maxColumns:4,allowedColumns:[{column:"chan_id",label:"Channel ID"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"total_amount"}]},non_routing_peers:{maxColumns:8,allowedColumns:[{column:"chan_id",label:"Channel ID"},{column:"remote_alias",label:"Peer Alias"},{column:"remote_pubkey",label:"Peer Pubkey"},{column:"channel_point"},{column:"uptime_str",label:"Uptime"},{column:"lifetime_str",label:"Lifetime"},{column:"commit_fee"},{column:"commit_weight"},{column:"fee_per_kw",label:"Fee/KW"},{column:"num_updates",label:"Updates"},{column:"unsettled_balance"},{column:"capacity"},{column:"local_chan_reserve_sat",label:"Local Reserve"},{column:"remote_chan_reserve_sat",label:"Remote Reserve"},{column:"total_satoshis_sent",label:"Sats Sent"},{column:"total_satoshis_received",label:"Sats Received"},{column:"local_balance"},{column:"remote_balance"}]}},reports:{routing:{maxColumns:6,allowedColumns:[{column:"timestamp"},{column:"alias_in",label:"Inbound Alias"},{column:"chan_id_in",label:"Inbound Channel"},{column:"alias_out",label:"Outbound Alias"},{column:"chan_id_out",label:"Outbound Channel"},{column:"amt_in",label:"Inbound Amount"},{column:"amt_out",label:"Outbound Amount"},{column:"fee_msat",label:"Fee"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}},graph_lookup:{query_routes:{maxColumns:8,disablePageSize:!0,allowedColumns:[{column:"hop_sequence",label:"Hop"},{column:"pubkey_alias",label:"Peer"},{column:"pub_key",label:"Peer Pubkey"},{column:"chan_id",label:"Channel ID"},{column:"tlv_payload"},{column:"expiry"},{column:"chan_capacity",label:"Capacity"},{column:"amt_to_forward_msat",label:"Amount To Fwd"},{column:"fee_msat",label:"Fee"}]}},loop:{loop:{maxColumns:8,allowedColumns:[{column:"state"},{column:"initiation_time"},{column:"last_update_time"},{column:"amt",label:"Amount"},{column:"cost_server"},{column:"cost_offchain"},{column:"cost_onchain"},{column:"htlc_address"},{column:"id"},{column:"id_bytes",label:"ID (Bytes)"}]}},boltz:{swap_out:{maxColumns:7,allowedColumns:[{column:"status"},{column:"id",label:"Swap ID"},{column:"claimAddress",label:"Claim Address"},{column:"onchainAmount",label:"Onchain Amount"},{column:"error"},{column:"privateKey",label:"Private Key"},{column:"preimage"},{column:"redeemScript",label:"Redeem Script"},{column:"invoice"},{column:"timeoutBlockHeight",label:"Timeout Block Height"},{column:"lockupTransactionId",label:"Lockup Tx ID"},{column:"claimTransactionId",label:"Claim Tx ID"}]},swap_in:{maxColumns:7,allowedColumns:[{column:"status"},{column:"id",label:"Swap ID"},{column:"lockupAddress",label:"Lockup Address"},{column:"expectedAmount",label:"Expected Amount"},{column:"error"},{column:"privateKey",label:"Private Key"},{column:"preimage"},{column:"redeemScript",label:"Redeem Script"},{column:"invoice"},{column:"timeoutBlockHeight",label:"Timeout Block Height"},{column:"lockupTransactionId",label:"Lockup Tx ID"},{column:"refundTransactionId",label:"Refund Tx ID"}]}}},ei=[{pageId:"on_chain",tables:[{tableId:"transaction",recordsPerPage:le,sortBy:"timestamp",sortOrder:jt.DESCENDING,columnSelectionSM:["timestamp","amount"],columnSelection:["timestamp","address","amount","fees","confirmations"]}]},{pageId:"peers_channels",tables:[{tableId:"open_channels",recordsPerPage:le,sortBy:"alias",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","toLocal","toRemote"],columnSelection:["shortChannelId","alias","feeBaseMsat","feeProportionalMillionths","toLocal","toRemote","balancedness"]},{tableId:"pending_channels",recordsPerPage:le,sortBy:"alias",sortOrder:jt.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","alias","toLocal","toRemote"]},{tableId:"inactive_channels",recordsPerPage:le,sortBy:"alias",sortOrder:jt.DESCENDING,columnSelectionSM:["state","alias","toLocal"],columnSelection:["state","shortChannelId","alias","toLocal","toRemote","balancedness"]},{tableId:"peers",recordsPerPage:le,sortBy:"alias",sortOrder:jt.ASCENDING,columnSelectionSM:["alias","nodeId"],columnSelection:["alias","nodeId","address","channels"]}]},{pageId:"transactions",tables:[{tableId:"payments",recordsPerPage:le,sortBy:"firstPartTimestamp",sortOrder:jt.DESCENDING,columnSelectionSM:["firstPartTimestamp","recipientAmount"],columnSelection:["firstPartTimestamp","id","recipientNodeAlias","recipientAmount"]},{tableId:"invoices",recordsPerPage:le,sortBy:"receivedAt",sortOrder:jt.DESCENDING,columnSelectionSM:["timestamp","amount","amountSettled"],columnSelection:["timestamp","receivedAt","description","amount","amountSettled"]}]},{pageId:"routing",tables:[{tableId:"forwarding_history",recordsPerPage:le,sortBy:"timestamp",sortOrder:jt.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"routing_peers",recordsPerPage:le,sortBy:"totalFee",sortOrder:jt.DESCENDING,columnSelectionSM:["alias","events","totalFee"],columnSelection:["channelId","alias","events","totalAmount","totalFee"]}]},{pageId:"reports",tables:[{tableId:"routing",recordsPerPage:le,sortBy:"timestamp",sortOrder:jt.DESCENDING,columnSelectionSM:["timestamp","amountIn","fee"],columnSelection:["timestamp","fromChannelAlias","toChannelAlias","amountIn","amountOut","fee"]},{tableId:"transactions",recordsPerPage:le,sortBy:"date",sortOrder:jt.DESCENDING,columnSelectionSM:["date","amount_paid","amount_received"],columnSelection:["date","amount_paid","num_payments","amount_received","num_invoices"]}]}],vi={on_chain:{transaction:{maxColumns:6,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"address"},{column:"blockHash"},{column:"txid",label:"Transaction ID"},{column:"amount"},{column:"fees"},{column:"confirmations"}]}},peers_channels:{open_channels:{maxColumns:8,allowedColumns:[{column:"shortChannelId"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"feeBaseMsat",label:"Base Fee"},{column:"feeProportionalMillionths",label:"Fee Rate"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},pending_channels:{maxColumns:7,allowedColumns:[{column:"state"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"}]},inactive_channels:{maxColumns:8,allowedColumns:[{column:"state"},{column:"shortChannelId"},{column:"channelId"},{column:"alias"},{column:"nodeId"},{column:"isInitiator",label:"Initiator"},{column:"toLocal",label:"Local Balance"},{column:"toRemote",label:"Remote Balance"},{column:"balancedness",label:"Balance Score"}]},peers:{maxColumns:4,allowedColumns:[{column:"alias"},{column:"nodeId"},{column:"address",label:"Netwrok Address"},{column:"channels"}]}},transactions:{payments:{maxColumns:7,allowedColumns:[{column:"firstPartTimestamp",label:"Date/Time"},{column:"id"},{column:"recipientNodeId",label:"Destination Node ID"},{column:"recipientNodeAlias",label:"Destination"},{column:"description"},{column:"paymentHash"},{column:"paymentPreimage",label:"Preimage"},{column:"recipientAmount",label:"Amount"}]},invoices:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date Created"},{column:"expiresAt",label:"Date Expiry"},{column:"receivedAt",label:"Date Settled"},{column:"nodeId",label:"Node ID"},{column:"description"},{column:"paymentHash"},{column:"amount"},{column:"amountSettled",label:"Amount Settled"}]}},routing:{forwarding_history:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"fromChannelId",label:"In Channel ID"},{column:"fromShortChannelId",label:"In Channel Short ID"},{column:"fromChannelAlias",label:"In Channel"},{column:"toChannelId",label:"Out Channel ID"},{column:"toShortChannelId",label:"Out Channel Short ID"},{column:"toChannelAlias",label:"Out Channel"},{column:"paymentHash"},{column:"amountIn"},{column:"amountOut"},{column:"fee",label:"Fee Earned"}]},routing_peers:{maxColumns:5,allowedColumns:[{column:"channelId"},{column:"alias",label:"Peer Alias"},{column:"events"},{column:"totalAmount",label:"Amount"},{column:"totalFee",label:"Fee"}]}},reports:{routing:{maxColumns:7,allowedColumns:[{column:"timestamp",label:"Date/Time"},{column:"fromChannelId",label:"In Channel ID"},{column:"fromShortChannelId",label:"In Channel Short ID"},{column:"fromChannelAlias",label:"In Channel"},{column:"toChannelId",label:"Out Channel ID"},{column:"toShortChannelId",label:"Out Channel Short ID"},{column:"toChannelAlias",label:"Out Channel"},{column:"paymentHash"},{column:"amountIn"},{column:"amountOut"},{column:"fee",label:"Fee Earned"}]},transactions:{maxColumns:5,allowedColumns:[{column:"date"},{column:"amount_paid"},{column:"num_payments",label:"# Payments"},{column:"amount_received"},{column:"num_invoices",label:"# Invoices"}]}}},Ni_DKK="\n \n \n \n ",kn=[{id:"USD",name:"United States Dollar",iconType:"FA",symbol:v.Vpi},{id:"ARS",name:"Argentina Peso",iconType:"FA",symbol:v.Vpi},{id:"AUD",name:"Australia Dollar",iconType:"FA",symbol:v.Vpi},{id:"BRL",name:"Brazil Real",iconType:"FA",symbol:v.Tq9},{id:"CAD",name:"Canada Dollar",iconType:"FA",symbol:v.Vpi},{id:"CHF",name:"Switzerland Franc",iconType:"FA",symbol:v.zjW},{id:"CLP",name:"Chile Peso",iconType:"FA",symbol:v.Vpi},{id:"CNY",name:"China Yuan Renminbi",iconType:"FA",symbol:v.zPk},{id:"CZK",name:"Czech Republic Koruna",iconType:"SVG",symbol:"\n \n \n \n \n \n \n \n ",class:"currency-icon-x-large"},{id:"DKK",name:"Denmark Krone",iconType:"SVG",symbol:Ni_DKK,class:"currency-icon-medium"},{id:"EUR",name:"Euro Member Countries",iconType:"FA",symbol:v.s5m},{id:"GBP",name:"United Kingdom Pound",iconType:"FA",symbol:v.vfE},{id:"HKD",name:"Hong Kong Dollar",iconType:"FA",symbol:v.Vpi},{id:"HRK",name:"Croatia Kuna",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/15766/croatia-kuna-currency-symbol --\x3e\n \n \n \n \n \n ',class:"currency-icon-medium"},{id:"HUF",name:"Hungary Forint",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/183602/forint-business-and-finance --\x3e\n \n \n \n \n \n \n ',class:"currency-icon-small"},{id:"INR",name:"India Rupee",iconType:"FA",symbol:v.FYJ},{id:"ISK",name:"Iceland Krona",iconType:"SVG",symbol:Ni_DKK,class:"currency-icon-medium"},{id:"JPY",name:"Japan Yen",iconType:"FA",symbol:v.zPk},{id:"KRW",name:"Korea (South) Won",iconType:"FA",symbol:v.JKM},{id:"NZD",name:"New Zealand Dollar",iconType:"FA",symbol:v.Vpi},{id:"PLN",name:"Poland Zloty",iconType:"SVG",symbol:"\n \n \n \n \n \n \n ",class:"currency-icon-large"},{id:"RON",name:"Romania Leu",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/64526/romania-lei-currency --\x3e\n \n \n \n \n \n ',class:"currency-icon-medium"},{id:"RUB",name:"Russia Ruble",iconType:"FA",symbol:v.f6_},{id:"SEK",name:"Sweden Krona",iconType:"SVG",symbol:Ni_DKK,class:"currency-icon-medium"},{id:"SGD",name:"Singapore Dollar",iconType:"FA",symbol:v.Vpi},{id:"THB",name:"Thailand Baht",iconType:"FA",symbol:v.Kcb},{id:"TRY",name:"Turkey Lira",iconType:"FA",symbol:v.hb3},{id:"TWD",name:"Taiwan New Dollar",iconType:"SVG",symbol:'\n \n \x3c!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --\x3e\n \x3c!-- License: CC0. Made by SVG Repo: https://www.svgrepo.com/svg/142061/new-taiwan-dollar --\x3e\n \n \n \n \n \n \n ',class:"currency-icon-small"}];function Ri(ee){const ye=kn.find(ke=>ke.id===ee);return"SVG"===ye.iconType&&"string"==typeof ye.symbol&&(ye.symbol=ye.symbol.replace('Ee});var i=l(9330),d=l(1413),v=l(4412),T=l(7673),w=l(8810),e=l(9437),O=l(1594),f=l(6354),u=l(1397),L=l(6977),C=l(3993),B=l(4416),A=l(2462),Pe=l(1771),le=l(190),Ce=l(3536),Ae=l(9584),j=l(2615),W=l(9640),G=l(8570),re=l(5416),xe=l(2200);let Ee=(()=>{var V;class ce{constructor(ne,J,De,Re,Xe){this.httpClient=ne,this.store=J,this.logger=De,this.snackBar=Re,this.titleCasePipe=Xe,this.APIUrl=B.H$,this.lnImplementation="",this.lnImplementationUpdated=new v.t(null),this.unSubs=[new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B],this.mapAliases=(_e,he)=>(_e&&_e.length>0?_e.forEach((Dt,lt)=>{if(he&&he.length>0)for(let Le=0;Le{let Re;return this.store.dispatch((0,Pe.mt)({payload:B.MZ.DECODE_PAYMENT})),Re="cln"===De?this.httpClient.post(this.APIUrl+"/"+De+B.rl.UTILITY_API+"/decode",{string:ne},{headers:{"Content-Type":"application/json"}}):this.httpClient.get(this.APIUrl+"/"+De+B.rl.PAYMENTS_API+"/decode/"+ne),Re.pipe((0,L.Q)(this.unSubs[0]),(0,f.T)(Xe=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.DECODE_PAYMENT})),Xe)),(0,e.W)(Xe=>(J?this.handleErrorWithoutAlert("Decode Payment",B.MZ.DECODE_PAYMENT,Xe):this.handleErrorWithAlert("decodePaymentData",B.MZ.DECODE_PAYMENT,"Decode Payment Failed",this.APIUrl+"/"+De+("cln"===De?B.rl.UTILITY_API+"/decode":B.rl.PAYMENTS_API+"/decode/"+ne),Xe),(0,w.$)(()=>new Error(this.extractErrorMessage(Xe))))))}))}decodePayments(ne){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(J=>{let De="",Re="",Xe=null;return"ecl"===J?(De=this.APIUrl+"/"+J+B.rl.PAYMENTS_API+"/getsentinfos",Xe={payments:ne},Re=B.MZ.GET_SENT_PAYMENTS):"cln"===J?(De=this.APIUrl+"/"+J+B.rl.UTILITY_API+"/decode",Xe={string:ne},Re=B.MZ.DECODE_PAYMENTS):(De=this.APIUrl+"/"+J+B.rl.PAYMENTS_API,Xe={payments:ne},Re=B.MZ.DECODE_PAYMENTS),this.store.dispatch((0,Pe.mt)({payload:Re})),this.httpClient.post(De,Xe).pipe((0,L.Q)(this.unSubs[1]),(0,f.T)(_e=>(this.store.dispatch((0,Pe.y0)({payload:Re})),_e)),(0,e.W)(_e=>(this.handleErrorWithAlert("decodePaymentsData",Re,Re+" Failed",De,_e),(0,w.$)(()=>new Error(this.extractErrorMessage(_e))))))}))}getAliasesFromPubkeys(ne,J){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(De=>{if(J){const Re=(new i.Nl).set("pubkeys",ne);return this.httpClient.get(this.APIUrl+"/"+De+B.rl.NETWORK_API+"/nodes",{params:Re})}return this.httpClient.get(this.APIUrl+"/"+De+B.rl.NETWORK_API+"/node/"+ne)}))}signMessage(ne){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(J=>{let De=this.APIUrl+"/"+J+B.rl.MESSAGE_API+"/sign";return"cln"===J&&(De=this.APIUrl+"/"+J+B.rl.UTILITY_API+"/sign"),this.store.dispatch((0,Pe.mt)({payload:B.MZ.SIGN_MESSAGE})),this.httpClient.post(De,{message:ne}).pipe((0,L.Q)(this.unSubs[2]),(0,f.T)(Re=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.SIGN_MESSAGE})),Re)),(0,e.W)(Re=>(this.handleErrorWithAlert("signMessageData",B.MZ.SIGN_MESSAGE,"Sign Message Failed",De,Re),(0,w.$)(()=>new Error(this.extractErrorMessage(Re))))))}))}verifyMessage(ne,J){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(De=>{let Re="",Xe=null;return"cln"===De?(Re=this.APIUrl+"/"+De+B.rl.UTILITY_API+"/verify",Xe={message:ne,zbase:J}):(Re=this.APIUrl+"/"+De+B.rl.MESSAGE_API+"/verify",Xe={message:ne,signature:J}),this.store.dispatch((0,Pe.mt)({payload:B.MZ.VERIFY_MESSAGE})),this.httpClient.post(Re,Xe).pipe((0,L.Q)(this.unSubs[3]),(0,f.T)(_e=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.VERIFY_MESSAGE})),_e)),(0,e.W)(_e=>(this.handleErrorWithAlert("verifyMessageData",B.MZ.VERIFY_MESSAGE,"Verify Message Failed",Re,_e),(0,w.$)(()=>new Error(this.extractErrorMessage(_e))))))}))}bumpFee(ne,J,De,Re){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(Xe=>{const _e={txid:ne,outputIndex:J};return De&&(_e.targetConf=De),Re&&(_e.satPerVByte=Re),this.store.dispatch((0,Pe.mt)({payload:B.MZ.BUMP_FEE})),this.httpClient.post(this.APIUrl+"/"+Xe+B.rl.WALLET_API+"/bumpfee",_e).pipe((0,L.Q)(this.unSubs[4]),(0,f.T)(he=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.BUMP_FEE})),this.snackBar.open("Successfully bumped the fee. Use the block explorer to verify transaction."),he)),(0,e.W)(he=>(this.handleErrorWithoutAlert("Bump Fee",B.MZ.BUMP_FEE,he),(0,w.$)(()=>new Error(this.extractErrorMessage(he))))))}))}labelUTXO(ne,J,De=!0){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(Re=>{const Xe={txid:ne,label:J,overwrite:De};return this.store.dispatch((0,Pe.mt)({payload:B.MZ.LABEL_UTXO})),this.httpClient.post(this.APIUrl+"/"+Re+B.rl.WALLET_API+"/label",Xe).pipe((0,L.Q)(this.unSubs[5]),(0,f.T)(_e=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.LABEL_UTXO})),_e)),(0,e.W)(_e=>(this.handleErrorWithoutAlert("Label UTXO",B.MZ.LABEL_UTXO,_e),(0,w.$)(()=>new Error(this.extractErrorMessage(_e))))))}))}leaseUTXO(ne,J){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(De=>{const Re={txid:ne,outputIndex:J};return this.store.dispatch((0,Pe.mt)({payload:B.MZ.LEASE_UTXO})),this.httpClient.post(this.APIUrl+"/"+De+B.rl.WALLET_API+"/lease",Re).pipe((0,L.Q)(this.unSubs[6]),(0,f.T)(Xe=>{this.store.dispatch((0,Pe.y0)({payload:B.MZ.LEASE_UTXO})),this.store.dispatch((0,le.mh)()),this.store.dispatch((0,le.SM)());const _e=new Date(1e3*Xe.expiration);return Math.round(_e.getTime())-60*_e.getTimezoneOffset()}),(0,e.W)(Xe=>(this.handleErrorWithoutAlert("Lease UTXO",B.MZ.LEASE_UTXO,Xe),(0,w.$)(()=>new Error(this.extractErrorMessage(Xe))))))}))}getForwardingHistory(ne,J,De,Re){if("LND"===ne){const Xe={end_time:De,start_time:J};return this.store.dispatch((0,Pe.mt)({payload:B.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/lnd"+B.rl.SWITCH_API,Xe).pipe((0,L.Q)(this.unSubs[7]),(0,C.E)(this.store.select(Ce.eO)),(0,u.Z)(([_e,he])=>{if(_e.forwarding_events){const Dt=[...he.channels,...he.closedChannels];_e.forwarding_events.forEach(lt=>{if(Dt&&Dt.length>0)for(let Le=0;Le(this.handleErrorWithAlert("getForwardingHistoryData",B.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/lnd"+B.rl.SWITCH_API,_e),(0,w.$)(()=>new Error(this.extractErrorMessage(_e))))))}return"CLN"===ne?(this.store.dispatch((0,Pe.mt)({payload:B.MZ.GET_FORWARDING_HISTORY})),this.httpClient.post(this.APIUrl+"/cln"+B.rl.CHANNELS_API+"/listForwards",{status:Re||"settled"}).pipe((0,L.Q)(this.unSubs[8]),(0,C.E)(this.store.select(Ae.BM)),(0,u.Z)(([Xe,_e])=>{const he=this.mapAliases(Xe,[..._e.activeChannels,..._e.pendingChannels,..._e.inactiveChannels]);return this.store.dispatch((0,Pe.y0)({payload:B.MZ.GET_FORWARDING_HISTORY})),(0,T.of)(he)}),(0,e.W)(Xe=>(this.handleErrorWithAlert("getForwardingHistoryData",B.MZ.GET_FORWARDING_HISTORY,"Forwarding History Failed",this.APIUrl+"/cln"+B.rl.CHANNELS_API+"/listForwards",Xe),(0,w.$)(()=>new Error(this.extractErrorMessage(Xe))))))):(0,T.of)({})}listNetworkNodes(ne){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(J=>(this.store.dispatch((0,Pe.mt)({payload:B.MZ.LIST_NETWORK_NODES})),this.httpClient.post(this.APIUrl+"/"+J+B.rl.NETWORK_API+"/listNodes",ne).pipe((0,L.Q)(this.unSubs[9]),(0,u.Z)(De=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.LIST_NETWORK_NODES})),(0,T.of)(De))),(0,e.W)(De=>(this.handleErrorWithoutAlert("List Network Nodes",B.MZ.LIST_NETWORK_NODES,De),(0,w.$)(()=>this.extractErrorMessage(De))))))))}listConfigs(){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(ne=>(this.store.dispatch((0,Pe.mt)({payload:B.MZ.GET_LIST_CONFIGS})),this.httpClient.get(this.APIUrl+"/"+ne+B.rl.UTILITY_API+"/listConfigs").pipe((0,L.Q)(this.unSubs[10]),(0,u.Z)(J=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.GET_LIST_CONFIGS})),(0,T.of)(J))),(0,e.W)(J=>(this.handleErrorWithoutAlert("List Configurations",B.MZ.GET_LIST_CONFIGS,J),(0,w.$)(()=>this.extractErrorMessage(J))))))))}getOrUpdateFunderPolicy(ne,J,De,Re,Xe,_e){return this.lnImplementationUpdated.pipe((0,O.$)(),(0,u.Z)(he=>{const Dt=ne?{policy:ne,policy_mod:J,lease_fee_base_msat:De,lease_fee_basis:Re,channel_fee_max_base_msat:Xe,channel_fee_max_proportional_thousandths:_e}:null;return this.store.dispatch((0,Pe.mt)({payload:B.MZ.GET_FUNDER_POLICY})),this.httpClient.post(this.APIUrl+"/"+he+B.rl.CHANNELS_API+"/funderUpdate",Dt).pipe((0,L.Q)(this.unSubs[11]),(0,f.T)(lt=>(this.store.dispatch((0,Pe.y0)({payload:B.MZ.GET_FUNDER_POLICY})),Dt&&this.store.dispatch((0,Pe.UI)({payload:"Funder Policy Updated Successfully with Compact Lease: "+lt.compact_lease+"!"})),lt)),(0,e.W)(lt=>(this.handleErrorWithoutAlert("Funder Policy",B.MZ.GET_FUNDER_POLICY,lt),(0,w.$)(()=>new Error(this.extractErrorMessage(lt))))))}))}circularRebalance(ne,J="",De="",Re="",Xe="",_e=[],he="shortChannelId"){return this.httpClient.post(this.APIUrl+"/"+this.lnImplementation+B.rl.CHANNELS_API+"/circularRebalance",{amountMsat:ne,sourceShortChannelId:J,sourceNodeId:De,targetShortChannelId:Re,targetNodeId:Xe,ignoreNodeIds:_e,format:he}).pipe((0,L.Q)(this.unSubs[12]),(0,f.T)(Le=>Le),(0,e.W)(Le=>(this.handleErrorWithoutAlert("Rebalance Channel",B.MZ.REBALANCE_CHANNEL,Le),(0,w.$)(()=>Le.error))))}extractErrorMessage(ne,J="Unknown Error."){return this.titleCasePipe.transform(ne.error.text&&"string"==typeof ne.error.text&&ne.error.text.includes('')?"API Route Does Not Exist.":ne.error&&ne.error.error&&ne.error.error.error&&ne.error.error.error.error&&ne.error.error.error.error.error&&"string"==typeof ne.error.error.error.error.error?ne.error.error.error.error.error:ne.error&&ne.error.error&&ne.error.error.error&&ne.error.error.error.error&&"string"==typeof ne.error.error.error.error?ne.error.error.error.error:ne.error&&ne.error.error&&ne.error.error.error&&"string"==typeof ne.error.error.error?ne.error.error.error:ne.error&&ne.error.error&&"string"==typeof ne.error.error?ne.error.error:ne.error&&"string"==typeof ne.error?ne.error:ne.error&&ne.error.error&&ne.error.error.error&&ne.error.error.error.error&&ne.error.error.error.error.message&&"string"==typeof ne.error.error.error.error.message?ne.error.error.error.error.message:ne.error&&ne.error.error&&ne.error.error.error&&ne.error.error.error.message&&"string"==typeof ne.error.error.error.message?ne.error.error.error.message:ne.error&&ne.error.error&&ne.error.error.message&&"string"==typeof ne.error.error.message?ne.error.error.message:ne.error&&ne.error.message&&"string"==typeof ne.error.message?ne.error.message:ne.message&&"string"==typeof ne.message?ne.message:J)}handleErrorWithoutAlert(ne,J,De){De.error.text&&"string"==typeof De.error.text&&De.error.text.includes('')&&(De={status:403,error:{message:"API Route Does Not Exist."}}),this.logger.error("ERROR IN: "+ne+"\n"+JSON.stringify(De)),401===De.status?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,Pe.Jh)()),this.store.dispatch((0,Pe.ri)({payload:"Authentication Failed: "+JSON.stringify(De.error)}))):(this.store.dispatch((0,Pe.y0)({payload:J})),this.store.dispatch((0,Pe.Gd)({payload:{action:ne,status:B.wn.ERROR,statusCode:De.status.toString(),message:this.extractErrorMessage(De)}})))}handleErrorWithAlert(ne,J,De,Re,Xe){if(this.logger.error(Xe),401===Xe.status)this.logger.info("Redirecting to Login"),this.store.dispatch((0,Pe.Jh)()),this.store.dispatch((0,Pe.ri)({payload:"Authentication Failed: "+JSON.stringify(Xe.error)}));else{this.store.dispatch((0,Pe.y0)({payload:J}));const _e=this.extractErrorMessage(Xe);this.store.dispatch((0,Pe.xO)({payload:{data:{type:"ERROR",alertTitle:De,message:{code:Xe.status?Xe.status:"Unknown Error",message:_e,URL:Re},component:A.f}}})),this.store.dispatch((0,Pe.Gd)({payload:{action:ne,status:B.wn.ERROR,statusCode:Xe.status.toString(),message:_e,URL:Re}}))}}ngOnDestroy(){this.unSubs.forEach(ne=>{ne.next(null),ne.complete()})}static#e=V=()=>(this.\u0275fac=function(J){return new(J||ce)(j.KVO(i.Qq),j.KVO(W.il),j.KVO(G.gP),j.KVO(re.UG),j.KVO(xe.PV))},this.\u0275prov=j.jDH({token:ce,factory:ce.\u0275fac}))}return V(),ce})()},8570(Zt,pe,l){"use strict";l.d(pe,{gP:()=>e,tU:()=>O});var i=l(7705),d=l(2615);const v=(0,i.naY)(),T=()=>null;let e=(()=>{var f;class u{invokeConsoleMethod(C,B){}static#e=f=()=>(this.\u0275fac=function(B){return new(B||u)},this.\u0275prov=d.jDH({token:u,factory:u.\u0275fac}))}return f(),u})(),O=(()=>{var f;class u{get info(){return v?console.log.bind(console):T}get warn(){return v?console.warn.bind(console):T}get error(){return v?console.error.bind(console):T}invokeConsoleMethod(C,B){(console[C]||console.log||T).apply(console,[B])}static#e=f=()=>(this.\u0275fac=function(B){return new(B||u)},this.\u0275prov=d.jDH({token:u,factory:u.\u0275fac}))}return f(),u})()},4104(Zt,pe,l){"use strict";l.d(pe,{Q:()=>Ce});var i=l(9330),d=l(1413),v=l(4412),T=l(7673),w=l(8810),e=l(9437),O=l(6354),f=l(6977),u=l(4416),L=l(2462),C=l(1771),B=l(2615),A=l(8570),Pe=l(9640),le=l(2571);let Ce=(()=>{var Ae;class j{constructor(G,re,xe,Ee){this.httpClient=G,this.logger=re,this.store=xe,this.commonService=Ee,this.loopUrl="",this.swaps=[],this.swapsChanged=new v.t([]),this.unSubs=[new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B]}getLoopInfo(){return this.loopUrl=u.H$+u.rl.LOOP_API+"/info",this.httpClient.get(this.loopUrl)}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,C.mt)({payload:u.MZ.GET_LOOP_SWAPS})),this.loopUrl=u.H$+u.rl.LOOP_API+"/swaps",this.httpClient.get(this.loopUrl).pipe((0,f.Q)(this.unSubs[0])).subscribe({next:G=>{this.store.dispatch((0,C.y0)({payload:u.MZ.GET_LOOP_SWAPS})),this.swaps=G,this.swapsChanged.next(this.swaps)},error:G=>this.swapsChanged.error(this.handleErrorWithAlert(u.MZ.GET_LOOP_SWAPS,this.loopUrl,G))})}loopOut(G,re,xe,Ee,V,ce,be,ne,J,De){const Re={amount:G,targetConf:xe,swapRoutingFee:Ee,minerFee:V,prepayRoutingFee:ce,prepayAmt:be,swapFee:ne,swapPublicationDeadline:J,destAddress:De};return""!==re&&(Re.chanId=re),this.loopUrl=u.H$+u.rl.LOOP_API+"/out",this.httpClient.post(this.loopUrl,Re).pipe((0,e.W)(Xe=>this.handleErrorWithoutAlert("Loop Out for Channel: "+re,u.MZ.NO_SPINNER,Xe)))}getLoopOutTerms(){return this.loopUrl=u.H$+u.rl.LOOP_API+"/out/terms",this.httpClient.get(this.loopUrl).pipe((0,e.W)(G=>this.handleErrorWithoutAlert("Loop Out Terms",u.MZ.NO_SPINNER,G)))}getLoopOutQuote(G,re,xe){let Ee=new i.Nl;return Ee=Ee.append("targetConf",re.toString()),Ee=Ee.append("swapPublicationDeadline",xe.toString()),this.loopUrl=u.H$+u.rl.LOOP_API+"/out/quote/"+G,this.store.dispatch((0,C.mt)({payload:u.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:Ee}).pipe((0,f.Q)(this.unSubs[1]),(0,O.T)(V=>(this.store.dispatch((0,C.y0)({payload:u.MZ.GET_QUOTE})),V)),(0,e.W)(V=>this.handleErrorWithoutAlert("Loop Out Quote",u.MZ.GET_QUOTE,V)))}getLoopOutTermsAndQuotes(G){let re=new i.Nl;return re=re.append("targetConf",G.toString()),re=re.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=u.H$+u.rl.LOOP_API+"/out/termsAndQuotes",this.store.dispatch((0,C.mt)({payload:u.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:re}).pipe((0,f.Q)(this.unSubs[2]),(0,O.T)(xe=>(this.store.dispatch((0,C.y0)({payload:u.MZ.GET_TERMS_QUOTES})),xe)),(0,e.W)(xe=>(0,T.of)(this.handleErrorWithAlert(u.MZ.GET_TERMS_QUOTES,this.loopUrl,xe))))}loopIn(G,re,xe,Ee,V){const ce={amount:G,swapFee:re,minerFee:xe,lastHop:Ee,externalHtlc:V};return this.loopUrl=u.H$+u.rl.LOOP_API+"/in",this.httpClient.post(this.loopUrl,ce).pipe((0,e.W)(be=>this.handleErrorWithoutAlert("Loop In",u.MZ.NO_SPINNER,be)))}getLoopInTerms(){return this.loopUrl=u.H$+u.rl.LOOP_API+"/in/terms",this.httpClient.get(this.loopUrl).pipe((0,e.W)(G=>this.handleErrorWithoutAlert("Loop In Terms",u.MZ.NO_SPINNER,G)))}getLoopInQuote(G,re,xe){let Ee=new i.Nl;return Ee=Ee.append("targetConf",re.toString()),Ee=Ee.append("swapPublicationDeadline",xe.toString()),this.loopUrl=u.H$+u.rl.LOOP_API+"/in/quote/"+G,this.store.dispatch((0,C.mt)({payload:u.MZ.GET_QUOTE})),this.httpClient.get(this.loopUrl,{params:Ee}).pipe((0,f.Q)(this.unSubs[3]),(0,O.T)(V=>(this.store.dispatch((0,C.y0)({payload:u.MZ.GET_QUOTE})),V)),(0,e.W)(V=>this.handleErrorWithoutAlert("Loop In Qoute",u.MZ.GET_QUOTE,V)))}getLoopInTermsAndQuotes(G){let re=new i.Nl;return re=re.append("targetConf",G.toString()),re=re.append("swapPublicationDeadline",((new Date).getTime()+18e5).toString()),this.loopUrl=u.H$+u.rl.LOOP_API+"/in/termsAndQuotes",this.store.dispatch((0,C.mt)({payload:u.MZ.GET_TERMS_QUOTES})),this.httpClient.get(this.loopUrl,{params:re}).pipe((0,f.Q)(this.unSubs[4]),(0,O.T)(xe=>(this.store.dispatch((0,C.y0)({payload:u.MZ.GET_TERMS_QUOTES})),xe)),(0,e.W)(xe=>(0,T.of)(this.handleErrorWithAlert(u.MZ.GET_TERMS_QUOTES,this.loopUrl,xe))))}getSwap(G){return this.loopUrl=u.H$+u.rl.LOOP_API+"/swap/"+G,this.httpClient.get(this.loopUrl).pipe((0,e.W)(re=>this.handleErrorWithoutAlert("Loop Get Swap for ID: "+G,u.MZ.NO_SPINNER,re)))}handleErrorWithoutAlert(G,re,xe){let Ee="";return this.logger.error("ERROR IN: "+G+"\n"+JSON.stringify(xe)),this.store.dispatch((0,C.y0)({payload:re})),401===xe.status?(Ee="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,C.ri)({payload:Ee}))):503===xe.status?(Ee="Unable to Connect to Loop Server.",this.store.dispatch((0,C.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:xe.status,message:"Unable to Connect to Loop Server",URL:G},component:L.f}}}))):Ee=this.commonService.extractErrorMessage(xe),(0,w.$)(()=>new Error(Ee))}handleErrorWithAlert(G,re,xe){let Ee="";if(this.logger.error(xe),this.store.dispatch((0,C.y0)({payload:G})),401===xe.status)Ee="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,C.ri)({payload:Ee}));else if(503===xe.status)Ee="Unable to Connect to Loop Server.",setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{type:"ERROR",alertTitle:"Loop Not Connected",message:{code:xe.status,message:"Unable to Connect to Loop Server",URL:re},component:L.f}}}))},100);else{Ee=this.commonService.extractErrorMessage(xe);const V=xe.error&&xe.error.error&&xe.error.error.code?xe.error.error.code:xe.error&&xe.error.code?xe.error.code:xe.code?xe.code:xe.status;setTimeout(()=>{this.store.dispatch((0,C.xO)({payload:{data:{type:u.A$.ERROR,alertTitle:"ERROR",message:{code:V,message:Ee,URL:re},component:L.f}}}))},100)}return{message:Ee}}ngOnDestroy(){this.unSubs.forEach(G=>{G.next(null),G.complete()})}static#e=Ae=()=>(this.\u0275fac=function(re){return new(re||j)(B.KVO(i.Qq),B.KVO(A.gP),B.KVO(Pe.il),B.KVO(le.h))},this.\u0275prov=B.jDH({token:j,factory:j.\u0275fac}))}return Ae(),j})()},3202(Zt,pe,l){"use strict";l.d(pe,{Q:()=>v});var i=l(1413),d=l(2615);let v=(()=>{var T;class w{constructor(){this.sessionSub=new i.B}watchSession(){return this.sessionSub.asObservable()}getItem(O){return sessionStorage.getItem(O)}getAllItems(){return sessionStorage}setItem(O,f){sessionStorage.setItem(O,f),this.sessionSub.next(sessionStorage)}removeItem(O){sessionStorage.removeItem(O),this.sessionSub.next(sessionStorage)}clearAll(){sessionStorage.clear(),this.sessionSub.next(sessionStorage)}static#e=T=()=>(this.\u0275fac=function(f){return new(f||w)},this.\u0275prov=d.jDH({token:w,factory:w.\u0275fac}))}return T(),w})()},7879(Zt,pe,l){"use strict";l.d(pe,{I:()=>Pe});var i=l(4412),d=l(1413),v=l(6977),T=l(7707),w=l(1985),e=l(8359),O=l(2771);const f={url:"",deserializer:le=>JSON.parse(le.data),serializer:le=>JSON.stringify(le)};class L extends d.k{constructor(Ce,Ae){if(super(),this._socket=null,Ce instanceof w.c)this.destination=Ae,this.source=Ce;else{const j=this._config=Object.assign({},f);if(this._output=new d.B,"string"==typeof Ce)j.url=Ce;else for(const W in Ce)Ce.hasOwnProperty(W)&&(j[W]=Ce[W]);if(!j.WebSocketCtor&&WebSocket)j.WebSocketCtor=WebSocket;else if(!j.WebSocketCtor)throw new Error("no WebSocket constructor can be found");this.destination=new O.m}}lift(Ce){const Ae=new L(this._config,this.destination);return Ae.operator=Ce,Ae.source=this,Ae}_resetState(){this._socket=null,this.source||(this.destination=new O.m),this._output=new d.B}multiplex(Ce,Ae,j){const W=this;return new w.c(G=>{try{W.next(Ce())}catch(xe){G.error(xe)}const re=W.subscribe({next:xe=>{try{j(xe)&&G.next(xe)}catch(Ee){G.error(Ee)}},error:xe=>G.error(xe),complete:()=>G.complete()});return()=>{try{W.next(Ae())}catch(xe){G.error(xe)}re.unsubscribe()}})}_connectSocket(){const{WebSocketCtor:Ce,protocol:Ae,url:j,binaryType:W}=this._config,G=this._output;let re=null;try{re=Ae?new Ce(j,Ae):new Ce(j),this._socket=re,W&&(this._socket.binaryType=W)}catch(Ee){return void G.error(Ee)}const xe=new e.yU(()=>{this._socket=null,re&&1===re.readyState&&re.close()});re.onopen=Ee=>{const{_socket:V}=this;if(!V)return re.close(),void this._resetState();const{openObserver:ce}=this._config;ce&&ce.next(Ee);const be=this.destination;this.destination=T.vU.create(ne=>{if(1===re.readyState)try{const{serializer:J}=this._config;re.send(J(ne))}catch(J){this.destination.error(J)}},ne=>{const{closingObserver:J}=this._config;J&&J.next(void 0),ne&&ne.code?re.close(ne.code,ne.reason):G.error(new TypeError("WebSocketSubject.error must be called with an object with an error code, and an optional reason: { code: number, reason: string }")),this._resetState()},()=>{const{closingObserver:ne}=this._config;ne&&ne.next(void 0),re.close(),this._resetState()}),be&&be instanceof O.m&&xe.add(be.subscribe(this.destination))},re.onerror=Ee=>{this._resetState(),G.error(Ee)},re.onclose=Ee=>{re===this._socket&&this._resetState();const{closeObserver:V}=this._config;V&&V.next(Ee),Ee.wasClean?G.complete():G.error(Ee)},re.onmessage=Ee=>{try{const{deserializer:V}=this._config;G.next(V(Ee))}catch(V){G.error(V)}}}_subscribe(Ce){const{source:Ae}=this;return Ae?Ae.subscribe(Ce):(this._socket||this._connectSocket(),this._output.subscribe(Ce),Ce.add(()=>{const{_socket:j}=this;0===this._output.observers.length&&(j&&(1===j.readyState||0===j.readyState)&&j.close(),this._resetState())}),Ce)}unsubscribe(){const{_socket:Ce}=this;Ce&&(1===Ce.readyState||0===Ce.readyState)&&Ce.close(),this._resetState(),super.unsubscribe()}}var C=l(2615),B=l(8570),A=l(3202);let Pe=(()=>{var le;class Ce{constructor(j,W){this.logger=j,this.sessionService=W,this.clWSMessages=new i.t(null),this.eclWSMessages=new i.t(null),this.lndWSMessages=new i.t(null),this.wsUrl="",this.nodeIndex="",this.RETRY_SECONDS=5,this.RECONNECT_TIMEOUT=null,this.unSubs=[new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B,new d.B]}connectWebSocket(j,W){(!this.socket||this.socket.closed)&&(this.wsUrl=j,this.nodeIndex=W,this.logger.info("Websocket Url: "+this.wsUrl),this.socket=new L({url:j,protocol:[this.sessionService.getItem("token")||"",W]}),this.subscribeToMessages())}reconnectOnError(){this.RECONNECT_TIMEOUT||this.socket&&!this.socket.closed||(this.RETRY_SECONDS=this.RETRY_SECONDS>=160?160:2*this.RETRY_SECONDS,this.RECONNECT_TIMEOUT=setTimeout(()=>{this.logger.info("Reconnecting Web Socket."),this.connectWebSocket(this.wsUrl,this.nodeIndex),this.RECONNECT_TIMEOUT=null},1e3*this.RETRY_SECONDS))}closeConnection(){this.socket&&(this.socket.complete(),this.socket=null)}subscribeToMessages(){this.socket?.pipe((0,v.Q)(this.unSubs[1])).subscribe({next:j=>{if((j="string"==typeof j?JSON.parse(j):j).error)this.handleError(j.error);else switch(this.logger.info("Next Message from WS:"+JSON.stringify(j)),j.source){case"LND":this.lndWSMessages.next(j);break;case"CLN":this.clWSMessages.next(j);break;case"ECL":this.eclWSMessages.next(j)}},error:j=>this.handleError(j),complete:()=>{this.logger.info("Web Socket Closed")}})}handleError(j){this.logger.error(j),this.clWSMessages.error(j),this.eclWSMessages.error(j),this.lndWSMessages.error(j),this.reconnectOnError()}ngOnDestroy(){this.closeConnection(),this.clWSMessages.next(null),this.clWSMessages.complete(),this.eclWSMessages.next(null),this.eclWSMessages.complete(),this.lndWSMessages.next(null),this.lndWSMessages.complete()}static#e=le=()=>(this.\u0275fac=function(W){return new(W||Ce)(C.KVO(B.gP),C.KVO(A.Q))},this.\u0275prov=C.jDH({token:Ce,factory:Ce.\u0275fac}))}return le(),Ce})()},9029(Zt,pe,l){"use strict";l.d(pe,{G:()=>Es});var i=l(2200),d=l(8132),v=l(9417),T=l(60),w=l(9327),e=l(3),O=l(9945),f=l(1585),u=l(2628),L=l(1975),C=l(8834),B=l(9726),A=l(6838),j=(l(1577),l(3869),l(7336),l(438),l(8968)),W=l(3664),G=l(2615),re=l(7705),xe=l(2496),Ee=l(3386),V=l(1804),ce=l(2046),be=l(2466),ne=l(6881);const J=["button"],De=["*"];function Re(kt,On){if(1&kt&&(W.j41(0,"div",2),W.nrm(1,"mat-pseudo-checkbox",6),W.k0s()),2&kt){const $e=W.XpG();W.R7$(),W.Y8G("disabled",$e.disabled)}}const Xe=new G.nKC("MAT_BUTTON_TOGGLE_DEFAULT_OPTIONS",{providedIn:"root",factory:function _e(){return{hideSingleSelectionIndicator:!1,hideMultipleSelectionIndicator:!1,disabledInteractive:!1}}}),he=new G.nKC("MatButtonToggleGroup");class lt{source;value;constructor(On,$e){this.source=On,this.value=$e}}let te=(()=>{class kt{_changeDetectorRef=(0,G.WQX)(re.gRc);_elementRef=(0,G.WQX)(W.aKT);_focusMonitor=(0,G.WQX)(A.FN);_idGenerator=(0,G.WQX)(B.g);_animationDisabled=(0,V.Rc)();_checked=!1;ariaLabel;ariaLabelledby=null;_buttonElement;buttonToggleGroup;get buttonId(){return`${this.id}-button`}id;name;value;get tabIndex(){return this._tabIndex()}set tabIndex($e){this._tabIndex.set($e)}_tabIndex;disableRipple;get appearance(){return this.buttonToggleGroup?this.buttonToggleGroup.appearance:this._appearance}set appearance($e){this._appearance=$e}_appearance;get checked(){return this.buttonToggleGroup?this.buttonToggleGroup._isSelected(this):this._checked}set checked($e){$e!==this._checked&&(this._checked=$e,this.buttonToggleGroup&&this.buttonToggleGroup._syncButtonToggle(this,this._checked),this._changeDetectorRef.markForCheck())}get disabled(){return this._disabled||this.buttonToggleGroup&&this.buttonToggleGroup.disabled}set disabled($e){this._disabled=$e}_disabled=!1;get disabledInteractive(){return this._disabledInteractive||null!==this.buttonToggleGroup&&this.buttonToggleGroup.disabledInteractive}set disabledInteractive($e){this._disabledInteractive=$e}_disabledInteractive;change=new W.bkB;constructor(){(0,G.WQX)(j.l).load(ce.A);const $e=(0,G.WQX)(he,{optional:!0}),mn=(0,G.WQX)(new re.ES_("tabindex"),{optional:!0})||"",Ln=(0,G.WQX)(Xe,{optional:!0});this._tabIndex=(0,G.vPA)(parseInt(mn)||0),this.buttonToggleGroup=$e,this.appearance=Ln&&Ln.appearance?Ln.appearance:"standard",this.disabledInteractive=Ln?.disabledInteractive??!1}ngOnInit(){const $e=this.buttonToggleGroup;this.id=this.id||this._idGenerator.getId("mat-button-toggle-"),$e&&($e._isPrechecked(this)?this.checked=!0:$e._isSelected(this)!==this._checked&&$e._syncButtonToggle(this,this._checked))}ngAfterViewInit(){this._animationDisabled||this._elementRef.nativeElement.classList.add("mat-button-toggle-animations-enabled"),this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){const $e=this.buttonToggleGroup;this._focusMonitor.stopMonitoring(this._elementRef),$e&&$e._isSelected(this)&&$e._syncButtonToggle(this,!1,!1,!0)}focus($e){this._buttonElement.nativeElement.focus($e)}_onButtonClick(){if(this.disabled)return;const $e=!!this.isSingleSelector()||!this._checked;if($e!==this._checked&&(this._checked=$e,this.buttonToggleGroup&&(this.buttonToggleGroup._syncButtonToggle(this,this._checked,!0),this.buttonToggleGroup._onTouched())),this.isSingleSelector()){const mn=this.buttonToggleGroup._buttonToggles.find(Ln=>0===Ln.tabIndex);mn&&(mn.tabIndex=-1),this.tabIndex=0}this.change.emit(new lt(this,this.value))}_markForCheck(){this._changeDetectorRef.markForCheck()}_getButtonName(){return this.isSingleSelector()?this.buttonToggleGroup.name:this.name||null}isSingleSelector(){return this.buttonToggleGroup&&!this.buttonToggleGroup.multiple}static \u0275fac=function(mn){return new(mn||kt)};static \u0275cmp=W.VBU({type:kt,selectors:[["mat-button-toggle"]],viewQuery:function(mn,Ln){if(1&mn&&W.GBs(J,5),2&mn){let Ei;W.mGM(Ei=W.lsd())&&(Ln._buttonElement=Ei.first)}},hostAttrs:["role","presentation",1,"mat-button-toggle"],hostVars:14,hostBindings:function(mn,Ln){1&mn&&W.bIt("focus",function(){return Ln.focus()}),2&mn&&(W.BMQ("aria-label",null)("aria-labelledby",null)("id",Ln.id)("name",null),W.AVh("mat-button-toggle-standalone",!Ln.buttonToggleGroup)("mat-button-toggle-checked",Ln.checked)("mat-button-toggle-disabled",Ln.disabled)("mat-button-toggle-disabled-interactive",Ln.disabledInteractive)("mat-button-toggle-appearance-standard","standard"===Ln.appearance))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],id:"id",name:"name",value:"value",tabIndex:"tabIndex",disableRipple:[2,"disableRipple","disableRipple",re.L39],appearance:"appearance",checked:[2,"checked","checked",re.L39],disabled:[2,"disabled","disabled",re.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",re.L39]},outputs:{change:"change"},exportAs:["matButtonToggle"],ngContentSelectors:De,decls:7,vars:13,consts:[["button",""],["type","button",1,"mat-button-toggle-button","mat-focus-indicator",3,"click","id","disabled"],[1,"mat-button-toggle-checkbox-wrapper"],[1,"mat-button-toggle-label-content"],[1,"mat-button-toggle-focus-overlay"],["matRipple","",1,"mat-button-toggle-ripple",3,"matRippleTrigger","matRippleDisabled"],["state","checked","aria-hidden","true","appearance","minimal",3,"disabled"]],template:function(mn,Ln){if(1&mn){const Ei=W.RV6();W.NAR(),W.j41(0,"button",1,0),W.bIt("click",function(){return G.eBV(Ei),G.Njj(Ln._onButtonClick())}),W.nVh(2,Re,2,1,"div",2),W.j41(3,"span",3),W.SdG(4),W.k0s()(),W.nrm(5,"span",4)(6,"span",5)}if(2&mn){const Ei=W.sdS(1);W.Y8G("id",Ln.buttonId)("disabled",Ln.disabled&&!Ln.disabledInteractive||null),W.BMQ("role",Ln.isSingleSelector()?"radio":"button")("tabindex",Ln.disabled&&!Ln.disabledInteractive?-1:Ln.tabIndex)("aria-pressed",Ln.isSingleSelector()?null:Ln.checked)("aria-checked",Ln.isSingleSelector()?Ln.checked:null)("name",Ln._getButtonName())("aria-label",Ln.ariaLabel)("aria-labelledby",Ln.ariaLabelledby)("aria-disabled",Ln.disabled&&Ln.disabledInteractive?"true":null),W.R7$(2),W.vxM(Ln.buttonToggleGroup&&(!Ln.buttonToggleGroup.multiple&&!Ln.buttonToggleGroup.hideSingleSelectionIndicator||Ln.buttonToggleGroup.multiple&&!Ln.buttonToggleGroup.hideMultipleSelectionIndicator)?2:-1),W.R7$(4),W.Y8G("matRippleTrigger",Ei)("matRippleDisabled",Ln.disableRipple||Ln.disabled)}},dependencies:[xe.r6,Ee.w],styles:[".mat-button-toggle-standalone,.mat-button-toggle-group{position:relative;display:inline-flex;flex-direction:row;white-space:nowrap;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);border-radius:var(--mat-button-toggle-legacy-shape);transform:translateZ(0)}.mat-button-toggle-standalone:not([class*=mat-elevation-z]),.mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12)}@media(forced-colors: active){.mat-button-toggle-standalone,.mat-button-toggle-group{outline:solid 1px}}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.mat-button-toggle-group-appearance-standard{border-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border:solid 1px var(--mat-button-toggle-divider-color, var(--mat-sys-outline))}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard .mat-pseudo-checkbox,.mat-button-toggle-group-appearance-standard .mat-pseudo-checkbox{--mat-pseudo-checkbox-minimal-selected-checkmark-color: var(--mat-button-toggle-selected-state-text-color, var(--mat-sys-on-secondary-container))}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}@media(forced-colors: active){.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.mat-button-toggle-group-appearance-standard{outline:0}}.mat-button-toggle-vertical{flex-direction:column}.mat-button-toggle-vertical .mat-button-toggle-label-content{display:block}.mat-button-toggle{white-space:nowrap;position:relative;color:var(--mat-button-toggle-legacy-text-color);font-family:var(--mat-button-toggle-legacy-label-text-font);font-size:var(--mat-button-toggle-legacy-label-text-size);line-height:var(--mat-button-toggle-legacy-label-text-line-height);font-weight:var(--mat-button-toggle-legacy-label-text-weight);letter-spacing:var(--mat-button-toggle-legacy-label-text-tracking);--mat-pseudo-checkbox-minimal-selected-checkmark-color: var(--mat-button-toggle-legacy-selected-state-text-color)}.mat-button-toggle.cdk-keyboard-focused .mat-button-toggle-focus-overlay{opacity:var(--mat-button-toggle-legacy-focus-state-layer-opacity)}.mat-button-toggle .mat-icon svg{vertical-align:top}.mat-button-toggle-checkbox-wrapper{display:inline-block;justify-content:flex-start;align-items:center;width:0;height:18px;line-height:18px;overflow:hidden;box-sizing:border-box;position:absolute;top:50%;left:16px;transform:translate3d(0, -50%, 0)}[dir=rtl] .mat-button-toggle-checkbox-wrapper{left:auto;right:16px}.mat-button-toggle-appearance-standard .mat-button-toggle-checkbox-wrapper{left:12px}[dir=rtl] .mat-button-toggle-appearance-standard .mat-button-toggle-checkbox-wrapper{left:auto;right:12px}.mat-button-toggle-checked .mat-button-toggle-checkbox-wrapper{width:18px}.mat-button-toggle-animations-enabled .mat-button-toggle-checkbox-wrapper{transition:width 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-button-toggle-vertical .mat-button-toggle-checkbox-wrapper{transition:none}.mat-button-toggle-checked{color:var(--mat-button-toggle-legacy-selected-state-text-color);background-color:var(--mat-button-toggle-legacy-selected-state-background-color)}.mat-button-toggle-disabled{pointer-events:none;color:var(--mat-button-toggle-legacy-disabled-state-text-color);background-color:var(--mat-button-toggle-legacy-disabled-state-background-color);--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: var(--mat-button-toggle-legacy-disabled-state-text-color)}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:var(--mat-button-toggle-legacy-disabled-selected-state-background-color)}.mat-button-toggle-disabled-interactive{pointer-events:auto}.mat-button-toggle-appearance-standard{color:var(--mat-button-toggle-text-color, var(--mat-sys-on-surface));background-color:var(--mat-button-toggle-background-color, transparent);font-family:var(--mat-button-toggle-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-toggle-label-text-size, var(--mat-sys-label-large-size));line-height:var(--mat-button-toggle-label-text-line-height, var(--mat-sys-label-large-line-height));font-weight:var(--mat-button-toggle-label-text-weight, var(--mat-sys-label-large-weight));letter-spacing:var(--mat-button-toggle-label-text-tracking, var(--mat-sys-label-large-tracking))}.mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:solid 1px var(--mat-button-toggle-divider-color, var(--mat-sys-outline))}[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:none;border-right:solid 1px var(--mat-button-toggle-divider-color, var(--mat-sys-outline))}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle-appearance-standard+.mat-button-toggle-appearance-standard{border-left:none;border-right:none;border-top:solid 1px var(--mat-button-toggle-divider-color, var(--mat-sys-outline))}.mat-button-toggle-appearance-standard.mat-button-toggle-checked{color:var(--mat-button-toggle-selected-state-text-color, var(--mat-sys-on-secondary-container));background-color:var(--mat-button-toggle-selected-state-background-color, var(--mat-sys-secondary-container))}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled{color:var(--mat-button-toggle-disabled-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-toggle-disabled-state-background-color, transparent)}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled .mat-pseudo-checkbox{--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: var(--mat-button-toggle-disabled-selected-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-button-toggle-appearance-standard.mat-button-toggle-disabled.mat-button-toggle-checked{color:var(--mat-button-toggle-disabled-selected-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-toggle-disabled-selected-state-background-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:var(--mat-button-toggle-state-layer-color, var(--mat-sys-on-surface))}.mat-button-toggle-appearance-standard:hover .mat-button-toggle-focus-overlay{opacity:var(--mat-button-toggle-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-button-toggle-appearance-standard.cdk-keyboard-focused .mat-button-toggle-focus-overlay{opacity:var(--mat-button-toggle-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}@media(hover: none){.mat-button-toggle-appearance-standard:hover .mat-button-toggle-focus-overlay{display:none}}.mat-button-toggle-label-content{-webkit-user-select:none;user-select:none;display:inline-block;padding:0 16px;line-height:var(--mat-button-toggle-legacy-height);position:relative}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{padding:0 12px;line-height:var(--mat-button-toggle-height, 40px)}.mat-button-toggle-label-content>*{vertical-align:middle}.mat-button-toggle-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:inherit;pointer-events:none;opacity:0;background-color:var(--mat-button-toggle-legacy-state-layer-color)}@media(forced-colors: active){.mat-button-toggle-checked .mat-button-toggle-focus-overlay{border-bottom:solid 500px;opacity:.5;height:0}.mat-button-toggle-checked:hover .mat-button-toggle-focus-overlay{opacity:.6}.mat-button-toggle-checked.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{border-bottom:solid 500px}}.mat-button-toggle .mat-button-toggle-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-button-toggle-button{border:0;background:none;color:inherit;padding:0;margin:0;font:inherit;outline:none;width:100%;cursor:pointer}.mat-button-toggle-animations-enabled .mat-button-toggle-button{transition:padding 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-button-toggle-vertical .mat-button-toggle-button{transition:none}.mat-button-toggle-disabled .mat-button-toggle-button{cursor:default}.mat-button-toggle-button::-moz-focus-inner{border:0}.mat-button-toggle-checked .mat-button-toggle-button:has(.mat-button-toggle-checkbox-wrapper){padding-left:30px}[dir=rtl] .mat-button-toggle-checked .mat-button-toggle-button:has(.mat-button-toggle-checkbox-wrapper){padding-left:0;padding-right:30px}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard{--mat-focus-indicator-border-radius: var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}.mat-button-toggle-group-appearance-standard:not(.mat-button-toggle-vertical) .mat-button-toggle:last-of-type .mat-button-toggle-button::before{border-top-right-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border-bottom-right-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}.mat-button-toggle-group-appearance-standard:not(.mat-button-toggle-vertical) .mat-button-toggle:first-of-type .mat-button-toggle-button::before{border-top-left-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border-bottom-left-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle:last-of-type .mat-button-toggle-button::before{border-bottom-right-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border-bottom-left-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle:first-of-type .mat-button-toggle-button::before{border-top-right-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large));border-top-left-radius:var(--mat-button-toggle-shape, var(--mat-sys-corner-extra-large))}\n"],encapsulation:2,changeDetection:0})}return kt})(),ie=(()=>{class kt{static \u0275fac=function(mn){return new(mn||kt)};static \u0275mod=W.$C({type:kt});static \u0275inj=G.G2t({imports:[be.y,ne.p,te,be.y]})}return kt})();var P=l(5596),F=l(2765),ve=l(5084),H=l(9454),$=l(2885),Ke=l(2629),Vt=l(3746),St=l(3902),ot=l(9115),nt=l(6695),ht=l(7575),oe=l(9183),Ye=l(5951),fe=l(6183),Qe=l(882),gt=l(450),Gt=l(9842);l(1413);let dn=(()=>{class kt{static \u0275fac=function(mn){return new(mn||kt)};static \u0275mod=W.$C({type:kt});static \u0275inj=G.G2t({imports:[be.y,ne.p]})}return kt})();var xn=l(5416),Jn=l(2042),xi=l(6013),Yi=l(1676),Tt=l(6850),At=l(5911),we=l(6156),ae=l(7358),Lt=l(6471),Ht=l(9340),_n=l(6038),fi=l(2920);l(4085);let wa=(()=>{class kt{}return kt.\u0275fac=function($e){return new($e||kt)},kt.\u0275mod=W.$C({type:kt}),kt.\u0275inj=G.G2t({imports:[Ht.Ui]}),kt})();var ja=l(177);let Or=(()=>{class kt{constructor($e,mn){(0,ja.Vy)(mn)&&!$e&&console.warn("Warning: Flex Layout loaded on the server without FlexLayoutServerModule")}static withConfig($e,mn=[]){return{ngModule:kt,providers:$e.serverLoaded?[{provide:Ht.EA,useValue:{...Ht.PV,...$e}},{provide:Ht.SL,useValue:mn,multi:!0},{provide:Ht.Ce,useValue:!0}]:[{provide:Ht.EA,useValue:{...Ht.PV,...$e}},{provide:Ht.SL,useValue:mn,multi:!0}]}}}return kt.\u0275fac=function($e){return new($e||kt)(G.KVO(Ht.Ce),G.KVO(W.Agw))},kt.\u0275mod=W.$C({type:kt}),kt.\u0275inj=G.G2t({imports:[fi.w2,_n.Cc,wa,fi.w2,_n.Cc,wa]}),kt})();var Rr=l(1993),Fs=l(8288),Hr=l(497),Ks=l(9338);let Sr=(()=>{var kt;class On extends Ks.Sf{constructor(mn,Ln){super(mn,Ln)}_createContainer(){super._createContainer(),this._containerElement&&(document.querySelector("#rtl-container")||document.body).appendChild(this._containerElement)}ngOnDestroy(){super.ngOnDestroy()}static#e=kt=()=>(this.\u0275fac=function(Ln){return new(Ln||On)(W.rXU(G.qQL),W.rXU(Gt.O))},this.\u0275dir=W.FsC({type:On,features:[W.Vt3]}))}return kt(),On})();var Ne=l(8570),He=l(4416),q=l(2929),mt=l(9330);const ln={suppressScrollX:!1,suppressScrollY:!1};let Oi=(()=>{var kt;class On extends e.xW{constructor(mn){super(mn)}format(mn,Ln){if("input"===Ln){let Ei=mn.getDate().toString();return Ei=+Ei<10?"0"+Ei:Ei,Ei+"/"+He.KR[mn.getMonth()].name.toUpperCase()+"/"+mn.getFullYear()}return He.KR[mn.getMonth()].name.toUpperCase()+" "+mn.getFullYear()}static#e=kt=()=>(this.\u0275fac=function(Ln){return new(Ln||On)(G.KVO(O.Ju,8))},this.\u0275prov=G.jDH({token:On,factory:On.\u0275fac}))}return kt(),On})();const ua={parse:{dateInput:{day:"numeric",month:"short",year:"numeric"}},display:{dateInput:"input",monthYearLabel:{month:"short",year:"numeric"},dateA11yLabel:{day:"numeric",month:"short",year:"numeric"},monthYearA11yLabel:{month:"short",year:"numeric"}}};let Es=(()=>{var kt;class On{static#e=kt=()=>(this.\u0275fac=function(Ln){return new(Ln||On)},this.\u0275mod=W.$C({type:On}),this.\u0275inj=G.G2t({providers:[{provide:Ne.gP,useClass:Ne.tU},{provide:Hr.kU,useValue:ln},{provide:xn.x6,useValue:{duration:2e3,verticalPosition:"bottom",panelClass:"rtl-snack-bar"}},{provide:f.di,useValue:{hasBackdrop:!0,autoFocus:!0,disableClose:!0,role:"dialog"}},{provide:O.MJ,useClass:Oi},{provide:O.de,useValue:ua},{provide:Ks.Sf,useClass:Sr},i.QX,i.PV,i.vh,q.gZ,q.ZE,q.VD,q.Qu],imports:[i.MD,mt.q1,v.YN,v.X1,T.dX,w.RH,f.hM,C.Hl,ie,P.Hu,F.g7,H.MY,$.Fe,ve.X6,e.WX,Ke.m_,Vt.fS,St.Fg,ot.Cn,ht.PO,oe.D6,Ye.Wk,ae.jH,Or,Lt.YN,fe.Ve,Qe.vg,gt.mV,Jn.NQ,Yi.tP,At.s5,we.u,L.Y,nt.Ou,xi.aP,dn,Tt.RI,xn._T,u.jL,Rr.dV,Fs.XK,d.iI,Hr.U$,v.YN,v.X1,T.dX,w.RH,f.hM,C.Hl,ie,P.Hu,F.g7,H.MY,$.Fe,ve.X6,e.WX,Ke.m_,Vt.fS,St.Fg,ot.Cn,ht.PO,oe.D6,Ye.Wk,ae.jH,Or,Lt.YN,fe.Ve,Qe.vg,gt.mV,Jn.NQ,Yi.tP,At.s5,we.u,L.Y,nt.Ou,xi.aP,dn,Tt.RI,xn._T,u.jL,Rr.dV,Fs.XK,Hr.U$]}))}return kt(),On})()},1771(Zt,pe,l){"use strict";l.d(pe,{Dz:()=>le,Fl:()=>V,Gd:()=>w,I1:()=>B,IK:()=>W,Jh:()=>e,My:()=>T,NU:()=>j,Np:()=>xe,OP:()=>Pe,Qi:()=>G,R$:()=>C,T$:()=>re,Tn:()=>Ae,UI:()=>O,iD:()=>Re,mt:()=>f,oz:()=>J,rc:()=>Ee,ri:()=>ce,t2:()=>_e,uP:()=>A,xO:()=>L,xw:()=>be,y0:()=>u});var i=l(9640),d=l(4416);(0,i.VP)(d.aU.VOID);const T=(0,i.VP)(d.aU.SET_API_URL_ECL,(0,i.xk)()),w=(0,i.VP)(d.aU.UPDATE_API_CALL_STATUS_ROOT,(0,i.xk)()),e=(0,i.VP)(d.aU.CLOSE_ALL_DIALOGS),O=(0,i.VP)(d.aU.OPEN_SNACK_BAR,(0,i.xk)()),f=(0,i.VP)(d.aU.OPEN_SPINNER,(0,i.xk)()),u=(0,i.VP)(d.aU.CLOSE_SPINNER,(0,i.xk)()),L=(0,i.VP)(d.aU.OPEN_ALERT,(0,i.xk)()),C=(0,i.VP)(d.aU.CLOSE_ALERT,(0,i.xk)()),B=(0,i.VP)(d.aU.OPEN_CONFIRMATION,(0,i.xk)()),A=(0,i.VP)(d.aU.CLOSE_CONFIRMATION,(0,i.xk)()),Pe=(0,i.VP)(d.aU.SHOW_PUBKEY),le=(0,i.VP)(d.aU.FETCH_CONFIG,(0,i.xk)()),Ae=((0,i.VP)(d.aU.SHOW_CONFIG,(0,i.xk)()),(0,i.VP)(d.aU.RESET_ROOT_STORE,(0,i.xk)())),j=(0,i.VP)(d.aU.FETCH_APPLICATION_SETTINGS),W=(0,i.VP)(d.aU.SET_APPLICATION_SETTINGS,(0,i.xk)()),G=(0,i.VP)(d.aU.SET_SELECTED_NODE,(0,i.xk)()),re=(0,i.VP)(d.aU.UPDATE_NODE_SETTINGS,(0,i.xk)()),xe=(0,i.VP)(d.aU.SET_SELECTED_NODE_SETTINGS,(0,i.xk)()),Ee=(0,i.VP)(d.aU.UPDATE_APPLICATION_SETTINGS,(0,i.xk)()),V=(0,i.VP)(d.aU.SET_NODE_DATA,(0,i.xk)()),ce=(0,i.VP)(d.aU.LOGOUT,(0,i.xk)()),be=(0,i.VP)(d.aU.RESET_PASSWORD,(0,i.xk)()),J=((0,i.VP)(d.aU.RESET_PASSWORD_RES,(0,i.xk)()),(0,i.VP)(d.aU.IS_AUTHORIZED,(0,i.xk)())),Re=((0,i.VP)(d.aU.IS_AUTHORIZED_RES,(0,i.xk)()),(0,i.VP)(d.aU.LOGIN,(0,i.xk)())),_e=((0,i.VP)(d.aU.VERIFY_TWO_FA,(0,i.xk)()),(0,i.VP)(d.aU.FETCH_FILE,(0,i.xk)()));(0,i.VP)(d.aU.SHOW_FILE,(0,i.xk)())},7541(Zt,pe,l){"use strict";l.d(pe,{H:()=>ci});var i=l(7705),d=l(1747),v=l(1413),T=l(7673),w=l(6354),e=l(6697),O=l(3993),f=l(1397),u=l(9437),L=l(6977),C=l(4416),B=l(1585),A=l(3664),Pe=l(9183),le=l(2920);let Ce=(()=>{var rn;class In{constructor(Vn,ii){this.dialogRef=Vn,this.data=ii}static#e=rn=()=>(this.\u0275fac=function(ii){return new(ii||In)(A.rXU(B.CP),A.rXU(B.Vh))},this.\u0275cmp=A.VBU({type:In,selectors:[["rtl-spinner-dialog"]],standalone:!1,decls:4,vars:1,consts:[["fxLayout","column","fxLayoutAlign","center center",1,"spinner-container"],["color","primary","mode","indeterminate",1,"modal-spinner-message"]],template:function(ii,Bn){1&ii&&(A.j41(0,"div",0),A.nrm(1,"mat-progress-spinner",1),A.j41(2,"h2"),A.EFF(3),A.k0s()()),2&ii&&(A.R7$(3),A.JRh(Bn.data.titleMessage))},dependencies:[Pe.LG,le.DJ,le.sA],styles:["h2[_ngcontent-%COMP%]{text-align:center}"]}))}return rn(),In})();var Ae=l(5383),j=l(9647),W=l(2615),G=l(8570),re=l(5416),xe=l(2571),Ee=l(3694),V=l(9640),ce=l(2200),be=l(60),ne=l(8834),J=l(5596),De=l(2629),Re=l(1997),Xe=l(6038),_e=l(455),he=l(8288),Dt=l(497),lt=l(9157),Le=l(9587);const te=["scrollContainer"],ie=rn=>({"display-none":rn}),P=rn=>({"h-40":rn}),F=rn=>({"failed-status":rn});function ve(rn,In){if(1&rn&&A.nrm(0,"qr-code",19),2&rn){const Mn=A.XpG();A.Y8G("value",Mn.showQRField)("size",200)}}function H(rn,In){1&rn&&A.eu8(0)}function $(rn,In){if(1&rn&&(A.qex(0),A.j41(1,"mat-card-content",20,1),A.DNE(3,H,1,0,"ng-container",21),A.k0s(),A.bVm()),2&rn){const Mn=A.XpG(),Vn=A.sdS(20);A.R7$(),A.Y8G("ngClass",A.eq3(2,P,Mn.data.scrollable)),A.R7$(2),A.Y8G("ngTemplateOutlet",Vn)}}function Ke(rn,In){1&rn&&A.eu8(0)}function Vt(rn,In){if(1&rn&&(A.qex(0),A.j41(1,"mat-card-content",22),A.DNE(2,Ke,1,0,"ng-container",21),A.k0s(),A.bVm()),2&rn){A.XpG();const Mn=A.sdS(20);A.R7$(2),A.Y8G("ngTemplateOutlet",Mn)}}function St(rn,In){1&rn&&(A.j41(0,"mat-icon",27),A.EFF(1,"arrow_downward"),A.k0s())}function ot(rn,In){1&rn&&(A.j41(0,"mat-icon",28),A.EFF(1,"arrow_upward"),A.k0s())}function nt(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"div",23)(1,"button",24),A.bIt("click",function(){W.eBV(Mn);const ii=A.XpG();return W.Njj(ii.onScroll())}),A.DNE(2,St,2,0,"mat-icon",25)(3,ot,2,0,"mat-icon",26),A.k0s()()}if(2&rn){const Mn=A.XpG();A.R7$(2),A.Y8G("ngIf","DOWN"===Mn.scrollDirection),A.R7$(),A.Y8G("ngIf","UP"===Mn.scrollDirection)}}function ht(rn,In){1&rn&&(A.j41(0,"button",29),A.EFF(1,"OK"),A.k0s()),2&rn&&A.Y8G("mat-dialog-close",!1)}function oe(rn,In){1&rn&&(A.j41(0,"button",30),A.EFF(1,"Close"),A.k0s()),2&rn&&A.Y8G("mat-dialog-close",!1)}function Ye(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"button",31),A.bIt("copied",function(ii){W.eBV(Mn);const Bn=A.XpG();return W.Njj(Bn.onCopyField(ii))}),A.EFF(1),A.k0s()}if(2&rn){const Mn=A.XpG();A.Y8G("payload",Mn.showCopyField),A.R7$(),A.SpI("Copy ",Mn.showCopyName)}}function fe(rn,In){1&rn&&(A.j41(0,"button",30),A.EFF(1,"Close"),A.k0s()),2&rn&&A.Y8G("mat-dialog-close",!1)}function Qe(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"button",31),A.bIt("copied",function(ii){W.eBV(Mn);const Bn=A.XpG();return W.Njj(Bn.onCopyField(ii))}),A.EFF(1),A.k0s()}if(2&rn){const Mn=A.XpG();A.Y8G("payload",Mn.showQRField),A.R7$(),A.SpI("Copy ",Mn.showQRName)}}function gt(rn,In){if(1&rn&&A.nrm(0,"qr-code",19),2&rn){const Mn=A.XpG(2);A.Y8G("value",Mn.showQRField)("size",200)}}function Gt(rn,In){if(1&rn&&(A.j41(0,"p",37),A.EFF(1),A.k0s()),2&rn){const Mn=A.XpG(2);A.R7$(),A.JRh(Mn.data.titleMessage)}}function rt(rn,In){1&rn&&A.nrm(0,"span",51),2&rn&&A.Y8G("innerHTML",In.$implicit,A.npT)}function cn(rn,In){if(1&rn&&(A.qex(0),A.j41(1,"span",34),A.DNE(2,rt,1,1,"span",50),A.k0s(),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(2),A.Y8G("ngForOf",Mn.value)}}function Ft(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.nI1(2,"date"),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*Mn.value,"dd/MMM/y HH:mm"))}}function Sn(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.nI1(2,"number"),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(A.i5U(2,1,Mn.value,Mn.digitsInfo?Mn.digitsInfo:"1.0-3"))}}function Qn(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(Mn.value?"True":"False")}}function h(rn,In){1&rn&&(A.j41(0,"mat-icon",55),A.EFF(1,"info"),A.k0s())}function jt(rn,In){if(1&rn&&(A.j41(0,"p",53),A.EFF(1),A.DNE(2,h,2,0,"mat-icon",54),A.k0s()),2&rn){const Mn=A.XpG(3).$implicit,Vn=A.XpG(4);A.Y8G("ngClass",A.eq3(3,F,Mn.value===Vn.LoopStateEnum.FAILED)),A.R7$(),A.SpI(" ",Mn.value," "),A.R7$(),A.Y8G("ngIf",Mn.value===Vn.LoopStateEnum.FAILED)}}function Ue(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"p",57),A.bIt("click",function(){W.eBV(Mn);const ii=A.XpG(8);return W.Njj(ii.onGoToLink())}),A.EFF(1),A.k0s()}if(2&rn){const Mn=A.XpG(4).$implicit,Vn=A.XpG(4);A.Y8G("matTooltip",A.mNQ("Go To "+Vn.goToName)),A.R7$(),A.SpI(" ",Mn.value," ")}}function wt(rn,In){if(1&rn&&A.EFF(0),2&rn){const Mn=A.XpG(4).$implicit;A.SpI(" ",Mn.value," ")}}function pt(rn,In){if(1&rn&&A.DNE(0,Ue,2,3,"p",56)(1,wt,1,1,"ng-template",null,4,A.C5r),2&rn){const Mn=A.sdS(2),Vn=A.XpG(3).$implicit,ii=A.XpG(4);A.Y8G("ngIf",Vn.value===ii.goToFieldValue)("ngIfElse",Mn)}}function Pt(rn,In){if(1&rn&&(A.qex(0),A.DNE(1,jt,3,5,"p",52)(2,pt,3,2,"ng-template",null,3,A.C5r),A.bVm()),2&rn){const Mn=A.sdS(3),Vn=A.XpG(2).$implicit,ii=A.XpG(4);A.R7$(),A.Y8G("ngIf","SWAP"===ii.data.openedBy&&"state"===Vn.key)("ngIfElse",Mn)}}function gn(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"fa-icon",58),A.bIt("click",function(){W.eBV(Mn);const ii=A.XpG(2).$implicit,Bn=A.XpG(4);return W.Njj(Bn.onExplorerClicked(ii))}),A.k0s()}if(2&rn){const Mn=A.XpG(6);A.Y8G("matTooltip",A.mNQ("Link to "+Mn.selNode.settings.blockExplorerUrl))("icon",Mn.faUpRightFromSquare)}}function ei(rn,In){if(1&rn&&(A.j41(0,"span")(1,"span",46),A.DNE(2,cn,3,1,"ng-container",47)(3,Ft,3,4,"ng-container",47)(4,Sn,3,4,"ng-container",47)(5,Qn,2,1,"ng-container",47)(6,Pt,4,2,"ng-container",48),A.j41(7,"span"),A.DNE(8,gn,1,3,"fa-icon",49),A.k0s()()()),2&rn){const Mn=A.XpG().$implicit,Vn=A.XpG(4);A.R7$(),A.Y8G("ngSwitch",Mn.type),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.ARRAY),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.DATE_TIME),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.NUMBER),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.BOOLEAN),A.R7$(3),A.Y8G("ngIf",Mn.explorerLink&&""!==Mn.explorerLink)}}function vi(rn,In){1&rn&&(A.j41(0,"span",59),A.EFF(1,"\xa0"),A.k0s())}function Ni(rn,In){if(1&rn&&(A.j41(0,"div",42)(1,"h4",43),A.EFF(2),A.k0s(),A.DNE(3,ei,9,6,"span",44)(4,vi,2,0,"ng-template",null,2,A.C5r),A.nrm(6,"mat-divider",45),A.k0s()),2&rn){const Mn=In.$implicit,Vn=A.sdS(5);A.Y8G("fxFlex.gt-md",A.mNQ(Mn.width)),A.R7$(2),A.JRh(Mn.title),A.R7$(),A.Y8G("ngIf",Mn&&(!!Mn.value||0===Mn.value))("ngIfElse",Vn)}}function kn(rn,In){if(1&rn&&(A.j41(0,"div")(1,"div",40),A.DNE(2,Ni,7,5,"div",41),A.k0s()()),2&rn){const Mn=In.$implicit;A.R7$(2),A.Y8G("ngForOf",Mn)}}function Ri(rn,In){if(1&rn&&(A.j41(0,"div",38),A.DNE(1,kn,3,1,"div",39),A.k0s()),2&rn){const Mn=A.XpG(2);A.R7$(),A.Y8G("ngForOf",Mn.messageObjs)}}function vt(rn,In){if(1&rn&&(A.j41(0,"div",32)(1,"div",33),A.DNE(2,gt,1,2,"qr-code",7),A.k0s(),A.j41(3,"div",34),A.DNE(4,Gt,2,1,"p",35)(5,Ri,2,1,"div",36),A.k0s()()),2&rn){const Mn=A.XpG();A.R7$(),A.Y8G("ngClass",A.eq3(4,ie,""===Mn.showQRField||Mn.screenSize!==Mn.screenSizeEnum.XS&&Mn.screenSize!==Mn.screenSizeEnum.SM)),A.R7$(),A.Y8G("ngIf",""!==Mn.showQRField),A.R7$(2),A.Y8G("ngIf",Mn.data.titleMessage),A.R7$(),A.Y8G("ngIf",(null==Mn.messageObjs?null:Mn.messageObjs.length)>0)}}let ee=(()=>{var rn;class In{set container(Vn){Vn&&(this.scrollContainer=Vn,this.scrollContainer&&this.scrollContainer.nativeElement&&(this.unlistenEnd=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-end",ii=>{this.scrollDirection="UP"}),this.unlistenStart=this.renderer.listen(this.scrollContainer.nativeElement,"ps-y-reach-start",ii=>{this.scrollDirection="DOWN"})))}constructor(Vn,ii,Bn,ia,ra,fa,ha,qt){this.dialogRef=Vn,this.data=ii,this.logger=Bn,this.snackBar=ia,this.commonService=ra,this.renderer=fa,this.router=ha,this.store=qt,this.faUpRightFromSquare=Ae.k02,this.LoopStateEnum=C.Hx,this.goToFieldValue="",this.goToName="",this.goToLink="",this.showQRField="",this.showQRName="",this.showCopyName="",this.showCopyField="",this.errorMessage="",this.messageObjs=[],this.alertTypeEnum=C.A$,this.dataTypeEnum=C.UN,this.screenSize="",this.screenSizeEnum=C.f7,this.scrollDirection="DOWN",this.shouldScroll=!0,this.unSubs=[new v.B,new v.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.messageObjs=this.data.message||[],this.goToFieldValue=this.data.goToFieldValue?this.data.goToFieldValue:"",this.goToName=this.data.goToName?this.data.goToName:"",this.goToLink=this.data.goToLink?this.data.goToLink:"",this.showQRField=this.data.showQRField?this.data.showQRField:"",this.showQRName=this.data.showQRName?this.data.showQRName:"",this.showCopyName=this.data.showCopyName?this.data.showCopyName:"",this.showCopyField=this.data.showCopyField?this.data.showCopyField:"",this.data.type===C.A$.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection"),this.logger.info(this.messageObjs),this.store.select(j._c).pipe((0,L.Q)(this.unSubs[0])).subscribe(Vn=>{this.selNode=Vn,this.logger.info(this.selNode)})}ngAfterViewChecked(){setTimeout(()=>{this.shouldScroll=this.scrollContainer&&this.scrollContainer.nativeElement&&this.scrollContainer.nativeElement.classList.value.includes("ps--active-y")},500)}onScroll(){this.scrollContainer.nativeElement.scrollTop="DOWN"===this.scrollDirection?this.scrollContainer.nativeElement.scrollTop+62.6:this.scrollContainer.nativeElement.scrollTop-62.6}onCopyField(Vn){this.snackBar.open((this.showQRName?this.showQRName:this.showCopyName)+" copied."),this.logger.info("Copied Text: "+Vn)}onClose(){this.dialogRef.close(!1)}onGoToLink(){this.router.navigateByUrl(this.goToLink,{state:{lookupType:"0",lookupValue:this.goToFieldValue}}),this.onClose()}onExplorerClicked(Vn){window.open(this.selNode.settings.blockExplorerUrl+"/"+Vn.explorerLink+"/"+Vn.value,"_blank")}ngOnDestroy(){this.unlistenStart&&this.unlistenStart(),this.unlistenEnd&&this.unlistenEnd(),this.unSubs.forEach(Vn=>{Vn.next(null),Vn.complete()})}static#e=rn=()=>(this.\u0275fac=function(ii){return new(ii||In)(A.rXU(B.CP),A.rXU(B.Vh),A.rXU(G.gP),A.rXU(re.UG),A.rXU(xe.h),A.rXU(A.sFG),A.rXU(Ee.Ix),A.rXU(V.il))},this.\u0275cmp=A.VBU({type:In,selectors:[["rtl-alert-message"]],viewQuery:function(ii,Bn){if(1&ii&&A.GBs(te,5),2&ii){let ia;A.mGM(ia=A.lsd())&&(Bn.container=ia.first)}},standalone:!1,decls:21,vars:14,consts:[["contentBlock",""],["scrollContainer",""],["emptyField",""],["noStyleBlock",""],["noStyleChild",""],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","30","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large","ml-1",3,"ngClass"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],[3,"ngClass"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[4,"ngIf"],["fxLayout","row","fxLayoutAlign","start end","class","btn-sticky-container padding-gap-x-large",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close",4,"ngIf"],["class","mr-1","fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",3,"mat-dialog-close",4,"ngIf"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"payload","copied",4,"ngIf"],["errorCorrectionLevel","L",3,"value","size"],[1,"padding-gap-x-large",3,"perfectScrollbar","ngClass"],[4,"ngTemplateOutlet"],[1,"padding-gap-x-large"],["fxLayout","row","fxLayoutAlign","start end",1,"btn-sticky-container","padding-gap-x-large"],["mat-mini-fab","","aria-label","Scroll","fxLayoutAlign","center center",3,"click"],["class","arrow-downward","fxLayoutAlign","center center",4,"ngIf"],["class","arrow-upward","fxLayoutAlign","center center",4,"ngIf"],["fxLayoutAlign","center center",1,"arrow-downward"],["fxLayoutAlign","center center",1,"arrow-upward"],["tabindex","1","autoFocus","","mat-button","","color","primary","type","submit","default","",3,"mat-dialog-close"],["fxLayoutAlign","center center","tabindex","1","mat-button","","color","primary","type","button","default","",1,"mr-1",3,"mat-dialog-close"],["autoFocus","","mat-button","","color","primary","tabindex","2","type","submit","rtlClipboard","",3,"copied","payload"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large","mb-1",3,"ngClass"],["fxLayout","column","fxFlex","100"],["fxLayoutAlign","start center","class","pb-2",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxLayoutAlign","start center",1,"pb-2"],["fxFlex","100"],[4,"ngFor","ngForOf"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","start center","fxLayoutAlign.gt-md","space-between start"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md"],["fxLayoutAlign","start",1,"font-bold-500"],[4,"ngIf","ngIfElse"],[1,"w-100","my-1"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start stretch",1,"foreground-secondary-text",3,"ngSwitch"],[4,"ngSwitchCase"],[4,"ngSwitchDefault"],["class","ml-1 fa-icon-primary",3,"matTooltip","icon","click",4,"ngIf"],["class","display-block w-100",3,"innerHTML",4,"ngFor","ngForOf"],[1,"display-block","w-100",3,"innerHTML"],["fxLayout","row",3,"ngClass",4,"ngIf","ngIfElse"],["fxLayout","row",3,"ngClass"],["fxLayoutAlign","end end","class","icon-failed-status",4,"ngIf"],["fxLayoutAlign","end end",1,"icon-failed-status"],["fxLayout","row","class","go-to-link","tabindex","4",3,"matTooltip","click",4,"ngIf","ngIfElse"],["fxLayout","row","tabindex","4",1,"go-to-link",3,"click","matTooltip"],[1,"ml-1","fa-icon-primary",3,"click","matTooltip","icon"],["fxFlex","100",1,"foreground-secondary-text"]],template:function(ii,Bn){if(1&ii){const ia=A.RV6();A.j41(0,"div",5)(1,"div",6),A.DNE(2,ve,1,2,"qr-code",7),A.k0s(),A.j41(3,"div",8)(4,"mat-card-header",9)(5,"div",10)(6,"span",11),A.EFF(7),A.k0s()(),A.j41(8,"button",12),A.bIt("click",function(){return W.eBV(ia),W.Njj(Bn.onClose())}),A.EFF(9,"X"),A.k0s()(),A.DNE(10,$,4,4,"ng-container",13)(11,Vt,3,1,"ng-container",13)(12,nt,4,2,"div",14),A.j41(13,"div",15),A.DNE(14,ht,2,1,"button",16)(15,oe,2,1,"button",17)(16,Ye,2,2,"button",18)(17,fe,2,1,"button",17)(18,Qe,2,2,"button",18),A.k0s()()(),A.DNE(19,vt,6,6,"ng-template",null,0,A.C5r)}2&ii&&(A.R7$(),A.Y8G("ngClass",A.eq3(12,ie,""===Bn.showQRField||Bn.screenSize===Bn.screenSizeEnum.XS||Bn.screenSize===Bn.screenSizeEnum.SM)),A.R7$(),A.Y8G("ngIf",""!==Bn.showQRField),A.R7$(),A.Y8G("ngClass",""===Bn.showQRField||Bn.screenSize===Bn.screenSizeEnum.XS||Bn.screenSize===Bn.screenSizeEnum.SM?"flex-100":"flex-70"),A.R7$(4),A.JRh(Bn.data.alertTitle||Bn.alertTypeEnum[Bn.data.type]),A.R7$(3),A.Y8G("ngIf",Bn.data.scrollable),A.R7$(),A.Y8G("ngIf",!Bn.data.scrollable),A.R7$(),A.Y8G("ngIf",Bn.data.scrollable&&Bn.shouldScroll),A.R7$(2),A.Y8G("ngIf",(!Bn.showQRField||""===Bn.showQRField)&&""===Bn.showCopyName),A.R7$(),A.Y8G("ngIf",""!==Bn.showCopyName),A.R7$(),A.Y8G("ngIf",""!==Bn.showCopyName),A.R7$(),A.Y8G("ngIf",""!==Bn.showQRField),A.R7$(),A.Y8G("ngIf",""!==Bn.showQRField))},dependencies:[ce.YU,ce.Sq,ce.bT,ce.T3,ce.ux,ce.e1,ce.fG,be.aY,B.tx,ne.$z,ne.$0,J.m2,J.MM,De.An,Re.q,le.DJ,le.sA,le.UI,Xe.PW,_e.oV,he.Um,Dt.Ld,lt.U,Le.N,ce.QX,ce.vh],styles:[".display-block[_ngcontent-%COMP%]{display:block}"]}))}return rn(),In})();var ye=l(1771),ke=l(9417),Se=l(3746),ge=l(9588),N=l(6114);function Z(rn,In){if(1&rn&&(A.j41(0,"div",20),A.nrm(1,"fa-icon",21),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&rn){const Mn=A.XpG();A.R7$(),A.Y8G("icon",Mn.faExclamationTriangle),A.R7$(2),A.JRh(Mn.warningMessage)}}function Me(rn,In){if(1&rn&&(A.j41(0,"div",22),A.nrm(1,"fa-icon",21),A.j41(2,"span"),A.EFF(3),A.k0s()()),2&rn){const Mn=A.XpG();A.R7$(),A.Y8G("icon",Mn.faInfoCircle),A.R7$(2),A.JRh(Mn.informationMessage)}}function at(rn,In){if(1&rn&&(A.j41(0,"p",23),A.EFF(1),A.k0s()),2&rn){const Mn=A.XpG();A.R7$(),A.JRh(Mn.data.titleMessage)}}function qe(rn,In){1&rn&&A.nrm(0,"div",37),2&rn&&A.Y8G("innerHTML",In.$implicit,A.npT)}function pn(rn,In){if(1&rn&&(A.qex(0,35),A.DNE(1,qe,1,1,"div",36),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.Y8G("ngForOf",Mn.value)}}function Je(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.nI1(2,"date"),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(A.i5U(2,1,1e3*Mn.value,"dd/MMM/y HH:mm"))}}function Be(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.nI1(2,"number"),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(A.i5U(2,1,Mn.value,"1.0-3"))}}function ut(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(!0===Mn.value?"True":"False")}}function Ge(rn,In){if(1&rn&&(A.qex(0),A.EFF(1),A.bVm()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.JRh(Mn.value)}}function Ot(rn,In){if(1&rn&&(A.j41(0,"span")(1,"span",31),A.DNE(2,pn,2,1,"ng-container",32)(3,Je,3,4,"ng-container",33)(4,Be,3,4,"ng-container",33)(5,ut,2,1,"ng-container",33)(6,Ge,2,1,"ng-container",34),A.k0s()()),2&rn){const Mn=A.XpG().$implicit,Vn=A.XpG(3);A.R7$(),A.Y8G("ngSwitch",Mn.type),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.ARRAY),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.DATE_TIME),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.NUMBER),A.R7$(),A.Y8G("ngSwitchCase",Vn.dataTypeEnum.BOOLEAN)}}function se(rn,In){1&rn&&(A.j41(0,"span",38),A.EFF(1,"\xa0"),A.k0s())}function We(rn,In){if(1&rn&&(A.j41(0,"div",27)(1,"h4",28),A.EFF(2),A.k0s(),A.DNE(3,Ot,7,5,"span",29)(4,se,2,0,"ng-template",null,0,A.C5r),A.nrm(6,"mat-divider",30),A.k0s()),2&rn){const Mn=In.$implicit,Vn=A.sdS(5);A.Y8G("fxFlex.gt-md",A.mNQ(Mn.width)),A.R7$(2),A.JRh(Mn.title),A.R7$(),A.Y8G("ngIf",Mn&&(!!Mn.value||0===Mn.value))("ngIfElse",Vn)}}function bt(rn,In){if(1&rn&&(A.j41(0,"div")(1,"div",25),A.DNE(2,We,7,5,"div",26),A.k0s()()),2&rn){const Mn=In.$implicit;A.R7$(2),A.Y8G("ngForOf",Mn)}}function tn(rn,In){if(1&rn&&(A.j41(0,"div"),A.DNE(1,bt,3,1,"div",24),A.k0s()),2&rn){const Mn=A.XpG();A.R7$(),A.Y8G("ngForOf",Mn.messageObjs)}}function on(rn,In){if(1&rn&&(A.j41(0,"p",23),A.EFF(1),A.k0s()),2&rn){const Mn=A.XpG(2);A.R7$(),A.JRh(Mn.data.titleMessage)}}function un(rn,In){if(1&rn&&(A.j41(0,"mat-error"),A.EFF(1),A.k0s()),2&rn){const Mn=A.XpG(2).$implicit;A.R7$(),A.SpI("",Mn.placeholder," is required.")}}function Nt(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"mat-form-field",42)(1,"mat-label"),A.EFF(2),A.k0s(),A.j41(3,"input",43),A.nI1(4,"lowercase"),A.mxI("ngModelChange",function(ii){W.eBV(Mn);const Bn=A.XpG().$implicit;return A.DH7(Bn.inputValue,ii)||(Bn.inputValue=ii),W.Njj(ii)}),A.k0s(),A.DNE(5,un,2,1,"mat-error",13),A.j41(6,"mat-hint"),A.EFF(7),A.k0s()()}if(2&rn){const Mn=A.XpG(),Vn=Mn.$implicit,ii=Mn.index;A.Y8G("ngClass",Vn.width),A.R7$(2),A.JRh(Vn.placeholder),A.R7$(),A.Y8G("name",A.VkB("input",ii))("autoFocus",0===ii)("min",Vn.min)("step",Vn.step)("type",A.bMT(4,12,Vn.inputType))("tabindex",ii+1),A.R50("ngModel",Vn.inputValue),A.R7$(2),A.Y8G("ngIf",!Vn.inputValue),A.R7$(2),A.JRh(Vn.hintFunction?Vn.hintFunction(Vn.inputValue):Vn.hintText)}}function dn(rn,In){if(1&rn&&(A.qex(0),A.DNE(1,Nt,8,14,"mat-form-field",41),A.bVm()),2&rn){const Mn=In.$implicit,Vn=A.XpG(2);A.R7$(),A.Y8G("ngIf",!Mn.advancedField||Vn.showAdvanced)}}function xn(rn,In){if(1&rn&&(A.j41(0,"div",39),A.DNE(1,on,2,1,"p",12),A.j41(2,"div",40),A.DNE(3,dn,2,1,"ng-container",24),A.k0s()()),2&rn){const Mn=A.XpG();A.R7$(),A.Y8G("ngIf",Mn.data.titleMessage),A.R7$(2),A.Y8G("ngForOf",Mn.getInputs)}}function Jn(rn,In){1&rn&&(A.j41(0,"p"),A.EFF(1,"Show Advanced"),A.k0s())}function xi(rn,In){1&rn&&(A.j41(0,"p"),A.EFF(1,"Hide Advanced"),A.k0s())}function Yi(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"button",44),A.bIt("click",function(){W.eBV(Mn);const ii=A.XpG();return W.Njj(ii.onShowAdvanced())}),A.DNE(1,Jn,2,0,"p",29)(2,xi,2,0,"ng-template",null,1,A.C5r),A.k0s()}if(2&rn){const Mn=A.sdS(3),Vn=A.XpG();A.R7$(),A.Y8G("ngIf",!Vn.showAdvanced)("ngIfElse",Mn)}}function Tt(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"button",45),A.bIt("click",function(){W.eBV(Mn);const ii=A.XpG();return W.Njj(ii.onClose(ii.getInputs))}),A.EFF(1),A.k0s()}if(2&rn){const Mn=A.XpG();A.R7$(),A.JRh(Mn.yesBtnText)}}function At(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"button",46),A.bIt("click",function(){W.eBV(Mn);const ii=A.XpG();return W.Njj(ii.onClose(!0))}),A.EFF(1),A.k0s()}if(2&rn){const Mn=A.XpG();A.R7$(),A.JRh(Mn.yesBtnText)}}let we=(()=>{var rn;class In{constructor(Vn,ii,Bn,ia){this.dialogRef=Vn,this.data=ii,this.logger=Bn,this.store=ia,this.faInfoCircle=Ae.iW_,this.faExclamationTriangle=Ae.zpE,this.informationMessage="",this.warningMessage="",this.noBtnText="No",this.yesBtnText="Yes",this.messageObjs=[],this.flgShowInput=!1,this.hasAdvanced=!1,this.alertTypeEnum=C.A$,this.dataTypeEnum=C.UN,this.getInputs=[{placeholder:"",inputType:C.UN.STRING,inputValue:"",hintText:"",hintFunction:null,advancedField:!1}],this.showAdvanced=!1}ngOnInit(){this.informationMessage=this.data.informationMessage||"",this.warningMessage=this.data.warningMessage||"",this.flgShowInput=!!this.data.flgShowInput,this.getInputs=this.data.getInputs||[],this.noBtnText=this.data.noBtnText?this.data.noBtnText:"No",this.yesBtnText=this.data.yesBtnText?this.data.yesBtnText:"Yes",this.hasAdvanced=!!this.data.hasAdvanced&&this.data.hasAdvanced,this.messageObjs=this.data.message,this.data.type===C.A$.ERROR&&!this.data.message&&!this.data.titleMessage&&this.messageObjs.length<=0&&(this.data.titleMessage="Please Check Server Connection")}onShowAdvanced(){this.showAdvanced=!this.showAdvanced}onClose(Vn){if(Vn&&this.getInputs&&this.getInputs.some(ii=>typeof ii.inputValue>"u"))return!0;!this.showAdvanced&&Vn.length&&(Vn=Vn?.reduce((ii,Bn)=>(Bn.advancedField||ii.push(Bn),ii),[])),this.store.dispatch((0,ye.uP)({payload:Vn}))}static#e=rn=()=>(this.\u0275fac=function(ii){return new(ii||In)(A.rXU(B.CP),A.rXU(B.Vh),A.rXU(G.gP),A.rXU(V.il))},this.\u0275cmp=A.VBU({type:In,selectors:[["rtl-confirmation-message"]],standalone:!1,decls:21,vars:10,consts:[["emptyField",""],["hideAdvancedText",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","8","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","100","class","alert alert-warn",4,"ngIf"],["fxFlex","100","class","alert alert-info",4,"ngIf"],["fxLayoutAlign","start center","class","pb-1",4,"ngIf"],[4,"ngIf"],["fxLayout","column","class","bordered-box my-2 p-2",4,"ngIf"],["fxLayout","row","fxLayoutAlign","end center"],["mat-button","","color","primary","type","reset","tabindex","1",1,"mr-1",3,"click"],["mat-button","","color","primary","type","button","class","mr-1","tabindex","2",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","3","default","",3,"click",4,"ngIf"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","4","default","",3,"click",4,"ngIf"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["fxFlex","100",1,"alert","alert-info"],["fxLayoutAlign","start center",1,"pb-1"],[4,"ngFor","ngForOf"],["fxLayout","row wrap","fxLayoutAlign","start center","fxLayoutAlign.gt-md","space-between start"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","100",3,"fxFlex.gt-md"],["fxLayoutAlign","start",1,"font-bold-500"],[4,"ngIf","ngIfElse"],[1,"w-100","my-1"],[1,"foreground-secondary-text",3,"ngSwitch"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch",4,"ngSwitchCase"],[4,"ngSwitchCase"],[4,"ngSwitchDefault"],["fxLayout","row wrap","fxLayoutAlign","space-between stretch"],[3,"innerHTML",4,"ngFor","ngForOf"],[3,"innerHTML"],["fxFlex","100",1,"foreground-secondary-text"],["fxLayout","column",1,"bordered-box","my-2","p-2"],["fxLayout","row wrap","fxLayoutAlign","space-between center"],[3,"ngClass",4,"ngIf"],[3,"ngClass"],["matInput","","required","",3,"ngModelChange","name","autoFocus","min","step","type","tabindex","ngModel"],["mat-button","","color","primary","type","button","tabindex","2",1,"mr-1",3,"click"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","3","default","",3,"click"],["autoFocus","","mat-button","","color","primary","type","submit","tabindex","4","default","",3,"click"]],template:function(ii,Bn){1&ii&&(A.j41(0,"div",2)(1,"div",3)(2,"mat-card-header",4)(3,"div",5)(4,"span",6),A.EFF(5),A.k0s()(),A.j41(6,"button",7),A.bIt("click",function(){return Bn.onClose(!1)}),A.EFF(7,"X"),A.k0s()(),A.j41(8,"mat-card-content",8)(9,"form",9),A.DNE(10,Z,4,2,"div",10)(11,Me,4,2,"div",11)(12,at,2,1,"p",12)(13,tn,2,1,"div",13)(14,xn,4,2,"div",14),A.j41(15,"div",15)(16,"button",16),A.bIt("click",function(){return Bn.onClose(!1)}),A.EFF(17),A.k0s(),A.DNE(18,Yi,4,2,"button",17)(19,Tt,2,1,"button",18)(20,At,2,1,"button",19),A.k0s()()()()()),2&ii&&(A.R7$(5),A.JRh(Bn.data.alertTitle||Bn.alertTypeEnum[Bn.data.type]),A.R7$(5),A.Y8G("ngIf",Bn.warningMessage&&""!==Bn.warningMessage),A.R7$(),A.Y8G("ngIf",Bn.informationMessage&&""!==Bn.informationMessage),A.R7$(),A.Y8G("ngIf",Bn.data.titleMessage&&!Bn.flgShowInput),A.R7$(),A.Y8G("ngIf",(null==Bn.messageObjs?null:Bn.messageObjs.length)>0),A.R7$(),A.Y8G("ngIf",Bn.flgShowInput),A.R7$(3),A.JRh(Bn.noBtnText),A.R7$(),A.Y8G("ngIf",Bn.hasAdvanced),A.R7$(),A.Y8G("ngIf",Bn.flgShowInput),A.R7$(),A.Y8G("ngIf",!Bn.flgShowInput))},dependencies:[ce.YU,ce.Sq,ce.bT,ce.ux,ce.e1,ce.fG,ke.qT,ke.me,ke.BC,ke.cb,ke.YS,ke.vS,ke.cV,be.aY,ne.$z,J.m2,J.MM,Se.fg,ge.rl,ge.nJ,ge.MV,ge.TL,Re.q,le.DJ,le.sA,le.UI,Xe.PW,Le.N,N.V,ce.GH,ce.QX,ce.vh],encapsulation:2}))}return rn(),In})();var ae=l(2462),Lt=l(6183),Ht=l(3029);const _n=rn=>({"display-none":rn});function fi(rn,In){if(1&rn&&(A.j41(0,"mat-option",23),A.EFF(1),A.k0s()),2&rn){const Mn=In.$implicit;A.Y8G("value",Mn),A.R7$(),A.SpI(" ",Mn.infoName," ")}}function bi(rn,In){if(1&rn){const Mn=A.RV6();A.j41(0,"div",13)(1,"mat-form-field",20)(2,"mat-label"),A.EFF(3,"Info Type"),A.k0s(),A.j41(4,"mat-select",21),A.mxI("valueChange",function(ii){W.eBV(Mn);const Bn=A.XpG();return A.DH7(Bn.selInfoType,ii)||(Bn.selInfoType=ii),W.Njj(ii)}),A.DNE(5,fi,2,2,"mat-option",22),A.k0s()()()}if(2&rn){const Mn=A.XpG();A.R7$(4),A.R50("value",Mn.selInfoType),A.R7$(),A.Y8G("ngForOf",Mn.infoTypes)}}let Qi=(()=>{var rn;class In{constructor(Vn,ii,Bn,ia,ra){this.dialogRef=Vn,this.data=ii,this.logger=Bn,this.snackBar=ia,this.commonService=ra,this.faReceipt=Ae.Mf0,this.infoTypes=[{infoID:0,infoKey:"node pubkey",infoName:"Node pubkey"}],this.selInfoType=this.infoTypes[0],this.qrWidth=210,this.screenSize="",this.screenSizeEnum=C.f7}ngOnInit(){this.information=this.data.information,this.information.uris&&(1===this.information.uris.length?this.infoTypes.push({infoID:1,infoKey:"node URI",infoName:"Node URI"}):this.information.uris.length>1&&this.information.uris.forEach((Vn,ii)=>{this.infoTypes.push({infoID:ii+1,infoKey:"node URI "+(ii+1),infoName:"Node URI "+(ii+1)})})),this.screenSize=this.commonService.getScreenSize()}onClose(){this.dialogRef.close(!1)}onCopyPubkey(Vn){this.snackBar.open(this.selInfoType.infoName+" copied."),this.logger.info("Copied Text: "+Vn)}static#e=rn=()=>(this.\u0275fac=function(ii){return new(ii||In)(A.rXU(B.CP),A.rXU(B.Vh),A.rXU(G.gP),A.rXU(re.UG),A.rXU(xe.h))},this.\u0275cmp=A.VBU({type:In,selectors:[["rtl-show-pubkey"]],standalone:!1,decls:26,vars:20,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","30","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],["errorCorrectionLevel","L",3,"value","size"],["fxFlex","100","fxFlex.gt-sm","70"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],["fxFlex","50","fxLayoutAlign","center start",1,"modal-qr-code-container","padding-gap-large",3,"ngClass"],["fxLayout","row",4,"ngIf"],["fxLayout","row"],["fxFlex","100"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"],["fxLayout","row","fxLayoutAlign","end center",1,"mt-2"],["autoFocus","","mat-button","","color","primary","type","submit","rtlClipboard","",3,"copied","payload"],["fxLayout","column","fxFlex","100","fxFlex.gt-sm","40","fxLayoutAlign","start end"],[3,"valueChange","value"],[3,"value",4,"ngFor","ngForOf"],[3,"value"]],template:function(ii,Bn){1&ii&&(A.j41(0,"div",0)(1,"div",1),A.nrm(2,"qr-code",2),A.k0s(),A.j41(3,"div",3)(4,"mat-card-header",4)(5,"div",5),A.nrm(6,"fa-icon",6),A.j41(7,"span",7),A.EFF(8),A.k0s()(),A.j41(9,"button",8),A.bIt("click",function(){return Bn.onClose()}),A.EFF(10,"X"),A.k0s()(),A.j41(11,"mat-card-content",9)(12,"div",10)(13,"div",11),A.nrm(14,"qr-code",2),A.k0s(),A.DNE(15,bi,6,2,"div",12),A.j41(16,"div",13)(17,"div",14)(18,"h4",15),A.EFF(19),A.k0s(),A.j41(20,"span",16),A.EFF(21),A.k0s()()(),A.nrm(22,"mat-divider",17),A.j41(23,"div",18)(24,"button",19),A.bIt("copied",function(ra){return Bn.onCopyPubkey(ra)}),A.EFF(25),A.k0s()()()()()()),2&ii&&(A.R7$(),A.Y8G("ngClass",A.eq3(16,_n,Bn.screenSize===Bn.screenSizeEnum.XS||Bn.screenSize===Bn.screenSizeEnum.SM)),A.R7$(),A.Y8G("value",A.mNQ(0===Bn.selInfoType.infoID?Bn.information.identity_pubkey:Bn.information.uris[Bn.selInfoType.infoID-1]))("size",Bn.qrWidth),A.R7$(4),A.Y8G("icon",Bn.faReceipt),A.R7$(2),A.JRh(Bn.selInfoType.infoName),A.R7$(5),A.Y8G("ngClass",A.eq3(18,_n,Bn.screenSize!==Bn.screenSizeEnum.XS&&Bn.screenSize!==Bn.screenSizeEnum.SM)),A.R7$(),A.Y8G("value",A.mNQ(0===Bn.selInfoType.infoID?Bn.information.identity_pubkey:Bn.information.uris[Bn.selInfoType.infoID-1]))("size",Bn.qrWidth),A.R7$(),A.Y8G("ngIf",Bn.information.uris&&Bn.information.uris.length>0),A.R7$(4),A.JRh(Bn.selInfoType.infoName),A.R7$(2),A.JRh(0===Bn.selInfoType.infoID?Bn.information.identity_pubkey:Bn.information.uris[Bn.selInfoType.infoID-1]),A.R7$(3),A.Y8G("payload",A.mNQ(0===Bn.selInfoType.infoID?Bn.information.identity_pubkey:Bn.information.uris[Bn.selInfoType.infoID-1])),A.R7$(),A.SpI("Copy ",Bn.selInfoType.infoKey))},dependencies:[ce.YU,ce.Sq,ce.bT,be.aY,ne.$z,J.m2,J.MM,ge.rl,ge.nJ,Re.q,le.DJ,le.sA,le.UI,Xe.PW,Lt.VO,Ht.wT,he.Um,lt.U,Le.N],encapsulation:2}))}return rn(),In})();var zi=l(190),It=l(8430),an=l(5428),Yt=l(9330),Un=l(7879),zn=l(3202),Fn=l(1534);let ci=(()=>{var rn;class In{constructor(Vn,ii,Bn,ia,ra,fa,ha,qt,En,Wn,ri){this.actions=Vn,this.httpClient=ii,this.store=Bn,this.logger=ia,this.wsService=ra,this.sessionService=fa,this.commonService=ha,this.dataService=qt,this.dialog=En,this.snackBar=Wn,this.router=ri,this.screenSize="",this.alertWidth="55%",this.confirmWidth="70%",this.unSubs=[new v.B,new v.B],this.closeAllDialogs=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.CLOSE_ALL_DIALOGS),(0,w.T)(()=>{this.dialog.closeAll()})),{dispatch:!1}),this.openSnackBar=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.OPEN_SNACK_BAR),(0,w.T)(Rn=>{"string"==typeof Rn.payload?this.snackBar.open(Rn.payload):this.snackBar.open(Rn.payload.message,"","ERROR"===Rn.payload.type?{duration:Rn.payload.duration?Rn.payload.duration:2e3,panelClass:"rtl-warn-snack-bar"}:"WARN"===Rn.payload.type?{duration:Rn.payload.duration?Rn.payload.duration:2e3,panelClass:"rtl-accent-snack-bar"}:{duration:Rn.payload.duration?Rn.payload.duration:2e3,panelClass:"rtl-snack-bar"})})),{dispatch:!1}),this.openSpinner=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.OPEN_SPINNER),(0,w.T)(Rn=>{Rn.payload!==C.MZ.NO_SPINNER&&(this.dialogRef=this.dialog.open(Ce,{panelClass:"spinner-dialog-panel",data:{titleMessage:Rn.payload}}))})),{dispatch:!1}),this.closeSpinner=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.CLOSE_SPINNER),(0,w.T)(Rn=>{if(Rn.payload!==C.MZ.NO_SPINNER)try{this.dialogRef&&this.dialogRef.componentInstance&&this.dialogRef.componentInstance.data&&this.dialogRef.componentInstance.data.titleMessage&&this.dialogRef.componentInstance.data.titleMessage===Rn.payload?this.dialogRef.close():this.dialog.openDialogs.forEach(Hn=>{Hn.componentInstance&&Hn.componentInstance.data&&Hn.componentInstance.data.titleMessage&&Hn.componentInstance.data.titleMessage===Rn.payload&&Hn.close()})}catch(Hn){this.logger.error(Hn)}})),{dispatch:!1}),this.openAlert=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.OPEN_ALERT),(0,w.T)(Rn=>{const Hn=JSON.parse(JSON.stringify(Rn.payload));Hn.width||(Hn.width=this.alertWidth),this.dialogRef=this.dialog.open(Rn.payload.data.component?Rn.payload.data.component:ee,Hn)})),{dispatch:!1}),this.closeAlert=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.CLOSE_ALERT),(0,w.T)(Rn=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(Rn.payload),Rn.payload))),{dispatch:!1}),this.openConfirm=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.OPEN_CONFIRMATION),(0,w.T)(Rn=>{const Hn=JSON.parse(JSON.stringify(Rn.payload));Hn.width||(Hn.width=this.confirmWidth),this.dialogRef=this.dialog.open(we,Hn)})),{dispatch:!1}),this.closeConfirm=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.CLOSE_CONFIRMATION),(0,e.s)(1),(0,w.T)(Rn=>(this.dialogRef&&this.dialogRef.close(),this.logger.info(Rn.payload),Rn.payload))),{dispatch:!1}),this.showNodePubkey=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.SHOW_PUBKEY),(0,O.E)(this.store.select(j.N)),(0,f.Z)(([Rn,Hn])=>(this.sessionService.getItem("token")&&Hn.identity_pubkey?this.store.dispatch((0,ye.xO)({payload:{data:{information:Hn,component:Qi}}})):this.snackBar.open("Node Pubkey does not exist."),(0,T.of)({type:C.aU.VOID}))))),this.appConfigFetch=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.FETCH_APPLICATION_SETTINGS),(0,f.Z)(()=>(this.screenSize=this.commonService.getScreenSize(),this.screenSize===C.f7.XS||this.screenSize===C.f7.SM?(this.alertWidth="95%",this.confirmWidth="95%"):this.screenSize===C.f7.MD?(this.alertWidth="80%",this.confirmWidth="80%"):(this.alertWidth="50%",this.confirmWidth="53%"),this.store.dispatch((0,ye.mt)({payload:C.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,ye.Gd)({payload:{action:"FetchRTLConfig",status:C.wn.INITIATED}})),this.httpClient.get(C.rl.CONF_API))),(0,w.T)(Rn=>{this.logger.info(Rn),this.store.dispatch((0,ye.y0)({payload:C.MZ.GET_RTL_CONFIG})),this.store.dispatch((0,ye.Gd)({payload:{action:"FetchRTLConfig",status:C.wn.COMPLETED}}));let Hn=null;return Rn.nodes.forEach(Pi=>{Pi.settings.currencyUnits=[...C.A0,Pi.settings?.currencyUnit?Pi.settings?.currencyUnit:""],+(Pi.index||-1)===Rn.selectedNodeIndex&&(Hn=Pi)}),Hn?(this.store.dispatch((0,ye.Qi)({payload:{uiMessage:C.MZ.NO_SPINNER,prevLnNodeIndex:-1,currentLnNode:Hn,isInitialSetup:!0}})),{type:C.aU.SET_APPLICATION_SETTINGS,payload:Rn}):{type:C.aU.VOID}}),(0,u.W)(Rn=>(this.handleErrorWithAlert("FetchRTLConfig",C.MZ.GET_RTL_CONFIG,"Fetch RTL Config Failed!",C.rl.CONF_API,Rn),(0,T.of)({type:C.aU.VOID}))))),this.updateNodeSettings=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.UPDATE_NODE_SETTINGS),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.mt)({payload:C.MZ.UPDATE_NODE_SETTINGS})),this.store.dispatch((0,ye.Gd)({payload:{action:"updateNodeSettings",status:C.wn.INITIATED}})),Rn.payload.settings.fiatConversion||delete Rn.payload.settings.currencyUnit,delete Rn.payload.settings.currencyUnits,this.httpClient.post(C.rl.CONF_API+"/node",Rn.payload).pipe((0,w.T)(Hn=>(this.store.dispatch((0,ye.Gd)({payload:{action:"updateNodeSettings",status:C.wn.COMPLETED}})),this.store.dispatch((0,ye.y0)({payload:C.MZ.UPDATE_NODE_SETTINGS})),Hn.settings.currencyUnits=[...C.A0,Hn.settings?.currencyUnit?Hn.settings?.currencyUnit:""],this.store.dispatch((0,ye.Np)({payload:Hn})),{type:C.aU.OPEN_SNACK_BAR,payload:"Node settings updated successfully!"})),(0,u.W)(Hn=>(this.handleErrorWithAlert("updateNodeSettings",C.MZ.UPDATE_NODE_SETTINGS,"Update Node Settings Failed!",C.rl.CONF_API+"/node",Hn),(0,T.of)({type:C.aU.VOID})))))))),this.updateApplicationSettings=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.UPDATE_APPLICATION_SETTINGS),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.mt)({payload:C.MZ.UPDATE_APPLICATION_SETTINGS})),this.store.dispatch((0,ye.Gd)({payload:{action:"updateApplicationSettings",status:C.wn.INITIATED}})),Rn.payload.config.nodes.forEach(Hn=>{delete Hn.settings.currencyUnits}),this.httpClient.post(C.rl.CONF_API+"/application",Rn.payload.config).pipe((0,w.T)(Hn=>(this.store.dispatch((0,ye.Gd)({payload:{action:"updateApplicationSettings",status:C.wn.COMPLETED}})),this.store.dispatch((0,ye.y0)({payload:C.MZ.UPDATE_APPLICATION_SETTINGS})),Rn.payload.showSnackBar&&this.store.dispatch((0,ye.UI)({payload:Rn.payload.message})),{type:C.aU.SET_APPLICATION_SETTINGS,payload:Hn})),(0,u.W)(Hn=>(this.handleErrorWithAlert("updateApplicationSettings",C.MZ.UPDATE_APPLICATION_SETTINGS,"Update Application Settings Failed!",C.rl.CONF_API+"/application",Hn),(0,T.of)({type:C.aU.VOID})))))))),this.configFetch=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.FETCH_CONFIG),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.mt)({payload:C.MZ.OPEN_CONFIG_FILE})),this.store.dispatch((0,ye.Gd)({payload:{action:"fetchConfig",status:C.wn.INITIATED}})),this.httpClient.get(C.rl.CONF_API+"/config/"+Rn.payload).pipe((0,w.T)(Hn=>(this.store.dispatch((0,ye.Gd)({payload:{action:"fetchConfig",status:C.wn.COMPLETED}})),this.store.dispatch((0,ye.y0)({payload:C.MZ.OPEN_CONFIG_FILE})),{type:C.aU.SHOW_CONFIG,payload:Hn})),(0,u.W)(Hn=>(this.handleErrorWithAlert("fetchConfig",C.MZ.OPEN_CONFIG_FILE,"Fetch Config Failed!",C.rl.CONF_API+"/config/"+Rn.payload,Hn),(0,T.of)({type:C.aU.VOID})))))))),this.showLnConfig=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.SHOW_CONFIG),(0,w.T)(Rn=>Rn.payload)),{dispatch:!1}),this.isAuthorized=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.IS_AUTHORIZED),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.Gd)({payload:{action:"IsAuthorized",status:C.wn.INITIATED}})),this.httpClient.post(C.rl.AUTHENTICATE_API,{authenticateWith:Rn.payload&&""!==Rn.payload.trim()?C.U1.PASSWORD:C.U1.JWT,authenticationValue:Rn.payload&&""!==Rn.payload.trim()?Rn.payload:this.sessionService.getItem("token")?this.sessionService.getItem("token"):""}).pipe((0,w.T)(Hn=>(this.logger.info(Hn),this.store.dispatch((0,ye.Gd)({payload:{action:"IsAuthorized",status:C.wn.COMPLETED}})),this.logger.info("Successfully Authorized!"),{type:C.aU.IS_AUTHORIZED_RES,payload:Hn})),(0,u.W)(Hn=>(this.handleErrorWithAlert("IsAuthorized",C.MZ.NO_SPINNER,"Authorization Failed",C.rl.AUTHENTICATE_API,Hn),(0,T.of)({type:C.aU.IS_AUTHORIZED_RES,payload:"ERROR"})))))))),this.isAuthorizedRes=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.IS_AUTHORIZED_RES),(0,w.T)(Rn=>Rn.payload)),{dispatch:!1}),this.authLogin=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.LOGIN),(0,O.E)(this.store.select(j.qv)),(0,f.Z)(([Rn,Hn])=>(this.store.dispatch((0,zi.p1)()),this.store.dispatch((0,It.gf)()),this.store.dispatch((0,an.Hh)()),this.store.dispatch((0,ye.Gd)({payload:{action:"Login",status:C.wn.INITIATED}})),this.httpClient.post(C.rl.AUTHENTICATE_API,{authenticateWith:"disabledAuth"===Rn.payload.password?C.U1.NOAUTH:Rn.payload.password?C.U1.PASSWORD:C.U1.JWT,authenticationValue:Rn.payload.password?Rn.payload.password:this.sessionService.getItem("token")?this.sessionService.getItem("token"):"",twoFAToken:Rn.payload.twoFAToken?Rn.payload.twoFAToken:""}).pipe((0,w.T)(Pi=>{this.logger.info(Pi),this.store.dispatch((0,ye.Gd)({payload:{action:"Login",status:C.wn.COMPLETED}})),this.setLoggedInDetails(Rn.payload.defaultPassword,Pi)}),(0,u.W)(Pi=>(this.logger.info("Redirecting to Login Error Page"),this.handleErrorWithoutAlert("Login",C.MZ.NO_SPINNER,Pi),+Hn.SSO.rtlSSO?this.router.navigate(["/error"],{state:{errorCode:"406",errorMessage:Pi.error&&Pi.error.error?Pi.error.error:"Single Sign On Failed!"}}):this.router.navigate(["./login"],{state:{logoutReason:Pi.error&&Pi.error.error?Pi.error.error:"Single Sign On Failed!"}}),(0,T.of)({type:C.aU.VOID}))))))),{dispatch:!1}),this.tokenVerify=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.VERIFY_TWO_FA),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.mt)({payload:C.MZ.VERIFY_TOKEN})),this.store.dispatch((0,ye.Gd)({payload:{action:"VerifyToken",status:C.wn.INITIATED}})),this.httpClient.post(C.rl.AUTHENTICATE_API+"/token",{authentication2FA:Rn.payload.token}).pipe((0,w.T)(Hn=>{this.logger.info(Hn),this.store.dispatch((0,ye.y0)({payload:C.MZ.VERIFY_TOKEN})),this.store.dispatch((0,ye.Gd)({payload:{action:"VerifyToken",status:C.wn.COMPLETED}})),this.logger.info("Token Successfully Verified!"),this.setLoggedInDetails(!1,Rn.payload.authResponse)}),(0,u.W)(Hn=>(this.handleErrorWithAlert("VerifyToken",C.MZ.VERIFY_TOKEN,"Authorization Failed!",C.rl.AUTHENTICATE_API+"/token",Hn),(0,T.of)({type:C.aU.VOID}))))))),{dispatch:!1}),this.logOut=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.LOGOUT),(0,O.E)(this.store.select(j.qv)),(0,f.Z)(([Rn,Hn])=>{this.store.dispatch((0,ye.mt)({payload:C.MZ.LOG_OUT})),Hn.SSO&&+Hn.SSO.rtlSSO&&(window.location.href=Hn.SSO.logoutRedirectLink),this.sessionService.clearAll(),this.store.dispatch((0,ye.Fl)({payload:{}})),this.store.dispatch((0,ye.y0)({payload:C.MZ.LOG_OUT})),this.logger.info("Logged out from browser");const Pi=()=>{Hn.SSO&&+Hn.SSO.rtlSSO||(Rn.payload&&this.sessionService.setItem("logoutReason",Rn.payload),window.location.href=document.baseURI+"login")};return this.httpClient.get(C.rl.AUTHENTICATE_API+"/logout").pipe((0,w.T)(da=>{this.logger.info(da),this.store.dispatch((0,ye.y0)({payload:C.MZ.LOG_OUT})),this.logger.info("Logged out from server"),Pi()}),(0,u.W)(da=>(this.logger.error(da),this.store.dispatch((0,ye.y0)({payload:C.MZ.LOG_OUT})),Pi(),(0,T.of)({type:C.aU.VOID}))))})),{dispatch:!1}),this.resetPassword=(0,d.EH)(()=>this.actions.pipe((0,L.Q)(this.unSubs[1]),(0,d.gp)(C.aU.RESET_PASSWORD),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.Gd)({payload:{action:"ResetPassword",status:C.wn.INITIATED}})),this.httpClient.post(C.rl.AUTHENTICATE_API+"/reset",{currPassword:Rn.payload.currPassword,newPassword:Rn.payload.newPassword}).pipe((0,L.Q)(this.unSubs[0]),(0,w.T)(Hn=>(this.logger.info(Hn),this.store.dispatch((0,ye.Gd)({payload:{action:"ResetPassword",status:C.wn.COMPLETED}})),this.sessionService.setItem("defaultPassword",!1),this.logger.info("Password Reset Successful!"),this.store.dispatch((0,ye.UI)({payload:"Password Reset Successful!"})),this.SetToken(Hn.token),{type:C.aU.RESET_PASSWORD_RES,payload:Hn.token})),(0,u.W)(Hn=>(this.handleErrorWithAlert("ResetPassword",C.MZ.NO_SPINNER,"Password Reset Failed!",C.rl.AUTHENTICATE_API+"/reset",Hn),(0,T.of)({type:C.aU.VOID})))))))),this.setSelectedNode=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.SET_SELECTED_NODE),(0,f.Z)(Rn=>(this.store.dispatch((0,ye.mt)({payload:Rn.payload.uiMessage})),this.store.dispatch((0,ye.Gd)({payload:{action:"UpdateSelNode",status:C.wn.INITIATED}})),this.httpClient.get(C.rl.CONF_API+"/updateSelNode/"+Rn.payload.currentLnNode?.index+"/"+Rn.payload.prevLnNodeIndex).pipe((0,w.T)(Hn=>(this.logger.info(Hn),this.store.dispatch((0,ye.Gd)({payload:{action:"UpdateSelNode",status:C.wn.COMPLETED}})),this.store.dispatch((0,ye.y0)({payload:Rn.payload.uiMessage})),this.initializeNode(Hn,Rn.payload.isInitialSetup),{type:C.aU.VOID})),(0,u.W)(Hn=>(this.handleErrorWithAlert("UpdateSelNode",Rn.payload.uiMessage,"Update Selected Node Failed!",C.rl.CONF_API+"/updateSelNode",Hn),(0,T.of)({type:C.aU.VOID})))))))),this.fetchFile=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.FETCH_FILE),(0,f.Z)(Rn=>{this.store.dispatch((0,ye.mt)({payload:C.MZ.DOWNLOAD_BACKUP_FILE})),this.store.dispatch((0,ye.Gd)({payload:{action:"FetchFile",status:C.wn.INITIATED}}));const Hn="?channel="+Rn.payload.channelPoint+(Rn.payload.path?"&path="+Rn.payload.path:"");return this.httpClient.get(C.rl.CONF_API+"/file"+Hn).pipe((0,w.T)(Pi=>(this.store.dispatch((0,ye.Gd)({payload:{action:"FetchFile",status:C.wn.COMPLETED}})),this.store.dispatch((0,ye.y0)({payload:C.MZ.DOWNLOAD_BACKUP_FILE})),{type:C.aU.SHOW_FILE,payload:Pi})),(0,u.W)(Pi=>(this.handleErrorWithAlert("fetchFile",C.MZ.DOWNLOAD_BACKUP_FILE,"Download Backup File Failed!",C.rl.CONF_API+"/file"+Hn,{status:this.commonService.extractErrorNumber(Pi),error:{error:this.commonService.extractErrorCode(Pi)}}),(0,T.of)({type:C.aU.VOID}))))}))),this.showFile=(0,d.EH)(()=>this.actions.pipe((0,d.gp)(C.aU.SHOW_FILE),(0,w.T)(Rn=>Rn.payload)),{dispatch:!1})}initializeNode(Vn,ii){this.logger.info("Initializing node from RTL Effects.");const Bn=ii?"":"HOME";if(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("clnUnlocked"),this.sessionService.removeItem("eclUnlocked"),Vn.settings.currencyUnits=[...C.A0,Vn.settings?.currencyUnit?Vn.settings?.currencyUnit:""],this.store.dispatch((0,ye.Tn)({payload:Vn})),this.store.dispatch((0,zi.p1)()),this.store.dispatch((0,It.gf)()),this.store.dispatch((0,an.Hh)()),this.sessionService.getItem("token")){const ia=Vn.lnImplementation?Vn.lnImplementation.toUpperCase():"LND";this.dataService.setLnImplementation(ia);const ra=!(0,i.naY)()&&window.location.origin?window.location.origin+"/rtl/api":C.H$;switch(this.wsService.connectWebSocket(ra?.replace(/^http/,"ws")+C.rl.Web_SOCKET_API,Vn.index?Vn.index.toString():"-1"),ia){case"CLN":this.store.dispatch((0,It.lg)()),this.store.dispatch((0,It.Aw)({payload:{loadPage:Bn}}));break;case"ECL":this.store.dispatch((0,an.lg)()),this.store.dispatch((0,an.zR)({payload:{loadPage:Bn}}));break;default:this.store.dispatch((0,zi.lg)()),this.store.dispatch((0,zi.Br)({payload:{loadPage:Bn}}))}}}SetToken(Vn){Vn?(this.sessionService.setItem("lndUnlocked","true"),this.sessionService.setItem("token",Vn)):(this.sessionService.removeItem("lndUnlocked"),this.sessionService.removeItem("token"))}setLoggedInDetails(Vn,ii){this.logger.info("Successfully Authorized!"),this.SetToken(ii.token),this.sessionService.setItem("defaultPassword",Vn),Vn?(this.store.dispatch((0,ye.UI)({payload:"Reset your password."})),this.router.navigate(["/settings/auth"])):this.store.dispatch((0,ye.NU)())}handleErrorWithoutAlert(Vn,ii,Bn){this.logger.error("ERROR IN: "+Vn+"\n"+JSON.stringify(Bn)),401===Bn.status&&"Login"!==Vn?(this.logger.info("Redirecting to Login"),this.store.dispatch((0,ye.Jh)()),this.store.dispatch((0,ye.ri)({payload:"Authentication Failed: "+JSON.stringify(Bn.error)}))):(this.store.dispatch((0,ye.y0)({payload:ii})),this.store.dispatch((0,ye.Gd)({payload:{action:Vn,status:C.wn.ERROR,statusCode:Bn.status?Bn.status.toString():"",message:this.commonService.extractErrorMessage(Bn)}})))}handleErrorWithAlert(Vn,ii,Bn,ia,ra){if(this.logger.error(ra),0===ra.status&&ra.statusText&&"Unknown Error"===ra.statusText&&(ra={status:400,error:{message:"Unknown Error / CORS Origin Not Allowed"}}),401===ra.status&&"Login"!==Vn)this.logger.info("Redirecting to Login"),this.store.dispatch((0,ye.Jh)()),this.store.dispatch((0,ye.ri)({payload:"Authentication Failed: "+JSON.stringify(ra.error)}));else{this.store.dispatch((0,ye.y0)({payload:ii}));const fa=this.commonService.extractErrorMessage(ra);this.store.dispatch((0,ye.xO)({payload:{data:{type:"ERROR",alertTitle:Bn,message:{code:ra.status?ra.status:"Unknown Error",message:fa,URL:ia},component:ae.f}}})),this.store.dispatch((0,ye.Gd)({payload:{action:Vn,status:C.wn.ERROR,statusCode:ra.status?ra.status.toString():"",message:fa,URL:ia}}))}}ngOnDestroy(){this.unSubs.forEach(Vn=>{Vn.next(null),Vn.complete()})}static#e=rn=()=>(this.\u0275fac=function(ii){return new(ii||In)(W.KVO(d.En),W.KVO(Yt.Qq),W.KVO(V.il),W.KVO(G.gP),W.KVO(Un.I),W.KVO(zn.Q),W.KVO(xe.h),W.KVO(Fn.u),W.KVO(B.bZ),W.KVO(re.UG),W.KVO(Ee.Ix))},this.\u0275prov=W.jDH({token:In,factory:In.\u0275fac}))}return rn(),In})()},9647(Zt,pe,l){"use strict";l.d(pe,{Az:()=>u,E2:()=>f,Kq:()=>O,N:()=>e,_c:()=>T,qv:()=>w});var i=l(9640);const d=(0,i.UX)("root"),T=((0,i.Mz)(d,L=>L.apiURL),(0,i.Mz)(d,L=>L.selNode)),w=(0,i.Mz)(d,L=>L.appConfig),e=(0,i.Mz)(d,L=>L.nodeData),O=(0,i.Mz)(d,L=>L.apisCallStatus.Login),f=(0,i.Mz)(d,L=>L.apisCallStatus.IsAuthorized),u=(0,i.Mz)(d,L=>({nodeDate:L.nodeData,selNode:L.selNode}))},599(Zt,pe,l){"use strict";var i=l(7303),d=l(2512),v=l(2615),T=l(177),w=l(2200),e=l(3664),O=l(7705),f=l(3393);class C extends i.qj{supportsDOMEvents=!0;static makeCurrent(){(0,i.ig)(new C)}onAndCancel(_,m,E,D){return _.addEventListener(m,E,D),()=>{_.removeEventListener(m,E,D)}}dispatchEvent(_,m){_.dispatchEvent(m)}remove(_){_.remove()}createElement(_,m){return(m=m||this.getDefaultDocument()).createElement(_)}createHtmlDocument(){return document.implementation.createHTMLDocument("fakeTitle")}getDefaultDocument(){return document}isElementNode(_){return _.nodeType===Node.ELEMENT_NODE}isShadowRoot(_){return _ instanceof DocumentFragment}getGlobalEventTarget(_,m){return"window"===m?window:"document"===m?_:"body"===m?_.body:null}getBaseHref(_){const m=function A(){return B=B||document.head.querySelector("base"),B?B.getAttribute("href"):null}();return null==m?null:function Pe(b){return new URL(b,document.baseURI).pathname}(m)}resetBaseElement(){B=null}getUserAgent(){return window.navigator.userAgent}getCookie(_){return(0,d.b)(document.cookie,_)}}let B=null,Ce=(()=>{class b{build(){return new XMLHttpRequest}static \u0275fac=function(E){return new(E||b)};static \u0275prov=v.jDH({token:b,factory:b.\u0275fac})}return b})();const Ae=["alt","control","meta","shift"],j={"\b":"Backspace","\t":"Tab","\x7f":"Delete","\x1b":"Escape",Del:"Delete",Esc:"Escape",Left:"ArrowLeft",Right:"ArrowRight",Up:"ArrowUp",Down:"ArrowDown",Menu:"ContextMenu",Scroll:"ScrollLock",Win:"OS"},W={alt:b=>b.altKey,control:b=>b.ctrlKey,meta:b=>b.metaKey,shift:b=>b.shiftKey};let G=(()=>{class b extends f.Hl{constructor(m){super(m)}supports(m){return null!=b.parseEventName(m)}addEventListener(m,E,D,I){const Oe=b.parseEventName(E),Ct=b.eventCallback(Oe.fullKey,D,this.manager.getZone());return this.manager.getZone().runOutsideAngular(()=>(0,i.rb)().onAndCancel(m,Oe.domEventName,Ct,I))}static parseEventName(m){const E=m.toLowerCase().split("."),D=E.shift();if(0===E.length||"keydown"!==D&&"keyup"!==D)return null;const I=b._normalizeKey(E.pop());let Oe="",Ct=E.indexOf("code");if(Ct>-1&&(E.splice(Ct,1),Oe="code."),Ae.forEach(yn=>{const Yn=E.indexOf(yn);Yn>-1&&(E.splice(Yn,1),Oe+=yn+".")}),Oe+=I,0!=E.length||0===I.length)return null;const Bt={};return Bt.domEventName=D,Bt.fullKey=Oe,Bt}static matchEventFullKeyCode(m,E){let D=j[m.key]||m.key,I="";return E.indexOf("code.")>-1&&(D=m.code,I="code."),!(null==D||!D)&&(D=D.toLowerCase()," "===D?D="space":"."===D&&(D="dot"),Ae.forEach(Oe=>{Oe!==D&&(0,W[Oe])(m)&&(I+=Oe+".")}),I+=D,I===E)}static eventCallback(m,E,D){return I=>{b.matchEventFullKeyCode(I,m)&&D.runGuarded(()=>E(I))}}static _normalizeKey(m){return"esc"===m?"escape":m}static \u0275fac=function(E){return new(E||b)(v.KVO(v.qQL))};static \u0275prov=v.jDH({token:b,factory:b.\u0275fac})}return b})();const De=(0,O.oH4)(O.fpN,"browser",[{provide:e.Agw,useValue:T.AJ},{provide:e.PLl,useValue:function ce(){C.makeCurrent()},multi:!0},{provide:v.qQL,useFactory:function ne(){return(0,e._9u)(document),document}}]),Xe=[{provide:e.$Ln,useClass:class le{addToWindow(_){v.laP.getAngularTestability=(E,D=!0)=>{const I=_.findTestabilityInTree(E,D);if(null==I)throw new v.buA(5103,!1);return I},v.laP.getAllAngularTestabilities=()=>_.getAllTestabilities(),v.laP.getAllAngularRootElements=()=>_.getAllRootElements(),v.laP.frameworkStabilizers||(v.laP.frameworkStabilizers=[]),v.laP.frameworkStabilizers.push(E=>{const D=v.laP.getAllAngularTestabilities();let I=D.length;const Oe=function(){I--,0==I&&E()};D.forEach(Ct=>{Ct.whenStable(Oe)})})}findTestabilityInTree(_,m,E){return null==m?null:_.getTestability(m)??(E?(0,i.rb)().isShadowRoot(m)?this.findTestabilityInTree(_,m.host,!0):this.findTestabilityInTree(_,m.parentElement,!0):null)}}},{provide:e.dOL,useClass:e.NYb,deps:[e.SKi,e.giA,e.$Ln]},{provide:e.NYb,useClass:e.NYb,deps:[e.SKi,e.giA,e.$Ln]}],_e=[{provide:v.GBX,useValue:"root"},{provide:v.zcH,useFactory:function be(){return new v.zcH}},{provide:f.Q5,useClass:f.jd,multi:!0,deps:[v.qQL]},{provide:f.Q5,useClass:G,multi:!0,deps:[v.qQL]},f.mE,f.CI,f.EU,{provide:e._9s,useExisting:f.mE},{provide:d.N,useClass:Ce},[]];let he=(()=>{class b{constructor(){}static \u0275fac=function(E){return new(E||b)};static \u0275mod=e.$C({type:b});static \u0275inj=v.G2t({providers:[..._e,...Xe],imports:[w.MD,O.Hbi]})}return b})();var Dt=l(345),lt=l(1514);function ie(b){return new v.buA(3e3,!1)}function nt(b){return new v.buA(3002,!1)}function vt(b){switch(b.length){case 0:return new lt.sf;case 1:return b[0];default:return new lt.PZ(b)}}function ee(b,_,m=new Map,E=new Map){const D=[],I=[];let Oe=-1,Ct=null;if(_.forEach(Bt=>{const yn=Bt.get("offset"),Yn=yn==Oe,jn=Yn&&Ct||new Map;Bt.forEach((Fi,Zi)=>{let Mi=Zi,Ai=Fi;if("offset"!==Zi)switch(Mi=b.normalizePropertyName(Mi,D),Ai){case lt.FX:Ai=m.get(Zi);break;case lt.kp:Ai=E.get(Zi);break;default:Ai=b.normalizeStyleValue(Zi,Mi,Ai,D)}jn.set(Mi,Ai)}),Yn||I.push(jn),Ct=jn,Oe=yn}),D.length)throw function h(){return new v.buA(3502,!1)}();return I}function ye(b,_,m,E){switch(_){case"start":b.onStart(()=>E(m&&ke(m,"start",b)));break;case"done":b.onDone(()=>E(m&&ke(m,"done",b)));break;case"destroy":b.onDestroy(()=>E(m&&ke(m,"destroy",b)))}}function ke(b,_,m){const I=Se(b.element,b.triggerName,b.fromState,b.toState,_||b.phaseName,m.totalTime??b.totalTime,!!m.disabled),Oe=b._data;return null!=Oe&&(I._data=Oe),I}function Se(b,_,m,E,D="",I=0,Oe){return{element:b,triggerName:_,fromState:m,toState:E,phaseName:D,totalTime:I,disabled:!!Oe}}function ge(b,_,m){let E=b.get(_);return E||b.set(_,E=m),E}function N(b){const _=b.indexOf(":");return[b.substring(1,_),b.slice(_+1)]}const Z=typeof document>"u"?null:document.documentElement;function Me(b){const _=b.parentNode||b.host||null;return _===Z?null:_}let qe=null,pn=!1;function Ge(b,_){for(;_;){if(_===b)return!0;_=Me(_)}return!1}function Ot(b,_,m){if(m)return Array.from(b.querySelectorAll(_));const E=b.querySelector(_);return E?[E]:[]}const tn="ng-enter",on="ng-leave",un="ng-trigger",Nt=".ng-trigger",dn="ng-animating",xn=".ng-animating";function Jn(b){if("number"==typeof b)return b;const _=b.match(/^(-?[\.\d]+)(m?s)/);return!_||_.length<2?0:xi(parseFloat(_[1]),_[2])}function xi(b,_){return"s"===_?1e3*b:b}function Yi(b,_,m){return b.hasOwnProperty("duration")?b:function At(b,_,m){let E,D=0,I="";if("string"==typeof b){const Oe=b.match(Tt);if(null===Oe)return _.push(ie()),{duration:0,delay:0,easing:""};E=xi(parseFloat(Oe[1]),Oe[2]);const Ct=Oe[3];null!=Ct&&(D=xi(parseFloat(Ct),Oe[4]));const Bt=Oe[5];Bt&&(I=Bt)}else E=b;if(!m){let Oe=!1,Ct=_.length;E<0&&(_.push(function P(){return new v.buA(3100,!1)}()),Oe=!0),D<0&&(_.push(function F(){return new v.buA(3101,!1)}()),Oe=!0),Oe&&_.splice(Ct,0,ie())}return{duration:E,delay:D,easing:I}}(b,_,m)}const Tt=/^(-?[\.\d]+)(m?s)(?:\s+(-?[\.\d]+)(m?s))?(?:\s+([-a-z]+(?:\(.+?\))?))?$/i;function Lt(b,_,m){_.forEach((E,D)=>{const I=an(D);m&&!m.has(D)&&m.set(D,b.style[I]),b.style[I]=E})}function Ht(b,_){_.forEach((m,E)=>{const D=an(E);b.style[D]=""})}function _n(b){return Array.isArray(b)?1==b.length?b[0]:(0,lt.K2)(b):b}const bi=new RegExp("{{\\s*(.+?)\\s*}}","g");function Qi(b){let _=[];if("string"==typeof b){let m;for(;m=bi.exec(b);)_.push(m[1]);bi.lastIndex=0}return _}function zi(b,_,m){const E=`${b}`,D=E.replace(bi,(I,Oe)=>{let Ct=_[Oe];return null==Ct&&(m.push(function H(){return new v.buA(3003,!1)}()),Ct=""),Ct.toString()});return D==E?b:D}const It=/-+([a-z0-9])/g;function an(b){return b.replace(It,(..._)=>_[1].toUpperCase())}function Fn(b,_,m){switch(_.type){case lt.If.Trigger:return b.visitTrigger(_,m);case lt.If.State:return b.visitState(_,m);case lt.If.Transition:return b.visitTransition(_,m);case lt.If.Sequence:return b.visitSequence(_,m);case lt.If.Group:return b.visitGroup(_,m);case lt.If.Animate:return b.visitAnimate(_,m);case lt.If.Keyframes:return b.visitKeyframes(_,m);case lt.If.Style:return b.visitStyle(_,m);case lt.If.Reference:return b.visitReference(_,m);case lt.If.AnimateChild:return b.visitAnimateChild(_,m);case lt.If.AnimateRef:return b.visitAnimateRef(_,m);case lt.If.Query:return b.visitQuery(_,m);case lt.If.Stagger:return b.visitStagger(_,m);default:throw function $(){return new v.buA(3004,!1)}()}}function ci(b,_){return window.getComputedStyle(b)[_]}let Bn=(()=>{class b{validateStyleProperty(m){return function Je(b){qe||(qe=function ut(){return typeof document<"u"?document.body:null}()||{},pn=!!qe.style&&"WebkitAppearance"in qe.style);let _=!0;return qe.style&&!function at(b){return"ebkit"==b.substring(1,6)}(b)&&(_=b in qe.style,!_&&pn&&(_="Webkit"+b.charAt(0).toUpperCase()+b.slice(1)in qe.style)),_}(m)}containsElement(m,E){return Ge(m,E)}getParentElement(m){return Me(m)}query(m,E,D){return Ot(m,E,D)}computeStyle(m,E,D){return D||""}animate(m,E,D,I,Oe,Ct=[],Bt){return new lt.sf(D,I)}static \u0275fac=function(E){return new(E||b)};static \u0275prov=v.jDH({token:b,factory:b.\u0275fac})}return b})();class ia{static NOOP=new Bn}class ra{}const ha=new Set(["width","height","minWidth","minHeight","maxWidth","maxHeight","left","top","bottom","right","fontSize","outlineWidth","outlineOffset","paddingTop","paddingLeft","paddingBottom","paddingRight","marginTop","marginLeft","marginBottom","marginRight","borderRadius","borderWidth","borderTopWidth","borderLeftWidth","borderRightWidth","borderBottomWidth","textIndent","perspective"]);class qt extends ra{normalizePropertyName(_,m){return an(_)}normalizeStyleValue(_,m,E,D){let I="";const Oe=E.toString().trim();if(ha.has(m)&&0!==E&&"0"!==E)if("number"==typeof E)I="px";else{const Ct=E.match(/^[+-]?[\d\.]+([a-z]*)$/);Ct&&0==Ct[1].length&&D.push(function Ke(){return new v.buA(3005,!1)}())}return Oe+I}}const vn=new Set(["true","1"]),oi=new Set(["false","0"]);function bn(b,_){const m=vn.has(b)||oi.has(b),E=vn.has(_)||oi.has(_);return(D,I)=>{let Oe="*"==b||b==D,Ct="*"==_||_==I;return!Oe&&m&&"boolean"==typeof D&&(Oe=D?vn.has(b):oi.has(b)),!Ct&&E&&"boolean"==typeof I&&(Ct=I?vn.has(_):oi.has(_)),Oe&&Ct}}const yi=new RegExp("s*:selfs*,?","g");function Wi(b,_,m,E){return new Fe(b).build(_,m,E)}class Fe{_driver;constructor(_){this._driver=_}build(_,m,E){const D=new Et(m);return this._resetContextStyleTimingState(D),Fn(this,_n(_),D)}_resetContextStyleTimingState(_){_.currentQuerySelector="",_.collectedStyles=new Map,_.collectedStyles.set("",new Map),_.currentTime=0}visitTrigger(_,m){let E=m.queryCount=0,D=m.depCount=0;const I=[],Oe=[];return"@"==_.name.charAt(0)&&m.errors.push(function Vt(){return new v.buA(3006,!1)}()),_.definitions.forEach(Ct=>{if(this._resetContextStyleTimingState(m),Ct.type==lt.If.State){const Bt=Ct,yn=Bt.name;yn.toString().split(/\s*,\s*/).forEach(Yn=>{Bt.name=Yn,I.push(this.visitState(Bt,m))}),Bt.name=yn}else if(Ct.type==lt.If.Transition){const Bt=this.visitTransition(Ct,m);E+=Bt.queryCount,D+=Bt.depCount,Oe.push(Bt)}else m.errors.push(function St(){return new v.buA(3007,!1)}())}),{type:lt.If.Trigger,name:_.name,states:I,transitions:Oe,queryCount:E,depCount:D,options:null}}visitState(_,m){const E=this.visitStyle(_.styles,m),D=_.options&&_.options.params||null;if(E.containsDynamicStyles){const I=new Set,Oe=D||{};E.styles.forEach(Ct=>{Ct instanceof Map&&Ct.forEach(Bt=>{Qi(Bt).forEach(yn=>{Oe.hasOwnProperty(yn)||I.add(yn)})})}),I.size&&m.errors.push(function ot(){return new v.buA(3008,!1)}(0,I.values()))}return{type:lt.If.State,name:_.name,style:E,options:D?{params:D}:null}}visitTransition(_,m){m.queryCount=0,m.depCount=0;const E=Fn(this,_n(_.animation),m),D=function da(b,_){const m=[];return"string"==typeof b?b.split(/\s*,\s*/).forEach(E=>function Ta(b,_,m){if(":"==b[0]){const Bt=function en(b,_){switch(b){case":enter":return"void => *";case":leave":return"* => void";case":increment":return(m,E)=>parseFloat(E)>parseFloat(m);case":decrement":return(m,E)=>parseFloat(E) *"}}(b,m);if("function"==typeof Bt)return void _.push(Bt);b=Bt}const E=b.match(/^(\*|[-\w]+)\s*()\s*(\*|[-\w]+)$/);if(null==E||E.length<4)return m.push(function rt(){return new v.buA(3015,!1)}()),_;const D=E[1],I=E[2],Oe=E[3];_.push(bn(D,Oe)),"<"==I[0]&&("*"!=D||"*"!=Oe)&&_.push(bn(Oe,D))}(E,m,_)):m.push(b),m}(_.expr,m.errors);return{type:lt.If.Transition,matchers:D,animation:E,queryCount:m.queryCount,depCount:m.depCount,options:di(_.options)}}visitSequence(_,m){return{type:lt.If.Sequence,steps:_.steps.map(E=>Fn(this,E,m)),options:di(_.options)}}visitGroup(_,m){const E=m.currentTime;let D=0;const I=_.steps.map(Oe=>{m.currentTime=E;const Ct=Fn(this,Oe,m);return D=Math.max(D,m.currentTime),Ct});return m.currentTime=D,{type:lt.If.Group,steps:I,options:di(_.options)}}visitAnimate(_,m){const E=function ti(b,_){if(b.hasOwnProperty("duration"))return b;if("number"==typeof b)return Ii(Yi(b,_).duration,0,"");const m=b;if(m.split(/\s+/).some(I=>"{"==I.charAt(0)&&"{"==I.charAt(1))){const I=Ii(0,0,"");return I.dynamic=!0,I.strValue=m,I}const D=Yi(m,_);return Ii(D.duration,D.delay,D.easing)}(_.timings,m.errors);m.currentAnimateTimings=E;let D,I=_.styles?_.styles:(0,lt.iF)({});if(I.type==lt.If.Keyframes)D=this.visitKeyframes(I,m);else{let Oe=_.styles,Ct=!1;if(!Oe){Ct=!0;const yn={};E.easing&&(yn.easing=E.easing),Oe=(0,lt.iF)(yn)}m.currentTime+=E.duration+E.delay;const Bt=this.visitStyle(Oe,m);Bt.isEmptyStep=Ct,D=Bt}return m.currentAnimateTimings=null,{type:lt.If.Animate,timings:E,style:D,options:null}}visitStyle(_,m){const E=this._makeStyleAst(_,m);return this._validateStyleAst(E,m),E}_makeStyleAst(_,m){const E=[],D=Array.isArray(_.styles)?_.styles:[_.styles];for(let Ct of D)"string"==typeof Ct?Ct===lt.kp?E.push(Ct):m.errors.push(nt()):E.push(new Map(Object.entries(Ct)));let I=!1,Oe=null;return E.forEach(Ct=>{if(Ct instanceof Map&&(Ct.has("easing")&&(Oe=Ct.get("easing"),Ct.delete("easing")),!I))for(let Bt of Ct.values())if(Bt.toString().indexOf("{{")>=0){I=!0;break}}),{type:lt.If.Style,styles:E,easing:Oe,offset:_.offset,containsDynamicStyles:I,options:null}}_validateStyleAst(_,m){const E=m.currentAnimateTimings;let D=m.currentTime,I=m.currentTime;E&&I>0&&(I-=E.duration+E.delay),_.styles.forEach(Oe=>{"string"!=typeof Oe&&Oe.forEach((Ct,Bt)=>{const yn=m.collectedStyles.get(m.currentQuerySelector),Yn=yn.get(Bt);let jn=!0;Yn&&(I!=D&&I>=Yn.startTime&&D<=Yn.endTime&&(m.errors.push(function ht(){return new v.buA(3010,!1)}()),jn=!1),I=Yn.startTime),jn&&yn.set(Bt,{startTime:I,endTime:D}),m.options&&function fi(b,_,m){const E=_.params||{},D=Qi(b);D.length&&D.forEach(I=>{E.hasOwnProperty(I)||m.push(function ve(){return new v.buA(3001,!1)}())})}(Ct,m.options,m.errors)})})}visitKeyframes(_,m){const E={type:lt.If.Keyframes,styles:[],options:null};if(!m.currentAnimateTimings)return m.errors.push(function oe(){return new v.buA(3011,!1)}()),E;let I=0;const Oe=[];let Ct=!1,Bt=!1,yn=0;const Yn=_.steps.map(Ia=>{const fs=this._makeStyleAst(Ia,m);let $s=null!=fs.offset?fs.offset:function Jt(b){if("string"==typeof b)return null;let _=null;if(Array.isArray(b))b.forEach(m=>{if(m instanceof Map&&m.has("offset")){const E=m;_=parseFloat(E.get("offset")),E.delete("offset")}});else if(b instanceof Map&&b.has("offset")){const m=b;_=parseFloat(m.get("offset")),m.delete("offset")}return _}(fs.styles),Ea=0;return null!=$s&&(I++,Ea=fs.offset=$s),Bt=Bt||Ea<0||Ea>1,Ct=Ct||Ea0&&I{const $s=Fi>0?fs==Zi?1:Fi*fs:Oe[fs],Ea=$s*Sa;m.currentTime=Mi+Ai.delay+Ea,Ai.duration=Ea,this._validateStyleAst(Ia,m),Ia.offset=$s,E.styles.push(Ia)}),E}visitReference(_,m){return{type:lt.If.Reference,animation:Fn(this,_n(_.animation),m),options:di(_.options)}}visitAnimateChild(_,m){return m.depCount++,{type:lt.If.AnimateChild,options:di(_.options)}}visitAnimateRef(_,m){return{type:lt.If.AnimateRef,animation:this.visitReference(_.animation,m),options:di(_.options)}}visitQuery(_,m){const E=m.currentQuerySelector,D=_.options||{};m.queryCount++,m.currentQuery=_;const[I,Oe]=function Wt(b){const _=!!b.split(/\s*,\s*/).find(m=>":self"==m);return _&&(b=b.replace(yi,"")),b=b.replace(/@\*/g,Nt).replace(/@\w+/g,m=>Nt+"-"+m.slice(1)).replace(/:animating/g,xn),[b,_]}(_.selector);m.currentQuerySelector=E.length?E+" "+I:I,ge(m.collectedStyles,m.currentQuerySelector,new Map);const Ct=Fn(this,_n(_.animation),m);return m.currentQuery=null,m.currentQuerySelector=E,{type:lt.If.Query,selector:I,limit:D.limit||0,optional:!!D.optional,includeSelf:Oe,animation:Ct,originalSelector:_.selector,options:di(_.options)}}visitStagger(_,m){m.currentQuery||m.errors.push(function gt(){return new v.buA(3013,!1)}());const E="full"===_.timings?{duration:0,delay:0,easing:"full"}:Yi(_.timings,m.errors,!0);return{type:lt.If.Stagger,animation:Fn(this,_n(_.animation),m),timings:E,options:null}}}class Et{errors;queryCount=0;depCount=0;currentTransition=null;currentQuery=null;currentQuerySelector=null;currentAnimateTimings=null;currentTime=0;collectedStyles=new Map;options=null;unsupportedCSSPropertiesFound=new Set;constructor(_){this.errors=_}}function di(b){return b?(b={...b}).params&&(b.params=function Ve(b){return b?{...b}:null}(b.params)):b={},b}function Ii(b,_,m){return{duration:b,delay:_,easing:m}}function ca(b,_,m,E,D,I,Oe=null,Ct=!1){return{type:1,element:b,keyframes:_,preStyleProps:m,postStyleProps:E,duration:D,delay:I,totalTime:D+I,easing:Oe,subTimeline:Ct}}class nn{_map=new Map;get(_){return this._map.get(_)||[]}append(_,m){let E=this._map.get(_);E||this._map.set(_,E=[]),E.push(...m)}has(_){return this._map.has(_)}clear(){this._map.clear()}}const tt=new RegExp(":enter","g"),Xt=new RegExp(":leave","g");function Nn(b,_,m,E,D,I=new Map,Oe=new Map,Ct,Bt,yn=[]){return(new Ki).buildKeyframes(b,_,m,E,D,I,Oe,Ct,Bt,yn)}class Ki{buildKeyframes(_,m,E,D,I,Oe,Ct,Bt,yn,Yn=[]){yn=yn||new nn;const jn=new Ua(_,m,yn,D,I,Yn,[]);jn.options=Bt;const Fi=Bt.delay?Jn(Bt.delay):0;jn.currentTimeline.delayNextStep(Fi),jn.currentTimeline.setStyles([Oe],null,jn.errors,Bt),Fn(this,E,jn);const Zi=jn.timelines.filter(Mi=>Mi.containsAnimation());if(Zi.length&&Ct.size){let Mi;for(let Ai=Zi.length-1;Ai>=0;Ai--){const Sa=Zi[Ai];if(Sa.element===m){Mi=Sa;break}}Mi&&!Mi.allowOnlyTimelineStyles()&&Mi.setStyles([Ct],null,jn.errors,Bt)}return Zi.length?Zi.map(Mi=>Mi.buildKeyframes()):[ca(m,[],[],[],0,Fi,"",!1)]}visitTrigger(_,m){}visitState(_,m){}visitTransition(_,m){}visitAnimateChild(_,m){const E=m.subInstructions.get(m.element);if(E){const D=m.createSubContext(_.options),I=m.currentTimeline.currentTime,Oe=this._visitSubInstructions(E,D,D.options);I!=Oe&&m.transformIntoNewTimeline(Oe)}m.previousNode=_}visitAnimateRef(_,m){const E=m.createSubContext(_.options);E.transformIntoNewTimeline(),this._applyAnimationRefDelays([_.options,_.animation.options],m,E),this.visitReference(_.animation,E),m.transformIntoNewTimeline(E.currentTimeline.currentTime),m.previousNode=_}_applyAnimationRefDelays(_,m,E){for(const D of _){const I=D?.delay;if(I){const Oe="number"==typeof I?I:Jn(zi(I,D?.params??{},m.errors));E.delayNextStep(Oe)}}}_visitSubInstructions(_,m,E){let I=m.currentTimeline.currentTime;const Oe=null!=E.duration?Jn(E.duration):null,Ct=null!=E.delay?Jn(E.delay):null;return 0!==Oe&&_.forEach(Bt=>{const yn=m.appendInstructionToTimeline(Bt,Oe,Ct);I=Math.max(I,yn.duration+yn.delay)}),I}visitReference(_,m){m.updateOptions(_.options,!0),Fn(this,_.animation,m),m.previousNode=_}visitSequence(_,m){const E=m.subContextCount;let D=m;const I=_.options;if(I&&(I.params||I.delay)&&(D=m.createSubContext(I),D.transformIntoNewTimeline(),null!=I.delay)){D.previousNode.type==lt.If.Style&&(D.currentTimeline.snapshotCurrentStyles(),D.previousNode=_a);const Oe=Jn(I.delay);D.delayNextStep(Oe)}_.steps.length&&(_.steps.forEach(Oe=>Fn(this,Oe,D)),D.currentTimeline.applyStylesToKeyframe(),D.subContextCount>E&&D.transformIntoNewTimeline()),m.previousNode=_}visitGroup(_,m){const E=[];let D=m.currentTimeline.currentTime;const I=_.options&&_.options.delay?Jn(_.options.delay):0;_.steps.forEach(Oe=>{const Ct=m.createSubContext(_.options);I&&Ct.delayNextStep(I),Fn(this,Oe,Ct),D=Math.max(D,Ct.currentTimeline.currentTime),E.push(Ct.currentTimeline)}),E.forEach(Oe=>m.currentTimeline.mergeTimelineCollectedStyles(Oe)),m.transformIntoNewTimeline(D),m.previousNode=_}_visitTiming(_,m){if(_.dynamic){const E=_.strValue;return Yi(m.params?zi(E,m.params,m.errors):E,m.errors)}return{duration:_.duration,delay:_.delay,easing:_.easing}}visitAnimate(_,m){const E=m.currentAnimateTimings=this._visitTiming(_.timings,m),D=m.currentTimeline;E.delay&&(m.incrementTime(E.delay),D.snapshotCurrentStyles());const I=_.style;I.type==lt.If.Keyframes?this.visitKeyframes(I,m):(m.incrementTime(E.duration),this.visitStyle(I,m),D.applyStylesToKeyframe()),m.currentAnimateTimings=null,m.previousNode=_}visitStyle(_,m){const E=m.currentTimeline,D=m.currentAnimateTimings;!D&&E.hasCurrentStyleProperties()&&E.forwardFrame();const I=D&&D.easing||_.easing;_.isEmptyStep?E.applyEmptyStep(I):E.setStyles(_.styles,I,m.errors,m.options),m.previousNode=_}visitKeyframes(_,m){const E=m.currentAnimateTimings,D=m.currentTimeline.duration,I=E.duration,Ct=m.createSubContext().currentTimeline;Ct.easing=E.easing,_.styles.forEach(Bt=>{Ct.forwardTime((Bt.offset||0)*I),Ct.setStyles(Bt.styles,Bt.easing,m.errors,m.options),Ct.applyStylesToKeyframe()}),m.currentTimeline.mergeTimelineCollectedStyles(Ct),m.transformIntoNewTimeline(D+I),m.previousNode=_}visitQuery(_,m){const E=m.currentTimeline.currentTime,D=_.options||{},I=D.delay?Jn(D.delay):0;I&&(m.previousNode.type===lt.If.Style||0==E&&m.currentTimeline.hasCurrentStyleProperties())&&(m.currentTimeline.snapshotCurrentStyles(),m.previousNode=_a);let Oe=E;const Ct=m.invokeQuery(_.selector,_.originalSelector,_.limit,_.includeSelf,!!D.optional,m.errors);m.currentQueryTotal=Ct.length;let Bt=null;Ct.forEach((yn,Yn)=>{m.currentQueryIndex=Yn;const jn=m.createSubContext(_.options,yn);I&&jn.delayNextStep(I),yn===m.element&&(Bt=jn.currentTimeline),Fn(this,_.animation,jn),jn.currentTimeline.applyStylesToKeyframe(),Oe=Math.max(Oe,jn.currentTimeline.currentTime)}),m.currentQueryIndex=0,m.currentQueryTotal=0,m.transformIntoNewTimeline(Oe),Bt&&(m.currentTimeline.mergeTimelineCollectedStyles(Bt),m.currentTimeline.snapshotCurrentStyles()),m.previousNode=_}visitStagger(_,m){const E=m.parentContext,D=m.currentTimeline,I=_.timings,Oe=Math.abs(I.duration),Ct=Oe*(m.currentQueryTotal-1);let Bt=Oe*m.currentQueryIndex;switch(I.duration<0?"reverse":I.easing){case"reverse":Bt=Ct-Bt;break;case"full":Bt=E.currentStaggerTime}const Yn=m.currentTimeline;Bt&&Yn.delayNextStep(Bt);const jn=Yn.currentTime;Fn(this,_.animation,m),m.previousNode=_,E.currentStaggerTime=D.currentTime-jn+(D.startTime-E.currentTimeline.startTime)}}const _a={};class Ua{_driver;element;subInstructions;_enterClassName;_leaveClassName;errors;timelines;parentContext=null;currentTimeline;currentAnimateTimings=null;previousNode=_a;subContextCount=0;options={};currentQueryIndex=0;currentQueryTotal=0;currentStaggerTime=0;constructor(_,m,E,D,I,Oe,Ct,Bt){this._driver=_,this.element=m,this.subInstructions=E,this._enterClassName=D,this._leaveClassName=I,this.errors=Oe,this.timelines=Ct,this.currentTimeline=Bt||new $a(this._driver,m,0),Ct.push(this.currentTimeline)}get params(){return this.options.params}updateOptions(_,m){if(!_)return;const E=_;let D=this.options;null!=E.duration&&(D.duration=Jn(E.duration)),null!=E.delay&&(D.delay=Jn(E.delay));const I=E.params;if(I){let Oe=D.params;Oe||(Oe=this.options.params={}),Object.keys(I).forEach(Ct=>{(!m||!Oe.hasOwnProperty(Ct))&&(Oe[Ct]=zi(I[Ct],Oe,this.errors))})}}_copyOptions(){const _={};if(this.options){const m=this.options.params;if(m){const E=_.params={};Object.keys(m).forEach(D=>{E[D]=m[D]})}}return _}createSubContext(_=null,m,E){const D=m||this.element,I=new Ua(this._driver,D,this.subInstructions,this._enterClassName,this._leaveClassName,this.errors,this.timelines,this.currentTimeline.fork(D,E||0));return I.previousNode=this.previousNode,I.currentAnimateTimings=this.currentAnimateTimings,I.options=this._copyOptions(),I.updateOptions(_),I.currentQueryIndex=this.currentQueryIndex,I.currentQueryTotal=this.currentQueryTotal,I.parentContext=this,this.subContextCount++,I}transformIntoNewTimeline(_){return this.previousNode=_a,this.currentTimeline=this.currentTimeline.fork(this.element,_),this.timelines.push(this.currentTimeline),this.currentTimeline}appendInstructionToTimeline(_,m,E){const D={duration:m??_.duration,delay:this.currentTimeline.currentTime+(E??0)+_.delay,easing:""},I=new ns(this._driver,_.element,_.keyframes,_.preStyleProps,_.postStyleProps,D,_.stretchStartingKeyframe);return this.timelines.push(I),D}incrementTime(_){this.currentTimeline.forwardTime(this.currentTimeline.duration+_)}delayNextStep(_){_>0&&this.currentTimeline.delayNextStep(_)}invokeQuery(_,m,E,D,I,Oe){let Ct=[];if(D&&Ct.push(this.element),_.length>0){_=(_=_.replace(tt,"."+this._enterClassName)).replace(Xt,"."+this._leaveClassName);let yn=this._driver.query(this.element,_,1!=E);0!==E&&(yn=E<0?yn.slice(yn.length+E,yn.length):yn.slice(0,E)),Ct.push(...yn)}return!I&&0==Ct.length&&Oe.push(function Gt(){return new v.buA(3014,!1)}()),Ct}}class $a{_driver;element;startTime;_elementTimelineStylesLookup;duration=0;easing=null;_previousKeyframe=new Map;_currentKeyframe=new Map;_keyframes=new Map;_styleSummary=new Map;_localTimelineStyles=new Map;_globalTimelineStyles;_pendingStyles=new Map;_backFill=new Map;_currentEmptyStepKeyframe=null;constructor(_,m,E,D){this._driver=_,this.element=m,this.startTime=E,this._elementTimelineStylesLookup=D,this._elementTimelineStylesLookup||(this._elementTimelineStylesLookup=new Map),this._globalTimelineStyles=this._elementTimelineStylesLookup.get(m),this._globalTimelineStyles||(this._globalTimelineStyles=this._localTimelineStyles,this._elementTimelineStylesLookup.set(m,this._localTimelineStyles)),this._loadKeyframe()}containsAnimation(){switch(this._keyframes.size){case 0:return!1;case 1:return this.hasCurrentStyleProperties();default:return!0}}hasCurrentStyleProperties(){return this._currentKeyframe.size>0}get currentTime(){return this.startTime+this.duration}delayNextStep(_){const m=1===this._keyframes.size&&this._pendingStyles.size;this.duration||m?(this.forwardTime(this.currentTime+_),m&&this.snapshotCurrentStyles()):this.startTime+=_}fork(_,m){return this.applyStylesToKeyframe(),new $a(this._driver,_,m||this.currentTime,this._elementTimelineStylesLookup)}_loadKeyframe(){this._currentKeyframe&&(this._previousKeyframe=this._currentKeyframe),this._currentKeyframe=this._keyframes.get(this.duration),this._currentKeyframe||(this._currentKeyframe=new Map,this._keyframes.set(this.duration,this._currentKeyframe))}forwardFrame(){this.duration+=1,this._loadKeyframe()}forwardTime(_){this.applyStylesToKeyframe(),this.duration=_,this._loadKeyframe()}_updateStyle(_,m){this._localTimelineStyles.set(_,m),this._globalTimelineStyles.set(_,m),this._styleSummary.set(_,{time:this.currentTime,value:m})}allowOnlyTimelineStyles(){return this._currentEmptyStepKeyframe!==this._currentKeyframe}applyEmptyStep(_){_&&this._previousKeyframe.set("easing",_);for(let[m,E]of this._globalTimelineStyles)this._backFill.set(m,E||lt.kp),this._currentKeyframe.set(m,lt.kp);this._currentEmptyStepKeyframe=this._currentKeyframe}setStyles(_,m,E,D){m&&this._previousKeyframe.set("easing",m);const I=D&&D.params||{},Oe=function As(b,_){const m=new Map;let E;return b.forEach(D=>{if("*"===D){E??=_.keys();for(let I of E)m.set(I,lt.kp)}else for(let[I,Oe]of D)m.set(I,Oe)}),m}(_,this._globalTimelineStyles);for(let[Ct,Bt]of Oe){const yn=zi(Bt,I,E);this._pendingStyles.set(Ct,yn),this._localTimelineStyles.has(Ct)||this._backFill.set(Ct,this._globalTimelineStyles.get(Ct)??lt.kp),this._updateStyle(Ct,yn)}}applyStylesToKeyframe(){0!=this._pendingStyles.size&&(this._pendingStyles.forEach((_,m)=>{this._currentKeyframe.set(m,_)}),this._pendingStyles.clear(),this._localTimelineStyles.forEach((_,m)=>{this._currentKeyframe.has(m)||this._currentKeyframe.set(m,_)}))}snapshotCurrentStyles(){for(let[_,m]of this._localTimelineStyles)this._pendingStyles.set(_,m),this._updateStyle(_,m)}getFinalKeyframe(){return this._keyframes.get(this.duration)}get properties(){const _=[];for(let m in this._currentKeyframe)_.push(m);return _}mergeTimelineCollectedStyles(_){_._styleSummary.forEach((m,E)=>{const D=this._styleSummary.get(E);(!D||m.time>D.time)&&this._updateStyle(E,m.value)})}buildKeyframes(){this.applyStylesToKeyframe();const _=new Set,m=new Set,E=1===this._keyframes.size&&0===this.duration;let D=[];this._keyframes.forEach((Ct,Bt)=>{const yn=new Map([...this._backFill,...Ct]);yn.forEach((Yn,jn)=>{Yn===lt.FX?_.add(jn):Yn===lt.kp&&m.add(jn)}),E||yn.set("offset",Bt/this.duration),D.push(yn)});const I=[..._.values()],Oe=[...m.values()];if(E){const Ct=D[0],Bt=new Map(Ct);Ct.set("offset",0),Bt.set("offset",1),D=[Ct,Bt]}return ca(this.element,D,I,Oe,this.duration,this.startTime,this.easing,!1)}}class ns extends $a{keyframes;preStyleProps;postStyleProps;_stretchStartingKeyframe;timings;constructor(_,m,E,D,I,Oe,Ct=!1){super(_,m,Oe.delay),this.keyframes=E,this.preStyleProps=D,this.postStyleProps=I,this._stretchStartingKeyframe=Ct,this.timings={duration:Oe.duration,delay:Oe.delay,easing:Oe.easing}}containsAnimation(){return this.keyframes.length>1}buildKeyframes(){let _=this.keyframes,{delay:m,duration:E,easing:D}=this.timings;if(this._stretchStartingKeyframe&&m){const I=[],Oe=E+m,Ct=m/Oe,Bt=new Map(_[0]);Bt.set("offset",0),I.push(Bt);const yn=new Map(_[0]);yn.set("offset",Ga(Ct)),I.push(yn);const Yn=_.length-1;for(let jn=1;jn<=Yn;jn++){let Fi=new Map(_[jn]);const Zi=Fi.get("offset");Fi.set("offset",Ga((m+Zi*E)/Oe)),I.push(Fi)}E=Oe,m=0,D="",_=I}return ca(this.element,_,this.preStyleProps,this.postStyleProps,E,m,D,!0)}}function Ga(b,_=3){const m=Math.pow(10,_-1);return Math.round(b*m)/m}function hr(b,_,m,E,D,I,Oe,Ct,Bt,yn,Yn,jn,Fi){return{type:0,element:b,triggerName:_,isRemovalTransition:D,fromState:m,fromStyles:I,toState:E,toStyles:Oe,timelines:Ct,queriedElements:Bt,preStyleProps:yn,postStyleProps:Yn,totalTime:jn,errors:Fi}}const mr={};class fr{_triggerName;ast;_stateStyles;constructor(_,m,E){this._triggerName=_,this.ast=m,this._stateStyles=E}match(_,m,E,D){return function pr(b,_,m,E,D){return b.some(I=>I(_,m,E,D))}(this.ast.matchers,_,m,E,D)}buildStyles(_,m,E){let D=this._stateStyles.get("*");return void 0!==_&&(D=this._stateStyles.get(_?.toString())||D),D?D.buildStyles(m,E):new Map}build(_,m,E,D,I,Oe,Ct,Bt,yn,Yn){const jn=[],Fi=this.ast.options&&this.ast.options.params||mr,Mi=this.buildStyles(E,Ct&&Ct.params||mr,jn),Ai=Bt&&Bt.params||mr,Sa=this.buildStyles(D,Ai,jn),Ia=new Set,fs=new Map,$s=new Map,Ea="void"===D,ws={params:gr(Ai,Fi),delay:this.ast.options?.delay},Fa=Yn?[]:Nn(_,m,this.ast.animation,I,Oe,Mi,Sa,ws,yn,jn);let Vs=0;return Fa.forEach(ps=>{Vs=Math.max(ps.duration+ps.delay,Vs)}),jn.length?hr(m,this._triggerName,E,D,Ea,Mi,Sa,[],[],fs,$s,Vs,jn):(Fa.forEach(ps=>{const xl=ps.element,W1=ge(fs,xl,new Set);ps.preStyleProps.forEach(h1=>W1.add(h1));const K3=ge($s,xl,new Set);ps.postStyleProps.forEach(h1=>K3.add(h1)),xl!==m&&Ia.add(xl)}),hr(m,this._triggerName,E,D,Ea,Mi,Sa,Fa,[...Ia.values()],fs,$s,Vs))}}function gr(b,_){const m={..._};return Object.entries(b).forEach(([E,D])=>{null!=D&&(m[E]=D)}),m}class bo{styles;defaultParams;normalizer;constructor(_,m,E){this.styles=_,this.defaultParams=m,this.normalizer=E}buildStyles(_,m){const E=new Map,D=gr(_,this.defaultParams);return this.styles.styles.forEach(I=>{"string"!=typeof I&&I.forEach((Oe,Ct)=>{Oe&&(Oe=zi(Oe,D,m));const Bt=this.normalizer.normalizePropertyName(Ct,m);Oe=this.normalizer.normalizeStyleValue(Ct,Bt,Oe,m),E.set(Ct,Oe)})}),E}}class jr{name;ast;_normalizer;transitionFactories=[];fallbackTransition;states=new Map;constructor(_,m,E){this.name=_,this.ast=m,this._normalizer=E,m.states.forEach(D=>{this.states.set(D.name,new bo(D.style,D.options&&D.options.params||{},E))}),Ka(this.states,"true","1"),Ka(this.states,"false","0"),m.transitions.forEach(D=>{this.transitionFactories.push(new fr(_,D,this.states))}),this.fallbackTransition=function Er(b,_){return new fr(b,{type:lt.If.Transition,animation:{type:lt.If.Sequence,steps:[],options:null},matchers:[(Oe,Ct)=>!0],options:null,queryCount:0,depCount:0},_)}(_,this.states)}get containsQueries(){return this.ast.queryCount>0}matchTransition(_,m,E,D){return this.transitionFactories.find(Oe=>Oe.match(_,m,E,D))||null}matchStyles(_,m,E){return this.fallbackTransition.buildStyles(_,m,E)}}function Ka(b,_,m){b.has(_)?b.has(m)||b.set(m,b.get(_)):b.has(m)&&b.set(_,b.get(m))}const Ps=new nn;class kr{bodyNode;_driver;_normalizer;_animations=new Map;_playersById=new Map;players=[];constructor(_,m,E){this.bodyNode=_,this._driver=m,this._normalizer=E}register(_,m){const E=[],I=Wi(this._driver,m,E,[]);if(E.length)throw function jt(){return new v.buA(3503,!1)}();this._animations.set(_,I)}_buildPlayer(_,m,E){const D=_.element,I=ee(this._normalizer,_.keyframes,m,E);return this._driver.animate(D,I,_.duration,_.delay,_.easing,[],!0)}create(_,m,E={}){const D=[],I=this._animations.get(_);let Oe;const Ct=new Map;if(I?(Oe=Nn(this._driver,m,I,tn,on,new Map,new Map,E,Ps,D),Oe.forEach(Yn=>{const jn=ge(Ct,Yn.element,new Map);Yn.postStyleProps.forEach(Fi=>jn.set(Fi,null))})):(D.push(function Ue(){return new v.buA(3300,!1)}()),Oe=[]),D.length)throw function wt(){return new v.buA(3504,!1)}();Ct.forEach((Yn,jn)=>{Yn.forEach((Fi,Zi)=>{Yn.set(Zi,this._driver.computeStyle(jn,Zi,lt.kp))})});const yn=vt(Oe.map(Yn=>{const jn=Ct.get(Yn.element);return this._buildPlayer(Yn,new Map,jn)}));return this._playersById.set(_,yn),yn.onDestroy(()=>this.destroy(_)),this.players.push(yn),yn}destroy(_){const m=this._getPlayer(_);m.destroy(),this._playersById.delete(_);const E=this.players.indexOf(m);E>=0&&this.players.splice(E,1)}_getPlayer(_){const m=this._playersById.get(_);if(!m)throw function pt(){return new v.buA(3301,!1)}();return m}listen(_,m,E,D){const I=Se(m,"","","");return ye(this._getPlayer(_),E,I,D),()=>{}}command(_,m,E,D){if("register"==E)return void this.register(_,D[0]);if("create"==E)return void this.create(_,m,D[0]||{});const I=this._getPlayer(_);switch(E){case"play":I.play();break;case"pause":I.pause();break;case"reset":I.reset();break;case"restart":I.restart();break;case"finish":I.finish();break;case"init":I.init();break;case"setPosition":I.setPosition(parseFloat(D[0]));break;case"destroy":this.destroy(_)}}}const js="ng-animate-queued",Zr="ng-animate-disabled",Js=[],_r={namespaceId:"",setForRemoval:!1,setForMove:!1,hasAnimation:!1,removedBeforeQueried:!1},rs={namespaceId:"",setForMove:!1,setForRemoval:!1,hasAnimation:!1,removedBeforeQueried:!0},ls="__ng_removed";class is{namespaceId;value;options;get params(){return this.options.params}constructor(_,m=""){this.namespaceId=m;const E=_&&_.hasOwnProperty("value");if(this.value=function qs(b){return b??null}(E?_.value:_),E){const{value:I,...Oe}=_;this.options=Oe}else this.options={};this.options.params||(this.options.params={})}absorbOptions(_){const m=_.params;if(m){const E=this.options.params;Object.keys(m).forEach(D=>{null==E[D]&&(E[D]=m[D])})}}}const Hs="void",Ws=new is(Hs);class Mr{id;hostElement;_engine;players=[];_triggers=new Map;_queue=[];_elementListeners=new Map;_hostClassName;constructor(_,m,E){this.id=_,this.hostElement=m,this._engine=E,this._hostClassName="ng-tns-"+_,ja(m,this._hostClassName)}listen(_,m,E,D){if(!this._triggers.has(m))throw function Pt(){return new v.buA(3302,!1)}();if(null==E||0==E.length)throw function gn(){return new v.buA(3303,!1)}();if(!function yr(b){return"start"==b||"done"==b}(E))throw function ei(){return new v.buA(3400,!1)}();const I=ge(this._elementListeners,_,[]),Oe={name:m,phase:E,callback:D};I.push(Oe);const Ct=ge(this._engine.statesByElement,_,new Map);return Ct.has(m)||(ja(_,un),ja(_,un+"-"+m),Ct.set(m,Ws)),()=>{this._engine.afterFlush(()=>{const Bt=I.indexOf(Oe);Bt>=0&&I.splice(Bt,1),this._triggers.has(m)||Ct.delete(m)})}}register(_,m){return!this._triggers.has(_)&&(this._triggers.set(_,m),!0)}_getTrigger(_){const m=this._triggers.get(_);if(!m)throw function vi(){return new v.buA(3401,!1)}();return m}trigger(_,m,E,D=!0){const I=this._getTrigger(m),Oe=new xs(this.id,m,_);let Ct=this._engine.statesByElement.get(_);Ct||(ja(_,un),ja(_,un+"-"+m),this._engine.statesByElement.set(_,Ct=new Map));let Bt=Ct.get(m);const yn=new is(E,this.id);if(!(E&&E.hasOwnProperty("value"))&&Bt&&yn.absorbOptions(Bt.options),Ct.set(m,yn),Bt||(Bt=Ws),yn.value!==Hs&&Bt.value===yn.value){if(!function Hr(b,_){const m=Object.keys(b),E=Object.keys(_);if(m.length!=E.length)return!1;for(let D=0;D{Ht(_,Sa),Lt(_,Ia)})}return}const Fi=ge(this._engine.playersByElement,_,[]);Fi.forEach(Ai=>{Ai.namespaceId==this.id&&Ai.triggerName==m&&Ai.queued&&Ai.destroy()});let Zi=I.matchTransition(Bt.value,yn.value,_,yn.params),Mi=!1;if(!Zi){if(!D)return;Zi=I.fallbackTransition,Mi=!0}return this._engine.totalQueuedPlayers++,this._queue.push({element:_,triggerName:m,transition:Zi,fromState:Bt,toState:yn,player:Oe,isFallbackTransition:Mi}),Mi||(ja(_,js),Oe.onStart(()=>{Za(_,js)})),Oe.onDone(()=>{let Ai=this.players.indexOf(Oe);Ai>=0&&this.players.splice(Ai,1);const Sa=this._engine.playersByElement.get(_);if(Sa){let Ia=Sa.indexOf(Oe);Ia>=0&&Sa.splice(Ia,1)}}),this.players.push(Oe),Fi.push(Oe),Oe}deregister(_){this._triggers.delete(_),this._engine.statesByElement.forEach(m=>m.delete(_)),this._elementListeners.forEach((m,E)=>{this._elementListeners.set(E,m.filter(D=>D.name!=_))})}clearElementCache(_){this._engine.statesByElement.delete(_),this._elementListeners.delete(_);const m=this._engine.playersByElement.get(_);m&&(m.forEach(E=>E.destroy()),this._engine.playersByElement.delete(_))}_signalRemovalForInnerTriggers(_,m){const E=this._engine.driver.query(_,Nt,!0);E.forEach(D=>{if(D[ls])return;const I=this._engine.fetchNamespacesByElement(D);I.size?I.forEach(Oe=>Oe.triggerLeaveAnimation(D,m,!1,!0)):this.clearElementCache(D)}),this._engine.afterFlushAnimationsDone(()=>E.forEach(D=>this.clearElementCache(D)))}triggerLeaveAnimation(_,m,E,D){const I=this._engine.statesByElement.get(_),Oe=new Map;if(I){const Ct=[];if(I.forEach((Bt,yn)=>{if(Oe.set(yn,Bt.value),this._triggers.has(yn)){const Yn=this.trigger(_,yn,Hs,D);Yn&&Ct.push(Yn)}}),Ct.length)return this._engine.markElementAsRemoved(this.id,_,!0,m,Oe),E&&vt(Ct).onDone(()=>this._engine.processLeaveNode(_)),!0}return!1}prepareLeaveAnimationListeners(_){const m=this._elementListeners.get(_),E=this._engine.statesByElement.get(_);if(m&&E){const D=new Set;m.forEach(I=>{const Oe=I.name;if(D.has(Oe))return;D.add(Oe);const Bt=this._triggers.get(Oe).fallbackTransition,yn=E.get(Oe)||Ws,Yn=new is(Hs),jn=new xs(this.id,Oe,_);this._engine.totalQueuedPlayers++,this._queue.push({element:_,triggerName:Oe,transition:Bt,fromState:yn,toState:Yn,player:jn,isFallbackTransition:!0})})}}removeNode(_,m){const E=this._engine;if(_.childElementCount&&this._signalRemovalForInnerTriggers(_,m),this.triggerLeaveAnimation(_,m,!0))return;let D=!1;if(E.totalAnimations){const I=E.players.length?E.playersByQueriedElement.get(_):[];if(I&&I.length)D=!0;else{let Oe=_;for(;Oe=Oe.parentNode;)if(E.statesByElement.get(Oe)){D=!0;break}}}if(this.prepareLeaveAnimationListeners(_),D)E.markElementAsRemoved(this.id,_,!1,m);else{const I=_[ls];(!I||I===_r)&&(E.afterFlush(()=>this.clearElementCache(_)),E.destroyInnerAnimations(_),E._onRemovalComplete(_,m))}}insertNode(_,m){ja(_,this._hostClassName)}drainQueuedTransitions(_){const m=[];return this._queue.forEach(E=>{const D=E.player;if(D.destroyed)return;const I=E.element,Oe=this._elementListeners.get(I);Oe&&Oe.forEach(Ct=>{if(Ct.name==E.triggerName){const Bt=Se(I,E.triggerName,E.fromState.value,E.toState.value);Bt._data=_,ye(E.player,Ct.phase,Bt,Ct.callback)}}),D.markedForDestroy?this._engine.afterFlush(()=>{D.destroy()}):m.push(E)}),this._queue=[],m.sort((E,D)=>{const I=E.transition.ast.depCount,Oe=D.transition.ast.depCount;return 0==I||0==Oe?I-Oe:this._engine.driver.containsElement(E.element,D.element)?1:-1})}destroy(_){this.players.forEach(m=>m.destroy()),this._signalRemovalForInnerTriggers(this.hostElement,_)}}class Ui{bodyNode;driver;_normalizer;players=[];newHostElements=new Map;playersByElement=new Map;playersByQueriedElement=new Map;statesByElement=new Map;disabledNodes=new Set;totalAnimations=0;totalQueuedPlayers=0;_namespaceLookup={};_namespaceList=[];_flushFns=[];_whenQuietFns=[];namespacesByHostElement=new Map;collectedEnterElements=[];collectedLeaveElements=[];onRemovalComplete=(_,m)=>{};_onRemovalComplete(_,m){this.onRemovalComplete(_,m)}constructor(_,m,E){this.bodyNode=_,this.driver=m,this._normalizer=E}get queuedPlayers(){const _=[];return this._namespaceList.forEach(m=>{m.players.forEach(E=>{E.queued&&_.push(E)})}),_}createNamespace(_,m){const E=new Mr(_,m,this);return this.bodyNode&&this.driver.containsElement(this.bodyNode,m)?this._balanceNamespaceList(E,m):(this.newHostElements.set(m,E),this.collectEnterElement(m)),this._namespaceLookup[_]=E}_balanceNamespaceList(_,m){const E=this._namespaceList,D=this.namespacesByHostElement;if(E.length-1>=0){let Oe=!1,Ct=this.driver.getParentElement(m);for(;Ct;){const Bt=D.get(Ct);if(Bt){const yn=E.indexOf(Bt);E.splice(yn+1,0,_),Oe=!0;break}Ct=this.driver.getParentElement(Ct)}Oe||E.unshift(_)}else E.push(_);return D.set(m,_),_}register(_,m){let E=this._namespaceLookup[_];return E||(E=this.createNamespace(_,m)),E}registerTrigger(_,m,E){let D=this._namespaceLookup[_];D&&D.register(m,E)&&this.totalAnimations++}destroy(_,m){_&&(this.afterFlush(()=>{}),this.afterFlushAnimationsDone(()=>{const E=this._fetchNamespace(_);this.namespacesByHostElement.delete(E.hostElement);const D=this._namespaceList.indexOf(E);D>=0&&this._namespaceList.splice(D,1),E.destroy(m),delete this._namespaceLookup[_]}))}_fetchNamespace(_){return this._namespaceLookup[_]}fetchNamespacesByElement(_){const m=new Set,E=this.statesByElement.get(_);if(E)for(let D of E.values())if(D.namespaceId){const I=this._fetchNamespace(D.namespaceId);I&&m.add(I)}return m}trigger(_,m,E,D){if(Pa(m)){const I=this._fetchNamespace(_);if(I)return I.trigger(m,E,D),!0}return!1}insertNode(_,m,E,D){if(!Pa(m))return;const I=m[ls];if(I&&I.setForRemoval){I.setForRemoval=!1,I.setForMove=!0;const Oe=this.collectedLeaveElements.indexOf(m);Oe>=0&&this.collectedLeaveElements.splice(Oe,1)}if(_){const Oe=this._fetchNamespace(_);Oe&&Oe.insertNode(m,E)}D&&this.collectEnterElement(m)}collectEnterElement(_){this.collectedEnterElements.push(_)}markElementAsDisabled(_,m){m?this.disabledNodes.has(_)||(this.disabledNodes.add(_),ja(_,Zr)):this.disabledNodes.has(_)&&(this.disabledNodes.delete(_),Za(_,Zr))}removeNode(_,m,E){if(Pa(m)){const D=_?this._fetchNamespace(_):null;D?D.removeNode(m,E):this.markElementAsRemoved(_,m,!1,E);const I=this.namespacesByHostElement.get(m);I&&I.id!==_&&I.removeNode(m,E)}else this._onRemovalComplete(m,E)}markElementAsRemoved(_,m,E,D,I){this.collectedLeaveElements.push(m),m[ls]={namespaceId:_,setForRemoval:D,hasAnimation:E,removedBeforeQueried:!1,previousTriggersValues:I}}listen(_,m,E,D,I){return Pa(m)?this._fetchNamespace(_).listen(m,E,D,I):()=>{}}_buildInstruction(_,m,E,D,I){return _.transition.build(this.driver,_.element,_.fromState.value,_.toState.value,E,D,_.fromState.options,_.toState.options,m,I)}destroyInnerAnimations(_){let m=this.driver.query(_,Nt,!0);m.forEach(E=>this.destroyActiveAnimationsForElement(E)),0!=this.playersByQueriedElement.size&&(m=this.driver.query(_,xn,!0),m.forEach(E=>this.finishActiveQueriedAnimationOnElement(E)))}destroyActiveAnimationsForElement(_){const m=this.playersByElement.get(_);m&&m.forEach(E=>{E.queued?E.markedForDestroy=!0:E.destroy()})}finishActiveQueriedAnimationOnElement(_){const m=this.playersByQueriedElement.get(_);m&&m.forEach(E=>E.finish())}whenRenderingDone(){return new Promise(_=>{if(this.players.length)return vt(this.players).onDone(()=>_());_()})}processLeaveNode(_){const m=_[ls];if(m&&m.setForRemoval){if(_[ls]=_r,m.namespaceId){this.destroyInnerAnimations(_);const E=this._fetchNamespace(m.namespaceId);E&&E.clearElementCache(_)}this._onRemovalComplete(_,m.setForRemoval)}_.classList?.contains(Zr)&&this.markElementAsDisabled(_,!1),this.driver.query(_,".ng-animate-disabled",!0).forEach(E=>{this.markElementAsDisabled(E,!1)})}flush(_=-1){let m=[];if(this.newHostElements.size&&(this.newHostElements.forEach((E,D)=>this._balanceNamespaceList(E,D)),this.newHostElements.clear()),this.totalAnimations&&this.collectedEnterElements.length)for(let E=0;EE()),this._flushFns=[],this._whenQuietFns.length){const E=this._whenQuietFns;this._whenQuietFns=[],m.length?vt(m).onDone(()=>{E.forEach(D=>D())}):E.forEach(D=>D())}}reportError(_){throw function Ni(){return new v.buA(3402,!1)}()}_flushAnimations(_,m){const E=new nn,D=[],I=new Map,Oe=[],Ct=new Map,Bt=new Map,yn=new Map,Yn=new Set;this.disabledNodes.forEach(aa=>{Yn.add(aa);const la=this.driver.query(aa,".ng-animate-queued",!0);for(let ya=0;ya{const ya=tn+Ai++;Mi.set(la,ya),aa.forEach(Ya=>ja(Ya,ya))});const Sa=[],Ia=new Set,fs=new Set;for(let aa=0;aaIa.add(Ya)):fs.add(la))}const $s=new Map,Ea=wa(Fi,Array.from(Ia));Ea.forEach((aa,la)=>{const ya=on+Ai++;$s.set(la,ya),aa.forEach(Ya=>ja(Ya,ya))}),_.push(()=>{Zi.forEach((aa,la)=>{const ya=Mi.get(la);aa.forEach(Ya=>Za(Ya,ya))}),Ea.forEach((aa,la)=>{const ya=$s.get(la);aa.forEach(Ya=>Za(Ya,ya))}),Sa.forEach(aa=>{this.processLeaveNode(aa)})});const ws=[],Fa=[];for(let aa=this._namespaceList.length-1;aa>=0;aa--)this._namespaceList[aa].drainQueuedTransitions(m).forEach(ya=>{const Ya=ya.player,uo=ya.element;if(ws.push(Ya),this.collectedEnterElements.length){const ho=uo[ls];if(ho&&ho.setForMove){if(ho.previousTriggersValues&&ho.previousTriggersValues.has(ya.triggerName)){const Vc=ho.previousTriggersValues.get(ya.triggerName),Nl=this.statesByElement.get(ya.element);if(Nl&&Nl.has(ya.triggerName)){const jd=Nl.get(ya.triggerName);jd.value=Vc,Nl.set(ya.triggerName,jd)}}return void Ya.destroy()}}const _o=!jn||!this.driver.containsElement(jn,uo),vo=$s.get(uo),dc=Mi.get(uo),ys=this._buildInstruction(ya,E,dc,vo,_o);if(ys.errors&&ys.errors.length)return void Fa.push(ys);if(_o)return Ya.onStart(()=>Ht(uo,ys.fromStyles)),Ya.onDestroy(()=>Lt(uo,ys.toStyles)),void D.push(Ya);if(ya.isFallbackTransition)return Ya.onStart(()=>Ht(uo,ys.fromStyles)),Ya.onDestroy(()=>Lt(uo,ys.toStyles)),void D.push(Ya);const Y1=[];ys.timelines.forEach(ho=>{ho.stretchStartingKeyframe=!0,this.disabledNodes.has(ho.element)||Y1.push(ho)}),ys.timelines=Y1,E.append(uo,ys.timelines),Oe.push({instruction:ys,player:Ya,element:uo}),ys.queriedElements.forEach(ho=>ge(Ct,ho,[]).push(Ya)),ys.preStyleProps.forEach((ho,Vc)=>{if(ho.size){let Nl=Bt.get(Vc);Nl||Bt.set(Vc,Nl=new Set),ho.forEach((jd,s0)=>Nl.add(s0))}}),ys.postStyleProps.forEach((ho,Vc)=>{let Nl=yn.get(Vc);Nl||yn.set(Vc,Nl=new Set),ho.forEach((jd,s0)=>Nl.add(s0))})});if(Fa.length){const aa=[];Fa.forEach(la=>{aa.push(function kn(){return new v.buA(3505,!1)}())}),ws.forEach(la=>la.destroy()),this.reportError(aa)}const Vs=new Map,ps=new Map;Oe.forEach(aa=>{const la=aa.element;E.has(la)&&(ps.set(la,la),this._beforeAnimationBuild(aa.player.namespaceId,aa.instruction,Vs))}),D.forEach(aa=>{const la=aa.element;this._getPreviousPlayers(la,!1,aa.namespaceId,aa.triggerName,null).forEach(Ya=>{ge(Vs,la,[]).push(Ya),Ya.destroy()})});const xl=Sa.filter(aa=>Ks(aa,Bt,yn)),W1=new Map;Xs(W1,this.driver,fs,yn,lt.kp).forEach(aa=>{Ks(aa,Bt,yn)&&xl.push(aa)});const h1=new Map;Zi.forEach((aa,la)=>{Xs(h1,this.driver,new Set(aa),Bt,lt.FX)}),xl.forEach(aa=>{const la=W1.get(aa),ya=h1.get(aa);W1.set(aa,new Map([...la?.entries()??[],...ya?.entries()??[]]))});const X1=[],zc=[],K1={};Oe.forEach(aa=>{const{element:la,player:ya,instruction:Ya}=aa;if(E.has(la)){if(Yn.has(la))return ya.onDestroy(()=>Lt(la,Ya.toStyles)),ya.disabled=!0,ya.overrideTotalTime(Ya.totalTime),void D.push(ya);let uo=K1;if(ps.size>1){let vo=la;const dc=[];for(;vo=vo.parentNode;){const ys=ps.get(vo);if(ys){uo=ys;break}dc.push(vo)}dc.forEach(ys=>ps.set(ys,uo))}const _o=this._buildAnimation(ya.namespaceId,Ya,Vs,I,h1,W1);if(ya.setRealPlayer(_o),uo===K1)X1.push(ya);else{const vo=this.playersByElement.get(uo);vo&&vo.length&&(ya.parentPlayer=vt(vo)),D.push(ya)}}else Ht(la,Ya.fromStyles),ya.onDestroy(()=>Lt(la,Ya.toStyles)),zc.push(ya),Yn.has(la)&&D.push(ya)}),zc.forEach(aa=>{const la=I.get(aa.element);if(la&&la.length){const ya=vt(la);aa.setRealPlayer(ya)}}),D.forEach(aa=>{aa.parentPlayer?aa.syncPlayerEvents(aa.parentPlayer):aa.destroy()});for(let aa=0;aa!_o.destroyed);uo.length?Or(this,la,uo):this.processLeaveNode(la)}return Sa.length=0,X1.forEach(aa=>{this.players.push(aa),aa.onDone(()=>{aa.destroy();const la=this.players.indexOf(aa);this.players.splice(la,1)}),aa.play()}),X1}afterFlush(_){this._flushFns.push(_)}afterFlushAnimationsDone(_){this._whenQuietFns.push(_)}_getPreviousPlayers(_,m,E,D,I){let Oe=[];if(m){const Ct=this.playersByQueriedElement.get(_);Ct&&(Oe=Ct)}else{const Ct=this.playersByElement.get(_);if(Ct){const Bt=!I||I==Hs;Ct.forEach(yn=>{yn.queued||!Bt&&yn.triggerName!=D||Oe.push(yn)})}}return(E||D)&&(Oe=Oe.filter(Ct=>!(E&&E!=Ct.namespaceId||D&&D!=Ct.triggerName))),Oe}_beforeAnimationBuild(_,m,E){const I=m.element,Oe=m.isRemovalTransition?void 0:_,Ct=m.isRemovalTransition?void 0:m.triggerName;for(const Bt of m.timelines){const yn=Bt.element,Yn=yn!==I,jn=ge(E,yn,[]);this._getPreviousPlayers(yn,Yn,Oe,Ct,m.toState).forEach(Zi=>{const Mi=Zi.getRealPlayer();Mi.beforeDestroy&&Mi.beforeDestroy(),Zi.destroy(),jn.push(Zi)})}Ht(I,m.fromStyles)}_buildAnimation(_,m,E,D,I,Oe){const Ct=m.triggerName,Bt=m.element,yn=[],Yn=new Set,jn=new Set,Fi=m.timelines.map(Mi=>{const Ai=Mi.element;Yn.add(Ai);const Sa=Ai[ls];if(Sa&&Sa.removedBeforeQueried)return new lt.sf(Mi.duration,Mi.delay);const Ia=Ai!==Bt,fs=function Rr(b){const _=[];return Fs(b,_),_}((E.get(Ai)||Js).map(Vs=>Vs.getRealPlayer())).filter(Vs=>!!Vs.element&&Vs.element===Ai),$s=I.get(Ai),Ea=Oe.get(Ai),ws=ee(this._normalizer,Mi.keyframes,$s,Ea),Fa=this._buildPlayer(Mi,ws,fs);if(Mi.subTimeline&&D&&jn.add(Ai),Ia){const Vs=new xs(_,Ct,Ai);Vs.setRealPlayer(Fa),yn.push(Vs)}return Fa});yn.forEach(Mi=>{ge(this.playersByQueriedElement,Mi.element,[]).push(Mi),Mi.onDone(()=>function vr(b,_,m){let E=b.get(_);if(E){if(E.length){const D=E.indexOf(m);E.splice(D,1)}0==E.length&&b.delete(_)}return E}(this.playersByQueriedElement,Mi.element,Mi))}),Yn.forEach(Mi=>ja(Mi,dn));const Zi=vt(Fi);return Zi.onDestroy(()=>{Yn.forEach(Mi=>Za(Mi,dn)),Lt(Bt,m.toStyles)}),jn.forEach(Mi=>{ge(D,Mi,[]).push(Zi)}),Zi}_buildPlayer(_,m,E){return m.length>0?this.driver.animate(_.element,m,_.duration,_.delay,_.easing,E):new lt.sf(_.duration,_.delay)}}class xs{namespaceId;triggerName;element;_player=new lt.sf;_containsRealPlayer=!1;_queuedCallbacks=new Map;destroyed=!1;parentPlayer=null;markedForDestroy=!1;disabled=!1;queued=!0;totalTime=0;constructor(_,m,E){this.namespaceId=_,this.triggerName=m,this.element=E}setRealPlayer(_){this._containsRealPlayer||(this._player=_,this._queuedCallbacks.forEach((m,E)=>{m.forEach(D=>ye(_,E,void 0,D))}),this._queuedCallbacks.clear(),this._containsRealPlayer=!0,this.overrideTotalTime(_.totalTime),this.queued=!1)}getRealPlayer(){return this._player}overrideTotalTime(_){this.totalTime=_}syncPlayerEvents(_){const m=this._player;m.triggerCallback&&_.onStart(()=>m.triggerCallback("start")),_.onDone(()=>this.finish()),_.onDestroy(()=>this.destroy())}_queueEvent(_,m){ge(this._queuedCallbacks,_,[]).push(m)}onDone(_){this.queued&&this._queueEvent("done",_),this._player.onDone(_)}onStart(_){this.queued&&this._queueEvent("start",_),this._player.onStart(_)}onDestroy(_){this.queued&&this._queueEvent("destroy",_),this._player.onDestroy(_)}init(){this._player.init()}hasStarted(){return!this.queued&&this._player.hasStarted()}play(){!this.queued&&this._player.play()}pause(){!this.queued&&this._player.pause()}restart(){!this.queued&&this._player.restart()}finish(){this._player.finish()}destroy(){this.destroyed=!0,this._player.destroy()}reset(){!this.queued&&this._player.reset()}setPosition(_){this.queued||this._player.setPosition(_)}getPosition(){return this.queued?0:this._player.getPosition()}triggerCallback(_){const m=this._player;m.triggerCallback&&m.triggerCallback(_)}}function Pa(b){return b&&1===b.nodeType}function er(b,_){const m=b.style.display;return b.style.display=_??"none",m}function Xs(b,_,m,E,D){const I=[];m.forEach(Bt=>I.push(er(Bt)));const Oe=[];E.forEach((Bt,yn)=>{const Yn=new Map;Bt.forEach(jn=>{const Fi=_.computeStyle(yn,jn,D);Yn.set(jn,Fi),(!Fi||0==Fi.length)&&(yn[ls]=rs,Oe.push(yn))}),b.set(yn,Yn)});let Ct=0;return m.forEach(Bt=>er(Bt,I[Ct++])),Oe}function wa(b,_){const m=new Map;if(b.forEach(Ct=>m.set(Ct,[])),0==_.length)return m;const D=new Set(_),I=new Map;function Oe(Ct){if(!Ct)return 1;let Bt=I.get(Ct);if(Bt)return Bt;const yn=Ct.parentNode;return Bt=m.has(yn)?yn:D.has(yn)?1:Oe(yn),I.set(Ct,Bt),Bt}return _.forEach(Ct=>{const Bt=Oe(Ct);1!==Bt&&m.get(Bt).push(Ct)}),m}function ja(b,_){b.classList?.add(_)}function Za(b,_){b.classList?.remove(_)}function Or(b,_,m){vt(m).onDone(()=>b.processLeaveNode(_))}function Fs(b,_){for(let m=0;mD.add(I)):_.set(b,E),m.delete(b),!0}class Sr{_driver;_normalizer;_transitionEngine;_timelineEngine;_triggerCache={};onRemovalComplete=(_,m)=>{};constructor(_,m,E){this._driver=m,this._normalizer=E,this._transitionEngine=new Ui(_.body,m,E),this._timelineEngine=new kr(_.body,m,E),this._transitionEngine.onRemovalComplete=(D,I)=>this.onRemovalComplete(D,I)}registerTrigger(_,m,E,D,I){const Oe=_+"-"+D;let Ct=this._triggerCache[Oe];if(!Ct){const Bt=[],Yn=Wi(this._driver,I,Bt,[]);if(Bt.length)throw function Qn(){return new v.buA(3404,!1)}();Ct=function Zs(b,_,m){return new jr(b,_,m)}(D,Yn,this._normalizer),this._triggerCache[Oe]=Ct}this._transitionEngine.registerTrigger(m,D,Ct)}register(_,m){this._transitionEngine.register(_,m)}destroy(_,m){this._transitionEngine.destroy(_,m)}onInsert(_,m,E,D){this._transitionEngine.insertNode(_,m,E,D)}onRemove(_,m,E){this._transitionEngine.removeNode(_,m,E)}disableAnimations(_,m){this._transitionEngine.markElementAsDisabled(_,m)}process(_,m,E,D){if("@"==E.charAt(0)){const[I,Oe]=N(E);this._timelineEngine.command(I,m,Oe,D)}else this._transitionEngine.trigger(_,m,E,D)}listen(_,m,E,D,I){if("@"==E.charAt(0)){const[Oe,Ct]=N(E);return this._timelineEngine.listen(Oe,m,Ct,I)}return this._transitionEngine.listen(_,m,E,D,I)}flush(_=-1){this._transitionEngine.flush(_)}get players(){return[...this._transitionEngine.players,...this._timelineEngine.players]}whenRenderingDone(){return this._transitionEngine.whenRenderingDone()}afterFlushAnimationsDone(_){this._transitionEngine.afterFlushAnimationsDone(_)}}let He=(()=>{class b{_element;_startStyles;_endStyles;static initialStylesByElement=new WeakMap;_state=0;_initialStyles;constructor(m,E,D){this._element=m,this._startStyles=E,this._endStyles=D;let I=b.initialStylesByElement.get(m);I||b.initialStylesByElement.set(m,I=new Map),this._initialStyles=I}start(){this._state<1&&(this._startStyles&&Lt(this._element,this._startStyles,this._initialStyles),this._state=1)}finish(){this.start(),this._state<2&&(Lt(this._element,this._initialStyles),this._endStyles&&(Lt(this._element,this._endStyles),this._endStyles=null),this._state=1)}destroy(){this.finish(),this._state<3&&(b.initialStylesByElement.delete(this._element),this._startStyles&&(Ht(this._element,this._startStyles),this._endStyles=null),this._endStyles&&(Ht(this._element,this._endStyles),this._endStyles=null),Lt(this._element,this._initialStyles),this._state=3)}}return b})();function q(b){let _=null;return b.forEach((m,E)=>{(function mt(b){return"display"===b||"position"===b})(E)&&(_=_||new Map,_.set(E,m))}),_}class ln{element;keyframes;options;_specialStyles;_onDoneFns=[];_onStartFns=[];_onDestroyFns=[];_duration;_delay;_initialized=!1;_finished=!1;_started=!1;_destroyed=!1;_finalKeyframe;_originalOnDoneFns=[];_originalOnStartFns=[];domPlayer=null;time=0;parentPlayer=null;currentSnapshot=new Map;constructor(_,m,E,D){this.element=_,this.keyframes=m,this.options=E,this._specialStyles=D,this._duration=E.duration,this._delay=E.delay||0,this.time=this._duration+this._delay}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(_=>_()),this._onDoneFns=[])}init(){this._buildPlayer()&&this._preparePlayerBeforeStart()}_buildPlayer(){if(this._initialized)return this.domPlayer;this._initialized=!0;const _=this.keyframes,m=this._triggerWebAnimation(this.element,_,this.options);if(!m)return this._onFinish(),null;this.domPlayer=m,this._finalKeyframe=_.length?_[_.length-1]:new Map;const E=()=>this._onFinish();return m.addEventListener("finish",E),this.onDestroy(()=>{m.removeEventListener("finish",E)}),m}_preparePlayerBeforeStart(){this._delay?this._resetDomPlayerState():this.domPlayer?.pause()}_convertKeyframesToObject(_){const m=[];return _.forEach(E=>{m.push(Object.fromEntries(E))}),m}_triggerWebAnimation(_,m,E){const D=this._convertKeyframesToObject(m);try{return _.animate(D,E)}catch{return null}}onStart(_){this._originalOnStartFns.push(_),this._onStartFns.push(_)}onDone(_){this._originalOnDoneFns.push(_),this._onDoneFns.push(_)}onDestroy(_){this._onDestroyFns.push(_)}play(){const _=this._buildPlayer();_&&(this.hasStarted()||(this._onStartFns.forEach(m=>m()),this._onStartFns=[],this._started=!0,this._specialStyles&&this._specialStyles.start()),_.play())}pause(){this.init(),this.domPlayer?.pause()}finish(){this.init(),this.domPlayer&&(this._specialStyles&&this._specialStyles.finish(),this._onFinish(),this.domPlayer.finish())}reset(){this._resetDomPlayerState(),this._destroyed=!1,this._finished=!1,this._started=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}_resetDomPlayerState(){this.domPlayer?.cancel()}restart(){this.reset(),this.play()}hasStarted(){return this._started}destroy(){this._destroyed||(this._destroyed=!0,this._resetDomPlayerState(),this._onFinish(),this._specialStyles&&this._specialStyles.destroy(),this._onDestroyFns.forEach(_=>_()),this._onDestroyFns=[])}setPosition(_){this.domPlayer||this.init(),this.domPlayer&&(this.domPlayer.currentTime=_*this.time)}getPosition(){return this.domPlayer?+(this.domPlayer.currentTime??0)/this.time:this._initialized?1:0}get totalTime(){return this._delay+this._duration}beforeDestroy(){const _=new Map;this.hasStarted()&&this._finalKeyframe.forEach((E,D)=>{"offset"!==D&&_.set(D,this._finished?E:ci(this.element,D))}),this.currentSnapshot=_}triggerCallback(_){const m="start"===_?this._onStartFns:this._onDoneFns;m.forEach(E=>E()),m.length=0}}class Oi{validateStyleProperty(_){return!0}validateAnimatableStyleProperty(_){return!0}containsElement(_,m){return Ge(_,m)}getParentElement(_){return Me(_)}query(_,m,E){return Ot(_,m,E)}computeStyle(_,m,E){return ci(_,m)}animate(_,m,E,D,I,Oe=[]){const Bt={duration:E,delay:D,fill:0==D?"both":"forwards"};I&&(Bt.easing=I);const yn=new Map,Yn=Oe.filter(Zi=>Zi instanceof ln);(function Un(b,_){return 0===b||0===_})(E,D)&&Yn.forEach(Zi=>{Zi.currentSnapshot.forEach((Mi,Ai)=>yn.set(Ai,Mi))});let jn=function we(b){return b.length?b[0]instanceof Map?b:b.map(_=>new Map(Object.entries(_))):[]}(m).map(Zi=>new Map(Zi));jn=function zn(b,_,m){if(m.size&&_.length){let E=_[0],D=[];if(m.forEach((I,Oe)=>{E.has(Oe)||D.push(Oe),E.set(Oe,I)}),D.length)for(let I=1;I<_.length;I++){let Oe=_[I];D.forEach(Ct=>Oe.set(Ct,ci(b,Ct)))}}return _}(_,jn,yn);const Fi=function Ne(b,_){let m=null,E=null;return Array.isArray(_)&&_.length?(m=q(_[0]),_.length>1&&(E=q(_[_.length-1]))):_ instanceof Map&&(m=q(_)),m||E?new He(b,m,E):null}(_,jn);return new ln(_,jn,Bt,Fi)}}const On="@.disabled";class $e{namespaceId;delegate;engine;_onDestroy;\u0275type=0;constructor(_,m,E,D){this.namespaceId=_,this.delegate=m,this.engine=E,this._onDestroy=D}get data(){return this.delegate.data}destroyNode(_){this.delegate.destroyNode?.(_)}destroy(){this.engine.destroy(this.namespaceId,this.delegate),this.engine.afterFlushAnimationsDone(()=>{queueMicrotask(()=>{this.delegate.destroy()})}),this._onDestroy?.()}createElement(_,m){return this.delegate.createElement(_,m)}createComment(_){return this.delegate.createComment(_)}createText(_){return this.delegate.createText(_)}appendChild(_,m){this.delegate.appendChild(_,m),this.engine.onInsert(this.namespaceId,m,_,!1)}insertBefore(_,m,E,D=!0){this.delegate.insertBefore(_,m,E),this.engine.onInsert(this.namespaceId,m,_,D)}removeChild(_,m,E,D){D?this.delegate.removeChild(_,m,E,D):this.parentNode(m)&&this.engine.onRemove(this.namespaceId,m,this.delegate)}selectRootElement(_,m){return this.delegate.selectRootElement(_,m)}parentNode(_){return this.delegate.parentNode(_)}nextSibling(_){return this.delegate.nextSibling(_)}setAttribute(_,m,E,D){this.delegate.setAttribute(_,m,E,D)}removeAttribute(_,m,E){this.delegate.removeAttribute(_,m,E)}addClass(_,m){this.delegate.addClass(_,m)}removeClass(_,m){this.delegate.removeClass(_,m)}setStyle(_,m,E,D){this.delegate.setStyle(_,m,E,D)}removeStyle(_,m,E){this.delegate.removeStyle(_,m,E)}setProperty(_,m,E){"@"==m.charAt(0)&&m==On?this.disableAnimations(_,!!E):this.delegate.setProperty(_,m,E)}setValue(_,m){this.delegate.setValue(_,m)}listen(_,m,E,D){return this.delegate.listen(_,m,E,D)}disableAnimations(_,m){this.engine.disableAnimations(_,m)}}class mn extends $e{factory;constructor(_,m,E,D,I){super(m,E,D,I),this.factory=_,this.namespaceId=m}setProperty(_,m,E){"@"==m.charAt(0)?"."==m.charAt(1)&&m==On?this.disableAnimations(_,E=void 0===E||!!E):this.engine.process(this.namespaceId,_,m.slice(1),E):this.delegate.setProperty(_,m,E)}listen(_,m,E,D){if("@"==m.charAt(0)){const I=function Ln(b){switch(b){case"body":return document.body;case"document":return document;case"window":return window;default:return b}}(_);let Oe=m.slice(1),Ct="";return"@"!=Oe.charAt(0)&&([Oe,Ct]=function Ei(b){const _=b.indexOf(".");return[b.substring(0,_),b.slice(_+1)]}(Oe)),this.engine.listen(this.namespaceId,I,Oe,Ct,Bt=>{this.factory.scheduleListenerCallback(Bt._data||-1,E,Bt)})}return this.delegate.listen(_,m,E,D)}}class xa{delegate;engine;_zone;_currentId=0;_microtaskId=1;_animationCallbacksBuffer=[];_rendererCache=new Map;_cdRecurDepth=0;constructor(_,m,E){this.delegate=_,this.engine=m,this._zone=E,m.onRemovalComplete=(D,I)=>{I?.removeChild(null,D)}}createRenderer(_,m){const D=this.delegate.createRenderer(_,m);if(!_||!m?.data?.animation){const yn=this._rendererCache;let Yn=yn.get(D);return Yn||(Yn=new $e("",D,this.engine,()=>yn.delete(D)),yn.set(D,Yn)),Yn}const I=m.id,Oe=m.id+"-"+this._currentId;this._currentId++,this.engine.register(Oe,_);const Ct=yn=>{Array.isArray(yn)?yn.forEach(Ct):this.engine.registerTrigger(I,Oe,_,yn.name,yn)};return m.data.animation.forEach(Ct),new mn(this,Oe,D,this.engine)}begin(){this._cdRecurDepth++,this.delegate.begin&&this.delegate.begin()}_scheduleCountTask(){queueMicrotask(()=>{this._microtaskId++})}scheduleListenerCallback(_,m,E){if(_>=0&&_m(E));const D=this._animationCallbacksBuffer;0==D.length&&queueMicrotask(()=>{this._zone.run(()=>{D.forEach(I=>{const[Oe,Ct]=I;Oe(Ct)}),this._animationCallbacksBuffer=[]})}),D.push([m,E])}end(){this._cdRecurDepth--,0==this._cdRecurDepth&&this._zone.runOutsideAngular(()=>{this._scheduleCountTask(),this.engine.flush(this._microtaskId)}),this.delegate.end&&this.delegate.end()}whenRenderingDone(){return this.engine.whenRenderingDone()}componentReplaced(_){this.engine.flush(),this.delegate.componentReplaced?.(_)}}const Ss=[{provide:ra,useFactory:function el(){return new qt}},{provide:Sr,useClass:(()=>{class b extends Sr{constructor(m,E,D){super(m,E,D)}ngOnDestroy(){this.flush()}static \u0275fac=function(E){return new(E||b)(v.KVO(v.qQL),v.KVO(ia),v.KVO(ra))};static \u0275prov=v.jDH({token:b,factory:b.\u0275fac})}return b})()},{provide:e._9s,useFactory:function Ml(b,_,m){return new xa(b,_,m)},deps:[f.mE,Sr,e.SKi]}],tr=[{provide:ia,useClass:Bn},{provide:e.bc$,useValue:"NoopAnimations"},...Ss],Eo=[{provide:ia,useFactory:()=>new Oi},{provide:e.bc$,useFactory:()=>"BrowserAnimations"},...Ss];let Mo=(()=>{class b{static withConfig(m){return{ngModule:b,providers:m.disableAnimations?tr:Eo}}static \u0275fac=function(E){return new(E||b)};static \u0275mod=e.$C({type:b});static \u0275inj=v.G2t({providers:Eo,imports:[he]})}return b})();var ds=l(9327),nr=l(9330),mi=l(9640),Uo=l(1747),Go=l(983),gl=l(1985),Tr=l(7673),jo=l(7786),mo=l(7242),Tl=l(2771),Vl=l(7647),za=l(5964),us=l(6354),Dl=l(274),eo=l(3236),So=l(8211),fo=l(9974),To=l(8750),Ho=l(1853),_l=l(4360),to=l(5225);const wl=(0,Ho.L)(b=>function(m=null){b(this),this.message="Timeout has occurred",this.name="TimeoutError",this.info=m});function Al(b){throw new wl(b)}var io=l(152),Ys=l(9437),Dr=l(6697),li=l(6977),Wr=l(5558),ao=l(5245),Pr=l(941),so=l(3993),tl=l(1943),Ul=l(9079);const Do="PERFORM_ACTION",ir="ROLLBACK",nl="TOGGLE_ACTION",de="JUMP_TO_STATE",Q="JUMP_TO_ACTION",me="IMPORT_STATE",et="LOCK_CHANGES",Mt="PAUSE_RECORDING";class Kt{constructor(_,m){if(this.action=_,this.timestamp=m,this.type=Do,typeof _.type>"u")throw new Error('Actions may not have an undefined "type" property. Have you misspelled a constant?')}}class Tn{constructor(){this.type="REFRESH"}}class ai{constructor(_){this.timestamp=_,this.type="RESET"}}class Gi{constructor(_){this.timestamp=_,this.type=ir}}class La{constructor(_){this.timestamp=_,this.type="COMMIT"}}class as{constructor(){this.type="SWEEP"}}class Ns{constructor(_){this.id=_,this.type=nl}}class ar{constructor(_){this.index=_,this.type=de}}class ro{constructor(_){this.actionId=_,this.type=Q}}class oo{constructor(_){this.nextLiftedState=_,this.type=me}}class Il{constructor(_){this.status=_,this.type=et}}class mc{constructor(_){this.status=_,this.type=Mt}}const kl=new v.nKC("@ngrx/store-devtools Options"),Xc=new v.nKC("@ngrx/store-devtools Initial Config");function po(){return null}function pc(b){const _={maxAge:!1,monitor:po,actionSanitizer:void 0,stateSanitizer:void 0,name:"NgRx Store DevTools",serialize:!1,logOnly:!1,autoPause:!1,trace:!1,traceLimit:75,features:{pause:!0,lock:!0,persist:!0,export:!0,import:"custom",jump:!0,skip:!0,reorder:!0,dispatch:!0,test:!0},connectInZone:!1},m="function"==typeof b?b():b,D=m.features||!!m.logOnly&&{pause:!0,export:!0,test:!0}||_.features;!0===D.import&&(D.import="custom");const I=Object.assign({},_,{features:D},m);if(I.maxAge&&I.maxAge<2)throw new Error(`Devtools 'maxAge' cannot be less than 2, got ${I.maxAge}`);return I}function Fr(b,_){return b.filter(m=>_.indexOf(m)<0)}function wo(b){const{computedStates:_,currentStateIndex:m}=b;if(m>=_.length){const{state:D}=_[_.length-1];return D}const{state:E}=_[m];return E}function Ao(b){return new Kt(b,+Date.now())}function Lc(b,_){return Object.keys(_).reduce((m,E)=>{const D=Number(E);return m[D]=vl(b,_[D],D),m},{})}function vl(b,_,m){return{..._,action:b(_.action,m)}}function al(b,_){return _.map((m,E)=>({state:Lo(b,m.state,E),error:m.error}))}function Lo(b,_,m){return b(_,m)}function Ol(b){return b.predicate||b.actionsSafelist||b.actionsBlocklist}function jl(b,_,m,E,D){const I=m&&!m(b,_.action),Oe=E&&!_.action.type.match(E.map(Bt=>Hl(Bt)).join("|")),Ct=D&&_.action.type.match(D.map(Bt=>Hl(Bt)).join("|"));return I||Oe||Ct}function Hl(b){return b.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}function Rl(b){return{ngZone:b?(0,v.WQX)(e.SKi):null,connectInZone:b}}let Io=(()=>{var b;class _ extends mi.SS{static#e=b=()=>(this.\u0275fac=(()=>{let E;return function(I){return(E||(E=e.xGo(_)))(I||_)}})(),this.\u0275prov=v.jDH({token:_,factory:_.\u0275fac}))}return b(),_})();const Wl=new v.nKC("@ngrx/store-devtools Redux Devtools Extension");let sr=(()=>{var b;class _{constructor(E,D,I){this.config=D,this.dispatcher=I,this.zoneConfig=Rl(this.config.connectInZone),this.devtoolsExtension=E,this.createActionStreams()}notify(E,D){if(this.devtoolsExtension)if(E.type===Do){if(D.isLocked||D.isPaused)return;const I=wo(D);if(Ol(this.config)&&jl(I,E,this.config.predicate,this.config.actionsSafelist,this.config.actionsBlocklist))return;const Oe=this.config.stateSanitizer?Lo(this.config.stateSanitizer,I,D.currentStateIndex):I,Ct=this.config.actionSanitizer?vl(this.config.actionSanitizer,E,D.nextActionId):E;this.sendToReduxDevtools(()=>this.extensionConnection.send(Ct,Oe))}else{const I={...D,stagedActionIds:D.stagedActionIds,actionsById:this.config.actionSanitizer?Lc(this.config.actionSanitizer,D.actionsById):D.actionsById,computedStates:this.config.stateSanitizer?al(this.config.stateSanitizer,D.computedStates):D.computedStates};this.sendToReduxDevtools(()=>this.devtoolsExtension.send(null,I,this.getExtensionConfig(this.config)))}}createChangesObservable(){return this.devtoolsExtension?new gl.c(E=>{const D=this.zoneConfig.connectInZone?this.zoneConfig.ngZone.runOutsideAngular(()=>this.devtoolsExtension.connect(this.getExtensionConfig(this.config))):this.devtoolsExtension.connect(this.getExtensionConfig(this.config));return this.extensionConnection=D,D.init(),D.subscribe(I=>E.next(I)),D.unsubscribe}):Go.w}createActionStreams(){const E=this.createChangesObservable().pipe((0,Vl.u)()),D=E.pipe((0,za.p)(Yn=>"START"===Yn.type)),I=E.pipe((0,za.p)(Yn=>"STOP"===Yn.type)),Oe=E.pipe((0,za.p)(Yn=>"DISPATCH"===Yn.type),(0,us.T)(Yn=>this.unwrapAction(Yn.payload)),(0,Dl.H)(Yn=>Yn.type===me?this.dispatcher.pipe((0,za.p)(jn=>jn.type===mi.q6),function no(b,_){const{first:m,each:E,with:D=Al,scheduler:I=_??eo.E,meta:Oe=null}=(0,So.v)(b)?{first:b}:"number"==typeof b?{each:b}:b;if(null==m&&null==E)throw new TypeError("No timeout provided.");return(0,fo.N)((Ct,Bt)=>{let yn,Yn,jn=null,Fi=0;const Zi=Mi=>{Yn=(0,to.N)(Bt,I,()=>{try{yn.unsubscribe(),(0,To.Tg)(D({meta:Oe,lastValue:jn,seen:Fi})).subscribe(Bt)}catch(Ai){Bt.error(Ai)}},Mi)};yn=Ct.subscribe((0,_l._)(Bt,Mi=>{Yn?.unsubscribe(),Fi++,Bt.next(jn=Mi),E>0&&Zi(E)},void 0,void 0,()=>{Yn?.closed||Yn?.unsubscribe(),jn=null})),!Fi&&Zi(null!=m?"number"==typeof m?m:+m-I.now():E)})}(1e3),(0,io.B)(1e3),(0,us.T)(()=>Yn),(0,Ys.W)(()=>(0,Tr.of)(Yn)),(0,Dr.s)(1)):(0,Tr.of)(Yn))),Bt=E.pipe((0,za.p)(Yn=>"ACTION"===Yn.type),(0,us.T)(Yn=>this.unwrapAction(Yn.payload))).pipe((0,li.Q)(I)),yn=Oe.pipe((0,li.Q)(I));this.start$=D.pipe((0,li.Q)(I)),this.actions$=this.start$.pipe((0,Wr.n)(()=>Bt)),this.liftedActions$=this.start$.pipe((0,Wr.n)(()=>yn))}unwrapAction(E){return"string"==typeof E?(0,eval)(`(${E})`):E}getExtensionConfig(E){const D={name:E.name,features:E.features,serialize:E.serialize,autoPause:E.autoPause??!1,trace:E.trace??!1,traceLimit:E.traceLimit??75};return!1!==E.maxAge&&(D.maxAge=E.maxAge),D}sendToReduxDevtools(E){try{E()}catch(D){console.warn("@ngrx/store-devtools: something went wrong inside the redux devtools",D)}}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(v.KVO(Wl),v.KVO(kl),v.KVO(Io))},this.\u0275prov=v.jDH({token:_,factory:_.\u0275fac}))}return b(),_})();const Ts={type:mi.Zz},je={type:"@ngrx/store-devtools/recompute"};function ct(b,_,m,E,D){if(E)return{state:m,error:"Interrupted by an error up the chain"};let Oe,I=m;try{I=b(m,_)}catch(Ct){Oe=Ct.toString(),D.handleError(Ct)}return{state:I,error:Oe}}function Qt(b,_,m,E,D,I,Oe,Ct,Bt){if(_>=b.length&&b.length===I.length)return b;const yn=b.slice(0,_),Yn=I.length-(Bt?1:0);for(let jn=_;jn-1?Mi:ct(m,Zi,Ai,Sa,Ct);yn.push(fs)}return Bt&&yn.push(b[b.length-1]),yn}let Ci=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt,yn,Yn){const jn=function Pn(b,_){return{monitorState:_(void 0,{}),nextActionId:1,actionsById:{0:Ao(Ts)},stagedActionIds:[0],skippedActionIds:[],committedState:b,currentStateIndex:0,computedStates:[],isLocked:!1,isPaused:!1}}(yn,Yn.monitor),Fi=function $n(b,_,m,E,D={}){return I=>(Oe,Ct)=>{let{monitorState:Bt,actionsById:yn,nextActionId:Yn,stagedActionIds:jn,skippedActionIds:Fi,committedState:Zi,currentStateIndex:Mi,computedStates:Ai,isLocked:Sa,isPaused:Ia}=Oe||_;function fs(ws){let Fa=ws,Vs=jn.slice(1,Fa+1);for(let ps=0;ps-1===Vs.indexOf(ps)),jn=[0,...jn.slice(Fa+1)],Zi=Ai[Fa].state,Ai=Ai.slice(Fa),Mi=Mi>Fa?Mi-Fa:0}function $s(){yn={0:Ao(Ts)},Yn=1,jn=[0],Fi=[],Zi=Ai[Mi].state,Mi=0,Ai=[]}Oe||(yn=Object.create(yn));let Ea=0;switch(Ct.type){case et:Sa=Ct.status,Ea=1/0;break;case Mt:Ia=Ct.status,Ia?(jn=[...jn,Yn],yn[Yn]=new Kt({type:"@ngrx/devtools/pause"},+Date.now()),Yn++,Ea=jn.length-1,Ai=Ai.concat(Ai[Ai.length-1]),Mi===jn.length-2&&Mi++,Ea=1/0):$s();break;case"RESET":yn={0:Ao(Ts)},Yn=1,jn=[0],Fi=[],Zi=b,Mi=0,Ai=[];break;case"COMMIT":$s();break;case ir:yn={0:Ao(Ts)},Yn=1,jn=[0],Fi=[],Mi=0,Ai=[];break;case nl:{const{id:ws}=Ct;Fi=-1===Fi.indexOf(ws)?[ws,...Fi]:Fi.filter(Vs=>Vs!==ws),Ea=jn.indexOf(ws);break}case"SET_ACTIONS_ACTIVE":{const{start:ws,end:Fa,active:Vs}=Ct,ps=[];for(let xl=ws;xlD.maxAge&&(Ai=Qt(Ai,Ea,I,Zi,yn,jn,Fi,m,Ia),fs(jn.length-D.maxAge),Ea=1/0);break;case mi.q6:if(Ai.filter(Fa=>Fa.error).length>0)Ea=0,D.maxAge&&jn.length>D.maxAge&&(Ai=Qt(Ai,Ea,I,Zi,yn,jn,Fi,m,Ia),fs(jn.length-D.maxAge),Ea=1/0);else{if(!Ia&&!Sa){Mi===jn.length-1&&Mi++;const Fa=Yn++;yn[Fa]=new Kt(Ct,+Date.now()),jn=[...jn,Fa],Ea=jn.length-1,Ai=Qt(Ai,Ea,I,Zi,yn,jn,Fi,m,Ia)}Ai=Ai.map(Fa=>({...Fa,state:I(Fa.state,je)})),Mi=jn.length-1,D.maxAge&&jn.length>D.maxAge&&fs(jn.length-D.maxAge),Ea=1/0}break;default:Ea=1/0}return Ai=Qt(Ai,Ea,I,Zi,yn,jn,Fi,m,Ia),Bt=E(Bt,Ct),{monitorState:Bt,actionsById:yn,nextActionId:Yn,stagedActionIds:jn,skippedActionIds:Fi,committedState:Zi,currentStateIndex:Mi,computedStates:Ai,isLocked:Sa,isPaused:Ia}}}(yn,jn,Bt,Yn.monitor,Yn),Zi=(0,jo.h)((0,jo.h)(D.asObservable().pipe((0,ao.i)(1)),Oe.actions$).pipe((0,us.T)(Ao)),E,Oe.liftedActions$).pipe((0,Pr.Q)(mo.T)),Mi=I.pipe((0,us.T)(Fi)),Ai=Rl(Yn.connectInZone),Sa=new Tl.m(1);this.liftedStateSubscription=Zi.pipe((0,so.E)(Mi),wi(Ai),(0,tl.S)(({state:$s},[Ea,ws])=>{let Fa=ws($s,Ea);return Ea.type!==Do&&Ol(Yn)&&(Fa=function Gl(b,_,m,E){const D=[],I={},Oe=[];return b.stagedActionIds.forEach((Ct,Bt)=>{const yn=b.actionsById[Ct];yn&&(Bt&&jl(b.computedStates[Bt],yn,_,m,E)||(I[Ct]=yn,D.push(Ct),Oe.push(b.computedStates[Bt])))}),{...b,stagedActionIds:D,actionsById:I,computedStates:Oe}}(Fa,Yn.predicate,Yn.actionsSafelist,Yn.actionsBlocklist)),Oe.notify(Ea,Fa),{state:Fa,action:Ea}},{state:jn,action:null})).subscribe(({state:$s,action:Ea})=>{Sa.next($s),Ea.type===Do&&Ct.next(Ea.action)}),this.extensionStartSubscription=Oe.start$.pipe(wi(Ai)).subscribe(()=>{this.refresh()});const Ia=Sa.asObservable(),fs=Ia.pipe((0,us.T)(wo));Object.defineProperty(fs,"state",{value:(0,Ul.ot)(fs,{manualCleanup:!0,requireSync:!0})}),this.dispatcher=E,this.liftedState=Ia,this.state=fs}ngOnDestroy(){this.liftedStateSubscription.unsubscribe(),this.extensionStartSubscription.unsubscribe()}dispatch(E){this.dispatcher.next(E)}next(E){this.dispatcher.next(E)}error(E){}complete(){}performAction(E){this.dispatch(new Kt(E,+Date.now()))}refresh(){this.dispatch(new Tn)}reset(){this.dispatch(new ai(+Date.now()))}rollback(){this.dispatch(new Gi(+Date.now()))}commit(){this.dispatch(new La(+Date.now()))}sweep(){this.dispatch(new as)}toggleAction(E){this.dispatch(new Ns(E))}jumpToAction(E){this.dispatch(new ro(E))}jumpToState(E){this.dispatch(new ar(E))}importState(E){this.dispatch(new oo(E))}lockChanges(E){this.dispatch(new Il(E))}pauseRecording(E){this.dispatch(new mc(E))}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(v.KVO(Io),v.KVO(mi.SS),v.KVO(mi.QU),v.KVO(sr),v.KVO(mi.sA),v.KVO(v.zcH),v.KVO(mi.N_),v.KVO(kl))},this.\u0275prov=v.jDH({token:_,factory:_.\u0275fac}))}return b(),_})();function wi({ngZone:b,connectInZone:_}){return m=>_?new gl.c(E=>m.subscribe({next:D=>b.run(()=>E.next(D)),error:D=>b.run(()=>E.error(D)),complete:()=>b.run(()=>E.complete())})):m}const $i=new v.nKC("@ngrx/store-devtools Is Devtools Extension or Monitor Present");function sa(b,_){return!!b||_.monitor!==po}function va(){const b="__REDUX_DEVTOOLS_EXTENSION__";return"object"==typeof window&&typeof window[b]<"u"?window[b]:null}function oa(b){return b.state}function hs(b={}){return(0,v.EmA)([sr,Io,Ci,{provide:Xc,useValue:b},{provide:$i,deps:[Wl,kl],useFactory:sa},{provide:Wl,useFactory:va},{provide:kl,deps:[Xc],useFactory:pc},{provide:mi.h1,deps:[Ci],useFactory:oa},{provide:mi.Bh,useExisting:Io}])}let Ls=(()=>{var b;class _{static instrument(E={}){return{ngModule:_,providers:[hs(E)]}}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)},this.\u0275mod=e.$C({type:_}),this.\u0275inj=v.G2t({}))}return b(),_})();var gi=l(1413),Nr=l(3726),Br=l(2806),Xo=l(1807);function Oo(b=0,_=eo.E){return b<0&&(b=0),(0,Xo.O)(b,b,_)}var Pl=l(8359),yl=l(7908),Xr=l(9326),Xl=l(8141),Kc=l(980),_1=l(3294);class Yc{}function nc(b){return(0,v.EmA)([{provide:Yc,useValue:b}])}let v1=(()=>{class b{constructor(m,E){this._ngZone=E,this.timerStart$=new gi.B,this.idleDetected$=new gi.B,this.timeout$=new gi.B,this.idleMillisec=6e5,this.idleSensitivityMillisec=1e3,this.timeout=300,this.pingMillisec=12e4,this.isTimeout=!1,this.isInactivityTimer=!1,this.isIdleDetected=!1,m&&this.setConfig(m)}startWatching(){this.activityEvents$||(this.activityEvents$=(0,jo.h)((0,Nr.R)(window,"mousemove"),(0,Nr.R)(window,"resize"),(0,Nr.R)(document,"keydown"))),this.idle$=(0,Br.H)(this.activityEvents$),this.idleSubscription&&this.idleSubscription.unsubscribe(),this.idleSubscription=this.idle$.pipe(function tc(b,..._){var m,E;const D=null!==(m=(0,Xr.lI)(_))&&void 0!==m?m:eo.E,I=null!==(E=_[0])&&void 0!==E?E:null,Oe=_[1]||1/0;return(0,fo.N)((Ct,Bt)=>{let yn=[],Yn=!1;const jn=Mi=>{const{buffer:Ai,subs:Sa}=Mi;Sa.unsubscribe(),(0,yl.o)(yn,Mi),Bt.next(Ai),Yn&&Fi()},Fi=()=>{if(yn){const Mi=new Pl.yU;Bt.add(Mi);const Sa={buffer:[],subs:Mi};yn.push(Sa),(0,to.N)(Mi,D,()=>jn(Sa),b)}};null!==I&&I>=0?(0,to.N)(Bt,D,Fi,I,!0):Yn=!0,Fi();const Zi=(0,_l._)(Bt,Mi=>{const Ai=yn.slice();for(const Sa of Ai){const{buffer:Ia}=Sa;Ia.push(Mi),Oe<=Ia.length&&jn(Sa)}},()=>{for(;yn?.length;)Bt.next(yn.shift().buffer);Zi?.unsubscribe(),Bt.complete(),Bt.unsubscribe()},void 0,()=>yn=null);Ct.subscribe(Zi)})}(this.idleSensitivityMillisec),(0,za.p)(m=>!m.length&&!this.isIdleDetected&&!this.isInactivityTimer),(0,Xl.M)(()=>{this.isIdleDetected=!0,this.idleDetected$.next(!0)}),(0,Wr.n)(()=>this._ngZone.runOutsideAngular(()=>Oo(1e3).pipe((0,li.Q)((0,jo.h)(this.activityEvents$,(0,Xo.O)(this.idleMillisec).pipe((0,Xl.M)(()=>{this.isInactivityTimer=!0,this.timerStart$.next(!0)})))),(0,Kc.j)(()=>{this.isIdleDetected=!1,this.idleDetected$.next(!1)}))))).subscribe(),this.setupTimer(this.timeout),this.setupPing(this.pingMillisec)}stopWatching(){this.stopTimer(),this.idleSubscription&&this.idleSubscription.unsubscribe()}stopTimer(){this.isInactivityTimer=!1,this.timerStart$.next(!1)}resetTimer(){this.stopTimer(),this.isTimeout=!1}onTimerStart(){return this.timerStart$.pipe((0,_1.F)(),(0,Wr.n)(m=>m?this.timer$:(0,Tr.of)(null)))}onIdleStatusChanged(){return this.idleDetected$.asObservable()}onTimeout(){return this.timeout$.pipe((0,za.p)(m=>!!m),(0,Xl.M)(()=>this.isTimeout=!0),(0,us.T)(()=>!0))}getConfigValue(){return{idle:this.idleMillisec/1e3,idleSensitivity:this.idleSensitivityMillisec/1e3,timeout:this.timeout,ping:this.pingMillisec/1e3}}setConfigValues(m){!this.idleSubscription||this.idleSubscription.closed?this.setConfig(m):console.error("Call stopWatching() before set config values")}setConfig(m){m.idle&&(this.idleMillisec=1e3*m.idle),m.ping&&(this.pingMillisec=1e3*m.ping),m.idleSensitivity&&(this.idleSensitivityMillisec=1e3*m.idleSensitivity),m.timeout&&(this.timeout=m.timeout)}setCustomActivityEvents(m){!this.idleSubscription||this.idleSubscription.closed?this.activityEvents$=m:console.error("Call stopWatching() before set custom activity events")}setupTimer(m){this._ngZone.runOutsideAngular(()=>{this.timer$=(0,Tr.of)(()=>new Date).pipe((0,us.T)(E=>E()),(0,Wr.n)(E=>Oo(1e3).pipe((0,us.T)(()=>Math.round(((new Date).valueOf()-E.valueOf())/1e3)),(0,Xl.M)(D=>{D>=m&&this.timeout$.next(!0)}))))})}setupPing(m){this.ping$=Oo(m).pipe((0,za.p)(()=>!this.isTimeout))}}return b.\u0275fac=function(m){return new(m||b)(v.KVO(Yc,8),v.KVO(e.SKi))},b.\u0275prov=v.jDH({token:b,factory:b.\u0275fac,providedIn:"root"}),b})();var lo=l(8132),Ha=l(3694),Ti=l(5383),Oa=l(9647),os=l(60),K=l(5596),Ie=l(2920),Ut=l(6850);const Gn=()=>({initial:!1});function ui(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",11),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.activeLink=D.links[1].link)}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[1].link))("active",m.activeLink===m.links[1].link)("state",e.lJ4(5,Gn)),e.R7$(),e.JRh(m.links[1].name)}}function ki(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",12),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.activeLink=D.links[2].link)}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[2].link))("active",m.activeLink===m.links[2].link),e.R7$(),e.JRh(m.links[2].name)}}let Wa=(()=>{var b;class _{constructor(E,D){this.store=E,this.router=D,this.faUserCog=Ti.McB,this.showBitcoind=!1,this.links=[{link:"app",name:"Application"},{link:"auth",name:"Authentication"},{link:"bconfig",name:"BitcoinD Config"}],this.activeLink="",this.unSubs=[new gi.B,new gi.B,new gi.B]}ngOnInit(){const E=this.links.find(D=>this.router.url.includes(D.link));this.activeLink=E?E.link:this.links[0].link,this.router.events.pipe((0,li.Q)(this.unSubs[0]),(0,za.p)(D=>D instanceof Ha.gx)).subscribe({next:D=>{const I=this.links.find(Oe=>D.urlAfterRedirects.includes(Oe.link));this.activeLink=I?I.link:this.links[0].link}}),this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[1])).subscribe(D=>{this.appConfig=D}),this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[2])).subscribe(D=>{this.showBitcoind=!1,this.selNode=D,this.selNode.settings&&this.selNode.settings.bitcoindConfigPath&&""!==this.selNode.settings.bitcoindConfigPath.trim()&&(this.showBitcoind=!0)})}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(mi.il),e.rXU(Ha.Ix))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-settings"]],standalone:!1,decls:16,vars:8,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","state","click",4,"ngIf"],["role","tab","tabindex","3","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active","state"],["role","tab","tabindex","3","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Settings"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.activeLink=I.links[0].link)}),e.EFF(9),e.k0s(),e.DNE(10,ui,2,6,"div",8)(11,ki,2,4,"div",9),e.k0s(),e.nrm(12,"mat-tab-nav-panel",null,0),e.j41(14,"div",10),e.nrm(15,"router-outlet"),e.k0s()()()()}if(2&D){const Oe=e.sdS(13);e.R7$(),e.Y8G("icon",I.faUserCog),e.R7$(6),e.Y8G("tabPanel",Oe),e.R7$(),e.Y8G("routerLink",e.mNQ(I.links[0].link))("active",I.activeLink===I.links[0].link),e.R7$(),e.JRh(I.links[0].name),e.R7$(),e.Y8G("ngIf",!+I.appConfig.SSO.rtlSSO),e.R7$(),e.Y8G("ngIf",I.showBitcoind)}},dependencies:[w.bT,os.aY,K.RN,K.m2,Ie.DJ,Ie.sA,Ie.UI,Ut.Bu,Ut.hQ,Ut.Ql,Ha.n3,lo.Wk],encapsulation:2}))}return b(),_})();var Bi=l(1771),Aa=l(8570),hi=l(9417),es=l(8834),Ma=l(9588),sl=l(6183),ac=l(3029),go=l(497),Kl=l(9587);function t2(b,_){if(1&b&&(e.j41(0,"mat-option",15),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m.index),e.R7$(),e.Lme(" ",m.lnNode," (",m.lnImplementation,") ")}}function S4(b,_){if(1&b){const m=e.RV6();e.j41(0,"form",3,0)(2,"div",4),e.nrm(3,"fa-icon",5),e.j41(4,"span",6),e.EFF(5,"Default Node"),e.k0s()(),e.j41(6,"div",7)(7,"div",8)(8,"mat-form-field",9)(9,"mat-label"),e.EFF(10,"Default Node"),e.k0s(),e.j41(11,"mat-select",10),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG();return e.DH7(I.appConfig.defaultNodeIndex,D)||(I.appConfig.defaultNodeIndex=D),v.Njj(D)}),e.DNE(12,t2,2,3,"mat-option",11),e.k0s()()(),e.j41(13,"div",12)(14,"div",8)(15,"button",13),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onResetSettings())}),e.EFF(16,"Reset"),e.k0s(),e.j41(17,"button",14),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onUpdateApplicationSettings())}),e.EFF(18,"Update"),e.k0s()()()()()}if(2&b){const m=e.XpG();e.R7$(3),e.Y8G("icon",m.faWindowRestore),e.R7$(8),e.R50("ngModel",m.appConfig.defaultNodeIndex),e.R7$(),e.Y8G("ngForOf",m.appConfig.nodes)}}let Qc=(()=>{var b;class _{constructor(E,D){this.logger=E,this.store=D,this.faWindowRestore=Ti.aFw,this.faPlus=Ti.QLR,this.previousDefaultNode=0,this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.appConfig=E,this.previousDefaultNode=this.appConfig.defaultNodeIndex,this.logger.info(E)})}onAddNewNode(){this.logger.warn("ADD NEW NODE")}onUpdateApplicationSettings(){this.appConfig.defaultNodeIndex=this.appConfig.defaultNodeIndex?this.appConfig.defaultNodeIndex:this.appConfig&&this.appConfig.nodes&&this.appConfig.nodes.length&&this.appConfig.nodes.length>0&&this.appConfig.nodes[0].index?+this.appConfig.nodes[0].index:-1,this.store.dispatch((0,Bi.rc)({payload:{showSnackBar:!0,message:"Default Node Updated.",config:this.appConfig}}))}onResetSettings(){this.appConfig.defaultNodeIndex=this.previousDefaultNode}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(mi.il))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-app-settings"]],standalone:!1,decls:2,vars:1,consts:[["form","ngForm"],["fxLayout","column","fxFlex","100",1,"padding-gap-x-large",3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","settings-container page-sub-title-container mt-1",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"my-2"],["fxLayout","row","fxLayoutAlign","start start"],["fxLayout","column","fxLayoutAlign","start start"],["autoFocus","","name","defaultNode",3,"ngModelChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"mt-1"],["mat-stroked-button","","color","primary",1,"mr-1",3,"click"],["mat-flat-button","","color","primary",3,"click"],[3,"value"]],template:function(D,I){1&D&&(e.j41(0,"div",1),e.DNE(1,S4,19,3,"form",2),e.k0s()),2&D&&(e.R7$(),e.Y8G("ngIf",I.appConfig.nodes&&I.appConfig.nodes.length&&I.appConfig.nodes.length>0))},dependencies:[w.Sq,w.bT,hi.qT,hi.BC,hi.cb,hi.vS,hi.cV,os.aY,es.$z,Ma.rl,Ma.nJ,Ie.DJ,Ie.sA,Ie.UI,sl.VO,ac.wT,go.Ld,Kl.N],encapsulation:2}))}return b(),_})();var _c=l(2852),Ro=l(1585),Ko=l(7541),$c=l(5416),n2=l(467);let rl=(()=>{var b;class _{constructor(){this.base32Chars="ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"}generateSecret(E=10){const D=new Uint8Array(E);return window.crypto.getRandomValues(D),this.base32Encode(D)}keyuri(E,D,I){return"otpauth://totp/"+encodeURIComponent(D)+":"+encodeURIComponent(E)+"?secret="+I+"&period=30&digits=6&algorithm=SHA1&issuer="+encodeURIComponent(D)}check(E,D,I){return/^\d+$/.test(E)?this.generate(D,I).then(Oe=>Oe===E).catch(()=>!1):Promise.resolve(!1)}generate(E,D){var I=this;return(0,n2.A)(function*(){const Oe=Math.floor((D??Date.now())/30/1e3),Ct=new Uint8Array(8);let Bt=Oe;for(let Mi=7;Mi>=0;Mi--)Ct[Mi]=255&Bt,Bt=Math.floor(Bt/256);const yn=I.createHmacKey(I.base32Decode(E)),Yn=yield window.crypto.subtle.importKey("raw",yn,{name:"HMAC",hash:"SHA-1"},!1,["sign"]),jn=new Uint8Array(yield window.crypto.subtle.sign("HMAC",Yn,Ct)),Fi=15&jn[jn.length-1];return String(((127&jn[Fi])<<24|(255&jn[Fi+1])<<16|(255&jn[Fi+2])<<8|255&jn[Fi+3])%10**6).padStart(6,"0")})()}createHmacKey(E){if(2*E.length>=20)return E;const D=new Uint8Array(20);for(let I=0;I=5;)Oe+=this.base32Chars[I>>>D-5&31],D-=5;return D>0&&(Oe+=this.base32Chars[I<<5-D&31]),Oe}base32Decode(E){const D=E.toUpperCase().replace(/[=]+$/,"");let I=0,Oe=0;const Ct=[];for(const Bt of D){const yn=this.base32Chars.indexOf(Bt);if(yn<0)throw new Error("Invalid base32 character in secret.");Oe=Oe<<5|yn,I+=5,I>=8&&(Ct.push(Oe>>>I-8&255),I-=8)}return Uint8Array.from(Ct)}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)},this.\u0275prov=v.jDH({token:_,factory:_.\u0275fac,providedIn:"root"}))}return b(),_})();var br=l(3746),Yo=l(6013),Yl=l(8288),i2=l(9157);const Fl=["stepper"];function y1(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG();e.JRh(m.passwordFormLabel)}}function ld(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function a2(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG(2);e.JRh(m.secretFormLabel)}}function A0(b,_){if(1&b&&e.nrm(0,"qr-code",33),2&b){const m=e.XpG(2);e.Y8G("value",m.otpauth)("size",180)}}function Ic(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Secret Code is required."),e.k0s())}function T4(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-step",10)(1,"form",22),e.DNE(2,a2,1,1,"ng-template",23),e.j41(3,"div",24),e.DNE(4,A0,1,2,"qr-code",25),e.k0s(),e.j41(5,"div",26),e.nrm(6,"fa-icon",27),e.j41(7,"span"),e.EFF(8,"You can use a compatible authentication app to get an authentication code when you log in to RTL. e.g.: Google Authenticator."),e.k0s()(),e.j41(9,"div",28)(10,"mat-form-field",13)(11,"mat-label"),e.EFF(12,"Secret Code"),e.k0s(),e.nrm(13,"input",29),e.j41(14,"fa-icon",30),e.bIt("copied",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onCopySecret(D))}),e.k0s(),e.DNE(15,Ic,2,0,"mat-error",15),e.k0s()(),e.j41(16,"div",31)(17,"button",32),e.EFF(18,"Next"),e.k0s()()()()}if(2&b){const m=e.XpG();e.Y8G("stepControl",m.secretFormGroup)("editable",m.flgEditable),e.R7$(),e.Y8G("formGroup",m.secretFormGroup),e.R7$(3),e.Y8G("ngIf",m.otpauth),e.R7$(2),e.Y8G("icon",m.faInfoCircle),e.R7$(8),e.Y8G("icon",m.faCopy)("payload",null==m.secretFormGroup||null==m.secretFormGroup.controls||null==m.secretFormGroup.controls.secret?null:m.secretFormGroup.controls.secret.value),e.R7$(),e.Y8G("ngIf",null==m.secretFormGroup||null==m.secretFormGroup.controls||null==m.secretFormGroup.controls.secret||null==m.secretFormGroup.controls.secret.errors?null:m.secretFormGroup.controls.secret.errors.required)}}function L0(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG(2);e.JRh(m.tokenFormLabel)}}function I0(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Token is required."),e.k0s())}function Te(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Token is invalid."),e.k0s())}function dt(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",8)(1,"div",28)(2,"mat-form-field",13)(3,"mat-label"),e.EFF(4,"Token"),e.k0s(),e.nrm(5,"input",37),e.DNE(6,I0,2,0,"mat-error",15)(7,Te,2,0,"mat-error",15),e.k0s()(),e.j41(8,"div",31)(9,"button",38),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onVerifyToken())}),e.EFF(10),e.k0s()()()}if(2&b){const m=e.XpG(2);e.R7$(6),e.Y8G("ngIf",null==m.tokenFormGroup||null==m.tokenFormGroup.controls||null==m.tokenFormGroup.controls.token||null==m.tokenFormGroup.controls.token.errors?null:m.tokenFormGroup.controls.token.errors.required),e.R7$(),e.Y8G("ngIf",null==m.tokenFormGroup||null==m.tokenFormGroup.controls||null==m.tokenFormGroup.controls.token||null==m.tokenFormGroup.controls.token.errors?null:m.tokenFormGroup.controls.token.errors.notValid),e.R7$(3),e.JRh(null!=m.tokenFormGroup&&null!=m.tokenFormGroup.controls&&null!=m.tokenFormGroup.controls.token&&null!=m.tokenFormGroup.controls.token.errors&&m.tokenFormGroup.controls.token.errors.notValid?"Retry":"Verify")}}function st(b,_){1&b&&(e.j41(0,"div")(1,"strong"),e.EFF(2,"Success! You are all set."),e.k0s()())}function ft(b,_){if(1&b&&(e.j41(0,"mat-step",34)(1,"form",35),e.DNE(2,L0,1,1,"ng-template",12)(3,dt,11,3,"div",36)(4,st,3,0,"div",15),e.k0s()()),2&b){const m=e.XpG();e.Y8G("stepControl",m.tokenFormGroup),e.R7$(),e.Y8G("formGroup",m.tokenFormGroup),e.R7$(2),e.Y8G("ngIf",!m.flgValidated||!m.isTokenValid),e.R7$(),e.Y8G("ngIf",m.flgValidated&&m.isTokenValid)}}function $t(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG(2);e.JRh(m.disableFormLabel)}}function Cn(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",8)(1,"div",39),e.nrm(2,"fa-icon",27),e.j41(3,"span"),e.EFF(4,"You are about to disable two-factor authentication security from RTL. Are you sure you want to turn it off?"),e.k0s()(),e.j41(5,"div",31)(6,"button",38),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onVerifyToken())}),e.EFF(7,"Disable"),e.k0s()()()}if(2&b){const m=e.XpG(2);e.R7$(2),e.Y8G("icon",m.faExclamationTriangle)}}function Dn(b,_){1&b&&(e.j41(0,"div")(1,"strong"),e.EFF(2,"Two factor authentication removed from RTL."),e.k0s()())}function Zn(b,_){if(1&b&&(e.j41(0,"mat-step",34)(1,"form",35),e.DNE(2,$t,1,1,"ng-template",12)(3,Cn,8,1,"div",36)(4,Dn,3,0,"div",15),e.k0s()()),2&b){const m=e.XpG();e.Y8G("stepControl",m.disableFormGroup),e.R7$(),e.Y8G("formGroup",m.disableFormGroup),e.R7$(2),e.Y8G("ngIf",!m.flgValidated||!m.isTokenValid),e.R7$(),e.Y8G("ngIf",m.flgValidated&&m.isTokenValid)}}let si=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt,yn){this.dialogRef=E,this.data=D,this.store=I,this.formBuilder=Oe,this.rtlEffects=Ct,this.snackBar=Bt,this.totpService=yn,this.faExclamationTriangle=Ti.zpE,this.faCopy=Ti.jPR,this.faInfoCircle=Ti.iW_,this.flgValidated=!1,this.isTokenValid=!0,this.verifyingToken=!1,this.otpauth="",this.appConfig=null,this.flgEditable=!0,this.showDisableStepper=!1,this.passwordFormLabel="Authenticate with your RTL password",this.secretFormLabel="Scan or copy the secret",this.tokenFormLabel="Verify your authentication is working",this.disableFormLabel="Disable two factor authentication",this.passwordFormGroup=this.formBuilder.group({hiddenPassword:["",[hi.k0.required]],password:["",[hi.k0.required]]}),this.secretFormGroup=this.formBuilder.group({secret:[{value:"",disabled:!0},hi.k0.required]}),this.tokenFormGroup=this.formBuilder.group({token:["",hi.k0.required]}),this.disableFormGroup=this.formBuilder.group({}),this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.appConfig=this.data.appConfig||null,this.showDisableStepper=!!this.appConfig?.enable2FA,this.secretFormGroup=this.formBuilder.group({secret:[{value:this.appConfig?.enable2FA?"":this.generateSecret(),disabled:!0},hi.k0.required]})}generateSecret(){const E=this.totpService.generateSecret();return this.otpauth=this.totpService.keyuri("","Ride The Lightning (RTL)",E),E}onAuthenticate(){if(!this.passwordFormGroup.controls.password.value)return!0;this.flgValidated=!1,this.store.dispatch((0,Bi.oz)({payload:_c(this.passwordFormGroup.controls.password.value).toString()})),this.rtlEffects.isAuthorizedRes.pipe((0,Dr.s)(1)).subscribe(E=>{"ERROR"!==E?(this.passwordFormGroup.controls.hiddenPassword.setValue(this.passwordFormGroup.controls.password.value),this.stepper.next()):(this.dialogRef.close(),this.snackBar.open("Unauthorized User. Logging out from RTL."))})}onCopySecret(E){this.snackBar.open("Secret code "+this.secretFormGroup.controls.secret.value+" copied.")}onVerifyToken(){if(!this.appConfig?.enable2FA)return!(this.tokenFormGroup.controls.token.value&&!this.verifyingToken)||(this.verifyingToken=!0,void this.totpService.check(this.tokenFormGroup.controls.token.value,this.secretFormGroup.controls.secret.value).then(E=>{this.verifyingToken=!1,this.isTokenValid=E,E?(this.appConfig.enable2FA=!0,this.appConfig.secret2FA=this.secretFormGroup.controls.secret.value,this.store.dispatch((0,Bi.rc)({payload:{showSnackBar:!1,message:"Two factor authentication enabled successfully.",config:this.appConfig}})),this.tokenFormGroup.controls.token.setValue(""),this.flgValidated=!0):this.tokenFormGroup.controls.token.setErrors({notValid:!0})}));this.appConfig.enable2FA=!1,this.appConfig.secret2FA="",this.store.dispatch((0,Bi.rc)({payload:{showSnackBar:!1,message:"Two factor authentication disabled successfully.",config:this.appConfig}})),this.generateSecret(),this.isTokenValid=!0,this.flgValidated=!0}stepSelectionChanged(E){switch(E.selectedIndex){case 0:default:this.passwordFormLabel="Authenticate with your RTL password";break;case 1:case 2:this.passwordFormLabel="User authenticated successfully"}E.selectedIndex{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ro.CP),e.rXU(Ro.Vh),e.rXU(mi.il),e.rXU(hi.ze),e.rXU(Ko.H),e.rXU($c.UG),e.rXU(rl))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-two-factor-auth"]],viewQuery:function(D,I){if(1&D&&e.GBs(Fl,5),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.stepper=Oe.first)}},standalone:!1,decls:30,vars:11,consts:[["stepper",""],["fxLayout","row"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","15","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"mat-dialog-close"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","space-between",1,"my-1","pr-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100"],["autoFocus","","matInput","","type","password","tabindex","1","formControlName","password","required",""],[4,"ngIf"],["fxLayout","row",1,"mt-2"],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center"],["mat-button","","color","primary","tabindex","12","type","button","default","",3,"mat-dialog-close"],["fxLayout","column",1,"my-1","pr-1",3,"formGroup"],["matStepLabel","","disabled","true"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start"],["errorCorrectionLevel","L",3,"value","size",4,"ngIf"],["fxFlex","100",1,"w-100","alert","alert-info"],[1,"mt-1","mr-1","alert-icon",3,"icon"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between stretch"],["autoFocus","","matInput","","type","text","tabindex","4","formControlName","secret","required",""],["matSuffix","","rtlClipboard","",3,"copied","icon","payload"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","6","type","button","matStepperNext",""],["errorCorrectionLevel","L",3,"value","size"],[3,"stepControl"],["fxLayout","column","fxLayoutAlign","start",1,"my-1","pr-1",3,"formGroup"],["fxLayout","column",4,"ngIf"],["autoFocus","","matInput","","type","text","tabindex","7","formControlName","token","required",""],["mat-button","","color","primary","tabindex","8","type","button",3,"click"],["fxFlex","100",1,"w-100","alert","alert-warn"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Setup Two Factor Authentication"),e.k0s()(),e.j41(6,"button",6),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"div",8)(10,"mat-vertical-stepper",9,0),e.bIt("selectionChange",function(Bt){return v.eBV(Oe),v.Njj(I.stepSelectionChanged(Bt))}),e.j41(12,"mat-step",10)(13,"form",11),e.DNE(14,y1,1,1,"ng-template",12),e.j41(15,"div",1)(16,"mat-form-field",13)(17,"mat-label"),e.EFF(18,"Password"),e.k0s(),e.nrm(19,"input",14),e.DNE(20,ld,2,0,"mat-error",15),e.k0s()(),e.j41(21,"div",16)(22,"button",17),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onAuthenticate())}),e.EFF(23,"Confirm"),e.k0s()()()(),e.DNE(24,T4,19,8,"mat-step",18)(25,ft,5,4,"mat-step",19)(26,Zn,5,4,"mat-step",19),e.k0s(),e.j41(27,"div",20)(28,"button",21),e.EFF(29),e.k0s()()()()()()}2&D&&(e.R7$(6),e.Y8G("mat-dialog-close",!1),e.R7$(4),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",I.passwordFormGroup)("editable",I.flgEditable),e.R7$(),e.Y8G("formGroup",I.passwordFormGroup),e.R7$(7),e.Y8G("ngIf",null==I.passwordFormGroup||null==I.passwordFormGroup.controls||null==I.passwordFormGroup.controls.password||null==I.passwordFormGroup.controls.password.errors?null:I.passwordFormGroup.controls.password.errors.required),e.R7$(4),e.Y8G("ngIf",!I.showDisableStepper),e.R7$(),e.Y8G("ngIf",!I.showDisableStepper),e.R7$(),e.Y8G("ngIf",I.showDisableStepper),e.R7$(2),e.Y8G("mat-dialog-close",!1),e.R7$(),e.JRh(I.flgValidated&&I.isTokenValid?"Close":"Cancel"))},dependencies:[w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.j4,hi.JD,os.aY,Ro.tx,es.$z,K.m2,K.MM,br.fg,Ma.rl,Ma.nJ,Ma.TL,Ma.yw,Ie.DJ,Ie.sA,Ie.UI,Yo.V5,Yo.Ti,Yo.M6,Yo.F7,Yl.Um,i2.U,Kl.N],encapsulation:2}))}return b(),_})();var _t=l(4416),ji=l(3202),Hi=l(1997);const Ja=["authForm"];function Ba(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Current password is required."),e.k0s())}function wr(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.JRh(m.errorMsg)}}function _s(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.JRh(m.errorConfirmMsg)}}function vs(b,_){if(1&b){const m=e.RV6();e.j41(0,"form",12,0)(2,"div",13),e.nrm(3,"fa-icon",6),e.j41(4,"span",7),e.EFF(5,"Password"),e.k0s()(),e.j41(6,"mat-form-field")(7,"mat-label"),e.EFF(8,"Current Password"),e.k0s(),e.j41(9,"input",14),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG();return e.DH7(I.currPassword,D)||(I.currPassword=D),v.Njj(D)}),e.k0s(),e.DNE(10,Ba,2,0,"mat-error",15),e.k0s(),e.j41(11,"mat-form-field")(12,"mat-label"),e.EFF(13,"New Password"),e.k0s(),e.j41(14,"input",16),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG();return e.DH7(I.newPassword,D)||(I.newPassword=D),v.Njj(D)}),e.k0s(),e.DNE(15,wr,2,1,"mat-error",15),e.k0s(),e.j41(16,"mat-form-field")(17,"mat-label"),e.EFF(18,"Confirm New Password"),e.k0s(),e.j41(19,"input",17),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG();return e.DH7(I.confirmPassword,D)||(I.confirmPassword=D),v.Njj(D)}),e.k0s(),e.DNE(20,_s,2,1,"mat-error",15),e.k0s(),e.j41(21,"div",18)(22,"button",19),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onResetPassword())}),e.EFF(23,"Reset"),e.k0s(),e.j41(24,"button",20),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onChangePassword())}),e.EFF(25,"Change Password"),e.k0s()()()}if(2&b){const m=e.XpG();e.R7$(3),e.Y8G("icon",m.faLock),e.R7$(6),e.R50("ngModel",m.currPassword),e.R7$(),e.Y8G("ngIf",!m.currPassword),e.R7$(4),e.R50("ngModel",m.newPassword),e.R7$(),e.Y8G("ngIf",m.matchOldAndNewPasswords()),e.R7$(4),e.R50("ngModel",m.confirmPassword),e.R7$(),e.Y8G("ngIf",m.matchNewPasswords())}}let rr=(()=>{var b;class _{constructor(E,D,I,Oe,Ct){this.logger=E,this.store=D,this.actions=I,this.router=Oe,this.sessionService=Ct,this.faInfoCircle=Ti.iW_,this.faUserLock=Ti.aAJ,this.faUserClock=Ti.ld_,this.faLock=Ti.DW4,this.currPassword="",this.newPassword="",this.confirmPassword="",this.errorMsg="",this.errorConfirmMsg="",this.initializeNodeData=!1,this.unSubs=[new gi.B,new gi.B,new gi.B]}ngOnInit(){this.initializeNodeData="true"===this.sessionService.getItem("defaultPassword"),this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.appConfig=E,this.logger.info(this.appConfig)}),this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.selNode=E}),this.actions.pipe((0,li.Q)(this.unSubs[2]),(0,za.p)(E=>E.type===_t.aU.RESET_PASSWORD_RES)).subscribe(E=>{if(_t.Ah.includes(this.currPassword.toLowerCase()))switch(this.selNode.lnImplementation?.toUpperCase()){case"CLN":this.router.navigate(["/cln/home"]);break;case"ECL":this.router.navigate(["/ecl/home"]);break;default:this.router.navigate(["/lnd/home"])}this.form&&this.form.resetForm()})}onChangePassword(){if(!this.currPassword||!this.newPassword||!this.confirmPassword||this.currPassword===this.newPassword||this.newPassword!==this.confirmPassword||_t.Ah.includes(this.newPassword.toLowerCase()))return!0;this.store.dispatch((0,Bi.xw)({payload:{currPassword:_c(this.currPassword).toString(),newPassword:_c(this.newPassword).toString()}}))}matchOldAndNewPasswords(){let E=!1;return this.form&&this.form.controls&&this.form.controls.newpassword&&(this.newPassword?""!==this.currPassword&&""!==this.newPassword&&this.currPassword===this.newPassword?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg="Old and New password cannot be same.",E=!0):_t.Ah.includes(this.newPassword.toLowerCase())?(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg=_t.Ah?.reduce((D,I,Oe)=>Oe<_t.Ah.length-1?D+I+'" / "':D+I+'".','Password cannot be "'),E=!0):(this.form.controls.newpassword.setErrors(null),this.errorMsg="",E=!1):(this.form.controls.newpassword.setErrors({invalid:!0}),this.errorMsg="New password is required.",E=!0)),E}matchNewPasswords(){let E=!1;return this.form&&this.form.controls&&this.form.controls.confirmpassword&&(this.confirmPassword?""!==this.newPassword&&""!==this.confirmPassword&&this.newPassword!==this.confirmPassword?(this.form.controls.confirmpassword.setErrors({invalid:!0}),this.errorConfirmMsg="New and confirm passwords do not match.",E=!0):(this.form.controls.confirmpassword.setErrors(null),this.errorConfirmMsg="",E=!1):(this.form.controls.confirmpassword.setErrors({invalid:!0}),this.errorConfirmMsg="Confirm password is required.",E=!0)),E}on2FAuth(){this.store.dispatch((0,Bi.xO)({payload:{data:{appConfig:this.appConfig,component:si}}}))}onResetPassword(){this.form.resetForm()}ngOnDestroy(){this.initializeNodeData&&this.store.dispatch((0,Bi.Qi)({payload:{uiMessage:_t.MZ.NO_SPINNER,prevLnNodeIndex:-1,currentLnNode:this.selNode,isInitialSetup:!0}})),this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(mi.il),e.rXU(Uo.En),e.rXU(Ha.Ix),e.rXU(ji.Q))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-auth-settings"]],viewQuery:function(D,I){if(1&D&&e.GBs(Ja,5),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.form=Oe.first)}},standalone:!1,decls:15,vars:4,consts:[["authForm","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","page-sub-title-container mt-1",4,"ngIf"],[1,"my-2"],["fxLayout","column","fxLayoutAlign","start stretch"],[1,"mb-1","settings-container","page-sub-title-container","mt-1"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[1,"alert","alert-info"],[1,"mt-1","mr-1","alert-icon",3,"icon"],[1,"mt-1"],["mat-flat-button","","color","primary","tabindex","6",1,"mb-2",3,"click"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["fxLayout","row","fxLayoutAlign","start start",1,"mb-2"],["autoFocus","","matInput","","type","password","id","currpassword","name","currpassword","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["matInput","","type","password","id","newpassword","name","newpassword","tabindex","2","required","",3,"ngModelChange","ngModel"],["matInput","","type","password","id","confirmpassword","name","confirmpassword","tabindex","3","required","",3,"ngModelChange","ngModel"],["fxLayout","row","fxLayoutAlign","start start",1,"mt-1"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","5","type","submit",3,"click"]],template:function(D,I){1&D&&(e.j41(0,"div",1),e.DNE(1,vs,26,7,"form",2),e.nrm(2,"mat-divider",3),e.j41(3,"div",4)(4,"div",5),e.nrm(5,"fa-icon",6),e.j41(6,"span",7),e.EFF(7,"Two Factor Authentication"),e.k0s()(),e.j41(8,"div",8),e.nrm(9,"fa-icon",9),e.j41(10,"span"),e.EFF(11,"Protect your account from unauthorized access by requiring a second authentication method in addition to your password."),e.k0s()(),e.j41(12,"div",10)(13,"button",11),e.bIt("click",function(){return I.on2FAuth()}),e.EFF(14),e.k0s()()()()),2&D&&(e.R7$(),e.Y8G("ngIf",null==I.appConfig?null:I.appConfig.allowPasswordUpdate),e.R7$(4),e.Y8G("icon",I.faUserClock),e.R7$(4),e.Y8G("icon",I.faInfoCircle),e.R7$(5),e.JRh(I.appConfig.enable2FA?"Disable 2FA":"Enable 2FA"))},dependencies:[w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,os.aY,es.$z,br.fg,Ma.rl,Ma.nJ,Ma.TL,Hi.q,Ie.DJ,Ie.sA,Ie.UI,Kl.N],encapsulation:2}))}return b(),_})();var Bs=l(3902);function ol(b,_){1&b&&e.nrm(0,"mat-divider",7)}function Kr(b,_){if(1&b&&(e.j41(0,"div",4)(1,"pre",5),e.EFF(2),e.nI1(3,"json"),e.k0s(),e.DNE(4,ol,1,0,"mat-divider",6),e.k0s()),2&b){const m=e.XpG();e.R7$(2),e.JRh(e.bMT(3,2,m.configData)),e.R7$(2),e.Y8G("ngIf",""!==m.configData)}}function sc(b,_){if(1&b&&(e.j41(0,"h2"),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.JRh(m)}}function ll(b,_){if(1&b&&(e.j41(0,"h4",14),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.JRh(m)}}function D4(b,_){1&b&&e.nrm(0,"mat-divider",15),2&b&&e.Y8G("inset",!0)}function vc(b,_){if(1&b&&(e.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),e.DNE(2,sc,2,1,"h2",10),e.k0s(),e.j41(3,"mat-card-subtitle",11),e.DNE(4,ll,2,1,"h4",12),e.k0s(),e.DNE(5,D4,1,1,"mat-divider",13),e.k0s()),2&b){const m=_.$implicit;e.R7$(2),e.Y8G("ngIf",m.indexOf("[")>=0),e.R7$(2),e.Y8G("ngIf",m.indexOf("[")<0),e.R7$(),e.Y8G("ngIf",m.indexOf("[")<0)}}function s2(b,_){if(1&b&&(e.j41(0,"div",8)(1,"mat-list"),e.DNE(2,vc,6,3,"mat-list-item",9),e.k0s()()),2&b){const m=e.XpG();e.R7$(2),e.Y8G("ngForOf",m.configData)}}let Pf=(()=>{var b;class _{constructor(E,D,I){this.store=E,this.rtlEffects=D,this.router=I,this.configData="",this.fileFormat="INI",this.faCog=Ti.dB,this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.store.dispatch((0,Bi.Dz)({payload:"bitcoind"})),this.rtlEffects.showLnConfig.pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{const D=E.data;this.fileFormat=E.format,this.configData=""===D||!D||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==D&&D&&"JSON"===this.fileFormat?D:"":D.split("\n")})}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(mi.il),e.rXU(Ko.H),e.rXU(Ha.Ix))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-bitcoin-config"]],standalone:!1,decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxFlex","100","class","mb-6",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100",1,"mb-6"],[1,"pre-wrap"],["class","my-1",4,"ngIf"],[1,"my-1"],["fxFlex","100"],[4,"ngFor","ngForOf"],[4,"ngIf"],[1,"m-0"],["class","ml-4",4,"ngIf"],[3,"inset",4,"ngIf"],[1,"ml-4"],[3,"inset"]],template:function(D,I){1&D&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,Kr,5,4,"div",2)(3,s2,3,1,"div",3),e.k0s()()),2&D&&(e.R7$(2),e.Y8G("ngIf",""!==I.configData&&"JSON"===I.fileFormat),e.R7$(),e.Y8G("ngIf",""!==I.configData&&("INI"===I.fileFormat||"HOCON"===I.fileFormat)))},dependencies:[w.Sq,w.bT,K.Lc,Bs.jt,Bs.YE,Hi.q,Ie.DJ,Ie.sA,Ie.UI,w.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return b(),_})();function Hh(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}let r2=(()=>{var b;class _{constructor(E,D,I){this.dialogRef=E,this.store=D,this.rtlEffects=I,this.password="",this.isAuthenticated=!1,this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.rtlEffects.isAuthorizedRes.pipe((0,Dr.s)(1)).subscribe(E=>{"ERROR"!==E?(this.isAuthenticated=!0,this.store.dispatch((0,Bi.R$)({payload:this.isAuthenticated}))):this.isAuthenticated=!1})}onAuthenticate(){if(!this.password)return!0;this.store.dispatch((0,Bi.oz)({payload:_c(this.password)}))}onClose(){this.store.dispatch((0,Bi.R$)({payload:this.isAuthenticated}))}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ro.CP),e.rXU(mi.il),e.rXU(Ko.H))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-is-authorized"]],standalone:!1,decls:18,vars:2,consts:[["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","row",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["autoFocus","","matInput","","type","password","id","password","name","password","tabindex","1","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","2","type","submit","default","",3,"click"]],template:function(D,I){1&D&&(e.j41(0,"div",0)(1,"div",1)(2,"mat-card-header",2)(3,"div",3)(4,"span",4),e.EFF(5,"Authenticate with your RTL Password"),e.k0s()(),e.j41(6,"button",5),e.bIt("click",function(){return I.onClose()}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",6)(9,"form",7)(10,"mat-form-field")(11,"mat-label"),e.EFF(12,"Password"),e.k0s(),e.j41(13,"input",8),e.mxI("ngModelChange",function(Ct){return e.DH7(I.password,Ct)||(I.password=Ct),Ct}),e.k0s(),e.DNE(14,Hh,2,0,"mat-error",9),e.k0s(),e.j41(15,"div",10)(16,"button",11),e.bIt("click",function(){return I.onAuthenticate()}),e.EFF(17,"Confirm"),e.k0s()()()()()()),2&D&&(e.R7$(13),e.R50("ngModel",I.password),e.R7$(),e.Y8G("ngIf",!I.password))},dependencies:[w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,es.$z,K.m2,K.MM,br.fg,Ma.rl,Ma.nJ,Ma.TL,Ie.DJ,Ie.sA,Ie.UI,Kl.N],encapsulation:2}))}return b(),_})();const o2=()=>({initial:!1});function cd(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",13),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.activeLink=D.links[2].link)}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[2].link))("active",m.activeLink===m.links[2].link)("state",e.lJ4(5,o2)),e.R7$(),e.JRh(m.links[2].name)}}function b1(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",14),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.activeLink=D.links[3].link)}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[3].link))("active",m.activeLink===m.links[3].link),e.R7$(),e.JRh(m.links[3].name)}}function w4(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",15),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.showLnConfigClicked())}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("active",m.activeLink===m.links[4].link),e.R7$(),e.JRh(m.links[4].name)}}let k0=(()=>{var b;class _{constructor(E,D,I,Oe){this.store=E,this.router=D,this.rtlEffects=I,this.activatedRoute=Oe,this.faTools=Ti.nsx,this.showLnConfig=!1,this.lnImplementationStr="",this.links=[{link:"nodesettings",name:"Node Settings"},{link:"pglayout",name:"Page Layout"},{link:"services",name:"Services"},{link:"experimental",name:"Experimental"},{link:"lnconfig",name:this.lnImplementationStr}],this.activeLink="",this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){const E=this.links.find(D=>this.router.url.includes(D.link));this.activeLink=E?E.link:this.links[0].link,this.router.events.pipe((0,li.Q)(this.unSubs[0]),(0,za.p)(D=>D instanceof Ha.gx)).subscribe({next:D=>{const I=this.links.find(Oe=>D.urlAfterRedirects.includes(Oe.link));this.activeLink=I?I.link:this.links[0].link}}),this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[1])).subscribe(D=>{this.appConfig=D}),this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[2])).subscribe(D=>{switch(this.showLnConfig=!1,this.selNode=D,this.selNode.lnImplementation?.toUpperCase()){case"CLN":this.lnImplementationStr="Core Lightning Config";break;case"ECL":this.lnImplementationStr="Eclair Config";break;default:this.lnImplementationStr="LND Config"}this.selNode.authentication&&this.selNode.authentication.configPath&&""!==this.selNode.authentication.configPath.trim()&&(this.links[4].name=this.lnImplementationStr,this.showLnConfig=!0)})}showLnConfigClicked(){this.appConfig.SSO.rtlSSO?(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute})):(this.store.dispatch((0,Bi.xO)({payload:{maxWidth:"50rem",data:{component:r2}}})),this.rtlEffects.closeAlert.pipe((0,li.Q)(this.unSubs[3])).subscribe(E=>{E&&(this.activeLink=this.links[4].link,this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute}))}))}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(mi.il),e.rXU(Ha.Ix),e.rXU(Ko.H),e.rXU(Ha.nX))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-node-config"]],standalone:!1,decls:19,vars:13,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","state","click",4,"ngIf"],["tabindex","4","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["tabindex","5","role","tab","mat-tab-link","","class","mat-tab-label",3,"active","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper","mb-2"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active","state"],["tabindex","4","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","5","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","active"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3,"Node Config"),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6)(8,"div",7),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.activeLink=I.links[0].link)}),e.EFF(9),e.k0s(),e.j41(10,"div",8),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.activeLink=I.links[1].link)}),e.EFF(11),e.k0s(),e.DNE(12,cd,2,6,"div",9)(13,b1,2,4,"div",10)(14,w4,2,2,"div",11),e.k0s(),e.nrm(15,"mat-tab-nav-panel",null,0),e.j41(17,"div",12),e.nrm(18,"router-outlet"),e.k0s()()()()}if(2&D){const Oe=e.sdS(16);e.R7$(),e.Y8G("icon",I.faTools),e.R7$(6),e.Y8G("tabPanel",Oe),e.R7$(),e.Y8G("routerLink",e.mNQ(I.links[0].link))("active",I.activeLink===I.links[0].link),e.R7$(),e.JRh(I.links[0].name),e.R7$(),e.Y8G("routerLink",e.mNQ(I.links[1].link))("active",I.activeLink===I.links[1].link),e.R7$(),e.JRh(I.links[1].name),e.R7$(),e.Y8G("ngIf","ECL"!==(null==I.selNode||null==I.selNode.lnImplementation?null:I.selNode.lnImplementation.toUpperCase())),e.R7$(),e.Y8G("ngIf","CLN"===(null==I.selNode||null==I.selNode.lnImplementation?null:I.selNode.lnImplementation.toUpperCase())),e.R7$(),e.Y8G("ngIf",I.showLnConfig)}},dependencies:[w.bT,os.aY,K.RN,K.m2,Ie.DJ,Ie.sA,Ie.UI,Ut.Bu,Ut.hQ,Ut.Ql,Ha.n3,lo.Wk],encapsulation:2}))}return b(),_})();function zr(b,_){1&b&&e.nrm(0,"mat-divider",7)}function O0(b,_){if(1&b&&(e.j41(0,"div",4)(1,"pre",5),e.EFF(2),e.nI1(3,"json"),e.k0s(),e.DNE(4,zr,1,0,"mat-divider",6),e.k0s()),2&b){const m=e.XpG();e.R7$(2),e.JRh(e.bMT(3,2,m.configData)),e.R7$(2),e.Y8G("ngIf",""!==m.configData)}}function A4(b,_){if(1&b&&(e.j41(0,"h2"),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.JRh(m)}}function Xa(b,_){if(1&b&&(e.j41(0,"h4",14),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.JRh(m)}}function R0(b,_){1&b&&e.nrm(0,"mat-divider",15),2&b&&e.Y8G("inset",!0)}function yc(b,_){if(1&b&&(e.j41(0,"mat-list-item")(1,"mat-card-subtitle",7),e.DNE(2,A4,2,1,"h2",10),e.k0s(),e.j41(3,"mat-card-subtitle",11),e.DNE(4,Xa,2,1,"h4",12),e.k0s(),e.DNE(5,R0,1,1,"mat-divider",13),e.k0s()),2&b){const m=_.$implicit;e.R7$(2),e.Y8G("ngIf",m.indexOf("[")>=0),e.R7$(2),e.Y8G("ngIf",m.indexOf("[")<0),e.R7$(),e.Y8G("ngIf",m.indexOf("[")<0)}}function Zc(b,_){if(1&b&&(e.j41(0,"div",8)(1,"mat-list"),e.DNE(2,yc,6,3,"mat-list-item",9),e.k0s()()),2&b){const m=e.XpG();e.R7$(2),e.Y8G("ngForOf",m.configData)}}let l2=(()=>{var b;class _{constructor(E,D,I){this.store=E,this.rtlEffects=D,this.router=I,this.configData="",this.fileFormat="INI",this.faCog=Ti.dB,this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.store.dispatch((0,Bi.Dz)({payload:"ln"})),this.rtlEffects.showLnConfig.pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{const D=E.data;this.fileFormat=E.format,this.configData=""===D||!D||"INI"!==this.fileFormat&&"HOCON"!==this.fileFormat?""!==D&&D&&"JSON"===this.fileFormat?D:"":D.split("\n")})}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(mi.il),e.rXU(Ko.H),e.rXU(Ha.Ix))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-lnp-config"]],standalone:!1,decls:4,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start"],["fxFlex","100","class","mb-6",4,"ngIf"],["fxFlex","100",4,"ngIf"],["fxFlex","100",1,"mb-6"],[1,"pre-wrap"],["class","my-1",4,"ngIf"],[1,"my-1"],["fxFlex","100"],[4,"ngFor","ngForOf"],[4,"ngIf"],[1,"m-0"],["class","ml-4",4,"ngIf"],[3,"inset",4,"ngIf"],[1,"ml-4"],[3,"inset"]],template:function(D,I){1&D&&(e.j41(0,"div",0)(1,"div",1),e.DNE(2,O0,5,4,"div",2)(3,Zc,3,1,"div",3),e.k0s()()),2&D&&(e.R7$(2),e.Y8G("ngIf",""!==I.configData&&"JSON"===I.fileFormat),e.R7$(),e.Y8G("ngIf",""!==I.configData&&("INI"===I.fileFormat||"HOCON"===I.fileFormat)))},dependencies:[w.Sq,w.bT,K.Lc,Bs.jt,Bs.YE,Hi.q,Ie.DJ,Ie.sA,Ie.UI,w.TG],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return b(),_})();var Qo=l(2571),or=l(9454),dd=l(5951),cl=l(6038),bc=l(450);const ud=b=>({skin:!0,"selected-color":b});function P0(b,_){if(1&b&&(e.j41(0,"span",41),e.nrm(1,"fa-icon",42),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.Y8G("icon",m.symbol)}}function c2(b,_){if(1&b&&(e.j41(0,"span",41),e.nrm(1,"span",43),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.Y8G("innerHTML",m.symbol,e.npT)}}function hd(b,_){if(1&b&&(e.j41(0,"mat-option",39),e.DNE(1,P0,2,1,"span",40)(2,c2,2,1,"span",40),e.EFF(3),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m.id),e.R7$(),e.Y8G("ngIf",m&&"FA"===m.iconType),e.R7$(),e.Y8G("ngIf",m&&"SVG"===m.iconType),e.R7$(),e.Lme(" ",m.name," (",m.id,") ")}}function Cc(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Currency unit is required."),e.k0s())}function F0(b,_){if(1&b&&(e.j41(0,"mat-radio-button",44),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.Y8G("value",m)("checked",E.selNode.settings.userPersona===m),e.R7$(),e.SpI(" ",e.bMT(2,3,m)," ")}}function d2(b,_){if(1&b&&(e.j41(0,"mat-radio-button",45),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m),e.R7$(),e.SpI("",m.name," ")}}function C1(b,_){if(1&b){const m=e.RV6();e.j41(0,"span",46)(1,"div",47),e.nI1(2,"lowercase"),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG();return v.Njj(I.changeThemeColor(D.id))}),e.k0s(),e.EFF(3),e.k0s()}if(2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.HbH(e.bMT(2,4,m.id)),e.Y8G("ngClass",e.eq3(6,ud,E.selectedThemeColor===m.id)),e.R7$(2),e.SpI(" ",m.name," ")}}let N0=(()=>{var b;class _{constructor(E,D,I,Oe){this.logger=E,this.commonService=D,this.store=I,this.sanitizer=Oe,this.faBarsStaggered=Ti.o97,this.faExclamationTriangle=Ti.zpE,this.faMoneyBillAlt=Ti.iy8,this.faPaintBrush=Ti._eQ,this.faInfoCircle=Ti.iW_,this.faEyeSlash=Ti.k6j,this.userPersonas=[_t.HW.OPERATOR,_t.HW.MERCHANT],this.currencyUnits=_t.Zi,this.themeModes=_t.Bv.modes,this.themeColors=_t.Bv.themes,this.selectedThemeMode=_t.Bv.modes[0],this.selectedThemeColor=_t.Bv.themes[0].id,this.currencyUnit="BTC",this.smallerCurrencyUnit="Sats",this.showSettingOption=!0,this.screenSize="",this.screenSizeEnum=_t.f7,this.unSubs=[new gi.B,new gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.currencyUnits.map(E=>("SVG"===E.iconType&&"string"==typeof E.symbol&&(E.symbol=E.symbol.replace('{this.selNode=JSON.parse(JSON.stringify(E)),this.selectedThemeMode=this.themeModes.find(D=>this.selNode.settings.themeMode===D.id)||this.themeModes[0],this.selectedThemeColor=this.selNode.settings.themeColor,this.selNode.settings.fiatConversion||(this.selNode.settings.currencyUnit=""),this.previousSettings=JSON.parse(JSON.stringify(this.selNode.settings)),this.logger.info(E)})}toggleSettings(E,D){this.selNode.settings[E]=!this.selNode.settings[E]}changeThemeColor(E){this.selectedThemeColor=E,this.selNode.settings.themeColor=E}chooseThemeMode(){this.selNode.settings.themeMode=this.selectedThemeMode.id}onFiatConversionChange(E){this.selNode.settings.fiatConversion||delete this.selNode.settings.currencyUnit}onUpdateNodeSettings(){if(this.selNode.settings.fiatConversion&&!this.selNode.settings.currencyUnit)return!0;this.selNode.settings.blockExplorerUrl=this.selNode.settings.blockExplorerUrl.replace(/\/$/,""),this.logger.info(this.selNode.settings),this.store.dispatch((0,Bi.T$)({payload:this.selNode}))}onResetSettings(){const E=this.selNode.index||-1;this.selNode.settings=this.previousSettings,this.selectedThemeMode=this.themeModes.find(D=>D.id===this.previousSettings.themeMode)||this.themeModes[0],this.selectedThemeColor=this.previousSettings.themeColor,this.store.dispatch((0,Bi.Qi)({payload:{uiMessage:_t.MZ.NO_SPINNER,prevLnNodeIndex:+E,currentLnNode:this.selNode,isInitialSetup:!0}}))}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(Qo.h),e.rXU(mi.il),e.rXU(Dt.up))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-node-settings"]],standalone:!1,decls:100,vars:21,consts:[["form","ngForm"],["currencyUnit","ngModel"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container"],["displayMode","flat","multi","false"],["fxLayout","column",1,"flat-expansion-panel","mt-1"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxLayoutAlign","start stretch"],["fxFlex","100",1,"alert","alert-warn"],[1,"mr-1","alert-icon",3,"icon"],["href","https://mempool.space/","target","blank"],["fxLayout","row wrap","fxLayoutAlign","start center"],["fxLayout","column","fxFlex","100"],["matInput","","name","blockExplorerUrl",3,"ngModelChange","ngModel"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-1"],["tabindex","1","color","primary","name","unannouncedChannels",3,"ngModelChange","change","ngModel"],["href","https://www.blockchain.com/api/exchange_rates_api","target","blank"],["tabindex","2","color","primary","name","fiatConversion",1,"mr-2",3,"ngModelChange","change","ngModel"],["fxFlex","25"],["autoFocus","","tabindex","3","name","currencyUnit",3,"ngModelChange","disabled","required","ngModel"],[3,"value",4,"ngFor","ngForOf"],[4,"ngIf"],["fxLayout","row","fxFlex","100",1,"alert","alert-info","mb-0"],["fxLayout","column","fxLayoutAlign","start start","fxFlex","100"],["color","primary","tabindex","1","name","userPersona",1,"radio-group",3,"ngModelChange","ngModel"],["class","radio-text mr-4",3,"value","checked",4,"ngFor","ngForOf"],[1,"mt-1"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start"],["color","primary","name","themeMode",1,"radio-group",3,"ngModelChange","change","ngModel"],["tabindex","5","class","radio-text mr-4",3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxLayout.gt-xs","row","fxFlex","100","fxLayoutAlign","space-between stretch","fxLayoutAlign.gt-xs","start stretch"],["fxLayout","column","fxFlex.gt-xs","50","fxFlex.gt-md","40","fxLayoutAlign","space-between stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","space-between start"],["fxLayout","row","class","theme-name",4,"ngFor","ngForOf"],["fxLayout","column","fxLayoutAlign","start start",1,"mt-1"],["fxLayout","row"],["mat-stroked-button","","color","primary","tabindex","10",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","11",3,"click"],[3,"value"],["class","mr-1",4,"ngIf"],[1,"mr-1"],[3,"icon"],["fxLayoutAlign","center center",3,"innerHTML"],[1,"radio-text","mr-4",3,"value","checked"],["tabindex","5",1,"radio-text","mr-4",3,"value"],["fxLayout","row",1,"theme-name"],["tabindex","9",3,"click","ngClass"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",2)(1,"form",3,0)(3,"mat-accordion",4)(4,"mat-expansion-panel",5)(5,"mat-expansion-panel-header")(6,"mat-panel-title"),e.nrm(7,"fa-icon",6),e.j41(8,"span",7),e.EFF(9,"Block Explorer"),e.k0s()()(),e.j41(10,"div",8)(11,"div",9),e.nrm(12,"fa-icon",10),e.j41(13,"span"),e.EFF(14,"Configure your own blockchain explorer url or "),e.j41(15,"strong")(16,"a",11),e.EFF(17,"mempool.space"),e.k0s()(),e.EFF(18," will be used."),e.k0s()(),e.j41(19,"div",12)(20,"mat-form-field",13)(21,"mat-label"),e.EFF(22,"Block Explorer URL"),e.k0s(),e.j41(23,"input",14),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.settings.blockExplorerUrl,Bt)||(I.selNode.settings.blockExplorerUrl=Bt),v.Njj(Bt)}),e.k0s(),e.j41(24,"mat-hint"),e.EFF(25,"Blockchain explorer URL, eg. https://mempool.space or https://blockstream.info"),e.k0s()()()()(),e.j41(26,"mat-expansion-panel",5)(27,"mat-expansion-panel-header")(28,"mat-panel-title"),e.nrm(29,"fa-icon",6),e.j41(30,"span",7),e.EFF(31,"Open Unannounced Channels"),e.k0s()()(),e.j41(32,"div",8)(33,"div",15),e.nrm(34,"fa-icon",10),e.j41(35,"span"),e.EFF(36,"Use this control to toggle setting which defaults to opening unannounced channels only."),e.k0s()(),e.j41(37,"div",12)(38,"mat-slide-toggle",16),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.settings.unannouncedChannels,Bt)||(I.selNode.settings.unannouncedChannels=Bt),v.Njj(Bt)}),e.bIt("change",function(){return v.eBV(Oe),v.Njj(!I.selNode.settings.unannouncedChannels)}),e.EFF(39,"Open Unannounced Channels"),e.k0s()()()(),e.j41(40,"mat-expansion-panel",5)(41,"mat-expansion-panel-header")(42,"mat-panel-title"),e.nrm(43,"fa-icon",6),e.j41(44,"span",7),e.EFF(45,"Balance Display"),e.k0s()()(),e.j41(46,"div",8)(47,"div",9),e.nrm(48,"fa-icon",10),e.j41(49,"span"),e.EFF(50,"Fiat conversion calls "),e.j41(51,"strong")(52,"a",17),e.EFF(53,"Blockchain.com"),e.k0s()(),e.EFF(54," API to get conversion rates."),e.k0s()(),e.j41(55,"div",12)(56,"mat-slide-toggle",18),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.settings.fiatConversion,Bt)||(I.selNode.settings.fiatConversion=Bt),v.Njj(Bt)}),e.bIt("change",function(Bt){return v.eBV(Oe),v.Njj(I.onFiatConversionChange(Bt))}),e.EFF(57,"Enable Fiat Conversion"),e.k0s(),e.j41(58,"mat-form-field",19)(59,"mat-label"),e.EFF(60,"Fiat Currency"),e.k0s(),e.j41(61,"mat-select",20,1),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.settings.currencyUnit,Bt)||(I.selNode.settings.currencyUnit=Bt),v.Njj(Bt)}),e.DNE(63,hd,4,5,"mat-option",21),e.k0s(),e.DNE(64,Cc,2,0,"mat-error",22),e.k0s()()()(),e.j41(65,"mat-expansion-panel",5)(66,"mat-expansion-panel-header")(67,"mat-panel-title"),e.nrm(68,"fa-icon",6),e.j41(69,"span",7),e.EFF(70,"Customization"),e.k0s()()(),e.j41(71,"div",8)(72,"div",23),e.nrm(73,"fa-icon",10),e.j41(74,"span"),e.EFF(75,"Dashboard layout will be tailored based on the role selected to better serve its needs."),e.k0s()(),e.j41(76,"div",24)(77,"h4"),e.EFF(78,"Dashboard Layout"),e.k0s(),e.j41(79,"mat-radio-group",25),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.settings.userPersona,Bt)||(I.selNode.settings.userPersona=Bt),v.Njj(Bt)}),e.DNE(80,F0,3,5,"mat-radio-button",26),e.k0s()(),e.nrm(81,"mat-divider",27),e.j41(82,"div",28)(83,"h4"),e.EFF(84,"Mode"),e.k0s(),e.j41(85,"mat-radio-group",29),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selectedThemeMode,Bt)||(I.selectedThemeMode=Bt),v.Njj(Bt)}),e.bIt("change",function(){return v.eBV(Oe),v.Njj(I.chooseThemeMode())}),e.DNE(86,d2,2,2,"mat-radio-button",30),e.k0s()(),e.nrm(87,"mat-divider",27),e.j41(88,"div",31)(89,"div",32)(90,"h4"),e.EFF(91,"Themes"),e.k0s(),e.j41(92,"div",33),e.DNE(93,C1,4,8,"span",34),e.k0s()()()()()()(),e.j41(94,"div",35)(95,"div",36)(96,"button",37),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onResetSettings())}),e.EFF(97,"Reset"),e.k0s(),e.j41(98,"button",38),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onUpdateNodeSettings())}),e.EFF(99,"Update"),e.k0s()()()()}2&D&&(e.R7$(7),e.Y8G("icon",I.faBarsStaggered),e.R7$(5),e.Y8G("icon",I.faExclamationTriangle),e.R7$(11),e.R50("ngModel",I.selNode.settings.blockExplorerUrl),e.R7$(6),e.Y8G("icon",I.faEyeSlash),e.R7$(5),e.Y8G("icon",I.faInfoCircle),e.R7$(4),e.R50("ngModel",I.selNode.settings.unannouncedChannels),e.R7$(5),e.Y8G("icon",I.faMoneyBillAlt),e.R7$(5),e.Y8G("icon",I.faExclamationTriangle),e.R7$(8),e.R50("ngModel",I.selNode.settings.fiatConversion),e.R7$(5),e.Y8G("disabled",!I.selNode.settings.fiatConversion)("required",I.selNode.settings.fiatConversion),e.R50("ngModel",I.selNode.settings.currencyUnit),e.R7$(2),e.Y8G("ngForOf",I.currencyUnits),e.R7$(),e.Y8G("ngIf",I.selNode.settings.fiatConversion&&!I.selNode.settings.currencyUnit),e.R7$(4),e.Y8G("icon",I.faPaintBrush),e.R7$(5),e.Y8G("icon",I.faInfoCircle),e.R7$(6),e.R50("ngModel",I.selNode.settings.userPersona),e.R7$(),e.Y8G("ngForOf",I.userPersonas),e.R7$(5),e.R50("ngModel",I.selectedThemeMode),e.R7$(),e.Y8G("ngForOf",I.themeModes),e.R7$(7),e.Y8G("ngForOf",I.themeColors))},dependencies:[w.YU,w.Sq,w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,os.aY,es.$z,or.BS,or.GK,or.Z2,or.WN,br.fg,Ma.rl,Ma.nJ,Ma.MV,Ma.TL,Hi.q,dd.VT,dd._g,Ie.DJ,Ie.sA,Ie.UI,cl.PW,sl.VO,ac.wT,bc.sG,go.Ld,Kl.N,w.GH,w.PV],styles:["h4[_ngcontent-%COMP%]{margin:.75rem 0 .5rem}.theme-name[_ngcontent-%COMP%]{min-width:10rem}@media only screen and (max-width:37.5em){.theme-name[_ngcontent-%COMP%]{min-width:unset}}.skin[_ngcontent-%COMP%]{width:1.25rem;height:1.25rem;border-radius:50%;cursor:pointer;margin-right:.5rem}.skin.selected-color[_ngcontent-%COMP%]{width:1rem;height:1rem;border:2px solid}.skin.purple[_ngcontent-%COMP%]{background-color:#5e4ea5}.skin.indigo[_ngcontent-%COMP%]{background-color:#3f51b5}.skin.teal[_ngcontent-%COMP%]{background-color:#00695c}.skin.pink[_ngcontent-%COMP%]{background-color:#d81b60}.skin.yellow[_ngcontent-%COMP%]{background-color:#a1842c}"]}))}return b(),_})();var B0=l(9584),md=l(3536),zs=l(8430),Qs=l(190),lr=l(2730),Ds=l(5428),Jc=l(2598),qc=l(2629),fd=l(455),dl=l(2929);const pd=b=>({error:b}),u2=b=>({"error-border":b}),z0=b=>({"ml-minus-1":b}),h2=b=>({"error-border p-2":b});function m2(b,_){if(1&b&&e.eu8(0,14),2&b){const m=e.XpG(),E=e.sdS(18);e.Y8G("ngTemplateOutlet",E)("ngTemplateOutletContext",e.eq3(2,pd,m.errorMessage))}}function L4(b,_){if(1&b&&(e.j41(0,"mat-option",31),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m),e.R7$(),e.SpI(" ",m," ")}}function V0(b,_){if(1&b&&(e.j41(0,"mat-option",31),e.EFF(1),e.nI1(2,"camelCaseWithSpaces"),e.nI1(3,"camelcaseWithReplace"),e.k0s()),2&b){const m=_.$implicit,E=e.XpG(3);e.Y8G("value",m),e.R7$(),e.SpI(" ","ECL"===E.selNode.lnImplementation?e.bMT(2,2,m):e.i5U(3,4,m,"_")," ")}}function I4(b,_){if(1&b&&(e.j41(0,"mat-option",31),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m),e.R7$(),e.SpI(" ","desc"===m?"Descending":"Ascending"," ")}}function U0(b,_){if(1&b&&(e.j41(0,"mat-option",34),e.EFF(1),e.nI1(2,"camelCaseWithSpaces"),e.nI1(3,"camelcaseWithReplace"),e.k0s()),2&b){const m=_.$implicit,E=e.XpG(2).$implicit,D=e.XpG(2);e.Y8G("value",m.column)("disabled",E.columnSelection.length<=2&&E.columnSelection.includes(m.column)),e.R7$(),e.SpI(" ",m.label?m.label:"ECL"===D.selNode.lnImplementation?e.bMT(2,3,m.column):e.i5U(3,5,m.column,"_")," ")}}function G0(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-form-field",32)(1,"mat-label"),e.EFF(2,"Column selection (Desktop Resolution)"),e.k0s(),e.j41(3,"mat-select",33),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG().$implicit;return e.DH7(I.columnSelection,D)||(I.columnSelection=D),v.Njj(D)}),e.bIt("selectionChange",function(){v.eBV(m);const D=e.XpG().$implicit,I=e.XpG(2);return v.Njj(I.oncolumnSelectionChange(D))}),e.DNE(4,U0,4,8,"mat-option",28),e.k0s()()}if(2&b){const m=e.XpG().$implicit,E=e.XpG().$implicit,D=e.XpG();e.R7$(3),e.Y8G("name",e.ai1("",E.pageId,"",m.tableId,"-columns-selection")),e.R50("ngModel",m.columnSelection),e.R7$(),e.Y8G("ngForOf",D.nodePageDefs[E.pageId][m.tableId].allowedColumns)}}function Wh(b,_){if(1&b&&(e.j41(0,"mat-option",34),e.EFF(1),e.nI1(2,"camelCaseWithSpaces"),e.nI1(3,"camelcaseWithReplace"),e.k0s()),2&b){const m=_.$implicit,E=e.XpG().$implicit,D=e.XpG(2);e.Y8G("value",m.column)("disabled",E.columnSelectionSM.length<=1&&E.columnSelectionSM.includes(m.column)||E.columnSelectionSM.length>=3&&!E.columnSelectionSM.includes(m.column)),e.R7$(),e.SpI(" ",m.label?m.label:"ECL"===D.selNode.lnImplementation?e.bMT(2,3,m.column):e.i5U(3,5,m.column,"_")," ")}}function x1(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",17)(1,"div",18)(2,"span",19),e.EFF(3),e.nI1(4,"camelcaseWithReplace"),e.k0s(),e.j41(5,"mat-form-field",20)(6,"mat-label"),e.EFF(7,"Records/Page"),e.k0s(),e.j41(8,"mat-select",21),e.mxI("ngModelChange",function(D){const I=v.eBV(m).$implicit;return e.DH7(I.recordsPerPage,D)||(I.recordsPerPage=D),v.Njj(D)}),e.DNE(9,L4,2,2,"mat-option",22),e.k0s()(),e.j41(10,"mat-form-field",20)(11,"mat-label"),e.EFF(12,"Sort By"),e.k0s(),e.j41(13,"mat-select",23),e.mxI("ngModelChange",function(D){const I=v.eBV(m).$implicit;return e.DH7(I.sortBy,D)||(I.sortBy=D),v.Njj(D)}),e.DNE(14,V0,4,7,"mat-option",22),e.k0s()(),e.j41(15,"mat-form-field",20)(16,"mat-label"),e.EFF(17,"Sort Order"),e.k0s(),e.j41(18,"mat-select",24),e.mxI("ngModelChange",function(D){const I=v.eBV(m).$implicit;return e.DH7(I.sortOrder,D)||(I.sortOrder=D),v.Njj(D)}),e.DNE(19,I4,2,2,"mat-option",22),e.k0s()(),e.DNE(20,G0,5,5,"mat-form-field",25),e.j41(21,"mat-form-field",26)(22,"mat-label"),e.EFF(23,"Column Selection (Mobile Resolution)"),e.k0s(),e.j41(24,"mat-select",27),e.mxI("ngModelChange",function(D){const I=v.eBV(m).$implicit;return e.DH7(I.columnSelectionSM,D)||(I.columnSelectionSM=D),v.Njj(D)}),e.DNE(25,Wh,4,8,"mat-option",28),e.k0s()(),e.j41(26,"button",29),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG().$implicit,Oe=e.XpG();return v.Njj(Oe.onTableReset(I.pageId,D))}),e.j41(27,"mat-icon",30),e.EFF(28,"restore"),e.k0s()()()()}if(2&b){const m=_.$implicit,E=e.XpG().$implicit,D=e.XpG();e.R7$(3),e.SpI("",e.i5U(4,24,m.tableId,"_"),":"),e.R7$(5),e.Y8G("name",e.ai1("",E.pageId,"",m.tableId,"-page-size-options"))("disabled",D.nodePageDefs[E.pageId][m.tableId].disablePageSize),e.R50("ngModel",m.recordsPerPage),e.R7$(),e.Y8G("ngForOf",D.pageSizeOptions),e.R7$(4),e.Y8G("name",e.ai1("",E.pageId,"",m.tableId,"-sort-by")),e.R50("ngModel",m.sortBy),e.R7$(),e.Y8G("ngForOf",m.columnSelection),e.R7$(4),e.Y8G("name",e.ai1("",E.pageId,"",m.tableId,"-sort-order")),e.R50("ngModel",m.sortOrder),e.R7$(),e.Y8G("ngForOf",D.sortOrders),e.R7$(),e.Y8G("ngIf",D.screenSize!==D.screenSizeEnum.XS),e.R7$(4),e.Y8G("name",e.ai1("",E.pageId,"",m.tableId,"-columns-selection-sm")),e.R50("ngModel",m.columnSelectionSM),e.R7$(),e.Y8G("ngForOf",D.nodePageDefs[E.pageId][m.tableId].allowedColumns),e.R7$(2),e.Y8G("ngClass",e.eq3(27,z0,D.screenSize===D.screenSizeEnum.XS||D.screenSize===D.screenSizeEnum.SM))}}function j0(b,_){if(1&b&&e.eu8(0,14),2&b){const m=e.XpG(2),E=e.sdS(18);e.Y8G("ngTemplateOutlet",E)("ngTemplateOutletContext",e.eq3(2,pd,m.errorMessage))}}function gd(b,_){if(1&b&&(e.j41(0,"mat-expansion-panel",15)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),e.EFF(3),e.nI1(4,"camelcaseWithReplace"),e.k0s()(),e.DNE(5,x1,29,29,"div",16)(6,j0,1,4,"ng-container",7),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.Y8G("ngClass",e.eq3(7,u2,(null==E.errorMessage?null:E.errorMessage.page)===m.pageId)),e.R7$(3),e.JRh(e.i5U(4,4,m.pageId,"_")),e.R7$(2),e.Y8G("ngForOf",m.tables),e.R7$(),e.Y8G("ngIf",E.errorMessage&&(null==E.errorMessage?null:E.errorMessage.page)===m.pageId)}}function H0(b,_){if(1&b&&(e.j41(0,"mat-panel-title"),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&b){const m=e.XpG().error;e.R7$(),e.SpI("Page ",e.bMT(2,1,m.page))}}function f2(b,_){if(1&b&&(e.j41(0,"mat-list-item")(1,"mat-icon",39),e.EFF(2,"close"),e.k0s(),e.j41(3,"span"),e.EFF(4),e.k0s()()),2&b){const m=e.XpG().error;e.R7$(4),e.JRh(m.message)}}function k4(b,_){if(1&b&&(e.j41(0,"mat-list-item")(1,"mat-icon",39),e.EFF(2,"close"),e.k0s(),e.j41(3,"span"),e.EFF(4),e.nI1(5,"titlecase"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(4),e.Lme("Table ",e.bMT(5,2,m.table)," ",m.message)}}function W0(b,_){if(1&b&&(e.j41(0,"div",35),e.DNE(1,H0,3,3,"mat-panel-title",36),e.j41(2,"mat-list",37),e.DNE(3,f2,5,1,"mat-list-item",36)(4,k4,6,4,"mat-list-item",38),e.k0s()()),2&b){const m=_.error,E=e.XpG();e.Y8G("ngClass",e.eq3(4,h2,"unknown"===E.errorMessage.page)),e.R7$(),e.Y8G("ngIf","unknown"===E.errorMessage.page),e.R7$(2),e.Y8G("ngIf",m.message),e.R7$(),e.Y8G("ngForOf",m.tables)}}let Xh=(()=>{var b;class _{constructor(E,D,I,Oe){this.logger=E,this.commonService=D,this.store=I,this.actions=Oe,this.faPenRuler=Ti.$$g,this.faExclamationTriangle=Ti.zpE,this.screenSize="",this.screenSizeEnum=_t.f7,this.pageSizeOptions=_t.xp,this.pageSettings=[],this.initialPageSettings=[],this.defaultSettings=[],this.nodePageDefs={},this.sortOrders=_t.jG,this.apiCallStatus=null,this.apiCallStatusEnum=_t.wn,this.errorMessage=null,this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnInit(){this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{switch(this.selNode=E,this.logger.info(this.selNode),this.selNode.lnImplementation){case"CLN":this.initialPageSettings=Object.assign([],_t.mu),this.defaultSettings=Object.assign([],_t.mu),this.nodePageDefs=_t.Jd,this.store.select(B0.av).pipe((0,li.Q)(this.unSubs[1]),(0,so.E)(this.store.select(Oa._c))).subscribe(([D,I])=>{const Oe=JSON.parse(JSON.stringify(D.pageSettings));if(this.errorMessage=null,this.apiCallStatus=D.apiCallStatus,this.apiCallStatus.status===_t.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Oe,this.initialPageSettings=Oe;else{if(!I?.settings.enableOffers){const Ct=Oe.find(Yn=>"transactions"===Yn.pageId),Bt=Ct?.tables.findIndex(Yn=>"offers"===Yn.tableId),yn=Ct?.tables.findIndex(Yn=>"offer_bookmarks"===Yn.tableId);Bt>-1&&Ct?.tables.splice(Bt,1),yn>-1&&Ct?.tables.splice(yn,1)}if(!I?.settings.enablePeerswap){const Ct=Oe.findIndex(Bt=>"peerswap"===Bt.pageId);Ct>-1&&Oe.splice(Ct,1)}this.pageSettings=Oe,this.initialPageSettings=Oe}this.logger.info(Oe)}),this.actions.pipe((0,li.Q)(this.unSubs[2]),(0,za.p)(D=>D.type===_t.TC.UPDATE_API_CALL_STATUS_CLN||D.type===_t.TC.SAVE_PAGE_SETTINGS_CLN)).subscribe(D=>{D.type===_t.TC.UPDATE_API_CALL_STATUS_CLN&&D.payload.status===_t.wn.ERROR&&"SavePageSettings"===D.payload.action&&(this.errorMessage=JSON.parse(D.payload.message))});break;case"ECL":this.initialPageSettings=Object.assign([],_t.X8),this.defaultSettings=Object.assign([],_t.X8),this.nodePageDefs=_t.WW,this.store.select(lr.jZ).pipe((0,li.Q)(this.unSubs[1])).subscribe(D=>{const I=JSON.parse(JSON.stringify(D.pageSettings));this.errorMessage=null,this.apiCallStatus=D.apiCallStatus,this.apiCallStatus.status===_t.wn.ERROR?(this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=I,this.initialPageSettings=I):(this.pageSettings=I,this.initialPageSettings=I),this.logger.info(I)}),this.actions.pipe((0,li.Q)(this.unSubs[2]),(0,za.p)(D=>D.type===_t.Uu.UPDATE_API_CALL_STATUS_ECL||D.type===_t.Uu.SAVE_PAGE_SETTINGS_ECL)).subscribe(D=>{D.type===_t.Uu.UPDATE_API_CALL_STATUS_ECL&&D.payload.status===_t.wn.ERROR&&"SavePageSettings"===D.payload.action&&(this.errorMessage=JSON.parse(D.payload.message))});break;default:this.initialPageSettings=Object.assign([],_t.ZC),this.defaultSettings=Object.assign([],_t.ZC),this.nodePageDefs=_t._1,this.store.select(md.$G).pipe((0,li.Q)(this.unSubs[1]),(0,so.E)(this.store.select(Oa._c))).subscribe(([D,I])=>{const Oe=JSON.parse(JSON.stringify(D.pageSettings));if(this.errorMessage=null,this.apiCallStatus=D.apiCallStatus,this.apiCallStatus.status===_t.wn.ERROR)this.errorMessage=this.apiCallStatus.message||null,this.pageSettings=Oe,this.initialPageSettings=Oe;else{if(!I?.settings.swapServerUrl||""===I.settings.swapServerUrl.trim()){const Ct=Oe.findIndex(Bt=>"loop"===Bt.pageId);Ct>-1&&Oe.splice(Ct,1)}if(!I?.settings.boltzServerUrl||""===I.settings.boltzServerUrl.trim()){const Ct=Oe.findIndex(Bt=>"boltz"===Bt.pageId);Ct>-1&&Oe.splice(Ct,1)}if(!I?.settings.enablePeerswap){const Ct=Oe.findIndex(Bt=>"peerswap"===Bt.pageId);Ct>-1&&Oe.splice(Ct,1)}this.pageSettings=Oe,this.initialPageSettings=Oe}this.logger.info(Oe)}),this.actions.pipe((0,li.Q)(this.unSubs[2]),(0,za.p)(D=>D.type===_t.QP.UPDATE_API_CALL_STATUS_LND||D.type===_t.QP.SAVE_PAGE_SETTINGS_LND)).subscribe(D=>{D.type===_t.QP.UPDATE_API_CALL_STATUS_LND&&D.payload.status===_t.wn.ERROR&&"SavePageSettings"===D.payload.action&&(this.errorMessage=JSON.parse(D.payload.message))})}})}oncolumnSelectionChange(E){E.columnSelection&&(!E.sortBy||!E.columnSelection.includes(E.sortBy))&&(E.sortBy=E.columnSelection[0])}onUpdatePageSettings(){if(this.pageSettings.reduce((E,D)=>E||D.tables.reduce((I,Oe)=>!(Oe.recordsPerPage&&Oe.sortBy&&Oe.sortOrder&&Oe.columnSelection&&Oe.columnSelection.length>=2),!1),!1))return!0;switch(this.errorMessage="",this.selNode.lnImplementation){case"CLN":this.store.dispatch((0,zs.Sn)({payload:this.pageSettings}));break;case"ECL":this.store.dispatch((0,Ds.Sn)({payload:this.pageSettings}));break;default:this.store.dispatch((0,Qs.Sn)({payload:this.pageSettings}))}}onTableReset(E,D){const I=this.pageSettings.findIndex(Bt=>Bt.pageId===E),Oe=this.pageSettings[I].tables.findIndex(Bt=>Bt.tableId===D.tableId),Ct=this.defaultSettings.find(Bt=>Bt.pageId===E)?.tables.find(Bt=>Bt.tableId===D.tableId)||this.pageSettings.find(Bt=>Bt.pageId===E)?.tables.find(Bt=>Bt.tableId===D.tableId);this.pageSettings[I].tables.splice(Oe,1,Ct)}onResetPageSettings(E){"current"===E?(this.errorMessage=null,this.pageSettings=JSON.parse(JSON.stringify(this.initialPageSettings))):(this.errorMessage=null,this.pageSettings=JSON.parse(JSON.stringify(this.defaultSettings)))}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(Qo.h),e.rXU(mi.il),e.rXU(Uo.En))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-page-settings"]],standalone:!1,decls:19,vars:3,consts:[["form","ngForm"],["errorObjectBlock",""],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],["fxLayout","column","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],[3,"ngTemplateOutlet","ngTemplateOutletContext",4,"ngIf"],["displayMode","flat","multi","false"],["fxLayout","column","class","flat-expansion-panel mt-1","expanded","false",3,"ngClass",4,"ngFor","ngForOf"],["fxLayout","row",1,"mt-1"],["mat-stroked-button","","color","primary","tabindex","8",1,"mr-1",3,"click"],["mat-stroked-button","","color","primary","tabindex","9",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","10",3,"click"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],["fxLayout","column","expanded","false",1,"flat-expansion-panel","mt-1",3,"ngClass"],["fxLayout","column","fxLayoutAlign","start stretch","class","padding-gap-x-large table-setting-row",4,"ngFor","ngForOf"],["fxLayout","column","fxLayoutAlign","start stretch",1,"padding-gap-x-large","table-setting-row"],["fxLayout","column","fxLayoutAlign","space-between stretch","fxLayout.gt-sm","row wrap","fxLayoutAlign.gt-sm","space-between center"],["fxFlex","10",1,"mb-2"],["fxLayout","column","fxFlex","10"],["tabindex","2","required","",3,"ngModelChange","name","disabled","ngModel"],[3,"value",4,"ngFor","ngForOf"],["tabindex","3","required","",3,"ngModelChange","name","ngModel"],["tabindex","4","required","",3,"ngModelChange","name","ngModel"],["fxFlex","35","matTooltip","Select a minimum of 2 columns",4,"ngIf"],["fxLayout","column","fxFlex","15","matTooltip","Select between 1 and 3 columns"],["tabindex","5","multiple","","required","",3,"ngModelChange","name","ngModel"],[3,"value","disabled",4,"ngFor","ngForOf"],["mat-icon-button","","color","primary","type","button","tabindex","7","matTooltip","Reset to Default",1,"mb-2",3,"click"],["color","primary",3,"ngClass"],[3,"value"],["fxFlex","35","matTooltip","Select a minimum of 2 columns"],["tabindex","6","multiple","","required","",3,"ngModelChange","selectionChange","name","ngModel"],[3,"value","disabled"],[3,"ngClass"],[4,"ngIf"],["role","list"],[4,"ngFor","ngForOf"],[1,"ml-1","icon-small","red"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",2)(1,"form",3,0)(3,"div",4),e.nrm(4,"fa-icon",5),e.j41(5,"span",6),e.EFF(6,"Grid Settings"),e.k0s()(),e.DNE(7,m2,1,4,"ng-container",7),e.j41(8,"mat-accordion",8),e.DNE(9,gd,7,9,"mat-expansion-panel",9),e.k0s()(),e.j41(10,"div",10)(11,"button",11),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onResetPageSettings("current"))}),e.EFF(12,"Reset"),e.k0s(),e.j41(13,"button",12),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onResetPageSettings("default"))}),e.EFF(14,"Reset to Default"),e.k0s(),e.j41(15,"button",13),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onUpdatePageSettings())}),e.EFF(16,"Save"),e.k0s()()(),e.DNE(17,W0,5,6,"ng-template",null,1,e.C5r)}2&D&&(e.R7$(4),e.Y8G("icon",I.faPenRuler),e.R7$(3),e.Y8G("ngIf",I.errorMessage&&"unknown"===I.errorMessage.page),e.R7$(2),e.Y8G("ngForOf",I.pageSettings))},dependencies:[w.YU,w.Sq,w.bT,w.T3,hi.qT,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,os.aY,es.$z,Jc.iY,or.BS,or.GK,or.Z2,or.WN,qc.An,Ma.rl,Ma.nJ,Bs.jt,Bs.YE,Ie.DJ,Ie.sA,Ie.UI,cl.PW,sl.VO,ac.wT,fd.oV,go.Ld,w.PV,dl.VD,dl.Qu],styles:[".table-setting-row[_ngcontent-%COMP%]:not(:first-child){margin:.5rem 0}"]}))}return b(),_})();function O4(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",11),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.setActiveLink(D.links[0].link))}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[0].link))("active",m.activeLink===m.links[0].link),e.R7$(),e.JRh(m.links[0].name)}}function R4(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",12),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.setActiveLink(D.links[1].link))}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[1].link))("active",m.activeLink===m.links[1].link),e.R7$(),e.JRh(m.links[1].name)}}function P4(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",13),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.setActiveLink(D.links[2].link))}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG();e.Y8G("routerLink",e.mNQ(m.links[2].link))("active",m.activeLink===m.links[2].link),e.R7$(),e.JRh(m.links[2].name)}}let X0=(()=>{var b;class _{constructor(E,D,I){this.store=E,this.router=D,this.activatedRoute=I,this.faLayerGroup=Ti.qIE,this.links=[{link:"loop",name:"Loop"},{link:"boltz",name:"Boltz"},{link:"noservice",name:"No Service"}],this.activeLink="",this.unSubs=[new gi.B,new gi.B,new gi.B]}ngOnInit(){this.setActiveLink(),this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.selNode=E,this.setActiveLink(),this.router.navigate(["./"+this.activeLink],{relativeTo:this.activatedRoute})})}setActiveLink(E){if(E&&""!==E)this.activeLink=E;else{const D=this.links.find(I=>this.router.url.includes(I.link));this.activeLink=D?this.selNode&&"CLN"===this.selNode.lnImplementation?this.links[1].link:D.link:this.links[this.links.length-1].link}}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(mi.il),e.rXU(Ha.Ix),e.rXU(Ha.nX))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-services-settings"]],standalone:!1,decls:16,vars:5,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-sub-title-container","my-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["tabindex","2","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["tabindex","3","role","tab","mat-tab-link","","class","mat-tab-label",3,"routerLink","active","click",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mat-tab-body-wrapper"],["tabindex","1","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","2","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"],["tabindex","3","role","tab","mat-tab-link","",1,"mat-tab-label",3,"click","routerLink","active"]],template:function(D,I){if(1&D&&(e.j41(0,"div",1)(1,"div",2),e.nrm(2,"fa-icon",3),e.j41(3,"span",4),e.EFF(4,"Services"),e.k0s()()(),e.j41(5,"div",5)(6,"mat-card")(7,"mat-card-content",5)(8,"nav",6),e.DNE(9,O4,2,4,"div",7)(10,R4,2,4,"div",8)(11,P4,2,4,"div",9),e.k0s(),e.nrm(12,"mat-tab-nav-panel",null,0),e.j41(14,"div",10),e.nrm(15,"router-outlet"),e.k0s()()()()),2&D){const Oe=e.sdS(13);e.R7$(2),e.Y8G("icon",I.faLayerGroup),e.R7$(6),e.Y8G("tabPanel",Oe),e.R7$(),e.Y8G("ngIf","LND"===I.selNode.lnImplementation),e.R7$(),e.Y8G("ngIf","ECL"!==I.selNode.lnImplementation),e.R7$(),e.Y8G("ngIf","ECL"===I.selNode.lnImplementation)}},dependencies:[w.bT,os.aY,K.RN,K.m2,Ie.DJ,Ie.sA,Ie.UI,Ut.Bu,Ut.hQ,Ut.Ql,Ha.n3,lo.Wk],encapsulation:2}))}return b(),_})();const F4=["form"];function K0(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Loop server URL is required."),e.k0s())}function N4(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Specify the loop server url with 'https://'."),e.k0s())}function _d(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Loop macaroon path is required."),e.k0s())}let e1=(()=>{var b;class _{constructor(E,D){this.logger=E,this.store=D,this.faInfoCircle=Ti.iW_,this.enableLoop=!1,this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.selNode=E,this.enableLoop=!(!E.settings.swapServerUrl||""===E.settings.swapServerUrl.trim()),this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(E)})}onEnableServiceChanged(E){this.enableLoop=E.checked,this.enableLoop||(this.selNode.authentication.swapMacaroonPath="",this.selNode.settings.swapServerUrl="")}onUpdateService(){if(this.selNode.settings.swapServerUrl&&""!==this.selNode.settings.swapServerUrl.trim()&&!this.form.controls.srvrUrl.value.includes("https://")&&this.form.controls.srvrUrl.setErrors({invalid:!0}),this.enableLoop&&(!this.selNode.settings.swapServerUrl||""===this.selNode.settings.swapServerUrl.trim()||!this.selNode.authentication.swapMacaroonPath||""===this.selNode.authentication.swapMacaroonPath.trim()))return!0;this.enableLoop||(delete this.selNode.settings.swapServerUrl,delete this.selNode.authentication.swapMacaroonPath),this.logger.info(this.selNode),this.store.dispatch((0,Bi.T$)({payload:this.selNode}))}onReset(){this.selNode=JSON.parse(JSON.stringify(this.previousSelNode)),this.enableLoop=!(!this.selNode.settings.swapServerUrl||""===this.selNode.settings.swapServerUrl.trim())}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(mi.il))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-loop-service-settings"]],viewQuery:function(D,I){if(1&D&&e.GBs(F4,7),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.form=Oe.first)}},standalone:!1,decls:38,vars:11,consts:[["form","ngForm"],["srvrUrl","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["href","https://github.com/lightninglabs/loop","target","_blank"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","loop",1,"ml-2",3,"ngModelChange","change","ngModel"],[1,"mb-2"],["matInput","","type","text","id","swapServerUrl","name","srvrUrl","tabindex","2",3,"ngModelChange","required","disabled","ngModel"],[4,"ngIf"],["matInput","","type","text","id","swapMacaroonPath","name","swapMacaroonPath","tabindex","3",3,"ngModelChange","required","disabled","ngModel"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",2)(1,"div",3),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"Please ensure that "),e.j41(5,"strong"),e.EFF(6,"loopd"),e.k0s(),e.EFF(7," is running and accessible to RTL before enabling this service. Click "),e.j41(8,"strong")(9,"a",5),e.EFF(10,"here"),e.k0s()(),e.EFF(11," to learn more about the installation."),e.k0s()(),e.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.enableLoop,Bt)||(I.enableLoop=Bt),v.Njj(Bt)}),e.bIt("change",function(Bt){return v.eBV(Oe),v.Njj(I.onEnableServiceChanged(Bt))}),e.EFF(16,"Enable Loop Service"),e.k0s(),e.j41(17,"mat-form-field",9)(18,"mat-label"),e.EFF(19,"Loop Server URL"),e.k0s(),e.j41(20,"input",10,1),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.settings.swapServerUrl,Bt)||(I.selNode.settings.swapServerUrl=Bt),v.Njj(Bt)}),e.k0s(),e.j41(22,"mat-hint"),e.EFF(23,"Service url for loop server REST APIs, eg. https://127.0.0.1:8081"),e.k0s(),e.DNE(24,K0,2,0,"mat-error",11)(25,N4,2,0,"mat-error",11),e.k0s(),e.j41(26,"mat-form-field")(27,"mat-label"),e.EFF(28,"Loop Macaroon Path"),e.k0s(),e.j41(29,"input",12),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selNode.authentication.swapMacaroonPath,Bt)||(I.selNode.authentication.swapMacaroonPath=Bt),v.Njj(Bt)}),e.k0s(),e.j41(30,"mat-hint"),e.EFF(31,"Path for the folder containing service 'loop.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Local\\\\Loop\\\\testnet"),e.k0s(),e.DNE(32,_d,2,0,"mat-error",11),e.k0s()()(),e.j41(33,"div",13)(34,"button",14),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onReset())}),e.EFF(35,"Reset"),e.k0s(),e.j41(36,"button",15),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onUpdateService())}),e.EFF(37,"Update"),e.k0s()()()}if(2&D){const Oe=e.sdS(21);e.R7$(2),e.Y8G("icon",I.faInfoCircle),e.R7$(13),e.R50("ngModel",I.enableLoop),e.R7$(5),e.Y8G("required",I.enableLoop)("disabled",!I.enableLoop),e.R50("ngModel",I.selNode.settings.swapServerUrl),e.R7$(4),e.Y8G("ngIf",!I.selNode.settings.swapServerUrl&&I.enableLoop),e.R7$(),e.Y8G("ngIf",(null==Oe||null==Oe.errors?null:Oe.errors.invalid)&&I.enableLoop),e.R7$(4),e.Y8G("required",I.enableLoop)("disabled",!I.enableLoop),e.R50("ngModel",I.selNode.authentication.swapMacaroonPath),e.R7$(3),e.Y8G("ngIf",!I.selNode.authentication.swapMacaroonPath&&I.enableLoop)}},dependencies:[w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,os.aY,es.$z,br.fg,Ma.rl,Ma.nJ,Ma.MV,Ma.TL,Ie.DJ,Ie.sA,Ie.UI,bc.sG,go.Ld,Kl.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return b(),_})();const Ql=["form"];function Y0(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Boltz server URL is required."),e.k0s())}function B4(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Specify the boltz server url with 'https://'."),e.k0s())}function Q0(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Boltz macaroon path is required."),e.k0s())}let Kh=(()=>{var b;class _{constructor(E,D){this.logger=E,this.store=D,this.faInfoCircle=Ti.iW_,this.enableBoltz=!1,this.serverUrl="",this.macaroonPath="",this.unSubs=[new gi.B,new gi.B]}ngOnInit(){this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.selNode=E,this.enableBoltz=!(!E.settings.boltzServerUrl||""===E.settings.boltzServerUrl.trim()),this.serverUrl=this.selNode.settings.boltzServerUrl||"",this.macaroonPath=this.selNode.authentication.boltzMacaroonPath,this.previousSelNode=JSON.parse(JSON.stringify(this.selNode)),this.logger.info(E)})}onEnableServiceChanged(E){this.enableBoltz=E.checked,this.enableBoltz||(this.macaroonPath="",this.serverUrl="")}onUpdateService(){if(this.serverUrl&&""!==this.serverUrl.trim()&&!this.form.controls.srvrUrl.value.includes("https://")&&this.form.controls.srvrUrl.setErrors({invalid:!0}),this.enableBoltz&&(!this.serverUrl||""===this.serverUrl.trim()||!this.serverUrl.includes("https://")||!this.macaroonPath||""===this.macaroonPath.trim()))return!0;this.logger.info(this.selNode),this.enableBoltz?(this.selNode.settings.boltzServerUrl=this.serverUrl,this.selNode.authentication.boltzMacaroonPath=this.macaroonPath):(delete this.selNode.settings.boltzServerUrl,delete this.selNode.authentication.boltzMacaroonPath),this.store.dispatch((0,Bi.T$)({payload:this.selNode}))}onReset(){this.selNode=JSON.parse(JSON.stringify(this.previousSelNode)),this.serverUrl=this.selNode.settings.boltzServerUrl||"",this.macaroonPath=this.selNode.authentication.boltzMacaroonPath,this.enableBoltz=!(!this.serverUrl||""===this.serverUrl.trim())}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(mi.il))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-service-settings"]],viewQuery:function(D,I){if(1&D&&e.GBs(Ql,7),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.form=Oe.first)}},standalone:!1,decls:38,vars:11,consts:[["form","ngForm"],["srvrUrl","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["href","https://docs.boltz.exchange/v/boltz-client/","target","_blank"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"settings-container","page-sub-title-container","mt-1"],["fxLayout","column","fxFlex","50","fxLayoutAlign","start stretch"],["autoFocus","","tabindex","1","color","primary","name","boltz",1,"ml-2",3,"ngModelChange","change","ngModel"],[1,"mb-2"],["matInput","","type","text","id","boltzServerUrl","name","srvrUrl","tabindex","2",3,"ngModelChange","required","disabled","ngModel"],[4,"ngIf"],["matInput","","type","text","id","boltzMacaroonPath","name","boltzMacaroonPath","tabindex","3",3,"ngModelChange","required","disabled","ngModel"],["fxLayout","row",1,"mt-2"],["mat-stroked-button","","color","primary","type","reset","tabindex","4",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","type","submit","tabindex","5",3,"click"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",2)(1,"div",3),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"Please ensure that "),e.j41(5,"strong"),e.EFF(6,"boltzd"),e.k0s(),e.EFF(7," is running and accessible to RTL before enabling this service. Click "),e.j41(8,"strong")(9,"a",5),e.EFF(10,"here"),e.k0s()(),e.EFF(11," to learn more about the installation."),e.k0s()(),e.j41(12,"form",6,0)(14,"div",7)(15,"mat-slide-toggle",8),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.enableBoltz,Bt)||(I.enableBoltz=Bt),v.Njj(Bt)}),e.bIt("change",function(Bt){return v.eBV(Oe),v.Njj(I.onEnableServiceChanged(Bt))}),e.EFF(16,"Enable Boltz Service"),e.k0s(),e.j41(17,"mat-form-field",9)(18,"mat-label"),e.EFF(19,"Boltz Server URL"),e.k0s(),e.j41(20,"input",10,1),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.serverUrl,Bt)||(I.serverUrl=Bt),v.Njj(Bt)}),e.k0s(),e.j41(22,"mat-hint"),e.EFF(23,"Service url for boltz server REST APIs, eg. https://127.0.0.1:9003"),e.k0s(),e.DNE(24,Y0,2,0,"mat-error",11)(25,B4,2,0,"mat-error",11),e.k0s(),e.j41(26,"mat-form-field")(27,"mat-label"),e.EFF(28,"Boltz Macaroon Path"),e.k0s(),e.j41(29,"input",12),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.macaroonPath,Bt)||(I.macaroonPath=Bt),v.Njj(Bt)}),e.k0s(),e.j41(30,"mat-hint"),e.EFF(31,"Path for the folder containing boltz 'admin.macaroon', eg. D:\\\\xyz\\\\AppData\\\\Boltz\\\\testnet"),e.k0s(),e.DNE(32,Q0,2,0,"mat-error",11),e.k0s()()(),e.j41(33,"div",13)(34,"button",14),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onReset())}),e.EFF(35,"Reset"),e.k0s(),e.j41(36,"button",15),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onUpdateService())}),e.EFF(37,"Update"),e.k0s()()()}if(2&D){const Oe=e.sdS(21);e.R7$(2),e.Y8G("icon",I.faInfoCircle),e.R7$(13),e.R50("ngModel",I.enableBoltz),e.R7$(5),e.Y8G("required",I.enableBoltz)("disabled",!I.enableBoltz),e.R50("ngModel",I.serverUrl),e.R7$(4),e.Y8G("ngIf",(!I.serverUrl||""===I.serverUrl.trim())&&I.enableBoltz),e.R7$(),e.Y8G("ngIf",(null==Oe||null==Oe.errors?null:Oe.errors.invalid)&&I.enableBoltz),e.R7$(4),e.Y8G("required",I.enableBoltz)("disabled",!I.enableBoltz),e.R50("ngModel",I.macaroonPath),e.R7$(3),e.Y8G("ngIf",!I.macaroonPath&&I.enableBoltz)}},dependencies:[w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,os.aY,es.$z,br.fg,Ma.rl,Ma.nJ,Ma.MV,Ma.TL,Ie.DJ,Ie.sA,Ie.UI,bc.sG,go.Ld,Kl.N],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return b(),_})(),Yh=(()=>{var b;class _{constructor(){}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-ln-services"]],standalone:!1,decls:1,vars:0,template:function(D,I){1&D&&e.nrm(0,"router-outlet")},dependencies:[Ha.n3],encapsulation:2}))}return b(),_})();var p2=l(1092),E1=l(4104),kc=l(6695),Oc=l(2042),Ra=l(1676),vd=l(7575);const g2=()=>["all"],z4=b=>({"overflow-auto error-border":b,"overflow-auto":!0}),$0=()=>["no_swap"],ul=b=>({width:b}),Z0=b=>({"display-none":b});function V4(b,_){if(1&b&&(e.j41(0,"mat-option",37),e.EFF(1),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.Y8G("value",m),e.R7$(),e.JRh(E.getLabel(m))}}function _2(b,_){1&b&&e.nrm(0,"mat-progress-bar",38)}function U4(b,_){1&b&&(e.j41(0,"th",39),e.EFF(1,"State"),e.k0s())}function Qh(b,_){if(1&b&&(e.j41(0,"td",40),e.EFF(1),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.JRh(E.LoopStateEnum[null==m?null:m.state])}}function J0(b,_){1&b&&(e.j41(0,"th",39),e.EFF(1,"Initiation Time"),e.k0s())}function v2(b,_){if(1&b&&(e.j41(0,"td",40),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&b){const m=_.$implicit;e.R7$(),e.JRh(e.i5U(2,1,(null==m?null:m.initiation_time)/1e6,"dd/MMM/y HH:mm"))}}function G4(b,_){1&b&&(e.j41(0,"th",39),e.EFF(1,"Last Update Time"),e.k0s())}function j4(b,_){if(1&b&&(e.j41(0,"td",40),e.EFF(1),e.nI1(2,"date"),e.k0s()),2&b){const m=_.$implicit;e.R7$(),e.JRh(e.i5U(2,1,(null==m?null:m.last_update_time)/1e6,"dd/MMM/y HH:mm"))}}function H4(b,_){1&b&&(e.j41(0,"th",41),e.EFF(1,"Amount (Sats)"),e.k0s())}function qa(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",42),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==m?null:m.amt))}}function xc(b,_){1&b&&(e.j41(0,"th",41),e.EFF(1,"Cost Server (Sats)"),e.k0s())}function y2(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",42),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==m?null:m.cost_server))}}function q0(b,_){1&b&&(e.j41(0,"th",41),e.EFF(1,"Cost Offchain (Sats)"),e.k0s())}function M1(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",42),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==m?null:m.cost_offchain))}}function W4(b,_){1&b&&(e.j41(0,"th",41),e.EFF(1,"Cost Onchain (Sats)"),e.k0s())}function S1(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",42),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.SpI(" ",e.bMT(3,1,null==m?null:m.cost_onchain)," ")}}function T1(b,_){1&b&&(e.j41(0,"th",39),e.EFF(1,"HTLC Address"),e.k0s())}function yd(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ul,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.htlc_address)}}function t1(b,_){1&b&&(e.j41(0,"th",39),e.EFF(1,"ID"),e.k0s())}function X4(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ul,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.id)}}function D1(b,_){1&b&&(e.j41(0,"th",39),e.EFF(1,"ID (Bytes)"),e.k0s())}function w1(b,_){if(1&b&&(e.j41(0,"td",40)(1,"span",43)(2,"span",44),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,ul,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.id_bytes)}}function A1(b,_){if(1&b){const m=e.RV6();e.j41(0,"th",45)(1,"div",46)(2,"mat-select",47),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",48),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function bd(b,_){if(1&b){const m=e.RV6();e.j41(0,"td",49)(1,"button",50),e.bIt("click",function(D){const I=v.eBV(m).$implicit,Oe=e.XpG();return v.Njj(Oe.onSwapClick(I,D))}),e.EFF(2,"View Info"),e.k0s()()}}function b2(b,_){if(1&b&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.JRh(m.emptyTableMessage)}}function K4(b,_){if(1&b&&(e.j41(0,"td",51),e.DNE(1,b2,2,1,"p",52),e.k0s()),2&b){const m=e.XpG();e.R7$(),e.Y8G("ngIf",!(null!=m.listSwaps&&m.listSwaps.data)||(null==m.listSwaps||null==m.listSwaps.data?null:m.listSwaps.data.length)<1)}}function Rc(b,_){if(1&b&&e.nrm(0,"tr",53),2&b){const m=e.XpG();e.Y8G("ngClass",e.eq3(1,Z0,(null==m.listSwaps?null:m.listSwaps.data)&&(null==m.listSwaps||null==m.listSwaps.data?null:m.listSwaps.data.length)>0))}}function Ec(b,_){1&b&&e.nrm(0,"tr",54)}function eu(b,_){1&b&&e.nrm(0,"tr",55)}let Cd=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt){this.logger=E,this.commonService=D,this.store=I,this.loopService=Oe,this.datePipe=Ct,this.camelCaseWithReplace=Bt,this.selectedSwapType=_t.C7.LOOP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=_t._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="loop",this.tableSetting={tableId:"loop",recordsPerPage:_t.md,sortBy:"initiation_time",sortOrder:_t.oi.DESCENDING},this.LoopStateEnum=_t.Hx,this.faHistory=Ti.Int,this.swapCaption="Loop Out",this.displayedColumns=[],this.listSwaps=new Ra.I6([]),this.selFilter="",this.pageSize=_t.md,this.pageSizeOptions=_t.xp,this.screenSize="",this.screenSizeEnum=_t.f7,this.unSubs=[new gi.B,new gi.B,new gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(E){this.swapCaption=this.selectedSwapType===_t.C7.LOOP_IN?"Loop In":"Loop Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(md.$G).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.tableSetting=E.pageSettings.find(D=>D.pageId===this.PAGE_ID)?.tables.find(D=>D.tableId===this.tableSetting.tableId)||_t.ZC.find(D=>D.pageId===this.PAGE_ID)?.tables.find(D=>D.tableId===this.tableSetting.tableId),this.displayedColumns=this.screenSize===_t.f7.XS||this.screenSize===_t.f7.SM?JSON.parse(JSON.stringify(this.tableSetting.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSetting.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSetting.recordsPerPage?+this.tableSetting.recordsPerPage:_t.md,this.swapsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}applyFilter(){this.listSwaps.filter=this.selFilter.trim().toLowerCase()}getLabel(E){const D=this.nodePageDefs[this.PAGE_ID][this.tableSetting.tableId].allowedColumns.find(I=>I.column===E);return D?D.label?D.label:this.camelCaseWithReplace.transform(D.column,"_"):this.commonService.titleCase(E)}setFilterPredicate(){this.listSwaps.filterPredicate=(E,D)=>{let I="";switch(this.selFilterBy){case"all":I=JSON.stringify(E).toLowerCase();break;case"state":I=E?.state?this.LoopStateEnum[E?.state]:"";break;case"initiation_time":case"last_update_time":I=this.datePipe.transform(new Date((E[this.selFilterBy]||0)/1e6),"dd/MMM/y HH:mm")?.toLowerCase()||"";break;default:I=typeof E[this.selFilterBy]>"u"?"":"string"==typeof E[this.selFilterBy]?E[this.selFilterBy].toLowerCase():"boolean"==typeof E[this.selFilterBy]?E[this.selFilterBy]?"yes":"no":E[this.selFilterBy].toString()}return"state"===this.selFilterBy?0===I.indexOf(D):I.includes(D)}}onSwapClick(E,D){this.loopService.getSwap(E.id_bytes?.replace(/\//g,"_")?.replace(/\+/g,"-")||"").pipe((0,li.Q)(this.unSubs[1])).subscribe(I=>{this.store.dispatch((0,Bi.xO)({payload:{data:{type:_t.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"state",value:_t.Hx[I.state||""],title:"Status",width:50,type:_t.UN.STRING},{key:"amt",value:I.amt,title:"Amount (Sats)",width:50,type:_t.UN.NUMBER}],[{key:"initiation_time",value:(I.initiation_time||0)/1e9,title:"Initiation Time",width:50,type:_t.UN.DATE_TIME},{key:"last_update_time",value:(I.last_update_time||0)/1e9,title:"Last Update Time",width:50,type:_t.UN.DATE_TIME}],[{key:"cost_server",value:I.cost_server,title:"Server Cost (Sats)",width:33,type:_t.UN.NUMBER},{key:"cost_offchain",value:I.cost_offchain,title:"Offchain Cost (Sats)",width:33,type:_t.UN.NUMBER},{key:"cost_onchain",value:I.cost_onchain,title:"Onchain Cost (Sats)",width:34,type:_t.UN.NUMBER}],[{key:"id_bytes",value:I.id_bytes,title:"ID",width:100,type:_t.UN.STRING}],[{key:"htlc_address",value:I.htlc_address,title:"HTLC Address",width:100,type:_t.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(E){this.listSwaps=new Ra.I6([...E]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(D,I)=>D[I]&&isNaN(D[I])?D[I].toLocaleLowerCase():D[I]?+D[I]:null,this.listSwaps.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listSwaps)}onDownloadCSV(){this.listSwaps.data&&this.listSwaps.data.length>0&&this.commonService.downloadFile(this.listSwaps.data,this.selectedSwapType===_t.C7.LOOP_IN?"Loop in":"Loop out")}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(Qo.h),e.rXU(mi.il),e.rXU(E1.Q),e.rXU(w.vh),e.rXU(dl.VD))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-swaps"]],viewQuery:function(D,I){if(1&D&&(e.GBs(Oc.B4,5),e.GBs(kc.iy,5)),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.sort=Oe.first),e.mGM(Oe=e.lsd())&&(I.paginator=Oe.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},standalone:!1,features:[e.Jv_([{provide:sl.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:kc.xX,useValue:(0,_t.on)("Swaps")}]),e.OA$],decls:61,vars:20,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"card-content-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","fxFlex","100",1,"page-sub-title-container","w-100"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","state"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","initiation_time"],["matColumnDef","last_update_time"],["matColumnDef","amt"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","cost_server"],["matColumnDef","cost_offchain"],["matColumnDef","cost_onchain"],["matColumnDef","htlc_address"],["matColumnDef","id"],["matColumnDef","id_bytes"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_swap"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3),e.nrm(3,"fa-icon",4),e.j41(4,"span",5),e.EFF(5),e.k0s()(),e.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",8),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selFilterBy,Bt)||(I.selFilterBy=Bt),v.Njj(Bt)}),e.bIt("selectionChange",function(){return v.eBV(Oe),I.selFilter="",v.Njj(I.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,V4,2,2,"mat-option",9),e.k0s()()(),e.j41(13,"mat-form-field",7)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",10),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selFilter,Bt)||(I.selFilter=Bt),v.Njj(Bt)}),e.bIt("input",function(){return v.eBV(Oe),v.Njj(I.applyFilter())})("keyup",function(){return v.eBV(Oe),v.Njj(I.applyFilter())}),e.k0s()()()(),e.j41(17,"div",11)(18,"div",12),e.DNE(19,_2,1,0,"mat-progress-bar",13),e.j41(20,"table",14,0),e.qex(22,15),e.DNE(23,U4,2,0,"th",16)(24,Qh,2,1,"td",17),e.bVm(),e.qex(25,18),e.DNE(26,J0,2,0,"th",16)(27,v2,3,4,"td",17),e.bVm(),e.qex(28,19),e.DNE(29,G4,2,0,"th",16)(30,j4,3,4,"td",17),e.bVm(),e.qex(31,20),e.DNE(32,H4,2,0,"th",21)(33,qa,4,3,"td",17),e.bVm(),e.qex(34,22),e.DNE(35,xc,2,0,"th",21)(36,y2,4,3,"td",17),e.bVm(),e.qex(37,23),e.DNE(38,q0,2,0,"th",21)(39,M1,4,3,"td",17),e.bVm(),e.qex(40,24),e.DNE(41,W4,2,0,"th",21)(42,S1,4,3,"td",17),e.bVm(),e.qex(43,25),e.DNE(44,T1,2,0,"th",16)(45,yd,4,4,"td",17),e.bVm(),e.qex(46,26),e.DNE(47,t1,2,0,"th",16)(48,X4,4,4,"td",17),e.bVm(),e.qex(49,27),e.DNE(50,D1,2,0,"th",16)(51,w1,4,4,"td",17),e.bVm(),e.qex(52,28),e.DNE(53,A1,6,0,"th",29)(54,bd,3,0,"td",30),e.bVm(),e.qex(55,31),e.DNE(56,K4,2,1,"td",32),e.bVm(),e.DNE(57,Rc,1,3,"tr",33)(58,Ec,1,0,"tr",34)(59,eu,1,0,"tr",35),e.k0s(),e.nrm(60,"mat-paginator",36),e.k0s()()()}2&D&&(e.R7$(3),e.Y8G("icon",I.faHistory),e.R7$(2),e.SpI("",I.swapCaption," History"),e.R7$(5),e.R50("ngModel",I.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(16,g2).concat(I.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",I.selFilter),e.R7$(3),e.Y8G("ngIf",!0===I.flgLoading[0]),e.R7$(),e.Y8G("matSortActive",I.tableSetting.sortBy)("matSortDirection",I.tableSetting.sortOrder)("dataSource",I.listSwaps)("ngClass",e.eq3(17,z4,"error"===I.flgLoading[0])),e.R7$(37),e.Y8G("matFooterRowDef",e.lJ4(19,$0)),e.R7$(),e.Y8G("matHeaderRowDef",I.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",I.displayedColumns),e.R7$(),e.Y8G("pageSize",I.pageSize)("pageSizeOptions",I.pageSizeOptions)("showFirstLastButtons",I.screenSize!==I.screenSizeEnum.XS))},dependencies:[w.YU,w.Sq,w.bT,w.B3,hi.me,hi.BC,hi.vS,os.aY,es.$z,br.fg,Ma.rl,Ma.nJ,vd.HM,Ie.DJ,Ie.sA,Ie.UI,cl.PW,cl.eI,sl.VO,sl.$2,ac.wT,Oc.B4,Oc.aE,Ra.Zl,Ra.tL,Ra.ji,Ra.cC,Ra.YV,Ra.iL,Ra.Zq,Ra.xW,Ra.KS,Ra.$R,Ra.Qo,Ra.YZ,Ra.NB,Ra.iF,kc.iy,go.ZF,go.Ld,w.QX,w.vh],encapsulation:2}))}return b(),_})();const Mc=b=>["../",b];function tu(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",11),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG();return v.Njj(I.onSelectedIndexChange(D))}),e.EFF(1),e.k0s()}if(2&b){const m=_.$implicit,E=e.XpG();e.Y8G("active",E.activeTab.link===m.link)("routerLink",e.eq3(3,Mc,m.link)),e.R7$(),e.JRh(m.name)}}let nu=(()=>{var b;class _{constructor(E,D,I){this.router=E,this.loopService=D,this.store=I,this.faInfinity=Ti.C8j,this.loopInfo=null,this.targetConf=2,this.inAmount=25e4,this.quotes=[],this.LoopTypeEnum=_t.C7,this.selectedSwapType=_t.C7.LOOP_OUT,this.storedSwaps=[],this.filteredSwaps=[],this.emptyTableMessage="No swap data available.",this.flgLoading=[!0],this.links=[{link:"loopout",name:"Loop Out"},{link:"loopin",name:"Loop In"}],this.activeTab=this.links[0],this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){this.store.dispatch((0,Bi.mt)({payload:_t.MZ.GET_LOOP_INFO})),this.loopService.getLoopInfo().pipe((0,li.Q)(this.unSubs[4])).subscribe({next:D=>{this.store.dispatch((0,Bi.y0)({payload:_t.MZ.GET_LOOP_INFO})),this.loopInfo=D,this.loopInfo&&this.loopInfo.version&&(this.loopInfo.version=this.loopInfo.version.split(" ")[0])},error:D=>{this.store.dispatch((0,Bi.y0)({payload:_t.MZ.GET_LOOP_INFO})),this.loopInfo.version=" Unknown"}}),this.loopService.listSwaps();const E=this.links.find(D=>this.router.url.includes(D.link));this.activeTab=E||this.links[0],this.selectedSwapType=E&&"loopin"===E.link?_t.C7.LOOP_IN:_t.C7.LOOP_OUT,this.router.events.pipe((0,li.Q)(this.unSubs[0]),(0,za.p)(D=>D instanceof Ha.gx)).subscribe({next:D=>{const I=this.links.find(Oe=>D.urlAfterRedirects.includes(Oe.link));this.activeTab=I||this.links[0],this.selectedSwapType=I&&"loopin"===I.link?_t.C7.LOOP_IN:_t.C7.LOOP_OUT}}),this.loopService.swapsChanged.pipe((0,li.Q)(this.unSubs[1])).subscribe({next:D=>{this.flgLoading[0]=!1,this.storedSwaps=D,this.filteredSwaps=this.storedSwaps?.filter(I=>I.type===this.selectedSwapType)},error:D=>{this.flgLoading[0]="error",this.emptyTableMessage=D.message?D.message:"No loop "+(this.selectedSwapType===_t.C7.LOOP_IN?"in":"out")+" available."}})}onSelectedIndexChange(E){this.selectedSwapType="loopin"===E.link?_t.C7.LOOP_IN:_t.C7.LOOP_OUT,this.filteredSwaps=this.storedSwaps?.filter(D=>D.type===this.selectedSwapType)}onLoop(E){E===_t.C7.LOOP_IN?this.loopService.getLoopInTermsAndQuotes(this.targetConf).pipe((0,li.Q)(this.unSubs[2])).subscribe({next:D=>{this.store.dispatch((0,Bi.xO)({payload:{data:{minQuote:D[0],maxQuote:D[1],direction:E,component:p2.D}}}))}}):this.loopService.getLoopOutTermsAndQuotes(this.targetConf).pipe((0,li.Q)(this.unSubs[3])).subscribe({next:D=>{this.store.dispatch((0,Bi.xO)({payload:{data:{minQuote:D[0],maxQuote:D[1],direction:E,component:p2.D}}}))}})}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ha.Ix),e.rXU(E1.Q),e.rXU(mi.il))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-loop"]],standalone:!1,decls:15,vars:9,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","2",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1),e.nrm(1,"fa-icon",2),e.j41(2,"span",3),e.EFF(3),e.k0s()(),e.j41(4,"div",4)(5,"mat-card")(6,"mat-card-content",5)(7,"nav",6),e.DNE(8,tu,2,5,"div",7),e.k0s(),e.nrm(9,"mat-tab-nav-panel",null,0),e.j41(11,"div",8)(12,"button",9),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onLoop(I.selectedSwapType))}),e.EFF(13),e.k0s()(),e.nrm(14,"rtl-swaps",10),e.k0s()()()}if(2&D){const Oe=e.sdS(10);e.R7$(),e.Y8G("icon",I.faInfinity),e.R7$(2),e.SpI("Loop (v",(null==I.loopInfo?null:I.loopInfo.version)||" Unknown",")"),e.R7$(4),e.Y8G("tabPanel",Oe),e.R7$(),e.Y8G("ngForOf",I.links),e.R7$(5),e.SpI("Start ",I.activeTab.name),e.R7$(),e.Y8G("selectedSwapType",I.selectedSwapType)("swapsData",I.filteredSwaps)("flgLoading",I.flgLoading)("emptyTableMessage",I.emptyTableMessage)}},dependencies:[w.Sq,os.aY,es.$z,K.RN,K.m2,Ie.DJ,Ie.sA,Ie.UI,Ut.Bu,Ut.hQ,Ut.Ql,lo.Wk,Cd],encapsulation:2}))}return b(),_})();var iu=l(1001),au=l(4412),bl=l(8810),L1=l(2462);let rc=(()=>{var b;class _{constructor(E,D,I,Oe){this.httpClient=E,this.logger=D,this.store=I,this.commonService=Oe,this.swapUrl="",this.swaps={},this.boltzInfo=null,this.boltzInfoChanged=new au.t(null),this.swapsChanged=new au.t({}),this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B]}getSwapsList(){return this.swaps}listSwaps(){this.store.dispatch((0,Bi.mt)({payload:_t.MZ.GET_BOLTZ_SWAPS})),this.swapUrl=_t.H$+_t.rl.BOLTZ_API+"/listSwaps",this.httpClient.get(this.swapUrl).pipe((0,li.Q)(this.unSubs[0])).subscribe({next:E=>{this.store.dispatch((0,Bi.y0)({payload:_t.MZ.GET_BOLTZ_SWAPS})),this.swaps=E,this.swapsChanged.next(this.swaps)},error:E=>this.swapsChanged.error(this.handleErrorWithAlert(_t.MZ.GET_BOLTZ_SWAPS,this.swapUrl,E))})}swapInfo(E){return this.swapUrl=_t.H$+_t.rl.BOLTZ_API+"/swapInfo/"+E,this.httpClient.get(this.swapUrl).pipe((0,Ys.W)(D=>(0,Tr.of)(this.handleErrorWithAlert(_t.MZ.NO_SPINNER,this.swapUrl,D))))}getBoltzInfo(){this.store.dispatch((0,Bi.mt)({payload:_t.MZ.GET_BOLTZ_INFO})),this.swapUrl=_t.H$+_t.rl.BOLTZ_API+"/info",this.httpClient.get(this.swapUrl).pipe((0,li.Q)(this.unSubs[1])).subscribe({next:E=>{this.store.dispatch((0,Bi.y0)({payload:_t.MZ.GET_BOLTZ_INFO})),this.boltzInfo=E,this.boltzInfoChanged.next(this.boltzInfo)},error:E=>(this.boltzInfo={version:"2.0.0"},this.boltzInfoChanged.next(this.boltzInfo),(0,Tr.of)(this.handleErrorWithoutAlert(_t.MZ.GET_BOLTZ_INFO,this.swapUrl,E)))})}serviceInfo(){return this.store.dispatch((0,Bi.mt)({payload:_t.MZ.GET_SERVICE_INFO})),this.swapUrl=_t.H$+_t.rl.BOLTZ_API+"/serviceInfo",this.httpClient.get(this.swapUrl).pipe((0,li.Q)(this.unSubs[2]),(0,us.T)(E=>(this.store.dispatch((0,Bi.y0)({payload:_t.MZ.GET_SERVICE_INFO})),E)),(0,Ys.W)(E=>(0,Tr.of)(this.handleErrorWithAlert(_t.MZ.GET_SERVICE_INFO,this.swapUrl,E))))}swapOut(E,D,I){const Oe={amount:E,address:D,acceptZeroConf:I};return this.swapUrl=_t.H$+_t.rl.BOLTZ_API+"/createreverseswap",this.httpClient.post(this.swapUrl,Oe).pipe((0,Ys.W)(Ct=>this.handleErrorWithoutAlert("Swap Out for Address: "+D,_t.MZ.NO_SPINNER,Ct)))}swapIn(E,D,I){const Oe={amount:E,sendFromInternal:D,refundAddress:I};return this.swapUrl=_t.H$+_t.rl.BOLTZ_API+"/createswap",this.httpClient.post(this.swapUrl,Oe).pipe((0,Ys.W)(Ct=>this.handleErrorWithoutAlert("Swap In for Amount: "+E,_t.MZ.NO_SPINNER,Ct)))}handleErrorWithoutAlert(E,D,I){let Oe="";return this.logger.error("ERROR IN: "+E+"\n"+JSON.stringify(I)),this.store.dispatch((0,Bi.y0)({payload:D})),401===I.status?(Oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Bi.ri)({payload:Oe}))):503===I.status?(Oe="Unable to Connect to Boltz Server.",this.store.dispatch((0,Bi.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:I.status,message:"Unable to Connect to Boltz Server",URL:E},component:L1.f}}}))):Oe=this.commonService.extractErrorMessage(I),(0,bl.$)(()=>new Error(Oe))}handleErrorWithAlert(E,D,I){let Oe="";if(401===I.status&&(this.logger.info("Redirecting to Login"),this.store.dispatch((0,Bi.ri)({payload:"Authentication Failed: "+JSON.stringify(I.error)}))),this.logger.error(I),this.store.dispatch((0,Bi.y0)({payload:E})),401===I.status)Oe="Unauthorized User.",this.logger.info("Redirecting to Login"),this.store.dispatch((0,Bi.ri)({payload:Oe}));else if(503===I.status)Oe="Unable to Connect to Boltz Server.",setTimeout(()=>{this.store.dispatch((0,Bi.xO)({payload:{data:{type:"ERROR",alertTitle:"Boltz Not Connected",message:{code:I.status,message:"Unable to Connect to Boltz Server",URL:D},component:L1.f}}}))},100);else{Oe=this.commonService.extractErrorMessage(I);const Ct=I.error&&I.error.error&&I.error.error.code?I.error.error.code:I.error&&I.error.code?I.error.code:I.code?I.code:I.status;setTimeout(()=>{this.store.dispatch((0,Bi.xO)({payload:{data:{type:_t.A$.ERROR,alertTitle:"ERROR",message:{code:Ct,message:Oe,URL:D},component:L1.f}}}))},100)}return{message:Oe}}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(v.KVO(nr.Qq),v.KVO(Aa.gP),v.KVO(mi.il),v.KVO(Qo.h))},this.\u0275prov=v.jDH({token:_,factory:_.\u0275fac}))}return b(),_})();const I1=b=>({"display-none":b});function Yr(b,_){1&b&&e.eu8(0)}function n1(b,_){if(1&b&&(e.j41(0,"div",4)(1,"span",5),e.EFF(2),e.k0s()()),2&b){const m=e.XpG();e.R7$(2),e.JRh(null!=m.swapStatus&&m.swapStatus.error?null==m.swapStatus?null:m.swapStatus.error:"Unknown Error.")}}function su(b,_){if(1&b&&(e.j41(0,"div",7)(1,"h4",8),e.EFF(2,"Routing Fee (mSats)"),e.k0s(),e.j41(3,"span",5),e.EFF(4),e.nI1(5,"number"),e.k0s()()),2&b){const m=e.XpG(2);e.R7$(4),e.JRh(e.bMT(5,1,null==m.swapStatus?null:m.swapStatus.routingFeeMilliSat))}}function oc(b,_){if(1&b&&(e.j41(0,"div",7)(1,"h4",8),e.EFF(2,"Claim Transaction ID"),e.k0s(),e.j41(3,"span",5),e.EFF(4),e.k0s()()),2&b){const m=e.XpG(2);e.R7$(4),e.JRh(null==m.swapStatus?null:m.swapStatus.claimTransactionId)}}function k1(b,_){if(1&b&&(e.j41(0,"div",4)(1,"div",6)(2,"div",7)(3,"h4",8),e.EFF(4,"ID"),e.k0s(),e.j41(5,"span",5),e.EFF(6),e.k0s()(),e.DNE(7,su,6,3,"div",9)(8,oc,5,1,"div",9),e.k0s(),e.nrm(9,"mat-divider",10),e.j41(10,"div",6)(11,"div",11)(12,"h4",8),e.EFF(13,"Lockup Address"),e.k0s(),e.j41(14,"span",5),e.EFF(15),e.k0s()()()()),2&b){const m=e.XpG();e.R7$(6),e.JRh(null==m.swapStatus?null:m.swapStatus.id),e.R7$(),e.Y8G("ngIf",m.acceptZeroConf),e.R7$(),e.Y8G("ngIf",m.acceptZeroConf),e.R7$(7),e.JRh(null==m.swapStatus?null:m.swapStatus.lockupAddress)}}function C2(b,_){1&b&&(e.j41(0,"span",22),e.EFF(1,"N/A"),e.k0s())}function Y4(b,_){1&b&&(e.j41(0,"span",23),e.EFF(1,"QR Code Not Applicable"),e.k0s())}function x2(b,_){1&b&&e.nrm(0,"mat-divider",24),2&b&&e.Y8G("inset",!0)}function xd(b,_){if(1&b&&(e.j41(0,"div",6)(1,"div",11)(2,"h4",8),e.EFF(3,"Transaction ID"),e.k0s(),e.j41(4,"span",5),e.EFF(5),e.k0s()()()),2&b){const m=e.XpG(2);e.R7$(5),e.JRh(null==m.swapStatus?null:m.swapStatus.txId)}}function Q4(b,_){if(1&b&&(e.j41(0,"div",6)(1,"div",25)(2,"h4",8),e.EFF(3,"ID"),e.k0s(),e.j41(4,"span",5),e.EFF(5),e.k0s()(),e.j41(6,"div",25)(7,"h4",8),e.EFF(8,"Expected Amount (Sats)"),e.k0s(),e.j41(9,"span",5),e.EFF(10),e.nI1(11,"number"),e.k0s()()()),2&b){const m=e.XpG(2);e.R7$(5),e.JRh(null==m.swapStatus?null:m.swapStatus.id),e.R7$(5),e.JRh(e.bMT(11,2,null==m.swapStatus?null:m.swapStatus.expectedAmount))}}function ms(b,_){1&b&&e.nrm(0,"mat-divider",10)}function $4(b,_){if(1&b&&(e.j41(0,"div",6)(1,"div",11)(2,"h4",8),e.EFF(3,"Address"),e.k0s(),e.j41(4,"span",5),e.EFF(5),e.k0s()()()),2&b){const m=e.XpG(2);e.R7$(5),e.JRh(null==m.swapStatus?null:m.swapStatus.address)}}function lc(b,_){1&b&&e.nrm(0,"mat-divider",10)}function ru(b,_){if(1&b&&(e.j41(0,"div",6)(1,"div",11)(2,"h4",8),e.EFF(3,"BIP 21"),e.k0s(),e.j41(4,"span",5),e.EFF(5),e.k0s()()()),2&b){const m=e.XpG(2);e.R7$(5),e.JRh(null==m.swapStatus?null:m.swapStatus.bip21)}}function ou(b,_){if(1&b&&(e.j41(0,"div",12)(1,"div",13),e.nrm(2,"qr-code",14),e.DNE(3,C2,2,0,"span",15),e.k0s(),e.j41(4,"div",16)(5,"div",4)(6,"div",17),e.nrm(7,"qr-code",14),e.DNE(8,Y4,2,0,"span",18),e.k0s(),e.DNE(9,x2,1,1,"mat-divider",19)(10,xd,6,1,"div",20)(11,Q4,12,4,"div",20)(12,ms,1,0,"mat-divider",21)(13,$4,6,1,"div",20)(14,lc,1,0,"mat-divider",21)(15,ru,6,1,"div",20),e.k0s()()()),2&b){const m=e.XpG();e.R7$(),e.Y8G("fxLayoutAlign",""!==((null==m.swapStatus?null:m.swapStatus.txId)||(null==m.swapStatus?null:m.swapStatus.address))?"center start":"center center")("ngClass",e.eq3(17,I1,m.screenSize===m.screenSizeEnum.XS||m.screenSize===m.screenSizeEnum.SM)),e.R7$(),e.Y8G("value",(null==m.swapStatus?null:m.swapStatus.txId)||(null==m.swapStatus?null:m.swapStatus.address))("size",m.qrWidth),e.R7$(),e.Y8G("ngIf",""===((null==m.swapStatus?null:m.swapStatus.txId)||(null==m.swapStatus?null:m.swapStatus.address))),e.R7$(3),e.Y8G("fxLayoutAlign",""!==((null==m.swapStatus?null:m.swapStatus.txId)||(null==m.swapStatus?null:m.swapStatus.address))?"center start":"center center")("ngClass",e.eq3(19,I1,m.screenSize!==m.screenSizeEnum.XS&&m.screenSize!==m.screenSizeEnum.SM)),e.R7$(),e.Y8G("value",(null==m.swapStatus?null:m.swapStatus.txId)||(null==m.swapStatus?null:m.swapStatus.address))("size",m.qrWidth),e.R7$(),e.Y8G("ngIf",""===((null==m.swapStatus?null:m.swapStatus.txId)||(null==m.swapStatus?null:m.swapStatus.address))),e.R7$(),e.Y8G("ngIf",m.screenSize===m.screenSizeEnum.XS||m.screenSize===m.screenSizeEnum.SM),e.R7$(),e.Y8G("ngIf",m.sendFromInternal),e.R7$(),e.Y8G("ngIf",!m.sendFromInternal),e.R7$(),e.Y8G("ngIf",!m.sendFromInternal),e.R7$(),e.Y8G("ngIf",!m.sendFromInternal),e.R7$(),e.Y8G("ngIf",!m.sendFromInternal),e.R7$(),e.Y8G("ngIf",!m.sendFromInternal)}}let lu=(()=>{var b;class _{constructor(E){this.commonService=E,this.swapStatus=null,this.direction=_t.Bd.SWAP_OUT,this.acceptZeroConf=!1,this.sendFromInternal=!0,this.qrWidth=240,this.screenSize="",this.screenSizeEnum=_t.f7,this.swapTypeEnum=_t.Bd}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.screenSize===_t.f7.XS&&(this.qrWidth=180)}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Qo.h))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-swap-status"]],inputs:{swapStatus:"swapStatus",direction:"direction",acceptZeroConf:"acceptZeroConf",sendFromInternal:"sendFromInternal"},standalone:!1,decls:7,vars:1,consts:[["swapFailedBlock",""],["swapOutBlock",""],["swapInBlock",""],[4,"ngTemplateOutlet"],["fxLayout","column"],[1,"foreground-secondary-text"],["fxLayout","row"],["fxFlex","33"],["fxLayoutAlign","start",1,"font-bold-500"],["fxFlex","33",4,"ngIf"],[1,"w-100","my-1"],["fxFlex","100"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","35",1,"modal-qr-code-container","padding-gap-large",3,"fxLayoutAlign","ngClass"],["errorCorrectionLevel","L",3,"value","size"],["class","font-size-300",4,"ngIf"],["fxFlex","65"],["fxFlex","30",1,"modal-qr-code-container","padding-gap",3,"fxLayoutAlign","ngClass"],["class","font-size-120",4,"ngIf"],["class","my-1",3,"inset",4,"ngIf"],["fxLayout","row",4,"ngIf"],["class","w-100 my-1",4,"ngIf"],[1,"font-size-300"],[1,"font-size-120"],[1,"my-1",3,"inset"],["fxFlex","50"]],template:function(D,I){if(1&D&&e.DNE(0,Yr,1,0,"ng-container",3)(1,n1,3,1,"ng-template",null,0,e.C5r)(3,k1,16,4,"ng-template",null,1,e.C5r)(5,ou,16,21,"ng-template",null,2,e.C5r),2&D){const Oe=e.sdS(2),Ct=e.sdS(4),Bt=e.sdS(6);e.Y8G("ngTemplateOutlet",null!=I.swapStatus&&I.swapStatus.error?Oe:I.direction===I.swapTypeEnum.SWAP_OUT?Ct:Bt)}},dependencies:[w.YU,w.bT,w.T3,Hi.q,Ie.DJ,Ie.sA,Ie.UI,cl.PW,Yl.Um,w.QX],encapsulation:2}))}return b(),_})(),O1=(()=>{var b;class _{constructor(){this.serviceInfo={},this.direction=_t.Bd.SWAP_OUT,this.swapTypeEnum=_t.Bd}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-service-info"]],inputs:{serviceInfo:"serviceInfo",direction:"direction"},standalone:!1,decls:33,vars:13,consts:[["fxFlex","100",1,"flat-expansion-panel","mb-1",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxLayout","row"],["fxFlex","50"],["fxLayoutAlign","start",1,"font-bold-500"],[1,"foreground-secondary-text"],[1,"w-100","my-1"]],template:function(D,I){1&D&&(e.j41(0,"mat-expansion-panel",0)(1,"mat-expansion-panel-header")(2,"mat-panel-title")(3,"span",1),e.EFF(4,"Service Information"),e.k0s()()(),e.j41(5,"div",2)(6,"div",3)(7,"div",4)(8,"h4",5),e.EFF(9,"Minimum Amount (Sats)"),e.k0s(),e.j41(10,"span",6),e.EFF(11),e.nI1(12,"number"),e.k0s()(),e.j41(13,"div",4)(14,"h4",5),e.EFF(15,"Maximum Amount (Sats)"),e.k0s(),e.j41(16,"span",6),e.EFF(17),e.nI1(18,"number"),e.k0s()()(),e.nrm(19,"mat-divider",7),e.j41(20,"div",3)(21,"div",4)(22,"h4",5),e.EFF(23,"Fee Percentage"),e.k0s(),e.j41(24,"span",6),e.EFF(25),e.nI1(26,"number"),e.k0s()(),e.j41(27,"div",4)(28,"h4",5),e.EFF(29,"Miner Fee (Sats)"),e.k0s(),e.j41(30,"span",6),e.EFF(31),e.nI1(32,"number"),e.k0s()()()()()),2&D&&(e.Y8G("expanded",!0),e.R7$(11),e.JRh(e.bMT(12,5,null==I.serviceInfo||null==I.serviceInfo.limits?null:I.serviceInfo.limits.minimal)),e.R7$(6),e.JRh(e.bMT(18,7,null==I.serviceInfo||null==I.serviceInfo.limits?null:I.serviceInfo.limits.maximal)),e.R7$(8),e.JRh(e.bMT(26,9,null==I.serviceInfo||null==I.serviceInfo.fees?null:I.serviceInfo.fees.percentage)),e.R7$(6),e.JRh(e.bMT(32,11,I.direction===I.swapTypeEnum.SWAP_OUT?null==I.serviceInfo||null==I.serviceInfo.fees||null==I.serviceInfo.fees.miner?null:I.serviceInfo.fees.miner.reverse:null==I.serviceInfo||null==I.serviceInfo.fees||null==I.serviceInfo.fees.miner?null:I.serviceInfo.fees.miner.normal)))},dependencies:[or.GK,or.Z2,or.WN,Hi.q,Ie.DJ,Ie.sA,Ie.UI,w.QX],encapsulation:2}))}return b(),_})();var Ed=l(6949);const Sc=(b,_)=>({"small-svg":b,"large-svg":_});function cu(b,_){1&b&&e.eu8(0)}function E2(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17),e.k0s(),v.joV(),e.j41(12,"div",18)(13,"mat-card-title"),e.EFF(14,"Boltz Submarine Swaps explained."),e.k0s()(),e.j41(15,"div",19)(16,"mat-card-subtitle",20),e.EFF(17," Boltz is a privacy-first account free exchange and a Lightning service provider. By doing a Submarine Swap on Boltz, you can swap your on-chain Bitcoin for Lightning Bitcoin. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Sc,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function Md(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",21),e.nrm(2,"path",22)(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),e.k0s(),v.joV(),e.j41(9,"div",18)(10,"mat-card-title"),e.EFF(11,"Step 1: Deciding to Submarine Swap"),e.k0s()(),e.j41(12,"div",19)(13,"mat-card-subtitle",20),e.EFF(14," You have one or more Lightning channels that are running low on outbound liquidity and you want to fund it using your on-chain Bitcoin. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Sc,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function Pc(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",29),e.nrm(2,"path",30)(3,"path",31)(4,"path",32)(5,"path",33)(6,"path",34)(7,"circle",35)(8,"rect",36),e.j41(9,"defs")(10,"pattern",37),e.nrm(11,"use",38),e.k0s(),e.nrm(12,"image",39),e.k0s()(),v.joV(),e.j41(13,"div",18)(14,"mat-card-title"),e.EFF(15,"Step 2: Sending the on-chain funds"),e.k0s()(),e.j41(16,"div",19)(17,"mat-card-subtitle",20),e.EFF(18," You send the on-chain funds to an address which can only be spent by Boltz when it pays a Lightning invoice to your node. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Sc,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function Sd(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",40)(2,"g",41),e.nrm(3,"path",42)(4,"path",43)(5,"path",44)(6,"path",45)(7,"path",46),e.k0s(),e.j41(8,"defs")(9,"clipPath",47),e.nrm(10,"rect",48),e.k0s()()(),v.joV(),e.j41(11,"div",18)(12,"mat-card-title"),e.EFF(13,"Step 3: Receiving the funds on Lightning"),e.k0s()(),e.j41(14,"div",19)(15,"mat-card-subtitle",20),e.EFF(16," Boltz pays the Lightning invoice to your node and claims the on-chain funds locked in the previous step. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Sc,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function M2(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",49),e.nrm(2,"path",50)(3,"path",51)(4,"path",52)(5,"path",53)(6,"path",54),e.k0s(),v.joV(),e.j41(7,"div",18)(8,"mat-card-title"),e.EFF(9,"Done!"),e.k0s()(),e.j41(10,"div",19)(11,"mat-card-subtitle",20),e.EFF(12," You swapped your on-chain Bitcoin for Lightning Bitcoin, while also adding outbound capacity for your channels in the process - all in a non-custodial manner. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,Sc,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}let S2=(()=>{var b;class _{constructor(E){this.commonService=E,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.bkB,this.screenSize="",this.screenSizeEnum=_t.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(E){2===E.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===E.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Qo.h))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-swapin-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between center",3,"swipe"],["fxFlex","30","width","323","height","323","viewBox","0 0 323 323","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M53.8333 134.583H80.75L94.2083 161.5L117.792 134.961C121.616 130.658 125.869 126.602 131.194 124.413C136.45 122.252 142.103 121.125 147.842 121.125H242.25C286.847 121.125 323 157.278 323 201.875C323 246.472 286.847 282.625 242.25 282.625H147.842C142.103 282.625 136.45 281.497 131.194 279.337C125.869 277.149 121.616 273.092 117.792 268.79L94.2083 242.25L80.75 269.167H53.8333L67.2917 228.792L53.8333 201.875L67.2917 174.958L53.8333 134.583Z",1,"fill-color-0"],["d","M26.9167 107.667H53.8333L67.2917 134.583L90.8755 108.044C94.6993 103.741 98.9527 99.6849 104.277 97.4963C109.534 95.3357 115.187 94.2083 120.925 94.2083H215.333C259.93 94.2083 296.083 130.361 296.083 174.958C296.083 219.555 259.93 255.708 215.333 255.708H120.925C115.187 255.708 109.534 254.581 104.277 252.42C98.9527 250.232 94.6993 246.176 90.8755 241.873L67.2917 215.333L53.8333 242.25H26.9167L40.375 201.875L26.9167 174.958L40.375 148.042L26.9167 107.667Z",1,"stroke-color-thick"],["d","M134.583 215.333C142.016 215.333 148.042 209.308 148.042 201.875C148.042 194.442 142.016 188.417 134.583 188.417C127.151 188.417 121.125 194.442 121.125 201.875C121.125 209.308 127.151 215.333 134.583 215.333Z",1,"fill-color-15"],["d","M107.667 188.417C115.1 188.417 121.125 182.391 121.125 174.958C121.125 167.526 115.1 161.5 107.667 161.5C100.234 161.5 94.2083 167.526 94.2083 174.958C94.2083 182.391 100.234 188.417 107.667 188.417Z",1,"stroke-color-thick"],["d","M201.875 215.333C209.308 215.333 215.333 209.308 215.333 201.875C215.333 194.442 209.308 188.417 201.875 188.417C194.442 188.417 188.417 194.442 188.417 201.875C188.417 209.308 194.442 215.333 201.875 215.333Z",1,"fill-color-15"],["d","M174.958 188.417C182.391 188.417 188.417 182.391 188.417 174.958C188.417 167.526 182.391 161.5 174.958 161.5C167.526 161.5 161.5 167.526 161.5 174.958C161.5 182.391 167.526 188.417 174.958 188.417Z",1,"stroke-color-thick"],["d","M269.167 215.333C276.599 215.333 282.625 209.308 282.625 201.875C282.625 194.442 276.599 188.417 269.167 188.417C261.734 188.417 255.708 194.442 255.708 201.875C255.708 209.308 261.734 215.333 269.167 215.333Z",1,"fill-color-15"],["d","M242.25 188.417C249.683 188.417 255.708 182.391 255.708 174.958C255.708 167.526 249.683 161.5 242.25 161.5C234.817 161.5 228.792 167.526 228.792 174.958C228.792 182.391 234.817 188.417 242.25 188.417Z",1,"stroke-color-thick"],["d","M189.321 97C186.935 97 185 98.9345 185 101.321V112.679C185 115.065 186.935 117 189.321 117H237.679C240.065 117 242 115.065 242 112.679V101.321C242 98.9345 240.065 97 237.679 97H189.321Z",1,"fill-color-15"],["d","M161.5 67.2917V94.2083H215.333V67.2917H161.5Z",1,"stroke-color-thick"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","width","347","height","169","viewBox","0 0 347 169","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M89 157.417V41.5833C89 35.2125 92.75 30 97.3333 30H230.667C235.25 30 239 35.2125 239 41.5833V157.417C239 163.787 235.25 169 230.667 169H97.3333C92.75 169 89 163.787 89 157.417Z",1,"fill-color-0"],["d","M6.25 134.625V18.375C6.25 11.9812 11.4812 6.75 17.875 6.75H203.875C210.269 6.75 215.5 11.9812 215.5 18.375V134.625C215.5 141.019 210.269 146.25 203.875 146.25H17.875C11.4812 146.25 6.25 141.019 6.25 134.625Z",1,"stroke-color-thin"],["d","M256.188 123H238.75V76.5H256.188C259.442 76.5 262 79.0575 262 82.3125V117.188C262 120.443 259.442 123 256.188 123Z",1,"fill-color-15"],["d","M232.938 99.75H215.5V53.25H232.938C236.193 53.25 238.75 55.8075 238.75 59.0625V93.9375C238.75 97.1925 236.193 99.75 232.938 99.75Z",1,"stroke-color-thin"],["d","M146 53V87.875",1,"stroke-color-thin"],["d","M146 122.634V122.749",1,"stroke-color-thin"],["d","M344.698 95.3022C346.74 97.3445 346.74 100.656 344.698 102.698L311.418 135.978C309.376 138.02 306.065 138.02 304.022 135.978C301.98 133.935 301.98 130.624 304.022 128.582L333.604 99L304.022 69.418C301.98 67.3758 301.98 64.0647 304.022 62.0225C306.065 59.9803 309.376 59.9803 311.418 62.0225L344.698 95.3022ZM277 93.7706L341 93.7706V104.229L277 104.229V93.7706Z",1,"fill-color-15"],["fxFlex","30","width","454","height","243","viewBox","0 0 454 243","fill","none","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["d","M141.75 172.125C178.098 172.125 207.562 142.66 207.562 106.312C207.562 69.9653 178.098 40.5 141.75 40.5C105.403 40.5 75.9375 69.9653 75.9375 106.312C75.9375 142.66 105.403 172.125 141.75 172.125Z",1,"fill-color-0"],["d","M121.5 151.875C157.848 151.875 187.312 122.41 187.312 86.0625C187.312 49.7153 157.848 20.25 121.5 20.25C85.1528 20.25 55.6875 49.7153 55.6875 86.0625C55.6875 122.41 85.1528 151.875 121.5 151.875Z",1,"stroke-color-thiner"],["d","M20.25 192.375H222.75",1,"stroke-color-thiner"],["d","M192.375 222.75L222.75 192.375L192.375 162",1,"stroke-color-thiner"],["fill-rule","evenodd","clip-rule","evenodd","d","M161.033 82.5635C162.307 74.0523 155.826 69.4769 146.965 66.4247L149.84 54.8952L142.822 53.1462L140.023 64.3718C138.178 63.9121 136.283 63.4783 134.4 63.0486L137.219 51.749L130.205 50L127.328 61.5255C125.801 61.1777 124.302 60.8338 122.847 60.4721L122.855 60.4361L113.177 58.0194L111.31 65.5152C111.31 65.5152 116.517 66.7085 116.407 66.7825C119.249 67.4921 119.763 69.373 119.677 70.8641L116.403 83.9987C116.599 84.0487 116.852 84.1206 117.132 84.2326C117.096 84.2236 117.06 84.2146 117.023 84.2054C116.981 84.1948 116.938 84.184 116.894 84.1731C116.732 84.1323 116.563 84.09 116.391 84.0487L111.801 102.448C111.453 103.312 110.572 104.607 108.585 104.115C108.655 104.217 103.484 102.842 103.484 102.842L100 110.875L109.133 113.152C110.152 113.408 111.16 113.67 112.156 113.93L112.158 113.931L112.159 113.931C112.823 114.104 113.481 114.276 114.136 114.443L111.232 126.105L118.242 127.854L121.118 116.316C123.033 116.836 124.892 117.316 126.711 117.768L123.844 129.251L130.862 131L133.767 119.361C145.734 121.625 154.733 120.712 158.521 109.888C161.573 101.173 158.369 96.1458 152.072 92.8677C156.658 91.8103 160.112 88.794 161.033 82.5635ZM144.998 105.049C143.008 113.044 130.493 109.739 124.766 108.226L124.766 108.226C124.251 108.09 123.791 107.969 123.398 107.871L127.252 92.4219C127.73 92.5412 128.314 92.6723 128.976 92.8208L128.976 92.8208C134.899 94.1498 147.037 96.8734 144.998 105.049ZM130.167 85.6513C134.942 86.9255 145.356 89.7047 147.17 82.4376C149.022 75.0044 138.901 72.7637 133.957 71.6694C133.401 71.5463 132.911 71.4377 132.51 71.3379L129.016 85.3499C129.346 85.4322 129.733 85.5356 130.167 85.6513Z",1,"fill-color-15"],["cx","371.815","cy","95.815","r","81.815",1,"fill-color-boltz-bk"],["x","313.615","y","82.836","width","110.745","height","30.1472","fill","url(#pattern0)"],["id","pattern0","patternContentUnits","objectBoundingBox","width","1","height","1"],[0,"xlink","href","#image0","transform","scale(0.00185185 0.00680272)"],["id","image0","width","540","height","147",0,"xlink","href","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAhwAAACTCAYAAADFh8BYAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAACHKADAAQAAAABAAAAkwAAAABS37hiAABAAElEQVR4Aex9CaAkVXV2VfebfWWG1QWQRYddNgmCO6CiIGrAKC6gUWOIUROz/CYm+OdP/P9f82viEmNUcCFRUVFQlMUIgpIoCgwO2ww7IjLMMMub5b3XXfWf75z7Vd2urn69vK5+/d7Ufa/qnDr33HPPdm/drqquDoNdvMTxhSPBE5vODuL6BUEcHiDumBcE8Y+DYORT4V4fu3YXd09pfumB0gOlB0oPlB7oiwfCvkiZoULiDe9eGtSCH8RxfCJMCOUvlj/AIAyjoBL/abjHJz4+Q80r1S49UHqg9EDpgdIDQ+OBXXbBEW/8i2XB+ParZYHxHDohlrAAB0QJw2AiCOccGu75sXVGKfelB0oPlB4oPVB6oPRALx6o9NJopreJ469Xg4ltX8NiA8sLLDD8xQYWHbrwiOM5QVC7YKbbW+pfeqD0QOmB0gOlB6bbAyPTrcC09P/bH39EbqO8NF1mRKoGbqbYAgRQCkAU47mOspQeKD1QeqD0QOmB0gNT8MAud4UjfvyCt8Rx9D5dbMg9kwT6OK95xHrtY/EU/Fs2LT1QeqD0QOmB0gOlB8QDu9SCI37sghPievyvSeR1QSFHgD7uGPRmSxj8POEvkdIDpQdKD5QeKD1QeqAnD+wyt1TiJ9731Hhi52WytJinFzDy3OUueOitFNTjAkcU3ZDHWtJKD5QeKD3QLw/Ej55/TL0e7tcveamcmqCY5gGDoFqdf0P4lM8+oQflrvTAgD2wSyw45F0b84PHHr9MntvYJ5RbJ/aYqHgat1FwZUNvp7gHRYWEdQdKWAk3BXvt+UM7KvelB0oPlB4oxgMT9VjeAxS9FXMTv56vPeFDDz8IAW2cspLpixdos/XWGIsNm9XiaOeL5eBHspWl9MDAPbBLLDii3zz2OfHs8fCuLDpSJxN3kDUpjP+9Gl64M21QYqUHSg+UHijAA3Gkc5N+IBIcEAVzkbfeUJq/c2z8zJSzAJEljAgJQ85qfusSLz0wWA/M+gVH/Ngf/GW9Hp8Lt+av/jmkwUHcBmclnnMRqGUpPVB6oPRAoR6QVYVe2ZDVgS06bA5Cn/xcZP1z+eEWJBl+tk0WLNl6d6WjUFtK4aUHWnhgVi844t+883T5sPD3/BQAH/i4fFvFDW77WqwNVqMJfke4zydvbuG3klx6oPRA6YH+eUDWF7z6Sgjh7RYQ4PH5iRNm24O/LKUHpssDs/ZbKvGj71glnxX+I4qj1EZ+VAD0ced9DlLAOIi+MF1BKfstPVB6YNfzgLtmwactxAG4HYIrHQZ9HDRsfhvDcaUkLfhQhQJIPK0tsdIDg/VAejIebL+F9hY/+d7lcRxeHkX1pRh8HGxYRigO6AYrIQcpoFwFqVeqI5cUqmQpvPRA6YHSA4kHbE7CIbC0ELcFhtFJw9xmuH5I8hYnkGKbzoCC68yWii2x0gPT4IFZd0sFry2v/+bar8lgOxj+bBi8GIMcf6jDg1T45wNVimuj74d7fvoxwcrSgwfih9940EQU/lleU/mcJS9/CQNAFOKARRR8vsOq2j7npThX2j3rE8by6H+4Qz447qxUgh0y4T8hv/b368pI8Os54fyHy68eFhHNXVAmhok3ZyV4h8MFCxF7ds3GmwnbBf1YmjwUHph1C47oNz/8R3l3xmnwbu5YFWIyVjkGCW1kBtVK9aKhiM4MVaIWB/vIQu8deerb3MlLwRKjzHM0CEXD/CoxsUkziVqDWNYBorAtubP3sPP5PX2kYSiyYiegiZ/6JD3JzTcwY2IP6kFcC4PxeFsw/uCbHpeF7K2ShLdVK+F/VaPFPwr3+5cnG5QvD0oP0AO6IraPR0i9dErKyX+Xm2iKFv7XaN1nKMlhE4z819wELEvpgWn2wKxacNQeeft5UVR7j/68vDhWx5gMPH+sNQw7DEoQ3ODEya8ShhuCffb57jTHZeZ37xYAGRc32WXzoUyaLjCMD6Gd8DFnWpAYLtarQFfXJFwI2t7BpN7jt/7THMntT/iT/og7GWqf4C6FbLGCjuJoTyGeJvTT5FtSQT3cUh974I03i6Dvz60El4RP/8q6RJ8SKT2AS26SLMwzwtx8FFbWq+NcLuY5MTf/8xhLWumBAXhg1iw44kfeeWI9qH/GX+0nZwF3NsAgBcrBqrjsXLW6Wz5oXCLv3hgfgO/LLsQDmBAREYNwSWOU9EhY0phlPtGhrfxxkWnS/JhaLSnMD/Ij+CobDbUIopc3SGjUh32lSwxKZvtGflLFzKpwniD9nTBWDy4ce+Dcm8KwctGcfatfDsOLy3e90FG7KIwj3NxDzjXmjx4JGRAlm3/ZfPYl+C2yWWp15b70wGA9wFvZg+21z73FG37/aVFY+5YMxnkNA4srf0DZ9KTmoL/yx2DmgB4JRi7us3q7pDhMjPiz5YBB4IgDIXAthDggDigb/ggVBwtorUqmvbKRJgdsC6h/rg/kAxc9hGgLHkIfV6LsmDfMIfAABzQ8hbRbfRLHJ8pDzZ8de3Di/rEHz/3zeP1bl1BmCXdhDzBXAV1uEiKTUAhzvZRpbw388YK3jpal9MD0eGDGLzji+H0Lajvib0dRvLcORR1wGGCy6XV6B5Nr9jxFpAPXTgloE94ePvUzt0xPKGZnrzx5Jyd0cb/S3BlaoyE7d6gIaQ1n8xbuwW0wFP32keISTQc1B6xW9z3tMhO46iY06qtZg/7dhj6As7S3P95beP7PxLaxdeMPveE8wbULti/hruEB5hMSSxMgIYj9Ssj3Q+H5n99tSS090JMHZvyCo/7o5s/LGeZYWN80ucuJR2k4AelJCEx2gsrjr5Tv3oBbBlqyMcOxv8mBi6Gcxj2cPFCWMlRxf2HpP6AhbdG+adOn7IQO6OPk9WUIrn05SB182KSPKtV6R93lfTF7RvX4op0PnnvD2P2vX9W6RVkzGz0gjx5rbvm5pLnh5Txy16cxdwjVL8hXFEBsyGNC4OUFDvNPuZ8WD8zoZzgmHnnrB+Iofr0MIy0YajIkGz4QuOGn9awDRPH55WnuWmVk7r9rRbnrgwfMx00+F7LSGDT0hInQFcaLEEHSJ+4dgXRChFLnWIqgLELI9XF21ClkW8K28hJFtIeu7Y/jk8Tmn8szHu+ct/8lZT52GqdZwse8Jpz2/J9mv8oPb86dePjeI+WL7cfJkuy4MIqPkxl+N3m4/6Nz97vkE9OsXtl9lx6YsQuO2iPnv1Im878zeznJY5gCt+GKlT+/Fgk+4vpVMRCkJAM7Dr4b7v2Zx41a7qfqAX7q0ofaEAfGROLDB93QB/FW9RpOMDLEwLPFq2snrzFDbC2iNCdD20+ib7brqcrL01ceWl0s32u5ZOcDb3juvP2e+cdheGF6WS6rQHk8qzxgC1R9ysfsYm4T5lnr1eXlE2nWNJnx8iRNKw3vUBp/5LLDwnrluCiMj5c55LixB+46UsybS8XMVHgpWEZaCWeOB2bkgiP+zfmH1iaiS+TUJbeEkIJuEOklcRxaWloYUtzud+KyOOfv9HQRVoOLjb/c98MDnNZs0YcTu8XBru5iIWi9NF0BEDJpnejB6HtRds1SiuVIvjTqSZjVF6mlujsGAPZJiWyLY+KEWXld2R9HF4w/ePfKOH7Hm8PwsxPsr4Sz0wPMe8JOrGQuptlOjBBSfLwTqcXzyJWLyvgDdz8zrITHy92k4+phdNzYg986WlRdEMn7bDCFcwwRFq9V2UPRHphxC45407t2m9i6/TvimKXpQLIB5c5p3hV0d889Sd2sO62dnATWV58y58psbXncuwe4wMDKwk7Y3rSRg5JkJ2jGLad/O2PLbORaSNBj0oSd32jlo5f8dAeIgogDs8gDEcxrn70KppO/1AOiaI6JAOZa0tbTJ6GhAdqyDxyjONV9lKSs/XL8e2MPbFkon/5eE4bn1LV9uZuVHtC8lFxhDuYayVz18q2b/J+uRzh2PvSWA8OgJrdEouPltTTHyWLjGBlTS+SWuJrJz4jZ/G/ygbPfv0rdxFMShtYDM2rBgUtuEw999+syIg+CR/VkILM3TwbZkws4rPBkYZ+s9QQgFRzYMtC/Un6CdK7qC5BpLT2DGu7O0I0RyelM2ml8kvYIlGyuIdGkWhClJYRG/uzr67M5ArHaXmBPhSsPQhUmUhN9HD4F+yW/zxy7/5v/LPpd0JOOZaPh94DkB/OeUJXOJChzNUkvQZSWEKSVEszkbP4PYsKXH85cOD6++WVRGB4X1oPj5LcFjotrO3eDKSy8xszjBIrundif8JfIjPLAIPKvbw6pP/Ldj8kq4ZTk7KODUXbM5MwtFczx/EBAJTSZeeDgSDjn4gypPJyqB5KYiCDgLSbEpm7YjhCNedkCopSOyZktudx0BAY8+QTo+nbV+DYAlDEIGbgCYTQcEfdvu7EN6pPJvJU91IsQfMBb8UOmX9iO0NkvVv7hzvted9f8A75WPijn+2u24Yw7YZ/zvxYWf41jorbtMHmP2TeR+Dp00+GVjoXEvkwASSdsYX8QcUBl2peHQ+2BGfO12PGH3vzWehS/GycCLBq4cCCEl4m3quc5CNDOSxGucvwyfPrnVg91lGagclgG4E+CkkDgWgjlQHkcNNzxoy02DZqDPs56E6h7Q70+0I+e8B3kHEWYtmqJNenXZI/IVnvQb6q7YVanMsCjfGADr5Um+Z4MyGu0P/jo2MPnHsG2JZw9HojwtVjEe9L4azKnOaH88EGaT0luMd/y8r9wt9WcFaKX6NG//Pftb3mNpHDryg5698CMWHBM/Pr858oPav0LzGw8V3Cg2UA1N5CGcWk4IDYsRAi5OJGnky7q3X1lyzwP4DMU4uSmhwRaNGxatUlS4qECDOby64QlTG4C1biB5jY0T2Kpshp3eGU0ir46Wl8f7XDQrCaBoJh2BrE3nVL90MR01saurcmCPN8GH0ddXn8mK5Xvy1B+z36xc259fOJieeBuRl2ZNE+V+8k8gIk4N1+8+GMMTDX/J9Ohn3WwJdceN8I4YrrJf9/+crnRz2gNTtbQLzjiX5//9Hhi4luRTLZ6QpBBx2RFAioOqDgOdZpWD/JEBJi3SbKPzwmD/1Dmctc3D/hnQ5tQbPLRCUhiQagxwQSE+Lg/rRMc0MeTernKARzP3yTP4IDmYgwjgLOAB4X8yBejudzR2pRfDyfZUTb7Ux2dTdaT6U0RPs3nZXu1qyv7g2N2PHjHeyi/hLPDAziBal57UPMF+epozHvC3vJ/sP7qf/7b+B/6E9dg3TxjehvquMUPv2/BRG3i23I62CvXo9lslsGpoxNQN7TyTybErV72V4RP+9KGXNklsWcP1OQSR3JCdQsBHkMo8NaFdRYjC5/gyaHheqJ2sQWeFuLWwPoSDqeHTt6CA/o46yFK21hzE0uROMrknPIKje3bQYjQNkByCztzCuih7JJDQerBX8aPn704t3lJnOEe0ICLDUnADU8OBdF/GwEwtpv8B3/hRb7A3WocoO8p57/YX17hKDyKhXQw1AuOiejxi+TKxjE6wjCs9ESVnjyyyctEbpXs/gnG4RcV4tVSqJ2Yxcl6gcFB4NkNk6fyCNSJFDHGv1sgZGOMuKEAGm6LhzRHUIscgQyTTYh+iLNeuYWPRXWRA+qJZ4asHZ4dElzqCPP6N6XQMYSYHELK9GFv9se7j28P/5g6l3CWeEBzFjvkGOc7w2mh5VySXkLuLv8pp3BYaP4H8sWXssxEDwxt3MYeOvev5Cvar8OAkvGnG3IYuMvlZOK3B0ndvXr9xoGFonlwWltX+9i8/Q66yvBy33cPuDO6LgLd5MlJ1IcaX/C6KPN2R6tbICpPeCkDehuNFkAWisls5udEnvZJXsBm/kb57AvQx61PdOv6BySPg2zjQ79P4J3aX69H7ymf5Ui8PgsQu6nSafyZQzCceWhOcPnXMv8H5KqC8x8P2ZZl5nlgKBcctYfeeKY8JCqvLc+u3u0k0fFg46ATmP2Th0W/LK+MLv47YjMvJ6ZVY06erWM8repJ540TumlD2tR168L+PcfuX3P61HssJQyTB7qI/zCp3TdddnX7++bIIRU0dAuOsQffclg9ir4it1L0AgUWCmkhDujjKUcDhlU2ilttN8Bg5ItWWe6L8ECrBUO7CaW5nlcSGPMshPbMBYTa8LT/ydsbv/H4uMnM9sV+CJs919x/qpNq2qRfu/rW+ssYOa9Zg5Iykz3QnD+t4285CmvTfGzffjDegR6+LuzVp/l463rKyY5FtijhTPLAUC044offtiKOJy6XRFyCMYRbJYSKi2cJ4WQ/YRVnkmNSx4YlC6F3f0W+3/Czeft9cQ1klKUID9S82152lQrxwWbPQxgELgFSGqCP8zkHcBgfsObSlAPCQlozd/cUpA8KoI8bVWsc6vTXI7PZ0s/wIuwXv7w8jt89L9WlxGa2B9KxMCz536s/kftF53+vupXtps8D/jcYp08L6Rn3o8cevPtSQQ7gkxZ6PpI6QijYiGOSt5dVo86ODOJYCR60AYAHjsKLQS5LgR5wgdJXoQjuXomiHfoxtEWIfa21F200+ljIMDM0yCKJnaAOs7dbLWRzBHXUAf0TB0RpV69M3i7LX6T9ouP8nQ/85kTp/jpPhRKdgR6I8JsiLue6Ub/b/A+C4u8i41cGMeRQisp/ueVuHZT7GeWBoVlwjD14z8fl5Uwv1kz1HvxMVw2WxHZCMB8Tb3VyyEYCfJUwHJtTCb6arSuP++0BmxCw5xpAe+A84aDWSVzc/NS0aGRb1ifChCAn97rE9F91cvMnoITZdQ6pjsYqQsyIirsVEfGkXtpCvkxwc+VHslbIBL+b4PuKxAPzPdZoII4gi9QEcQSt69F+7T+WMVMuONQVM3mHS81IiWy+MHcAtWQJyB1LIq3GMPAOHZ6OLydlAMASPGtP3/J/qK7ND8Cds6SLoVhw7Hjg9b8fx/ULbOZ3IwYObsrWyb0uF+2VgbCpvYxEuUnz7XC/f39yckll7VQ94J//fbw5qE0zqHRNmnFDF4ushxhhYuGB35qWHzSL7z977x1x/WR51Oj8MIjk1oZO+8mHVN9mH++z/dJf+Bz4pyyzxQONkx7znjAZCAlB7PZwveIhBF7xw1xIGjxEetHe8nPex/uV/2H5WypFh7AQ+dO+4Jh48PUny0Oin9Ixg8zEvJ1kKHGcgGSxoO9BkOndXQEBVR6c09OTMigGScZvNG8P3rBysUcp0cI84GZBhsMdWojkwIWIi0NCqOPjWfU4eQIOavLM6oDj8BmXPibgG9jG1r3u8CisfVqutjwvO8HryQC2FmC/SIUfn6mw3M1oD/hf8+w0/2FwNt/YlhB5x1+MHZSD5khHE0x45H0B+T8oW8p++uuBab0wFT/65n0narVvykQ9N1lkJIsNGMpZGpALC4NcUhAqt2uLWyfYdDg6qLLC8NF5+7/6GvCWpWAPmPvTyQaBYrAI81RoDLmETQgqCxDTaAqTSTVPzgBp8w762q/mH3AEbm18QtWznekNW6F/QfZLnu8Xx2fLa//LMis8gFxBAdRNdglszn+d64RBoRsrwJP2efmnHRS3m5DlxqT992H8F6d9KblID0zbgiN+9B0Lx8Z2fkeM25MG6kCRAw6eLAQfeXycfPqWfRlsgNhQCPUgir4UhufUFS93xXqAJ1hMfjrpYRK0iZGQcfMheDXGbA8tgQ95wTtdFh70rT+W50q+1qB/8fZXxu6L9hty95TqtfMAvpDncoUwyftJ8h8PKaMAYsOShBC4jjUHgQ+scPwWn/8DM6nsaOoemLZbKmM7N10st0OebXdQ0oGgg83ZZXUYTEawwSRjCAPIFR8njRBfodXB527ByAOjF7OuhAV7gJMbYsdJR9C8p9Z9TRB/a5LG2J8o8XQ6aob1KfUFixe9bcfW0ZPEjqepXQXbD1/Uw2CZ78OZiss31So7fr36KSPj8cpaVF1UqdQX1aPKokoYLZKoy53UyrZKpbItrkTbqlF129xKsN7d2pqpJjfozbwnTCo5loSQzX8dC0LnaGFbQJRs/QC+pOI6dhqZQqK4kfs1/stfUzF/zrT9tCw4xu4754PyyxRn5wyHBv9xnBGikgMrYfQI5CNUfncgC4+b5h9w6d1JuxIp1APJQpDxSeYf+RQmMeHzF+ADTn7irNeJCm3dhKVt8UlO40rhhZrSlfBw7y9v237vWR+V0+PHtSFVLMR+U60S1WfUD7lJ7MLxB1+zKqoFJ8s8cKRYcYDE/8Dt627ZXwI9b1xzIg7quBYZ1oMIb7FG/MMoqEd1OemGwURcDyaEvm3dq7ZLBt0nGXGfpMS91aB6SzCneuOC/S+9X1rMoIIRkI6FzvLfzGOK2ZGe4QW1AaMf1oSBH9oG5RCOZzHJioM6vvsw/pESZZl5Hhj4gmPs/nPOiuL6h/R8If6yEwcd1zhYSE0hspY8oBK3wdW8gPHrw4tSOSVWrAcmJDIWk8YFgkQIH3Hwn3wN1RYbCb836UJHx65QdUYKqAA9GsrdgiVzPr9jc+0jMunOKdp+nEiiOBz6BceO+16zX1yPXytxf/62ta8+WQK6EsHTE5CLOY79k67WW7pMFv+FMokcLoIOR8bV5S+cqAfb1r7qUfni0I3ybYYfLawE3woPuuxxyBveYiOgW/sRf8ylXFBYe/Oj2srFGs/QHd5E37b2LDyPdHpWftZ/GI7wuw5LxWU8R/V5yXjG4kKEcJ7v1/iX/v5k2z1nnZ/VL6uPKtaooCkLmuqbHoqm/2/RwZd9ymo63+9Yd9YH5TUq56FFUz5n7E+clfTfZv4TmbQJ8hlrQJR+2g957eSDxy/UzamTb381+OeFB377n9BuoAuOsYded3h9vP5l1crXOsGptsF845HA1sAmczjJ+M35ab15TwfEjvlx/PWkmxIp3AOY+FA0JoI3xsybgBwf+cGob5N1DRozAgJtAOrAdXmgHQ3RLtzz0tFt6866WfLyxELtF5t1DFT1GsAQecBUGZWvDlfqE2dLDF8vJ6HfERjKlR8JcZ/i7+y3nHGZQtlh+BRxzjlygjtnexB+cnTtWf8ZVsKvLqzE3wqf8e1NQ+csGQfMe0LoOGn+T26/mcgxQmjUTvZ7ie/kypMUjjngOZOyzr/JeG3UuLD8D4LdRL/d2LdC1dXlltNH5wmlY+dKxhfUuBIGu5GlG1iP4t2lnwPQhvMYIdSQq3iTzH/WE3Xoav5Dfy4e/bBf9Xe+sR8WcfnXQ/x9++WJhhVm5QAXHPEjb165c2z75TLlLOYoglJcEUIhTkSAVhAG4AwH8U7rnZggviw88BubeVTCAXjALQIZOUL0nAyOTtTITnCdtBkCHrH3Z2LoibSbEKr12/5KUNkyBCYnKoze9+qjglr0l2Ft/Gx5TquqNie1/bdfHOpJz6BSJ7VV4TlV7sKcKvdfPiW3YS6uzhn5yPz9vnlfhnv4DjvJ/zb269mOPGGnbxqVSyLiuOycDE9zFlZnUS5hxoOMDCGq+53/7eLfaD8UkM2dQlRtwQEjd9UVOnZdZoH9tNmPVT/in57P8ZbvARS8tnzHztFL5amvZ2D1jinAFhuIPRYdLonxkKfgyuMe9NTVvtORiQqIzXj99ilNebC2NL6LBmBm2UWeBxAkFAY5C1mnTBZ7oK1yQOWwDWW7tsME5OE+u4RPHbN285i2OOWZ753aj/FTCYdjwbHj3lefvG3tmVcGtfqtEsHfk7FXbYoX7Sbsg/3oA37AnyROAoFr/4TgiwK52Bn/QX28ds/oPWf++9h9r8UzJENTeol/N/Z3ZSj85XwH6OPqV8QQhdCOGvesA8zbwE0eQQu3H2dT9AeIDYXQjrrfT3YWpW15tvt1rtdpt9/XSXA/5j6exBJ6s02e5zJ1A7mlsuO+1bh/8yJE1r+iwTgTQl+dNBLFWUMI7YGbFeaA9PIsyBgfqQO0t4fnHXDkfwbBNxOpJTIID1jMONdrXHK61QhJJSCKroalKVfFiDFX2VovdRpiE69thnMXy9tsMUlbOhZpfxTWp/UKx7aHznxKPBZ8rFavndM4Qm08Kq1FvPoS/1bOlcTQ/JHc0rmCiSK6SGRw5eX1ovPrtq494zOLR6p/NQy3WnrK/y7sryVXj+mMfKiPfIhcxs5Gp/DqtXY40CiYr/EQL+dt5Rc28kM1pQ1Z/Gm15h9sSDRmTRdQLwaZgTPd/ux4YewYz57i7105mmxt1oXHW7PKvex3iBF/iISEMQlEJuLfQeBaCPNEuqse+Jiim3pDcEDFPQg5wiep9EV5R4KOnzyRJa1YDzBRGaIsRD5Y6Cw3JCGEoomB5LBpwEHjS0M9WaoUa1V76TKvLwQXdEbJ2s3jqdoPOfNrizZqJwPeyQvHqqNrz3hvtCO4S8bxOXndD8J+5AH9KUnjfK4TgFMpzZSsPvKJsiLz4R9uq0V37Vh75hvzbBgELdY7/aJnl/kPe7qxf6qfMHW+Rp/QUzYUQj3I7LL+ZpwI+5H/3dif1QfeM5rZklG/w8PWp5dsf7SbcLjspw8Im81nrLuNPyUVuuCQJ9OfL6vfT7IzLq4BsamzHQSeHWzgAE0hcC2E7tAHXEkBygbO6rzqF32WEh+MB1olZDZhJfw6YQH6ONtnIXLBZCC6k+TCYMxs2YvcPlzp20pGnwbct9nHUZe3Ze2XNr8OD75k4Fc4tq99zdO2rxu7UULwsTCMl0D3PP1hN232cdrmt/Fx1mdh1n7I9POAfbGdL1NxUZgQM4TyAUbRXrUo+rIsoC6P7z9ruckd3B46+bpS/yycqv2dPsFBy+EjFPWV7P15W+dxqUsg+LycBo5C6OO0y7fZx1mfhVO1H3ZoP7QI4wx/0HUKz15DZp7+vs0+Trv8Nj7O+iws0n71gShJqPqKbwjVd6IkYRJ3oUH3PP3R1ndrYQsOfA0uqsffkN8ImCMWwAozxEEY5SuouJhCCKPU2YSQIaXBGe6KB+576b0v7QZXP8AoD6iEwQ3zn37pOm1Y7qbFA4yXxjInhk1KIQFQAGVDUhMqjkPyCD6sJY7CQ6Fb0faLS28ftA+2rjvjxVEw8UuxTb554sYlxqmHU6fi7Xf9iyP8vti/TQY4sknBUsfmGaYRobaJ4zNGJ+o364OvqZDBYVQGULZ2+e/b7OOpwuYf2t/pFY6K+As3SvBPqC6EYIpU1A4s+inO/n2dfJz1TbBg+038JPFvUqgzwmyxX2MtJgMy7oRJ3HuIP71YyIIjfuxNi6J69B25TLgHAtwyGM4C1pMX0BIjhaYwLQX0cVebWYDI9/AvtppyP1APTMjnqFZB9AMruC4UHbRFo2QD4ojFiZ5ERHMHQSLO+oHa1WFnMrHKLeH4eblJ3G/7w3CgC47Re854v1w8vFq+3rqHnkA0NhYrjQnsQ6AAfVvpO58meF/ir4lhHXAxCohNVXEQOHROIRLKaNba4XF8YFCbuElsfQPpRUP4gXlPCEWhK6GPa4USrJ76tbO/0ysc+IFMja/6Lo2nT5uN8acfu4aIBTbxVwKBoxD6OGiyDWX+i2o2Tswextz0TWkdx99bZXgovDH1IkqE27du/aIMlaPgeFHPApAzODQwXr1vgI8rnycLMimXUHm8GUa+c7994dLdLoX4skynBzRCooCLmuaB4IB5OdFWVY5eN2Lb8g+eYdu6M0+VXt13z4u2P75lUBbKw5V/LxPkR+T2gzxw6eKpndPGPE1Y5/j7Hn/IRS6YfJ03BAf0cdabhtTJNQXRTyfBpe0CuRj8lW33vOId1mZY9lAUhQr3Yr9J6Gjvj1E/drMx/j2fDb18anIq6wBl833o+7apXStCP+JPnaSPrDh0SxpwX0df967jD2EFfC12+7pX/Y1MSq9tUNT6EuXdwzX6CdbDWU9DAX2c9WokDlzwlO45r8E5wTfCPb6wNWlaIoP1AGLhx8P17pagEkH7A5m0fAUZX4s5Hq6zFngg2OVQfsPpo8bx/1DbC7ZfrqLUFy2Yf9UgDB295xUfkZuxH2CsWsbPt9nHnZJt2zcZ0z7+k+WBLTqQitKz04dQu/J19HGplEM8DfaZrXe/8o+a1BoYof/2T0X1tvHzfejjrtO27ZuU67/9LePf43RCDVV132Yfnwn25+ibDUfb+PkyiHsPcfS8pssqguPt9575GgF/C6VMsRSmpxXWmAQ/WEwEQMNTqO3VAKMpD3oBb9Jf2os8en6x9VDup9MDFkdM3hYrrCOBp2tKwxE526CtnxU4Tgu/vgZIPK2dfmzb2jPeJva9kJoUbP8N4dMvLfwbKlvufsVHxY73Iy7mc4P0PyFt9mHB9ktXqU5p3rTOH1+3PDyrrxzLK1WiTxS/6Og1//trf+ITOfmaL2zcmm/TvhBzxp0waeshWX/2f/ynOvUj/p7qHaP8bJzXYKbZn9UXPmUeALdYG2TcCSezn3WdPkNE/pZw9L4zj4xr8ZfkzYLyVfI0BCkmTbFg4G0PHFr28SvdYoyapxAdYQgaDUcp3iDTqnSP+2H2Pfb4gfkHXn5depnEYyrRgXiAiWvhlgT1gubjWWXQjm2ydTi2OoN59dNJ27H2jBfUorr+FgNSHYW2+Db7uHGl++7sD7+dtiwG23L3K98eBtGf0h4blejLDMzGIzPEC7ZftMjNF+d80TLr/3z+1HfN/My1+OOjd52+bvGqK3+Qcvcf60w/6tS9/fi1mY6KfBTF5Z1sPBl3wtkU/17fNKoX7uEsKVl/ZfMJPKC1KkXHvzP56XydtYdxJ+wk/r6tfbnCET/6+t3ljbnfkcXGIpzwYZRubnUkR/qHjoGlhTigtSFEe0SPEDjqEpjHDw600XdvuAxIOyuxAXlgQvpBIloypgsIjY2LaSvcbwMcMSfU+KsNyIXhKqP3nP4eeYnUNaLVPNgGnX1bWtmbpfttaDehb7/QxoKRyleL9MKOe05/fiWIdAEFHagHIfSB/oS0mxB8xAE72fw27IfQt59288MNoOHwPRKHeoETfUMXxsQg5RLmy2dPcTWuBF/ded+ZzyKlnzCSy86+r6AT9SLM1w+2grcz+7vV2fpu7S/obP61+IKfdvh4J7FnO0Lre/Lxb7Hu3H7TqZU93XqH/BY76k048+xHLFEIzU+gwJa8eMDWdvFHe5YpX+GI43fMGV376Dcky/aHRrjK4DRD5hmuSqFLzUaDOFQ6aSBISW0VMbZ4YVI1idOJRNqzkfCjRXVu/EWVVe6mzQOWiAh/NoZ2QmB9VkHSCVGfh/u0rIxBHcuLr+Zuu3v7OfJR8M+jKD5C+3W5Tv0KtP+LSw64/LdF2brj3jP2rdXq3xQ75vh9tLOHdhO24/dlA2c7Qp/m43496H5prOOEYpBTESHa+fzECX25Ms0sm5ioXR6vPff4ot59wn4Ju9LPKeu3TeZGzpHJ9eMGy5oP5Ef28Jct7eLJvgnb8Wflsx0h6vNwn9ZKhtFpQ2fxz8rq5DisyJeII7tyRL0IZ5r91Jswa387e9iOEPzy8HUiZsoLDlls/LMsMl4AiXoJTpK04dqCP7KTBGbwbfXqKwfclEwTjfUG7QSm/enJzN1GAQF9heH1C/a/4n4clmU6PcAYQwf7hEltGE87Bp+3aExw0NIaO4KklCb34iryfMHzlLHFDmdLXHHhWZM4YDelEtTnxpVwtyCurJCHJ/eVtieN3rPtBLFsQZLWKrBBQ03JfttfCcNoZKTy0W7075ZXFhuflzjtnvF41/bY8C8o/h0YxczKzZ8O2ufY/8zRaCN8X8C3V/zc6SD/O9A/a38HTTIsvk7iDRx2MZ675U9HdzH2N1qTMbXHQ/nWlteysYeZb//U7IH9uuZwHprSgmPb2le8Sz7Z/QEHM2T6eM5g1c4tCKZB48nHadUjUFmVcK3odaaKkKWn5EJVf66yA5lYo4KXdzmJd9q+XRe+fFmkPb5k4cI1g3jor51exdS7TGDGMeggM4e14wwhwy9PBOkspxBNXT2g/M2Va1o/Bs5Faiocnchiw/WlEAQRRxoOmwp1s+Y2WkR+BD00MbBzOkOXpuLqOBLA42xQ1kx1IqsFf579ssT+4vwDv7u2qes+EbbcffrvyyR6iukrCtMGJWQdlO00YyDb0leZ6l7shz81D6Tr7CeubPy1W2eC2WPm0N1Z7ZPcZGgZO0AtWDyFb5dv7Xx98TO/d21T+ykRnKLsU2TlxX8q9tOK9mrKSVRD7emkjWZz/Dv3TqP//AUHZNBHQAX34smpI82/yfn7HX/0yzHRaIM7ouqAKNTdy/90zBpL476FPY6p5wWHfCf/BVG99k/UK+3UpxAn5EQBpZptsRMHHEJ+QBoAfrRPr2gQBzR5Ul+vv11ODm/HcSy/Rw0/1SguSQQjZCcrdFsXfnZPHNDk2Ykt1c/o6Z66ugaZ/mBLLaEFwej2bcHWu1/x9cqC6vsW7Xv5o6mc2YA5p6srBG/lEvUH7PX4EQDyg04ZwmV5b1fGtJXwgsaYEDc+NACXFEJ0A9x1l+CsB29DIaNBVU0u4TFHrD/qhYaN/Nav0Cgf1X7/efyT2F+phOsXL5r3Zw0q9vFg+92vfGotqHlXTxrtmW77La7TH/96VP+3+PGzjwj3vHS0b+5n3AlVMHPH4jBl+zt981di1K4e/8QRHSKN/ur3+J9y/KGeP/8Q5/zUZGWjPb2N/1RoTw+N7rj/rP2DqP4NUYVXqp1EXzlOCgYbHQU+TNop9HGbtH1ZqcKTYTzpAPYmz++zUYYvu7UOje19m32c9pme0Tn17RM/ie89e1lruTOtRpZVjIEHcZbGH6HiSoHfuMFW+hGshreSp7zK02F7GVgqEwPMwylfNXR6mn7oIdVHlrRQUJpKXqNGeAkTGWjvNkGsP4GKoz1o7s+kQyY3SAduBXJQKE/WOu8Ln3bZBqvt/34invhHeYvoslQ/05A9Tbf96jvnS+DqK8LEb63958fcx+lftVvk8Q92A2dJ7Jdn1rZt2PpXpE8d4kMT+yEUitpmUHHoBho3tFEetGE7QmsH3Whf0OFHTJNmcnLtl76Y94Tsw4fQzddXZYHm/qCz0mTfkf4ZedqmG/u9MZ+Nf8OPfsBpXRTfZh+fSfar3ohGQ3wsQnRFkv/Cx7gT+nYTh/14IJql6wUHXlteGxu/XAS6+7sQxWRphOhU1YUBHp7ysy2gFOVx0Me1EtWmOKCPu2o0JKfhrk+V2w95Kp194IC42WnHKe7b7OMpXyJj/9Hatn9Q8bNk587nelIHjsGNjbg7VA8CT7wmcVIcUDatc9BvS3kQbUIV0zbA0FbbSyNCLPqIJ/WOF7LzNuX35IEJtIRZ6vz+IQOFsoAozRGIu8Pu7A+DLyxe9f1LrIf+70fvfuVRMiHoT8wn+nkxoN2Eid1qlOlDlO37aj+6EMHaR9KB0ax3Fxs5gI7Y/Jj7eFLveCkuC1WGJw+dg6YwDP5YXgewF/ueKkzy3usP+lAH4FO1Xy6xdlToB/YNmNjt7LdAmE4Uqjo6Up6+Pg04bCYchP1qj3RIe7Rv5AkNmCKkHEDFZUcIhDggtmGynzr5UP0FPacQf3+R4eMidvIinYajm5/4sqxZ5Il8uAqF0I6627MtoI9Tik/zcav3Fx0+ztYWXTmiB9EHcO0rT57REueCE4MrKcQBfTxh6BLxZUQv7rLxULPTQ+pL0ZQ+lWnLcED5QzgINUyyS6AgWuegthDBCVT3yZGDqEFbQuDol9BiCf5EO+UGPwtko2gfHs76hJUiQNAmRlBUCHZk/SsufaoPUAfc/aluggPqJrsECgI+vToWxj9Z8qyl70r0KACJ4trf4T06EE39iCfdmYFms+KyI9RWaQuQzVYHaTchbAOPg4ndQoPNukBAneDUR5oaDuj6JUQNZBACR/+EwFFHCNwKodYqif3hAHhSiAoUOQvj8Z0fSOqmiEBPtZtQCOi7v/Z3tuLoxH5zCxwBw7GjpwwqRXyeQMXlmFBqNDYODsZ+65/6QnNngKE972eH/RYti6SPJ26BmShmriFKa21/en0j6PQCm3YRyLsGLpRkebUdSZ+SOHwOgjQfWjLZBAo6VCINx8QBtejIEi5AFJFvow0tc9oLH3UwBtNH2+XxS49wIr48i0KcjlV90KXWYqdfs1WYkDyEfQPmFZUnFZQHLtLAT9zBfUCbLaWVzVn76HtCTRIwOZeqb5BnrqHFzGKXykr9TzmEJiqtt4i2zoFm/jTvtC6b86KYxt8pqPoKY6pvGme0zxbqSUi7CVVOHKwJ5yx6TRheOp5t36/jzfecfkJcr50BeYkugjfZMwD7ZU65TZT4mSx9HpdPRL+Vr709XonDqiizRxQGe1biYC+ZxE4Sv68y+9P4UnfCZnsmnwOa+dvFP3zn9nWnfXThQVc/bLr0vledaYqD6v8+5n+XU/60xF89WJD9k41/nhe6jqC78o52TePFo+XJZZ4SctwT9jv+k9lP/RJdPN2hB0rTOU8q2s1/Fe97qx3e0QuCrXee/to4rn3QPgBZNqjy4mwGClQ6XLXjgdNWvy4rOL8228QvA0uLg9rcG2xW6e8dP6NjjT2Gxh7oSEJz/iT6Z/RJpx7rt5/2i6yB/QiX56DCUF5xwoJR8RaLyGRB2aLelhqIGJMICS5qu8MmA1AJWYwdcSefsScEH994q7La8UM08s3v38Npax/tvzWszj11yUGXPdFkax8JYX3C3iY6TfbLF8puFDdeUh2Jv7fwoKs6OnnvvOcVB0zEtdPlm3LniSuOVXcMOP4y2c6r1cI/kr7/Qvuf6i6jf7/zXx6h70jDyrzqH4/U6+7qjZfgSeL7tFTk+ER8thz9Qx/zX8RhxLn+BMBF8vD0x+eMBPpSurT3TjFfd+JhMG9Otbdno0aq/2teGH0i7Z0yQSFOmHINCpOYnCQuuxj9cd4jLHr+kx9R/fXI3MpFtLWjBcfo3S89qh7VvmhRF9VdodKEIKe1lhhKIzELJQZIniQmYPYK6xSCnuEnnVCbsg9ln/zTDPUmtAUIUtuSA3TSVHamA7YjRLXXvdkGGolZ6NsTB9eo+Nm2o/GEsM/Hs/aa61vmhHpYFw/OmQBoQ99C3mTyUd9NgSyehNGOuOoAQq4CqLBCXQhB9XHHloAG+8Nrls5feE74jG9vSuoLQLaue/We8fjoWbmii7Y/DO6vBJU/W7Lqqm/m9j8Jcf4zv3efVH9STvqf2nLPy94YRtGHJRpPndS/k8jLrerI/uA8eQncB/tyBaoh/nkauXxkwuemH4hTK4ufceVjvUjYctdpv23wP3OdEEJ9PNtJ5/ZvmH/Q1euyzafjeMnB318v/WIbuhLff9by8Yntf9KzYh3lf9MErN3JFLkhrMw5dcEB33uQ/bd9hmPr2pfvUY+C70iDRUmiQAkmDaEw+Lni4+zMJmccYUBwUBCmXAnmC/HxhCGDUBenn66yBQfkiptQWzbxm124RKSXiYSJMI+/gSYHvoo+rnzG7NCM/TLpLlm89GMp3yzGfMcIrv51kH73oTAYD2Ll4eSBp1QGXZaRjza2IGF7uRivcvJzgvmR5IzqJm0gF1uTPMptkTPUizCjn+qufVh7s0WvI3546arnvqzoxQbUqo+Pni9W6DfOBmm/vKDxn5ZWq4csOaT7xQbdCSi3YOJlz7rqy0uWzX+m4F/UOvgZW1O8+h9/+VbPnpvvfjJ/wabKtN/JVRpRtXmzXLUc83HyQrLljOsDNqO0sN8qi9036JPtKqOf8gqN9mShb7OPSxTL0sYD8aNnLNy6c/uVklVHwnfmv/7nP+PCuFtMw63VcM7Lljzze3f6ak664MBry6OJ+jflva37qcJIFg5glyRI7CRJZBGhOKCPu4FE3laDQRX1Bh36Ig249GT9Azr5hMrn6ZT0AZ25QQZwQMW1gdAEygadCRUXHkLjd22dPL9P4PpHiCPigLKhb0LqEcpbcQW/QF4AtkOkz7oCn6Cob3J8AlfCJ86lTRBtUcfCq0+APs569a8cAPo469tB9kV9oL7SYIaZksJ2wrRJ9/bLPZ4nlyyc+5EwvLDweVV8hMx/O00ZlP0SnP+1ZNU17w0P/v4Y+54qDJ9yxXa5UnJ+UAk/PfD4R+GU3jyKiZg550P4hDEx3I6Kyn/00c9S1Pif9MTVTwNmqCz87MKWzTsvk3FwIufBTkxhrjEHe5n/ZNE/Jm9DftWiVVfenO1z0rhtvuu+T8rs+rxOTxYyibjJWSZZD6fyMBx4q8kgayz6VX6BmrgQK3/4x4YlAqGPs14dDZZWJx+hawF0uhGyX0LVAHLwB+j4CVV3TwblEKocrw3aoch8/z+XPevq7+vBLNo5TyXxg/3qIw+auS4GLmjOKwyh+VsYKU99jyPxXwPuONTPgrM/8CjN8aNP0FggF4XyiSvR0UlTHsjBX4fysvpAFmhpoS6AkIwSrdiybXzd5jtOex8mDiUVtNt892nHSp8HOqu0F2qBA+Ksb/C58+Nk/syzX57+/Jtlh177wSJM0qsdq66+oFqpfJxxJ6SehHn2+TQfb2e/rNpehKvBvduEtaXvbRwZJYVSn8k/1Ys0aZH1N/iz9veuY+ct6a+sPpAAWlos41NrUWN+SO2mH1L7vVc7pKJKTD0QxxdWtt616RJJltPy4l9E/ieuD+XdmWHldbLw/1FC85CWC47Nd5x6QRDF79DQY2LBhkJoB7pHOlhK4LB1sqS1wFCcTLZX2S6pBOdAATQcD3hKK3eLRHsFnkiyvk2uL1sYwCO8hCoDump7tGv+g634A9TNGqsM2/l9KKeQDaLGtXbQeMmF9rJI+vbSVVd9CPhsK2nM0jgy0Qlhc6MHXZyFzvbgAc6Ci1EogD5u1GZ5jIfV+L1ZC8oGxNZugPp9qg5oB11c+yxsJ8/XCLjqIFA0WSELj/+3+a5Nd2258zT99oiS+7yrxvErIJJ6t9N3qvbLguCaJYde83d9NqNJ3OJnLXu/PAz8y0HFXxKnEtfqpzcp0iHBlhtp/BkPNAfOkvU/6KQBz+ZTvv3gLK5Qd8B2+ZTVV9tIO8qAlsBZaKvcjitLCw9svuunn5Gvt/+u+ZZnHBz53rbG9C393S5e9D+gbiKGsIJP/XHlrXJOwyMYuSU3bFvveumLpO3HIUkVUomC4cQL3J2AoRxwQMXRH2hqmJ1ogEOGypE6Qm0HPrR1fyoa/MJk3RieyBe6yocQFeRB9Kp9GwQOFsIcdtTKhmI6G4+1U1yUIEzsNsUg2Ppz0Pruwv4guH3J7ru9CZ/ITIfZtYc/zCcWA1rnxwF4dmO8kvaUI1B9jliB5v6IA+Zt4l+lA/o4eVVH14fiyi6yqBjkAnfys/yqB9rzjzgg2mhTg8AhCoXisxBtrDvXPoqeEUX1yzff8ZKPF3G1Qx4deCVsQ7+qr3ROmNhtCqkPtM7jl1bWthP7w2DHvOrcPzAPFLuXBzjrc6Lg9yuVSl0U1NgXHf8oiHTx1otlmIgZd0Lf17ABG/4IfZz1WejbrHgvynXTRh74Uy1djqCp2uFkwDYUwLwNvJ3YL75WOeWu0QOb7jjlf8tbwN/OPGiKP/w72TlMnK/xYnCE3wXE8g7HsoFHN0QbOP7C8H3LDr3qS40aNR41LTh23HWaTHC1S6M4GpFnN0SYBJabZoIcO2WgN3BAxaVjQmmoihCqEU45ESgNoTiUcRBA+zGouNQROmbjRzMU8BP6uFGtf8HpHMigHiqvXf8iswj7xUcb5lUqr+rr7zA4m4cC1OSrdy43VB/grlg8ERPzbRainfK0aE85CaTshF+CqjQEN413kgNSpzmQ8Aub8icSGxHWJfyN8kWY9qMQOPgI/bZOaq/2i8j3bL7zyZ9uuueUAxoV7P1o9P7T9xZljx2U/fJtlAvdN0t6V7qLlosOu/YWyTJ5GNvygHEnTOxmnPJksw5Q8Unj/1I895Ynph1N9JS0sbmVsB/6qa2+/e0UmWo9fumygPyfqlq7QvtNd57yl3JO/IskTwc4/4Vx+KFlq675p3Z+blhwyI8RLR6LIry2fGVuQyQSCqBsmswOWmKD7HiMUfdCRSMPd2gDLa8+M9pVttAA2Q8hRXpQNNQjQB/3WLpD2Zfrvxf75cpRTR6o+d0Fq66+v7vOZxi385FqTb91YgJ5k/aMNWLp4a6+OQbiYZXBMwTaAbf2VifZIDw+znrLK9cPdfAhVtQ4BtTVNcRDviuoQ2Eb4krsYNfU3umitkfHhrX4xi13vuSZHUhqy1LfOf5i8UFIP6gPtP8i7JcHYeeMtJ2Q2irdJUN1ZM7/lWtbE4wvbQX0cdZPKf5xvHTrXfce16WKjeyTxb8P+S8/zNfYX7+P9BeVRSjs8G3ptB+/jeKUI9C3333W7FTsbOfbdOdL3im/8PxhzHWW15iTsMFvhI0536/8l3fofGLZYddeKB21LcmCQzoPNz+x8ctxVD+crUwh5A0VNbxVvXAZL6AaCnNhcH5pJ1/uYbuGgPhEDFkG/bapdPYFaJfmCHlKIESb7KdNn2a4yeur/WH4niWHXHsd5M/mkvrMcgJxsA1WM06IweQ+bucjxhPQ8DTuaT9pf838bJffU5N+HAvQ2+meQFjWZE9/7Rf5+0gXP9q87qUH5WvcBTWO9ORIn+S1bLJHOlca7HS2JnAS+8Mw+mo/v5GSp2seTd+REAZXso62Avo467Owa/ujuLcFh7rT8pR9ZnXJO/ZtMHzy/O/oxUt5HXVIqwe24oANZkcK88YjbU350zHUYZe7PNumNaecIzfmP91J/JvzJR0HeY5sig/j6sa/3J75ytJV17wnr20eLVlwbFrzkv8pKyT9Lnnr4NuAsMQRXLV3UHA9dFBx76SPNqa8Qd+QVLGMfK0gLeVKMdYB5slPaYnOerIzfpNDGcLhJtCi7Jf+/mXZoT/8dKr/7MVwnxAbfEno+5eWow6lU35fho9TnkRcUUD9wwDBH2DOBmbK8XHyUnfqBx7q3Ak/5FAG+yH0ZVF+O37Uy/aUaOf4j7avffnTIKPXIs9v6Ns5fX2Iu34S3akf+urFfgnBxb3qOdV28nHlYtqThZBNm32cfIxdp/aLc3pbcGDe7GC8UFfq5+usuDiaMMl7L/8Lvr4RVOUPutFfxFvpCz6UTvkhxwo/jLrDXRRsvuslLwvi+lfEL3ouR8xRNPaMO6HNHRqfVvGgf1nv56QfK/QhM/wVSw953vlCZ1BAnrSokpvXvPjlouJfQ00rgEgaHBkEDiUIVTFngFSgUusJqbAPIUvbaT/t5fttrZ3pYDqmOPmoG6CPsz4L1TronhTiBdgfBNcvO/SgjleCiUozFunMh9mY+HHzcfL5NB9nPdwFnAU8KIA+blTsyWv6Gp205nqTbXkM3NfB5Kd5Ddk+zeelvlno8/g4+Tza08YndspEc2HyocF072xv7eJjBmG/uP7OZYf9588606z/XMsPOfB78q2GJ+A7FEI7Yqz7Fn97xboJ73wv3eflk0/zcdjg5YK2RT0KIXDaSn7Qii31JOeLzP9ibZgZ0rfc+eLnRrX4m3Lmn4OYM+6EsCIv/qSZlT3mfxBfv3Th08+RdwV1tYatxA+fvUB+/VXeSc8Bl0JTPJ1coaBvjCnc+56yAH28tcTJnePL8PHO5aW2wx8mow/2h+GDI3Pnnx2Gn5V7ybtGge9ss5zBXIjN/GoQuBVCd9gAWAcImag06OMmS07w2tYgcOhAaPE0mrK5euDUF3KMz/ozPupgR/7el0kZjZCyAdEytQG4FUJ32ABYB5i2hSx5xvAFm++4vqff8Nh69/UHi7jFWf2tD+urE/2y7RttN33lJui0vrYf4070utHXlS72aYZPOf6HYE6l/KnDSeKvVWlOIF6d5P/UdWotATdU4Md04zEg2jXqa5Joox017lkH6Ldt5NrVjkbvftFRUT3+njxisJB+hX86iT9zHj4jzniZj83XwK0QusMw+MXy6pIzwmdcvNNROgaVzVvX/4l0HVEB2gAAPCxJREFU9ow84c3KpAqih+Z6SzSTleKJMS4RNfPMSxCSKNtOnvEKP9qwHaEpZLJcvcoTPOlfExb9tdpUiMkAl5Odtk9pytlUn9qMPlz7bXG1cqZ7334ie1dBuJr2P2GRZj5ALFAsJuYzP2aNPmfbVvKaYiaMSksaSD8qhDnAvlWJpl2TPGjq4t7EnEPQroSedO/wlHWK9sfxhzbd+aKuP1XH9fAA8zk0oQ6pVsRoK6CPs74dNPun/4cJw0r1liTuBcZffFQZ3fHk/u380lyPWwT0cZH539xzkZSi8r9InYdd9uY1Lz2oXguvktXFcuhKHwP3x6jiUknYj/yXBc1dleril4WrLt+K/rotFXkG8xQ2yioLQ0AD9HHQSCdEPQqhj7O9TwOeTnSc/LPQ5xHc9aFQdZNB6qD/AChaoVCX1v0bH/ewBaWVfbS1VT3ask/gchlXflQ7fMuKVT9cjeNdsWR9ipgbjbGGV8zv+f5hnfGzLWPQVh6+aogCqLjIIUz6ZR/KqOyQa5tP83HWZ6HPIxIyOQWZtCFfPtr7hbpZP2xL+0XanKAef8Rv0QkuVzX3ze+/sT+TRRqOiJs+duzjPo/Uiv1zRuJbTM707WXavSWJe8Hxr9ejp/fP0kZ/Z+MP/5PWGBungdoqOCDx/inXQhJ1li4Lyv8WHc968va7X/zUOBi7Rl5bsRfjTthZ/CU2veZ/GD40d978U5c+64qef7m6Im8kOxoK+4nRKmp8NgQQG9oQUsak0A0OaWl/6Jc0lZU+ZOg/rNJKJtYfqoNAxUUWYSLXk99KDumwG3ir0rX9QXDh8kN+1PWvYLbqf2bS6U9AH6c1Po08PrSIWoR9nDw+zcdZj36As4AHBdDHldh2x/zoNGfSvlvpQ91Yn4W+TT5OPhkzQfyiLWtOObmt8g0MoSw4irdfFuBji5558B0NXU/DwchI5BY9vs0+3plSHcU/xmKu2yILAs1TxpXQj7mPd1oPPcA7XYV9U1/oQZqPsz4LfZt9HP7atYp8HX7lWK1+tZyi9k9zxfeJj9OP8JHvb/CgAPq4Elvu5AHRx+XnAk5dePD3H2nJ1EGFfEsq/o3wLTNeKEalpcadfAlVbzyQSv1lNpFfSpQmVLyxvSgprFgEWH1jLXpspFh30gJkKaqJHKTSTRZkWlEOx+lIDaBRfkOVHmTbN/LTbkJTV3iS7lvbLwumby0/9Dp5hTO1b+59NlPoM6QGcKaI4eI3F2R/YQl/gGxt6B0626BFzHJC8kqeUAsu8n0MLkYVErI5aFLTmDA/mVPt+MNKuESU3COoBHsI7x5ix960DbJpa2pfSkvr+2O/2uLGYxRO/I0cn6a0DnYybuWkCKsbx5TFQ35CgEZpQERgEi/DWY2ufDzH/juG4dmlhQdf98imX73gSdFvN0sQy6ci7Jdrm+Lb3ko3+a89cD4GlNLsf8u1JJ5dPeKnInvaFZ3/QZSO4Z4UnGGN4jUvXLypVv+BqH2o5awzoNv4Z8ZzR/lfCTcL30uXHvLDe6bqthF5//l/ylWOVakgS9z02MMYY8KM8saZtpdXCmFOk/sKjqa4cLnDZOC3kEc2QvBrIjt+4kxuqxf5lKcKJa1NvYY96whR6eMNzKlcym9hv0zAty3fff6bZZBPIiwje9YdmulwEQqh4a3dQtcSWo5Iq4TgoWEwsfyw65JfOoXsQZcda07ZdyysnSYGnio2vlIsXWgaDsB+MRa5j5OJ/Lz5qXiWQ66o/aITH8ivFON9Hpbu8G2LkDRNSBII0vL7gaBUoHweWZ/PNw3UMMCl4N20Z+ZTo7pNStFWQJT8BanfTOIRxfv4lG5wqkWYuDIhePkvghn/ZA50tJZ9Fv0iDn0PB5Q1f3HcE0IvX9esnjSTsKX9PX03K9vbzDiO17583uax7ZeLL5rem9N1/OlYwvb5v2MkGDlj6WE/vLUf3hqJFsz9QLBt7HQZUPtDB/avwvHRBZniPsJkjVN+VFOTDH/StiHbyJwDtZ+0v+b2WQ2pLaBT1UEcZ7lB80tj6xz+jD2d2C99PhGMVM8K9756m9/XroTjbYbMiXY+Vp+KcwCT4qFu3rLETBgM8dkyVQM7XHDYtQ9JZ5/DNrrmhXtPBPFfibLvEPv1V16LtJ9G0ndRPTpHaB0tOGSBIgsj8yDbQx5xQhsCWNRYb6CTZpTGPdiUJyGHWxJ0mhG5dY1Pak1a0FZUECekrd3YL9/KEd92V3BbPdHNV5E4YY5Y6ooqLD5xzCsaxMkT4mcHCi7ap+sDamtOuGPiLp2SXKF+yubbSpzQyYl2kSsc8vtJ1U2/evyrkhsvcqY3Ad937eLf1FgIfnvigBKjiWo1+N2lh/7whrx2vdAqKw68dvO8ufNPkjz9OhJeB5imvkRYOtVBIBC4DjoHyUdIPkK/rUkRGWKB1iPbgCOJHLQu8BZR0AFlk+oEwjqpBA3Q8BSihroAYkMhBK5tHQRu/AYNT2VoT9qf9YH+VJaDefzyjuiJoBq+drdDrntAxJdFPdDodYsg9vYHFqN15i4XVqSN3NUYrrL4sOse2+3wH79bHhY+XD4J323aFWe/7wv0Jcev7tQj8uZPXXCYDMlta6/NKRcHGGqEPm5UrXEoGH1bHTmMNzts+kEYy+LH19HsBq2f9ocxfFtMYWxa6ysrFymcQ4krcWA7+lh7d71afthY5+g3vl7G/7CN/SJcKyf9cNOa335e/KMv5EQfU48/Y2PxMHnN+S/nt0h+guMtyw79cfKW3n7YqBfYFq265lER9jr5us276sHOw6pxtGcqnCY6in+oZ2ChEypLA0NzI5+XrIQN7nRNE5oMokiu11XkC31yI12uIZ8pE+DbyAXor84SOv0rBHSDQ3aHCVRpjkcvlwoREAUDgZdQHUGBChHM2lqwUCH8715x6I9/bEy79t6fRHxcfaeOc/4hbi5HEMWxcgCIkqlXsqt2HMY3RHsZpGs3PfiKE4MtWy4TtV5QlP1qMl2lMD546x0vPHzJodf9qgN36LsiqBshHG44HI8CLwN33s4cukFgLMplfJQnNxWH5gqH5JTpojkmyubo2xf7w7D393CobgyqKEjXu3D4+a8GkNXV5zZoGE8JozYvasf4Q76PZ9Mpa1+n439X+LVYeeboY+K7tyQ+gy/d+FMI53YdfyfEpQFjQ5jkf1z5o2VHXP8f6KKfpeGO3rLDrtoowvt2+aSfimZlbVx90vvh/dRR4ioZWHopyC1qsnOjLkgcD+XZ9GhHMYIAmRyTxBldDlwnnzIAZWHyqd2OvPFffVqJw52yIPN8ThzQikRAURcJ4qwGUx4Omk83YUOzX77f956Ue69nPrljK97/cAAXw321n9Z6fqjZzxO0XXDIh6fklgrFAOKTselon5SJJ/FiX4Ro5OM49koUD88tFZksNqe5lq90P+wXyT1c4UD+e2PBVy8Pz6Op39040rMUCNljZRrYrrDxPzALpqejJ9c8/2/lwe73aO95sc6jKXM23tljNATNF6ANrbWO/+pfrTji+n9Jqf3DGhYc/RNbrKRNq08+QFa4J6vPPN/ZggKTpnOy+FTRBt8yAKJjk++lTnnT9hoctocwbWP1jkto4XXLjxh5b7FWzzDpLgbmzvQqEKygO3MtUh8Lh2sPH6vLHTPxSWXkCh48UX6sbMum21/4ujiu/VR6T362fFLdu7S/2T/xczqyNI70qnRTe7c4TBYYoo/iLh5NsrMByQisVMLiHxpoUqoFIZRvNcmEKga1zq8+2C8fWKotNGhPnnL8dcZKxxhtBRxE0XWqJAHyQIr2ihyyw5TmHTegndo/KHsalBvMwZNrXvDuuF6/EL1lhlMyF9Kf7eqTXKe/2vi3Elb+cbcjrv+HoiydkbfC6kF0PnKYCwtAw1OoodKklx2gAsNxVQR/Pk1xBAP/Tl4WagKAh0WiLlc27h+ZN0deW37d8Eys1G86IUaEbOotB4GrTwnVz3heB3Gz53agMnAWiEFx4hRRWkKw+mHdLz/iupuDSniJ2i5K9tt+nUfEF4DY5MpF8mvPk/lEvqWyQ50KJvgyKcxvaowK0lKMtRgOigMCUR0MGh4vhYShKHG0RG2ForCZdhOqkjACBdDHldhAUQ7ZJRAI7I/i7cbd+R63CJj3hGhN1QAVlx0hkKb4g0/oqhMEYGw5aAHCQYFFzijMA+infXv69C3/CzRhOkVvvP15b4yj2j9RB3GdFkDFZUfYU/zRuFX+h+FFyw+//s+sx2L2M27BIQmLL5u+yaUyvNfSMxy4gD6eNmBbQK7CDSIu2Q1DV+Ml0A3j0SCsvmrps67r+c1rqS6zDDOX2uAQnL70/Wy4eRTPyuDPfGzQvNy4FwbzvZM/E7w2Uqn+Y1H2YwJXn+DEIpsMjv3xnf12fpGT4g7lF0ZCjQRkOJrKdjjloQ6llT3QxRQyIMLdO35An94ShfEy2KR/9Jeo1G/75YS/o1tLMRH3kv8aI6RAK3vEWo2nWd2tWt3z+1c4RC/NFwctd0wfzRHVzbTrevx3r9nQt9j4qxecIYG8SO7pyyku/0/IWgOouMSdkHlMyLgTJnkPCZl8kaciv7Xi8L3fLlczIbmwMuMWHBtuP/El8lrX/eAwdb2DPk5nItuVDx6XDYAQOOoITZ7jB58Un+bzoo0ESJY+8ZtXHPnj25W53DV4AP7SjckNKH/qbwfpe0Lf3xSGiQil1YREvmGG+hBnGN9alP2QyyLv1JGHJuqH8rgVlDnNfQpnWxtPxk9a8xjQKCK27g/8fv9+DBUPg6G5whHGoerCnGq0tZ/293CFQ7r3fWe6Wd4Dnyz/G/zvcoHxQTvgbE+5xUG7OglbdEPvXr70a/zLj5YVZ8I0SH5y9fNeEEd1fFN0hHkANZirjB9jCYg/FEIfZ31e/ClTG6uM8Nrl85e8IQwvxW/vFVpm3IJDTvXntfYIJ0qbPOxUZSc5TXRJfEIGlRAy/asgPp72l8qXoP3N7kfchG8hlCXrAfmuPy7r6uVe+NycDgfbEHEQ3kQdIfkIjV9qld+GEHFA3bJ9D+mxaH+96S4K9tF+uBbyABUXKFNx2wWHfHVzB/UgRByIA2JjLAAVRz/syPEDtOQfoiscEoOlah9u2Tn7fJt9nPW92C+iu7/CQf96PlddMTqExj/iiX7O9wgJw0JoVVwA8CrvAO78Oht831Ff38fAwUOYz9/C/lm03pBnEo+Nw+gKWRrOh5/oBz/WfYs/cqkh/8P/XlEdebU8bzaGfCm6zKiHRuO7TlqyYWctfdeAZq+4iBDeEoeycDGRQK1P2TEwwe0P0LTWMQO4DjzR31h+xE/+PttSWctdEIyMBHF9wjwhoweDJTlLwYk6y1icbE8PSxNMQMrjHEmcztegQYbxOq6hB2E88vNYnlnU/OyX/WI1fcUch1/kpV4r2zlELoRs8Lzekl1jh37cGACwb3O5JrQFkHyCk18u0eovWjru6Qami+ZQZ6rQDsJO7A/Date3WOWqrYVDdGNMVcPJ8l8YyOvHX4eKhcPGCZTmcWdmT43Liz/GuvrO5Uff8r86SIOm5o7JWm9Z/cJVtXjiBxK/JcpXdPwx4cJ1mhLhmmp10enhYVeNTqZjP+tm1BWOjeP13xNPeV85g/dQAH1cic07nrQAfdxxctACGp5Cypfhc+uKPfZ8S9H3upqVn0EUvM2QIVFfi+7O5zr5wL/uD1YprVPz/DAT77TtNPJVwvrj8IHa2m/7s36IApu8JrM3DB5CtX8lz8cna+rX+W3sk5OTmcQ/8H42wW85WHzjvacsk7G7j/bq+atJf2EgrRMNyQuouMiW1wU93EnbnnioO/0LIaTlCWSdz5/H10ca/aB66biHjqJAP/N/Flzh2Ljm5H0ngvFr5IHh3Tt2f148ScsTwjpAD5cr9PfPmxec5l6FkdeyENqMWnDE9eg8eCFdEBhOz2QXDOQjZNtW/FiEgxfQ8BRivEjt+nDO3FeFT7mi66fQ2eeuDnn/ENBw3A5wS26cjtXRBg1vjLGywologm2GlDAc2QRVzVaDtJtQLO3afl3AiB8AFYf/Qvk2RtsSy0kRvkcxSHcSao0lfssxR15AH0dbFInhbpvuev4z7Gj69uG2sWeLKaKiN+sWZH81jnUx1721EsEu819jrlal8U/ywMVOhHavyhRaMA/yRPQt/2fUmavZE1vXnbZnXIuuldg8rd/jf/L4Y34IH6tU4lMXrfoJXvg50DJjbqlsvuOEgyfG4+diQOp7AcRNxG2Qmt/8sQU+8uR6FeMQo8ONR+UVQp48YZuQV72+dsVhN/Y4meRqMIuJ5tSMi5vsNffzxNd80sLgIQ8a4xlqlWnim+QNKyEOJ5boRJBRkLYBomRhW/vVD84pFBB38qBm/DDGir+wRvOm/jwa6sFhOloATIa0skORZzgfdldyrXaMNLxfm0/TTm5ZHA3bkuRJ9BWS4PADSj/sl9dw9HyFo0/xTxIpa09SYeYWsJdXnag/zcHYwyY7au7O6phTqXb0Q1Z/jn+5b9gsbIZQcLVtfHT0KrHt4F7thx+0KJQdj+ls58Am/wXhk5Kfpy0/4sf3Toe7Zsw6cWIM796wJEsuX4rHSMtzHhcOgLkbphfUuT/IAM7CpAeU7YIVR/3sBtaVsDcPZHyq/gaNMYD3DQdMJysXgyb+3rQYfKt6LViBXvttvy4YxCuAhmsfba9wjFSrD/EkS6hewdkCBdDHjarjxaolSqjXBYZBXQ2iMpkNrVFUj481bPr28lsIRyOjzNbUX9Co3/ZX5o082L2lHAHQEn+AGssEIndQQ6i4HBDCDm3jIHCrNWi1Six2l4m/3xl0RwHElrXH7AbV2eJBn7/wr1NIv0WU+OGzF8Sj278r1j3btwcW25/5pJ395LaYp/mMdswD4CbNoODbxOmvmM5vVs6IBUccX1gRL75J/TfpzlwMJ+umE6bgnDyzUOPANnrgpFt7nVAhK44/ufLon/+bqyxBBx7gAk+uF+mJCdDHWQ9R5mcnVGOmRI2b1gkt4ddwYAce12YGAPmxtAMKs9/3A3zVwZsul9YWyuvP5W0cnm/V1zILEuKMQJx8Pg04Jk1C4OAjNDzGt2aeO90hkicsToQOao+DtMmHUF55YISHk8enAQcbIXAx/9EpvZdHBGgBlE11cdBwpx/YGHdCNMy0T2QpUvwukpWA+SEd99C77+O/eFP63kMcv2POxo0Pf0Oe8jk5ySfpRePK3jLxs5i3mf86iL8sQsbDSuU1K4/86U3sajrgjFhwbLztylOjqP40OMi/okG85RUPnQ2kEaCPQ5AWRgrQx121AAnUj1Yevfh9KaXEuvEAB1OrAeaHxceTPnyijycMMwOJ4uAk3xfU2jfJx1nfkLc5DM1jQPI4jrYl7Vsg4VFX49PO3Zr3KrfVGPDHhS0m0AZNsGF+JPTnSnYLm+Vk8/wn73jufqQNGj6x5kS87v1g7VdtFYwGYNwrDXZiQyH0cau35pPYHwa/UBE97HzVkuY+0ccdQ178jdbKnkRyYQjzAB34Oe/j7Nw3ycdZb7GRI1R6DJJTyU8FJLxDjOBD88bVq78kvjmdfoC6nkkNeGJKG4ZO4i+3N2W9XTl35RE/vTqRO03IjFhwRFF0nvmHE0H+YGIgAfM2TCTGY+2J5/FqXRjcN3depXxteYHJaTGwiUnj4GIkkdI/nNHwB6gbcUDdClSuT6LxyUbmjZPzxPXHfvjCFVkhy1HbBQe4ZRqykyN8y0I88bdorjTMfCLb4RorwfWP0MVD40V5AqU6jCY4hr2KQaG14Hy1AbpnN+gAGgtx8uE0oLTO7BcP9bjgwLdccvzpaIne8LHqA52pN6GQcD0dBRAbeAm1nVUXuc/Gf7K+es7/OBqaF8pNZh/rNqz+wafEVvmWZWPp2X6NPeNOKLLz4h+E71x51E/lysr0l6FfcGy899hlksBnYXDZeDHo4zbw7FMHcJsaxPfwv7dhIOAY0MfJw7YqL4xHq5XgVUsP+dmG6Q/TTNQAg8D8TIgj4upjPYZt6YBBLFDSmBhu1Jm537D69tfLQ4srBmK/DAw56XW04JCHqjs4OTI2FjuLAGlpbNJ4pePQj7VMrOfJxvAOLJDx/S+cLx/wmib6zhWgrZ3ZL28z7cCnrXung1J/pj5u3cqr4aIC0Mc9lqJRs8H85ee8j095/Mfh0Lwyv50/N972O38vVyL+oK/2t+rUj7ng8mNsf77yqP/6XCv2QdOHfsFR3xq8XpJzPhwjE6n6B9DH6TQLKKc5ORKH6x+gCwQh2qCO0MdlkRhXgsobVxx1s9znLkv3HsBLv2zC4Ve+APEH/xMyFoTohzig4SnUiGkcjUbe7vUbXAtcSpUHFt9flP30EyEsk9s3v+3EwmqlcqPvY/qTEDKIA+ZtfkyAZzfYbbRg/w2/eq58cBhseWLz9reIVsupe1Zfsy+1DdoZzfQkzvZZ6MsTS+vVOQF+Gbjnku3Pl+/jWT14jI4pw8fTenlHTqEFD/anecD49z3/g2jfQs3ok/ANt534fvmw8YG+299yPHrxr1T+94qjbvpIn0zpi5ihX3DI15/OZwLLE25itDyEJlBxD8ooM4cQ6pGjuQFgA9GbXIRXaWjjbXL017sfffN3+uLhXVwIJz9OeHZ1VxYdMjv7eKt6uA98LMTZnvRhhRtXX/lBse2IVvaBTj/4uG8fbYaNxFvVY3yEQeW+Tvyx7PAbfxFWQl2cUJ6vg4+zPgt9nfL6hAwUhfXoExvWnjCwS+Gja164t0z0H4ZPWhXYg0K7fJt9nPVZyLYqJAj+a9lhN210eFcAX8DL6y8jv6P4W8ewmXYTdqVSX5g17tBE8iDPPp/m4/QzlADOQlxIxwq/V0OO4YEbbj3hrfLsoZ7wYVuefT7Nx9vaL5YnvmjwgsVaSP+6+5E3/Y/h8YZpMtQLjidWH7tK3Pcct17Qz0rA4V/6mBDmND1AI5VKcw2UV3buUD2gNMVkp3Xh1/c8+pf/QFIJe/MABxhaA29V/EED3B90lNEIjQciJxHbqruB0jeu/p2Xi45/U6z9mMhgFnY2qVWq0b2dGKpvy42D75svO5sQG2NhfRvN4pHiJk81c4GSuqfK0yUD+8S1c3z7J0Sr3aATJ3CoYnmWr6+fgz5udplNjTjkOD+Ewfc68XseTygzcdf9ubibe9P4i0ZOp3QxC9nY8BLgogv0oY/QF/BWBTqhUD/wAmf7Zmh1chVv+cbbTm77m0EmffD7Dbed8FrR/bPoGTa0Kr3abz5W6SLfoPRkfYXx11Yc9fI/bNXndNKHesERT9Tf6idc4lBOrh4UV6sfCe3ABdpFR+sE55/KczKAS7Ru2X2f8PzpDMhs6RvziM0l+MSNgliI53V0GPRjS1w5bQQBbSrZAdrEMCSEjbcd/664Xv+O2CW3VFCKsV/9LDuF0ov4J96tsqCjKxzQSvi/x9uTOO6+uDHm7KOt1Ad2k6bxD6K3r7/td87svp/uWjxx23PeLFn2u5Zv0jPGvWywlZB2E3bXA7lT+yuV3hcc8gVlNzZMV0rPwmz+q59ll/rbcLbL2l/0mx7lF7Tli7EWc8adUOPfx/EfhLXfp53DBDfcfsKp8kT2v4u9VfoCsN/2Ixc07oRwQhj+YPejjn5TGF4o18yGrwztgiOOz5ZghW+UUagrXjgXISPUYY5JBD5FEoPP4RoEJRuNkw14dAA6frBrW8AweLw6d468tvwX5WvL4Y8pFsRFY+PB3kT6UjgpG+Rk2pvcYlqtv+2kZ62/9fiv1qPg0zLi9at7tKC3HtkasNl+oWhOK4TH4/DO8LDrRjvua2FwtbRKft206SohenUv3OtEZqO21oI0HGGYhlH9Gxtuec7ZncjrhWfDrce9VTq6KK8t/ISS+MvhSgTubAX0cdZPAu9dccR/r56kvscqeg/QYk2o85qjtbIn22nRFzjkMcUn0adpa73TgqwunR2zdZ790Xmb15yoL9TrTFbxXHJl43eienSZrB/n+pr33rMvpU38w/gnu++512vD8LPulzN777WolkO74HjiF2tfJg/b7APDO1owOL4Gfo8Guq1IHMQCBgsPXcjE43I38DUrj/h5z68kVvnlLvFAEjNvkrRpCCwcREAdniwC5VhpoGPD8pHQx1kv1dNcnrzlhcs33vqcVz5x6/HfCKKxO0T/1w3WfvjCinzCvJF4J3Dlwf+9Rbz69Va8OkaksrU9jINB47eJ0ccthqan1M4R7D823Pact7Xqt1f6hluOe6/I/pz0LXOb9ZfC7qWaDe3tlw9CU/smAD6PMu8Jk7yHHcj9VvlPO2EfcUAfR13xpRoF8q2+yeOf6iX6qK0O0m7CNvZLbJZPjE98oXirOuth423HHS6vcLhSbFqEvLHcSWFqN+MyNfsb5YW3jcSLXznsv/NV9BW2ziKVwyUhOa+ZjEBx0KGWOCBKpl4vhwgNMKda+WWlEVbiP9zz6Nt+Ykzlvh8eSFwuA4+/aQO5FhLQXC8KESM7xlxjPHbc9NscKk8iBxjH1fWrn/OGoC5XcatyQQxF0AAooJYsgZWOP3OYyIJMFMj15FfqMpmEoXyqimSr7C56HFsPR4+QD8S2eIcdfsoVaD/Uo28B9TgIblCki10lqP5bPai9BU3UryLKJstm+eBJYqcNQJBNbEbRug7slzdzVMVnn5NF2tmVMH7/VL8Rtn71CccG9egf5WHyF6giTh+85xTfEND3nUI/hwNqwWu4wetex92L/eL72vw5wcUmsMc9sgeqyNZp/qOnbPzNFpOF+ib78bBIgSWqhhsCuYzCHDF/iv9hmBSzrT/j3wl81eO3HPfJPZ69+L1heF3RF3C0y7zdptXHHzBRi6+WPNoNMRiU/S7+6xbOqb508RHX6Q9E5uk3LLShXHDgMtnOndvOwH1NDig4zHCZQFw0ccmTtPx6aS8VTHYdzaAkyY+JKP7nvY5Z/Xm0L0v/PcBYEWYnoGyPFk+Lu9a5E7YfM+BO3py4Vr9E29RsgaAnlBrizhMK4i0fH5Ocqbuccfx1mwxDgdaf7OV+iE7cINTw0TOF8tNUMqdo3gjRZEUuT5UPOydKUddvQfaLK8wXBoNowdwFP0z06BBZcfR//eSJW46/Q8bCoVSdUCdPyLHzhQDzLSBKU7yUqFW6o92Evr5gkOOXisRT1t963MVBFH5596MX/aTTE0e85uy5G8YeeL4s9d4S12vnqivE+dqHC4L2qycAsyjbvy1AzCboQ7sJYabik9gvi5zLFx9282No33ORHyNT30q+UEeVxVwXiGL2WMxxTF5AFLUHbZwlWfsloZWvqN28BSMbdo6mV/QZd8Ksvlk9wEcerevM/gvW3zr67A23HP/n8hMUXX0tGeeasfHxl4Rh5Qj5APNb+Xbip7I6tTtef8ex+0yMB9eIy/WKvHO9NqPdhLSN8crK7sX+kcrI+YsOf/n6OH55savJrLIdH/+tfEazFf1QLjjGdm5/g2TdPLPHjfQ84zgrEGZmB5IJIYmnChUXBj/c65gVf5onuqT17gGd0twE2CxFplUNKeOK6FhkjJd0g1bD05vETxorzZfv402fWDFJY2I26dqbHCQ54fCGCYDM0iR7hcV1bipDc8dLaL1Mti/U/usXHXrDbybrfZI6vAnRJtsB2y+fwquy2HibePNtG24d3fL4L4+7RmL233Ll8fGoHj4ezqmsD+tRRZ4P2LMSxHvEUbSXROa5T4zf92IJ66LQWx/qlQpLEDUVphQdf5lM5dsw/SouUTXRLM38OWvK+c/E75e6GTmLD9p7485b78NwaNFTYfl/knwYkIXzcT+X24o/qFbCm+TK2T2VkeqmJavqWzbfvmDxRLxzz5Ew3GuiHu1ViStHSq6cNj4+fpxMGRV9ZicIbhdzul5wBGPBp6X9ARlXtDjsv/31qHbD+luu0P6Y64AoufkvdAZHhwr4wJxT2snLadJECoMr7hLiIagYygWHBO88m8BttUv3ICmAG8REYjggima50lq6T3kgQ9junT9/0TmdfprSDspdhx6owcMteEl3MZNU109lnGBd6NJzXmMONAttHDL21XwMapOPvQ4617CR24h+tii/kK21yyk5snzUzFGc9klPDfrTFta7bj1AyQaz7Wk3IXrkWPCEeGiDRf/hVXSFrpy7/+eeGLvvL6TRvpQIATqmEh2Kt1+uFuA9HfKVQtnsIlQQT9TUy7iihBnA9JM9EHfkDkRfi+Cg4i8K/OceR998HTSZWrEraYw7YZfxb2v/1HRs3zoML62v/+Wxj0gUnp7PXWj+46V3x4sTjueFyXCiHuy8BV6056InXCZFyCTNn3wtu6HKFc8ljbfsbE7Il1Gs/YPO/+z8lTf/0WL4Y+guwWy87cjDZZI71oLFjAD0cVfrRiUmRZuUhSsdqcbk753lstjYKpehzuz1JT2+yBLP9wASMfcPscJfi5jxRA1oOAev5QDaIhf4h0OlGVnrQLN8Ma5GfkdDnmiueBCSHK2VftqXp0G2f62HyFZ/sBt/gNoX1FCFobSz2WB39ofb51QX9vx7CeFhl45L539nurTWD7qjACrubFWyh7O+CRZmvyplO1URO6ejg6avo8Hn6ncPgs/RABkXQhGokgghSZ5/+Wsc96tYzHuJv2hAuwlVWxyYzdgPqNyQ9pjB4Ff8tfBv4fa7/jX2gqvTCHt0ji42KAo+1v+M3Wa12T209ltcNF9axAdWodA6HCoNZA9nvUFtoruhW3BMTNTPT9Uz49QSmOUSo1WyGh9aO+uzUNrjl/MqYXjuymNuuSPtp8QG5gEudwGxIVSEOQkLvTShgaA0pkTalvLAA5ylW/6mDiCIQoA6HNDH2V87SN2oL8QBB4RI2ymk3YQqGnwojp9tK9Xgc8uPvFG/kmgM3e93f/aSi0XeOmvJDnDEToE6fMjsVz/4vjUjUtVpDn1N/4OP7bQNbWUDEEkD6nCBcu3pypXH/OwmbdaPnYjuNf4d298PPdvJiOPrW7LQ1/Q/3AkccBD2sy/2D0WBD6qwL/Y/dPZDIRQXkARXRMiuvsfxP1QLjjh+4Ugchee2NNbZnILJnZP1jS5UovCv9zh2td3wSgWVWL890CIhbdGIvJWpFTwy8Ah9PKknXyJP2gBvMSBUFmrZTm7Qmnz05doSksdBv23iDu1LBVq/mChA44SRhawD9Ns6gX4fppfpSnk+TXGRQWjyKFeg+kBVmQirlY+6LnoGuL0orvkT7Y9SfBuAD6H99ANUpu6AihcV/0owFo5U/pRu6gsU35rOBhWnHfA9Nj0rM/aAKITWTilsl7Vf+YvdhXPCH6uuqi/Um0w/p7MbR4XbD13ajP+evMN5QOU7m2k3oZLNF7DTt3Uq47+r+Kt+ogMgdXBQ9fF0VD+AD8XxT3X8D9WC47c3rz9dkmEvBiML5ROFBgnQx8nnOxC4PtrhIHDZvrr3c371YfNguR+IBzIJi3GpsRGguMZSiahooGk94oZq7BTxoKD+IPFxqcovvgzB9dBBv4qN3XATzaCdFUI9ytjXQMNBpl77QE5KlfWX2tyz/WHwhX69Q2aPY395hbwaVd6SaIW2DrX9omoyBzjcqd8M/CALrocO+lVs2Mp++XHHD+1+5C/wMFwfS5oL0MXXzUsYJo726+e8j/dRqa5FqV9C9wOCg8h/0bCf8e/aYDSAnb6tFOLTBNeYOmj5lsZcBFi9g4XE3zq1HBLc78OvStR3yJTHv5MzVA+NysLzPHw5jIbDSOAc9E7nlkCWI9rCIBsKTcnhL/bee+lbWzYuKwrygMUkjSIjalHGRIH7tpwsVQk0YSFOCLqHN0qTOqwsMch1tQlekU+aa8o2cpj0zXvHyB3Vx3VCPKlvo2+W35Rt7DGlQb0p2h+G6+fOm/cB2NKvMm9R5T07tkXyeuZ4j6w97fTN8qe2Mmj0BWAf7IcM2UwaEMEKjr8sNn658tlL+vqbMPqlWOiNQlf5eB5N6hu9CcLk9kPkIIpo8UNR+Q1pdGhAo8bt8inxBZtDeQ9vlCZ1bexHU7aBKM1XNwZx3EtB7KjUrpD/9Fniq4Z46KUA9avV0+N2NDRXOLbcfOzuMtm/EoFDEmLDxEGoOAILmvsjDqgbUgm4phTTCu4Jfjt3bvWs8Ok3Ja9wTpxVIgV5AHFA/CDeoIaJuIuhRQknXYsauIGzEGd9FoKPPMA1Xxz0cdTlF1VQqkxf4yENR8St3vpqrW+Wv2j7ZQC/v98PPy991i+eEMPf1eiL4bQfOg42/uEOeRXc+f3+dhsmYtpB6NsGWt7m8wD3c97HUTfIUqniq8Izdfx356nGk2jjfFH0+Iemfr74Mffx1hY16mt8pOGIOKDNe4Tsl7CxrfHTfqsbom+pbI+2nyvpqb89kYwsGKvWmPKNBuEIdBTWZyCsDYNx+bnu16w8avUjxlvuB+EBiaX+IX7AkphaTIQoNMvGFEIxnya4tnVQj4gD5mxIF9ABfZy81gXyxIo/KNmOMK895RBCCnAW1Rc091ek/dLLFbsfc8uX2Hc/4V7H3PJNuTL0YfqC9mYh+pwu+7O64NiPmY+Tt0lfFzvW+218PKkPg7euOPb/t3etMXZVVfieM3f6VCxtZ4YpD1tUhLRAOzNtobwMglhNeBiRYtSUABHjDxOj+E78YQw+0R8S+SMxEiQSFDUgjxgaUAq10047FJGBQqEPoEUstPIovcfvW2uvc/Y9c2/n0XvPnal7z9zzrbPPfq1vrb3Pvvuex4YmvDPFWc98iYiP+JND2TOZWOPjt9mXLa2rpekw5/QNj8IYDzXT/00nH32dfdnSHNr+emvyWMnBKzjSLGIv7ImtsJ1c+o/cf4xHw2F8Uudh+mf8VE/OJGnLNquphJjKdSS2ROO0TSabspKaaSWXpE7VZTkSktJ1XcseH9PT5zRj2DaEAbEpSiLyo6NAOgERmyLObCod1NIxLYMhRS6ZOvRlicRmWIf34jSN8wvzGinOtQvysPYwv+nAAlz9gpAlu0NtWVVzmdlVCzS9DGvV58WlelvBUr3uxHE8VJ5V/qwW3pxtx5JLvg3V/jwR9afti7Y/6vt+R8/G25vBNk9avu+J7c3uhp79x69/c5806nMDE/2wWf4/fv0P3f/99o9axuPiaSIzk6Hkb1L/b5b+vg9avzcUfWDUFNkHuePQ9DaUdKa/7EyQFY6X1y1cjA63mA2lckSRcVIwtGmFIVKqsg79vCxDyomin3Uve+IWp2uAohjgmMZ+7fftenXTcAxENXaGUgY2KapdOYiZjekPIhOZUP4tT67MUZTPprD8usGOEV07DNkOqd8hZQmGtQodh/542uTrcVy5bPb7+vfWKrJRcXzFdTTzXbhrTJ7AqMVSNwbRUbkvWn+/PrE62mJ/TbN/FP0Bk42GPnNDiXTbovy/uPlGae7ijfegM29J+0GVwp7eFIvSn+5r4wDltK9ix3yb7RlLcJPFovp/S/zf+DCOhLex9/8JscLxTkmfvSEGg2JyAskpRJJlbHYoPgNDG9rTRw0x63qga+mirxhPAVvFgDtByahjndohbKmdVNG3/2hb6+bY8AP9g/eIRJQP/YgyUWTuMq5OECfDMaIvu+Q8sTEQVc6QsRoMNWUWh/hce8aqP75M7Eva4pVzFm/a4iprKnSc/PfXZ8Qx3jURbVJtWqt/Xtli7B/d1TntA6vAgW/YfFMOax9PyIRrOG4P5Z+5Wsalf66MZu2SL7z78FtaPnUTJTOEnmP1/3xbx6X/GPjN11d73+lWQP/P199w/f0xz5ddxTrm0ZLZuKdxxgETUrbgyxNghSNZ39sOr+O7U9BCfAwpy/KNQ8iimENVUhU31QxhhKdnTGu/go/ZtbiARTPg7CnVUq4dfJ+mTLsaUtZSDFmGykSRnb9w4Ko1YFvNmho5+G2EOeVbif62mE5SJV5zZOVZuVqCtlfb6LcdWV3Q/NY+jbQ4S5OhX4bpbUhNtVZFELMviaOPdi0ZKPTNxu/u2bh76rTp5+P80a/tbY3+yqLjwphpsv2h7x2dPbMulyexZmZruMRvfmZ3w7z9G6F/wxs+QoFzlwz8EX7z83rJ1J+y+T11bqb+I/X/eu0cfbz1de25ms/ihpcy0fT3x1CVYRHvnKztHX//b/kKx64K3gqbVHiHiljDUHecoaiwnVAc+sSkZsQxzEdeS8rli2edNnhYT11MywzCuBigfeQDu6ZYw8a+HSnLYOOQcv7DE7k5vZzU5Usn/INoX0ANXX4qkJYDQWQiBR5zKLJrI6e3MsWVtjgdqBP/DF1axlnI6zPW9GyK8UDZ+zwfJ+3nFT3ZML14J0w5af8wGvRwi/QXLoq0P17+9auO3pOubPQdKcapjxW+Ldb5vaFn+9QPDld/v86i5I6k/avoIY9ZPzFk/dTV0PQ2bIb+7OtSLpECgqHuHd42r08D+3/h/t+o8U+/4imvLZ9wJMnB1ZmJbeAm1vowpaXxZZcWjy3H8U/P6338nzwaQqsYwMvb0Iv5obkMKctg45CyJlEUmYMus/GkLoNRhpKbpmYpLAMfjhmGKnOiwDjNNxztmObDVvITfTktX9qigxLbxbJTdPX49VFX1tlQ/UulB6eX2ns7+vo3oMqWhdl9/Xs7e2afH8XxjcIDWiK6OjS9Dc3uhqQYbAvVRP6JrR2KLNxpuSxHcjhUmeojJ4vBR7l3dnHt8O3BMqo/zJflt7KIqRwlb2Px9wudvYNXF7VKGmMkLkJ/sld0iPr6D0wptX8KFL9Cm+s/pYlm//EzYz7WlP5PRydpZIzgkHJT/N8vHxVIPUD6J+tLkS3BQcYdSn+9pBaJEFo64XhpcFEX3rS3UpRAY8QBHYo7QpkUPcXS9F6cKh5/s3v50N1ULITWMpA5oHNKGI2OSu81pMx0hiIjjSE9mYcNfVk9P0tr9VFryU8BQepyqLKrH56FlEyCYKh7/lbqZAok0Q/bTFnbzjIpE3253nFmlnZoIZKXcZZedUUFKA8J38At3d/o6p39kaP65NkYftNaIvPbflfvpi+jeTiBJK/7Ovuy6ePHmd6Gprch81Trr5xrXLWs/Cj3lkfyi61QjgtSF2SiyiPYPyo939YWn9PVt+mXVkYRiAUO8QHTJdOPjVfdSY/J2fGMs9HpX4Q2w+vAZPX59nLblVDyzQlt/+FNHzkGF+CYf9EGlIm+bMcRqX5IY7o0hmI/lzezL6pvqP1H8P+ctmwmg2sucOzj34RZ4ajsf/szeNNe2YyjijkNRc38xo4RfZk2iW7rXv6vH+RzhP1WMaA2kk4EW43axr5ZRcbGkIL0AId+b6ijptbPbNoGJrM4X86OWzpWmnXOdMBALGULVla9/Hp87PpjIv7XqNR+amffphuKWNI3fUaLnX2Dd5SiqUtA0b3M02j9xeZmd8Mm2h8a8Ar0m6dNKS2eu3jTutHy0PB0oisJdR/RmbW4iAb4P0trRZizZOCBtlJ5JZzl9br1F6C/9Vm2wWTrp3XbNcKBye7/9dqvY52OgzbuGeb5Mw4N6bMqZ+S1dIUD126sRouy1phM9DuW62ymCFFkNxvEbdDru4859uqsoCBNXgb0Qs5SiejLtTUyh059InVyN0BLNs/HahdTN9YuKJWLzfiLHYLF1c10GAfwg8wjUdR2UdfSzRd09fU/cxhFNT0r29e1dHAlXhz3SVT2QmMq9G3uy7VLb4T98WVlY1spXtHVO3hd66/98nX25ebpX7vk5sR2LB1YE5XL5+KkNVS7Bl9nX66duhH2r11yq2J9nX25dnuarb+NdY0a/1o24dj52Af7MG1YpDTqyQH72OVW/3hM4zRVfptgHRKO++KUg/Gl0YI1b+aPh/1WMuBO+P7E0SaKDv3OkrXUlg+Iej2EoaaHR1iZ8A4NhlkpqSRpsUd09RrWqt+P8+W0vJzgp1E51z5r6yHqhxrv4KT3p6gturBr6eNnYTn//lw1E3q3q2fznaUp8Sm4aPc7MNlu44G9V3g3HAX/tLWG5tsfbRvCe1Gu6ew7eencvs2PTQySm6v/O6UCH8RRh9DOJQMD0fS5PfCO3zCJ9SFN3lz9pS7nh1avYZ3mjiqaZWg5GU50/ze9DamoyURfrkeCn0Zly8cx2ev/roCWvbwtOXhgNZvkB/+CG43HUo4MQJoSHLjfx/Qo0r+FC1Ium7viqR1+OUGeQAz44wealdsVp+YSnTmuympnasF9Oq6iiCo755F45xdMmaV1PoMYudpajml55kcaZWW7AiXSl11GB5zpq5/atw9OiiibZtXp02h32FLhjaxsNS8C/W1pWunWrlMHX8rlnFS7x5y+eT8a/L3khTN/8vKu164Cq3gGTrKgnv7GA+2uNlfOVVY7kQC1u9kIEWSNmZ2JTNZ0zGFpNQG3w+xfivqxonFDR98nfs+Hm5VKzXtSOVs0uqADNfXw/VP1Mp1Q0mHq37IBP0dC58I1+xD1uV3rF94SR9GNlUpyOpM0W/98+Xl/yTVzVLu48YEtr53Woh3mdv9/xj/HTkv8Lxl6/9Sdeyq8gAgOxgHbDQ4C7HjaOnUOr7PJKEOTaYI4jj5/zPKnH61t6RDbSgbMpmZfIoOeYDKbj3S8pg7OP3iME1J4jCD3h5XP4/Qz/KXHXZxE5DZS3iHS549LsQnK1uKH1+/8G77Ka6eextntMTyW/L4ZUfl+Pt8iV/2k33UvSLwpSS6/eff6Jy+CbVZhQnYJOvpRVG6YfRw/9fyjJiHjsD++mLwIL/gdVpFuP6ZncK2WOxEmGpmG2XiX9Y/sqCeNQ3/z/9avb3h6QOzu2/Jgkny356X+O1fhJ9QvJZVkmY0J1Sm9vcPQ38YCYqOCcDtC/6/n36ZrveM12+g1XcajSTD+mR4tmXDs2H3wYjRgNhtRbXhjUtF8wtBPj1nxT7uXP/NrxoUwcRkw+xqypb48Ust1ENZvPpKWrsHO7VyFZcmu5yTV5Vf7FMtDA/RbsorptyrsMkYhRT8OstVNlIDljTh+Az/v4Se96A0Utg9ZdwJ3YBDZjju1t0Xlts1JW7TZrQJYxiMa3e2keLR16Z7k2Q9Ne/nfe1biW+ylGCDPgX0WjFb58dof+WjILcCHYIs7O3suX6OrGaOtufB0qUf5NY9X/6yMan8u28w4S9ByydnlNjTkthf7TzsjqhzEzQTRJeiLxzVaf5ZX1f9L0au4ruBhfBG4v9xevmtcZKBMf8ypJdeKG01dTdcf7mF1aHuq/aU6DnvCn0MA9bJJk6atwYWQrkdrOrllbBZuXzv/bgwHHxvW+mEVUnnTkAdVxqB137wz+z5e1D3yw5oVIgIDgYFxM7B7fW837o48C9357EqSLER/PhED1wlYDSnLNKGqy2OHk8l00Ko5JrxZiuLnkHBrFMWb4iT6G27BfOToJQP/GXcjQ8aWMgB/iF75x6K+g3FyLqb0y9CYZbD8fNgYYpWDYN/isiNMwWBHkijCs1VKz+ILwBB85IlSnGzGz2ob5vQMPokTJpOFUAADZpcCqtIqdq8/pfvtt994ARZuy7xBj9nSOJEhv1xEP8Ptgk/NmPGe5WEwUc7CNjBwJDCAn2DaXhwYOj6qHDgRPz4dDZ1morPPEMQr5JK4UsEzSf6Lycd+DA/7S23xfuzviduirXNOH9gZThpHghccWgeulO3Z++oJlQMH34s5wjxMRGZiSgEfiWbgiVI8acA3nH/QV+LSPlwUvKcytbKjc9Hgy8FHDs1vEUcLn3DsWDv/eiytyvMyWDm9JG2Ere24bzP55Ro84XBvnCRnzFvx3JNFkBPqCAwEBgIDgYHAQGCgMQwUflssVkdX6zRDVzFUVmX0an/EYOrqyzyKOQie51a5Mkw2lKuwDQwEBgIDgYHAwGRioNAJxwtr5y/HTOIUWdbAfEN+OnGoP6doHFc8dNVDLwhkLPa/fvyZ2/4ymcgNbQ0MBAYCA4GBwEBgQBko9C6V6GDlKt5ByAmEBu5QdtMLd3EYf0qxIEej6NZjV2z7kcUFDAwEBgIDgYHAQGBgcjFQ2ApH8uz8aZg8XIEVjowhk4m+bCk4D4lK646dF19rUQEDA4GBwEBgIDAQGJh8DBQ24dixq3IBZhWz7A4UUmUrGUSVM+TKB6J3YZZyWbTgufDY8snnW6HFgYHAQGAgMBAYSBko7CcV3P/Me+7dQ0L4KGgGPlGPsv6kIlHpJnqrPU4u7VixfWcaFYTAQGAgMBAYCAwEBiYlA4WtcOAWk6VkyFY1KNuzfIj88FiGlWu7V2xv3Wui2cAQAgOBgcBAYCAwEBhoCAOFTTiSKOHLeqoWM/xbX30ZD2j58XFn7ZA3CTZEy1BIYCAwEBgIDAQGAgMtZaCwCQcuydjK6zfkeg0i/hgMReYKR6l073FnXfM1ORg2gYHAQGAgMBAYCAwcEQwUNuGIytFNmE0c0Ks1ONmwu1UMufiRrJs5fdqqCf6SpSPC8EGJwEBgIDAQGAgMFMlAYROO48/YPoRJxvX48DGiAF3tMMTu2plTZl44u2/r3iIJCHUFBgIDgYHAQGAgMNB8BnTBofn1pDVse3jeBaj0i5hynIe5x1t4y+Mz2P/F8WefdEcUrXknTRiEwEBgIDAQGAgMBAaOGAb+B5nwCpLPLNx7AAAAAElFTkSuQmCC"],["fxFlex","30","width","295","height","295","viewBox","0 0 295 295","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["clip-path","url(#clip0)"],["d","M182.629 183.635C213.842 170.774 228.719 135.046 215.857 103.833C202.996 72.6204 167.268 57.7435 136.055 70.6048C104.843 83.4659 89.966 119.195 102.827 150.407C115.688 181.62 151.417 196.496 182.629 183.635Z",1,"fill-color-0"],["d","M154.81 93.8059C152.146 100.719 149.483 108.164 146.287 115.608C146.287 115.608 146.287 116.672 147.353 116.672H169.191C169.191 116.672 169.191 117.204 169.723 117.736L137.765 153.364C137.233 152.832 137.233 152.301 137.233 151.769L148.418 127.839V125.712H126.047V123.585L153.212 93.8059H154.81Z",1,"fill-color-15"],["d","M158.075 173.411C189.288 160.55 204.164 124.822 191.303 93.6088C178.442 62.3964 142.714 47.5195 111.501 60.3808C80.2885 73.2419 65.4118 108.971 78.2729 140.183C91.1342 171.396 126.863 186.272 158.075 173.411Z",1,"stroke-color-thinest"],["d","M259.352 172.363L85.4595 244.016",1,"stroke-color-thinest"],["d","M122.291 259.352L85.4593 244.016L100.795 207.184",1,"stroke-color-thinest"],["id","clip0"],["width","225.692","height","225.692","transform","translate(0 85.9831) rotate(-22.3941)",1,"fill-color-30"],["fxFlex","30","width","300","height","300","viewBox","0 0 300 300","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M50 237.5V112.5C50 105.625 55.625 100 62.5 100H262.5C269.375 100 275 105.625 275 112.5V237.5C275 244.375 269.375 250 262.5 250H62.5C55.625 250 50 244.375 50 237.5Z",1,"fill-color-0"],["d","M25 212.5V87.5C25 80.625 30.625 75 37.5 75H237.5C244.375 75 250 80.625 250 87.5V212.5C250 219.375 244.375 225 237.5 225H37.5C30.625 225 25 219.375 25 212.5Z",1,"stroke-color"],["d","M293.75 200H275V150H293.75C297.25 150 300 152.75 300 156.25V193.75C300 197.25 297.25 200 293.75 200Z",1,"fill-color-0"],["d","M268.75 175H250V125H268.75C272.25 125 275 127.75 275 131.25V168.75C275 172.25 272.25 175 268.75 175Z",1,"stroke-color"],["d","M137.5 187.5L156.25 150H118.75L137.5 112.5",1,"stroke-color"]],template:function(D,I){if(1&D&&e.DNE(0,cu,1,0,"ng-container",5)(1,E2,18,5,"ng-template",null,0,e.C5r)(3,Md,15,5,"ng-template",null,1,e.C5r)(5,Pc,19,5,"ng-template",null,2,e.C5r)(7,Sd,17,5,"ng-template",null,3,e.C5r)(9,M2,13,5,"ng-template",null,4,e.C5r),2&D){const Oe=e.sdS(2),Ct=e.sdS(4),Bt=e.sdS(6),yn=e.sdS(8),Yn=e.sdS(10);e.Y8G("ngTemplateOutlet",1===I.stepNumber?Oe:2===I.stepNumber?Ct:3===I.stepNumber?Bt:4===I.stepNumber?yn:Yn)}},dependencies:[w.YU,w.T3,K.Lc,K.dh,Ie.DJ,Ie.sA,Ie.UI,cl.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Ed.k]}}))}return b(),_})();const i1=(b,_)=>({"small-svg":b,"large-svg":_});function du(b,_){1&b&&e.eu8(0)}function T2(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",7),e.nrm(2,"path",8)(3,"path",9)(4,"path",10)(5,"path",11)(6,"path",12)(7,"path",13)(8,"path",14)(9,"path",15)(10,"path",16)(11,"path",17),e.k0s(),v.joV(),e.j41(12,"div",18)(13,"mat-card-title"),e.EFF(14,"Boltz Reverse Submarine Swap explained."),e.k0s()(),e.j41(15,"div",19)(16,"mat-card-subtitle",20),e.EFF(17," Boltz is a privacy-first account free exchange and a Lightning Service Provider. By doing a Reverse Submarine Swap on Boltz, you can swap your Lightning Bitcoin for on-chain Bitcoin. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,i1,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function uu(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",21)(2,"g",22),e.nrm(3,"path",23)(4,"path",24)(5,"path",25)(6,"path",26)(7,"path",27)(8,"path",28),e.k0s(),e.nrm(9,"path",29),e.j41(10,"defs")(11,"clipPath",30),e.nrm(12,"rect",31),e.k0s()()(),v.joV(),e.j41(13,"div",18)(14,"mat-card-title"),e.EFF(15,"Step 1: Deciding to Reverse Submarine Swap"),e.k0s()(),e.j41(16,"div",19)(17,"mat-card-subtitle",20),e.EFF(18," You have one or more channels that are running low on inbound capacity or you want to move some of your Lightning Bitcoin to your onchain wallet. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,i1,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function hu(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",32),e.nrm(2,"path",33)(3,"path",34)(4,"path",35)(5,"path",36)(6,"path",37)(7,"circle",38)(8,"rect",39),e.j41(9,"defs")(10,"pattern",40),e.nrm(11,"use",41),e.k0s(),e.nrm(12,"image",42),e.k0s()(),v.joV(),e.j41(13,"div",18)(14,"mat-card-title"),e.EFF(15,"Step 2: Paying the Lightning Invoice"),e.k0s()(),e.j41(16,"div",19)(17,"mat-card-subtitle",20),e.EFF(18," Your Boltz client generates a secret which is sent to Boltz. In return Boltz sends a Lightning invoice based on that secret. Your Lightning node pays that invoice which moves some of your local balance to the other side of the channel. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,i1,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function mu(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",43)(2,"g",22),e.nrm(3,"path",44)(4,"path",45)(5,"path",46)(6,"path",47)(7,"path",48),e.k0s(),e.j41(8,"defs")(9,"clipPath",30),e.nrm(10,"rect",49),e.k0s()()(),v.joV(),e.j41(11,"div",18)(12,"mat-card-title"),e.EFF(13,"Step 3: Receiving the funds on-chain"),e.k0s()(),e.j41(14,"div",19)(15,"mat-card-subtitle",20),e.EFF(16," In return for paying the invoice, Boltz locks on-chain BTC. Your node claims that onchain BTC to your wallet and by doing that, reveals the secret. With that secret Boltz can settle the Lightning invoice paid by your node. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,i1,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}function R1(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",6),e.bIt("swipe",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onSwipe(D))}),v.qSk(),e.j41(1,"svg",50),e.nrm(2,"path",51)(3,"path",52)(4,"path",53)(5,"path",54)(6,"path",55),e.k0s(),v.joV(),e.j41(7,"div",18)(8,"mat-card-title"),e.EFF(9,"Done!"),e.k0s()(),e.j41(10,"div",19)(11,"mat-card-subtitle",20),e.EFF(12," You have now successfully received your funds in your on-chain wallet and also spent your local balance to increase the inbound capacity of your node - all in a non-custodial manner. "),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@sliderAnimation",m.animationDirection),e.R7$(),e.Y8G("ngClass",e.l_i(2,i1,m.screenSize===m.screenSizeEnum.XS,m.screenSize!==m.screenSizeEnum.XS))}}let fu=(()=>{var b;class _{constructor(E){this.commonService=E,this.animationDirection="forward",this.stepNumber=1,this.stepNumberChange=new e.bkB,this.screenSize="",this.screenSizeEnum=_t.f7}ngOnInit(){this.screenSize=this.commonService.getScreenSize()}onSwipe(E){2===E.direction&&this.stepNumber<5?(this.stepNumber++,this.animationDirection="forward",this.stepNumberChange.emit(this.stepNumber)):4===E.direction&&this.stepNumber>1&&(this.stepNumber--,this.animationDirection="backward",this.stepNumberChange.emit(this.stepNumber))}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Qo.h))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-swapout-info-graphics"]],inputs:{animationDirection:"animationDirection",stepNumber:"stepNumber"},outputs:{stepNumberChange:"stepNumberChange"},standalone:!1,decls:11,vars:1,consts:[["swapStepBlock1",""],["swapStepBlock2",""],["swapStepBlock3",""],["swapStepBlock4",""],["swapStepBlock5",""],[4,"ngTemplateOutlet"],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between center",3,"swipe"],["fxFlex","30","width","368","height","368","viewBox","0 0 368 368","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M306.667 153.333H276L260.667 184L233.797 153.763C229.441 148.861 224.595 144.24 218.529 141.746C212.54 139.284 206.099 138 199.561 138H92C41.19 138 1.52588e-05 179.19 1.52588e-05 230C1.52588e-05 280.81 41.19 322 92 322H199.561C206.099 322 212.54 320.715 218.529 318.254C224.595 315.761 229.441 311.139 233.797 306.237L260.667 276L276 306.667H306.667L291.333 260.667L306.667 230L291.333 199.333L306.667 153.333Z",1,"fill-color-0"],["d","M337.333 122.667H306.667L291.333 153.333L264.464 123.097C260.107 118.194 255.261 113.573 249.195 111.079C243.206 108.618 236.766 107.333 230.228 107.333H122.667C71.8566 107.333 30.6667 148.523 30.6667 199.333C30.6667 250.143 71.8566 291.333 122.667 291.333H230.228C236.766 291.333 243.206 290.048 249.195 287.587C255.261 285.094 260.107 280.473 264.464 275.571L291.333 245.333L306.667 276H337.333L322 230L337.333 199.333L322 168.667L337.333 122.667Z",1,"stroke-color-thicker"],["d","M214.667 245.333C206.198 245.333 199.333 238.468 199.333 230C199.333 221.532 206.198 214.667 214.667 214.667C223.135 214.667 230 221.532 230 230C230 238.468 223.135 245.333 214.667 245.333Z",1,"fill-color-15"],["d","M245.333 214.667C236.865 214.667 230 207.802 230 199.333C230 190.865 236.865 184 245.333 184C253.802 184 260.667 190.865 260.667 199.333C260.667 207.802 253.802 214.667 245.333 214.667Z",1,"stroke-color-thicker"],["d","M138 245.333C129.532 245.333 122.667 238.468 122.667 230C122.667 221.532 129.532 214.667 138 214.667C146.468 214.667 153.333 221.532 153.333 230C153.333 238.468 146.468 245.333 138 245.333Z",1,"fill-color-15"],["d","M168.667 214.667C160.198 214.667 153.333 207.802 153.333 199.333C153.333 190.865 160.198 184 168.667 184C177.135 184 184 190.865 184 199.333C184 207.802 177.135 214.667 168.667 214.667Z",1,"stroke-color-thicker"],["d","M61.3334 245.333C52.865 245.333 46 238.468 46 230C46 221.532 52.865 214.667 61.3334 214.667C69.8017 214.667 76.6667 221.532 76.6667 230C76.6667 238.468 69.8017 245.333 61.3334 245.333Z",1,"fill-color-15"],["d","M92 214.667C83.5316 214.667 76.6666 207.802 76.6666 199.333C76.6666 190.865 83.5316 184 92 184C100.468 184 107.333 190.865 107.333 199.333C107.333 207.802 100.468 214.667 92 214.667Z",1,"stroke-color-thicker"],["d","M239.077 111C241.796 111 244 113.204 244 115.923V126.077C244 128.796 241.796 131 239.077 131H191.923C189.204 131 187 128.796 187 126.077V115.923C187 113.204 189.204 111 191.923 111H239.077Z",1,"fill-color-15"],["d","M184 76.6666V107.333H122.667V76.6666H184Z",1,"stroke-color-thicker"],["fxFlex","20","fxLayoutAlign","center end"],["fxFlex","40"],[1,"font-size-120"],["fxFlex","30","width","383","height","279","viewBox","0 0 383 279","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["clip-path","url(#clip0)"],["d","M267.882 220.417V104.583C267.882 98.2125 263.809 93 258.832 93H114.029C109.051 93 104.978 98.2125 104.978 104.583V220.417C104.978 226.787 109.051 232 114.029 232H258.832C263.809 232 267.882 226.787 267.882 220.417Z",1,"fill-color-0"],["d","M357.75 197.625V81.375C357.75 74.9812 352.069 69.75 345.125 69.75H143.125C136.181 69.75 130.5 74.9812 130.5 81.375V197.625C130.5 204.019 136.181 209.25 143.125 209.25H345.125C352.069 209.25 357.75 204.019 357.75 197.625Z",1,"stroke-color-thin"],["d","M86.3125 186H105.25V139.5H86.3125C82.7775 139.5 80 142.057 80 145.312V180.188C80 183.443 82.7775 186 86.3125 186Z",1,"fill-color-15"],["d","M111.562 162.75H130.5V116.25H111.562C108.027 116.25 105.25 118.807 105.25 122.062V156.938C105.25 160.193 108.027 162.75 111.562 162.75Z",1,"stroke-color-thin"],["d","M205.979 116V150.875",1,"stroke-color-thin"],["d","M205.979 185.634V185.749",1,"stroke-color-thin"],["d","M2.44963 159.45C0.488815 161.41 0.488815 164.59 2.44963 166.55L34.403 198.504C36.3638 200.465 39.5429 200.465 41.5037 198.504C43.4645 196.543 43.4645 193.364 41.5037 191.403L13.1007 163L41.5037 134.597C43.4645 132.636 43.4645 129.457 41.5037 127.496C39.5429 125.535 36.3638 125.535 34.403 127.496L2.44963 159.45ZM65 157.979H6V168.021H65V157.979Z",1,"fill-color-15"],["id","clip0"],["width","303","height","279","transform","matrix(-1 0 0 1 383 0)",1,"fill-color-30"],["fxFlex","30","width","454","height","243","viewBox","0 0 454 243","fill","none","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",3,"ngClass"],["d","M141.75 172.125C178.098 172.125 207.562 142.66 207.562 106.312C207.562 69.9653 178.098 40.5 141.75 40.5C105.403 40.5 75.9375 69.9653 75.9375 106.312C75.9375 142.66 105.403 172.125 141.75 172.125Z",1,"fill-color-0"],["d","M121.5 151.875C157.848 151.875 187.312 122.41 187.312 86.0625C187.312 49.7153 157.848 20.25 121.5 20.25C85.1528 20.25 55.6875 49.7153 55.6875 86.0625C55.6875 122.41 85.1528 151.875 121.5 151.875Z",1,"stroke-color-thiner"],["d","M20.25 192.375H222.75",1,"stroke-color-thiner"],["d","M192.375 222.75L222.75 192.375L192.375 162",1,"stroke-color-thiner"],["d","M138.762 67C136.099 73.913 133.436 81.3578 130.24 88.8025C130.24 88.8025 130.24 89.8661 131.305 89.8661H153.143C153.143 89.8661 153.143 90.3979 153.676 90.9296L121.718 126.558C121.185 126.026 121.185 125.495 121.185 124.963L132.371 101.033V98.9062H110V96.7791L137.164 67H138.762Z",1,"fill-color-15"],["cx","371.815","cy","95.815","r","81.815",1,"fill-color-boltz-bk"],["x","317","y","81","width","110.745","height","30.1472","fill","url(#pattern0)"],["id","pattern0","patternContentUnits","objectBoundingBox","width","1","height","1"],[0,"xlink","href","#image0","transform","scale(0.00185185 0.00680272)"],["id","image0","width","540","height","147",0,"xlink","href","data:image/png;base64,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"],["fxFlex","30","width","295","height","295","viewBox","0 0 295 295","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M182.629 183.635C213.842 170.774 228.719 135.046 215.857 103.833C202.996 72.6204 167.268 57.7435 136.055 70.6048C104.843 83.4659 89.966 119.195 102.827 150.407C115.688 181.62 151.417 196.496 182.629 183.635Z",1,"fill-color-0"],["fill-rule","evenodd","clip-rule","evenodd","d","M169.522 122.093C171.059 115.241 166.054 111.136 159.022 108.13L162.04 98.916L156.431 97.0797L153.493 106.051C152.019 105.569 150.502 105.104 148.995 104.643L151.953 95.613L146.348 93.7769L143.329 102.988C142.106 102.615 140.906 102.247 139.743 101.867L139.752 101.838L132.017 99.3019L130.057 105.293C130.057 105.293 134.224 106.57 134.131 106.624C136.402 107.369 136.71 108.93 136.552 110.138L133.115 120.635C133.271 120.687 133.473 120.761 133.695 120.869C133.66 120.857 133.626 120.846 133.591 120.834C133.562 120.825 133.534 120.816 133.505 120.806C133.375 120.763 133.24 120.719 133.102 120.675L128.284 135.38C127.95 136.062 127.157 137.065 125.569 136.548C125.62 136.635 121.492 135.211 121.492 135.211L118.184 141.544L125.483 143.935C126.298 144.203 127.103 144.476 127.899 144.746L127.901 144.747C128.431 144.927 128.956 145.105 129.479 145.28L126.429 154.6L132.031 156.436L135.051 147.215C136.579 147.75 138.064 148.25 139.517 148.725L136.509 157.902L142.118 159.739L145.166 150.437C154.773 152.984 162.15 152.77 165.87 144.183C168.867 137.27 166.555 132.99 161.623 129.952C165.417 129.361 168.406 127.109 169.522 122.093ZM155.149 139.449C153.059 145.84 143.068 142.413 138.496 140.845L138.496 140.845C138.085 140.704 137.718 140.578 137.404 140.476L141.449 128.129C141.831 128.254 142.299 128.395 142.829 128.555L142.829 128.555C147.571 129.985 157.289 132.916 155.149 139.449ZM144.22 122.79C148.031 124.108 156.343 126.982 158.247 121.175C160.192 115.234 152.086 112.815 148.127 111.634C147.682 111.501 147.289 111.383 146.969 111.279L143.301 122.477C143.565 122.563 143.874 122.67 144.22 122.79Z",1,"fill-color-15"],["d","M158.075 173.411C189.288 160.55 204.164 124.822 191.303 93.6088C178.442 62.3964 142.714 47.5195 111.501 60.3808C80.2885 73.2419 65.4118 108.971 78.2729 140.183C91.1342 171.396 126.863 186.272 158.075 173.411Z",1,"stroke-color-thinest"],["d","M259.352 172.363L85.4595 244.016",1,"stroke-color-thinest"],["d","M122.291 259.352L85.4593 244.016L100.795 207.184",1,"stroke-color-thinest"],["width","225.692","height","225.692","transform","translate(0 85.983) rotate(-22.3941)",1,"fill-color-30"],["fxFlex","30","width","298","height","300","viewBox","0 0 298 300","fill","none","xmlns","http://www.w3.org/2000/svg",3,"ngClass"],["d","M248.333 237.5V112.5C248.333 105.625 242.746 100 235.917 100H37.2501C30.421 100 24.8335 105.625 24.8335 112.5V237.5C24.8335 244.375 30.421 250 37.2501 250H235.917C242.746 250 248.333 244.375 248.333 237.5Z",1,"fill-color-0"],["d","M273.167 212.5V87.5C273.167 80.625 267.579 75 260.75 75H62.0832C55.254 75 49.6665 80.625 49.6665 87.5V212.5C49.6665 219.375 55.254 225 62.0832 225H260.75C267.579 225 273.167 219.375 273.167 212.5Z",1,"stroke-color"],["d","M6.20851 200H24.8335V150H6.20851C2.73185 150 0.000183105 152.75 0.000183105 156.25V193.75C0.000183105 197.25 2.73185 200 6.20851 200Z",1,"fill-color-0"],["d","M31.0415 175H49.6665V125H31.0415C27.5648 125 24.8331 127.75 24.8331 131.25V168.75C24.8331 172.25 27.5648 175 31.0415 175Z",1,"stroke-color"],["d","M161.417 187.5L142.792 150H180.042L161.417 112.5",1,"stroke-color"]],template:function(D,I){if(1&D&&e.DNE(0,du,1,0,"ng-container",5)(1,T2,18,5,"ng-template",null,0,e.C5r)(3,uu,19,5,"ng-template",null,1,e.C5r)(5,hu,19,5,"ng-template",null,2,e.C5r)(7,mu,17,5,"ng-template",null,3,e.C5r)(9,R1,13,5,"ng-template",null,4,e.C5r),2&D){const Oe=e.sdS(2),Ct=e.sdS(4),Bt=e.sdS(6),yn=e.sdS(8),Yn=e.sdS(10);e.Y8G("ngTemplateOutlet",1===I.stepNumber?Oe:2===I.stepNumber?Ct:3===I.stepNumber?Bt:4===I.stepNumber?yn:Yn)}},dependencies:[w.YU,w.T3,K.Lc,K.dh,Ie.DJ,Ie.sA,Ie.UI,cl.PW],styles:["svg.small-svg[_ngcontent-%COMP%]{height:50%;min-height:50%;max-width:100%}svg.large-svg[_ngcontent-%COMP%]{height:60%;min-height:60%;max-width:100%}"],data:{animation:[Ed.k]}}))}return b(),_})();const $h=["stepper"],Z4=()=>[1,2,3,4,5],D2=(b,_)=>({"dot-primary":b,"dot-primary-lighter":_});function P1(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG(2);e.JRh(m.inputFormLabel)}}function S(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Amount is required."),e.k0s())}function F1(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.SpI("Amount must be greater than or equal to ",e.bMT(2,1,null==m.serviceInfo||null==m.serviceInfo.limits?null:m.serviceInfo.limits.minimal),".")}}function J4(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.nI1(2,"number"),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.SpI("Amount must be less than or equal to ",e.bMT(2,1,null==m.serviceInfo||null==m.serviceInfo.limits?null:m.serviceInfo.limits.maximal),".")}}function Zh(b,_){1&b&&(e.j41(0,"div",44)(1,"div",45)(2,"mat-slide-toggle",46),e.EFF(3,"Accept Zero Conf"),e.k0s(),e.j41(4,"mat-icon",47),e.EFF(5,"info_outline"),e.k0s()()())}function q4(b,_){1&b&&(e.j41(0,"div",44)(1,"div",45)(2,"mat-slide-toggle",48),e.EFF(3,"Send from Internal Wallet"),e.k0s(),e.j41(4,"mat-icon",49),e.EFF(5,"info_outline"),e.k0s()()())}function Jh(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1," Refund address is required when not using internal wallet. "),e.k0s())}function w2(b,_){1&b&&(e.j41(0,"button",50),e.EFF(1,"Next"),e.k0s())}function Td(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",51),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onSwap())}),e.EFF(1),e.k0s()}if(2&b){const m=e.XpG(2);e.R7$(),e.SpI("Initiate ",m.swapDirectionCaption)}}function A2(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG(3);e.JRh(m.addressFormLabel)}}function pu(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Address is required."),e.k0s())}function qh(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-step",15)(1,"form",16),e.DNE(2,A2,1,1,"ng-template",17),e.j41(3,"div",52)(4,"mat-radio-group",53),e.bIt("change",function(D){v.eBV(m);const I=e.XpG(2);return v.Njj(I.onAddressTypeChange(D))}),e.j41(5,"mat-radio-button",54),e.EFF(6,"Node Local Address"),e.k0s(),e.j41(7,"mat-radio-button",55),e.EFF(8,"External Address"),e.k0s()(),e.j41(9,"mat-form-field",56)(10,"mat-label"),e.EFF(11,"Address"),e.k0s(),e.nrm(12,"input",57),e.DNE(13,pu,2,0,"mat-error",24),e.k0s()(),e.j41(14,"div",29)(15,"button",58),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onSwap())}),e.EFF(16),e.k0s()()()()}if(2&b){const m=e.XpG(2);e.Y8G("stepControl",m.addressFormGroup)("editable",m.flgEditable),e.R7$(),e.Y8G("formGroup",m.addressFormGroup),e.R7$(11),e.Y8G("required","external"===m.addressFormGroup.controls.addressType.value),e.R7$(),e.Y8G("ngIf",null==m.addressFormGroup.controls.address.errors?null:m.addressFormGroup.controls.address.errors.required),e.R7$(3),e.SpI("Initiate ",m.swapDirectionCaption)}}function e3(b,_){if(1&b&&e.EFF(0),2&b){const m=e.XpG(2);e.SpI("",m.swapDirectionCaption," Status")}}function L2(b,_){if(1&b&&(e.j41(0,"mat-icon",59),e.EFF(1),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.JRh(m.swapStatus&&null!=m.swapStatus&&m.swapStatus.id?"check":"close")}}function I2(b,_){1&b&&e.nrm(0,"div")}function gu(b,_){1&b&&e.nrm(0,"mat-progress-bar",60)}function t3(b,_){if(1&b&&(e.j41(0,"h4",61),e.EFF(1),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.JRh(m.swapStatus&&m.swapStatus.error?m.swapDirectionCaption+" failed.":m.swapStatus&&m.swapStatus.id?m.swapDirectionCaption+" request placed successfully. You can check the status of the request on the 'Boltz' menu.":m.swapDirectionCaption+" request placed successfully.")}}function n3(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",62),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onRestart())}),e.EFF(1,"Start Again"),e.k0s()}}function _u(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",4)(1,"div",5)(2,"mat-card-header",6)(3,"div",7)(4,"span",8),e.EFF(5),e.k0s()(),e.j41(6,"div",9)(7,"button",10),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.showInfo())}),e.EFF(8,"?"),e.k0s(),e.j41(9,"button",11),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onClose())}),e.EFF(10,"X"),e.k0s()()(),e.j41(11,"mat-card-content",12)(12,"div",13)(13,"mat-vertical-stepper",14,1),e.bIt("selectionChange",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.stepSelectionChanged(D))}),e.j41(15,"mat-step",15)(16,"form",16),e.DNE(17,P1,1,1,"ng-template",17),e.j41(18,"div",18),e.nrm(19,"rtl-boltz-service-info",19),e.k0s(),e.j41(20,"div",20)(21,"mat-form-field",21)(22,"mat-label"),e.EFF(23,"Amount"),e.k0s(),e.nrm(24,"input",22),e.j41(25,"mat-hint"),e.EFF(26),e.nI1(27,"number"),e.nI1(28,"number"),e.k0s(),e.j41(29,"span",23),e.EFF(30,"Sats"),e.k0s(),e.DNE(31,S,2,0,"mat-error",24)(32,F1,3,3,"mat-error",24)(33,J4,3,3,"mat-error",24),e.k0s(),e.DNE(34,Zh,6,0,"div",25)(35,q4,6,0,"div",25),e.j41(36,"div",26)(37,"mat-form-field",27)(38,"mat-label"),e.EFF(39,"Refund Address"),e.k0s(),e.nrm(40,"input",28),e.j41(41,"mat-hint"),e.EFF(42,"The address where funds will be returned in case of a failed swap"),e.k0s(),e.DNE(43,Jh,2,0,"mat-error",24),e.k0s()()(),e.j41(44,"div",29),e.DNE(45,w2,2,0,"button",30)(46,Td,2,1,"button",31),e.k0s()()(),e.DNE(47,qh,17,6,"mat-step",32),e.j41(48,"mat-step",33)(49,"form",16),e.DNE(50,e3,1,1,"ng-template",17),e.j41(51,"div",34)(52,"mat-expansion-panel",35)(53,"mat-expansion-panel-header")(54,"mat-panel-title")(55,"span",36),e.EFF(56),e.DNE(57,L2,2,1,"mat-icon",37),e.k0s()()(),e.DNE(58,I2,1,0,"div",38),e.k0s(),e.DNE(59,gu,1,0,"mat-progress-bar",39),e.k0s(),e.DNE(60,t3,2,1,"h4",40),e.j41(61,"div",29),e.DNE(62,n3,2,0,"button",41),e.k0s()()()(),e.j41(63,"div",42)(64,"button",43),e.EFF(65,"Close"),e.k0s()()()()()()}if(2&b){const m=e.XpG(),E=e.sdS(2);e.Y8G("@opacityAnimation",void 0),e.R7$(3),e.Y8G("ngClass",m.screenSize===m.screenSizeEnum.XS||m.screenSize===m.screenSizeEnum.SM?"flex-83":"flex-91"),e.R7$(2),e.JRh(m.swapDirectionCaption),e.R7$(),e.Y8G("ngClass",m.screenSize===m.screenSizeEnum.XS||m.screenSize===m.screenSizeEnum.SM?"flex-17":"flex-9"),e.R7$(7),e.Y8G("linear",!0),e.R7$(2),e.Y8G("stepControl",m.inputFormGroup)("editable",m.flgEditable),e.R7$(),e.Y8G("formGroup",m.inputFormGroup),e.R7$(3),e.Y8G("serviceInfo",m.serviceInfo)("direction",m.direction),e.R7$(5),e.Y8G("step",1e3),e.R7$(2),e.Lme("Range: ",e.bMT(27,34,null==m.serviceInfo||null==m.serviceInfo.limits?null:m.serviceInfo.limits.minimal),"-",e.bMT(28,36,null==m.serviceInfo||null==m.serviceInfo.limits?null:m.serviceInfo.limits.maximal)),e.R7$(5),e.Y8G("ngIf",null==m.inputFormGroup||null==m.inputFormGroup.controls||null==m.inputFormGroup.controls.amount||null==m.inputFormGroup.controls.amount.errors?null:m.inputFormGroup.controls.amount.errors.required),e.R7$(),e.Y8G("ngIf",null==m.inputFormGroup||null==m.inputFormGroup.controls||null==m.inputFormGroup.controls.amount||null==m.inputFormGroup.controls.amount.errors?null:m.inputFormGroup.controls.amount.errors.min),e.R7$(),e.Y8G("ngIf",null==m.inputFormGroup||null==m.inputFormGroup.controls||null==m.inputFormGroup.controls.amount||null==m.inputFormGroup.controls.amount.errors?null:m.inputFormGroup.controls.amount.errors.max),e.R7$(),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_OUT),e.R7$(),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_IN&&m.isSendFromInternalCompatible),e.R7$(5),e.Y8G("required",!(null!=m.inputFormGroup&&null!=m.inputFormGroup.controls&&m.inputFormGroup.controls.sendFromInternal.value)),e.R7$(3),e.Y8G("ngIf",null==m.inputFormGroup||null==m.inputFormGroup.controls||null==m.inputFormGroup.controls.refundAddress||null==m.inputFormGroup.controls.refundAddress.errors?null:m.inputFormGroup.controls.refundAddress.errors.required),e.R7$(2),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_OUT),e.R7$(),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_IN),e.R7$(),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_OUT),e.R7$(),e.Y8G("stepControl",m.statusFormGroup),e.R7$(),e.Y8G("formGroup",m.statusFormGroup),e.R7$(3),e.Y8G("expanded",!!m.swapStatus),e.R7$(4),e.JRh(m.swapStatus?m.swapStatus.id?m.swapDirectionCaption+" request details":m.swapDirectionCaption+" error details":"Waiting for "+m.swapDirectionCaption+" request..."),e.R7$(),e.Y8G("ngIf",m.swapStatus),e.R7$(),e.Y8G("ngIf",!m.swapStatus)("ngIfElse",E),e.R7$(),e.Y8G("ngIf",!m.swapStatus),e.R7$(),e.Y8G("ngIf",m.swapStatus),e.R7$(2),e.Y8G("ngIf",m.swapStatus&&(m.swapStatus.error||!m.swapStatus.id)),e.R7$(2),e.Y8G("mat-dialog-close",!1)}}function vu(b,_){if(1&b&&e.nrm(0,"rtl-boltz-swap-status",63),2&b){const m=e.XpG();e.Y8G("swapStatus",m.swapStatus)("direction",m.direction)("acceptZeroConf",null==m.inputFormGroup||null==m.inputFormGroup.controls?null:m.inputFormGroup.controls.acceptZeroConf.value)("sendFromInternal",null==m.inputFormGroup||null==m.inputFormGroup.controls?null:m.inputFormGroup.controls.sendFromInternal.value)}}function i3(b,_){if(1&b){const m=e.RV6();e.j41(0,"rtl-boltz-swapout-info-graphics",79),e.mxI("stepNumberChange",function(D){v.eBV(m);const I=e.XpG(2);return e.DH7(I.stepNumber,D)||(I.stepNumber=D),v.Njj(D)}),e.k0s()}if(2&b){const m=e.XpG(2);e.Y8G("animationDirection",m.animationDirection),e.R50("stepNumber",m.stepNumber)}}function yu(b,_){if(1&b){const m=e.RV6();e.j41(0,"rtl-boltz-swapin-info-graphics",79),e.mxI("stepNumberChange",function(D){v.eBV(m);const I=e.XpG(2);return e.DH7(I.stepNumber,D)||(I.stepNumber=D),v.Njj(D)}),e.k0s()}if(2&b){const m=e.XpG(2);e.Y8G("animationDirection",m.animationDirection),e.R50("stepNumber",m.stepNumber)}}function Fc(b,_){if(1&b){const m=e.RV6();e.j41(0,"span",80),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG(2);return v.Njj(I.onStepChanged(D))}),e.nrm(1,"p",81),e.k0s()}if(2&b){const m=_.$implicit,E=e.XpG(2);e.R7$(),e.Y8G("ngClass",e.l_i(1,D2,E.stepNumber===m,E.stepNumber!==m))}}function a3(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",82),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onReadMore())}),e.EFF(1,"Read More"),e.k0s()}}function Dd(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",83),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onStepChanged(4))}),e.EFF(1,"Back"),e.k0s()}}function bu(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",84),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return D.flgShowInfo=!1,v.Njj(D.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function k2(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",85),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return D.flgShowInfo=!1,v.Njj(D.stepNumber=1)}),e.EFF(1,"Close"),e.k0s()}}function em(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",86),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onStepChanged(D.stepNumber-1))}),e.EFF(1,"Back"),e.k0s()}}function s3(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",87),e.bIt("click",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onStepChanged(D.stepNumber+1))}),e.EFF(1,"Next"),e.k0s()}}function O2(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",64)(1,"div",18)(2,"mat-card-header",65)(3,"div",66),e.nrm(4,"span",8),e.k0s(),e.j41(5,"div",67)(6,"button",11),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return D.flgShowInfo=!1,v.Njj(D.stepNumber=1)}),e.EFF(7,"X"),e.k0s()()(),e.j41(8,"mat-card-content",68),e.DNE(9,i3,1,2,"rtl-boltz-swapout-info-graphics",69)(10,yu,1,2,"rtl-boltz-swapin-info-graphics",69),e.k0s(),e.j41(11,"div",70),e.DNE(12,Fc,2,4,"span",71),e.k0s(),e.j41(13,"div",72),e.DNE(14,a3,2,0,"button",73)(15,Dd,2,0,"button",74)(16,bu,2,0,"button",75)(17,k2,2,0,"button",76)(18,em,2,0,"button",77)(19,s3,2,0,"button",78),e.k0s()()()}if(2&b){const m=e.XpG();e.Y8G("@opacityAnimation",void 0),e.R7$(9),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_OUT),e.R7$(),e.Y8G("ngIf",m.direction===m.swapTypeEnum.SWAP_IN),e.R7$(2),e.Y8G("ngForOf",e.lJ4(10,Z4)),e.R7$(2),e.Y8G("ngIf",5===m.stepNumber),e.R7$(),e.Y8G("ngIf",5===m.stepNumber),e.R7$(),e.Y8G("ngIf",5===m.stepNumber),e.R7$(),e.Y8G("ngIf",m.stepNumber<5),e.R7$(),e.Y8G("ngIf",m.stepNumber>1&&m.stepNumber<5),e.R7$(),e.Y8G("ngIf",m.stepNumber<5)}}let r3=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt,yn){this.dialogRef=E,this.data=D,this.boltzService=I,this.formBuilder=Oe,this.decimalPipe=Ct,this.logger=Bt,this.commonService=yn,this.faInfoCircle=Ti.iW_,this.boltzInfo=null,this.serviceInfo={fees:{percentage:null,miner:{normal:null,reverse:null}},limits:{minimal:1e4,maximal:5e7}},this.swapTypeEnum=_t.Bd,this.direction=_t.Bd.SWAP_OUT,this.swapDirectionCaption="Swap out",this.swapStatus=null,this.inputFormLabel="Amount to swap out",this.addressFormLabel="Withdrawal Address",this.flgShowInfo=!1,this.stepNumber=1,this.screenSize="",this.screenSizeEnum=_t.f7,this.animationDirection="forward",this.flgEditable=!0,this.isSendFromInternalCompatible=!0,this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),this.serviceInfo=this.data.serviceInfo,this.direction=this.data.direction||_t.Bd.SWAP_OUT,this.swapDirectionCaption=this.direction===_t.Bd.SWAP_OUT?"Swap Out":"Swap in",this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.inputFormGroup=this.formBuilder.group({amount:[this.serviceInfo.limits?.minimal,[hi.k0.required,hi.k0.min(this.serviceInfo.limits?.minimal||0),hi.k0.max(this.serviceInfo.limits?.maximal||0)]],acceptZeroConf:[!1],sendFromInternal:[!0],refundAddress:[{value:"",disabled:!0}]}),this.addressFormGroup=this.formBuilder.group({addressType:["local",[hi.k0.required]],address:[{value:"",disabled:!0}]}),this.statusFormGroup=this.formBuilder.group({}),this.onFormValueChanges(),this.boltzService.boltzInfoChanged.pipe((0,li.Q)(this.unSubs[0])).subscribe({next:E=>{this.boltzInfo=E,this.isSendFromInternalCompatible=this.commonService.isVersionCompatible(this.boltzInfo.version,"2.0.0")},error:E=>{this.boltzInfo={version:"2.0.0"},this.logger.error(E)}})}ngAfterViewInit(){this.direction===_t.Bd.SWAP_OUT&&this.addressFormGroup.setErrors({Invalid:!0})}onFormValueChanges(){this.direction===_t.Bd.SWAP_OUT&&this.addressFormGroup.valueChanges.pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.addressFormGroup.setErrors({Invalid:!0})}),this.direction===_t.Bd.SWAP_IN&&this.inputFormGroup.controls.sendFromInternal.valueChanges.pipe((0,li.Q)(this.unSubs[4])).subscribe(()=>{this.onSendFromInternalChange()})}onSendFromInternalChange(){this.inputFormGroup.controls.sendFromInternal.value?(this.inputFormGroup.controls.refundAddress.disable(),this.inputFormGroup.controls.refundAddress.clearValidators(),this.inputFormGroup.controls.refundAddress.updateValueAndValidity()):(this.inputFormGroup.controls.refundAddress.enable(),this.inputFormGroup.controls.refundAddress.setValidators([hi.k0.required]),this.inputFormGroup.controls.refundAddress.updateValueAndValidity())}onAddressTypeChange(E){"external"===E.value?(this.addressFormGroup.controls.address.setValidators([hi.k0.required]),this.addressFormGroup.controls.address.markAsTouched(),this.addressFormGroup.controls.address.enable()):(this.addressFormGroup.controls.address.setValidators(null),this.addressFormGroup.controls.address.markAsPristine(),this.addressFormGroup.controls.address.disable(),this.addressFormGroup.controls.address.setValue("")),this.addressFormGroup.setErrors({Invalid:!0})}onSwap(){if(!this.inputFormGroup.controls.amount.value||this.serviceInfo.limits?.minimal&&this.inputFormGroup.controls.amount.value<+this.serviceInfo.limits.minimal||this.serviceInfo.limits?.maximal&&this.inputFormGroup.controls.amount.value>+this.serviceInfo.limits.maximal||this.direction===_t.Bd.SWAP_OUT&&"external"===this.addressFormGroup.controls.addressType.value&&(!this.addressFormGroup.controls.address.value||""===this.addressFormGroup.controls.address.value.trim()))return!0;if(this.flgEditable=!1,this.stepper.selected?.stepControl.setErrors(null),this.stepper.next(),this.direction===_t.Bd.SWAP_IN){const E=this.inputFormGroup.controls.sendFromInternal.value?null:this.inputFormGroup.controls.refundAddress.value,D=this.isSendFromInternalCompatible?this.inputFormGroup.controls.sendFromInternal.value:null;if(!D&&!E)return this.stepper.selected?.stepControl.setErrors({Invalid:!0}),void(this.flgEditable=!0);this.boltzService.swapIn(this.inputFormGroup.controls.amount.value,D,E).pipe((0,li.Q)(this.unSubs[2])).subscribe({next:I=>{this.swapStatus=I,this.boltzService.listSwaps(),this.flgEditable=!0},error:I=>{this.swapStatus={error:I},this.flgEditable=!0,this.logger.error(I)}})}else this.boltzService.swapOut(this.inputFormGroup.controls.amount.value,"external"===this.addressFormGroup.controls.addressType.value?this.addressFormGroup.controls.address.value:"",this.inputFormGroup.controls.acceptZeroConf.value).pipe((0,li.Q)(this.unSubs[3])).subscribe({next:D=>{this.swapStatus=D,this.boltzService.listSwaps(),this.flgEditable=!0},error:D=>{this.swapStatus={error:D},this.flgEditable=!0,this.logger.error(D)}})}stepSelectionChanged(E){switch(E.selectedIndex){case 0:default:this.inputFormLabel="Amount to "+this.swapDirectionCaption,this.addressFormLabel="Withdrawal Address";break;case 1:if(this.inputFormGroup.controls.amount.value)if(this.direction===_t.Bd.SWAP_IN){let D=this.swapDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Send from Internal Wallet: "+(this.inputFormGroup.controls.sendFromInternal.value?"Yes":"No");!this.inputFormGroup.controls.sendFromInternal.value&&this.inputFormGroup.controls.refundAddress.value&&(D+=" | Refund Address: "+this.inputFormGroup.controls.refundAddress.value),this.inputFormLabel=D}else this.inputFormLabel=this.swapDirectionCaption+" Amount: "+this.decimalPipe.transform(this.inputFormGroup.controls.amount.value?this.inputFormGroup.controls.amount.value:0)+" Sats | Zero Conf: "+(this.inputFormGroup.controls.acceptZeroConf.value?"Yes":"No");else this.inputFormLabel="Amount to "+this.swapDirectionCaption;this.addressFormLabel="Withdrawal Address"}E.selectedIndex{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ro.CP),e.rXU(Ro.Vh),e.rXU(rc),e.rXU(hi.ze),e.rXU(w.QX),e.rXU(Aa.gP),e.rXU(Qo.h))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-swap-modal"]],viewQuery:function(D,I){if(1&D&&e.GBs($h,5),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.stepper=Oe.first)}},standalone:!1,decls:4,vars:2,consts:[["swapStatusBlock",""],["stepper",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","info-graphics-container",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxLayoutAlign","start start",3,"ngClass"],[1,"page-title"],["fxLayoutAlign","end end",3,"ngClass"],["tabindex","21","mat-button","",1,"btn-close-x","p-0",3,"click"],["tabindex","22","mat-button","",1,"btn-close-x","p-0",3,"click"],[1,"padding-gap-x-large"],["fxLayout","column"],[3,"selectionChange","linear"],[3,"stepControl","editable"],["fxLayout","column","fxLayoutAlign","start","fxLayoutAlign.gt-sm","space-between",1,"my-1",3,"formGroup"],["matStepLabel",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between stretch"],[3,"serviceInfo","direction"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between center",1,"mt-1"],["fxLayout","column","fxFlex","48"],["autoFocus","","matInput","","type","number","tabindex","1","formControlName","amount","required","",3,"step"],["matSuffix",""],[4,"ngIf"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start stretch",4,"ngIf"],["disabled","direction === swapTypeEnum.SWAP_IN && isSendFromInternalCompatible && !inputFormGroup?.controls?.sendFromInternal.value","fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"mt-1"],["fxLayout","column","fxFlex","100"],["matInput","","type","text","tabindex","3","formControlName","refundAddress",3,"required"],["fxLayout","row","fxLayoutAlign","start center","fxFlex","100",1,"mt-2"],["mat-button","","color","primary","tabindex","2","type","button","matStepperNext","",4,"ngIf"],["mat-button","","color","primary","tabindex","3","type","button",3,"click",4,"ngIf"],[3,"stepControl","editable",4,"ngIf"],[3,"stepControl"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch"],["fxFlex","100",1,"flat-expansion-panel",3,"expanded"],["fxLayoutAlign","start center","fxFlex","100"],["class","ml-1 icon-small",4,"ngIf"],[4,"ngIf","ngIfElse"],["fxFlex","100","color","primary","mode","indeterminate",4,"ngIf"],["fxLayoutAlign","start","class","font-bold-500 mt-2",4,"ngIf"],["mat-button","","color","primary","tabindex","13","type","button",3,"click",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end end"],["mat-button","","color","primary","tabindex","14","type","button","default","",3,"mat-dialog-close"],["fxLayout","column","fxFlex","48","fxLayoutAlign","start stretch"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["fxLayoutAlign","start center","tabindex","2","color","primary","formControlName","acceptZeroConf","name","acceptZeroConf"],["matTooltip","Only recommended for smaller payments, involves trust in Boltz","matTooltipPosition","above",1,"info-icon","mt-2"],["fxLayoutAlign","start center","tabindex","2","color","primary","formControlName","sendFromInternal","name","sendFromInternal"],["matTooltip","Pay from the node's onchain wallet","matTooltipPosition","above",1,"info-icon","mt-2"],["mat-button","","color","primary","tabindex","2","type","button","matStepperNext",""],["mat-button","","color","primary","tabindex","3","type","button",3,"click"],["fxLayout","row wrap","fxFlex","100","fxLayoutAlign","space-between stretch",1,"mt-1"],["color","primary","name","addressType","formControlName","addressType","fxFlex","100","fxLayoutAlign","space-between stretch",3,"change"],["fxFlex","48","tabindex","8","value","local"],["fxFlex","48","tabindex","9","value","external"],["fxLayout","column","fxFlex","100",1,"mt-1"],["matInput","","tabindex","10","formControlName","address",3,"required"],["mat-button","","color","primary","tabindex","11","type","button",3,"click"],[1,"ml-1","icon-small"],["fxFlex","100","color","primary","mode","indeterminate"],["fxLayoutAlign","start",1,"font-bold-500","mt-2"],["mat-button","","color","primary","tabindex","13","type","button",3,"click"],["fxLayout","column",3,"swapStatus","direction","acceptZeroConf","sendFromInternal"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"info-graphics-container"],["fxLayout","row","fxFlex","8","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],["fxFlex","5","fxLayoutAlign","end center"],["fxLayout","column","fxFlex","70","fxLayoutAlign","space-between center",1,"padding-gap-x-large"],["fxFlex","100",3,"animationDirection","stepNumber","stepNumberChange",4,"ngIf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","center end",1,"padding-gap-x-large","padding-gap-bottom-large"],["tabindex","21","fxLayoutAlign","center center","class","dots-stepper-block",3,"click",4,"ngFor","ngForOf"],["fxLayout","row","fxFlex","10","fxLayoutAlign","end end",1,"padding-gap-x-large","padding-gap-bottom-large"],["mat-button","","class","mr-1","color","primary","tabindex","15","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","16","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","17","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","18","type","button",3,"click",4,"ngIf"],["mat-button","","class","mr-1","color","primary","tabindex","19","type","button",3,"click",4,"ngIf"],["mat-button","","color","primary","tabindex","20","type","button",3,"click",4,"ngIf"],["fxFlex","100",3,"stepNumberChange","animationDirection","stepNumber"],["tabindex","21","fxLayoutAlign","center center",1,"dots-stepper-block",3,"click"],[1,"dot","tiny-dot","mr-0",3,"ngClass"],["mat-button","","color","primary","tabindex","15","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","16","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","17","type","button",3,"click"],["mat-button","","color","primary","tabindex","18","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","19","type","button",1,"mr-1",3,"click"],["mat-button","","color","primary","tabindex","20","type","button",3,"click"]],template:function(D,I){1&D&&e.DNE(0,_u,66,38,"div",2)(1,vu,1,4,"ng-template",null,0,e.C5r)(3,O2,20,11,"div",3),2&D&&(e.Y8G("ngIf",!I.flgShowInfo),e.R7$(3),e.Y8G("ngIf",I.flgShowInfo))},dependencies:[w.YU,w.Sq,w.bT,hi.qT,hi.me,hi.Q0,hi.BC,hi.cb,hi.YS,hi.j4,hi.JD,Ro.tx,es.$z,K.m2,K.MM,or.GK,or.Z2,or.WN,qc.An,br.fg,Ma.rl,Ma.nJ,Ma.MV,Ma.TL,Ma.yw,vd.HM,dd.VT,dd._g,Ie.DJ,Ie.sA,Ie.UI,cl.PW,bc.sG,fd.oV,Yo.V5,Yo.Ti,Yo.M6,Yo.F7,Kl.N,lu,O1,S2,fu,w.QX],styles:[".dots-stepper-block[_ngcontent-%COMP%]{width:3rem}.info-graphics-container[_ngcontent-%COMP%]{max-height:30rem;min-height:30rem;overflow-x:hidden}"],data:{animation:[iu.C]}}))}return b(),_})();const o3=()=>["all"],R2=b=>({"overflow-auto error-border":b,"overflow-auto":!0}),N1=()=>["no_swap"],a1=b=>({width:b}),Cu=b=>({"display-none":b});function xu(b,_){if(1&b&&(e.j41(0,"mat-option",42),e.EFF(1),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.Y8G("value",m),e.R7$(),e.JRh(E.getLabel(m))}}function Eu(b,_){1&b&&e.nrm(0,"mat-progress-bar",43)}function tm(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Status"),e.k0s())}function Mu(b,_){if(1&b&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.JRh(E.swapStateEnum[null==m?null:m.status])}}function P2(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Swap ID"),e.k0s())}function F2(b,_){if(1&b&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.R7$(),e.JRh(null==m?null:m.id)}}function N2(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Claim Address"),e.k0s())}function B2(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.claimAddress)}}function l3(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Lockup Address"),e.k0s())}function c3(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.lockupAddress)}}function d3(b,_){1&b&&(e.j41(0,"th",48),e.EFF(1,"Onchain Amount (Sats)"),e.k0s())}function Su(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",49),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==m?null:m.onchainAmount))}}function z2(b,_){1&b&&(e.j41(0,"th",48),e.EFF(1,"Expected Amount (Sats)"),e.k0s())}function u3(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",49),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==m?null:m.expectedAmount))}}function wd(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Error"),e.k0s())}function h3(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.error)}}function Ad(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Private Key"),e.k0s())}function Ld(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.privateKey)}}function nm(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Preimage"),e.k0s())}function Tu(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.preimage)}}function B1(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Redeem Script"),e.k0s())}function Id(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.redeemScript)}}function m3(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Invoice"),e.k0s())}function V2(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",46)(2,"span",47),e.EFF(3),e.k0s()()()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngStyle",e.eq3(2,a1,E.screenSize===E.screenSizeEnum.XS?"6rem":E.colWidth)),e.R7$(2),e.JRh(null==m?null:m.invoice)}}function f3(b,_){1&b&&(e.j41(0,"th",48),e.EFF(1,"Timeout Block Height"),e.k0s())}function kd(b,_){if(1&b&&(e.j41(0,"td",45)(1,"span",49),e.EFF(2),e.nI1(3,"number"),e.k0s()()),2&b){const m=_.$implicit;e.R7$(2),e.JRh(e.bMT(3,1,null==m?null:m.timeoutBlockHeight))}}function p3(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Lockup Tx ID"),e.k0s())}function cc(b,_){if(1&b&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.R7$(),e.JRh(null==m?null:m.lockupTransactionId)}}function Nc(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Claim Tx ID"),e.k0s())}function im(b,_){if(1&b&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.R7$(),e.JRh(null==m?null:m.claimTransactionId)}}function am(b,_){1&b&&(e.j41(0,"th",44),e.EFF(1,"Refund Tx ID"),e.k0s())}function z1(b,_){if(1&b&&(e.j41(0,"td",45),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.R7$(),e.JRh(null==m?null:m.refundTransactionId)}}function g3(b,_){if(1&b){const m=e.RV6();e.j41(0,"th",50)(1,"div",51)(2,"mat-select",52),e.nrm(3,"mat-select-trigger"),e.j41(4,"mat-option",53),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onDownloadCSV())}),e.EFF(5,"Download CSV"),e.k0s()()()()}}function Du(b,_){if(1&b){const m=e.RV6();e.j41(0,"td",54)(1,"button",55),e.bIt("click",function(D){const I=v.eBV(m).$implicit,Oe=e.XpG();return v.Njj(Oe.onSwapClick(I,D))}),e.EFF(2,"View Info"),e.k0s()()}}function wu(b,_){if(1&b&&(e.j41(0,"p"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(2);e.R7$(),e.JRh(m.emptyTableMessage)}}function Au(b,_){if(1&b&&(e.j41(0,"td",56),e.DNE(1,wu,2,1,"p",57),e.k0s()),2&b){const m=e.XpG();e.R7$(),e.Y8G("ngIf",!(null!=m.listSwaps&&m.listSwaps.data)||(null==m.listSwaps||null==m.listSwaps.data?null:m.listSwaps.data.length)<1)}}function _3(b,_){if(1&b&&e.nrm(0,"tr",58),2&b){const m=e.XpG();e.Y8G("ngClass",e.eq3(1,Cu,(null==m.listSwaps?null:m.listSwaps.data)&&(null==m.listSwaps||null==m.listSwaps.data?null:m.listSwaps.data.length)>0))}}function Lu(b,_){1&b&&e.nrm(0,"tr",59)}function v3(b,_){1&b&&e.nrm(0,"tr",60)}let Iu=(()=>{var b;class _{constructor(E,D,I,Oe,Ct){this.logger=E,this.commonService=D,this.store=I,this.boltzService=Oe,this.camelCaseWithReplace=Ct,this.selectedSwapType=_t.Bd.SWAP_OUT,this.swapsData=[],this.flgLoading=[!0],this.emptyTableMessage="No swaps available.",this.nodePageDefs=_t._1,this.selFilterBy="all",this.colWidth="20rem",this.PAGE_ID="boltz",this.tableSettingSwapOut={tableId:"swap_out",recordsPerPage:_t.md,sortBy:"status",sortOrder:_t.oi.DESCENDING},this.tableSettingSwapIn={tableId:"swap_in",recordsPerPage:_t.md,sortBy:"status",sortOrder:_t.oi.DESCENDING},this.swapStateEnum=_t.q9,this.swapTypeEnum=_t.Bd,this.faHistory=Ti.Int,this.swapCaption="Swap Out",this.displayedColumns=[],this.listSwaps=new Ra.I6([]),this.selFilter="",this.pageSize=_t.md,this.pageSizeOptions=_t.xp,this.screenSize="",this.screenSizeEnum=_t.f7,this.unSubs=[new gi.B,new gi.B,new gi.B],this.screenSize=this.commonService.getScreenSize()}ngOnChanges(E){E.selectedSwapType&&!E.selectedSwapType.firstChange&&this.setTableColumns(),this.swapCaption=this.selectedSwapType===_t.Bd.SWAP_IN?"Swap In":"Swap Out",this.loadSwapsTable(this.swapsData)}ngOnInit(){this.store.select(md.$G).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.tableSettingSwapOut=E.pageSettings.find(D=>D.pageId===this.PAGE_ID)?.tables.find(D=>D.tableId===this.tableSettingSwapOut.tableId)||_t.ZC.find(D=>D.pageId===this.PAGE_ID)?.tables.find(D=>D.tableId===this.tableSettingSwapOut.tableId),this.tableSettingSwapIn=E.pageSettings.find(D=>D.pageId===this.PAGE_ID)?.tables.find(D=>D.tableId===this.tableSettingSwapIn.tableId)||_t.ZC.find(D=>D.pageId===this.PAGE_ID)?.tables.find(D=>D.tableId===this.tableSettingSwapIn.tableId),this.setTableColumns(),this.swapsData&&this.sort&&this.paginator&&this.displayedColumns.length>0&&this.loadSwapsTable(this.swapsData),this.colWidth=this.displayedColumns.length?this.commonService.getContainerSize().width/this.displayedColumns.length/14+"rem":"20rem",this.logger.info(this.displayedColumns)})}ngAfterViewInit(){this.swapsData&&this.swapsData.length>0&&this.loadSwapsTable(this.swapsData)}setTableColumns(){this.selectedSwapType===_t.Bd.SWAP_IN?(this.displayedColumns=this.screenSize===_t.f7.XS||this.screenSize===_t.f7.SM?JSON.parse(JSON.stringify(this.tableSettingSwapIn.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSettingSwapIn.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSettingSwapIn.recordsPerPage?+this.tableSettingSwapIn.recordsPerPage:_t.md):(this.displayedColumns=this.screenSize===_t.f7.XS||this.screenSize===_t.f7.SM?JSON.parse(JSON.stringify(this.tableSettingSwapOut.columnSelectionSM)):JSON.parse(JSON.stringify(this.tableSettingSwapOut.columnSelection)),this.displayedColumns.push("actions"),this.pageSize=this.tableSettingSwapOut.recordsPerPage?+this.tableSettingSwapOut.recordsPerPage:_t.md)}applyFilter(){this.listSwaps&&""!==this.selFilter&&(this.listSwaps.filter=this.selFilter.trim().toLowerCase())}getLabel(E){const I=this.nodePageDefs[this.PAGE_ID][this.selectedSwapType===_t.Bd.SWAP_IN?this.tableSettingSwapIn.tableId:this.tableSettingSwapOut.tableId].allowedColumns.find(Oe=>Oe.column===E);return I?I.label?I.label:this.camelCaseWithReplace.transform(I.column,"_"):this.commonService.titleCase(E)}setFilterPredicate(){this.listSwaps.filterPredicate=(E,D)=>{let I="";switch(this.selFilterBy){case"all":I=JSON.stringify(E).toLowerCase();break;case"status":I=E?.status?this.swapStateEnum[E?.status]:"";break;default:I=typeof E[this.selFilterBy]>"u"?"":"string"==typeof E[this.selFilterBy]?E[this.selFilterBy].toLowerCase():"boolean"==typeof E[this.selFilterBy]?E[this.selFilterBy]?"yes":"no":E[this.selFilterBy].toString()}return"status"===this.selFilterBy?0===I.indexOf(D):I.includes(D)}}onSwapClick(E,D){this.boltzService.swapInfo(E.id||"").pipe((0,li.Q)(this.unSubs[1])).subscribe(I=>{this.store.dispatch((0,Bi.xO)({payload:{data:{type:_t.A$.INFORMATION,alertTitle:this.swapCaption+" Status",message:[[{key:"status",value:_t.q9[(I=this.selectedSwapType===_t.Bd.SWAP_IN?I.swap:I.reverseSwap).status],title:"Status",width:50,type:_t.UN.STRING},{key:"id",value:I.id,title:"ID",width:50,type:_t.UN.STRING}],[{key:"amount",value:I.onchainAmount?I.onchainAmount:I.expectedAmount?I.expectedAmount:0,title:I.onchainAmount?"Onchain Amount (Sats)":I.expectedAmount?"Expected Amount (Sats)":"Amount (Sats)",width:50,type:_t.UN.NUMBER},{key:"timeoutBlockHeight",value:I.timeoutBlockHeight,title:"Timeout Block Height",width:50,type:_t.UN.NUMBER}],[{key:"address",value:I.claimAddress?I.claimAddress:I.lockupAddress?I.lockupAddress:"",title:I.claimAddress?"Claim Address":I.lockupAddress?"Lockup Address":"Address",width:100,type:_t.UN.STRING}],[{key:"invoice",value:I.invoice,title:"Invoice",width:100,type:_t.UN.STRING}],[{key:"privateKey",value:I.privateKey,title:"Private Key",width:100,type:_t.UN.STRING}],[{key:"preimage",value:I.preimage,title:"Preimage",width:100,type:_t.UN.STRING}],[{key:"redeemScript",value:I.redeemScript,title:"Redeem Script",width:100,type:_t.UN.STRING}],[{key:"lockupTransactionId",value:I.lockupTransactionId,title:"Lockup Transaction ID",width:50,type:_t.UN.STRING},{key:"transactionId",value:I.claimTransactionId?I.claimTransactionId:I.refundTransactionId?I.refundTransactionId:"",title:I.claimTransactionId?"Claim Transaction ID":I.refundTransactionId?"Refund Transaction ID":"Transaction ID",width:50,type:_t.UN.STRING}]],openedBy:"SWAP"}}}))})}loadSwapsTable(E){this.listSwaps=new Ra.I6(E?[...E]:[]),this.listSwaps.sort=this.sort,this.listSwaps.sortingDataAccessor=(D,I)=>D[I]&&isNaN(D[I])?D[I].toLocaleLowerCase():D[I]?+D[I]:null,this.paginator&&this.paginator.firstPage(),this.listSwaps.paginator=this.paginator,this.setFilterPredicate(),this.applyFilter(),this.logger.info(this.listSwaps)}onDownloadCSV(){this.listSwaps.data&&this.listSwaps.data.length>0&&this.commonService.downloadFile(this.listSwaps.data,this.selectedSwapType===_t.Bd.SWAP_IN?"Swap in":"Swap out")}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(Qo.h),e.rXU(mi.il),e.rXU(rc),e.rXU(dl.VD))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-swaps"]],viewQuery:function(D,I){if(1&D&&(e.GBs(Oc.B4,5),e.GBs(kc.iy,5)),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.sort=Oe.first),e.mGM(Oe=e.lsd())&&(I.paginator=Oe.first)}},inputs:{selectedSwapType:"selectedSwapType",swapsData:"swapsData",flgLoading:"flgLoading",emptyTableMessage:"emptyTableMessage"},standalone:!1,features:[e.Jv_([{provide:sl.JO,useValue:{overlayPanelClass:"rtl-select-overlay"}},{provide:kc.xX,useValue:(0,_t.on)("Swaps")}]),e.OA$],decls:76,vars:20,consts:[["table",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start",1,"card-content-gap"],["fxLayout","column","fxLayout.gt-xs","row","fxLayoutAlign.gt-xs","start center","fxLayoutAlign","start stretch","fxFlex","100",1,"page-sub-title-container","w-100"],["fxFlex","70"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxFlex.gt-xs","30","fxLayoutAlign.gt-xs","space-between center","fxLayout","row","fxLayoutAlign","space-between stretch"],["fxLayout","column","fxFlex","49"],["tabindex","1","name","filterBy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["matInput","","name","filter",3,"ngModelChange","input","keyup","ngModel"],["fxLayout","row","fxLayoutAlign","start center",1,"w-100"],["fxFlex","100",1,"table-container",3,"perfectScrollbar"],["mode","indeterminate",4,"ngIf"],["mat-table","","matSort","",3,"matSortActive","matSortDirection","dataSource","ngClass"],["matColumnDef","status"],["mat-header-cell","","mat-sort-header","",4,"matHeaderCellDef"],["mat-cell","",4,"matCellDef"],["matColumnDef","id"],["matColumnDef","claimAddress"],["matColumnDef","lockupAddress"],["matColumnDef","onchainAmount"],["mat-header-cell","","mat-sort-header","","arrowPosition","before",4,"matHeaderCellDef"],["matColumnDef","expectedAmount"],["matColumnDef","error"],["matColumnDef","privateKey"],["matColumnDef","preimage"],["matColumnDef","redeemScript"],["matColumnDef","invoice"],["matColumnDef","timeoutBlockHeight"],["matColumnDef","lockupTransactionId"],["matColumnDef","claimTransactionId"],["matColumnDef","refundTransactionId"],["matColumnDef","actions"],["mat-header-cell","",4,"matHeaderCellDef"],["mat-cell","","fxLayoutAlign","end center",4,"matCellDef"],["matColumnDef","no_swap"],["mat-footer-cell","","colspan","4",4,"matFooterCellDef"],["mat-footer-row","",3,"ngClass",4,"matFooterRowDef"],["mat-header-row","",4,"matHeaderRowDef"],["mat-row","",4,"matRowDef","matRowDefColumns"],[1,"mb-1",3,"pageSize","pageSizeOptions","showFirstLastButtons"],[3,"value"],["mode","indeterminate"],["mat-header-cell","","mat-sort-header",""],["mat-cell",""],["fxLayout.gt-xs","row",1,"ellipsis-parent",3,"ngStyle"],[1,"ellipsis-child"],["mat-header-cell","","mat-sort-header","","arrowPosition","before"],["fxLayoutAlign","end center"],["mat-header-cell",""],["fxLayoutAlign","center center",1,"bordered-box","table-actions-select"],["placeholder","Actions","tabindex","1",1,"mr-0"],[3,"click"],["mat-cell","","fxLayoutAlign","end center"],["mat-stroked-button","","color","primary","type","button","tabindex","4",1,"table-actions-button",3,"click"],["mat-footer-cell","","colspan","4"],[4,"ngIf"],["mat-footer-row","",3,"ngClass"],["mat-header-row",""],["mat-row",""]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"div",3),e.nrm(3,"fa-icon",4),e.j41(4,"span",5),e.EFF(5),e.k0s()(),e.j41(6,"div",6)(7,"mat-form-field",7)(8,"mat-label"),e.EFF(9,"Filter By"),e.k0s(),e.j41(10,"mat-select",8),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selFilterBy,Bt)||(I.selFilterBy=Bt),v.Njj(Bt)}),e.bIt("selectionChange",function(){return v.eBV(Oe),I.selFilter="",v.Njj(I.applyFilter())}),e.j41(11,"perfect-scrollbar"),e.DNE(12,xu,2,2,"mat-option",9),e.k0s()()(),e.j41(13,"mat-form-field",7)(14,"mat-label"),e.EFF(15,"Filter"),e.k0s(),e.j41(16,"input",10),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.selFilter,Bt)||(I.selFilter=Bt),v.Njj(Bt)}),e.bIt("input",function(){return v.eBV(Oe),v.Njj(I.applyFilter())})("keyup",function(){return v.eBV(Oe),v.Njj(I.applyFilter())}),e.k0s()()()(),e.j41(17,"div",11)(18,"div",12),e.DNE(19,Eu,1,0,"mat-progress-bar",13),e.j41(20,"table",14,0),e.qex(22,15),e.DNE(23,tm,2,0,"th",16)(24,Mu,2,1,"td",17),e.bVm(),e.qex(25,18),e.DNE(26,P2,2,0,"th",16)(27,F2,2,1,"td",17),e.bVm(),e.qex(28,19),e.DNE(29,N2,2,0,"th",16)(30,B2,4,4,"td",17),e.bVm(),e.qex(31,20),e.DNE(32,l3,2,0,"th",16)(33,c3,4,4,"td",17),e.bVm(),e.qex(34,21),e.DNE(35,d3,2,0,"th",22)(36,Su,4,3,"td",17),e.bVm(),e.qex(37,23),e.DNE(38,z2,2,0,"th",22)(39,u3,4,3,"td",17),e.bVm(),e.qex(40,24),e.DNE(41,wd,2,0,"th",16)(42,h3,4,4,"td",17),e.bVm(),e.qex(43,25),e.DNE(44,Ad,2,0,"th",16)(45,Ld,4,4,"td",17),e.bVm(),e.qex(46,26),e.DNE(47,nm,2,0,"th",16)(48,Tu,4,4,"td",17),e.bVm(),e.qex(49,27),e.DNE(50,B1,2,0,"th",16)(51,Id,4,4,"td",17),e.bVm(),e.qex(52,28),e.DNE(53,m3,2,0,"th",16)(54,V2,4,4,"td",17),e.bVm(),e.qex(55,29),e.DNE(56,f3,2,0,"th",22)(57,kd,4,3,"td",17),e.bVm(),e.qex(58,30),e.DNE(59,p3,2,0,"th",16)(60,cc,2,1,"td",17),e.bVm(),e.qex(61,31),e.DNE(62,Nc,2,0,"th",16)(63,im,2,1,"td",17),e.bVm(),e.qex(64,32),e.DNE(65,am,2,0,"th",16)(66,z1,2,1,"td",17),e.bVm(),e.qex(67,33),e.DNE(68,g3,6,0,"th",34)(69,Du,3,0,"td",35),e.bVm(),e.qex(70,36),e.DNE(71,Au,2,1,"td",37),e.bVm(),e.DNE(72,_3,1,3,"tr",38)(73,Lu,1,0,"tr",39)(74,v3,1,0,"tr",40),e.k0s(),e.nrm(75,"mat-paginator",41),e.k0s()()()}2&D&&(e.R7$(3),e.Y8G("icon",I.faHistory),e.R7$(2),e.SpI("",I.swapCaption," History"),e.R7$(5),e.R50("ngModel",I.selFilterBy),e.R7$(2),e.Y8G("ngForOf",e.lJ4(16,o3).concat(I.displayedColumns.slice(0,-1))),e.R7$(4),e.R50("ngModel",I.selFilter),e.R7$(3),e.Y8G("ngIf",!0===I.flgLoading[0]),e.R7$(),e.Y8G("matSortActive",I.selectedSwapType===I.swapTypeEnum.SWAP_IN?I.tableSettingSwapIn.sortBy:I.tableSettingSwapOut.sortBy)("matSortDirection",I.selectedSwapType===I.swapTypeEnum.SWAP_IN?I.tableSettingSwapIn.sortOrder:I.tableSettingSwapOut.sortOrder)("dataSource",I.listSwaps)("ngClass",e.eq3(17,R2,"error"===I.flgLoading[0])),e.R7$(52),e.Y8G("matFooterRowDef",e.lJ4(19,N1)),e.R7$(),e.Y8G("matHeaderRowDef",I.displayedColumns),e.R7$(),e.Y8G("matRowDefColumns",I.displayedColumns),e.R7$(),e.Y8G("pageSize",I.pageSize)("pageSizeOptions",I.pageSizeOptions)("showFirstLastButtons",I.screenSize!==I.screenSizeEnum.XS))},dependencies:[w.YU,w.Sq,w.bT,w.B3,hi.me,hi.BC,hi.vS,os.aY,es.$z,br.fg,Ma.rl,Ma.nJ,vd.HM,Ie.DJ,Ie.sA,Ie.UI,cl.PW,cl.eI,sl.VO,sl.$2,ac.wT,Oc.B4,Oc.aE,Ra.Zl,Ra.tL,Ra.ji,Ra.cC,Ra.YV,Ra.iL,Ra.Zq,Ra.xW,Ra.KS,Ra.$R,Ra.Qo,Ra.YZ,Ra.NB,Ra.iF,kc.iy,go.ZF,go.Ld,w.QX],encapsulation:2}))}return b(),_})();const y3=b=>["../",b];function U2(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",16),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG();return v.Njj(I.onSelectedIndexChange(D))}),e.EFF(1),e.k0s()}if(2&b){const m=_.$implicit,E=e.XpG();e.Y8G("active",E.activeTab.link===m.link)("routerLink",e.eq3(3,y3,m.link)),e.R7$(),e.JRh(m.name)}}let sm=(()=>{var b;class _{constructor(E,D,I){this.router=E,this.store=D,this.boltzService=I,this.swapTypeEnum=_t.Bd,this.selectedSwapType=_t.Bd.SWAP_OUT,this.swaps={},this.swapsData=[],this.emptyTableMessage="No swap data available.",this.flgLoading=[!0],this.links=[{link:"swapout",name:"Swap Out"},{link:"swapin",name:"Swap In"}],this.activeTab=this.links[0],this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){this.boltzService.getBoltzInfo(),this.boltzService.listSwaps();const E=this.links.find(D=>this.router.url.includes(D.link));this.activeTab=E||this.links[0],this.selectedSwapType=E&&"swapin"===E.link?_t.Bd.SWAP_IN:_t.Bd.SWAP_OUT,this.router.events.pipe((0,li.Q)(this.unSubs[0]),(0,za.p)(D=>D instanceof Ha.gx)).subscribe({next:D=>{const I=this.links.find(Oe=>D.urlAfterRedirects.includes(Oe.link));this.activeTab=I||this.links[0],this.selectedSwapType=I&&"swapin"===I.link?_t.Bd.SWAP_IN:_t.Bd.SWAP_OUT}}),this.boltzService.swapsChanged.pipe((0,li.Q)(this.unSubs[1])).subscribe({next:D=>{this.swaps=D,this.swapsData=this.selectedSwapType===_t.Bd.SWAP_IN&&D.swaps?D.swaps:this.selectedSwapType===_t.Bd.SWAP_OUT&&D.reverseSwaps?D.reverseSwaps:[],this.flgLoading[0]=!1},error:D=>{this.flgLoading[0]="error",this.emptyTableMessage=D.message?D.message:"No swap "+(this.selectedSwapType===_t.Bd.SWAP_IN?"in":"out")+" available."}})}onSelectedIndexChange(E){"swapin"===E.link?(this.selectedSwapType=_t.Bd.SWAP_IN,this.swapsData=this.swaps.swaps||[]):(this.selectedSwapType=_t.Bd.SWAP_OUT,this.swapsData=this.swaps.reverseSwaps||[])}onSwap(E){this.boltzService.serviceInfo().pipe((0,li.Q)(this.unSubs[2])).subscribe({next:D=>{this.store.dispatch((0,Bi.xO)({payload:{data:{serviceInfo:D,direction:E,component:r3}}}))}})}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ha.Ix),e.rXU(mi.il),e.rXU(rc))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-boltz-root"]],standalone:!1,decls:20,vars:7,consts:[["tabPanel",""],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],["viewBox","0 0 78 78","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",1,"botlz-icon-sm","mr-1"],["id","Logo","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Oval","cx","39","cy","39","r","37.5",1,"boltz-icon"],["d","M36.4583326,43.7755404 L40.53965,35.2316544 L39.4324865,35.2316544 L46.0754873,17.6071752 C46.292579,17.0204094 46.3287609,16.5159331 46.1840331,16.0937464 C46.0393053,15.671561 45.7860319,15.3674444 45.4242131,15.1813966 C45.0623942,14.9953487 44.6535376,14.9524146 44.1976433,15.0525945 C43.7417511,15.1527743 43.3256596,15.4461573 42.9493689,15.9327433 L22.6078557,40.7701025 C22.2026186,41.2710003 22,41.7575877 22,42.2298646 C22,42.6735173 22.1592003,43.0420366 22.477601,43.3354226 C22.7960017,43.6288058 23.1940025,43.7755404 23.6716036,43.7755404 L36.4583326,43.7755404 Z","id","Path",1,"boltz-icon-fill"],["d","M44.4883879,63.7755404 L48.8604707,55.165009 L47.6744296,55.165009 L54.7906978,37.4030526 C55.0232558,36.8117097 55.0620155,36.3032983 54.9069768,35.8778185 C54.7519381,35.4523399 54.4806208,35.1458511 54.0930248,34.958352 C53.7054289,34.7708528 53.2674441,34.7275839 52.7790706,34.8285452 C52.2906992,34.9295065 51.8449641,35.2251779 51.4418653,35.7155595 L29.6511611,60.746659 C29.2170537,61.251464 29,61.7418469 29,62.2178078 C29,62.6649211 29.1705423,63.036315 29.5116268,63.3319895 C29.8527113,63.6276613 30.2790669,63.7755404 30.7906936,63.7755404 L44.4883879,63.7755404 Z","id","Path-Copy","transform","translate(42.000000, 49.275540) rotate(-180.000000) translate(-42.000000, -49.275540) ",1,"boltz-icon-fill"],[1,"page-title"],["fxLayout","column",1,"padding-gap-x"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["mat-tab-nav-bar","","mat-stretch-tabs","false","mat-align-tabs","start",3,"tabPanel"],["tabindex","1","mat-tab-link","","class","mat-tab-label",3,"active","routerLink","click",4,"ngFor","ngForOf"],["fxLayout","row","fxLayoutAlign","start start",1,"padding-gap-x-large","mt-1"],["mat-flat-button","","color","primary","type","button","tabindex","2",3,"click"],["fxLayout","row","fxFlex","100",3,"selectedSwapType","swapsData","flgLoading","emptyTableMessage"],["tabindex","1","mat-tab-link","",1,"mat-tab-label",3,"click","active","routerLink"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1),v.qSk(),e.j41(1,"svg",2)(2,"g",3)(3,"g",4),e.nrm(4,"circle",5)(5,"path",6)(6,"path",7),e.k0s()()(),v.joV(),e.j41(7,"span",8),e.EFF(8,"Boltz"),e.k0s()(),e.j41(9,"div",9)(10,"mat-card")(11,"mat-card-content",10)(12,"nav",11),e.DNE(13,U2,2,5,"div",12),e.k0s(),e.nrm(14,"mat-tab-nav-panel",null,0),e.j41(16,"div",13)(17,"button",14),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onSwap(I.selectedSwapType))}),e.EFF(18),e.k0s()(),e.nrm(19,"rtl-boltz-swaps",15),e.k0s()()()}if(2&D){const Oe=e.sdS(15);e.R7$(12),e.Y8G("tabPanel",Oe),e.R7$(),e.Y8G("ngForOf",I.links),e.R7$(5),e.SpI("Start ",I.activeTab.name),e.R7$(),e.Y8G("selectedSwapType",I.selectedSwapType)("swapsData",I.swapsData)("flgLoading",I.flgLoading)("emptyTableMessage",I.emptyTableMessage)}},dependencies:[w.Sq,es.$z,K.RN,K.m2,Ie.DJ,Ie.sA,Ie.UI,Ut.Bu,Ut.hQ,Ut.Ql,lo.Wk,Iu],encapsulation:2}))}return b(),_})();class Vr{constructor(_){this.help=_}}function Ou(b,_){if(1&b&&(e.j41(0,"mat-expansion-panel",8)(1,"mat-expansion-panel-header")(2,"mat-panel-title"),e.EFF(3),e.k0s()(),e.j41(4,"mat-panel-description",9),e.nrm(5,"span",10),e.j41(6,"a",11),e.EFF(7),e.k0s()()()),2&b){const m=e.XpG().$implicit,E=e.XpG();e.R7$(3),e.JRh(m.help.question),e.R7$(2),e.Y8G("innerHTML",m.help.answer,e.npT),e.R7$(),e.Y8G("routerLink",E.flgLoggedIn?m.help.link:"/login"),e.R7$(),e.JRh(E.flgLoggedIn?m.help.linkCaption:"Login to go to the page")}}function b3(b,_){if(1&b&&(e.j41(0,"div",6),e.DNE(1,Ou,8,4,"mat-expansion-panel",7),e.k0s()),2&b){const m=_.$implicit,E=e.XpG();e.R7$(),e.Y8G("ngIf","ALL"===m.help.lnImplementation||m.help.lnImplementation===E.selNode.lnImplementation)}}let s1=(()=>{var b;class _{constructor(E,D){this.store=E,this.sessionService=D,this.helpTopics=[],this.faQuestion=Ti.EvL,this.LNPLink="/lnd/",this.flgLoggedIn=!1,this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{this.selNode=E,this.selNode.lnImplementation&&""!==this.selNode.lnImplementation.trim()&&(this.LNPLink="/"+this.selNode.lnImplementation.toLowerCase()+"/",this.addHelpTopics())}),this.sessionService.watchSession().pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.flgLoggedIn=!!E.token}),this.sessionService.getItem("token")&&(this.flgLoggedIn=!0)}addHelpTopics(){this.helpTopics=[],this.helpTopics.push(new Vr({question:"Getting started",answer:'Funding your node is the first step to get started.\nGo to the "On-chain" page of the app:\n1. Generate a new address on the "Recieve" tab.\n2. Send funds to the address.\n3. Wait for the balance to be confirmed on-chain before proceeding further.\n3. Connecting with network peers and opening channels is next.\n',link:this.LNPLink+"onchain/receive/utxos",linkCaption:"On-Chain",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Connect with peers",answer:'Connect with network peers to open channels with them.\nGo to "Peer/Channels" page under the "Lightning" menu :\n1. Get the peer pubkey and host address in the pubkey@ip:port format.\n2. On the "Peers" enter the peer address and connect.\n3. Once the peer is connected, you can open channel with the peer.\n4. A variety of actions can be performed on the connected peers page for each peer:\n a. View Info - View the peer details.\n b. Open Channel - Open channel with the peer.\n c. Disconnect - Disconnect from the peer.\n',link:this.LNPLink+"connections/peers",linkCaption:"Peers",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Opening Channels",answer:'Open channels with a connected peer.\nGo to "Peer/Channels" page under the "Lightning" menu:\n1. On the "Channels" section, click on "Open Channel"\n2. On the "Open Channel" modal, select the alias of the connected peer from the drop-down\n2. Specify the amount to commit to the channel and click on "Open Channel".\n3. There are a variety of options available while opening a channel. \n a. Private Channel - When this option is selected, a private channel is opened with the peer. \n b. Priority (advanced option) - Specify either Target confirmation Block or Fee in Sat/vByte. \n c. Spend Unconfirmd Output (advanced option) - Allow channels to be opened with unconfirmed UTXOs.\n4. Track the pending open channels under the "Pending" tab. \n5. Wait for the channel to be confirmed. Only a confimed channel can be used for payments or routing. \n',link:this.LNPLink+"connections/channels/open",linkCaption:"Channels",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Channel Management",answer:'Channel maintenance and balance score.\nGo to "Peer/Channels" page under the "Lightning" menu:\n1. A variety of actions can be perfomed on the open channels under the "Open" tab, with the "Actions" button:\n a. View Info - View the channel details.\n b. View Remote Fee - View the fee policy on the channel of the remote peer.\n c. Update Fee Policy - Modify the fee policy on the channel.\n d. Circular Rebalance - Off-chain rebalance channels by making a payment to yourself across a circular path of chained payment channels.\n e. Close Channel - Close the channel.\n2. Balance Score is a "balancedness" metric score for the channel. \n a. It helps measure how balanced the remote and local balances are, on a channel.\n b. A perfectly balanced channel has a score of one, where as a completely lopsided one has a score of zero.\n c. The formula for calculating the score is "1 - abs((local bal - remote bal)/total bal)".\n',link:this.LNPLink+"connections/channels/open",linkCaption:"Channels",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Buying Liquidity",answer:'Buying liquidity for your node.\nGo to "Liquidity Ads" page under the "Lightning" menu:\n 1. Filter ads by liquidity amount and channel opening fee rate.\n 2. Research additionally on liquidity provider nodes before selecting.\n 3. Select the best liquidity node peer for your need and click on "Open Channel" from "Actions" drop-down.\n 4. Confirm amount, rates and total cost on the modal and click on "Execute" to buy liquidity.\n',link:this.LNPLink+"liquidityads",linkCaption:"Liquidity Ads",lnImplementation:"CLN"})),this.helpTopics.push(new Vr({question:"Payments",answer:'Sending Payments from your node.\nGo to the "Transactions" page under the "Lightning" menu :\nPayments tab is for making payments via your node\n 1. Input a non-expired lightning invoice (Bolt11 format) in the "Payment Request" field and click on "Send Payment" to send.\n 2. Advanced option # 1 (LND only) - Specify a limit on the routing fee which you are willing to pay, for the payment.\n 3. Advanced option # 2 (LND only) - Specify the outgoing channel which you want the payment to go through.\n',link:this.LNPLink+"transactions/payments",linkCaption:"Payments",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Invoices",answer:'Receiving Payments on your node.\nGo to the "Transactions" page under the "Lightning" menu :\nInvoices tab is for receiving payments on your node.\n 1. Memo - Description you want to provide on the invoice.\n 2. Expiry - The time period, after which the invoice will be invalid.\n 3. Private Routing Hints - Generate an invoice with routing hints for private channels.\n',link:this.LNPLink+"transactions/invoices",linkCaption:"Invoices",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Offers",answer:'Send offer payments, create offer invoices and bookmark paid offers on your node.\nGo to the "Transactions" page under the "Lightning" menu :\nPayment for bolt12 offer invoice can be done on "Payments" tab:\n 1. Click on "Send Payment" button.\n 2. Select "Offer" option on the modal.\n 2. Offer Request - Input offer request (Bolt12 format) in the input box.\n 3. Bookmark - Select the checkbox to bookmark this offer for future use.\nOffers tab is for creating bolt12 offer invoice on your node:\n 1. Click on "Create Offer" button.\n 2. Description - Description you want to provide on the offer invoice.\n 3. Amount - Amount for the offer invoice.\n 4. issuer - issuer of the offer.\nPaid offer bookmarks shows the list of paid offers saved for future payments.\n',link:this.LNPLink+"transactions/offers",linkCaption:"Offers",lnImplementation:"CLN"})),this.helpTopics.push(new Vr({question:"Channel Backups",answer:'Channel Backups are important to ensure that you have means to recover funds in case of node failures.\nBackup folder location can be customized in the RTL config file with the channelBackupPath field.\nRTL automatically creates all channel backup on server startup, as well as everytime a channel is opened or closed\nYou can verify the all channel backup file by clicking on "Verify All" Button on the backup page.\nYou can also backup each channel individually and verify them.\n** Keep taking backups of your channels regularly and store them in redundant locations **.\n',link:this.LNPLink+"channelbackup/bckup",linkCaption:"Channel Backups",lnImplementation:"LND"})),this.helpTopics.push(new Vr({question:"Channel Restore",answer:'Channel Restore is used to recover funds from the channel backup files in case of node failures.\nFollow the below steps to perform fund restoration.\n\nPrerequisite:\n1. The node has been restored with the LND recovery seed.\n2. RTL generated channel backup file/s is available (all channel backup file is channel-all.bak).\n\nRecovery:\n1. Create a restore folder in your folder backup location, as specified in the RTL config file.\n2. Place the channel backup file in the restore folder.\n3. Go to the "Restore" tab under the "Backup" page of RTL.\n4. RTL will list the options to restore funds from the all channel file or individual channel backup file.\n5. Click on the Restore icon on the grid to restore the funds.\n6. Once the restore function is executed successfully, RTL will rename the backup file and it will not be accessible from the UI.\n7. Restore function will force close the channels and recover the funds from them.\n8. The pending close channels can be viewed under the "Pending" tab on the "Peer/Channels" page.\n9. Once the channel is closed, the corresponding pending on-chain transactions can be viewed on the "On-Chain" page.\n10. Once the transactions are confirmed, the channels funds will be restored to your LND Wallet.\n',link:this.LNPLink+"channelbackup/restore",linkCaption:"Channel Restore",lnImplementation:"LND"})),this.helpTopics.push(new Vr({question:"Forwarding History",answer:'Transactions routed by the node.\nGo to "Routing" page under the "Lightning" menu :\nTransactions routed by the node are listed on this page along with channels and the fee earned by transaction.\n',link:this.LNPLink+"routing/forwardinghistory",linkCaption:"Forwarding History",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Lightning Reports",answer:'Routing and transactions data reports.\nGo to "Reports" page under the "Lightning" menu :\nReport can be generated on monthly/yearly basis by selecting the reporting period, month, and year.\n',link:this.LNPLink+"reports/routingreport",linkCaption:"Reports",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Graph Lookup",answer:'Querying your node graph for network node and channel information.\nGo to "Graph Lookup" page under the "Lightning" menu :\nEach node maintains a network graph for the information on all the nodes and channels on the network.\nYou can lookup information on nodes and channels from your graph:\n 1. Node Lookup - Enter the pubkey to perform the lookup.\n 2. Channel Lookup - Enter the short channel ID to perform the lookup.\n',link:this.LNPLink+"graph/lookups",linkCaption:"Graph Lookup",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Query Route",answer:'Querying Payment Routes.\nGo to the "Graph Lookup" page under the "Lightning" menu :\nQuery Routes tab is for querying a potential path to a node and a routing fee estimate for a payment amount.\n 1. Destination Pubkey - Pubkey of the node, you want to send the payment to.\n 2. Amount - Amount in Sats, which you want to send to the node.\n',link:this.LNPLink+"graph/queryroutes",linkCaption:"Query Routes",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Sign & Verify Messages",answer:'Messages signing and verification.\nGo to the "Sign/Verify" page under the "Lightning" menu :\n 1. Sign your message on "Sign" tab.\n 2. Go to "Verify" tab to verify a message.\n',link:this.LNPLink+"messages/sign",linkCaption:"Messages",lnImplementation:"LND"})),this.helpTopics.push(new Vr({question:"Sign & Verify Messages",answer:'Messages signing and verification.\nGo to the "Sign/Verify" page under the "Lightning" menu :\n 1. Sign your message on "Sign" tab.\n 2. Go to "Verify" tab to verify a message.\n',link:this.LNPLink+"messages/sign",linkCaption:"Messages",lnImplementation:"CLN"})),this.helpTopics.push(new Vr({question:"Node Settings",answer:'RTL offers certain customizations on the UI to personalize your experience on the app\nGo to "Node Config" page to access the customization options.\nNode Layout Options\n 1. User Persona - Two options are available to change the dashboard based on the persona.\n 2. Currency Unit - You can choose your preferred fiat currency, to view the onchain and channel balances in the choosen fiat currency.\n 3. Other customizations include day and night mode and a choice of color themes to select from.\nServices Options\n Loop (LND only), Boltz (LND only) & Peerswap (CLN only) services can be configured.\nExperimental Options (CLN only)\n Offers and Liquidity Ads can be enabled/disabled.\nShow LN Config (if configured)\n Shows lightning config file.\n',link:"../config/nodesettings",linkCaption:"Node Settings",lnImplementation:"ALL"})),this.helpTopics.push(new Vr({question:"Application Settings",answer:'RTL also offers certain customizations on the application level\nGo to top right menu "Settings" page to access these options.\nDefault Node Option\nIf you are managing multiple nodes via RTL UI, you can select the default node to load upon login.\nAuthentication Option\nPassword and 2FA update options are available here.\nShow Bitcoin Config (if configured)\n Shows bitcoin config file.\n',link:"../settings/app",linkCaption:"Application Settings",lnImplementation:"ALL"}))}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(mi.il),e.rXU(ji.Q))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-help"]],standalone:!1,decls:8,vars:2,consts:[["fxLayout","column","fxFlex","100"],["fxLayout","row","fxLayoutAlign","start center",1,"page-title-container"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start start",1,"padding-gap-x"],["fxFlex","100",4,"ngFor","ngForOf"],["fxFlex","100"],["class","flat-expansion-panel help-expansion mb-2px",4,"ngIf"],[1,"flat-expansion-panel","help-expansion","mb-2px"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start start"],[1,"pre-wrap",3,"innerHTML"],[1,"mt-2",3,"routerLink"]],template:function(D,I){1&D&&(e.j41(0,"div",0)(1,"div",1),e.nrm(2,"fa-icon",2),e.j41(3,"span",3),e.EFF(4,"Help"),e.k0s()(),e.j41(5,"div",4)(6,"div",0),e.DNE(7,b3,2,1,"div",5),e.k0s()()()),2&D&&(e.R7$(2),e.Y8G("icon",I.faQuestion),e.R7$(5),e.Y8G("ngForOf",I.helpTopics))},dependencies:[w.Sq,w.bT,os.aY,or.GK,or.Z2,or.WN,or.Q6,Ie.DJ,Ie.sA,Ie.UI,lo.Wk],styles:[".mat-mdc-card-content[_ngcontent-%COMP%]{margin-bottom:4px}"]}))}return b(),_})();var Ru=l(4572);function H2(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Token is required."),e.k0s())}let Pu=(()=>{var b;class _{constructor(E,D){this.dialogRef=E,this.store=D,this.token=""}onClose(){this.dialogRef.close(null)}onVerifyToken(){if(!this.token)return!0;this.dialogRef.close(),this.store.dispatch((0,Bi.R$)({payload:{twoFAToken:this.token}}))}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ro.CP),e.rXU(mi.il))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-login-token"]],standalone:!1,decls:19,vars:2,consts:[["tokenForm","ngForm"],["fxLayout","column","fxLayout.gt-sm","row","fxLayoutAlign","space-between stretch"],["fxFlex","100"],["fxLayout","row","fxLayoutAlign","space-between center",1,"modal-info-header"],["fxFlex","95","fxLayoutAlign","start start"],[1,"page-title"],["tabindex","3","fxFlex","5","fxLayoutAlign","center center","mat-button","",1,"btn-close-x","p-0",3,"click"],["fxLayout","row",1,"padding-gap-x-large"],["fxLayout","column","fxFlex","100",3,"ngSubmit"],["autoFocus","","matInput","","type","text","id","token","name","token","tabindex","2","required","",3,"ngModelChange","ngModel"],[4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-1"],["mat-button","","color","primary","tabindex","4","type","submit"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card-header",3)(3,"div",4)(4,"span",5),e.EFF(5,"Two Factor Token"),e.k0s()(),e.j41(6,"button",6),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onClose())}),e.EFF(7,"X"),e.k0s()(),e.j41(8,"mat-card-content",7)(9,"form",8,0),e.bIt("ngSubmit",function(){return v.eBV(Oe),v.Njj(I.onVerifyToken())}),e.j41(11,"mat-form-field")(12,"mat-label"),e.EFF(13,"Token"),e.k0s(),e.j41(14,"input",9),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.token,Bt)||(I.token=Bt),v.Njj(Bt)}),e.k0s(),e.DNE(15,H2,2,0,"mat-error",10),e.k0s(),e.j41(16,"div",11)(17,"button",12),e.EFF(18,"Verify Token"),e.k0s()()()()()()}2&D&&(e.R7$(14),e.R50("ngModel",I.token),e.R7$(),e.Y8G("ngIf",!I.token))},dependencies:[w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,es.$z,K.m2,K.MM,br.fg,Ma.rl,Ma.nJ,Ma.TL,Ie.DJ,Ie.sA,Ie.UI,Kl.N],encapsulation:2}))}return b(),_})();const C3=b=>({"padding-gap-large":b}),r1=(b,_)=>({"font-size-200":b,"font-size-300":_});function Fu(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Password is required."),e.k0s())}function Nu(b,_){if(1&b&&(e.j41(0,"p",21)(1,"mat-icon",22),e.EFF(2,"close"),e.k0s(),e.EFF(3),e.k0s()),2&b){const m=e.XpG();e.R7$(3),e.SpI(" ",m.loginErrorMessage," ")}}function Bc(b,_){if(1&b&&(e.j41(0,"p",23)(1,"mat-icon",22),e.EFF(2,"close"),e.k0s(),e.EFF(3),e.k0s()),2&b){const m=e.XpG();e.R7$(3),e.SpI(" ",m.logoutReason," ")}}let W2=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt){this.actions=E,this.logger=D,this.store=I,this.rtlEffects=Oe,this.commonService=Ct,this.sessionService=Bt,this.faUnlockAlt=Ti.HEq,this.logoutReason="",this.password="",this.rtlSSO=0,this.rtlCookiePath="",this.accessKey="",this.flgShow=!1,this.screenSize="",this.screenSizeEnum=_t.f7,this.loginErrorMessage="",this.apiCallStatusEnum=_t.wn,this.unSubs=[new gi.B,new gi.B,new gi.B]}ngOnInit(){this.screenSize=this.commonService.getScreenSize(),(0,Ru.z)([this.store.select(Oa.Kq),this.store.select(Oa.E2)]).pipe((0,li.Q)(this.unSubs[0])).subscribe(([D,I])=>{this.loginErrorMessage="",D.status===_t.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof D.message?JSON.stringify(D.message):D.message),this.logger.error(D.message)),I.status===_t.wn.ERROR&&(this.loginErrorMessage=this.loginErrorMessage+("object"==typeof I.message?JSON.stringify(I.message):I.message),this.logger.error(I.message))}),this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[1])).subscribe(D=>{this.appConfig=D,this.logger.info(D)}),this.actions.pipe((0,za.p)(D=>D.type===_t.aU.LOGOUT),(0,Dr.s)(1)).subscribe(D=>{this.logoutReason=D.payload});const E=this.sessionService.getItem("logoutReason");E&&(this.logoutReason=E,this.sessionService.removeItem("logoutReason"))}onLogin(){if(!this.password)return!0;this.loginErrorMessage="",this.logoutReason="",this.appConfig.enable2FA?(this.store.dispatch((0,Bi.xO)({payload:{maxWidth:"35rem",data:{component:Pu}}})),this.rtlEffects.closeAlert.pipe((0,Dr.s)(1)).subscribe(E=>{E&&this.store.dispatch((0,Bi.iD)({payload:{password:_c(this.password),defaultPassword:_t.Ah.includes(this.password.toLowerCase()),twoFAToken:E.twoFAToken}}))})):this.store.dispatch((0,Bi.iD)({payload:{password:_c(this.password),defaultPassword:_t.Ah.includes(this.password.toLowerCase())}}))}resetData(){this.password="",this.loginErrorMessage="",this.logoutReason="",this.flgShow=!1}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Uo.En),e.rXU(Aa.gP),e.rXU(mi.il),e.rXU(Ko.H),e.rXU(Qo.h),e.rXU(ji.Q))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-login"]],standalone:!1,decls:29,vars:14,consts:[["loginForm","ngForm"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"login-container"],["fxLayout","row","fxFlex.gt-sm","35","fxLayoutAlign","center center"],["fxLayout","row","fxFlex","45","fxLayoutAlign","center stretch"],["fxLayout","column","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign","stretch stretch"],["fxFlex","35","fxLayoutAlign","center center",1,"bg-primary"],["alt","RTL Logo","src","assets/images/RTL-Horse-BY.svg",1,"rtl-logo-svg"],["fxFlex","65","fxLayout","column","fxLayoutAlign","center stretch",3,"ngClass"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","mt-2","p-0"],[1,"font-bold-500",3,"ngClass"],[1,"page-title"],[1,"pb-2"],["fxLayout","column","fxLayoutAlign","start space-between"],["autoFocus","","matInput","","id","password","name","password","tabindex","1","required","",3,"ngModelChange","type","ngModel"],["mat-icon-button","","matSuffix","","tabindex","2","type","button",3,"click"],[4,"ngIf"],["class","color-warn pre-wrap","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","color-warn pre-wrap","fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","end center",1,"mt-2"],["mat-stroked-button","","color","primary","tabindex","2","type","reset",1,"mr-1","mb-2",3,"click"],["mat-flat-button","","color","primary","tabindex","3","type","submit",3,"click"],["fxFlex","100","fxLayoutAlign","start center",1,"color-warn","pre-wrap"],["fxLayoutAlign","center center",1,"mr-3px","icon-small"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"color-warn","pre-wrap"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",1)(1,"div",2)(2,"mat-card",3)(3,"div",4)(4,"div",5),e.nrm(5,"img",6),e.k0s(),e.j41(6,"div",7)(7,"mat-card-header",8)(8,"mat-card-title",9)(9,"span",10),e.EFF(10,"Welcome"),e.k0s()()(),e.j41(11,"mat-card-content",11)(12,"form",12,0)(14,"mat-form-field")(15,"mat-label"),e.EFF(16,"Password"),e.k0s(),e.j41(17,"input",13),e.mxI("ngModelChange",function(Bt){return v.eBV(Oe),e.DH7(I.password,Bt)||(I.password=Bt),v.Njj(Bt)}),e.k0s(),e.j41(18,"button",14),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.flgShow=!I.flgShow)}),e.j41(19,"mat-icon"),e.EFF(20),e.k0s()(),e.DNE(21,Fu,2,0,"mat-error",15),e.k0s(),e.DNE(22,Nu,4,1,"p",16)(23,Bc,4,1,"p",17),e.j41(24,"div",18)(25,"button",19),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.resetData())}),e.EFF(26,"Clear"),e.k0s(),e.j41(27,"button",20),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onLogin())}),e.EFF(28,"Login"),e.k0s()()()()()()()()()}2&D&&(e.R7$(6),e.Y8G("ngClass",e.eq3(9,C3,I.screenSize===I.screenSizeEnum.XS)),e.R7$(2),e.Y8G("ngClass",e.l_i(11,r1,I.screenSize===I.screenSizeEnum.XS,I.screenSize!==I.screenSizeEnum.XS)),e.R7$(9),e.Y8G("type",I.flgShow?"text":"password"),e.R50("ngModel",I.password),e.R7$(),e.BMQ("aria-label","Hide password"),e.R7$(2),e.JRh(I.flgShow?"visibility_off":"visibility"),e.R7$(),e.Y8G("ngIf",!I.password),e.R7$(),e.Y8G("ngIf",""!==I.loginErrorMessage),e.R7$(),e.Y8G("ngIf",""!==I.logoutReason))},dependencies:[w.YU,w.bT,hi.qT,hi.me,hi.BC,hi.cb,hi.YS,hi.vS,hi.cV,es.$z,Jc.iY,K.RN,K.m2,K.MM,K.dh,qc.An,br.fg,Ma.rl,Ma.nJ,Ma.TL,Ma.yw,Ie.DJ,Ie.sA,Ie.UI,cl.PW,Kl.N],styles:[".login-container[_ngcontent-%COMP%]{height:60vh;margin-top:15%}.login-container[_ngcontent-%COMP%] .mat-mdc-card[_ngcontent-%COMP%]{height:30rem}.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:100%}@media only screen and (max-width:56.25em){.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:37%}}@media only screen and (max-width:37.5em){.login-container[_ngcontent-%COMP%] .rtl-logo-svg[_ngcontent-%COMP%]{width:70%}}.login-container[_ngcontent-%COMP%] .material-icons.mat-icon[_ngcontent-%COMP%]{font-size:90%;cursor:pointer}"]}))}return b(),_})();var V1=l(13);let x3=(()=>{var b;class _{constructor(E,D){this.activatedRoute=E,this.router=D,this.error={errorCode:"",errorMessage:""},this.faTimes=Ti.GRI,this.unsubs=[new gi.B,new gi.B]}ngOnInit(){this.activatedRoute.paramMap.pipe((0,li.Q)(this.unsubs[0])).subscribe(E=>{this.error=window.history.state})}goToHelp(){this.router.navigate(["/help"])}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Ha.nX),e.rXU(Ha.Ix))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-error"]],standalone:!1,decls:13,vars:3,consts:[["fxLayout","row","fxFlex","100","fxLayoutAlign","center center"],["fxLayout","column","fxFlex","60","fxLayoutAlign","start center"],["fxLayout","row","fxLayoutAlign","center center",1,"page-title-container","padding-gap-large"],[1,"font-size-300","font-bold-500"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["fxLayout","column","fxLayoutAlign","center center",1,"padding-gap-large"],[1,"box-text","font-size-120"],["fxLayout","row","fxLayoutAlign","center","fxFlex","80"],["mat-flat-button","","color","primary","type","button",1,"mt-2",3,"click"]],template:function(D,I){1&D&&(e.j41(0,"div",0)(1,"mat-card",1)(2,"mat-card-header",2)(3,"mat-card-title",3),e.nrm(4,"fa-icon",4),e.j41(5,"span",5),e.EFF(6),e.k0s()()(),e.j41(7,"mat-card-content",6)(8,"div",7),e.EFF(9),e.k0s(),e.j41(10,"span",8)(11,"button",9),e.bIt("click",function(){return I.goToHelp()}),e.EFF(12,"Go To Help"),e.k0s()()()()()),2&D&&(e.R7$(4),e.Y8G("icon",I.faTimes),e.R7$(2),e.SpI("Error ",I.error.errorCode),e.R7$(3),e.JRh(I.error.errorMessage))},dependencies:[os.aY,es.$z,K.RN,K.m2,K.MM,K.dh,Ie.DJ,Ie.sA,Ie.UI],encapsulation:2}))}return b(),_})();var co=l(7186),o1=l(1534),om=l(92),lm=l(6114);const U1=(b,_)=>({"alert-danger":b,"alert-info":_});function E3(b,_){1&b&&e.nrm(0,"span",17)}function Od(b,_){1&b&&e.nrm(0,"span",18)}function X2(b,_){if(1&b){const m=e.RV6();e.j41(0,"form",19,0)(2,"div",20),e.nrm(3,"fa-icon",4),e.j41(4,"span"),e.EFF(5,"Please ensure that "),e.j41(6,"strong"),e.EFF(7,"experimental-offers"),e.k0s(),e.EFF(8," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),e.j41(9,"strong")(10,"a",21),e.EFF(11,"here"),e.k0s()(),e.EFF(12," to learn more about Core Lightning offers."),e.k0s()(),e.j41(13,"h4",22),e.EFF(14,"Description"),e.k0s(),e.j41(15,"span"),e.EFF(16,"Offers is a draft specification (also referred as BOLT12) for Lightning nodes and wallets, with experimental support in Core Lightning."),e.k0s(),e.j41(17,"h4",22),e.EFF(18,"Links"),e.k0s(),e.j41(19,"span")(20,"a",23),e.EFF(21,"Core lightning Bolt12"),e.k0s()(),e.nrm(22,"mat-divider",24),e.j41(23,"div",25),e.nrm(24,"fa-icon",4),e.j41(25,"span"),e.EFF(26,"Do not get an Offer tattoo until spec is fully ratified!"),e.k0s()(),e.j41(27,"mat-slide-toggle",26),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(2);return e.DH7(I.enableOffers,D)||(I.enableOffers=D),v.Njj(D)}),e.bIt("change",function(){v.eBV(m);const D=e.XpG(2);return v.Njj(D.onUpdateFeature())}),e.EFF(28),e.k0s()()}if(2&b){const m=e.XpG(2);e.R7$(3),e.Y8G("icon",m.faInfoCircle),e.R7$(19),e.Y8G("inset",!0),e.R7$(2),e.Y8G("icon",m.faExclamationTriangle),e.R7$(3),e.R50("ngModel",m.enableOffers),e.R7$(),e.SpI("Enable Offers ",m.enableOffers?"(You can find Offers under Lightning -> Transactions -> Offers)":"")}}function M3(b,_){if(1&b&&(e.j41(0,"div")(1,"div",29),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"Please ensure that "),e.j41(5,"strong"),e.EFF(6,"experimental-dual-fund"),e.k0s(),e.EFF(7," flag is set to true in the Core Lightning config before enabling it in RTL. Click "),e.j41(8,"strong")(9,"a",30),e.EFF(10,"here"),e.k0s()(),e.EFF(11," to learn more about Core Lightning Liquidity Ads."),e.k0s()()()),2&b){const m=e.XpG(3);e.R7$(2),e.Y8G("icon",m.faExclamationTriangle)}}function S3(b,_){if(1&b&&(e.j41(0,"mat-option",47),e.EFF(1),e.nI1(2,"titlecase"),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m),e.R7$(),e.SpI(" ",e.bMT(2,2,m.id)," ")}}function cm(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(4);e.R7$(),e.SpI("",m.selPolicyType.placeholder," is required.")}}function T3(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(4);e.R7$(),e.Lme("",m.selPolicyType.placeholder," must be greater than or equal to ",m.selPolicyType.min,".")}}function D3(b,_){if(1&b&&(e.j41(0,"mat-error"),e.EFF(1),e.k0s()),2&b){const m=e.XpG(4);e.R7$(),e.Lme("",m.selPolicyType.placeholder," must be less than or equal to ",m.selPolicyType.max,".")}}function dm(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Lease base fee is required."),e.k0s())}function Nf(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Lease base basis is required."),e.k0s())}function w3(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Max channel routing base fee is required."),e.k0s())}function A3(b,_){1&b&&(e.j41(0,"mat-error"),e.EFF(1,"Max channel routing fee rate is required."),e.k0s())}function l1(b,_){if(1&b&&(e.j41(0,"h4",48)(1,"span",49),e.EFF(2),e.k0s()()),2&b){const m=e.XpG(4);e.R7$(),e.Y8G("ngClass",e.l_i(2,U1,!!m.updateMsg.error,!!m.updateMsg.data)),e.R7$(),e.SpI(" ",m.updateMsg.error&&""!==m.updateMsg.error?`Error: ${m.updateMsg.error||"Unknown Error"}`:m.updateMsg.data&&""!==m.updateMsg.data?m.updateMsg.data:"Successfully Updated the Funding Policy!"," ")}}function um(b,_){if(1&b){const m=e.RV6();e.j41(0,"div",31)(1,"div",32),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"These config changes should be configured permanently via the config file on your CLN node otherwise the policy would need to be configured again, if your node restarts."),e.k0s()(),e.j41(5,"div",33)(6,"mat-form-field",34)(7,"mat-label"),e.EFF(8,"Policy"),e.k0s(),e.j41(9,"mat-select",35),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(3);return e.DH7(I.selPolicyType,D)||(I.selPolicyType=D),v.Njj(D)}),e.bIt("selectionChange",function(){v.eBV(m);const D=e.XpG(3);return v.Njj(D.policyMod=null)}),e.DNE(10,S3,3,4,"mat-option",36),e.k0s()(),e.j41(11,"mat-form-field",37)(12,"mat-label"),e.EFF(13),e.k0s(),e.j41(14,"input",38,1),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(3);return e.DH7(I.policyMod,D)||(I.policyMod=D),v.Njj(D)}),e.k0s(),e.j41(16,"mat-hint"),e.EFF(17),e.k0s(),e.DNE(18,cm,2,1,"mat-error",27)(19,T3,2,2,"mat-error",27)(20,D3,2,2,"mat-error",27),e.k0s()(),e.j41(21,"div",33)(22,"mat-form-field",37)(23,"mat-label"),e.EFF(24,"Lease Base Fee (Sats)"),e.k0s(),e.j41(25,"input",39),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(3);return e.DH7(I.lease_fee_base_sat,D)||(I.lease_fee_base_sat=D),v.Njj(D)}),e.k0s(),e.DNE(26,dm,2,0,"mat-error",27),e.k0s(),e.j41(27,"mat-form-field",37)(28,"mat-label"),e.EFF(29,"Lease Base Basis (bps)"),e.k0s(),e.j41(30,"input",40),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(3);return e.DH7(I.lease_fee_basis,D)||(I.lease_fee_basis=D),v.Njj(D)}),e.k0s(),e.DNE(31,Nf,2,0,"mat-error",27),e.k0s()(),e.j41(32,"div",33)(33,"mat-form-field",37)(34,"mat-label"),e.EFF(35,"Max Channel Routing Base Fee (Sats)"),e.k0s(),e.j41(36,"input",41),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(3);return e.DH7(I.channelFeeMaxBaseSat,D)||(I.channelFeeMaxBaseSat=D),v.Njj(D)}),e.k0s(),e.DNE(37,w3,2,0,"mat-error",27),e.k0s(),e.j41(38,"mat-form-field",37)(39,"mat-label"),e.EFF(40,"Max Channel Routing Fee Rate (ppm)"),e.k0s(),e.j41(41,"input",42),e.mxI("ngModelChange",function(D){v.eBV(m);const I=e.XpG(3);return e.DH7(I.channelFeeMaxProportional,D)||(I.channelFeeMaxProportional=D),v.Njj(D)}),e.k0s(),e.DNE(42,A3,2,0,"mat-error",27),e.k0s()(),e.DNE(43,l1,3,5,"h4",43),e.j41(44,"div",44)(45,"button",45),e.bIt("click",function(){v.eBV(m);const D=e.XpG(3);return v.Njj(D.onResetPolicy())}),e.EFF(46,"Reset"),e.k0s(),e.j41(47,"button",46),e.bIt("click",function(){v.eBV(m);const D=e.XpG(3);return v.Njj(D.onUpdateFundingPolicy())}),e.EFF(48,"Update"),e.k0s()()()}if(2&b){const m=e.XpG(3);e.R7$(2),e.Y8G("icon",m.faExclamationTriangle),e.R7$(7),e.R50("ngModel",m.selPolicyType),e.R7$(),e.Y8G("ngForOf",m.policyTypes),e.R7$(3),e.JRh(m.selPolicyType.placeholder),e.R7$(),e.Y8G("step","fixed"===m.selPolicyType.id?1e3:10)("min",m.selPolicyType.min)("max",m.selPolicyType.max),e.R50("ngModel",m.policyMod),e.R7$(3),e.E5c("",m.selPolicyType.placeholder," should be between ",m.selPolicyType.min," and ",m.selPolicyType.max),e.R7$(),e.Y8G("ngIf",!m.policyMod),e.R7$(),e.Y8G("ngIf",m.policyModm.selPolicyType.max),e.R7$(5),e.R50("ngModel",m.lease_fee_base_sat),e.R7$(),e.Y8G("ngIf",!m.lease_fee_base_sat),e.R7$(4),e.R50("ngModel",m.lease_fee_basis),e.R7$(),e.Y8G("ngIf",!m.lease_fee_basis),e.R7$(5),e.R50("ngModel",m.channelFeeMaxBaseSat),e.R7$(),e.Y8G("ngIf",!m.channelFeeMaxBaseSat),e.R7$(4),e.R50("ngModel",m.channelFeeMaxProportional),e.R7$(),e.Y8G("ngIf",!m.channelFeeMaxProportional),e.R7$(),e.Y8G("ngIf",m.flgUpdateCalled)}}function K2(b,_){if(1&b&&(e.j41(0,"form",19,0),e.DNE(2,M3,12,1,"div",27)(3,um,49,23,"div",28),e.k0s()),2&b){const m=e.XpG(2);e.R7$(2),e.Y8G("ngIf",!m.features[1].enabled),e.R7$(),e.Y8G("ngIf",m.features[1].enabled)}}function Rd(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-expansion-panel",10),e.bIt("opened",function(){const D=v.eBV(m).index,I=e.XpG();return v.Njj(I.onPanelExpanded(D))}),e.j41(1,"mat-expansion-panel-header")(2,"mat-panel-title",11)(3,"h4",12),e.EFF(4),e.k0s(),e.j41(5,"h4",12),e.DNE(6,E3,1,0,"span",13)(7,Od,1,0,"span",14),e.EFF(8),e.k0s()()(),e.j41(9,"div",15),e.DNE(10,X2,29,5,"form",16)(11,K2,4,2,"form",16),e.k0s()()}if(2&b){const m=_.$implicit,E=_.index;e.Y8G("expanded",!1),e.R7$(4),e.JRh(m.name),e.R7$(2),e.Y8G("ngIf",m.enabled),e.R7$(),e.Y8G("ngIf",!m.enabled),e.R7$(),e.SpI(" ",m.enabled?"Enabled":"Disabled"," "),e.R7$(2),e.Y8G("ngIf",0===E),e.R7$(),e.Y8G("ngIf",1===E)}}let Y2=(()=>{var b;class _{constructor(E,D,I,Oe){this.logger=E,this.store=D,this.dataService=I,this.commonService=Oe,this.faInfoCircle=Ti.iW_,this.faExclamationTriangle=Ti.zpE,this.faCode=Ti.jTw,this.features=[{name:"Offers",enabled:!1},{name:"Channel Funding Policy",enabled:!1}],this.enableOffers=!1,this.fundingPolicy={},this.policyTypes=_t.ul,this.selPolicyType=_t.ul[0],this.flgUpdateCalled=!1,this.updateMsg={},this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){this.dataService.listConfigs().pipe((0,li.Q)(this.unSubs[0])).subscribe({next:E=>{this.logger.info("Received List Configs: "+JSON.stringify(E)),this.features[1].enabled=!!E.configs["experimental-dual-fund"].set},error:E=>{this.logger.error("List Configs Error: "+JSON.stringify(E)),this.features[1].enabled=!1}}),this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.selNode=E,this.enableOffers=this.selNode.settings.enableOffers||!1,this.features[0].enabled=this.enableOffers,this.logger.info(this.selNode)}),this.store.select(B0.Al).pipe((0,li.Q)(this.unSubs[2])).subscribe(E=>{this.policyTypes[2].max=E.balance.totalBalance||1e3})}onPanelExpanded(E){1===E&&!this.fundingPolicy.policy&&this.dataService.getOrUpdateFunderPolicy().pipe((0,li.Q)(this.unSubs[3])).subscribe(D=>{this.logger.info("Received Funder Update Policy: "+JSON.stringify(D)),this.fundingPolicy=D,this.fundingPolicy.policy&&(this.selPolicyType=_t.ul.find(I=>I.id===this.fundingPolicy.policy)||this.policyTypes[0]),this.policyMod=this.fundingPolicy.policy_mod||0===this.fundingPolicy.policy_mod?this.fundingPolicy.policy_mod:null,this.lease_fee_base_sat=this.fundingPolicy.lease_fee_base_msat?this.fundingPolicy.lease_fee_base_msat/1e3:0===this.fundingPolicy.lease_fee_base_msat?0:null,this.lease_fee_basis=this.fundingPolicy.lease_fee_basis||0===this.fundingPolicy.lease_fee_basis?this.fundingPolicy.lease_fee_basis:null,this.channelFeeMaxBaseSat=this.fundingPolicy.channel_fee_max_base_msat?this.fundingPolicy.channel_fee_max_base_msat/1e3:0===this.fundingPolicy.channel_fee_max_base_msat?0:null,this.channelFeeMaxProportional=this.fundingPolicy.channel_fee_max_proportional_thousandths||0===this.fundingPolicy.channel_fee_max_proportional_thousandths?1e3*this.fundingPolicy.channel_fee_max_proportional_thousandths:null})}onUpdateFeature(){this.logger.info(this.selNode),this.selNode.settings.enableOffers=this.enableOffers,this.features[0].enabled=this.enableOffers,this.store.dispatch((0,Bi.T$)({payload:this.selNode}))}onUpdateFundingPolicy(){this.flgUpdateCalled=!0,this.updateMsg={},this.dataService.getOrUpdateFunderPolicy(this.selPolicyType.id,this.policyMod,1e3*(this.lease_fee_base_sat||0),this.lease_fee_basis,1e3*(this.channelFeeMaxBaseSat||0),this.channelFeeMaxProportional?this.channelFeeMaxProportional/1e3:0).pipe((0,li.Q)(this.unSubs[4])).subscribe({next:E=>{this.logger.info(E),this.fundingPolicy=E,this.updateMsg={data:"Compact Lease: "+E.compact_lease},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)},error:E=>{this.logger.error(E),this.updateMsg={error:this.commonService.extractErrorMessage(E,"Error in updating funder policy")},setTimeout(()=>{this.flgUpdateCalled=!1},5e3)}})}onResetPolicy(){this.flgUpdateCalled=!1,this.updateMsg={},this.selPolicyType=this.fundingPolicy.policy?_t.ul.find(E=>E.id===this.fundingPolicy.policy)||this.policyTypes[0]:_t.ul[0],this.policyMod=this.fundingPolicy.policy_mod||0===this.fundingPolicy.policy_mod?this.fundingPolicy.policy_mod:null,this.lease_fee_base_sat=this.fundingPolicy.lease_fee_base_msat?this.fundingPolicy.lease_fee_base_msat/1e3:0===this.fundingPolicy.lease_fee_base_msat?0:null,this.lease_fee_basis=this.fundingPolicy.lease_fee_basis||0===this.fundingPolicy.lease_fee_basis?this.fundingPolicy.lease_fee_basis:null,this.channelFeeMaxBaseSat=this.fundingPolicy.channel_fee_max_base_msat?this.fundingPolicy.channel_fee_max_base_msat/1e3:0===this.fundingPolicy.channel_fee_max_base_msat?0:null,this.channelFeeMaxProportional=this.fundingPolicy.channel_fee_max_proportional_thousandths||0===this.fundingPolicy.channel_fee_max_proportional_thousandths?1e3*this.fundingPolicy.channel_fee_max_proportional_thousandths:null}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(mi.il),e.rXU(o1.u),e.rXU(Qo.h))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-experimental-settings"]],standalone:!1,decls:13,vars:3,consts:[["form","ngForm"],["plcMod","ngModel"],["fxLayout","column","fxFlex","100",3,"perfectScrollbar"],[1,"alert","alert-info","mt-1"],[1,"mr-1","alert-icon",3,"icon"],["fxLayout","column","fxLayoutAlign","start stretch",1,"page-sub-title-container","mt-1"],["fxLayout","row"],[1,"page-title-img","mr-1",3,"icon"],[1,"page-title"],["class","flat-expansion-panel my-1",3,"expanded","opened",4,"ngFor","ngForOf"],[1,"flat-expansion-panel","my-1",3,"opened","expanded"],["fxFlex","100","fxLayoutAlign","space-between center"],[1,"font-bold-500"],["class","dot green",4,"ngIf"],["class","dot yellow",4,"ngIf"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch","class","page-sub-title-container",4,"ngIf"],[1,"dot","green"],[1,"dot","yellow"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"page-sub-title-container"],["fxFlex","100",1,"alert","alert-info"],["href","http://bolt12.org","target","_blank"],[1,"mt-2"],["href","https://github.com/lightningnetwork/lightning-rfc/pull/798 ","target","blank"],[1,"my-2",3,"inset"],[1,"alert","alert-warn"],["autoFocus","","tabindex","1","color","primary","name","enableOfr",1,"my-1",3,"ngModelChange","change","ngModel"],[4,"ngIf"],["fxLayout","column",4,"ngIf"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn"],["href","https://medium.com/blockstream/setting-up-liquidity-ads-in-c-lightning-54e4c59c091d","target","_blank"],["fxLayout","column"],["fxFlex","100","fxLayout","row",1,"alert","alert-warn","mb-2"],["fxLayout","column","fxLayout.gt-sm","row","fxFlex","100","fxLayoutAlign.gt-sm","space-between center","fxLayoutAlign","start stretch"],["fxLayout","column","fxFlex","49","fxLayoutAlign","start end"],["autofocus","","tabindex","1","name","policy",3,"ngModelChange","selectionChange","ngModel"],[3,"value",4,"ngFor","ngForOf"],["fxLayout","column","fxFlex","49"],["matInput","","type","number","tabindex","2","required","","name","plcMod",3,"ngModelChange","step","min","max","ngModel"],["matInput","","type","number","step","100","min","0","tabindex","3","required","","name","lease_fee_base_sat",3,"ngModelChange","ngModel"],["matInput","","type","number","step","1","min","0","tabindex","4","required","","name","lease_fee_basis",3,"ngModelChange","ngModel"],["matInput","","type","number","step","100","min","0","tabindex","5","required","","name","channelFeeMaxBaseSat",3,"ngModelChange","ngModel"],["matInput","","type","number","step","1000","min","0","tabindex","6","required","","name","channelFeeMaxProportional",3,"ngModelChange","ngModel"],["fxLayoutAlign","start stretch","class","font-bold-500 mt-2",4,"ngIf"],["fxLayout","row",1,"my-1"],["mat-stroked-button","","color","primary","tabindex","7",1,"mr-1",3,"click"],["mat-flat-button","","color","primary","tabindex","8",3,"click"],[3,"value"],["fxLayoutAlign","start stretch",1,"font-bold-500","mt-2"],["fxFlex","100",1,"alert",3,"ngClass"]],template:function(D,I){1&D&&(e.j41(0,"div",2)(1,"div",3),e.nrm(2,"fa-icon",4),e.j41(3,"span"),e.EFF(4,"Experimental features should be enabled with caution. Many such features may be implementation specific and not ratified for the BOLT spec. Enabling these may still result in a broken experience. Referencing relevant feature documentation is highly advised before enabling."),e.k0s()(),e.j41(5,"form",5,0)(7,"div",6),e.nrm(8,"fa-icon",7),e.j41(9,"span",8),e.EFF(10,"Features"),e.k0s()(),e.j41(11,"mat-accordion"),e.DNE(12,Rd,12,7,"mat-expansion-panel",9),e.k0s()()()),2&D&&(e.R7$(2),e.Y8G("icon",I.faInfoCircle),e.R7$(6),e.Y8G("icon",I.faCode),e.R7$(4),e.Y8G("ngForOf",I.features))},dependencies:[w.YU,w.Sq,w.bT,hi.qT,hi.me,hi.Q0,hi.BC,hi.cb,hi.YS,hi.VZ,hi.zX,hi.vS,hi.cV,os.aY,es.$z,or.BS,or.GK,or.Z2,or.WN,br.fg,Ma.rl,Ma.nJ,Ma.MV,Ma.TL,Hi.q,Ie.DJ,Ie.sA,Ie.UI,cl.PW,sl.VO,ac.wT,bc.sG,go.Ld,Kl.N,om.z,lm.V,w.PV],styles:["h4[_ngcontent-%COMP%]{word-break:break-word}"]}))}return b(),_})(),Q2=(()=>{var b;class _{constructor(){}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-no-service-found"]],standalone:!1,decls:6,vars:0,consts:[["fxLayout","column",1,"padding-gap-x"],["fxLayout","column",1,"padding-gap-large"],["fxLayout","column","fxLayoutAlign","start start"],[1,"box-text"]],template:function(D,I){1&D&&(e.j41(0,"div",0)(1,"mat-card")(2,"mat-card-content",1)(3,"div",2)(4,"div",3),e.EFF(5,"No Service Found!"),e.k0s()()()()())},dependencies:[K.RN,K.m2,Ie.DJ,Ie.sA],encapsulation:2}))}return b(),_})();const $2=[{path:"",pathMatch:"full",redirectTo:"login"},{path:"lnd",loadChildren:()=>Promise.all([l.e(193),l.e(190)]).then(l.bind(l,9190)).then(b=>b.LNDModule),canActivate:[(0,co.q_)()]},{path:"cln",loadChildren:()=>Promise.all([l.e(193),l.e(853)]).then(l.bind(l,4853)).then(b=>b.CLNModule),canActivate:[(0,co.q_)()]},{path:"ecl",loadChildren:()=>Promise.all([l.e(193),l.e(17)]).then(l.bind(l,9017)).then(b=>b.ECLModule),canActivate:[(0,co.q_)()]},{path:"settings",component:Wa,canActivate:[(0,co.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"app"},{path:"app",component:Qc,canActivate:[(0,co.q_)()]},{path:"auth",component:rr,canActivate:[(0,co.q_)()]},{path:"bconfig",component:Pf,canActivate:[(0,co.q_)()]}]},{path:"config",component:k0,canActivate:[(0,co.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"nodesettings"},{path:"nodesettings",component:N0,canActivate:[(0,co.q_)()]},{path:"pglayout",component:Xh,canActivate:[(0,co.q_)()]},{path:"services",component:X0,canActivate:[(0,co.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",component:e1,canActivate:[(0,co.q_)()]},{path:"boltz",component:Kh,canActivate:[(0,co.q_)()]},{path:"noservice",component:Q2}]},{path:"experimental",component:Y2,canActivate:[(0,co.q_)()]},{path:"lnconfig",component:l2,canActivate:[(0,co.q_)()]}]},{path:"services",component:Yh,canActivate:[(0,co.q_)()],children:[{path:"",pathMatch:"full",redirectTo:"loop"},{path:"loop",pathMatch:"full",redirectTo:"loop/loopout"},{path:"loop/:selTab",component:nu},{path:"boltz",pathMatch:"full",redirectTo:"boltz/swapout"},{path:"boltz/:selTab",component:sm}]},{path:"help",component:s1},{path:"login",component:W2},{path:"error",component:x3},{path:"**",component:V1.X}],Pd=lo.iI.forRoot($2,{onSameUrlNavigation:"reload",scrollPositionRestoration:"enabled"});var Bu=l(9029),hm=l(9881),Fd=l(4330),zu=l(9183),Nd=l(882),Tc=l(5911),Bd=l(2279),Cl=l(7358);const Dc={LNDChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:Ti.xiI,link:"/lnd/home",userPersona:_t.HW.ALL,children:[]},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:Ti.CQO,link:"/lnd/onchain",userPersona:_t.HW.ALL,children:[]},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:Ti.zm_,link:"/lnd/connections",userPersona:_t.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:Ti.gdJ,link:"/lnd/connections",userPersona:_t.HW.ALL,children:[]},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:Ti._qq,link:"/lnd/transactions",userPersona:_t.HW.ALL,children:[]},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:Ti.knH,link:"/lnd/routing",userPersona:_t.HW.ALL,children:[]},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:Ti.$Fj,link:"/lnd/reports",userPersona:_t.HW.ALL,children:[]},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:Ti.MjD,link:"/lnd/graph",userPersona:_t.HW.ALL,children:[]},{id:36,parentId:3,name:"Sign/Verify",iconType:"FA",icon:Ti.pCJ,link:"/lnd/messages",userPersona:_t.HW.ALL,children:[]},{id:37,parentId:3,name:"Backup",iconType:"FA",icon:Ti.cbP,link:"/lnd/channelbackup",userPersona:_t.HW.ALL,children:[]},{id:38,parentId:3,name:"Network",iconType:"FA",icon:Ti.qFF,link:"/lnd/network",userPersona:_t.HW.OPERATOR,children:[]},{id:39,parentId:3,name:"Node/Network",iconType:"FA",icon:Ti.D6w,link:"/lnd/network",userPersona:_t.HW.MERCHANT,children:[]}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:Ti.qIE,link:"/services/loop",userPersona:_t.HW.ALL,children:[{id:41,parentId:4,name:"Loop",iconType:"FA",icon:Ti.C8j,link:"/services/loop",userPersona:_t.HW.ALL,children:[]},{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:_t.HW.ALL,children:[]}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:Ti.nsx,link:"/config",userPersona:_t.HW.ALL,children:[]},{id:6,parentId:0,name:"Help",iconType:"FA",icon:Ti.EvL,link:"/help",userPersona:_t.HW.ALL,children:[]}],CLNChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:Ti.xiI,link:"/cln/home",userPersona:_t.HW.ALL,children:[]},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:Ti.CQO,link:"/cln/onchain",userPersona:_t.HW.ALL,children:[]},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:Ti.zm_,link:"/cln/connections",userPersona:_t.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:Ti.gdJ,link:"/cln/connections",userPersona:_t.HW.ALL,children:[]},{id:32,parentId:3,name:"Liquidity Ads",iconType:"FA",icon:Ti.e4L,link:"/cln/liquidityads",userPersona:_t.HW.ALL,children:[]},{id:33,parentId:3,name:"Transactions",iconType:"FA",icon:Ti._qq,link:"/cln/transactions",userPersona:_t.HW.ALL,children:[]},{id:34,parentId:3,name:"Routing",iconType:"FA",icon:Ti.knH,link:"/cln/routing",userPersona:_t.HW.ALL,children:[]},{id:35,parentId:3,name:"Reports",iconType:"FA",icon:Ti.$Fj,link:"/cln/reports",userPersona:_t.HW.ALL,children:[]},{id:36,parentId:3,name:"Graph Lookup",iconType:"FA",icon:Ti.MjD,link:"/cln/graph",userPersona:_t.HW.ALL,children:[]},{id:37,parentId:3,name:"Sign/Verify",iconType:"FA",icon:Ti.pCJ,link:"/cln/messages",userPersona:_t.HW.ALL,children:[]},{id:38,parentId:3,name:"Fee Rates",iconType:"FA",icon:Ti.WKo,link:"/cln/rates",userPersona:_t.HW.OPERATOR,children:[]},{id:39,parentId:3,name:"Node/Fee Rates",iconType:"FA",icon:Ti.D6w,link:"/cln/rates",userPersona:_t.HW.MERCHANT,children:[]}]},{id:4,parentId:0,name:"Services",iconType:"FA",icon:Ti.qIE,link:"/services/loop",userPersona:_t.HW.ALL,children:[{id:42,parentId:4,name:"Boltz",iconType:"SVG",icon:"boltzIconBlock",link:"/services/boltz",userPersona:_t.HW.ALL,children:[]}]},{id:5,parentId:0,name:"Node Config",iconType:"FA",icon:Ti.nsx,link:"/config",userPersona:_t.HW.ALL,children:[]},{id:6,parentId:0,name:"Help",iconType:"FA",icon:Ti.EvL,link:"/help",userPersona:_t.HW.ALL,children:[]}],ECLChildren:[{id:1,parentId:0,name:"Dashboard",iconType:"FA",icon:Ti.xiI,link:"/ecl/home",userPersona:_t.HW.ALL,children:[]},{id:2,parentId:0,name:"On-chain",iconType:"FA",icon:Ti.CQO,link:"/ecl/onchain",userPersona:_t.HW.ALL,children:[]},{id:3,parentId:0,name:"Lightning",iconType:"FA",icon:Ti.zm_,link:"/ecl/connections",userPersona:_t.HW.ALL,children:[{id:31,parentId:3,name:"Peers/Channels",iconType:"FA",icon:Ti.gdJ,link:"/ecl/connections",userPersona:_t.HW.ALL,children:[]},{id:32,parentId:3,name:"Transactions",iconType:"FA",icon:Ti._qq,link:"/ecl/transactions",userPersona:_t.HW.ALL,children:[]},{id:33,parentId:3,name:"Routing",iconType:"FA",icon:Ti.knH,link:"/ecl/routing",userPersona:_t.HW.ALL,children:[]},{id:34,parentId:3,name:"Reports",iconType:"FA",icon:Ti.$Fj,link:"/ecl/reports",userPersona:_t.HW.ALL,children:[]},{id:35,parentId:3,name:"Graph Lookup",iconType:"FA",icon:Ti.MjD,link:"/ecl/graph",userPersona:_t.HW.ALL,children:[]}]},{id:4,parentId:0,name:"Node Config",iconType:"FA",icon:Ti.nsx,link:"/config",userPersona:_t.HW.ALL,children:[]},{id:5,parentId:0,name:"Help",iconType:"FA",icon:Ti.EvL,link:"/help",userPersona:_t.HW.ALL,children:[]}]};function L3(b,_){if(1&b&&(e.j41(0,"mat-option",12),e.EFF(1),e.k0s()),2&b){const m=_.$implicit;e.Y8G("value",m.index),e.R7$(),e.Lme(" ",m.lnNode," (",m.lnImplementation,") ")}}function I3(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-select",10),e.bIt("selectionChange",function(D){v.eBV(m);const I=e.XpG();return v.Njj(I.onNodeSelectionChange(D.value))}),e.j41(1,"perfect-scrollbar"),e.DNE(2,L3,2,3,"mat-option",11),e.k0s()()}if(2&b){const m=e.XpG();e.Y8G("value",m.selConfigNodeIndex),e.R7$(2),e.Y8G("ngForOf",m.appConfig.nodes)}}function k3(b,_){if(1&b&&(e.j41(0,"span",21),e.eu8(1,22),e.k0s()),2&b){const m=e.XpG().$implicit;e.XpG(2);const E=e.sdS(11);e.R7$(),e.Y8G("ngTemplateOutlet","boltzIconBlock"===m.icon?E:null)}}function zd(b,_){if(1&b&&e.nrm(0,"fa-icon",23),2&b){const m=e.XpG().$implicit;e.Y8G("icon",m.icon)}}function O3(b,_){if(1&b&&(e.j41(0,"mat-icon",24),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.JRh(m.icon)}}function R3(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-tree-node",15)(1,"div",16),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG(2);return v.Njj(I.onChildNavClicked(D))}),e.j41(2,"div",17),e.DNE(3,k3,2,1,"span",18)(4,zd,1,1,"fa-icon",19)(5,O3,2,1,"mat-icon",20),e.j41(6,"span"),e.EFF(7),e.k0s()()()()}if(2&b){const m=_.$implicit;e.Y8G("routerLink",e.mNQ(m.link)),e.R7$(3),e.Y8G("ngIf","SVG"===m.iconType),e.R7$(),e.Y8G("ngIf","FA"===m.iconType),e.R7$(),e.Y8G("ngIf",!m.iconType),e.R7$(2),e.JRh(m.name)}}function P3(b,_){if(1&b&&(e.j41(0,"span",32),e.eu8(1,22),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.Y8G("ngTemplateOutlet",m.icon)}}function Z2(b,_){if(1&b&&e.nrm(0,"fa-icon",23),2&b){const m=e.XpG().$implicit;e.Y8G("icon",m.icon)}}function Vu(b,_){if(1&b&&(e.j41(0,"mat-icon",24),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.JRh(m.icon)}}function Uu(b,_){if(1&b&&(e.j41(0,"mat-nested-tree-node",25)(1,"div",26)(2,"div",27),e.DNE(3,P3,2,1,"span",28)(4,Z2,1,1,"fa-icon",19)(5,Vu,2,1,"mat-icon",20),e.j41(6,"span"),e.EFF(7),e.k0s()(),e.j41(8,"button",29)(9,"mat-icon"),e.EFF(10),e.k0s()()(),e.j41(11,"div",30),e.eu8(12,31),e.k0s()()),2&b){const m=_.$implicit,E=e.XpG(2);e.R7$(3),e.Y8G("ngIf","SVG"===m.iconType),e.R7$(),e.Y8G("ngIf","FA"===m.iconType),e.R7$(),e.Y8G("ngIf",!m.iconType),e.R7$(2),e.JRh(m.name),e.R7$(),e.BMQ("aria-label","toggle "+m.name),e.R7$(2),e.JRh(E.treeControlNested.isExpanded(m)?"arrow_drop_up":"arrow_drop_down"),e.R7$(),e.AVh("tree-children-invisible",!E.treeControlNested.isExpanded(m))}}function F3(b,_){if(1&b&&(e.j41(0,"mat-tree",7,1),e.DNE(2,R3,8,6,"mat-tree-node",13)(3,Uu,13,8,"mat-nested-tree-node",14),e.k0s()),2&b){const m=e.XpG();e.Y8G("dataSource",m.navMenus)("treeControl",m.treeControlNested),e.R7$(3),e.Y8G("matTreeNodeDefWhen",m.hasChild)}}function N3(b,_){if(1&b&&(e.j41(0,"span",37),e.eu8(1,22),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.Y8G("ngTemplateOutlet",m.icon)}}function B3(b,_){if(1&b&&e.nrm(0,"fa-icon",38),2&b){const m=e.XpG().$implicit;e.Y8G("matTooltip",e.mNQ(m.name))("icon",m.icon)}}function J2(b,_){if(1&b&&(e.j41(0,"mat-icon",39),e.EFF(1),e.k0s()),2&b){const m=e.XpG().$implicit;e.Y8G("matTooltip",e.mNQ(m.name)),e.R7$(),e.JRh(m.icon)}}function Vd(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-tree-node",33),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG();return v.Njj(I.onShowData(D))}),e.DNE(1,N3,2,1,"span",34)(2,B3,1,3,"fa-icon",35)(3,J2,2,3,"mat-icon",36),e.j41(4,"span"),e.EFF(5),e.k0s()()}if(2&b){const m=_.$implicit;e.R7$(),e.Y8G("ngIf","SVG"===m.iconType),e.R7$(),e.Y8G("ngIf","FA"===m.iconType),e.R7$(),e.Y8G("ngIf",!m.iconType),e.R7$(2),e.JRh(m.name)}}function z3(b,_){if(1&b&&(e.j41(0,"span",32),e.eu8(1,22),e.k0s()),2&b){const m=e.XpG().$implicit;e.R7$(),e.Y8G("ngTemplateOutlet",m.icon)}}function fm(b,_){if(1&b&&e.nrm(0,"fa-icon",38),2&b){const m=e.XpG().$implicit;e.Y8G("matTooltip",e.mNQ(m.name))("icon",m.icon)}}function V3(b,_){if(1&b){const m=e.RV6();e.j41(0,"mat-tree-node",33),e.bIt("click",function(){const D=v.eBV(m).$implicit,I=e.XpG(2);return v.Njj(I.onClick(D))}),e.DNE(1,z3,2,1,"span",28)(2,fm,1,3,"fa-icon",35),e.j41(3,"span"),e.EFF(4),e.k0s()()}if(2&b){const m=_.$implicit;e.R7$(),e.Y8G("ngIf","SVG"===m.iconType),e.R7$(),e.Y8G("ngIf","FA"===m.iconType),e.R7$(2),e.JRh(m.name)}}function q2(b,_){if(1&b&&(e.j41(0,"mat-tree",7),e.DNE(1,V3,5,3,"mat-tree-node",8),e.k0s()),2&b){const m=e.XpG();e.Y8G("dataSource",m.navMenusLogout)("treeControl",m.treeControlLogout)}}function pm(b,_){1&b&&(v.qSk(),e.j41(0,"svg",40)(1,"g",41)(2,"g",42),e.nrm(3,"circle",43)(4,"path",44)(5,"path",45),e.k0s()()())}let gm=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt){this.logger=E,this.commonService=D,this.sessionService=I,this.store=Oe,this.actions=Ct,this.rtlEffects=Bt,this.ChildNavClicked=new e.bkB,this.faEject=Ti.njF,this.faEye=Ti.pS3,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.logoutNode=[{id:200,parentId:0,name:"Logout",iconType:"FA",icon:Ti.njF,children:[]}],this.showDataNodes=[{id:1e3,parentId:0,name:"Public Key",iconType:"FA",icon:Ti.pS3,children:[]}],this.showLogout=!1,this.numPendingChannels=0,this.smallScreen=!1,this.childRootRoute="",this.userPersonaEnum=_t.HW,this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B,new gi.B],this.treeControlNested=new Bd.XO(yn=>yn.children),this.treeControlLogout=new Bd.XO(yn=>yn.children),this.treeControlShowData=new Bd.XO(yn=>yn.children),this.navMenus=new Cl.Zh,this.navMenusLogout=new Cl.Zh,this.navMenusShowData=new Cl.Zh,this.hasChild=(yn,Yn)=>!!Yn.children&&Yn.children.length>0,this.version=_t.xv,Dc.LNDChildren&&200===Dc.LNDChildren[Dc.LNDChildren.length-1].id&&Dc.LNDChildren.pop(),this.navMenus.data=Dc.LNDChildren||[],this.navMenusLogout.data=this.logoutNode,this.navMenusShowData.data=this.showDataNodes}ngOnInit(){const E=this.sessionService.getItem("token");this.showLogout=!!E,this.flgLoading=!!E,this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[0])).subscribe(D=>{this.appConfig=D}),this.store.select(Oa.Az).pipe((0,li.Q)(this.unSubs[1])).subscribe(D=>{if(this.information=D.nodeDate,this.information.identity_pubkey){if(this.information.chains&&"string"==typeof this.information.chains[0])this.informationChain.chain=this.information.chains[0].toString(),this.informationChain.network=this.information.testnet?"Testnet":"Mainnet";else if(this.information&&this.information.chains&&this.information.chains.length&&this.information.chains.length>0&&"object"==typeof this.information.chains[0]&&this.information.chains[0].hasOwnProperty("chain")){const I=this.information.chains[0];this.informationChain.chain=I.chain,this.informationChain.network=I.network}}else this.informationChain.chain="",this.informationChain.network="";this.flgLoading=!this.information.identity_pubkey,window.innerWidth<=414&&(this.smallScreen=!0),this.selNode=D.selNode,this.selConfigNodeIndex=+(D.selNode?.index||0),this.selNode&&this.selNode.lnImplementation&&this.filterSideMenuNodes(),this.logger.info(D)}),this.sessionService.watchSession().pipe((0,li.Q)(this.unSubs[2])).subscribe(D=>{this.showLogout=!!D.token,this.flgLoading=!!D.token}),this.actions.pipe((0,li.Q)(this.unSubs[3]),(0,za.p)(D=>D.type===_t.aU.LOGOUT)).subscribe(D=>{this.showLogout=!1})}onClick(E){"Logout"===E.name&&(this.store.dispatch((0,Bi.I1)({payload:{data:{type:_t.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,li.Q)(this.unSubs[4])).subscribe(D=>{D&&(this.showLogout=!1,this.store.dispatch((0,Bi.ri)({payload:""})))})),this.ChildNavClicked.emit(E)}onChildNavClicked(E){this.ChildNavClicked.emit(E)}filterSideMenuNodes(){switch(this.selNode?.lnImplementation?.toUpperCase()){case"CLN":this.loadCLNMenu();break;case"ECL":this.loadECLMenu();break;default:this.loadLNDMenu()}}loadLNDMenu(){const E=JSON.parse(JSON.stringify(Dc.LNDChildren));this.navMenus.data=E?.filter(D=>D.children&&D.children.length?(D.children=D.children?.filter(I=>(I.userPersona===_t.HW.ALL||I.userPersona===this.selNode.settings.userPersona)&&"/services/loop"!==I.link&&"/services/boltz"!==I.link||"/services/loop"===I.link&&this.selNode.settings.swapServerUrl&&""!==this.selNode.settings.swapServerUrl.trim()||"/services/boltz"===I.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim()),D.children.length>0):D.userPersona===_t.HW.ALL||D.userPersona===this.selNode.settings.userPersona)}loadCLNMenu(){const E=JSON.parse(JSON.stringify(Dc.CLNChildren));this.navMenus.data=E?.filter(D=>D.children&&D.children.length?(D.children=D.children?.filter(I=>(I.userPersona===_t.HW.ALL||I.userPersona===this.selNode.settings.userPersona)&&(!I.link.includes("/services")||"/services/peerswap"===I.link&&this.selNode.settings.enablePeerswap||"/services/boltz"===I.link&&this.selNode.settings.boltzServerUrl&&""!==this.selNode.settings.boltzServerUrl.trim())),D.children.length>0):D.userPersona===_t.HW.ALL||D.userPersona===this.selNode.settings.userPersona)}loadECLMenu(){this.navMenus.data=JSON.parse(JSON.stringify(Dc.ECLChildren))}onShowData(E){this.store.dispatch((0,Bi.OP)()),this.ChildNavClicked.emit("showData")}onNodeSelectionChange(E){const D=this.selConfigNodeIndex;this.selConfigNodeIndex=E;const I=this.appConfig.nodes.find(Oe=>+Oe.index===E);this.store.dispatch((0,Bi.Qi)({payload:{uiMessage:_t.MZ.UPDATE_SELECTED_NODE,prevLnNodeIndex:+D,currentLnNode:I||null,isInitialSetup:!1}})),this.ChildNavClicked.emit("selectNode")}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(Qo.h),e.rXU(ji.Q),e.rXU(mi.il),e.rXU(Uo.En),e.rXU(Ko.H))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-side-navigation"]],viewQuery:function(D,I){if(1&D&&e.GBs(Cl.lQ,5),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.tree=Oe.first)}},outputs:{ChildNavClicked:"ChildNavClicked"},standalone:!1,decls:12,vars:5,consts:[["boltzIconBlock",""],["tree",""],["fxLayout","column","fxFlex","100","fxLayoutAlign","space-between start",3,"perfectScrollbar"],["fxLayout","column","fxFlex","90","fxLayoutAlign","start stretch",1,"w-100"],["class","m-2 multi-node-select",3,"value","selectionChange",4,"ngIf"],[1,"w-100"],[3,"dataSource","treeControl",4,"ngIf"],[3,"dataSource","treeControl"],[3,"click",4,"matTreeNodeDef"],["fxLayout","column","fxLayoutAlign","end stretch",1,"w-100"],[1,"m-2","multi-node-select",3,"selectionChange","value"],["tabindex","1",3,"value",4,"ngFor","ngForOf"],["tabindex","1",3,"value"],["routerLinkActive","active-link","matTreeNodeToggle","",3,"routerLink",4,"matTreeNodeDef"],["fxLayout","column","matTreeNodeToggle","",4,"matTreeNodeDef","matTreeNodeDefWhen"],["routerLinkActive","active-link","matTreeNodeToggle","",3,"routerLink"],["tabindex","2",3,"click"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center"],["class","fa-icon-small mr-2","fxLayout","row","fxFlex","100","fxLayoutAlign","start center",4,"ngIf"],["class","fa-icon-small mr-2",3,"icon",4,"ngIf"],["class","mat-icon-36",4,"ngIf"],["fxLayout","row","fxFlex","100","fxLayoutAlign","start center",1,"fa-icon-small","mr-2"],[3,"ngTemplateOutlet"],[1,"fa-icon-small","mr-2",3,"icon"],[1,"mat-icon-36"],["fxLayout","column","matTreeNodeToggle",""],["fxLayout","row","fxLayoutAlign","start center",1,"mat-nested-tree-node-parent"],["fxFlex","80","fxLayoutAlign","start center"],["class","mr-2",4,"ngIf"],["fxFlex","20","mat-icon-button","","fxLayoutAlign","end center",1,"btn-icon-small"],[1,"mat-nested-tree-node-child"],["matTreeNodeOutlet",""],[1,"mr-2"],[3,"click"],["class","fa-icon-small mr-2",4,"ngIf"],["class","fa-icon-small mr-2","matTooltipPosition","right",3,"matTooltip","icon",4,"ngIf"],["class","mat-icon-36","matTooltipPosition","right",3,"matTooltip",4,"ngIf"],[1,"fa-icon-small","mr-2"],["matTooltipPosition","right",1,"fa-icon-small","mr-2",3,"matTooltip","icon"],["matTooltipPosition","right",1,"mat-icon-36",3,"matTooltip"],["viewBox","0 0 78 78","version","1.1","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink"],["id","Logo","stroke","none","stroke-width","1","fill","none","fill-rule","evenodd"],["id","Group"],["id","Oval","cx","39","cy","39","r","37.5",1,"boltz-icon"],["d","M36.4583326,43.7755404 L40.53965,35.2316544 L39.4324865,35.2316544 L46.0754873,17.6071752 C46.292579,17.0204094 46.3287609,16.5159331 46.1840331,16.0937464 C46.0393053,15.671561 45.7860319,15.3674444 45.4242131,15.1813966 C45.0623942,14.9953487 44.6535376,14.9524146 44.1976433,15.0525945 C43.7417511,15.1527743 43.3256596,15.4461573 42.9493689,15.9327433 L22.6078557,40.7701025 C22.2026186,41.2710003 22,41.7575877 22,42.2298646 C22,42.6735173 22.1592003,43.0420366 22.477601,43.3354226 C22.7960017,43.6288058 23.1940025,43.7755404 23.6716036,43.7755404 L36.4583326,43.7755404 Z","id","Path",1,"boltz-icon-fill"],["d","M44.4883879,63.7755404 L48.8604707,55.165009 L47.6744296,55.165009 L54.7906978,37.4030526 C55.0232558,36.8117097 55.0620155,36.3032983 54.9069768,35.8778185 C54.7519381,35.4523399 54.4806208,35.1458511 54.0930248,34.958352 C53.7054289,34.7708528 53.2674441,34.7275839 52.7790706,34.8285452 C52.2906992,34.9295065 51.8449641,35.2251779 51.4418653,35.7155595 L29.6511611,60.746659 C29.2170537,61.251464 29,61.7418469 29,62.2178078 C29,62.6649211 29.1705423,63.036315 29.5116268,63.3319895 C29.8527113,63.6276613 30.2790669,63.7755404 30.7906936,63.7755404 L44.4883879,63.7755404 Z","id","Path-Copy","transform","translate(42.000000, 49.275540) rotate(-180.000000) translate(-42.000000, -49.275540) ",1,"boltz-icon-fill"]],template:function(D,I){1&D&&(e.j41(0,"div",2)(1,"div",3),e.DNE(2,I3,3,2,"mat-select",4),e.nrm(3,"mat-divider",5),e.DNE(4,F3,4,3,"mat-tree",6),e.nrm(5,"mat-divider",5),e.j41(6,"mat-tree",7),e.DNE(7,Vd,6,4,"mat-tree-node",8),e.k0s()(),e.j41(8,"div",9),e.DNE(9,q2,2,2,"mat-tree",6),e.k0s()(),e.DNE(10,pm,6,0,"ng-template",null,0,e.C5r)),2&D&&(e.R7$(2),e.Y8G("ngIf",I.appConfig.nodes.length>1),e.R7$(2),e.Y8G("ngIf",null==I.selNode.settings?null:I.selNode.settings.lnServerUrl),e.R7$(2),e.Y8G("dataSource",I.navMenusShowData)("treeControl",I.treeControlShowData),e.R7$(3),e.Y8G("ngIf",I.showLogout))},dependencies:[w.Sq,w.bT,w.T3,os.aY,Jc.iY,qc.An,Hi.q,Cl.q1,Cl.yI,Cl.pO,Cl.lQ,Cl.d6,Cl.wx,Ie.DJ,Ie.sA,Ie.UI,sl.VO,ac.wT,fd.oV,lo.Wk,lo.wQ,go.ZF,go.Ld],styles:[".tree-children-invisible[_ngcontent-%COMP%]{display:none}"]}))}return b(),_})();var G1=l(9115);function _m(b,_){if(1&b&&(e.j41(0,"p",14),e.nrm(1,"fa-icon",3),e.j41(2,"span"),e.EFF(3),e.k0s()()),2&b){const m=e.XpG();e.R7$(),e.Y8G("icon",m.faCode),e.R7$(2),e.SpI("API Version: ",null==m.information?null:m.information.api_version)}}function j1(b,_){if(1&b&&(e.j41(0,"p",15),e.nrm(1,"fa-icon",3),e.j41(2,"span",16),e.EFF(3,"Settings"),e.k0s()()),2&b){const m=e.XpG();e.R7$(),e.Y8G("icon",m.faUserCog)}}function U3(b,_){if(1&b&&(e.j41(0,"p",17),e.nrm(1,"fa-icon",3),e.j41(2,"span",18),e.EFF(3,"Help"),e.k0s()()),2&b){const m=e.XpG();e.R7$(),e.Y8G("icon",m.faQuestion)}}function vm(b,_){if(1&b){const m=e.RV6();e.j41(0,"p",19),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.onClick())}),e.nrm(1,"fa-icon",3),e.j41(2,"span"),e.EFF(3,"Logout"),e.k0s()()}if(2&b){const m=e.XpG();e.R7$(),e.Y8G("icon",m.faEject)}}let Ud=(()=>{var b;class _{constructor(E,D,I,Oe,Ct){this.logger=E,this.sessionService=D,this.store=I,this.rtlEffects=Oe,this.actions=Ct,this.faUserCog=Ti.McB,this.faCodeBranch=Ti.Xbc,this.faCode=Ti.jTw,this.faCog=Ti.dB,this.faQuestion=Ti.EvL,this.faEject=Ti.njF,this.version="",this.information={},this.informationChain={},this.flgLoading=!0,this.showLogout=!1,this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B],this.version=_t.xv}ngOnInit(){this.store.select(Oa.N).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{if(this.information=E,this.flgLoading=!this.information.identity_pubkey,this.information.identity_pubkey){if(this.information.chains&&"string"==typeof this.information.chains[0])this.informationChain.chain=this.information.chains[0].toString(),this.informationChain.network=this.information.testnet?"Testnet":"Mainnet";else if(this.information&&this.information.chains&&this.information.chains.length&&this.information.chains.length>0&&"object"==typeof this.information.chains[0]&&this.information.chains[0].hasOwnProperty("chain")){const D=this.information.chains[0];this.informationChain.chain=D.chain,this.informationChain.network=D.network}}else this.informationChain.chain="",this.informationChain.network="";this.logger.info(E)}),this.sessionService.watchSession().pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.showLogout=!!E.token,this.flgLoading=!!E.token}),this.actions.pipe((0,li.Q)(this.unSubs[2]),(0,za.p)(E=>E.type===_t.aU.LOGOUT)).subscribe(()=>{this.showLogout=!1})}onClick(){this.store.dispatch((0,Bi.I1)({payload:{data:{type:_t.A$.CONFIRM,alertTitle:"Logout",titleMessage:"Logout from this device?",noBtnText:"Cancel",yesBtnText:"Logout"}}})),this.rtlEffects.closeConfirm.pipe((0,li.Q)(this.unSubs[3])).subscribe(E=>{E&&(this.showLogout=!1,this.store.dispatch((0,Bi.ri)({payload:""})))})}onDonate(){window.open("https://www.ridethelightning.info/donate/","_blank")}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(null),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(ji.Q),e.rXU(mi.il),e.rXU(Ko.H),e.rXU(Uo.En))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-top-menu"]],standalone:!1,decls:20,vars:8,consts:[["topMenu","matMenu"],[1,"top-menu",3,"overlapTrigger"],["tabindex","1","mat-menu-item","",1,"cursor-default"],[1,"fa-icon-small","mr-1",3,"icon"],["tabindex","2","mat-menu-item","","class","cursor-default",4,"ngIf"],["tabindex","3","mat-menu-item","","routerLink","/settings",4,"ngIf"],["tabindex","4","mat-menu-item","","routerLink","/help",4,"ngIf"],["mat-menu-item","","tabindex","5","fxLayoutAlign","start center",3,"click"],["fill","currentColor","version","1.1","viewBox","0 0 64 64",0,"xml","space","preserve","xmlns","http://www.w3.org/2000/svg",0,"xmlns","xlink","http://www.w3.org/1999/xlink",1,"svg-donation"],["d","M62.519,17.698l-12-14c-0.659-0.768-1.786-0.923-2.628-0.362l-8.712,5.808l-16.688,4.172 c-2.485,0.622-4.537,2.412-5.487,4.791L12.21,30.09C10.206,32.512,9,35.618,9,39c0,2.974,0.939,5.73,2.527,8H5 c-2.206,0-4,1.794-4,4v6c0,2.206,1.794,4,4,4h36c2.206,0,4-1.794,4-4v-6c0-2.206-1.794-4-4-4h-6.522 c0.375-0.535,0.713-1.1,1.013-1.691l4.291-2.452l3.378-0.965c2.619-0.749,4.903-2.269,6.604-4.395 c1.39-1.736,2.317-3.813,2.682-6.006l0.412-2.472l9.48-8.532C63.145,19.76,63.225,18.523,62.519,17.698z M34.428,30.929 c-1.487-2.094-3.517-3.732-5.842-4.75L29.207,25h7.058l0.588,4.11L34.428,30.929z M31.225,33.331l-0.373,0.28 c-1.772,1.329-2.889,3.273-3.146,5.473c-0.257,2.2,0.382,4.348,1.8,6.048l0.667,0.8C28.315,47.845,25.742,49,23,49 c-5.514,0-10-4.486-10-10s4.486-10,10-10C26.299,29,29.376,30.663,31.225,33.331z M41,57H5v-6h10.826c2.101,1.261,4.55,2,7.174,2 c2.571,0,5.041-0.723,7.176-2H41V57z M49.662,26.513c-0.336,0.303-0.561,0.711-0.635,1.158L48.5,30.833 c-0.253,1.521-0.896,2.96-1.86,4.165c-1.18,1.475-2.763,2.529-4.579,3.048l-3.61,1.031c-0.155,0.044-0.303,0.106-0.443,0.187 l-5.541,3.166c-0.63-0.826-0.909-1.843-0.788-2.882c0.128-1.1,0.687-2.072,1.573-2.737l6.001-4.5 c1.169-0.877,1.767-2.32,1.56-3.766l-0.587-4.11C39.946,22.477,38.244,21,36.266,21h-7.059c-1.489,0-2.845,0.818-3.539,2.136 l-1.037,1.969C24.093,25.041,23.549,25,23,25c-1.685,0-3.294,0.314-4.791,0.862l2.509-6.271c0.476-1.189,1.501-2.084,2.743-2.395 l17.024-4.256c0.223-0.056,0.434-0.149,0.625-0.276l7.525-5.017l9.576,11.172L49.662,26.513z"],["tabindex","6","mat-menu-item","",3,"click",4,"ngIf"],["tabindex","7","mat-icon-button","",3,"matMenuTriggerFor"],["alt","RTL Logo","src","assets/images/RTL-Horse-BY.svg",1,"rtl-log-top"],[1,"rtl-logo-dropdown","color-white"],["tabindex","2","mat-menu-item","",1,"cursor-default"],["tabindex","3","mat-menu-item","","routerLink","/settings"],["routerLink","/settings"],["tabindex","4","mat-menu-item","","routerLink","/help"],["routerLink","/help"],["tabindex","6","mat-menu-item","",3,"click"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"mat-menu",1,0)(2,"p",2),e.nrm(3,"fa-icon",3),e.j41(4,"span"),e.EFF(5),e.k0s()(),e.DNE(6,_m,4,2,"p",4)(7,j1,4,1,"p",5)(8,U3,4,1,"p",6),e.j41(9,"p",7),e.bIt("click",function(){return v.eBV(Oe),v.Njj(I.onDonate())}),v.qSk(),e.j41(10,"svg",8)(11,"g"),e.nrm(12,"path",9),e.k0s()(),v.joV(),e.j41(13,"span"),e.EFF(14,"Donate"),e.k0s()(),e.DNE(15,vm,4,1,"p",10),e.k0s(),e.j41(16,"button",11),e.nrm(17,"img",12),e.j41(18,"mat-icon",13),e.EFF(19,"arrow_drop_down"),e.k0s()()}if(2&D){const Oe=e.sdS(1);e.Y8G("overlapTrigger",!1),e.R7$(3),e.Y8G("icon",I.faCodeBranch),e.R7$(2),e.SpI("Version: ",I.version),e.R7$(),e.Y8G("ngIf",null==I.information?null:I.information.api_version),e.R7$(),e.Y8G("ngIf",I.showLogout),e.R7$(),e.Y8G("ngIf",I.showLogout),e.R7$(7),e.Y8G("ngIf",I.showLogout),e.R7$(),e.Y8G("matMenuTriggerFor",Oe)}},dependencies:[w.bT,os.aY,Jc.iY,qc.An,G1.kk,G1.fb,G1.Cp,Ie.sA,lo.Wk],styles:[".mat-mdc-icon-button img.rtl-log-top{width:2rem;height:2rem}.mat-icon.material-icons.mat-icon-no-color.rtl-logo-dropdown{height:2rem}\n"],encapsulation:2}))}return b(),_})();const Gd=["sideNavigation"],zf=["sideNavContent"],G3=(b,_)=>[b,_];function Gu(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",15),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.sideNavToggle())}),e.j41(1,"mat-icon",16),e.EFF(2,"menu"),e.k0s()()}if(2&b){const m=e.XpG();e.Y8G("matTooltip",m.flgSideNavOpened?"Hide Navigation Menu":"Show Navigation Menu")("matTooltipDisabled",m.smallScreen)}}function e0(b,_){1&b&&(v.qSk(),e.nrm(0,"path",21))}function t0(b,_){1&b&&(v.qSk(),e.nrm(0,"path",22))}function ju(b,_){if(1&b){const m=e.RV6();e.j41(0,"button",17),e.bIt("click",function(){v.eBV(m);const D=e.XpG();return v.Njj(D.flgSidenavPinned=!D.flgSidenavPinned)}),v.qSk(),e.j41(1,"svg",18),e.DNE(2,e0,1,0,"path",19)(3,t0,1,0,"path",20),e.k0s()()}if(2&b){const m=e.XpG();e.Y8G("matTooltip",m.flgSidenavPinned?"Unpin Navigation Menu":"Pin Navigation Menu"),e.R7$(2),e.Y8G("ngIf",!m.flgSidenavPinned),e.R7$(),e.Y8G("ngIf",m.flgSidenavPinned)}}function ym(b,_){if(1&b&&(e.j41(0,"span",23),e.EFF(1),e.k0s()),2&b){const m=e.XpG();e.R7$(),e.JRh(m.information.alias?"RTL - "+m.information.alias:"RTL")}}function bm(b,_){if(1&b&&(e.j41(0,"span",24),e.EFF(1),e.k0s()),2&b){const m=e.XpG();e.R7$(),e.JRh(m.information.alias?"Ride The Lightning - "+m.information.alias:"Ride The Lightning")}}function Hu(b,_){1&b&&(e.j41(0,"div",25),e.nrm(1,"mat-spinner",26),e.j41(2,"h4"),e.EFF(3,"Loading RTL..."),e.k0s()())}let Wu=(()=>{var b;class _{constructor(E,D,I,Oe,Ct,Bt,yn,Yn,jn){this.logger=E,this.commonService=D,this.store=I,this.actions=Oe,this.userIdle=Ct,this.router=Bt,this.sessionService=yn,this.breakpointObserver=Yn,this.renderer=jn,this.information={},this.flgLoading=[!0],this.flgSideNavOpened=!0,this.flgCopied=!1,this.accessKey="",this.xSmallScreen=!1,this.smallScreen=!1,this.flgSidenavPinned=!0,this.flgLoggedIn=!1,this.unSubs=[new gi.B,new gi.B,new gi.B,new gi.B,new gi.B,new gi.B,new gi.B,new gi.B]}ngOnInit(){this.router.events.subscribe(E=>{E instanceof Ha.wF&&document.getElementsByTagName("mat-sidenav-content")[0].scrollTo(0,0)}),this.breakpointObserver.observe([ds.Rp.XSmall,ds.Rp.TabletPortrait,ds.Rp.Small,ds.Rp.Medium,ds.Rp.Large,ds.Rp.XLarge]).pipe((0,li.Q)(this.unSubs[0])).subscribe(E=>{E.breakpoints[ds.Rp.XSmall]?(this.commonService.setScreenSize(_t.f7.XS),this.smallScreen=!0):E.breakpoints[ds.Rp.TabletPortrait]?(this.commonService.setScreenSize(_t.f7.SM),this.smallScreen=!0):E.breakpoints[ds.Rp.Small]||E.breakpoints[ds.Rp.Medium]?(this.commonService.setScreenSize(_t.f7.MD),this.smallScreen=!1):E.breakpoints[ds.Rp.Large]?(this.commonService.setScreenSize(_t.f7.LG),this.smallScreen=!1):(this.commonService.setScreenSize(_t.f7.XL),this.smallScreen=!1)}),this.store.dispatch((0,Bi.NU)()),this.accessKey=this.readAccessKey()||"",this.store.select(Oa._c).pipe((0,li.Q)(this.unSubs[1])).subscribe(E=>{this.sessionService.getItem("token")?(this.flgLoggedIn=!0,this.userIdle.startWatching()):(this.flgLoggedIn=!1,this.flgLoading[0]=!1),this.selNode=E}),this.store.select(Oa.qv).pipe((0,li.Q)(this.unSubs[2])).subscribe(E=>{this.appConfig=E}),this.store.select(Oa.N).pipe((0,li.Q)(this.unSubs[3])).subscribe(E=>{this.information=E,this.flgLoading[0]=!this.information.identity_pubkey,this.logger.info(this.information)}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1),this.actions.pipe((0,li.Q)(this.unSubs[4]),(0,za.p)(E=>E.type===_t.aU.SET_APPLICATION_SETTINGS||E.type===_t.aU.LOGIN||E.type===_t.aU.LOGOUT)).subscribe(E=>{E.type===_t.aU.SET_APPLICATION_SETTINGS&&(this.sessionService.getItem("token")||(E.payload.disableAuth?this.store.dispatch((0,Bi.iD)({payload:{password:"disabledAuth",defaultPassword:!1}})):+E.payload.SSO.rtlSSO?!this.accessKey||this.accessKey.trim().length<32?this.router.navigate(["./error"],{state:{errorCode:"406",errorMessage:"Access key too short. It should be at least 32 characters long."}}):this.store.dispatch((0,Bi.iD)({payload:{password:_c(this.accessKey).toString(),defaultPassword:!1}})):this.router.navigate(["./login"],{state:{logoutReason:"Access key too short. It should be at least 32 characters long."}}))),E.type===_t.aU.LOGIN&&(this.flgLoggedIn=!0,this.userIdle.startWatching(),this.userIdle.resetTimer(),setTimeout(()=>{this.commonService.setContainerSize(this.sideNavContent.elementRef.nativeElement.clientWidth,this.sideNavContent.elementRef.nativeElement.clientHeight)},1e3)),E.type===_t.aU.LOGOUT&&(this.flgLoggedIn=!1,this.userIdle.stopWatching(),this.userIdle.stopTimer())}),this.userIdle.onTimerStart().pipe((0,li.Q)(this.unSubs[5])).subscribe(E=>{this.logger.info("Counting Down: "+(11-E))}),this.userIdle.onTimeout().pipe((0,li.Q)(this.unSubs[6])).subscribe(()=>{this.logger.info("Time Out!"),this.sessionService.getItem("token")&&(this.flgLoggedIn=!1,this.logger.warn("Time limit exceeded for session inactivity."),this.store.dispatch((0,Bi.Jh)()),this.store.dispatch((0,Bi.xO)({payload:{data:{type:_t.A$.WARNING,alertTitle:"Logging out",titleMessage:"Time limit exceeded for session inactivity."}}})),this.store.dispatch((0,Bi.ri)({payload:"Logging Out. Time limit exceeded for session inactivity."})))}),"true"===this.sessionService.getItem("defaultPassword")&&(this.flgSideNavOpened=!1)}readAccessKey(){const E=window.location.href;return E.includes("access-key=")?E.substring(E.lastIndexOf("access-key=")+11).trim():null}ngAfterViewInit(){(this.smallScreen||!this.flgLoggedIn)&&this.sideNavigation.close(),this.commonService.setContainerSize(this.sideNavContent.elementRef.nativeElement.clientWidth,this.sideNavContent.elementRef.nativeElement.clientHeight)}sideNavToggle(){this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.toggle()}onNavigationClicked(E){this.smallScreen&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}backdropClicked(){(!this.flgSidenavPinned||this.smallScreen)&&(this.flgSideNavOpened=!this.flgSideNavOpened,this.sideNavigation.close())}copiedText(E){this.flgCopied=!0,setTimeout(()=>{this.flgCopied=!1},5e3),this.logger.info("Copied Text: "+E)}ngOnDestroy(){this.unSubs.forEach(E=>{E.next(),E.complete()})}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(e.rXU(Aa.gP),e.rXU(Qo.h),e.rXU(mi.il),e.rXU(Uo.En),e.rXU(v1),e.rXU(Ha.Ix),e.rXU(ji.Q),e.rXU(Fd.Q),e.rXU(e.sFG))},this.\u0275cmp=e.VBU({type:_,selectors:[["rtl-app"]],viewQuery:function(D,I){if(1&D&&(e.GBs(Gd,5),e.GBs(zf,5)),2&D){let Oe;e.mGM(Oe=e.lsd())&&(I.sideNavigation=Oe.first),e.mGM(Oe=e.lsd())&&(I.sideNavContent=Oe.first)}},standalone:!1,decls:22,vars:15,consts:[["sideNavigation",""],["sideNavContent",""],["outlet","outlet"],["fxLayout","column","id","rtl-container",1,"rtl-container","medium",3,"ngClass"],["fxLayout","row","fxLayoutAlign","space-between center",1,"bg-primary","rtl-top-toolbar"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","matTooltipDisabled","click",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",3,"matTooltip","click",4,"ngIf"],["class","font-weight-500",4,"ngIf"],["class","font-size-120 font-weight-500",4,"ngIf"],[3,"backdropClick"],[1,"sidenav","mat-elevation-z6",3,"perfectScrollbar","opened","mode"],["fxFlex","100",3,"ChildNavClicked"],[3,"perfectScrollbar"],["fxLayout","column","fxFlex","100","fxLayoutAlign","start stretch",1,"inner-sidenav-content"],["class","rtl-spinner",4,"ngIf"],["mat-icon-button","","matTooltipPosition","right",3,"click","matTooltip","matTooltipDisabled"],[1,"color-white"],["mat-icon-button","","matTooltipPosition","right",3,"click","matTooltip"],["width","20","height","20","viewBox","0 0 24 24",1,"icon-pinned"],["fill","currentColor","d","M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z",4,"ngIf"],["fill","currentColor","d","M2,5.27L3.28,4L20,20.72L18.73,22L12.8,16.07V22H11.2V16H6V14L8,12V11.27L2,5.27M16,12L18,14V16H17.82L8,6.18V4H7V2H17V4H16V12Z",4,"ngIf"],["fill","currentColor","d","M16,12V4H17V2H7V4H8V12L6,14V16H11.2V22H12.8V16H18V14L16,12Z"],["fill","currentColor","d","M2,5.27L3.28,4L20,20.72L18.73,22L12.8,16.07V22H11.2V16H6V14L8,12V11.27L2,5.27M16,12L18,14V16H17.82L8,6.18V4H7V2H17V4H16V12Z"],[1,"font-weight-500"],[1,"font-size-120","font-weight-500"],[1,"rtl-spinner"],["color","accent"]],template:function(D,I){if(1&D){const Oe=e.RV6();e.j41(0,"div",3),e.nI1(1,"lowercase"),e.nI1(2,"lowercase"),e.j41(3,"mat-toolbar",4)(4,"div"),e.DNE(5,Gu,3,2,"button",5)(6,ju,4,3,"button",6),e.k0s(),e.j41(7,"div"),e.DNE(8,ym,2,1,"span",7)(9,bm,2,1,"span",8),e.k0s(),e.j41(10,"div"),e.nrm(11,"rtl-top-menu"),e.k0s()(),e.j41(12,"mat-sidenav-container",9),e.bIt("backdropClick",function(){return v.eBV(Oe),v.Njj(I.backdropClicked())}),e.j41(13,"mat-sidenav",10,0)(15,"rtl-side-navigation",11),e.bIt("ChildNavClicked",function(Bt){return v.eBV(Oe),v.Njj(I.onNavigationClicked(Bt))}),e.k0s()(),e.j41(16,"mat-sidenav-content",12,1)(18,"div",13),e.nrm(19,"router-outlet",null,2),e.k0s()()(),e.DNE(21,Hu,4,0,"div",14),e.k0s()}2&D&&(e.Y8G("ngClass",e.l_i(12,G3,e.bMT(1,8,I.selNode.settings.themeColor),e.bMT(2,10,I.selNode.settings.themeMode))),e.R7$(5),e.Y8G("ngIf",I.flgLoggedIn),e.R7$(),e.Y8G("ngIf",!I.smallScreen&&I.flgLoggedIn),e.R7$(2),e.Y8G("ngIf",I.smallScreen),e.R7$(),e.Y8G("ngIf",!I.smallScreen),e.R7$(4),e.Y8G("opened",I.flgSideNavOpened&&I.flgLoggedIn)("mode",I.flgSidenavPinned&&!I.smallScreen?"side":"over"),e.R7$(8),e.Y8G("ngIf",!I.selNode.settings.themeColor))},dependencies:[w.YU,w.bT,Jc.iY,qc.An,zu.LG,Ie.DJ,Ie.sA,Ie.UI,cl.PW,Nd.LG,Nd.US,Nd.El,Tc.KQ,fd.oV,go.Ld,gm,Ud,Ha.n3,w.GH],styles:[".inline-spinner[_ngcontent-%COMP%]{display:inline-flex!important;top:0!important}"],data:{animation:[hm.E]}}))}return b(),_})(),Xu=(()=>{var b;class _{constructor(E){this.sessionService=E}intercept(E,D){if(this.sessionService.getItem("token")){const I=E.clone({headers:E.headers.set("Authorization","Bearer "+this.sessionService.getItem("token")),withCredentials:!0});return D.handle(I)}return D.handle(E)}static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)(v.KVO(ji.Q))},this.\u0275prov=v.jDH({token:_,factory:_.\u0275fac}))}return b(),_})();var Cm=l(7879),Ku=l(9579),j3=l(283),xm=l(3017);const H3={userPersona:_t.HW.OPERATOR,themeMode:"DAY",themeColor:"PURPLE",channelBackupPath:"",selCurrencyUnit:"USD",unannouncedChannels:!1,fiatConversion:!1,currencyUnits:["Sats","BTC","USD"],bitcoindConfigPath:"",enableOffers:!1,enablePeerswap:!1,logLevel:"ERROR",lnServerUrl:"",swapServerUrl:"",boltzServerUrl:"",currencyUnit:"USD",blockExplorerUrl:"https://mempool.space"},Yu={configPath:"",swapMacaroonPath:"",boltzMacaroonPath:""},n0={apiURL:"",apisCallStatus:{Login:{status:_t.wn.UN_INITIATED},IsAuthorized:{status:_t.wn.UN_INITIATED}},selNode:{index:1,lnNode:"Node 1",settings:H3,authentication:Yu,lnImplementation:"LND"},appConfig:{defaultNodeIndex:-1,selectedNodeIndex:-1,SSO:{rtlSSO:0,logoutRedirectLink:""},enable2FA:!1,secret2FA:"",disableAuth:!1,allowPasswordUpdate:!0,nodes:[{settings:H3,authentication:Yu}]},nodeData:{}},Vf=(0,mi.vy)(n0,(0,mi.on)(Bi.Gd,(b,{payload:_})=>{const m=JSON.parse(JSON.stringify(b.apisCallStatus));return _.action&&(m[_.action]={status:_.status,statusCode:_.statusCode,message:_.message,URL:_.URL,filePath:_.filePath}),{...b,apisCallStatus:m}}),(0,mi.on)(Bi.Tn,(b,{payload:_})=>({...n0,apisCallStatus:b.apisCallStatus,appConfig:b.appConfig,selNode:_})),(0,mi.on)(Bi.Np,(b,{payload:_})=>({...b,selNode:_})),(0,mi.on)(Bi.Fl,(b,{payload:_})=>({...b,nodeData:_})),(0,mi.on)(Bi.IK,(b,{payload:_})=>({...b,appConfig:_}))),i0={apisCallStatus:{FetchPageSettings:{status:_t.wn.UN_INITIATED},FetchInfo:{status:_t.wn.UN_INITIATED},FetchFees:{status:_t.wn.UN_INITIATED},FetchPeers:{status:_t.wn.UN_INITIATED},FetchClosedChannels:{status:_t.wn.UN_INITIATED},FetchPendingChannels:{status:_t.wn.UN_INITIATED},FetchAllChannels:{status:_t.wn.UN_INITIATED},FetchBalanceBlockchain:{status:_t.wn.UN_INITIATED},FetchInvoices:{status:_t.wn.UN_INITIATED},FetchPayments:{status:_t.wn.UN_INITIATED},FetchForwardingHistory:{status:_t.wn.UN_INITIATED},FetchUTXOs:{status:_t.wn.UN_INITIATED},FetchTransactions:{status:_t.wn.UN_INITIATED},FetchLightningTransactions:{status:_t.wn.UN_INITIATED},FetchNetwork:{status:_t.wn.UN_INITIATED}},pageSettings:_t.ZC,information:{},peers:[],fees:{channel_fees:[],day_fee_sum:0,week_fee_sum:0,month_fee_sum:0,daily_tx_count:0,weekly_tx_count:0,monthly_tx_count:0,forwarding_events_history:{}},networkInfo:{},blockchainBalance:{total_balance:-1},lightningBalance:{local:-1,remote:-1},channels:[],channelsSummary:{active:{num_channels:0,capacity:0},inactive:{num_channels:0,capacity:0}},closedChannels:[],pendingChannels:{},pendingChannelsSummary:{open:{num_channels:0,limbo_balance:0},closing:{num_channels:0,limbo_balance:0},force_closing:{num_channels:0,limbo_balance:0},waiting_close:{num_channels:0,limbo_balance:0},total_channels:0,total_limbo_balance:0},transactions:[],utxos:[],listPayments:{payments:[]},listInvoices:{invoices:[]},allLightningTransactions:{listPaymentsAll:{payments:[],first_index_offset:"",last_index_offset:""},listInvoicesAll:{invoices:[],total_invoices:0,last_index_offset:"",first_index_offset:""}},forwardingHistory:{last_offset_index:0,total_fee_msat:0,forwarding_events:[]}};let Qu=!1,W3=!1;const $u=(0,mi.vy)(i0,(0,mi.on)(Qs.e8,(b,{payload:_})=>{const m=JSON.parse(JSON.stringify(b.apisCallStatus));return _.action&&(m[_.action]={status:_.status,statusCode:_.statusCode,message:_.message,URL:_.URL,filePath:_.filePath}),{...b,apisCallStatus:m}}),(0,mi.on)(Qs.p1,b=>({...i0})),(0,mi.on)(Qs.x1,(b,{payload:_})=>({...b,information:_})),(0,mi.on)(Qs.Qj,(b,{payload:_})=>({...b,peers:_})),(0,mi.on)(Qs.Zi,(b,{payload:_})=>{const m=[...b.peers],E=b.peers.findIndex(D=>D.pub_key===_.pubkey);return E>-1&&m.splice(E,1),{...b,peers:m}}),(0,mi.on)(Qs.Jx,(b,{payload:_})=>{const m=b.listInvoices;return m.invoices?.unshift(_),{...b,listInvoices:m}}),(0,mi.on)(Qs.Dq,(b,{payload:_})=>{const m=b.listInvoices;return m.invoices=m.invoices?.map(E=>E.payment_request===_.payment_request?_:E),{...b,listInvoices:m}}),(0,mi.on)(Qs._$,(b,{payload:_})=>{const m=b.listPayments;return m.payments=m.payments?.map(E=>E.payment_hash===_.payment_hash?_:E),{...b,listPayments:m}}),(0,mi.on)(Qs.Uo,(b,{payload:_})=>({...b,fees:_})),(0,mi.on)(Qs.z2,(b,{payload:_})=>({...b,closedChannels:_})),(0,mi.on)(Qs.cU,(b,{payload:_})=>({...b,pendingChannels:_.pendingChannels,pendingChannelsSummary:_.pendingChannelsSummary})),(0,mi.on)(Qs.dv,(b,{payload:_})=>{let m=0,E=0,D=0,I=0,Oe=0,Ct=0;return _&&_.forEach(Bt=>{Bt.local_balance||(Bt.local_balance=0),!0===Bt.active?(Oe+=+Bt.local_balance,D+=1,Bt.local_balance?m=+m+ +Bt.local_balance:Bt.local_balance=0,Bt.remote_balance?E=+E+ +Bt.remote_balance:Bt.remote_balance=0):(Ct+=+Bt.local_balance,I+=1)}),{...b,channels:_,channelsSummary:{active:{num_channels:D,capacity:Oe},inactive:{num_channels:I,capacity:Ct}},lightningBalance:{local:m,remote:E}}}),(0,mi.on)(Qs.cR,(b,{payload:_})=>{const m=[...b.channels],E=b.channels.findIndex(D=>D.channel_point===_.channelPoint);return E>-1&&m.splice(E,1),{...b,channels:m}}),(0,mi.on)(Qs.DI,(b,{payload:_})=>({...b,blockchainBalance:_})),(0,mi.on)(Qs.J9,(b,{payload:_})=>({...b,networkInfo:_})),(0,mi.on)(Qs.$6,(b,{payload:_})=>(_.total_invoices||(_.total_invoices=b.listInvoices.total_invoices),{...b,listInvoices:_})),(0,mi.on)(Qs.As,(b,{payload:_})=>{if(Qu=!0,_.length&&W3){const m=[...b.utxos];return m.forEach(E=>{const D=_.find(I=>I.tx_hash===E.outpoint?.txid_str);E.label=D&&D.label?D.label:""}),{...b,utxos:m,transactions:_}}return{...b,transactions:_}}),(0,mi.on)(Qs.O8,(b,{payload:_})=>{if(W3=!0,_.length&&Qu){const m=[...b.transactions];_.forEach(E=>{const D=m.find(I=>I.tx_hash===E.outpoint?.txid_str);E.label=D&&D.label?D.label:""})}return{...b,utxos:_}}),(0,mi.on)(Qs.Uj,(b,{payload:_})=>{const m={listInvoicesAll:b.allLightningTransactions.listInvoicesAll,listPaymentsAll:_};return{...b,listPayments:_,allLightningTransactions:m}}),(0,mi.on)(Qs.b1,(b,{payload:_})=>{const m={listInvoicesAll:_.listInvoicesAll,listPaymentsAll:b.listPayments};return{...b,allLightningTransactions:m}}),(0,mi.on)(Qs.kv,(b,{payload:_})=>{const m=[...b.channels,...b.closedChannels];let E=_.forwarding_events?JSON.parse(JSON.stringify(_)):{};return E.forwarding_events&&(E=c1(E,m)),{...b,forwardingHistory:E}}),(0,mi.on)(Qs.NS,(b,{payload:_})=>{const m=[];return _t.ZC.forEach(E=>{const D=_&&_.length&&_.length>0?_.find(I=>I.pageId===E.pageId):null;if(D){const I=JSON.parse(JSON.stringify(D.tables));D.tables=[],E.tables.forEach(Oe=>{const Ct=I.find(Bt=>Bt.tableId===Oe.tableId)||null;D.tables.push(Ct||JSON.parse(JSON.stringify(Oe)))}),m.push(D)}else m.push(JSON.parse(JSON.stringify(E)))}),{...b,pageSettings:m}})),c1=(b,_)=>(b.forwarding_events.forEach(m=>{if(_&&_.length>0)for(let E=0;E<_.length;E++){if(_[E].chan_id?.toString()===m.chan_id_in&&(m.alias_in=_[E].remote_alias?_[E].remote_alias:m.chan_id_in,m.alias_out)||_[E].chan_id?.toString()===m.chan_id_out&&(m.alias_out=_[E].remote_alias?_[E].remote_alias:m.chan_id_out,m.alias_in))return;E===_.length-1&&(m.alias_in||(m.alias_in=m.chan_id_in),m.alias_out||(m.alias_out=m.chan_id_out))}else m.alias_in=m.chan_id_in,m.alias_out=m.chan_id_out}),b),d1={apisCallStatus:{FetchPageSettings:{status:_t.wn.UN_INITIATED},FetchInfo:{status:_t.wn.UN_INITIATED},FetchInvoices:{status:_t.wn.UN_INITIATED},FetchChannels:{status:_t.wn.UN_INITIATED},FetchUTXOBalances:{status:_t.wn.UN_INITIATED},FetchFeeRatesperkb:{status:_t.wn.UN_INITIATED},FetchFeeRatesperkw:{status:_t.wn.UN_INITIATED},FetchPeers:{status:_t.wn.UN_INITIATED},FetchPayments:{status:_t.wn.UN_INITIATED},FetchForwardingHistoryS:{status:_t.wn.UN_INITIATED},FetchForwardingHistoryF:{status:_t.wn.UN_INITIATED},FetchForwardingHistoryL:{status:_t.wn.UN_INITIATED},FetchOffers:{status:_t.wn.UN_INITIATED},FetchOfferBookmarks:{status:_t.wn.UN_INITIATED}},pageSettings:_t.mu,information:{},fees:{},feeRatesPerKB:{},feeRatesPerKW:{},balance:{},localRemoteBalance:{localBalance:-1,remoteBalance:-1},peers:[],activeChannels:[],pendingChannels:[],inactiveChannels:[],payments:[],forwardingHistory:{},failedForwardingHistory:{},localFailedForwardingHistory:{},invoices:{invoices:[]},utxos:[],offers:[],offersBookmarks:[]},Zu=(0,mi.vy)(d1,(0,mi.on)(zs.no,(b,{payload:_})=>{const m=JSON.parse(JSON.stringify(b.apisCallStatus));return _.action&&(m[_.action]={status:_.status,statusCode:_.statusCode,message:_.message,URL:_.URL,filePath:_.filePath}),{...b,apisCallStatus:m}}),(0,mi.on)(zs.gf,b=>({...d1})),(0,mi.on)(zs.x1,(b,{payload:_})=>({...b,information:_,fees:{feeCollected:_.fees_collected_msat}})),(0,mi.on)(zs.C2,(b,{payload:_})=>_.perkb?{...b,feeRatesPerKB:_}:_.perkw?{...b,feeRatesPerKW:_}:{...b}),(0,mi.on)(zs.EM,(b,{payload:_})=>({...b,utxos:_.utxos||[],balance:_.balance,localRemoteBalance:_.localRemoteBalance})),(0,mi.on)(zs.Qj,(b,{payload:_})=>({...b,peers:_})),(0,mi.on)(zs.We,(b,{payload:_})=>({...b,peers:[...b.peers,_]})),(0,mi.on)(zs.Zi,(b,{payload:_})=>{const m=[...b.peers],E=b.peers.findIndex(D=>D.id===_.id);return E>-1&&m.splice(E,1),{...b,peers:m}}),(0,mi.on)(zs.dv,(b,{payload:_})=>({...b,activeChannels:_.activeChannels,pendingChannels:_.pendingChannels,inactiveChannels:_.inactiveChannels})),(0,mi.on)(zs.cR,(b,{payload:_})=>{const m=[...b.peers];return m.forEach(E=>{E.id===_.id&&(E.connected=!1,delete E.netaddr)}),{...b,peers:m}}),(0,mi.on)(zs.Uj,(b,{payload:_})=>({...b,payments:_})),(0,mi.on)(zs.kv,(b,{payload:_})=>{const m=[...b.activeChannels,...b.pendingChannels,...b.inactiveChannels],E=a0(_.listForwards,m);switch(_.listForwards=E,_.status){case _t.xk.SETTLED:const D=b.fees;return D.totalTxCount=_.totalForwards||0,{...b,fees:D,forwardingHistory:_};case _t.xk.FAILED:return{...b,failedForwardingHistory:_};case _t.xk.LOCAL_FAILED:return{...b,localFailedForwardingHistory:_};default:return{...b}}}),(0,mi.on)(zs.Jx,(b,{payload:_})=>{const m=b.invoices;return m.invoices?.unshift(_),{...b,invoices:m}}),(0,mi.on)(zs.$6,(b,{payload:_})=>({...b,invoices:_})),(0,mi.on)(zs.Dq,(b,{payload:_})=>{const m=b.invoices;return m.invoices=m.invoices?.map(E=>(E.label===_.label&&(E.amount_received_msat=_.msat,E.payment_preimage=_.preimage,E.status="paid"),E)),{...b,invoices:m}}),(0,mi.on)(zs.qw,(b,{payload:_})=>({...b,offers:_})),(0,mi.on)(zs.kQ,(b,{payload:_})=>{const m=b.offers;return m?.unshift(_),{...b,offers:m}}),(0,mi.on)(zs.Gz,(b,{payload:_})=>{const m=[...b.offers],E=b.offers.findIndex(D=>D.offer_id===_.offer.offer_id);return E>-1&&m.splice(E,1,_.offer),{...b,offers:m}}),(0,mi.on)(zs.Qv,(b,{payload:_})=>({...b,offersBookmarks:_})),(0,mi.on)(zs.Db,(b,{payload:_})=>{const m=[...b.offersBookmarks],E=m.findIndex(D=>D.bolt12===_.bolt12);if(E<0)m?.unshift(_);else{const D={...m[E]};D.title=_.title,D.amountMSat=_.amountMSat,D.lastUpdatedAt=_.lastUpdatedAt,D.description=_.description,D.issuer=_.issuer,m.splice(E,1,D)}return{...b,offersBookmarks:m}}),(0,mi.on)(zs.NU,(b,{payload:_})=>{const m=[...b.offersBookmarks],E=b.offersBookmarks.findIndex(D=>D.bolt12===_.bolt12);return E>-1&&m.splice(E,1),{...b,offersBookmarks:m}}),(0,mi.on)(zs.NS,(b,{payload:_})=>{const m=[];return _t.mu.forEach(E=>{const D=_&&_.length&&_.length>0?_.find(I=>I.pageId===E.pageId):null;if(D){const I=JSON.parse(JSON.stringify(D.tables));D.tables=[],E.tables.forEach(Oe=>{const Ct=I.find(Bt=>Bt.tableId===Oe.tableId)||null;D.tables.push(Ct||JSON.parse(JSON.stringify(Oe)))}),m.push(D)}else m.push(JSON.parse(JSON.stringify(E)))}),{...b,pageSettings:m}})),a0=(b,_)=>(b&&b.length>0?b.forEach((m,E)=>{if(_&&_.length>0)for(let D=0;D<_.length;D++){if(_[D].short_channel_id&&_[D].short_channel_id===m.in_channel&&(m.in_channel_alias=_[D].alias?_[D].alias:m.in_channel,m.out_channel_alias)||_[D].short_channel_id&&_[D].short_channel_id?.toString()===m.out_channel&&(m.out_channel_alias=_[D].alias?_[D].alias:m.out_channel,m.in_channel_alias))return;D===_.length-1&&(m.in_channel_alias||(m.in_channel_alias=m.in_channel?m.in_channel:"-"),m.out_channel_alias||(m.out_channel_alias=m.out_channel?m.out_channel:"-"))}else m.in_channel_alias=m.in_channel?m.in_channel:"-",m.out_channel_alias=m.out_channel?m.out_channel:"-"}):b=[],b),Ju={apisCallStatus:{FetchPageSettings:{status:_t.wn.UN_INITIATED},FetchInfo:{status:_t.wn.UN_INITIATED},FetchFees:{status:_t.wn.UN_INITIATED},FetchChannels:{status:_t.wn.UN_INITIATED},FetchOnchainBalance:{status:_t.wn.UN_INITIATED},FetchPeers:{status:_t.wn.UN_INITIATED},FetchPayments:{status:_t.wn.UN_INITIATED},FetchInvoices:{status:_t.wn.UN_INITIATED},FetchTransactions:{status:_t.wn.UN_INITIATED}},pageSettings:_t.X8,information:{},fees:{},activeChannels:[],pendingChannels:[],inactiveChannels:[],channelsStatus:{active:{channels:0,capacity:0},inactive:{channels:0,capacity:0},pending:{channels:0,capacity:0},closing:{channels:0,capacity:0}},onchainBalance:{total:0,confirmed:0,unconfirmed:0},lightningBalance:{localBalance:-1,remoteBalance:-1},peers:[],payments:{},transactions:[],invoices:[]},u1=(0,mi.vy)(Ju,(0,mi.on)(Ds.uL,(b,{payload:_})=>{const m=JSON.parse(JSON.stringify(b.apisCallStatus));return _.action&&(m[_.action]={status:_.status,statusCode:_.statusCode,message:_.message,URL:_.URL,filePath:_.filePath}),{...b,apisCallStatus:m}}),(0,mi.on)(Ds.Hh,b=>({...Ju})),(0,mi.on)(Ds.x1,(b,{payload:_})=>({...b,information:_})),(0,mi.on)(Ds.Uo,(b,{payload:_})=>({...b,fees:_})),(0,mi.on)(Ds.Tp,(b,{payload:_})=>({...b,activeChannels:_})),(0,mi.on)(Ds.cU,(b,{payload:_})=>({...b,pendingChannels:_})),(0,mi.on)(Ds.I6,(b,{payload:_})=>({...b,inactiveChannels:_})),(0,mi.on)(Ds.ZE,(b,{payload:_})=>({...b,channelsStatus:_})),(0,mi.on)(Ds.Xx,(b,{payload:_})=>({...b,onchainBalance:_})),(0,mi.on)(Ds.N8,(b,{payload:_})=>({...b,lightningBalance:_})),(0,mi.on)(Ds.Qj,(b,{payload:_})=>({...b,peers:_})),(0,mi.on)(Ds.Zi,(b,{payload:_})=>{const m=[...b.peers],E=b.peers.findIndex(D=>D.nodeId===_.nodeId);return E>-1&&m.splice(E,1),{...b,peers:m}}),(0,mi.on)(Ds.cR,(b,{payload:_})=>{const m=[...b.activeChannels],E=b.activeChannels.findIndex(D=>D.channelId===_.channelId);return E>-1&&m.splice(E,1),{...b,activeChannels:m}}),(0,mi.on)(Ds.Uj,(b,{payload:_})=>{if(_&&_.sent){const m=[...b.activeChannels,...b.pendingChannels,...b.inactiveChannels];_.sent?.map(E=>{const D=b.peers.find(I=>I.nodeId===E.recipientNodeId);return E.recipientNodeAlias=D?D.alias:E.recipientNodeId,E.parts&&E.parts?.map(I=>{const Oe=m.find(Ct=>Ct.channelId===I.toChannelId);return I.toChannelAlias=Oe?Oe.alias:I.toChannelId,E.parts}),_.sent})}if(_&&_.relayed){const m=[...b.activeChannels,...b.pendingChannels,...b.inactiveChannels];_.relayed.forEach(E=>{E=H1(E,m)})}return{...b,payments:_}}),(0,mi.on)(Ds.As,(b,{payload:_})=>({...b,transactions:_})),(0,mi.on)(Ds.Jx,(b,{payload:_})=>{const m=b.invoices;return m?.unshift(_),{...b,invoices:m}}),(0,mi.on)(Ds.$6,(b,{payload:_})=>({...b,invoices:_})),(0,mi.on)(Ds.Dq,(b,{payload:_})=>{let m=b.invoices;return m=m?.map(E=>{if(E.paymentHash===_.paymentHash){if(_.hasOwnProperty("type")){const D=JSON.parse(JSON.stringify(E));return D.amountSettled=_.parts&&_.parts.length&&_.parts.length>0&&_.parts[0].amount?(_.parts[0].amount||0)/1e3:0,D.receivedAt=_.parts&&_.parts.length&&_.parts.length>0&&_.parts[0].timestamp?Math.round((_.parts[0].timestamp||0)/1e3):0,D.status="received",D}return _}return E}),{...b,invoices:m}}),(0,mi.on)(Ds.gZ,(b,{payload:_})=>{let m=b.pendingChannels;return m=m?.map(E=>(E.channelId===_.channelId&&E.nodeId===_.remoteNodeId&&(_.currentState=_.currentState?.replace(/_/g," "),E.state=_.currentState),E)),{...b,pendingChannels:m}}),(0,mi.on)(Ds.yn,(b,{payload:_})=>{const m=b.payments,E=H1(_,[...b.activeChannels,...b.pendingChannels,...b.inactiveChannels]);m.relayed?.unshift(E);const D=(_.amountIn||0)-(_.amountOut||0),I={localBalance:b.lightningBalance.localBalance+D,remoteBalance:b.lightningBalance.remoteBalance-D},Oe=b.channelsStatus;Oe.active&&(Oe.active.capacity=(b.channelsStatus?.active?.capacity||0)+D);const Ct={daily_fee:(b.fees.daily_fee||0)+D,daily_txs:(b.fees.daily_txs||0)+1,weekly_fee:(b.fees.weekly_fee||0)+D,weekly_txs:(b.fees.weekly_txs||0)+1,monthly_fee:(b.fees.monthly_fee||0)+D,monthly_txs:(b.fees.monthly_txs||0)+1},Bt=b.activeChannels;let yn=!1,Yn=!1;for(const jn of Bt){if(jn.channelId===_.fromChannelId){yn=!0;const Fi=(jn.toLocal||0)+(jn.toRemote||0);jn.toLocal=(jn.toLocal||0)+E.amountIn,jn.toRemote=(jn.toRemote||0)-E.amountIn,jn.balancedness=0===Fi?1:+(1-Math.abs((jn.toLocal-jn.toRemote)/Fi)).toFixed(3)}if(jn.channelId===_.toChannelId){Yn=!0;const Fi=(jn.toLocal||0)+(jn.toRemote||0);jn.toLocal=(jn.toLocal||0)-E.amountOut,jn.toRemote=(jn.toRemote||0)+E.amountOut,jn.balancedness=0===Fi?1:+(1-Math.abs((jn.toLocal-jn.toRemote)/Fi)).toFixed(3)}if(Yn&&yn)break}return{...b,payments:m,lightningBalance:I,channelStatus:Oe,fees:Ct,activeChannels:Bt}}),(0,mi.on)(Ds.NS,(b,{payload:_})=>{const m=[];return _t.X8.forEach(E=>{const D=_&&_.length&&_.length>0?_.find(I=>I.pageId===E.pageId):null;if(D){const I=JSON.parse(JSON.stringify(D.tables));D.tables=[],E.tables.forEach(Oe=>{const Ct=I.find(Bt=>Bt.tableId===Oe.tableId)||null;D.tables.push(Ct||JSON.parse(JSON.stringify(Oe)))}),m.push(D)}else m.push(JSON.parse(JSON.stringify(E)))}),{...b,pageSettings:m}})),H1=(b,_)=>{if("payment-relayed"===b.type)if(_&&_.length>0)for(let m=0;m<_.length;m++){if(_[m].channelId?.toString()===b.fromChannelId&&(b.fromChannelAlias=_[m].alias?_[m].alias:b.fromChannelId,b.fromShortChannelId=_[m].shortChannelId?_[m].shortChannelId:"",b.toChannelAlias)||_[m].channelId?.toString()===b.toChannelId&&(b.toChannelAlias=_[m].alias?_[m].alias:b.toChannelId,b.toShortChannelId=_[m].shortChannelId?_[m].shortChannelId:"",b.fromChannelAlias))return b;m===_.length-1&&(b.fromChannelAlias||(b.fromChannelAlias=b.fromChannelId?.substring(0,17)+"...",b.fromShortChannelId=""),b.toChannelAlias||(b.toChannelAlias=b.toChannelId?.substring(0,17)+"...",b.toShortChannelId=""))}else b.fromChannelAlias=b.fromChannelId?.substring(0,17)+"...",b.fromShortChannelId="",b.toChannelAlias=b.toChannelId?.substring(0,17)+"...",b.toShortChannelId="";else if(b.type="trampoline-payment-relayed"){if(_&&_.length>0)for(let D=0;D<_.length;D++)b.incoming?.forEach(I=>{_[D].channelId?.toString()===I.channelId&&(I.channelAlias=_[D].alias?_[D].alias:I.channelId,I.shortChannelId=_[D].shortChannelId?_[D].shortChannelId:"")}),b.outgoing?.forEach(I=>{_[D].channelId?.toString()===I.channelId&&(I.channelAlias=_[D].alias?_[D].alias:I.channelId,I.shortChannelId=_[D].shortChannelId?_[D].shortChannelId:"")}),D===_.length-1&&(b.incoming&&b.incoming.length&&b.incoming.length>0&&!b.incoming[0].channelAlias&&b.incoming?.forEach(I=>{I.channelAlias=I.channelId?.substring(0,17)+"...",I.shortChannelId=""}),b.outgoing&&b.outgoing.length&&b.outgoing.length>0&&!b.outgoing[0].channelAlias&&b.outgoing?.forEach(I=>{I.channelAlias=I.channelId?.substring(0,17)+"...",I.shortChannelId=""}));else b.incoming?.forEach(D=>{D.channelAlias=D.channelId?.substring(0,17)+"...",D.shortChannelId=""}),b.outgoing?.forEach(D=>{D.channelAlias=D.channelId?.substring(0,17)+"...",D.shortChannelId=""});const m=b.incoming?.reduce((D,I)=>D+I.amount,0)||0;b.amountIn=Math.round(m/1e3),b.fromChannelId=b.incoming&&b.incoming.length?b.incoming[0].channelId:"",b.fromChannelAlias=b.incoming&&b.incoming.length?b.incoming[0].channelAlias:"",b.fromShortChannelId=b.incoming&&b.incoming.length?b.incoming[0].shortChannelId:"";const E=b.outgoing?.reduce((D,I)=>D+I.amount,0)||0;b.amountOut=Math.round(E/1e3),b.toChannelId=b.outgoing&&b.outgoing.length?b.outgoing[0].channelId:"",b.toChannelAlias=b.outgoing&&b.outgoing.length?b.outgoing[0].channelAlias:"",b.toShortChannelId=b.outgoing&&b.outgoing.length?b.outgoing[0].shortChannelId:""}return b};let X3=!1;(0,O.naY)()&&(X3=!0);let Uf=(()=>{var b;class _{static#e=b=()=>(this.\u0275fac=function(D){return new(D||_)},this.\u0275mod=e.$C({type:_,bootstrap:[Wu]}),this.\u0275inj=v.G2t({providers:[(0,nr.$R)((0,nr.ZZ)(),(0,nr.Sx)()),nc({idle:_t.bz-10,timeout:10,ping:12e3}),{provide:nr.a7,useClass:Xu,multi:!0},ji.Q,o1.u,Cm.I,E1.Q,Qo.h,rc],imports:[Mo,Bu.G,Pd,ds.RH,Dt.fM,mi.md.forRoot({root:Vf,lnd:$u,cln:Zu,ecl:u1},{runtimeChecks:{strictStateImmutability:!1,strictActionImmutability:!1}}),Uo.Vm.forRoot([Ko.H,Ku.L,j3.i,xm.B]),X3?Ls.instrument({connectInZone:!0}):[]]}))}return b(),_})();De().bootstrapModule(Uf).catch(b=>console.error(b))},4740(Zt){!function(pe){"use strict";var l={bytesToHex:function(v){return function i(v){return v.map(function(T){return function d(v,T){return v.length>T?v:Array(T-v.length+1).join("0")+v}(T.toString(16),2)}).join("")}(v)},hexToBytes:function(v){if(v.length%2==1)throw new Error("hexToBytes can't have a string with an odd number of characters.");return 0===v.indexOf("0x")&&(v=v.slice(2)),v.match(/../g).map(function(T){return parseInt(T,16)})}};Zt.exports?Zt.exports=l:pe.convertHex=l}(this)},820(Zt){!function(pe){"use strict";var l={bytesToString:function(i){return i.map(function(d){return String.fromCharCode(d)}).join("")},stringToBytes:function(i){return i.split("").map(function(d){return d.charCodeAt(0)})}};l.UTF8={bytesToString:function(i){return decodeURIComponent(escape(l.bytesToString(i)))},stringToBytes:function(i){return l.stringToBytes(unescape(encodeURIComponent(i)))}},Zt.exports?Zt.exports=l:pe.convertString=l}(this)},243(Zt){"use strict";var pe={single_source_shortest_paths:function(l,i,d){var v={},T={};T[i]=0;var e,O,f,u,L,B,w=pe.PriorityQueue.make();for(w.push(i,0);!w.empty();)for(f in u=(e=w.pop()).cost,L=l[O=e.value]||{})L.hasOwnProperty(f)&&(B=u+L[f],(typeof T[f]>"u"||T[f]>B)&&(T[f]=B,w.push(f,B),v[f]=O));if(typeof d<"u"&&typeof T[d]>"u"){var le=["Could not find a path from ",i," to ",d,"."].join("");throw new Error(le)}return v},extract_shortest_path_from_predecessor_list:function(l,i){for(var d=[],v=i;v;)d.push(v),v=l[v];return d.reverse(),d},find_path:function(l,i,d){var v=pe.single_source_shortest_paths(l,i,d);return pe.extract_shortest_path_from_predecessor_list(v,d)},PriorityQueue:{make:function(l){var v,i=pe.PriorityQueue,d={};for(v in l=l||{},i)i.hasOwnProperty(v)&&(d[v]=i[v]);return d.queue=[],d.sorter=l.sorter||i.default_sorter,d},default_sorter:function(l,i){return l.cost-i.cost},push:function(l,i){this.queue.push({value:l,cost:i}),this.queue.sort(this.sorter)},pop:function(){return this.queue.shift()},empty:function(){return 0===this.queue.length}}};Zt.exports=pe},8314(Zt,pe,l){const i=l(2836),d=l(9460),v=l(7030),T=l(6511);function w(e,O,f,u,L){const C=[].slice.call(arguments,1),B=C.length,A="function"==typeof C[B-1];if(!A&&!i())throw new Error("Callback required as last argument");if(!A){if(B<1)throw new Error("Too few arguments provided");return 1===B?(f=O,O=u=void 0):2===B&&!O.getContext&&(u=f,f=O,O=void 0),new Promise(function(Pe,le){try{const Ce=d.create(f,u);Pe(e(Ce,O,u))}catch(Ce){le(Ce)}})}if(B<2)throw new Error("Too few arguments provided");2===B?(L=f,f=O,O=u=void 0):3===B&&(O.getContext&&typeof L>"u"?(L=u,u=void 0):(L=u,u=f,f=O,O=void 0));try{const Pe=d.create(f,u);L(null,e(Pe,O,u))}catch(Pe){L(Pe)}}pe.create=d.create,pe.toCanvas=w.bind(null,v.render),pe.toDataURL=w.bind(null,v.renderToDataURL),pe.toString=w.bind(null,function(e,O,f){return T.render(e,f)})},2836(Zt){Zt.exports=function(){return"function"==typeof Promise&&Promise.prototype&&Promise.prototype.then}},6214(Zt,pe,l){const i=l(9089).getSymbolSize;pe.getRowColCoords=function(v){if(1===v)return[];const T=Math.floor(v/7)+2,w=i(v),e=145===w?26:2*Math.ceil((w-13)/(2*T-2)),O=[w-7];for(let f=1;f>>7-l%8&1)},put:function(l,i){for(let d=0;d>>i-d-1&1))},getLengthInBits:function(){return this.length},putBit:function(l){const i=Math.floor(this.length/8);this.buffer.length<=i&&this.buffer.push(0),l&&(this.buffer[i]|=128>>>this.length%8),this.length++}},Zt.exports=pe},5941(Zt){function pe(l){if(!l||l<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=l,this.data=new Uint8Array(l*l),this.reservedBit=new Uint8Array(l*l)}pe.prototype.set=function(l,i,d,v){const T=l*this.size+i;this.data[T]=d,v&&(this.reservedBit[T]=!0)},pe.prototype.get=function(l,i){return this.data[l*this.size+i]},pe.prototype.xor=function(l,i,d){this.data[l*this.size+i]^=d},pe.prototype.isReserved=function(l,i){return this.reservedBit[l*this.size+i]},Zt.exports=pe},4969(Zt,pe,l){const i=l(1677);function d(v){this.mode=i.BYTE,this.data="string"==typeof v?(new TextEncoder).encode(v):new Uint8Array(v)}d.getBitsLength=function(T){return 8*T},d.prototype.getLength=function(){return this.data.length},d.prototype.getBitsLength=function(){return d.getBitsLength(this.data.length)},d.prototype.write=function(v){for(let T=0,w=this.data.length;T=0&&d.bit<4},pe.from=function(d,v){if(pe.isValid(d))return d;try{return function l(i){if("string"!=typeof i)throw new Error("Param is not a string");switch(i.toLowerCase()){case"l":case"low":return pe.L;case"m":case"medium":return pe.M;case"q":case"quartile":return pe.Q;case"h":case"high":return pe.H;default:throw new Error("Unknown EC Level: "+i)}}(d)}catch{return v}}},6269(Zt,pe,l){const i=l(9089).getSymbolSize;pe.getPositions=function(T){const w=i(T);return[[0,0],[w-7,0],[0,w-7]]}},6254(Zt,pe,l){const i=l(9089),T=i.getBCHDigit(1335);pe.getEncodedBits=function(e,O){const f=e.bit<<3|O;let u=f<<10;for(;i.getBCHDigit(u)-T>=0;)u^=1335<=33088&&e<=40956)e-=33088;else{if(!(e>=57408&&e<=60351))throw new Error("Invalid SJIS character: "+this.data[w]+"\nMake sure your charset is UTF-8");e-=49472}e=192*(e>>>8&255)+(255&e),T.put(e,13)}},Zt.exports=v},3361(Zt,pe){pe.Patterns={PATTERN000:0,PATTERN001:1,PATTERN010:2,PATTERN011:3,PATTERN100:4,PATTERN101:5,PATTERN110:6,PATTERN111:7};function i(d,v,T){switch(d){case pe.Patterns.PATTERN000:return(v+T)%2==0;case pe.Patterns.PATTERN001:return v%2==0;case pe.Patterns.PATTERN010:return T%3==0;case pe.Patterns.PATTERN011:return(v+T)%3==0;case pe.Patterns.PATTERN100:return(Math.floor(v/2)+Math.floor(T/3))%2==0;case pe.Patterns.PATTERN101:return v*T%2+v*T%3==0;case pe.Patterns.PATTERN110:return(v*T%2+v*T%3)%2==0;case pe.Patterns.PATTERN111:return(v*T%3+(v+T)%2)%2==0;default:throw new Error("bad maskPattern:"+d)}}pe.isValid=function(v){return null!=v&&""!==v&&!isNaN(v)&&v>=0&&v<=7},pe.from=function(v){return pe.isValid(v)?parseInt(v,10):void 0},pe.getPenaltyN1=function(v){const T=v.size;let w=0,e=0,O=0,f=null,u=null;for(let L=0;L=5&&(w+=e-5+3),f=B,e=1),B=v.get(C,L),B===u?O++:(O>=5&&(w+=O-5+3),u=B,O=1)}e>=5&&(w+=e-5+3),O>=5&&(w+=O-5+3)}return w},pe.getPenaltyN2=function(v){const T=v.size;let w=0;for(let e=0;e=10&&(1488===e||93===e)&&w++,O=O<<1&2047|v.get(u,f),u>=10&&(1488===O||93===O)&&w++}return 40*w},pe.getPenaltyN4=function(v){let T=0;const w=v.data.length;for(let O=0;O=1&&e<10?w.ccBits[0]:e<27?w.ccBits[1]:w.ccBits[2]},pe.getBestModeForData=function(w){return d.testNumeric(w)?pe.NUMERIC:d.testAlphanumeric(w)?pe.ALPHANUMERIC:d.testKanji(w)?pe.KANJI:pe.BYTE},pe.toString=function(w){if(w&&w.id)return w.id;throw new Error("Invalid mode")},pe.isValid=function(w){return w&&w.bit&&w.ccBits},pe.from=function(w,e){if(pe.isValid(w))return w;try{return function v(T){if("string"!=typeof T)throw new Error("Param is not a string");switch(T.toLowerCase()){case"numeric":return pe.NUMERIC;case"alphanumeric":return pe.ALPHANUMERIC;case"kanji":return pe.KANJI;case"byte":return pe.BYTE;default:throw new Error("Unknown mode: "+T)}}(w)}catch{return e}}},6628(Zt,pe,l){const i=l(1677);function d(v){this.mode=i.NUMERIC,this.data=v.toString()}d.getBitsLength=function(T){return 10*Math.floor(T/3)+(T%3?T%3*3+1:0)},d.prototype.getLength=function(){return this.data.length},d.prototype.getBitsLength=function(){return d.getBitsLength(this.data.length)},d.prototype.write=function(T){let w,e,O;for(w=0;w+3<=this.data.length;w+=3)e=this.data.substr(w,3),O=parseInt(e,10),T.put(O,10);const f=this.data.length-w;f>0&&(e=this.data.substr(w),O=parseInt(e,10),T.put(O,3*f+1))},Zt.exports=d},1744(Zt,pe,l){const i=l(6686);pe.mul=function(v,T){const w=new Uint8Array(v.length+T.length-1);for(let e=0;e=0;){const e=w[0];for(let f=0;f>J&1),Ee.set(J<6?J:J<8?J+1:be-15+J,8,De,!0),Ee.set(8,J<8?be-J-1:J<9?15-J-1+1:15-J-1,De,!0);Ee.set(be-8,8,1,!0)}function xe(Ee,V,ce,be){let ne;if(Array.isArray(Ee))ne=A.fromArray(Ee);else{if("string"!=typeof Ee)throw new Error("Invalid data");{let _e=V;if(!_e){const he=A.rawSplit(Ee);_e=L.getBestVersionForData(he,ce)}ne=A.fromString(Ee,_e||40)}}const J=L.getBestVersionForData(ne,ce);if(!J)throw new Error("The amount of data is too big to be stored in a QR Code");if(V){if(V=0&&Re<=6&&(0===Xe||6===Xe)||Xe>=0&&Xe<=6&&(0===Re||6===Re)||Re>=2&&Re<=4&&Xe>=2&&Xe<=4,!0)}}(Xe,V),function le(Ee){const V=Ee.size;for(let ce=8;ce=7&&function Ae(Ee,V){const ce=Ee.size,be=L.getEncodedBits(V);let ne,J,De;for(let Re=0;Re<18;Re++)ne=Math.floor(Re/3),J=Re%3+ce-8-3,De=1==(be>>Re&1),Ee.set(ne,J,De,!0),Ee.set(J,ne,De,!0)}(Xe,V),function W(Ee,V){const ce=Ee.size;let be=-1,ne=ce-1,J=7,De=0;for(let Re=ce-1;Re>0;Re-=2)for(6===Re&&Re--;;){for(let Xe=0;Xe<2;Xe++)if(!Ee.isReserved(ne,Re-Xe)){let _e=!1;De>>J&1)),Ee.set(ne,Re-Xe,_e),J--,-1===J&&(De++,J=7)}if(ne+=be,ne<0||ce<=ne){ne-=be,be=-be;break}}}(Xe,De),isNaN(be)&&(be=O.getBestMask(Xe,j.bind(null,Xe,ce))),O.applyMask(be,Xe),j(Xe,ce,be),{modules:Xe,version:V,errorCorrectionLevel:ce,maskPattern:be,segments:ne}}pe.create=function(V,ce){if(typeof V>"u"||""===V)throw new Error("No input text");let ne,J,be=d.M;return typeof ce<"u"&&(be=d.from(ce.errorCorrectionLevel,d.M),ne=L.from(ce.version),J=O.from(ce.maskPattern),ce.toSJISFunc&&i.setToSJISFunction(ce.toSJISFunc)),xe(V,ne,be,J)}},6289(Zt,pe,l){const i=l(1744);function d(v){this.genPoly=void 0,this.degree=v,this.degree&&this.initialize(this.degree)}d.prototype.initialize=function(T){this.degree=T,this.genPoly=i.generateECPolynomial(this.degree)},d.prototype.encode=function(T){if(!this.genPoly)throw new Error("Encoder not initialized");const w=new Uint8Array(T.length+this.degree);w.set(T);const e=i.mod(w,this.genPoly),O=this.degree-e.length;if(O>0){const f=new Uint8Array(this.degree);return f.set(e,O),f}return e},Zt.exports=d},9359(Zt,pe){const l="[0-9]+";let d="(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";d=d.replace(/u/g,"\\u");const v="(?:(?![A-Z0-9 $%*+\\-./:]|"+d+")(?:.|[\r\n]))+";pe.KANJI=new RegExp(d,"g"),pe.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g"),pe.BYTE=new RegExp(v,"g"),pe.NUMERIC=new RegExp(l,"g"),pe.ALPHANUMERIC=new RegExp("[A-Z $%*+\\-./:]+","g");const T=new RegExp("^"+d+"$"),w=new RegExp("^"+l+"$"),e=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");pe.testKanji=function(f){return T.test(f)},pe.testNumeric=function(f){return w.test(f)},pe.testAlphanumeric=function(f){return e.test(f)}},2868(Zt,pe,l){const i=l(1677),d=l(6628),v=l(1018),T=l(4969),w=l(3264),e=l(9359),O=l(9089),f=l(243);function u(Ae){return unescape(encodeURIComponent(Ae)).length}function L(Ae,j,W){const G=[];let re;for(;null!==(re=Ae.exec(W));)G.push({data:re[0],index:re.index,mode:j,length:re[0].length});return G}function C(Ae){const j=L(e.NUMERIC,i.NUMERIC,Ae),W=L(e.ALPHANUMERIC,i.ALPHANUMERIC,Ae);let G,re;return O.isKanjiModeEnabled()?(G=L(e.BYTE,i.BYTE,Ae),re=L(e.KANJI,i.KANJI,Ae)):(G=L(e.BYTE_KANJI,i.BYTE,Ae),re=[]),j.concat(W,G,re).sort(function(Ee,V){return Ee.index-V.index}).map(function(Ee){return{data:Ee.data,mode:Ee.mode,length:Ee.length}})}function B(Ae,j){switch(j){case i.NUMERIC:return d.getBitsLength(Ae);case i.ALPHANUMERIC:return v.getBitsLength(Ae);case i.KANJI:return w.getBitsLength(Ae);case i.BYTE:return T.getBitsLength(Ae)}}function Ce(Ae,j){let W;const G=i.getBestModeForData(Ae);if(W=i.from(j,G),W!==i.BYTE&&W.bit=0?j[j.length-1]:null;return G&&G.mode===W.mode?(j[j.length-1].data+=W.data,j):(j.push(W),j)},[])}(V))},pe.rawSplit=function(j){return pe.fromArray(C(j,O.isKanjiModeEnabled()))}},9089(Zt,pe){let l;const i=[0,26,44,70,100,134,172,196,242,292,346,404,466,532,581,655,733,815,901,991,1085,1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,2323,2465,2611,2761,2876,3034,3196,3362,3532,3706];pe.getSymbolSize=function(v){if(!v)throw new Error('"version" cannot be null or undefined');if(v<1||v>40)throw new Error('"version" should be in range from 1 to 40');return 4*v+17},pe.getSymbolTotalCodewords=function(v){return i[v]},pe.getBCHDigit=function(d){let v=0;for(;0!==d;)v++,d>>>=1;return v},pe.setToSJISFunction=function(v){if("function"!=typeof v)throw new Error('"toSJISFunc" is not a valid function.');l=v},pe.isKanjiModeEnabled=function(){return typeof l<"u"},pe.toSJIS=function(v){return l(v)}},377(Zt,pe){pe.isValid=function(i){return!isNaN(i)&&i>=1&&i<=40}},1252(Zt,pe,l){const i=l(9089),d=l(3677),v=l(7424),T=l(1677),w=l(377),O=i.getBCHDigit(7973);function u(B,A){return T.getCharCountIndicator(B,A)+4}function L(B,A){let Pe=0;return B.forEach(function(le){const Ce=u(le.mode,A);Pe+=Ce+le.getBitsLength()}),Pe}pe.from=function(A,Pe){return w.isValid(A)?parseInt(A,10):Pe},pe.getCapacity=function(A,Pe,le){if(!w.isValid(A))throw new Error("Invalid QR Code version");typeof le>"u"&&(le=T.BYTE);const j=8*(i.getSymbolTotalCodewords(A)-d.getTotalCodewordsCount(A,Pe));if(le===T.MIXED)return j;const W=j-u(le,A);switch(le){case T.NUMERIC:return Math.floor(W/10*3);case T.ALPHANUMERIC:return Math.floor(W/11*2);case T.KANJI:return Math.floor(W/13);default:return Math.floor(W/8)}},pe.getBestVersionForData=function(A,Pe){let le;const Ce=v.from(Pe,v.M);if(Array.isArray(A)){if(A.length>1)return function C(B,A){for(let Pe=1;Pe<=40;Pe++)if(L(B,Pe)<=pe.getCapacity(Pe,A,T.MIXED))return Pe}(A,Ce);if(0===A.length)return 1;le=A[0]}else le=A;return function f(B,A,Pe){for(let le=1;le<=40;le++)if(A<=pe.getCapacity(le,Pe,B))return le}(le.mode,le.getLength(),Ce)},pe.getEncodedBits=function(A){if(!w.isValid(A)||A<7)throw new Error("Invalid QR Code version");let Pe=A<<12;for(;i.getBCHDigit(Pe)-O>=0;)Pe^=7973<"u"&&(!e||!e.getContext)&&(f=e,e=void 0),e||(u=function v(){try{return document.createElement("canvas")}catch{throw new Error("You need to specify a canvas element")}}()),f=i.getOptions(f);const L=i.getImageWidth(w.modules.size,f),C=u.getContext("2d"),B=C.createImageData(L,L);return i.qrToImageData(B.data,w,f),function d(T,w,e){T.clearRect(0,0,w.width,w.height),w.style||(w.style={}),w.height=e,w.width=e,w.style.height=e+"px",w.style.width=e+"px"}(C,u,L),C.putImageData(B,0,0),u},pe.renderToDataURL=function(w,e,O){let f=O;return typeof f>"u"&&(!e||!e.getContext)&&(f=e,e=void 0),f||(f={}),pe.render(w,e,f).toDataURL(f.type||"image/png",(f.rendererOpts||{}).quality)}},6511(Zt,pe,l){const i=l(7077);function d(w,e){const O=w.a/255,f=e+'="'+w.hex+'"';return O<1?f+" "+e+'-opacity="'+O.toFixed(2).slice(1)+'"':f}function v(w,e,O){let f=w+e;return typeof O<"u"&&(f+=" "+O),f}pe.render=function(e,O,f){const u=i.getOptions(O),L=e.modules.size,C=e.modules.data,B=L+2*u.margin,A=u.color.light.a?"':"",Pe="0&&A>0&&w[B-1]||(f+=L?v("M",A+O,.5+Pe+O):v("m",u,0),u=0,L=!1),A+1',Ae=''+A+Pe+"\n";return"function"==typeof f&&f(null,Ae),Ae}},7077(Zt,pe){function l(i){if("number"==typeof i&&(i=i.toString()),"string"!=typeof i)throw new Error("Color should be defined as hex string");let d=i.slice().replace("#","").split("");if(d.length<3||5===d.length||d.length>8)throw new Error("Invalid hex color: "+i);(3===d.length||4===d.length)&&(d=Array.prototype.concat.apply([],d.map(function(T){return[T,T]}))),6===d.length&&d.push("F","F");const v=parseInt(d.join(""),16);return{r:v>>24&255,g:v>>16&255,b:v>>8&255,a:255&v,hex:"#"+d.slice(0,6).join("")}}pe.getOptions=function(d){d||(d={}),d.color||(d.color={});const T=d.width&&d.width>=21?d.width:void 0;return{width:T,scale:T?4:d.scale||4,margin:typeof d.margin>"u"||null===d.margin||d.margin<0?4:d.margin,color:{dark:l(d.color.dark||"#000000ff"),light:l(d.color.light||"#ffffffff")},type:d.type,rendererOpts:d.rendererOpts||{}}},pe.getScale=function(d,v){return v.width&&v.width>=d+2*v.margin?v.width/(d+2*v.margin):v.scale},pe.getImageWidth=function(d,v){const T=pe.getScale(d,v);return Math.floor((d+2*v.margin)*T)},pe.qrToImageData=function(d,v,T){const w=v.modules.size,e=v.modules.data,O=pe.getScale(w,T),f=Math.floor((w+2*T.margin)*O),u=T.margin*O,L=[T.color.light,T.color.dark];for(let C=0;C=u&&B>=u&&Cd});var i=l(1413);class d extends i.B{constructor(T){super(),this._value=T}get value(){return this.getValue()}_subscribe(T){const w=super._subscribe(T);return!w.closed&&T.next(this._value),w}getValue(){const{hasError:T,thrownError:w,_value:e}=this;if(T)throw w;return this._throwIfClosed(),e}next(T){super.next(this._value=T)}}},1985(Zt,pe,l){"use strict";l.d(pe,{c:()=>f});var i=l(7707),d=l(8359),v=l(3494),T=l(1203),w=l(1026),e=l(8071),O=l(9786);let f=(()=>{class B{constructor(Pe){Pe&&(this._subscribe=Pe)}lift(Pe){const le=new B;return le.source=this,le.operator=Pe,le}subscribe(Pe,le,Ce){const Ae=function C(B){return B&&B instanceof i.vU||function L(B){return B&&(0,e.T)(B.next)&&(0,e.T)(B.error)&&(0,e.T)(B.complete)}(B)&&(0,d.Uv)(B)}(Pe)?Pe:new i.Ms(Pe,le,Ce);return(0,O.Y)(()=>{const{operator:j,source:W}=this;Ae.add(j?j.call(Ae,W):W?this._subscribe(Ae):this._trySubscribe(Ae))}),Ae}_trySubscribe(Pe){try{return this._subscribe(Pe)}catch(le){Pe.error(le)}}forEach(Pe,le){return new(le=u(le))((Ce,Ae)=>{const j=new i.Ms({next:W=>{try{Pe(W)}catch(G){Ae(G),j.unsubscribe()}},error:Ae,complete:Ce});this.subscribe(j)})}_subscribe(Pe){var le;return null===(le=this.source)||void 0===le?void 0:le.subscribe(Pe)}[v.s](){return this}pipe(...Pe){return(0,T.m)(Pe)(this)}toPromise(Pe){return new(Pe=u(Pe))((le,Ce)=>{let Ae;this.subscribe(j=>Ae=j,j=>Ce(j),()=>le(Ae))})}}return B.create=A=>new B(A),B})();function u(B){var A;return null!==(A=B??w.$.Promise)&&void 0!==A?A:Promise}},2771(Zt,pe,l){"use strict";l.d(pe,{m:()=>v});var i=l(1413),d=l(6129);class v extends i.B{constructor(w=1/0,e=1/0,O=d.U){super(),this._bufferSize=w,this._windowTime=e,this._timestampProvider=O,this._buffer=[],this._infiniteTimeWindow=!0,this._infiniteTimeWindow=e===1/0,this._bufferSize=Math.max(1,w),this._windowTime=Math.max(1,e)}next(w){const{isStopped:e,_buffer:O,_infiniteTimeWindow:f,_timestampProvider:u,_windowTime:L}=this;e||(O.push(w),!f&&O.push(u.now()+L)),this._trimBuffer(),super.next(w)}_subscribe(w){this._throwIfClosed(),this._trimBuffer();const e=this._innerSubscribe(w),{_infiniteTimeWindow:O,_buffer:f}=this,u=f.slice();for(let L=0;Lf,B:()=>O});var i=l(1985),d=l(8359);const T=(0,l(1853).L)(u=>function(){u(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"});var w=l(7908),e=l(9786);let O=(()=>{class u extends i.c{constructor(){super(),this.closed=!1,this.currentObservers=null,this.observers=[],this.isStopped=!1,this.hasError=!1,this.thrownError=null}lift(C){const B=new f(this,this);return B.operator=C,B}_throwIfClosed(){if(this.closed)throw new T}next(C){(0,e.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.currentObservers||(this.currentObservers=Array.from(this.observers));for(const B of this.currentObservers)B.next(C)}})}error(C){(0,e.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.hasError=this.isStopped=!0,this.thrownError=C;const{observers:B}=this;for(;B.length;)B.shift().error(C)}})}complete(){(0,e.Y)(()=>{if(this._throwIfClosed(),!this.isStopped){this.isStopped=!0;const{observers:C}=this;for(;C.length;)C.shift().complete()}})}unsubscribe(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null}get observed(){var C;return(null===(C=this.observers)||void 0===C?void 0:C.length)>0}_trySubscribe(C){return this._throwIfClosed(),super._trySubscribe(C)}_subscribe(C){return this._throwIfClosed(),this._checkFinalizedStatuses(C),this._innerSubscribe(C)}_innerSubscribe(C){const{hasError:B,isStopped:A,observers:Pe}=this;return B||A?d.Kn:(this.currentObservers=null,Pe.push(C),new d.yU(()=>{this.currentObservers=null,(0,w.o)(Pe,C)}))}_checkFinalizedStatuses(C){const{hasError:B,thrownError:A,isStopped:Pe}=this;B?C.error(A):Pe&&C.complete()}asObservable(){const C=new i.c;return C.source=this,C}}return u.create=(L,C)=>new f(L,C),u})();class f extends O{constructor(L,C){super(),this.destination=L,this.source=C}next(L){var C,B;null===(B=null===(C=this.destination)||void 0===C?void 0:C.next)||void 0===B||B.call(C,L)}error(L){var C,B;null===(B=null===(C=this.destination)||void 0===C?void 0:C.error)||void 0===B||B.call(C,L)}complete(){var L,C;null===(C=null===(L=this.destination)||void 0===L?void 0:L.complete)||void 0===C||C.call(L)}_subscribe(L){var C,B;return null!==(B=null===(C=this.source)||void 0===C?void 0:C.subscribe(L))&&void 0!==B?B:d.Kn}}},7707(Zt,pe,l){"use strict";l.d(pe,{Ms:()=>Ce,vU:()=>B});var i=l(8071),d=l(8359),v=l(1026),T=l(5334),w=l(5343);const e=u("C",void 0,void 0);function u(re,xe,Ee){return{kind:re,value:xe,error:Ee}}var L=l(9270),C=l(9786);class B extends d.yU{constructor(xe){super(),this.isStopped=!1,xe?(this.destination=xe,(0,d.Uv)(xe)&&xe.add(this)):this.destination=G}static create(xe,Ee,V){return new Ce(xe,Ee,V)}next(xe){this.isStopped?W(function f(re){return u("N",re,void 0)}(xe),this):this._next(xe)}error(xe){this.isStopped?W(function O(re){return u("E",void 0,re)}(xe),this):(this.isStopped=!0,this._error(xe))}complete(){this.isStopped?W(e,this):(this.isStopped=!0,this._complete())}unsubscribe(){this.closed||(this.isStopped=!0,super.unsubscribe(),this.destination=null)}_next(xe){this.destination.next(xe)}_error(xe){try{this.destination.error(xe)}finally{this.unsubscribe()}}_complete(){try{this.destination.complete()}finally{this.unsubscribe()}}}const A=Function.prototype.bind;function Pe(re,xe){return A.call(re,xe)}class le{constructor(xe){this.partialObserver=xe}next(xe){const{partialObserver:Ee}=this;if(Ee.next)try{Ee.next(xe)}catch(V){Ae(V)}}error(xe){const{partialObserver:Ee}=this;if(Ee.error)try{Ee.error(xe)}catch(V){Ae(V)}else Ae(xe)}complete(){const{partialObserver:xe}=this;if(xe.complete)try{xe.complete()}catch(Ee){Ae(Ee)}}}class Ce extends B{constructor(xe,Ee,V){let ce;if(super(),(0,i.T)(xe)||!xe)ce={next:xe??void 0,error:Ee??void 0,complete:V??void 0};else{let be;this&&v.$.useDeprecatedNextContext?(be=Object.create(xe),be.unsubscribe=()=>this.unsubscribe(),ce={next:xe.next&&Pe(xe.next,be),error:xe.error&&Pe(xe.error,be),complete:xe.complete&&Pe(xe.complete,be)}):ce=xe}this.destination=new le(ce)}}function Ae(re){v.$.useDeprecatedSynchronousErrorHandling?(0,C.l)(re):(0,T.m)(re)}function W(re,xe){const{onStoppedNotification:Ee}=v.$;Ee&&L.f.setTimeout(()=>Ee(re,xe))}const G={closed:!0,next:w.l,error:function j(re){throw re},complete:w.l}},8359(Zt,pe,l){"use strict";l.d(pe,{Kn:()=>e,yU:()=>w,Uv:()=>O});var i=l(8071);const v=(0,l(1853).L)(u=>function(C){u(this),this.message=C?`${C.length} errors occurred during unsubscription:\n${C.map((B,A)=>`${A+1}) ${B.toString()}`).join("\n ")}`:"",this.name="UnsubscriptionError",this.errors=C});var T=l(7908);class w{constructor(L){this.initialTeardown=L,this.closed=!1,this._parentage=null,this._finalizers=null}unsubscribe(){let L;if(!this.closed){this.closed=!0;const{_parentage:C}=this;if(C)if(this._parentage=null,Array.isArray(C))for(const Pe of C)Pe.remove(this);else C.remove(this);const{initialTeardown:B}=this;if((0,i.T)(B))try{B()}catch(Pe){L=Pe instanceof v?Pe.errors:[Pe]}const{_finalizers:A}=this;if(A){this._finalizers=null;for(const Pe of A)try{f(Pe)}catch(le){L=L??[],le instanceof v?L=[...L,...le.errors]:L.push(le)}}if(L)throw new v(L)}}add(L){var C;if(L&&L!==this)if(this.closed)f(L);else{if(L instanceof w){if(L.closed||L._hasParent(this))return;L._addParent(this)}(this._finalizers=null!==(C=this._finalizers)&&void 0!==C?C:[]).push(L)}}_hasParent(L){const{_parentage:C}=this;return C===L||Array.isArray(C)&&C.includes(L)}_addParent(L){const{_parentage:C}=this;this._parentage=Array.isArray(C)?(C.push(L),C):C?[C,L]:L}_removeParent(L){const{_parentage:C}=this;C===L?this._parentage=null:Array.isArray(C)&&(0,T.o)(C,L)}remove(L){const{_finalizers:C}=this;C&&(0,T.o)(C,L),L instanceof w&&L._removeParent(this)}}w.EMPTY=(()=>{const u=new w;return u.closed=!0,u})();const e=w.EMPTY;function O(u){return u instanceof w||u&&"closed"in u&&(0,i.T)(u.remove)&&(0,i.T)(u.add)&&(0,i.T)(u.unsubscribe)}function f(u){(0,i.T)(u)?u():u.unsubscribe()}},1026(Zt,pe,l){"use strict";l.d(pe,{$:()=>i});const i={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1}},17(Zt,pe,l){"use strict";l.d(pe,{G:()=>e});var i=l(1985),d=l(8359),v=l(9898),T=l(4360),w=l(9974);class e extends i.c{constructor(f,u){super(),this.source=f,this.subjectFactory=u,this._subject=null,this._refCount=0,this._connection=null,(0,w.S)(f)&&(this.lift=f.lift)}_subscribe(f){return this.getSubject().subscribe(f)}getSubject(){const f=this._subject;return(!f||f.isStopped)&&(this._subject=this.subjectFactory()),this._subject}_teardown(){this._refCount=0;const{_connection:f}=this;this._subject=this._connection=null,f?.unsubscribe()}connect(){let f=this._connection;if(!f){f=this._connection=new d.yU;const u=this.getSubject();f.add(this.source.subscribe((0,T._)(u,void 0,()=>{this._teardown(),u.complete()},L=>{this._teardown(),u.error(L)},()=>this._teardown()))),f.closed&&(this._connection=null,f=d.yU.EMPTY)}return f}refCount(){return(0,v.B)()(this)}}},4572(Zt,pe,l){"use strict";l.d(pe,{z:()=>L});var i=l(1985),d=l(3073),v=l(2806),T=l(3669),w=l(6450),e=l(9326),O=l(8496),f=l(4360),u=l(5225);function L(...A){const Pe=(0,e.lI)(A),le=(0,e.ms)(A),{args:Ce,keys:Ae}=(0,d.D)(A);if(0===Ce.length)return(0,v.H)([],Pe);const j=new i.c(function C(A,Pe,le=T.D){return Ce=>{B(Pe,()=>{const{length:Ae}=A,j=new Array(Ae);let W=Ae,G=Ae;for(let re=0;re{const xe=(0,v.H)(A[re],Pe);let Ee=!1;xe.subscribe((0,f._)(Ce,V=>{j[re]=V,Ee||(Ee=!0,G--),G||Ce.next(le(j.slice()))},()=>{--W||Ce.complete()}))},Ce)},Ce)}}(Ce,Pe,Ae?W=>(0,O.e)(Ae,W):T.D));return le?j.pipe((0,w.I)(le)):j}function B(A,Pe,le){A?(0,u.N)(le,A,Pe):Pe()}},8793(Zt,pe,l){"use strict";l.d(pe,{x:()=>w});var i=l(6365),v=l(9326),T=l(2806);function w(...e){return function d(){return(0,i.U)(1)}()((0,T.H)(e,(0,v.lI)(e)))}},9030(Zt,pe,l){"use strict";l.d(pe,{v:()=>v});var i=l(1985),d=l(8750);function v(T){return new i.c(w=>{(0,d.Tg)(T()).subscribe(w)})}},983(Zt,pe,l){"use strict";l.d(pe,{w:()=>v});const v=new(l(1985).c)(e=>e.complete())},7468(Zt,pe,l){"use strict";l.d(pe,{p:()=>f});var i=l(1985),d=l(3073),v=l(8750),T=l(9326),w=l(4360),e=l(6450),O=l(8496);function f(...u){const L=(0,T.ms)(u),{args:C,keys:B}=(0,d.D)(u),A=new i.c(Pe=>{const{length:le}=C;if(!le)return void Pe.complete();const Ce=new Array(le);let Ae=le,j=le;for(let W=0;W{G||(G=!0,j--),Ce[W]=re},()=>Ae--,void 0,()=>{(!Ae||!G)&&(j||Pe.next(B?(0,O.e)(B,Ce):Ce),Pe.complete())}))}});return L?A.pipe((0,e.I)(L)):A}},2806(Zt,pe,l){"use strict";l.d(pe,{H:()=>Ee});var i=l(8750),d=l(941),v=l(9974);function T(V,ce=0){return(0,v.N)((be,ne)=>{ne.add(V.schedule(()=>be.subscribe(ne),ce))})}var O=l(1985),u=l(4761),L=l(8071),C=l(5225);function A(V,ce){if(!V)throw new Error("Iterable cannot be null");return new O.c(be=>{(0,C.N)(be,ce,()=>{const ne=V[Symbol.asyncIterator]();(0,C.N)(be,ce,()=>{ne.next().then(J=>{J.done?be.complete():be.next(J.value)})},0,!0)})})}var Pe=l(5055),le=l(9858),Ce=l(7441),Ae=l(5397),j=l(7953),W=l(591),G=l(5196);function Ee(V,ce){return ce?function xe(V,ce){if(null!=V){if((0,Pe.l)(V))return function w(V,ce){return(0,i.Tg)(V).pipe(T(ce),(0,d.Q)(ce))}(V,ce);if((0,Ce.X)(V))return function f(V,ce){return new O.c(be=>{let ne=0;return ce.schedule(function(){ne===V.length?be.complete():(be.next(V[ne++]),be.closed||this.schedule())})})}(V,ce);if((0,le.y)(V))return function e(V,ce){return(0,i.Tg)(V).pipe(T(ce),(0,d.Q)(ce))}(V,ce);if((0,j.T)(V))return A(V,ce);if((0,Ae.x)(V))return function B(V,ce){return new O.c(be=>{let ne;return(0,C.N)(be,ce,()=>{ne=V[u.l](),(0,C.N)(be,ce,()=>{let J,De;try{({value:J,done:De}=ne.next())}catch(Re){return void be.error(Re)}De?be.complete():be.next(J)},0,!0)}),()=>(0,L.T)(ne?.return)&&ne.return()})}(V,ce);if((0,G.U)(V))return function re(V,ce){return A((0,G.C)(V),ce)}(V,ce)}throw(0,W.L)(V)}(V,ce):(0,i.Tg)(V)}},3726(Zt,pe,l){"use strict";l.d(pe,{R:()=>L});var i=l(8750),d=l(1985),v=l(1397),T=l(7441),w=l(8071),e=l(6450);const O=["addListener","removeListener"],f=["addEventListener","removeEventListener"],u=["on","off"];function L(le,Ce,Ae,j){if((0,w.T)(Ae)&&(j=Ae,Ae=void 0),j)return L(le,Ce,Ae).pipe((0,e.I)(j));const[W,G]=function Pe(le){return(0,w.T)(le.addEventListener)&&(0,w.T)(le.removeEventListener)}(le)?f.map(re=>xe=>le[re](Ce,xe,Ae)):function B(le){return(0,w.T)(le.addListener)&&(0,w.T)(le.removeListener)}(le)?O.map(C(le,Ce)):function A(le){return(0,w.T)(le.on)&&(0,w.T)(le.off)}(le)?u.map(C(le,Ce)):[];if(!W&&(0,T.X)(le))return(0,v.Z)(re=>L(re,Ce,Ae))((0,i.Tg)(le));if(!W)throw new TypeError("Invalid event target");return new d.c(re=>{const xe=(...Ee)=>re.next(1G(xe)})}function C(le,Ce){return Ae=>j=>le[Ae](Ce,j)}},8750(Zt,pe,l){"use strict";l.d(pe,{Tg:()=>A});var i=l(1635),d=l(7441),v=l(9858),T=l(1985),w=l(5055),e=l(7953),O=l(591),f=l(5397),u=l(5196),L=l(8071),C=l(5334),B=l(3494);function A(re){if(re instanceof T.c)return re;if(null!=re){if((0,w.l)(re))return function Pe(re){return new T.c(xe=>{const Ee=re[B.s]();if((0,L.T)(Ee.subscribe))return Ee.subscribe(xe);throw new TypeError("Provided object does not correctly implement Symbol.observable")})}(re);if((0,d.X)(re))return function le(re){return new T.c(xe=>{for(let Ee=0;Ee{re.then(Ee=>{xe.closed||(xe.next(Ee),xe.complete())},Ee=>xe.error(Ee)).then(null,C.m)})}(re);if((0,e.T)(re))return j(re);if((0,f.x)(re))return function Ae(re){return new T.c(xe=>{for(const Ee of re)if(xe.next(Ee),xe.closed)return;xe.complete()})}(re);if((0,u.U)(re))return function W(re){return j((0,u.C)(re))}(re)}throw(0,O.L)(re)}function j(re){return new T.c(xe=>{(function G(re,xe){var Ee,V,ce,be;return(0,i.sH)(this,void 0,void 0,function*(){try{for(Ee=(0,i.xN)(re);!(V=yield Ee.next()).done;)if(xe.next(V.value),xe.closed)return}catch(ne){ce={error:ne}}finally{try{V&&!V.done&&(be=Ee.return)&&(yield be.call(Ee))}finally{if(ce)throw ce.error}}xe.complete()})})(re,xe).catch(Ee=>xe.error(Ee))})}},7786(Zt,pe,l){"use strict";l.d(pe,{h:()=>e});var i=l(6365),d=l(8750),v=l(983),T=l(9326),w=l(2806);function e(...O){const f=(0,T.lI)(O),u=(0,T.R0)(O,1/0),L=O;return L.length?1===L.length?(0,d.Tg)(L[0]):(0,i.U)(u)((0,w.H)(L,f)):v.w}},7673(Zt,pe,l){"use strict";l.d(pe,{of:()=>v});var i=l(9326),d=l(2806);function v(...T){const w=(0,i.lI)(T);return(0,d.H)(T,w)}},8810(Zt,pe,l){"use strict";l.d(pe,{$:()=>v});var i=l(1985),d=l(8071);function v(T,w){const e=(0,d.T)(T)?T:()=>T,O=f=>f.error(e());return new i.c(w?f=>w.schedule(O,0,f):O)}},1807(Zt,pe,l){"use strict";l.d(pe,{O:()=>w});var i=l(1985),d=l(3236),v=l(9470),T=l(8211);function w(e=0,O,f=d.b){let u=-1;return null!=O&&((0,v.m)(O)?f=O:u=O),new i.c(L=>{let C=(0,T.v)(e)?+e-f.now():e;C<0&&(C=0);let B=0;return f.schedule(function(){L.closed||(L.next(B++),0<=u?this.schedule(void 0,u):L.complete())},C)})}},4360(Zt,pe,l){"use strict";l.d(pe,{H:()=>v,_:()=>d});var i=l(7707);function d(T,w,e,O,f){return new v(T,w,e,O,f)}class v extends i.vU{constructor(w,e,O,f,u,L){super(w),this.onFinalize=u,this.shouldUnsubscribe=L,this._next=e?function(C){try{e(C)}catch(B){w.error(B)}}:super._next,this._error=f?function(C){try{f(C)}catch(B){w.error(B)}finally{this.unsubscribe()}}:super._error,this._complete=O?function(){try{O()}catch(C){w.error(C)}finally{this.unsubscribe()}}:super._complete}unsubscribe(){var w;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){const{closed:e}=this;super.unsubscribe(),!e&&(null===(w=this.onFinalize)||void 0===w||w.call(this))}}}},3798(Zt,pe,l){"use strict";l.d(pe,{Z:()=>O});var i=l(3236),d=l(9974),v=l(8750),T=l(4360),e=l(1807);function O(f,u=i.E){return function w(f){return(0,d.N)((u,L)=>{let C=!1,B=null,A=null,Pe=!1;const le=()=>{if(A?.unsubscribe(),A=null,C){C=!1;const Ae=B;B=null,L.next(Ae)}Pe&&L.complete()},Ce=()=>{A=null,Pe&&L.complete()};u.subscribe((0,T._)(L,Ae=>{C=!0,B=Ae,A||(0,v.Tg)(f(Ae)).subscribe(A=(0,T._)(L,le,Ce))},()=>{Pe=!0,(!C||!A||A.closed)&&L.complete()}))})}(()=>(0,e.O)(f,u))}},9437(Zt,pe,l){"use strict";l.d(pe,{W:()=>T});var i=l(8750),d=l(4360),v=l(9974);function T(w){return(0,v.N)((e,O)=>{let L,f=null,u=!1;f=e.subscribe((0,d._)(O,void 0,void 0,C=>{L=(0,i.Tg)(w(C,T(w)(e))),f?(f.unsubscribe(),f=null,L.subscribe(O)):u=!0})),u&&(f.unsubscribe(),f=null,L.subscribe(O))})}},274(Zt,pe,l){"use strict";l.d(pe,{H:()=>v});var i=l(1397),d=l(8071);function v(T,w){return(0,d.T)(w)?(0,i.Z)(T,w,1):(0,i.Z)(T,1)}},152(Zt,pe,l){"use strict";l.d(pe,{B:()=>T});var i=l(3236),d=l(9974),v=l(4360);function T(w,e=i.E){return(0,d.N)((O,f)=>{let u=null,L=null,C=null;const B=()=>{if(u){u.unsubscribe(),u=null;const Pe=L;L=null,f.next(Pe)}};function A(){const Pe=C+w,le=e.now();if(le{L=Pe,C=e.now(),u||(u=e.schedule(A,w),f.add(u))},()=>{B(),f.complete()},void 0,()=>{L=u=null}))})}},9901(Zt,pe,l){"use strict";l.d(pe,{U:()=>v});var i=l(9974),d=l(4360);function v(T){return(0,i.N)((w,e)=>{let O=!1;w.subscribe((0,d._)(e,f=>{O=!0,e.next(f)},()=>{O||e.next(T),e.complete()}))})}},3294(Zt,pe,l){"use strict";l.d(pe,{F:()=>T});var i=l(3669),d=l(9974),v=l(4360);function T(e,O=i.D){return e=e??w,(0,d.N)((f,u)=>{let L,C=!0;f.subscribe((0,v._)(u,B=>{const A=O(B);(C||!e(L,A))&&(C=!1,L=A,u.next(B))}))})}function w(e,O){return e===O}},5964(Zt,pe,l){"use strict";l.d(pe,{p:()=>v});var i=l(9974),d=l(4360);function v(T,w){return(0,i.N)((e,O)=>{let f=0;e.subscribe((0,d._)(O,u=>T.call(w,u,f++)&&O.next(u)))})}},980(Zt,pe,l){"use strict";l.d(pe,{j:()=>d});var i=l(9974);function d(v){return(0,i.N)((T,w)=>{try{T.subscribe(w)}finally{w.add(v)}})}},1594(Zt,pe,l){"use strict";l.d(pe,{$:()=>O});var i=l(9350),d=l(5964),v=l(6697),T=l(9901),w=l(3774),e=l(3669);function O(f,u){const L=arguments.length>=2;return C=>C.pipe(f?(0,d.p)((B,A)=>f(B,A,C)):e.D,(0,v.s)(1),L?(0,T.U)(u):(0,w.v)(()=>new i.G))}},3557(Zt,pe,l){"use strict";l.d(pe,{w:()=>T});var i=l(9974),d=l(4360),v=l(5343);function T(){return(0,i.N)((w,e)=>{w.subscribe((0,d._)(e,v.l))})}},6354(Zt,pe,l){"use strict";l.d(pe,{T:()=>v});var i=l(9974),d=l(4360);function v(T,w){return(0,i.N)((e,O)=>{let f=0;e.subscribe((0,d._)(O,u=>{O.next(T.call(w,u,f++))}))})}},3703(Zt,pe,l){"use strict";l.d(pe,{u:()=>d});var i=l(6354);function d(v){return(0,i.T)(()=>v)}},6365(Zt,pe,l){"use strict";l.d(pe,{U:()=>v});var i=l(1397),d=l(3669);function v(T=1/0){return(0,i.Z)(d.D,T)}},1397(Zt,pe,l){"use strict";l.d(pe,{Z:()=>f});var i=l(6354),d=l(8750),v=l(9974),T=l(5225),w=l(4360),O=l(8071);function f(u,L,C=1/0){return(0,O.T)(L)?f((B,A)=>(0,i.T)((Pe,le)=>L(B,Pe,A,le))((0,d.Tg)(u(B,A))),C):("number"==typeof L&&(C=L),(0,v.N)((B,A)=>function e(u,L,C,B,A,Pe,le,Ce){const Ae=[];let j=0,W=0,G=!1;const re=()=>{G&&!Ae.length&&!j&&L.complete()},xe=V=>j{Pe&&L.next(V),j++;let ce=!1;(0,d.Tg)(C(V,W++)).subscribe((0,w._)(L,be=>{A?.(be),Pe?xe(be):L.next(be)},()=>{ce=!0},void 0,()=>{if(ce)try{for(j--;Ae.length&&jEe(be)):Ee(be)}re()}catch(be){L.error(be)}}))};return u.subscribe((0,w._)(L,xe,()=>{G=!0,re()})),()=>{Ce?.()}}(B,A,u,C)))}},941(Zt,pe,l){"use strict";l.d(pe,{Q:()=>T});var i=l(5225),d=l(9974),v=l(4360);function T(w,e=0){return(0,d.N)((O,f)=>{O.subscribe((0,v._)(f,u=>(0,i.N)(f,w,()=>f.next(u),e),()=>(0,i.N)(f,w,()=>f.complete(),e),u=>(0,i.N)(f,w,()=>f.error(u),e)))})}},9898(Zt,pe,l){"use strict";l.d(pe,{B:()=>v});var i=l(9974),d=l(4360);function v(){return(0,i.N)((T,w)=>{let e=null;T._refCount++;const O=(0,d._)(w,void 0,void 0,void 0,()=>{if(!T||T._refCount<=0||0<--T._refCount)return void(e=null);const f=T._connection,u=e;e=null,f&&(!u||f===u)&&f.unsubscribe(),w.unsubscribe()});T.subscribe(O),O.closed||(e=T.connect())})}},1943(Zt,pe,l){"use strict";l.d(pe,{S:()=>v});var i=l(9974),d=l(6649);function v(T,w){return(0,i.N)((0,d.S)(T,w,arguments.length>=2,!0))}},6649(Zt,pe,l){"use strict";l.d(pe,{S:()=>d});var i=l(4360);function d(v,T,w,e,O){return(f,u)=>{let L=w,C=T,B=0;f.subscribe((0,i._)(u,A=>{const Pe=B++;C=L?v(C,A,Pe):(L=!0,A),e&&u.next(C)},O&&(()=>{L&&u.next(C),u.complete()})))}}},7647(Zt,pe,l){"use strict";l.d(pe,{u:()=>w});var i=l(8750),d=l(1413),v=l(7707),T=l(9974);function w(O={}){const{connector:f=()=>new d.B,resetOnError:u=!0,resetOnComplete:L=!0,resetOnRefCountZero:C=!0}=O;return B=>{let A,Pe,le,Ce=0,Ae=!1,j=!1;const W=()=>{Pe?.unsubscribe(),Pe=void 0},G=()=>{W(),A=le=void 0,Ae=j=!1},re=()=>{const xe=A;G(),xe?.unsubscribe()};return(0,T.N)((xe,Ee)=>{Ce++,!j&&!Ae&&W();const V=le=le??f();Ee.add(()=>{Ce--,0===Ce&&!j&&!Ae&&(Pe=e(re,C))}),V.subscribe(Ee),!A&&Ce>0&&(A=new v.Ms({next:ce=>V.next(ce),error:ce=>{j=!0,W(),Pe=e(G,u,ce),V.error(ce)},complete:()=>{Ae=!0,W(),Pe=e(G,L),V.complete()}}),(0,i.Tg)(xe).subscribe(A))})(B)}}function e(O,f,...u){if(!0===f)return void O();if(!1===f)return;const L=new v.Ms({next:()=>{L.unsubscribe(),O()}});return(0,i.Tg)(f(...u)).subscribe(L)}},5245(Zt,pe,l){"use strict";l.d(pe,{i:()=>d});var i=l(5964);function d(v){return(0,i.p)((T,w)=>v<=w)}},9172(Zt,pe,l){"use strict";l.d(pe,{Z:()=>T});var i=l(8793),d=l(9326),v=l(9974);function T(...w){const e=(0,d.lI)(w);return(0,v.N)((O,f)=>{(e?(0,i.x)(w,O,e):(0,i.x)(w,O)).subscribe(f)})}},5558(Zt,pe,l){"use strict";l.d(pe,{n:()=>T});var i=l(8750),d=l(9974),v=l(4360);function T(w,e){return(0,d.N)((O,f)=>{let u=null,L=0,C=!1;const B=()=>C&&!u&&f.complete();O.subscribe((0,v._)(f,A=>{u?.unsubscribe();let Pe=0;const le=L++;(0,i.Tg)(w(A,le)).subscribe(u=(0,v._)(f,Ce=>f.next(e?e(A,Ce,le,Pe++):Ce),()=>{u=null,B()}))},()=>{C=!0,B()}))})}},6697(Zt,pe,l){"use strict";l.d(pe,{s:()=>T});var i=l(983),d=l(9974),v=l(4360);function T(w){return w<=0?()=>i.w:(0,d.N)((e,O)=>{let f=0;e.subscribe((0,v._)(O,u=>{++f<=w&&(O.next(u),w<=f&&O.complete())}))})}},6977(Zt,pe,l){"use strict";l.d(pe,{Q:()=>w});var i=l(9974),d=l(4360),v=l(8750),T=l(5343);function w(e){return(0,i.N)((O,f)=>{(0,v.Tg)(e).subscribe((0,d._)(f,()=>f.complete(),T.l)),!f.closed&&O.subscribe(f)})}},8141(Zt,pe,l){"use strict";l.d(pe,{M:()=>w});var i=l(8071),d=l(9974),v=l(4360),T=l(3669);function w(e,O,f){const u=(0,i.T)(e)||O||f?{next:e,error:O,complete:f}:e;return u?(0,d.N)((L,C)=>{var B;null===(B=u.subscribe)||void 0===B||B.call(u);let A=!0;L.subscribe((0,v._)(C,Pe=>{var le;null===(le=u.next)||void 0===le||le.call(u,Pe),C.next(Pe)},()=>{var Pe;A=!1,null===(Pe=u.complete)||void 0===Pe||Pe.call(u),C.complete()},Pe=>{var le;A=!1,null===(le=u.error)||void 0===le||le.call(u,Pe),C.error(Pe)},()=>{var Pe,le;A&&(null===(Pe=u.unsubscribe)||void 0===Pe||Pe.call(u)),null===(le=u.finalize)||void 0===le||le.call(u)}))}):T.D}},3774(Zt,pe,l){"use strict";l.d(pe,{v:()=>T});var i=l(9350),d=l(9974),v=l(4360);function T(e=w){return(0,d.N)((O,f)=>{let u=!1;O.subscribe((0,v._)(f,L=>{u=!0,f.next(L)},()=>u?f.complete():f.error(e())))})}function w(){return new i.G}},3993(Zt,pe,l){"use strict";l.d(pe,{E:()=>O});var i=l(9974),d=l(4360),v=l(8750),T=l(3669),w=l(5343),e=l(9326);function O(...f){const u=(0,e.ms)(f);return(0,i.N)((L,C)=>{const B=f.length,A=new Array(B);let Pe=f.map(()=>!1),le=!1;for(let Ce=0;Ce{A[Ce]=Ae,!le&&!Pe[Ce]&&(Pe[Ce]=!0,(le=Pe.every(T.D))&&(Pe=null))},w.l));L.subscribe((0,d._)(C,Ce=>{if(le){const Ae=[Ce,...A];C.next(u?u(...Ae):Ae)}}))})}},6780(Zt,pe,l){"use strict";l.d(pe,{R:()=>w});var i=l(8359);class d extends i.yU{constructor(O,f){super()}schedule(O,f=0){return this}}const v={setInterval(e,O,...f){const{delegate:u}=v;return u?.setInterval?u.setInterval(e,O,...f):setInterval(e,O,...f)},clearInterval(e){const{delegate:O}=v;return(O?.clearInterval||clearInterval)(e)},delegate:void 0};var T=l(7908);class w extends d{constructor(O,f){super(O,f),this.scheduler=O,this.work=f,this.pending=!1}schedule(O,f=0){var u;if(this.closed)return this;this.state=O;const L=this.id,C=this.scheduler;return null!=L&&(this.id=this.recycleAsyncId(C,L,f)),this.pending=!0,this.delay=f,this.id=null!==(u=this.id)&&void 0!==u?u:this.requestAsyncId(C,this.id,f),this}requestAsyncId(O,f,u=0){return v.setInterval(O.flush.bind(O,this),u)}recycleAsyncId(O,f,u=0){if(null!=u&&this.delay===u&&!1===this.pending)return f;null!=f&&v.clearInterval(f)}execute(O,f){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;const u=this._execute(O,f);if(u)return u;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))}_execute(O,f){let L,u=!1;try{this.work(O)}catch(C){u=!0,L=C||new Error("Scheduled action threw falsy error")}if(u)return this.unsubscribe(),L}unsubscribe(){if(!this.closed){const{id:O,scheduler:f}=this,{actions:u}=f;this.work=this.state=this.scheduler=null,this.pending=!1,(0,T.o)(u,this),null!=O&&(this.id=this.recycleAsyncId(f,O,null)),this.delay=null,super.unsubscribe()}}}},9687(Zt,pe,l){"use strict";l.d(pe,{q:()=>v});var i=l(6129);class d{constructor(w,e=d.now){this.schedulerActionCtor=w,this.now=e}schedule(w,e=0,O){return new this.schedulerActionCtor(this,w).schedule(O,e)}}d.now=i.U.now;class v extends d{constructor(w,e=d.now){super(w,e),this.actions=[],this._active=!1}flush(w){const{actions:e}=this;if(this._active)return void e.push(w);let O;this._active=!0;do{if(O=w.execute(w.state,w.delay))break}while(w=e.shift());if(this._active=!1,O){for(;w=e.shift();)w.unsubscribe();throw O}}}},3236(Zt,pe,l){"use strict";l.d(pe,{E:()=>v,b:()=>T});var i=l(6780);const v=new(l(9687).q)(i.R),T=v},6129(Zt,pe,l){"use strict";l.d(pe,{U:()=>i});const i={now:()=>(i.delegate||Date).now(),delegate:void 0}},7242(Zt,pe,l){"use strict";l.d(pe,{T:()=>w});var i=l(6780),v=l(9687);const w=new class T extends v.q{}(class d extends i.R{constructor(f,u){super(f,u),this.scheduler=f,this.work=u}schedule(f,u=0){return u>0?super.schedule(f,u):(this.delay=u,this.state=f,this.scheduler.flush(this),this)}execute(f,u){return u>0||this.closed?super.execute(f,u):this._execute(f,u)}requestAsyncId(f,u,L=0){return null!=L&&L>0||null==L&&this.delay>0?super.requestAsyncId(f,u,L):(f.flush(this),0)}})},9270(Zt,pe,l){"use strict";l.d(pe,{f:()=>i});const i={setTimeout(d,v,...T){const{delegate:w}=i;return w?.setTimeout?w.setTimeout(d,v,...T):setTimeout(d,v,...T)},clearTimeout(d){const{delegate:v}=i;return(v?.clearTimeout||clearTimeout)(d)},delegate:void 0}},4761(Zt,pe,l){"use strict";l.d(pe,{l:()=>d});const d=function i(){return"function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator"}()},3494(Zt,pe,l){"use strict";l.d(pe,{s:()=>i});const i="function"==typeof Symbol&&Symbol.observable||"@@observable"},9350(Zt,pe,l){"use strict";l.d(pe,{G:()=>d});const d=(0,l(1853).L)(v=>function(){v(this),this.name="EmptyError",this.message="no elements in sequence"})},9326(Zt,pe,l){"use strict";l.d(pe,{R0:()=>e,lI:()=>w,ms:()=>T});var i=l(8071),d=l(9470);function v(O){return O[O.length-1]}function T(O){return(0,i.T)(v(O))?O.pop():void 0}function w(O){return(0,d.m)(v(O))?O.pop():void 0}function e(O,f){return"number"==typeof v(O)?O.pop():f}},3073(Zt,pe,l){"use strict";l.d(pe,{D:()=>w});const{isArray:i}=Array,{getPrototypeOf:d,prototype:v,keys:T}=Object;function w(O){if(1===O.length){const f=O[0];if(i(f))return{args:f,keys:null};if(function e(O){return O&&"object"==typeof O&&d(O)===v}(f)){const u=T(f);return{args:u.map(L=>f[L]),keys:u}}}return{args:O,keys:null}}},7908(Zt,pe,l){"use strict";function i(d,v){if(d){const T=d.indexOf(v);0<=T&&d.splice(T,1)}}l.d(pe,{o:()=>i})},1853(Zt,pe,l){"use strict";function i(d){const T=d(w=>{Error.call(w),w.stack=(new Error).stack});return T.prototype=Object.create(Error.prototype),T.prototype.constructor=T,T}l.d(pe,{L:()=>i})},8496(Zt,pe,l){"use strict";function i(d,v){return d.reduce((T,w,e)=>(T[w]=v[e],T),{})}l.d(pe,{e:()=>i})},9786(Zt,pe,l){"use strict";l.d(pe,{Y:()=>v,l:()=>T});var i=l(1026);let d=null;function v(w){if(i.$.useDeprecatedSynchronousErrorHandling){const e=!d;if(e&&(d={errorThrown:!1,error:null}),w(),e){const{errorThrown:O,error:f}=d;if(d=null,O)throw f}}else w()}function T(w){i.$.useDeprecatedSynchronousErrorHandling&&d&&(d.errorThrown=!0,d.error=w)}},5225(Zt,pe,l){"use strict";function i(d,v,T,w=0,e=!1){const O=v.schedule(function(){T(),e?d.add(this.schedule(null,w)):this.unsubscribe()},w);if(d.add(O),!e)return O}l.d(pe,{N:()=>i})},3669(Zt,pe,l){"use strict";function i(d){return d}l.d(pe,{D:()=>i})},7441(Zt,pe,l){"use strict";l.d(pe,{X:()=>i});const i=d=>d&&"number"==typeof d.length&&"function"!=typeof d},7953(Zt,pe,l){"use strict";l.d(pe,{T:()=>d});var i=l(8071);function d(v){return Symbol.asyncIterator&&(0,i.T)(v?.[Symbol.asyncIterator])}},8211(Zt,pe,l){"use strict";function i(d){return d instanceof Date&&!isNaN(d)}l.d(pe,{v:()=>i})},8071(Zt,pe,l){"use strict";function i(d){return"function"==typeof d}l.d(pe,{T:()=>i})},5055(Zt,pe,l){"use strict";l.d(pe,{l:()=>v});var i=l(3494),d=l(8071);function v(T){return(0,d.T)(T[i.s])}},5397(Zt,pe,l){"use strict";l.d(pe,{x:()=>v});var i=l(4761),d=l(8071);function v(T){return(0,d.T)(T?.[i.l])}},4402(Zt,pe,l){"use strict";l.d(pe,{A:()=>v});var i=l(1985),d=l(8071);function v(T){return!!T&&(T instanceof i.c||(0,d.T)(T.lift)&&(0,d.T)(T.subscribe))}},9858(Zt,pe,l){"use strict";l.d(pe,{y:()=>d});var i=l(8071);function d(v){return(0,i.T)(v?.then)}},5196(Zt,pe,l){"use strict";l.d(pe,{C:()=>v,U:()=>T});var i=l(1635),d=l(8071);function v(w){return(0,i.AQ)(this,arguments,function*(){const O=w.getReader();try{for(;;){const{value:f,done:u}=yield(0,i.N3)(O.read());if(u)return yield(0,i.N3)(void 0);yield yield(0,i.N3)(f)}}finally{O.releaseLock()}})}function T(w){return(0,d.T)(w?.getReader)}},9470(Zt,pe,l){"use strict";l.d(pe,{m:()=>d});var i=l(8071);function d(v){return v&&(0,i.T)(v.schedule)}},9974(Zt,pe,l){"use strict";l.d(pe,{N:()=>v,S:()=>d});var i=l(8071);function d(T){return(0,i.T)(T?.lift)}function v(T){return w=>{if(d(w))return w.lift(function(e){try{return T(e,this)}catch(O){this.error(O)}});throw new TypeError("Unable to lift unknown Observable type")}}},6450(Zt,pe,l){"use strict";l.d(pe,{I:()=>T});var i=l(6354);const{isArray:d}=Array;function T(w){return(0,i.T)(e=>function v(w,e){return d(e)?w(...e):w(e)}(w,e))}},5343(Zt,pe,l){"use strict";function i(){}l.d(pe,{l:()=>i})},1203(Zt,pe,l){"use strict";l.d(pe,{F:()=>d,m:()=>v});var i=l(3669);function d(...T){return v(T)}function v(T){return 0===T.length?i.D:1===T.length?T[0]:function(e){return T.reduce((O,f)=>f(O),e)}}},5334(Zt,pe,l){"use strict";l.d(pe,{m:()=>v});var i=l(1026),d=l(9270);function v(T){d.f.setTimeout(()=>{const{onUnhandledError:w}=i.$;if(!w)throw T;w(T)})}},591(Zt,pe,l){"use strict";function i(d){return new TypeError(`You provided ${null!==d&&"object"==typeof d?"an invalid object":`'${d}'`} where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.`)}l.d(pe,{L:()=>i})},2852(Zt,pe,l){!function(i){"use strict";var d={};Zt.exports?(d.bytesToHex=l(4740).bytesToHex,d.convertString=l(820),Zt.exports=f):(d.bytesToHex=i.convertHex.bytesToHex,d.convertString=i.convertString,i.sha256=f);var v=[];!function(){function u(A){for(var Pe=Math.sqrt(A),le=2;le<=Pe;le++)if(!(A%le))return!1;return!0}function L(A){return 4294967296*(A-(0|A))|0}for(var C=2,B=0;B<64;)u(C)&&(v[B]=L(Math.pow(C,1/3)),B++),C++}();var T=function(u){for(var L=[],C=0,B=0;C>>5]|=u[C]<<24-B%32;return L},w=function(u){for(var L=[],C=0;C<32*u.length;C+=8)L.push(u[C>>>5]>>>24-C%32&255);return L},e=[],O=function(u,L,C){for(var B=u[0],A=u[1],Pe=u[2],le=u[3],Ce=u[4],Ae=u[5],j=u[6],W=u[7],G=0;G<64;G++){if(G<16)e[G]=0|L[C+G];else{var re=e[G-15],Ee=e[G-2];e[G]=((re<<25|re>>>7)^(re<<14|re>>>18)^re>>>3)+e[G-7]+((Ee<<15|Ee>>>17)^(Ee<<13|Ee>>>19)^Ee>>>10)+e[G-16]}var be=B&A^B&Pe^A&Pe,De=W+((Ce<<26|Ce>>>6)^(Ce<<21|Ce>>>11)^(Ce<<7|Ce>>>25))+(Ce&Ae^~Ce&j)+v[G]+e[G];W=j,j=Ae,Ae=Ce,Ce=le+De|0,le=Pe,Pe=A,A=B,B=De+(((B<<30|B>>>2)^(B<<19|B>>>13)^(B<<10|B>>>22))+be)|0}u[0]=u[0]+B|0,u[1]=u[1]+A|0,u[2]=u[2]+Pe|0,u[3]=u[3]+le|0,u[4]=u[4]+Ce|0,u[5]=u[5]+Ae|0,u[6]=u[6]+j|0,u[7]=u[7]+W|0};function f(u,L){u.constructor===String&&(u=d.convertString.UTF8.stringToBytes(u));var C=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],B=T(u),A=8*u.length;B[A>>5]|=128<<24-A%32,B[15+(A+64>>9<<4)]=A;for(var Pe=0;Pej,If:()=>i,K2:()=>e,Os:()=>w,P:()=>Pe,PZ:()=>Ae,hZ:()=>v,i0:()=>T,i7:()=>u,iF:()=>O,kY:()=>L,kp:()=>d,sf:()=>Ce,wk:()=>f});var i=function(W){return W[W.State=0]="State",W[W.Transition=1]="Transition",W[W.Sequence=2]="Sequence",W[W.Group=3]="Group",W[W.Animate=4]="Animate",W[W.Keyframes=5]="Keyframes",W[W.Style=6]="Style",W[W.Trigger=7]="Trigger",W[W.Reference=8]="Reference",W[W.AnimateChild=9]="AnimateChild",W[W.AnimateRef=10]="AnimateRef",W[W.Query=11]="Query",W[W.Stagger=12]="Stagger",W}(i||{});const d="*";function v(W,G){return{type:i.Trigger,name:W,definitions:G,options:{}}}function T(W,G=null){return{type:i.Animate,styles:G,timings:W}}function w(W,G=null){return{type:i.Group,steps:W,options:G}}function e(W,G=null){return{type:i.Sequence,steps:W,options:G}}function O(W){return{type:i.Style,styles:W,offset:null}}function f(W,G,re){return{type:i.State,name:W,styles:G,options:re}}function u(W){return{type:i.Keyframes,steps:W}}function L(W,G,re=null){return{type:i.Transition,expr:W,animation:G,options:re}}function Pe(W,G,re=null){return{type:i.Query,selector:W,animation:G,options:re}}class Ce{_onDoneFns=[];_onStartFns=[];_onDestroyFns=[];_originalOnDoneFns=[];_originalOnStartFns=[];_started=!1;_destroyed=!1;_finished=!1;_position=0;parentPlayer=null;totalTime;constructor(G=0,re=0){this.totalTime=G+re}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(G=>G()),this._onDoneFns=[])}onStart(G){this._originalOnStartFns.push(G),this._onStartFns.push(G)}onDone(G){this._originalOnDoneFns.push(G),this._onDoneFns.push(G)}onDestroy(G){this._onDestroyFns.push(G)}hasStarted(){return this._started}init(){}play(){this.hasStarted()||(this._onStart(),this.triggerMicrotask()),this._started=!0}triggerMicrotask(){queueMicrotask(()=>this._onFinish())}_onStart(){this._onStartFns.forEach(G=>G()),this._onStartFns=[]}pause(){}restart(){}finish(){this._onFinish()}destroy(){this._destroyed||(this._destroyed=!0,this.hasStarted()||this._onStart(),this.finish(),this._onDestroyFns.forEach(G=>G()),this._onDestroyFns=[])}reset(){this._started=!1,this._finished=!1,this._onStartFns=this._originalOnStartFns,this._onDoneFns=this._originalOnDoneFns}setPosition(G){this._position=this.totalTime?G*this.totalTime:1}getPosition(){return this.totalTime?this._position/this.totalTime:1}triggerCallback(G){const re="start"==G?this._onStartFns:this._onDoneFns;re.forEach(xe=>xe()),re.length=0}}class Ae{_onDoneFns=[];_onStartFns=[];_finished=!1;_started=!1;_destroyed=!1;_onDestroyFns=[];parentPlayer=null;totalTime=0;players;constructor(G){this.players=G;let re=0,xe=0,Ee=0;const V=this.players.length;0==V?queueMicrotask(()=>this._onFinish()):this.players.forEach(ce=>{ce.onDone(()=>{++re==V&&this._onFinish()}),ce.onDestroy(()=>{++xe==V&&this._onDestroy()}),ce.onStart(()=>{++Ee==V&&this._onStart()})}),this.totalTime=this.players.reduce((ce,be)=>Math.max(ce,be.totalTime),0)}_onFinish(){this._finished||(this._finished=!0,this._onDoneFns.forEach(G=>G()),this._onDoneFns=[])}init(){this.players.forEach(G=>G.init())}onStart(G){this._onStartFns.push(G)}_onStart(){this.hasStarted()||(this._started=!0,this._onStartFns.forEach(G=>G()),this._onStartFns=[])}onDone(G){this._onDoneFns.push(G)}onDestroy(G){this._onDestroyFns.push(G)}hasStarted(){return this._started}play(){this.parentPlayer||this.init(),this._onStart(),this.players.forEach(G=>G.play())}pause(){this.players.forEach(G=>G.pause())}restart(){this.players.forEach(G=>G.restart())}finish(){this._onFinish(),this.players.forEach(G=>G.finish())}destroy(){this._onDestroy()}_onDestroy(){this._destroyed||(this._destroyed=!0,this._onFinish(),this.players.forEach(G=>G.destroy()),this._onDestroyFns.forEach(G=>G()),this._onDestroyFns=[])}reset(){this.players.forEach(G=>G.reset()),this._destroyed=!1,this._finished=!1,this._started=!1}setPosition(G){const re=G*this.totalTime;this.players.forEach(xe=>{const Ee=xe.totalTime?Math.min(1,re/xe.totalTime):1;xe.setPosition(Ee)})}getPosition(){const G=this.players.reduce((re,xe)=>null===re||xe.totalTime>re.totalTime?xe:re,null);return null!=G?G.getPosition():0}beforeDestroy(){this.players.forEach(G=>{G.beforeDestroy&&G.beforeDestroy()})}triggerCallback(G){const re="start"==G?this._onStartFns:this._onDoneFns;re.forEach(xe=>xe()),re.length=0}}const j="!"},7094(Zt,pe,l){"use strict";l.d(pe,{Ai:()=>ie,GX:()=>_e,Pd:()=>Vt,Q_:()=>Ke,Z7:()=>j,kB:()=>he,sp:()=>Xe});var f=l(2615),u=l(3664),L=l(7705),C=l(9842),B=l(4522),A=l(8968),Pe=l(9046),le=l(4330),Ce=l(2318);let j=(()=>{class St{_platform=(0,f.WQX)(C.O);constructor(){}isDisabled(nt){return nt.hasAttribute("disabled")}isVisible(nt){return function G(St){return!!(St.offsetWidth||St.offsetHeight||"function"==typeof St.getClientRects&&St.getClientRects().length)}(nt)&&"visible"===getComputedStyle(nt).visibility}isTabbable(nt){if(!this._platform.isBrowser)return!1;const ht=function W(St){try{return St.frameElement}catch{return null}}(function Re(St){return St.ownerDocument&&St.ownerDocument.defaultView||window}(nt));if(ht&&(-1===ne(ht)||!this.isVisible(ht)))return!1;let oe=nt.nodeName.toLowerCase(),Ye=ne(nt);return nt.hasAttribute("contenteditable")?-1!==Ye:!("iframe"===oe||"object"===oe||this._platform.WEBKIT&&this._platform.IOS&&!function J(St){let ot=St.nodeName.toLowerCase(),nt="input"===ot&&St.type;return"text"===nt||"password"===nt||"select"===ot||"textarea"===ot}(nt))&&("audio"===oe?!!nt.hasAttribute("controls")&&-1!==Ye:"video"===oe?-1!==Ye&&(null!==Ye||this._platform.FIREFOX||nt.hasAttribute("controls")):nt.tabIndex>=0)}isFocusable(nt,ht){return function De(St){return!function xe(St){return function V(St){return"input"==St.nodeName.toLowerCase()}(St)&&"hidden"==St.type}(St)&&(function re(St){let ot=St.nodeName.toLowerCase();return"input"===ot||"select"===ot||"button"===ot||"textarea"===ot}(St)||function Ee(St){return function ce(St){return"a"==St.nodeName.toLowerCase()}(St)&&St.hasAttribute("href")}(St)||St.hasAttribute("contenteditable")||be(St))}(nt)&&!this.isDisabled(nt)&&(ht?.ignoreVisibility||this.isVisible(nt))}static \u0275fac=function(ht){return new(ht||St)};static \u0275prov=f.jDH({token:St,factory:St.\u0275fac,providedIn:"root"})}return St})();function be(St){if(!St.hasAttribute("tabindex")||void 0===St.tabIndex)return!1;let ot=St.getAttribute("tabindex");return!(!ot||isNaN(parseInt(ot,10)))}function ne(St){if(!be(St))return null;const ot=parseInt(St.getAttribute("tabindex")||"",10);return isNaN(ot)?-1:ot}class Xe{_element;_checker;_ngZone;_document;_injector;_startAnchor;_endAnchor;_hasAttached=!1;startAnchorListener=()=>this.focusLastTabbableElement();endAnchorListener=()=>this.focusFirstTabbableElement();get enabled(){return this._enabled}set enabled(ot){this._enabled=ot,this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(ot,this._startAnchor),this._toggleAnchorTabIndex(ot,this._endAnchor))}_enabled=!0;constructor(ot,nt,ht,oe,Ye=!1,fe){this._element=ot,this._checker=nt,this._ngZone=ht,this._document=oe,this._injector=fe,Ye||this.attachAnchors()}destroy(){const ot=this._startAnchor,nt=this._endAnchor;ot&&(ot.removeEventListener("focus",this.startAnchorListener),ot.remove()),nt&&(nt.removeEventListener("focus",this.endAnchorListener),nt.remove()),this._startAnchor=this._endAnchor=null,this._hasAttached=!1}attachAnchors(){return!!this._hasAttached||(this._ngZone.runOutsideAngular(()=>{this._startAnchor||(this._startAnchor=this._createAnchor(),this._startAnchor.addEventListener("focus",this.startAnchorListener)),this._endAnchor||(this._endAnchor=this._createAnchor(),this._endAnchor.addEventListener("focus",this.endAnchorListener))}),this._element.parentNode&&(this._element.parentNode.insertBefore(this._startAnchor,this._element),this._element.parentNode.insertBefore(this._endAnchor,this._element.nextSibling),this._hasAttached=!0),this._hasAttached)}focusInitialElementWhenReady(ot){return new Promise(nt=>{this._executeOnStable(()=>nt(this.focusInitialElement(ot)))})}focusFirstTabbableElementWhenReady(ot){return new Promise(nt=>{this._executeOnStable(()=>nt(this.focusFirstTabbableElement(ot)))})}focusLastTabbableElementWhenReady(ot){return new Promise(nt=>{this._executeOnStable(()=>nt(this.focusLastTabbableElement(ot)))})}_getRegionBoundary(ot){const nt=this._element.querySelectorAll(`[cdk-focus-region-${ot}], [cdkFocusRegion${ot}], [cdk-focus-${ot}]`);return"start"==ot?nt.length?nt[0]:this._getFirstTabbableElement(this._element):nt.length?nt[nt.length-1]:this._getLastTabbableElement(this._element)}focusInitialElement(ot){const nt=this._element.querySelector("[cdk-focus-initial], [cdkFocusInitial]");if(nt){if(!this._checker.isFocusable(nt)){const ht=this._getFirstTabbableElement(nt);return ht?.focus(ot),!!ht}return nt.focus(ot),!0}return this.focusFirstTabbableElement(ot)}focusFirstTabbableElement(ot){const nt=this._getRegionBoundary("start");return nt&&nt.focus(ot),!!nt}focusLastTabbableElement(ot){const nt=this._getRegionBoundary("end");return nt&&nt.focus(ot),!!nt}hasAttached(){return this._hasAttached}_getFirstTabbableElement(ot){if(this._checker.isFocusable(ot)&&this._checker.isTabbable(ot))return ot;const nt=ot.children;for(let ht=0;ht=0;ht--){const oe=nt[ht].nodeType===this._document.ELEMENT_NODE?this._getLastTabbableElement(nt[ht]):null;if(oe)return oe}return null}_createAnchor(){const ot=this._document.createElement("div");return this._toggleAnchorTabIndex(this._enabled,ot),ot.classList.add("cdk-visually-hidden"),ot.classList.add("cdk-focus-trap-anchor"),ot.setAttribute("aria-hidden","true"),ot}_toggleAnchorTabIndex(ot,nt){ot?nt.setAttribute("tabindex","0"):nt.removeAttribute("tabindex")}toggleAnchors(ot){this._startAnchor&&this._endAnchor&&(this._toggleAnchorTabIndex(ot,this._startAnchor),this._toggleAnchorTabIndex(ot,this._endAnchor))}_executeOnStable(ot){this._injector?(0,u.mal)(ot,{injector:this._injector}):setTimeout(ot)}}let _e=(()=>{class St{_checker=(0,f.WQX)(j);_ngZone=(0,f.WQX)(u.SKi);_document=(0,f.WQX)(f.qQL);_injector=(0,f.WQX)(f.zZn);constructor(){(0,f.WQX)(A.l).load(Pe.Y)}create(nt,ht=!1){return new Xe(nt,this._checker,this._ngZone,this._document,ht,this._injector)}static \u0275fac=function(ht){return new(ht||St)};static \u0275prov=f.jDH({token:St,factory:St.\u0275fac,providedIn:"root"})}return St})(),he=(()=>{class St{_elementRef=(0,f.WQX)(u.aKT);_focusTrapFactory=(0,f.WQX)(_e);focusTrap;_previouslyFocusedElement=null;get enabled(){return this.focusTrap?.enabled||!1}set enabled(nt){this.focusTrap&&(this.focusTrap.enabled=nt)}autoCapture;constructor(){(0,f.WQX)(C.O).isBrowser&&(this.focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement,!0))}ngOnDestroy(){this.focusTrap?.destroy(),this._previouslyFocusedElement&&(this._previouslyFocusedElement.focus(),this._previouslyFocusedElement=null)}ngAfterContentInit(){this.focusTrap?.attachAnchors(),this.autoCapture&&this._captureFocus()}ngDoCheck(){this.focusTrap&&!this.focusTrap.hasAttached()&&this.focusTrap.attachAnchors()}ngOnChanges(nt){const ht=nt.autoCapture;ht&&!ht.firstChange&&this.autoCapture&&this.focusTrap?.hasAttached()&&this._captureFocus()}_captureFocus(){this._previouslyFocusedElement=(0,B.vc)(),this.focusTrap?.focusInitialElementWhenReady()}static \u0275fac=function(ht){return new(ht||St)};static \u0275dir=u.FsC({type:St,selectors:[["","cdkTrapFocus",""]],inputs:{enabled:[2,"cdkTrapFocus","enabled",L.L39],autoCapture:[2,"cdkTrapFocusAutoCapture","autoCapture",L.L39]},exportAs:["cdkTrapFocus"],features:[u.OA$]})}return St})();const Dt=new f.nKC("liveAnnouncerElement",{providedIn:"root",factory:function lt(){return null}}),Le=new f.nKC("LIVE_ANNOUNCER_DEFAULT_OPTIONS");let te=0,ie=(()=>{class St{_ngZone=(0,f.WQX)(u.SKi);_defaultOptions=(0,f.WQX)(Le,{optional:!0});_liveElement;_document=(0,f.WQX)(f.qQL);_previousTimeout;_currentPromise;_currentResolve;constructor(){const nt=(0,f.WQX)(Dt,{optional:!0});this._liveElement=nt||this._createLiveElement()}announce(nt,...ht){const oe=this._defaultOptions;let Ye,fe;return 1===ht.length&&"number"==typeof ht[0]?fe=ht[0]:[Ye,fe]=ht,this.clear(),clearTimeout(this._previousTimeout),Ye||(Ye=oe&&oe.politeness?oe.politeness:"polite"),null==fe&&oe&&(fe=oe.duration),this._liveElement.setAttribute("aria-live",Ye),this._liveElement.id&&this._exposeAnnouncerToModals(this._liveElement.id),this._ngZone.runOutsideAngular(()=>(this._currentPromise||(this._currentPromise=new Promise(Qe=>this._currentResolve=Qe)),clearTimeout(this._previousTimeout),this._previousTimeout=setTimeout(()=>{this._liveElement.textContent=nt,"number"==typeof fe&&(this._previousTimeout=setTimeout(()=>this.clear(),fe)),this._currentResolve?.(),this._currentPromise=this._currentResolve=void 0},100),this._currentPromise))}clear(){this._liveElement&&(this._liveElement.textContent="")}ngOnDestroy(){clearTimeout(this._previousTimeout),this._liveElement?.remove(),this._liveElement=null,this._currentResolve?.(),this._currentPromise=this._currentResolve=void 0}_createLiveElement(){const nt="cdk-live-announcer-element",ht=this._document.getElementsByClassName(nt),oe=this._document.createElement("div");for(let Ye=0;Ye .cdk-overlay-container [aria-modal="true"]');for(let oe=0;oe{class St{_platform=(0,f.WQX)(C.O);_hasCheckedHighContrastMode;_document=(0,f.WQX)(f.qQL);_breakpointSubscription;constructor(){this._breakpointSubscription=(0,f.WQX)(le.Q).observe("(forced-colors: active)").subscribe(()=>{this._hasCheckedHighContrastMode&&(this._hasCheckedHighContrastMode=!1,this._applyBodyHighContrastModeCssClasses())})}getHighContrastMode(){if(!this._platform.isBrowser)return F.NONE;const nt=this._document.createElement("div");nt.style.backgroundColor="rgb(1,2,3)",nt.style.position="absolute",this._document.body.appendChild(nt);const ht=this._document.defaultView||window,oe=ht&&ht.getComputedStyle?ht.getComputedStyle(nt):null,Ye=(oe&&oe.backgroundColor||"").replace(/ /g,"");switch(nt.remove(),Ye){case"rgb(0,0,0)":case"rgb(45,50,54)":case"rgb(32,32,32)":return F.WHITE_ON_BLACK;case"rgb(255,255,255)":case"rgb(255,250,239)":return F.BLACK_ON_WHITE}return F.NONE}ngOnDestroy(){this._breakpointSubscription.unsubscribe()}_applyBodyHighContrastModeCssClasses(){if(!this._hasCheckedHighContrastMode&&this._platform.isBrowser&&this._document.body){const nt=this._document.body.classList;nt.remove($,ve,H),this._hasCheckedHighContrastMode=!0;const ht=this.getHighContrastMode();ht===F.BLACK_ON_WHITE?nt.add($,ve):ht===F.WHITE_ON_BLACK&&nt.add($,H)}}static \u0275fac=function(ht){return new(ht||St)};static \u0275prov=f.jDH({token:St,factory:St.\u0275fac,providedIn:"root"})}return St})(),Vt=(()=>{class St{constructor(){(0,f.WQX)(Ke)._applyBodyHighContrastModeCssClasses()}static \u0275fac=function(ht){return new(ht||St)};static \u0275mod=u.$C({type:St});static \u0275inj=f.G2t({imports:[Ce.w5]})}return St})()},8617(Zt,pe,l){"use strict";l.d(pe,{Ae:()=>Ae,px:()=>Ce,vr:()=>Ee}),l(7094);var f=l(2615),u=l(3664),L=l(9842),C=l(8968),B=l(9046);function Ce(Dt,lt,Le){const te=j(Dt,lt);Le=Le.trim(),!te.some(ie=>ie.trim()===Le)&&(te.push(Le),Dt.setAttribute(lt,te.join(" ")))}function Ae(Dt,lt,Le){const te=j(Dt,lt);Le=Le.trim();const ie=te.filter(P=>P!==Le);ie.length?Dt.setAttribute(lt,ie.join(" ")):Dt.removeAttribute(lt)}function j(Dt,lt){return Dt.getAttribute(lt)?.match(/\S+/g)??[]}l(1413),l(4125);const G="cdk-describedby-message",re="cdk-describedby-host";let xe=0,Ee=(()=>{class Dt{_platform=(0,f.WQX)(L.O);_document=(0,f.WQX)(f.qQL);_messageRegistry=new Map;_messagesContainer=null;_id=""+xe++;constructor(){(0,f.WQX)(C.l).load(B.Y),this._id=(0,f.WQX)(u.sZ2)+"-"+xe++}describe(Le,te,ie){if(!this._canBeDescribed(Le,te))return;const P=V(te,ie);"string"!=typeof te?(ce(te,this._id),this._messageRegistry.set(P,{messageElement:te,referenceCount:0})):this._messageRegistry.has(P)||this._createMessageElement(te,ie),this._isElementDescribedByMessage(Le,P)||this._addMessageReference(Le,P)}removeDescription(Le,te,ie){if(!te||!this._isElementNode(Le))return;const P=V(te,ie);if(this._isElementDescribedByMessage(Le,P)&&this._removeMessageReference(Le,P),"string"==typeof te){const F=this._messageRegistry.get(P);F&&0===F.referenceCount&&this._deleteMessageElement(P)}0===this._messagesContainer?.childNodes.length&&(this._messagesContainer.remove(),this._messagesContainer=null)}ngOnDestroy(){const Le=this._document.querySelectorAll(`[${re}="${this._id}"]`);for(let te=0;te0!=ie.indexOf(G));Le.setAttribute("aria-describedby",te.join(" "))}_addMessageReference(Le,te){const ie=this._messageRegistry.get(te);Ce(Le,"aria-describedby",ie.messageElement.id),Le.setAttribute(re,this._id),ie.referenceCount++}_removeMessageReference(Le,te){const ie=this._messageRegistry.get(te);ie.referenceCount--,Ae(Le,"aria-describedby",ie.messageElement.id),Le.removeAttribute(re)}_isElementDescribedByMessage(Le,te){const ie=j(Le,"aria-describedby"),P=this._messageRegistry.get(te),F=P&&P.messageElement.id;return!!F&&-1!=ie.indexOf(F)}_canBeDescribed(Le,te){if(!this._isElementNode(Le))return!1;if(te&&"object"==typeof te)return!0;const ie=null==te?"":`${te}`.trim(),P=Le.getAttribute("aria-label");return!(!ie||P&&P.trim()===ie)}_isElementNode(Le){return Le.nodeType===this._document.ELEMENT_NODE}static \u0275fac=function(te){return new(te||Dt)};static \u0275prov=f.jDH({token:Dt,factory:Dt.\u0275fac,providedIn:"root"})}return Dt})();function V(Dt,lt){return"string"==typeof Dt?`${lt||""}/${Dt}`:Dt}function ce(Dt,lt){Dt.id||(Dt.id=`${G}-${lt}-${xe++}`)}},9090(Zt,pe,l){"use strict";l.d(pe,{A:()=>d});var i=l(2593);class d extends i.l{setActiveItem(T){this.activeItem&&this.activeItem.setInactiveStyles(),super.setActiveItem(T),this.activeItem&&this.activeItem.setActiveStyles()}}},408(Zt,pe,l){"use strict";function i(d){return Array.isArray(d)?d:[d]}l.d(pe,{F:()=>i})},8203(Zt,pe,l){"use strict";l.d(pe,{jI:()=>u});var e=l(2615),O=l(3664);let u=(()=>{class L{static \u0275fac=function(A){return new(A||L)};static \u0275mod=O.$C({type:L});static \u0275inj=e.G2t({})}return L})()},4330(Zt,pe,l){"use strict";l.d(pe,{D:()=>Ae,Q:()=>G});var i=l(2615),d=l(3664),v=l(1985),T=l(1413),w=l(4572),e=l(8793),O=l(152),f=l(6354),u=l(5245),L=l(9172),C=l(6697),B=l(6977),A=l(9842),Pe=l(408);const le=new Set;let Ce,Ae=(()=>{class xe{_platform=(0,i.WQX)(A.O);_nonce=(0,i.WQX)(d.BIS,{optional:!0});_matchMedia;constructor(){this._matchMedia=this._platform.isBrowser&&window.matchMedia?window.matchMedia.bind(window):W}matchMedia(V){return(this._platform.WEBKIT||this._platform.BLINK)&&function j(xe,Ee){if(!le.has(xe))try{Ce||(Ce=document.createElement("style"),Ee&&Ce.setAttribute("nonce",Ee),Ce.setAttribute("type","text/css"),document.head.appendChild(Ce)),Ce.sheet&&(Ce.sheet.insertRule(`@media ${xe} {body{ }}`,0),le.add(xe))}catch(V){console.error(V)}}(V,this._nonce),this._matchMedia(V)}static \u0275fac=function(ce){return new(ce||xe)};static \u0275prov=i.jDH({token:xe,factory:xe.\u0275fac,providedIn:"root"})}return xe})();function W(xe){return{matches:"all"===xe||""===xe,media:xe,addListener:()=>{},removeListener:()=>{}}}let G=(()=>{class xe{_mediaMatcher=(0,i.WQX)(Ae);_zone=(0,i.WQX)(d.SKi);_queries=new Map;_destroySubject=new T.B;constructor(){}ngOnDestroy(){this._destroySubject.next(),this._destroySubject.complete()}isMatched(V){return re((0,Pe.F)(V)).some(be=>this._registerQuery(be).mql.matches)}observe(V){const be=re((0,Pe.F)(V)).map(J=>this._registerQuery(J).observable);let ne=(0,w.z)(be);return ne=(0,e.x)(ne.pipe((0,C.s)(1)),ne.pipe((0,u.i)(1),(0,O.B)(0))),ne.pipe((0,f.T)(J=>{const De={matches:!1,breakpoints:{}};return J.forEach(({matches:Re,query:Xe})=>{De.matches=De.matches||Re,De.breakpoints[Xe]=Re}),De}))}_registerQuery(V){if(this._queries.has(V))return this._queries.get(V);const ce=this._mediaMatcher.matchMedia(V),ne={observable:new v.c(J=>{const De=Re=>this._zone.run(()=>J.next(Re));return ce.addListener(De),()=>{ce.removeListener(De)}}).pipe((0,L.Z)(ce),(0,f.T)(({matches:J})=>({query:V,matches:J})),(0,B.Q)(this._destroySubject)),mql:ce};return this._queries.set(V,ne),ne}static \u0275fac=function(ce){return new(ce||xe)};static \u0275prov=i.jDH({token:xe,factory:xe.\u0275fac,providedIn:"root"})}return xe})();function re(xe){return xe.map(Ee=>Ee.split(",")).reduce((Ee,V)=>Ee.concat(V)).map(Ee=>Ee.trim())}},4085(Zt,pe,l){"use strict";function i(v){return null!=v&&"false"!=`${v}`}function d(v,T=/\s+/){const w=[];if(null!=v){const e=Array.isArray(v)?v:`${v}`.split(T);for(const O of e){const f=`${O}`.trim();f&&w.push(f)}}return w}l.d(pe,{cc:()=>d,he:()=>i})},8045(Zt,pe,l){"use strict";l.d(pe,{x:()=>v});var i=l(4402),d=l(7673);function v(T){return(0,i.A)(T)?T:(0,d.of)(T)}},4117(Zt,pe,l){"use strict";l.d(pe,{q:()=>d,y:()=>v});var i=l(17);class d{}function v(T){return T&&"function"==typeof T.connect&&!(T instanceof i.G)}},1577(Zt,pe,l){"use strict";l.d(pe,{dS:()=>O});var i=l(2615),d=l(3664);const v=new i.nKC("cdk-dir-doc",{providedIn:"root",factory:function T(){return(0,i.WQX)(i.qQL)}}),w=/^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i;let O=(()=>{class f{get value(){return this.valueSignal()}valueSignal=(0,i.vPA)("ltr");change=new d.bkB;constructor(){const L=(0,i.WQX)(v,{optional:!0});L&&this.valueSignal.set(function e(f){const u=f?.toLowerCase()||"";return"auto"===u&&typeof navigator<"u"&&navigator?.language?w.test(navigator.language)?"rtl":"ltr":"rtl"===u?"rtl":"ltr"}((L.body?L.body.dir:null)||(L.documentElement?L.documentElement.dir:null)||"ltr"))}ngOnDestroy(){this.change.complete()}static \u0275fac=function(C){return new(C||f)};static \u0275prov=i.jDH({token:f,factory:f.\u0275fac,providedIn:"root"})}return f})()},7847(Zt,pe,l){"use strict";l.d(pe,{OE:()=>d,i8:()=>T,o1:()=>v});var i=l(3664);function d(w,e=0){return v(w)?Number(w):2===arguments.length?e:0}function v(w){return!isNaN(parseFloat(w))&&!isNaN(Number(w))}function T(w){return w instanceof i.aKT?w.nativeElement:w}},5735(Zt,pe,l){"use strict";function i(v){return 0===v.buttons||0===v.detail}function d(v){const T=v.touches&&v.touches[0]||v.changedTouches&&v.changedTouches[0];return!(!T||-1!==T.identifier||null!=T.radiusX&&1!==T.radiusX||null!=T.radiusY&&1!==T.radiusY)}l.d(pe,{_:()=>i,w:()=>d})},4123(Zt,pe,l){"use strict";l.d(pe,{B:()=>d});var i=l(2593);class d extends i.l{_origin="program";setFocusOrigin(T){return this._origin=T,this}setActiveItem(T){super.setActiveItem(T),this.activeItem&&this.activeItem.focus(this._origin)}}},6838(Zt,pe,l){"use strict";l.d(pe,{FN:()=>Ee,vR:()=>V});var i=l(2615),d=l(3664),v=l(1413),T=l(4412),w=l(7673),e=l(3294),O=l(5245),f=l(6977),u=l(5735),L=l(438),C=l(4522),B=l(9842),A=l(3300),Pe=l(7847);const le=new i.nKC("cdk-input-modality-detector-options"),Ce={ignoreKeys:[L.A$,L.W3,L.eg,L.Ge,L.FX]},j={passive:!0,capture:!0};let W=(()=>{class ce{_platform=(0,i.WQX)(B.O);_listenerCleanups;modalityDetected;modalityChanged;get mostRecentModality(){return this._modality.value}_mostRecentTarget=null;_modality=new T.t(null);_options;_lastTouchMs=0;_onKeydown=ne=>{this._options?.ignoreKeys?.some(J=>J===ne.keyCode)||(this._modality.next("keyboard"),this._mostRecentTarget=(0,C.Fb)(ne))};_onMousedown=ne=>{Date.now()-this._lastTouchMs<650||(this._modality.next((0,u._)(ne)?"keyboard":"mouse"),this._mostRecentTarget=(0,C.Fb)(ne))};_onTouchstart=ne=>{(0,u.w)(ne)?this._modality.next("keyboard"):(this._lastTouchMs=Date.now(),this._modality.next("touch"),this._mostRecentTarget=(0,C.Fb)(ne))};constructor(){const ne=(0,i.WQX)(d.SKi),J=(0,i.WQX)(i.qQL),De=(0,i.WQX)(le,{optional:!0});if(this._options={...Ce,...De},this.modalityDetected=this._modality.pipe((0,O.i)(1)),this.modalityChanged=this.modalityDetected.pipe((0,e.F)()),this._platform.isBrowser){const Re=(0,i.WQX)(d._9s).createRenderer(null,null);this._listenerCleanups=ne.runOutsideAngular(()=>[Re.listen(J,"keydown",this._onKeydown,j),Re.listen(J,"mousedown",this._onMousedown,j),Re.listen(J,"touchstart",this._onTouchstart,j)])}}ngOnDestroy(){this._modality.complete(),this._listenerCleanups?.forEach(ne=>ne())}static \u0275fac=function(J){return new(J||ce)};static \u0275prov=i.jDH({token:ce,factory:ce.\u0275fac,providedIn:"root"})}return ce})();var G=function(ce){return ce[ce.IMMEDIATE=0]="IMMEDIATE",ce[ce.EVENTUAL=1]="EVENTUAL",ce}(G||{});const re=new i.nKC("cdk-focus-monitor-default-options"),xe=(0,A.B)({passive:!0,capture:!0});let Ee=(()=>{class ce{_ngZone=(0,i.WQX)(d.SKi);_platform=(0,i.WQX)(B.O);_inputModalityDetector=(0,i.WQX)(W);_origin=null;_lastFocusOrigin;_windowFocused=!1;_windowFocusTimeoutId;_originTimeoutId;_originFromTouchInteraction=!1;_elementInfo=new Map;_monitoredElementCount=0;_rootNodeFocusListenerCount=new Map;_detectionMode;_windowFocusListener=()=>{this._windowFocused=!0,this._windowFocusTimeoutId=setTimeout(()=>this._windowFocused=!1)};_document=(0,i.WQX)(i.qQL);_stopInputModalityDetector=new v.B;constructor(){const ne=(0,i.WQX)(re,{optional:!0});this._detectionMode=ne?.detectionMode||G.IMMEDIATE}_rootNodeFocusAndBlurListener=ne=>{for(let De=(0,C.Fb)(ne);De;De=De.parentElement)"focus"===ne.type?this._onFocus(ne,De):this._onBlur(ne,De)};monitor(ne,J=!1){const De=(0,Pe.i8)(ne);if(!this._platform.isBrowser||1!==De.nodeType)return(0,w.of)();const Re=(0,C.KT)(De)||this._document,Xe=this._elementInfo.get(De);if(Xe)return J&&(Xe.checkChildren=!0),Xe.subject;const _e={checkChildren:J,subject:new v.B,rootNode:Re};return this._elementInfo.set(De,_e),this._registerGlobalListeners(_e),_e.subject}stopMonitoring(ne){const J=(0,Pe.i8)(ne),De=this._elementInfo.get(J);De&&(De.subject.complete(),this._setClasses(J),this._elementInfo.delete(J),this._removeGlobalListeners(De))}focusVia(ne,J,De){const Re=(0,Pe.i8)(ne);Re===this._document.activeElement?this._getClosestElementsInfo(Re).forEach(([_e,he])=>this._originChanged(_e,J,he)):(this._setOrigin(J),"function"==typeof Re.focus&&Re.focus(De))}ngOnDestroy(){this._elementInfo.forEach((ne,J)=>this.stopMonitoring(J))}_getWindow(){return this._document.defaultView||window}_getFocusOrigin(ne){return this._origin?this._originFromTouchInteraction?this._shouldBeAttributedToTouch(ne)?"touch":"program":this._origin:this._windowFocused&&this._lastFocusOrigin?this._lastFocusOrigin:ne&&this._isLastInteractionFromInputLabel(ne)?"mouse":"program"}_shouldBeAttributedToTouch(ne){return this._detectionMode===G.EVENTUAL||!!ne?.contains(this._inputModalityDetector._mostRecentTarget)}_setClasses(ne,J){ne.classList.toggle("cdk-focused",!!J),ne.classList.toggle("cdk-touch-focused","touch"===J),ne.classList.toggle("cdk-keyboard-focused","keyboard"===J),ne.classList.toggle("cdk-mouse-focused","mouse"===J),ne.classList.toggle("cdk-program-focused","program"===J)}_setOrigin(ne,J=!1){this._ngZone.runOutsideAngular(()=>{this._origin=ne,this._originFromTouchInteraction="touch"===ne&&J,this._detectionMode===G.IMMEDIATE&&(clearTimeout(this._originTimeoutId),this._originTimeoutId=setTimeout(()=>this._origin=null,this._originFromTouchInteraction?650:1))})}_onFocus(ne,J){const De=this._elementInfo.get(J),Re=(0,C.Fb)(ne);!De||!De.checkChildren&&J!==Re||this._originChanged(J,this._getFocusOrigin(Re),De)}_onBlur(ne,J){const De=this._elementInfo.get(J);!De||De.checkChildren&&ne.relatedTarget instanceof Node&&J.contains(ne.relatedTarget)||(this._setClasses(J),this._emitOrigin(De,null))}_emitOrigin(ne,J){ne.subject.observers.length&&this._ngZone.run(()=>ne.subject.next(J))}_registerGlobalListeners(ne){if(!this._platform.isBrowser)return;const J=ne.rootNode,De=this._rootNodeFocusListenerCount.get(J)||0;De||this._ngZone.runOutsideAngular(()=>{J.addEventListener("focus",this._rootNodeFocusAndBlurListener,xe),J.addEventListener("blur",this._rootNodeFocusAndBlurListener,xe)}),this._rootNodeFocusListenerCount.set(J,De+1),1===++this._monitoredElementCount&&(this._ngZone.runOutsideAngular(()=>{this._getWindow().addEventListener("focus",this._windowFocusListener)}),this._inputModalityDetector.modalityDetected.pipe((0,f.Q)(this._stopInputModalityDetector)).subscribe(Re=>{this._setOrigin(Re,!0)}))}_removeGlobalListeners(ne){const J=ne.rootNode;if(this._rootNodeFocusListenerCount.has(J)){const De=this._rootNodeFocusListenerCount.get(J);De>1?this._rootNodeFocusListenerCount.set(J,De-1):(J.removeEventListener("focus",this._rootNodeFocusAndBlurListener,xe),J.removeEventListener("blur",this._rootNodeFocusAndBlurListener,xe),this._rootNodeFocusListenerCount.delete(J))}--this._monitoredElementCount||(this._getWindow().removeEventListener("focus",this._windowFocusListener),this._stopInputModalityDetector.next(),clearTimeout(this._windowFocusTimeoutId),clearTimeout(this._originTimeoutId))}_originChanged(ne,J,De){this._setClasses(ne,J),this._emitOrigin(De,J),this._lastFocusOrigin=J}_getClosestElementsInfo(ne){const J=[];return this._elementInfo.forEach((De,Re)=>{(Re===ne||De.checkChildren&&Re.contains(ne))&&J.push([Re,De])}),J}_isLastInteractionFromInputLabel(ne){const{_mostRecentTarget:J,mostRecentModality:De}=this._inputModalityDetector;if("mouse"!==De||!J||J===ne||"INPUT"!==ne.nodeName&&"TEXTAREA"!==ne.nodeName||ne.disabled)return!1;const Re=ne.labels;if(Re)for(let Xe=0;Xe{class ce{_elementRef=(0,i.WQX)(d.aKT);_focusMonitor=(0,i.WQX)(Ee);_monitorSubscription;_focusOrigin=null;cdkFocusChange=new d.bkB;constructor(){}get focusOrigin(){return this._focusOrigin}ngAfterViewInit(){const ne=this._elementRef.nativeElement;this._monitorSubscription=this._focusMonitor.monitor(ne,1===ne.nodeType&&ne.hasAttribute("cdkMonitorSubtreeFocus")).subscribe(J=>{this._focusOrigin=J,this.cdkFocusChange.emit(J)})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._monitorSubscription&&this._monitorSubscription.unsubscribe()}static \u0275fac=function(J){return new(J||ce)};static \u0275dir=d.FsC({type:ce,selectors:[["","cdkMonitorElementFocus",""],["","cdkMonitorSubtreeFocus",""]],outputs:{cdkFocusChange:"cdkFocusChange"},exportAs:["cdkMonitorFocus"]})}return ce})()},9726(Zt,pe,l){"use strict";l.d(pe,{g:()=>T});var i=l(2615),d=l(3664);const v={};let T=(()=>{class w{_appId=(0,i.WQX)(d.sZ2);getId(O){return"ng"!==this._appId&&(O+=this._appId),v.hasOwnProperty(O)||(v[O]=0),`${O}${v[O]++}`}static \u0275fac=function(f){return new(f||w)};static \u0275prov=i.jDH({token:w,factory:w.\u0275fac,providedIn:"root"})}return w})()},7336(Zt,pe,l){"use strict";function i(d,...v){return v.length?v.some(T=>d[T]):d.altKey||d.shiftKey||d.ctrlKey||d.metaKey}l.d(pe,{rp:()=>i})},438(Zt,pe,l){"use strict";l.d(pe,{A:()=>P,A$:()=>f,FX:()=>e,Fm:()=>w,G_:()=>d,Ge:()=>pt,Kp:()=>le,LE:()=>W,SJ:()=>V,UQ:()=>Ae,W3:()=>O,Z:()=>wt,_f:()=>C,bn:()=>Dt,dB:()=>Pe,eg:()=>ci,f2:()=>ce,i7:()=>j,n6:()=>G,t6:()=>B,w_:()=>A,wn:()=>v,yZ:()=>Ce});const d=8,v=9,w=13,e=16,O=17,f=18,C=27,B=32,A=33,Pe=34,le=35,Ce=36,Ae=37,j=38,W=39,G=40,V=46,ce=48,Dt=57,P=65,wt=90,pt=91,ci=224},9327(Zt,pe,l){"use strict";l.d(pe,{RH:()=>v,Rp:()=>T});var i=l(2615),d=l(3664);let v=(()=>{class w{static \u0275fac=function(f){return new(f||w)};static \u0275mod=d.$C({type:w});static \u0275inj=i.G2t({})}return w})();const T={XSmall:"(max-width: 599.98px)",Small:"(min-width: 600px) and (max-width: 959.98px)",Medium:"(min-width: 960px) and (max-width: 1279.98px)",Large:"(min-width: 1280px) and (max-width: 1919.98px)",XLarge:"(min-width: 1920px)",Handset:"(max-width: 599.98px) and (orientation: portrait), (max-width: 959.98px) and (orientation: landscape)",Tablet:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait), (min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",Web:"(min-width: 840px) and (orientation: portrait), (min-width: 1280px) and (orientation: landscape)",HandsetPortrait:"(max-width: 599.98px) and (orientation: portrait)",TabletPortrait:"(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait)",WebPortrait:"(min-width: 840px) and (orientation: portrait)",HandsetLandscape:"(max-width: 959.98px) and (orientation: landscape)",TabletLandscape:"(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)",WebLandscape:"(min-width: 1280px) and (orientation: landscape)"}},2593(Zt,pe,l){"use strict";l.d(pe,{l:()=>u});var i=l(2615),d=l(3664),v=l(9295),T=l(1413),w=l(8359),e=l(9096),O=l(7336),f=l(438);class u{_items;_activeItemIndex=(0,i.vPA)(-1);_activeItem=(0,i.vPA)(null);_wrap=!1;_typeaheadSubscription=w.yU.EMPTY;_itemChangesSubscription;_vertical=!0;_horizontal;_allowedModifierKeys=[];_homeAndEnd=!1;_pageUpAndDown={enabled:!1,delta:10};_effectRef;_typeahead;_skipPredicateFn=C=>C.disabled;constructor(C,B){this._items=C,C instanceof d.rOR?this._itemChangesSubscription=C.changes.subscribe(A=>this._itemsChanged(A.toArray())):(0,i.Hps)(C)&&(this._effectRef=(0,v.QZ)(()=>this._itemsChanged(C()),{injector:B}))}tabOut=new T.B;change=new T.B;skipPredicate(C){return this._skipPredicateFn=C,this}withWrap(C=!0){return this._wrap=C,this}withVerticalOrientation(C=!0){return this._vertical=C,this}withHorizontalOrientation(C){return this._horizontal=C,this}withAllowedModifierKeys(C){return this._allowedModifierKeys=C,this}withTypeAhead(C=200){this._typeaheadSubscription.unsubscribe();const B=this._getItemsArray();return this._typeahead=new e.i(B,{debounceInterval:"number"==typeof C?C:void 0,skipPredicate:A=>this._skipPredicateFn(A)}),this._typeaheadSubscription=this._typeahead.selectedItem.subscribe(A=>{this.setActiveItem(A)}),this}cancelTypeahead(){return this._typeahead?.reset(),this}withHomeAndEnd(C=!0){return this._homeAndEnd=C,this}withPageUpDown(C=!0,B=10){return this._pageUpAndDown={enabled:C,delta:B},this}setActiveItem(C){const B=this._activeItem();this.updateActiveItem(C),this._activeItem()!==B&&this.change.next(this._activeItemIndex())}onKeydown(C){const B=C.keyCode,Pe=["altKey","ctrlKey","metaKey","shiftKey"].every(le=>!C[le]||this._allowedModifierKeys.indexOf(le)>-1);switch(B){case f.wn:return void this.tabOut.next();case f.n6:if(this._vertical&&Pe){this.setNextItemActive();break}return;case f.i7:if(this._vertical&&Pe){this.setPreviousItemActive();break}return;case f.LE:if(this._horizontal&&Pe){"rtl"===this._horizontal?this.setPreviousItemActive():this.setNextItemActive();break}return;case f.UQ:if(this._horizontal&&Pe){"rtl"===this._horizontal?this.setNextItemActive():this.setPreviousItemActive();break}return;case f.yZ:if(this._homeAndEnd&&Pe){this.setFirstItemActive();break}return;case f.Kp:if(this._homeAndEnd&&Pe){this.setLastItemActive();break}return;case f.w_:if(this._pageUpAndDown.enabled&&Pe){const le=this._activeItemIndex()-this._pageUpAndDown.delta;this._setActiveItemByIndex(le>0?le:0,1);break}return;case f.dB:if(this._pageUpAndDown.enabled&&Pe){const le=this._activeItemIndex()+this._pageUpAndDown.delta,Ce=this._getItemsArray().length;this._setActiveItemByIndex(le-1&&A!==this._activeItemIndex()&&(this._activeItemIndex.set(A),this._typeahead?.setCurrentSelectedItemIndex(A))}}}},2318(Zt,pe,l){"use strict";l.d(pe,{Wv:()=>A,w5:()=>Pe});var i=l(2615),d=l(3664),v=l(7705),T=l(1985),w=l(1413),e=l(152),O=l(5964),f=l(6354),u=l(7847);let C=(()=>{class le{create(Ae){return typeof MutationObserver>"u"?null:new MutationObserver(Ae)}static \u0275fac=function(j){return new(j||le)};static \u0275prov=i.jDH({token:le,factory:le.\u0275fac,providedIn:"root"})}return le})(),B=(()=>{class le{_mutationObserverFactory=(0,i.WQX)(C);_observedElements=new Map;_ngZone=(0,i.WQX)(d.SKi);constructor(){}ngOnDestroy(){this._observedElements.forEach((Ae,j)=>this._cleanupObserver(j))}observe(Ae){const j=(0,u.i8)(Ae);return new T.c(W=>{const re=this._observeElement(j).pipe((0,f.T)(xe=>xe.filter(Ee=>!function L(le){if("characterData"===le.type&&le.target instanceof Comment)return!0;if("childList"===le.type){for(let Ce=0;Ce!!xe.length)).subscribe(xe=>{this._ngZone.run(()=>{W.next(xe)})});return()=>{re.unsubscribe(),this._unobserveElement(j)}})}_observeElement(Ae){return this._ngZone.runOutsideAngular(()=>{if(this._observedElements.has(Ae))this._observedElements.get(Ae).count++;else{const j=new w.B,W=this._mutationObserverFactory.create(G=>j.next(G));W&&W.observe(Ae,{characterData:!0,childList:!0,subtree:!0}),this._observedElements.set(Ae,{observer:W,stream:j,count:1})}return this._observedElements.get(Ae).stream})}_unobserveElement(Ae){this._observedElements.has(Ae)&&(this._observedElements.get(Ae).count--,this._observedElements.get(Ae).count||this._cleanupObserver(Ae))}_cleanupObserver(Ae){if(this._observedElements.has(Ae)){const{observer:j,stream:W}=this._observedElements.get(Ae);j&&j.disconnect(),W.complete(),this._observedElements.delete(Ae)}}static \u0275fac=function(j){return new(j||le)};static \u0275prov=i.jDH({token:le,factory:le.\u0275fac,providedIn:"root"})}return le})(),A=(()=>{class le{_contentObserver=(0,i.WQX)(B);_elementRef=(0,i.WQX)(d.aKT);event=new d.bkB;get disabled(){return this._disabled}set disabled(Ae){this._disabled=Ae,this._disabled?this._unsubscribe():this._subscribe()}_disabled=!1;get debounce(){return this._debounce}set debounce(Ae){this._debounce=(0,u.OE)(Ae),this._subscribe()}_debounce;_currentSubscription=null;constructor(){}ngAfterContentInit(){!this._currentSubscription&&!this.disabled&&this._subscribe()}ngOnDestroy(){this._unsubscribe()}_subscribe(){this._unsubscribe();const Ae=this._contentObserver.observe(this._elementRef);this._currentSubscription=(this.debounce?Ae.pipe((0,e.B)(this.debounce)):Ae).subscribe(this.event)}_unsubscribe(){this._currentSubscription?.unsubscribe()}static \u0275fac=function(j){return new(j||le)};static \u0275dir=d.FsC({type:le,selectors:[["","cdkObserveContent",""]],inputs:{disabled:[2,"cdkObserveContentDisabled","disabled",v.L39],debounce:"debounce"},outputs:{event:"cdkObserveContent"},exportAs:["cdkObserveContent"]})}return le})(),Pe=(()=>{class le{static \u0275fac=function(j){return new(j||le)};static \u0275mod=d.$C({type:le});static \u0275inj=i.G2t({providers:[C]})}return le})()},3610(Zt,pe,l){"use strict";l.d(pe,{a:()=>B});var i=l(2615),d=l(3664),v=l(1413),T=l(1985),w=l(5964),e=l(2771),O=l(7647),u=l(6977);class C{_box;_destroyed=new v.B;_resizeSubject=new v.B;_resizeObserver;_elementObservables=new Map;constructor(Pe){this._box=Pe,typeof ResizeObserver<"u"&&(this._resizeObserver=new ResizeObserver(le=>this._resizeSubject.next(le)))}observe(Pe){return this._elementObservables.has(Pe)||this._elementObservables.set(Pe,new T.c(le=>{const Ce=this._resizeSubject.subscribe(le);return this._resizeObserver?.observe(Pe,{box:this._box}),()=>{this._resizeObserver?.unobserve(Pe),Ce.unsubscribe(),this._elementObservables.delete(Pe)}}).pipe((0,w.p)(le=>le.some(Ce=>Ce.target===Pe)),function f(A,Pe,le){let Ce,Ae=!1;return A&&"object"==typeof A?({bufferSize:Ce=1/0,windowTime:Pe=1/0,refCount:Ae=!1,scheduler:le}=A):Ce=A??1/0,(0,O.u)({connector:()=>new e.m(Ce,Pe,le),resetOnError:!0,resetOnComplete:!1,resetOnRefCountZero:Ae})}({bufferSize:1,refCount:!0}),(0,u.Q)(this._destroyed))),this._elementObservables.get(Pe)}destroy(){this._destroyed.next(),this._destroyed.complete(),this._resizeSubject.complete(),this._elementObservables.clear()}}let B=(()=>{class A{_cleanupErrorListener;_observers=new Map;_ngZone=(0,i.WQX)(d.SKi);constructor(){}ngOnDestroy(){for(const[,le]of this._observers)le.destroy();this._observers.clear(),this._cleanupErrorListener?.()}observe(le,Ce){const Ae=Ce?.box||"content-box";return this._observers.has(Ae)||this._observers.set(Ae,new C(Ae)),this._observers.get(Ae).observe(le)}static \u0275fac=function(Ce){return new(Ce||A)};static \u0275prov=i.jDH({token:A,factory:A.\u0275fac,providedIn:"root"})}return A})()},9338(Zt,pe,l){"use strict";l.d(pe,{WB:()=>kn,$Q:()=>Ni,rW:()=>Gt,rR:()=>ie,Sf:()=>ht,z_:()=>ee,yY:()=>Ye,gA:()=>be,$M:()=>gt,uA:()=>Ue,Y$:()=>Pt,RH:()=>lt});var i=l(2615),d=l(3664),v=l(7705),T=l(7303),w=l(9842),e=l(4522);function O(){return typeof __karma__<"u"&&!!__karma__||typeof jasmine<"u"&&!!jasmine||typeof jest<"u"&&!!jest||typeof Mocha<"u"&&!!Mocha}var f=l(8968),u=l(1413),L=l(8359);function C(ye){return null==ye?"":"string"==typeof ye?ye:`${ye}px`}var B=l(408),A=l(5718),Pe=l(6939),le=l(7860),Ce=l(5964),Ae=l(9974),j=l(4360),G=l(9726),re=l(1577),xe=l(438),Ee=l(7336),V=l(8203);const ce=(0,le.CZ)();function be(ye){return new ne(ye.get(A.Xj),ye.get(i.qQL))}class ne{_viewportRuler;_previousHTMLStyles={top:"",left:""};_previousScrollPosition;_isEnabled=!1;_document;constructor(ke,Se){this._viewportRuler=ke,this._document=Se}attach(){}enable(){if(this._canBeEnabled()){const ke=this._document.documentElement;this._previousScrollPosition=this._viewportRuler.getViewportScrollPosition(),this._previousHTMLStyles.left=ke.style.left||"",this._previousHTMLStyles.top=ke.style.top||"",ke.style.left=C(-this._previousScrollPosition.left),ke.style.top=C(-this._previousScrollPosition.top),ke.classList.add("cdk-global-scrollblock"),this._isEnabled=!0}}disable(){if(this._isEnabled){const ke=this._document.documentElement,ge=ke.style,N=this._document.body.style,Z=ge.scrollBehavior||"",Me=N.scrollBehavior||"";this._isEnabled=!1,ge.left=this._previousHTMLStyles.left,ge.top=this._previousHTMLStyles.top,ke.classList.remove("cdk-global-scrollblock"),ce&&(ge.scrollBehavior=N.scrollBehavior="auto"),window.scroll(this._previousScrollPosition.left,this._previousScrollPosition.top),ce&&(ge.scrollBehavior=Z,N.scrollBehavior=Me)}}_canBeEnabled(){if(this._document.documentElement.classList.contains("cdk-global-scrollblock")||this._isEnabled)return!1;const Se=this._document.documentElement,ge=this._viewportRuler.getViewportSize();return Se.scrollHeight>ge.height||Se.scrollWidth>ge.width}}class Re{_scrollDispatcher;_ngZone;_viewportRuler;_config;_scrollSubscription=null;_overlayRef;_initialScrollPosition;constructor(ke,Se,ge,N){this._scrollDispatcher=ke,this._ngZone=Se,this._viewportRuler=ge,this._config=N}attach(ke){this._overlayRef=ke}enable(){if(this._scrollSubscription)return;const ke=this._scrollDispatcher.scrolled(0).pipe((0,Ce.p)(Se=>!Se||!this._overlayRef.overlayElement.contains(Se.getElementRef().nativeElement)));this._config&&this._config.threshold&&this._config.threshold>1?(this._initialScrollPosition=this._viewportRuler.getViewportScrollPosition().top,this._scrollSubscription=ke.subscribe(()=>{const Se=this._viewportRuler.getViewportScrollPosition().top;Math.abs(Se-this._initialScrollPosition)>this._config.threshold?this._detach():this._overlayRef.updatePosition()})):this._scrollSubscription=ke.subscribe(this._detach)}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}_detach=()=>{this.disable(),this._overlayRef.hasAttached()&&this._ngZone.run(()=>this._overlayRef.detach())}}class _e{enable(){}disable(){}attach(){}}function he(ye,ke){return ke.some(Se=>ye.bottomSe.bottom||ye.rightSe.right)}function Dt(ye,ke){return ke.some(Se=>ye.topSe.bottom||ye.leftSe.right)}function lt(ye,ke){return new Le(ye.get(A.R),ye.get(A.Xj),ye.get(d.SKi),ke)}class Le{_scrollDispatcher;_viewportRuler;_ngZone;_config;_scrollSubscription=null;_overlayRef;constructor(ke,Se,ge,N){this._scrollDispatcher=ke,this._viewportRuler=Se,this._ngZone=ge,this._config=N}attach(ke){this._overlayRef=ke}enable(){this._scrollSubscription||(this._scrollSubscription=this._scrollDispatcher.scrolled(this._config?this._config.scrollThrottle:0).subscribe(()=>{if(this._overlayRef.updatePosition(),this._config&&this._config.autoClose){const Se=this._overlayRef.overlayElement.getBoundingClientRect(),{width:ge,height:N}=this._viewportRuler.getViewportSize();he(Se,[{width:ge,height:N,bottom:N,right:ge,top:0,left:0}])&&(this.disable(),this._ngZone.run(()=>this._overlayRef.detach()))}}))}disable(){this._scrollSubscription&&(this._scrollSubscription.unsubscribe(),this._scrollSubscription=null)}detach(){this.disable(),this._overlayRef=null}}let te=(()=>{class ye{_injector=(0,i.WQX)(i.zZn);constructor(){}noop=()=>new _e;close=Se=>function De(ye,ke){return new Re(ye.get(A.R),ye.get(d.SKi),ye.get(A.Xj),ke)}(this._injector,Se);block=()=>be(this._injector);reposition=Se=>lt(this._injector,Se);static \u0275fac=function(ge){return new(ge||ye)};static \u0275prov=i.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();class ie{positionStrategy;scrollStrategy=new _e;panelClass="";hasBackdrop=!1;backdropClass="cdk-overlay-dark-backdrop";disableAnimations;width;height;minWidth;minHeight;maxWidth;maxHeight;direction;disposeOnNavigation=!1;constructor(ke){if(ke){const Se=Object.keys(ke);for(const ge of Se)void 0!==ke[ge]&&(this[ge]=ke[ge])}}}class ve{connectionPair;scrollableViewProperties;constructor(ke,Se){this.connectionPair=ke,this.scrollableViewProperties=Se}}let Ke=(()=>{class ye{_attachedOverlays=[];_document=(0,i.WQX)(i.qQL);_isAttached;constructor(){}ngOnDestroy(){this.detach()}add(Se){this.remove(Se),this._attachedOverlays.push(Se)}remove(Se){const ge=this._attachedOverlays.indexOf(Se);ge>-1&&this._attachedOverlays.splice(ge,1),0===this._attachedOverlays.length&&this.detach()}static \u0275fac=function(ge){return new(ge||ye)};static \u0275prov=i.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),Vt=(()=>{class ye extends Ke{_ngZone=(0,i.WQX)(d.SKi);_renderer=(0,i.WQX)(d._9s).createRenderer(null,null);_cleanupKeydown;add(Se){super.add(Se),this._isAttached||(this._ngZone.runOutsideAngular(()=>{this._cleanupKeydown=this._renderer.listen("body","keydown",this._keydownListener)}),this._isAttached=!0)}detach(){this._isAttached&&(this._cleanupKeydown?.(),this._isAttached=!1)}_keydownListener=Se=>{const ge=this._attachedOverlays;for(let N=ge.length-1;N>-1;N--)if(ge[N]._keydownEvents.observers.length>0){this._ngZone.run(()=>ge[N]._keydownEvents.next(Se));break}};static \u0275fac=(()=>{let Se;return function(N){return(Se||(Se=d.xGo(ye)))(N||ye)}})();static \u0275prov=i.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})(),St=(()=>{class ye extends Ke{_platform=(0,i.WQX)(w.O);_ngZone=(0,i.WQX)(d.SKi);_renderer=(0,i.WQX)(d._9s).createRenderer(null,null);_cursorOriginalValue;_cursorStyleIsSet=!1;_pointerDownEventTarget;_cleanups;add(Se){if(super.add(Se),!this._isAttached){const ge=this._document.body,N={capture:!0},Z=this._renderer;this._cleanups=this._ngZone.runOutsideAngular(()=>[Z.listen(ge,"pointerdown",this._pointerDownListener,N),Z.listen(ge,"click",this._clickListener,N),Z.listen(ge,"auxclick",this._clickListener,N),Z.listen(ge,"contextmenu",this._clickListener,N)]),this._platform.IOS&&!this._cursorStyleIsSet&&(this._cursorOriginalValue=ge.style.cursor,ge.style.cursor="pointer",this._cursorStyleIsSet=!0),this._isAttached=!0}}detach(){this._isAttached&&(this._cleanups?.forEach(Se=>Se()),this._cleanups=void 0,this._platform.IOS&&this._cursorStyleIsSet&&(this._document.body.style.cursor=this._cursorOriginalValue,this._cursorStyleIsSet=!1),this._isAttached=!1)}_pointerDownListener=Se=>{this._pointerDownEventTarget=(0,e.Fb)(Se)};_clickListener=Se=>{const ge=(0,e.Fb)(Se),N="click"===Se.type&&this._pointerDownEventTarget?this._pointerDownEventTarget:ge;this._pointerDownEventTarget=null;const Z=this._attachedOverlays.slice();for(let Me=Z.length-1;Me>-1;Me--){const at=Z[Me];if(at._outsidePointerEvents.observers.length<1||!at.hasAttached())continue;if(ot(at.overlayElement,ge)||ot(at.overlayElement,N))break;const qe=at._outsidePointerEvents;this._ngZone?this._ngZone.run(()=>qe.next(Se)):qe.next(Se)}};static \u0275fac=(()=>{let Se;return function(N){return(Se||(Se=d.xGo(ye)))(N||ye)}})();static \u0275prov=i.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();function ot(ye,ke){const Se=typeof ShadowRoot<"u"&&ShadowRoot;let ge=ke;for(;ge;){if(ge===ye)return!0;ge=Se&&ge instanceof ShadowRoot?ge.host:ge.parentNode}return!1}let nt=(()=>{class ye{static \u0275fac=function(ge){return new(ge||ye)};static \u0275cmp=d.VBU({type:ye,selectors:[["ng-component"]],hostAttrs:["cdk-overlay-style-loader",""],decls:0,vars:0,template:function(ge,N){},styles:[".cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed}@layer cdk-overlay{.cdk-overlay-container{z-index:1000}}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute}@layer cdk-overlay{.cdk-global-overlay-wrapper{z-index:1000}}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;display:flex;max-width:100%;max-height:100%}@layer cdk-overlay{.cdk-overlay-pane{z-index:1000}}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;pointer-events:auto;-webkit-tap-highlight-color:rgba(0,0,0,0);opacity:0;touch-action:manipulation}@layer cdk-overlay{.cdk-overlay-backdrop{z-index:1000;transition:opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}}@media(prefers-reduced-motion){.cdk-overlay-backdrop{transition-duration:1ms}}.cdk-overlay-backdrop-showing{opacity:1}@media(forced-colors: active){.cdk-overlay-backdrop-showing{opacity:.6}}@layer cdk-overlay{.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing,.cdk-high-contrast-active .cdk-overlay-transparent-backdrop{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;display:flex;flex-direction:column;min-width:1px;min-height:1px}@layer cdk-overlay{.cdk-overlay-connected-position-bounding-box{z-index:1000}}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}\n"],encapsulation:2,changeDetection:0})}return ye})(),ht=(()=>{class ye{_platform=(0,i.WQX)(w.O);_containerElement;_document=(0,i.WQX)(i.qQL);_styleLoader=(0,i.WQX)(f.l);constructor(){}ngOnDestroy(){this._containerElement?.remove()}getContainerElement(){return this._loadStyles(),this._containerElement||this._createContainer(),this._containerElement}_createContainer(){const Se="cdk-overlay-container";if(this._platform.isBrowser||O()){const N=this._document.querySelectorAll(`.${Se}[platform="server"], .${Se}[platform="test"]`);for(let Z=0;Z{const ke=this.element;clearTimeout(this._fallbackTimeout),this._cleanupTransitionEnd?.(),this._cleanupTransitionEnd=this._renderer.listen(ke,"transitionend",this.dispose),this._fallbackTimeout=setTimeout(this.dispose,500),ke.style.pointerEvents="none",ke.classList.remove("cdk-overlay-backdrop-showing")})}dispose=()=>{clearTimeout(this._fallbackTimeout),this._cleanupClick?.(),this._cleanupTransitionEnd?.(),this._cleanupClick=this._cleanupTransitionEnd=this._fallbackTimeout=void 0,this.element.remove()}}class Ye{_portalOutlet;_host;_pane;_config;_ngZone;_keyboardDispatcher;_document;_location;_outsideClickDispatcher;_animationsDisabled;_injector;_renderer;_backdropClick=new u.B;_attachments=new u.B;_detachments=new u.B;_positionStrategy;_scrollStrategy;_locationChanges=L.yU.EMPTY;_backdropRef=null;_detachContentMutationObserver;_detachContentAfterRenderRef;_previousHostParent;_keydownEvents=new u.B;_outsidePointerEvents=new u.B;_afterNextRenderRef;constructor(ke,Se,ge,N,Z,Me,at,qe,pn,Je=!1,Be,ut){this._portalOutlet=ke,this._host=Se,this._pane=ge,this._config=N,this._ngZone=Z,this._keyboardDispatcher=Me,this._document=at,this._location=qe,this._outsideClickDispatcher=pn,this._animationsDisabled=Je,this._injector=Be,this._renderer=ut,N.scrollStrategy&&(this._scrollStrategy=N.scrollStrategy,this._scrollStrategy.attach(this)),this._positionStrategy=N.positionStrategy}get overlayElement(){return this._pane}get backdropElement(){return this._backdropRef?.element||null}get hostElement(){return this._host}attach(ke){!this._host.parentElement&&this._previousHostParent&&this._previousHostParent.appendChild(this._host);const Se=this._portalOutlet.attach(ke);return this._positionStrategy&&this._positionStrategy.attach(this),this._updateStackingOrder(),this._updateElementSize(),this._updateElementDirection(),this._scrollStrategy&&this._scrollStrategy.enable(),this._afterNextRenderRef?.destroy(),this._afterNextRenderRef=(0,d.mal)(()=>{this.hasAttached()&&this.updatePosition()},{injector:this._injector}),this._togglePointerEvents(!0),this._config.hasBackdrop&&this._attachBackdrop(),this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!0),this._attachments.next(),this._completeDetachContent(),this._keyboardDispatcher.add(this),this._config.disposeOnNavigation&&(this._locationChanges=this._location.subscribe(()=>this.dispose())),this._outsideClickDispatcher.add(this),"function"==typeof Se?.onDestroy&&Se.onDestroy(()=>{this.hasAttached()&&this._ngZone.runOutsideAngular(()=>Promise.resolve().then(()=>this.detach()))}),Se}detach(){if(!this.hasAttached())return;this.detachBackdrop(),this._togglePointerEvents(!1),this._positionStrategy&&this._positionStrategy.detach&&this._positionStrategy.detach(),this._scrollStrategy&&this._scrollStrategy.disable();const ke=this._portalOutlet.detach();return this._detachments.next(),this._completeDetachContent(),this._keyboardDispatcher.remove(this),this._detachContentWhenEmpty(),this._locationChanges.unsubscribe(),this._outsideClickDispatcher.remove(this),ke}dispose(){const ke=this.hasAttached();this._positionStrategy&&this._positionStrategy.dispose(),this._disposeScrollStrategy(),this._backdropRef?.dispose(),this._locationChanges.unsubscribe(),this._keyboardDispatcher.remove(this),this._portalOutlet.dispose(),this._attachments.complete(),this._backdropClick.complete(),this._keydownEvents.complete(),this._outsidePointerEvents.complete(),this._outsideClickDispatcher.remove(this),this._host?.remove(),this._afterNextRenderRef?.destroy(),this._previousHostParent=this._pane=this._host=this._backdropRef=null,ke&&this._detachments.next(),this._detachments.complete(),this._completeDetachContent()}hasAttached(){return this._portalOutlet.hasAttached()}backdropClick(){return this._backdropClick}attachments(){return this._attachments}detachments(){return this._detachments}keydownEvents(){return this._keydownEvents}outsidePointerEvents(){return this._outsidePointerEvents}getConfig(){return this._config}updatePosition(){this._positionStrategy&&this._positionStrategy.apply()}updatePositionStrategy(ke){ke!==this._positionStrategy&&(this._positionStrategy&&this._positionStrategy.dispose(),this._positionStrategy=ke,this.hasAttached()&&(ke.attach(this),this.updatePosition()))}updateSize(ke){this._config={...this._config,...ke},this._updateElementSize()}setDirection(ke){this._config={...this._config,direction:ke},this._updateElementDirection()}addPanelClass(ke){this._pane&&this._toggleClasses(this._pane,ke,!0)}removePanelClass(ke){this._pane&&this._toggleClasses(this._pane,ke,!1)}getDirection(){const ke=this._config.direction;return ke?"string"==typeof ke?ke:ke.value:"ltr"}updateScrollStrategy(ke){ke!==this._scrollStrategy&&(this._disposeScrollStrategy(),this._scrollStrategy=ke,this.hasAttached()&&(ke.attach(this),ke.enable()))}_updateElementDirection(){this._host.setAttribute("dir",this.getDirection())}_updateElementSize(){if(!this._pane)return;const ke=this._pane.style;ke.width=C(this._config.width),ke.height=C(this._config.height),ke.minWidth=C(this._config.minWidth),ke.minHeight=C(this._config.minHeight),ke.maxWidth=C(this._config.maxWidth),ke.maxHeight=C(this._config.maxHeight)}_togglePointerEvents(ke){this._pane.style.pointerEvents=ke?"":"none"}_attachBackdrop(){const ke="cdk-overlay-backdrop-showing";this._backdropRef?.dispose(),this._backdropRef=new oe(this._document,this._renderer,this._ngZone,Se=>{this._backdropClick.next(Se)}),this._animationsDisabled&&this._backdropRef.element.classList.add("cdk-overlay-backdrop-noop-animation"),this._config.backdropClass&&this._toggleClasses(this._backdropRef.element,this._config.backdropClass,!0),this._host.parentElement.insertBefore(this._backdropRef.element,this._host),!this._animationsDisabled&&typeof requestAnimationFrame<"u"?this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>this._backdropRef?.element.classList.add(ke))}):this._backdropRef.element.classList.add(ke)}_updateStackingOrder(){this._host.nextSibling&&this._host.parentNode.appendChild(this._host)}detachBackdrop(){this._animationsDisabled?(this._backdropRef?.dispose(),this._backdropRef=null):this._backdropRef?.detach()}_toggleClasses(ke,Se,ge){const N=(0,B.F)(Se||[]).filter(Z=>!!Z);N.length&&(ge?ke.classList.add(...N):ke.classList.remove(...N))}_detachContentWhenEmpty(){let ke=!1;try{this._detachContentAfterRenderRef=(0,d.mal)(()=>{ke=!0,this._detachContent()},{injector:this._injector})}catch(Se){if(ke)throw Se;this._detachContent()}globalThis.MutationObserver&&this._pane&&(this._detachContentMutationObserver||=new globalThis.MutationObserver(()=>{this._detachContent()}),this._detachContentMutationObserver.observe(this._pane,{childList:!0}))}_detachContent(){(!this._pane||!this._host||0===this._pane.children.length)&&(this._pane&&this._config.panelClass&&this._toggleClasses(this._pane,this._config.panelClass,!1),this._host&&this._host.parentElement&&(this._previousHostParent=this._host.parentElement,this._host.remove()),this._completeDetachContent())}_completeDetachContent(){this._detachContentAfterRenderRef?.destroy(),this._detachContentAfterRenderRef=void 0,this._detachContentMutationObserver?.disconnect()}_disposeScrollStrategy(){const ke=this._scrollStrategy;ke?.disable(),ke?.detach?.()}}const fe="cdk-overlay-connected-position-bounding-box",Qe=/([A-Za-z%]+)$/;function gt(ye,ke){return new Gt(ke,ye.get(A.Xj),ye.get(i.qQL),ye.get(w.O),ye.get(ht))}class Gt{_viewportRuler;_document;_platform;_overlayContainer;_overlayRef;_isInitialRender;_lastBoundingBoxSize={width:0,height:0};_isPushed=!1;_canPush=!0;_growAfterOpen=!1;_hasFlexibleDimensions=!0;_positionLocked=!1;_originRect;_overlayRect;_viewportRect;_containerRect;_viewportMargin=0;_scrollables=[];_preferredPositions=[];_origin;_pane;_isDisposed;_boundingBox;_lastPosition;_lastScrollVisibility;_positionChanges=new u.B;_resizeSubscription=L.yU.EMPTY;_offsetX=0;_offsetY=0;_transformOriginSelector;_appliedPanelClasses=[];_previousPushAmount;positionChanges=this._positionChanges;get positions(){return this._preferredPositions}constructor(ke,Se,ge,N,Z){this._viewportRuler=Se,this._document=ge,this._platform=N,this._overlayContainer=Z,this.setOrigin(ke)}attach(ke){this._validatePositions(),ke.hostElement.classList.add(fe),this._overlayRef=ke,this._boundingBox=ke.hostElement,this._pane=ke.overlayElement,this._isDisposed=!1,this._isInitialRender=!0,this._lastPosition=null,this._resizeSubscription.unsubscribe(),this._resizeSubscription=this._viewportRuler.change().subscribe(()=>{this._isInitialRender=!0,this.apply()})}apply(){if(this._isDisposed||!this._platform.isBrowser)return;if(!this._isInitialRender&&this._positionLocked&&this._lastPosition)return void this.reapplyLastPosition();this._clearPanelClasses(),this._resetOverlayElementStyles(),this._resetBoundingBoxStyles(),this._viewportRect=this._getNarrowedViewportRect(),this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const ke=this._originRect,Se=this._overlayRect,ge=this._viewportRect,N=this._containerRect,Z=[];let Me;for(let at of this._preferredPositions){let qe=this._getOriginPoint(ke,N,at),pn=this._getOverlayPoint(qe,Se,at),Je=this._getOverlayFit(pn,Se,ge,at);if(Je.isCompletelyWithinViewport)return this._isPushed=!1,void this._applyPosition(at,qe);this._canFitWithFlexibleDimensions(Je,pn,ge)?Z.push({position:at,origin:qe,overlayRect:Se,boundingBoxRect:this._calculateBoundingBoxRect(qe,at)}):(!Me||Me.overlayFit.visibleAreaqe&&(qe=Je,at=pn)}return this._isPushed=!1,void this._applyPosition(at.position,at.origin)}if(this._canPush)return this._isPushed=!0,void this._applyPosition(Me.position,Me.originPoint);this._applyPosition(Me.position,Me.originPoint)}detach(){this._clearPanelClasses(),this._lastPosition=null,this._previousPushAmount=null,this._resizeSubscription.unsubscribe()}dispose(){this._isDisposed||(this._boundingBox&&rt(this._boundingBox.style,{top:"",left:"",right:"",bottom:"",height:"",width:"",alignItems:"",justifyContent:""}),this._pane&&this._resetOverlayElementStyles(),this._overlayRef&&this._overlayRef.hostElement.classList.remove(fe),this.detach(),this._positionChanges.complete(),this._overlayRef=this._boundingBox=null,this._isDisposed=!0)}reapplyLastPosition(){if(this._isDisposed||!this._platform.isBrowser)return;const ke=this._lastPosition;if(ke){this._originRect=this._getOriginRect(),this._overlayRect=this._pane.getBoundingClientRect(),this._viewportRect=this._getNarrowedViewportRect(),this._containerRect=this._overlayContainer.getContainerElement().getBoundingClientRect();const Se=this._getOriginPoint(this._originRect,this._containerRect,ke);this._applyPosition(ke,Se)}else this.apply()}withScrollableContainers(ke){return this._scrollables=ke,this}withPositions(ke){return this._preferredPositions=ke,-1===ke.indexOf(this._lastPosition)&&(this._lastPosition=null),this._validatePositions(),this}withViewportMargin(ke){return this._viewportMargin=ke,this}withFlexibleDimensions(ke=!0){return this._hasFlexibleDimensions=ke,this}withGrowAfterOpen(ke=!0){return this._growAfterOpen=ke,this}withPush(ke=!0){return this._canPush=ke,this}withLockedPosition(ke=!0){return this._positionLocked=ke,this}setOrigin(ke){return this._origin=ke,this}withDefaultOffsetX(ke){return this._offsetX=ke,this}withDefaultOffsetY(ke){return this._offsetY=ke,this}withTransformOriginOn(ke){return this._transformOriginSelector=ke,this}_getOriginPoint(ke,Se,ge){let N,Z;if("center"==ge.originX)N=ke.left+ke.width/2;else{const Me=this._isRtl()?ke.right:ke.left,at=this._isRtl()?ke.left:ke.right;N="start"==ge.originX?Me:at}return Se.left<0&&(N-=Se.left),Z="center"==ge.originY?ke.top+ke.height/2:"top"==ge.originY?ke.top:ke.bottom,Se.top<0&&(Z-=Se.top),{x:N,y:Z}}_getOverlayPoint(ke,Se,ge){let N,Z;return N="center"==ge.overlayX?-Se.width/2:"start"===ge.overlayX?this._isRtl()?-Se.width:0:this._isRtl()?0:-Se.width,Z="center"==ge.overlayY?-Se.height/2:"top"==ge.overlayY?0:-Se.height,{x:ke.x+N,y:ke.y+Z}}_getOverlayFit(ke,Se,ge,N){const Z=Ft(Se);let{x:Me,y:at}=ke,qe=this._getOffset(N,"x"),pn=this._getOffset(N,"y");qe&&(Me+=qe),pn&&(at+=pn);let ut=0-at,Ge=at+Z.height-ge.height,Ot=this._subtractOverflows(Z.width,0-Me,Me+Z.width-ge.width),se=this._subtractOverflows(Z.height,ut,Ge),We=Ot*se;return{visibleArea:We,isCompletelyWithinViewport:Z.width*Z.height===We,fitsInViewportVertically:se===Z.height,fitsInViewportHorizontally:Ot==Z.width}}_canFitWithFlexibleDimensions(ke,Se,ge){if(this._hasFlexibleDimensions){const N=ge.bottom-Se.y,Z=ge.right-Se.x,Me=cn(this._overlayRef.getConfig().minHeight),at=cn(this._overlayRef.getConfig().minWidth);return(ke.fitsInViewportVertically||null!=Me&&Me<=N)&&(ke.fitsInViewportHorizontally||null!=at&&at<=Z)}return!1}_pushOverlayOnScreen(ke,Se,ge){if(this._previousPushAmount&&this._positionLocked)return{x:ke.x+this._previousPushAmount.x,y:ke.y+this._previousPushAmount.y};const N=Ft(Se),Z=this._viewportRect,Me=Math.max(ke.x+N.width-Z.width,0),at=Math.max(ke.y+N.height-Z.height,0),qe=Math.max(Z.top-ge.top-ke.y,0),pn=Math.max(Z.left-ge.left-ke.x,0);let Je=0,Be=0;return Je=N.width<=Z.width?pn||-Me:ke.xOt&&!this._isInitialRender&&!this._growAfterOpen&&(Me=ke.y-Ot/2)}if("end"===Se.overlayX&&!N||"start"===Se.overlayX&&N)ut=ge.width-ke.x+2*this._viewportMargin,Je=ke.x-this._viewportMargin;else if("start"===Se.overlayX&&!N||"end"===Se.overlayX&&N)Be=ke.x,Je=ge.right-ke.x;else{const Ge=Math.min(ge.right-ke.x+ge.left,ke.x),Ot=this._lastBoundingBoxSize.width;Je=2*Ge,Be=ke.x-Ge,Je>Ot&&!this._isInitialRender&&!this._growAfterOpen&&(Be=ke.x-Ot/2)}return{top:Me,left:Be,bottom:at,right:ut,width:Je,height:Z}}_setBoundingBoxStyles(ke,Se){const ge=this._calculateBoundingBoxRect(ke,Se);!this._isInitialRender&&!this._growAfterOpen&&(ge.height=Math.min(ge.height,this._lastBoundingBoxSize.height),ge.width=Math.min(ge.width,this._lastBoundingBoxSize.width));const N={};if(this._hasExactPosition())N.top=N.left="0",N.bottom=N.right=N.maxHeight=N.maxWidth="",N.width=N.height="100%";else{const Z=this._overlayRef.getConfig().maxHeight,Me=this._overlayRef.getConfig().maxWidth;N.height=C(ge.height),N.top=C(ge.top),N.bottom=C(ge.bottom),N.width=C(ge.width),N.left=C(ge.left),N.right=C(ge.right),N.alignItems="center"===Se.overlayX?"center":"end"===Se.overlayX?"flex-end":"flex-start",N.justifyContent="center"===Se.overlayY?"center":"bottom"===Se.overlayY?"flex-end":"flex-start",Z&&(N.maxHeight=C(Z)),Me&&(N.maxWidth=C(Me))}this._lastBoundingBoxSize=ge,rt(this._boundingBox.style,N)}_resetBoundingBoxStyles(){rt(this._boundingBox.style,{top:"0",left:"0",right:"0",bottom:"0",height:"",width:"",alignItems:"",justifyContent:""})}_resetOverlayElementStyles(){rt(this._pane.style,{top:"",left:"",bottom:"",right:"",position:"",transform:""})}_setOverlayElementStyles(ke,Se){const ge={},N=this._hasExactPosition(),Z=this._hasFlexibleDimensions,Me=this._overlayRef.getConfig();if(N){const Je=this._viewportRuler.getViewportScrollPosition();rt(ge,this._getExactOverlayY(Se,ke,Je)),rt(ge,this._getExactOverlayX(Se,ke,Je))}else ge.position="static";let at="",qe=this._getOffset(Se,"x"),pn=this._getOffset(Se,"y");qe&&(at+=`translateX(${qe}px) `),pn&&(at+=`translateY(${pn}px)`),ge.transform=at.trim(),Me.maxHeight&&(N?ge.maxHeight=C(Me.maxHeight):Z&&(ge.maxHeight="")),Me.maxWidth&&(N?ge.maxWidth=C(Me.maxWidth):Z&&(ge.maxWidth="")),rt(this._pane.style,ge)}_getExactOverlayY(ke,Se,ge){let N={top:"",bottom:""},Z=this._getOverlayPoint(Se,this._overlayRect,ke);return this._isPushed&&(Z=this._pushOverlayOnScreen(Z,this._overlayRect,ge)),"bottom"===ke.overlayY?N.bottom=this._document.documentElement.clientHeight-(Z.y+this._overlayRect.height)+"px":N.top=C(Z.y),N}_getExactOverlayX(ke,Se,ge){let Me,N={left:"",right:""},Z=this._getOverlayPoint(Se,this._overlayRect,ke);return this._isPushed&&(Z=this._pushOverlayOnScreen(Z,this._overlayRect,ge)),Me=this._isRtl()?"end"===ke.overlayX?"left":"right":"end"===ke.overlayX?"right":"left","right"===Me?N.right=this._document.documentElement.clientWidth-(Z.x+this._overlayRect.width)+"px":N.left=C(Z.x),N}_getScrollVisibility(){const ke=this._getOriginRect(),Se=this._pane.getBoundingClientRect(),ge=this._scrollables.map(N=>N.getElementRef().nativeElement.getBoundingClientRect());return{isOriginClipped:Dt(ke,ge),isOriginOutsideView:he(ke,ge),isOverlayClipped:Dt(Se,ge),isOverlayOutsideView:he(Se,ge)}}_subtractOverflows(ke,...Se){return Se.reduce((ge,N)=>ge-Math.max(N,0),ke)}_getNarrowedViewportRect(){const ke=this._document.documentElement.clientWidth,Se=this._document.documentElement.clientHeight,ge=this._viewportRuler.getViewportScrollPosition();return{top:ge.top+this._viewportMargin,left:ge.left+this._viewportMargin,right:ge.left+ke-this._viewportMargin,bottom:ge.top+Se-this._viewportMargin,width:ke-2*this._viewportMargin,height:Se-2*this._viewportMargin}}_isRtl(){return"rtl"===this._overlayRef.getDirection()}_hasExactPosition(){return!this._hasFlexibleDimensions||this._isPushed}_getOffset(ke,Se){return"x"===Se?null==ke.offsetX?this._offsetX:ke.offsetX:null==ke.offsetY?this._offsetY:ke.offsetY}_validatePositions(){}_addPanelClasses(ke){this._pane&&(0,B.F)(ke).forEach(Se=>{""!==Se&&-1===this._appliedPanelClasses.indexOf(Se)&&(this._appliedPanelClasses.push(Se),this._pane.classList.add(Se))})}_clearPanelClasses(){this._pane&&(this._appliedPanelClasses.forEach(ke=>{this._pane.classList.remove(ke)}),this._appliedPanelClasses=[])}_getOriginRect(){const ke=this._origin;if(ke instanceof d.aKT)return ke.nativeElement.getBoundingClientRect();if(ke instanceof Element)return ke.getBoundingClientRect();const Se=ke.width||0,ge=ke.height||0;return{top:ke.y,bottom:ke.y+ge,left:ke.x,right:ke.x+Se,height:ge,width:Se}}}function rt(ye,ke){for(let Se in ke)ke.hasOwnProperty(Se)&&(ye[Se]=ke[Se]);return ye}function cn(ye){if("number"!=typeof ye&&null!=ye){const[ke,Se]=ye.split(Qe);return Se&&"px"!==Se?null:parseFloat(ke)}return ye||null}function Ft(ye){return{top:Math.floor(ye.top),right:Math.floor(ye.right),bottom:Math.floor(ye.bottom),left:Math.floor(ye.left),width:Math.floor(ye.width),height:Math.floor(ye.height)}}const jt="cdk-global-overlay-wrapper";function Ue(ye){return new wt}class wt{_overlayRef;_cssPosition="static";_topOffset="";_bottomOffset="";_alignItems="";_xPosition="";_xOffset="";_width="";_height="";_isDisposed=!1;attach(ke){const Se=ke.getConfig();this._overlayRef=ke,this._width&&!Se.width&&ke.updateSize({width:this._width}),this._height&&!Se.height&&ke.updateSize({height:this._height}),ke.hostElement.classList.add(jt),this._isDisposed=!1}top(ke=""){return this._bottomOffset="",this._topOffset=ke,this._alignItems="flex-start",this}left(ke=""){return this._xOffset=ke,this._xPosition="left",this}bottom(ke=""){return this._topOffset="",this._bottomOffset=ke,this._alignItems="flex-end",this}right(ke=""){return this._xOffset=ke,this._xPosition="right",this}start(ke=""){return this._xOffset=ke,this._xPosition="start",this}end(ke=""){return this._xOffset=ke,this._xPosition="end",this}width(ke=""){return this._overlayRef?this._overlayRef.updateSize({width:ke}):this._width=ke,this}height(ke=""){return this._overlayRef?this._overlayRef.updateSize({height:ke}):this._height=ke,this}centerHorizontally(ke=""){return this.left(ke),this._xPosition="center",this}centerVertically(ke=""){return this.top(ke),this._alignItems="center",this}apply(){if(!this._overlayRef||!this._overlayRef.hasAttached())return;const ke=this._overlayRef.overlayElement.style,Se=this._overlayRef.hostElement.style,ge=this._overlayRef.getConfig(),{width:N,height:Z,maxWidth:Me,maxHeight:at}=ge,qe=!("100%"!==N&&"100vw"!==N||Me&&"100%"!==Me&&"100vw"!==Me),pn=!("100%"!==Z&&"100vh"!==Z||at&&"100%"!==at&&"100vh"!==at),Je=this._xPosition,Be=this._xOffset,ut="rtl"===this._overlayRef.getConfig().direction;let Ge="",Ot="",se="";qe?se="flex-start":"center"===Je?(se="center",ut?Ot=Be:Ge=Be):ut?"left"===Je||"end"===Je?(se="flex-end",Ge=Be):("right"===Je||"start"===Je)&&(se="flex-start",Ot=Be):"left"===Je||"start"===Je?(se="flex-start",Ge=Be):("right"===Je||"end"===Je)&&(se="flex-end",Ot=Be),ke.position=this._cssPosition,ke.marginLeft=qe?"0":Ge,ke.marginTop=pn?"0":this._topOffset,ke.marginBottom=this._bottomOffset,ke.marginRight=qe?"0":Ot,Se.justifyContent=se,Se.alignItems=pn?"flex-start":this._alignItems}dispose(){if(this._isDisposed||!this._overlayRef)return;const ke=this._overlayRef.overlayElement.style,Se=this._overlayRef.hostElement,ge=Se.style;Se.classList.remove(jt),ge.justifyContent=ge.alignItems=ke.marginTop=ke.marginBottom=ke.marginLeft=ke.marginRight=ke.position="",this._overlayRef=null,this._isDisposed=!0}}let pt=(()=>{class ye{_injector=(0,i.WQX)(i.zZn);constructor(){}global(){return Ue()}flexibleConnectedTo(Se){return gt(this._injector,Se)}static \u0275fac=function(ge){return new(ge||ye)};static \u0275prov=i.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();function Pt(ye,ke){ye.get(f.l).load(nt);const Se=ye.get(ht),ge=ye.get(i.qQL),N=ye.get(G.g),Z=ye.get(d.o8S),Me=ye.get(re.dS),at=ge.createElement("div"),qe=ge.createElement("div");qe.id=N.getId("cdk-overlay-"),qe.classList.add("cdk-overlay-pane"),at.appendChild(qe),Se.getContainerElement().appendChild(at);const pn=new Pe.aI(qe,Z,ye),Je=new ie(ke),Be=ye.get(d.sFG,null,{optional:!0})||ye.get(d._9s).createRenderer(null,null);return Je.direction=Je.direction||Me.value,new Ye(pn,at,qe,Je,ye.get(d.SKi),ye.get(Vt),ge,ye.get(T.aZ),ye.get(St),ke?.disableAnimations??"NoopAnimations"===ye.get(d.bc$,null,{optional:!0}),ye.get(i.uvJ),Be)}let gn=(()=>{class ye{scrollStrategies=(0,i.WQX)(te);_positionBuilder=(0,i.WQX)(pt);_injector=(0,i.WQX)(i.zZn);constructor(){}create(Se){return Pt(this._injector,Se)}position(){return this._positionBuilder}static \u0275fac=function(ge){return new(ge||ye)};static \u0275prov=i.jDH({token:ye,factory:ye.\u0275fac,providedIn:"root"})}return ye})();const ei=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom"},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],vi=new i.nKC("cdk-connected-overlay-scroll-strategy",{providedIn:"root",factory:()=>{const ye=(0,i.WQX)(i.zZn);return()=>lt(ye)}});let Ni=(()=>{class ye{elementRef=(0,i.WQX)(d.aKT);constructor(){}static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=d.FsC({type:ye,selectors:[["","cdk-overlay-origin",""],["","overlay-origin",""],["","cdkOverlayOrigin",""]],exportAs:["cdkOverlayOrigin"]})}return ye})(),kn=(()=>{class ye{_dir=(0,i.WQX)(re.dS,{optional:!0});_injector=(0,i.WQX)(i.zZn);_overlayRef;_templatePortal;_backdropSubscription=L.yU.EMPTY;_attachSubscription=L.yU.EMPTY;_detachSubscription=L.yU.EMPTY;_positionSubscription=L.yU.EMPTY;_offsetX;_offsetY;_position;_scrollStrategyFactory=(0,i.WQX)(vi);_disposeOnNavigation=!1;_ngZone=(0,i.WQX)(d.SKi);origin;positions;positionStrategy;get offsetX(){return this._offsetX}set offsetX(Se){this._offsetX=Se,this._position&&this._updatePositionStrategy(this._position)}get offsetY(){return this._offsetY}set offsetY(Se){this._offsetY=Se,this._position&&this._updatePositionStrategy(this._position)}width;height;minWidth;minHeight;backdropClass;panelClass;viewportMargin=0;scrollStrategy;open=!1;disableClose=!1;transformOriginSelector;hasBackdrop=!1;lockPosition=!1;flexibleDimensions=!1;growAfterOpen=!1;push=!1;get disposeOnNavigation(){return this._disposeOnNavigation}set disposeOnNavigation(Se){this._disposeOnNavigation=Se}backdropClick=new d.bkB;positionChange=new d.bkB;attach=new d.bkB;detach=new d.bkB;overlayKeydown=new d.bkB;overlayOutsideClick=new d.bkB;constructor(){const Se=(0,i.WQX)(d.C4Q),ge=(0,i.WQX)(d.c1b);this._templatePortal=new Pe.VA(Se,ge),this.scrollStrategy=this._scrollStrategyFactory()}get overlayRef(){return this._overlayRef}get dir(){return this._dir?this._dir.value:"ltr"}ngOnDestroy(){this._attachSubscription.unsubscribe(),this._detachSubscription.unsubscribe(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this._overlayRef?.dispose()}ngOnChanges(Se){this._position&&(this._updatePositionStrategy(this._position),this._overlayRef?.updateSize({width:this.width,minWidth:this.minWidth,height:this.height,minHeight:this.minHeight}),Se.origin&&this.open&&this._position.apply()),Se.open&&(this.open?this.attachOverlay():this.detachOverlay())}_createOverlay(){(!this.positions||!this.positions.length)&&(this.positions=ei);const Se=this._overlayRef=Pt(this._injector,this._buildConfig());this._attachSubscription=Se.attachments().subscribe(()=>this.attach.emit()),this._detachSubscription=Se.detachments().subscribe(()=>this.detach.emit()),Se.keydownEvents().subscribe(ge=>{this.overlayKeydown.next(ge),ge.keyCode===xe._f&&!this.disableClose&&!(0,Ee.rp)(ge)&&(ge.preventDefault(),this.detachOverlay())}),this._overlayRef.outsidePointerEvents().subscribe(ge=>{const N=this._getOriginElement(),Z=(0,e.Fb)(ge);(!N||N!==Z&&!N.contains(Z))&&this.overlayOutsideClick.next(ge)})}_buildConfig(){const Se=this._position=this.positionStrategy||this._createPositionStrategy(),ge=new ie({direction:this._dir||"ltr",positionStrategy:Se,scrollStrategy:this.scrollStrategy,hasBackdrop:this.hasBackdrop,disposeOnNavigation:this.disposeOnNavigation});return(this.width||0===this.width)&&(ge.width=this.width),(this.height||0===this.height)&&(ge.height=this.height),(this.minWidth||0===this.minWidth)&&(ge.minWidth=this.minWidth),(this.minHeight||0===this.minHeight)&&(ge.minHeight=this.minHeight),this.backdropClass&&(ge.backdropClass=this.backdropClass),this.panelClass&&(ge.panelClass=this.panelClass),ge}_updatePositionStrategy(Se){const ge=this.positions.map(N=>({originX:N.originX,originY:N.originY,overlayX:N.overlayX,overlayY:N.overlayY,offsetX:N.offsetX||this.offsetX,offsetY:N.offsetY||this.offsetY,panelClass:N.panelClass||void 0}));return Se.setOrigin(this._getOrigin()).withPositions(ge).withFlexibleDimensions(this.flexibleDimensions).withPush(this.push).withGrowAfterOpen(this.growAfterOpen).withViewportMargin(this.viewportMargin).withLockedPosition(this.lockPosition).withTransformOriginOn(this.transformOriginSelector)}_createPositionStrategy(){const Se=gt(this._injector,this._getOrigin());return this._updatePositionStrategy(Se),Se}_getOrigin(){return this.origin instanceof Ni?this.origin.elementRef:this.origin}_getOriginElement(){return this.origin instanceof Ni?this.origin.elementRef.nativeElement:this.origin instanceof d.aKT?this.origin.nativeElement:typeof Element<"u"&&this.origin instanceof Element?this.origin:null}attachOverlay(){this._overlayRef?this._overlayRef.getConfig().hasBackdrop=this.hasBackdrop:this._createOverlay(),this._overlayRef.hasAttached()||this._overlayRef.attach(this._templatePortal),this.hasBackdrop?this._backdropSubscription=this._overlayRef.backdropClick().subscribe(Se=>{this.backdropClick.emit(Se)}):this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.positionChange.observers.length>0&&(this._positionSubscription=this._position.positionChanges.pipe(function W(ye,ke=!1){return(0,Ae.N)((Se,ge)=>{let N=0;Se.subscribe((0,j._)(ge,Z=>{const Me=ye(Z,N++);(Me||ke)&&ge.next(Z),!Me&&ge.complete()}))})}(()=>this.positionChange.observers.length>0)).subscribe(Se=>{this._ngZone.run(()=>this.positionChange.emit(Se)),0===this.positionChange.observers.length&&this._positionSubscription.unsubscribe()})),this.open=!0}detachOverlay(){this._overlayRef?.detach(),this._backdropSubscription.unsubscribe(),this._positionSubscription.unsubscribe(),this.open=!1}static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=d.FsC({type:ye,selectors:[["","cdk-connected-overlay",""],["","connected-overlay",""],["","cdkConnectedOverlay",""]],inputs:{origin:[0,"cdkConnectedOverlayOrigin","origin"],positions:[0,"cdkConnectedOverlayPositions","positions"],positionStrategy:[0,"cdkConnectedOverlayPositionStrategy","positionStrategy"],offsetX:[0,"cdkConnectedOverlayOffsetX","offsetX"],offsetY:[0,"cdkConnectedOverlayOffsetY","offsetY"],width:[0,"cdkConnectedOverlayWidth","width"],height:[0,"cdkConnectedOverlayHeight","height"],minWidth:[0,"cdkConnectedOverlayMinWidth","minWidth"],minHeight:[0,"cdkConnectedOverlayMinHeight","minHeight"],backdropClass:[0,"cdkConnectedOverlayBackdropClass","backdropClass"],panelClass:[0,"cdkConnectedOverlayPanelClass","panelClass"],viewportMargin:[0,"cdkConnectedOverlayViewportMargin","viewportMargin"],scrollStrategy:[0,"cdkConnectedOverlayScrollStrategy","scrollStrategy"],open:[0,"cdkConnectedOverlayOpen","open"],disableClose:[0,"cdkConnectedOverlayDisableClose","disableClose"],transformOriginSelector:[0,"cdkConnectedOverlayTransformOriginOn","transformOriginSelector"],hasBackdrop:[2,"cdkConnectedOverlayHasBackdrop","hasBackdrop",v.L39],lockPosition:[2,"cdkConnectedOverlayLockPosition","lockPosition",v.L39],flexibleDimensions:[2,"cdkConnectedOverlayFlexibleDimensions","flexibleDimensions",v.L39],growAfterOpen:[2,"cdkConnectedOverlayGrowAfterOpen","growAfterOpen",v.L39],push:[2,"cdkConnectedOverlayPush","push",v.L39],disposeOnNavigation:[2,"cdkConnectedOverlayDisposeOnNavigation","disposeOnNavigation",v.L39]},outputs:{backdropClick:"backdropClick",positionChange:"positionChange",attach:"attach",detach:"detach",overlayKeydown:"overlayKeydown",overlayOutsideClick:"overlayOutsideClick"},exportAs:["cdkConnectedOverlay"],features:[d.OA$]})}return ye})();const vt={provide:vi,useFactory:function Ri(ye){const ke=(0,i.WQX)(i.zZn);return()=>lt(ke)}};let ee=(()=>{class ye{static \u0275fac=function(ge){return new(ge||ye)};static \u0275mod=d.$C({type:ye});static \u0275inj=i.G2t({providers:[gn,vt],imports:[V.jI,Pe.jc,A.E9,A.E9]})}return ye})()},3300(Zt,pe,l){"use strict";let i;function v(T){return function d(){if(null==i&&typeof window<"u")try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:()=>i=!0}))}finally{i=i||!1}return i}()?T:!!T.capture}l.d(pe,{B:()=>v})},9842(Zt,pe,l){"use strict";l.d(pe,{O:()=>w});var i=l(2615),d=l(3664),v=l(177);let T;try{T=typeof Intl<"u"&&Intl.v8BreakIterator}catch{T=!1}let w=(()=>{class e{_platformId=(0,i.WQX)(d.Agw);isBrowser=this._platformId?(0,v.UE)(this._platformId):"object"==typeof document&&!!document;EDGE=this.isBrowser&&/(edge)/i.test(navigator.userAgent);TRIDENT=this.isBrowser&&/(msie|trident)/i.test(navigator.userAgent);BLINK=this.isBrowser&&!(!window.chrome&&!T)&&typeof CSS<"u"&&!this.EDGE&&!this.TRIDENT;WEBKIT=this.isBrowser&&/AppleWebKit/i.test(navigator.userAgent)&&!this.BLINK&&!this.EDGE&&!this.TRIDENT;IOS=this.isBrowser&&/iPad|iPhone|iPod/.test(navigator.userAgent)&&!("MSStream"in window);FIREFOX=this.isBrowser&&/(firefox|minefield)/i.test(navigator.userAgent);ANDROID=this.isBrowser&&/android/i.test(navigator.userAgent)&&!this.TRIDENT;SAFARI=this.isBrowser&&/safari/i.test(navigator.userAgent)&&this.WEBKIT;constructor(){}static \u0275fac=function(u){return new(u||e)};static \u0275prov=i.jDH({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})()},6939(Zt,pe,l){"use strict";l.d(pe,{A8:()=>B,I3:()=>W,VA:()=>A,aI:()=>Ce,bV:()=>Ae,jc:()=>re,lb:()=>le});var d=l(2615),v=l(3664),T=l(7705);class C{_attachedHost;attach(Ee){return this._attachedHost=Ee,Ee.attach(this)}detach(){let Ee=this._attachedHost;null!=Ee&&(this._attachedHost=null,Ee.detach())}get isAttached(){return null!=this._attachedHost}setAttachedHost(Ee){this._attachedHost=Ee}}class B extends C{component;viewContainerRef;injector;projectableNodes;constructor(Ee,V,ce,be){super(),this.component=Ee,this.viewContainerRef=V,this.injector=ce,this.projectableNodes=be}}class A extends C{templateRef;viewContainerRef;context;injector;constructor(Ee,V,ce,be){super(),this.templateRef=Ee,this.viewContainerRef=V,this.context=ce,this.injector=be}get origin(){return this.templateRef.elementRef}attach(Ee,V=this.context){return this.context=V,super.attach(Ee)}detach(){return this.context=void 0,super.detach()}}class Pe extends C{element;constructor(Ee){super(),this.element=Ee instanceof v.aKT?Ee.nativeElement:Ee}}class le{_attachedPortal;_disposeFn;_isDisposed=!1;hasAttached(){return!!this._attachedPortal}attach(Ee){return Ee instanceof B?(this._attachedPortal=Ee,this.attachComponentPortal(Ee)):Ee instanceof A?(this._attachedPortal=Ee,this.attachTemplatePortal(Ee)):this.attachDomPortal&&Ee instanceof Pe?(this._attachedPortal=Ee,this.attachDomPortal(Ee)):void 0}attachDomPortal=null;detach(){this._attachedPortal&&(this._attachedPortal.setAttachedHost(null),this._attachedPortal=null),this._invokeDisposeFn()}dispose(){this.hasAttached()&&this.detach(),this._invokeDisposeFn(),this._isDisposed=!0}setDisposeFn(Ee){this._disposeFn=Ee}_invokeDisposeFn(){this._disposeFn&&(this._disposeFn(),this._disposeFn=null)}}class Ce extends le{outletElement;_appRef;_defaultInjector;constructor(Ee,V,ce){super(),this.outletElement=Ee,this._appRef=V,this._defaultInjector=ce}attachComponentPortal(Ee){let V;if(Ee.viewContainerRef){const ce=Ee.injector||Ee.viewContainerRef.injector,be=ce.get(v.Ab1,null,{optional:!0})||void 0;V=Ee.viewContainerRef.createComponent(Ee.component,{index:Ee.viewContainerRef.length,injector:ce,ngModuleRef:be,projectableNodes:Ee.projectableNodes||void 0}),this.setDisposeFn(()=>V.destroy())}else{const ce=this._appRef,be=Ee.injector||this._defaultInjector||d.zZn.NULL,ne=be.get(d.uvJ,ce.injector);V=(0,T.a0P)(Ee.component,{elementInjector:be,environmentInjector:ne,projectableNodes:Ee.projectableNodes||void 0}),ce.attachView(V.hostView),this.setDisposeFn(()=>{ce.viewCount>0&&ce.detachView(V.hostView),V.destroy()})}return this.outletElement.appendChild(this._getComponentRootNode(V)),this._attachedPortal=Ee,V}attachTemplatePortal(Ee){let V=Ee.viewContainerRef,ce=V.createEmbeddedView(Ee.templateRef,Ee.context,{injector:Ee.injector});return ce.rootNodes.forEach(be=>this.outletElement.appendChild(be)),ce.detectChanges(),this.setDisposeFn(()=>{let be=V.indexOf(ce);-1!==be&&V.remove(be)}),this._attachedPortal=Ee,ce}attachDomPortal=Ee=>{const V=Ee.element,ce=this.outletElement.ownerDocument.createComment("dom-portal");V.parentNode.insertBefore(ce,V),this.outletElement.appendChild(V),this._attachedPortal=Ee,super.setDisposeFn(()=>{ce.parentNode&&ce.parentNode.replaceChild(V,ce)})};dispose(){super.dispose(),this.outletElement.remove()}_getComponentRootNode(Ee){return Ee.hostView.rootNodes[0]}}let Ae=(()=>{class xe extends A{constructor(){super((0,d.WQX)(v.C4Q),(0,d.WQX)(v.c1b))}static \u0275fac=function(ce){return new(ce||xe)};static \u0275dir=v.FsC({type:xe,selectors:[["","cdkPortal",""]],exportAs:["cdkPortal"],features:[v.Vt3]})}return xe})(),W=(()=>{class xe extends le{_moduleRef=(0,d.WQX)(v.Ab1,{optional:!0});_document=(0,d.WQX)(d.qQL);_viewContainerRef=(0,d.WQX)(v.c1b);_isInitialized=!1;_attachedRef;constructor(){super()}get portal(){return this._attachedPortal}set portal(V){this.hasAttached()&&!V&&!this._isInitialized||(this.hasAttached()&&super.detach(),V&&super.attach(V),this._attachedPortal=V||null)}attached=new v.bkB;get attachedRef(){return this._attachedRef}ngOnInit(){this._isInitialized=!0}ngOnDestroy(){super.dispose(),this._attachedRef=this._attachedPortal=null}attachComponentPortal(V){V.setAttachedHost(this);const ce=null!=V.viewContainerRef?V.viewContainerRef:this._viewContainerRef,be=ce.createComponent(V.component,{index:ce.length,injector:V.injector||ce.injector,projectableNodes:V.projectableNodes||void 0,ngModuleRef:this._moduleRef||void 0});return ce!==this._viewContainerRef&&this._getRootNode().appendChild(be.hostView.rootNodes[0]),super.setDisposeFn(()=>be.destroy()),this._attachedPortal=V,this._attachedRef=be,this.attached.emit(be),be}attachTemplatePortal(V){V.setAttachedHost(this);const ce=this._viewContainerRef.createEmbeddedView(V.templateRef,V.context,{injector:V.injector});return super.setDisposeFn(()=>this._viewContainerRef.clear()),this._attachedPortal=V,this._attachedRef=ce,this.attached.emit(ce),ce}attachDomPortal=V=>{const ce=V.element,be=this._document.createComment("dom-portal");V.setAttachedHost(this),ce.parentNode.insertBefore(be,ce),this._getRootNode().appendChild(ce),this._attachedPortal=V,super.setDisposeFn(()=>{be.parentNode&&be.parentNode.replaceChild(ce,be)})};_getRootNode(){const V=this._viewContainerRef.element.nativeElement;return V.nodeType===V.ELEMENT_NODE?V:V.parentNode}static \u0275fac=function(ce){return new(ce||xe)};static \u0275dir=v.FsC({type:xe,selectors:[["","cdkPortalOutlet",""]],inputs:{portal:[0,"cdkPortalOutlet","portal"]},outputs:{attached:"attached"},exportAs:["cdkPortalOutlet"],features:[v.Vt3]})}return xe})(),re=(()=>{class xe{static \u0275fac=function(ce){return new(ce||xe)};static \u0275mod=v.$C({type:xe});static \u0275inj=d.G2t({})}return xe})()},9046(Zt,pe,l){"use strict";l.d(pe,{Y:()=>d});var i=l(3664);let d=(()=>{class v{static \u0275fac=function(e){return new(e||v)};static \u0275cmp=i.VBU({type:v,selectors:[["ng-component"]],exportAs:["cdkVisuallyHidden"],decls:0,vars:0,template:function(e,O){},styles:[".cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}\n"],encapsulation:2,changeDetection:0})}return v})()},5718(Zt,pe,l){"use strict";l.d(pe,{uv:()=>Z,Gj:()=>bt,R:()=>N,E9:()=>tn,Xj:()=>at});var i=l(2615),d=l(3664),v=l(1413),T=l(7673),w=l(1985),e=l(6780),O=l(8359);const f={schedule(on){let un=requestAnimationFrame,Nt=cancelAnimationFrame;const{delegate:dn}=f;dn&&(un=dn.requestAnimationFrame,Nt=dn.cancelAnimationFrame);const xn=un(Jn=>{Nt=void 0,on(Jn)});return new O.yU(()=>Nt?.(xn))},requestAnimationFrame(...on){const{delegate:un}=f;return(un?.requestAnimationFrame||requestAnimationFrame)(...on)},cancelAnimationFrame(...on){const{delegate:un}=f;return(un?.cancelAnimationFrame||cancelAnimationFrame)(...on)},delegate:void 0};var L=l(9687);new class C extends L.q{flush(un){let Nt;this._active=!0,un?Nt=un.id:(Nt=this._scheduled,this._scheduled=void 0);const{actions:dn}=this;let xn;un=un||dn.shift();do{if(xn=un.execute(un.state,un.delay))break}while((un=dn[0])&&un.id===Nt&&dn.shift());if(this._active=!1,xn){for(;(un=dn[0])&&un.id===Nt&&dn.shift();)un.unsubscribe();throw xn}}}(class u extends e.R{constructor(un,Nt){super(un,Nt),this.scheduler=un,this.work=Nt}requestAsyncId(un,Nt,dn=0){return null!==dn&&dn>0?super.requestAsyncId(un,Nt,dn):(un.actions.push(this),un._scheduled||(un._scheduled=f.requestAnimationFrame(()=>un.flush(void 0))))}recycleAsyncId(un,Nt,dn=0){var xn;if(null!=dn?dn>0:this.delay>0)return super.recycleAsyncId(un,Nt,dn);const{actions:Jn}=un;null!=Nt&&Nt===un._scheduled&&(null===(xn=Jn[Jn.length-1])||void 0===xn?void 0:xn.id)!==Nt&&(f.cancelAnimationFrame(Nt),un._scheduled=void 0)}});let le,Pe=1;const Ce={};function Ae(on){return on in Ce&&(delete Ce[on],!0)}const j={setImmediate(on){const un=Pe++;return Ce[un]=!0,le||(le=Promise.resolve()),le.then(()=>Ae(un)&&on()),un},clearImmediate(on){Ae(on)}},{setImmediate:G,clearImmediate:re}=j,xe={setImmediate(...on){const{delegate:un}=xe;return(un?.setImmediate||G)(...on)},clearImmediate(on){const{delegate:un}=xe;return(un?.clearImmediate||re)(on)},delegate:void 0};new class V extends L.q{flush(un){this._active=!0;const Nt=this._scheduled;this._scheduled=void 0;const{actions:dn}=this;let xn;un=un||dn.shift();do{if(xn=un.execute(un.state,un.delay))break}while((un=dn[0])&&un.id===Nt&&dn.shift());if(this._active=!1,xn){for(;(un=dn[0])&&un.id===Nt&&dn.shift();)un.unsubscribe();throw xn}}}(class Ee extends e.R{constructor(un,Nt){super(un,Nt),this.scheduler=un,this.work=Nt}requestAsyncId(un,Nt,dn=0){return null!==dn&&dn>0?super.requestAsyncId(un,Nt,dn):(un.actions.push(this),un._scheduled||(un._scheduled=xe.setImmediate(un.flush.bind(un,void 0))))}recycleAsyncId(un,Nt,dn=0){var xn;if(null!=dn?dn>0:this.delay>0)return super.recycleAsyncId(un,Nt,dn);const{actions:Jn}=un;null!=Nt&&(null===(xn=Jn[Jn.length-1])||void 0===xn?void 0:xn.id)!==Nt&&(xe.clearImmediate(Nt),un._scheduled===Nt&&(un._scheduled=void 0))}});var ne=l(3798),J=l(5964),De=l(7847),Re=l(9842),Xe=l(1577),_e=l(7860),he=l(8203);let N=(()=>{class on{_ngZone=(0,i.WQX)(d.SKi);_platform=(0,i.WQX)(Re.O);_renderer=(0,i.WQX)(d._9s).createRenderer(null,null);_cleanupGlobalListener;constructor(){}_scrolled=new v.B;_scrolledCount=0;scrollContainers=new Map;register(Nt){this.scrollContainers.has(Nt)||this.scrollContainers.set(Nt,Nt.elementScrolled().subscribe(()=>this._scrolled.next(Nt)))}deregister(Nt){const dn=this.scrollContainers.get(Nt);dn&&(dn.unsubscribe(),this.scrollContainers.delete(Nt))}scrolled(Nt=20){return this._platform.isBrowser?new w.c(dn=>{this._cleanupGlobalListener||(this._cleanupGlobalListener=this._ngZone.runOutsideAngular(()=>this._renderer.listen("document","scroll",()=>this._scrolled.next())));const xn=Nt>0?this._scrolled.pipe((0,ne.Z)(Nt)).subscribe(dn):this._scrolled.subscribe(dn);return this._scrolledCount++,()=>{xn.unsubscribe(),this._scrolledCount--,this._scrolledCount||(this._cleanupGlobalListener?.(),this._cleanupGlobalListener=void 0)}}):(0,T.of)()}ngOnDestroy(){this._cleanupGlobalListener?.(),this._cleanupGlobalListener=void 0,this.scrollContainers.forEach((Nt,dn)=>this.deregister(dn)),this._scrolled.complete()}ancestorScrolled(Nt,dn){const xn=this.getAncestorScrollContainers(Nt);return this.scrolled(dn).pipe((0,J.p)(Jn=>!Jn||xn.indexOf(Jn)>-1))}getAncestorScrollContainers(Nt){const dn=[];return this.scrollContainers.forEach((xn,Jn)=>{this._scrollableContainsElement(Jn,Nt)&&dn.push(Jn)}),dn}_scrollableContainsElement(Nt,dn){let xn=(0,De.i8)(dn),Jn=Nt.getElementRef().nativeElement;do{if(xn==Jn)return!0}while(xn=xn.parentElement);return!1}static \u0275fac=function(dn){return new(dn||on)};static \u0275prov=i.jDH({token:on,factory:on.\u0275fac,providedIn:"root"})}return on})(),Z=(()=>{class on{elementRef=(0,i.WQX)(d.aKT);scrollDispatcher=(0,i.WQX)(N);ngZone=(0,i.WQX)(d.SKi);dir=(0,i.WQX)(Xe.dS,{optional:!0});_scrollElement=this.elementRef.nativeElement;_destroyed=new v.B;_renderer=(0,i.WQX)(d.sFG);_cleanupScroll;_elementScrolled=new v.B;constructor(){}ngOnInit(){this._cleanupScroll=this.ngZone.runOutsideAngular(()=>this._renderer.listen(this._scrollElement,"scroll",Nt=>this._elementScrolled.next(Nt))),this.scrollDispatcher.register(this)}ngOnDestroy(){this._cleanupScroll?.(),this._elementScrolled.complete(),this.scrollDispatcher.deregister(this),this._destroyed.next(),this._destroyed.complete()}elementScrolled(){return this._elementScrolled}getElementRef(){return this.elementRef}scrollTo(Nt){const dn=this.elementRef.nativeElement,xn=this.dir&&"rtl"==this.dir.value;null==Nt.left&&(Nt.left=xn?Nt.end:Nt.start),null==Nt.right&&(Nt.right=xn?Nt.start:Nt.end),null!=Nt.bottom&&(Nt.top=dn.scrollHeight-dn.clientHeight-Nt.bottom),xn&&(0,_e.BD)()!=_e.r5.NORMAL?(null!=Nt.left&&(Nt.right=dn.scrollWidth-dn.clientWidth-Nt.left),(0,_e.BD)()==_e.r5.INVERTED?Nt.left=Nt.right:(0,_e.BD)()==_e.r5.NEGATED&&(Nt.left=Nt.right?-Nt.right:Nt.right)):null!=Nt.right&&(Nt.left=dn.scrollWidth-dn.clientWidth-Nt.right),this._applyScrollToOptions(Nt)}_applyScrollToOptions(Nt){const dn=this.elementRef.nativeElement;(0,_e.CZ)()?dn.scrollTo(Nt):(null!=Nt.top&&(dn.scrollTop=Nt.top),null!=Nt.left&&(dn.scrollLeft=Nt.left))}measureScrollOffset(Nt){const dn="left",Jn=this.elementRef.nativeElement;if("top"==Nt)return Jn.scrollTop;if("bottom"==Nt)return Jn.scrollHeight-Jn.clientHeight-Jn.scrollTop;const xi=this.dir&&"rtl"==this.dir.value;return"start"==Nt?Nt=xi?"right":dn:"end"==Nt&&(Nt=xi?dn:"right"),xi&&(0,_e.BD)()==_e.r5.INVERTED?Nt==dn?Jn.scrollWidth-Jn.clientWidth-Jn.scrollLeft:Jn.scrollLeft:xi&&(0,_e.BD)()==_e.r5.NEGATED?Nt==dn?Jn.scrollLeft+Jn.scrollWidth-Jn.clientWidth:-Jn.scrollLeft:Nt==dn?Jn.scrollLeft:Jn.scrollWidth-Jn.clientWidth-Jn.scrollLeft}static \u0275fac=function(dn){return new(dn||on)};static \u0275dir=d.FsC({type:on,selectors:[["","cdk-scrollable",""],["","cdkScrollable",""]]})}return on})(),at=(()=>{class on{_platform=(0,i.WQX)(Re.O);_listeners;_viewportSize;_change=new v.B;_document=(0,i.WQX)(i.qQL);constructor(){const Nt=(0,i.WQX)(d.SKi),dn=(0,i.WQX)(d._9s).createRenderer(null,null);Nt.runOutsideAngular(()=>{if(this._platform.isBrowser){const xn=Jn=>this._change.next(Jn);this._listeners=[dn.listen("window","resize",xn),dn.listen("window","orientationchange",xn)]}this.change().subscribe(()=>this._viewportSize=null)})}ngOnDestroy(){this._listeners?.forEach(Nt=>Nt()),this._change.complete()}getViewportSize(){this._viewportSize||this._updateViewportSize();const Nt={width:this._viewportSize.width,height:this._viewportSize.height};return this._platform.isBrowser||(this._viewportSize=null),Nt}getViewportRect(){const Nt=this.getViewportScrollPosition(),{width:dn,height:xn}=this.getViewportSize();return{top:Nt.top,left:Nt.left,bottom:Nt.top+xn,right:Nt.left+dn,height:xn,width:dn}}getViewportScrollPosition(){if(!this._platform.isBrowser)return{top:0,left:0};const Nt=this._document,dn=this._getWindow(),xn=Nt.documentElement,Jn=xn.getBoundingClientRect();return{top:-Jn.top||Nt.body.scrollTop||dn.scrollY||xn.scrollTop||0,left:-Jn.left||Nt.body.scrollLeft||dn.scrollX||xn.scrollLeft||0}}change(Nt=20){return Nt>0?this._change.pipe((0,ne.Z)(Nt)):this._change}_getWindow(){return this._document.defaultView||window}_updateViewportSize(){const Nt=this._getWindow();this._viewportSize=this._platform.isBrowser?{width:Nt.innerWidth,height:Nt.innerHeight}:{width:0,height:0}}static \u0275fac=function(dn){return new(dn||on)};static \u0275prov=i.jDH({token:on,factory:on.\u0275fac,providedIn:"root"})}return on})(),bt=(()=>{class on{static \u0275fac=function(dn){return new(dn||on)};static \u0275mod=d.$C({type:on});static \u0275inj=i.G2t({})}return on})(),tn=(()=>{class on{static \u0275fac=function(dn){return new(dn||on)};static \u0275mod=d.$C({type:on});static \u0275inj=i.G2t({imports:[he.jI,bt,he.jI,bt]})}return on})()},7860(Zt,pe,l){"use strict";l.d(pe,{BD:()=>w,CZ:()=>T,r5:()=>i});var i=function(e){return e[e.NORMAL=0]="NORMAL",e[e.NEGATED=1]="NEGATED",e[e.INVERTED=2]="INVERTED",e}(i||{});let d,v;function T(){if(null==v){if("object"!=typeof document||!document||"function"!=typeof Element||!Element)return v=!1,v;if(document.documentElement?.style&&"scrollBehavior"in document.documentElement.style)v=!0;else{const e=Element.prototype.scrollTo;v=!!e&&!/\{\s*\[native code\]\s*\}/.test(e.toString())}}return v}function w(){if("object"!=typeof document||!document)return i.NORMAL;if(null==d){const e=document.createElement("div"),O=e.style;e.dir="rtl",O.width="1px",O.overflow="auto",O.visibility="hidden",O.pointerEvents="none",O.position="absolute";const f=document.createElement("div"),u=f.style;u.width="2px",u.height="1px",e.appendChild(f),document.body.appendChild(e),d=i.NORMAL,0===e.scrollLeft&&(e.scrollLeft=1,d=0===e.scrollLeft?i.NEGATED:i.INVERTED),e.remove()}return d}},3869(Zt,pe,l){"use strict";l.d(pe,{C:()=>d});var i=l(1413);class d{_multiple;_emitChanges;compareWith;_selection=new Set;_deselectedToEmit=[];_selectedToEmit=[];_selected;get selected(){return this._selected||(this._selected=Array.from(this._selection.values())),this._selected}changed=new i.B;constructor(w=!1,e,O=!0,f){this._multiple=w,this._emitChanges=O,this.compareWith=f,e&&e.length&&(w?e.forEach(u=>this._markSelected(u)):this._markSelected(e[0]),this._selectedToEmit.length=0)}select(...w){this._verifyValueAssignment(w),w.forEach(O=>this._markSelected(O));const e=this._hasQueuedChanges();return this._emitChangeEvent(),e}deselect(...w){this._verifyValueAssignment(w),w.forEach(O=>this._unmarkSelected(O));const e=this._hasQueuedChanges();return this._emitChangeEvent(),e}setSelection(...w){this._verifyValueAssignment(w);const e=this.selected,O=new Set(w.map(u=>this._getConcreteValue(u)));w.forEach(u=>this._markSelected(u)),e.filter(u=>!O.has(this._getConcreteValue(u,O))).forEach(u=>this._unmarkSelected(u));const f=this._hasQueuedChanges();return this._emitChangeEvent(),f}toggle(w){return this.isSelected(w)?this.deselect(w):this.select(w)}clear(w=!0){this._unmarkAll();const e=this._hasQueuedChanges();return w&&this._emitChangeEvent(),e}isSelected(w){return this._selection.has(this._getConcreteValue(w))}isEmpty(){return 0===this._selection.size}hasValue(){return!this.isEmpty()}sort(w){this._multiple&&this.selected&&this._selected.sort(w)}isMultipleSelection(){return this._multiple}_emitChangeEvent(){this._selected=null,(this._selectedToEmit.length||this._deselectedToEmit.length)&&(this.changed.next({source:this,added:this._selectedToEmit,removed:this._deselectedToEmit}),this._deselectedToEmit=[],this._selectedToEmit=[])}_markSelected(w){w=this._getConcreteValue(w),this.isSelected(w)||(this._multiple||this._unmarkAll(),this.isSelected(w)||this._selection.add(w),this._emitChanges&&this._selectedToEmit.push(w))}_unmarkSelected(w){w=this._getConcreteValue(w),this.isSelected(w)&&(this._selection.delete(w),this._emitChanges&&this._deselectedToEmit.push(w))}_unmarkAll(){this.isEmpty()||this._selection.forEach(w=>this._unmarkSelected(w))}_verifyValueAssignment(w){}_hasQueuedChanges(){return!(!this._deselectedToEmit.length&&!this._selectedToEmit.length)}_getConcreteValue(w,e){if(this.compareWith){e=e??this._selection;for(let O of e)if(this.compareWith(w,O))return O;return w}return w}}},4522(Zt,pe,l){"use strict";let i;function v(e){if(function d(){if(null==i){const e=typeof document<"u"?document.head:null;i=!(!e||!e.createShadowRoot&&!e.attachShadow)}return i}()){const O=e.getRootNode?e.getRootNode():null;if(typeof ShadowRoot<"u"&&ShadowRoot&&O instanceof ShadowRoot)return O}return null}function T(){let e=typeof document<"u"&&document?document.activeElement:null;for(;e&&e.shadowRoot;){const O=e.shadowRoot.activeElement;if(O===e)break;e=O}return e}function w(e){return e.composedPath?e.composedPath()[0]:e.target}l.d(pe,{Fb:()=>w,KT:()=>v,vc:()=>T})},7768(Zt,pe,l){"use strict";l.d(pe,{FK:()=>ne,Up:()=>ce,VI:()=>V,nb:()=>G,oX:()=>W,uY:()=>J,v5:()=>be,x8:()=>Ee});var i=l(2615),d=l(3664),v=l(7705),T=l(9295),w=l(9417),e=l(1413),O=l(7673),f=l(9172),u=l(6977),L=l(1577),C=l(9726),B=l(4123),A=l(7336),Pe=l(438),le=l(4522),Ce=l(8203);const Ae=["*"];function j(De,Re){1&De&&d.SdG(0)}let W=(()=>{class De{_elementRef=(0,i.WQX)(d.aKT);constructor(){}focus(){this._elementRef.nativeElement.focus()}static \u0275fac=function(_e){return new(_e||De)};static \u0275dir=d.FsC({type:De,selectors:[["","cdkStepHeader",""]],hostAttrs:["role","tab"]})}return De})(),G=(()=>{class De{template=(0,i.WQX)(d.C4Q);constructor(){}static \u0275fac=function(_e){return new(_e||De)};static \u0275dir=d.FsC({type:De,selectors:[["","cdkStepLabel",""]]})}return De})();const Ee=new i.nKC("STEPPER_GLOBAL_OPTIONS");let V=(()=>{class De{_stepperOptions;_stepper=(0,i.WQX)(ce);_displayDefaultIndicatorType;stepLabel;_childForms;content;stepControl;get interacted(){return this._interacted()}set interacted(Xe){this._interacted.set(Xe)}_interacted=(0,i.vPA)(!1);interactedStream=new d.bkB;label;errorMessage;ariaLabel;ariaLabelledby;get state(){return this._state()}set state(Xe){this._state.set(Xe)}_state=(0,i.vPA)(void 0);get editable(){return this._editable()}set editable(Xe){this._editable.set(Xe)}_editable=(0,i.vPA)(!0);optional=!1;get completed(){const Xe=this._completedOverride(),_e=this._interacted();return Xe??(_e&&(!this.stepControl||this.stepControl.valid))}set completed(Xe){this._completedOverride.set(Xe)}_completedOverride=(0,i.vPA)(null);index=(0,i.vPA)(-1);isSelected=(0,T.EW)(()=>this._stepper.selectedIndex===this.index());indicatorType=(0,T.EW)(()=>{const Xe=this.isSelected(),_e=this.completed,he=this._state()??"number",Dt=this._editable();return this._showError()&&this.hasError&&!Xe?"error":this._displayDefaultIndicatorType?!_e||Xe?"number":Dt?"edit":"done":_e&&!Xe?"done":_e&&Xe?he:Dt&&Xe?"edit":he});isNavigable=(0,T.EW)(()=>{const Xe=this.isSelected();return this.completed||Xe||!this._stepper.linear});get hasError(){return this._customError()??this._getDefaultError()}set hasError(Xe){this._customError.set(Xe)}_customError=(0,i.vPA)(null);_getDefaultError(){return this.interacted&&!!this.stepControl?.invalid}constructor(){const Xe=(0,i.WQX)(Ee,{optional:!0});this._stepperOptions=Xe||{},this._displayDefaultIndicatorType=!1!==this._stepperOptions.displayDefaultIndicatorType}select(){this._stepper.selected=this}reset(){this._interacted.set(!1),null!=this._completedOverride()&&this._completedOverride.set(!1),null!=this._customError()&&this._customError.set(!1),this.stepControl&&(this._childForms?.forEach(Xe=>Xe.resetForm?.()),this.stepControl.reset())}ngOnChanges(){this._stepper._stateChanged()}_markAsInteracted(){this._interacted()||(this._interacted.set(!0),this.interactedStream.emit(this))}_showError(){return this._stepperOptions.showError??null!=this._customError()}static \u0275fac=function(_e){return new(_e||De)};static \u0275cmp=d.VBU({type:De,selectors:[["cdk-step"]],contentQueries:function(_e,he,Dt){if(1&_e&&(d.wni(Dt,G,5),d.wni(Dt,w.ZU,5)),2&_e){let lt;d.mGM(lt=d.lsd())&&(he.stepLabel=lt.first),d.mGM(lt=d.lsd())&&(he._childForms=lt)}},viewQuery:function(_e,he){if(1&_e&&d.GBs(d.C4Q,7),2&_e){let Dt;d.mGM(Dt=d.lsd())&&(he.content=Dt.first)}},inputs:{stepControl:"stepControl",label:"label",errorMessage:"errorMessage",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],state:"state",editable:[2,"editable","editable",v.L39],optional:[2,"optional","optional",v.L39],completed:[2,"completed","completed",v.L39],hasError:[2,"hasError","hasError",v.L39]},outputs:{interactedStream:"interacted"},exportAs:["cdkStep"],features:[d.OA$],ngContentSelectors:Ae,decls:1,vars:0,template:function(_e,he){1&_e&&(d.NAR(),d.PeT(0,j,1,0,"ng-template"))},encapsulation:2,changeDetection:0})}return De})(),ce=(()=>{class De{_dir=(0,i.WQX)(L.dS,{optional:!0});_changeDetectorRef=(0,i.WQX)(v.gRc);_elementRef=(0,i.WQX)(d.aKT);_destroyed=new e.B;_keyManager;_steps;steps=new d.rOR;_stepHeader;_sortedHeaders=new d.rOR;linear=!1;get selectedIndex(){return this._selectedIndex()}set selectedIndex(Xe){this._steps?(this._isValidIndex(Xe),this.selectedIndex!==Xe&&(this.selected?._markAsInteracted(),!this._anyControlsInvalidOrPending(Xe)&&(Xe>=this.selectedIndex||this.steps.toArray()[Xe].editable)&&this._updateSelectedItemIndex(Xe))):this._selectedIndex.set(Xe)}_selectedIndex=(0,i.vPA)(0);get selected(){return this.steps?this.steps.toArray()[this.selectedIndex]:void 0}set selected(Xe){this.selectedIndex=Xe&&this.steps?this.steps.toArray().indexOf(Xe):-1}selectionChange=new d.bkB;selectedIndexChange=new d.bkB;_groupId=(0,i.WQX)(C.g).getId("cdk-stepper-");get orientation(){return this._orientation}set orientation(Xe){this._orientation=Xe,this._keyManager&&this._keyManager.withVerticalOrientation("vertical"===Xe)}_orientation="horizontal";constructor(){}ngAfterContentInit(){this._steps.changes.pipe((0,f.Z)(this._steps),(0,u.Q)(this._destroyed)).subscribe(Xe=>{this.steps.reset(Xe.filter(_e=>_e._stepper===this)),this.steps.forEach((_e,he)=>_e.index.set(he)),this.steps.notifyOnChanges()})}ngAfterViewInit(){if(this._stepHeader.changes.pipe((0,f.Z)(this._stepHeader),(0,u.Q)(this._destroyed)).subscribe(Xe=>{this._sortedHeaders.reset(Xe.toArray().sort((_e,he)=>_e._elementRef.nativeElement.compareDocumentPosition(he._elementRef.nativeElement)&Node.DOCUMENT_POSITION_FOLLOWING?-1:1)),this._sortedHeaders.notifyOnChanges()}),this._keyManager=new B.B(this._sortedHeaders).withWrap().withHomeAndEnd().withVerticalOrientation("vertical"===this._orientation),this._keyManager.updateActiveItem(this.selectedIndex),(this._dir?this._dir.change:(0,O.of)()).pipe((0,f.Z)(this._layoutDirection()),(0,u.Q)(this._destroyed)).subscribe(Xe=>this._keyManager?.withHorizontalOrientation(Xe)),this._keyManager.updateActiveItem(this.selectedIndex),this.steps.changes.subscribe(()=>{this.selected||this._selectedIndex.set(Math.max(this.selectedIndex-1,0))}),this._isValidIndex(this.selectedIndex)||this._selectedIndex.set(0),this.linear&&this.selectedIndex>0){const Xe=this.steps.toArray().slice(0,this._selectedIndex());for(const _e of Xe)_e._markAsInteracted()}}ngOnDestroy(){this._keyManager?.destroy(),this.steps.destroy(),this._sortedHeaders.destroy(),this._destroyed.next(),this._destroyed.complete()}next(){this.selectedIndex=Math.min(this._selectedIndex()+1,this.steps.length-1)}previous(){this.selectedIndex=Math.max(this._selectedIndex()-1,0)}reset(){this._updateSelectedItemIndex(0),this.steps.forEach(Xe=>Xe.reset()),this._stateChanged()}_getStepLabelId(Xe){return`${this._groupId}-label-${Xe}`}_getStepContentId(Xe){return`${this._groupId}-content-${Xe}`}_stateChanged(){this._changeDetectorRef.markForCheck()}_getAnimationDirection(Xe){const _e=Xe-this._selectedIndex();return _e<0?"rtl"===this._layoutDirection()?"next":"previous":_e>0?"rtl"===this._layoutDirection()?"previous":"next":"current"}_getFocusIndex(){return this._keyManager?this._keyManager.activeItemIndex:this._selectedIndex()}_updateSelectedItemIndex(Xe){const _e=this.steps.toArray(),he=this._selectedIndex();this.selectionChange.emit({selectedIndex:Xe,previouslySelectedIndex:he,selectedStep:_e[Xe],previouslySelectedStep:_e[he]}),this._keyManager&&(this._containsFocus()?this._keyManager.setActiveItem(Xe):this._keyManager.updateActiveItem(Xe)),this._selectedIndex.set(Xe),this.selectedIndexChange.emit(Xe),this._stateChanged()}_onKeydown(Xe){const _e=(0,A.rp)(Xe),he=Xe.keyCode,Dt=this._keyManager;null==Dt?.activeItemIndex||_e||he!==Pe.t6&&he!==Pe.Fm?Dt?.setFocusOrigin("keyboard").onKeydown(Xe):(this.selectedIndex=Dt.activeItemIndex,Xe.preventDefault())}_anyControlsInvalidOrPending(Xe){return!!(this.linear&&Xe>=0)&&this.steps.toArray().slice(0,Xe).some(_e=>{const he=_e.stepControl;return(he?he.invalid||he.pending||!_e.interacted:!_e.completed)&&!_e.optional&&!_e._completedOverride()})}_layoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_containsFocus(){const Xe=this._elementRef.nativeElement,_e=(0,le.vc)();return Xe===_e||Xe.contains(_e)}_isValidIndex(Xe){return Xe>-1&&(!this.steps||Xe{class De{_stepper=(0,i.WQX)(ce);type="submit";constructor(){}static \u0275fac=function(_e){return new(_e||De)};static \u0275dir=d.FsC({type:De,selectors:[["button","cdkStepperNext",""]],hostVars:1,hostBindings:function(_e,he){1&_e&&d.bIt("click",function(){return he._stepper.next()}),2&_e&&d.Avn("type",he.type)},inputs:{type:"type"}})}return De})(),ne=(()=>{class De{_stepper=(0,i.WQX)(ce);type="button";constructor(){}static \u0275fac=function(_e){return new(_e||De)};static \u0275dir=d.FsC({type:De,selectors:[["button","cdkStepperPrevious",""]],hostVars:1,hostBindings:function(_e,he){1&_e&&d.bIt("click",function(){return he._stepper.previous()}),2&_e&&d.Avn("type",he.type)},inputs:{type:"type"}})}return De})(),J=(()=>{class De{static \u0275fac=function(_e){return new(_e||De)};static \u0275mod=d.$C({type:De});static \u0275inj=i.G2t({imports:[Ce.jI]})}return De})()},8968(Zt,pe,l){"use strict";l.d(pe,{l:()=>w});var i=l(2615),d=l(7705),v=l(3664);const T=new WeakMap;let w=(()=>{class e{_appRef;_injector=(0,i.WQX)(i.zZn);_environmentInjector=(0,i.WQX)(i.uvJ);load(f){const u=this._appRef=this._appRef||this._injector.get(v.o8S);let L=T.get(u);L||(L={loaders:new Set,refs:[]},T.set(u,L),u.onDestroy(()=>{T.get(u)?.refs.forEach(C=>C.destroy()),T.delete(u)})),L.loaders.has(f)||(L.loaders.add(f),L.refs.push((0,d.a0P)(f,{environmentInjector:this._environmentInjector})))}static \u0275fac=function(u){return new(u||e)};static \u0275prov=i.jDH({token:e,factory:e.\u0275fac,providedIn:"root"})}return e})()},4125(Zt,pe,l){"use strict";l.d(pe,{Z2:()=>B});var i=l(2615),d=l(3664),v=l(1413),T=l(8359),w=l(4402),e=l(7673),O=l(6697),f=l(9096),u=l(8045);class L{_activeItemIndex=-1;_activeItem=null;_shouldActivationFollowFocus=!1;_horizontalOrientation="ltr";_skipPredicateFn=le=>!1;_trackByFn=le=>le;_items=[];_typeahead;_typeaheadSubscription=T.yU.EMPTY;_hasInitialFocused=!1;_initializeFocus(){if(this._hasInitialFocused||0===this._items.length)return;let le=0;for(let Ae=0;Ae{this._items=Ae.toArray(),this._typeahead?.setItems(this._items),this._updateActiveItemIndex(this._items),this._initializeFocus()})):(0,w.A)(le)?le.subscribe(Ae=>{this._items=Ae,this._typeahead?.setItems(Ae),this._updateActiveItemIndex(Ae),this._initializeFocus()}):(this._items=le,this._initializeFocus()),"boolean"==typeof Ce.shouldActivationFollowFocus&&(this._shouldActivationFollowFocus=Ce.shouldActivationFollowFocus),Ce.horizontalOrientation&&(this._horizontalOrientation=Ce.horizontalOrientation),Ce.skipPredicate&&(this._skipPredicateFn=Ce.skipPredicate),Ce.trackBy&&(this._trackByFn=Ce.trackBy),typeof Ce.typeAheadDebounceInterval<"u"&&this._setTypeAhead(Ce.typeAheadDebounceInterval)}change=new v.B;destroy(){this._typeaheadSubscription.unsubscribe(),this._typeahead?.destroy(),this.change.complete()}onKeydown(le){switch(le.key){case"Tab":return;case"ArrowDown":this._focusNextItem();break;case"ArrowUp":this._focusPreviousItem();break;case"ArrowRight":"rtl"===this._horizontalOrientation?this._collapseCurrentItem():this._expandCurrentItem();break;case"ArrowLeft":"rtl"===this._horizontalOrientation?this._expandCurrentItem():this._collapseCurrentItem();break;case"Home":this._focusFirstItem();break;case"End":this._focusLastItem();break;case"Enter":case" ":this._activateCurrentItem();break;default:if("*"===le.key){this._expandAllItemsAtCurrentItemLevel();break}return void this._typeahead?.handleKey(le)}this._typeahead?.reset(),le.preventDefault()}getActiveItemIndex(){return this._activeItemIndex}getActiveItem(){return this._activeItem}_focusFirstItem(){this.focusItem(this._findNextAvailableItemIndex(-1))}_focusLastItem(){this.focusItem(this._findPreviousAvailableItemIndex(this._items.length))}_focusNextItem(){this.focusItem(this._findNextAvailableItemIndex(this._activeItemIndex))}_focusPreviousItem(){this.focusItem(this._findPreviousAvailableItemIndex(this._activeItemIndex))}focusItem(le,Ce={}){Ce.emitChangeEvent??=!0;let Ae="number"==typeof le?le:this._items.findIndex(G=>this._trackByFn(G)===this._trackByFn(le));if(Ae<0||Ae>=this._items.length)return;const j=this._items[Ae];if(null!==this._activeItem&&this._trackByFn(j)===this._trackByFn(this._activeItem))return;const W=this._activeItem;this._activeItem=j??null,this._activeItemIndex=Ae,this._typeahead?.setCurrentSelectedItemIndex(Ae),this._activeItem?.focus(),W?.unfocus(),Ce.emitChangeEvent&&this.change.next(this._activeItem),this._shouldActivationFollowFocus&&this._activateCurrentItem()}_updateActiveItemIndex(le){const Ce=this._activeItem;if(!Ce)return;const Ae=le.findIndex(j=>this._trackByFn(j)===this._trackByFn(Ce));Ae>-1&&Ae!==this._activeItemIndex&&(this._activeItemIndex=Ae,this._typeahead?.setCurrentSelectedItemIndex(Ae))}_setTypeAhead(le){this._typeahead=new f.i(this._items,{debounceInterval:"number"==typeof le?le:void 0,skipPredicate:Ce=>this._skipPredicateFn(Ce)}),this._typeaheadSubscription=this._typeahead.selectedItem.subscribe(Ce=>{this.focusItem(Ce)})}_findNextAvailableItemIndex(le){for(let Ce=le+1;Ce=0;Ce--)if(!this._skipPredicateFn(this._items[Ce]))return Ce;return le}_collapseCurrentItem(){if(this._activeItem)if(this._isCurrentItemExpanded())this._activeItem.collapse();else{const le=this._activeItem.getParent();if(!le||this._skipPredicateFn(le))return;this.focusItem(le)}}_expandCurrentItem(){this._activeItem&&(this._isCurrentItemExpanded()?(0,u.x)(this._activeItem.getChildren()).pipe((0,O.s)(1)).subscribe(le=>{const Ce=le.find(Ae=>!this._skipPredicateFn(Ae));Ce&&this.focusItem(Ce)}):this._activeItem.expand())}_isCurrentItemExpanded(){return!!this._activeItem&&("boolean"==typeof this._activeItem.isExpanded?this._activeItem.isExpanded:this._activeItem.isExpanded())}_isItemDisabled(le){return"boolean"==typeof le.isDisabled?le.isDisabled:le.isDisabled?.()}_expandAllItemsAtCurrentItemLevel(){if(!this._activeItem)return;const le=this._activeItem.getParent();let Ce;Ce=le?(0,u.x)(le.getChildren()):(0,e.of)(this._items.filter(Ae=>null===Ae.getParent())),Ce.pipe((0,O.s)(1)).subscribe(Ae=>{for(const j of Ae)j.expand()})}_activateCurrentItem(){this._activeItem?.activate()}}const B=new i.nKC("tree-key-manager",{providedIn:"root",factory:function C(){return(Pe,le)=>new L(Pe,le)}})},2279(Zt,pe,l){"use strict";l.d(pe,{kZ:()=>Xe,s3:()=>Ke,NL:()=>F,Dc:()=>ht,xn:()=>ve,Sz:()=>Dt,a$:()=>_e,aI:()=>St,Hy:()=>ot,XO:()=>Re});var i=l(3869),d=l(4402),v=l(1413),T=l(4412),w=l(7673),e=l(4572),O=l(983),f=l(8793),u=l(6697),L=l(5964),C=l(6977),B=l(9172),A=l(8141),Pe=l(5558),le=l(6354),Ce=l(6649),Ae=l(9974);function j(oe,Ye){return(0,Ae.N)((0,Ce.S)(oe,Ye,arguments.length>=2,!1,!0))}var W=l(274),G=l(3294),re=l(3664),xe=l(2615),Ee=l(7705),V=l(4125),ce=l(1577),be=l(4117),ne=l(8045);class J{dataNodes;expansionModel=new i.C(!0);trackBy;getLevel;isExpandable;getChildren;toggle(Ye){this.expansionModel.toggle(this._trackByValue(Ye))}expand(Ye){this.expansionModel.select(this._trackByValue(Ye))}collapse(Ye){this.expansionModel.deselect(this._trackByValue(Ye))}isExpanded(Ye){return this.expansionModel.isSelected(this._trackByValue(Ye))}toggleDescendants(Ye){this.expansionModel.isSelected(this._trackByValue(Ye))?this.collapseDescendants(Ye):this.expandDescendants(Ye)}collapseAll(){this.expansionModel.clear()}expandDescendants(Ye){let fe=[Ye];fe.push(...this.getDescendants(Ye)),this.expansionModel.select(...fe.map(Qe=>this._trackByValue(Qe)))}collapseDescendants(Ye){let fe=[Ye];fe.push(...this.getDescendants(Ye)),this.expansionModel.deselect(...fe.map(Qe=>this._trackByValue(Qe)))}_trackByValue(Ye){return this.trackBy?this.trackBy(Ye):Ye}}class Re extends J{getChildren;options;constructor(Ye,fe){super(),this.getChildren=Ye,this.options=fe,this.options&&(this.trackBy=this.options.trackBy),this.options?.isExpandable&&(this.isExpandable=this.options.isExpandable)}expandAll(){this.expansionModel.clear();const Ye=this.dataNodes.reduce((fe,Qe)=>[...fe,...this.getDescendants(Qe),Qe],[]);this.expansionModel.select(...Ye.map(fe=>this._trackByValue(fe)))}getDescendants(Ye){const fe=[];return this._getDescendants(fe,Ye),fe.splice(1)}_getDescendants(Ye,fe){Ye.push(fe);const Qe=this.getChildren(fe);Array.isArray(Qe)?Qe.forEach(gt=>this._getDescendants(Ye,gt)):(0,d.A)(Qe)&&Qe.pipe((0,u.s)(1),(0,L.p)(Boolean)).subscribe(gt=>{for(const Gt of gt)this._getDescendants(Ye,Gt)})}}const Xe=new xe.nKC("CDK_TREE_NODE_OUTLET_NODE");let _e=(()=>{class oe{viewContainer=(0,xe.WQX)(re.c1b);_node=(0,xe.WQX)(Xe,{optional:!0});constructor(){}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275dir=re.FsC({type:oe,selectors:[["","cdkTreeNodeOutlet",""]]})}return oe})();class he{$implicit;level;index;count;constructor(Ye){this.$implicit=Ye}}let Dt=(()=>{class oe{template=(0,xe.WQX)(re.C4Q);when;constructor(){}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275dir=re.FsC({type:oe,selectors:[["","cdkTreeNodeDef",""]],inputs:{when:[0,"cdkTreeNodeDefWhen","when"]}})}return oe})();function ie(){return Error("Could not find a tree control, levelAccessor, or childrenAccessor for the tree.")}let F=(()=>{class oe{_differs=(0,xe.WQX)(Ee._q3);_changeDetectorRef=(0,xe.WQX)(Ee.gRc);_elementRef=(0,xe.WQX)(re.aKT);_dir=(0,xe.WQX)(ce.dS);_onDestroy=new v.B;_dataDiffer;_defaultNodeDef;_dataSubscription;_levels=new Map;_parents=new Map;_ariaSets=new Map;get dataSource(){return this._dataSource}set dataSource(fe){this._dataSource!==fe&&this._switchDataSource(fe)}_dataSource;treeControl;levelAccessor;childrenAccessor;trackBy;expansionKey;_nodeOutlet;_nodeDefs;viewChange=new T.t({start:0,end:Number.MAX_VALUE});_expansionModel;_flattenedNodes=new T.t([]);_nodeType=new T.t(null);_nodes=new T.t(new Map);_keyManagerNodes=new T.t([]);_keyManagerFactory=(0,xe.WQX)(V.Z2);_keyManager;_viewInit=!1;constructor(){}ngAfterContentInit(){this._initializeKeyManager()}ngAfterContentChecked(){this._updateDefaultNodeDefinition(),this._subscribeToDataChanges()}ngOnDestroy(){this._nodeOutlet.viewContainer.clear(),this._nodes.complete(),this._keyManagerNodes.complete(),this._nodeType.complete(),this._flattenedNodes.complete(),this.viewChange.complete(),this._onDestroy.next(),this._onDestroy.complete(),this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null),this._keyManager?.destroy()}ngOnInit(){this._checkTreeControlUsage(),this._initializeDataDiffer()}ngAfterViewInit(){this._viewInit=!0}_updateDefaultNodeDefinition(){const fe=this._nodeDefs.filter(Qe=>!Qe.when);this._defaultNodeDef=fe[0]}_setNodeTypeIfUnset(fe){null===this._nodeType.value&&this._nodeType.next(fe)}_switchDataSource(fe){this._dataSource&&"function"==typeof this._dataSource.disconnect&&this.dataSource.disconnect(this),this._dataSubscription&&(this._dataSubscription.unsubscribe(),this._dataSubscription=null),fe||this._nodeOutlet.viewContainer.clear(),this._dataSource=fe,this._nodeDefs&&this._subscribeToDataChanges()}_getExpansionModel(){return this.treeControl?this.treeControl.expansionModel:(this._expansionModel??=new i.C(!0),this._expansionModel)}_subscribeToDataChanges(){if(this._dataSubscription)return;let fe;(0,be.y)(this._dataSource)?fe=this._dataSource.connect(this):(0,d.A)(this._dataSource)?fe=this._dataSource:Array.isArray(this._dataSource)&&(fe=(0,w.of)(this._dataSource)),fe&&(this._dataSubscription=this._getRenderData(fe).pipe((0,C.Q)(this._onDestroy)).subscribe(Qe=>{this._renderDataChanges(Qe)}))}_getRenderData(fe){const Qe=this._getExpansionModel();return(0,e.z)([fe,this._nodeType,Qe.changed.pipe((0,B.Z)(null),(0,A.M)(gt=>{this._emitExpansionChanges(gt)}))]).pipe((0,Pe.n)(([gt,Gt])=>null===Gt?(0,w.of)({renderNodes:gt,flattenedNodes:null,nodeType:Gt}):this._computeRenderingData(gt,Gt).pipe((0,le.T)(rt=>({...rt,nodeType:Gt})))))}_renderDataChanges(fe){null!==fe.nodeType?(this._updateCachedData(fe.flattenedNodes),this.renderNodeChanges(fe.renderNodes),this._updateKeyManagerItems(fe.flattenedNodes)):this.renderNodeChanges(fe.renderNodes)}_emitExpansionChanges(fe){if(!fe)return;const Qe=this._nodes.value;for(const gt of fe.added)Qe.get(gt)?._emitExpansionState(!0);for(const gt of fe.removed)Qe.get(gt)?._emitExpansionState(!1)}_initializeKeyManager(){const fe=(0,e.z)([this._keyManagerNodes,this._nodes]).pipe((0,le.T)(([gt,Gt])=>gt.reduce((rt,cn)=>{const Ft=Gt.get(this._getExpansionKey(cn));return Ft&&rt.push(Ft),rt},[])));this._keyManager=this._keyManagerFactory(fe,{trackBy:gt=>this._getExpansionKey(gt.data),skipPredicate:gt=>!!gt.isDisabled,typeAheadDebounceInterval:!0,horizontalOrientation:this._dir.value})}_initializeDataDiffer(){const fe=this.trackBy??((Qe,gt)=>this._getExpansionKey(gt));this._dataDiffer=this._differs.find([]).create(fe)}_checkTreeControlUsage(){}renderNodeChanges(fe,Qe=this._dataDiffer,gt=this._nodeOutlet.viewContainer,Gt){const rt=Qe.diff(fe);!rt&&!this._viewInit||(rt?.forEachOperation((cn,Ft,Sn)=>{if(null==cn.previousIndex)this.insertNode(fe[Sn],Sn,gt,Gt);else if(null==Sn)gt.remove(Ft);else{const Qn=gt.get(Ft);gt.move(Qn,Sn)}}),rt?.forEachIdentityChange(cn=>{const Ft=cn.item;null!=cn.currentIndex&&(gt.get(cn.currentIndex).context.$implicit=Ft)}),Gt?this._changeDetectorRef.markForCheck():this._changeDetectorRef.detectChanges())}_getNodeDef(fe,Qe){return 1===this._nodeDefs.length?this._nodeDefs.first:this._nodeDefs.find(Gt=>Gt.when&&Gt.when(Qe,fe))||this._defaultNodeDef}insertNode(fe,Qe,gt,Gt){const rt=this._getLevelAccessor(),cn=this._getNodeDef(fe,Qe),Ft=this._getExpansionKey(fe),Sn=new he(fe);Sn.index=Qe,Gt??=this._parents.get(Ft)??void 0,Sn.level=rt?rt(fe):void 0!==Gt&&this._levels.has(this._getExpansionKey(Gt))?this._levels.get(this._getExpansionKey(Gt))+1:0,this._levels.set(Ft,Sn.level),(gt||this._nodeOutlet.viewContainer).createEmbeddedView(cn.template,Sn,Qe),ve.mostRecentTreeNode&&(ve.mostRecentTreeNode.data=fe)}isExpanded(fe){return!(!this.treeControl?.isExpanded(fe)&&!this._expansionModel?.isSelected(this._getExpansionKey(fe)))}toggle(fe){this.treeControl?this.treeControl.toggle(fe):this._expansionModel&&this._expansionModel.toggle(this._getExpansionKey(fe))}expand(fe){this.treeControl?this.treeControl.expand(fe):this._expansionModel&&this._expansionModel.select(this._getExpansionKey(fe))}collapse(fe){this.treeControl?this.treeControl.collapse(fe):this._expansionModel&&this._expansionModel.deselect(this._getExpansionKey(fe))}toggleDescendants(fe){this.treeControl?this.treeControl.toggleDescendants(fe):this._expansionModel&&(this.isExpanded(fe)?this.collapseDescendants(fe):this.expandDescendants(fe))}expandDescendants(fe){if(this.treeControl)this.treeControl.expandDescendants(fe);else if(this._expansionModel){const Qe=this._expansionModel;Qe.select(this._getExpansionKey(fe)),this._getDescendants(fe).pipe((0,u.s)(1),(0,C.Q)(this._onDestroy)).subscribe(gt=>{Qe.select(...gt.map(Gt=>this._getExpansionKey(Gt)))})}}collapseDescendants(fe){if(this.treeControl)this.treeControl.collapseDescendants(fe);else if(this._expansionModel){const Qe=this._expansionModel;Qe.deselect(this._getExpansionKey(fe)),this._getDescendants(fe).pipe((0,u.s)(1),(0,C.Q)(this._onDestroy)).subscribe(gt=>{Qe.deselect(...gt.map(Gt=>this._getExpansionKey(Gt)))})}}expandAll(){this.treeControl?this.treeControl.expandAll():this._expansionModel&&this._forEachExpansionKey(fe=>this._expansionModel?.select(...fe))}collapseAll(){this.treeControl?this.treeControl.collapseAll():this._expansionModel&&this._forEachExpansionKey(fe=>this._expansionModel?.deselect(...fe))}_getLevelAccessor(){return this.treeControl?.getLevel?.bind(this.treeControl)??this.levelAccessor}_getChildrenAccessor(){return this.treeControl?.getChildren?.bind(this.treeControl)??this.childrenAccessor}_getDirectChildren(fe){const Qe=this._getLevelAccessor(),gt=this._expansionModel??this.treeControl?.expansionModel;if(!gt)return(0,w.of)([]);const Gt=this._getExpansionKey(fe),rt=gt.changed.pipe((0,Pe.n)(Ft=>Ft.added.includes(Gt)?(0,w.of)(!0):Ft.removed.includes(Gt)?(0,w.of)(!1):O.w),(0,B.Z)(this.isExpanded(fe)));if(Qe)return(0,e.z)([rt,this._flattenedNodes]).pipe((0,le.T)(([Ft,Sn])=>Ft?this._findChildrenByLevel(Qe,Sn,fe,1):[]));const cn=this._getChildrenAccessor();if(cn)return(0,ne.x)(cn(fe)??[]);throw ie()}_findChildrenByLevel(fe,Qe,gt,Gt){const rt=this._getExpansionKey(gt),cn=Qe.findIndex(h=>this._getExpansionKey(h)===rt),Ft=fe(gt),Sn=Ft+Gt,Qn=[];for(let h=cn+1;hthis._getExpansionKey(Gt)===gt)+1}_getNodeParent(fe){const Qe=this._parents.get(this._getExpansionKey(fe.data));return Qe&&this._nodes.value.get(this._getExpansionKey(Qe))}_getNodeChildren(fe){return this._getDirectChildren(fe.data).pipe((0,le.T)(Qe=>Qe.reduce((gt,Gt)=>{const rt=this._nodes.value.get(this._getExpansionKey(Gt));return rt&>.push(rt),gt},[])))}_sendKeydownToKeyManager(fe){if(fe.target===this._elementRef.nativeElement)this._keyManager.onKeydown(fe);else{const Qe=this._nodes.getValue();for(const[,gt]of Qe)if(fe.target===gt._elementRef.nativeElement){this._keyManager.onKeydown(fe);break}}}_getDescendants(fe){if(this.treeControl)return(0,w.of)(this.treeControl.getDescendants(fe));if(this.levelAccessor){const Qe=this._findChildrenByLevel(this.levelAccessor,this._flattenedNodes.value,fe,1/0);return(0,w.of)(Qe)}if(this.childrenAccessor)return this._getAllChildrenRecursively(fe).pipe(j((Qe,gt)=>(Qe.push(...gt),Qe),[]));throw ie()}_getAllChildrenRecursively(fe){return this.childrenAccessor?(0,ne.x)(this.childrenAccessor(fe)).pipe((0,u.s)(1),(0,Pe.n)(Qe=>{for(const gt of Qe)this._parents.set(this._getExpansionKey(gt),fe);return(0,w.of)(...Qe).pipe((0,W.H)(gt=>(0,f.x)((0,w.of)([gt]),this._getAllChildrenRecursively(gt))))})):(0,w.of)([])}_getExpansionKey(fe){return this.expansionKey?.(fe)??fe}_getAriaSet(fe){const Qe=this._getExpansionKey(fe),gt=this._parents.get(Qe),Gt=gt?this._getExpansionKey(gt):null;return this._ariaSets.get(Gt)??[fe]}_findParentForNode(fe,Qe,gt){if(!gt.length)return null;const Gt=this._levels.get(this._getExpansionKey(fe))??0;for(let rt=Qe-1;rt>=0;rt--){const cn=gt[rt];if((this._levels.get(this._getExpansionKey(cn))??0){const rt=this._getExpansionKey(Gt);this._parents.has(rt)||this._parents.set(rt,null),this._levels.set(rt,Qe);const cn=(0,ne.x)(gt(Gt));return(0,f.x)((0,w.of)([Gt]),cn.pipe((0,u.s)(1),(0,A.M)(Ft=>{this._ariaSets.set(rt,[...Ft??[]]);for(const Sn of Ft??[]){const Qn=this._getExpansionKey(Sn);this._parents.set(Qn,Gt),this._levels.set(Qn,Qe+1)}}),(0,Pe.n)(Ft=>Ft?this._flattenNestedNodesWithExpansion(Ft,Qe+1).pipe((0,le.T)(Sn=>this.isExpanded(Gt)?Sn:[])):(0,w.of)([]))))}),j((Gt,rt)=>(Gt.push(...rt),Gt),[])):(0,w.of)([...fe])}_computeRenderingData(fe,Qe){if(this.childrenAccessor&&"flat"===Qe)return this._clearPreviousCache(),this._ariaSets.set(null,[...fe]),this._flattenNestedNodesWithExpansion(fe).pipe((0,le.T)(gt=>({renderNodes:gt,flattenedNodes:gt})));if(this.levelAccessor&&"nested"===Qe){const gt=this.levelAccessor;return(0,w.of)(fe.filter(Gt=>0===gt(Gt))).pipe((0,le.T)(Gt=>({renderNodes:Gt,flattenedNodes:fe})),(0,A.M)(({flattenedNodes:Gt})=>{this._calculateParents(Gt)}))}return"flat"===Qe?(0,w.of)({renderNodes:fe,flattenedNodes:fe}).pipe((0,A.M)(({flattenedNodes:gt})=>{this._calculateParents(gt)})):(this._clearPreviousCache(),this._ariaSets.set(null,[...fe]),this._flattenNestedNodesWithExpansion(fe).pipe((0,le.T)(gt=>({renderNodes:fe,flattenedNodes:gt}))))}_updateCachedData(fe){this._flattenedNodes.next(fe)}_updateKeyManagerItems(fe){this._keyManagerNodes.next(fe)}_calculateParents(fe){const Qe=this._getLevelAccessor();if(Qe){this._clearPreviousCache();for(let gt=0;gt{Qe.push(this._getExpansionKey(Gt.data)),gt.push(this._getDescendants(Gt.data))}),gt.length>0?(0,e.z)(gt).pipe((0,u.s)(1),(0,C.Q)(this._onDestroy)).subscribe(Gt=>{Gt.forEach(rt=>rt.forEach(cn=>Qe.push(this._getExpansionKey(cn)))),fe(Qe)}):fe(Qe)}_clearPreviousCache(){this._parents.clear(),this._levels.clear(),this._ariaSets.clear()}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275cmp=re.VBU({type:oe,selectors:[["cdk-tree"]],contentQueries:function(Qe,gt,Gt){if(1&Qe&&re.wni(Gt,Dt,5),2&Qe){let rt;re.mGM(rt=re.lsd())&&(gt._nodeDefs=rt)}},viewQuery:function(Qe,gt){if(1&Qe&&re.GBs(_e,7),2&Qe){let Gt;re.mGM(Gt=re.lsd())&&(gt._nodeOutlet=Gt.first)}},hostAttrs:["role","tree",1,"cdk-tree"],hostBindings:function(Qe,gt){1&Qe&&re.bIt("keydown",function(rt){return gt._sendKeydownToKeyManager(rt)})},inputs:{dataSource:"dataSource",treeControl:"treeControl",levelAccessor:"levelAccessor",childrenAccessor:"childrenAccessor",trackBy:"trackBy",expansionKey:"expansionKey"},exportAs:["cdkTree"],decls:1,vars:0,consts:[["cdkTreeNodeOutlet",""]],template:function(Qe,gt){1&Qe&&re.eu8(0,0)},dependencies:[_e],encapsulation:2})}return oe})(),ve=(()=>{class oe{_elementRef=(0,xe.WQX)(re.aKT);_tree=(0,xe.WQX)(F);_tabindex=-1;_type="flat";get role(){return"treeitem"}set role(fe){}get isExpandable(){return this._isExpandable()}set isExpandable(fe){this._inputIsExpandable=fe,(!this.data||this._isExpandable)&&this._inputIsExpandable&&(this._inputIsExpanded?this.expand():!1===this._inputIsExpanded&&this.collapse())}get isExpanded(){return this._tree.isExpanded(this._data)}set isExpanded(fe){this._inputIsExpanded=fe,fe?this.expand():this.collapse()}isDisabled;typeaheadLabel;getLabel(){return this.typeaheadLabel||this._elementRef.nativeElement.textContent?.trim()||""}activation=new re.bkB;expandedChange=new re.bkB;static mostRecentTreeNode=null;_destroyed=new v.B;_dataChanges=new v.B;_inputIsExpandable=!1;_inputIsExpanded=void 0;_shouldFocus=!0;_parentNodeAriaLevel;get data(){return this._data}set data(fe){fe!==this._data&&(this._data=fe,this._dataChanges.next())}_data;get isLeafNode(){return void 0!==this._tree.treeControl?.isExpandable&&!this._tree.treeControl.isExpandable(this._data)||void 0===this._tree.treeControl?.isExpandable&&0===this._tree.treeControl?.getDescendants(this._data).length}get level(){return this._tree._getLevel(this._data)??this._parentNodeAriaLevel}_isExpandable(){return this._tree.treeControl?!this.isLeafNode:this._inputIsExpandable}_getAriaExpanded(){return this._isExpandable()?String(this.isExpanded):null}_getSetSize(){return this._tree._getSetSize(this._data)}_getPositionInSet(){return this._tree._getPositionInSet(this._data)}_changeDetectorRef=(0,xe.WQX)(Ee.gRc);constructor(){oe.mostRecentTreeNode=this}ngOnInit(){this._parentNodeAriaLevel=function H(oe){let Ye=oe.parentElement;for(;Ye&&!$(Ye);)Ye=Ye.parentElement;return Ye?Ye.classList.contains("cdk-nested-tree-node")?(0,Ee.Udg)(Ye.getAttribute("aria-level")):0:-1}(this._elementRef.nativeElement),this._tree._getExpansionModel().changed.pipe((0,le.T)(()=>this.isExpanded),(0,G.F)(),(0,C.Q)(this._destroyed)).pipe((0,C.Q)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck()),this._tree._setNodeTypeIfUnset(this._type),this._tree._registerNode(this)}ngOnDestroy(){oe.mostRecentTreeNode===this&&(oe.mostRecentTreeNode=null),this._dataChanges.complete(),this._destroyed.next(),this._destroyed.complete()}getParent(){return this._tree._getNodeParent(this)??null}getChildren(){return this._tree._getNodeChildren(this)}focus(){this._tabindex=0,this._shouldFocus&&this._elementRef.nativeElement.focus(),this._changeDetectorRef.markForCheck()}unfocus(){this._tabindex=-1,this._changeDetectorRef.markForCheck()}activate(){this.isDisabled||this.activation.next(this._data)}collapse(){this.isExpandable&&this._tree.collapse(this._data)}expand(){this.isExpandable&&this._tree.expand(this._data)}makeFocusable(){this._tabindex=0,this._changeDetectorRef.markForCheck()}_focusItem(){this.isDisabled||this._tree._keyManager.focusItem(this)}_setActiveItem(){this.isDisabled||(this._shouldFocus=!1,this._tree._keyManager.focusItem(this),this._shouldFocus=!0)}_emitExpansionState(fe){this.expandedChange.emit(fe)}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275dir=re.FsC({type:oe,selectors:[["cdk-tree-node"]],hostAttrs:["role","treeitem",1,"cdk-tree-node"],hostVars:5,hostBindings:function(Qe,gt){1&Qe&&re.bIt("click",function(){return gt._setActiveItem()})("focus",function(){return gt._focusItem()}),2&Qe&&(re.Avn("tabIndex",gt._tabindex),re.BMQ("aria-expanded",gt._getAriaExpanded())("aria-level",gt.level+1)("aria-posinset",gt._getPositionInSet())("aria-setsize",gt._getSetSize()))},inputs:{role:"role",isExpandable:[2,"isExpandable","isExpandable",Ee.L39],isExpanded:"isExpanded",isDisabled:[2,"isDisabled","isDisabled",Ee.L39],typeaheadLabel:[0,"cdkTreeNodeTypeaheadLabel","typeaheadLabel"]},outputs:{activation:"activation",expandedChange:"expandedChange"},exportAs:["cdkTreeNode"]})}return oe})();function $(oe){const Ye=oe.classList;return!(!Ye?.contains("cdk-nested-tree-node")&&!Ye?.contains("cdk-tree"))}let Ke=(()=>{class oe extends ve{_type="nested";_differs=(0,xe.WQX)(Ee._q3);_dataDiffer;_children;nodeOutlet;constructor(){super()}ngAfterContentInit(){this._dataDiffer=this._differs.find([]).create(this._tree.trackBy),this._tree._getDirectChildren(this.data).pipe((0,C.Q)(this._destroyed)).subscribe(fe=>this.updateChildrenNodes(fe)),this.nodeOutlet.changes.pipe((0,C.Q)(this._destroyed)).subscribe(()=>this.updateChildrenNodes())}ngOnDestroy(){this._clear(),super.ngOnDestroy()}updateChildrenNodes(fe){const Qe=this._getNodeOutlet();fe&&(this._children=fe),Qe&&this._children?this._tree.renderNodeChanges(this._children,this._dataDiffer,Qe.viewContainer,this._data):this._dataDiffer.diff([])}_clear(){const fe=this._getNodeOutlet();fe&&(fe.viewContainer.clear(),this._dataDiffer.diff([]))}_getNodeOutlet(){const fe=this.nodeOutlet;return fe&&fe.find(Qe=>!Qe._node||Qe._node===this)}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275dir=re.FsC({type:oe,selectors:[["cdk-nested-tree-node"]],contentQueries:function(Qe,gt,Gt){if(1&Qe&&re.wni(Gt,_e,5),2&Qe){let rt;re.mGM(rt=re.lsd())&&(gt.nodeOutlet=rt)}},hostAttrs:[1,"cdk-nested-tree-node"],exportAs:["cdkNestedTreeNode"],features:[re.Jv_([{provide:ve,useExisting:oe},{provide:Xe,useExisting:oe}]),re.Vt3]})}return oe})();const Vt=/([A-Za-z%]+)$/;let St=(()=>{class oe{_treeNode=(0,xe.WQX)(ve);_tree=(0,xe.WQX)(F);_element=(0,xe.WQX)(re.aKT);_dir=(0,xe.WQX)(ce.dS,{optional:!0});_currentPadding;_destroyed=new v.B;indentUnits="px";get level(){return this._level}set level(fe){this._setLevelInput(fe)}_level;get indent(){return this._indent}set indent(fe){this._setIndentInput(fe)}_indent=40;constructor(){this._setPadding(),this._dir?.change.pipe((0,C.Q)(this._destroyed)).subscribe(()=>this._setPadding(!0)),this._treeNode._dataChanges.subscribe(()=>this._setPadding())}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete()}_paddingIndent(){const fe=(this._treeNode.data&&this._tree._getLevel(this._treeNode.data))??null,Qe=null==this._level?fe:this._level;return"number"==typeof Qe?`${Qe*this._indent}${this.indentUnits}`:null}_setPadding(fe=!1){const Qe=this._paddingIndent();if(Qe!==this._currentPadding||fe){const gt=this._element.nativeElement,Gt=this._dir&&"rtl"===this._dir.value?"paddingRight":"paddingLeft",rt="paddingLeft"===Gt?"paddingRight":"paddingLeft";gt.style[Gt]=Qe||"",gt.style[rt]="",this._currentPadding=Qe}}_setLevelInput(fe){this._level=isNaN(fe)?null:fe,this._setPadding()}_setIndentInput(fe){let Qe=fe,gt="px";if("string"==typeof fe){const Gt=fe.split(Vt);Qe=Gt[0],gt=Gt[1]||gt}this.indentUnits=gt,this._indent=(0,Ee.Udg)(Qe),this._setPadding()}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275dir=re.FsC({type:oe,selectors:[["","cdkTreeNodePadding",""]],inputs:{level:[2,"cdkTreeNodePadding","level",Ee.Udg],indent:[0,"cdkTreeNodePaddingIndent","indent"]}})}return oe})(),ot=(()=>{class oe{_tree=(0,xe.WQX)(F);_treeNode=(0,xe.WQX)(ve);recursive=!1;constructor(){}_toggle(){this.recursive?this._tree.toggleDescendants(this._treeNode.data):this._tree.toggle(this._treeNode.data),this._tree._keyManager.focusItem(this._treeNode)}static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275dir=re.FsC({type:oe,selectors:[["","cdkTreeNodeToggle",""]],hostAttrs:["tabindex","-1"],hostBindings:function(Qe,gt){1&Qe&&re.bIt("click",function(rt){return gt._toggle(),rt.stopPropagation()})("keydown.Enter",function(rt){return gt._toggle(),rt.preventDefault()})("keydown.Space",function(rt){return gt._toggle(),rt.preventDefault()})},inputs:{recursive:[2,"cdkTreeNodeToggleRecursive","recursive",Ee.L39]}})}return oe})(),ht=(()=>{class oe{static \u0275fac=function(Qe){return new(Qe||oe)};static \u0275mod=re.$C({type:oe});static \u0275inj=xe.G2t({})}return oe})()},9096(Zt,pe,l){"use strict";l.d(pe,{i:()=>f});var i=l(1413),d=l(152),v=l(5964),T=l(6354),w=l(8141),e=l(438);class f{_letterKeyStream=new i.B;_items=[];_selectedItemIndex=-1;_pressedLetters=[];_skipPredicateFn;_selectedItem=new i.B;selectedItem=this._selectedItem;constructor(L,C){const B="number"==typeof C?.debounceInterval?C.debounceInterval:200;C?.skipPredicate&&(this._skipPredicateFn=C.skipPredicate),this.setItems(L),this._setupKeyHandler(B)}destroy(){this._pressedLetters=[],this._letterKeyStream.complete(),this._selectedItem.complete()}setCurrentSelectedItemIndex(L){this._selectedItemIndex=L}setItems(L){this._items=L}handleKey(L){const C=L.keyCode;L.key&&1===L.key.length?this._letterKeyStream.next(L.key.toLocaleUpperCase()):(C>=e.A&&C<=e.Z||C>=e.f2&&C<=e.bn)&&this._letterKeyStream.next(String.fromCharCode(C))}isTyping(){return this._pressedLetters.length>0}reset(){this._pressedLetters=[]}_setupKeyHandler(L){this._letterKeyStream.pipe((0,w.M)(C=>this._pressedLetters.push(C)),(0,d.B)(L),(0,v.p)(()=>this._pressedLetters.length>0),(0,T.T)(()=>this._pressedLetters.join("").toLocaleUpperCase())).subscribe(C=>{for(let B=1;Bd});var i=l(2615);let d=(()=>{class v{_listeners=[];notify(w,e){for(let O of this._listeners)O(w,e)}listen(w){return this._listeners.push(w),()=>{this._listeners=this._listeners.filter(e=>w!==e)}}ngOnDestroy(){this._listeners=[]}static \u0275fac=function(e){return new(e||v)};static \u0275prov=i.jDH({token:v,factory:v.\u0275fac,providedIn:"root"})}return v})()},177(Zt,pe,l){"use strict";l.d(pe,{AJ:()=>Ee,UE:()=>ce,Vy:()=>be,Xr:()=>J});var re=l(2615);const Ee="browser";function ce(qt){return qt===Ee}function be(qt){return"server"===qt}let J=(()=>{class qt{static \u0275prov=(0,re.jDH)({token:qt,providedIn:"root",factory:()=>new De((0,re.WQX)(re.qQL),window)})}return qt})();class De{document;window;offset=()=>[0,0];constructor(En,Wn){this.document=En,this.window=Wn}setOffset(En){this.offset=Array.isArray(En)?()=>En:En}getScrollPosition(){return[this.window.scrollX,this.window.scrollY]}scrollToPosition(En,Wn){this.window.scrollTo({...Wn,left:En[0],top:En[1]})}scrollToAnchor(En,Wn){const ri=function Re(qt,En){const Wn=qt.getElementById(En)||qt.getElementsByName(En)[0];if(Wn)return Wn;if("function"==typeof qt.createTreeWalker&&qt.body&&"function"==typeof qt.body.attachShadow){const ri=qt.createTreeWalker(qt.body,NodeFilter.SHOW_ELEMENT);let Rn=ri.currentNode;for(;Rn;){const Hn=Rn.shadowRoot;if(Hn){const Pi=Hn.getElementById(En)||Hn.querySelector(`[name="${En}"]`);if(Pi)return Pi}Rn=ri.nextNode()}}return null}(this.document,En);ri&&(this.scrollToElement(ri,Wn),ri.focus())}setHistoryScrollRestoration(En){try{this.window.history.scrollRestoration=En}catch{console.warn((0,re.OsK)(2400,!1))}}scrollToElement(En,Wn){const ri=En.getBoundingClientRect(),Rn=ri.left+this.window.pageXOffset,Hn=ri.top+this.window.pageYOffset,Pi=this.offset();this.window.scrollTo({...Wn,left:Rn-Pi[0],top:Hn-Pi[1]})}}},2200(Zt,pe,l){"use strict";l.d(pe,{B3:()=>Yt,GH:()=>ii,Jj:()=>Vn,MD:()=>Ca,P9:()=>yi,PV:()=>ia,Pc:()=>ra,QX:()=>en,Sq:()=>Tt,T3:()=>Un,TG:()=>Hn,YU:()=>xn,bT:()=>ae,e1:()=>bi,fG:()=>Qi,fw:()=>u,lG:()=>da,ux:()=>fi,vh:()=>En});var T=l(7705),w=l(2615),e=l(3664),O=l(9295),f=l(7303);let u=(()=>{class Fe extends f.hb{_platformLocation;_baseHref="";_removeListenerFns=[];constructor(Ve,Et){super(),this._platformLocation=Ve,null!=Et&&(this._baseHref=Et)}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(Ve){this._removeListenerFns.push(this._platformLocation.onPopState(Ve),this._platformLocation.onHashChange(Ve))}getBaseHref(){return this._baseHref}path(Ve=!1){const Et=this._platformLocation.hash??"#";return Et.length>0?Et.substring(1):Et}prepareExternalUrl(Ve){const Et=(0,f.om)(this._baseHref,Ve);return Et.length>0?"#"+Et:Et}pushState(Ve,Et,Jt,ti){const di=this.prepareExternalUrl(Jt+(0,f.Q)(ti))||this._platformLocation.pathname;this._platformLocation.pushState(Ve,Et,di)}replaceState(Ve,Et,Jt,ti){const di=this.prepareExternalUrl(Jt+(0,f.Q)(ti))||this._platformLocation.pathname;this._platformLocation.replaceState(Ve,Et,di)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(Ve=0){this._platformLocation.historyGo?.(Ve)}static \u0275fac=function(Et){return new(Et||Fe)(w.KVO(f.Vw),w.KVO(f.kB,8))};static \u0275prov=w.jDH({token:Fe,factory:Fe.\u0275fac})}return Fe})();var C=function(Fe){return Fe[Fe.Decimal=0]="Decimal",Fe[Fe.Percent=1]="Percent",Fe[Fe.Currency=2]="Currency",Fe[Fe.Scientific=3]="Scientific",Fe}(C||{}),A=function(Fe){return Fe[Fe.Format=0]="Format",Fe[Fe.Standalone=1]="Standalone",Fe}(A||{}),Pe=function(Fe){return Fe[Fe.Narrow=0]="Narrow",Fe[Fe.Abbreviated=1]="Abbreviated",Fe[Fe.Wide=2]="Wide",Fe[Fe.Short=3]="Short",Fe}(Pe||{}),le=function(Fe){return Fe[Fe.Short=0]="Short",Fe[Fe.Medium=1]="Medium",Fe[Fe.Long=2]="Long",Fe[Fe.Full=3]="Full",Fe}(le||{});function ce(Fe,Wt){return P((0,e.kBR)(Fe)[e.NSC.DateFormat],Wt)}function be(Fe,Wt){return P((0,e.kBR)(Fe)[e.NSC.TimeFormat],Wt)}function ne(Fe,Wt){return P((0,e.kBR)(Fe)[e.NSC.DateTimeFormat],Wt)}function J(Fe,Wt){const Ve=(0,e.kBR)(Fe),Et=Ve[e.NSC.NumberSymbols][Wt];if(typeof Et>"u"){if(12===Wt)return Ve[e.NSC.NumberSymbols][0];if(13===Wt)return Ve[e.NSC.NumberSymbols][1]}return Et}function lt(Fe){if(!Fe[e.NSC.ExtraData])throw new w.buA(2303,!1)}function P(Fe,Wt){for(let Ve=Wt;Ve>-1;Ve--)if(typeof Fe[Ve]<"u")return Fe[Ve];throw new w.buA(2304,!1)}function F(Fe){const[Wt,Ve]=Fe.split(":");return{hours:+Wt,minutes:+Ve}}const Ke=/^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/,Vt={},St=/((?:[^BEGHLMOSWYZabcdhmswyz']+)|(?:'(?:[^']|'')*')|(?:G{1,5}|y{1,4}|Y{1,4}|M{1,5}|L{1,5}|w{1,2}|W{1}|d{1,2}|E{1,6}|c{1,6}|a{1,5}|b{1,5}|B{1,5}|h{1,2}|H{1,2}|m{1,2}|s{1,2}|S{1,3}|z{1,4}|Z{1,5}|O{1,4}))([\s\S]*)/;function nt(Fe,Wt,Ve,Et){let Jt=function Ri(Fe){if(ee(Fe))return Fe;if("number"==typeof Fe&&!isNaN(Fe))return new Date(Fe);if("string"==typeof Fe){if(Fe=Fe.trim(),/^(\d{4}(-\d{1,2}(-\d{1,2})?)?)$/.test(Fe)){const[Jt,ti=1,di=1]=Fe.split("-").map(Ii=>+Ii);return Ye(Jt,ti-1,di)}const Ve=parseFloat(Fe);if(!isNaN(Fe-Ve))return new Date(Ve);let Et;if(Et=Fe.match(Ke))return function vt(Fe){const Wt=new Date(0);let Ve=0,Et=0;const Jt=Fe[8]?Wt.setUTCFullYear:Wt.setFullYear,ti=Fe[8]?Wt.setUTCHours:Wt.setHours;Fe[9]&&(Ve=Number(Fe[9]+Fe[10]),Et=Number(Fe[9]+Fe[11])),Jt.call(Wt,Number(Fe[1]),Number(Fe[2])-1,Number(Fe[3]));const di=Number(Fe[4]||0)-Ve,Ii=Number(Fe[5]||0)-Et,ca=Number(Fe[6]||0),nn=Math.floor(1e3*parseFloat("0."+(Fe[7]||0)));return ti.call(Wt,di,Ii,ca,nn),Wt}(Et)}const Wt=new Date(Fe);if(!ee(Wt))throw new w.buA(2311,!1);return Wt}(Fe);(function ht(Fe){if(Fe.length>256)throw new w.buA(2300,!1)})(Wt),Wt=fe(Ve,Wt)||Wt;let Ii,di=[];for(;Wt;){if(Ii=St.exec(Wt),!Ii){di.push(Wt);break}{di=di.concat(Ii.slice(1));const ni=di.pop();if(!ni)break;Wt=ni}}let ca=Jt.getTimezoneOffset();Et&&(ca=vi(Et,ca),Jt=function kn(Fe,Wt){const Jt=Fe.getTimezoneOffset();return function Ni(Fe,Wt){return(Fe=new Date(Fe.getTime())).setMinutes(Fe.getMinutes()+Wt),Fe}(Fe,-1*(vi(Wt,Jt)-Jt))}(Jt,Et));let nn="";return di.forEach(ni=>{const U=function ei(Fe){if(gn[Fe])return gn[Fe];let Wt;switch(Fe){case"G":case"GG":case"GGG":Wt=Ft(3,Pe.Abbreviated);break;case"GGGG":Wt=Ft(3,Pe.Wide);break;case"GGGGG":Wt=Ft(3,Pe.Narrow);break;case"y":Wt=rt(0,1,0,!1,!0);break;case"yy":Wt=rt(0,2,0,!0,!0);break;case"yyy":Wt=rt(0,3,0,!1,!0);break;case"yyyy":Wt=rt(0,4,0,!1,!0);break;case"Y":Wt=Pt(1);break;case"YY":Wt=Pt(2,!0);break;case"YYY":Wt=Pt(3);break;case"YYYY":Wt=Pt(4);break;case"M":case"L":Wt=rt(1,1,1);break;case"MM":case"LL":Wt=rt(1,2,1);break;case"MMM":Wt=Ft(2,Pe.Abbreviated);break;case"MMMM":Wt=Ft(2,Pe.Wide);break;case"MMMMM":Wt=Ft(2,Pe.Narrow);break;case"LLL":Wt=Ft(2,Pe.Abbreviated,A.Standalone);break;case"LLLL":Wt=Ft(2,Pe.Wide,A.Standalone);break;case"LLLLL":Wt=Ft(2,Pe.Narrow,A.Standalone);break;case"w":Wt=pt(1);break;case"ww":Wt=pt(2);break;case"W":Wt=pt(1,!0);break;case"d":Wt=rt(2,1);break;case"dd":Wt=rt(2,2);break;case"c":case"cc":Wt=rt(7,1);break;case"ccc":Wt=Ft(1,Pe.Abbreviated,A.Standalone);break;case"cccc":Wt=Ft(1,Pe.Wide,A.Standalone);break;case"ccccc":Wt=Ft(1,Pe.Narrow,A.Standalone);break;case"cccccc":Wt=Ft(1,Pe.Short,A.Standalone);break;case"E":case"EE":case"EEE":Wt=Ft(1,Pe.Abbreviated);break;case"EEEE":Wt=Ft(1,Pe.Wide);break;case"EEEEE":Wt=Ft(1,Pe.Narrow);break;case"EEEEEE":Wt=Ft(1,Pe.Short);break;case"a":case"aa":case"aaa":Wt=Ft(0,Pe.Abbreviated);break;case"aaaa":Wt=Ft(0,Pe.Wide);break;case"aaaaa":Wt=Ft(0,Pe.Narrow);break;case"b":case"bb":case"bbb":Wt=Ft(0,Pe.Abbreviated,A.Standalone,!0);break;case"bbbb":Wt=Ft(0,Pe.Wide,A.Standalone,!0);break;case"bbbbb":Wt=Ft(0,Pe.Narrow,A.Standalone,!0);break;case"B":case"BB":case"BBB":Wt=Ft(0,Pe.Abbreviated,A.Format,!0);break;case"BBBB":Wt=Ft(0,Pe.Wide,A.Format,!0);break;case"BBBBB":Wt=Ft(0,Pe.Narrow,A.Format,!0);break;case"h":Wt=rt(3,1,-12);break;case"hh":Wt=rt(3,2,-12);break;case"H":Wt=rt(3,1);break;case"HH":Wt=rt(3,2);break;case"m":Wt=rt(4,1);break;case"mm":Wt=rt(4,2);break;case"s":Wt=rt(5,1);break;case"ss":Wt=rt(5,2);break;case"S":Wt=rt(6,1);break;case"SS":Wt=rt(6,2);break;case"SSS":Wt=rt(6,3);break;case"Z":case"ZZ":case"ZZZ":Wt=Qn(0);break;case"ZZZZZ":Wt=Qn(3);break;case"O":case"OO":case"OOO":case"z":case"zz":case"zzz":Wt=Qn(1);break;case"OOOO":case"ZZZZ":case"zzzz":Wt=Qn(2);break;default:return null}return gn[Fe]=Wt,Wt}(ni);nn+=U?U(Jt,Ve,ca):"''"===ni?"'":ni.replace(/(^'|'$)/g,"").replace(/''/g,"'")}),nn}function Ye(Fe,Wt,Ve){const Et=new Date(0);return Et.setFullYear(Fe,Wt,Ve),Et.setHours(0,0,0),Et}function fe(Fe,Wt){const Ve=function j(Fe){return(0,e.kBR)(Fe)[e.NSC.LocaleId]}(Fe);if(Vt[Ve]??={},Vt[Ve][Wt])return Vt[Ve][Wt];let Et="";switch(Wt){case"shortDate":Et=ce(Fe,le.Short);break;case"mediumDate":Et=ce(Fe,le.Medium);break;case"longDate":Et=ce(Fe,le.Long);break;case"fullDate":Et=ce(Fe,le.Full);break;case"shortTime":Et=be(Fe,le.Short);break;case"mediumTime":Et=be(Fe,le.Medium);break;case"longTime":Et=be(Fe,le.Long);break;case"fullTime":Et=be(Fe,le.Full);break;case"short":const Jt=fe(Fe,"shortTime"),ti=fe(Fe,"shortDate");Et=Qe(ne(Fe,le.Short),[Jt,ti]);break;case"medium":const di=fe(Fe,"mediumTime"),Ii=fe(Fe,"mediumDate");Et=Qe(ne(Fe,le.Medium),[di,Ii]);break;case"long":const ca=fe(Fe,"longTime"),nn=fe(Fe,"longDate");Et=Qe(ne(Fe,le.Long),[ca,nn]);break;case"full":const ni=fe(Fe,"fullTime"),U=fe(Fe,"fullDate");Et=Qe(ne(Fe,le.Full),[ni,U])}return Et&&(Vt[Ve][Wt]=Et),Et}function Qe(Fe,Wt){return Wt&&(Fe=Fe.replace(/\{([^}]+)}/g,function(Ve,Et){return null!=Wt&&Et in Wt?Wt[Et]:Ve})),Fe}function gt(Fe,Wt,Ve="-",Et,Jt){let ti="";(Fe<0||Jt&&Fe<=0)&&(Jt?Fe=1-Fe:(Fe=-Fe,ti=Ve));let di=String(Fe);for(;di.length0||Ii>-Ve)&&(Ii+=Ve),3===Fe)0===Ii&&-12===Ve&&(Ii=12);else if(6===Fe)return function Gt(Fe,Wt){return gt(Fe,3).substring(0,Wt)}(Ii,Wt);const ca=J(di,5);return gt(Ii,Wt,ca,Et,Jt)}}function Ft(Fe,Wt,Ve=A.Format,Et=!1){return function(Jt,ti){return function Sn(Fe,Wt,Ve,Et,Jt,ti){switch(Ve){case 2:return function re(Fe,Wt,Ve){const Et=(0,e.kBR)(Fe),ti=P([Et[e.NSC.MonthsFormat],Et[e.NSC.MonthsStandalone]],Wt);return P(ti,Ve)}(Wt,Jt,Et)[Fe.getMonth()];case 1:return function G(Fe,Wt,Ve){const Et=(0,e.kBR)(Fe),ti=P([Et[e.NSC.DaysFormat],Et[e.NSC.DaysStandalone]],Wt);return P(ti,Ve)}(Wt,Jt,Et)[Fe.getDay()];case 0:const di=Fe.getHours(),Ii=Fe.getMinutes();if(ti){const nn=function Le(Fe){const Wt=(0,e.kBR)(Fe);return lt(Wt),(Wt[e.NSC.ExtraData][2]||[]).map(Et=>"string"==typeof Et?F(Et):[F(Et[0]),F(Et[1])])}(Wt),ni=function te(Fe,Wt,Ve){const Et=(0,e.kBR)(Fe);lt(Et);const ti=P([Et[e.NSC.ExtraData][0],Et[e.NSC.ExtraData][1]],Wt)||[];return P(ti,Ve)||[]}(Wt,Jt,Et),U=nn.findIndex(tt=>{if(Array.isArray(tt)){const[Ze,Xt]=tt,Nn=di>=Ze.hours&&Ii>=Ze.minutes,Ki=di0?Math.floor(Jt/60):Math.ceil(Jt/60);switch(Fe){case 0:return(Jt>=0?"+":"")+gt(di,2,ti)+gt(Math.abs(Jt%60),2,ti);case 1:return"GMT"+(Jt>=0?"+":"")+gt(di,1,ti);case 2:return"GMT"+(Jt>=0?"+":"")+gt(di,2,ti)+":"+gt(Math.abs(Jt%60),2,ti);case 3:return 0===Et?"Z":(Jt>=0?"+":"")+gt(di,2,ti)+":"+gt(Math.abs(Jt%60),2,ti);default:throw new w.buA(2310,!1)}}}function wt(Fe){const Wt=Fe.getDay(),Ve=0===Wt?-3:4-Wt;return Ye(Fe.getFullYear(),Fe.getMonth(),Fe.getDate()+Ve)}function pt(Fe,Wt=!1){return function(Ve,Et){let Jt;if(Wt){const ti=new Date(Ve.getFullYear(),Ve.getMonth(),1).getDay()-1,di=Ve.getDate();Jt=1+Math.floor((di+ti)/7)}else{const ti=wt(Ve),di=function Ue(Fe){const Wt=Ye(Fe,0,1).getDay();return Ye(Fe,0,1+(Wt<=4?4:11)-Wt)}(ti.getFullYear()),Ii=ti.getTime()-di.getTime();Jt=1+Math.round(Ii/6048e5)}return gt(Jt,Fe,J(Et,5))}}function Pt(Fe,Wt=!1){return function(Ve,Et){return gt(wt(Ve).getFullYear(),Fe,J(Et,5),Wt)}}const gn={};function vi(Fe,Wt){Fe=Fe.replace(/:/g,"");const Ve=Date.parse("Jan 01, 1970 00:00:00 "+Fe)/6e4;return isNaN(Ve)?Wt:Ve}function ee(Fe){return Fe instanceof Date&&!isNaN(Fe.valueOf())}const ye=/^(\d+)?\.((\d+)(-(\d+))?)?$/;function bt(Fe){const Wt=parseInt(Fe);if(isNaN(Wt))throw new w.buA(2305,!1);return Wt}const Nt=/\s+/,dn=[];let xn=(()=>{class Fe{_ngEl;_renderer;initialClasses=dn;rawClass;stateMap=new Map;constructor(Ve,Et){this._ngEl=Ve,this._renderer=Et}set klass(Ve){this.initialClasses=null!=Ve?Ve.trim().split(Nt):dn}set ngClass(Ve){this.rawClass="string"==typeof Ve?Ve.trim().split(Nt):Ve}ngDoCheck(){for(const Et of this.initialClasses)this._updateState(Et,!0);const Ve=this.rawClass;if(Array.isArray(Ve)||Ve instanceof Set)for(const Et of Ve)this._updateState(Et,!0);else if(null!=Ve)for(const Et of Object.keys(Ve))this._updateState(Et,!!Ve[Et]);this._applyStateDiff()}_updateState(Ve,Et){const Jt=this.stateMap.get(Ve);void 0!==Jt?(Jt.enabled!==Et&&(Jt.changed=!0,Jt.enabled=Et),Jt.touched=!0):this.stateMap.set(Ve,{enabled:Et,changed:!0,touched:!0})}_applyStateDiff(){for(const Ve of this.stateMap){const Et=Ve[0],Jt=Ve[1];Jt.changed?(this._toggleClass(Et,Jt.enabled),Jt.changed=!1):Jt.touched||(Jt.enabled&&this._toggleClass(Et,!1),this.stateMap.delete(Et)),Jt.touched=!1}}_toggleClass(Ve,Et){(Ve=Ve.trim()).length>0&&Ve.split(Nt).forEach(Jt=>{Et?this._renderer.addClass(this._ngEl.nativeElement,Jt):this._renderer.removeClass(this._ngEl.nativeElement,Jt)})}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.aKT),e.rXU(e.sFG))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngClass",""]],inputs:{klass:[0,"class","klass"],ngClass:"ngClass"}})}return Fe})();class Yi{$implicit;ngForOf;index;count;constructor(Wt,Ve,Et,Jt){this.$implicit=Wt,this.ngForOf=Ve,this.index=Et,this.count=Jt}get first(){return 0===this.index}get last(){return this.index===this.count-1}get even(){return this.index%2==0}get odd(){return!this.even}}let Tt=(()=>{class Fe{_viewContainer;_template;_differs;set ngForOf(Ve){this._ngForOf=Ve,this._ngForOfDirty=!0}set ngForTrackBy(Ve){this._trackByFn=Ve}get ngForTrackBy(){return this._trackByFn}_ngForOf=null;_ngForOfDirty=!0;_differ=null;_trackByFn;constructor(Ve,Et,Jt){this._viewContainer=Ve,this._template=Et,this._differs=Jt}set ngForTemplate(Ve){Ve&&(this._template=Ve)}ngDoCheck(){if(this._ngForOfDirty){this._ngForOfDirty=!1;const Ve=this._ngForOf;!this._differ&&Ve&&(this._differ=this._differs.find(Ve).create(this.ngForTrackBy))}if(this._differ){const Ve=this._differ.diff(this._ngForOf);Ve&&this._applyChanges(Ve)}}_applyChanges(Ve){const Et=this._viewContainer;Ve.forEachOperation((Jt,ti,di)=>{if(null==Jt.previousIndex)Et.createEmbeddedView(this._template,new Yi(Jt.item,this._ngForOf,-1,-1),null===di?void 0:di);else if(null==di)Et.remove(null===ti?void 0:ti);else if(null!==ti){const Ii=Et.get(ti);Et.move(Ii,di),At(Ii,Jt)}});for(let Jt=0,ti=Et.length;Jt{At(Et.get(Jt.currentIndex),Jt)})}static ngTemplateContextGuard(Ve,Et){return!0}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(T._q3))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngFor","","ngForOf",""]],inputs:{ngForOf:"ngForOf",ngForTrackBy:"ngForTrackBy",ngForTemplate:"ngForTemplate"}})}return Fe})();function At(Fe,Wt){Fe.context.$implicit=Wt.item}let ae=(()=>{class Fe{_viewContainer;_context=new Lt;_thenTemplateRef=null;_elseTemplateRef=null;_thenViewRef=null;_elseViewRef=null;constructor(Ve,Et){this._viewContainer=Ve,this._thenTemplateRef=Et}set ngIf(Ve){this._context.$implicit=this._context.ngIf=Ve,this._updateView()}set ngIfThen(Ve){Ht(Ve),this._thenTemplateRef=Ve,this._thenViewRef=null,this._updateView()}set ngIfElse(Ve){Ht(Ve),this._elseTemplateRef=Ve,this._elseViewRef=null,this._updateView()}_updateView(){this._context.$implicit?this._thenViewRef||(this._viewContainer.clear(),this._elseViewRef=null,this._thenTemplateRef&&(this._thenViewRef=this._viewContainer.createEmbeddedView(this._thenTemplateRef,this._context))):this._elseViewRef||(this._viewContainer.clear(),this._thenViewRef=null,this._elseTemplateRef&&(this._elseViewRef=this._viewContainer.createEmbeddedView(this._elseTemplateRef,this._context)))}static ngIfUseIfTypeGuard;static ngTemplateGuard_ngIf;static ngTemplateContextGuard(Ve,Et){return!0}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.c1b),e.rXU(e.C4Q))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngIf",""]],inputs:{ngIf:"ngIf",ngIfThen:"ngIfThen",ngIfElse:"ngIfElse"}})}return Fe})();class Lt{$implicit=null;ngIf=null}function Ht(Fe,Wt){if(Fe&&!Fe.createEmbeddedView)throw new w.buA(2020,!1)}class _n{_viewContainerRef;_templateRef;_created=!1;constructor(Wt,Ve){this._viewContainerRef=Wt,this._templateRef=Ve}create(){this._created=!0,this._viewContainerRef.createEmbeddedView(this._templateRef)}destroy(){this._created=!1,this._viewContainerRef.clear()}enforceState(Wt){Wt&&!this._created?this.create():!Wt&&this._created&&this.destroy()}}let fi=(()=>{class Fe{_defaultViews=[];_defaultUsed=!1;_caseCount=0;_lastCaseCheckIndex=0;_lastCasesMatched=!1;_ngSwitch;set ngSwitch(Ve){this._ngSwitch=Ve,0===this._caseCount&&this._updateDefaultCases(!0)}_addCase(){return this._caseCount++}_addDefault(Ve){this._defaultViews.push(Ve)}_matchCase(Ve){const Et=Ve===this._ngSwitch;return this._lastCasesMatched||=Et,this._lastCaseCheckIndex++,this._lastCaseCheckIndex===this._caseCount&&(this._updateDefaultCases(!this._lastCasesMatched),this._lastCaseCheckIndex=0,this._lastCasesMatched=!1),Et}_updateDefaultCases(Ve){if(this._defaultViews.length>0&&Ve!==this._defaultUsed){this._defaultUsed=Ve;for(const Et of this._defaultViews)Et.enforceState(Ve)}}static \u0275fac=function(Et){return new(Et||Fe)};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngSwitch",""]],inputs:{ngSwitch:"ngSwitch"}})}return Fe})(),bi=(()=>{class Fe{ngSwitch;_view;ngSwitchCase;constructor(Ve,Et,Jt){this.ngSwitch=Jt,Jt._addCase(),this._view=new _n(Ve,Et)}ngDoCheck(){this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase))}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(fi,9))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngSwitchCase",""]],inputs:{ngSwitchCase:"ngSwitchCase"}})}return Fe})(),Qi=(()=>{class Fe{constructor(Ve,Et,Jt){Jt._addDefault(new _n(Ve,Et))}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.c1b),e.rXU(e.C4Q),e.rXU(fi,9))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngSwitchDefault",""]]})}return Fe})(),Yt=(()=>{class Fe{_ngEl;_differs;_renderer;_ngStyle=null;_differ=null;constructor(Ve,Et,Jt){this._ngEl=Ve,this._differs=Et,this._renderer=Jt}set ngStyle(Ve){this._ngStyle=Ve,!this._differ&&Ve&&(this._differ=this._differs.find(Ve).create())}ngDoCheck(){if(this._differ){const Ve=this._differ.diff(this._ngStyle);Ve&&this._applyChanges(Ve)}}_setStyle(Ve,Et){const[Jt,ti]=Ve.split("."),di=-1===Jt.indexOf("-")?void 0:e.czy.DashCase;null!=Et?this._renderer.setStyle(this._ngEl.nativeElement,Jt,ti?`${Et}${ti}`:Et,di):this._renderer.removeStyle(this._ngEl.nativeElement,Jt,di)}_applyChanges(Ve){Ve.forEachRemovedItem(Et=>this._setStyle(Et.key,null)),Ve.forEachAddedItem(Et=>this._setStyle(Et.key,Et.currentValue)),Ve.forEachChangedItem(Et=>this._setStyle(Et.key,Et.currentValue))}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.aKT),e.rXU(T.MKu),e.rXU(e.sFG))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngStyle",""]],inputs:{ngStyle:"ngStyle"}})}return Fe})(),Un=(()=>{class Fe{_viewContainerRef;_viewRef=null;ngTemplateOutletContext=null;ngTemplateOutlet=null;ngTemplateOutletInjector=null;constructor(Ve){this._viewContainerRef=Ve}ngOnChanges(Ve){if(this._shouldRecreateView(Ve)){const Et=this._viewContainerRef;if(this._viewRef&&Et.remove(Et.indexOf(this._viewRef)),!this.ngTemplateOutlet)return void(this._viewRef=null);const Jt=this._createContextForwardProxy();this._viewRef=Et.createEmbeddedView(this.ngTemplateOutlet,Jt,{injector:this.ngTemplateOutletInjector??void 0})}}_shouldRecreateView(Ve){return!!Ve.ngTemplateOutlet||!!Ve.ngTemplateOutletInjector}_createContextForwardProxy(){return new Proxy({},{set:(Ve,Et,Jt)=>!!this.ngTemplateOutletContext&&Reflect.set(this.ngTemplateOutletContext,Et,Jt),get:(Ve,Et,Jt)=>{if(this.ngTemplateOutletContext)return Reflect.get(this.ngTemplateOutletContext,Et,Jt)}})}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.c1b))};static \u0275dir=e.FsC({type:Fe,selectors:[["","ngTemplateOutlet",""]],inputs:{ngTemplateOutletContext:"ngTemplateOutletContext",ngTemplateOutlet:"ngTemplateOutlet",ngTemplateOutletInjector:"ngTemplateOutletInjector"},features:[e.OA$]})}return Fe})();function Fn(Fe,Wt){return new w.buA(2100,!1)}class ci{createSubscription(Wt,Ve,Et){return(0,O.O8)(()=>Wt.subscribe({next:Ve,error:Et}))}dispose(Wt){(0,O.O8)(()=>Wt.unsubscribe())}}class rn{createSubscription(Wt,Ve,Et){return Wt.then(Jt=>Ve?.(Jt),Jt=>Et?.(Jt)),{unsubscribe:()=>{Ve=null,Et=null}}}dispose(Wt){Wt.unsubscribe()}}const In=new rn,Mn=new ci;let Vn=(()=>{class Fe{_ref;_latestValue=null;markForCheckOnValueUpdate=!0;_subscription=null;_obj=null;_strategy=null;applicationErrorHandler=(0,w.WQX)(w.ZTf);constructor(Ve){this._ref=Ve}ngOnDestroy(){this._subscription&&this._dispose(),this._ref=null}transform(Ve){if(!this._obj){if(Ve)try{this.markForCheckOnValueUpdate=!1,this._subscribe(Ve)}finally{this.markForCheckOnValueUpdate=!0}return this._latestValue}return Ve!==this._obj?(this._dispose(),this.transform(Ve)):this._latestValue}_subscribe(Ve){this._obj=Ve,this._strategy=this._selectStrategy(Ve),this._subscription=this._strategy.createSubscription(Ve,Et=>this._updateLatestValue(Ve,Et),Et=>this.applicationErrorHandler(Et))}_selectStrategy(Ve){if((0,e.yLl)(Ve))return In;if((0,e.cdK)(Ve))return Mn;throw Fn()}_dispose(){this._strategy.dispose(this._subscription),this._latestValue=null,this._subscription=null,this._obj=null}_updateLatestValue(Ve,Et){Ve===this._obj&&(this._latestValue=Et,this.markForCheckOnValueUpdate&&this._ref?.markForCheck())}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(T.gRc,16))};static \u0275pipe=e.EJ8({name:"async",type:Fe,pure:!1})}return Fe})(),ii=(()=>{class Fe{transform(Ve){if(null==Ve)return null;if("string"!=typeof Ve)throw Fn();return Ve.toLowerCase()}static \u0275fac=function(Et){return new(Et||Fe)};static \u0275pipe=e.EJ8({name:"lowercase",type:Fe,pure:!0})}return Fe})();const Bn=/(?:[0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDD00-\uDD23\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF1C\uDF27\uDF30-\uDF45\uDF70-\uDF81\uDFB0-\uDFC4\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDEB8\uDF00-\uDF1A\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCDF\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDEE0-\uDEF2\uDFB0]|\uD808[\uDC00-\uDF99]|\uD809[\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE70-\uDEBE\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE7F\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43\uDD4B]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])\S*/g;let ia=(()=>{class Fe{transform(Ve){if(null==Ve)return null;if("string"!=typeof Ve)throw Fn();return Ve.replace(Bn,Et=>Et[0].toUpperCase()+Et.slice(1).toLowerCase())}static \u0275fac=function(Et){return new(Et||Fe)};static \u0275pipe=e.EJ8({name:"titlecase",type:Fe,pure:!0})}return Fe})(),ra=(()=>{class Fe{transform(Ve){if(null==Ve)return null;if("string"!=typeof Ve)throw Fn();return Ve.toUpperCase()}static \u0275fac=function(Et){return new(Et||Fe)};static \u0275pipe=e.EJ8({name:"uppercase",type:Fe,pure:!0})}return Fe})();const ha=new w.nKC(""),qt=new w.nKC("");let En=(()=>{class Fe{locale;defaultTimezone;defaultOptions;constructor(Ve,Et,Jt){this.locale=Ve,this.defaultTimezone=Et,this.defaultOptions=Jt}transform(Ve,Et,Jt,ti){if(null==Ve||""===Ve||Ve!=Ve)return null;try{return nt(Ve,Et??this.defaultOptions?.dateFormat??"mediumDate",ti||this.locale,Jt??this.defaultOptions?.timezone??this.defaultTimezone??void 0)}catch(di){throw Fn()}}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(e.xe9,16),e.rXU(ha,24),e.rXU(qt,24))};static \u0275pipe=e.EJ8({name:"date",type:Fe,pure:!0})}return Fe})(),Hn=(()=>{class Fe{transform(Ve){return JSON.stringify(Ve,null,2)}static \u0275fac=function(Et){return new(Et||Fe)};static \u0275pipe=e.EJ8({name:"json",type:Fe,pure:!1})}return Fe})(),da=(()=>{class Fe{differs;constructor(Ve){this.differs=Ve}differ;keyValues=[];compareFn=Ta;transform(Ve,Et=Ta){if(!Ve||!(Ve instanceof Map)&&"object"!=typeof Ve)return null;this.differ??=this.differs.find(Ve).create();const Jt=this.differ.diff(Ve),ti=Et!==this.compareFn;return Jt&&(this.keyValues=[],Jt.forEachItem(di=>{this.keyValues.push(function Pi(Fe,Wt){return{key:Fe,value:Wt}}(di.key,di.currentValue))})),(Jt||ti)&&(Et&&this.keyValues.sort(Et),this.compareFn=Et),this.keyValues}static \u0275fac=function(Et){return new(Et||Fe)(e.rXU(T.MKu,16))};static \u0275pipe=e.EJ8({name:"keyvalue",type:Fe,pure:!1})}return Fe})();function Ta(Fe,Wt){const Ve=Fe.key,Et=Wt.key;if(Ve===Et)return 0;if(null==Ve)return 1;if(null==Et)return-1;if("string"==typeof Ve&&"string"==typeof Et)return Ve{class Fe{_locale;constructor(Ve){this._locale=Ve}transform(Ve,Et,Jt){if(!function bn(Fe){return!(null==Fe||""===Fe||Fe!=Fe)}(Ve))return null;Jt||=this._locale;try{return function ut(Fe,Wt,Ve){return function pn(Fe,Wt,Ve,Et,Jt,ti,di=!1){let Ii="",ca=!1;if(isFinite(Fe)){let nn=function se(Fe){let Et,Jt,ti,di,Ii,Wt=Math.abs(Fe)+"",Ve=0;for((Jt=Wt.indexOf("."))>-1&&(Wt=Wt.replace(".","")),(ti=Wt.search(/e/i))>0?(Jt<0&&(Jt=ti),Jt+=+Wt.slice(ti+1),Wt=Wt.substring(0,ti)):Jt<0&&(Jt=Wt.length),ti=0;"0"===Wt.charAt(ti);ti++);if(ti===(Ii=Wt.length))Et=[0],Jt=1;else{for(Ii--;"0"===Wt.charAt(Ii);)Ii--;for(Jt-=ti,Et=[],di=0;ti<=Ii;ti++,di++)Et[di]=Number(Wt.charAt(ti))}return Jt>22&&(Et=Et.splice(0,21),Ve=Jt-1,Jt=1),{digits:Et,exponent:Ve,integerLen:Jt}}(Fe);di&&(nn=function Ot(Fe){if(0===Fe.digits[0])return Fe;const Wt=Fe.digits.length-Fe.integerLen;return Fe.exponent?Fe.exponent+=2:(0===Wt?Fe.digits.push(0,0):1===Wt&&Fe.digits.push(0),Fe.integerLen+=2),Fe}(nn));let ni=Wt.minInt,U=Wt.minFrac,tt=Wt.maxFrac;if(ti){const Ua=ti.match(ye);if(null===Ua)throw new w.buA(2306,!1);const $a=Ua[1],ns=Ua[3],Ga=Ua[5];null!=$a&&(ni=bt($a)),null!=ns&&(U=bt(ns)),null!=Ga?tt=bt(Ga):null!=ns&&U>tt&&(tt=U);const As=100;if(ni>As||U>As||tt>As)throw new w.buA(2306,!1)}!function We(Fe,Wt,Ve){if(Wt>Ve)throw new w.buA(2307,!1);let Et=Fe.digits,Jt=Et.length-Fe.integerLen;const ti=Math.min(Math.max(Wt,Jt),Ve);let di=ti+Fe.integerLen,Ii=Et[di];if(di>0){Et.splice(Math.max(Fe.integerLen,di));for(let U=di;U=5)if(di-1<0){for(let U=0;U>di;U--)Et.unshift(0),Fe.integerLen++;Et.unshift(1),Fe.integerLen++}else Et[di-1]++;for(;Jt=nn?Xt.pop():ca=!1),tt>=10?1:0},0);ni&&(Et.unshift(ni),Fe.integerLen++)}(nn,U,tt);let Ze=nn.digits,Xt=nn.integerLen;const Nn=nn.exponent;let Ki=[];for(ca=Ze.every(Ua=>!Ua);Xt0?Ki=Ze.splice(Xt,Ze.length):(Ki=Ze,Ze=[0]);const _a=[];for(Ze.length>=Wt.lgSize&&_a.unshift(Ze.splice(-Wt.lgSize,Ze.length).join(""));Ze.length>Wt.gSize;)_a.unshift(Ze.splice(-Wt.gSize,Ze.length).join(""));Ze.length&&_a.unshift(Ze.join("")),Ii=_a.join(J(Ve,Et)),Ki.length&&(Ii+=J(Ve,Jt)+Ki.join("")),Nn&&(Ii+=J(Ve,6)+"+"+Nn)}else Ii=J(Ve,9);return Ii=Fe<0&&!ca?Wt.negPre+Ii+Wt.negSuf:Wt.posPre+Ii+Wt.posSuf,Ii}(Fe,function Ge(Fe,Wt="-"){const Ve={minInt:1,minFrac:0,maxFrac:0,posPre:"",posSuf:"",negPre:"",negSuf:"",gSize:0,lgSize:0},Et=Fe.split(";"),Jt=Et[0],ti=Et[1],di=-1!==Jt.indexOf(".")?Jt.split("."):[Jt.substring(0,Jt.lastIndexOf("0")+1),Jt.substring(Jt.lastIndexOf("0")+1)],Ii=di[0],ca=di[1]||"";Ve.posPre=Ii.substring(0,Ii.indexOf("#"));for(let ni=0;ni{class Fe{transform(Ve,Et,Jt){if(null==Ve)return null;if("string"!=typeof Ve&&!Array.isArray(Ve))throw Fn();return Ve.slice(Et,Jt)}static \u0275fac=function(Et){return new(Et||Fe)};static \u0275pipe=e.EJ8({name:"slice",type:Fe,pure:!1})}return Fe})(),Ca=(()=>{class Fe{static \u0275fac=function(Et){return new(Et||Fe)};static \u0275mod=e.$C({type:Fe});static \u0275inj=w.G2t({})}return Fe})()},7303(Zt,pe,l){"use strict";l.d(pe,{Q:()=>B,Sm:()=>le,Vw:()=>O,aZ:()=>Ce,hb:()=>A,hj:()=>f,ig:()=>w,kB:()=>Pe,om:()=>L,qj:()=>e,rb:()=>T});var i=l(2615),d=l(1413);let v=null;function T(){return v}function w(re){v??=re}class e{}let O=(()=>{class re{historyGo(Ee){throw new Error("")}static \u0275fac=function(V){return new(V||re)};static \u0275prov=i.jDH({token:re,factory:()=>(0,i.WQX)(u),providedIn:"platform"})}return re})();const f=new i.nKC("");let u=(()=>{class re extends O{_location;_history;_doc=(0,i.WQX)(i.qQL);constructor(){super(),this._location=window.location,this._history=window.history}getBaseHrefFromDOM(){return T().getBaseHref(this._doc)}onPopState(Ee){const V=T().getGlobalEventTarget(this._doc,"window");return V.addEventListener("popstate",Ee,!1),()=>V.removeEventListener("popstate",Ee)}onHashChange(Ee){const V=T().getGlobalEventTarget(this._doc,"window");return V.addEventListener("hashchange",Ee,!1),()=>V.removeEventListener("hashchange",Ee)}get href(){return this._location.href}get protocol(){return this._location.protocol}get hostname(){return this._location.hostname}get port(){return this._location.port}get pathname(){return this._location.pathname}get search(){return this._location.search}get hash(){return this._location.hash}set pathname(Ee){this._location.pathname=Ee}pushState(Ee,V,ce){this._history.pushState(Ee,V,ce)}replaceState(Ee,V,ce){this._history.replaceState(Ee,V,ce)}forward(){this._history.forward()}back(){this._history.back()}historyGo(Ee=0){this._history.go(Ee)}getState(){return this._history.state}static \u0275fac=function(V){return new(V||re)};static \u0275prov=i.jDH({token:re,factory:()=>new re,providedIn:"platform"})}return re})();function L(re,xe){return re?xe?re.endsWith("/")?xe.startsWith("/")?re+xe.slice(1):re+xe:xe.startsWith("/")?re+xe:`${re}/${xe}`:re:xe}function C(re){const xe=re.search(/#|\?|$/);return"/"===re[xe-1]?re.slice(0,xe-1)+re.slice(xe):re}function B(re){return re&&"?"!==re[0]?`?${re}`:re}let A=(()=>{class re{historyGo(Ee){throw new Error("")}static \u0275fac=function(V){return new(V||re)};static \u0275prov=i.jDH({token:re,factory:()=>(0,i.WQX)(le),providedIn:"root"})}return re})();const Pe=new i.nKC("");let le=(()=>{class re extends A{_platformLocation;_baseHref;_removeListenerFns=[];constructor(Ee,V){super(),this._platformLocation=Ee,this._baseHref=V??this._platformLocation.getBaseHrefFromDOM()??(0,i.WQX)(i.qQL).location?.origin??""}ngOnDestroy(){for(;this._removeListenerFns.length;)this._removeListenerFns.pop()()}onPopState(Ee){this._removeListenerFns.push(this._platformLocation.onPopState(Ee),this._platformLocation.onHashChange(Ee))}getBaseHref(){return this._baseHref}prepareExternalUrl(Ee){return L(this._baseHref,Ee)}path(Ee=!1){const V=this._platformLocation.pathname+B(this._platformLocation.search),ce=this._platformLocation.hash;return ce&&Ee?`${V}${ce}`:V}pushState(Ee,V,ce,be){const ne=this.prepareExternalUrl(ce+B(be));this._platformLocation.pushState(Ee,V,ne)}replaceState(Ee,V,ce,be){const ne=this.prepareExternalUrl(ce+B(be));this._platformLocation.replaceState(Ee,V,ne)}forward(){this._platformLocation.forward()}back(){this._platformLocation.back()}getState(){return this._platformLocation.getState()}historyGo(Ee=0){this._platformLocation.historyGo?.(Ee)}static \u0275fac=function(V){return new(V||re)(i.KVO(O),i.KVO(Pe,8))};static \u0275prov=i.jDH({token:re,factory:re.\u0275fac,providedIn:"root"})}return re})(),Ce=(()=>{class re{_subject=new d.B;_basePath;_locationStrategy;_urlChangeListeners=[];_urlChangeSubscription=null;constructor(Ee){this._locationStrategy=Ee;const V=this._locationStrategy.getBaseHref();this._basePath=function G(re){if(new RegExp("^(https?:)?//").test(re)){const[,Ee]=re.split(/\/\/[^\/]+/);return Ee}return re}(C(W(V))),this._locationStrategy.onPopState(ce=>{this._subject.next({url:this.path(!0),pop:!0,state:ce.state,type:ce.type})})}ngOnDestroy(){this._urlChangeSubscription?.unsubscribe(),this._urlChangeListeners=[]}path(Ee=!1){return this.normalize(this._locationStrategy.path(Ee))}getState(){return this._locationStrategy.getState()}isCurrentPathEqualTo(Ee,V=""){return this.path()==this.normalize(Ee+B(V))}normalize(Ee){return re.stripTrailingSlash(function j(re,xe){if(!re||!xe.startsWith(re))return xe;const Ee=xe.substring(re.length);return""===Ee||["/",";","?","#"].includes(Ee[0])?Ee:xe}(this._basePath,W(Ee)))}prepareExternalUrl(Ee){return Ee&&"/"!==Ee[0]&&(Ee="/"+Ee),this._locationStrategy.prepareExternalUrl(Ee)}go(Ee,V="",ce=null){this._locationStrategy.pushState(ce,"",Ee,V),this._notifyUrlChangeListeners(this.prepareExternalUrl(Ee+B(V)),ce)}replaceState(Ee,V="",ce=null){this._locationStrategy.replaceState(ce,"",Ee,V),this._notifyUrlChangeListeners(this.prepareExternalUrl(Ee+B(V)),ce)}forward(){this._locationStrategy.forward()}back(){this._locationStrategy.back()}historyGo(Ee=0){this._locationStrategy.historyGo?.(Ee)}onUrlChange(Ee){return this._urlChangeListeners.push(Ee),this._urlChangeSubscription??=this.subscribe(V=>{this._notifyUrlChangeListeners(V.url,V.state)}),()=>{const V=this._urlChangeListeners.indexOf(Ee);this._urlChangeListeners.splice(V,1),0===this._urlChangeListeners.length&&(this._urlChangeSubscription?.unsubscribe(),this._urlChangeSubscription=null)}}_notifyUrlChangeListeners(Ee="",V){this._urlChangeListeners.forEach(ce=>ce(Ee,V))}subscribe(Ee,V,ce){return this._subject.subscribe({next:Ee,error:V??void 0,complete:ce??void 0})}static normalizeQueryParams=B;static joinWithSlash=L;static stripTrailingSlash=C;static \u0275fac=function(V){return new(V||re)(i.KVO(A))};static \u0275prov=i.jDH({token:re,factory:()=>function Ae(){return new Ce((0,i.KVO)(A))}(),providedIn:"root"})}return re})();function W(re){return re.replace(/\/index.html$/,"")}},9330(Zt,pe,l){"use strict";l.d(pe,{$R:()=>Yi,Nl:()=>De,Qq:()=>Qe,Sx:()=>we,ZZ:()=>fi,a7:()=>pt,q1:()=>Qi});var O=l(467),f=l(2615),u=l(3664),L=l(274),C=l(5964),B=l(980),A=l(6354),Pe=l(5558),le=l(1985),Ae=(l(2806),l(7673)),j=l(2512);class W{}class G{}class re{headers;normalizedNames=new Map;lazyInit;lazyUpdate=null;constructor(an){an?"string"==typeof an?this.lazyInit=()=>{this.headers=new Map,an.split("\n").forEach(Yt=>{const Un=Yt.indexOf(":");if(Un>0){const zn=Yt.slice(0,Un),Fn=Yt.slice(Un+1).trim();this.addHeaderEntry(zn,Fn)}})}:typeof Headers<"u"&&an instanceof Headers?(this.headers=new Map,an.forEach((Yt,Un)=>{this.addHeaderEntry(Un,Yt)})):this.lazyInit=()=>{this.headers=new Map,Object.entries(an).forEach(([Yt,Un])=>{this.setHeaderEntries(Yt,Un)})}:this.headers=new Map}has(an){return this.init(),this.headers.has(an.toLowerCase())}get(an){this.init();const Yt=this.headers.get(an.toLowerCase());return Yt&&Yt.length>0?Yt[0]:null}keys(){return this.init(),Array.from(this.normalizedNames.values())}getAll(an){return this.init(),this.headers.get(an.toLowerCase())||null}append(an,Yt){return this.clone({name:an,value:Yt,op:"a"})}set(an,Yt){return this.clone({name:an,value:Yt,op:"s"})}delete(an,Yt){return this.clone({name:an,value:Yt,op:"d"})}maybeSetNormalizedName(an,Yt){this.normalizedNames.has(Yt)||this.normalizedNames.set(Yt,an)}init(){this.lazyInit&&(this.lazyInit instanceof re?this.copyFrom(this.lazyInit):this.lazyInit(),this.lazyInit=null,this.lazyUpdate&&(this.lazyUpdate.forEach(an=>this.applyUpdate(an)),this.lazyUpdate=null))}copyFrom(an){an.init(),Array.from(an.headers.keys()).forEach(Yt=>{this.headers.set(Yt,an.headers.get(Yt)),this.normalizedNames.set(Yt,an.normalizedNames.get(Yt))})}clone(an){const Yt=new re;return Yt.lazyInit=this.lazyInit&&this.lazyInit instanceof re?this.lazyInit:this,Yt.lazyUpdate=(this.lazyUpdate||[]).concat([an]),Yt}applyUpdate(an){const Yt=an.name.toLowerCase();switch(an.op){case"a":case"s":let Un=an.value;if("string"==typeof Un&&(Un=[Un]),0===Un.length)return;this.maybeSetNormalizedName(an.name,Yt);const zn=("a"===an.op?this.headers.get(Yt):void 0)||[];zn.push(...Un),this.headers.set(Yt,zn);break;case"d":const Fn=an.value;if(Fn){let ci=this.headers.get(Yt);if(!ci)return;ci=ci.filter(rn=>-1===Fn.indexOf(rn)),0===ci.length?(this.headers.delete(Yt),this.normalizedNames.delete(Yt)):this.headers.set(Yt,ci)}else this.headers.delete(Yt),this.normalizedNames.delete(Yt)}}addHeaderEntry(an,Yt){const Un=an.toLowerCase();this.maybeSetNormalizedName(an,Un),this.headers.has(Un)?this.headers.get(Un).push(Yt):this.headers.set(Un,[Yt])}setHeaderEntries(an,Yt){const Un=(Array.isArray(Yt)?Yt:[Yt]).map(Fn=>Fn.toString()),zn=an.toLowerCase();this.headers.set(zn,Un),this.maybeSetNormalizedName(an,zn)}forEach(an){this.init(),Array.from(this.normalizedNames.keys()).forEach(Yt=>an(this.normalizedNames.get(Yt),this.headers.get(Yt)))}}class Ee{encodeKey(an){return ne(an)}encodeValue(an){return ne(an)}decodeKey(an){return decodeURIComponent(an)}decodeValue(an){return decodeURIComponent(an)}}const ce=/%(\d[a-f0-9])/gi,be={40:"@","3A":":",24:"$","2C":",","3B":";","3D":"=","3F":"?","2F":"/"};function ne(It){return encodeURIComponent(It).replace(ce,(an,Yt)=>be[Yt]??an)}function J(It){return`${It}`}class De{map;encoder;updates=null;cloneFrom=null;constructor(an={}){if(this.encoder=an.encoder||new Ee,an.fromString){if(an.fromObject)throw new f.buA(2805,!1);this.map=function V(It,an){const Yt=new Map;return It.length>0&&It.replace(/^\?/,"").split("&").forEach(zn=>{const Fn=zn.indexOf("="),[ci,rn]=-1==Fn?[an.decodeKey(zn),""]:[an.decodeKey(zn.slice(0,Fn)),an.decodeValue(zn.slice(Fn+1))],In=Yt.get(ci)||[];In.push(rn),Yt.set(ci,In)}),Yt}(an.fromString,this.encoder)}else an.fromObject?(this.map=new Map,Object.keys(an.fromObject).forEach(Yt=>{const Un=an.fromObject[Yt],zn=Array.isArray(Un)?Un.map(J):[J(Un)];this.map.set(Yt,zn)})):this.map=null}has(an){return this.init(),this.map.has(an)}get(an){this.init();const Yt=this.map.get(an);return Yt?Yt[0]:null}getAll(an){return this.init(),this.map.get(an)||null}keys(){return this.init(),Array.from(this.map.keys())}append(an,Yt){return this.clone({param:an,value:Yt,op:"a"})}appendAll(an){const Yt=[];return Object.keys(an).forEach(Un=>{const zn=an[Un];Array.isArray(zn)?zn.forEach(Fn=>{Yt.push({param:Un,value:Fn,op:"a"})}):Yt.push({param:Un,value:zn,op:"a"})}),this.clone(Yt)}set(an,Yt){return this.clone({param:an,value:Yt,op:"s"})}delete(an,Yt){return this.clone({param:an,value:Yt,op:"d"})}toString(){return this.init(),this.keys().map(an=>{const Yt=this.encoder.encodeKey(an);return this.map.get(an).map(Un=>Yt+"="+this.encoder.encodeValue(Un)).join("&")}).filter(an=>""!==an).join("&")}clone(an){const Yt=new De({encoder:this.encoder});return Yt.cloneFrom=this.cloneFrom||this,Yt.updates=(this.updates||[]).concat(an),Yt}init(){null===this.map&&(this.map=new Map),null!==this.cloneFrom&&(this.cloneFrom.init(),this.cloneFrom.keys().forEach(an=>this.map.set(an,this.cloneFrom.map.get(an))),this.updates.forEach(an=>{switch(an.op){case"a":case"s":const Yt=("a"===an.op?this.map.get(an.param):void 0)||[];Yt.push(J(an.value)),this.map.set(an.param,Yt);break;case"d":if(void 0===an.value){this.map.delete(an.param);break}{let Un=this.map.get(an.param)||[];const zn=Un.indexOf(J(an.value));-1!==zn&&Un.splice(zn,1),Un.length>0?this.map.set(an.param,Un):this.map.delete(an.param)}}}),this.cloneFrom=this.updates=null)}}class Xe{map=new Map;set(an,Yt){return this.map.set(an,Yt),this}get(an){return this.map.has(an)||this.map.set(an,an.defaultValue()),this.map.get(an)}delete(an){return this.map.delete(an),this}has(an){return this.map.has(an)}keys(){return this.map.keys()}}function he(It){return typeof ArrayBuffer<"u"&&It instanceof ArrayBuffer}function Dt(It){return typeof Blob<"u"&&It instanceof Blob}function lt(It){return typeof FormData<"u"&&It instanceof FormData}const te="Content-Type",ie="Accept",P="X-Request-URL",F="text/plain",ve="application/json",H=`${ve}, ${F}, */*`;class ${url;body=null;headers;context;reportProgress=!1;withCredentials=!1;credentials;keepalive=!1;cache;priority;mode;redirect;referrer;integrity;responseType="json";method;params;urlWithParams;transferCache;timeout;constructor(an,Yt,Un,zn){let Fn;if(this.url=Yt,this.method=an.toUpperCase(),function _e(It){switch(It){case"DELETE":case"GET":case"HEAD":case"OPTIONS":case"JSONP":return!1;default:return!0}}(this.method)||zn?(this.body=void 0!==Un?Un:null,Fn=zn):Fn=Un,Fn){if(this.reportProgress=!!Fn.reportProgress,this.withCredentials=!!Fn.withCredentials,this.keepalive=!!Fn.keepalive,Fn.responseType&&(this.responseType=Fn.responseType),Fn.headers&&(this.headers=Fn.headers),Fn.context&&(this.context=Fn.context),Fn.params&&(this.params=Fn.params),Fn.priority&&(this.priority=Fn.priority),Fn.cache&&(this.cache=Fn.cache),Fn.credentials&&(this.credentials=Fn.credentials),"number"==typeof Fn.timeout){if(Fn.timeout<1||!Number.isInteger(Fn.timeout))throw new f.buA(2822,"");this.timeout=Fn.timeout}Fn.mode&&(this.mode=Fn.mode),Fn.redirect&&(this.redirect=Fn.redirect),Fn.integrity&&(this.integrity=Fn.integrity),void 0!==Fn.referrer&&(this.referrer=Fn.referrer),this.transferCache=Fn.transferCache}if(this.headers??=new re,this.context??=new Xe,this.params){const ci=this.params.toString();if(0===ci.length)this.urlWithParams=Yt;else{const rn=Yt.indexOf("?");this.urlWithParams=Yt+(-1===rn?"?":rnRn.set(Hn,an.setHeaders[Hn]),En)),an.setParams&&(Wn=Object.keys(an.setParams).reduce((Rn,Hn)=>Rn.set(Hn,an.setParams[Hn]),Wn)),new $(Yt,Un,fa,{params:Wn,headers:En,context:ri,reportProgress:qt,responseType:zn,withCredentials:ha,transferCache:ia,keepalive:Fn,cache:rn,priority:ci,timeout:ra,mode:In,redirect:Mn,credentials:Vn,referrer:ii,integrity:Bn})}}var Ke=function(It){return It[It.Sent=0]="Sent",It[It.UploadProgress=1]="UploadProgress",It[It.ResponseHeader=2]="ResponseHeader",It[It.DownloadProgress=3]="DownloadProgress",It[It.Response=4]="Response",It[It.User=5]="User",It}(Ke||{});class Vt{headers;status;statusText;url;ok;type;redirected;constructor(an,Yt=200,Un="OK"){this.headers=an.headers||new re,this.status=void 0!==an.status?an.status:Yt,this.statusText=an.statusText||Un,this.url=an.url||null,this.redirected=an.redirected,this.ok=this.status>=200&&this.status<300}}class St extends Vt{constructor(an={}){super(an)}type=Ke.ResponseHeader;clone(an={}){return new St({headers:an.headers||this.headers,status:void 0!==an.status?an.status:this.status,statusText:an.statusText||this.statusText,url:an.url||this.url||void 0})}}class ot extends Vt{body;constructor(an={}){super(an),this.body=void 0!==an.body?an.body:null}type=Ke.Response;clone(an={}){return new ot({body:void 0!==an.body?an.body:this.body,headers:an.headers||this.headers,status:void 0!==an.status?an.status:this.status,statusText:an.statusText||this.statusText,url:an.url||this.url||void 0,redirected:an.redirected??this.redirected})}}class nt extends Vt{name="HttpErrorResponse";message;error;ok=!1;constructor(an){super(an,0,"Unknown Error"),this.message=this.status>=200&&this.status<300?`Http failure during parsing for ${an.url||"(unknown url)"}`:`Http failure response for ${an.url||"(unknown url)"}: ${an.status} ${an.statusText}`,this.error=an.error||null}}function fe(It,an){return{body:an,headers:It.headers,context:It.context,observe:It.observe,params:It.params,reportProgress:It.reportProgress,responseType:It.responseType,withCredentials:It.withCredentials,credentials:It.credentials,transferCache:It.transferCache,timeout:It.timeout,keepalive:It.keepalive,priority:It.priority,cache:It.cache,mode:It.mode,redirect:It.redirect,integrity:It.integrity,referrer:It.referrer}}let Qe=(()=>{class It{handler;constructor(Yt){this.handler=Yt}request(Yt,Un,zn={}){let Fn;if(Yt instanceof $)Fn=Yt;else{let In,Mn;In=zn.headers instanceof re?zn.headers:new re(zn.headers),zn.params&&(Mn=zn.params instanceof De?zn.params:new De({fromObject:zn.params})),Fn=new $(Yt,Un,void 0!==zn.body?zn.body:null,{headers:In,context:zn.context,params:Mn,reportProgress:zn.reportProgress,responseType:zn.responseType||"json",withCredentials:zn.withCredentials,transferCache:zn.transferCache,keepalive:zn.keepalive,priority:zn.priority,cache:zn.cache,mode:zn.mode,redirect:zn.redirect,credentials:zn.credentials,referrer:zn.referrer,integrity:zn.integrity,timeout:zn.timeout})}const ci=(0,Ae.of)(Fn).pipe((0,L.H)(In=>this.handler.handle(In)));if(Yt instanceof $||"events"===zn.observe)return ci;const rn=ci.pipe((0,C.p)(In=>In instanceof ot));switch(zn.observe||"body"){case"body":switch(Fn.responseType){case"arraybuffer":return rn.pipe((0,A.T)(In=>{if(null!==In.body&&!(In.body instanceof ArrayBuffer))throw new f.buA(2806,!1);return In.body}));case"blob":return rn.pipe((0,A.T)(In=>{if(null!==In.body&&!(In.body instanceof Blob))throw new f.buA(2807,!1);return In.body}));case"text":return rn.pipe((0,A.T)(In=>{if(null!==In.body&&"string"!=typeof In.body)throw new f.buA(2808,!1);return In.body}));default:return rn.pipe((0,A.T)(In=>In.body))}case"response":return rn;default:throw new f.buA(2809,!1)}}delete(Yt,Un={}){return this.request("DELETE",Yt,Un)}get(Yt,Un={}){return this.request("GET",Yt,Un)}head(Yt,Un={}){return this.request("HEAD",Yt,Un)}jsonp(Yt,Un){return this.request("JSONP",Yt,{params:(new De).append(Un,"JSONP_CALLBACK"),observe:"body",responseType:"json"})}options(Yt,Un={}){return this.request("OPTIONS",Yt,Un)}patch(Yt,Un,zn={}){return this.request("PATCH",Yt,fe(zn,Un))}post(Yt,Un,zn={}){return this.request("POST",Yt,fe(zn,Un))}put(Yt,Un,zn={}){return this.request("PUT",Yt,fe(zn,Un))}static \u0275fac=function(Un){return new(Un||It)(f.KVO(W))};static \u0275prov=f.jDH({token:It,factory:It.\u0275fac})}return It})();const gt=/^\)\]\}',?\n/;function Gt(It){if(It.url)return It.url;const an=P.toLocaleLowerCase();return It.headers.get(an)}const rt=new f.nKC("");let cn=(()=>{class It{fetchImpl=(0,f.WQX)(Ft,{optional:!0})?.fetch??((...Yt)=>globalThis.fetch(...Yt));ngZone=(0,f.WQX)(u.SKi);destroyRef=(0,f.WQX)(f.abz);handle(Yt){return new le.c(Un=>{const zn=new AbortController;let Fn;return this.doRequest(Yt,zn.signal,Un).then(Sn,ci=>Un.error(new nt({error:ci}))),Yt.timeout&&(Fn=this.ngZone.runOutsideAngular(()=>setTimeout(()=>{zn.signal.aborted||zn.abort(new DOMException("signal timed out","TimeoutError"))},Yt.timeout))),()=>{void 0!==Fn&&clearTimeout(Fn),zn.abort()}})}doRequest(Yt,Un,zn){var Fn=this;return(0,O.A)(function*(){const ci=Fn.createRequestInit(Yt);let rn;try{const fa=Fn.ngZone.runOutsideAngular(()=>Fn.fetchImpl(Yt.urlWithParams,{signal:Un,...ci}));(function h(It){It.then(Sn,Sn)})(fa),zn.next({type:Ke.Sent}),rn=yield fa}catch(fa){return void zn.error(new nt({error:fa,status:fa.status??0,statusText:fa.statusText,url:Yt.urlWithParams,headers:fa.headers}))}const In=new re(rn.headers),Mn=rn.statusText,Vn=Gt(rn)??Yt.urlWithParams;let ii=rn.status,Bn=null;if(Yt.reportProgress&&zn.next(new St({headers:In,status:ii,statusText:Mn,url:Vn})),rn.body){const fa=rn.headers.get("content-length"),ha=[],qt=rn.body.getReader();let Wn,ri,En=0;const Rn=typeof Zone<"u"&&Zone.current;let Hn=!1;if(yield Fn.ngZone.runOutsideAngular((0,O.A)(function*(){for(;;){if(Fn.destroyRef.destroyed){yield qt.cancel(),Hn=!0;break}const{done:da,value:Ta}=yield qt.read();if(da)break;if(ha.push(Ta),En+=Ta.length,Yt.reportProgress){ri="text"===Yt.responseType?(ri??"")+(Wn??=new TextDecoder).decode(Ta,{stream:!0}):void 0;const en=()=>zn.next({type:Ke.DownloadProgress,total:fa?+fa:void 0,loaded:En,partialText:ri});Rn?Rn.run(en):en()}}})),Hn)return void zn.complete();const Pi=Fn.concatChunks(ha,En);try{const da=rn.headers.get(te)??"";Bn=Fn.parseBody(Yt,Pi,da,ii)}catch(da){return void zn.error(new nt({error:da,headers:new re(rn.headers),status:rn.status,statusText:rn.statusText,url:Gt(rn)??Yt.urlWithParams}))}}0===ii&&(ii=Bn?200:0);const ra=rn.redirected;ii>=200&&ii<300?(zn.next(new ot({body:Bn,headers:In,status:ii,statusText:Mn,url:Vn,redirected:ra})),zn.complete()):zn.error(new nt({error:Bn,headers:In,status:ii,statusText:Mn,url:Vn,redirected:ra}))})()}parseBody(Yt,Un,zn,Fn){switch(Yt.responseType){case"json":const ci=(new TextDecoder).decode(Un).replace(gt,"");if(""===ci)return null;try{return JSON.parse(ci)}catch(rn){if(Fn<200||Fn>=300)return ci;throw rn}case"text":return(new TextDecoder).decode(Un);case"blob":return new Blob([Un],{type:zn});case"arraybuffer":return Un.buffer}}createRequestInit(Yt){const Un={};let zn;if(zn=Yt.credentials,Yt.withCredentials&&(zn="include"),Yt.headers.forEach((Fn,ci)=>Un[Fn]=ci.join(",")),Yt.headers.has(ie)||(Un[ie]=H),!Yt.headers.has(te)){const Fn=Yt.detectContentTypeHeader();null!==Fn&&(Un[te]=Fn)}return{body:Yt.serializeBody(),method:Yt.method,headers:Un,credentials:zn,keepalive:Yt.keepalive,cache:Yt.cache,priority:Yt.priority,mode:Yt.mode,redirect:Yt.redirect,referrer:Yt.referrer,integrity:Yt.integrity}}concatChunks(Yt,Un){const zn=new Uint8Array(Un);let Fn=0;for(const ci of Yt)zn.set(ci,Fn),Fn+=ci.length;return zn}static \u0275fac=function(Un){return new(Un||It)};static \u0275prov=f.jDH({token:It,factory:It.\u0275fac})}return It})();class Ft{}function Sn(){}function jt(It,an){return an(It)}function Ue(It,an){return(Yt,Un)=>an.intercept(Yt,{handle:zn=>It(zn,Un)})}const pt=new f.nKC(""),Pt=new f.nKC(""),gn=new f.nKC(""),ei=new f.nKC("",{providedIn:"root",factory:()=>!0});function vi(){let It=null;return(an,Yt)=>{null===It&&(It=((0,f.WQX)(pt,{optional:!0})??[]).reduceRight(Ue,jt));const Un=(0,f.WQX)(f.u5s);if((0,f.WQX)(ei)){const Fn=Un.add();return It(an,Yt).pipe((0,B.j)(Fn))}return It(an,Yt)}}let kn=(()=>{class It extends W{backend;injector;chain=null;pendingTasks=(0,f.WQX)(f.u5s);contributeToStability=(0,f.WQX)(ei);constructor(Yt,Un){super(),this.backend=Yt,this.injector=Un}handle(Yt){if(null===this.chain){const Un=Array.from(new Set([...this.injector.get(Pt),...this.injector.get(gn,[])]));this.chain=Un.reduceRight((zn,Fn)=>function wt(It,an,Yt){return(Un,zn)=>(0,f.N4e)(Yt,()=>an(Un,Fn=>It(Fn,zn)))}(zn,Fn,this.injector),jt)}if(this.contributeToStability){const Un=this.pendingTasks.add();return this.chain(Yt,zn=>this.backend.handle(zn)).pipe((0,B.j)(Un))}return this.chain(Yt,Un=>this.backend.handle(Un))}static \u0275fac=function(Un){return new(Un||It)(f.KVO(G),f.KVO(f.uvJ))};static \u0275prov=f.jDH({token:It,factory:It.\u0275fac})}return It})();const pn=/^\)\]\}',?\n/,Je=RegExp(`^${P}:`,"m");let Ge=(()=>{class It{xhrFactory;constructor(Yt){this.xhrFactory=Yt}handle(Yt){if("JSONP"===Yt.method)throw new f.buA(-2800,!1);const Un=this.xhrFactory;return(0,Ae.of)(null).pipe((0,Pe.n)(()=>new le.c(Fn=>{const ci=Un.build();if(ci.open(Yt.method,Yt.urlWithParams),Yt.withCredentials&&(ci.withCredentials=!0),Yt.headers.forEach((ha,qt)=>ci.setRequestHeader(ha,qt.join(","))),Yt.headers.has(ie)||ci.setRequestHeader(ie,H),!Yt.headers.has(te)){const ha=Yt.detectContentTypeHeader();null!==ha&&ci.setRequestHeader(te,ha)}if(Yt.timeout&&(ci.timeout=Yt.timeout),Yt.responseType){const ha=Yt.responseType.toLowerCase();ci.responseType="json"!==ha?ha:"text"}const rn=Yt.serializeBody();let In=null;const Mn=()=>{if(null!==In)return In;const ha=ci.statusText||"OK",qt=new re(ci.getAllResponseHeaders()),En=function Be(It){return"responseURL"in It&&It.responseURL?It.responseURL:Je.test(It.getAllResponseHeaders())?It.getResponseHeader(P):null}(ci)||Yt.url;return In=new St({headers:qt,status:ci.status,statusText:ha,url:En}),In},Vn=()=>{let{headers:ha,status:qt,statusText:En,url:Wn}=Mn(),ri=null;204!==qt&&(ri=typeof ci.response>"u"?ci.responseText:ci.response),0===qt&&(qt=ri?200:0);let Rn=qt>=200&&qt<300;if("json"===Yt.responseType&&"string"==typeof ri){const Hn=ri;ri=ri.replace(pn,"");try{ri=""!==ri?JSON.parse(ri):null}catch(Pi){ri=Hn,Rn&&(Rn=!1,ri={error:Pi,text:ri})}}Rn?(Fn.next(new ot({body:ri,headers:ha,status:qt,statusText:En,url:Wn||void 0})),Fn.complete()):Fn.error(new nt({error:ri,headers:ha,status:qt,statusText:En,url:Wn||void 0}))},ii=ha=>{const{url:qt}=Mn(),En=new nt({error:ha,status:ci.status||0,statusText:ci.statusText||"Unknown Error",url:qt||void 0});Fn.error(En)};let Bn=ii;Yt.timeout&&(Bn=ha=>{const{url:qt}=Mn(),En=new nt({error:new DOMException("Request timed out","TimeoutError"),status:ci.status||0,statusText:ci.statusText||"Request timeout",url:qt||void 0});Fn.error(En)});let ia=!1;const ra=ha=>{ia||(Fn.next(Mn()),ia=!0);let qt={type:Ke.DownloadProgress,loaded:ha.loaded};ha.lengthComputable&&(qt.total=ha.total),"text"===Yt.responseType&&ci.responseText&&(qt.partialText=ci.responseText),Fn.next(qt)},fa=ha=>{let qt={type:Ke.UploadProgress,loaded:ha.loaded};ha.lengthComputable&&(qt.total=ha.total),Fn.next(qt)};return ci.addEventListener("load",Vn),ci.addEventListener("error",ii),ci.addEventListener("timeout",Bn),ci.addEventListener("abort",ii),Yt.reportProgress&&(ci.addEventListener("progress",ra),null!==rn&&ci.upload&&ci.upload.addEventListener("progress",fa)),ci.send(rn),Fn.next({type:Ke.Sent}),()=>{ci.removeEventListener("error",ii),ci.removeEventListener("abort",ii),ci.removeEventListener("load",Vn),ci.removeEventListener("timeout",Bn),Yt.reportProgress&&(ci.removeEventListener("progress",ra),null!==rn&&ci.upload&&ci.upload.removeEventListener("progress",fa)),ci.readyState!==ci.DONE&&ci.abort()}})))}static \u0275fac=function(Un){return new(Un||It)(f.KVO(j.N))};static \u0275prov=f.jDH({token:It,factory:It.\u0275fac})}return It})();const Ot=new f.nKC(""),We=new f.nKC("",{providedIn:"root",factory:()=>"XSRF-TOKEN"}),tn=new f.nKC("",{providedIn:"root",factory:()=>"X-XSRF-TOKEN"});class on{}let un=(()=>{class It{doc;cookieName;lastCookieString="";lastToken=null;parseCount=0;constructor(Yt,Un){this.doc=Yt,this.cookieName=Un}getToken(){const Yt=this.doc.cookie||"";return Yt!==this.lastCookieString&&(this.parseCount++,this.lastToken=(0,j.b)(Yt,this.cookieName),this.lastCookieString=Yt),this.lastToken}static \u0275fac=function(Un){return new(Un||It)(f.KVO(f.qQL),f.KVO(We))};static \u0275prov=f.jDH({token:It,factory:It.\u0275fac})}return It})();const Nt=/^(?:https?:)?\/\//i;function dn(It,an){if(!(0,f.WQX)(Ot)||"GET"===It.method||"HEAD"===It.method||Nt.test(It.url))return an(It);const Yt=(0,f.WQX)(on).getToken(),Un=(0,f.WQX)(tn);return null!=Yt&&!It.headers.has(Un)&&(It=It.clone({headers:It.headers.set(Un,Yt)})),an(It)}var Jn=function(It){return It[It.Interceptors=0]="Interceptors",It[It.LegacyInterceptors=1]="LegacyInterceptors",It[It.CustomXsrfConfiguration=2]="CustomXsrfConfiguration",It[It.NoXsrfProtection=3]="NoXsrfProtection",It[It.JsonpSupport=4]="JsonpSupport",It[It.RequestsMadeViaParent=5]="RequestsMadeViaParent",It[It.Fetch=6]="Fetch",It}(Jn||{});function xi(It,an){return{\u0275kind:It,\u0275providers:an}}function Yi(...It){const an=[Qe,Ge,kn,{provide:W,useExisting:kn},{provide:G,useFactory:()=>(0,f.WQX)(rt,{optional:!0})??(0,f.WQX)(Ge)},{provide:Pt,useValue:dn,multi:!0},{provide:Ot,useValue:!0},{provide:on,useClass:un}];for(const Yt of It)an.push(...Yt.\u0275providers);return(0,f.EmA)(an)}const At=new f.nKC("");function we(){return xi(Jn.LegacyInterceptors,[{provide:At,useFactory:vi},{provide:Pt,useExisting:At,multi:!0}])}function fi(){return xi(Jn.Fetch,[cn,{provide:rt,useExisting:cn},{provide:G,useExisting:cn}])}let Qi=(()=>{class It{static \u0275fac=function(Un){return new(Un||It)};static \u0275mod=u.$C({type:It});static \u0275inj=f.G2t({providers:[Yi(we())]})}return It})()},2512(Zt,pe,l){"use strict";function i(v,T){T=encodeURIComponent(T);for(const w of v.split(";")){const e=w.indexOf("="),[O,f]=-1==e?[w,""]:[w.slice(0,e),w.slice(e+1)];if(O.trim()===T)return decodeURIComponent(f)}return null}l.d(pe,{N:()=>d,b:()=>i});class d{}},7705(Zt,pe,l){"use strict";l.d(pe,{ES_:()=>Ze,HJs:()=>Io,Hbi:()=>mi,L39:()=>ai,MKu:()=>Mo,Udg:()=>Gi,_q3:()=>Ss,a0P:()=>Rl,cCO:()=>Xt,ebz:()=>As,fpN:()=>nr,gRc:()=>Oi,geq:()=>Er,hFB:()=>$a,naY:()=>Ne,oH4:()=>Xs,sbv:()=>zo,uEv:()=>Gl});var Ve=l(2615),Et=l(8440),Jt=l(3664),ti=l(9295);const di=Symbol("InputSignalNode#UNSET"),Ii={...Et.s0,transformFn:void 0,applyValueToInputSignal(yt,je){(0,Et.j2)(yt,je)}};function nn(yt,je){const ct=Object.create(Ii);function Qt(){if((0,Et.mK)(ct),ct.value===di)throw new Ve.buA(-950,null);return ct.value}return ct.value=yt,ct.transformFn=je?.transform,Qt[Et.bh]=ct,Qt}class Ze{attributeName;constructor(je){this.attributeName=je}__NG_ELEMENT_ID__=()=>(0,Jt.kS0)(this.attributeName);toString(){return`HostAttributeToken ${this.attributeName}`}}const Xt=new Ve.nKC("");function _a(yt,je){return nn(yt,je)}Xt.__NG_ELEMENT_ID__=yt=>{const je=(0,Ve.Mx4)();if(null===je)throw new Ve.buA(204,!1);if(2&je.type)return je.value;if(8&yt)return null;throw new Ve.buA(204,!1)};const $a=(_a.required=function Ua(yt){return nn(di,yt)},_a);function ns(yt,je){return(0,Jt.mU9)(je)}const As=(ns.required=function Ga(yt,je){return(0,Jt.hnC)(je)},ns);function mr(yt,je){return(0,Jt.mU9)(je)}const zo=(mr.required=function fr(yt,je){return(0,Jt.hnC)(je)},mr);function gr(yt,je){const ct=Object.create(Ii),Qt=new ti.Zf;function Pn(){return(0,Et.mK)(ct),bo(ct.value),ct.value}return ct.value=yt,Pn[Et.bh]=ct,Pn.asReadonly=Ve.HO5.bind(Pn),Pn.set=$n=>{ct.equal(ct.value,$n)||((0,Et.j2)(ct,$n),Qt.emit($n))},Pn.update=$n=>{bo(ct.value),Pn.set($n(ct.value))},Pn.subscribe=Qt.subscribe.bind(Qt),Pn.destroyRef=Qt.destroyRef,Pn}function bo(yt){if(yt===di)throw new Ve.buA(952,!1)}function Zs(yt,je){return gr(yt)}const Er=(Zs.required=function jr(yt){return gr(di)},Zs),is=new Ve.nKC(""),Hs=new Ve.nKC("");function Ws(yt){return!yt.moduleRef}let Ui;function xs(){Ui=vr}function vr(yt,je){const ct=yt.injector.get(Jt.o8S);if(yt._bootstrapComponents.length>0)yt._bootstrapComponents.forEach(Qt=>ct.bootstrap(Qt));else{if(!yt.instance.ngDoBootstrap)throw new Ve.buA(-403,!1);yt.instance.ngDoBootstrap(ct)}je.push(yt)}let Pa=(()=>{class yt{_injector;_modules=[];_destroyListeners=[];_destroyed=!1;constructor(ct){this._injector=ct}bootstrapModuleFactory(ct,Qt){const Pn=Qt?.scheduleInRootZone,Ci=Qt?.ignoreChangesOutsideZone,wi=[(0,Jt.SdI)({ngZoneFactory:()=>(0,Jt.G5x)(Qt?.ngZone,{...(0,Jt.cZr)({eventCoalescing:Qt?.ngZoneEventCoalescing,runCoalescing:Qt?.ngZoneRunCoalescing}),scheduleInRootZone:Pn}),ignoreChangesOutsideZone:Ci}),{provide:Ve.hk6,useExisting:Jt.Ts$},Ve.gv8],$i=(0,Jt.VzW)(ct.moduleType,this.injector,wi);return xs(),function Mr(yt){const je=Ws(yt)?yt.r3Injector:yt.moduleRef.injector,ct=je.get(Jt.SKi);return ct.run(()=>{Ws(yt)?yt.r3Injector.resolveInjectorInitializers():yt.moduleRef.resolveInjectorInitializers();const Qt=je.get(Ve.ZTf);let Pn;if(ct.runOutsideAngular(()=>{Pn=ct.onError.subscribe({next:Qt})}),Ws(yt)){const $n=()=>je.destroy(),Ci=yt.platformInjector.get(is);Ci.add($n),je.onDestroy(()=>{Pn.unsubscribe(),Ci.delete($n)})}else{const $n=()=>yt.moduleRef.destroy(),Ci=yt.platformInjector.get(is);Ci.add($n),yt.moduleRef.onDestroy(()=>{(0,Jt.TFI)(yt.allPlatformModules,yt.moduleRef),Pn.unsubscribe(),Ci.delete($n)})}return function qs(yt,je,ct){try{const Qt=ct();return(0,Jt.yLl)(Qt)?Qt.catch(Pn=>{throw je.runOutsideAngular(()=>yt(Pn)),Pn}):Qt}catch(Qt){throw je.runOutsideAngular(()=>yt(Qt)),Qt}}(Qt,ct,()=>{const $n=je.get(Ve.rev),Ci=$n.add(),wi=je.get(Jt.H1s);return wi.runInitializers(),wi.donePromise.then(()=>{const $i=je.get(Jt.xe9,Jt.DkB);if((0,Jt.e6s)($i||Jt.DkB),!je.get(Hs,!0))return Ws(yt)?je.get(Jt.o8S):(yt.allPlatformModules.push(yt.moduleRef),yt.moduleRef);if(Ws(yt)){const va=je.get(Jt.o8S);return void 0!==yt.rootComponent&&va.bootstrap(yt.rootComponent),va}return Ui?.(yt.moduleRef,yt.allPlatformModules),yt.moduleRef}).finally(()=>{$n.remove(Ci)})})})}({moduleRef:$i,allPlatformModules:this._modules,platformInjector:this.injector})}bootstrapModule(ct,Qt=[]){const Pn=(0,Jt.lJT)({},Qt);return xs(),function qo(yt,je,ct){const Qt=new Jt.Co$(ct);return Promise.resolve(Qt)}(0,0,ct).then($n=>this.bootstrapModuleFactory($n,Pn))}onDestroy(ct){this._destroyListeners.push(ct)}get injector(){return this._injector}destroy(){if(this._destroyed)throw new Ve.buA(404,!1);this._modules.slice().forEach(Qt=>Qt.destroy()),this._destroyListeners.forEach(Qt=>Qt());const ct=this._injector.get(is,null);ct&&(ct.forEach(Qt=>Qt()),ct.clear()),this._destroyed=!0}get destroyed(){return this._destroyed}static \u0275fac=function(Qt){return new(Qt||yt)((0,Ve.KVO)(Ve.zZn))};static \u0275prov=(0,Ve.jDH)({token:yt,factory:yt.\u0275fac,providedIn:"platform"})}return yt})(),yr=null;function Xs(yt,je,ct=[]){const Qt=`Platform: ${je}`,Pn=new Ve.nKC(Qt);return($n=[])=>{let Ci=Za();if(!Ci){const wi=[...ct,...$n,{provide:Pn,useValue:!0}];Ci=yt?.(wi)??function er(yt){if(Za())throw new Ve.buA(400,!1);(0,Jt.pl0)(),(0,Jt.ypd)(),yr=yt;const je=yt.get(Pa);return function Hr(yt){const je=yt.get(Jt.PLl,null);(0,Ve.N4e)(yt,()=>{je?.forEach(ct=>ct())})}(yt),je}(function wa(yt=[],je){return Ve.zZn.create({name:je,providers:[{provide:Ve.GBX,useValue:"platform"},{provide:is,useValue:new Set([()=>yr=null])},...yt]})}(wi,Qt))}return function ja(){const je=Za();if(!je)throw new Ve.buA(-401,!1);return je}()}}function Za(){return yr?.get(Pa)??null}function Ne(){return!1}let Oi=(()=>class yt{static __NG_ELEMENT_ID__=ua})();function ua(yt){return function Es(yt,je,ct){if((0,Ve.Qs1)(yt)&&!ct){const Qt=(0,Ve.KdJ)(yt.index,je);return new Jt.NCX(Qt,Qt)}return 175&yt.type?new Jt.NCX(je[Ve.b5C],je):null}((0,Ve.Mx4)(),(0,Ve.OAn)(),!(16&~yt))}class $e{constructor(){}supports(je){return(0,Jt.ozJ)(je)}create(je){return new Ln(je)}}const mn=(yt,je)=>je;class Ln{length=0;collection;_linkedRecords=null;_unlinkedRecords=null;_previousItHead=null;_itHead=null;_itTail=null;_additionsHead=null;_additionsTail=null;_movesHead=null;_movesTail=null;_removalsHead=null;_removalsTail=null;_identityChangesHead=null;_identityChangesTail=null;_trackByFn;constructor(je){this._trackByFn=je||mn}forEachItem(je){let ct;for(ct=this._itHead;null!==ct;ct=ct._next)je(ct)}forEachOperation(je){let ct=this._itHead,Qt=this._removalsHead,Pn=0,$n=null;for(;ct||Qt;){const Ci=!Qt||ct&&ct.currentIndex{Ci=this._trackByFn(Pn,wi),null!==ct&&Object.is(ct.trackById,Ci)?(Qt&&(ct=this._verifyReinsertion(ct,wi,Ci,Pn)),Object.is(ct.item,wi)||this._addIdentityChange(ct,wi)):(ct=this._mismatch(ct,wi,Ci,Pn),Qt=!0),ct=ct._next,Pn++}),this.length=Pn;return this._truncate(ct),this.collection=je,this.isDirty}get isDirty(){return null!==this._additionsHead||null!==this._movesHead||null!==this._removalsHead||null!==this._identityChangesHead}_reset(){if(this.isDirty){let je;for(je=this._previousItHead=this._itHead;null!==je;je=je._next)je._nextPrevious=je._next;for(je=this._additionsHead;null!==je;je=je._nextAdded)je.previousIndex=je.currentIndex;for(this._additionsHead=this._additionsTail=null,je=this._movesHead;null!==je;je=je._nextMoved)je.previousIndex=je.currentIndex;this._movesHead=this._movesTail=null,this._removalsHead=this._removalsTail=null,this._identityChangesHead=this._identityChangesTail=null}}_mismatch(je,ct,Qt,Pn){let $n;return null===je?$n=this._itTail:($n=je._prev,this._remove(je)),null!==(je=null===this._unlinkedRecords?null:this._unlinkedRecords.get(Qt,null))?(Object.is(je.item,ct)||this._addIdentityChange(je,ct),this._reinsertAfter(je,$n,Pn)):null!==(je=null===this._linkedRecords?null:this._linkedRecords.get(Qt,Pn))?(Object.is(je.item,ct)||this._addIdentityChange(je,ct),this._moveAfter(je,$n,Pn)):je=this._addAfter(new Ei(ct,Qt),$n,Pn),je}_verifyReinsertion(je,ct,Qt,Pn){let $n=null===this._unlinkedRecords?null:this._unlinkedRecords.get(Qt,null);return null!==$n?je=this._reinsertAfter($n,je._prev,Pn):je.currentIndex!=Pn&&(je.currentIndex=Pn,this._addToMoves(je,Pn)),je}_truncate(je){for(;null!==je;){const ct=je._next;this._addToRemovals(this._unlink(je)),je=ct}null!==this._unlinkedRecords&&this._unlinkedRecords.clear(),null!==this._additionsTail&&(this._additionsTail._nextAdded=null),null!==this._movesTail&&(this._movesTail._nextMoved=null),null!==this._itTail&&(this._itTail._next=null),null!==this._removalsTail&&(this._removalsTail._nextRemoved=null),null!==this._identityChangesTail&&(this._identityChangesTail._nextIdentityChange=null)}_reinsertAfter(je,ct,Qt){null!==this._unlinkedRecords&&this._unlinkedRecords.remove(je);const Pn=je._prevRemoved,$n=je._nextRemoved;return null===Pn?this._removalsHead=$n:Pn._nextRemoved=$n,null===$n?this._removalsTail=Pn:$n._prevRemoved=Pn,this._insertAfter(je,ct,Qt),this._addToMoves(je,Qt),je}_moveAfter(je,ct,Qt){return this._unlink(je),this._insertAfter(je,ct,Qt),this._addToMoves(je,Qt),je}_addAfter(je,ct,Qt){return this._insertAfter(je,ct,Qt),this._additionsTail=null===this._additionsTail?this._additionsHead=je:this._additionsTail._nextAdded=je,je}_insertAfter(je,ct,Qt){const Pn=null===ct?this._itHead:ct._next;return je._next=Pn,je._prev=ct,null===Pn?this._itTail=je:Pn._prev=je,null===ct?this._itHead=je:ct._next=je,null===this._linkedRecords&&(this._linkedRecords=new cs),this._linkedRecords.put(je),je.currentIndex=Qt,je}_remove(je){return this._addToRemovals(this._unlink(je))}_unlink(je){null!==this._linkedRecords&&this._linkedRecords.remove(je);const ct=je._prev,Qt=je._next;return null===ct?this._itHead=Qt:ct._next=Qt,null===Qt?this._itTail=ct:Qt._prev=ct,je}_addToMoves(je,ct){return je.previousIndex===ct||(this._movesTail=null===this._movesTail?this._movesHead=je:this._movesTail._nextMoved=je),je}_addToRemovals(je){return null===this._unlinkedRecords&&(this._unlinkedRecords=new cs),this._unlinkedRecords.put(je),je.currentIndex=null,je._nextRemoved=null,null===this._removalsTail?(this._removalsTail=this._removalsHead=je,je._prevRemoved=null):(je._prevRemoved=this._removalsTail,this._removalsTail=this._removalsTail._nextRemoved=je),je}_addIdentityChange(je,ct){return je.item=ct,this._identityChangesTail=null===this._identityChangesTail?this._identityChangesHead=je:this._identityChangesTail._nextIdentityChange=je,je}}class Ei{item;trackById;currentIndex=null;previousIndex=null;_nextPrevious=null;_prev=null;_next=null;_prevDup=null;_nextDup=null;_prevRemoved=null;_nextRemoved=null;_nextAdded=null;_nextMoved=null;_nextIdentityChange=null;constructor(je,ct){this.item=je,this.trackById=ct}}class xa{_head=null;_tail=null;add(je){null===this._head?(this._head=this._tail=je,je._nextDup=null,je._prevDup=null):(this._tail._nextDup=je,je._prevDup=this._tail,je._nextDup=null,this._tail=je)}get(je,ct){let Qt;for(Qt=this._head;null!==Qt;Qt=Qt._nextDup)if((null===ct||ct<=Qt.currentIndex)&&Object.is(Qt.trackById,je))return Qt;return null}remove(je){const ct=je._prevDup,Qt=je._nextDup;return null===ct?this._head=Qt:ct._nextDup=Qt,null===Qt?this._tail=ct:Qt._prevDup=ct,null===this._head}}class cs{map=new Map;put(je){const ct=je.trackById;let Qt=this.map.get(ct);Qt||(Qt=new xa,this.map.set(ct,Qt)),Qt.add(je)}get(je,ct){const Pn=this.map.get(je);return Pn?Pn.get(je,ct):null}remove(je){const ct=je.trackById;return this.map.get(ct).remove(je)&&this.map.delete(ct),je}get isEmpty(){return 0===this.map.size}clear(){this.map.clear()}}function qr(yt,je,ct){const Qt=yt.previousIndex;if(null===Qt)return Qt;let Pn=0;return ct&&Qt{if(ct&&ct.key===Pn)this._maybeAddToChanges(ct,Qt),this._appendAfter=ct,ct=ct._next;else{const $n=this._getOrCreateRecordForKey(Pn,Qt);ct=this._insertBeforeOrAppend(ct,$n)}}),ct){ct._prev&&(ct._prev._next=null),this._removalsHead=ct;for(let Qt=ct;null!==Qt;Qt=Qt._nextRemoved)Qt===this._mapHead&&(this._mapHead=null),this._records.delete(Qt.key),Qt._nextRemoved=Qt._next,Qt.previousValue=Qt.currentValue,Qt.currentValue=null,Qt._prev=null,Qt._next=null}return this._changesTail&&(this._changesTail._nextChanged=null),this._additionsTail&&(this._additionsTail._nextAdded=null),this.isDirty}_insertBeforeOrAppend(je,ct){if(je){const Qt=je._prev;return ct._next=je,ct._prev=Qt,je._prev=ct,Qt&&(Qt._next=ct),je===this._mapHead&&(this._mapHead=ct),this._appendAfter=je,je}return this._appendAfter?(this._appendAfter._next=ct,ct._prev=this._appendAfter):this._mapHead=ct,this._appendAfter=ct,null}_getOrCreateRecordForKey(je,ct){if(this._records.has(je)){const Pn=this._records.get(je);this._maybeAddToChanges(Pn,ct);const $n=Pn._prev,Ci=Pn._next;return $n&&($n._next=Ci),Ci&&(Ci._prev=$n),Pn._next=null,Pn._prev=null,Pn}const Qt=new el(je);return this._records.set(je,Qt),Qt.currentValue=ct,this._addToAdditions(Qt),Qt}_reset(){if(this.isDirty){let je;for(this._previousMapHead=this._mapHead,je=this._previousMapHead;null!==je;je=je._next)je._nextPrevious=je._next;for(je=this._changesHead;null!==je;je=je._nextChanged)je.previousValue=je.currentValue;for(je=this._additionsHead;null!=je;je=je._nextAdded)je.previousValue=je.currentValue;this._changesHead=this._changesTail=null,this._additionsHead=this._additionsTail=null,this._removalsHead=null}}_maybeAddToChanges(je,ct){Object.is(ct,je.currentValue)||(je.previousValue=je.currentValue,je.currentValue=ct,this._addToChanges(je))}_addToAdditions(je){null===this._additionsHead?this._additionsHead=this._additionsTail=je:(this._additionsTail._nextAdded=je,this._additionsTail=je)}_addToChanges(je){null===this._changesHead?this._changesHead=this._changesTail=je:(this._changesTail._nextChanged=je,this._changesTail=je)}_forEach(je,ct){je instanceof Map?je.forEach(ct):Object.keys(je).forEach(Qt=>ct(je[Qt],Qt))}}class el{key;previousValue=null;currentValue=null;_nextPrevious=null;_next=null;_prev=null;_nextAdded=null;_nextRemoved=null;_nextChanged=null;constructor(je){this.key=je}}function Ml(){return new Ss([new $e])}let Ss=(()=>{class yt{factories;static \u0275prov=(0,Ve.jDH)({token:yt,providedIn:"root",factory:Ml});constructor(ct){this.factories=ct}static create(ct,Qt){if(null!=Qt){const Pn=Qt.factories.slice();ct=ct.concat(Pn)}return new yt(ct)}static extend(ct){return{provide:yt,useFactory:()=>{const Qt=(0,Ve.WQX)(yt,{optional:!0,skipSelf:!0});return yt.create(ct,Qt||Ml())}}}find(ct){const Qt=this.factories.find(Pn=>Pn.supports(ct));if(null!=Qt)return Qt;throw new Ve.buA(901,!1)}}return yt})();function Eo(){return new Mo([new xo])}let Mo=(()=>{class yt{static \u0275prov=(0,Ve.jDH)({token:yt,providedIn:"root",factory:Eo});factories;constructor(ct){this.factories=ct}static create(ct,Qt){if(Qt){const Pn=Qt.factories.slice();ct=ct.concat(Pn)}return new yt(ct)}static extend(ct){return{provide:yt,useFactory:()=>{const Qt=(0,Ve.WQX)(yt,{optional:!0,skipSelf:!0});return yt.create(ct,Qt||Eo())}}}find(ct){const Qt=this.factories.find(Pn=>Pn.supports(ct));if(Qt)return Qt;throw new Ve.buA(901,!1)}}return yt})();const nr=Xs(null,"core",[]);let mi=(()=>{class yt{constructor(ct){}static \u0275fac=function(Qt){return new(Qt||yt)((0,Ve.KVO)(Jt.o8S))};static \u0275mod=(0,Jt.$C)({type:yt});static \u0275inj=(0,Ve.G2t)({})}return yt})();function ai(yt){return"boolean"==typeof yt?yt:null!=yt&&"false"!==yt}function Gi(yt,je=NaN){return isNaN(parseFloat(yt))||isNaN(Number(yt))?je:Number(yt)}const vl=Symbol("NOT_SET"),al=new Set,Lo={...Et.s0,consumerIsAlwaysLive:!0,consumerAllowSignalWrites:!0,value:vl,cleanup:null,consumerMarkedDirty(){if(this.sequence.impl.executing){if(null===this.sequence.lastPhase||this.sequence.lastPhase((0,Et.mK)(sa),sa.value),sa.signal[Et.bh]=sa,sa.registerCleanupFn=va=>(sa.cleanup??=new Set).add(va),this.nodes[wi]=sa,this.hooks[wi]=va=>sa.phaseFn(va)}}afterRun(){super.afterRun(),this.lastPhase=null}destroy(){super.destroy();for(const je of this.nodes)if(je)try{for(const ct of je.cleanup??al)ct()}finally{(0,Et.XR)(je)}}}function Gl(yt,je){const ct=je?.injector??(0,Ve.WQX)(Ve.zZn),Qt=ct.get(Ve.hk6),Pn=ct.get(Jt.cf$),$n=ct.get(Jt.a8H,null,{optional:!0});Pn.impl??=ct.get(Jt.ziy);let Ci=yt;"function"==typeof Ci&&(Ci={mixedReadWrite:yt});const wi=ct.get(Ve.r4V,null,{optional:!0}),$i=new Ol(Pn.impl,[Ci.earlyRead,Ci.write,Ci.mixedReadWrite,Ci.read],wi?.view,Qt,ct,$n?.snapshot(null));return Pn.impl.register($i),$i}function Rl(yt,je){const ct=(0,Ve.xUg)(yt),Qt=je.elementInjector||(0,Ve.WB9)();return new Jt.eHC(ct).create(Qt,je.projectableNodes,je.hostElement,je.environmentInjector,je.directives,je.bindings)}function Io(yt){const je=(0,Ve.xUg)(yt);if(!je)return null;const ct=new Jt.eHC(je);return{get selector(){return ct.selector},get type(){return ct.componentType},get inputs(){return ct.inputs},get outputs(){return ct.outputs},get ngContentSelectors(){return ct.ngContentSelectors},get isStandalone(){return je.standalone},get isSignal(){return je.signals}}}},3664(Zt,pe,l){"use strict";l.d(pe,{$C:()=>_p,$Ln:()=>c_,AVh:()=>Ph,Ab1:()=>Xd,Agw:()=>Go,Avn:()=>mf,B1s:()=>si,BIS:()=>jo,BMQ:()=>Yp,C4Q:()=>U1,C5r:()=>Y6,C6U:()=>D8,C7A:()=>Os,Co$:()=>mp,DH7:()=>r5,DNE:()=>ph,DUP:()=>bl,DkB:()=>u6,Dyx:()=>W_,E5c:()=>B6,EFF:()=>Nh,EJ8:()=>zm,FsC:()=>Bm,FuF:()=>km,G5x:()=>Pc,GBs:()=>M8,H1s:()=>Bp,HbH:()=>B8,Hgh:()=>a6,JRh:()=>F6,Jt5:()=>d6,Jv_:()=>g5,KED:()=>z9,LHq:()=>Ef,Lme:()=>N6,NAR:()=>E8,NCX:()=>o1,NOj:()=>Q0,NSC:()=>S0,NYb:()=>C7,NyB:()=>w8,OA$:()=>tn,OR8:()=>zc,Ocv:()=>dy,Ol2:()=>Nm,PLl:()=>Uo,PYC:()=>Cn,PYt:()=>hl,PeT:()=>gh,QTQ:()=>ho,Ql9:()=>ay,R50:()=>V6,R7$:()=>t1,RPW:()=>_t,RV6:()=>Q_,SKi:()=>ms,SdG:()=>E6,SdI:()=>Z5,SpI:()=>Bh,TFI:()=>Eh,Ts$:()=>ag,UQu:()=>iy,V5L:()=>kf,VBU:()=>pp,VeQ:()=>Tl,VkB:()=>u5,Vt3:()=>uh,VwU:()=>bf,VzW:()=>fp,WPN:()=>lr,XpG:()=>C8,Xx1:()=>ye,Y8G:()=>lf,YEm:()=>ds,Z7z:()=>j_,Zhj:()=>lp,_9s:()=>xl,_9u:()=>zl,_jY:()=>Yr,_qm:()=>jr,_ys:()=>i1,a8H:()=>rc,aCM:()=>st,aKT:()=>Ps,ai1:()=>h5,bIt:()=>yf,bMT:()=>I5,bVm:()=>b4,bc$:()=>Tr,bkB:()=>oc,brH:()=>k5,c1b:()=>$o,cDI:()=>ks,cZr:()=>tg,cdK:()=>u_,cf$:()=>Sd,czy:()=>A1,d80:()=>sy,dOL:()=>l_,e6s:()=>bv,eHC:()=>c0,eq3:()=>Tf,eu8:()=>r6,eux:()=>y4,fX1:()=>G_,gXe:()=>Bi,giA:()=>$m,gil:()=>_s,hnC:()=>Qr,i5U:()=>K6,iLQ:()=>m_,iWE:()=>ft,j41:()=>Ih,jOp:()=>Kp,k0s:()=>cf,kBR:()=>c6,kS0:()=>_a,kdw:()=>Se,lJ4:()=>b5,lJT:()=>p_,l_i:()=>C5,lsd:()=>T8,mGM:()=>S8,mNQ:()=>d5,mU9:()=>p0,mal:()=>T2,mxI:()=>Mf,n$t:()=>G0,nI1:()=>A5,nI4:()=>mu,nM4:()=>Cp,nVh:()=>z_,npT:()=>pd,nrm:()=>i6,o8S:()=>Zm,ozJ:()=>Z3,p2i:()=>Zn,phd:()=>E7,pl0:()=>f_,qex:()=>uf,rAh:()=>Dn,rOR:()=>Vo,rXU:()=>m1,rj2:()=>df,sFG:()=>W1,sMw:()=>x5,sZ2:()=>nr,sdS:()=>A8,sgu:()=>dp,tSv:()=>K0,tvf:()=>Wo,uiO:()=>N,utN:()=>Yf,vDg:()=>Qf,vxM:()=>V_,w6W:()=>Fm,wEZ:()=>Cf,wni:()=>M6,wr$:()=>Zc,xGo:()=>Ze,xc7:()=>I6,xe9:()=>q5,yLl:()=>d_,y_5:()=>ee,ypd:()=>M7,ziy:()=>S2,zoo:()=>M2});var Qn=l(467),h=l(2615),jt=l(8440),Ue=l(1413),wt=l(8359),pt=l(6354);function Pt(t){return{toString:t}.toString()}const gn="__annotations__",ei="__parameters__",vi="__prop__metadata__";function Ni(t,n,a,o,p){return Pt(()=>{const M=kn(n);function k(...z){if(this instanceof k)return M.call(this,...z),this;const Y=new k(...z);return function(it){return p&&p(it,...z),(it.hasOwnProperty(gn)?it[gn]:Object.defineProperty(it,gn,{value:[]})[gn]).push(Y),it}}return a&&(k.prototype=Object.create(a.prototype)),k.prototype.ngMetadataName=t,k.annotationCls=k,k})}function kn(t){return function(...a){if(t){const o=t(...a);for(const p in o)this[p]=o[p]}}}function Ri(t,n,a){return Pt(()=>{const o=kn(n);function p(...M){if(this instanceof p)return o.apply(this,M),this;const k=new p(...M);return z.annotation=k,z;function z(Y,ze,it){const zt=Y.hasOwnProperty(ei)?Y[ei]:Object.defineProperty(Y,ei,{value:[]})[ei];for(;zt.length<=it;)zt.push(null);return(zt[it]=zt[it]||[]).push(k),Y}}return p.prototype.ngMetadataName=t,p.annotationCls=p,p})}const ee=(0,h.z6V)(Ri("Inject",t=>({token:t})),-1),ye=(0,h.z6V)(Ri("Optional"),8),ke=(0,h.z6V)(Ri("Self"),2),Se=(0,h.z6V)(Ri("SkipSelf"),4),ge=(0,h.z6V)(Ri("Host"),1);function N(t){const n=h.laP.ng;if(n&&n.\u0275compilerFacade)return n.\u0275compilerFacade;throw new Error("JIT compiler unavailable")}const Z={\u0275\u0275defineInjectable:h.jDH,\u0275\u0275defineInjector:h.G2t,\u0275\u0275inject:h.KVO,\u0275\u0275invalidFactoryDep:h.dmw,resolveForwardRef:h.nl4},Me=Function;function at(t){return"function"==typeof t}const qe=/^function\s+\S+\(\)\s*{[\s\S]+\.apply\(this,\s*(arguments|(?:[^()]+\(\[\],)?[^()]+\(arguments\).*)\)/,pn=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{/,Je=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(/,Be=/^class\s+[A-Za-z\d$_]*\s*extends\s+[^{]+{[\s\S]*constructor\s*\(\)\s*{[^}]*super\(\.\.\.arguments\)/;class Ge{_reflect;constructor(n){this._reflect=n||h.laP.Reflect}factory(n){return(...a)=>new n(...a)}_zipTypesAndAnnotations(n,a){let o;o=(0,h.WfI)(typeof n>"u"?a.length:n.length);for(let p=0;p"u"?[]:n[p]&&n[p]!=Object?[n[p]]:[],a&&null!=a[p]&&(o[p]=o[p].concat(a[p]));return o}_ownParameters(n,a){if(function ut(t){return qe.test(t)||Be.test(t)||pn.test(t)&&!Je.test(t)}(n.toString()))return null;if(n.parameters&&n.parameters!==a.parameters)return n.parameters;const p=n.ctorParameters;if(p&&p!==a.ctorParameters){const z="function"==typeof p?p():p,Y=z.map(it=>it&&it.type),ze=z.map(it=>it&&Ot(it.decorators));return this._zipTypesAndAnnotations(Y,ze)}const M=n.hasOwnProperty(ei)&&n[ei],k=this._reflect&&this._reflect.getOwnMetadata&&this._reflect.getOwnMetadata("design:paramtypes",n);return k||M?this._zipTypesAndAnnotations(k,M):(0,h.WfI)(n.length)}parameters(n){if(!at(n))return[];const a=se(n);let o=this._ownParameters(n,a);return!o&&a!==Object&&(o=this.parameters(a)),o||[]}_ownAnnotations(n,a){if(n.annotations&&n.annotations!==a.annotations){let o=n.annotations;return"function"==typeof o&&o.annotations&&(o=o.annotations),o}return n.decorators&&n.decorators!==a.decorators?Ot(n.decorators):n.hasOwnProperty(gn)?n[gn]:null}annotations(n){if(!at(n))return[];const a=se(n),o=this._ownAnnotations(n,a)||[];return(a!==Object?this.annotations(a):[]).concat(o)}_ownPropMetadata(n,a){if(n.propMetadata&&n.propMetadata!==a.propMetadata){let o=n.propMetadata;return"function"==typeof o&&o.propMetadata&&(o=o.propMetadata),o}if(n.propDecorators&&n.propDecorators!==a.propDecorators){const o=n.propDecorators,p={};return Object.keys(o).forEach(M=>{p[M]=Ot(o[M])}),p}return n.hasOwnProperty(vi)?n[vi]:null}propMetadata(n){if(!at(n))return{};const a=se(n),o={};if(a!==Object){const M=this.propMetadata(a);Object.keys(M).forEach(k=>{o[k]=M[k]})}const p=this._ownPropMetadata(n,a);return p&&Object.keys(p).forEach(M=>{const k=[];o.hasOwnProperty(M)&&k.push(...o[M]),k.push(...p[M]),o[M]=k}),o}ownPropMetadata(n){return at(n)&&this._ownPropMetadata(n,se(n))||{}}hasLifecycleHook(n,a){return n instanceof Me&&a in n.prototype}}function Ot(t){return t?t.map(n=>new(0,n.type.annotationCls)(...n.args?n.args:[])):[]}function se(t){const n=t.prototype?Object.getPrototypeOf(t.prototype):null;return(n?n.constructor:null)||Object}class We{previousValue;currentValue;firstChange;constructor(n,a,o){this.previousValue=n,this.currentValue=a,this.firstChange=o}isFirstChange(){return this.firstChange}}function bt(t,n,a,o){null!==n?n.applyValueToInputSignal(n,o):t[a]=o}const tn=(()=>{const t=()=>on;return t.ngInherit=!0,t})();function on(t){return t.type.prototype.ngOnChanges&&(t.setInput=Nt),un}function un(){const t=xn(this),n=t?.current;if(n){const a=t.previous;if(a===h.MZA)t.previous=n;else for(let o in n)a[o]=n[o];t.current=null,this.ngOnChanges(n)}}function Nt(t,n,a,o,p){const M=this.declaredInputs[o],k=xn(t)||function Jn(t,n){return t[dn]=n}(t,{previous:h.MZA,current:null}),z=k.current||(k.current={}),Y=k.previous,ze=Y[M];z[M]=new We(ze&&ze.currentValue,a,Y===h.MZA),bt(t,n,p,a)}const dn="__ngSimpleChanges__";function xn(t){return t[dn]||null}const xi=[],we=function(t,n=null,a){for(let o=0;o=o)break}else n[Y]<0&&(t[h.wVl]+=65536),(z>14>16&&(3&t[h.Wg1])===n&&(t[h.Wg1]+=16384,Qi(z,M)):Qi(z,M)}class an{factory;name;injectImpl;resolving=!1;canSeeViewProviders;multi;componentProviders;index;providerFactory;constructor(n,a,o,p){this.factory=n,this.name=p,this.canSeeViewProviders=a,this.injectImpl=o}}function Un(t){return null!=t&&"object"==typeof t&&(null===t.insertBeforeIndex||"number"==typeof t.insertBeforeIndex||Array.isArray(t.insertBeforeIndex))}function Vn(t){return 3===t||4===t||6===t}function ii(t){return 64===t.charCodeAt(0)}function Bn(t,n){if(null!==n&&0!==n.length)if(null===t||0===t.length)t=n.slice();else{let a=-1;for(let o=0;on){k=M-1;break}}}for(;M>16}(t),o=n;for(;a>0;)o=o[h.X5O],a--;return o}let En=!0;function Wn(t){const n=En;return En=t,n}let Pi=0;const da={};function en(t,n){const a=oi(t,n);if(-1!==a)return a;const o=n[h.eDl];o.firstCreatePass&&(t.injectorIndex=n.length,vn(o.data,t),vn(n,null),vn(o.blueprint,null));const p=bn(t,n),M=t.injectorIndex;if(ra(p)){const k=fa(p),z=qt(p,n),Y=z[h.eDl].data;for(let ze=0;ze<8;ze++)n[M+ze]=z[k+ze]|Y[k+ze]}return n[M+8]=p,M}function vn(t,n){t.push(0,0,0,0,0,0,0,0,n)}function oi(t,n){return-1===t.injectorIndex||t.parent&&t.parent.injectorIndex===t.injectorIndex||null===n[t.injectorIndex+8]?-1:t.injectorIndex}function bn(t,n){if(t.parent&&-1!==t.parent.injectorIndex)return t.parent.injectorIndex;let a=0,o=null,p=n;for(;null!==p;){if(o=Ki(p),null===o)return-1;if(a++,p=p[h.X5O],-1!==o.injectorIndex)return o.injectorIndex|a<<16}return-1}function Kn(t,n,a){!function Ta(t,n,a){let o;"string"==typeof a?o=a.charCodeAt(0)||0:a.hasOwnProperty(h.p9y)&&(o=a[h.p9y]),null==o&&(o=a[h.p9y]=Pi++);const p=255&o;n.data[t+(p>>5)]|=1<=0?255&n:tt:n}(a);if("function"==typeof M){if(!(0,h.ihb)(n,t,o))return 1&o?Wi(p,a,o):Ca(n,a,o,p);try{let k;if(k=M(o),null!=k||8&o)return k;(0,h.$Hz)(a)}finally{(0,h.niQ)()}}else if("number"==typeof M){let k=null,z=oi(t,n),Y=-1,ze=1&o?n[h.b5C][h.qlT]:null;for((-1===z||4&o)&&(Y=-1===z?bn(t,n):n[z+8],-1!==Y&&ca(o,!1)?(k=n[h.eDl],z=fa(Y),n=qt(Y,n)):z=-1);-1!==z;){const it=n[h.eDl];if(Ii(M,z,it.data)){const zt=Ve(z,n,a,k,o,ze);if(zt!==da)return zt}Y=n[z+8],-1!==Y&&ca(o,n[h.eDl].data[z+8]===ze)&&Ii(M,z,n)?(k=it,z=fa(Y),n=qt(Y,n)):z=-1}}return p}function Ve(t,n,a,o,p,M){const k=n[h.eDl],z=k.data[t+8],it=Et(z,k,a,null==o?(0,h.Qs1)(z)&&En:o!=k&&!!(3&z.type),1&p&&M===z);return null!==it?ti(n,k,it,z,p):da}function Et(t,n,a,o,p){const M=t.providerIndexes,k=n.data,z=1048575&M,Y=t.directiveStart,it=M>>20,hn=p?z+it:t.directiveEnd;for(let fn=o?z:z+it;fn=Y&&qn.type===a)return fn}if(p){const fn=k[Y];if(fn&&(0,h.JlV)(fn)&&fn.type===a)return Y}return null}function ti(t,n,a,o,p){let M=t[a];const k=n.data;if(M instanceof an){const z=M;if(z.resolving){const fn=(0,h.PP7)(k[a]);throw(0,h.PQT)(fn)}const Y=Wn(z.canSeeViewProviders);z.resolving=!0;const zt=z.injectImpl?(0,h.a2B)(z.injectImpl):null;(0,h.ihb)(t,o,0);try{M=t[a]=z.factory(void 0,p,k,t,o),n.firstCreatePass&&a>=o.directiveStart&&function ae(t,n,a){const{ngOnChanges:o,ngOnInit:p,ngDoCheck:M}=n.type.prototype;if(o){const k=on(n);(a.preOrderHooks??=[]).push(t,k),(a.preOrderCheckHooks??=[]).push(t,k)}p&&(a.preOrderHooks??=[]).push(0-t,p),M&&((a.preOrderHooks??=[]).push(t,M),(a.preOrderCheckHooks??=[]).push(t,M))}(a,k[a],n)}finally{null!==zt&&(0,h.a2B)(zt),Wn(Y),z.resolving=!1,(0,h.niQ)()}}return M}function Ii(t,n,a){return!!(a[n+(t>>5)]&1<{const n=t.prototype.constructor,a=n[h.zSs]||Xt(n),o=Object.prototype;let p=Object.getPrototypeOf(t.prototype).constructor;for(;p&&p!==o;){const M=p[h.zSs]||Xt(p);if(M&&M!==a)return M;p=Object.getPrototypeOf(p)}return M=>new M})}function Xt(t){return(0,h.Jzi)(t)?()=>{const n=Xt((0,h.nl4)(t));return n&&n()}:(0,h.wGu)(t)}function Ki(t){const n=t[h.eDl],a=n.type;return 2===a?n.declTNode:1===a?t[h.qlT]:null}function _a(t){return function yi(t,n){if("class"===n)return t.classes;if("style"===n)return t.styles;const a=t.attrs;if(a){const o=a.length;let p=0;for(;p({attributeName:t,__NG_ELEMENT_ID__:()=>_a(t)}));let $a=null;function Ga(t){return As(function ns(){return $a=$a||new Ge}().parameters(t))}function As(t){return t.map(n=>function hr(t){const n={token:null,attribute:null,host:!1,optional:!1,self:!1,skipSelf:!1};if(Array.isArray(t)&&t.length>0)for(let a=0;afunction mr(t,n){let a=null,o=null;t.hasOwnProperty(h.yAH)||Object.defineProperty(t,h.yAH,{get:()=>(null===a&&(a=N().compileInjectable(Z,`ng:///${t.name}/\u0275prov.js`,function Zs(t,n){const a=n||{providedIn:null},o={name:t.name,type:t,typeArgumentCount:0,providedIn:a.providedIn};return(zo(a)||gr(a))&&void 0!==a.deps&&(o.deps=As(a.deps)),zo(a)?o.useClass=a.useClass:function pr(t){return fr in t}(a)?o.useValue=a.useValue:gr(a)?o.useFactory=a.useFactory:function bo(t){return void 0!==t.useExisting}(a)&&(o.useExisting=a.useExisting),o}(t,n))),a)}),t.hasOwnProperty(h.zSs)||Object.defineProperty(t,h.zSs,{get:()=>{if(null===o){const p=N();o=p.compileFactory(Z,`ng:///${t.name}/\u0275fac.js`,{name:t.name,type:t,typeArgumentCount:0,deps:Ga(t),target:p.FactoryTarget.Injectable})}return o},configurable:!0})}(t,n));function Er(){return Ka((0,h.Mx4)(),(0,h.OAn)())}function Ka(t,n){return new Ps((0,h.d31)(t,n))}let Ps=(()=>class t{nativeElement;constructor(a){this.nativeElement=a}static __NG_ELEMENT_ID__=Er})();function kr(t){return t instanceof Ps?t.nativeElement:t}function js(){return this._results[Symbol.iterator]()}class Vo{_emitDistinctChangesOnly;dirty=!0;_onDirty=void 0;_results=[];_changesDetected=!1;_changes=void 0;length=0;first=void 0;last=void 0;get changes(){return this._changes??=new Ue.B}constructor(n=!1){this._emitDistinctChangesOnly=n}get(n){return this._results[n]}map(n){return this._results.map(n)}filter(n){return this._results.filter(n)}find(n){return this._results.find(n)}reduce(n,a){return this._results.reduce(n,a)}forEach(n){this._results.forEach(n)}some(n){return this._results.some(n)}toArray(){return this._results.slice()}toString(){return this._results.toString()}reset(n,a){this.dirty=!1;const o=(0,h.Bqz)(n);(this._changesDetected=!(0,h.ng7)(this._results,o,a))&&(this._results=o,this.length=o.length,this.last=o[this.length-1],this.first=o[0])}notifyOnChanges(){void 0!==this._changes&&(this._changesDetected||!this._emitDistinctChangesOnly)&&this._changes.next(this)}onDirty(n){this._onDirty=n}setDirty(){this.dirty=!0,this._onDirty?.()}destroy(){void 0!==this._changes&&(this._changes.complete(),this._changes.unsubscribe())}[Symbol.iterator]=js}function Js(t){return!(128&~t.flags)}var ls=function(t){return t[t.OnPush=0]="OnPush",t[t.Default=1]="Default",t}(ls||{});const is=new Map;let Hs=0;function xs(t){is.delete(t[h.ID])}const Xs="__ngContext__";function wa(t,n){(0,h.q$2)(n)?(t[Xs]=n[h.ID],function Mr(t){is.set(t[h.ID],t)}(n)):t[Xs]=n}function Oi(t){return Es(t[h.EJG])}function ua(t){return Es(t[h.K29])}function Es(t){for(;null!==t&&!(0,h.A0l)(t);)t=t[h.K29];return t}let pl;function zl(t){pl=t}function ds(){if(void 0!==pl)return pl;if(typeof document<"u")return document;throw new h.buA(210,!1)}const nr=new h.nKC("",{providedIn:"root",factory:()=>mi}),mi="ng",Uo=new h.nKC(""),Go=new h.nKC("",{providedIn:"platform",factory:()=>"unknown"}),Tr=new h.nKC(""),jo=new h.nKC("",{providedIn:"root",factory:()=>ds().body?.querySelector("[ngCspNonce]")?.getAttribute("ngCspNonce")||null}),mo={breakpoints:[16,32,48,64,96,128,256,384,640,750,828,1080,1200,1920,2048,3840],placeholderResolution:30,disableImageSizeWarning:!1,disableImageLazyLoadWarning:!1},Tl=new h.nKC("",{providedIn:"root",factory:()=>mo});function za(){const t=new us;return t.store=function Dl(t,n){const a=t.getElementById(n+"-state");if("SCRIPT"===a?.tagName&&a.textContent)try{return JSON.parse(a.textContent)}catch(o){console.warn("Exception while restoring TransferState for app "+n,o)}return{}}(ds(),(0,h.WQX)(nr)),t}let us=(()=>{class t{static \u0275prov=(0,h.jDH)({token:t,providedIn:"root",factory:za});store={};onSerializeCallbacks={};get(a,o){return void 0!==this.store[a]?this.store[a]:o}set(a,o){this.store[a]=o}remove(a){delete this.store[a]}hasKey(a){return this.store.hasOwnProperty(a)}get isEmpty(){return 0===Object.keys(this.store).length}onSerialize(a,o){this.onSerializeCallbacks[a]=o}toJson(){for(const a in this.onSerializeCallbacks)if(this.onSerializeCallbacks.hasOwnProperty(a))try{this.store[a]=this.onSerializeCallbacks[a]()}catch(o){console.warn("Exception in onSerialize callback: ",o)}return JSON.stringify(this.store).replace(/!1}),ir=new h.nKC(""),Wo=new h.nKC(""),nl={passive:!0,capture:!0},X=new WeakMap,de=new WeakMap,Q=new WeakMap,me=["click","keydown"],et=["mouseenter","mouseover","focusin"];let Mt=null,Kt=0;class Tn{callbacks=new Set;listener=()=>{for(const n of this.callbacks)n()}}function ai(t,n){let a=de.get(t);if(!a){a=new Tn,de.set(t,a);for(const o of me)t.addEventListener(o,a.listener,nl)}return a.callbacks.add(n),()=>{const{callbacks:o,listener:p}=a;if(o.delete(n),0===o.size){de.delete(t);for(const M of me)t.removeEventListener(M,p,nl)}}}function Gi(t,n){let a=X.get(t);if(!a){a=new Tn,X.set(t,a);for(const o of et)t.addEventListener(o,a.listener,nl)}return a.callbacks.add(n),()=>{const{callbacks:o,listener:p}=a;if(o.delete(n),0===o.size){for(const M of et)t.removeEventListener(M,p,nl);X.delete(t)}}}const wo=new h.nKC("");function Ao(t){return!(32&~t.flags)}function Wl(t){let n=t._lView;return 2===n[h.eDl].type?null:((0,h.EFk)(n)&&(n=n[h.Yw1]),n)}function oa(t){return t.get(ir,!1,{optional:!0})}function ui(t,n){const a=t.contentQueries;if(null!==a){const o=(0,jt.Ht)(null);try{for(let p=0;pt,createScript:t=>t,createScriptURL:t=>t})}catch{}return br}function Yl(t){return Yo()?.createHTML(t)||t}function y1(){if(void 0===Fl&&(Fl=null,h.laP.trustedTypes))try{Fl=h.laP.trustedTypes.createPolicy("angular#unsafe-bypass",{createHTML:t=>t,createScript:t=>t,createScriptURL:t=>t})}catch{}return Fl}function ld(t){return y1()?.createHTML(t)||t}function a2(t){return y1()?.createScript(t)||t}function A0(t){return y1()?.createScriptURL(t)||t}class Ic{changingThisBreaksApplicationSecurity;constructor(n){this.changingThisBreaksApplicationSecurity=n}toString(){return`SafeValue must use [property]=binding: ${this.changingThisBreaksApplicationSecurity} (see ${h.ok8})`}}class T4 extends Ic{getTypeName(){return"HTML"}}class L0 extends Ic{getTypeName(){return"Style"}}class I0 extends Ic{getTypeName(){return"Script"}}class Te extends Ic{getTypeName(){return"URL"}}class dt extends Ic{getTypeName(){return"ResourceURL"}}function st(t){return t instanceof Ic?t.changingThisBreaksApplicationSecurity:t}function ft(t,n){const a=function $t(t){return t instanceof Ic&&t.getTypeName()||null}(t);if(null!=a&&a!==n){if("ResourceURL"===a&&"URL"===n)return!0;throw new Error(`Required a safe ${n}, got a ${a} (see ${h.ok8})`)}return a===n}function Cn(t){return new T4(t)}function Dn(t){return new L0(t)}function Zn(t){return new I0(t)}function si(t){return new Te(t)}function _t(t){return new dt(t)}function ji(t){const n=new Ja(t);return function Ba(){try{return!!(new window.DOMParser).parseFromString(Yl(""),"text/html")}catch{return!1}}()?new Hi(n):n}class Hi{inertDocumentHelper;constructor(n){this.inertDocumentHelper=n}getInertBodyElement(n){n=""+n;try{const a=(new window.DOMParser).parseFromString(Yl(n),"text/html").body;return null===a?this.inertDocumentHelper.getInertBodyElement(n):(a.firstChild?.remove(),a)}catch{return null}}}class Ja{defaultDoc;inertDocument;constructor(n){this.defaultDoc=n,this.inertDocument=this.defaultDoc.implementation.createHTMLDocument("sanitization-inert")}getInertBodyElement(n){const a=this.inertDocument.createElement("template");return a.innerHTML=Yl(n),a}}const wr=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:\/?#]*(?:[\/?#]|$))/i;function _s(t){return(t=String(t)).match(wr)?t:"unsafe:"+t}function vs(t){const n={};for(const a of t.split(","))n[a]=!0;return n}function rr(...t){const n={};for(const a of t)for(const o in a)a.hasOwnProperty(o)&&(n[o]=!0);return n}const Bs=vs("area,br,col,hr,img,wbr"),ol=vs("colgroup,dd,dt,li,p,tbody,td,tfoot,th,thead,tr"),Kr=vs("rp,rt"),vc=rr(Bs,rr(ol,vs("address,article,aside,blockquote,caption,center,del,details,dialog,dir,div,dl,figure,figcaption,footer,h1,h2,h3,h4,h5,h6,header,hgroup,hr,ins,main,map,menu,nav,ol,pre,section,summary,table,ul")),rr(Kr,vs("a,abbr,acronym,audio,b,bdi,bdo,big,br,cite,code,del,dfn,em,font,i,img,ins,kbd,label,map,mark,picture,q,ruby,rp,rt,s,samp,small,source,span,strike,strong,sub,sup,time,track,tt,u,var,video")),rr(Kr,ol)),s2=vs("background,cite,href,itemtype,longdesc,poster,src,xlink:href"),r2=rr(s2,vs("abbr,accesskey,align,alt,autoplay,axis,bgcolor,border,cellpadding,cellspacing,class,clear,color,cols,colspan,compact,controls,coords,datetime,default,dir,download,face,headers,height,hidden,hreflang,hspace,ismap,itemscope,itemprop,kind,label,lang,language,loop,media,muted,nohref,nowrap,open,preload,rel,rev,role,rows,rowspan,rules,scope,scrolling,shape,size,sizes,span,srclang,srcset,start,summary,tabindex,target,title,translate,type,usemap,valign,value,vspace,width"),vs("aria-activedescendant,aria-atomic,aria-autocomplete,aria-busy,aria-checked,aria-colcount,aria-colindex,aria-colspan,aria-controls,aria-current,aria-describedby,aria-details,aria-disabled,aria-dropeffect,aria-errormessage,aria-expanded,aria-flowto,aria-grabbed,aria-haspopup,aria-hidden,aria-invalid,aria-keyshortcuts,aria-label,aria-labelledby,aria-level,aria-live,aria-modal,aria-multiline,aria-multiselectable,aria-orientation,aria-owns,aria-placeholder,aria-posinset,aria-pressed,aria-readonly,aria-relevant,aria-required,aria-roledescription,aria-rowcount,aria-rowindex,aria-rowspan,aria-selected,aria-setsize,aria-sort,aria-valuemax,aria-valuemin,aria-valuenow,aria-valuetext")),o2=vs("script,style,template");class cd{sanitizedSomething=!1;buf=[];sanitizeChildren(n){let a=n.firstChild,o=!0,p=[];for(;a;)if(a.nodeType===Node.ELEMENT_NODE?o=this.startElement(a):a.nodeType===Node.TEXT_NODE?this.chars(a.nodeValue):this.sanitizedSomething=!0,o&&a.firstChild)p.push(a),a=k0(a);else for(;a;){a.nodeType===Node.ELEMENT_NODE&&this.endElement(a);let M=w4(a);if(M){a=M;break}a=p.pop()}return this.buf.join("")}startElement(n){const a=zr(n).toLowerCase();if(!vc.hasOwnProperty(a))return this.sanitizedSomething=!0,!o2.hasOwnProperty(a);this.buf.push("<"),this.buf.push(a);const o=n.attributes;for(let p=0;p"),!0}endElement(n){const a=zr(n).toLowerCase();vc.hasOwnProperty(a)&&!Bs.hasOwnProperty(a)&&(this.buf.push(""))}chars(n){this.buf.push(R0(n))}}function w4(t){const n=t.nextSibling;if(n&&t!==n.previousSibling)throw O0(n);return n}function k0(t){const n=t.firstChild;if(n&&function b1(t,n){return(t.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_CONTAINED_BY)!==Node.DOCUMENT_POSITION_CONTAINED_BY}(t,n))throw O0(n);return n}function zr(t){const n=t.nodeName;return"string"==typeof n?n:"FORM"}function O0(t){return new Error(`Failed to sanitize html because the element is clobbered: ${t.outerHTML}`)}const A4=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,Xa=/([^\#-~ |!])/g;function R0(t){return t.replace(/&/g,"&").replace(A4,function(n){return"&#"+(1024*(n.charCodeAt(0)-55296)+(n.charCodeAt(1)-56320)+65536)+";"}).replace(Xa,function(n){return"&#"+n.charCodeAt(0)+";"}).replace(//g,">")}let yc;function Zc(t,n){let a=null;try{yc=yc||ji(t);let o=n?String(n):"";a=yc.getInertBodyElement(o);let p=5,M=o;do{if(0===p)throw new Error("Failed to sanitize html because the input is unstable");p--,o=M,M=a.innerHTML,a=yc.getInertBodyElement(o)}while(o!==M);return Yl((new cd).sanitizeChildren(l2(a)||a))}finally{if(a){const o=l2(a)||a;for(;o.firstChild;)o.firstChild.remove()}}}function l2(t){return"content"in t&&function Qo(t){return t.nodeType===Node.ELEMENT_NODE&&"TEMPLATE"===t.nodeName}(t)?t.content:null}const or=/^>|^->||--!>|)/g;function ud(t,n){return t.createText(n)}function P0(t,n,a){t.setValue(n,a)}function c2(t,n){return t.createComment(function bc(t){return t.replace(or,n=>n.replace(dd,"\u200b$1\u200b"))}(n))}function hd(t,n,a){return t.createElement(n,a)}function Cc(t,n,a,o,p){t.insertBefore(n,a,o,p)}function F0(t,n,a){t.appendChild(n,a)}function d2(t,n,a,o,p){null!==o?Cc(t,n,a,o,p):F0(t,n,a)}function C1(t,n,a,o){t.removeChild(null,n,a,o)}function zs(t,n,a){const{mergedAttrs:o,classes:p,styles:M}=a;null!==o&&function Mn(t,n,a){let o=0;for(;o-1){let M;for(;++pM?"":p[it+1].toLowerCase(),2&o&&ze!==zt){if(ul(o))return!1;k=!0}}}}else{if(!k&&!ul(o)&&!ul(Y))return!1;if(k&&ul(Y))continue;k=!1,o=Y|1&o}}return ul(o)||k}function ul(t){return!(1&t)}function Z0(t,n,a,o){if(null===n)return-1;let p=0;if(o||!a){let M=!1;for(;p-1)for(a++;a0?'="'+z+'"':"")+"]"}else 8&o?p+="."+k:4&o&&(p+=" "+k);else""!==p&&!ul(k)&&(n+=v2(M,p),p=""),o=k,M=M||!ul(o);a++}return""!==p&&(n+=v2(M,p)),n}const qa={};function xc(t,n,a,o,p,M,k,z,Y,ze,it){const zt=h.Yw1+o,hn=zt+p,fn=function y2(t,n){const a=[];for(let o=0;o-1?1:1e3;return parseFloat(t)*n}function Ec(t,n){return t.getPropertyValue(n).split(",").map(o=>o.trim())}function Mc(t,n){return void 0!==t&&t.duration>n.duration}function tu(t){return(null!=t.animationName||null!=t.propertyName)&&t.duration>0}function iu(t,n,a){if(!a)return;const o=t.getAnimations();return 0===o.length?function nu(t,n){const a=getComputedStyle(t),o=function Cd(t){const n=Ec(t,"animation-name"),a=Ec(t,"animation-delay"),o=Ec(t,"animation-duration"),p={animationName:"",propertyName:void 0,duration:0};for(let M=0;Mp.duration&&(p.animationName=n[M],p.duration=k)}return p}(a),p=function eu(t){const n=Ec(t,"transition-property"),a=Ec(t,"transition-duration"),o=Ec(t,"transition-delay"),p={propertyName:"",duration:0,animationName:void 0};for(let M=0;Mp.duration&&(p.propertyName=n[M],p.duration=k)}return p}(a),M=o.duration>p.duration?o:p;Mc(n.get(t),M)||tu(M)&&n.set(t,M)}(t,n):function au(t,n,a){let o={animationName:void 0,propertyName:void 0,duration:0};for(const p of a){const M=p.effect?.getTiming(),k="number"==typeof M?.duration?M.duration:0;let Y,ze,z=(M?.delay??0)+k;p.animationName?ze=p.animationName:Y=p.transitionProperty,z>=o.duration&&(o={animationName:ze,propertyName:Y,duration:z})}Mc(n.get(t),o)||tu(o)&&n.set(t,o)}(t,n,o)}const bl=new Set;var L1=function(t){return t[t.CHANGE_DETECTION=0]="CHANGE_DETECTION",t[t.AFTER_NEXT_RENDER=1]="AFTER_NEXT_RENDER",t}(L1||{});const rc=new h.nKC(""),I1=new Set;function Yr(t){I1.has(t)||(I1.add(t),performance?.mark?.("mark_feature_usage",{detail:{feature:t}}))}const n1=!1,oc=class su extends Ue.B{__isAsync;destroyRef=void 0;pendingTasks=void 0;constructor(n=!1){super(),this.__isAsync=n,(0,h.M6u)()&&(this.destroyRef=(0,h.WQX)(h.abz,{optional:!0})??void 0,this.pendingTasks=(0,h.WQX)(h.rev,{optional:!0})??void 0)}emit(n){const a=(0,jt.Ht)(null);try{super.next(n)}finally{(0,jt.Ht)(a)}}subscribe(n,a,o){let p=n,M=a||(()=>null),k=o;if(n&&"object"==typeof n){const Y=n;p=Y.next?.bind(Y),M=Y.error?.bind(Y),k=Y.complete?.bind(Y)}this.__isAsync&&(M=this.wrapInTimeout(M),p&&(p=this.wrapInTimeout(p)),k&&(k=this.wrapInTimeout(k)));const z=super.subscribe({next:p,error:M,complete:k});return n instanceof wt.yU&&n.add(z),z}wrapInTimeout(n){return a=>{const o=this.pendingTasks?.add();setTimeout(()=>{try{n(a)}finally{void 0!==o&&this.pendingTasks?.remove(o)}})}}};function k1(t){let n,a;function o(){t=h.lQ1;try{void 0!==a&&"function"==typeof cancelAnimationFrame&&cancelAnimationFrame(a),void 0!==n&&clearTimeout(n)}catch{}}return n=setTimeout(()=>{t(),o()}),"function"==typeof requestAnimationFrame&&(a=requestAnimationFrame(()=>{t(),o()})),()=>o()}function C2(t){return queueMicrotask(()=>t()),()=>{t=h.lQ1}}const x2="isAngularZone",xd=x2+"_ID";let Q4=0;class ms{hasPendingMacrotasks=!1;hasPendingMicrotasks=!1;isStable=!0;onUnstable=new oc(!1);onMicrotaskEmpty=new oc(!1);onStable=new oc(!1);onError=new oc(!1);constructor(n){const{enableLongStackTrace:a=!1,shouldCoalesceEventChangeDetection:o=!1,shouldCoalesceRunChangeDetection:p=!1,scheduleInRootZone:M=n1}=n;if(typeof Zone>"u")throw new h.buA(908,!1);Zone.assertZonePatched();const k=this;k._nesting=0,k._outer=k._inner=Zone.current,Zone.TaskTrackingZoneSpec&&(k._inner=k._inner.fork(new Zone.TaskTrackingZoneSpec)),a&&Zone.longStackTraceZoneSpec&&(k._inner=k._inner.fork(Zone.longStackTraceZoneSpec)),k.shouldCoalesceEventChangeDetection=!p&&o,k.shouldCoalesceRunChangeDetection=p,k.callbackScheduled=!1,k.scheduleInRootZone=M,function ou(t){const n=()=>{!function ru(t){function n(){k1(()=>{t.callbackScheduled=!1,lu(t),t.isCheckStableRunning=!0,lc(t),t.isCheckStableRunning=!1})}t.isCheckStableRunning||t.callbackScheduled||(t.callbackScheduled=!0,t.scheduleInRootZone?Zone.root.run(()=>{n()}):t._outer.run(()=>{n()}),lu(t))}(t)},a=Q4++;t._inner=t._inner.fork({name:"angular",properties:{[x2]:!0,[xd]:a,[xd+a]:!0},onInvokeTask:(o,p,M,k,z,Y)=>{if(function cu(t){return Md(t,"__ignore_ng_zone__")}(Y))return o.invokeTask(M,k,z,Y);try{return O1(t),o.invokeTask(M,k,z,Y)}finally{(t.shouldCoalesceEventChangeDetection&&"eventTask"===k.type||t.shouldCoalesceRunChangeDetection)&&n(),Ed(t)}},onInvoke:(o,p,M,k,z,Y,ze)=>{try{return O1(t),o.invoke(M,k,z,Y,ze)}finally{t.shouldCoalesceRunChangeDetection&&!t.callbackScheduled&&!function E2(t){return Md(t,"__scheduler_tick__")}(Y)&&n(),Ed(t)}},onHasTask:(o,p,M,k)=>{o.hasTask(M,k),p===M&&("microTask"==k.change?(t._hasPendingMicrotasks=k.microTask,lu(t),lc(t)):"macroTask"==k.change&&(t.hasPendingMacrotasks=k.macroTask))},onHandleError:(o,p,M,k)=>(o.handleError(M,k),t.runOutsideAngular(()=>t.onError.emit(k)),!1)})}(k)}static isInAngularZone(){return typeof Zone<"u"&&!0===Zone.current.get(x2)}static assertInAngularZone(){if(!ms.isInAngularZone())throw new h.buA(909,!1)}static assertNotInAngularZone(){if(ms.isInAngularZone())throw new h.buA(909,!1)}run(n,a,o){return this._inner.run(n,a,o)}runTask(n,a,o,p){const M=this._inner,k=M.scheduleEventTask("NgZoneEvent: "+p,n,$4,h.lQ1,h.lQ1);try{return M.runTask(k,a,o)}finally{M.cancelTask(k)}}runGuarded(n,a,o){return this._inner.runGuarded(n,a,o)}runOutsideAngular(n){return this._outer.run(n)}}const $4={};function lc(t){if(0==t._nesting&&!t.hasPendingMicrotasks&&!t.isStable)try{t._nesting++,t.onMicrotaskEmpty.emit(null)}finally{if(t._nesting--,!t.hasPendingMicrotasks)try{t.runOutsideAngular(()=>t.onStable.emit(null))}finally{t.isStable=!0}}}function lu(t){t.hasPendingMicrotasks=!!(t._hasPendingMicrotasks||(t.shouldCoalesceEventChangeDetection||t.shouldCoalesceRunChangeDetection)&&!0===t.callbackScheduled)}function O1(t){t._nesting++,t.isStable&&(t.isStable=!1,t.onUnstable.emit(null))}function Ed(t){t._nesting--,lc(t)}class Sc{hasPendingMicrotasks=!1;hasPendingMacrotasks=!1;isStable=!0;onUnstable=new oc;onMicrotaskEmpty=new oc;onStable=new oc;onError=new oc;run(n,a,o){return n.apply(a,o)}runGuarded(n,a,o){return n.apply(a,o)}runOutsideAngular(n){return n()}runTask(n,a,o,p){return n.apply(a,o)}}function Md(t,n){return!(!Array.isArray(t)||1!==t.length)&&!0===t[0]?.data?.[n]}function Pc(t="zone.js",n){return"noop"===t?new Sc:"zone.js"===t?new ms(n):t}let Sd=(()=>{class t{impl=null;execute(){this.impl?.execute()}static \u0275prov=(0,h.jDH)({token:t,providedIn:"root",factory:()=>new t})}return t})();const M2=[0,1,2,3];let S2=(()=>{class t{ngZone=(0,h.WQX)(ms);scheduler=(0,h.WQX)(h.hk6);errorHandler=(0,h.WQX)(h.zcH,{optional:!0});sequences=new Set;deferredRegistrations=new Set;executing=!1;constructor(){(0,h.WQX)(rc,{optional:!0})}execute(){const a=this.sequences.size>0;a&&we(16),this.executing=!0;for(const o of M2)for(const p of this.sequences)if(!p.erroredOrDestroyed&&p.hooks[o])try{p.pipelinedValue=this.ngZone.runOutsideAngular(()=>this.maybeTrace(()=>(0,p.hooks[o])(p.pipelinedValue),p.snapshot))}catch(M){p.erroredOrDestroyed=!0,this.errorHandler?.handleError(M)}this.executing=!1;for(const o of this.sequences)o.afterRun(),o.once&&(this.sequences.delete(o),o.destroy());for(const o of this.deferredRegistrations)this.sequences.add(o);this.deferredRegistrations.size>0&&this.scheduler.notify(7),this.deferredRegistrations.clear(),a&&we(17)}register(a){const{view:o}=a;void 0!==o?((o[h.JEi]??=[]).push(a),(0,h.blu)(o),o[h.Wg1]|=8192):this.executing?this.deferredRegistrations.add(a):this.addSequence(a)}addSequence(a){this.sequences.add(a),this.scheduler.notify(7)}unregister(a){this.executing&&this.sequences.has(a)?(a.erroredOrDestroyed=!0,a.pipelinedValue=void 0,a.once=!0):(this.sequences.delete(a),this.deferredRegistrations.delete(a))}maybeTrace(a,o){return o?o.run(L1.AFTER_NEXT_RENDER,a):a()}static \u0275prov=(0,h.jDH)({token:t,providedIn:"root",factory:()=>new t})}return t})();class i1{impl;hooks;view;once;snapshot;erroredOrDestroyed=!1;pipelinedValue=void 0;unregisterOnDestroy;constructor(n,a,o,p,M,k=null){this.impl=n,this.hooks=a,this.view=o,this.once=p,this.snapshot=k,this.unregisterOnDestroy=M?.onDestroy(()=>this.destroy())}afterRun(){this.erroredOrDestroyed=!1,this.pipelinedValue=void 0,this.snapshot?.dispose(),this.snapshot=null}destroy(){this.impl.unregister(this),this.unregisterOnDestroy?.();const n=this.view?.[h.JEi];n&&(this.view[h.JEi]=n.filter(a=>a!==this))}}function T2(t,n){const a=n?.injector??(0,h.WQX)(h.zZn);return Yr("NgAfterNextRender"),hu(t,a,n,!0)}function hu(t,n,a,o){const p=n.get(Sd);p.impl??=n.get(S2);const M=n.get(rc,null,{optional:!0}),k=!0!==a?.manualCleanup?n.get(h.abz):null,z=n.get(h.r4V,null,{optional:!0}),Y=new i1(p.impl,function uu(t){return t instanceof Function?[void 0,void 0,t,void 0]:[t.earlyRead,t.write,t.mixedReadWrite,t.read]}(t),z?.view,o,k,M?.snapshot(null));return p.impl.register(Y),Y}const mu={destroy(){}},R1=new h.nKC("",{providedIn:"root",factory:()=>({queue:new Set,isScheduled:!1,scheduler:null})});function fu(t,n,a){const o=t.get(R1);if(Array.isArray(n))for(const p of n)o.queue.add(p),a?.detachedLeaveAnimationFns?.push(p);else o.queue.add(n),a?.detachedLeaveAnimationFns?.push(n);o.scheduler&&o.scheduler(t)}function Z4(t){const n=t.get(R1);n.isScheduled||(T2(()=>{n.isScheduled=!1;for(let a of n.queue)a();n.queue.clear()},{injector:t}),n.isScheduled=!0)}function D2(t){const n=t.get(R1);n.scheduler=Z4,n.scheduler(t)}function P1(t,n){for(const[a,o]of n)fu(t,o.animateFns)}function S(t,n,a,o){const p=t?.[h.Isx]?.enter;null!==n&&p&&p.has(a.index)&&P1(o,p)}function F1(t,n,a,o,p,M,k,z){if(null!=p){let Y,ze=!1;(0,h.A0l)(p)?Y=p:(0,h.q$2)(p)&&(ze=!0,p=p[h.jgP]);const it=(0,h.IvY)(p);0===t&&null!==o?(S(z,o,M,a),null==k?F0(n,o,it):Cc(n,o,it,k||null,!0)):1===t&&null!==o?(S(z,o,M,a),Cc(n,o,it,k||null,!0)):2===t?pu(z,M,a,zt=>{C1(n,it,ze,zt)}):3===t&&pu(z,M,a,()=>{n.destroyNode(it)}),null!=Y&&function O2(t,n,a,o,p,M,k){const z=o[h.s6P];z!==(0,h.IvY)(o)&&F1(n,t,a,M,z,p,k);for(let ze=h.Y20;ze=0?o[z]():o[-z].unsubscribe(),k+=2}else a[k].call(o[a[k+1]]);null!==o&&(n[h.VVG]=null);const p=n[h.Czx];if(null!==p){n[h.Czx]=null;for(let k=0;k{if(p.leave&&p.leave.has(n.index)){const k=p.leave.get(n.index),z=[];if(k){for(let Y=0;Y{t[h.Isx].running=void 0,bl.delete(t),n(!0)}):n(!1)}(t,o)}else t&&bl.delete(t),o(!1)},p)}function I2(t,n,a){return gu(t,n.parent,a)}function gu(t,n,a){let o=n;for(;null!==o&&168&o.type;)o=(n=o).parent;if(null===o)return a[h.jgP];if((0,h.Qs1)(o)){const{encapsulation:p}=t.data[o.directiveStart+o.componentOffset];if(p===Bi.None||p===Bi.Emulated)return null}return(0,h.d31)(o,a)}function t3(t,n,a){return _u(t,n,a)}function n3(t,n,a){return 40&t.type?(0,h.d31)(t,a):null}let vu,_u=n3;function i3(t,n){_u=t,vu=n}function yu(t,n,a,o){const p=I2(t,o,n),M=n[h.GpT],z=t3(o.parent||n[h.qlT],o,n);if(null!=p)if(Array.isArray(a))for(let Y=0;Yh.Yw1&&X4(t,n,h.Yw1,!1),we(k?2:0,p,a),a(o,p)}finally{(0,h.ypq)(M),we(k?3:1,p,a)}}function R2(t,n,a){(function c3(t,n,a){const o=a.directiveStart,p=a.directiveEnd;(0,h.Qs1)(a)&&function W4(t,n,a){const o=(0,h.d31)(n,t),p=q0(a),M=t[h.M0L].rendererFactory,k=yd(t,M1(t,p,null,S1(a),o,n,null,M.createRenderer(o,a),null,null,null));t[n.index]=k}(n,a,t.data[o+a.componentOffset]),t.firstCreatePass||en(a,n);const M=a.initialInputs;for(let k=o;knull;function P2(t,n,a,o,p,M){Id(t,n[h.eDl],n,a,o)?(0,h.Qs1)(t)&&N2(n,t.index):(3&t.type&&(a=function Mu(t){return"class"===t?"className":"for"===t?"htmlFor":"formaction"===t?"formAction":"innerHtml"===t?"innerHTML":"readonly"===t?"readOnly":"tabindex"===t?"tabIndex":t}(a)),F2(t,n,a,o,p,M))}function F2(t,n,a,o,p,M){if(3&t.type){const k=(0,h.d31)(t,n);o=null!=M?M(o,t.value||"",a):o,p.setProperty(k,a,o)}}function N2(t,n){const a=(0,h.KdJ)(n,t);16&a[h.Wg1]||(a[h.Wg1]|=64)}function Su(t,n){null!==t.hostBindings&&t.hostBindings(1,n)}function z2(t,n){const a=t.directiveRegistry;let o=null;if(a)for(let p=0;p{(0,h.blu)(t.lView)},consumerOnSignalRead(){this.lView[h.Iaj]=this}},y3={...jt.pL,consumerIsAlwaysLive:!0,kind:"template",consumerMarkedDirty:t=>{let n=(0,h._0$)(t.lView);for(;n&&!U2(n[h.eDl]);)n=(0,h._0$)(n);n&&(0,h.HAh)(n)},consumerOnSignalRead(){this.lView[h.Iaj]=this}};function U2(t){return 2!==t.type}function ku(t){if(null===t[h.tQN])return;let n=!0;for(;n;){let a=!1;for(const o of t[h.tQN])o.dirty&&(a=!0,null===o.zone||Zone.current===o.zone?o.run():o.zone.run(()=>o.run()));n=a&&!!(8192&t[h.Wg1])}}function G2(t,n=0){const o=t[h.M0L].rendererFactory;o.begin?.();try{!function j2(t,n){const a=(0,h.yP_)();try{(0,h.cBl)(!0),H2(t,n);let o=0;for(;(0,h.dMS)(t);){if(100===o)throw new h.buA(103,!1);o++,H2(t,1)}}finally{(0,h.cBl)(a)}}(t,n)}finally{o.end?.()}}function Vr(t,n,a,o){if((0,h.EPY)(n))return;const p=n[h.Wg1];(0,h.ID8)(n);let z=!0,Y=null,ze=null;U2(t)?(ze=function Au(t){return t[h.Iaj]??function _3(t){const n=wu.pop()??Object.create(v3);return n.lView=t,n}(t)}(n),Y=(0,jt.Bg)(ze)):null===(0,jt.nR)()?(z=!1,ze=function Iu(t){const n=t[h.Iaj]??Object.create(y3);return n.lView=t,n}(n),Y=(0,jt.Bg)(ze)):n[h.Iaj]&&((0,jt.XR)(n[h.Iaj]),n[h.Iaj]=null);try{(0,h.HUe)(n),(0,h.Kw3)(t.bindingStartIndex),null!==a&&o3(t,n,a,2,o);const it=!(3&~p);if(it){const fn=t.preOrderCheckHooks;null!==fn&&Ht(n,fn,null)}else{const fn=t.preOrderHooks;null!==fn&&_n(n,fn,0,null),fi(n,0)}if(function b3(t){for(let n=Oi(t);null!==n;n=ua(n)){if(!(2&n[h.Wg1]))continue;const a=n[h.nfM];for(let o=0;o0&&(a[p-1][h.K29]=n),o0&&(t[a-1][h.K29]=o[h.K29]);const M=(0,h.E6O)(t,h.Y20+n);J4(o[h.eDl],o);const k=M[h.Ds7];null!==k&&k.detachView(M[h.eDl]),o[h.f7T]=null,o[h.K29]=null,o[h.Wg1]&=-129}return o}function co(t,n){const a=t[h.nfM],o=n[h.f7T];((0,h.q$2)(o)||n[h.b5C]!==o[h.f7T][h.b5C])&&(t[h.Wg1]|=2),null===a?t[h.nfM]=[n]:a.push(n)}class o1{_lView;_cdRefInjectingView;_appRef=null;_attachedToViewContainer=!1;exhaustive;get rootNodes(){const n=this._lView,a=n[h.eDl];return z1(a,n,a.firstChild,[])}constructor(n,a){this._lView=n,this._cdRefInjectingView=a}get context(){return this._lView[h.SKP]}set context(n){this._lView[h.SKP]=n}get destroyed(){return(0,h.EPY)(this._lView)}destroy(){if(this._appRef)this._appRef.detachView(this);else if(this._attachedToViewContainer){const n=this._lView[h.f7T];if((0,h.A0l)(n)){const a=n[h.bm_],o=a?a.indexOf(this):-1;o>-1&&(V1(n,o),(0,h.E6O)(a,o))}this._attachedToViewContainer=!1}Td(this._lView[h.eDl],this._lView)}onDestroy(n){(0,h.ik5)(this._lView,n)}markForCheck(){r1(this._cdRefInjectingView||this._lView,4)}detach(){this._lView[h.Wg1]&=-129}reattach(){(0,h._gW)(this._lView),this._lView[h.Wg1]|=128}detectChanges(){this._lView[h.Wg1]|=1024,G2(this._lView)}checkNoChanges(){}attachToViewContainerRef(){if(this._appRef)throw new h.buA(902,!1);this._attachedToViewContainer=!0}detachFromAppRef(){this._appRef=null;const n=(0,h.EFk)(this._lView),a=this._lView[h.rQE];null!==a&&!n&&w2(a,this._lView),q4(this._lView[h.eDl],this._lView)}attachToAppRef(n){if(this._attachedToViewContainer)throw new h.buA(902,!1);this._appRef=n;const a=(0,h.EFk)(this._lView),o=this._lView[h.rQE];null!==o&&!a&&co(o,this._lView),(0,h._gW)(this._lView)}}let U1=(()=>class t{_declarationLView;_declarationTContainer;elementRef;static __NG_ELEMENT_ID__=E3;constructor(a,o,p){this._declarationLView=a,this._declarationTContainer=o,this.elementRef=p}get ssrId(){return this._declarationTContainer.tView?.ssrId||null}createEmbeddedView(a,o){return this.createEmbeddedViewImpl(a,o)}createEmbeddedViewImpl(a,o,p){const M=cc(this._declarationLView,this._declarationTContainer,a,{embeddedViewInjector:o,dehydratedView:p});return new o1(M)}})();function E3(){return Od((0,h.Mx4)(),(0,h.OAn)())}function Od(t,n){return 4&t.type?new U1(n,t,Ka(t,n)):null}function zu(t,n,a){const o=n.insertBeforeIndex,p=Array.isArray(o)?o[0]:o;return null===p?n3(t,0,a):(0,h.IvY)(a[p])}function Nd(t,n,a,o,p){const M=n.insertBeforeIndex;if(Array.isArray(M)){let k=o,z=null;if(3&n.type||(z=k,k=p),null!==k&&-1===n.componentOffset)for(let Y=1;Y1)for(let a=t.length-2;a>=0;a--){const o=t[a];Dc(o)||L3(o,n)&&null===I3(o)&&k3(o,n.index)}}function Dc(t){return!(64&t.type)}function L3(t,n){return Dc(n)||t.index>n.index}function I3(t){const n=t.insertBeforeIndex;return Array.isArray(n)?n[0]:n}function k3(t,n){const a=t.insertBeforeIndex;Array.isArray(a)?a[0]=n:(i3(zu,Nd),t.insertBeforeIndex=n)}function zd(t,n){const a=t.data[n];return null===a||"string"==typeof a?null:a.hasOwnProperty("currentCaseLViewIndex")?a:a.value}function P3(t,n,a){const o=Bd(t,a,64,null,null);return mm(n,o),o}function Z2(t,n){const a=n[t.currentCaseLViewIndex];return null===a?a:a<0?~a:a}function Vu(t){return t>>>17}function Uu(t){return(131070&t)>>>1}function J2(t,n,a){t.index=0;const o=Z2(n,a);t.removes=null!==o?n.remove[o]:h.Mlv}function Vd(t){if(t.index0?t.lView[n]:(t.stack.push(t.index,t.removes),J2(t,t.lView[h.eDl].data[~n],t.lView),Vd(t))}return 0===t.stack.length?(t.lView=void 0,null):(t.removes=t.stack.pop(),t.index=t.stack.pop(),Vd(t))}function z3(){const t={stack:[],index:-1};return function n(a,o){for(t.lView=o;t.stack.length;)t.stack.pop();return J2(t,a.value,o),Vd.bind(null,t)}}function m(t,n,a){for(const o of a.node.cases[a.case]){const p=n.get(o.index-h.Yw1);p&&C1(t,p,!1)}}function E(t){const n=t[h.qFA]??[],o=t[h.f7T][h.GpT],p=[];for(const M of n)void 0!==M.data.di?p.push(M):I(M,o);t[h.qFA]=p}function D(t){const{lContainer:n}=t,a=n[h.qFA];if(null===a)return;const p=n[h.f7T][h.GpT];for(const M of a)I(M,p)}function I(t,n){let a=0,o=t.firstChild;if(o){const p=t.data.r;for(;aclass t{destroyNode=null;static __NG_ELEMENT_ID__=()=>function K3(){const t=(0,h.OAn)(),n=(0,h.Mx4)(),a=(0,h.KdJ)(n.index,t);return((0,h.q$2)(a)?a:t)[h.GpT]}()})(),h1=(()=>{class t{static \u0275prov=(0,h.jDH)({token:t,providedIn:"root",factory:()=>null})}return t})();function X1(t){return void 0!==t.ngModule}function zc(t){return!!(0,h.phH)(t)}function K1(t){return!!(0,h.oyA)(t)}function aa(t){return!!(0,h.HaV)(t)}function la(t){return!!(0,h.xUg)(t)}function Ya(t,n){if((0,h.Jzi)(t)&&!(t=(0,h.nl4)(t)))throw new Error(`Expected forwardRef function, imported from "${(0,h.PP7)(n)}", to return a standalone entity or NgModule but got "${(0,h.PP7)(t)||t}".`);if(null==(0,h.phH)(t)){const a=(0,h.xUg)(t)||(0,h.HaV)(t)||(0,h.oyA)(t);if(null==a)throw X1(t)?new Error(`A module with providers was imported from "${(0,h.PP7)(n)}". Modules with providers are not supported in standalone components imports.`):new Error(`The "${(0,h.PP7)(t)}" type, imported from "${(0,h.PP7)(n)}", must be a standalone component / directive / pipe or an NgModule. Did you forget to add the required @Component / @Directive / @Pipe or @NgModule annotation?`);if(!a.standalone)throw new Error(`The "${(0,h.PP7)(t)}" ${function ya(t){return(0,h.xUg)(t)?"component":(0,h.HaV)(t)?"directive":(0,h.oyA)(t)?"pipe":"type"}(t)}, imported from "${(0,h.PP7)(n)}", is not standalone. Did you forget to add the standalone: true flag?`)}}class uo{ownerNgModule=new Map;ngModulesWithSomeUnresolvedDecls=new Set;ngModulesScopeCache=new Map;standaloneComponentsScopeCache=new Map;resolveNgModulesDecls(){if(0!==this.ngModulesWithSomeUnresolvedDecls.size){for(const n of this.ngModulesWithSomeUnresolvedDecls){const a=(0,h.phH)(n);if(a?.declarations)for(const o of Ql(a.declarations))la(o)&&this.ownerNgModule.set(o,n)}this.ngModulesWithSomeUnresolvedDecls.clear()}}getComponentDependencies(n,a){this.resolveNgModulesDecls();const o=(0,h.xUg)(n);if(null===o)throw new Error(`Attempting to get component dependencies for a type that is not a component: ${n}`);if(o.standalone){const p=this.getStandaloneComponentScope(n,a);return p.compilation.isPoisoned?{dependencies:[]}:{dependencies:[...p.compilation.directives,...p.compilation.pipes,...p.compilation.ngModules]}}{if(!this.ownerNgModule.has(n))return{dependencies:[]};const p=this.getNgModuleScope(this.ownerNgModule.get(n));return p.compilation.isPoisoned?{dependencies:[]}:{dependencies:[...p.compilation.directives,...p.compilation.pipes]}}}registerNgModule(n,a){if(!zc(n))throw new Error(`Attempting to register a Type which is not NgModule as NgModule: ${n}`);this.ngModulesWithSomeUnresolvedDecls.add(n)}clearScopeCacheFor(n){this.ngModulesScopeCache.delete(n),this.standaloneComponentsScopeCache.delete(n)}getNgModuleScope(n){if(this.ngModulesScopeCache.has(n))return this.ngModulesScopeCache.get(n);const a=this.computeNgModuleScope(n);return this.ngModulesScopeCache.set(n,a),a}computeNgModuleScope(n){const a=(0,h.WbQ)(n),o={exported:{directives:new Set,pipes:new Set},compilation:{directives:new Set,pipes:new Set}};for(const p of Ql(a.imports))if(zc(p)){const M=this.getNgModuleScope(p);_o(M.exported.directives,o.compilation.directives),_o(M.exported.pipes,o.compilation.pipes)}else{if(!(0,h.QuC)(p)){o.compilation.isPoisoned=!0;break}if(aa(p)||la(p))o.compilation.directives.add(p);else{if(!K1(p))throw new h.buA(980,"The standalone imported type is neither a component nor a directive nor a pipe");o.compilation.pipes.add(p)}}if(!o.compilation.isPoisoned)for(const p of Ql(a.declarations)){if(zc(p)||(0,h.QuC)(p)){o.compilation.isPoisoned=!0;break}K1(p)?o.compilation.pipes.add(p):o.compilation.directives.add(p)}for(const p of Ql(a.exports))if(zc(p)){const M=this.getNgModuleScope(p);_o(M.exported.directives,o.exported.directives),_o(M.exported.pipes,o.exported.pipes),_o(M.exported.directives,o.compilation.directives),_o(M.exported.pipes,o.compilation.pipes)}else K1(p)?o.exported.pipes.add(p):o.exported.directives.add(p);return o}getStandaloneComponentScope(n,a){if(this.standaloneComponentsScopeCache.has(n))return this.standaloneComponentsScopeCache.get(n);const o=this.computeStandaloneComponentScope(n,a);return this.standaloneComponentsScopeCache.set(n,o),o}computeStandaloneComponentScope(n,a){const o={compilation:{directives:new Set([n]),pipes:new Set,ngModules:new Set}};for(const p of(0,h.Bqz)(a??[])){const M=(0,h.nl4)(p);try{Ya(M,n)}catch{return o.compilation.isPoisoned=!0,o}if(zc(M)){o.compilation.ngModules.add(M);const k=this.getNgModuleScope(M);if(k.exported.isPoisoned)return o.compilation.isPoisoned=!0,o;_o(k.exported.directives,o.compilation.directives),_o(k.exported.pipes,o.compilation.pipes)}else if(K1(M))o.compilation.pipes.add(M);else{if(!aa(M)&&!la(M))return o.compilation.isPoisoned=!0,o;o.compilation.directives.add(M)}}return o}isOrphanComponent(n){const a=(0,h.xUg)(n);return!(!a||a.standalone||(this.resolveNgModulesDecls(),this.ownerNgModule.has(n)))}}function _o(t,n){for(const a of t)n.add(a)}const vo=new uo,dc={};class ys{injector;parentInjector;constructor(n,a){this.injector=n,this.parentInjector=a}get(n,a,o){const p=this.injector.get(n,dc,o);return p!==dc||a===dc?p:this.parentInjector.get(n,a,o)}}function Y1(t,n,a){let o=a?t.styles:null,p=a?t.classes:null,M=0;if(null!==n)for(let k=0;k0&&(a.directiveToIndex=new Map);for(let hn=0;hn0;){const a=t[--n];if("number"==typeof a&&a<0)return a}return 0})(k)!=z&&k.push(z),k.push(a,o,M)}}(t,n,o,T1(t,a,p.hostVars,qa),p)}function gg(t,n,a){if(a){if(n.exportAs)for(let o=0;oY?z[Y]:null}"string"==typeof k&&(M+=2)}return null}(n,a,M,t.index)),null!==it)(it.__ngLastListenerFn__||it).__ngNextListenerFn__=k,it.__ngLastListenerFn__=k,ze=!0;else{const zt=(0,h.d31)(t,a),hn=o?o(zt):zt,fn=p.listen(hn,M,z);(function _g(t){return t.startsWith("animation")||t.startsWith("transition")})(M)||Jf(o?Si=>o((0,h.IvY)(Si[t.index])):t.index,n,a,M,z,fn,!1)}return ze}function Jf(t,n,a,o,p,M,k){const z=n.firstCreatePass?(0,h.vNG)(n):null,Y=(0,h.d_l)(a),ze=Y.length;Y.push(p,M),z&&z.push(o,t,ze,(ze+1)*(k?-1:1))}function q3(t,n,a,o,p,M){const z=n[h.eDl],zt=n[a][z.data[a].outputs[o]].subscribe(M);Jf(t.index,z,n,p,M,zt,!0)}const $1=Symbol("BINDING");class tp extends ps{ngModule;constructor(n){super(),this.ngModule=n}resolveComponentFactory(n){const a=(0,h.xUg)(n);return new c0(a,this.ngModule)}}class c0 extends Fa{componentDef;ngModule;selector;componentType;ngContentSelectors;isBoundToModule;cachedInputs=null;cachedOutputs=null;get inputs(){return this.cachedInputs??=function Tg(t){return Object.keys(t).map(n=>{const[a,o,p]=t[n],M={propName:a,templateName:n,isSignal:0!==(o&D1.SignalBased)};return p&&(M.transform=p),M})}(this.componentDef.inputs),this.cachedInputs}get outputs(){return this.cachedOutputs??=function Dg(t){return Object.keys(t).map(n=>({propName:t[n],templateName:n}))}(this.componentDef.outputs),this.cachedOutputs}constructor(n,a){super(),this.componentDef=n,this.ngModule=a,this.componentType=n.type,this.selector=function j4(t){return t.map(G4).join(",")}(n.selectors),this.ngContentSelectors=n.ngContentSelectors??[],this.isBoundToModule=!!a}create(n,a,o,p,M,k){we(22);const z=(0,jt.Ht)(null);try{const Y=this.componentDef,ze=function sp(t,n,a,o){const p=t?["ng-version","20.3.27"]:function H4(t){const n=[],a=[];let o=1,p=2;for(;o{if(1&a&&t)for(const o of t)o.create();if(2&a&&n)for(const o of n)o.update()}:null}(M,k),1,z,Y,null,null,null,[p],null)}(o,Y,k,M),it=function Ag(t,n,a){let o=n instanceof h.uvJ?n:n?.injector;return o&&null!==t.getStandaloneInjector&&(o=t.getStandaloneInjector(o)||o),o?new ys(a,o):a}(Y,p||this.ngModule,n),zt=function Lg(t){const n=t.get(xl,null);if(null===n)throw new h.buA(407,!1);return{rendererFactory:n,sanitizer:t.get(h1,null),changeDetectionScheduler:t.get(h.hk6,null),ngReflect:!1}}(it),hn=zt.rendererFactory.createRenderer(null,Y),fn=o?function a1(t,n,a,o){const M=o.get(Ul,!1)||a===Bi.ShadowDom,k=t.selectRootElement(n,M);return function Cu(t){xu(t)}(k),k}(hn,o,Y.encapsulation,it):function np(t,n){const a=function ap(t){return(t.selectors[0][0]||"div").toLowerCase()}(t);return hd(n,a,"svg"===a?h.jNX:"math"===a?h.rJ1:null)}(Y,hn);!function ip(t){if("script"===t?.toLowerCase())throw new h.buA(905,!1)}(fn?.tagName);const qn=k?.some(wc)||M?.some(na=>"function"!=typeof na&&na.bindings.some(wc)),Si=M1(null,ze,null,512|S1(Y),null,null,zt,hn,it,null,null);Si[h.Yw1]=fn,(0,h.ID8)(Si);let Xi=null;try{const na=r0(h.Yw1,Si,2,"#host",()=>ze.directiveRegistry,!0,0);zs(hn,fn,na),wa(fn,Si),R2(ze,Si,na),Wa(ze,na,Si),Q3(ze,na),void 0!==a&&function eh(t,n,a){const o=t.projection=[];for(let p=0;pclass t{static __NG_ELEMENT_ID__=rp})();function rp(){return Ac((0,h.Mx4)(),(0,h.OAn)())}const Tm=$o,Dm=class extends Tm{_lContainer;_hostTNode;_hostLView;constructor(n,a,o){super(),this._lContainer=n,this._hostTNode=a,this._hostLView=o}get element(){return Ka(this._hostTNode,this._hostLView)}get injector(){return new U(this._hostTNode,this._hostLView)}get parentInjector(){const n=bn(this._hostTNode,this._hostLView);if(ra(n)){const a=qt(n,this._hostLView),o=fa(n);return new U(a[h.eDl].data[o+8],a)}return new U(null,this._hostLView)}clear(){for(;this.length>0;)this.remove(this.length-1)}get(n){const a=qu(this._lContainer);return null!==a&&a[n]||null}get length(){return this._lContainer.length-h.Y20}createEmbeddedView(n,a,o){let p,M;"number"==typeof o?p=o:null!=o&&(p=o.index,M=o.injector);const z=n.createEmbeddedViewImpl(a||{},M,null);return this.insertImpl(z,p,Nc(this._hostTNode,null)),z}createComponent(n,a,o,p,M,k,z){const Y=n&&!at(n);let ze;if(Y)ze=a;else{const Xi=a||{};ze=Xi.index,o=Xi.injector,p=Xi.projectableNodes,M=Xi.environmentInjector||Xi.ngModuleRef,k=Xi.directives,z=Xi.bindings}const it=Y?n:new c0((0,h.xUg)(n)),zt=o||this.parentInjector;if(!M&&null==it.ngModule){const na=(Y?zt:this.parentInjector).get(h.uvJ,null);na&&(M=na)}(0,h.xUg)(it.componentType??{});const Si=it.create(zt,p,null,M,k,z);return this.insertImpl(Si.hostView,ze,Nc(this._hostTNode,null)),Si}insert(n,a){return this.insertImpl(n,a,!0)}insertImpl(n,a,o){const p=n._lView;if((0,h.ITl)(p)){const z=this.indexOf(n);if(-1!==z)this.detach(z);else{const Y=p[h.f7T],ze=new Dm(Y,Y[h.qlT],Y[h.f7T]);ze.detach(ze.indexOf(n))}}const M=this._adjustIndex(a),k=this._lContainer;return Bc(k,p,M,o),n.attachToViewContainerRef(),(0,h.EYC)(d0(k),M,n),n}move(n,a){return this.insert(n,a)}indexOf(n){const a=qu(this._lContainer);return null!==a?a.indexOf(n):-1}remove(n){const a=this._adjustIndex(n,-1),o=V1(this._lContainer,a);o&&((0,h.E6O)(d0(this._lContainer),a),Td(o[h.eDl],o))}detach(n){const a=this._adjustIndex(n,-1),o=V1(this._lContainer,a);return o&&null!=(0,h.E6O)(d0(this._lContainer),a)?new o1(o):null}_adjustIndex(n,a=0){return n??this.length+a}};function qu(t){return t[h.bm_]}function d0(t){return t[h.bm_]||(t[h.bm_]=[])}function Ac(t,n){let a;const o=n[t.index];return(0,h.A0l)(o)?a=o:(a=Fu(o,n,null,t),n[t.index]=a,yd(n,a)),ma(a,n,t,o),new Dm(a,t,n)}let ma=function th(t,n,a,o){if(t[h.s6P])return;let p;p=8&a.type?(0,h.IvY)(o):function u0(t,n){const a=t[h.GpT],o=a.createComment(""),p=(0,h.d31)(n,t),M=a.parentNode(p);return Cc(a,M,o,a.nextSibling(p),!1),o}(n,a),t[h.s6P]=p};class ah{queryList;matches=null;constructor(n){this.queryList=n}clone(){return new ah(this.queryList)}setDirty(){this.queryList.setDirty()}}class t4{queries;constructor(n=[]){this.queries=n}createEmbeddedView(n){const a=n.queries;if(null!==a){const o=null!==n.contentQueries?n.contentQueries[0]:a.length,p=[];for(let M=0;Mn.trim())}(n):n}}class h0{queries;constructor(n=[]){this.queries=n}elementStart(n,a){for(let o=0;o0)o.push(k[z/2]);else{const ze=M[z+1],it=n[-Y];for(let zt=h.Y20;zt{o._dirtyCounter();const M=function a4(t,n){const a=t._lView,o=t._queryIndex;if(void 0===a||void 0===o||4&a[h.Wg1])return n?void 0:h.Mlv;const p=n4(a,o),M=ch(a,o);return p.reset(M,kr),n?p.first:p._changesDetected||void 0===t._flatValue?t._flatValue=p.toArray():t._flatValue}(o,t);if(n&&void 0===M)throw new h.buA(-951,!1);return M});return o=p[jt.bh],o._dirtyCounter=(0,h.vPA)(0),o._flatValue=void 0,p}function p0(t){return f0(!0,!1)}function Qr(t){return f0(!0,!0)}function km(t){return f0(!1,!1)}function Wd(t,n){const a=t[jt.bh];a._lView=(0,h.OAn)(),a._queryIndex=n,a._queryList=n4(a._lView,n),a._queryList.onDirty(()=>a._dirtyCounter.update(o=>o+1))}function lp(t){const n=[],a=new Map;function o(p){let M=a.get(p);if(!M){const k=t(p);a.set(p,M=k.then(z=>function Pm(t,n){return"string"==typeof n?n:void 0!==n.status&&200!==n.status?Promise.reject(new h.buA(918,!1)):n.text()}(0,z)))}return M}return q1.forEach((p,M)=>{const k=[];p.templateUrl&&k.push(o(p.templateUrl).then(ze=>{p.template=ze}));const z="string"==typeof p.styles?[p.styles]:p.styles||[];if(p.styles=z,p.styleUrl&&p.styleUrls?.length)throw new Error("@Component cannot define both `styleUrl` and `styleUrls`. Use `styleUrl` if the component has one stylesheet, or `styleUrls` if it has multiple");if(p.styleUrls?.length){const ze=p.styles.length,it=p.styleUrls;p.styleUrls.forEach((zt,hn)=>{z.push(""),k.push(o(zt).then(fn=>{z[ze+hn]=fn,it.splice(it.indexOf(zt),1),0==it.length&&(p.styleUrls=void 0)}))})}else p.styleUrl&&k.push(o(p.styleUrl).then(ze=>{z.push(ze),p.styleUrl=void 0}));const Y=Promise.all(k).then(()=>function r4(t){Gc.delete(t)}(M));n.push(Y)}),function s4(){const t=q1;q1=new Map}(),Promise.all(n).then(()=>{})}let q1=new Map;const Gc=new Set;function dp(){return 0===q1.size}const o4=new Map;function dh(t,n){(function up(t,n,a){if(n&&n!==a)throw new Error(`Duplicate module registered for ${t} - ${(0,h.AsM)(n)} vs ${(0,h.AsM)(n.name)}`)})(n,o4.get(n)||null,t),o4.set(n,t)}let Xd=class{},hl=class{};function Fm(t,n){return new c4(t,n??null,[])}class c4 extends Xd{ngModuleType;_parent;_bootstrapComponents=[];_r3Injector;instance;destroyCbs=[];componentFactoryResolver=new tp(this);constructor(n,a,o,p=!0){super(),this.ngModuleType=n,this._parent=a;const M=(0,h.phH)(n);this._bootstrapComponents=Ql(M.bootstrap),this._r3Injector=(0,h.Pz9)(n,a,[{provide:Xd,useValue:this},{provide:ps,useValue:this.componentFactoryResolver},...o],(0,h.AsM)(n),new Set(["environment"])),p&&this.resolveInjectorInitializers()}resolveInjectorInitializers(){this._r3Injector.resolveInjectorInitializers(),this.instance=this._r3Injector.get(this.ngModuleType)}get injector(){return this._r3Injector}destroy(){const n=this._r3Injector;!n.destroyed&&n.destroy(),this.destroyCbs.forEach(a=>a()),this.destroyCbs=null}onDestroy(n){this.destroyCbs.push(n)}}class mp extends hl{moduleType;constructor(n){super(),this.moduleType=n}create(n){return new c4(this.moduleType,n,[])}}function fp(t,n,a){return new c4(t,n,a,!1)}class Og extends Xd{injector;componentFactoryResolver=new tp(this);instance=null;constructor(n){super();const a=new h.e5P([...n.providers,{provide:Xd,useValue:this},{provide:ps,useValue:this.componentFactoryResolver}],n.parent||(0,h.WB9)(),n.debugName,new Set(["environment"]));this.injector=a,n.runEnvironmentInitializers&&a.resolveInjectorInitializers()}destroy(){this.injector.destroy()}onDestroy(n){this.injector.onDestroy(n)}}function Nm(t,n,a=null){return new Og({providers:t,parent:n,debugName:a,runEnvironmentInitializers:!0}).injector}let Rg=(()=>{class t{_injector;cachedInjectors=new Map;constructor(a){this._injector=a}getOrCreateStandaloneInjector(a){if(!a.standalone)return null;if(!this.cachedInjectors.has(a)){const o=(0,h.jXY)(!1,a.type),p=o.length>0?Nm([o],this._injector,`Standalone[${a.type.name}]`):null;this.cachedInjectors.set(a,p)}return this.cachedInjectors.get(a)}ngOnDestroy(){try{for(const a of this.cachedInjectors.values())null!==a&&a.destroy()}finally{this.cachedInjectors.clear()}}static \u0275prov=(0,h.jDH)({token:t,providedIn:"environment",factory:()=>new t((0,h.KVO)(h.uvJ))})}return t})();function pp(t){return Pt(()=>{const n=jc(t),a={...n,decls:t.decls,vars:t.vars,template:t.template,consts:t.consts||null,ngContentSelectors:t.ngContentSelectors,onPush:t.changeDetection===ls.OnPush,directiveDefs:null,pipeDefs:null,dependencies:n.standalone&&t.dependencies||null,getStandaloneInjector:n.standalone?p=>p.get(Rg).getOrCreateStandaloneInjector(a):null,getExternalStyles:null,signals:t.signals??!1,data:t.data||{},encapsulation:t.encapsulation||Bi.Emulated,styles:t.styles||h.Mlv,_:null,schemas:t.schemas||null,tView:null,id:""};n.standalone&&Yr("NgStandalone"),f1(a);const o=t.dependencies;return a.directiveDefs=d4(o,gp),a.pipeDefs=d4(o,h.oyA),a.id=function Ng(t){let n=0;const o=[t.selectors,t.ngContentSelectors,t.hostVars,t.hostAttrs,"function"==typeof t.consts?"":t.consts,t.vars,t.decls,t.encapsulation,t.standalone,t.signals,t.exportAs,JSON.stringify(t.inputs),JSON.stringify(t.outputs),Object.getOwnPropertyNames(t.type.prototype),!!t.contentQueries,!!t.viewQuery];for(const M of o.join("|"))n=Math.imul(31,n)+M.charCodeAt(0)|0;return n+=2147483648,"c"+n}(a),a})}function gp(t){return(0,h.xUg)(t)||(0,h.HaV)(t)}function _p(t){return Pt(()=>({type:t.type,bootstrap:t.bootstrap||h.Mlv,declarations:t.declarations||h.Mlv,imports:t.imports||h.Mlv,exports:t.exports||h.Mlv,transitiveCompileScopes:null,schemas:t.schemas||null,id:t.id||null}))}function Pg(t,n){if(null==t)return h.MZA;const a={};for(const o in t)if(t.hasOwnProperty(o)){const p=t[o];let M,k,z,Y;Array.isArray(p)?(z=p[0],M=p[1],k=p[2]??M,Y=p[3]||null):(M=p,k=p,z=D1.None,Y=null),a[M]=[o,z,Y],n[M]=k}return a}function vp(t){if(null==t)return h.MZA;const n={};for(const a in t)t.hasOwnProperty(a)&&(n[t[a]]=a);return n}function Bm(t){return Pt(()=>{const n=jc(t);return f1(n),n})}function zm(t){return{type:t.type,name:t.name,factory:null,pure:!1!==t.pure,standalone:t.standalone??!0,onDestroy:t.type.prototype.ngOnDestroy||null}}function jc(t){const n={};return{type:t.type,providersResolver:null,factory:null,hostBindings:t.hostBindings||null,hostVars:t.hostVars||0,hostAttrs:t.hostAttrs||null,contentQueries:t.contentQueries||null,declaredInputs:n,inputConfig:t.inputs||h.MZA,exportAs:t.exportAs||null,standalone:t.standalone??!0,signals:!0===t.signals,selectors:t.selectors||h.Mlv,viewQuery:t.viewQuery||null,features:t.features||null,setInput:null,resolveHostDirectives:null,hostDirectives:null,inputs:Pg(t.inputs,n),outputs:vp(t.outputs),debugInfo:null}}function f1(t){t.features?.forEach(n=>n(t))}function d4(t,n){return t?()=>{const a="function"==typeof t?t():t,o=[];for(const p of a){const M=n(p);null!==M&&o.push(M)}return o}:null}function yp(t){return Object.getPrototypeOf(t.prototype).constructor}function uh(t){let n=yp(t.type),a=!0;const o=[t];for(;n;){let p;if((0,h.JlV)(t))p=n.\u0275cmp||n.\u0275dir;else{if(n.\u0275cmp)throw new h.buA(903,!1);p=n.\u0275dir}if(p){if(a){o.push(p);const k=t;k.inputs=hh(t.inputs),k.declaredInputs=hh(t.declaredInputs),k.outputs=hh(t.outputs);const z=p.hostBindings;z&&Vg(t,z);const Y=p.viewQuery,ze=p.contentQueries;if(Y&&bp(t,Y),ze&&zg(t,ze),Bg(t,p),(0,h.dwj)(t.outputs,p.outputs),(0,h.JlV)(p)&&p.data.animation){const it=t.data;it.animation=(it.animation||[]).concat(p.data.animation)}}const M=p.features;if(M)for(let k=0;k=0;o--){const p=t[o];p.hostVars=n+=p.hostVars,p.hostAttrs=Bn(p.hostAttrs,a=Bn(a,p.hostAttrs))}}(o)}function Bg(t,n){for(const a in n.inputs){if(!n.inputs.hasOwnProperty(a)||t.inputs.hasOwnProperty(a))continue;const o=n.inputs[a];void 0!==o&&(t.inputs[a]=o,t.declaredInputs[a]=n.declaredInputs[a])}}function hh(t){return t===h.MZA?{}:t===h.Mlv?[]:t}function bp(t,n){const a=t.viewQuery;t.viewQuery=a?(o,p)=>{n(o,p),a(o,p)}:n}function zg(t,n){const a=t.contentQueries;t.contentQueries=a?(o,p,M)=>{n(o,p,M),a(o,p,M)}:n}function Vg(t,n){const a=t.hostBindings;t.hostBindings=a?(o,p)=>{n(o,p),a(o,p)}:n}const Um=["providersResolver"],g0=["template","decls","consts","vars","onPush","ngContentSelectors","styles","encapsulation","schemas"];function Cp(t){const n=a=>{const o=Array.isArray(t);null===a.hostDirectives?(a.resolveHostDirectives=Ug,a.hostDirectives=o?t.map(mh):[t]):o?a.hostDirectives.unshift(...t.map(mh)):a.hostDirectives.unshift(t)};return n.ngInherit=!0,n}function Ug(t){const n=[];let a=!1,o=null,p=null;for(let M=0;M{Q.has(t)&&(o.callbacks.delete(n),0===o.callbacks.size&&(Mt?.unobserve(t),Q.delete(t),Kt--),0===Kt&&(Mt?.disconnect(),Mt=null))}}(t,()=>o.run(n),()=>o.runOutsideAngular(()=>function La(){return new IntersectionObserver(t=>{for(const n of t)n.isIntersecting&&Q.has(n.target)&&Q.get(n.target).listener()})}()))}function td(t,n,a,o,p,M,k){const z=t[h.YEL],Y=z.get(ms);let ze;ze=function du(t,n){const a=n?.injector??(0,h.WQX)(h.zZn);return Yr("NgAfterRender"),hu(t,a,n,!1)}({read:function it(){if((0,h.EPY)(t))return void ze.destroy();const zt=Bl(t,n),hn=zt[1];if(hn!==_0.Initial&&hn!==Is.Placeholder)return void ze.destroy();const fn=function Ch(t,n,a){return null==a?t:a>=0?(0,h.jRZ)(a,t):t[n.index][h.Y20]??null}(t,n,o);if(!fn||(ze.destroy(),(0,h.EPY)(fn)))return;const qn=function $g(t,n){return(0,h.vaC)(h.Yw1+n,t)}(fn,a),Si=p(qn,()=>{Y.run(()=>{t!==fn&&(0,h.DyX)(fn,Si),M()})},z);t!==fn&&(0,h.ik5)(fn,Si),f4(k,zt,Si)}},{injector:z})}function p4(t,n){const a=n.get(g);return a.add(t),()=>a.remove(t)}let g=(()=>{class t{executingCallbacks=!1;idleId=null;current=new Set;deferred=new Set;ngZone=(0,h.WQX)(ms);requestIdleCallbackFn=(()=>typeof requestIdleCallback<"u"?requestIdleCallback:setTimeout)().bind(globalThis);cancelIdleCallbackFn=(()=>typeof requestIdleCallback<"u"?cancelIdleCallback:clearTimeout)().bind(globalThis);add(a){(this.executingCallbacks?this.deferred:this.current).add(a),null===this.idleId&&this.scheduleIdleCallback()}remove(a){const{current:o,deferred:p}=this;o.delete(a),p.delete(a),0===o.size&&0===p.size&&this.cancelIdleCallback()}scheduleIdleCallback(){const a=()=>{this.cancelIdleCallback(),this.executingCallbacks=!0;for(const o of this.current)o();if(this.current.clear(),this.executingCallbacks=!1,this.deferred.size>0){for(const o of this.deferred)this.current.add(o);this.deferred.clear(),this.scheduleIdleCallback()}};this.idleId=this.requestIdleCallbackFn(()=>this.ngZone.run(a))}cancelIdleCallback(){null!==this.idleId&&(this.cancelIdleCallbackFn(this.idleId),this.idleId=null)}ngOnDestroy(){this.cancelIdleCallback(),this.current.clear(),this.deferred.clear()}static \u0275prov=(0,h.jDH)({token:t,providedIn:"root",factory:()=>new t})}return t})();function c(t){return(n,a)=>r(t,n,a)}function r(t,n,a){const o=a.get(y),p=a.get(ms);return o.add(t,n,p),()=>o.remove(n)}let y=(()=>{class t{executingCallbacks=!1;timeoutId=null;invokeTimerAt=null;current=[];deferred=[];add(a,o,p){this.addToQueue(this.executingCallbacks?this.deferred:this.current,Date.now()+a,o),this.scheduleTimer(p)}remove(a){const{current:o,deferred:p}=this;-1===this.removeFromQueue(o,a)&&this.removeFromQueue(p,a),0===o.length&&0===p.length&&this.clearTimeout()}addToQueue(a,o,p){let M=a.length;for(let k=0;ko){M=k;break}(0,h.llW)(a,M,o,p)}removeFromQueue(a,o){let p=-1;for(let M=0;M-1&&(0,h.gsJ)(a,p,2),p}scheduleTimer(a){const o=()=>{this.clearTimeout(),this.executingCallbacks=!0;const M=[...this.current],k=Date.now();for(let Y=0;Y=0&&(0,h.gsJ)(this.current,0,z+1),this.executingCallbacks=!1,this.deferred.length>0){for(let Y=0;Y0){const M=Date.now(),k=this.current[0];if(null===this.timeoutId||this.invokeTimerAt&&this.invokeTimerAt-k>16){this.clearTimeout();const z=Math.max(k-M,16);this.invokeTimerAt=k,this.timeoutId=a.runOutsideAngular(()=>setTimeout(()=>a.run(o),z))}}}clearTimeout(){null!==this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=null)}ngOnDestroy(){this.clearTimeout(),this.current.length=0,this.deferred.length=0}static \u0275prov=(0,h.jDH)({token:t,providedIn:"root",factory:()=>new t})}return t})(),x=(()=>{class t{cachedInjectors=new Map;getOrCreateInjector(a,o,p,M){if(!this.cachedInjectors.has(a)){const k=p.length>0?Nm(p,o,M):null;this.cachedInjectors.set(a,k)}return this.cachedInjectors.get(a)}ngOnDestroy(){try{for(const a of this.cachedInjectors.values())null!==a&&a.destroy()}finally{this.cachedInjectors.clear()}}static \u0275prov=(0,h.jDH)({token:t,providedIn:"environment",factory:()=>new t})}return t})();const ue=new h.nKC("");function xt(t,n,a){return t.get(x).getOrCreateInjector(n,t,a,"")}function sn(t,n,a,o=!1){const p=a[h.f7T],M=p[h.eDl];if((0,h.EPY)(p))return;const k=Bl(p,n),Y=k[7];if(!(null!==Y&&t0&&(it=function Rt(t,n,a){if(t instanceof ys){const p=t.injector,k=xt(t.parentInjector,n,a);return new ys(p,k)}const o=t.get(h.uvJ);if(o!==t){const p=xt(o,n,a);return new ys(t,p)}return xt(t,n,a)}(p[h.YEL],qn,Si))}const{dehydratedView:zt,dehydratedViewIx:hn}=function wn(t,n){const a=t[h.qFA]?.findIndex(p=>p.data.s===n[1])??-1;return{dehydratedView:a>-1?t[h.qFA][a]:null,dehydratedViewIx:a}}(a,n),fn=cc(p,Y,null,{injector:it,dehydratedView:zt});if(Bc(a,fn,ze,Nc(Y,zt)),r1(fn,2),hn>-1&&a[h.qFA]?.splice(hn,1),(t===Is.Complete||t===Is.Error)&&Array.isArray(n[8])){for(const qn of n[8])qn();n[8]=null}}we(21)}function _i(t,n,a,o,p){const M=Date.now(),z=yo(p[h.eDl],o);if(null===n[2]||n[2]<=M){n[2]=null;const Y=yh(z),ze=null!==n[3];if(t!==Is.Loading||null===Y||ze){t>Is.Loading&&ze&&(n[3](),n[3]=null,n[0]=null),An(t,n,a,o,p);const it=Km(z,t);null!==it&&(n[2]=M+it,pi(it,n,o,a,p))}else{n[0]=t;const it=pi(Y,n,o,a,p);n[3]=it}}else n[0]=t}function pi(t,n,a,o,p){return r(t,()=>{const k=n[0];n[2]=null,n[0]=null,null!==k&&sn(k,a,o)},p[h.YEL])}function Ji(t,n){return t{t.loadingState===Ur.COMPLETE?sn(Is.Complete,n,a):t.loadingState===Ur.FAILED&&sn(Is.Error,n,a)})}let pa=null;function ks(t,n,a,o){return Pt(()=>{const p=t;null!==n&&(p.hasOwnProperty("decorators")&&void 0!==p.decorators?p.decorators.push(...n):p.decorators=n),null!==a&&(p.ctorParameters=a),null!==o&&(p.propDecorators=p.hasOwnProperty("propDecorators")&&void 0!==p.propDecorators?{...p.propDecorators,...o}:o)})}let Os=(()=>{class t{log(a){console.log(a)}warn(a){console.warn(a)}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"platform"})}return t})();const l_=new h.nKC(""),c_=new h.nKC("");let Np,C7=(()=>{class t{_ngZone;registry;_isZoneStable=!0;_callbacks=[];_taskTrackingZone=null;_destroyRef;constructor(a,o,p){this._ngZone=a,this.registry=o,(0,h.M6u)()&&(this._destroyRef=(0,h.WQX)(h.abz,{optional:!0})??void 0),Np||(function x7(t){Np=t}(p),p.addToWindow(o)),this._watchAngularEvents(),a.run(()=>{this._taskTrackingZone=typeof Zone>"u"?null:Zone.current.get("TaskTrackingZone")})}_watchAngularEvents(){const a=this._ngZone.onUnstable.subscribe({next:()=>{this._isZoneStable=!1}}),o=this._ngZone.runOutsideAngular(()=>this._ngZone.onStable.subscribe({next:()=>{ms.assertNotInAngularZone(),queueMicrotask(()=>{this._isZoneStable=!0,this._runCallbacksIfReady()})}}));this._destroyRef?.onDestroy(()=>{a.unsubscribe(),o.unsubscribe()})}isStable(){return this._isZoneStable&&!this._ngZone.hasPendingMacrotasks}_runCallbacksIfReady(){if(this.isStable())queueMicrotask(()=>{for(;0!==this._callbacks.length;){let a=this._callbacks.pop();clearTimeout(a.timeoutId),a.doneCb()}});else{let a=this.getPendingTasks();this._callbacks=this._callbacks.filter(o=>!o.updateCb||!o.updateCb(a)||(clearTimeout(o.timeoutId),!1))}}getPendingTasks(){return this._taskTrackingZone?this._taskTrackingZone.macroTasks.map(a=>({source:a.source,creationLocation:a.creationLocation,data:a.data})):[]}addCallback(a,o,p){let M=-1;o&&o>0&&(M=setTimeout(()=>{this._callbacks=this._callbacks.filter(k=>k.timeoutId!==M),a()},o)),this._callbacks.push({doneCb:a,timeoutId:M,updateCb:p})}whenStable(a,o,p){if(p&&!this._taskTrackingZone)throw new Error('Task tracking zone is required when passing an update callback to whenStable(). Is "zone.js/plugins/task-tracking" loaded?');this.addCallback(a,o,p),this._runCallbacksIfReady()}registerApplication(a){this.registry.registerApplication(a,this)}unregisterApplication(a){this.registry.unregisterApplication(a)}findProviders(a,o,p){return[]}static \u0275fac=function(o){return new(o||t)((0,h.KVO)(ms),(0,h.KVO)($m),(0,h.KVO)(c_))};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac})}return t})(),$m=(()=>{class t{_applications=new Map;registerApplication(a,o){this._applications.set(a,o)}unregisterApplication(a){this._applications.delete(a)}unregisterAllApplications(){this._applications.clear()}getTestability(a){return this._applications.get(a)||null}getAllTestabilities(){return Array.from(this._applications.values())}getAllRootElements(){return Array.from(this._applications.keys())}findTestabilityInTree(a,o=!0){return Np?.findTestabilityInTree(this,a,o)??null}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"platform"})}return t})();function d_(t){return!!t&&"function"==typeof t.then}function u_(t){return!!t&&"function"==typeof t.subscribe}const h_=new h.nKC("");function E7(t){return(0,h.EmA)([{provide:h_,multi:!0,useValue:t}])}let Bp=(()=>{class t{resolve;reject;initialized=!1;done=!1;donePromise=new Promise((a,o)=>{this.resolve=a,this.reject=o});appInits=(0,h.WQX)(h_,{optional:!0})??[];injector=(0,h.WQX)(h.zZn);constructor(){}runInitializers(){if(this.initialized)return;const a=[];for(const p of this.appInits){const M=(0,h.N4e)(this.injector,p);if(d_(M))a.push(M);else if(u_(M)){const k=new Promise((z,Y)=>{M.subscribe({complete:z,error:Y})});a.push(k)}}const o=()=>{this.done=!0,this.resolve()};Promise.all(a).then(()=>{o()}).catch(p=>{this.reject(p)}),0===a.length&&o(),this.initialized=!0}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})();const m_=new h.nKC("");function f_(){}function M7(){(0,jt.KO)(()=>{throw new h.buA(600,"")})}function p_(t,n){return Array.isArray(n)?n.reduce(p_,t):{...t,...n}}let Zm=(()=>{class t{_runningTick=!1;_destroyed=!1;_destroyListeners=[];_views=[];internalErrorHandler=(0,h.WQX)(h.ZTf);afterRenderManager=(0,h.WQX)(Sd);zonelessEnabled=(0,h.WQX)(h.Evm);rootEffectScheduler=(0,h.WQX)(h.VML);dirtyFlags=0;tracingSnapshot=null;allTestViews=new Set;autoDetectTestViews=new Set;includeAllTestViews=!1;afterTick=new Ue.B;get allViews(){return[...(this.includeAllTestViews?this.allTestViews:this.autoDetectTestViews).keys(),...this._views]}get destroyed(){return this._destroyed}componentTypes=[];components=[];internalPendingTask=(0,h.WQX)(h.rev);get isStable(){return this.internalPendingTask.hasPendingTasksObservable.pipe((0,pt.T)(a=>!a))}constructor(){(0,h.WQX)(rc,{optional:!0})}whenStable(){let a;return new Promise(o=>{a=this.isStable.subscribe({next:p=>{p&&o()}})}).finally(()=>{a.unsubscribe()})}_injector=(0,h.WQX)(h.uvJ);_rendererFactory=null;get injector(){return this._injector}bootstrap(a,o){return this.bootstrapImpl(a,o)}bootstrapImpl(a,o,p=h.zZn.NULL){return this._injector.get(ms).run(()=>{we(10);const k=a instanceof Fa;if(!this._injector.get(Bp).done)throw new h.buA(405,"");let Y;Y=k?a:this._injector.get(ps).resolveComponentFactory(a),this.componentTypes.push(Y.componentType);const ze=function S7(t){return t.isBoundToModule}(Y)?void 0:this._injector.get(Xd),zt=Y.create(p,[],o||Y.selector,ze),hn=zt.location.nativeElement,fn=zt.injector.get(l_,null);return fn?.registerApplication(hn),zt.onDestroy(()=>{this.detachView(zt.hostView),Eh(this.components,zt),fn?.unregisterApplication(hn)}),this._loadComponent(zt),we(11,zt),zt})}tick(){this.zonelessEnabled||(this.dirtyFlags|=1),this._tick()}_tick(){we(12),null!==this.tracingSnapshot?this.tracingSnapshot.run(L1.CHANGE_DETECTION,this.tickImpl):this.tickImpl()}tickImpl=()=>{if(this._runningTick)throw new h.buA(101,!1);const a=(0,jt.Ht)(null);try{this._runningTick=!0,this.synchronize()}finally{this._runningTick=!1,this.tracingSnapshot?.dispose(),this.tracingSnapshot=null,(0,jt.Ht)(a),this.afterTick.next(),we(13)}};synchronize(){null===this._rendererFactory&&!this._injector.destroyed&&(this._rendererFactory=this._injector.get(xl,null,{optional:!0}));let a=0;for(;0!==this.dirtyFlags&&a++<10;)we(14),this.synchronizeOnce(),we(15)}synchronizeOnce(){16&this.dirtyFlags&&(this.dirtyFlags&=-17,this.rootEffectScheduler.flush());let a=!1;if(7&this.dirtyFlags){const o=!!(1&this.dirtyFlags);this.dirtyFlags&=-8,this.dirtyFlags|=8;for(let{_lView:p}of this.allViews)(o||(0,h.dMS)(p))&&(G2(p,o&&!this.zonelessEnabled?0:1),a=!0);if(this.dirtyFlags&=-5,this.syncDirtyFlagsWithViews(),23&this.dirtyFlags)return}a||(this._rendererFactory?.begin?.(),this._rendererFactory?.end?.()),8&this.dirtyFlags&&(this.dirtyFlags&=-9,this.afterRenderManager.execute()),this.syncDirtyFlagsWithViews()}syncDirtyFlagsWithViews(){this.allViews.some(({_lView:a})=>(0,h.dMS)(a))?this.dirtyFlags|=2:this.dirtyFlags&=-8}attachView(a){const o=a;this._views.push(o),o.attachToAppRef(this)}detachView(a){const o=a;Eh(this._views,o),o.detachFromAppRef()}_loadComponent(a){this.attachView(a.hostView);try{this.tick()}catch(p){this.internalErrorHandler(p)}this.components.push(a),this._injector.get(m_,[]).forEach(p=>p(a))}ngOnDestroy(){if(!this._destroyed)try{this._destroyListeners.forEach(a=>a()),this._views.slice().forEach(a=>a.destroy())}finally{this._destroyed=!0,this._views=[],this._destroyListeners=[]}}onDestroy(a){return this._destroyListeners.push(a),()=>Eh(this._destroyListeners,a)}destroy(){if(this._destroyed)throw new h.buA(406,!1);const a=this._injector;a.destroy&&!a.destroyed&&a.destroy()}get viewCount(){return this._views.length}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})();function Eh(t,n){const a=t.indexOf(n);a>-1&&t.splice(a,1)}function Vp(){let t,n;return{promise:new Promise((o,p)=>{t=o,n=p}),resolve:t,reject:n}}function Jm(t){const n=(0,h.OAn)(),a=(0,h.Mx4)();if(Xn(n,a),!__(0,n))return;const o=n[h.YEL];f4(0,Bl(n,a),t(()=>sd(0,n,a),o))}function Up(t){const n=(0,h.OAn)(),a=n[h.YEL],o=(0,h.Mx4)(),M=yo(n[h.eDl],o);M.loadingState===Ur.NOT_STARTED&&f4(1,Bl(n,o),t(()=>Mh(M,n,o),a))}function g_(t,n,a){const o=n[h.YEL],p=Bl(n,a),M=p[6];f4(2,p,t(()=>x0(o,M),o))}function Mh(t,n,a){Gp(t,n,a)}function Gp(t,n,a){const o=n[h.YEL],p=n[h.eDl];if(t.loadingState!==Ur.NOT_STARTED)return t.loadingPromise??Promise.resolve();const M=Bl(n,a),k=function Ip(t,n){return(0,h.XRZ)(t,n.primaryTmplIndex+h.Yw1)}(p,t);t.loadingState=Ur.IN_PROGRESS,vh(1,M);let z=t.dependencyResolverFn;const Y=o.get(h.u5s).add();return z?(t.loadingPromise=Promise.allSettled(z()).then(ze=>{let it=!1;const zt=[],hn=[];for(const fn of ze){if("fulfilled"!==fn.status){it=!0;break}{const qn=fn.value,Si=(0,h.xUg)(qn)||(0,h.HaV)(qn);if(Si)zt.push(Si);else{const Xi=(0,h.oyA)(qn);Xi&&hn.push(Xi)}}}if(it){if(t.loadingState=Ur.FAILED,null===t.errorTmplIndex){const qn=new h.buA(-750,!1);B1(n,qn)}}else{t.loadingState=Ur.COMPLETE;const fn=k.tView;if(zt.length>0){fn.directiveRegistry=Ym(fn.directiveRegistry,zt);const qn=zt.map(Xi=>Xi.type),Si=(0,h.jXY)(!1,...qn);t.providers=Si}hn.length>0&&(fn.pipeRegistry=Ym(fn.pipeRegistry,hn))}}),t.loadingPromise.finally(()=>{t.loadingPromise=null,Y()})):(t.loadingPromise=Promise.resolve().then(()=>{t.loadingPromise=null,t.loadingState=Ur.COMPLETE,Y()}),t.loadingPromise)}function __(t,n){return n[h.YEL].get(ue,null,{optional:!0})?.behavior!==wp.Manual}function sd(t,n,a){const o=n[h.eDl],p=n[a.index];if(!__(0,n))return;const M=Bl(n,a),k=yo(o,a);switch(Xm(M),k.loadingState){case Ur.NOT_STARTED:sn(Is.Loading,a,p),Gp(k,n,a),k.loadingState===Ur.IN_PROGRESS&&Vi(k,a,p);break;case Ur.IN_PROGRESS:sn(Is.Loading,a,p),Vi(k,a,p);break;case Ur.COMPLETE:sn(Is.Complete,a,p);break;case Ur.FAILED:sn(Is.Error,a,p)}}function x0(t,n,a){return jp.apply(this,arguments)}function jp(){return(jp=(0,Qn.A)(function*(t,n,a){const o=t.get(wo);if(o.hydrating.has(n))return;const{parentBlockPromise:M,hydrationQueue:k}=function _1(t,n){const a=n.get(wo),p=n.get(us).get("__nghDeferData__",{});let M=!1,k=t,z=null;const Y=[];for(;!M&&k;){M=a.has(k);const ze=a.hydrating.get(k);if(null===z&&null!=ze){z=ze.promise;break}Y.unshift(k),k=p[k].p}return{parentBlockPromise:z,hydrationQueue:Y}}(n,t);if(0===k.length)return;null!==M&&k.shift(),function y_(t,n){for(let a of n)t.hydrating.set(a,Vp())}(o,k),null!==M&&(yield M);const z=k[0];o.has(z)?yield Hp(t,k,a):o.awaitParentBlock(z,(0,Qn.A)(function*(){return yield Hp(t,k,a)}))})).apply(this,arguments)}function Hp(t,n,a){return Wp.apply(this,arguments)}function Wp(){return(Wp=(0,Qn.A)(function*(t,n,a){const o=t.get(wo),p=o.hydrating,M=t.get(h.rev),k=M.add();for(let Y=0;Y-1?a.get(n[o]):null;p&&Oe(p.lContainer)}function v_(t,n){const a=n.hydrating;for(const o in t)a.get(o)?.reject();n.cleanup(t)}function w7(t){return new Promise(n=>T2(n,{injector:t}))}function A7(t){return qm.apply(this,arguments)}function qm(){return(qm=(0,Qn.A)(function*(t){const{tNode:n,lView:a}=t,o=Bl(a,n);return new Promise(p=>{(function L7(t,n){Array.isArray(t[8])||(t[8]=[]),t[8].push(n)})(o,p),sd(0,a,n)})})).apply(this,arguments)}function $r(t,n,a){return 0===t?C_(n,a):2!==t||!C_(n,a)}function C_(t,n){const a=t[h.YEL],o=yo(t[h.eDl],n),p=oa(a),M=function b_(t){return null!=t&&!(1&~t)}(o.flags),z=null!==Bl(t,n)[6];return!(M&&z&&p)}function Qd(t,n){const a=yo(t,n);return a.hydrateTriggers??=new Map}function Kp(t,n){const a=(0,h.OAn)();if(cr(a,(0,h.xbp)(),n)){const p=(0,h.klJ)(),M=(0,h.CpD)();if(Id(M,p,a,t,n))(0,h.Qs1)(M)&&N2(a,M.index);else{const z=(0,h.d31)(M,a);wd(a[h.GpT],z,null,M.value,t,n,null)}}return Kp}function Yp(t,n,a,o){const p=(0,h.OAn)();return cr(p,(0,h.xbp)(),n)&&((0,h.klJ)(),function u3(t,n,a,o,p,M){const k=(0,h.d31)(t,n);wd(n[h.GpT],k,M,t.value,a,o,p)}((0,h.CpD)(),p,t,n,a,o)),Yp}const Y7=new h.nKC("",{providedIn:"root",factory:()=>!1}),Q7=new h.nKC("",{providedIn:"root",factory:()=>I_}),I_=4e3,$d=typeof document<"u"&&"function"==typeof document?.documentElement?.getAnimations;function ef(t){return t[h.YEL].get(Y7,!1)}function Qp(t){const n=g4.get(t);if(n){for(const a of n.cleanupFns)a();g4.delete(t)}E0.delete(t)}const O_=()=>{},g4=new WeakMap,E0=new WeakMap,_4=new WeakMap;function $p(t,n){const a=_4.get(t);if(a&&a.length>0){const o=a.findIndex(p=>p===n);o>-1&&a.splice(o,1)}0===a?.length&&_4.delete(t)}function Th(t,n){const a=_4.get(t)?.shift(),o=n[h.rQE];if(o){const M=Dd(t.index,o)?.previousSibling;a&&M&&a===M&&a.dispatchEvent(new CustomEvent("animationend",{detail:{cancel:!0}}))}}function R_(t,n){_4.has(t)?_4.get(t)?.push(n):_4.set(t,[n])}function v4(t){const n=t[h.Isx]??={};return n.enter??=new Map}function M0(t){const n=t[h.Isx]??={};return n.leave??=new Map}function P_(t){const n="function"==typeof t?t():t;let a=Array.isArray(n)?n:null;return"string"==typeof n&&(a=n.trim().split(/\s+/).filter(o=>o)),a}function F_(t,n){const a=E0.get(n);return void 0===a||n===t.target&&(void 0!==a.animationName&&t.animationName===a.animationName||void 0!==a.propertyName&&t.propertyName===a.propertyName)}function tf(t,n,a){const o=t.get(n.index)??{animateFns:[]};o.animateFns.push(a),t.set(n.index,o)}function nf(t,n){if(t)for(const a of t)a();for(const a of n)a()}function Zp(t,n){const a=M0(t).get(n.index);a&&(a.resolvers=void 0)}function Dh(t,n,a,o,p){$p(n,a),nf(o,p),Zp(t,n)}class rv{destroy(n){}updateValue(n,a){}swap(n,a){const o=Math.min(n,a),p=Math.max(n,a),M=this.detach(p);if(p-o>1){const k=this.detach(o);this.attach(o,M),this.attach(p,k)}else this.attach(o,M)}move(n,a){this.attach(a,this.detach(n))}}function qp(t,n,a,o,p){return t===a&&Object.is(n,o)?1:Object.is(p(t,n),p(a,o))?-1:0}function sf(t,n,a,o){return!(void 0===n||!n.has(o)||(t.attach(a,n.get(o)),n.delete(o),0))}function N_(t,n,a,o,p){if(sf(t,n,o,a(o,p)))t.updateValue(o,p);else{const M=t.create(o,p);t.attach(o,M)}}function B_(t,n,a,o){const p=new Set;for(let M=n;M<=a;M++)p.add(o(M,t.at(M)));return p}class e6{kvMap=new Map;_vMap=void 0;has(n){return this.kvMap.has(n)}delete(n){if(!this.has(n))return!1;const a=this.kvMap.get(n);return void 0!==this._vMap&&this._vMap.has(a)?(this.kvMap.set(n,this._vMap.get(a)),this._vMap.delete(a)):this.kvMap.delete(n),!0}get(n){return this.kvMap.get(n)}set(n,a){if(this.kvMap.has(n)){let o=this.kvMap.get(n);void 0===this._vMap&&(this._vMap=new Map);const p=this._vMap;for(;p.has(o);)o=p.get(o);p.set(o,a)}else this.kvMap.set(n,a)}forEach(n){for(let[a,o]of this.kvMap)if(n(o,a),void 0!==this._vMap){const p=this._vMap;for(;p.has(o);)o=p.get(o),n(o,a)}}}function z_(t,n,a,o,p,M,k,z){Yr("NgControlFlow");const Y=(0,h.OAn)(),ze=(0,h.klJ)();return Kd(Y,ze,t,n,a,o,p,(0,h.db4)(ze.consts,M),256,k,z),rf}function rf(t,n,a,o,p,M,k,z){Yr("NgControlFlow");const Y=(0,h.OAn)(),ze=(0,h.klJ)();return Kd(Y,ze,t,n,a,o,p,(0,h.db4)(ze.consts,M),512,k,z),rf}function V_(t,n){Yr("NgControlFlow");const a=(0,h.OAn)(),o=(0,h.xbp)(),p=a[o]!==qa?a[o]:-1,M=-1!==p?of(a,h.Yw1+p):void 0;if(cr(a,o,t)){const z=(0,jt.Ht)(null);try{if(void 0!==M&&W2(M,0),-1!==t){const Y=h.Yw1+t,ze=of(a,Y),it=t6(a[h.eDl],Y),zt=null;Bc(ze,cc(a,it,n,{dehydratedView:zt}),0,Nc(it,zt))}}finally{(0,jt.Ht)(z)}}else if(void 0!==M){const z=Nu(M,0);void 0!==z&&(z[h.SKP]=n)}}class U_{lContainer;$implicit;$index;constructor(n,a,o){this.lContainer=n,this.$implicit=a,this.$index=o}get $count(){return this.lContainer.length-h.Y20}}function G_(t,n){return n}class cv{hasEmptyBlock;trackByFn;liveCollection;constructor(n,a,o){this.hasEmptyBlock=n,this.trackByFn=a,this.liveCollection=o}}function j_(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn){Yr("NgControlFlow");const fn=(0,h.OAn)(),qn=(0,h.klJ)(),Si=void 0!==Y,Xi=(0,h.OAn)(),na=z?k.bind(Xi[h.b5C][h.SKP]):k,Di=new cv(Si,na);Xi[h.Yw1+t]=Di,Kd(fn,qn,t+1,n,a,o,p,(0,h.db4)(qn.consts,M),256),Si&&Kd(fn,qn,t+2,Y,ze,it,zt,(0,h.db4)(qn.consts,hn),512)}class H_ extends rv{lContainer;hostLView;templateTNode;operationsCounter=void 0;needsIndexUpdate=!1;constructor(n,a,o){super(),this.lContainer=n,this.hostLView=a,this.templateTNode=o}get length(){return this.lContainer.length-h.Y20}at(n){return this.getLView(n)[h.SKP].$implicit}attach(n,a){const o=a[h.tcA];this.needsIndexUpdate||=n!==this.length,Bc(this.lContainer,a,n,Nc(this.templateTNode,o)),function dv(t,n){if(t.length<=h.Y20)return;const o=t[h.Y20+n],p=o?o[h.Isx]:void 0;o&&p&&p.detachedLeaveAnimationFns&&p.detachedLeaveAnimationFns.length>0&&(function $h(t,n){const a=t.get(R1);if(n.detachedLeaveAnimationFns){for(const o of n.detachedLeaveAnimationFns)a.queue.delete(o);n.detachedLeaveAnimationFns=void 0}}(o[h.YEL],p),bl.delete(o),p.detachedLeaveAnimationFns=void 0)}(this.lContainer,n)}detach(n){return this.needsIndexUpdate||=n!==this.length-1,function uv(t,n){if(t.length<=h.Y20)return;const o=t[h.Y20+n],p=o?o[h.Isx]:void 0;p&&p.leave&&p.leave.size>0&&(p.detachedLeaveAnimationFns=[])}(this.lContainer,n),function hv(t,n){return V1(t,n)}(this.lContainer,n)}create(n,a){const p=cc(this.hostLView,this.templateTNode,new U_(this.lContainer,a,n),{dehydratedView:null});return this.operationsCounter?.recordCreate(),p}destroy(n){Td(n[h.eDl],n),this.operationsCounter?.recordDestroy()}updateValue(n,a){this.getLView(n)[h.SKP].$implicit=a}reset(){this.needsIndexUpdate=!1,this.operationsCounter?.reset()}updateIndexes(){if(this.needsIndexUpdate)for(let n=0;n{t.destroy(Y)})}(Y,t,M.trackByFn),Y.updateIndexes(),M.hasEmptyBlock){const ze=(0,h.xbp)(),it=0===Y.length;if(cr(o,ze,it)){const zt=a+2,hn=of(o,zt);if(it){const fn=t6(p,zt),qn=null;Bc(hn,cc(o,fn,void 0,{dehydratedView:qn}),0,Nc(fn,qn))}else p.firstUpdatePass&&E(hn),W2(hn,0)}}}finally{(0,jt.Ht)(n)}}function of(t,n){return t[n]}function t6(t,n){return(0,h.XRZ)(t,n)}function lf(t,n,a){const o=(0,h.OAn)();return cr(o,(0,h.xbp)(),n)&&((0,h.klJ)(),P2((0,h.CpD)(),o,t,n,o[h.GpT],a)),lf}function n6(t,n,a,o,p){Id(n,t,a,p?"class":"style",o)}function Ih(t,n,a,o){const p=(0,h.OAn)(),M=p[h.eDl],k=t+h.Yw1,z=M.firstCreatePass?r0(k,p,2,n,z2,(0,h.ckz)(),a,o):M.data[k];if(Ad(z,p,t,n,s6),(0,h.yoD)(z)){const Y=p[h.eDl];R2(Y,p,z),Wa(Y,z,p)}return null!=o&&N1(p,z),Ih}function cf(){const t=(0,h.klJ)(),a=Ld((0,h.Mx4)());return t.firstCreatePass&&Q3(t,a),(0,h.UhH)(a)&&(0,h.krE)(),(0,h.N79)(),null!=a.classesWithoutHost&&function Fn(t){return!!(8&t.flags)}(a)&&n6(t,a,(0,h.OAn)(),a.classesWithoutHost,!0),null!=a.stylesWithoutHost&&function ci(t){return!!(16&t.flags)}(a)&&n6(t,a,(0,h.OAn)(),a.stylesWithoutHost,!1),cf}function i6(t,n,a,o){return Ih(t,n,a,o),cf(),i6}function df(t,n,a,o){const p=(0,h.OAn)(),M=p[h.eDl],k=t+h.Yw1,z=M.firstCreatePass?$3(k,M,2,n,a,o):M.data[k];return Ad(z,p,t,n,s6),null!=o&&N1(p,z),df}function y4(){const n=Ld((0,h.Mx4)());return(0,h.UhH)(n)&&(0,h.krE)(),(0,h.N79)(),y4}function a6(t,n,a,o){return df(t,n,a,o),y4(),a6}let s6=(t,n,a,o,p)=>((0,h.m7n)(!0),hd(n[h.GpT],o,(0,h.UaU)()));function uf(t,n,a){const o=(0,h.OAn)(),p=o[h.eDl],M=t+h.Yw1,k=p.firstCreatePass?r0(M,o,8,"ng-container",z2,(0,h.ckz)(),n,a):p.data[M];if(Ad(k,o,t,"ng-container",o6),(0,h.yoD)(k)){const z=o[h.eDl];R2(z,o,k),Wa(z,k,o)}return null!=a&&N1(o,k),uf}function b4(){const t=(0,h.klJ)(),a=Ld((0,h.Mx4)());return t.firstCreatePass&&Q3(t,a),b4}function r6(t,n,a){return uf(t,n,a),b4(),r6}function hf(t,n,a){const o=(0,h.OAn)(),p=o[h.eDl],M=t+h.Yw1,k=p.firstCreatePass?$3(M,p,8,"ng-container",n,a):p.data[M];return Ad(k,o,t,"ng-container",o6),null!=a&&N1(o,k),hf}function K_(){return Ld((0,h.Mx4)()),b4}let o6=(t,n,a,o,p)=>((0,h.m7n)(!0),c2(n[h.GpT],""));function Q_(){return(0,h.OAn)()}function mf(t,n,a){const o=(0,h.OAn)();return cr(o,(0,h.xbp)(),n)&&((0,h.klJ)(),F2((0,h.CpD)(),o,t,n,o[h.GpT],a)),mf}const ff=void 0;var gv=["en",[["a","p"],["AM","PM"]],[["AM","PM"]],[["S","M","T","W","T","F","S"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Su","Mo","Tu","We","Th","Fr","Sa"]],ff,[["J","F","M","A","M","J","J","A","S","O","N","D"],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],["January","February","March","April","May","June","July","August","September","October","November","December"]],ff,[["B","A"],["BC","AD"],["Before Christ","Anno Domini"]],0,[6,0],["M/d/yy","MMM d, y","MMMM d, y","EEEE, MMMM d, y"],["h:mm a","h:mm:ss a","h:mm:ss a z","h:mm:ss a zzzz"],["{1}, {0}",ff,"{1} 'at' {0}",ff],[".",",",";","%","+","-","E","\xd7","\u2030","\u221e","NaN",":"],["#,##0.###","#,##0%","\xa4#,##0.00","#E0"],"USD","$","US Dollar",{},"ltr",function l6(t){const n=Math.floor(Math.abs(t)),a=t.toString().replace(/^[^.]*\.?/,"").length;return 1===n&&0===a?1:5}];let C4={};function c6(t){const n=function _v(t){return t.toLowerCase().replace(/_/g,"-")}(t);let a=Z_(n);if(a)return a;const o=n.split("-")[0];if(a=Z_(o),a)return a;if("en"===o)return gv;throw new h.buA(701,!1)}function d6(t){return c6(t)[S0.PluralCase]}function Z_(t){if(!(t in C4)){const n=h.laP.ng&&h.laP.ng.common&&h.laP.ng.common.locales&&h.laP.ng.common.locales[t];return void 0!==n&&(C4[t]=n),n}return C4[t]}var S0=function(t){return t[t.LocaleId=0]="LocaleId",t[t.DayPeriodsFormat=1]="DayPeriodsFormat",t[t.DayPeriodsStandalone=2]="DayPeriodsStandalone",t[t.DaysFormat=3]="DaysFormat",t[t.DaysStandalone=4]="DaysStandalone",t[t.MonthsFormat=5]="MonthsFormat",t[t.MonthsStandalone=6]="MonthsStandalone",t[t.Eras=7]="Eras",t[t.FirstDayOfWeek=8]="FirstDayOfWeek",t[t.WeekendRange=9]="WeekendRange",t[t.DateFormat=10]="DateFormat",t[t.TimeFormat=11]="TimeFormat",t[t.DateTimeFormat=12]="DateTimeFormat",t[t.NumberSymbols=13]="NumberSymbols",t[t.NumberFormats=14]="NumberFormats",t[t.CurrencyCode=15]="CurrencyCode",t[t.CurrencySymbol=16]="CurrencySymbol",t[t.CurrencyName=17]="CurrencyName",t[t.Currencies=18]="Currencies",t[t.Directionality=19]="Directionality",t[t.PluralCase=20]="PluralCase",t[t.ExtraData=21]="ExtraData",t}(S0||{});const J_=["zero","one","two","few","many"],u6="en-US",pf={marker:"element"},gf={marker:"ICU"};var Zl=function(t){return t[t.SHIFT=2]="SHIFT",t[t.APPEND_EAGERLY=1]="APPEND_EAGERLY",t[t.COMMENT=2]="COMMENT",t}(Zl||{});let q_=u6;function bv(t){"string"==typeof t&&(q_=t.toLowerCase().replace(/_/g,"-"))}let kh=0,x4=0;let T0=(t,n,a,o)=>((0,h.m7n)(!0),function e8(t,n,a){const o=t[h.GpT];switch(a){case Node.COMMENT_NODE:return c2(o,n);case Node.TEXT_NODE:return ud(o,n);case Node.ELEMENT_NODE:return hd(o,n,null)}}(t,a,o));function t8(t,n,a,o){const p=a[h.GpT];let k,M=null;for(let z=0;z>>1,a),null,null,fn,qn,null)}else switch(Y){case gf:const ze=n[++z],it=n[++z];null===a[it]&&wa(a[it]=T0(a,0,ze,Node.COMMENT_NODE),a);break;case pf:const zt=n[++z],hn=n[++z];null===a[hn]&&wa(a[hn]=T0(a,0,zt,Node.ELEMENT_NODE),a)}}}function h6(t,n,a,o,p){for(let M=0;M>>2;switch(3&it){case 1:const hn=a[++ze],fn=a[++ze],qn=t.data[zt];if("string"==typeof qn)wd(n[h.GpT],n[zt],null,qn,hn,Y,fn);else{const Xi=(0,h._px)();(0,h.ypq)(zt);try{P2(qn,n,hn,Y,n[h.GpT],fn)}finally{(0,h.ypq)(Xi)}}break;case 0:const Si=n[zt];null!==Si&&P0(n[h.GpT],Si,Y);break;case 2:Tv(t,zd(t,zt),n,Y);break;case 3:n8(t,zd(t,zt),o,n)}}}}else{const Y=a[M+1];if(Y>0&&!(3&~Y)){const it=zd(t,Y>>>2);n[it.currentCaseLViewIndex]<0&&n8(t,it,o,n)}}M+=z}}function n8(t,n,a,o){let p=o[n.currentCaseLViewIndex];if(null!==p){let M=kh;p<0&&(p=o[n.currentCaseLViewIndex]=~p,M=-1),h6(t,o,n.update[p],a,M)}}function Tv(t,n,a,o){const p=function Dv(t,n){let a=t.cases.indexOf(n);if(-1===a)switch(t.type){case 1:{const o=function vv(t,n){const a=d6(n)(parseInt(t,10)),o=J_[a];return void 0!==o?o:"other"}(n,function Cv(){return q_}());a=t.cases.indexOf(o),-1===a&&"other"!==o&&(a=t.cases.indexOf("other"));break}case 0:a=t.cases.indexOf("other")}return-1===a?null:a}(n,o);if(Z2(n,a)!==p&&(m6(t,n,a),a[n.currentCaseLViewIndex]=null===p?null:~p,null!==p)){const k=a[n.anchorIdx];k&&t8(t,n.create[p],a,k)}}function m6(t,n,a){let o=Z2(n,a);if(null!==o){const p=n.remove[o];for(let M=0;M0){const z=(0,h.vaC)(k,a);null!==z&&C1(a[h.GpT],z)}else m6(t,zd(t,~k),a)}}}const _f=/\ufffd(\d+):?\d*\ufffd/gi,Av=/({\s*\ufffd\d+:?\d*\ufffd\s*,\s*\S{6}\s*,[\s\S]*})/gi,a8=/\ufffd(\d+)\ufffd/,f6=/^\s*(\ufffd\d+:?\d*\ufffd)\s*,\s*(select|plural)\s*,/,p6=/\ufffd\/?\*(\d+:\d+)\ufffd/gi,Lv=/\ufffd(\/?[#*]\d+):?\d*\ufffd/gi,Iv=/\uE500/g;function r8(t,n,a,o,p,M,k){const z=T1(t,o,1,null);let Y=z<a.length&&a.push(Y)}return{type:o,mainBinding:p,cases:n,values:a}}function v6(t){if(!t)return[];let n=0;const a=[],o=[],p=/[{}]/g;let M;for(p.lastIndex=0;M=p.exec(t);){const z=M.index;if("}"==M[0]){if(a.pop(),0==a.length){const Y=t.substring(n,z);f6.test(Y)?o.push(Nv(Y)):o.push(Y),n=z+1}}else{if(0==a.length){const Y=t.substring(n,z);o.push(Y),n=z+1}a.push("{")}}const k=t.substring(n);return o.push(k),o}function Bv(t,n,a,o,p,M,k,z,Y){const ze=[],it=[],zt=[];a.cases.push(k),a.create.push(ze),a.remove.push(it),a.update.push(zt);const fn=ji(ds()).getInertBodyElement(z),qn=l2(fn)||fn;return qn?l8(t,n,a,o,p,ze,it,zt,qn,M,Y,0):0}function l8(t,n,a,o,p,M,k,z,Y,ze,it,zt){let hn=0,fn=Y.firstChild;for(;fn;){const qn=T1(n,o,1,null);switch(fn.nodeType){case Node.ELEMENT_NODE:const Si=fn,Xi=Si.tagName.toLowerCase();if(vc.hasOwnProperty(Xi)){y6(M,pf,Xi,ze,qn),n.data[qn]=Xi;const Jo=Si.attributes;for(let rd=0;rd>>Zl.SHIFT;let zt=t[it],hn=!1;null===zt&&(zt=t[it]=T0(t,0,n[M],(k&Zl.COMMENT)===Zl.COMMENT?Node.COMMENT_NODE:Node.TEXT_NODE),hn=(0,h.SX7)()),ze&&null!==a&&hn&&Cc(p,a,zt,o,!1)}})(p,Y.create,it,z&&8&z.type?p[z.index]:null),(0,h.xyx)(!0)}function _8(){(0,h.xyx)(!1)}function yf(t,n,a){const o=(0,h.OAn)(),p=(0,h.klJ)(),M=(0,h.Mx4)();return x6(p,o,o[h.GpT],M,t,n,a),yf}function bf(t,n,a){const o=(0,h.OAn)(),p=(0,h.klJ)(),M=(0,h.Mx4)();return(3&M.type||a)&&Zf(M,p,o,a,o[h.GpT],t,n,l0(M,o,n)),bf}function x6(t,n,a,o,p,M,k){let z=!0,Y=null;if((3&o.type||k)&&(Y??=l0(o,n,M),Zf(o,t,n,k,a,p,M,Y)&&(z=!1)),z){const ze=o.outputs?.[p],it=o.hostDirectiveOutputs?.[p];if(it&&it.length)for(let zt=0;zt>17&32767}function S6(t){return 2|t}function Jd(t){return(131068&t)>>2}function T6(t,n){return-131069&t|n<<2}function D6(t){return 1|t}function L8(t,n,a,o){const p=t[a+1],M=null===n;let k=o?Zd(p):Jd(p),z=!1;for(;0!==k&&(!1===z||M);){const ze=t[k+1];e9(t[k],n)&&(z=!0,t[k+1]=o?D6(ze):S6(ze)),k=o?Zd(ze):Jd(ze)}z&&(t[a+1]=o?S6(p):D6(p))}function e9(t,n){return null===t||null==n||(Array.isArray(t)?t[1]:t)===n||!(!Array.isArray(t)||"string"!=typeof n)&&(0,h.FRF)(t,n)>=0}const Bo={textEnd:0,key:0,keyEnd:0,value:0,valueEnd:0};function I8(t){return t.substring(Bo.key,Bo.keyEnd)}function k8(t){return t.substring(Bo.value,Bo.valueEnd)}function A6(t,n){const a=Bo.textEnd;return a===n?-1:(n=Bo.keyEnd=function L6(t,n,a){for(;n32;)n++;return n}(t,Bo.key=n,a),E4(t,n,a))}function O8(t,n){const a=Bo.textEnd;let o=Bo.key=E4(t,n,a);return a===o?-1:(o=Bo.keyEnd=function i9(t,n,a){let o;for(;n=65&&(-33&o)<=90||o>=48&&o<=57);)n++;return n}(t,o,a),o=P8(t,o,a),o=Bo.value=E4(t,o,a),o=Bo.valueEnd=function a9(t,n,a){let o=-1,p=-1,M=-1,k=n,z=k;for(;k32&&(z=k),M=p,p=o,o=-33&Y}return z}(t,o,a),P8(t,o,a))}function R8(t){Bo.key=0,Bo.keyEnd=0,Bo.value=0,Bo.valueEnd=0,Bo.textEnd=t.length}function E4(t,n,a){for(;n=0;a=O8(n,a))O6(t,I8(n),k8(n))}function B8(t){U8(d9,z8,t,!0)}function z8(t,n){for(let a=function t9(t){return R8(t),A6(t,E4(t,0,Bo.textEnd))}(n);a>=0;a=A6(n,a))(0,h.ezK)(t,I8(n),!0)}function V8(t,n,a,o){const p=(0,h.OAn)(),M=(0,h.klJ)(),k=(0,h.b$O)(2);M.firstUpdatePass&&j8(M,t,k,o),n!==qa&&cr(p,k,n)&&W8(M,M.data[(0,h._px)()],p,p[h.GpT],t,p[k+1]=function h9(t,n){return null==t||""===t||("string"==typeof n?t+=n:"object"==typeof t&&(t=(0,h.AsM)(st(t)))),t}(n,a),o,k)}function U8(t,n,a,o){const p=(0,h.klJ)(),M=(0,h.b$O)(2);p.firstUpdatePass&&j8(p,null,M,o);const k=(0,h.OAn)();if(a!==qa&&cr(k,M,a)){const z=p.data[(0,h._px)()];if(K8(z,o)&&!G8(p,M)){let Y=o?z.classesWithoutHost:z.stylesWithoutHost;null!==Y&&(a=(0,h.n$e)(Y,a||"")),n6(p,z,k,a,o)}else!function u9(t,n,a,o,p,M,k,z){p===qa&&(p=h.Mlv);let Y=0,ze=0,it=0=t.expandoStartIndex}function j8(t,n,a,o){const p=t.data;if(null===p[a+1]){const M=p[(0,h._px)()],k=G8(t,a);K8(M,o)&&null===n&&!k&&(n=!1),n=function H8(t,n,a,o){const p=(0,h.MT)(t);let M=o?n.residualClasses:n.residualStyles;if(null===p)0===(o?n.classBindings:n.styleBindings)&&(a=M4(a=k6(null,t,n,a,o),n.attrs,o),M=null);else{const k=n.directiveStylingLast;if(-1===k||t[k]!==p)if(a=k6(p,t,n,a,o),null===M){let Y=function r9(t,n,a){const o=a?n.classBindings:n.styleBindings;if(0!==Jd(o))return t[Zd(o)]}(t,n,o);void 0!==Y&&Array.isArray(Y)&&(Y=k6(null,t,n,Y[1],o),Y=M4(Y,n.attrs,o),function o9(t,n,a,o){t[Zd(a?n.classBindings:n.styleBindings)]=o}(t,n,o,Y))}else M=function l9(t,n,a){let o;const p=n.directiveEnd;for(let M=1+n.directiveStylingLast;M0)&&(ze=!0)):it=a,p)if(0!==Y){const hn=Zd(t[z+1]);t[o+1]=xf(hn,z),0!==hn&&(t[hn+1]=T6(t[hn+1],o)),t[z+1]=function Zv(t,n){return 131071&t|n<<17}(t[z+1],o)}else t[o+1]=xf(z,0),0!==z&&(t[z+1]=T6(t[z+1],o)),z=o;else t[o+1]=xf(Y,0),0===z?z=o:t[Y+1]=T6(t[Y+1],o),Y=o;ze&&(t[o+1]=S6(t[o+1])),L8(t,it,o,!0),L8(t,it,o,!1),function w6(t,n,a,o,p){const M=p?t.residualClasses:t.residualStyles;null!=M&&"string"==typeof n&&(0,h.FRF)(M,n)>=0&&(a[o+1]=D6(a[o+1]))}(n,it,t,o,M),k=xf(z,Y),M?n.classBindings=k:n.styleBindings=k}(p,M,n,a,k,o)}}function k6(t,n,a,o,p){let M=null;const k=a.directiveEnd;let z=a.directiveStylingLast;for(-1===z?z=a.directiveStart:z++;z0;){const Y=t[p],ze=Array.isArray(Y),it=ze?Y[1]:Y,zt=null===it;let hn=a[p+1];hn===qa&&(hn=zt?h.Mlv:void 0);let fn=zt?(0,h.K7h)(hn,o):it===o?hn:void 0;if(ze&&!Fh(fn)&&(fn=(0,h.K7h)(Y,o)),Fh(fn)&&(z=fn,k))return z;const qn=t[p+1];p=k?Zd(qn):Jd(qn)}if(null!==n){let Y=M?n.residualClasses:n.residualStyles;null!=Y&&(z=(0,h.K7h)(Y,o))}return z}function Fh(t){return void 0!==t}function K8(t,n){return!!(t.flags&(n?8:16))}function Nh(t,n=""){const a=(0,h.OAn)(),o=(0,h.klJ)(),p=t+h.Yw1,M=o.firstCreatePass?Tc(o,p,1,n,null):o.data[p],k=Y8(o,a,M,n,t);a[p]=k,(0,h.SX7)()&&yu(o,a,k,M),(0,h.iMd)(M,!1)}let Y8=(t,n,a,o,p)=>((0,h.m7n)(!0),ud(n[h.GpT],o));function R6(t,n){let a=!1,o=(0,h.c$7)();for(let M=1;M>20;if((0,h.Y3W)(t)||!t.multi){const fn=new an(ze,p,m1,null),qn=j6(Y,n,p?it:it+hn,zt);-1===qn?(Kn(en(z,k),M,Y),G6(M,t,n.length),n.push(Y),z.directiveStart++,z.directiveEnd++,p&&(z.providerIndexes+=1048576),a.push(fn),k.push(fn)):(a[qn]=fn,k[qn]=fn)}else{const fn=j6(Y,n,it+hn,zt),qn=j6(Y,n,it,it+hn),Xi=qn>=0&&a[qn];if(p&&!Xi||!p&&!(fn>=0&&a[fn])){Kn(en(z,k),M,Y);const na=function E9(t,n,a,o,p){const k=new an(t,a,m1,null);return k.multi=[],k.index=n,k.componentProviders=0,p5(k,p,o&&!a),k}(p?x9:H6,a.length,p,o,ze);!p&&Xi&&(a[qn].providerFactory=na),G6(M,t,n.length,0),n.push(Y),z.directiveStart++,z.directiveEnd++,p&&(z.providerIndexes+=1048576),a.push(na),k.push(na)}else G6(M,t,fn>-1?fn:qn,p5(a[p?qn:fn],ze,!p&&o));!p&&o&&Xi&&a[qn].componentProviders++}}}function G6(t,n,a,o){const p=(0,h.Y3W)(n),M=(0,h.MME)(n);if(p||M){const Y=(M?(0,h.nl4)(n.useClass):n).prototype.ngOnDestroy;if(Y){const ze=t.destroyHooks||(t.destroyHooks=[]);if(!p&&n.multi){const it=ze.indexOf(a);-1===it?ze.push(a,[o,Y]):ze[it+1].push(o,Y)}else ze.push(a,Y)}}}function p5(t,n,a){return a&&t.componentProviders++,t.multi.push(n)-1}function j6(t,n,a,o){for(let p=a;p{a.providersResolver=(o,p)=>function C9(t,n,a){const o=(0,h.klJ)();if(o.firstCreatePass){const p=(0,h.JlV)(t);U6(a,o.data,o.blueprint,p,!0),U6(n,o.data,o.blueprint,p,!1)}}(o,p?p(t):t,n)}}function Sf(t){if("function"==typeof t)return t;const n=(0,h.Bqz)(t);return n.some(h.Jzi)?()=>n.map(h.nl4).map(y5):n.map(y5)}function y5(t){return X1(t)?t.ngModule:t}function b5(t,n,a){const o=(0,h.gxQ)()+t,p=(0,h.OAn)();return p[o]===qa?Uc(p,o,a?n.call(a):n()):o0(p,o)}function Tf(t,n,a,o){return S5((0,h.OAn)(),(0,h.gxQ)(),t,n,a,o)}function C5(t,n,a,o,p){return T5((0,h.OAn)(),(0,h.gxQ)(),t,n,a,o,p)}function x5(t,n,a,o,p,M){return D5((0,h.OAn)(),(0,h.gxQ)(),t,n,a,o,p,M)}function zh(t,n){const a=t[n];return a===qa?void 0:a}function S5(t,n,a,o,p,M){const k=n+a;return cr(t,k,p)?Uc(t,k+1,M?o.call(M,p):o(p)):zh(t,k+1)}function T5(t,n,a,o,p,M,k){const z=n+a;return Q1(t,z,p,M)?Uc(t,z+2,k?o.call(k,p,M):o(p,M)):zh(t,z+2)}function D5(t,n,a,o,p,M,k,z){const Y=n+a;return J3(t,Y,p,M,k)?Uc(t,Y+3,z?o.call(z,p,M,k):o(p,M,k)):zh(t,Y+3)}function X6(t,n,a,o,p,M,k,z,Y){const ze=n+a;return uc(t,ze,p,M,k,z)?Uc(t,ze+4,Y?o.call(Y,p,M,k,z):o(p,M,k,z)):zh(t,ze+4)}function w5(t,n,a,o,p,M){let k=n+a,z=!1;for(let Y=0;Y=0;a--){const o=n[a];if(t===o.name)return o}}(n,a.pipeRegistry),a.data[p]=o,o.onDestroy&&(a.destroyHooks??=[]).push(p,o.onDestroy)):o=a.data[p];const M=o.factory||(o.factory=(0,h.wGu)(o.type,!0)),z=(0,h.a2B)(m1);try{const Y=Wn(!1),ze=M();return Wn(Y),(0,h.M_e)(a,(0,h.OAn)(),p,ze),ze}finally{(0,h.a2B)(z)}}function I5(t,n,a){const o=t+h.Yw1,p=(0,h.OAn)(),M=(0,h.Hh6)(p,o);return Vh(p,o)?S5(p,(0,h.gxQ)(),n,M.transform,a,M):M.transform(a)}function K6(t,n,a,o){const p=t+h.Yw1,M=(0,h.OAn)(),k=(0,h.Hh6)(M,p);return Vh(M,p)?T5(M,(0,h.gxQ)(),n,k.transform,a,o,k):k.transform(a,o)}function k5(t,n,a,o,p){const M=t+h.Yw1,k=(0,h.OAn)(),z=(0,h.Hh6)(k,M);return Vh(k,M)?D5(k,(0,h.gxQ)(),n,z.transform,a,o,p,z):z.transform(a,o,p)}function Vh(t,n){return t[h.eDl].data[n].pure}function Y6(t,n){return Od(t,n)}function Df(t,n,a,o,p){const M=p[h.eDl];if(M!==o.tView)for(let k=h.Yw1;k{if(o.encapsulation===Bi.ShadowDom){const qn=k.cloneNode(!1);k.replaceWith(qn),k=qn}const zt=q0(a),hn=M1(z,zt,M,S1(a),k,Y,null,null,null,null,null);(function P5(t,n,a,o){for(let p=h.Yw1;pR5(t,n,it))}(t,n,a,o,p)}function R5(t,n,a){try{a()}catch(o){if(null!==n&&o.message){const M=o.message+(o.stack?"\n"+o.stack:"");t?.hot?.send?.("angular:invalidate",{id:n,message:M,error:!0})}throw o}}const qd={\u0275\u0275animateEnter:function af(t){if(Yr("NgAnimateEnter"),!$d)return af;const n=(0,h.OAn)();if(ef(n))return af;const a=(0,h.Mx4)();return Th(a,n),tf(v4(n),a,()=>function ev(t,n,a){const o=(0,h.d31)(n,t),p=t[h.GpT],M=t[h.YEL].get(ms),k=P_(a),z=[],Y=it=>{if(it.target!==o)return;const zt=it instanceof AnimationEvent?"animationend":"transitionend";M.runOutsideAngular(()=>{p.listen(o,zt,ze)})},ze=it=>{it.target===o&&function tv(t,n,a){const o=g4.get(n);if(t.target===n&&o&&F_(t,n)){t.stopImmediatePropagation();for(const p of o.classList)a.removeClass(n,p);Qp(n)}}(it,o,p)};if(k&&k.length>0){M.runOutsideAngular(()=>{z.push(p.listen(o,"animationstart",Y)),z.push(p.listen(o,"transitionstart",Y))}),function Z7(t,n,a){const o=g4.get(t);if(o){for(const p of n)o.classList.push(p);for(const p of a)o.cleanupFns.push(p)}else g4.set(t,{classList:n,cleanupFns:a})}(o,k,z);for(const it of k)p.addClass(o,it);M.runOutsideAngular(()=>{requestAnimationFrame(()=>{if(iu(o,E0,$d),!E0.has(o)){for(const it of k)p.removeClass(o,it);Qp(o)}})})}}(n,a,t)),D2(n[h.YEL]),P1(n[h.YEL],v4(n)),af},\u0275\u0275animateEnterListener:function wh(t){if(Yr("NgAnimateEnter"),!$d)return wh;const n=(0,h.OAn)();if(ef(n))return wh;const a=(0,h.Mx4)();return Th(a,n),tf(v4(n),a,()=>function nv(t,n,a){const o=(0,h.d31)(n,t);a.call(t[h.SKP],{target:o,animationComplete:O_})}(n,a,t)),D2(n[h.YEL]),P1(n[h.YEL],v4(n)),wh},\u0275\u0275animateLeave:function Ah(t){if(Yr("NgAnimateLeave"),!$d)return Ah;const n=(0,h.OAn)();if(ef(n))return Ah;const o=(0,h.Mx4)();return Th(o,n),tf(M0(n),o,()=>function iv(t,n,a){const{promise:o,resolve:p}=Vp(),M=(0,h.d31)(n,t),k=t[h.GpT],z=t[h.YEL].get(ms);bl.add(t),(M0(t).get(n.index).resolvers??=[]).push(p);const Y=P_(a);return Y&&Y.length>0?function Lh(t,n,a,o,p,M){!function J7(t,n){if(!$d)return;const a=g4.get(t);if(a&&a.classList.length>0&&function q7(t,n){for(const a of n)if(t.classList.contains(a))return!0;return!1}(t,a.classList))for(const o of a.classList)n.removeClass(t,o);Qp(t)}(t,p);const k=[],z=M0(a).get(n.index)?.resolvers,Y=ze=>{if(ze.target===t&&(ze instanceof CustomEvent||F_(ze,t))){if(ze.stopImmediatePropagation(),E0.delete(t),$p(n,t),Array.isArray(n.projection))for(const it of o)p.removeClass(t,it);nf(z,k),Zp(a,n)}};M.runOutsideAngular(()=>{k.push(p.listen(t,"animationend",Y)),k.push(p.listen(t,"transitionend",Y))}),R_(n,t);for(const ze of o)p.addClass(t,ze);M.runOutsideAngular(()=>{requestAnimationFrame(()=>{iu(t,E0,$d),E0.has(t)||($p(n,t),nf(z,k),Zp(a,n))})})}(M,n,t,Y,k,z):p(),{promise:o,resolve:p}}(n,o,t)),D2(n[h.YEL]),Ah},\u0275\u0275animateLeaveListener:function Jp(t){if(Yr("NgAnimateLeave"),!$d)return Jp;const n=(0,h.OAn)(),a=(0,h.Mx4)();return Th(a,n),bl.add(n),tf(M0(n),a,()=>function av(t,n,a){const{promise:o,resolve:p}=Vp(),M=(0,h.d31)(n,t),k=[],z=t[h.GpT],Y=ef(t),ze=t[h.YEL].get(ms),it=t[h.YEL].get(Q7);(M0(t).get(n.index).resolvers??=[]).push(p);const zt=M0(t).get(n.index)?.resolvers;if(Y)Dh(t,n,M,zt,k);else{const hn=setTimeout(()=>Dh(t,n,M,zt,k),it),fn={target:M,animationComplete:()=>{Dh(t,n,M,zt,k),clearTimeout(hn)}};R_(n,M),ze.runOutsideAngular(()=>{k.push(z.listen(M,"animationend",()=>{Dh(t,n,M,zt,k),clearTimeout(hn)},{once:!0}))}),a.call(t[h.SKP],fn)}return{promise:o,resolve:p}}(n,a,t)),D2(n[h.YEL]),Jp},\u0275\u0275attribute:Yp,\u0275\u0275defineComponent:pp,\u0275\u0275defineDirective:Bm,\u0275\u0275defineInjectable:h.jDH,\u0275\u0275defineInjector:h.G2t,\u0275\u0275defineNgModule:_p,\u0275\u0275definePipe:zm,\u0275\u0275directiveInject:m1,\u0275\u0275getInheritedFactory:Ze,\u0275\u0275inject:h.KVO,\u0275\u0275injectAttribute:_a,\u0275\u0275invalidFactory:ho,\u0275\u0275invalidFactoryDep:h.dmw,\u0275\u0275templateRefExtractor:Y6,\u0275\u0275resetView:h.Njj,\u0275\u0275HostDirectivesFeature:Cp,\u0275\u0275NgOnChangesFeature:tn,\u0275\u0275ProvidersFeature:g5,\u0275\u0275CopyDefinitionFeature:function u4(t){let a,n=yp(t.type);a=(0,h.JlV)(t)?n.\u0275cmp:n.\u0275dir;const o=t;for(const p of Um)o[p]=a[p];if((0,h.JlV)(a))for(const p of g0)o[p]=a[p]},\u0275\u0275InheritDefinitionFeature:uh,\u0275\u0275ExternalStylesFeature:function _5(t){return n=>{t.length<1||(n.getExternalStyles=a=>t.map(p=>p+"?ngcomp"+(a?"="+encodeURIComponent(a):"")+"&e="+n.encapsulation))}},\u0275\u0275nextContext:C8,\u0275\u0275namespaceHTML:h.joV,\u0275\u0275namespaceMathML:h.By9,\u0275\u0275namespaceSVG:h.qSk,\u0275\u0275enableBindings:h.cSN,\u0275\u0275disableBindings:h.fuf,\u0275\u0275elementStart:Ih,\u0275\u0275elementEnd:cf,\u0275\u0275element:i6,\u0275\u0275elementContainerStart:uf,\u0275\u0275elementContainerEnd:b4,\u0275\u0275domElement:a6,\u0275\u0275domElementStart:df,\u0275\u0275domElementEnd:y4,\u0275\u0275domElementContainer:function Y_(t,n,a){return hf(t,n,a),K_(),Y_},\u0275\u0275domElementContainerStart:hf,\u0275\u0275domElementContainerEnd:K_,\u0275\u0275domTemplate:gh,\u0275\u0275domListener:bf,\u0275\u0275elementContainer:r6,\u0275\u0275pureFunction0:b5,\u0275\u0275pureFunction1:Tf,\u0275\u0275pureFunction2:C5,\u0275\u0275pureFunction3:x5,\u0275\u0275pureFunction4:function S9(t,n,a,o,p,M,k){return X6((0,h.OAn)(),(0,h.gxQ)(),t,n,a,o,p,M,k)},\u0275\u0275pureFunction5:function E5(t,n,a,o,p,M,k,z){const Y=(0,h.gxQ)()+t,ze=(0,h.OAn)(),it=uc(ze,Y,a,o,p,M);return cr(ze,Y+4,k)||it?Uc(ze,Y+5,z?n.call(z,a,o,p,M,k):n(a,o,p,M,k)):o0(ze,Y+5)},\u0275\u0275pureFunction6:function T9(t,n,a,o,p,M,k,z,Y){const ze=(0,h.gxQ)()+t,it=(0,h.OAn)(),zt=uc(it,ze,a,o,p,M);return Q1(it,ze+4,k,z)||zt?Uc(it,ze+6,Y?n.call(Y,a,o,p,M,k,z):n(a,o,p,M,k,z)):o0(it,ze+6)},\u0275\u0275pureFunction7:function M5(t,n,a,o,p,M,k,z,Y,ze){const it=(0,h.gxQ)()+t,zt=(0,h.OAn)();let hn=uc(zt,it,a,o,p,M);return J3(zt,it+4,k,z,Y)||hn?Uc(zt,it+7,ze?n.call(ze,a,o,p,M,k,z,Y):n(a,o,p,M,k,z,Y)):o0(zt,it+7)},\u0275\u0275pureFunction8:function D9(t,n,a,o,p,M,k,z,Y,ze,it){const zt=(0,h.gxQ)()+t,hn=(0,h.OAn)(),fn=uc(hn,zt,a,o,p,M);return uc(hn,zt+4,k,z,Y,ze)||fn?Uc(hn,zt+8,it?n.call(it,a,o,p,M,k,z,Y,ze):n(a,o,p,M,k,z,Y,ze)):o0(hn,zt+8)},\u0275\u0275pureFunctionV:function w9(t,n,a,o){return w5((0,h.OAn)(),(0,h.gxQ)(),t,n,a,o)},\u0275\u0275getCurrentView:Q_,\u0275\u0275restoreView:h.eBV,\u0275\u0275listener:yf,\u0275\u0275projection:E6,\u0275\u0275syntheticHostProperty:function $_(t,n,a){const o=(0,h.OAn)();if(cr(o,(0,h.xbp)(),n)){const M=(0,h.klJ)(),k=(0,h.CpD)();F2(k,o,t,n,Tu((0,h.MT)(M.data),k,o),a)}return $_},\u0275\u0275syntheticHostListener:function b8(t,n){const a=(0,h.Mx4)(),o=(0,h.OAn)(),p=(0,h.klJ)();return x6(p,o,Tu((0,h.MT)(p.data),a,o),a,t,n),b8},\u0275\u0275pipeBind1:I5,\u0275\u0275pipeBind2:K6,\u0275\u0275pipeBind3:k5,\u0275\u0275pipeBind4:function L9(t,n,a,o,p,M){const k=t+h.Yw1,z=(0,h.OAn)(),Y=(0,h.Hh6)(z,k);return Vh(z,k)?X6(z,(0,h.gxQ)(),n,Y.transform,a,o,p,M,Y):Y.transform(a,o,p,M)},\u0275\u0275pipeBindV:function O5(t,n,a){const o=t+h.Yw1,p=(0,h.OAn)(),M=(0,h.Hh6)(p,o);return Vh(p,o)?w5(p,(0,h.gxQ)(),n,M.transform,a,M):M.transform.apply(M,a)},\u0275\u0275projectionDef:E8,\u0275\u0275domProperty:mf,\u0275\u0275ariaProperty:Kp,\u0275\u0275property:lf,\u0275\u0275pipe:A5,\u0275\u0275queryRefresh:S8,\u0275\u0275queryAdvance:w8,\u0275\u0275viewQuery:M8,\u0275\u0275viewQuerySignal:Cf,\u0275\u0275loadQuery:T8,\u0275\u0275contentQuery:M6,\u0275\u0275contentQuerySignal:D8,\u0275\u0275reference:A8,\u0275\u0275classMap:B8,\u0275\u0275styleMap:function N8(t){U8(O6,s9,t,!1)},\u0275\u0275styleProp:I6,\u0275\u0275classProp:Ph,\u0275\u0275advance:t1,\u0275\u0275template:ph,\u0275\u0275conditional:V_,\u0275\u0275conditionalCreate:z_,\u0275\u0275conditionalBranchCreate:rf,\u0275\u0275defer:function E_(t,n,a,o,p,M,k,z,Y,ze){const it=(0,h.OAn)(),zt=(0,h.klJ)(),hn=t+h.Yw1,fn=Kd(it,zt,t,null,0,0),qn=it[h.YEL],Si=oa(qn);if(zt.firstCreatePass){Yr("NgDefer");const rd={primaryTmplIndex:n,loadingTmplIndex:o??null,placeholderTmplIndex:p??null,errorTmplIndex:M??null,placeholderBlockConfig:null,loadingBlockConfig:null,dependencyResolverFn:a??null,loadingState:Ur.NOT_STARTED,loadingPromise:null,providers:null,hydrateTriggers:null,debug:null,flags:ze??0};Y?.(zt,rd,z,k),function Lp(t,n,a){const o=y0(n);t.data[o]=a}(zt,hn,rd)}const Xi=it[hn];let na=null,Di=null;if(Xi[h.qFA]?.length>0){const rd=Xi[h.qFA][0].data;Di=rd.di??null,na=rd.s}const gs=[null,_0.Initial,null,null,null,null,Di,na,null,null];!function Kg(t,n,a){t[y0(n)]=a}(it,hn,gs);let Jo=null;null!==Di&&Si&&(Jo=qn.get(wo),Jo.add(Di,{lView:it,tNode:fn,lContainer:Xi}));const xr=()=>{Xm(gs),null!==Di&&Jo?.cleanup([Di])};f4(0,gs,()=>(0,h.DyX)(it,xr)),(0,h.ik5)(it,xr)},\u0275\u0275deferWhen:function M_(t){const n=(0,h.OAn)(),a=(0,h.CpD)();if($r(0,n,a)&&cr(n,(0,h.xbp)(),t)){const p=(0,jt.Ht)(null);try{const M=!!t,z=Bl(n,a)[1];!1===M&&z===_0.Initial?Xn(n,a):!0===M&&(z===_0.Initial||z===Is.Placeholder)&&sd(0,n,a)}finally{(0,jt.Ht)(p)}}},\u0275\u0275deferOnIdle:function N7(){$r(0,(0,h.OAn)(),(0,h.Mx4)())&&Jm(p4)},\u0275\u0275deferOnImmediate:function S_(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(0,t,n)&&(null===yo(t[h.eDl],n).loadingTmplIndex&&Xn(t,n),sd(0,t,n))},\u0275\u0275deferOnTimer:function U7(t){$r(0,(0,h.OAn)(),(0,h.Mx4)())&&Jm(c(t))},\u0275\u0275deferOnHover:function w_(t,n){const a=(0,h.OAn)(),o=(0,h.Mx4)();$r(0,a,o)&&(Xn(a,o),td(a,o,t,n,Gi,()=>sd(0,a,o),0))},\u0275\u0275deferOnInteraction:function Sh(t,n){const a=(0,h.OAn)(),o=(0,h.Mx4)();$r(0,a,o)&&(Xn(a,o),td(a,o,t,n,ai,()=>sd(0,a,o),0))},\u0275\u0275deferOnViewport:function K7(t,n){const a=(0,h.OAn)(),o=(0,h.Mx4)();$r(0,a,o)&&(Xn(a,o),td(a,o,t,n,bh,()=>sd(0,a,o),0))},\u0275\u0275deferPrefetchWhen:function R7(t){const n=(0,h.OAn)(),a=(0,h.CpD)();if($r(1,n,a)&&cr(n,(0,h.xbp)(),t)){const p=(0,jt.Ht)(null);try{const M=!!t,z=yo(n[h.eDl],a);!0===M&&z.loadingState===Ur.NOT_STARTED&&Mh(z,n,a)}finally{(0,jt.Ht)(p)}}},\u0275\u0275deferPrefetchOnIdle:function B7(){$r(1,(0,h.OAn)(),(0,h.Mx4)())&&Up(p4)},\u0275\u0275deferPrefetchOnImmediate:function T_(){const t=(0,h.OAn)(),n=(0,h.Mx4)();if(!$r(1,t,n))return;const o=yo(t[h.eDl],n);o.loadingState===Ur.NOT_STARTED&&Gp(o,t,n)},\u0275\u0275deferPrefetchOnTimer:function D_(t){$r(1,(0,h.OAn)(),(0,h.Mx4)())&&Up(c(t))},\u0275\u0275deferPrefetchOnHover:function j7(t,n){const a=(0,h.OAn)(),o=(0,h.Mx4)();if(!$r(1,a,o))return;const M=yo(a[h.eDl],o);M.loadingState===Ur.NOT_STARTED&&td(a,o,t,n,Gi,()=>Mh(M,a,o),1)},\u0275\u0275deferPrefetchOnInteraction:function W7(t,n){const a=(0,h.OAn)(),o=(0,h.Mx4)();if(!$r(1,a,o))return;const M=yo(a[h.eDl],o);M.loadingState===Ur.NOT_STARTED&&td(a,o,t,n,ai,()=>Mh(M,a,o),1)},\u0275\u0275deferPrefetchOnViewport:function A_(t,n){const a=(0,h.OAn)(),o=(0,h.Mx4)();if(!$r(1,a,o))return;const M=yo(a[h.eDl],o);M.loadingState===Ur.NOT_STARTED&&td(a,o,t,n,bh,()=>Mh(M,a,o),1)},\u0275\u0275deferHydrateWhen:function P7(t){const n=(0,h.OAn)(),a=(0,h.CpD)();if(!$r(2,n,a))return;const o=(0,h.xbp)();if(Qd((0,h.klJ)(),a).set(6,null),cr(n,o,t)){const k=n[h.YEL],z=(0,jt.Ht)(null);try{1==!!t&&x0(k,Bl(n,a)[6])}finally{(0,jt.Ht)(z)}}},\u0275\u0275deferHydrateNever:function F7(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(2,t,n)&&Qd((0,h.klJ)(),n).set(7,null)},\u0275\u0275deferHydrateOnIdle:function z7(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(2,t,n)&&(Qd((0,h.klJ)(),n).set(0,null),g_(p4,t,n))},\u0275\u0275deferHydrateOnImmediate:function V7(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(2,t,n)&&(Qd((0,h.klJ)(),n).set(1,null),x0(t[h.YEL],Bl(t,n)[6]))},\u0275\u0275deferHydrateOnTimer:function G7(t){const n=(0,h.OAn)(),a=(0,h.Mx4)();$r(2,n,a)&&(Qd((0,h.klJ)(),a).set(5,{delay:t}),g_(c(t),n,a))},\u0275\u0275deferHydrateOnHover:function H7(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(2,t,n)&&Qd((0,h.klJ)(),n).set(4,null)},\u0275\u0275deferHydrateOnInteraction:function X7(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(2,t,n)&&Qd((0,h.klJ)(),n).set(3,null)},\u0275\u0275deferHydrateOnViewport:function L_(){const t=(0,h.OAn)(),n=(0,h.Mx4)();$r(2,t,n)&&Qd((0,h.klJ)(),n).set(2,null)},\u0275\u0275deferEnableTimerScheduling:function ea(t,n,a,o){const p=t.consts;null!=a&&(n.placeholderBlockConfig=(0,h.db4)(p,a)),null!=o&&(n.loadingBlockConfig=(0,h.db4)(p,o)),null===pa&&(pa=_i)},\u0275\u0275repeater:W_,\u0275\u0275repeaterCreate:j_,\u0275\u0275repeaterTrackByIndex:function lv(t){return t},\u0275\u0275repeaterTrackByIdentity:G_,\u0275\u0275componentInstance:function sv(){return(0,h.OAn)()[h.b5C][h.SKP]},\u0275\u0275text:Nh,\u0275\u0275textInterpolate:F6,\u0275\u0275textInterpolate1:Bh,\u0275\u0275textInterpolate2:N6,\u0275\u0275textInterpolate3:B6,\u0275\u0275textInterpolate4:Ef,\u0275\u0275textInterpolate5:function n5(t,n,a,o,p,M,k,z,Y,ze,it){const zt=(0,h.OAn)(),hn=J8(zt,t,n,a,o,p,M,k,z,Y,ze,it);return hn!==qa&&g1(zt,(0,h._px)(),hn),n5},\u0275\u0275textInterpolate6:function i5(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn){const fn=(0,h.OAn)(),qn=q8(fn,t,n,a,o,p,M,k,z,Y,ze,it,zt,hn);return qn!==qa&&g1(fn,(0,h._px)(),qn),i5},\u0275\u0275textInterpolate7:function a5(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn){const Si=(0,h.OAn)(),Xi=e5(Si,t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn);return Xi!==qa&&g1(Si,(0,h._px)(),Xi),a5},\u0275\u0275textInterpolate8:function z6(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn,Si,Xi){const na=(0,h.OAn)(),Di=t5(na,t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn,Si,Xi);return Di!==qa&&g1(na,(0,h._px)(),Di),z6},\u0275\u0275textInterpolateV:function s5(t){const n=(0,h.OAn)(),a=R6(n,t);return a!==qa&&g1(n,(0,h._px)(),a),s5},\u0275\u0275i18n:function C6(t,n,a){g8(t,n,a),_8()},\u0275\u0275i18nAttributes:function Kv(t,n){const a=(0,h.klJ)(),o=(0,h.db4)(a.consts,n);!function Rv(t,n,a){const o=(0,h.Mx4)(),p=o.index,M=[];if(t.firstCreatePass&&null===t.data[n]){for(let k=0;k0){const o=t.data[a];h6(t,n,Array.isArray(o)?o:o.update,(0,h.c$7)()-x4-1,kh)}kh=0,x4=0}((0,h.klJ)(),(0,h.OAn)(),t+h.Yw1)},\u0275\u0275i18nPostprocess:function Yv(t,n={}){return function p8(t,n={}){let a=t;if(m8.test(t)){const o={},p=[0];a=a.replace(Gv,(M,k,z)=>{const Y=k||z,ze=o[Y]||[];if(ze.length||(Y.split("|").forEach(Si=>{const Xi=Si.match(Xv),na=Xi?parseInt(Xi[1],10):0,Di=Wv.test(Si);ze.push([na,Di,Si])}),o[Y]=ze),!ze.length)throw new Error(`i18n postprocess: unmatched placeholder - ${Y}`);const it=p[p.length-1];let zt=0;for(let Si=0;Sin.hasOwnProperty(M)?`${p}${n[M]}${Y}`:o),a=a.replace(f8,(o,p)=>n.hasOwnProperty(p)?n[p]:o),a=a.replace(Hv,(o,p)=>{if(n.hasOwnProperty(p)){const M=n[p];if(!M.length)throw new Error(`i18n postprocess: unmatched ICU - ${o} with key: ${p}`);return M.shift()}return o})),a}(t,n)},\u0275\u0275resolveWindow:K0,\u0275\u0275resolveDocument:function N4(t){return t.ownerDocument},\u0275\u0275resolveBody:function _d(t){return t.ownerDocument.body},\u0275\u0275setComponentScope:function M9(t,n,a){const o=t.\u0275cmp;o.directiveDefs=d4(n,gp),o.pipeDefs=d4(a,h.oyA)},\u0275\u0275setNgModuleScope:function v5(t,n){return Pt(()=>{const a=(0,h.WbQ)(t);a.declarations=Sf(n.declarations||h.Mlv),a.imports=Sf(n.imports||h.Mlv),a.exports=Sf(n.exports||h.Mlv),n.bootstrap&&(a.bootstrap=Sf(n.bootstrap)),vo.registerNgModule(t,n)})},\u0275\u0275registerNgModuleType:dh,\u0275\u0275getComponentDepsFactory:function I9(t,n){return()=>{try{return vo.getComponentDependencies(t,n).dependencies}catch(a){throw console.error(`Computing dependencies in local compilation mode for the component "${t.name}" failed with the exception:`,a),a}}},\u0275setClassDebugInfo:function k9(t,n){const a=(0,h.xUg)(t);null!==a&&(a.debugInfo=n)},\u0275\u0275declareLet:function l5(t){const n=(0,h.klJ)(),a=(0,h.OAn)(),o=t+h.Yw1,p=Tc(n,o,128,null,null);return(0,h.iMd)(p,!1),(0,h.M_e)(n,a,o,o5),l5},\u0275\u0275storeLet:function c5(t){Yr("NgLet");const n=(0,h.klJ)(),a=(0,h.OAn)(),o=(0,h._px)();return(0,h.M_e)(n,a,o,t),t},\u0275\u0275readContextLet:function f9(t){const n=(0,h.VPL)(),a=(0,h.Hh6)(n,h.Yw1+t);if(a===o5)throw new h.buA(314,!1);return a},\u0275\u0275attachSourceLocations:function p9(t,n){const a=(0,h.klJ)(),o=(0,h.OAn)(),p=o[h.GpT],M="data-ng-source-location";for(const[k,z,Y,ze]of n){(0,h.XRZ)(a,k+h.Yw1);const zt=(0,h.vaC)(k+h.Yw1,o);zt.hasAttribute(M)||p.setAttribute(zt,M,`${t}@o:${z},l:${Y},c:${ze}`)}},\u0275\u0275interpolate:d5,\u0275\u0275interpolate1:u5,\u0275\u0275interpolate2:h5,\u0275\u0275interpolate3:function m5(t,n,a,o,p,M,k=""){return Z8((0,h.OAn)(),t,n,a,o,p,M,k)},\u0275\u0275interpolate4:function g9(t,n,a,o,p,M,k,z,Y=""){return P6((0,h.OAn)(),t,n,a,o,p,M,k,z,Y)},\u0275\u0275interpolate5:function _9(t,n,a,o,p,M,k,z,Y,ze,it=""){return J8((0,h.OAn)(),t,n,a,o,p,M,k,z,Y,ze,it)},\u0275\u0275interpolate6:function v9(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn=""){return q8((0,h.OAn)(),t,n,a,o,p,M,k,z,Y,ze,it,zt,hn)},\u0275\u0275interpolate7:function y9(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn=""){return e5((0,h.OAn)(),t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn)},\u0275\u0275interpolate8:function b9(t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn,Si,Xi=""){return t5((0,h.OAn)(),t,n,a,o,p,M,k,z,Y,ze,it,zt,hn,fn,qn,Si,Xi)},\u0275\u0275interpolateV:function f5(t){return R6((0,h.OAn)(),t)},\u0275\u0275sanitizeHtml:pd,\u0275\u0275sanitizeStyle:u2,\u0275\u0275sanitizeResourceUrl:h2,\u0275\u0275sanitizeScript:m2,\u0275\u0275validateAttribute:f2,\u0275\u0275sanitizeUrl:z0,\u0275\u0275sanitizeUrlOrResourceUrl:G0,\u0275\u0275trustConstantHtml:function L4(t){return Yl(t[0])},\u0275\u0275trustConstantResourceUrl:function V0(t){return function i2(t){return Yo()?.createScriptURL(t)||t}(t[0])},forwardRef:h.Rfq,resolveForwardRef:h.nl4,\u0275\u0275twoWayProperty:V6,\u0275\u0275twoWayBindingSet:r5,\u0275\u0275twoWayListener:Mf,\u0275\u0275replaceMetadata:function R9(t,n,a,o,p=null,M=null){const k=(0,h.xUg)(t);n.apply(null,[t,a,...o]);const{newDef:z,oldDef:Y}=function P9(t,n){const a={...t};return{newDef:Object.assign(t,n,{directiveDefs:a.directiveDefs,pipeDefs:a.pipeDefs,setInput:a.setInput,type:a.type}),oldDef:a}}(k,(0,h.xUg)(t));if(t[h.CQl]=z,Y.tView){const ze=function vr(){return is}().values();for(const it of ze)(0,h.EFk)(it)&&null===it[h.f7T]&&Df(p,M,z,Y,it)}},\u0275\u0275getReplaceMetadataURL:function O9(t,n,a){const o=`./@ng/component?c=${t}&t=${encodeURIComponent(n)}`;return new URL(o,a).href}};let e2=null;function z9(t){null!==e2&&(t.defaultEncapsulation!==e2.defaultEncapsulation||t.preserveWhitespaces!==e2.preserveWhitespaces)||(e2=t)}const Uh=[];function Lf(t){return X1(t)?t.ngModule:t}const iy=Ni("NgModule",t=>t,void 0,0,(t,n)=>function j9(t,n={}){(function H9(t,n){const o=(0,h.Bqz)(n.declarations||h.Mlv);let p=null;Object.defineProperty(t,h.hmW,{configurable:!0,get:()=>(null===p&&(p=N().compileNgModule(qd,`ng:///${t.name}/\u0275mod.js`,{type:t,bootstrap:(0,h.Bqz)(n.bootstrap||h.Mlv).map(h.nl4),declarations:o.map(h.nl4),imports:(0,h.Bqz)(n.imports||h.Mlv).map(h.nl4).map(Lf),exports:(0,h.Bqz)(n.exports||h.Mlv).map(h.nl4).map(Lf),schemas:n.schemas?(0,h.Bqz)(n.schemas):null,id:n.id||null}),p.schemas||(p.schemas=[])),p)});let M=null;Object.defineProperty(t,h.zSs,{get:()=>{if(null===M){const z=N();M=z.compileFactory(qd,`ng:///${t.name}/\u0275fac.js`,{name:t.name,type:t,deps:Ga(t),target:z.FactoryTarget.NgModule,typeArgumentCount:0})}return M},configurable:!1});let k=null;Object.defineProperty(t,h.ONQ,{get:()=>{if(null===k){const z={name:t.name,type:t,providers:n.providers||h.Mlv,imports:[(n.imports||h.Mlv).map(h.nl4),(n.exports||h.Mlv).map(h.nl4)]};k=N().compileInjector(qd,`ng:///${t.name}/\u0275inj.js`,z)}return k},configurable:!1})})(t,n),void 0!==n.id&&dh(t,n.id),function G9(t,n){Uh.push({moduleType:t,ngModule:n})}(t,n)}(t,n));class $5{ngModuleFactory;componentFactories;constructor(n,a){this.ngModuleFactory=n,this.componentFactories=a}}let ay=(()=>{class t{compileModuleSync(a){return new mp(a)}compileModuleAsync(a){return Promise.resolve(this.compileModuleSync(a))}compileModuleAndAllComponentsSync(a){const o=this.compileModuleSync(a),M=Ql((0,h.phH)(a).declarations).reduce((k,z)=>{const Y=(0,h.xUg)(z);return Y&&k.push(new c0(Y)),k},[]);return new $5(o,M)}compileModuleAndAllComponentsAsync(a){return Promise.resolve(this.compileModuleAndAllComponentsSync(a))}clearCache(){}clearCacheFor(a){}getModuleId(a){}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})();const sy=new h.nKC("");let ry=(()=>{class t{zone=(0,h.WQX)(ms);changeDetectionScheduler=(0,h.WQX)(h.hk6);applicationRef=(0,h.WQX)(Zm);applicationErrorHandler=(0,h.WQX)(h.ZTf);_onMicrotaskEmptySubscription;initialize(){this._onMicrotaskEmptySubscription||(this._onMicrotaskEmptySubscription=this.zone.onMicrotaskEmpty.subscribe({next:()=>{this.changeDetectionScheduler.runningTick||this.zone.run(()=>{try{this.applicationRef.dirtyFlags|=1,this.applicationRef._tick()}catch(a){this.applicationErrorHandler(a)}})}}))}ngOnDestroy(){this._onMicrotaskEmptySubscription?.unsubscribe()}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})();const kf=new h.nKC("",{factory:()=>!1});function Z5({ngZoneFactory:t,ignoreChangesOutsideZone:n,scheduleInRootZone:a}){return t??=()=>new ms({...tg(),scheduleInRootZone:a}),[{provide:ms,useFactory:t},{provide:h.Z63,multi:!0,useFactory:()=>{const o=(0,h.WQX)(ry,{optional:!0});return()=>o.initialize()}},{provide:h.Z63,multi:!0,useFactory:()=>{const o=(0,h.WQX)(ly);return()=>{o.initialize()}}},!0===n?{provide:h.Jy$,useValue:!0}:[],{provide:h.AQb,useValue:a??n1},{provide:h.ZTf,useFactory:()=>{const o=(0,h.WQX)(ms),p=(0,h.WQX)(h.uvJ);let M;return k=>{o.runOutsideAngular(()=>{p.destroyed&&!M?setTimeout(()=>{throw k}):(M??=p.get(h.zcH),M.handleError(k))})}}}]}function tg(t){return{enableLongStackTrace:!1,shouldCoalesceEventChangeDetection:t?.eventCoalescing??!1,shouldCoalesceRunChangeDetection:t?.runCoalescing??!1}}let ly=(()=>{class t{subscription=new wt.yU;initialized=!1;zone=(0,h.WQX)(ms);pendingTasks=(0,h.WQX)(h.rev);initialize(){if(this.initialized)return;this.initialized=!0;let a=null;!this.zone.isStable&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(a=this.pendingTasks.add()),this.zone.runOutsideAngular(()=>{this.subscription.add(this.zone.onStable.subscribe(()=>{ms.assertNotInAngularZone(),queueMicrotask(()=>{null!==a&&!this.zone.hasPendingMacrotasks&&!this.zone.hasPendingMicrotasks&&(this.pendingTasks.remove(a),a=null)})}))}),this.subscription.add(this.zone.onUnstable.subscribe(()=>{ms.assertInAngularZone(),a??=this.pendingTasks.add()}))}ngOnDestroy(){this.subscription.unsubscribe()}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})(),ag=(()=>{class t{applicationErrorHandler=(0,h.WQX)(h.ZTf);appRef=(0,h.WQX)(Zm);taskService=(0,h.WQX)(h.rev);ngZone=(0,h.WQX)(ms);zonelessEnabled=(0,h.WQX)(h.Evm);tracing=(0,h.WQX)(rc,{optional:!0});disableScheduling=(0,h.WQX)(h.Jy$,{optional:!0})??!1;zoneIsDefined=typeof Zone<"u"&&!!Zone.root.run;schedulerTickApplyArgs=[{data:{__scheduler_tick__:!0}}];subscriptions=new wt.yU;angularZoneId=this.zoneIsDefined?this.ngZone._inner?.get(xd):null;scheduleInRootZone=!this.zonelessEnabled&&this.zoneIsDefined&&((0,h.WQX)(h.AQb,{optional:!0})??!1);cancelScheduledCallback=null;useMicrotaskScheduler=!1;runningTick=!1;pendingRenderTaskId=null;constructor(){this.subscriptions.add(this.appRef.afterTick.subscribe(()=>{this.runningTick||this.cleanup()})),this.subscriptions.add(this.ngZone.onUnstable.subscribe(()=>{this.runningTick||this.cleanup()})),this.disableScheduling||=!this.zonelessEnabled&&(this.ngZone instanceof Sc||!this.zoneIsDefined)}notify(a){if(!this.zonelessEnabled&&5===a)return;let o=!1;switch(a){case 0:this.appRef.dirtyFlags|=2;break;case 3:case 2:case 4:case 5:case 1:this.appRef.dirtyFlags|=4;break;case 6:case 13:this.appRef.dirtyFlags|=2,o=!0;break;case 12:this.appRef.dirtyFlags|=16,o=!0;break;case 11:o=!0;break;default:this.appRef.dirtyFlags|=8}if(this.appRef.tracingSnapshot=this.tracing?.snapshot(this.appRef.tracingSnapshot)??null,!this.shouldScheduleTick(o))return;const p=this.useMicrotaskScheduler?C2:k1;this.pendingRenderTaskId=this.taskService.add(),this.cancelScheduledCallback=this.scheduleInRootZone?Zone.root.run(()=>p(()=>this.tick())):this.ngZone.runOutsideAngular(()=>p(()=>this.tick()))}shouldScheduleTick(a){return!(this.disableScheduling&&!a||this.appRef.destroyed||null!==this.pendingRenderTaskId||this.runningTick||this.appRef._runningTick||!this.zonelessEnabled&&this.zoneIsDefined&&Zone.current.get(xd+this.angularZoneId))}tick(){if(this.runningTick||this.appRef.destroyed)return;if(0===this.appRef.dirtyFlags)return void this.cleanup();!this.zonelessEnabled&&7&this.appRef.dirtyFlags&&(this.appRef.dirtyFlags|=1);const a=this.taskService.add();try{this.ngZone.run(()=>{this.runningTick=!0,this.appRef._tick()},void 0,this.schedulerTickApplyArgs)}catch(o){this.taskService.remove(a),this.applicationErrorHandler(o)}finally{this.cleanup()}this.useMicrotaskScheduler=!0,C2(()=>{this.useMicrotaskScheduler=!1,this.taskService.remove(a)})}ngOnDestroy(){this.subscriptions.unsubscribe(),this.cleanup()}cleanup(){if(this.runningTick=!1,this.cancelScheduledCallback?.(),this.cancelScheduledCallback=null,null!==this.pendingRenderTaskId){const a=this.pendingRenderTaskId;this.pendingRenderTaskId=null,this.taskService.remove(a)}}static \u0275fac=function(o){return new(o||t)};static \u0275prov=(0,h.jDH)({token:t,factory:t.\u0275fac,providedIn:"root"})}return t})();const q5=new h.nKC("",{providedIn:"root",factory:()=>(0,h.WQX)(q5,{optional:!0,skipSelf:!0})||function cy(){return typeof $localize<"u"&&$localize.locale||u6}()}),dy=new h.nKC("",{providedIn:"root",factory:()=>"USD"})},9295(Zt,pe,l){"use strict";l.d(pe,{Zf:()=>Ce,EW:()=>W,QZ:()=>re,O8:()=>j}),l(467);var d=l(2615),v=l(8440);const u={...v.pL,consumerIsAlwaysLive:!0,consumerAllowSignalWrites:!0,dirty:!0,kind:"effect"};class Ce{destroyed=!1;listeners=null;errorHandler=(0,d.WQX)(d.zcH,{optional:!0});destroyRef=(0,d.WQX)(d.abz);constructor(){this.destroyRef.onDestroy(()=>{this.destroyed=!0,this.listeners=null})}subscribe($){if(this.destroyed)throw new d.buA(953,!1);return(this.listeners??=[]).push($),{unsubscribe:()=>{const Ke=this.listeners?.indexOf($);void 0!==Ke&&-1!==Ke&&this.listeners?.splice(Ke,1)}}}emit($){if(this.destroyed)return void console.warn((0,d.OsK)(953,!1));if(null===this.listeners)return;const Ke=(0,v.Ht)(null);try{for(const Vt of this.listeners)try{Vt($)}catch(St){this.errorHandler?.handleError(St)}}finally{(0,v.Ht)(Ke)}}}function j(H){return function f(H){const $=(0,v.Ht)(null);try{return H()}finally{(0,v.Ht)($)}}(H)}function W(H,$){return(0,v.KZ)(H,$?.equal)}class G{[v.bh];constructor($){this[v.bh]=$}destroy(){this[v.bh].destroy()}}function re(H,$){const Ke=$?.injector??(0,d.WQX)(d.zZn);let St,Vt=!0!==$?.manualCleanup?Ke.get(d.abz):null;const ot=Ke.get(d.r4V,null,{optional:!0}),nt=Ke.get(d.hk6);return null!==ot?(St=function ce(H,$,Ke){const Vt=Object.create(V);return Vt.view=H,Vt.zone=typeof Zone<"u"?Zone.current:null,Vt.notifier=$,Vt.fn=ne(Vt,Ke),H[d.tQN]??=new Set,H[d.tQN].add(Vt),Vt.consumerMarkedDirty(Vt),Vt}(ot.view,nt,H),Vt instanceof d.KXn&&Vt._lView===ot.view&&(Vt=null)):St=function be(H,$,Ke){const Vt=Object.create(Ee);return Vt.fn=ne(Vt,H),Vt.scheduler=$,Vt.notifier=Ke,Vt.zone=typeof Zone<"u"?Zone.current:null,Vt.scheduler.add(Vt),Vt.notifier.notify(12),Vt}(H,Ke.get(d.VML),nt),St.injector=Ke,null!==Vt&&(St.onDestroyFn=Vt.onDestroy(()=>St.destroy())),new G(St)}const xe={...u,cleanupFns:void 0,zone:null,onDestroyFn:d.lQ1,run(){const H=(0,d.cBl)(!1);try{!function L(H){if(H.dirty=!1,H.version>0&&!(0,v.si)(H))return;H.version++;const $=(0,v.Bg)(H);try{H.cleanup(),H.fn()}finally{(0,v.Wu)(H,$)}}(this)}finally{(0,d.cBl)(H)}},cleanup(){if(!this.cleanupFns?.length)return;const H=(0,v.Ht)(null);try{for(;this.cleanupFns.length;)this.cleanupFns.pop()()}finally{this.cleanupFns=[],(0,v.Ht)(H)}}},Ee={...xe,consumerMarkedDirty(){this.scheduler.schedule(this),this.notifier.notify(12)},destroy(){(0,v.XR)(this),this.onDestroyFn(),this.cleanup(),this.scheduler.remove(this)}},V={...xe,consumerMarkedDirty(){this.view[d.Wg1]|=8192,(0,d.blu)(this.view),this.notifier.notify(13)},destroy(){(0,v.XR)(this),this.onDestroyFn(),this.cleanup(),this.view[d.tQN]?.delete(this)}};function ne(H,$){return()=>{$(Ke=>(H.cleanupFns??=[]).push(Ke))}}Error,Error},2615(Zt,pe,l){"use strict";let i;function d(){return i}function v(K){const Ie=i;return i=K,Ie}l.d(pe,{JEi:()=>er,Isx:()=>Xs,EJG:()=>_r,Yrj:()=>rs,VVG:()=>Zr,Y20:()=>Hr,SKP:()=>qo,hk6:()=>gc,eVN:()=>Wr,b5C:()=>is,rQE:()=>Hs,X5O:()=>ls,qFA:()=>Za,qQL:()=>sa,abz:()=>va,tQN:()=>Pa,pcR:()=>qs,oMQ:()=>xs,Mlv:()=>Wn,MZA:()=>En,M0L:()=>Co,Z63:()=>ri,VML:()=>Oa,uvJ:()=>Ki,zcH:()=>Ls,Wg1:()=>Ka,Yw1:()=>wa,jgP:()=>jr,tcA:()=>Vo,ID:()=>Ui,YEL:()=>Jr,B9r:()=>Hn,GBX:()=>U,ZTf:()=>gi,nKC:()=>Qn,zZn:()=>$i,rJ1:()=>nr,nfM:()=>Fs,s6P:()=>Or,K29:()=>kr,CQl:()=>ke,p9y:()=>Me,zSs:()=>Z,ONQ:()=>Sn,hmW:()=>N,yAH:()=>Ft,KXn:()=>oa,oTH:()=>Pi,Czx:()=>vr,f7T:()=>Ps,wVl:()=>Ws,GYQ:()=>nc,u5s:()=>Ha,rev:()=>lo,Ds7:()=>Mr,e5P:()=>_a,Iaj:()=>yr,GpT:()=>Js,buA:()=>le,AQb:()=>ic,jNX:()=>ds,eDl:()=>Er,qlT:()=>js,bm_:()=>Rr,RxE:()=>C,r4V:()=>Kc,ok8:()=>Pe,Evm:()=>Yc,Jy$:()=>v1,laP:()=>j,EYC:()=>Mn,ng7:()=>ci,llW:()=>ia,gsJ:()=>Bn,GZS:()=>Ei,iYM:()=>$,PEr:()=>Ss,z7f:()=>Vt,LZP:()=>St,Xln:()=>Dt,yzR:()=>el,TWe:()=>Ml,LIA:()=>he,GWr:()=>F,pbo:()=>ve,bBq:()=>cs,Af3:()=>Zs,zQk:()=>tr,oZy:()=>Eo,tF7:()=>ot,ZFY:()=>we,cP4:()=>qr,MdC:()=>Ms,XvL:()=>ie,KET:()=>xa,Tkx:()=>zl,iw4:()=>lt,tdH:()=>Xl,pr_:()=>ht,IAh:()=>te,U45:()=>Re,WrV:()=>Xe,kNT:()=>nt,MI:()=>pl,biv:()=>Sl,ZQF:()=>Le,Cv0:()=>_e,W0r:()=>Ln,R2n:()=>mn,O8q:()=>On,VKj:()=>kt,Rom:()=>$e,z6V:()=>Un,n$e:()=>V,hjC:()=>It,Pz9:()=>wi,PQT:()=>se,VX4:()=>We,_Z$:()=>Je,N79:()=>Ul,xLP:()=>In,zuh:()=>vt,BI7:()=>Ri,U7d:()=>Ni,uXy:()=>kn,nZS:()=>vi,ihb:()=>vl,ID8:()=>al,gv8:()=>Nr,dwj:()=>xe,Bqz:()=>rn,OsK:()=>Ae,Rfq:()=>ne,c$7:()=>Il,gxQ:()=>oo,ckz:()=>Do,kLh:()=>re,xUg:()=>en,KdJ:()=>Vl,db4:()=>eo,VPL:()=>La,MT:()=>wo,Z9v:()=>pc,Ab:()=>Kt,w7Z:()=>od,Mx4:()=>et,veI:()=>Mt,HaV:()=>oi,Agf:()=>vn,znI:()=>so,wGu:()=>Fn,ebl:()=>cn,OAn:()=>X,_0$:()=>Al,UaU:()=>ct,vaC:()=>Go,d31:()=>gl,ZRn:()=>Tr,phH:()=>da,WbQ:()=>Ta,WB9:()=>Nn,d_l:()=>io,vNG:()=>Ys,oyA:()=>bn,_px:()=>Io,CpD:()=>Wl,XRZ:()=>jo,klJ:()=>de,Fje:()=>tl,b$O:()=>kl,SMZ:()=>G,WQX:()=>zi,MzJ:()=>At,jXY:()=>Fe,MME:()=>ni,JlV:()=>mt,Qs1:()=>He,srX:()=>Ne,vOT:()=>za,YWB:()=>ai,EPY:()=>Es,yoD:()=>q,P3H:()=>Ns,Jzi:()=>De,rFz:()=>as,JjR:()=>Xc,M6u:()=>bo,KtD:()=>Jl,muV:()=>gt,A0l:()=>Sr,q$2:()=>Ks,yP_:()=>ar,EFk:()=>ln,Hps:()=>Oo,UhH:()=>Ll,QuC:()=>Kn,Y3W:()=>nn,n$r:()=>tc,K7h:()=>fa,FRF:()=>ha,ezK:()=>ra,m7n:()=>$n,niQ:()=>jl,krE:()=>nl,bll:()=>Hl,Hh6:()=>mo,EmA:()=>yi,blu:()=>to,HAh:()=>fo,WfI:()=>ii,xbp:()=>ec,jvu:()=>Rl,lQ1:()=>Ti,BCV:()=>Wi,Rc9:()=>Ga,E6O:()=>Vn,DyX:()=>no,eFE:()=>qe,dMS:()=>Ho,HUe:()=>So,nl4:()=>J,N4e:()=>gr,XaM:()=>ee,Kw3:()=>mc,vQI:()=>fc,RZ9:()=>Fr,GA0:()=>Ao,iMd:()=>Tn,Pfq:()=>Gi,xyx:()=>po,a2B:()=>Tt,kcM:()=>gn,DFp:()=>Ue,P2g:()=>il,cBl:()=>ro,ypq:()=>ko,vPA:()=>yl,HO5:()=>Xr,M_e:()=>Tl,B22:()=>Dr,ik5:()=>wl,AsM:()=>Ee,PP7:()=>pn,$8:()=>Ke,$Hz:()=>on,zAe:()=>Uo,IvY:()=>mi,_gW:()=>_l,F1c:()=>us,ITl:()=>Dl,brz:()=>Ve,jRZ:()=>To,SX7:()=>Pn,jDH:()=>oe,G2t:()=>fe,fuf:()=>Wo,cSN:()=>ir,KVO:()=>bi,dmw:()=>Qi,joV:()=>yt,By9:()=>Ts,qSk:()=>sr,Njj:()=>me,eBV:()=>Q});const w=Symbol("NotFound");function O(K){return K===w||"\u0275NotFound"===K?.name}Error;var f=l(8440),u=l(4412),L=l(1985);class C{full;major;minor;patch;constructor(Ie){this.full=Ie;const Ut=Ie.split(".");this.major=Ut[0],this.minor=Ut[1],this.patch=Ut.slice(2).join(".")}}const Pe="https://angular.dev/best-practices/security#preventing-cross-site-scripting-xss";class le extends Error{code;constructor(Ie,Ut){super(Ae(Ie,Ut)),this.code=Ie}}function Ae(K,Ie){return`${function Ce(K){return`NG0${Math.abs(K)}`}(K)}${Ie?": "+Ie:""}`}const j=globalThis;function G(){return!1}function re(K){for(let Ie in K)if(K[Ie]===re)return Ie;throw Error("")}function xe(K,Ie){for(const Ut in Ie)Ie.hasOwnProperty(Ut)&&!K.hasOwnProperty(Ut)&&(K[Ut]=Ie[Ut])}function Ee(K){if("string"==typeof K)return K;if(Array.isArray(K))return`[${K.map(Ee).join(", ")}]`;if(null==K)return""+K;const Ie=K.overriddenName||K.name;if(Ie)return`${Ie}`;const Ut=K.toString();if(null==Ut)return""+Ut;const Gn=Ut.indexOf("\n");return Gn>=0?Ut.slice(0,Gn):Ut}function V(K,Ie){return K?Ie?`${K} ${Ie}`:K:Ie||""}const be=re({__forward_ref__:re});function ne(K){return K.__forward_ref__=ne,K.toString=function(){return Ee(this())},K}function J(K){return De(K)?K():K}function De(K){return"function"==typeof K&&K.hasOwnProperty(be)&&K.__forward_ref__===ne}function Re(K,Ie){"number"!=typeof K&&Ke(Ie,typeof K,"number","===")}function Xe(K,Ie,Ut){Re(K,"Expected a number"),function P(K,Ie,Ut){K<=Ie||Ke(Ut,K,Ie,"<=")}(K,Ut,"Expected number to be less than or equal to"),ve(K,Ie,"Expected number to be greater than or equal to")}function _e(K,Ie){"string"!=typeof K&&Ke(Ie,null===K?"null":typeof K,"string","===")}function he(K,Ie){"function"!=typeof K&&Ke(Ie,null===K?"null":typeof K,"function","===")}function Dt(K,Ie,Ut){K!=Ie&&Ke(Ut,K,Ie,"==")}function lt(K,Ie,Ut){K==Ie&&Ke(Ut,K,Ie,"!=")}function Le(K,Ie,Ut){K!==Ie&&Ke(Ut,K,Ie,"===")}function te(K,Ie,Ut){K===Ie&&Ke(Ut,K,Ie,"!==")}function ie(K,Ie,Ut){KIe||Ke(Ut,K,Ie,">")}function ve(K,Ie,Ut){K>=Ie||Ke(Ut,K,Ie,">=")}function $(K,Ie){null==K&&Ke(Ie,K,null,"!=")}function Ke(K,Ie,Ut,Gn){throw new Error(`ASSERTION ERROR: ${K}`+(null==Gn?"":` [Expected=> ${Ut} ${Gn} ${Ie} <=Actual]`))}function Vt(K){K instanceof Node||Ke(`The provided value must be an instance of a DOM Node but got ${Ee(K)}`)}function St(K){K instanceof Element||Ke(`The provided value must be an element but got ${Ee(K)}`)}function ot(K,Ie){$(K,"Array must be defined.");const Ut=K.length;(Ie<0||Ie>=Ut)&&Ke(`Index expected to be less than ${Ut} but got ${Ie}`)}function nt(K,...Ie){if(-1!==Ie.indexOf(K))return!0;Ke(`Expected value to be one of ${JSON.stringify(Ie)} but was ${JSON.stringify(K)}.`)}function ht(K){null!==(0,f.nR)()&&Ke(`${K}() should never be called in a reactive context.`)}function oe(K){return{token:K.token,providedIn:K.providedIn||null,factory:K.factory,value:void 0}}function fe(K){return{providers:K.providers||[],imports:K.imports||[]}}function Qe(K){return function Gt(K,Ie){return K.hasOwnProperty(Ie)&&K[Ie]||null}(K,Ft)}function gt(K){return null!==Qe(K)}function cn(K){return K&&K.hasOwnProperty(Sn)?K[Sn]:null}const Ft=re({\u0275prov:re}),Sn=re({\u0275inj:re});class Qn{_desc;ngMetadataName="InjectionToken";\u0275prov;constructor(Ie,Ut){this._desc=Ie,this.\u0275prov=void 0,"number"==typeof Ut?this.__NG_ELEMENT_ID__=Ut:void 0!==Ut&&(this.\u0275prov=oe({token:this,providedIn:Ut.providedIn||"root",factory:Ut.factory}))}get multi(){return this}toString(){return`InjectionToken ${this._desc}`}}let h;function jt(){return Ke("getInjectorProfilerContext should never be called in production mode"),h}function Ue(K){Ke("setInjectorProfilerContext should never be called in production mode");const Ie=h;return h=K,Ie}const wt=[],pt=()=>{};function gn(K){return Ke("setInjectorProfiler should never be called in production mode"),null!==K?(wt.includes(K)||wt.push(K),()=>function Pt(K){const Ie=wt.indexOf(K);-1!==Ie&&wt.splice(Ie,1)}(K)):(wt.length=0,pt)}function ei(K){Ke("Injector profiler should never be called in production mode");for(let Ie=0;Ie1&&(ui=` Path: ${Ut.join(" -> ")}.`);return Ae(Ie,`${K}${Gn?` Source: ${Gn}.`:""}${ui}`)}(K[Ge]||K.message,K[ut],K[Ot],Ie),K}(se(0,Ie),null)}function on(K,Ie){throw new le(-201,!1)}function dn(K,Ie,Ut){const Gn=new le(Ie,K);return Gn[ut]=Ie,Gn[Ge]=K,Ut&&(Gn[Ot]=Ut),Gn}let xi;function Yi(){return xi}function Tt(K){const Ie=xi;return xi=K,Ie}function At(K,Ie,Ut){const Gn=Qe(K);return Gn&&"root"==Gn.providedIn?void 0===Gn.value?Gn.value=Gn.factory():Gn.value:8&Ut?null:void 0!==Ie?Ie:void on()}function we(K){}const Lt={},Ht="__NG_DI_FLAG__";class _n{injector;constructor(Ie){this.injector=Ie}retrieve(Ie,Ut){const Gn=It(Ut)||0;try{return this.injector.get(Ie,8&Gn?null:Lt,Gn)}catch(ui){if(O(ui))return ui;throw ui}}}function fi(K,Ie=0){const Ut=d();if(void 0===Ut)throw new le(-203,!1);if(null===Ut)return At(K,void 0,Ie);{const Gn=function an(K){return{optional:!!(8&K),host:!!(1&K),self:!!(2&K),skipSelf:!!(4&K)}}(Ie),ui=Ut.retrieve(K,Gn);if(O(ui)){if(Gn.optional)return null;throw ui}return ui}}function bi(K,Ie=0){return(Yi()||fi)(J(K),Ie)}function Qi(K){throw new le(202,!1)}function zi(K,Ie){return bi(K,It(Ie))}function It(K){return typeof K>"u"||"number"==typeof K?K:0|(K.optional&&8)|(K.host&&1)|(K.self&&2)|(K.skipSelf&&4)}function Yt(K){const Ie=[];for(let Ut=0;UtArray.isArray(Ut)?In(Ut,Ie):Ie(Ut))}function Mn(K,Ie,Ut){Ie>=K.length?K.push(Ut):K.splice(Ie,0,Ut)}function Vn(K,Ie){return Ie>=K.length-1?K.pop():K.splice(Ie,1)[0]}function ii(K,Ie){const Ut=[];for(let Gn=0;GnIe;)K[ui]=K[ui-2],ui--;K[Ie]=Ut,K[Ie+1]=Gn}}function ra(K,Ie,Ut){let Gn=ha(K,Ie);return Gn>=0?K[1|Gn]=Ut:(Gn=~Gn,ia(K,Gn,Ie,Ut)),Gn}function fa(K,Ie){const Ut=ha(K,Ie);if(Ut>=0)return K[1|Ut]}function ha(K,Ie){return function qt(K,Ie,Ut){let Gn=0,ui=K.length>>Ut;for(;ui!==Gn;){const ki=Gn+(ui-Gn>>1),Wa=K[ki<Ie?ui=ki:Gn=ki+1}return~(ui<{Ut.push(Wa)};return In(Ie,Wa=>{const Bi=Wa;Ve(Bi,ki,[],Gn)&&(ui||=[],ui.push(Bi))}),void 0!==ui&&Wt(ui,ki),Ut}function Wt(K,Ie){for(let Ut=0;Ut{Ie(ki,Gn)})}}function Ve(K,Ie,Ut,Gn){if(!(K=J(K)))return!1;let ui=null,ki=cn(K);const Wa=!ki&&en(K);if(ki||Wa){if(Wa&&!Wa.standalone)return!1;ui=K}else{const Aa=K.ngModule;if(ki=cn(Aa),!ki)return!1;ui=Aa}const Bi=Gn.has(ui);if(Wa){if(Bi)return!1;if(Gn.add(ui),Wa.dependencies){const Aa="function"==typeof Wa.dependencies?Wa.dependencies():Wa.dependencies;for(const hi of Aa)Ve(hi,Ie,Ut,Gn)}}else{if(!ki)return!1;{if(null!=ki.imports&&!Bi){let hi;Gn.add(ui),In(ki.imports,es=>{Ve(es,Ie,Ut,Gn)&&(hi||=[],hi.push(es))}),void 0!==hi&&Wt(hi,Ie)}if(!Bi){const hi=Fn(ui)||(()=>new ui);Ie({provide:ui,useFactory:hi,deps:Wn},ui),Ie({provide:Hn,useValue:ui,multi:!0},ui),Ie({provide:ri,useValue:()=>bi(ui),multi:!0},ui)}const Aa=ki.providers;if(null!=Aa&&!Bi){const hi=K;Jt(Aa,es=>{Ie(es,hi)})}}}return ui!==K&&void 0!==K.providers}function Jt(K,Ie){for(let Ut of K)ye(Ut)&&(Ut=Ut.\u0275providers),Array.isArray(Ut)?Jt(Ut,Ie):Ie(Ut)}const ti=re({provide:String,useValue:re});function di(K){return null!==K&&"object"==typeof K&&ti in K}function nn(K){return"function"==typeof K}function ni(K){return!!K.useClass}const U=new Qn(""),tt={},Ze={};let Xt;function Nn(){return void 0===Xt&&(Xt=new Pi),Xt}class Ki{}class _a extends Ki{parent;source;scopes;records=new Map;_ngOnDestroyHooks=new Set;_onDestroyHooks=[];get destroyed(){return this._destroyed}_destroyed=!1;injectorDefTypes;constructor(Ie,Ut,Gn,ui){super(),this.parent=Ut,this.source=Gn,this.scopes=ui,pr(Ie,Wa=>this.processProvider(Wa)),this.records.set(Rn,hr(void 0,this)),ui.has("environment")&&this.records.set(Ki,hr(void 0,this));const ki=this.records.get(U);null!=ki&&"string"==typeof ki.value&&this.scopes.add(ki.value),this.injectorDefTypes=new Set(this.get(Hn,Wn,{self:!0}))}retrieve(Ie,Ut){const Gn=It(Ut)||0;try{return this.get(Ie,Lt,Gn)}catch(ui){if(O(ui))return ui;throw ui}}destroy(){As(this),this._destroyed=!0;const Ie=(0,f.Ht)(null);try{for(const Gn of this._ngOnDestroyHooks)Gn.ngOnDestroy();const Ut=this._onDestroyHooks;this._onDestroyHooks=[];for(const Gn of Ut)Gn()}finally{this.records.clear(),this._ngOnDestroyHooks.clear(),this.injectorDefTypes.clear(),(0,f.Ht)(Ie)}}onDestroy(Ie){return As(this),this._onDestroyHooks.push(Ie),()=>this.removeOnDestroy(Ie)}runInContext(Ie){As(this);const Ut=v(this),Gn=Tt(void 0);try{return Ie()}finally{v(Ut),Tt(Gn)}}get(Ie,Ut=Lt,Gn){if(As(this),Ie.hasOwnProperty(at))return Ie[at](this);const ui=It(Gn),Wa=v(this),Bi=Tt(void 0);try{if(!(4&ui)){let hi=this.records.get(Ie);if(void 0===hi){const es=function zo(K){return"function"==typeof K||"object"==typeof K&&"InjectionToken"===K.ngMetadataName}(Ie)&&Qe(Ie);hi=es&&this.injectableDefInScope(es)?hr(Ua(Ie),tt):null,this.records.set(Ie,hi)}if(null!=hi)return this.hydrate(Ie,hi,ui)}return(2&ui?Nn():this.parent).get(Ie,Ut=8&ui&&Ut===Lt?null:Ut)}catch(Aa){const hi=function xn(K){return K[ut]}(Aa);throw-200===hi||-201===hi?new le(hi,null):Aa}finally{Tt(Bi),v(Wa)}}resolveInjectorInitializers(){const Ie=(0,f.Ht)(null),Ut=v(this),Gn=Tt(void 0);try{const ki=this.get(ri,Wn,{self:!0});for(const Wa of ki)Wa()}finally{v(Ut),Tt(Gn),(0,f.Ht)(Ie)}}toString(){const Ie=[],Ut=this.records;for(const Gn of Ut.keys())Ie.push(Ee(Gn));return`R3Injector[${Ie.join(", ")}]`}processProvider(Ie){let Ut=nn(Ie=J(Ie))?Ie:J(Ie&&Ie.provide);const Gn=function ns(K){return di(K)?hr(void 0,K.useValue):hr(Ga(K),tt)}(Ie);if(!nn(Ie)&&!0===Ie.multi){let ui=this.records.get(Ut);ui||(ui=hr(void 0,tt,!0),ui.factory=()=>Yt(ui.multi),this.records.set(Ut,ui)),Ut=Ie,ui.multi.push(Ie)}this.records.set(Ut,Gn)}hydrate(Ie,Ut,Gn){const ui=(0,f.Ht)(null);try{if(Ut.value===Ze)throw se(Ee(Ie));return Ut.value===tt&&(Ut.value=Ze,Ut.value=Ut.factory(void 0,Gn)),"object"==typeof Ut.value&&Ut.value&&function fr(K){return null!==K&&"object"==typeof K&&"function"==typeof K.ngOnDestroy}(Ut.value)&&this._ngOnDestroyHooks.add(Ut.value),Ut.value}finally{(0,f.Ht)(ui)}}injectableDefInScope(Ie){if(!Ie.providedIn)return!1;const Ut=J(Ie.providedIn);return"string"==typeof Ut?"any"===Ut||this.scopes.has(Ut):this.injectorDefTypes.has(Ut)}removeOnDestroy(Ie){const Ut=this._onDestroyHooks.indexOf(Ie);-1!==Ut&&this._onDestroyHooks.splice(Ut,1)}}function Ua(K){const Ie=Qe(K),Ut=null!==Ie?Ie.factory:Fn(K);if(null!==Ut)return Ut;if(K instanceof Qn)throw new le(204,!1);if(K instanceof Function)return function $a(K){if(K.length>0)throw new le(204,!1);const Ut=function rt(K){return(K?.[Ft]??null)||null}(K);return null!==Ut?()=>Ut.factory(K):()=>new K}(K);throw new le(204,!1)}function Ga(K,Ie,Ut){let Gn;if(nn(K)){const ui=J(K);return Fn(ui)||Ua(ui)}if(di(K))Gn=()=>J(K.useValue);else if(function ca(K){return!(!K||!K.useFactory)}(K))Gn=()=>K.useFactory(...Yt(K.deps||[]));else if(function Ii(K){return!(!K||!K.useExisting)}(K))Gn=(ui,ki)=>bi(J(K.useExisting),void 0!==ki&&8&ki?8:void 0);else{const ui=J(K&&(K.useClass||K.provide));if(!function mr(K){return!!K.deps}(K))return Fn(ui)||Ua(ui);Gn=()=>new ui(...Yt(K.deps))}return Gn}function As(K){if(K.destroyed)throw new le(205,!1)}function hr(K,Ie,Ut=!1){return{factory:K,value:Ie,multi:Ut?[]:void 0}}function pr(K,Ie){for(const Ut of K)Array.isArray(Ut)?pr(Ut,Ie):Ut&&ye(Ut)?pr(Ut.\u0275providers,Ie):Ie(Ut)}function gr(K,Ie){let Ut;K instanceof _a?(As(K),Ut=K):Ut=new _n(K);const ui=v(Ut),ki=Tt(void 0);try{return Ie()}finally{v(ui),Tt(ki)}}function bo(){return void 0!==Yi()||null!=d()}function Zs(K){if(!bo())throw new le(-203,!1)}const jr=0,Er=1,Ka=2,Ps=3,kr=4,js=5,Vo=6,Zr=7,qo=8,Jr=9,Co=10,Js=11,_r=12,rs=13,ls=14,is=15,Hs=16,Ws=17,Mr=18,Ui=19,xs=20,vr=21,qs=22,Pa=23,yr=24,er=25,Xs=26,wa=27,Za=6,Or=7,Rr=8,Fs=9,Hr=10;function Ks(K){return Array.isArray(K)&&"object"==typeof K[1]}function Sr(K){return Array.isArray(K)&&!0===K[1]}function Ne(K){return!!(4&K.flags)}function He(K){return K.componentOffset>-1}function q(K){return!(1&~K.flags)}function mt(K){return!!K.template}function ln(K){return!!(512&K[Ka])}function Es(K){return!(256&~K[Ka])}function kt(K,Ie){$e(K,Ie[Er])}function On(K,Ie){const Ut=Ie+wa;ot(K,Ut),ie(Ut,K[Er].bindingStartIndex,"TNodes should be created before any bindings")}function $e(K,Ie){mn(K);const Ut=Ie.data;for(let Gn=wa;Gn) must have projection slots defined.")}function pl(K,Ie){$(K,"Component views should always have a parent view (component's host view)")}function zl(K,Ie){Eo(K,Ie),Eo(K,Ie+8),Re(K[Ie+0],"injectorIndex should point to a bloom filter"),Re(K[Ie+1],"injectorIndex should point to a bloom filter"),Re(K[Ie+2],"injectorIndex should point to a bloom filter"),Re(K[Ie+3],"injectorIndex should point to a bloom filter"),Re(K[Ie+4],"injectorIndex should point to a bloom filter"),Re(K[Ie+5],"injectorIndex should point to a bloom filter"),Re(K[Ie+6],"injectorIndex should point to a bloom filter"),Re(K[Ie+7],"injectorIndex should point to a bloom filter"),Re(K[Ie+8],"injectorIndex should point to parent injector")}const ds="svg",nr="math";function mi(K){for(;Array.isArray(K);)K=K[jr];return K}function Uo(K){for(;Array.isArray(K);){if("object"==typeof K[1])return K;K=K[jr]}return null}function Go(K,Ie){return mi(Ie[K])}function gl(K,Ie){return mi(Ie[K.index])}function Tr(K,Ie){const Ut=null===K?-1:K.index;return-1!==Ut?mi(Ie[Ut]):null}function jo(K,Ie){return K.data[Ie]}function mo(K,Ie){return K[Ie]}function Tl(K,Ie,Ut,Gn){Ut>=K.data.length&&(K.data[Ut]=null,K.blueprint[Ut]=null),Ie[Ut]=Gn}function Vl(K,Ie){const Ut=Ie[K];return Ks(Ut)?Ut:Ut[jr]}function za(K){return!(4&~K[Ka])}function us(K){return!(128&~K[Ka])}function Dl(K){return Sr(K[Ps])}function eo(K,Ie){return null==Ie?null:K[Ie]}function So(K){K[Ws]=0}function fo(K){1024&K[Ka]||(K[Ka]|=1024,us(K)&&to(K))}function To(K,Ie){for(;K>0;)Ie=Ie[ls],K--;return Ie}function Ho(K){return!!(9216&K[Ka]||K[yr]?.dirty)}function _l(K){K[Co].changeDetectionScheduler?.notify(8),64&K[Ka]&&(K[Ka]|=1024),Ho(K)&&to(K)}function to(K){K[Co].changeDetectionScheduler?.notify(0);let Ie=Al(K);for(;null!==Ie&&!(8192&Ie[Ka])&&(Ie[Ka]|=8192,us(Ie));)Ie=Al(Ie)}function wl(K,Ie){if(Es(K))throw new le(911,!1);null===K[vr]&&(K[vr]=[]),K[vr].push(Ie)}function no(K,Ie){if(null===K[vr])return;const Ut=K[vr].indexOf(Ie);-1!==Ut&&K[vr].splice(Ut,1)}function Al(K){const Ie=K[Ps];return Sr(Ie)?Ie[Ps]:Ie}function io(K){return K[Zr]??=[]}function Ys(K){return K.cleanup??=[]}function Dr(K,Ie,Ut,Gn){const ui=io(Ie);ui.push(Ut),K.firstCreatePass&&Ys(K).push(Gn,ui.length-1)}const li={lFrame:Ol(null),bindingsEnabled:!0,skipHydrationRootTNode:null};var Wr=function(K){return K[K.Off=0]="Off",K[K.Exhaustive=1]="Exhaustive",K[K.OnlyDirtyViews=2]="OnlyDirtyViews",K}(Wr||{});let ao=0,Pr=!1;function so(){return li.lFrame.elementDepthCount}function tl(){li.lFrame.elementDepthCount++}function Ul(){li.lFrame.elementDepthCount--}function Do(){return li.bindingsEnabled}function Jl(){return null!==li.skipHydrationRootTNode}function Ll(K){return li.skipHydrationRootTNode===K}function ir(){li.bindingsEnabled=!0}function Wo(){li.bindingsEnabled=!1}function nl(){li.skipHydrationRootTNode=null}function X(){return li.lFrame.lView}function de(){return li.lFrame.tView}function Q(K){return li.lFrame.contextLView=K,K[qo]}function me(K){return li.lFrame.contextLView=null,K}function et(){let K=Mt();for(;null!==K&&64===K.type;)K=K.parent;return K}function Mt(){return li.lFrame.currentTNode}function Kt(){const K=li.lFrame,Ie=K.currentTNode;return K.isParent?Ie:Ie.parent}function Tn(K,Ie){const Ut=li.lFrame;Ut.currentTNode=K,Ut.isParent=Ie}function ai(){return li.lFrame.isParent}function Gi(){li.lFrame.isParent=!1}function La(){return li.lFrame.contextLView}function as(){return Ke("Must never be called in production mode"),ao!==Wr.Off}function Ns(){return Ke("Must never be called in production mode"),ao===Wr.Exhaustive}function il(K){Ke("Must never be called in production mode"),ao=K}function ar(){return Pr}function ro(K){const Ie=Pr;return Pr=K,Ie}function oo(){const K=li.lFrame;let Ie=K.bindingRootIndex;return-1===Ie&&(Ie=K.bindingRootIndex=K.tView.bindingStartIndex),Ie}function Il(){return li.lFrame.bindingIndex}function mc(K){return li.lFrame.bindingIndex=K}function ec(){return li.lFrame.bindingIndex++}function kl(K){const Ie=li.lFrame,Ut=Ie.bindingIndex;return Ie.bindingIndex=Ie.bindingIndex+K,Ut}function Xc(){return li.lFrame.inI18n}function po(K){li.lFrame.inI18n=K}function fc(K,Ie){const Ut=li.lFrame;Ut.bindingIndex=Ut.bindingRootIndex=K,Fr(Ie)}function pc(){return li.lFrame.currentDirectiveIndex}function Fr(K){li.lFrame.currentDirectiveIndex=K}function wo(K){const Ie=li.lFrame.currentDirectiveIndex;return-1===Ie?null:K[Ie]}function od(){return li.lFrame.currentQueryIndex}function Ao(K){li.lFrame.currentQueryIndex=K}function Lc(K){const Ie=K[Er];return 2===Ie.type?Ie.declTNode:1===Ie.type?K[js]:null}function vl(K,Ie,Ut){if(4&Ut){let ui=Ie,ki=K;for(;!(ui=ui.parent,null!==ui||1&Ut||(ui=Lc(ki),null===ui||(ki=ki[ls],10&ui.type))););if(null===ui)return!1;Ie=ui,K=ki}const Gn=li.lFrame=Lo();return Gn.currentTNode=Ie,Gn.lView=K,!0}function al(K){const Ie=Lo(),Ut=K[Er];li.lFrame=Ie,Ie.currentTNode=Ut.firstChild,Ie.lView=K,Ie.tView=Ut,Ie.contextLView=K,Ie.bindingIndex=Ut.bindingStartIndex,Ie.inI18n=!1}function Lo(){const K=li.lFrame,Ie=null===K?null:K.child;return null===Ie?Ol(K):Ie}function Ol(K){const Ie={currentTNode:null,isParent:!0,lView:null,tView:null,selectedIndex:-1,contextLView:null,elementDepthCount:0,currentNamespace:null,currentDirectiveIndex:-1,bindingRootIndex:-1,bindingIndex:-1,currentQueryIndex:0,parent:K,child:null,inI18n:!1};return null!==K&&(K.child=Ie),Ie}function Gl(){const K=li.lFrame;return li.lFrame=K.parent,K.currentTNode=null,K.lView=null,K}const jl=Gl;function Hl(){const K=Gl();K.isParent=!0,K.tView=null,K.selectedIndex=-1,K.contextLView=null,K.elementDepthCount=0,K.currentDirectiveIndex=-1,K.currentNamespace=null,K.bindingRootIndex=-1,K.bindingIndex=-1,K.currentQueryIndex=0}function Rl(K){return(li.lFrame.contextLView=To(K,li.lFrame.contextLView))[qo]}function Io(){return li.lFrame.selectedIndex}function ko(K){li.lFrame.selectedIndex=K}function Wl(){const K=li.lFrame;return jo(K.tView,K.selectedIndex)}function sr(){li.lFrame.currentNamespace=ds}function Ts(){li.lFrame.currentNamespace=nr}function yt(){!function je(){li.lFrame.currentNamespace=null}()}function ct(){return li.lFrame.currentNamespace}let Qt=!0;function Pn(){return Qt}function $n(K){Qt=K}function Ci(K,Ie=null,Ut=null,Gn){const ui=wi(K,Ie,Ut,Gn);return ui.resolveInjectorInitializers(),ui}function wi(K,Ie=null,Ut=null,Gn,ui=new Set){const ki=[Ut||Wn,Ca(K)];return Gn=Gn||("object"==typeof K?void 0:Ee(K)),new _a(ki,Ie||Nn(),Gn||null,ui)}class $i{static THROW_IF_NOT_FOUND=Lt;static NULL=new Pi;static create(Ie,Ut){if(Array.isArray(Ie))return Ci({name:""},Ut,Ie,"");{const Gn=Ie.name??"";return Ci({name:Gn},Ie.parent,Ie.providers,Gn)}}static \u0275prov=oe({token:$i,providedIn:"any",factory:()=>bi(Rn)});static __NG_ELEMENT_ID__=-1}const sa=new Qn("");let va=(()=>class K{static __NG_ELEMENT_ID__=hs;static __NG_ENV_ID__=Ut=>Ut})();class oa extends va{_lView;constructor(Ie){super(),this._lView=Ie}get destroyed(){return Es(this._lView)}onDestroy(Ie){const Ut=this._lView;return wl(Ut,Ie),()=>no(Ut,Ie)}}function hs(){return new oa(X())}class Ls{_console=console;handleError(Ie){this._console.error("ERROR",Ie)}}const gi=new Qn("",{providedIn:"root",factory:()=>{const K=zi(Ki);let Ie;return Ut=>{K.destroyed&&!Ie?setTimeout(()=>{throw Ut}):(Ie??=K.get(Ls),Ie.handleError(Ut))}}}),Nr={provide:ri,useValue:()=>{zi(Ls)},multi:!0};function Oo(K){return"function"==typeof K&&void 0!==K[f.bh]}function yl(K,Ie){const[Ut,Gn,ui]=(0,f.n5)(K,Ie?.equal),ki=Ut;return ki.set=Gn,ki.update=ui,ki.asReadonly=Xr.bind(ki),ki}function Xr(){const K=this[f.bh];if(void 0===K.readonlyFn){const Ie=()=>this();Ie[f.bh]=K,K.readonlyFn=Ie}return K.readonlyFn}function tc(K){return Oo(K)&&"function"==typeof K.set}function Xl(K,Ie){if(null!==(0,f.nR)())throw new le(-602,!1)}let Kc=(()=>class K{view;node;constructor(Ut,Gn){this.view=Ut,this.node=Gn}static __NG_ELEMENT_ID__=_1})();function _1(){return new Kc(X(),et())}class gc{}const Yc=new Qn("",{providedIn:"root",factory:()=>!1}),nc=new Qn("",{providedIn:"root",factory:()=>!1}),v1=new Qn(""),ic=new Qn("");let lo=(()=>{class K{taskId=0;pendingTasks=new Set;destroyed=!1;pendingTask=new u.t(!1);get hasPendingTasks(){return!this.destroyed&&this.pendingTask.value}get hasPendingTasksObservable(){return this.destroyed?new L.c(Ut=>{Ut.next(!1),Ut.complete()}):this.pendingTask}add(){!this.hasPendingTasks&&!this.destroyed&&this.pendingTask.next(!0);const Ut=this.taskId++;return this.pendingTasks.add(Ut),Ut}has(Ut){return this.pendingTasks.has(Ut)}remove(Ut){this.pendingTasks.delete(Ut),0===this.pendingTasks.size&&this.hasPendingTasks&&this.pendingTask.next(!1)}ngOnDestroy(){this.pendingTasks.clear(),this.hasPendingTasks&&this.pendingTask.next(!1),this.destroyed=!0,this.pendingTask.unsubscribe()}static \u0275prov=oe({token:K,providedIn:"root",factory:()=>new K})}return K})(),Ha=(()=>{class K{internalPendingTasks=zi(lo);scheduler=zi(gc);errorHandler=zi(gi);add(){const Ut=this.internalPendingTasks.add();return()=>{this.internalPendingTasks.has(Ut)&&(this.scheduler.notify(11),this.internalPendingTasks.remove(Ut))}}run(Ut){const Gn=this.add();Ut().catch(this.errorHandler).finally(Gn)}static \u0275prov=oe({token:K,providedIn:"root",factory:()=>new K})}return K})();function Ti(...K){}let Oa=(()=>{class K{static \u0275prov=oe({token:K,providedIn:"root",factory:()=>new os})}return K})();class os{dirtyEffectCount=0;queues=new Map;add(Ie){this.enqueue(Ie),this.schedule(Ie)}schedule(Ie){Ie.dirty&&this.dirtyEffectCount++}remove(Ie){const Gn=this.queues.get(Ie.zone);Gn.has(Ie)&&(Gn.delete(Ie),Ie.dirty&&this.dirtyEffectCount--)}enqueue(Ie){const Ut=Ie.zone;this.queues.has(Ut)||this.queues.set(Ut,new Set);const Gn=this.queues.get(Ut);Gn.has(Ie)||Gn.add(Ie)}flush(){for(;this.dirtyEffectCount>0;){let Ie=!1;for(const[Ut,Gn]of this.queues)Ie||=null===Ut?this.flushQueue(Gn):Ut.run(()=>this.flushQueue(Gn));Ie||(this.dirtyEffectCount=0)}}flushQueue(Ie){let Ut=!1;for(const Gn of Ie)Gn.dirty&&(this.dirtyEffectCount--,Ut=!0,Gn.run());return Ut}}},9079(Zt,pe,l){"use strict";l.d(pe,{ot:()=>Ee});var Ce=l(2615),Ae=l(9295);function Ee(ne,J){const Re=J?.manualCleanup?null:J?.injector?.get(Ce.abz)??(0,Ce.WQX)(Ce.abz),Xe=function V(ne=Object.is){return(J,De)=>1===J.kind&&1===De.kind&&ne(J.value,De.value)}(J?.equal);let _e,he;_e=(0,Ce.vPA)(J?.requireSync?{kind:0}:{kind:1,value:J?.initialValue},{equal:Xe});const Dt=ne.subscribe({next:lt=>_e.set({kind:1,value:lt}),error:lt=>{_e.set({kind:2,error:lt}),he?.()},complete:()=>{he?.()}});if(J?.requireSync&&0===_e().kind)throw new Ce.buA(601,!1);return he=Re?.onDestroy(Dt.unsubscribe.bind(Dt)),(0,Ae.EW)(()=>{const lt=_e();switch(lt.kind){case 1:return lt.value;case 2:throw lt.error;case 0:throw new Ce.buA(601,!1)}},{equal:J?.equal})}},8440(Zt,pe,l){"use strict";l.d(pe,{Ag:()=>_e,Bg:()=>j,EF:()=>Dt,H8:()=>Re,Ht:()=>e,JC:()=>A,KE:()=>f,KO:()=>P,KZ:()=>Xe,Ny:()=>he,TO:()=>Ae,Wu:()=>G,XR:()=>Ee,a7:()=>ne,bh:()=>w,j2:()=>Ke,mC:()=>Vt,mK:()=>C,n5:()=>ve,nR:()=>O,pL:()=>L,s0:()=>ot,si:()=>xe});let i=null,d=!1,v=1;const w=Symbol("SIGNAL");function e(ht){const oe=i;return i=ht,oe}function O(){return i}function f(){return d}const L={version:0,lastCleanEpoch:0,dirty:!1,producers:void 0,producersTail:void 0,consumers:void 0,consumersTail:void 0,recomputing:!1,consumerAllowSignalWrites:!1,consumerIsAlwaysLive:!1,kind:"unknown",producerMustRecompute:()=>!1,producerRecomputeValue:()=>{},consumerMarkedDirty:()=>{},consumerOnSignalRead:()=>{}};function C(ht){if(d)throw new Error("");if(null===i)return;i.consumerOnSignalRead(ht);const oe=i.producersTail;if(void 0!==oe&&oe.producer===ht)return;let Ye;const fe=i.recomputing;if(fe&&(Ye=void 0!==oe?oe.nextProducer:i.producers,void 0!==Ye&&Ye.producer===ht))return i.producersTail=Ye,void(Ye.lastReadVersion=ht.version);const Qe=ht.consumersTail;if(void 0!==Qe&&Qe.consumer===i&&(!fe||function De(ht,oe){const Ye=oe.producersTail;if(void 0!==Ye){let fe=oe.producers;do{if(fe===ht)return!0;if(fe===Ye)break;fe=fe.nextProducer}while(void 0!==fe)}return!1}(Qe,i)))return;const gt=be(i),Gt={producer:ht,consumer:i,nextProducer:Ye,prevConsumer:Qe,lastReadVersion:ht.version,nextConsumer:void 0};i.producersTail=Gt,void 0!==oe?oe.nextProducer=Gt:i.producers=Gt,gt&&V(ht,Gt)}function A(ht){if((!be(ht)||ht.dirty)&&(ht.dirty||ht.lastCleanEpoch!==v)){if(!ht.producerMustRecompute(ht)&&!xe(ht))return void Ae(ht);ht.producerRecomputeValue(ht),Ae(ht)}}function Pe(ht){if(void 0===ht.consumers)return;const oe=d;d=!0;try{for(let Ye=ht.consumers;void 0!==Ye;Ye=Ye.nextConsumer){const fe=Ye.consumer;fe.dirty||Ce(fe)}}finally{d=oe}}function le(){return!1!==i?.consumerAllowSignalWrites}function Ce(ht){ht.dirty=!0,Pe(ht),ht.consumerMarkedDirty?.(ht)}function Ae(ht){ht.dirty=!1,ht.lastCleanEpoch=v}function j(ht){return ht&&function W(ht){ht.producersTail=void 0,ht.recomputing=!0}(ht),e(ht)}function G(ht,oe){e(oe),ht&&function re(ht){ht.recomputing=!1;const oe=ht.producersTail;let Ye=void 0!==oe?oe.nextProducer:ht.producers;if(void 0!==Ye){if(be(ht))do{Ye=ce(Ye)}while(void 0!==Ye);void 0!==oe?oe.nextProducer=void 0:ht.producers=void 0}}(ht)}function xe(ht){for(let oe=ht.producers;void 0!==oe;oe=oe.nextProducer){const Ye=oe.producer,fe=oe.lastReadVersion;if(fe!==Ye.version||(A(Ye),fe!==Ye.version))return!0}return!1}function Ee(ht){if(be(ht)){let oe=ht.producers;for(;void 0!==oe;)oe=ce(oe)}ht.producers=void 0,ht.producersTail=void 0,ht.consumers=void 0,ht.consumersTail=void 0}function V(ht,oe){const Ye=ht.consumersTail,fe=be(ht);if(void 0!==Ye?(oe.nextConsumer=Ye.nextConsumer,Ye.nextConsumer=oe):(oe.nextConsumer=void 0,ht.consumers=oe),oe.prevConsumer=Ye,ht.consumersTail=oe,!fe)for(let Qe=ht.producers;void 0!==Qe;Qe=Qe.nextProducer)V(Qe.producer,Qe)}function ce(ht){const oe=ht.producer,Ye=ht.nextProducer,fe=ht.nextConsumer,Qe=ht.prevConsumer;if(ht.nextConsumer=void 0,ht.prevConsumer=void 0,void 0!==fe?fe.prevConsumer=Qe:oe.consumersTail=Qe,void 0!==Qe)Qe.nextConsumer=fe;else if(oe.consumers=fe,!be(oe)){let gt=oe.producers;for(;void 0!==gt;)gt=ce(gt)}return Ye}function be(ht){return ht.consumerIsAlwaysLive||void 0!==ht.consumers}function ne(ht){}function Re(ht,oe){return Object.is(ht,oe)}function Xe(ht,oe){const Ye=Object.create(lt);Ye.computation=ht,void 0!==oe&&(Ye.equal=oe);const fe=()=>{if(A(Ye),C(Ye),Ye.value===Dt)throw Ye.error;return Ye.value};return fe[w]=Ye,fe}const _e=Symbol("UNSET"),he=Symbol("COMPUTING"),Dt=Symbol("ERRORED"),lt={...L,value:_e,dirty:!0,error:null,equal:Re,kind:"computed",producerMustRecompute:ht=>ht.value===_e||ht.value===he,producerRecomputeValue(ht){if(ht.value===he)throw new Error("");const oe=ht.value;ht.value=he;const Ye=j(ht);let fe,Qe=!1;try{fe=ht.computation(),e(null),Qe=oe!==_e&&oe!==Dt&&fe!==Dt&&ht.equal(oe,fe)}catch(gt){fe=Dt,ht.error=gt}finally{G(ht,Ye)}Qe?ht.value=oe:(ht.value=fe,ht.version++)}};let te=function Le(){throw new Error};function ie(ht){te(ht)}function P(ht){te=ht}function ve(ht,oe){const Ye=Object.create(ot);Ye.value=ht,void 0!==oe&&(Ye.equal=oe);const fe=()=>function $(ht){return C(ht),ht.value}(Ye);return fe[w]=Ye,[fe,Gt=>Ke(Ye,Gt),Gt=>Vt(Ye,Gt)]}function Ke(ht,oe){le()||ie(ht),ht.equal(ht.value,oe)||(ht.value=oe,function nt(ht){ht.version++,function B(){v++}(),Pe(ht)}(ht))}function Vt(ht,oe){le()||ie(ht),Ke(ht,oe(ht.value))}const ot={...L,equal:Re,value:void 0,kind:"signal"}},4545(Zt,pe,l){"use strict";function i(L){for(let C in L){let B=L[C]??"";switch(C){case"display":L.display="flex"===B?["-webkit-flex","flex"]:"inline-flex"===B?["-webkit-inline-flex","inline-flex"]:B;break;case"align-items":case"align-self":case"align-content":case"flex":case"flex-basis":case"flex-flow":case"flex-grow":case"flex-shrink":case"flex-wrap":case"justify-content":L["-webkit-"+C]=B;break;case"flex-direction":L["-webkit-flex-direction"]=B,L["flex-direction"]=B;break;case"order":L.order=L["-webkit-"+C]=isNaN(+B)?"0":B}}return L}l.d(pe,{C5:()=>u,O5:()=>i,Uo:()=>v,Vc:()=>e,uG:()=>T});const d="inline",v=["row","column","row-reverse","column-reverse"];function T(L){let[C,B,A]=w(L);return function f(L,C=null,B=!1){return{display:B?"inline-flex":"flex","box-sizing":"border-box","flex-direction":L,"flex-wrap":C||null}}(C,B,A)}function w(L){L=L?.toLowerCase()??"";let[C,B,A]=L.split(" ");return v.find(Pe=>Pe===C)||(C=v[0]),B===d&&(B=A!==d?A:"",A=d),[C,O(B),!!A]}function e(L){let[C]=w(L);return C.indexOf("row")>-1}function O(L){if(L)switch(L.toLowerCase()){case"reverse":case"wrap-reverse":case"reverse-wrap":L="wrap-reverse";break;case"no":case"none":case"nowrap":L="nowrap";break;default:L="wrap"}return L}function u(L,...C){if(null==L)throw TypeError("Cannot convert undefined or null to object");for(let B of C)if(null!=B)for(let A in B)B.hasOwnProperty(A)&&(L[A]=B[A]);return L}},9340(Zt,pe,l){"use strict";l.d(pe,{Ce:()=>Dt,DJ:()=>vt,EA:()=>he,PV:()=>_e,SL:()=>lt,Ui:()=>De,ZH:()=>ie,cL:()=>Je,hN:()=>at,qH:()=>kn,r3:()=>te});var Ce=l(2615),Ae=l(3664),j=l(177),W=l(1985),G=l(1413),re=l(4412),xe=l(7786),Ee=l(4545),V=l(5964),ce=l(8141);const ne={provide:Ae.iLQ,useFactory:function be(Be,ut){return()=>{if((0,j.UE)(ut)){const Ge=Array.from(Be.querySelectorAll(`[class*=${J}]`)),Ot=/\bflex-layout-.+?\b/g;Ge.forEach(se=>{se.classList.contains(`${J}ssr`)&&se.parentNode?se.parentNode.removeChild(se):se.className.replace(Ot,"")})}}},deps:[Ce.qQL,Ae.Agw],multi:!0},J="flex-layout-";let De=(()=>{class Be{}return Be.\u0275fac=function(Ge){return new(Ge||Be)},Be.\u0275mod=Ae.$C({type:Be}),Be.\u0275inj=Ce.G2t({providers:[ne]}),Be})();class Re{constructor(ut=!1,Ge="all",Ot="",se="",We=0){this.matches=ut,this.mediaQuery=Ge,this.mqAlias=Ot,this.suffix=se,this.priority=We,this.property=""}clone(){return new Re(this.matches,this.mediaQuery,this.mqAlias,this.suffix)}}let Xe=(()=>{class Be{constructor(){this.stylesheet=new Map}addStyleToElement(Ge,Ot,se){const We=this.stylesheet.get(Ge);We?We.set(Ot,se):this.stylesheet.set(Ge,new Map([[Ot,se]]))}clearStyles(){this.stylesheet.clear()}getStyleForElement(Ge,Ot){const se=this.stylesheet.get(Ge);let We="";if(se){const bt=se.get(Ot);("number"==typeof bt||"string"==typeof bt)&&(We=bt+"")}return We}}return Be.\u0275fac=function(Ge){return new(Ge||Be)},Be.\u0275prov=Ce.jDH({token:Be,factory:Be.\u0275fac,providedIn:"root"}),Be})();const _e={addFlexToParent:!0,addOrientationBps:!1,disableDefaultBps:!1,disableVendorPrefixes:!1,serverLoaded:!1,useColumnBasisZero:!0,printWithBreakpoints:[],mediaTriggerAutoRestore:!0,ssrObserveBreakpoints:[],multiplier:void 0,defaultUnit:"px",detectLayoutDisplay:!1},he=new Ce.nKC("Flex Layout token, config options for the library",{providedIn:"root",factory:()=>_e}),Dt=new Ce.nKC("FlexLayoutServerLoaded",{providedIn:"root",factory:()=>!1}),lt=new Ce.nKC("Flex Layout token, collect all breakpoints into one provider",{providedIn:"root",factory:()=>null});function Le(Be,ut){return Be=Be?.clone()??new Re,ut&&(Be.mqAlias=ut.alias,Be.mediaQuery=ut.mediaQuery,Be.suffix=ut.suffix,Be.priority=ut.priority),Be}class te{constructor(){this.shouldCache=!0}sideEffect(ut,Ge,Ot){}}let ie=(()=>{class Be{constructor(Ge,Ot,se,We){this._serverStylesheet=Ge,this._serverModuleLoaded=Ot,this._platformId=se,this.layoutConfig=We}applyStyleToElement(Ge,Ot,se=null){let We={};"string"==typeof Ot&&(We[Ot]=se,Ot=We),We=this.layoutConfig.disableVendorPrefixes?Ot:(0,Ee.O5)(Ot),this._applyMultiValueStyleToElement(We,Ge)}applyStyleToElements(Ge,Ot=[]){const se=this.layoutConfig.disableVendorPrefixes?Ge:(0,Ee.O5)(Ge);Ot.forEach(We=>{this._applyMultiValueStyleToElement(se,We)})}getFlowDirection(Ge){const Ot="flex-direction";let se=this.lookupStyle(Ge,Ot);return[se||"row",this.lookupInlineStyle(Ge,Ot)||(0,j.Vy)(this._platformId)&&this._serverModuleLoaded?se:""]}hasWrap(Ge){return"wrap"===this.lookupStyle(Ge,"flex-wrap")}lookupAttributeValue(Ge,Ot){return Ge.getAttribute(Ot)??""}lookupInlineStyle(Ge,Ot){return(0,j.UE)(this._platformId)?Ge.style.getPropertyValue(Ot):function P(Be,ut){return H(Be)[ut]??""}(Ge,Ot)}lookupStyle(Ge,Ot,se=!1){let We="";return Ge&&((We=this.lookupInlineStyle(Ge,Ot))||((0,j.UE)(this._platformId)?se||(We=getComputedStyle(Ge).getPropertyValue(Ot)):this._serverModuleLoaded&&(We=this._serverStylesheet.getStyleForElement(Ge,Ot)))),We?We.trim():""}_applyMultiValueStyleToElement(Ge,Ot){Object.keys(Ge).sort().forEach(se=>{const We=Ge[se],bt=Array.isArray(We)?We:[We];bt.sort();for(let tn of bt)tn=tn?tn+"":"",(0,j.UE)(this._platformId)||!this._serverModuleLoaded?(0,j.UE)(this._platformId)?Ot.style.setProperty(se,tn):F(Ot,se,tn):this._serverStylesheet.addStyleToElement(Ot,se,tn)})}}return Be.\u0275fac=function(Ge){return new(Ge||Be)(Ce.KVO(Xe),Ce.KVO(Dt),Ce.KVO(Ae.Agw),Ce.KVO(he))},Be.\u0275prov=Ce.jDH({token:Be,factory:Be.\u0275fac,providedIn:"root"}),Be})();function F(Be,ut,Ge){ut=ut.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();const Ot=H(Be);Ot[ut]=Ge??"",function ve(Be,ut){let Ge="";for(const Ot in ut)ut[Ot]&&(Ge+=`${Ot}:${ut[Ot]};`);Be.setAttribute("style",Ge)}(Be,Ot)}function H(Be){const ut={},Ge=Be.getAttribute("style");if(Ge){const Ot=Ge.split(/;+/g);for(let se=0;se0){const bt=We.indexOf(":");if(-1===bt)throw new Error(`Invalid CSS style: ${We}`);ut[We.substr(0,bt).trim()]=We.substr(bt+1).trim()}}}return ut}function $(Be,ut){return(ut&&ut.priority||0)-(Be&&Be.priority||0)}function Ke(Be,ut){return(Be.priority||0)-(ut.priority||0)}let Vt=(()=>{class Be{constructor(Ge,Ot,se){this._zone=Ge,this._platformId=Ot,this._document=se,this.source=new re.t(new Re(!0)),this.registry=new Map,this.pendingRemoveListenerFns=[],this._observable$=this.source.asObservable()}get activations(){const Ge=[];return this.registry.forEach((Ot,se)=>{Ot.matches&&Ge.push(se)}),Ge}isActive(Ge){return this.registry.get(Ge)?.matches??this.registerQuery(Ge).some(se=>se.matches)}observe(Ge,Ot=!1){if(Ge&&Ge.length){const se=this._observable$.pipe((0,V.p)(bt=>!Ot||Ge.indexOf(bt.mediaQuery)>-1)),We=new W.c(bt=>{const tn=this.registerQuery(Ge);if(tn.length){const on=tn.pop();tn.forEach(un=>{bt.next(un)}),this.source.next(on)}bt.complete()});return(0,xe.h)(We,se)}return this._observable$}registerQuery(Ge){const Ot=Array.isArray(Ge)?Ge:[Ge],se=[];return function ot(Be,ut){const Ge=Be.filter(Ot=>!St[Ot]);if(Ge.length>0){const Ot=Ge.join(", ");try{const se=ut.createElement("style");se.setAttribute("type","text/css"),se.styleSheet||se.appendChild(ut.createTextNode(`\n/*\n @angular/flex-layout - workaround for possible browser quirk with mediaQuery listeners\n see http://bit.ly/2sd4HMP\n*/\n@media ${Ot} {.fx-query-test{ }}\n`)),ut.head.appendChild(se),Ge.forEach(We=>St[We]=se)}catch(se){console.error(se)}}}(Ot,this._document),Ot.forEach(We=>{const bt=on=>{this._zone.run(()=>this.source.next(new Re(on.matches,We)))};let tn=this.registry.get(We);tn||(tn=this.buildMQL(We),tn.addListener(bt),this.pendingRemoveListenerFns.push(()=>tn.removeListener(bt)),this.registry.set(We,tn)),tn.matches&&se.push(new Re(!0,We))}),se}ngOnDestroy(){let Ge;for(;Ge=this.pendingRemoveListenerFns.pop();)Ge()}buildMQL(Ge){return function ht(Be,ut){return ut&&window.matchMedia("all").addListener?window.matchMedia(Be):function nt(Be){const ut=new EventTarget;return ut.matches="all"===Be||""===Be,ut.media=Be,ut.addListener=()=>{},ut.removeListener=()=>{},ut.addEventListener=()=>{},ut.dispatchEvent=()=>!1,ut.onchange=null,ut}(Be)}(Ge,(0,j.UE)(this._platformId))}}return Be.\u0275fac=function(Ge){return new(Ge||Be)(Ce.KVO(Ae.SKi),Ce.KVO(Ae.Agw),Ce.KVO(Ce.qQL))},Be.\u0275prov=Ce.jDH({token:Be,factory:Be.\u0275fac,providedIn:"root"}),Be})();const St={},oe=[{alias:"xs",mediaQuery:"screen and (min-width: 0px) and (max-width: 599.98px)",priority:1e3},{alias:"sm",mediaQuery:"screen and (min-width: 600px) and (max-width: 959.98px)",priority:900},{alias:"md",mediaQuery:"screen and (min-width: 960px) and (max-width: 1279.98px)",priority:800},{alias:"lg",mediaQuery:"screen and (min-width: 1280px) and (max-width: 1919.98px)",priority:700},{alias:"xl",mediaQuery:"screen and (min-width: 1920px) and (max-width: 4999.98px)",priority:600},{alias:"lt-sm",overlapping:!0,mediaQuery:"screen and (max-width: 599.98px)",priority:950},{alias:"lt-md",overlapping:!0,mediaQuery:"screen and (max-width: 959.98px)",priority:850},{alias:"lt-lg",overlapping:!0,mediaQuery:"screen and (max-width: 1279.98px)",priority:750},{alias:"lt-xl",overlapping:!0,priority:650,mediaQuery:"screen and (max-width: 1919.98px)"},{alias:"gt-xs",overlapping:!0,mediaQuery:"screen and (min-width: 600px)",priority:-950},{alias:"gt-sm",overlapping:!0,mediaQuery:"screen and (min-width: 960px)",priority:-850},{alias:"gt-md",overlapping:!0,mediaQuery:"screen and (min-width: 1280px)",priority:-750},{alias:"gt-lg",overlapping:!0,mediaQuery:"screen and (min-width: 1920px)",priority:-650}],Ye="(orientation: portrait) and (max-width: 599.98px)",fe="(orientation: landscape) and (max-width: 959.98px)",Qe="(orientation: portrait) and (min-width: 600px) and (max-width: 839.98px)",gt="(orientation: landscape) and (min-width: 960px) and (max-width: 1279.98px)",Gt="(orientation: portrait) and (min-width: 840px)",rt="(orientation: landscape) and (min-width: 1280px)",cn={HANDSET:`${Ye}, ${fe}`,TABLET:`${Qe} , ${gt}`,WEB:`${Gt}, ${rt} `,HANDSET_PORTRAIT:`${Ye}`,TABLET_PORTRAIT:`${Qe} `,WEB_PORTRAIT:`${Gt}`,HANDSET_LANDSCAPE:`${fe}`,TABLET_LANDSCAPE:`${gt}`,WEB_LANDSCAPE:`${rt}`},Ft=[{alias:"handset",priority:2e3,mediaQuery:cn.HANDSET},{alias:"handset.landscape",priority:2e3,mediaQuery:cn.HANDSET_LANDSCAPE},{alias:"handset.portrait",priority:2e3,mediaQuery:cn.HANDSET_PORTRAIT},{alias:"tablet",priority:2100,mediaQuery:cn.TABLET},{alias:"tablet.landscape",priority:2100,mediaQuery:cn.TABLET_LANDSCAPE},{alias:"tablet.portrait",priority:2100,mediaQuery:cn.TABLET_PORTRAIT},{alias:"web",priority:2200,mediaQuery:cn.WEB,overlapping:!0},{alias:"web.landscape",priority:2200,mediaQuery:cn.WEB_LANDSCAPE,overlapping:!0},{alias:"web.portrait",priority:2200,mediaQuery:cn.WEB_PORTRAIT,overlapping:!0}],Sn=/(\.|-|_)/g;function Qn(Be){let ut=Be.length>0?Be.charAt(0):"",Ge=Be.length>1?Be.slice(1):"";return ut.toUpperCase()+Ge}const wt=new Ce.nKC("Token (@angular/flex-layout) Breakpoints",{providedIn:"root",factory:()=>{const Be=(0,Ce.WQX)(lt),ut=(0,Ce.WQX)(he),Ge=[].concat.apply([],(Be||[]).map(se=>Array.isArray(se)?se:[se]));return function Ue(Be,ut=[]){const Ge={};return Be.forEach(Ot=>{Ge[Ot.alias]=Ot}),ut.forEach(Ot=>{Ge[Ot.alias]?(0,Ee.C5)(Ge[Ot.alias],Ot):Ge[Ot.alias]=Ot}),function jt(Be){return Be.forEach(ut=>{ut.suffix||(ut.suffix=function h(Be){return Be.replace(Sn,"|").split("|").map(Qn).join("")}(ut.alias),ut.overlapping=!!ut.overlapping)}),Be}(Object.keys(Ge).map(Ot=>Ge[Ot]))}((ut.disableDefaultBps?[]:oe).concat(ut.addOrientationBps?Ft:[]),Ge)}});let pt=(()=>{class Be{constructor(Ge){this.findByMap=new Map,this.items=[...Ge].sort(Ke)}findByAlias(Ge){return Ge?this.findWithPredicate(Ge,Ot=>Ot.alias===Ge):null}findByQuery(Ge){return this.findWithPredicate(Ge,Ot=>Ot.mediaQuery===Ge)}get overlappings(){return this.items.filter(Ge=>Ge.overlapping)}get aliases(){return this.items.map(Ge=>Ge.alias)}get suffixes(){return this.items.map(Ge=>Ge?.suffix??"")}findWithPredicate(Ge,Ot){let se=this.findByMap.get(Ge);return se||(se=this.items.find(Ot)??null,this.findByMap.set(Ge,se)),se??null}}return Be.\u0275fac=function(Ge){return new(Ge||Be)(Ce.KVO(wt))},Be.\u0275prov=Ce.jDH({token:Be,factory:Be.\u0275fac,providedIn:"root"}),Be})();const Pt="print",gn={alias:Pt,mediaQuery:Pt,priority:1e3};let ei=(()=>{class Be{constructor(Ge,Ot,se){this.breakpoints=Ge,this.layoutConfig=Ot,this._document=se,this.registeredBeforeAfterPrintHooks=!1,this.isPrintingBeforeAfterEvent=!1,this.beforePrintEventListeners=[],this.afterPrintEventListeners=[],this.formerActivations=null,this.isPrinting=!1,this.queue=new vi,this.deactivations=[]}withPrintQuery(Ge){return[...Ge,Pt]}isPrintEvent(Ge){return Ge.mediaQuery.startsWith(Pt)}get printAlias(){return[...this.layoutConfig.printWithBreakpoints??[]]}get printBreakPoints(){return this.printAlias.map(Ge=>this.breakpoints.findByAlias(Ge)).filter(Ge=>null!==Ge)}getEventBreakpoints({mediaQuery:Ge}){const Ot=this.breakpoints.findByQuery(Ge);return(Ot?[...this.printBreakPoints,Ot]:this.printBreakPoints).sort($)}updateEvent(Ge){let Ot=this.breakpoints.findByQuery(Ge.mediaQuery);return this.isPrintEvent(Ge)&&(Ot=this.getEventBreakpoints(Ge)[0],Ge.mediaQuery=Ot?.mediaQuery??""),Le(Ge,Ot)}registerBeforeAfterPrintHooks(Ge){if(!this._document.defaultView||this.registeredBeforeAfterPrintHooks)return;this.registeredBeforeAfterPrintHooks=!0;const Ot=()=>{this.isPrinting||(this.isPrintingBeforeAfterEvent=!0,this.startPrinting(Ge,this.getEventBreakpoints(new Re(!0,Pt))),Ge.updateStyles())},se=()=>{this.isPrintingBeforeAfterEvent=!1,this.isPrinting&&(this.stopPrinting(Ge),Ge.updateStyles())};this._document.defaultView.addEventListener("beforeprint",Ot),this._document.defaultView.addEventListener("afterprint",se),this.beforePrintEventListeners.push(Ot),this.afterPrintEventListeners.push(se)}interceptEvents(Ge){return Ot=>{this.isPrintEvent(Ot)?Ot.matches&&!this.isPrinting?(this.startPrinting(Ge,this.getEventBreakpoints(Ot)),Ge.updateStyles()):!Ot.matches&&this.isPrinting&&!this.isPrintingBeforeAfterEvent&&(this.stopPrinting(Ge),Ge.updateStyles()):this.collectActivations(Ge,Ot)}}blockPropagation(){return Ge=>!(this.isPrinting||this.isPrintEvent(Ge))}startPrinting(Ge,Ot){this.isPrinting=!0,this.formerActivations=Ge.activatedBreakpoints,Ge.activatedBreakpoints=this.queue.addPrintBreakpoints(Ot)}stopPrinting(Ge){Ge.activatedBreakpoints=this.deactivations,this.deactivations=[],this.formerActivations=null,this.queue.clear(),this.isPrinting=!1}collectActivations(Ge,Ot){if(!this.isPrinting||this.isPrintingBeforeAfterEvent){if(!this.isPrintingBeforeAfterEvent)return void(this.deactivations=[]);if(!Ot.matches){const se=this.breakpoints.findByQuery(Ot.mediaQuery);if(se){const We=this.formerActivations&&this.formerActivations.includes(se),bt=!this.formerActivations&&Ge.activatedBreakpoints.includes(se);(We||bt)&&(this.deactivations.push(se),this.deactivations.sort($))}}}}ngOnDestroy(){this._document.defaultView&&(this.beforePrintEventListeners.forEach(Ge=>this._document.defaultView.removeEventListener("beforeprint",Ge)),this.afterPrintEventListeners.forEach(Ge=>this._document.defaultView.removeEventListener("afterprint",Ge)))}}return Be.\u0275fac=function(Ge){return new(Ge||Be)(Ce.KVO(pt),Ce.KVO(he),Ce.KVO(Ce.qQL))},Be.\u0275prov=Ce.jDH({token:Be,factory:Be.\u0275fac,providedIn:"root"}),Be})();class vi{constructor(){this.printBreakpoints=[]}addPrintBreakpoints(ut){return ut.push(gn),ut.sort($),ut.forEach(Ge=>this.addBreakpoint(Ge)),this.printBreakpoints}addBreakpoint(ut){ut&&void 0===this.printBreakpoints.find(Ot=>Ot.mediaQuery===ut.mediaQuery)&&(this.printBreakpoints=function Ni(Be){return Be?.mediaQuery.startsWith(Pt)??!1}(ut)?[ut,...this.printBreakpoints]:[...this.printBreakpoints,ut])}clear(){this.printBreakpoints=[]}}let kn=(()=>{class Be{constructor(Ge,Ot,se){this.matchMedia=Ge,this.breakpoints=Ot,this.hook=se,this._useFallbacks=!0,this._activatedBreakpoints=[],this.elementMap=new Map,this.elementKeyMap=new WeakMap,this.watcherMap=new WeakMap,this.updateMap=new WeakMap,this.clearMap=new WeakMap,this.subject=new G.B,this.observeActivations()}get activatedAlias(){return this.activatedBreakpoints[0]?.alias??""}set activatedBreakpoints(Ge){this._activatedBreakpoints=[...Ge]}get activatedBreakpoints(){return[...this._activatedBreakpoints]}set useFallbacks(Ge){this._useFallbacks=Ge}onMediaChange(Ge){const Ot=this.findByQuery(Ge.mediaQuery);if(Ot){Ge=Le(Ge,Ot);const se=this.activatedBreakpoints.indexOf(Ot);Ge.matches&&-1===se?(this._activatedBreakpoints.push(Ot),this._activatedBreakpoints.sort($),this.updateStyles()):!Ge.matches&&-1!==se&&(this._activatedBreakpoints.splice(se,1),this._activatedBreakpoints.sort($),this.updateStyles())}}init(Ge,Ot,se,We,bt=[]){Ri(this.updateMap,Ge,Ot,se),Ri(this.clearMap,Ge,Ot,We),this.buildElementKeyMap(Ge,Ot),this.watchExtraTriggers(Ge,Ot,bt)}getValue(Ge,Ot,se){const We=this.elementMap.get(Ge);if(We){const bt=void 0!==se?We.get(se):this.getActivatedValues(We,Ot);if(bt)return bt.get(Ot)}}hasValue(Ge,Ot){const se=this.elementMap.get(Ge);if(se){const We=this.getActivatedValues(se,Ot);if(We)return void 0!==We.get(Ot)||!1}return!1}setValue(Ge,Ot,se,We){let bt=this.elementMap.get(Ge);if(bt){const on=(bt.get(We)??new Map).set(Ot,se);bt.set(We,on),this.elementMap.set(Ge,bt)}else bt=(new Map).set(We,(new Map).set(Ot,se)),this.elementMap.set(Ge,bt);const tn=this.getValue(Ge,Ot);void 0!==tn&&this.updateElement(Ge,Ot,tn)}trackValue(Ge,Ot){return this.subject.asObservable().pipe((0,V.p)(se=>se.element===Ge&&se.key===Ot))}updateStyles(){this.elementMap.forEach((Ge,Ot)=>{const se=new Set(this.elementKeyMap.get(Ot));let We=this.getActivatedValues(Ge);We&&We.forEach((bt,tn)=>{this.updateElement(Ot,tn,bt),se.delete(tn)}),se.forEach(bt=>{if(We=this.getActivatedValues(Ge,bt),We){const tn=We.get(bt);this.updateElement(Ot,bt,tn)}else this.clearElement(Ot,bt)})})}clearElement(Ge,Ot){const se=this.clearMap.get(Ge);if(se){const We=se.get(Ot);We&&(We(),this.subject.next({element:Ge,key:Ot,value:""}))}}updateElement(Ge,Ot,se){const We=this.updateMap.get(Ge);if(We){const bt=We.get(Ot);bt&&(bt(se),this.subject.next({element:Ge,key:Ot,value:se}))}}releaseElement(Ge){const Ot=this.watcherMap.get(Ge);Ot&&(Ot.forEach(We=>We.unsubscribe()),this.watcherMap.delete(Ge));const se=this.elementMap.get(Ge);se&&(se.forEach((We,bt)=>se.delete(bt)),this.elementMap.delete(Ge))}triggerUpdate(Ge,Ot){const se=this.elementMap.get(Ge);if(se){const We=this.getActivatedValues(se,Ot);We&&(Ot?this.updateElement(Ge,Ot,We.get(Ot)):We.forEach((bt,tn)=>this.updateElement(Ge,tn,bt)))}}buildElementKeyMap(Ge,Ot){let se=this.elementKeyMap.get(Ge);se||(se=new Set,this.elementKeyMap.set(Ge,se)),se.add(Ot)}watchExtraTriggers(Ge,Ot,se){if(se&&se.length){let We=this.watcherMap.get(Ge);if(We||(We=new Map,this.watcherMap.set(Ge,We)),!We.get(Ot)){const tn=(0,xe.h)(...se).subscribe(()=>{const on=this.getValue(Ge,Ot);this.updateElement(Ge,Ot,on)});We.set(Ot,tn)}}}findByQuery(Ge){return this.breakpoints.findByQuery(Ge)}getActivatedValues(Ge,Ot){for(let We=0;WeOt.mediaQuery);this.hook.registerBeforeAfterPrintHooks(this),this.matchMedia.observe(this.hook.withPrintQuery(Ge)).pipe((0,ce.M)(this.hook.interceptEvents(this)),(0,V.p)(this.hook.blockPropagation())).subscribe(this.onMediaChange.bind(this))}}return Be.\u0275fac=function(Ge){return new(Ge||Be)(Ce.KVO(Vt),Ce.KVO(pt),Ce.KVO(ei))},Be.\u0275prov=Ce.jDH({token:Be,factory:Be.\u0275fac,providedIn:"root"}),Be})();function Ri(Be,ut,Ge,Ot){if(void 0!==Ot){const se=Be.get(ut)??new Map;se.set(Ge,Ot),Be.set(ut,se)}}let vt=(()=>{class Be{constructor(Ge,Ot,se,We){this.elementRef=Ge,this.styleBuilder=Ot,this.styler=se,this.marshal=We,this.DIRECTIVE_KEY="",this.inputs=[],this.mru={},this.destroySubject=new G.B,this.styleCache=new Map}get parentElement(){return this.elementRef.nativeElement.parentElement}get nativeElement(){return this.elementRef.nativeElement}get activatedValue(){return this.marshal.getValue(this.nativeElement,this.DIRECTIVE_KEY)}set activatedValue(Ge){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,Ge,this.marshal.activatedAlias)}ngOnChanges(Ge){Object.keys(Ge).forEach(Ot=>{if(-1!==this.inputs.indexOf(Ot)){const se=Ot.split(".").slice(1).join(".");this.setValue(Ge[Ot].currentValue,se)}})}ngOnDestroy(){this.destroySubject.next(),this.destroySubject.complete(),this.marshal.releaseElement(this.nativeElement)}init(Ge=[]){this.marshal.init(this.elementRef.nativeElement,this.DIRECTIVE_KEY,this.updateWithValue.bind(this),this.clearStyles.bind(this),Ge)}addStyles(Ge,Ot){const se=this.styleBuilder,We=se.shouldCache;let bt=this.styleCache.get(Ge);(!bt||!We)&&(bt=se.buildStyles(Ge,Ot),We&&this.styleCache.set(Ge,bt)),this.mru={...bt},this.applyStyleToElement(bt),se.sideEffect(Ge,bt,Ot)}clearStyles(){Object.keys(this.mru).forEach(Ge=>{this.mru[Ge]=""}),this.applyStyleToElement(this.mru),this.mru={},this.currentValue=void 0}triggerUpdate(){this.marshal.triggerUpdate(this.nativeElement,this.DIRECTIVE_KEY)}getFlexFlowDirection(Ge,Ot=!1){if(Ge){const[se,We]=this.styler.getFlowDirection(Ge);if(!We&&Ot){const bt=(0,Ee.uG)(se);this.styler.applyStyleToElements(bt,[Ge])}return se.trim()}return"row"}hasWrap(Ge){return this.styler.hasWrap(Ge)}applyStyleToElement(Ge,Ot,se=this.nativeElement){this.styler.applyStyleToElement(se,Ge,Ot)}setValue(Ge,Ot){this.marshal.setValue(this.nativeElement,this.DIRECTIVE_KEY,Ge,Ot)}updateWithValue(Ge){this.currentValue!==Ge&&(this.addStyles(Ge),this.currentValue=Ge)}}return Be.\u0275fac=function(Ge){return new(Ge||Be)(Ae.rXU(Ae.aKT),Ae.rXU(te),Ae.rXU(ie),Ae.rXU(kn))},Be.\u0275dir=Ae.FsC({type:Be,standalone:!1,features:[Ae.OA$]}),Be})();function at(Be,ut="1",Ge="1"){let Ot=[ut,Ge,Be],se=Be.indexOf("calc");if(se>0){Ot[2]=qe(Be.substring(se).trim());let We=Be.substr(0,se).trim().split(" ");2==We.length&&(Ot[0]=We[0],Ot[1]=We[1])}else if(0==se)Ot[2]=qe(Be.trim());else{let We=Be.split(" ");Ot=3===We.length?We:[ut,Ge,Be]}return Ot}function qe(Be){return Be.replace(/[\s]/g,"").replace(/[\/\*\+\-]/g," $& ")}function Je(Be,ut){if(void 0===ut)return Be;const Ge=Ot=>{const se=+Ot.slice(0,-1);return Be.endsWith("x")&&!isNaN(se)?`${se*ut.value}${ut.unit}`:Be};return Be.includes(" ")?Be.split(" ").map(Ge).join(" "):Ge(Be)}EventTarget},6038(Zt,pe,l){"use strict";l.d(pe,{Cc:()=>P,PW:()=>W,eI:()=>Le});var i=l(7705),d=l(2615),v=l(3664),T=l(9340),w=l(2200),e=l(177),u=(l(4085),l(6977),l(345));let Ce=(()=>{class F extends T.DJ{constructor(H,$,Ke,Vt,St,ot,nt){super(H,null,$,Ke),this.ngClassInstance=nt,this.DIRECTIVE_KEY="ngClass",this.ngClassInstance||(this.ngClassInstance=new w.YU(Vt,St,H,ot)),this.init(),this.setValue("","")}set klass(H){this.ngClassInstance.klass=H,this.setValue(H,"")}updateWithValue(H){this.ngClassInstance.ngClass=H,this.ngClassInstance.ngDoCheck()}ngDoCheck(){this.ngClassInstance.ngDoCheck()}}return F.\u0275fac=function(H){return new(H||F)(v.rXU(v.aKT),v.rXU(T.ZH),v.rXU(T.qH),v.rXU(i._q3),v.rXU(i.MKu),v.rXU(v.sFG),v.rXU(w.YU,10))},F.\u0275dir=v.FsC({type:F,inputs:{klass:[0,"class","klass"]},standalone:!1,features:[v.Vt3]}),F})();const Ae=["ngClass","ngClass.xs","ngClass.sm","ngClass.md","ngClass.lg","ngClass.xl","ngClass.lt-sm","ngClass.lt-md","ngClass.lt-lg","ngClass.lt-xl","ngClass.gt-xs","ngClass.gt-sm","ngClass.gt-md","ngClass.gt-lg"];let W=(()=>{class F extends Ce{constructor(){super(...arguments),this.inputs=Ae}}return F.\u0275fac=(()=>{let ve;return function($){return(ve||(ve=v.xGo(F)))($||F)}})(),F.\u0275dir=v.FsC({type:F,selectors:[["","ngClass",""],["","ngClass.xs",""],["","ngClass.sm",""],["","ngClass.md",""],["","ngClass.lg",""],["","ngClass.xl",""],["","ngClass.lt-sm",""],["","ngClass.lt-md",""],["","ngClass.lt-lg",""],["","ngClass.lt-xl",""],["","ngClass.gt-xs",""],["","ngClass.gt-sm",""],["","ngClass.gt-md",""],["","ngClass.gt-lg",""]],inputs:{ngClass:"ngClass","ngClass.xs":"ngClass.xs","ngClass.sm":"ngClass.sm","ngClass.md":"ngClass.md","ngClass.lg":"ngClass.lg","ngClass.xl":"ngClass.xl","ngClass.lt-sm":"ngClass.lt-sm","ngClass.lt-md":"ngClass.lt-md","ngClass.lt-lg":"ngClass.lt-lg","ngClass.lt-xl":"ngClass.lt-xl","ngClass.gt-xs":"ngClass.gt-xs","ngClass.gt-sm":"ngClass.gt-sm","ngClass.gt-md":"ngClass.gt-md","ngClass.gt-lg":"ngClass.gt-lg"},standalone:!1,features:[v.Vt3]}),F})();class be{constructor(ve,H,$=!0){this.key=ve,this.value=H,this.key=$?ve.replace(/['"]/g,"").trim():ve.trim(),this.value=$?H.replace(/['"]/g,"").trim():H.trim(),this.value=this.value.replace(/;/,"")}}function ne(F){let ve=typeof F;return"object"===ve?F.constructor===Array?"array":F.constructor===Set?"set":"object":ve}function Xe(F){const[ve,...H]=F.split(":");return new be(ve,H.join(":"))}function _e(F,ve){return ve.key&&(F[ve.key]=ve.value),F}let he=(()=>{class F extends T.DJ{constructor(H,$,Ke,Vt,St,ot,nt,ht,oe){super(H,null,$,Ke),this.sanitizer=Vt,this.ngStyleInstance=nt,this.DIRECTIVE_KEY="ngStyle",this.ngStyleInstance||(this.ngStyleInstance=new w.B3(H,St,ot)),this.init();const Ye=this.nativeElement.getAttribute("style")??"";this.fallbackStyles=this.buildStyleMap(Ye),this.isServer=ht&&(0,e.Vy)(oe)}updateWithValue(H){const $=this.buildStyleMap(H);this.ngStyleInstance.ngStyle={...this.fallbackStyles,...$},this.isServer&&this.applyStyleToElement($),this.ngStyleInstance.ngDoCheck()}clearStyles(){this.ngStyleInstance.ngStyle=this.fallbackStyles,this.ngStyleInstance.ngDoCheck()}buildStyleMap(H){const $=Ke=>this.sanitizer.sanitize(v.WPN.STYLE,Ke)??"";if(H)switch(ne(H)){case"string":return te(function J(F,ve=";"){return String(F).trim().split(ve).map(H=>H.trim()).filter(H=>""!==H)}(H),$);case"array":return te(H,$);default:return function Re(F,ve){let H=[];return"set"===ne(F)?F.forEach($=>H.push($)):Object.keys(F).forEach($=>{H.push(`${$}:${F[$]}`)}),function De(F,ve){return F.map(Xe).filter($=>!!$).map($=>(ve&&($.value=ve($.value)),$)).reduce(_e,{})}(H,ve)}(H,$)}return{}}ngDoCheck(){this.ngStyleInstance.ngDoCheck()}}return F.\u0275fac=function(H){return new(H||F)(v.rXU(v.aKT),v.rXU(T.ZH),v.rXU(T.qH),v.rXU(u.up),v.rXU(i.MKu),v.rXU(v.sFG),v.rXU(w.B3,10),v.rXU(T.Ce),v.rXU(v.Agw))},F.\u0275dir=v.FsC({type:F,standalone:!1,features:[v.Vt3]}),F})();const Dt=["ngStyle","ngStyle.xs","ngStyle.sm","ngStyle.md","ngStyle.lg","ngStyle.xl","ngStyle.lt-sm","ngStyle.lt-md","ngStyle.lt-lg","ngStyle.lt-xl","ngStyle.gt-xs","ngStyle.gt-sm","ngStyle.gt-md","ngStyle.gt-lg"];let Le=(()=>{class F extends he{constructor(){super(...arguments),this.inputs=Dt}}return F.\u0275fac=(()=>{let ve;return function($){return(ve||(ve=v.xGo(F)))($||F)}})(),F.\u0275dir=v.FsC({type:F,selectors:[["","ngStyle",""],["","ngStyle.xs",""],["","ngStyle.sm",""],["","ngStyle.md",""],["","ngStyle.lg",""],["","ngStyle.xl",""],["","ngStyle.lt-sm",""],["","ngStyle.lt-md",""],["","ngStyle.lt-lg",""],["","ngStyle.lt-xl",""],["","ngStyle.gt-xs",""],["","ngStyle.gt-sm",""],["","ngStyle.gt-md",""],["","ngStyle.gt-lg",""]],inputs:{ngStyle:"ngStyle","ngStyle.xs":"ngStyle.xs","ngStyle.sm":"ngStyle.sm","ngStyle.md":"ngStyle.md","ngStyle.lg":"ngStyle.lg","ngStyle.xl":"ngStyle.xl","ngStyle.lt-sm":"ngStyle.lt-sm","ngStyle.lt-md":"ngStyle.lt-md","ngStyle.lt-lg":"ngStyle.lt-lg","ngStyle.lt-xl":"ngStyle.lt-xl","ngStyle.gt-xs":"ngStyle.gt-xs","ngStyle.gt-sm":"ngStyle.gt-sm","ngStyle.gt-md":"ngStyle.gt-md","ngStyle.gt-lg":"ngStyle.gt-lg"},standalone:!1,features:[v.Vt3]}),F})();function te(F,ve){return F.map(Xe).filter($=>!!$).map($=>(ve&&($.value=ve($.value)),$)).reduce(_e,{})}let P=(()=>{class F{}return F.\u0275fac=function(H){return new(H||F)},F.\u0275mod=v.$C({type:F}),F.\u0275inj=d.G2t({imports:[T.Ui]}),F})()},2920(Zt,pe,l){"use strict";l.d(pe,{DJ:()=>A,UI:()=>Dt,sA:()=>ei,w2:()=>ge});var i=l(2615),d=l(3664),T=(l(1577),l(8203)),w=l(9340),e=l(4545),f=(l(1413),l(6977));let u=(()=>{class N extends w.r3{buildStyles(Me,{display:at}){const qe=(0,e.uG)(Me);return{...qe,display:"none"===at?at:qe.display}}}return N.\u0275fac=(()=>{let Z;return function(at){return(Z||(Z=d.xGo(N)))(at||N)}})(),N.\u0275prov=i.jDH({token:N,factory:N.\u0275fac,providedIn:"root"}),N})();const L=["fxLayout","fxLayout.xs","fxLayout.sm","fxLayout.md","fxLayout.lg","fxLayout.xl","fxLayout.lt-sm","fxLayout.lt-md","fxLayout.lt-lg","fxLayout.lt-xl","fxLayout.gt-xs","fxLayout.gt-sm","fxLayout.gt-md","fxLayout.gt-lg"];let B=(()=>{class N extends w.DJ{constructor(Me,at,qe,pn,Je){super(Me,qe,at,pn),this._config=Je,this.DIRECTIVE_KEY="layout",this.init()}updateWithValue(Me){const qe=this._config.detectLayoutDisplay?this.styler.lookupStyle(this.nativeElement,"display"):"";this.styleCache=Pe.get(qe)??new Map,Pe.set(qe,this.styleCache),this.currentValue!==Me&&(this.addStyles(Me,{display:qe}),this.currentValue=Me)}}return N.\u0275fac=function(Me){return new(Me||N)(d.rXU(d.aKT),d.rXU(w.ZH),d.rXU(u),d.rXU(w.qH),d.rXU(w.EA))},N.\u0275dir=d.FsC({type:N,standalone:!1,features:[d.Vt3]}),N})(),A=(()=>{class N extends B{constructor(){super(...arguments),this.inputs=L}}return N.\u0275fac=(()=>{let Z;return function(at){return(Z||(Z=d.xGo(N)))(at||N)}})(),N.\u0275dir=d.FsC({type:N,selectors:[["","fxLayout",""],["","fxLayout.xs",""],["","fxLayout.sm",""],["","fxLayout.md",""],["","fxLayout.lg",""],["","fxLayout.xl",""],["","fxLayout.lt-sm",""],["","fxLayout.lt-md",""],["","fxLayout.lt-lg",""],["","fxLayout.lt-xl",""],["","fxLayout.gt-xs",""],["","fxLayout.gt-sm",""],["","fxLayout.gt-md",""],["","fxLayout.gt-lg",""]],inputs:{fxLayout:"fxLayout","fxLayout.xs":"fxLayout.xs","fxLayout.sm":"fxLayout.sm","fxLayout.md":"fxLayout.md","fxLayout.lg":"fxLayout.lg","fxLayout.xl":"fxLayout.xl","fxLayout.lt-sm":"fxLayout.lt-sm","fxLayout.lt-md":"fxLayout.lt-md","fxLayout.lt-lg":"fxLayout.lt-lg","fxLayout.lt-xl":"fxLayout.lt-xl","fxLayout.gt-xs":"fxLayout.gt-xs","fxLayout.gt-sm":"fxLayout.gt-sm","fxLayout.gt-md":"fxLayout.gt-md","fxLayout.gt-lg":"fxLayout.gt-lg"},standalone:!1,features:[d.Vt3]}),N})();const Pe=new Map;let Re=(()=>{class N extends w.r3{constructor(Me){super(),this.layoutConfig=Me}buildStyles(Me,at){let[qe,pn,...Je]=Me.split(" "),Be=Je.join(" ");const ut=at.direction.indexOf("column")>-1?"column":"row",Ge=(0,e.Vc)(ut)?"max-width":"max-height",Ot=(0,e.Vc)(ut)?"min-width":"min-height",se=String(Be).indexOf("calc")>-1,We=se||"auto"===Be,bt=String(Be).indexOf("%")>-1&&!se,tn=String(Be).indexOf("px")>-1||String(Be).indexOf("rem")>-1||String(Be).indexOf("em")>-1||String(Be).indexOf("vw")>-1||String(Be).indexOf("vh")>-1;let on=se||tn;qe="0"==qe?0:qe,pn="0"==pn?0:pn;const un=!qe&&!pn;let Nt={};const dn={"max-width":null,"max-height":null,"min-width":null,"min-height":null};switch(Be||""){case"":Be="row"===ut?"0%":!1!==this.layoutConfig.useColumnBasisZero?"0.000000001px":"auto";break;case"initial":case"nogrow":qe=0,Be="auto";break;case"grow":Be="100%";break;case"noshrink":pn=0,Be="auto";break;case"auto":break;case"none":qe=0,pn=0,Be="auto";break;default:!on&&!bt&&!isNaN(Be)&&(Be+="%"),"0%"===Be&&(on=!0),"0px"===Be&&(Be="0%"),Nt=(0,e.C5)(dn,se?{"flex-grow":qe,"flex-shrink":pn,"flex-basis":on?Be:"100%"}:{flex:`${qe} ${pn} ${on?Be:"100%"}`})}return Nt.flex||Nt["flex-grow"]||(Nt=(0,e.C5)(dn,se?{"flex-grow":qe,"flex-shrink":pn,"flex-basis":Be}:{flex:`${qe} ${pn} ${Be}`})),"0%"!==Be&&"0px"!==Be&&"0.000000001px"!==Be&&"auto"!==Be&&(Nt[Ot]=un||on&&qe?Be:null,Nt[Ge]=un||!We&&pn?Be:null),Nt[Ot]||Nt[Ge]?at.hasWrap&&(Nt[se?"flex-basis":"flex"]=Nt[Ge]?se?Nt[Ge]:`${qe} ${pn} ${Nt[Ge]}`:se?Nt[Ot]:`${qe} ${pn} ${Nt[Ot]}`):Nt=(0,e.C5)(dn,se?{"flex-grow":qe,"flex-shrink":pn,"flex-basis":Be}:{flex:`${qe} ${pn} ${Be}`}),(0,e.C5)(Nt,{"box-sizing":"border-box"})}}return N.\u0275fac=function(Me){return new(Me||N)(i.KVO(w.EA))},N.\u0275prov=i.jDH({token:N,factory:N.\u0275fac,providedIn:"root"}),N})();const Xe=["fxFlex","fxFlex.xs","fxFlex.sm","fxFlex.md","fxFlex.lg","fxFlex.xl","fxFlex.lt-sm","fxFlex.lt-md","fxFlex.lt-lg","fxFlex.lt-xl","fxFlex.gt-xs","fxFlex.gt-sm","fxFlex.gt-md","fxFlex.gt-lg"];let he=(()=>{class N extends w.DJ{constructor(Me,at,qe,pn,Je){super(Me,pn,at,Je),this.layoutConfig=qe,this.marshal=Je,this.DIRECTIVE_KEY="flex",this.direction=void 0,this.wrap=void 0,this.flexGrow="1",this.flexShrink="1",this.init()}get shrink(){return this.flexShrink}set shrink(Me){this.flexShrink=Me||"1",this.triggerReflow()}get grow(){return this.flexGrow}set grow(Me){this.flexGrow=Me||"1",this.triggerReflow()}ngOnInit(){this.parentElement&&(this.marshal.trackValue(this.parentElement,"layout").pipe((0,f.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this)),this.marshal.trackValue(this.nativeElement,"layout-align").pipe((0,f.Q)(this.destroySubject)).subscribe(this.triggerReflow.bind(this)))}onLayoutChange(Me){const qe=Me.value.split(" ");this.direction=qe[0],this.wrap=void 0!==qe[1]&&"wrap"===qe[1],this.triggerUpdate()}updateWithValue(Me){void 0===this.direction&&(this.direction=this.getFlexFlowDirection(this.parentElement,!1!==this.layoutConfig.addFlexToParent)),void 0===this.wrap&&(this.wrap=this.hasWrap(this.parentElement));const qe=this.direction,pn=qe.startsWith("row"),Je=this.wrap;pn&&Je?this.styleCache=te:pn&&!Je?this.styleCache=lt:!pn&&Je?this.styleCache=ie:!pn&&!Je&&(this.styleCache=Le);const Be=String(Me).replace(";",""),ut=(0,w.hN)(Be,this.flexGrow,this.flexShrink);this.addStyles(ut.join(" "),{direction:qe,hasWrap:Je})}triggerReflow(){const Me=this.activatedValue;if(void 0!==Me){const at=(0,w.hN)(Me+"",this.flexGrow,this.flexShrink);this.marshal.updateElement(this.nativeElement,this.DIRECTIVE_KEY,at.join(" "))}}}return N.\u0275fac=function(Me){return new(Me||N)(d.rXU(d.aKT),d.rXU(w.ZH),d.rXU(w.EA),d.rXU(Re),d.rXU(w.qH))},N.\u0275dir=d.FsC({type:N,inputs:{shrink:[0,"fxShrink","shrink"],grow:[0,"fxGrow","grow"]},standalone:!1,features:[d.Vt3]}),N})(),Dt=(()=>{class N extends he{constructor(){super(...arguments),this.inputs=Xe}}return N.\u0275fac=(()=>{let Z;return function(at){return(Z||(Z=d.xGo(N)))(at||N)}})(),N.\u0275dir=d.FsC({type:N,selectors:[["","fxFlex",""],["","fxFlex.xs",""],["","fxFlex.sm",""],["","fxFlex.md",""],["","fxFlex.lg",""],["","fxFlex.xl",""],["","fxFlex.lt-sm",""],["","fxFlex.lt-md",""],["","fxFlex.lt-lg",""],["","fxFlex.lt-xl",""],["","fxFlex.gt-xs",""],["","fxFlex.gt-sm",""],["","fxFlex.gt-md",""],["","fxFlex.gt-lg",""]],inputs:{fxFlex:"fxFlex","fxFlex.xs":"fxFlex.xs","fxFlex.sm":"fxFlex.sm","fxFlex.md":"fxFlex.md","fxFlex.lg":"fxFlex.lg","fxFlex.xl":"fxFlex.xl","fxFlex.lt-sm":"fxFlex.lt-sm","fxFlex.lt-md":"fxFlex.lt-md","fxFlex.lt-lg":"fxFlex.lt-lg","fxFlex.lt-xl":"fxFlex.lt-xl","fxFlex.gt-xs":"fxFlex.gt-xs","fxFlex.gt-sm":"fxFlex.gt-sm","fxFlex.gt-md":"fxFlex.gt-md","fxFlex.gt-lg":"fxFlex.gt-lg"},standalone:!1,features:[d.Vt3]}),N})();const lt=new Map,Le=new Map,te=new Map,ie=new Map;let wt=(()=>{class N extends w.r3{buildStyles(Me,at){const qe={},[pn,Je]=Me.split(" ");switch(pn){case"center":qe["justify-content"]="center";break;case"space-around":qe["justify-content"]="space-around";break;case"space-between":qe["justify-content"]="space-between";break;case"space-evenly":qe["justify-content"]="space-evenly";break;case"end":case"flex-end":qe["justify-content"]="flex-end";break;default:qe["justify-content"]="flex-start"}switch(Je){case"start":case"flex-start":qe["align-items"]=qe["align-content"]="flex-start";break;case"center":qe["align-items"]=qe["align-content"]="center";break;case"end":case"flex-end":qe["align-items"]=qe["align-content"]="flex-end";break;case"space-between":qe["align-content"]="space-between",qe["align-items"]="stretch";break;case"space-around":qe["align-content"]="space-around",qe["align-items"]="stretch";break;case"baseline":qe["align-content"]="stretch",qe["align-items"]="baseline";break;default:qe["align-items"]=qe["align-content"]="stretch"}return(0,e.C5)(qe,{display:at.inline?"inline-flex":"flex","flex-direction":at.layout,"box-sizing":"border-box","max-width":"stretch"===Je?(0,e.Vc)(at.layout)?null:"100%":null,"max-height":"stretch"===Je&&(0,e.Vc)(at.layout)?"100%":null})}}return N.\u0275fac=(()=>{let Z;return function(at){return(Z||(Z=d.xGo(N)))(at||N)}})(),N.\u0275prov=i.jDH({token:N,factory:N.\u0275fac,providedIn:"root"}),N})();const pt=["fxLayoutAlign","fxLayoutAlign.xs","fxLayoutAlign.sm","fxLayoutAlign.md","fxLayoutAlign.lg","fxLayoutAlign.xl","fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg"];let gn=(()=>{class N extends w.DJ{constructor(Me,at,qe,pn){super(Me,qe,at,pn),this.DIRECTIVE_KEY="layout-align",this.layout="row",this.inline=!1,this.init(),this.marshal.trackValue(this.nativeElement,"layout").pipe((0,f.Q)(this.destroySubject)).subscribe(this.onLayoutChange.bind(this))}updateWithValue(Me){const at=this.layout||"row",qe=this.inline;"row"===at&&qe?this.styleCache=vt:"row"!==at||qe?"row-reverse"===at&&qe?this.styleCache=ye:"row-reverse"!==at||qe?"column"===at&&qe?this.styleCache=ee:"column"!==at||qe?"column-reverse"===at&&qe?this.styleCache=ke:"column-reverse"===at&&!qe&&(this.styleCache=Ri):this.styleCache=Ni:this.styleCache=kn:this.styleCache=vi,this.addStyles(Me,{layout:at,inline:qe})}onLayoutChange(Me){const at=Me.value.split(" ");this.layout=at[0],this.inline=Me.value.includes("inline"),e.Uo.find(qe=>qe===this.layout)||(this.layout="row"),this.triggerUpdate()}}return N.\u0275fac=function(Me){return new(Me||N)(d.rXU(d.aKT),d.rXU(w.ZH),d.rXU(wt),d.rXU(w.qH))},N.\u0275dir=d.FsC({type:N,standalone:!1,features:[d.Vt3]}),N})(),ei=(()=>{class N extends gn{constructor(){super(...arguments),this.inputs=pt}}return N.\u0275fac=(()=>{let Z;return function(at){return(Z||(Z=d.xGo(N)))(at||N)}})(),N.\u0275dir=d.FsC({type:N,selectors:[["","fxLayoutAlign",""],["","fxLayoutAlign.xs",""],["","fxLayoutAlign.sm",""],["","fxLayoutAlign.md",""],["","fxLayoutAlign.lg",""],["","fxLayoutAlign.xl",""],["","fxLayoutAlign.lt-sm",""],["","fxLayoutAlign.lt-md",""],["","fxLayoutAlign.lt-lg",""],["","fxLayoutAlign.lt-xl",""],["","fxLayoutAlign.gt-xs",""],["","fxLayoutAlign.gt-sm",""],["","fxLayoutAlign.gt-md",""],["","fxLayoutAlign.gt-lg",""]],inputs:{fxLayoutAlign:"fxLayoutAlign","fxLayoutAlign.xs":"fxLayoutAlign.xs","fxLayoutAlign.sm":"fxLayoutAlign.sm","fxLayoutAlign.md":"fxLayoutAlign.md","fxLayoutAlign.lg":"fxLayoutAlign.lg","fxLayoutAlign.xl":"fxLayoutAlign.xl","fxLayoutAlign.lt-sm":"fxLayoutAlign.lt-sm","fxLayoutAlign.lt-md":"fxLayoutAlign.lt-md","fxLayoutAlign.lt-lg":"fxLayoutAlign.lt-lg","fxLayoutAlign.lt-xl":"fxLayoutAlign.lt-xl","fxLayoutAlign.gt-xs":"fxLayoutAlign.gt-xs","fxLayoutAlign.gt-sm":"fxLayoutAlign.gt-sm","fxLayoutAlign.gt-md":"fxLayoutAlign.gt-md","fxLayoutAlign.gt-lg":"fxLayoutAlign.gt-lg"},standalone:!1,features:[d.Vt3]}),N})();const vi=new Map,Ni=new Map,kn=new Map,Ri=new Map,vt=new Map,ee=new Map,ye=new Map,ke=new Map;let ge=(()=>{class N{}return N.\u0275fac=function(Me){return new(Me||N)},N.\u0275mod=d.$C({type:N}),N.\u0275inj=i.G2t({imports:[w.Ui,T.jI]}),N})()},9417(Zt,pe,l){"use strict";l.d(pe,{BC:()=>Sn,JD:()=>As,Q0:()=>Jt,VZ:()=>Jr,X1:()=>Sr,YN:()=>Ks,YS:()=>_r,ZU:()=>gt,cV:()=>Wn,cb:()=>Qn,cz:()=>Ee,hs:()=>Pi,j4:()=>Nn,k0:()=>be,kq:()=>Pe,l_:()=>Ze,me:()=>G,ok:()=>Or,qT:()=>Ve,vO:()=>Gt,vS:()=>Fe,zX:()=>Zr,ze:()=>Fs});var v=l(2615),T=l(3664),w=l(7705),e=l(9295),O=l(7303),f=l(1413),u=l(7468),L=l(2806),C=l(6354);let B=(()=>{class Ne{_renderer;_elementRef;onChange=q=>{};onTouched=()=>{};constructor(q,mt){this._renderer=q,this._elementRef=mt}setProperty(q,mt){this._renderer.setProperty(this._elementRef.nativeElement,q,mt)}registerOnTouched(q){this.onTouched=q}registerOnChange(q){this.onChange=q}setDisabledState(q){this.setProperty("disabled",q)}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(T.sFG),T.rXU(T.aKT))};static \u0275dir=T.FsC({type:Ne})}return Ne})(),A=(()=>{class Ne extends B{static \u0275fac=(()=>{let q;return function(ln){return(q||(q=T.xGo(Ne)))(ln||Ne)}})();static \u0275dir=T.FsC({type:Ne,features:[T.Vt3]})}return Ne})();const Pe=new v.nKC(""),Ae={provide:Pe,useExisting:(0,v.Rfq)(()=>G),multi:!0},W=new v.nKC("");let G=(()=>{class Ne extends B{_compositionMode;_composing=!1;constructor(q,mt,ln){super(q,mt),this._compositionMode=ln,null==this._compositionMode&&(this._compositionMode=!function j(){const Ne=(0,O.rb)()?(0,O.rb)().getUserAgent():"";return/android (\d+)/.test(Ne.toLowerCase())}())}writeValue(q){this.setProperty("value",q??"")}_handleInput(q){(!this._compositionMode||this._compositionMode&&!this._composing)&&this.onChange(q)}_compositionStart(){this._composing=!0}_compositionEnd(q){this._composing=!1,this._compositionMode&&this.onChange(q)}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(T.sFG),T.rXU(T.aKT),T.rXU(W,8))};static \u0275dir=T.FsC({type:Ne,selectors:[["input","formControlName","",3,"type","checkbox"],["textarea","formControlName",""],["input","formControl","",3,"type","checkbox"],["textarea","formControl",""],["input","ngModel","",3,"type","checkbox"],["textarea","ngModel",""],["","ngDefaultControl",""]],hostBindings:function(mt,ln){1&mt&&T.bIt("input",function(ua){return ln._handleInput(ua.target.value)})("blur",function(){return ln.onTouched()})("compositionstart",function(){return ln._compositionStart()})("compositionend",function(ua){return ln._compositionEnd(ua.target.value)})},standalone:!1,features:[T.Jv_([Ae]),T.Vt3]})}return Ne})();function re(Ne){return null==Ne||0===xe(Ne)}function xe(Ne){return null==Ne?null:Array.isArray(Ne)||"string"==typeof Ne?Ne.length:Ne instanceof Set?Ne.size:null}const Ee=new v.nKC(""),V=new v.nKC(""),ce=/^(?=.{1,254}$)(?=.{1,64}@)[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-zA-Z0-9!#$%&'*+/=?^_`{|}~-]+)*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;class be{static min(He){return ne(He)}static max(He){return J(He)}static required(He){return De(He)}static requiredTrue(He){return function Re(Ne){return!0===Ne.value?null:{required:!0}}(He)}static email(He){return function Xe(Ne){return re(Ne.value)||ce.test(Ne.value)?null:{email:!0}}(He)}static minLength(He){return function _e(Ne){return He=>{const q=He.value?.length??xe(He.value);return null===q||0===q?null:q{const q=He.value?.length??xe(He.value);return null!==q&&q>Ne?{maxlength:{requiredLength:Ne,actualLength:q}}:null}}(He)}static pattern(He){return function Dt(Ne){if(!Ne)return lt;let He,q;return"string"==typeof Ne?(q="","^"!==Ne.charAt(0)&&(q+="^"),q+=Ne,"$"!==Ne.charAt(Ne.length-1)&&(q+="$"),He=new RegExp(q)):(q=Ne.toString(),He=Ne),mt=>{if(re(mt.value))return null;const ln=mt.value;return He.test(ln)?null:{pattern:{requiredPattern:q,actualValue:ln}}}}(He)}static nullValidator(He){return null}static compose(He){return H(He)}static composeAsync(He){return Ke(He)}}function ne(Ne){return He=>{if(null==He.value||null==Ne)return null;const q=parseFloat(He.value);return!isNaN(q)&&q{if(null==He.value||null==Ne)return null;const q=parseFloat(He.value);return!isNaN(q)&&q>Ne?{max:{max:Ne,actual:He.value}}:null}}function De(Ne){return re(Ne.value)?{required:!0}:null}function lt(Ne){return null}function Le(Ne){return null!=Ne}function te(Ne){return(0,T.yLl)(Ne)?(0,L.H)(Ne):Ne}function ie(Ne){let He={};return Ne.forEach(q=>{He=null!=q?{...He,...q}:He}),0===Object.keys(He).length?null:He}function P(Ne,He){return He.map(q=>q(Ne))}function ve(Ne){return Ne.map(He=>function F(Ne){return!Ne.validate}(He)?He:q=>He.validate(q))}function H(Ne){if(!Ne)return null;const He=Ne.filter(Le);return 0==He.length?null:function(q){return ie(P(q,He))}}function $(Ne){return null!=Ne?H(ve(Ne)):null}function Ke(Ne){if(!Ne)return null;const He=Ne.filter(Le);return 0==He.length?null:function(q){const mt=P(q,He).map(te);return(0,u.p)(mt).pipe((0,C.T)(ie))}}function Vt(Ne){return null!=Ne?Ke(ve(Ne)):null}function St(Ne,He){return null===Ne?[He]:Array.isArray(Ne)?[...Ne,He]:[Ne,He]}function ot(Ne){return Ne._rawValidators}function nt(Ne){return Ne._rawAsyncValidators}function ht(Ne){return Ne?Array.isArray(Ne)?Ne:[Ne]:[]}function oe(Ne,He){return Array.isArray(Ne)?Ne.includes(He):Ne===He}function Ye(Ne,He){const q=ht(He);return ht(Ne).forEach(ln=>{oe(q,ln)||q.push(ln)}),q}function fe(Ne,He){return ht(He).filter(q=>!oe(Ne,q))}class Qe{get value(){return this.control?this.control.value:null}get valid(){return this.control?this.control.valid:null}get invalid(){return this.control?this.control.invalid:null}get pending(){return this.control?this.control.pending:null}get disabled(){return this.control?this.control.disabled:null}get enabled(){return this.control?this.control.enabled:null}get errors(){return this.control?this.control.errors:null}get pristine(){return this.control?this.control.pristine:null}get dirty(){return this.control?this.control.dirty:null}get touched(){return this.control?this.control.touched:null}get status(){return this.control?this.control.status:null}get untouched(){return this.control?this.control.untouched:null}get statusChanges(){return this.control?this.control.statusChanges:null}get valueChanges(){return this.control?this.control.valueChanges:null}get path(){return null}_composedValidatorFn;_composedAsyncValidatorFn;_rawValidators=[];_rawAsyncValidators=[];_setValidators(He){this._rawValidators=He||[],this._composedValidatorFn=$(this._rawValidators)}_setAsyncValidators(He){this._rawAsyncValidators=He||[],this._composedAsyncValidatorFn=Vt(this._rawAsyncValidators)}get validator(){return this._composedValidatorFn||null}get asyncValidator(){return this._composedAsyncValidatorFn||null}_onDestroyCallbacks=[];_registerOnDestroy(He){this._onDestroyCallbacks.push(He)}_invokeOnDestroyCallbacks(){this._onDestroyCallbacks.forEach(He=>He()),this._onDestroyCallbacks=[]}reset(He=void 0){this.control&&this.control.reset(He)}hasError(He,q){return!!this.control&&this.control.hasError(He,q)}getError(He,q){return this.control?this.control.getError(He,q):null}}class gt extends Qe{name;get formDirective(){return null}get path(){return null}}class Gt extends Qe{_parent=null;name=null;valueAccessor=null}class rt{_cd;constructor(He){this._cd=He}get isTouched(){return this._cd?.control?._touched?.(),!!this._cd?.control?.touched}get isUntouched(){return!!this._cd?.control?.untouched}get isPristine(){return this._cd?.control?._pristine?.(),!!this._cd?.control?.pristine}get isDirty(){return!!this._cd?.control?.dirty}get isValid(){return this._cd?.control?._status?.(),!!this._cd?.control?.valid}get isInvalid(){return!!this._cd?.control?.invalid}get isPending(){return!!this._cd?.control?.pending}get isSubmitted(){return this._cd?._submitted?.(),!!this._cd?.submitted}}let Sn=(()=>{class Ne extends rt{constructor(q){super(q)}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(Gt,2))};static \u0275dir=T.FsC({type:Ne,selectors:[["","formControlName",""],["","ngModel",""],["","formControl",""]],hostVars:14,hostBindings:function(mt,ln){2&mt&&T.AVh("ng-untouched",ln.isUntouched)("ng-touched",ln.isTouched)("ng-pristine",ln.isPristine)("ng-dirty",ln.isDirty)("ng-valid",ln.isValid)("ng-invalid",ln.isInvalid)("ng-pending",ln.isPending)},standalone:!1,features:[T.Vt3]})}return Ne})(),Qn=(()=>{class Ne extends rt{constructor(q){super(q)}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(gt,10))};static \u0275dir=T.FsC({type:Ne,selectors:[["","formGroupName",""],["","formArrayName",""],["","ngModelGroup",""],["","formGroup",""],["form",3,"ngNoForm",""],["","ngForm",""]],hostVars:16,hostBindings:function(mt,ln){2&mt&&T.AVh("ng-untouched",ln.isUntouched)("ng-touched",ln.isTouched)("ng-pristine",ln.isPristine)("ng-dirty",ln.isDirty)("ng-valid",ln.isValid)("ng-invalid",ln.isInvalid)("ng-pending",ln.isPending)("ng-submitted",ln.isSubmitted)},standalone:!1,features:[T.Vt3]})}return Ne})();const N="VALID",Z="INVALID",Me="PENDING",at="DISABLED";class qe{}class pn extends qe{value;source;constructor(He,q){super(),this.value=He,this.source=q}}class Je extends qe{pristine;source;constructor(He,q){super(),this.pristine=He,this.source=q}}class Be extends qe{touched;source;constructor(He,q){super(),this.touched=He,this.source=q}}class ut extends qe{status;source;constructor(He,q){super(),this.status=He,this.source=q}}class Ge extends qe{source;constructor(He){super(),this.source=He}}class Ot extends qe{source;constructor(He){super(),this.source=He}}function se(Ne){return(on(Ne)?Ne.validators:Ne)||null}function bt(Ne,He){return(on(He)?He.asyncValidators:Ne)||null}function on(Ne){return null!=Ne&&!Array.isArray(Ne)&&"object"==typeof Ne}function un(Ne,He,q){const mt=Ne.controls;if(!(He?Object.keys(mt):mt).length)throw new v.buA(1e3,"");if(!mt[q])throw new v.buA(1001,"")}function Nt(Ne,He,q){Ne._forEachChild((mt,ln)=>{if(void 0===q[ln])throw new v.buA(1002,"")})}class dn{_pendingDirty=!1;_hasOwnPendingAsyncValidator=null;_pendingTouched=!1;_onCollectionChange=()=>{};_updateOn;_parent=null;_asyncValidationSubscription;_composedValidatorFn;_composedAsyncValidatorFn;_rawValidators;_rawAsyncValidators;value;constructor(He,q){this._assignValidators(He),this._assignAsyncValidators(q)}get validator(){return this._composedValidatorFn}set validator(He){this._rawValidators=this._composedValidatorFn=He}get asyncValidator(){return this._composedAsyncValidatorFn}set asyncValidator(He){this._rawAsyncValidators=this._composedAsyncValidatorFn=He}get parent(){return this._parent}get status(){return(0,e.O8)(this.statusReactive)}set status(He){(0,e.O8)(()=>this.statusReactive.set(He))}_status=(0,e.EW)(()=>this.statusReactive());statusReactive=(0,v.vPA)(void 0);get valid(){return this.status===N}get invalid(){return this.status===Z}get pending(){return this.status==Me}get disabled(){return this.status===at}get enabled(){return this.status!==at}errors;get pristine(){return(0,e.O8)(this.pristineReactive)}set pristine(He){(0,e.O8)(()=>this.pristineReactive.set(He))}_pristine=(0,e.EW)(()=>this.pristineReactive());pristineReactive=(0,v.vPA)(!0);get dirty(){return!this.pristine}get touched(){return(0,e.O8)(this.touchedReactive)}set touched(He){(0,e.O8)(()=>this.touchedReactive.set(He))}_touched=(0,e.EW)(()=>this.touchedReactive());touchedReactive=(0,v.vPA)(!1);get untouched(){return!this.touched}_events=new f.B;events=this._events.asObservable();valueChanges;statusChanges;get updateOn(){return this._updateOn?this._updateOn:this.parent?this.parent.updateOn:"change"}setValidators(He){this._assignValidators(He)}setAsyncValidators(He){this._assignAsyncValidators(He)}addValidators(He){this.setValidators(Ye(He,this._rawValidators))}addAsyncValidators(He){this.setAsyncValidators(Ye(He,this._rawAsyncValidators))}removeValidators(He){this.setValidators(fe(He,this._rawValidators))}removeAsyncValidators(He){this.setAsyncValidators(fe(He,this._rawAsyncValidators))}hasValidator(He){return oe(this._rawValidators,He)}hasAsyncValidator(He){return oe(this._rawAsyncValidators,He)}clearValidators(){this.validator=null}clearAsyncValidators(){this.asyncValidator=null}markAsTouched(He={}){const q=!1===this.touched;this.touched=!0;const mt=He.sourceControl??this;this._parent&&!He.onlySelf&&this._parent.markAsTouched({...He,sourceControl:mt}),q&&!1!==He.emitEvent&&this._events.next(new Be(!0,mt))}markAllAsDirty(He={}){this.markAsDirty({onlySelf:!0,emitEvent:He.emitEvent,sourceControl:this}),this._forEachChild(q=>q.markAllAsDirty(He))}markAllAsTouched(He={}){this.markAsTouched({onlySelf:!0,emitEvent:He.emitEvent,sourceControl:this}),this._forEachChild(q=>q.markAllAsTouched(He))}markAsUntouched(He={}){const q=!0===this.touched;this.touched=!1,this._pendingTouched=!1;const mt=He.sourceControl??this;this._forEachChild(ln=>{ln.markAsUntouched({onlySelf:!0,emitEvent:He.emitEvent,sourceControl:mt})}),this._parent&&!He.onlySelf&&this._parent._updateTouched(He,mt),q&&!1!==He.emitEvent&&this._events.next(new Be(!1,mt))}markAsDirty(He={}){const q=!0===this.pristine;this.pristine=!1;const mt=He.sourceControl??this;this._parent&&!He.onlySelf&&this._parent.markAsDirty({...He,sourceControl:mt}),q&&!1!==He.emitEvent&&this._events.next(new Je(!1,mt))}markAsPristine(He={}){const q=!1===this.pristine;this.pristine=!0,this._pendingDirty=!1;const mt=He.sourceControl??this;this._forEachChild(ln=>{ln.markAsPristine({onlySelf:!0,emitEvent:He.emitEvent})}),this._parent&&!He.onlySelf&&this._parent._updatePristine(He,mt),q&&!1!==He.emitEvent&&this._events.next(new Je(!0,mt))}markAsPending(He={}){this.status=Me;const q=He.sourceControl??this;!1!==He.emitEvent&&(this._events.next(new ut(this.status,q)),this.statusChanges.emit(this.status)),this._parent&&!He.onlySelf&&this._parent.markAsPending({...He,sourceControl:q})}disable(He={}){const q=this._parentMarkedDirty(He.onlySelf);this.status=at,this.errors=null,this._forEachChild(ln=>{ln.disable({...He,onlySelf:!0})}),this._updateValue();const mt=He.sourceControl??this;!1!==He.emitEvent&&(this._events.next(new pn(this.value,mt)),this._events.next(new ut(this.status,mt)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._updateAncestors({...He,skipPristineCheck:q},this),this._onDisabledChange.forEach(ln=>ln(!0))}enable(He={}){const q=this._parentMarkedDirty(He.onlySelf);this.status=N,this._forEachChild(mt=>{mt.enable({...He,onlySelf:!0})}),this.updateValueAndValidity({onlySelf:!0,emitEvent:He.emitEvent}),this._updateAncestors({...He,skipPristineCheck:q},this),this._onDisabledChange.forEach(mt=>mt(!1))}_updateAncestors(He,q){this._parent&&!He.onlySelf&&(this._parent.updateValueAndValidity(He),He.skipPristineCheck||this._parent._updatePristine({},q),this._parent._updateTouched({},q))}setParent(He){this._parent=He}getRawValue(){return this.value}updateValueAndValidity(He={}){if(this._setInitialStatus(),this._updateValue(),this.enabled){const mt=this._cancelExistingSubscription();this.errors=this._runValidator(),this.status=this._calculateStatus(),(this.status===N||this.status===Me)&&this._runAsyncValidator(mt,He.emitEvent)}const q=He.sourceControl??this;!1!==He.emitEvent&&(this._events.next(new pn(this.value,q)),this._events.next(new ut(this.status,q)),this.valueChanges.emit(this.value),this.statusChanges.emit(this.status)),this._parent&&!He.onlySelf&&this._parent.updateValueAndValidity({...He,sourceControl:q})}_updateTreeValidity(He={emitEvent:!0}){this._forEachChild(q=>q._updateTreeValidity(He)),this.updateValueAndValidity({onlySelf:!0,emitEvent:He.emitEvent})}_setInitialStatus(){this.status=this._allControlsDisabled()?at:N}_runValidator(){return this.validator?this.validator(this):null}_runAsyncValidator(He,q){if(this.asyncValidator){this.status=Me,this._hasOwnPendingAsyncValidator={emitEvent:!1!==q,shouldHaveEmitted:!1!==He};const mt=te(this.asyncValidator(this));this._asyncValidationSubscription=mt.subscribe(ln=>{this._hasOwnPendingAsyncValidator=null,this.setErrors(ln,{emitEvent:q,shouldHaveEmitted:He})})}}_cancelExistingSubscription(){if(this._asyncValidationSubscription){this._asyncValidationSubscription.unsubscribe();const He=(this._hasOwnPendingAsyncValidator?.emitEvent||this._hasOwnPendingAsyncValidator?.shouldHaveEmitted)??!1;return this._hasOwnPendingAsyncValidator=null,He}return!1}setErrors(He,q={}){this.errors=He,this._updateControlsErrors(!1!==q.emitEvent,this,q.shouldHaveEmitted)}get(He){let q=He;return null==q||(Array.isArray(q)||(q=q.split(".")),0===q.length)?null:q.reduce((mt,ln)=>mt&&mt._find(ln),this)}getError(He,q){const mt=q?this.get(q):this;return mt&&mt.errors?mt.errors[He]:null}hasError(He,q){return!!this.getError(He,q)}get root(){let He=this;for(;He._parent;)He=He._parent;return He}_updateControlsErrors(He,q,mt){this.status=this._calculateStatus(),He&&this.statusChanges.emit(this.status),(He||mt)&&this._events.next(new ut(this.status,q)),this._parent&&this._parent._updateControlsErrors(He,q,mt)}_initObservables(){this.valueChanges=new T.bkB,this.statusChanges=new T.bkB}_calculateStatus(){return this._allControlsDisabled()?at:this.errors?Z:this._hasOwnPendingAsyncValidator||this._anyControlsHaveStatus(Me)?Me:this._anyControlsHaveStatus(Z)?Z:N}_anyControlsHaveStatus(He){return this._anyControls(q=>q.status===He)}_anyControlsDirty(){return this._anyControls(He=>He.dirty)}_anyControlsTouched(){return this._anyControls(He=>He.touched)}_updatePristine(He,q){const mt=!this._anyControlsDirty(),ln=this.pristine!==mt;this.pristine=mt,this._parent&&!He.onlySelf&&this._parent._updatePristine(He,q),ln&&this._events.next(new Je(this.pristine,q))}_updateTouched(He={},q){this.touched=this._anyControlsTouched(),this._events.next(new Be(this.touched,q)),this._parent&&!He.onlySelf&&this._parent._updateTouched(He,q)}_onDisabledChange=[];_registerOnCollectionChange(He){this._onCollectionChange=He}_setUpdateStrategy(He){on(He)&&null!=He.updateOn&&(this._updateOn=He.updateOn)}_parentMarkedDirty(He){return!He&&!(!this._parent||!this._parent.dirty)&&!this._parent._anyControlsDirty()}_find(He){return null}_assignValidators(He){this._rawValidators=Array.isArray(He)?He.slice():He,this._composedValidatorFn=function We(Ne){return Array.isArray(Ne)?$(Ne):Ne||null}(this._rawValidators)}_assignAsyncValidators(He){this._rawAsyncValidators=Array.isArray(He)?He.slice():He,this._composedAsyncValidatorFn=function tn(Ne){return Array.isArray(Ne)?Vt(Ne):Ne||null}(this._rawAsyncValidators)}}class xn extends dn{constructor(He,q,mt){super(se(q),bt(mt,q)),this.controls=He,this._initObservables(),this._setUpdateStrategy(q),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}controls;registerControl(He,q){return this.controls[He]?this.controls[He]:(this.controls[He]=q,q.setParent(this),q._registerOnCollectionChange(this._onCollectionChange),q)}addControl(He,q,mt={}){this.registerControl(He,q),this.updateValueAndValidity({emitEvent:mt.emitEvent}),this._onCollectionChange()}removeControl(He,q={}){this.controls[He]&&this.controls[He]._registerOnCollectionChange(()=>{}),delete this.controls[He],this.updateValueAndValidity({emitEvent:q.emitEvent}),this._onCollectionChange()}setControl(He,q,mt={}){this.controls[He]&&this.controls[He]._registerOnCollectionChange(()=>{}),delete this.controls[He],q&&this.registerControl(He,q),this.updateValueAndValidity({emitEvent:mt.emitEvent}),this._onCollectionChange()}contains(He){return this.controls.hasOwnProperty(He)&&this.controls[He].enabled}setValue(He,q={}){Nt(this,0,He),Object.keys(He).forEach(mt=>{un(this,!0,mt),this.controls[mt].setValue(He[mt],{onlySelf:!0,emitEvent:q.emitEvent})}),this.updateValueAndValidity(q)}patchValue(He,q={}){null!=He&&(Object.keys(He).forEach(mt=>{const ln=this.controls[mt];ln&&ln.patchValue(He[mt],{onlySelf:!0,emitEvent:q.emitEvent})}),this.updateValueAndValidity(q))}reset(He={},q={}){this._forEachChild((mt,ln)=>{mt.reset(He?He[ln]:null,{onlySelf:!0,emitEvent:q.emitEvent})}),this._updatePristine(q,this),this._updateTouched(q,this),this.updateValueAndValidity(q),!1!==q?.emitEvent&&this._events.next(new Ot(this))}getRawValue(){return this._reduceChildren({},(He,q,mt)=>(He[mt]=q.getRawValue(),He))}_syncPendingControls(){let He=this._reduceChildren(!1,(q,mt)=>!!mt._syncPendingControls()||q);return He&&this.updateValueAndValidity({onlySelf:!0}),He}_forEachChild(He){Object.keys(this.controls).forEach(q=>{const mt=this.controls[q];mt&&He(mt,q)})}_setUpControls(){this._forEachChild(He=>{He.setParent(this),He._registerOnCollectionChange(this._onCollectionChange)})}_updateValue(){this.value=this._reduceValue()}_anyControls(He){for(const[q,mt]of Object.entries(this.controls))if(this.contains(q)&&He(mt))return!0;return!1}_reduceValue(){return this._reduceChildren({},(q,mt,ln)=>((mt.enabled||this.disabled)&&(q[ln]=mt.value),q))}_reduceChildren(He,q){let mt=He;return this._forEachChild((ln,Oi)=>{mt=q(mt,ln,Oi)}),mt}_allControlsDisabled(){for(const He of Object.keys(this.controls))if(this.controls[He].enabled)return!1;return Object.keys(this.controls).length>0||this.disabled}_find(He){return this.controls.hasOwnProperty(He)?this.controls[He]:null}}class Tt extends xn{}const we=new v.nKC("",{providedIn:"root",factory:()=>ae}),ae="always";function Lt(Ne,He){return[...He.path,Ne]}function Ht(Ne,He,q=ae){Qi(Ne,He),He.valueAccessor.writeValue(Ne.value),(Ne.disabled||"always"===q)&&He.valueAccessor.setDisabledState?.(Ne.disabled),function It(Ne,He){He.valueAccessor.registerOnChange(q=>{Ne._pendingValue=q,Ne._pendingChange=!0,Ne._pendingDirty=!0,"change"===Ne.updateOn&&Yt(Ne,He)})}(Ne,He),function Un(Ne,He){const q=(mt,ln)=>{He.valueAccessor.writeValue(mt),ln&&He.viewToModelUpdate(mt)};Ne.registerOnChange(q),He._registerOnDestroy(()=>{Ne._unregisterOnChange(q)})}(Ne,He),function an(Ne,He){He.valueAccessor.registerOnTouched(()=>{Ne._pendingTouched=!0,"blur"===Ne.updateOn&&Ne._pendingChange&&Yt(Ne,He),"submit"!==Ne.updateOn&&Ne.markAsTouched()})}(Ne,He),function bi(Ne,He){if(He.valueAccessor.setDisabledState){const q=mt=>{He.valueAccessor.setDisabledState(mt)};Ne.registerOnDisabledChange(q),He._registerOnDestroy(()=>{Ne._unregisterOnDisabledChange(q)})}}(Ne,He)}function _n(Ne,He,q=!0){const mt=()=>{};He.valueAccessor&&(He.valueAccessor.registerOnChange(mt),He.valueAccessor.registerOnTouched(mt)),zi(Ne,He),Ne&&(He._invokeOnDestroyCallbacks(),Ne._registerOnCollectionChange(()=>{}))}function fi(Ne,He){Ne.forEach(q=>{q.registerOnValidatorChange&&q.registerOnValidatorChange(He)})}function Qi(Ne,He){const q=ot(Ne);null!==He.validator?Ne.setValidators(St(q,He.validator)):"function"==typeof q&&Ne.setValidators([q]);const mt=nt(Ne);null!==He.asyncValidator?Ne.setAsyncValidators(St(mt,He.asyncValidator)):"function"==typeof mt&&Ne.setAsyncValidators([mt]);const ln=()=>Ne.updateValueAndValidity();fi(He._rawValidators,ln),fi(He._rawAsyncValidators,ln)}function zi(Ne,He){let q=!1;if(null!==Ne){if(null!==He.validator){const ln=ot(Ne);if(Array.isArray(ln)&&ln.length>0){const Oi=ln.filter(ua=>ua!==He.validator);Oi.length!==ln.length&&(q=!0,Ne.setValidators(Oi))}}if(null!==He.asyncValidator){const ln=nt(Ne);if(Array.isArray(ln)&&ln.length>0){const Oi=ln.filter(ua=>ua!==He.asyncValidator);Oi.length!==ln.length&&(q=!0,Ne.setAsyncValidators(Oi))}}}const mt=()=>{};return fi(He._rawValidators,mt),fi(He._rawAsyncValidators,mt),q}function Yt(Ne,He){Ne._pendingDirty&&Ne.markAsDirty(),Ne.setValue(Ne._pendingValue,{emitModelToViewChange:!1}),He.viewToModelUpdate(Ne._pendingValue),Ne._pendingChange=!1}function zn(Ne,He){Qi(Ne,He)}function ii(Ne,He){if(!Ne.hasOwnProperty("model"))return!1;const q=Ne.model;return!!q.isFirstChange()||!Object.is(He,q.currentValue)}function ia(Ne,He){Ne._syncPendingControls(),He.forEach(q=>{const mt=q.control;"submit"===mt.updateOn&&mt._pendingChange&&(q.viewToModelUpdate(mt._pendingValue),mt._pendingChange=!1)})}function ra(Ne,He){if(!He)return null;let q,mt,ln;return Array.isArray(He),He.forEach(Oi=>{Oi.constructor===G?q=Oi:function Bn(Ne){return Object.getPrototypeOf(Ne.constructor)===A}(Oi)?mt=Oi:ln=Oi}),ln||mt||q||null}const qt={provide:gt,useExisting:(0,v.Rfq)(()=>Wn)},En=Promise.resolve();let Wn=(()=>{class Ne extends gt{callSetDisabledState;get submitted(){return(0,e.O8)(this.submittedReactive)}_submitted=(0,e.EW)(()=>this.submittedReactive());submittedReactive=(0,v.vPA)(!1);_directives=new Set;form;ngSubmit=new T.bkB;options;constructor(q,mt,ln){super(),this.callSetDisabledState=ln,this.form=new xn({},$(q),Vt(mt))}ngAfterViewInit(){this._setUpdateStrategy()}get formDirective(){return this}get control(){return this.form}get path(){return[]}get controls(){return this.form.controls}addControl(q){En.then(()=>{const mt=this._findContainer(q.path);q.control=mt.registerControl(q.name,q.control),Ht(q.control,q,this.callSetDisabledState),q.control.updateValueAndValidity({emitEvent:!1}),this._directives.add(q)})}getControl(q){return this.form.get(q.path)}removeControl(q){En.then(()=>{const mt=this._findContainer(q.path);mt&&mt.removeControl(q.name),this._directives.delete(q)})}addFormGroup(q){En.then(()=>{const mt=this._findContainer(q.path),ln=new xn({});zn(ln,q),mt.registerControl(q.name,ln),ln.updateValueAndValidity({emitEvent:!1})})}removeFormGroup(q){En.then(()=>{const mt=this._findContainer(q.path);mt&&mt.removeControl(q.name)})}getFormGroup(q){return this.form.get(q.path)}updateModel(q,mt){En.then(()=>{this.form.get(q.path).setValue(mt)})}setValue(q){this.control.setValue(q)}onSubmit(q){return this.submittedReactive.set(!0),ia(this.form,this._directives),this.ngSubmit.emit(q),this.form._events.next(new Ge(this.control)),"dialog"===q?.target?.method}onReset(){this.resetForm()}resetForm(q=void 0){this.form.reset(q),this.submittedReactive.set(!1)}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.form._updateOn=this.options.updateOn)}_findContainer(q){return q.pop(),q.length?this.form.get(q):this.form}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(Ee,10),T.rXU(V,10),T.rXU(we,8))};static \u0275dir=T.FsC({type:Ne,selectors:[["form",3,"ngNoForm","",3,"formGroup",""],["ng-form"],["","ngForm",""]],hostBindings:function(mt,ln){1&mt&&T.bIt("submit",function(ua){return ln.onSubmit(ua)})("reset",function(){return ln.onReset()})},inputs:{options:[0,"ngFormOptions","options"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],standalone:!1,features:[T.Jv_([qt]),T.Vt3]})}return Ne})();function ri(Ne,He){const q=Ne.indexOf(He);q>-1&&Ne.splice(q,1)}function Rn(Ne){return"object"==typeof Ne&&null!==Ne&&2===Object.keys(Ne).length&&"value"in Ne&&"disabled"in Ne}const Hn=class extends dn{defaultValue=null;_onChange=[];_pendingValue;_pendingChange=!1;constructor(He=null,q,mt){super(se(q),bt(mt,q)),this._applyFormState(He),this._setUpdateStrategy(q),this._initObservables(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator}),on(q)&&(q.nonNullable||q.initialValueIsDefault)&&(this.defaultValue=Rn(He)?He.value:He)}setValue(He,q={}){this.value=this._pendingValue=He,this._onChange.length&&!1!==q.emitModelToViewChange&&this._onChange.forEach(mt=>mt(this.value,!1!==q.emitViewToModelChange)),this.updateValueAndValidity(q)}patchValue(He,q={}){this.setValue(He,q)}reset(He=this.defaultValue,q={}){this._applyFormState(He),this.markAsPristine(q),this.markAsUntouched(q),this.setValue(this.value,q),this._pendingChange=!1,!1!==q?.emitEvent&&this._events.next(new Ot(this))}_updateValue(){}_anyControls(He){return!1}_allControlsDisabled(){return this.disabled}registerOnChange(He){this._onChange.push(He)}_unregisterOnChange(He){ri(this._onChange,He)}registerOnDisabledChange(He){this._onDisabledChange.push(He)}_unregisterOnDisabledChange(He){ri(this._onDisabledChange,He)}_forEachChild(He){}_syncPendingControls(){return!("submit"!==this.updateOn||(this._pendingDirty&&this.markAsDirty(),this._pendingTouched&&this.markAsTouched(),!this._pendingChange)||(this.setValue(this._pendingValue,{onlySelf:!0,emitModelToViewChange:!1}),0))}_applyFormState(He){Rn(He)?(this.value=this._pendingValue=He.value,He.disabled?this.disable({onlySelf:!0,emitEvent:!1}):this.enable({onlySelf:!0,emitEvent:!1})):this.value=this._pendingValue=He}},Pi=Hn,Wi={provide:Gt,useExisting:(0,v.Rfq)(()=>Fe)},Ca=Promise.resolve();let Fe=(()=>{class Ne extends Gt{_changeDetectorRef;callSetDisabledState;control=new Hn;static ngAcceptInputType_isDisabled;_registered=!1;viewModel;name="";isDisabled;model;options;update=new T.bkB;constructor(q,mt,ln,Oi,ua,Es){super(),this._changeDetectorRef=ua,this.callSetDisabledState=Es,this._parent=q,this._setValidators(mt),this._setAsyncValidators(ln),this.valueAccessor=ra(0,Oi)}ngOnChanges(q){if(this._checkForErrors(),!this._registered||"name"in q){if(this._registered&&(this._checkName(),this.formDirective)){const mt=q.name.previousValue;this.formDirective.removeControl({name:mt,path:this._getPath(mt)})}this._setUpControl()}"isDisabled"in q&&this._updateDisabled(q),ii(q,this.viewModel)&&(this._updateValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}get path(){return this._getPath(this.name)}get formDirective(){return this._parent?this._parent.formDirective:null}viewToModelUpdate(q){this.viewModel=q,this.update.emit(q)}_setUpControl(){this._setUpdateStrategy(),this._isStandalone()?this._setUpStandalone():this.formDirective.addControl(this),this._registered=!0}_setUpdateStrategy(){this.options&&null!=this.options.updateOn&&(this.control._updateOn=this.options.updateOn)}_isStandalone(){return!this._parent||!(!this.options||!this.options.standalone)}_setUpStandalone(){Ht(this.control,this,this.callSetDisabledState),this.control.updateValueAndValidity({emitEvent:!1})}_checkForErrors(){this._checkName()}_checkName(){this.options&&this.options.name&&(this.name=this.options.name),this._isStandalone()}_updateValue(q){Ca.then(()=>{this.control.setValue(q,{emitViewToModelChange:!1}),this._changeDetectorRef?.markForCheck()})}_updateDisabled(q){const mt=q.isDisabled.currentValue,ln=0!==mt&&(0,w.L39)(mt);Ca.then(()=>{ln&&!this.control.disabled?this.control.disable():!ln&&this.control.disabled&&this.control.enable(),this._changeDetectorRef?.markForCheck()})}_getPath(q){return this._parent?Lt(q,this._parent):[q]}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(gt,9),T.rXU(Ee,10),T.rXU(V,10),T.rXU(Pe,10),T.rXU(w.gRc,8),T.rXU(we,8))};static \u0275dir=T.FsC({type:Ne,selectors:[["","ngModel","",3,"formControlName","",3,"formControl",""]],inputs:{name:"name",isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"],options:[0,"ngModelOptions","options"]},outputs:{update:"ngModelChange"},exportAs:["ngModel"],standalone:!1,features:[T.Jv_([Wi]),T.Vt3,T.OA$]})}return Ne})(),Ve=(()=>{class Ne{static \u0275fac=function(mt){return new(mt||Ne)};static \u0275dir=T.FsC({type:Ne,selectors:[["form",3,"ngNoForm","",3,"ngNativeValidate",""]],hostAttrs:["novalidate",""],standalone:!1})}return Ne})();const Et={provide:Pe,useExisting:(0,v.Rfq)(()=>Jt),multi:!0};let Jt=(()=>{class Ne extends A{writeValue(q){this.setProperty("value",q??"")}registerOnChange(q){this.onChange=mt=>{q(""==mt?null:parseFloat(mt))}}static \u0275fac=(()=>{let q;return function(ln){return(q||(q=T.xGo(Ne)))(ln||Ne)}})();static \u0275dir=T.FsC({type:Ne,selectors:[["input","type","number","formControlName",""],["input","type","number","formControl",""],["input","type","number","ngModel",""]],hostBindings:function(mt,ln){1&mt&&T.bIt("input",function(ua){return ln.onChange(ua.target.value)})("blur",function(){return ln.onTouched()})},standalone:!1,features:[T.Jv_([Et]),T.Vt3]})}return Ne})();const U=new v.nKC(""),tt={provide:Gt,useExisting:(0,v.Rfq)(()=>Ze)};let Ze=(()=>{class Ne extends Gt{_ngModelWarningConfig;callSetDisabledState;viewModel;form;set isDisabled(q){}model;update=new T.bkB;static _ngModelWarningSentOnce=!1;_ngModelWarningSent=!1;constructor(q,mt,ln,Oi,ua){super(),this._ngModelWarningConfig=Oi,this.callSetDisabledState=ua,this._setValidators(q),this._setAsyncValidators(mt),this.valueAccessor=ra(0,ln)}ngOnChanges(q){if(this._isControlChanged(q)){const mt=q.form.previousValue;mt&&_n(mt,this,!1),Ht(this.form,this,this.callSetDisabledState),this.form.updateValueAndValidity({emitEvent:!1})}ii(q,this.viewModel)&&(this.form.setValue(this.model),this.viewModel=this.model)}ngOnDestroy(){this.form&&_n(this.form,this,!1)}get path(){return[]}get control(){return this.form}viewToModelUpdate(q){this.viewModel=q,this.update.emit(q)}_isControlChanged(q){return q.hasOwnProperty("form")}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(Ee,10),T.rXU(V,10),T.rXU(Pe,10),T.rXU(U,8),T.rXU(we,8))};static \u0275dir=T.FsC({type:Ne,selectors:[["","formControl",""]],inputs:{form:[0,"formControl","form"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},exportAs:["ngForm"],standalone:!1,features:[T.Jv_([tt]),T.Vt3,T.OA$]})}return Ne})();const Xt={provide:gt,useExisting:(0,v.Rfq)(()=>Nn)};let Nn=(()=>{class Ne extends gt{callSetDisabledState;get submitted(){return(0,e.O8)(this._submittedReactive)}set submitted(q){this._submittedReactive.set(q)}_submitted=(0,e.EW)(()=>this._submittedReactive());_submittedReactive=(0,v.vPA)(!1);_oldForm;_onCollectionChange=()=>this._updateDomValue();directives=[];form=null;ngSubmit=new T.bkB;constructor(q,mt,ln){super(),this.callSetDisabledState=ln,this._setValidators(q),this._setAsyncValidators(mt)}ngOnChanges(q){q.hasOwnProperty("form")&&(this._updateValidators(),this._updateDomValue(),this._updateRegistrations(),this._oldForm=this.form)}ngOnDestroy(){this.form&&(zi(this.form,this),this.form._onCollectionChange===this._onCollectionChange&&this.form._registerOnCollectionChange(()=>{}))}get formDirective(){return this}get control(){return this.form}get path(){return[]}addControl(q){const mt=this.form.get(q.path);return Ht(mt,q,this.callSetDisabledState),mt.updateValueAndValidity({emitEvent:!1}),this.directives.push(q),mt}getControl(q){return this.form.get(q.path)}removeControl(q){_n(q.control||null,q,!1),function fa(Ne,He){const q=Ne.indexOf(He);q>-1&&Ne.splice(q,1)}(this.directives,q)}addFormGroup(q){this._setUpFormContainer(q)}removeFormGroup(q){this._cleanUpFormContainer(q)}getFormGroup(q){return this.form.get(q.path)}addFormArray(q){this._setUpFormContainer(q)}removeFormArray(q){this._cleanUpFormContainer(q)}getFormArray(q){return this.form.get(q.path)}updateModel(q,mt){this.form.get(q.path).setValue(mt)}onSubmit(q){return this._submittedReactive.set(!0),ia(this.form,this.directives),this.ngSubmit.emit(q),this.form._events.next(new Ge(this.control)),"dialog"===q?.target?.method}onReset(){this.resetForm()}resetForm(q=void 0,mt={}){this.form.reset(q,mt),this._submittedReactive.set(!1)}_updateDomValue(){this.directives.forEach(q=>{const mt=q.control,ln=this.form.get(q.path);mt!==ln&&(_n(mt||null,q),(Ne=>Ne instanceof Hn)(ln)&&(Ht(ln,q,this.callSetDisabledState),q.control=ln))}),this.form._updateTreeValidity({emitEvent:!1})}_setUpFormContainer(q){const mt=this.form.get(q.path);zn(mt,q),mt.updateValueAndValidity({emitEvent:!1})}_cleanUpFormContainer(q){if(this.form){const mt=this.form.get(q.path);mt&&function Fn(Ne,He){return zi(Ne,He)}(mt,q)&&mt.updateValueAndValidity({emitEvent:!1})}}_updateRegistrations(){this.form._registerOnCollectionChange(this._onCollectionChange),this._oldForm&&this._oldForm._registerOnCollectionChange(()=>{})}_updateValidators(){Qi(this.form,this),this._oldForm&&zi(this._oldForm,this)}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(Ee,10),T.rXU(V,10),T.rXU(we,8))};static \u0275dir=T.FsC({type:Ne,selectors:[["","formGroup",""]],hostBindings:function(mt,ln){1&mt&&T.bIt("submit",function(ua){return ln.onSubmit(ua)})("reset",function(){return ln.onReset()})},inputs:{form:[0,"formGroup","form"]},outputs:{ngSubmit:"ngSubmit"},exportAs:["ngForm"],standalone:!1,features:[T.Jv_([Xt]),T.Vt3,T.OA$]})}return Ne})();const Ga={provide:Gt,useExisting:(0,v.Rfq)(()=>As)};let As=(()=>{class Ne extends Gt{_ngModelWarningConfig;_added=!1;viewModel;control;name=null;set isDisabled(q){}model;update=new T.bkB;static _ngModelWarningSentOnce=!1;_ngModelWarningSent=!1;constructor(q,mt,ln,Oi,ua){super(),this._ngModelWarningConfig=ua,this._parent=q,this._setValidators(mt),this._setAsyncValidators(ln),this.valueAccessor=ra(0,Oi)}ngOnChanges(q){this._added||this._setUpControl(),ii(q,this.viewModel)&&(this.viewModel=this.model,this.formDirective.updateModel(this,this.model))}ngOnDestroy(){this.formDirective&&this.formDirective.removeControl(this)}viewToModelUpdate(q){this.viewModel=q,this.update.emit(q)}get path(){return Lt(null==this.name?this.name:this.name.toString(),this._parent)}get formDirective(){return this._parent?this._parent.formDirective:null}_setUpControl(){this.control=this.formDirective.addControl(this),this._added=!0}static \u0275fac=function(mt){return new(mt||Ne)(T.rXU(gt,13),T.rXU(Ee,10),T.rXU(V,10),T.rXU(Pe,10),T.rXU(U,8))};static \u0275dir=T.FsC({type:Ne,selectors:[["","formControlName",""]],inputs:{name:[0,"formControlName","name"],isDisabled:[0,"disabled","isDisabled"],model:[0,"ngModel","model"]},outputs:{update:"ngModelChange"},standalone:!1,features:[T.Jv_([Ga]),T.Vt3,T.OA$]})}return Ne})();function kr(Ne){return"number"==typeof Ne?Ne:parseFloat(Ne)}let js=(()=>{class Ne{_validator=lt;_onChange;_enabled;ngOnChanges(q){if(this.inputName in q){const mt=this.normalizeInput(q[this.inputName].currentValue);this._enabled=this.enabled(mt),this._validator=this._enabled?this.createValidator(mt):lt,this._onChange&&this._onChange()}}validate(q){return this._validator(q)}registerOnValidatorChange(q){this._onChange=q}enabled(q){return null!=q}static \u0275fac=function(mt){return new(mt||Ne)};static \u0275dir=T.FsC({type:Ne,features:[T.OA$]})}return Ne})();const Vo={provide:Ee,useExisting:(0,v.Rfq)(()=>Zr),multi:!0};let Zr=(()=>{class Ne extends js{max;inputName="max";normalizeInput=q=>kr(q);createValidator=q=>J(q);static \u0275fac=(()=>{let q;return function(ln){return(q||(q=T.xGo(Ne)))(ln||Ne)}})();static \u0275dir=T.FsC({type:Ne,selectors:[["input","type","number","max","","formControlName",""],["input","type","number","max","","formControl",""],["input","type","number","max","","ngModel",""]],hostVars:1,hostBindings:function(mt,ln){2&mt&&T.BMQ("max",ln._enabled?ln.max:null)},inputs:{max:"max"},standalone:!1,features:[T.Jv_([Vo]),T.Vt3]})}return Ne})();const qo={provide:Ee,useExisting:(0,v.Rfq)(()=>Jr),multi:!0};let Jr=(()=>{class Ne extends js{min;inputName="min";normalizeInput=q=>kr(q);createValidator=q=>ne(q);static \u0275fac=(()=>{let q;return function(ln){return(q||(q=T.xGo(Ne)))(ln||Ne)}})();static \u0275dir=T.FsC({type:Ne,selectors:[["input","type","number","min","","formControlName",""],["input","type","number","min","","formControl",""],["input","type","number","min","","ngModel",""]],hostVars:1,hostBindings:function(mt,ln){2&mt&&T.BMQ("min",ln._enabled?ln.min:null)},inputs:{min:"min"},standalone:!1,features:[T.Jv_([qo]),T.Vt3]})}return Ne})();const Co={provide:Ee,useExisting:(0,v.Rfq)(()=>_r),multi:!0};let _r=(()=>{class Ne extends js{required;inputName="required";normalizeInput=w.L39;createValidator=q=>De;enabled(q){return q}static \u0275fac=(()=>{let q;return function(ln){return(q||(q=T.xGo(Ne)))(ln||Ne)}})();static \u0275dir=T.FsC({type:Ne,selectors:[["","required","","formControlName","",3,"type","checkbox"],["","required","","formControl","",3,"type","checkbox"],["","required","","ngModel","",3,"type","checkbox"]],hostVars:1,hostBindings:function(mt,ln){2&mt&&T.BMQ("required",ln._enabled?"":null)},inputs:{required:"required"},standalone:!1,features:[T.Jv_([Co]),T.Vt3]})}return Ne})(),er=(()=>{class Ne{static \u0275fac=function(mt){return new(mt||Ne)};static \u0275mod=T.$C({type:Ne});static \u0275inj=v.G2t({})}return Ne})();class Xs extends dn{constructor(He,q,mt){super(se(q),bt(mt,q)),this.controls=He,this._initObservables(),this._setUpdateStrategy(q),this._setUpControls(),this.updateValueAndValidity({onlySelf:!0,emitEvent:!!this.asyncValidator})}controls;at(He){return this.controls[this._adjustIndex(He)]}push(He,q={}){Array.isArray(He)?He.forEach(mt=>{this.controls.push(mt),this._registerControl(mt)}):(this.controls.push(He),this._registerControl(He)),this.updateValueAndValidity({emitEvent:q.emitEvent}),this._onCollectionChange()}insert(He,q,mt={}){this.controls.splice(He,0,q),this._registerControl(q),this.updateValueAndValidity({emitEvent:mt.emitEvent})}removeAt(He,q={}){let mt=this._adjustIndex(He);mt<0&&(mt=0),this.controls[mt]&&this.controls[mt]._registerOnCollectionChange(()=>{}),this.controls.splice(mt,1),this.updateValueAndValidity({emitEvent:q.emitEvent})}setControl(He,q,mt={}){let ln=this._adjustIndex(He);ln<0&&(ln=0),this.controls[ln]&&this.controls[ln]._registerOnCollectionChange(()=>{}),this.controls.splice(ln,1),q&&(this.controls.splice(ln,0,q),this._registerControl(q)),this.updateValueAndValidity({emitEvent:mt.emitEvent}),this._onCollectionChange()}get length(){return this.controls.length}setValue(He,q={}){Nt(this,0,He),He.forEach((mt,ln)=>{un(this,!1,ln),this.at(ln).setValue(mt,{onlySelf:!0,emitEvent:q.emitEvent})}),this.updateValueAndValidity(q)}patchValue(He,q={}){null!=He&&(He.forEach((mt,ln)=>{this.at(ln)&&this.at(ln).patchValue(mt,{onlySelf:!0,emitEvent:q.emitEvent})}),this.updateValueAndValidity(q))}reset(He=[],q={}){this._forEachChild((mt,ln)=>{mt.reset(He[ln],{onlySelf:!0,emitEvent:q.emitEvent})}),this._updatePristine(q,this),this._updateTouched(q,this),this.updateValueAndValidity(q),!1!==q?.emitEvent&&this._events.next(new Ot(this))}getRawValue(){return this.controls.map(He=>He.getRawValue())}clear(He={}){this.controls.length<1||(this._forEachChild(q=>q._registerOnCollectionChange(()=>{})),this.controls.splice(0),this.updateValueAndValidity({emitEvent:He.emitEvent}))}_adjustIndex(He){return He<0?He+this.length:He}_syncPendingControls(){let He=this.controls.reduce((q,mt)=>!!mt._syncPendingControls()||q,!1);return He&&this.updateValueAndValidity({onlySelf:!0}),He}_forEachChild(He){this.controls.forEach((q,mt)=>{He(q,mt)})}_updateValue(){this.value=this.controls.filter(He=>He.enabled||this.disabled).map(He=>He.value)}_anyControls(He){return this.controls.some(q=>q.enabled&&He(q))}_setUpControls(){this._forEachChild(He=>this._registerControl(He))}_allControlsDisabled(){for(const He of this.controls)if(He.enabled)return!1;return this.controls.length>0||this.disabled}_registerControl(He){He.setParent(this),He._registerOnCollectionChange(this._onCollectionChange)}_find(He){return this.at(He)??null}}function Za(Ne){return!!Ne&&(void 0!==Ne.asyncValidators||void 0!==Ne.validators||void 0!==Ne.updateOn)}let Or=(()=>{class Ne{useNonNullable=!1;get nonNullable(){const q=new Ne;return q.useNonNullable=!0,q}group(q,mt=null){const ln=this._reduceControls(q);let Oi={};return Za(mt)?Oi=mt:null!==mt&&(Oi.validators=mt.validator,Oi.asyncValidators=mt.asyncValidator),new xn(ln,Oi)}record(q,mt=null){const ln=this._reduceControls(q);return new Tt(ln,mt)}control(q,mt,ln){let Oi={};return this.useNonNullable?(Za(mt)?Oi=mt:(Oi.validators=mt,Oi.asyncValidators=ln),new Hn(q,{...Oi,nonNullable:!0})):new Hn(q,mt,ln)}array(q,mt,ln){const Oi=q.map(ua=>this._createControl(ua));return new Xs(Oi,mt,ln)}_reduceControls(q){const mt={};return Object.keys(q).forEach(ln=>{mt[ln]=this._createControl(q[ln])}),mt}_createControl(q){return q instanceof Hn||q instanceof dn?q:Array.isArray(q)?this.control(q[0],q.length>1?q[1]:null,q.length>2?q[2]:null):this.control(q)}static \u0275fac=function(mt){return new(mt||Ne)};static \u0275prov=v.jDH({token:Ne,factory:Ne.\u0275fac,providedIn:"root"})}return Ne})(),Fs=(()=>{class Ne extends Or{group(q,mt=null){return super.group(q,mt)}control(q,mt,ln){return super.control(q,mt,ln)}array(q,mt,ln){return super.array(q,mt,ln)}static \u0275fac=(()=>{let q;return function(ln){return(q||(q=T.xGo(Ne)))(ln||Ne)}})();static \u0275prov=v.jDH({token:Ne,factory:Ne.\u0275fac,providedIn:"root"})}return Ne})(),Ks=(()=>{class Ne{static withConfig(q){return{ngModule:Ne,providers:[{provide:we,useValue:q.callSetDisabledState??ae}]}}static \u0275fac=function(mt){return new(mt||Ne)};static \u0275mod=T.$C({type:Ne});static \u0275inj=v.G2t({imports:[er]})}return Ne})(),Sr=(()=>{class Ne{static withConfig(q){return{ngModule:Ne,providers:[{provide:U,useValue:q.warnOnNgModelWithFormControl??"always"},{provide:we,useValue:q.callSetDisabledState??ae}]}}static \u0275fac=function(mt){return new(mt||Ne)};static \u0275mod=T.$C({type:Ne});static \u0275inj=v.G2t({imports:[er]})}return Ne})()},1804(Zt,pe,l){"use strict";l.d(pe,{Rc:()=>u,_J:()=>f});var i=l(4330),d=l(2615),v=l(3664);const T=new d.nKC("MATERIAL_ANIMATIONS");let O=null;function f(){return(0,d.WQX)(T,{optional:!0})?.animationsDisabled||"NoopAnimations"===(0,d.WQX)(v.bc$,{optional:!0})?"di-disabled":(O??=(0,d.WQX)(i.D).matchMedia("(prefers-reduced-motion)").matches,O?"reduced-motion":"enabled")}function u(){return"enabled"!==f()}},2628(Zt,pe,l){"use strict";l.d(pe,{$3:()=>gt,jL:()=>jt,pN:()=>h});var i=l(3029),d=l(3664),v=l(2615),T=l(7705),w=l(5718),e=l(9338),O=l(9726),f=l(9090),u=l(8617),L=l(9842),C=l(4522),B=l(8359),A=l(1413),Pe=l(7786),le=l(7673),Ce=l(9030),Ae=l(1985),j=l(1804),W=l(1577),G=l(7336),re=l(438),xe=l(4330),Ee=l(9327),V=l(6939),ce=l(408),be=l(9417),ne=l(5964),J=l(6354),De=l(9172),Re=l(5558),Xe=l(8141),_e=l(3236),he=l(8793),Dt=l(6697),lt=l(3557),Le=l(3703),te=l(1397),ie=l(8750);function P(Ue,wt){return wt?pt=>(0,he.x)(wt.pipe((0,Dt.s)(1),(0,lt.w)()),pt.pipe(P(Ue))):(0,te.Z)((pt,Pt)=>(0,ie.Tg)(Ue(pt,Pt)).pipe((0,Dt.s)(1),(0,Le.u)(pt)))}var F=l(1807);function ve(Ue,wt=_e.E){const pt=(0,F.O)(Ue,wt);return P(()=>pt)}var H=l(9588),$=l(146),Ke=l(2466);const nt=["panel"],ht=["*"];function oe(Ue,wt){if(1&Ue&&(d.rj2(0,"div",1,0),d.SdG(2),d.eux()),2&Ue){const pt=wt.id,Pt=d.XpG();d.HbH(Pt._classList),d.AVh("mat-mdc-autocomplete-visible",Pt.showPanel)("mat-mdc-autocomplete-hidden",!Pt.showPanel)("mat-autocomplete-panel-animations-enabled",!Pt._animationsDisabled)("mat-primary","primary"===Pt._color)("mat-accent","accent"===Pt._color)("mat-warn","warn"===Pt._color),d.Avn("id",Pt.id),d.BMQ("aria-label",Pt.ariaLabel||null)("aria-labelledby",Pt._getPanelAriaLabelledby(pt))}}class Ye{source;option;constructor(wt,pt){this.source=wt,this.option=pt}}const fe=new v.nKC("mat-autocomplete-default-options",{providedIn:"root",factory:function Qe(){return{autoActiveFirstOption:!1,autoSelectActiveOption:!1,hideSingleSelectionIndicator:!1,requireSelection:!1,hasBackdrop:!1}}});let gt=(()=>{class Ue{_changeDetectorRef=(0,v.WQX)(T.gRc);_elementRef=(0,v.WQX)(d.aKT);_defaults=(0,v.WQX)(fe);_animationsDisabled=(0,j.Rc)();_activeOptionChanges=B.yU.EMPTY;_keyManager;showPanel=!1;get isOpen(){return this._isOpen&&this.showPanel}_isOpen=!1;_latestOpeningTrigger;_setColor(pt){this._color=pt,this._changeDetectorRef.markForCheck()}_color;template;panel;options;optionGroups;ariaLabel;ariaLabelledby;displayWith=null;autoActiveFirstOption;autoSelectActiveOption;requireSelection;panelWidth;disableRipple;optionSelected=new d.bkB;opened=new d.bkB;closed=new d.bkB;optionActivated=new d.bkB;set classList(pt){this._classList=pt,this._elementRef.nativeElement.className=""}_classList;get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(pt){this._hideSingleSelectionIndicator=pt,this._syncParentProperties()}_hideSingleSelectionIndicator;_syncParentProperties(){if(this.options)for(const pt of this.options)pt._changeDetectorRef.markForCheck()}id=(0,v.WQX)(O.g).getId("mat-autocomplete-");inertGroups;constructor(){const pt=(0,v.WQX)(L.O);this.inertGroups=pt?.SAFARI||!1,this.autoActiveFirstOption=!!this._defaults.autoActiveFirstOption,this.autoSelectActiveOption=!!this._defaults.autoSelectActiveOption,this.requireSelection=!!this._defaults.requireSelection,this._hideSingleSelectionIndicator=this._defaults.hideSingleSelectionIndicator??!1}ngAfterContentInit(){this._keyManager=new f.A(this.options).withWrap().skipPredicate(this._skipPredicate),this._activeOptionChanges=this._keyManager.change.subscribe(pt=>{this.isOpen&&this.optionActivated.emit({source:this,option:this.options.toArray()[pt]||null})}),this._setVisibility()}ngOnDestroy(){this._keyManager?.destroy(),this._activeOptionChanges.unsubscribe()}_setScrollTop(pt){this.panel&&(this.panel.nativeElement.scrollTop=pt)}_getScrollTop(){return this.panel?this.panel.nativeElement.scrollTop:0}_setVisibility(){this.showPanel=!!this.options?.length,this._changeDetectorRef.markForCheck()}_emitSelectEvent(pt){const Pt=new Ye(this,pt);this.optionSelected.emit(Pt)}_getPanelAriaLabelledby(pt){return this.ariaLabel?null:this.ariaLabelledby?(pt?pt+" ":"")+this.ariaLabelledby:pt}_skipPredicate(){return!1}static \u0275fac=function(Pt){return new(Pt||Ue)};static \u0275cmp=d.VBU({type:Ue,selectors:[["mat-autocomplete"]],contentQueries:function(Pt,gn,ei){if(1&Pt&&(d.wni(ei,i.wT,5),d.wni(ei,i.QC,5)),2&Pt){let vi;d.mGM(vi=d.lsd())&&(gn.options=vi),d.mGM(vi=d.lsd())&&(gn.optionGroups=vi)}},viewQuery:function(Pt,gn){if(1&Pt&&(d.GBs(d.C4Q,7),d.GBs(nt,5)),2&Pt){let ei;d.mGM(ei=d.lsd())&&(gn.template=ei.first),d.mGM(ei=d.lsd())&&(gn.panel=ei.first)}},hostAttrs:[1,"mat-mdc-autocomplete"],inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],displayWith:"displayWith",autoActiveFirstOption:[2,"autoActiveFirstOption","autoActiveFirstOption",T.L39],autoSelectActiveOption:[2,"autoSelectActiveOption","autoSelectActiveOption",T.L39],requireSelection:[2,"requireSelection","requireSelection",T.L39],panelWidth:"panelWidth",disableRipple:[2,"disableRipple","disableRipple",T.L39],classList:[0,"class","classList"],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",T.L39]},outputs:{optionSelected:"optionSelected",opened:"opened",closed:"closed",optionActivated:"optionActivated"},exportAs:["matAutocomplete"],features:[d.Jv_([{provide:i.is,useExisting:Ue}])],ngContentSelectors:ht,decls:1,vars:0,consts:[["panel",""],["role","listbox",1,"mat-mdc-autocomplete-panel","mdc-menu-surface","mdc-menu-surface--open",3,"id"]],template:function(Pt,gn){1&Pt&&(d.NAR(),d.PeT(0,oe,3,17,"ng-template"))},styles:["div.mat-mdc-autocomplete-panel{width:100%;max-height:256px;visibility:hidden;transform-origin:center top;overflow:auto;padding:8px 0;box-sizing:border-box;position:relative;border-radius:var(--mat-autocomplete-container-shape, var(--mat-sys-corner-extra-small));box-shadow:var(--mat-autocomplete-container-elevation-shadow, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12));background-color:var(--mat-autocomplete-background-color, var(--mat-sys-surface-container))}@media(forced-colors: active){div.mat-mdc-autocomplete-panel{outline:solid 1px}}.cdk-overlay-pane:not(.mat-mdc-autocomplete-panel-above) div.mat-mdc-autocomplete-panel{border-top-left-radius:0;border-top-right-radius:0}.mat-mdc-autocomplete-panel-above div.mat-mdc-autocomplete-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:center bottom}div.mat-mdc-autocomplete-panel.mat-mdc-autocomplete-visible{visibility:visible}div.mat-mdc-autocomplete-panel.mat-mdc-autocomplete-hidden{visibility:hidden;pointer-events:none}@keyframes _mat-autocomplete-enter{from{opacity:0;transform:scaleY(0.8)}to{opacity:1;transform:none}}.mat-autocomplete-panel-animations-enabled{animation:_mat-autocomplete-enter 120ms cubic-bezier(0, 0, 0.2, 1)}mat-autocomplete{display:none}\n"],encapsulation:2,changeDetection:0})}return Ue})();const rt={provide:be.kq,useExisting:(0,v.Rfq)(()=>h),multi:!0},Ft=new v.nKC("mat-autocomplete-scroll-strategy",{providedIn:"root",factory:()=>{const Ue=(0,v.WQX)(v.zZn);return()=>(0,e.RH)(Ue)}}),Qn={provide:Ft,deps:[],useFactory:function Sn(Ue){const wt=(0,v.WQX)(v.zZn);return()=>(0,e.RH)(wt)}};let h=(()=>{class Ue{_environmentInjector=(0,v.WQX)(v.uvJ);_element=(0,v.WQX)(d.aKT);_injector=(0,v.WQX)(v.zZn);_viewContainerRef=(0,v.WQX)(d.c1b);_zone=(0,v.WQX)(d.SKi);_changeDetectorRef=(0,v.WQX)(T.gRc);_dir=(0,v.WQX)(W.dS,{optional:!0});_formField=(0,v.WQX)(H.xb,{optional:!0,host:!0});_viewportRuler=(0,v.WQX)(w.Xj);_scrollStrategy=(0,v.WQX)(Ft);_renderer=(0,v.WQX)(d.sFG);_animationsDisabled=(0,j.Rc)();_defaults=(0,v.WQX)(fe,{optional:!0});_overlayRef;_portal;_componentDestroyed=!1;_initialized=new A.B;_keydownSubscription;_outsideClickSubscription;_cleanupWindowBlur;_previousValue;_valueOnAttach;_valueOnLastKeydown;_positionStrategy;_manuallyFloatingLabel=!1;_closingActionsSubscription;_viewportSubscription=B.yU.EMPTY;_breakpointObserver=(0,v.WQX)(xe.Q);_handsetLandscapeSubscription=B.yU.EMPTY;_canOpenOnNextFocus=!0;_valueBeforeAutoSelection;_pendingAutoselectedOption;_closeKeyEventStream=new A.B;_overlayPanelClass=(0,ce.F)(this._defaults?.overlayPanelClass||[]);_windowBlurHandler=()=>{this._canOpenOnNextFocus=this.panelOpen||!this._hasFocus()};_onChange=()=>{};_onTouched=()=>{};autocomplete;position="auto";connectedTo;autocompleteAttribute="off";autocompleteDisabled;constructor(){}_aboveClass="mat-mdc-autocomplete-panel-above";ngAfterViewInit(){this._initialized.next(),this._initialized.complete(),this._cleanupWindowBlur=this._renderer.listen("window","blur",this._windowBlurHandler)}ngOnChanges(pt){pt.position&&this._positionStrategy&&(this._setStrategyPositions(this._positionStrategy),this.panelOpen&&this._overlayRef.updatePosition())}ngOnDestroy(){this._cleanupWindowBlur?.(),this._handsetLandscapeSubscription.unsubscribe(),this._viewportSubscription.unsubscribe(),this._componentDestroyed=!0,this._destroyPanel(),this._closeKeyEventStream.complete(),this._clearFromModal()}get panelOpen(){return this._overlayAttached&&this.autocomplete.showPanel}_overlayAttached=!1;openPanel(){this._openPanelInternal()}closePanel(){this._resetLabel(),this._overlayAttached&&(this.panelOpen&&this._zone.run(()=>{this.autocomplete.closed.emit()}),this.autocomplete._latestOpeningTrigger===this&&(this.autocomplete._isOpen=!1,this.autocomplete._latestOpeningTrigger=null),this._overlayAttached=!1,this._pendingAutoselectedOption=null,this._overlayRef&&this._overlayRef.hasAttached()&&(this._overlayRef.detach(),this._closingActionsSubscription.unsubscribe()),this._updatePanelState(),this._componentDestroyed||this._changeDetectorRef.detectChanges(),this._trackedModal&&(0,u.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id))}updatePosition(){this._overlayAttached&&this._overlayRef.updatePosition()}get panelClosingActions(){return(0,Pe.h)(this.optionSelections,this.autocomplete._keyManager.tabOut.pipe((0,ne.p)(()=>this._overlayAttached)),this._closeKeyEventStream,this._getOutsideClickStream(),this._overlayRef?this._overlayRef.detachments().pipe((0,ne.p)(()=>this._overlayAttached)):(0,le.of)()).pipe((0,J.T)(pt=>pt instanceof i.MI?pt:null))}optionSelections=(0,Ce.v)(()=>{const pt=this.autocomplete?this.autocomplete.options:null;return pt?pt.changes.pipe((0,De.Z)(pt),(0,Re.n)(()=>(0,Pe.h)(...pt.map(Pt=>Pt.onSelectionChange)))):this._initialized.pipe((0,Re.n)(()=>this.optionSelections))});get activeOption(){return this.autocomplete&&this.autocomplete._keyManager?this.autocomplete._keyManager.activeItem:null}_getOutsideClickStream(){return new Ae.c(pt=>{const Pt=ei=>{const vi=(0,C.Fb)(ei),Ni=this._formField?this._formField.getConnectedOverlayOrigin().nativeElement:null,kn=this.connectedTo?this.connectedTo.elementRef.nativeElement:null;this._overlayAttached&&vi!==this._element.nativeElement&&!this._hasFocus()&&(!Ni||!Ni.contains(vi))&&(!kn||!kn.contains(vi))&&this._overlayRef&&!this._overlayRef.overlayElement.contains(vi)&&pt.next(ei)},gn=[this._renderer.listen("document","click",Pt),this._renderer.listen("document","auxclick",Pt),this._renderer.listen("document","touchend",Pt)];return()=>{gn.forEach(ei=>ei())}})}writeValue(pt){Promise.resolve(null).then(()=>this._assignOptionValue(pt))}registerOnChange(pt){this._onChange=pt}registerOnTouched(pt){this._onTouched=pt}setDisabledState(pt){this._element.nativeElement.disabled=pt}_handleKeydown(pt){const Pt=pt,gn=Pt.keyCode,ei=(0,G.rp)(Pt);if(gn===re._f&&!ei&&Pt.preventDefault(),this._valueOnLastKeydown=this._element.nativeElement.value,this.activeOption&&gn===re.Fm&&this.panelOpen&&!ei)this.activeOption._selectViaInteraction(),this._resetActiveItem(),Pt.preventDefault();else if(this.autocomplete){const vi=this.autocomplete._keyManager.activeItem,Ni=gn===re.i7||gn===re.n6;gn===re.wn||Ni&&!ei&&this.panelOpen?this.autocomplete._keyManager.onKeydown(Pt):Ni&&this._canOpen()&&this._openPanelInternal(this._valueOnLastKeydown),(Ni||this.autocomplete._keyManager.activeItem!==vi)&&(this._scrollToOption(this.autocomplete._keyManager.activeItemIndex||0),this.autocomplete.autoSelectActiveOption&&this.activeOption&&(this._pendingAutoselectedOption||(this._valueBeforeAutoSelection=this._valueOnLastKeydown),this._pendingAutoselectedOption=this.activeOption,this._assignOptionValue(this.activeOption.value)))}}_handleInput(pt){let Pt=pt.target,gn=Pt.value;if("number"===Pt.type&&(gn=""==gn?null:parseFloat(gn)),this._previousValue!==gn){if(this._previousValue=gn,this._pendingAutoselectedOption=null,(!this.autocomplete||!this.autocomplete.requireSelection)&&this._onChange(gn),gn){if(this.panelOpen&&!this.autocomplete.requireSelection){const ei=this.autocomplete.options?.find(vi=>vi.selected);ei&&gn!==this._getDisplayValue(ei.value)&&ei.deselect(!1)}}else this._clearPreviousSelectedOption(null,!1);if(this._canOpen()&&this._hasFocus()){const ei=this._valueOnLastKeydown??this._element.nativeElement.value;this._valueOnLastKeydown=null,this._openPanelInternal(ei)}}}_handleFocus(){this._canOpenOnNextFocus?this._canOpen()&&(this._previousValue=this._element.nativeElement.value,this._attachOverlay(this._previousValue),this._floatLabel(!0)):this._canOpenOnNextFocus=!0}_handleClick(){this._canOpen()&&!this.panelOpen&&this._openPanelInternal()}_hasFocus(){return(0,C.vc)()===this._element.nativeElement}_floatLabel(pt=!1){this._formField&&"auto"===this._formField.floatLabel&&(pt?this._formField._animateAndLockLabel():this._formField.floatLabel="always",this._manuallyFloatingLabel=!0)}_resetLabel(){this._manuallyFloatingLabel&&(this._formField&&(this._formField.floatLabel="auto"),this._manuallyFloatingLabel=!1)}_subscribeToClosingActions(){const pt=new Ae.c(gn=>{(0,d.mal)(()=>{gn.next()},{injector:this._environmentInjector})}),Pt=this.autocomplete.options?.changes.pipe((0,Xe.M)(()=>this._positionStrategy.reapplyLastPosition()),ve(0))??(0,le.of)();return(0,Pe.h)(pt,Pt).pipe((0,Re.n)(()=>this._zone.run(()=>{const gn=this.panelOpen;return this._resetActiveItem(),this._updatePanelState(),this._changeDetectorRef.detectChanges(),this.panelOpen&&this._overlayRef.updatePosition(),gn!==this.panelOpen&&(this.panelOpen?this._emitOpened():this.autocomplete.closed.emit()),this.panelClosingActions})),(0,Dt.s)(1)).subscribe(gn=>this._setValueAndClose(gn))}_emitOpened(){this.autocomplete.opened.emit()}_destroyPanel(){this._overlayRef&&(this.closePanel(),this._overlayRef.dispose(),this._overlayRef=null)}_getDisplayValue(pt){const Pt=this.autocomplete;return Pt&&Pt.displayWith?Pt.displayWith(pt):pt}_assignOptionValue(pt){const Pt=this._getDisplayValue(pt);null==pt&&this._clearPreviousSelectedOption(null,!1),this._updateNativeInputValue(Pt??"")}_updateNativeInputValue(pt){this._formField?this._formField._control.value=pt:this._element.nativeElement.value=pt,this._previousValue=pt}_setValueAndClose(pt){const Pt=this.autocomplete,gn=pt?pt.source:this._pendingAutoselectedOption;gn?(this._clearPreviousSelectedOption(gn),this._assignOptionValue(gn.value),this._onChange(gn.value),Pt._emitSelectEvent(gn),this._element.nativeElement.focus()):Pt.requireSelection&&this._element.nativeElement.value!==this._valueOnAttach&&(this._clearPreviousSelectedOption(null),this._assignOptionValue(null),this._onChange(null)),this.closePanel()}_clearPreviousSelectedOption(pt,Pt){this.autocomplete?.options?.forEach(gn=>{gn!==pt&&gn.selected&&gn.deselect(Pt)})}_openPanelInternal(pt=this._element.nativeElement.value){this._attachOverlay(pt),this._floatLabel(),this._trackedModal&&(0,u.px)(this._trackedModal,"aria-owns",this.autocomplete.id)}_attachOverlay(pt){let Pt=this._overlayRef;Pt?(this._positionStrategy.setOrigin(this._getConnectedElement()),Pt.updateSize({width:this._getPanelWidth()})):(this._portal=new V.VA(this.autocomplete.template,this._viewContainerRef,{id:this._formField?.getLabelId()}),Pt=(0,e.Y$)(this._injector,this._getOverlayConfig()),this._overlayRef=Pt,this._viewportSubscription=this._viewportRuler.change().subscribe(()=>{this.panelOpen&&Pt&&Pt.updateSize({width:this._getPanelWidth()})}),this._handsetLandscapeSubscription=this._breakpointObserver.observe(Ee.Rp.HandsetLandscape).subscribe(ei=>{ei.matches?this._positionStrategy.withFlexibleDimensions(!0).withGrowAfterOpen(!0).withViewportMargin(8):this._positionStrategy.withFlexibleDimensions(!1).withGrowAfterOpen(!1).withViewportMargin(0)})),Pt&&!Pt.hasAttached()&&(Pt.attach(this._portal),this._valueOnAttach=pt,this._valueOnLastKeydown=null,this._closingActionsSubscription=this._subscribeToClosingActions());const gn=this.panelOpen;this.autocomplete._isOpen=this._overlayAttached=!0,this.autocomplete._latestOpeningTrigger=this,this.autocomplete._setColor(this._formField?.color),this._updatePanelState(),this._applyModalPanelOwnership(),this.panelOpen&&gn!==this.panelOpen&&this._emitOpened()}_handlePanelKeydown=pt=>{(pt.keyCode===re._f&&!(0,G.rp)(pt)||pt.keyCode===re.i7&&(0,G.rp)(pt,"altKey"))&&(this._pendingAutoselectedOption&&(this._updateNativeInputValue(this._valueBeforeAutoSelection??""),this._pendingAutoselectedOption=null),this._closeKeyEventStream.next(),this._resetActiveItem(),pt.stopPropagation(),pt.preventDefault())};_updatePanelState(){if(this.autocomplete._setVisibility(),this.panelOpen){const pt=this._overlayRef;this._keydownSubscription||(this._keydownSubscription=pt.keydownEvents().subscribe(this._handlePanelKeydown)),this._outsideClickSubscription||(this._outsideClickSubscription=pt.outsidePointerEvents().subscribe())}else this._keydownSubscription?.unsubscribe(),this._outsideClickSubscription?.unsubscribe(),this._keydownSubscription=this._outsideClickSubscription=null}_getOverlayConfig(){return new e.rR({positionStrategy:this._getOverlayPosition(),scrollStrategy:this._scrollStrategy(),width:this._getPanelWidth(),direction:this._dir??void 0,hasBackdrop:this._defaults?.hasBackdrop,backdropClass:this._defaults?.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:this._overlayPanelClass,disableAnimations:this._animationsDisabled})}_getOverlayPosition(){const pt=(0,e.$M)(this._injector,this._getConnectedElement()).withFlexibleDimensions(!1).withPush(!1);return this._setStrategyPositions(pt),this._positionStrategy=pt,pt}_setStrategyPositions(pt){const Pt=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"}],gn=this._aboveClass,ei=[{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:gn},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:gn}];let vi;vi="above"===this.position?ei:"below"===this.position?Pt:[...Pt,...ei],pt.withPositions(vi)}_getConnectedElement(){return this.connectedTo?this.connectedTo.elementRef:this._formField?this._formField.getConnectedOverlayOrigin():this._element}_getPanelWidth(){return this.autocomplete.panelWidth||this._getHostWidth()}_getHostWidth(){return this._getConnectedElement().nativeElement.getBoundingClientRect().width}_resetActiveItem(){const pt=this.autocomplete;if(pt.autoActiveFirstOption){let Pt=-1;for(let gn=0;gn .cdk-overlay-container [aria-modal="true"]');if(!pt)return;const Pt=this.autocomplete.id;this._trackedModal&&(0,u.Ae)(this._trackedModal,"aria-owns",Pt),(0,u.px)(pt,"aria-owns",Pt),this._trackedModal=pt}_clearFromModal(){this._trackedModal&&((0,u.Ae)(this._trackedModal,"aria-owns",this.autocomplete.id),this._trackedModal=null)}static \u0275fac=function(Pt){return new(Pt||Ue)};static \u0275dir=d.FsC({type:Ue,selectors:[["input","matAutocomplete",""],["textarea","matAutocomplete",""]],hostAttrs:[1,"mat-mdc-autocomplete-trigger"],hostVars:7,hostBindings:function(Pt,gn){1&Pt&&d.bIt("focusin",function(){return gn._handleFocus()})("blur",function(){return gn._onTouched()})("input",function(vi){return gn._handleInput(vi)})("keydown",function(vi){return gn._handleKeydown(vi)})("click",function(){return gn._handleClick()}),2&Pt&&d.BMQ("autocomplete",gn.autocompleteAttribute)("role",gn.autocompleteDisabled?null:"combobox")("aria-autocomplete",gn.autocompleteDisabled?null:"list")("aria-activedescendant",gn.panelOpen&&gn.activeOption?gn.activeOption.id:null)("aria-expanded",gn.autocompleteDisabled?null:gn.panelOpen.toString())("aria-controls",gn.autocompleteDisabled||!gn.panelOpen||null==gn.autocomplete?null:gn.autocomplete.id)("aria-haspopup",gn.autocompleteDisabled?null:"listbox")},inputs:{autocomplete:[0,"matAutocomplete","autocomplete"],position:[0,"matAutocompletePosition","position"],connectedTo:[0,"matAutocompleteConnectedTo","connectedTo"],autocompleteAttribute:[0,"autocomplete","autocompleteAttribute"],autocompleteDisabled:[2,"matAutocompleteDisabled","autocompleteDisabled",T.L39]},exportAs:["matAutocompleteTrigger"],features:[d.Jv_([rt]),d.OA$]})}return Ue})(),jt=(()=>{class Ue{static \u0275fac=function(Pt){return new(Pt||Ue)};static \u0275mod=d.$C({type:Ue});static \u0275inj=v.G2t({providers:[Qn],imports:[e.z_,$.S,Ke.y,w.Gj,$.S,Ke.y]})}return Ue})()},1975(Zt,pe,l){"use strict";l.d(pe,{Y:()=>Pe,k:()=>A});var i=l(8617),d=l(7094),v=l(9726),T=l(2615),w=l(3664),e=l(7705),O=l(9046),f=l(8968),u=l(1804),L=l(2466);const C="mat-badge-content";let B=(()=>{class le{static \u0275fac=function(j){return new(j||le)};static \u0275cmp=w.VBU({type:le,selectors:[["ng-component"]],decls:0,vars:0,template:function(j,W){},styles:[".mat-badge{position:relative}.mat-badge.mat-badge{overflow:visible}.mat-badge-content{position:absolute;text-align:center;display:inline-block;transition:transform 200ms ease-in-out;transform:scale(0.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box;pointer-events:none;background-color:var(--mat-badge-background-color, var(--mat-sys-error));color:var(--mat-badge-text-color, var(--mat-sys-on-error));font-family:var(--mat-badge-text-font, var(--mat-sys-label-small-font));font-weight:var(--mat-badge-text-weight, var(--mat-sys-label-small-weight));border-radius:var(--mat-badge-container-shape, var(--mat-sys-corner-full))}.mat-badge-above .mat-badge-content{bottom:100%}.mat-badge-below .mat-badge-content{top:100%}.mat-badge-before .mat-badge-content{right:100%}[dir=rtl] .mat-badge-before .mat-badge-content{right:auto;left:100%}.mat-badge-after .mat-badge-content{left:100%}[dir=rtl] .mat-badge-after .mat-badge-content{left:auto;right:100%}@media(forced-colors: active){.mat-badge-content{outline:solid 1px;border-radius:0}}.mat-badge-disabled .mat-badge-content{background-color:var(--mat-badge-disabled-state-background-color, color-mix(in srgb, var(--mat-sys-error) 38%, transparent));color:var(--mat-badge-disabled-state-text-color, var(--mat-sys-on-error))}.mat-badge-hidden .mat-badge-content{display:none}.ng-animate-disabled .mat-badge-content,.mat-badge-content._mat-animation-noopable{transition:none}.mat-badge-content.mat-badge-active{transform:none}.mat-badge-small .mat-badge-content{width:var(--mat-badge-legacy-small-size-container-size, unset);height:var(--mat-badge-legacy-small-size-container-size, unset);min-width:var(--mat-badge-small-size-container-size, 6px);min-height:var(--mat-badge-small-size-container-size, 6px);line-height:var(--mat-badge-small-size-line-height, 6px);padding:var(--mat-badge-small-size-container-padding, 0);font-size:var(--mat-badge-small-size-text-size, 0);margin:var(--mat-badge-small-size-container-offset, -6px 0)}.mat-badge-small.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-small-size-container-overlap-offset, -6px)}.mat-badge-medium .mat-badge-content{width:var(--mat-badge-legacy-container-size, unset);height:var(--mat-badge-legacy-container-size, unset);min-width:var(--mat-badge-container-size, 16px);min-height:var(--mat-badge-container-size, 16px);line-height:var(--mat-badge-line-height, 16px);padding:var(--mat-badge-container-padding, 0 4px);font-size:var(--mat-badge-text-size, var(--mat-sys-label-small-size));margin:var(--mat-badge-container-offset, -12px 0)}.mat-badge-medium.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-container-overlap-offset, -12px)}.mat-badge-large .mat-badge-content{width:var(--mat-badge-legacy-large-size-container-size, unset);height:var(--mat-badge-legacy-large-size-container-size, unset);min-width:var(--mat-badge-large-size-container-size, 16px);min-height:var(--mat-badge-large-size-container-size, 16px);line-height:var(--mat-badge-large-size-line-height, 16px);padding:var(--mat-badge-large-size-container-padding, 0 4px);font-size:var(--mat-badge-large-size-text-size, var(--mat-sys-label-small-size));margin:var(--mat-badge-large-size-container-offset, -12px 0)}.mat-badge-large.mat-badge-overlap .mat-badge-content{margin:var(--mat-badge-large-size-container-overlap-offset, -12px)}\n"],encapsulation:2,changeDetection:0})}return le})(),A=(()=>{class le{_ngZone=(0,T.WQX)(w.SKi);_elementRef=(0,T.WQX)(w.aKT);_ariaDescriber=(0,T.WQX)(i.vr);_renderer=(0,T.WQX)(w.sFG);_animationsDisabled=(0,u.Rc)();_idGenerator=(0,T.WQX)(v.g);get color(){return this._color}set color(Ae){this._setColor(Ae),this._color=Ae}_color="primary";overlap=!0;disabled;position="above after";get content(){return this._content}set content(Ae){this._updateRenderedContent(Ae)}_content;get description(){return this._description}set description(Ae){this._updateDescription(Ae)}_description;size="medium";hidden;_badgeElement;_inlineBadgeDescription;_isInitialized=!1;_interactivityChecker=(0,T.WQX)(d.Z7);_document=(0,T.WQX)(T.qQL);constructor(){const Ae=(0,T.WQX)(f.l);Ae.load(B),Ae.load(O.Y)}isAbove(){return-1===this.position.indexOf("below")}isAfter(){return-1===this.position.indexOf("before")}getBadgeElement(){return this._badgeElement}ngOnInit(){this._clearExistingBadges(),this.content&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement(),this._updateRenderedContent(this.content)),this._isInitialized=!0}ngOnDestroy(){this._renderer.destroyNode&&(this._renderer.destroyNode(this._badgeElement),this._inlineBadgeDescription?.remove()),this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description)}_isHostInteractive(){return this._interactivityChecker.isFocusable(this._elementRef.nativeElement,{ignoreVisibility:!0})}_createBadgeElement(){const Ae=this._renderer.createElement("span"),j="mat-badge-active";return Ae.setAttribute("id",this._idGenerator.getId("mat-badge-content-")),Ae.setAttribute("aria-hidden","true"),Ae.classList.add(C),this._animationsDisabled&&Ae.classList.add("_mat-animation-noopable"),this._elementRef.nativeElement.appendChild(Ae),"function"!=typeof requestAnimationFrame||this._animationsDisabled?Ae.classList.add(j):this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>{Ae.classList.add(j)})}),Ae}_updateRenderedContent(Ae){const j=`${Ae??""}`.trim();this._isInitialized&&j&&!this._badgeElement&&(this._badgeElement=this._createBadgeElement()),this._badgeElement&&(this._badgeElement.textContent=j),this._content=j}_updateDescription(Ae){this._ariaDescriber.removeDescription(this._elementRef.nativeElement,this.description),(!Ae||this._isHostInteractive())&&this._removeInlineDescription(),this._description=Ae,this._isHostInteractive()?this._ariaDescriber.describe(this._elementRef.nativeElement,Ae):this._updateInlineDescription()}_updateInlineDescription(){this._inlineBadgeDescription||(this._inlineBadgeDescription=this._document.createElement("span"),this._inlineBadgeDescription.classList.add("cdk-visually-hidden")),this._inlineBadgeDescription.textContent=this.description,this._badgeElement?.appendChild(this._inlineBadgeDescription)}_removeInlineDescription(){this._inlineBadgeDescription?.remove(),this._inlineBadgeDescription=void 0}_setColor(Ae){const j=this._elementRef.nativeElement.classList;j.remove(`mat-badge-${this._color}`),Ae&&j.add(`mat-badge-${Ae}`)}_clearExistingBadges(){const Ae=this._elementRef.nativeElement.querySelectorAll(`:scope > .${C}`);for(const j of Array.from(Ae))j!==this._badgeElement&&j.remove()}static \u0275fac=function(j){return new(j||le)};static \u0275dir=w.FsC({type:le,selectors:[["","matBadge",""]],hostAttrs:[1,"mat-badge"],hostVars:20,hostBindings:function(j,W){2&j&&w.AVh("mat-badge-overlap",W.overlap)("mat-badge-above",W.isAbove())("mat-badge-below",!W.isAbove())("mat-badge-before",!W.isAfter())("mat-badge-after",W.isAfter())("mat-badge-small","small"===W.size)("mat-badge-medium","medium"===W.size)("mat-badge-large","large"===W.size)("mat-badge-hidden",W.hidden||!W.content)("mat-badge-disabled",W.disabled)},inputs:{color:[0,"matBadgeColor","color"],overlap:[2,"matBadgeOverlap","overlap",e.L39],disabled:[2,"matBadgeDisabled","disabled",e.L39],position:[0,"matBadgePosition","position"],content:[0,"matBadge","content"],description:[0,"matBadgeDescription","description"],size:[0,"matBadgeSize","size"],hidden:[2,"matBadgeHidden","hidden",e.L39]}})}return le})(),Pe=(()=>{class le{static \u0275fac=function(j){return new(j||le)};static \u0275mod=w.$C({type:le});static \u0275inj=T.G2t({imports:[d.Pd,L.y,L.y]})}return le})()},8834(Zt,pe,l){"use strict";l.d(pe,{$0:()=>V,$z:()=>Ae,Hl:()=>ne});var w=l(2598),e=l(2615),O=l(3664),f=l(6881),u=l(2466);const L=["matButton",""],C=[[["",8,"material-icons",3,"iconPositionEnd",""],["mat-icon",3,"iconPositionEnd",""],["","matButtonIcon","",3,"iconPositionEnd",""]],"*",[["","iconPositionEnd","",8,"material-icons"],["mat-icon","iconPositionEnd",""],["","matButtonIcon","","iconPositionEnd",""]]],B=[".material-icons:not([iconPositionEnd]), mat-icon:not([iconPositionEnd]), [matButtonIcon]:not([iconPositionEnd])","*",".material-icons[iconPositionEnd], mat-icon[iconPositionEnd], [matButtonIcon][iconPositionEnd]"],Pe=["mat-mini-fab",""],Ce=new Map([["text",["mat-mdc-button"]],["filled",["mdc-button--unelevated","mat-mdc-unelevated-button"]],["elevated",["mdc-button--raised","mat-mdc-raised-button"]],["outlined",["mdc-button--outlined","mat-mdc-outlined-button"]],["tonal",["mat-tonal-button"]]]);let Ae=(()=>{class J extends w.iM{get appearance(){return this._appearance}set appearance(Re){this.setAppearance(Re||this._config?.defaultAppearance||"text")}_appearance=null;constructor(){super();const Re=function j(J){return J.hasAttribute("mat-raised-button")?"elevated":J.hasAttribute("mat-stroked-button")?"outlined":J.hasAttribute("mat-flat-button")?"filled":J.hasAttribute("mat-button")?"text":null}(this._elementRef.nativeElement);Re&&this.setAppearance(Re)}setAppearance(Re){if(Re===this._appearance)return;const Xe=this._elementRef.nativeElement.classList,_e=this._appearance?Ce.get(this._appearance):null,he=Ce.get(Re);_e&&Xe.remove(..._e),Xe.add(...he),this._appearance=Re}static \u0275fac=function(Xe){return new(Xe||J)};static \u0275cmp=O.VBU({type:J,selectors:[["button","matButton",""],["a","matButton",""],["button","mat-button",""],["button","mat-raised-button",""],["button","mat-flat-button",""],["button","mat-stroked-button",""],["a","mat-button",""],["a","mat-raised-button",""],["a","mat-flat-button",""],["a","mat-stroked-button",""]],hostAttrs:[1,"mdc-button"],inputs:{appearance:[0,"matButton","appearance"]},exportAs:["matButton","matAnchor"],features:[O.Vt3],attrs:L,ngContentSelectors:B,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(Xe,_e){1&Xe&&(O.NAR(C),O.Hgh(0,"span",0),O.SdG(1),O.rj2(2,"span",1),O.SdG(3,1),O.eux(),O.SdG(4,2),O.Hgh(5,"span",2)(6,"span",3)),2&Xe&&O.AVh("mdc-button__ripple",!_e._isFab)("mdc-fab__ripple",_e._isFab)},styles:['.mat-mdc-button-base{text-decoration:none}.mat-mdc-button-base .mat-icon{min-height:fit-content;flex-shrink:0}.mdc-button{-webkit-user-select:none;user-select:none;position:relative;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-width:64px;border:none;outline:none;line-height:inherit;-webkit-appearance:none;overflow:visible;vertical-align:middle;background:rgba(0,0,0,0);padding:0 8px}.mdc-button::-moz-focus-inner{padding:0;border:0}.mdc-button:active{outline:none}.mdc-button:hover{cursor:pointer}.mdc-button:disabled{cursor:default;pointer-events:none}.mdc-button[hidden]{display:none}.mdc-button .mdc-button__label{position:relative}.mat-mdc-button{padding:0 var(--mat-button-text-horizontal-padding, 12px);height:var(--mat-button-text-container-height, 40px);font-family:var(--mat-button-text-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-text-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-text-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-text-label-text-transform);font-weight:var(--mat-button-text-label-text-weight, var(--mat-sys-label-large-weight))}.mat-mdc-button,.mat-mdc-button .mdc-button__ripple{border-radius:var(--mat-button-text-container-shape, var(--mat-sys-corner-full))}.mat-mdc-button:not(:disabled){color:var(--mat-button-text-label-text-color, var(--mat-sys-primary))}.mat-mdc-button[disabled],.mat-mdc-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-text-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-button:has(.material-icons,mat-icon,[matButtonIcon]){padding:0 var(--mat-button-text-with-icon-horizontal-padding, 16px)}.mat-mdc-button>.mat-icon{margin-right:var(--mat-button-text-icon-spacing, 8px);margin-left:var(--mat-button-text-icon-offset, -4px)}[dir=rtl] .mat-mdc-button>.mat-icon{margin-right:var(--mat-button-text-icon-offset, -4px);margin-left:var(--mat-button-text-icon-spacing, 8px)}.mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-text-icon-offset, -4px);margin-left:var(--mat-button-text-icon-spacing, 8px)}[dir=rtl] .mat-mdc-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-text-icon-spacing, 8px);margin-left:var(--mat-button-text-icon-offset, -4px)}.mat-mdc-button .mat-ripple-element{background-color:var(--mat-button-text-ripple-color, color-mix(in srgb, var(--mat-sys-primary) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-text-state-layer-color, var(--mat-sys-primary))}.mat-mdc-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-text-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-text-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-text-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-text-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-text-touch-target-size, 48px);display:var(--mat-button-text-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-unelevated-button{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);height:var(--mat-button-filled-container-height, 40px);font-family:var(--mat-button-filled-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-filled-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-filled-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-filled-label-text-transform);font-weight:var(--mat-button-filled-label-text-weight, var(--mat-sys-label-large-weight));padding:0 var(--mat-button-filled-horizontal-padding, 24px)}.mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-button-filled-icon-spacing, 8px);margin-left:var(--mat-button-filled-icon-offset, -8px)}[dir=rtl] .mat-mdc-unelevated-button>.mat-icon{margin-right:var(--mat-button-filled-icon-offset, -8px);margin-left:var(--mat-button-filled-icon-spacing, 8px)}.mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-filled-icon-offset, -8px);margin-left:var(--mat-button-filled-icon-spacing, 8px)}[dir=rtl] .mat-mdc-unelevated-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-filled-icon-spacing, 8px);margin-left:var(--mat-button-filled-icon-offset, -8px)}.mat-mdc-unelevated-button .mat-ripple-element{background-color:var(--mat-button-filled-ripple-color, color-mix(in srgb, var(--mat-sys-on-primary) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-filled-state-layer-color, var(--mat-sys-on-primary))}.mat-mdc-unelevated-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-filled-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-unelevated-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-filled-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-unelevated-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-filled-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-unelevated-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-filled-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-unelevated-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-filled-touch-target-size, 48px);display:var(--mat-button-filled-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-unelevated-button:not(:disabled){color:var(--mat-button-filled-label-text-color, var(--mat-sys-on-primary));background-color:var(--mat-button-filled-container-color, var(--mat-sys-primary))}.mat-mdc-unelevated-button,.mat-mdc-unelevated-button .mdc-button__ripple{border-radius:var(--mat-button-filled-container-shape, var(--mat-sys-corner-full))}.mat-mdc-unelevated-button[disabled],.mat-mdc-unelevated-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-filled-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-filled-disabled-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-unelevated-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-raised-button{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);box-shadow:var(--mat-button-protected-container-elevation-shadow, var(--mat-sys-level1));height:var(--mat-button-protected-container-height, 40px);font-family:var(--mat-button-protected-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-protected-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-protected-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-protected-label-text-transform);font-weight:var(--mat-button-protected-label-text-weight, var(--mat-sys-label-large-weight));padding:0 var(--mat-button-protected-horizontal-padding, 24px)}.mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-button-protected-icon-spacing, 8px);margin-left:var(--mat-button-protected-icon-offset, -8px)}[dir=rtl] .mat-mdc-raised-button>.mat-icon{margin-right:var(--mat-button-protected-icon-offset, -8px);margin-left:var(--mat-button-protected-icon-spacing, 8px)}.mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-protected-icon-offset, -8px);margin-left:var(--mat-button-protected-icon-spacing, 8px)}[dir=rtl] .mat-mdc-raised-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-protected-icon-spacing, 8px);margin-left:var(--mat-button-protected-icon-offset, -8px)}.mat-mdc-raised-button .mat-ripple-element{background-color:var(--mat-button-protected-ripple-color, color-mix(in srgb, var(--mat-sys-primary) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-protected-state-layer-color, var(--mat-sys-primary))}.mat-mdc-raised-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-protected-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-raised-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-protected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-raised-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-protected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-raised-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-protected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-raised-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-protected-touch-target-size, 48px);display:var(--mat-button-protected-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-raised-button:not(:disabled){color:var(--mat-button-protected-label-text-color, var(--mat-sys-primary));background-color:var(--mat-button-protected-container-color, var(--mat-sys-surface))}.mat-mdc-raised-button,.mat-mdc-raised-button .mdc-button__ripple{border-radius:var(--mat-button-protected-container-shape, var(--mat-sys-corner-full))}.mat-mdc-raised-button:hover{box-shadow:var(--mat-button-protected-hover-container-elevation-shadow, var(--mat-sys-level2))}.mat-mdc-raised-button:focus{box-shadow:var(--mat-button-protected-focus-container-elevation-shadow, var(--mat-sys-level1))}.mat-mdc-raised-button:active,.mat-mdc-raised-button:focus:active{box-shadow:var(--mat-button-protected-pressed-container-elevation-shadow, var(--mat-sys-level1))}.mat-mdc-raised-button[disabled],.mat-mdc-raised-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-protected-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-protected-disabled-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-raised-button[disabled].mat-mdc-button-disabled,.mat-mdc-raised-button.mat-mdc-button-disabled.mat-mdc-button-disabled{box-shadow:var(--mat-button-protected-disabled-container-elevation-shadow, var(--mat-sys-level0))}.mat-mdc-raised-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-outlined-button{border-style:solid;transition:border 280ms cubic-bezier(0.4, 0, 0.2, 1);height:var(--mat-button-outlined-container-height, 40px);font-family:var(--mat-button-outlined-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-outlined-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-outlined-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-outlined-label-text-transform);font-weight:var(--mat-button-outlined-label-text-weight, var(--mat-sys-label-large-weight));border-radius:var(--mat-button-outlined-container-shape, var(--mat-sys-corner-full));border-width:var(--mat-button-outlined-outline-width, 1px);padding:0 var(--mat-button-outlined-horizontal-padding, 24px)}.mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-button-outlined-icon-spacing, 8px);margin-left:var(--mat-button-outlined-icon-offset, -8px)}[dir=rtl] .mat-mdc-outlined-button>.mat-icon{margin-right:var(--mat-button-outlined-icon-offset, -8px);margin-left:var(--mat-button-outlined-icon-spacing, 8px)}.mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-outlined-icon-offset, -8px);margin-left:var(--mat-button-outlined-icon-spacing, 8px)}[dir=rtl] .mat-mdc-outlined-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-outlined-icon-spacing, 8px);margin-left:var(--mat-button-outlined-icon-offset, -8px)}.mat-mdc-outlined-button .mat-ripple-element{background-color:var(--mat-button-outlined-ripple-color, color-mix(in srgb, var(--mat-sys-primary) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-outlined-state-layer-color, var(--mat-sys-primary))}.mat-mdc-outlined-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-outlined-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-outlined-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-outlined-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-outlined-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-outlined-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-outlined-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-outlined-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-outlined-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-outlined-touch-target-size, 48px);display:var(--mat-button-outlined-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-outlined-button:not(:disabled){color:var(--mat-button-outlined-label-text-color, var(--mat-sys-primary));border-color:var(--mat-button-outlined-outline-color, var(--mat-sys-outline))}.mat-mdc-outlined-button[disabled],.mat-mdc-outlined-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-outlined-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));border-color:var(--mat-button-outlined-disabled-outline-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-outlined-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-tonal-button{transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);height:var(--mat-button-tonal-container-height, 40px);font-family:var(--mat-button-tonal-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-button-tonal-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-button-tonal-label-text-tracking, var(--mat-sys-label-large-tracking));text-transform:var(--mat-button-tonal-label-text-transform);font-weight:var(--mat-button-tonal-label-text-weight, var(--mat-sys-label-large-weight));padding:0 var(--mat-button-tonal-horizontal-padding, 24px)}.mat-tonal-button:not(:disabled){color:var(--mat-button-tonal-label-text-color, var(--mat-sys-on-secondary-container));background-color:var(--mat-button-tonal-container-color, var(--mat-sys-secondary-container))}.mat-tonal-button,.mat-tonal-button .mdc-button__ripple{border-radius:var(--mat-button-tonal-container-shape, var(--mat-sys-corner-full))}.mat-tonal-button[disabled],.mat-tonal-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-button-tonal-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-button-tonal-disabled-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-tonal-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-tonal-button>.mat-icon{margin-right:var(--mat-button-tonal-icon-spacing, 8px);margin-left:var(--mat-button-tonal-icon-offset, -8px)}[dir=rtl] .mat-tonal-button>.mat-icon{margin-right:var(--mat-button-tonal-icon-offset, -8px);margin-left:var(--mat-button-tonal-icon-spacing, 8px)}.mat-tonal-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-tonal-icon-offset, -8px);margin-left:var(--mat-button-tonal-icon-spacing, 8px)}[dir=rtl] .mat-tonal-button .mdc-button__label+.mat-icon{margin-right:var(--mat-button-tonal-icon-spacing, 8px);margin-left:var(--mat-button-tonal-icon-offset, -8px)}.mat-tonal-button .mat-ripple-element{background-color:var(--mat-button-tonal-ripple-color, color-mix(in srgb, var(--mat-sys-on-secondary-container) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-tonal-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-tonal-state-layer-color, var(--mat-sys-on-secondary-container))}.mat-tonal-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-button-tonal-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-tonal-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-tonal-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-tonal-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-tonal-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-tonal-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-tonal-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-tonal-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-button-tonal-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-tonal-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-button-tonal-touch-target-size, 48px);display:var(--mat-button-tonal-touch-target-display, block);left:0;right:0;transform:translateY(-50%)}.mat-mdc-button,.mat-mdc-unelevated-button,.mat-mdc-raised-button,.mat-mdc-outlined-button,.mat-tonal-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple,.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before,.mat-tonal-button .mat-mdc-button-ripple,.mat-tonal-button .mat-mdc-button-persistent-ripple,.mat-tonal-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-button .mat-mdc-button-ripple,.mat-mdc-unelevated-button .mat-mdc-button-ripple,.mat-mdc-raised-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-tonal-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-unelevated-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-raised-button .mat-mdc-button-persistent-ripple::before,.mat-mdc-outlined-button .mat-mdc-button-persistent-ripple::before,.mat-tonal-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-button .mdc-button__label,.mat-mdc-button .mat-icon,.mat-mdc-unelevated-button .mdc-button__label,.mat-mdc-unelevated-button .mat-icon,.mat-mdc-raised-button .mdc-button__label,.mat-mdc-raised-button .mat-icon,.mat-mdc-outlined-button .mdc-button__label,.mat-mdc-outlined-button .mat-icon,.mat-tonal-button .mdc-button__label,.mat-tonal-button .mat-icon{z-index:1;position:relative}.mat-mdc-button .mat-focus-indicator,.mat-mdc-unelevated-button .mat-focus-indicator,.mat-mdc-raised-button .mat-focus-indicator,.mat-mdc-outlined-button .mat-focus-indicator,.mat-tonal-button .mat-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:inherit}.mat-mdc-button:focus>.mat-focus-indicator::before,.mat-mdc-unelevated-button:focus>.mat-focus-indicator::before,.mat-mdc-raised-button:focus>.mat-focus-indicator::before,.mat-mdc-outlined-button:focus>.mat-focus-indicator::before,.mat-tonal-button:focus>.mat-focus-indicator::before{content:"";border-radius:inherit}.mat-mdc-button._mat-animation-noopable,.mat-mdc-unelevated-button._mat-animation-noopable,.mat-mdc-raised-button._mat-animation-noopable,.mat-mdc-outlined-button._mat-animation-noopable,.mat-tonal-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-button>.mat-icon,.mat-mdc-unelevated-button>.mat-icon,.mat-mdc-raised-button>.mat-icon,.mat-mdc-outlined-button>.mat-icon,.mat-tonal-button>.mat-icon{display:inline-block;position:relative;vertical-align:top;font-size:1.125rem;height:1.125rem;width:1.125rem}.mat-mdc-outlined-button .mat-mdc-button-ripple,.mat-mdc-outlined-button .mdc-button__ripple{top:-1px;left:-1px;bottom:-1px;right:-1px}.mat-mdc-unelevated-button .mat-focus-indicator::before,.mat-tonal-button .mat-focus-indicator::before,.mat-mdc-raised-button .mat-focus-indicator::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-outlined-button .mat-focus-indicator::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 3px)*-1)}\n',"@media(forced-colors: active){.mat-mdc-button:not(.mdc-button--outlined),.mat-mdc-unelevated-button:not(.mdc-button--outlined),.mat-mdc-raised-button:not(.mdc-button--outlined),.mat-mdc-outlined-button:not(.mdc-button--outlined),.mat-mdc-button-base.mat-tonal-button,.mat-mdc-icon-button.mat-mdc-icon-button,.mat-mdc-outlined-button .mdc-button__ripple{outline:solid 1px}}\n"],encapsulation:2,changeDetection:0})}return J})();const G=new e.nKC("mat-mdc-fab-default-options",{providedIn:"root",factory:re});function re(){return{color:"accent"}}const xe=re();let V=(()=>{class J extends w.iM{_options=(0,e.WQX)(G,{optional:!0});_isFab=!0;constructor(){super(),this._options=this._options||xe,this.color=this._options.color||xe.color}static \u0275fac=function(Xe){return new(Xe||J)};static \u0275cmp=O.VBU({type:J,selectors:[["button","mat-mini-fab",""],["a","mat-mini-fab",""],["button","matMiniFab",""],["a","matMiniFab",""]],hostAttrs:[1,"mdc-fab","mat-mdc-fab-base","mdc-fab--mini","mat-mdc-mini-fab"],exportAs:["matButton","matAnchor"],features:[O.Vt3],attrs:Pe,ngContentSelectors:B,decls:7,vars:4,consts:[[1,"mat-mdc-button-persistent-ripple"],[1,"mdc-button__label"],[1,"mat-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(Xe,_e){1&Xe&&(O.NAR(C),O.Hgh(0,"span",0),O.SdG(1),O.rj2(2,"span",1),O.SdG(3,1),O.eux(),O.SdG(4,2),O.Hgh(5,"span",2)(6,"span",3)),2&Xe&&O.AVh("mdc-button__ripple",!_e._isFab)("mdc-fab__ripple",_e._isFab)},styles:['.mat-mdc-fab-base{-webkit-user-select:none;user-select:none;position:relative;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;width:56px;height:56px;padding:0;border:none;fill:currentColor;text-decoration:none;cursor:pointer;-moz-appearance:none;-webkit-appearance:none;overflow:visible;transition:box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1),opacity 15ms linear 30ms,transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);flex-shrink:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-fab-base .mat-mdc-button-ripple,.mat-mdc-fab-base .mat-mdc-button-persistent-ripple,.mat-mdc-fab-base .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-fab-base .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-fab-base .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-fab-base .mdc-button__label,.mat-mdc-fab-base .mat-icon{z-index:1;position:relative}.mat-mdc-fab-base .mat-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute}.mat-mdc-fab-base:focus>.mat-focus-indicator::before{content:""}.mat-mdc-fab-base._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-fab-base::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}.mat-mdc-fab-base[hidden]{display:none}.mat-mdc-fab-base::-moz-focus-inner{padding:0;border:0}.mat-mdc-fab-base:active,.mat-mdc-fab-base:focus{outline:none}.mat-mdc-fab-base:hover{cursor:pointer}.mat-mdc-fab-base>svg{width:100%}.mat-mdc-fab-base .mat-icon,.mat-mdc-fab-base .material-icons{transition:transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);fill:currentColor;will-change:transform}.mat-mdc-fab-base .mat-focus-indicator::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-fab-base[disabled],.mat-mdc-fab-base.mat-mdc-button-disabled{cursor:default;pointer-events:none}.mat-mdc-fab-base[disabled],.mat-mdc-fab-base[disabled]:focus,.mat-mdc-fab-base.mat-mdc-button-disabled,.mat-mdc-fab-base.mat-mdc-button-disabled:focus{box-shadow:none}.mat-mdc-fab-base.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-fab{background-color:var(--mat-fab-container-color, var(--mat-sys-primary-container));border-radius:var(--mat-fab-container-shape, var(--mat-sys-corner-large));color:var(--mat-fab-foreground-color, var(--mat-sys-on-primary-container, inherit));box-shadow:var(--mat-fab-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-fab:hover{box-shadow:var(--mat-fab-hover-container-elevation-shadow, var(--mat-sys-level4))}.mat-mdc-fab:focus{box-shadow:var(--mat-fab-focus-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-fab:active,.mat-mdc-fab:focus:active{box-shadow:var(--mat-fab-pressed-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-fab[disabled],.mat-mdc-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-fab-disabled-state-foreground-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-fab-disabled-state-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-fab-touch-target-size, 48px);display:var(--mat-fab-touch-target-display, block);left:50%;width:var(--mat-fab-touch-target-size, 48px);transform:translate(-50%, -50%)}.mat-mdc-fab .mat-ripple-element{background-color:var(--mat-fab-ripple-color, color-mix(in srgb, var(--mat-sys-on-primary-container) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-state-layer-color, var(--mat-sys-on-primary-container))}.mat-mdc-fab.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-disabled-state-layer-color)}.mat-mdc-fab:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-fab.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-fab.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-fab.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-fab:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-mini-fab{width:40px;height:40px;background-color:var(--mat-fab-small-container-color, var(--mat-sys-primary-container));border-radius:var(--mat-fab-small-container-shape, var(--mat-sys-corner-medium));color:var(--mat-fab-small-foreground-color, var(--mat-sys-on-primary-container, inherit));box-shadow:var(--mat-fab-small-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-mini-fab:hover{box-shadow:var(--mat-fab-small-hover-container-elevation-shadow, var(--mat-sys-level4))}.mat-mdc-mini-fab:focus{box-shadow:var(--mat-fab-small-focus-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-mini-fab:active,.mat-mdc-mini-fab:focus:active{box-shadow:var(--mat-fab-small-pressed-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-mini-fab[disabled],.mat-mdc-mini-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-fab-small-disabled-state-foreground-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));background-color:var(--mat-fab-small-disabled-state-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-mini-fab .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-fab-small-touch-target-size, 48px);display:var(--mat-fab-small-touch-target-display);left:50%;width:var(--mat-fab-small-touch-target-size, 48px);transform:translate(-50%, -50%)}.mat-mdc-mini-fab .mat-ripple-element{background-color:var(--mat-fab-small-ripple-color, color-mix(in srgb, var(--mat-sys-on-primary-container) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-mini-fab .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-small-state-layer-color, var(--mat-sys-on-primary-container))}.mat-mdc-mini-fab.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-fab-small-disabled-state-layer-color)}.mat-mdc-mini-fab:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-mini-fab.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-mini-fab.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-mini-fab:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-fab-small-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-extended-fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;padding-left:20px;padding-right:20px;width:auto;max-width:100%;line-height:normal;box-shadow:var(--mat-fab-extended-container-elevation-shadow, var(--mat-sys-level3));height:var(--mat-fab-extended-container-height, 56px);border-radius:var(--mat-fab-extended-container-shape, var(--mat-sys-corner-large));font-family:var(--mat-fab-extended-label-text-font, var(--mat-sys-label-large-font));font-size:var(--mat-fab-extended-label-text-size, var(--mat-sys-label-large-size));font-weight:var(--mat-fab-extended-label-text-weight, var(--mat-sys-label-large-weight));letter-spacing:var(--mat-fab-extended-label-text-tracking, var(--mat-sys-label-large-tracking))}.mat-mdc-extended-fab:hover{box-shadow:var(--mat-fab-extended-hover-container-elevation-shadow, var(--mat-sys-level4))}.mat-mdc-extended-fab:focus{box-shadow:var(--mat-fab-extended-focus-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-extended-fab:active,.mat-mdc-extended-fab:focus:active{box-shadow:var(--mat-fab-extended-pressed-container-elevation-shadow, var(--mat-sys-level3))}.mat-mdc-extended-fab[disabled],.mat-mdc-extended-fab.mat-mdc-button-disabled{cursor:default;pointer-events:none}.mat-mdc-extended-fab[disabled],.mat-mdc-extended-fab[disabled]:focus,.mat-mdc-extended-fab.mat-mdc-button-disabled,.mat-mdc-extended-fab.mat-mdc-button-disabled:focus{box-shadow:none}.mat-mdc-extended-fab.mat-mdc-button-disabled-interactive{pointer-events:auto}[dir=rtl] .mat-mdc-extended-fab .mdc-button__label+.mat-icon,[dir=rtl] .mat-mdc-extended-fab .mdc-button__label+.material-icons,.mat-mdc-extended-fab>.mat-icon,.mat-mdc-extended-fab>.material-icons{margin-left:-8px;margin-right:12px}.mat-mdc-extended-fab .mdc-button__label+.mat-icon,.mat-mdc-extended-fab .mdc-button__label+.material-icons,[dir=rtl] .mat-mdc-extended-fab>.mat-icon,[dir=rtl] .mat-mdc-extended-fab>.material-icons{margin-left:12px;margin-right:-8px}.mat-mdc-extended-fab .mat-mdc-button-touch-target{width:100%}\n'],encapsulation:2,changeDetection:0})}return J})(),ne=(()=>{class J{static \u0275fac=function(Xe){return new(Xe||J)};static \u0275mod=O.$C({type:J});static \u0275inj=e.G2t({imports:[u.y,f.p,u.y]})}return J})()},5596(Zt,pe,l){"use strict";l.d(pe,{Hu:()=>ce,Lc:()=>Pe,MM:()=>Ce,RN:()=>L,dh:()=>C,m2:()=>A});var i=l(2615),d=l(3664),v=l(2466);const T=["*"],O=[[["","mat-card-avatar",""],["","matCardAvatar",""]],[["mat-card-title"],["mat-card-subtitle"],["","mat-card-title",""],["","mat-card-subtitle",""],["","matCardTitle",""],["","matCardSubtitle",""]],"*"],f=["[mat-card-avatar], [matCardAvatar]","mat-card-title, mat-card-subtitle,\n [mat-card-title], [mat-card-subtitle],\n [matCardTitle], [matCardSubtitle]","*"],u=new i.nKC("MAT_CARD_CONFIG");let L=(()=>{class be{appearance;constructor(){const J=(0,i.WQX)(u,{optional:!0});this.appearance=J?.appearance||"raised"}static \u0275fac=function(De){return new(De||be)};static \u0275cmp=d.VBU({type:be,selectors:[["mat-card"]],hostAttrs:[1,"mat-mdc-card","mdc-card"],hostVars:8,hostBindings:function(De,Re){2&De&&d.AVh("mat-mdc-card-outlined","outlined"===Re.appearance)("mdc-card--outlined","outlined"===Re.appearance)("mat-mdc-card-filled","filled"===Re.appearance)("mdc-card--filled","filled"===Re.appearance)},inputs:{appearance:"appearance"},exportAs:["matCard"],ngContentSelectors:T,decls:1,vars:0,template:function(De,Re){1&De&&(d.NAR(),d.SdG(0))},styles:['.mat-mdc-card{display:flex;flex-direction:column;box-sizing:border-box;position:relative;border-style:solid;border-width:0;background-color:var(--mat-card-elevated-container-color, var(--mat-sys-surface-container-low));border-color:var(--mat-card-elevated-container-color, var(--mat-sys-surface-container-low));border-radius:var(--mat-card-elevated-container-shape, var(--mat-sys-corner-medium));box-shadow:var(--mat-card-elevated-container-elevation, var(--mat-sys-level1))}.mat-mdc-card::after{position:absolute;top:0;left:0;width:100%;height:100%;border:solid 1px rgba(0,0,0,0);content:"";display:block;pointer-events:none;box-sizing:border-box;border-radius:var(--mat-card-elevated-container-shape, var(--mat-sys-corner-medium))}.mat-mdc-card-outlined{background-color:var(--mat-card-outlined-container-color, var(--mat-sys-surface));border-radius:var(--mat-card-outlined-container-shape, var(--mat-sys-corner-medium));border-width:var(--mat-card-outlined-outline-width, 1px);border-color:var(--mat-card-outlined-outline-color, var(--mat-sys-outline-variant));box-shadow:var(--mat-card-outlined-container-elevation, var(--mat-sys-level0))}.mat-mdc-card-outlined::after{border:none}.mat-mdc-card-filled{background-color:var(--mat-card-filled-container-color, var(--mat-sys-surface-container-highest));border-radius:var(--mat-card-filled-container-shape, var(--mat-sys-corner-medium));box-shadow:var(--mat-card-filled-container-elevation, var(--mat-sys-level0))}.mdc-card__media{position:relative;box-sizing:border-box;background-repeat:no-repeat;background-position:center;background-size:cover}.mdc-card__media::before{display:block;content:""}.mdc-card__media:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.mdc-card__media:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.mat-mdc-card-actions{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;min-height:52px;padding:8px}.mat-mdc-card-title{font-family:var(--mat-card-title-text-font, var(--mat-sys-title-large-font));line-height:var(--mat-card-title-text-line-height, var(--mat-sys-title-large-line-height));font-size:var(--mat-card-title-text-size, var(--mat-sys-title-large-size));letter-spacing:var(--mat-card-title-text-tracking, var(--mat-sys-title-large-tracking));font-weight:var(--mat-card-title-text-weight, var(--mat-sys-title-large-weight))}.mat-mdc-card-subtitle{color:var(--mat-card-subtitle-text-color, var(--mat-sys-on-surface));font-family:var(--mat-card-subtitle-text-font, var(--mat-sys-title-medium-font));line-height:var(--mat-card-subtitle-text-line-height, var(--mat-sys-title-medium-line-height));font-size:var(--mat-card-subtitle-text-size, var(--mat-sys-title-medium-size));letter-spacing:var(--mat-card-subtitle-text-tracking, var(--mat-sys-title-medium-tracking));font-weight:var(--mat-card-subtitle-text-weight, var(--mat-sys-title-medium-weight))}.mat-mdc-card-title,.mat-mdc-card-subtitle{display:block;margin:0}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle{padding:16px 16px 0}.mat-mdc-card-header{display:flex;padding:16px 16px 0}.mat-mdc-card-content{display:block;padding:0 16px}.mat-mdc-card-content:first-child{padding-top:16px}.mat-mdc-card-content:last-child{padding-bottom:16px}.mat-mdc-card-title-group{display:flex;justify-content:space-between;width:100%}.mat-mdc-card-avatar{height:40px;width:40px;border-radius:50%;flex-shrink:0;margin-bottom:16px;object-fit:cover}.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-avatar~.mat-mdc-card-header-text .mat-mdc-card-title{line-height:normal}.mat-mdc-card-sm-image{width:80px;height:80px}.mat-mdc-card-md-image{width:112px;height:112px}.mat-mdc-card-lg-image{width:152px;height:152px}.mat-mdc-card-xl-image{width:240px;height:240px}.mat-mdc-card-subtitle~.mat-mdc-card-title,.mat-mdc-card-title~.mat-mdc-card-subtitle,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-title,.mat-mdc-card-header .mat-mdc-card-header-text .mat-mdc-card-subtitle,.mat-mdc-card-title-group .mat-mdc-card-title,.mat-mdc-card-title-group .mat-mdc-card-subtitle{padding-top:0}.mat-mdc-card-content>:last-child:not(.mat-mdc-card-footer){margin-bottom:0}.mat-mdc-card-actions-align-end{justify-content:flex-end}\n'],encapsulation:2,changeDetection:0})}return be})(),C=(()=>{class be{static \u0275fac=function(De){return new(De||be)};static \u0275dir=d.FsC({type:be,selectors:[["mat-card-title"],["","mat-card-title",""],["","matCardTitle",""]],hostAttrs:[1,"mat-mdc-card-title"]})}return be})(),A=(()=>{class be{static \u0275fac=function(De){return new(De||be)};static \u0275dir=d.FsC({type:be,selectors:[["mat-card-content"]],hostAttrs:[1,"mat-mdc-card-content"]})}return be})(),Pe=(()=>{class be{static \u0275fac=function(De){return new(De||be)};static \u0275dir=d.FsC({type:be,selectors:[["mat-card-subtitle"],["","mat-card-subtitle",""],["","matCardSubtitle",""]],hostAttrs:[1,"mat-mdc-card-subtitle"]})}return be})(),Ce=(()=>{class be{static \u0275fac=function(De){return new(De||be)};static \u0275cmp=d.VBU({type:be,selectors:[["mat-card-header"]],hostAttrs:[1,"mat-mdc-card-header"],ngContentSelectors:f,decls:4,vars:0,consts:[[1,"mat-mdc-card-header-text"]],template:function(De,Re){1&De&&(d.NAR(O),d.SdG(0),d.rj2(1,"div",0),d.SdG(2,1),d.eux(),d.SdG(3,2))},encapsulation:2,changeDetection:0})}return be})(),ce=(()=>{class be{static \u0275fac=function(De){return new(De||be)};static \u0275mod=d.$C({type:be});static \u0275inj=i.G2t({imports:[v.y,v.y]})}return be})()},2765(Zt,pe,l){"use strict";l.d(pe,{So:()=>G,g7:()=>re});var i=l(9726),d=l(2615),v=l(3664),T=l(7705),w=l(9417),e=l(8968),O=l(3155),f=l(1804),u=l(2046),L=l(2496),C=l(2466);const B=["input"],A=["label"],Pe=["*"],le=new d.nKC("mat-checkbox-default-options",{providedIn:"root",factory:Ce});function Ce(){return{color:"accent",clickAction:"check-indeterminate",disabledInteractive:!1}}var Ae=function(xe){return xe[xe.Init=0]="Init",xe[xe.Checked=1]="Checked",xe[xe.Unchecked=2]="Unchecked",xe[xe.Indeterminate=3]="Indeterminate",xe}(Ae||{});class j{source;checked}const W=Ce();let G=(()=>{class xe{_elementRef=(0,d.WQX)(v.aKT);_changeDetectorRef=(0,d.WQX)(T.gRc);_ngZone=(0,d.WQX)(v.SKi);_animationsDisabled=(0,f.Rc)();_options=(0,d.WQX)(le,{optional:!0});focus(){this._inputElement.nativeElement.focus()}_createChangeEvent(V){const ce=new j;return ce.source=this,ce.checked=V,ce}_getAnimationTargetElement(){return this._inputElement?.nativeElement}_animationClasses={uncheckedToChecked:"mdc-checkbox--anim-unchecked-checked",uncheckedToIndeterminate:"mdc-checkbox--anim-unchecked-indeterminate",checkedToUnchecked:"mdc-checkbox--anim-checked-unchecked",checkedToIndeterminate:"mdc-checkbox--anim-checked-indeterminate",indeterminateToChecked:"mdc-checkbox--anim-indeterminate-checked",indeterminateToUnchecked:"mdc-checkbox--anim-indeterminate-unchecked"};ariaLabel="";ariaLabelledby=null;ariaDescribedby;ariaExpanded;ariaControls;ariaOwns;_uniqueId;id;get inputId(){return`${this.id||this._uniqueId}-input`}required;labelPosition="after";name=null;change=new v.bkB;indeterminateChange=new v.bkB;value;disableRipple;_inputElement;_labelElement;tabIndex;color;disabledInteractive;_onTouched=()=>{};_currentAnimationClass="";_currentCheckState=Ae.Init;_controlValueAccessorChangeFn=()=>{};_validatorChangeFn=()=>{};constructor(){(0,d.WQX)(e.l).load(u.A);const V=(0,d.WQX)(new T.ES_("tabindex"),{optional:!0});this._options=this._options||W,this.color=this._options.color||W.color,this.tabIndex=null==V?0:parseInt(V)||0,this.id=this._uniqueId=(0,d.WQX)(i.g).getId("mat-mdc-checkbox-"),this.disabledInteractive=this._options?.disabledInteractive??!1}ngOnChanges(V){V.required&&this._validatorChangeFn()}ngAfterViewInit(){this._syncIndeterminate(this.indeterminate)}get checked(){return this._checked}set checked(V){V!=this.checked&&(this._checked=V,this._changeDetectorRef.markForCheck())}_checked=!1;get disabled(){return this._disabled}set disabled(V){V!==this.disabled&&(this._disabled=V,this._changeDetectorRef.markForCheck())}_disabled=!1;get indeterminate(){return this._indeterminate()}set indeterminate(V){const ce=V!=this._indeterminate();this._indeterminate.set(V),ce&&(this._transitionCheckState(V?Ae.Indeterminate:this.checked?Ae.Checked:Ae.Unchecked),this.indeterminateChange.emit(V)),this._syncIndeterminate(V)}_indeterminate=(0,d.vPA)(!1);_isRippleDisabled(){return this.disableRipple||this.disabled}_onLabelTextChange(){this._changeDetectorRef.detectChanges()}writeValue(V){this.checked=!!V}registerOnChange(V){this._controlValueAccessorChangeFn=V}registerOnTouched(V){this._onTouched=V}setDisabledState(V){this.disabled=V}validate(V){return this.required&&!0!==V.value?{required:!0}:null}registerOnValidatorChange(V){this._validatorChangeFn=V}_transitionCheckState(V){let ce=this._currentCheckState,be=this._getAnimationTargetElement();if(ce!==V&&be&&(this._currentAnimationClass&&be.classList.remove(this._currentAnimationClass),this._currentAnimationClass=this._getAnimationClassForCheckStateTransition(ce,V),this._currentCheckState=V,this._currentAnimationClass.length>0)){be.classList.add(this._currentAnimationClass);const ne=this._currentAnimationClass;this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{be.classList.remove(ne)},1e3)})}}_emitChangeEvent(){this._controlValueAccessorChangeFn(this.checked),this.change.emit(this._createChangeEvent(this.checked)),this._inputElement&&(this._inputElement.nativeElement.checked=this.checked)}toggle(){this.checked=!this.checked,this._controlValueAccessorChangeFn(this.checked)}_handleInputClick(){const V=this._options?.clickAction;this.disabled||"noop"===V?(this.disabled&&this.disabledInteractive||!this.disabled&&"noop"===V)&&(this._inputElement.nativeElement.checked=this.checked,this._inputElement.nativeElement.indeterminate=this.indeterminate):(this.indeterminate&&"check"!==V&&Promise.resolve().then(()=>{this._indeterminate.set(!1),this.indeterminateChange.emit(!1)}),this._checked=!this._checked,this._transitionCheckState(this._checked?Ae.Checked:Ae.Unchecked),this._emitChangeEvent())}_onInteractionEvent(V){V.stopPropagation()}_onBlur(){Promise.resolve().then(()=>{this._onTouched(),this._changeDetectorRef.markForCheck()})}_getAnimationClassForCheckStateTransition(V,ce){if(this._animationsDisabled)return"";switch(V){case Ae.Init:if(ce===Ae.Checked)return this._animationClasses.uncheckedToChecked;if(ce==Ae.Indeterminate)return this._checked?this._animationClasses.checkedToIndeterminate:this._animationClasses.uncheckedToIndeterminate;break;case Ae.Unchecked:return ce===Ae.Checked?this._animationClasses.uncheckedToChecked:this._animationClasses.uncheckedToIndeterminate;case Ae.Checked:return ce===Ae.Unchecked?this._animationClasses.checkedToUnchecked:this._animationClasses.checkedToIndeterminate;case Ae.Indeterminate:return ce===Ae.Checked?this._animationClasses.indeterminateToChecked:this._animationClasses.indeterminateToUnchecked}return""}_syncIndeterminate(V){const ce=this._inputElement;ce&&(ce.nativeElement.indeterminate=V)}_onInputClick(){this._handleInputClick()}_onTouchTargetClick(){this._handleInputClick(),this.disabled||this._inputElement.nativeElement.focus()}_preventBubblingFromLabel(V){V.target&&this._labelElement.nativeElement.contains(V.target)&&V.stopPropagation()}static \u0275fac=function(ce){return new(ce||xe)};static \u0275cmp=v.VBU({type:xe,selectors:[["mat-checkbox"]],viewQuery:function(ce,be){if(1&ce&&(v.GBs(B,5),v.GBs(A,5)),2&ce){let ne;v.mGM(ne=v.lsd())&&(be._inputElement=ne.first),v.mGM(ne=v.lsd())&&(be._labelElement=ne.first)}},hostAttrs:[1,"mat-mdc-checkbox"],hostVars:16,hostBindings:function(ce,be){2&ce&&(v.Avn("id",be.id),v.BMQ("tabindex",null)("aria-label",null)("aria-labelledby",null),v.HbH(be.color?"mat-"+be.color:"mat-accent"),v.AVh("_mat-animation-noopable",be._animationsDisabled)("mdc-checkbox--disabled",be.disabled)("mat-mdc-checkbox-disabled",be.disabled)("mat-mdc-checkbox-checked",be.checked)("mat-mdc-checkbox-disabled-interactive",be.disabledInteractive))},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],ariaExpanded:[2,"aria-expanded","ariaExpanded",T.L39],ariaControls:[0,"aria-controls","ariaControls"],ariaOwns:[0,"aria-owns","ariaOwns"],id:"id",required:[2,"required","required",T.L39],labelPosition:"labelPosition",name:"name",value:"value",disableRipple:[2,"disableRipple","disableRipple",T.L39],tabIndex:[2,"tabIndex","tabIndex",V=>null==V?void 0:(0,T.Udg)(V)],color:"color",disabledInteractive:[2,"disabledInteractive","disabledInteractive",T.L39],checked:[2,"checked","checked",T.L39],disabled:[2,"disabled","disabled",T.L39],indeterminate:[2,"indeterminate","indeterminate",T.L39]},outputs:{change:"change",indeterminateChange:"indeterminateChange"},exportAs:["matCheckbox"],features:[v.Jv_([{provide:w.kq,useExisting:(0,d.Rfq)(()=>xe),multi:!0},{provide:w.cz,useExisting:xe,multi:!0}]),v.OA$],ngContentSelectors:Pe,decls:15,vars:23,consts:[["checkbox",""],["input",""],["label",""],["mat-internal-form-field","",3,"click","labelPosition"],[1,"mdc-checkbox"],[1,"mat-mdc-checkbox-touch-target",3,"click"],["type","checkbox",1,"mdc-checkbox__native-control",3,"blur","click","change","checked","indeterminate","disabled","id","required","tabIndex"],[1,"mdc-checkbox__ripple"],[1,"mdc-checkbox__background"],["focusable","false","viewBox","0 0 24 24","aria-hidden","true",1,"mdc-checkbox__checkmark"],["fill","none","d","M1.73,12.91 8.1,19.28 22.79,4.59",1,"mdc-checkbox__checkmark-path"],[1,"mdc-checkbox__mixedmark"],["mat-ripple","",1,"mat-mdc-checkbox-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-label",3,"for"]],template:function(ce,be){if(1&ce){const ne=v.RV6();v.NAR(),v.j41(0,"div",3),v.bIt("click",function(De){return d.eBV(ne),d.Njj(be._preventBubblingFromLabel(De))}),v.j41(1,"div",4,0)(3,"div",5),v.bIt("click",function(){return d.eBV(ne),d.Njj(be._onTouchTargetClick())}),v.k0s(),v.j41(4,"input",6,1),v.bIt("blur",function(){return d.eBV(ne),d.Njj(be._onBlur())})("click",function(){return d.eBV(ne),d.Njj(be._onInputClick())})("change",function(De){return d.eBV(ne),d.Njj(be._onInteractionEvent(De))}),v.k0s(),v.nrm(6,"div",7),v.j41(7,"div",8),d.qSk(),v.j41(8,"svg",9),v.nrm(9,"path",10),v.k0s(),d.joV(),v.nrm(10,"div",11),v.k0s(),v.nrm(11,"div",12),v.k0s(),v.j41(12,"label",13,2),v.SdG(14),v.k0s()()}if(2&ce){const ne=v.sdS(2);v.Y8G("labelPosition",be.labelPosition),v.R7$(4),v.AVh("mdc-checkbox--selected",be.checked),v.Y8G("checked",be.checked)("indeterminate",be.indeterminate)("disabled",be.disabled&&!be.disabledInteractive)("id",be.inputId)("required",be.required)("tabIndex",be.disabled&&!be.disabledInteractive?-1:be.tabIndex),v.BMQ("aria-label",be.ariaLabel||null)("aria-labelledby",be.ariaLabelledby)("aria-describedby",be.ariaDescribedby)("aria-checked",be.indeterminate?"mixed":null)("aria-controls",be.ariaControls)("aria-disabled",!(!be.disabled||!be.disabledInteractive)||null)("aria-expanded",be.ariaExpanded)("aria-owns",be.ariaOwns)("name",be.name)("value",be.value),v.R7$(7),v.Y8G("matRippleTrigger",ne)("matRippleDisabled",be.disableRipple||be.disabled)("matRippleCentered",!0),v.R7$(),v.Y8G("for",be.inputId)}},dependencies:[L.r6,O.t],styles:['.mdc-checkbox{display:inline-block;position:relative;flex:0 0 18px;box-sizing:content-box;width:18px;height:18px;line-height:0;white-space:nowrap;cursor:pointer;vertical-align:bottom;padding:calc((var(--mat-checkbox-state-layer-size, 40px) - 18px)/2);margin:calc((var(--mat-checkbox-state-layer-size, 40px) - var(--mat-checkbox-state-layer-size, 40px))/2)}.mdc-checkbox:hover>.mdc-checkbox__ripple{opacity:var(--mat-checkbox-unselected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity));background-color:var(--mat-checkbox-unselected-hover-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox:hover>.mat-mdc-checkbox-ripple>.mat-ripple-element{background-color:var(--mat-checkbox-unselected-hover-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox .mdc-checkbox__native-control:focus+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-unselected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity));background-color:var(--mat-checkbox-unselected-focus-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox .mdc-checkbox__native-control:focus~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-unselected-focus-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox:active>.mdc-checkbox__native-control+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-unselected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity));background-color:var(--mat-checkbox-unselected-pressed-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox:active>.mdc-checkbox__native-control~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-unselected-pressed-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox:hover .mdc-checkbox__native-control:checked+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-selected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity));background-color:var(--mat-checkbox-selected-hover-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox:hover .mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-selected-hover-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox .mdc-checkbox__native-control:focus:checked+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-selected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity));background-color:var(--mat-checkbox-selected-focus-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox .mdc-checkbox__native-control:focus:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-selected-focus-state-layer-color, var(--mat-sys-primary))}.mdc-checkbox:active>.mdc-checkbox__native-control:checked+.mdc-checkbox__ripple{opacity:var(--mat-checkbox-selected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity));background-color:var(--mat-checkbox-selected-pressed-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox:active>.mdc-checkbox__native-control:checked~.mat-mdc-checkbox-ripple .mat-ripple-element{background-color:var(--mat-checkbox-selected-pressed-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox .mdc-checkbox__native-control~.mat-mdc-checkbox-ripple .mat-ripple-element,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox .mdc-checkbox__native-control+.mdc-checkbox__ripple{background-color:var(--mat-checkbox-unselected-hover-state-layer-color, var(--mat-sys-on-surface))}.mdc-checkbox .mdc-checkbox__native-control{position:absolute;margin:0;padding:0;opacity:0;cursor:inherit;z-index:1;width:var(--mat-checkbox-state-layer-size, 40px);height:var(--mat-checkbox-state-layer-size, 40px);top:calc((var(--mat-checkbox-state-layer-size, 40px) - var(--mat-checkbox-state-layer-size, 40px))/2);right:calc((var(--mat-checkbox-state-layer-size, 40px) - var(--mat-checkbox-state-layer-size, 40px))/2);left:calc((var(--mat-checkbox-state-layer-size, 40px) - var(--mat-checkbox-state-layer-size, 40px))/2)}.mdc-checkbox--disabled{cursor:default;pointer-events:none}.mdc-checkbox__background{display:inline-flex;position:absolute;align-items:center;justify-content:center;box-sizing:border-box;width:18px;height:18px;border:2px solid currentColor;border-radius:2px;background-color:rgba(0,0,0,0);pointer-events:none;will-change:background-color,border-color;transition:background-color 90ms cubic-bezier(0.4, 0, 0.6, 1),border-color 90ms cubic-bezier(0.4, 0, 0.6, 1);-webkit-print-color-adjust:exact;color-adjust:exact;border-color:var(--mat-checkbox-unselected-icon-color, var(--mat-sys-on-surface-variant));top:calc((var(--mat-checkbox-state-layer-size, 40px) - 18px)/2);left:calc((var(--mat-checkbox-state-layer-size, 40px) - 18px)/2)}.mdc-checkbox__native-control:enabled:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:enabled:indeterminate~.mdc-checkbox__background{border-color:var(--mat-checkbox-selected-icon-color, var(--mat-sys-primary));background-color:var(--mat-checkbox-selected-icon-color, var(--mat-sys-primary))}.mdc-checkbox--disabled .mdc-checkbox__background{border-color:var(--mat-checkbox-disabled-unselected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mdc-checkbox--disabled .mdc-checkbox__background{border-color:GrayText}}.mdc-checkbox__native-control:disabled:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:disabled:indeterminate~.mdc-checkbox__background{background-color:var(--mat-checkbox-disabled-selected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));border-color:rgba(0,0,0,0)}@media(forced-colors: active){.mdc-checkbox__native-control:disabled:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:disabled:indeterminate~.mdc-checkbox__background{border-color:GrayText}}.mdc-checkbox:hover>.mdc-checkbox__native-control:not(:checked)~.mdc-checkbox__background,.mdc-checkbox:hover>.mdc-checkbox__native-control:not(:indeterminate)~.mdc-checkbox__background{border-color:var(--mat-checkbox-unselected-hover-icon-color, var(--mat-sys-on-surface));background-color:rgba(0,0,0,0)}.mdc-checkbox:hover>.mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox:hover>.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background{border-color:var(--mat-checkbox-selected-hover-icon-color, var(--mat-sys-primary));background-color:var(--mat-checkbox-selected-hover-icon-color, var(--mat-sys-primary))}.mdc-checkbox__native-control:focus:focus:not(:checked)~.mdc-checkbox__background,.mdc-checkbox__native-control:focus:focus:not(:indeterminate)~.mdc-checkbox__background{border-color:var(--mat-checkbox-unselected-focus-icon-color, var(--mat-sys-on-surface))}.mdc-checkbox__native-control:focus:focus:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:focus:focus:indeterminate~.mdc-checkbox__background{border-color:var(--mat-checkbox-selected-focus-icon-color, var(--mat-sys-primary));background-color:var(--mat-checkbox-selected-focus-icon-color, var(--mat-sys-primary))}.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox:hover>.mdc-checkbox__native-control~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox .mdc-checkbox__native-control:focus~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__background{border-color:var(--mat-checkbox-disabled-unselected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox:hover>.mdc-checkbox__native-control~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox .mdc-checkbox__native-control:focus~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__background{border-color:GrayText}}.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background{background-color:var(--mat-checkbox-disabled-selected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent));border-color:rgba(0,0,0,0)}.mdc-checkbox__checkmark{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;opacity:0;transition:opacity 180ms cubic-bezier(0.4, 0, 0.6, 1);color:var(--mat-checkbox-selected-checkmark-color, var(--mat-sys-on-primary))}@media(forced-colors: active){.mdc-checkbox__checkmark{color:CanvasText}}.mdc-checkbox--disabled .mdc-checkbox__checkmark,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__checkmark{color:var(--mat-checkbox-disabled-selected-checkmark-color, var(--mat-sys-surface))}@media(forced-colors: active){.mdc-checkbox--disabled .mdc-checkbox__checkmark,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__checkmark{color:GrayText}}.mdc-checkbox__checkmark-path{transition:stroke-dashoffset 180ms cubic-bezier(0.4, 0, 0.6, 1);stroke:currentColor;stroke-width:3.12px;stroke-dashoffset:29.7833385;stroke-dasharray:29.7833385}.mdc-checkbox__mixedmark{width:100%;height:0;transform:scaleX(0) rotate(0deg);border-width:1px;border-style:solid;opacity:0;transition:opacity 90ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms cubic-bezier(0.4, 0, 0.6, 1);border-color:var(--mat-checkbox-selected-checkmark-color, var(--mat-sys-on-primary))}@media(forced-colors: active){.mdc-checkbox__mixedmark{margin:0 1px}}.mdc-checkbox--disabled .mdc-checkbox__mixedmark,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__mixedmark{border-color:var(--mat-checkbox-disabled-selected-checkmark-color, var(--mat-sys-surface))}@media(forced-colors: active){.mdc-checkbox--disabled .mdc-checkbox__mixedmark,.mdc-checkbox--disabled.mat-mdc-checkbox-disabled-interactive .mdc-checkbox__mixedmark{border-color:GrayText}}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background,.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background,.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background,.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background{animation-duration:180ms;animation-timing-function:linear}.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-unchecked-checked-checkmark-path 180ms linear;transition:none}.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-unchecked-indeterminate-mixedmark 90ms linear;transition:none}.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path{animation:mdc-checkbox-checked-unchecked-checkmark-path 90ms linear;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark{animation:mdc-checkbox-checked-indeterminate-checkmark 90ms linear;transition:none}.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark{animation:mdc-checkbox-checked-indeterminate-mixedmark 90ms linear;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark{animation:mdc-checkbox-indeterminate-checked-checkmark 500ms linear;transition:none}.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-checked-mixedmark 500ms linear;transition:none}.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark{animation:mdc-checkbox-indeterminate-unchecked-mixedmark 300ms linear;transition:none}.mdc-checkbox__native-control:checked~.mdc-checkbox__background,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background{transition:border-color 90ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mdc-checkbox__native-control:checked~.mdc-checkbox__background>.mdc-checkbox__checkmark>.mdc-checkbox__checkmark-path,.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background>.mdc-checkbox__checkmark>.mdc-checkbox__checkmark-path{stroke-dashoffset:0}.mdc-checkbox__native-control:checked~.mdc-checkbox__background>.mdc-checkbox__checkmark{transition:opacity 180ms cubic-bezier(0, 0, 0.2, 1),transform 180ms cubic-bezier(0, 0, 0.2, 1);opacity:1}.mdc-checkbox__native-control:checked~.mdc-checkbox__background>.mdc-checkbox__mixedmark{transform:scaleX(1) rotate(-45deg)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background>.mdc-checkbox__checkmark{transform:rotate(45deg);opacity:0;transition:opacity 90ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms cubic-bezier(0.4, 0, 0.6, 1)}.mdc-checkbox__native-control:indeterminate~.mdc-checkbox__background>.mdc-checkbox__mixedmark{transform:scaleX(1) rotate(0deg);opacity:1}@keyframes mdc-checkbox-unchecked-checked-checkmark-path{0%,50%{stroke-dashoffset:29.7833385}50%{animation-timing-function:cubic-bezier(0, 0, 0.2, 1)}100%{stroke-dashoffset:0}}@keyframes mdc-checkbox-unchecked-indeterminate-mixedmark{0%,68.2%{transform:scaleX(0)}68.2%{animation-timing-function:cubic-bezier(0, 0, 0, 1)}100%{transform:scaleX(1)}}@keyframes mdc-checkbox-checked-unchecked-checkmark-path{from{animation-timing-function:cubic-bezier(0.4, 0, 1, 1);opacity:1;stroke-dashoffset:0}to{opacity:0;stroke-dashoffset:-29.7833385}}@keyframes mdc-checkbox-checked-indeterminate-checkmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(45deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-checked-checkmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(45deg);opacity:0}to{transform:rotate(360deg);opacity:1}}@keyframes mdc-checkbox-checked-indeterminate-mixedmark{from{animation-timing-function:cubic-bezier(0, 0, 0.2, 1);transform:rotate(-45deg);opacity:0}to{transform:rotate(0deg);opacity:1}}@keyframes mdc-checkbox-indeterminate-checked-mixedmark{from{animation-timing-function:cubic-bezier(0.14, 0, 0, 1);transform:rotate(0deg);opacity:1}to{transform:rotate(315deg);opacity:0}}@keyframes mdc-checkbox-indeterminate-unchecked-mixedmark{0%{animation-timing-function:linear;transform:scaleX(1);opacity:1}32.8%,100%{transform:scaleX(0);opacity:0}}.mat-mdc-checkbox{display:inline-block;position:relative;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mat-mdc-checkbox-touch-target,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__native-control,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__ripple,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mat-mdc-checkbox-ripple::before,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__background,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__background>.mdc-checkbox__checkmark,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__background>.mdc-checkbox__checkmark>.mdc-checkbox__checkmark-path,.mat-mdc-checkbox._mat-animation-noopable>.mat-internal-form-field>.mdc-checkbox>.mdc-checkbox__background>.mdc-checkbox__mixedmark{transition:none !important;animation:none !important}.mat-mdc-checkbox label{cursor:pointer}.mat-mdc-checkbox .mat-internal-form-field{color:var(--mat-checkbox-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-checkbox-label-text-font, var(--mat-sys-body-medium-font));line-height:var(--mat-checkbox-label-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-checkbox-label-text-size, var(--mat-sys-body-medium-size));letter-spacing:var(--mat-checkbox-label-text-tracking, var(--mat-sys-body-medium-tracking));font-weight:var(--mat-checkbox-label-text-weight, var(--mat-sys-body-medium-weight))}.mat-mdc-checkbox.mat-mdc-checkbox-disabled.mat-mdc-checkbox-disabled-interactive{pointer-events:auto}.mat-mdc-checkbox.mat-mdc-checkbox-disabled.mat-mdc-checkbox-disabled-interactive input{cursor:default}.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{cursor:default;color:var(--mat-checkbox-disabled-label-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mat-mdc-checkbox.mat-mdc-checkbox-disabled label{color:GrayText}}.mat-mdc-checkbox label:empty{display:none}.mat-mdc-checkbox .mdc-checkbox__ripple{opacity:0}.mat-mdc-checkbox .mat-mdc-checkbox-ripple,.mdc-checkbox__ripple{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-checkbox .mat-mdc-checkbox-ripple:not(:empty),.mdc-checkbox__ripple:not(:empty){transform:translateZ(0)}.mat-mdc-checkbox-ripple .mat-ripple-element{opacity:.1}.mat-mdc-checkbox-touch-target{position:absolute;top:50%;left:50%;height:var(--mat-checkbox-touch-target-size, 48px);width:var(--mat-checkbox-touch-target-size, 48px);transform:translate(-50%, -50%);display:var(--mat-checkbox-touch-target-display, block)}.mat-mdc-checkbox .mat-mdc-checkbox-ripple::before{border-radius:50%}.mdc-checkbox__native-control:focus~.mat-focus-indicator::before{content:""}\n'],encapsulation:2,changeDetection:0})}return xe})(),re=(()=>{class xe{static \u0275fac=function(ce){return new(ce||xe)};static \u0275mod=v.$C({type:xe});static \u0275inj=d.G2t({imports:[G,C.y,C.y]})}return xe})()},6471(Zt,pe,l){"use strict";l.d(pe,{Jl:()=>cn,YN:()=>Ni});var i=l(6838),d=l(9726),w=(l(4123),l(7336),l(438)),e=l(9046),O=l(8968),f=l(2615),u=l(3664),L=l(7705),C=l(1413),B=l(7786),A=l(2046),Pe=l(2496),le=l(1804),Ce=l(1048),xe=(l(9172),l(5558),l(6977),l(1577),l(9417),l(2709)),ce=(l(9336),l(9588),l(2466)),be=l(6881);const ne=["*",[["mat-chip-avatar"],["","matChipAvatar",""]],[["mat-chip-trailing-icon"],["","matChipRemove",""],["","matChipTrailingIcon",""]]],J=["*","mat-chip-avatar, [matChipAvatar]","mat-chip-trailing-icon,[matChipRemove],[matChipTrailingIcon]"];function De(kn,Ri){1&kn&&(u.j41(0,"span",3),u.SdG(1,1),u.k0s())}function Re(kn,Ri){1&kn&&(u.j41(0,"span",6),u.SdG(1,2),u.k0s())}const St=new f.nKC("mat-chips-default-options",{providedIn:"root",factory:()=>({separatorKeyCodes:[w.Fm]})}),ot=new f.nKC("MatChipAvatar"),nt=new f.nKC("MatChipTrailingIcon"),ht=new f.nKC("MatChipEdit"),oe=new f.nKC("MatChipRemove"),Ye=new f.nKC("MatChip");let fe=(()=>{class kn{_elementRef=(0,f.WQX)(u.aKT);_parentChip=(0,f.WQX)(Ye);isInteractive=!0;_isPrimary=!0;_isLeading=!1;get disabled(){return this._disabled||this._parentChip?.disabled||!1}set disabled(vt){this._disabled=vt}_disabled=!1;tabIndex=-1;_allowFocusWhenDisabled=!1;_getDisabledAttribute(){return this.disabled&&!this._allowFocusWhenDisabled?"":null}_getTabindex(){return this.disabled&&!this._allowFocusWhenDisabled||!this.isInteractive?null:this.tabIndex.toString()}constructor(){(0,f.WQX)(O.l).load(A.A),"BUTTON"===this._elementRef.nativeElement.nodeName&&this._elementRef.nativeElement.setAttribute("type","button")}focus(){this._elementRef.nativeElement.focus()}_handleClick(vt){!this.disabled&&this.isInteractive&&this._isPrimary&&(vt.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}_handleKeydown(vt){(vt.keyCode===w.Fm||vt.keyCode===w.t6)&&!this.disabled&&this.isInteractive&&this._isPrimary&&!this._parentChip._isEditing&&(vt.preventDefault(),this._parentChip._handlePrimaryActionInteraction())}static \u0275fac=function(ee){return new(ee||kn)};static \u0275dir=u.FsC({type:kn,selectors:[["","matChipAction",""]],hostAttrs:[1,"mdc-evolution-chip__action","mat-mdc-chip-action"],hostVars:11,hostBindings:function(ee,ye){1&ee&&u.bIt("click",function(Se){return ye._handleClick(Se)})("keydown",function(Se){return ye._handleKeydown(Se)}),2&ee&&(u.BMQ("tabindex",ye._getTabindex())("disabled",ye._getDisabledAttribute())("aria-disabled",ye.disabled),u.AVh("mdc-evolution-chip__action--primary",ye._isPrimary)("mdc-evolution-chip__action--presentational",!ye.isInteractive)("mdc-evolution-chip__action--secondary",!ye._isPrimary)("mdc-evolution-chip__action--trailing",!ye._isPrimary&&!ye._isLeading))},inputs:{isInteractive:"isInteractive",disabled:[2,"disabled","disabled",L.L39],tabIndex:[2,"tabIndex","tabIndex",vt=>null==vt?-1:(0,L.Udg)(vt)],_allowFocusWhenDisabled:"_allowFocusWhenDisabled"}})}return kn})(),cn=(()=>{class kn{_changeDetectorRef=(0,f.WQX)(L.gRc);_elementRef=(0,f.WQX)(u.aKT);_tagName=(0,f.WQX)(L.cCO);_ngZone=(0,f.WQX)(u.SKi);_focusMonitor=(0,f.WQX)(i.FN);_globalRippleOptions=(0,f.WQX)(Pe.$E,{optional:!0});_document=(0,f.WQX)(f.qQL);_onFocus=new C.B;_onBlur=new C.B;_isBasicChip;role=null;_hasFocusInternal=!1;_pendingFocus;_actionChanges;_animationsDisabled=(0,le.Rc)();_allLeadingIcons;_allTrailingIcons;_allEditIcons;_allRemoveIcons;_hasFocus(){return this._hasFocusInternal}id=(0,f.WQX)(d.g).getId("mat-mdc-chip-");ariaLabel=null;ariaDescription=null;_chipListDisabled=!1;_hadFocusOnRemove=!1;_textElement;get value(){return void 0!==this._value?this._value:this._textElement.textContent.trim()}set value(vt){this._value=vt}_value;color;removable=!0;highlighted=!1;disableRipple=!1;get disabled(){return this._disabled||this._chipListDisabled}set disabled(vt){this._disabled=vt}_disabled=!1;removed=new u.bkB;destroyed=new u.bkB;basicChipAttrName="mat-basic-chip";leadingIcon;editIcon;trailingIcon;removeIcon;primaryAction;_rippleLoader=(0,f.WQX)(Ce.E);_injector=(0,f.WQX)(f.zZn);constructor(){const vt=(0,f.WQX)(O.l);vt.load(A.A),vt.load(e.Y),this._monitorFocus(),this._rippleLoader?.configureRipple(this._elementRef.nativeElement,{className:"mat-mdc-chip-ripple",disabled:this._isRippleDisabled()})}ngOnInit(){this._isBasicChip=this._elementRef.nativeElement.hasAttribute(this.basicChipAttrName)||this._tagName.toLowerCase()===this.basicChipAttrName}ngAfterViewInit(){this._textElement=this._elementRef.nativeElement.querySelector(".mat-mdc-chip-action-label"),this._pendingFocus&&(this._pendingFocus=!1,this.focus())}ngAfterContentInit(){this._actionChanges=(0,B.h)(this._allLeadingIcons.changes,this._allTrailingIcons.changes,this._allEditIcons.changes,this._allRemoveIcons.changes).subscribe(()=>this._changeDetectorRef.markForCheck())}ngDoCheck(){this._rippleLoader.setDisabled(this._elementRef.nativeElement,this._isRippleDisabled())}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._rippleLoader?.destroyRipple(this._elementRef.nativeElement),this._actionChanges?.unsubscribe(),this.destroyed.emit({chip:this}),this.destroyed.complete()}remove(){this.removable&&(this._hadFocusOnRemove=this._hasFocus(),this.removed.emit({chip:this}))}_isRippleDisabled(){return this.disabled||this.disableRipple||this._animationsDisabled||this._isBasicChip||!this._hasInteractiveActions()||!!this._globalRippleOptions?.disabled}_hasTrailingIcon(){return!(!this.trailingIcon&&!this.removeIcon)}_handleKeydown(vt){(vt.keyCode===w.G_&&!vt.repeat||vt.keyCode===w.SJ)&&(vt.preventDefault(),this.remove())}focus(){this.disabled||(this.primaryAction?this.primaryAction.focus():this._pendingFocus=!0)}_getSourceAction(vt){return this._getActions().find(ee=>{const ye=ee._elementRef.nativeElement;return ye===vt||ye.contains(vt)})}_getActions(){const vt=[];return this.editIcon&&vt.push(this.editIcon),this.primaryAction&&vt.push(this.primaryAction),this.removeIcon&&vt.push(this.removeIcon),this.trailingIcon&&vt.push(this.trailingIcon),vt}_handlePrimaryActionInteraction(){}_hasInteractiveActions(){return this._getActions().some(vt=>vt.isInteractive)}_edit(vt){}_monitorFocus(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(vt=>{const ee=null!==vt;ee!==this._hasFocusInternal&&(this._hasFocusInternal=ee,ee?this._onFocus.next({chip:this}):(this._changeDetectorRef.markForCheck(),setTimeout(()=>this._ngZone.run(()=>this._onBlur.next({chip:this})))))})}static \u0275fac=function(ee){return new(ee||kn)};static \u0275cmp=u.VBU({type:kn,selectors:[["mat-basic-chip"],["","mat-basic-chip",""],["mat-chip"],["","mat-chip",""]],contentQueries:function(ee,ye,ke){if(1&ee&&(u.wni(ke,ot,5),u.wni(ke,ht,5),u.wni(ke,nt,5),u.wni(ke,oe,5),u.wni(ke,ot,5),u.wni(ke,nt,5),u.wni(ke,ht,5),u.wni(ke,oe,5)),2&ee){let Se;u.mGM(Se=u.lsd())&&(ye.leadingIcon=Se.first),u.mGM(Se=u.lsd())&&(ye.editIcon=Se.first),u.mGM(Se=u.lsd())&&(ye.trailingIcon=Se.first),u.mGM(Se=u.lsd())&&(ye.removeIcon=Se.first),u.mGM(Se=u.lsd())&&(ye._allLeadingIcons=Se),u.mGM(Se=u.lsd())&&(ye._allTrailingIcons=Se),u.mGM(Se=u.lsd())&&(ye._allEditIcons=Se),u.mGM(Se=u.lsd())&&(ye._allRemoveIcons=Se)}},viewQuery:function(ee,ye){if(1&ee&&u.GBs(fe,5),2&ee){let ke;u.mGM(ke=u.lsd())&&(ye.primaryAction=ke.first)}},hostAttrs:[1,"mat-mdc-chip"],hostVars:31,hostBindings:function(ee,ye){1&ee&&u.bIt("keydown",function(Se){return ye._handleKeydown(Se)}),2&ee&&(u.Avn("id",ye.id),u.BMQ("role",ye.role)("aria-label",ye.ariaLabel),u.HbH("mat-"+(ye.color||"primary")),u.AVh("mdc-evolution-chip",!ye._isBasicChip)("mdc-evolution-chip--disabled",ye.disabled)("mdc-evolution-chip--with-trailing-action",ye._hasTrailingIcon())("mdc-evolution-chip--with-primary-graphic",ye.leadingIcon)("mdc-evolution-chip--with-primary-icon",ye.leadingIcon)("mdc-evolution-chip--with-avatar",ye.leadingIcon)("mat-mdc-chip-with-avatar",ye.leadingIcon)("mat-mdc-chip-highlighted",ye.highlighted)("mat-mdc-chip-disabled",ye.disabled)("mat-mdc-basic-chip",ye._isBasicChip)("mat-mdc-standard-chip",!ye._isBasicChip)("mat-mdc-chip-with-trailing-icon",ye._hasTrailingIcon())("_mat-animation-noopable",ye._animationsDisabled))},inputs:{role:"role",id:"id",ariaLabel:[0,"aria-label","ariaLabel"],ariaDescription:[0,"aria-description","ariaDescription"],value:"value",color:"color",removable:[2,"removable","removable",L.L39],highlighted:[2,"highlighted","highlighted",L.L39],disableRipple:[2,"disableRipple","disableRipple",L.L39],disabled:[2,"disabled","disabled",L.L39]},outputs:{removed:"removed",destroyed:"destroyed"},exportAs:["matChip"],features:[u.Jv_([{provide:Ye,useExisting:kn}])],ngContentSelectors:J,decls:8,vars:3,consts:[[1,"mat-mdc-chip-focus-overlay"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--primary"],["matChipAction","",3,"isInteractive"],[1,"mdc-evolution-chip__graphic","mat-mdc-chip-graphic"],[1,"mdc-evolution-chip__text-label","mat-mdc-chip-action-label"],[1,"mat-mdc-chip-primary-focus-indicator","mat-focus-indicator"],[1,"mdc-evolution-chip__cell","mdc-evolution-chip__cell--trailing"]],template:function(ee,ye){1&ee&&(u.NAR(ne),u.nrm(0,"span",0),u.j41(1,"span",1)(2,"span",2),u.nVh(3,De,2,0,"span",3),u.j41(4,"span",4),u.SdG(5),u.nrm(6,"span",5),u.k0s()()(),u.nVh(7,Re,2,0,"span",6)),2&ee&&(u.R7$(2),u.Y8G("isInteractive",!1),u.R7$(),u.vxM(ye.leadingIcon?3:-1),u.R7$(4),u.vxM(ye._hasTrailingIcon()?7:-1))},dependencies:[fe],styles:['.mdc-evolution-chip,.mdc-evolution-chip__cell,.mdc-evolution-chip__action{display:inline-flex;align-items:center}.mdc-evolution-chip{position:relative;max-width:100%}.mdc-evolution-chip__cell,.mdc-evolution-chip__action{height:100%}.mdc-evolution-chip__cell--primary{flex-basis:100%;overflow-x:hidden}.mdc-evolution-chip__cell--trailing{flex:1 0 auto}.mdc-evolution-chip__action{align-items:center;background:none;border:none;box-sizing:content-box;cursor:pointer;display:inline-flex;justify-content:center;outline:none;padding:0;text-decoration:none;color:inherit}.mdc-evolution-chip__action--presentational{cursor:auto}.mdc-evolution-chip--disabled,.mdc-evolution-chip__action:disabled{pointer-events:none}@media(forced-colors: active){.mdc-evolution-chip--disabled,.mdc-evolution-chip__action:disabled{forced-color-adjust:none}}.mdc-evolution-chip__action--primary{font:inherit;letter-spacing:inherit;white-space:inherit;overflow-x:hidden}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary::before{border-width:var(--mat-chip-outline-width, 1px);border-radius:var(--mat-chip-container-shape-radius, 8px);box-sizing:border-box;content:"";height:100%;left:0;position:absolute;pointer-events:none;top:0;width:100%;z-index:1;border-style:solid}.mat-mdc-standard-chip .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__action--primary::before{border-color:var(--mat-chip-outline-color, var(--mat-sys-outline))}.mdc-evolution-chip__action--primary:not(.mdc-evolution-chip__action--presentational):not(.mdc-ripple-upgraded):focus::before{border-color:var(--mat-chip-focus-outline-color, var(--mat-sys-on-surface-variant))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__action--primary::before{border-color:var(--mat-chip-disabled-outline-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__action--primary::before{border-width:var(--mat-chip-flat-selected-outline-width, 0)}.mat-mdc-basic-chip .mdc-evolution-chip__action--primary{font:inherit}.mat-mdc-standard-chip.mdc-evolution-chip--with-leading-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-leading-action .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}.mat-mdc-standard-chip.mdc-evolution-chip--with-leading-action.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}[dir=rtl] .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:0;padding-right:12px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--primary{padding-left:12px;padding-right:0}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary{padding-left:0;padding-right:0}.mdc-evolution-chip__action--secondary{position:relative;overflow:visible}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__action--secondary{color:var(--mat-chip-with-trailing-icon-trailing-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__action--secondary{color:var(--mat-chip-with-trailing-icon-disabled-trailing-icon-color, var(--mat-sys-on-surface))}.mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--secondary{padding-left:8px;padding-right:8px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--secondary{padding-left:8px;padding-right:8px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--secondary{padding-left:8px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--secondary{padding-left:8px;padding-right:8px}.mdc-evolution-chip__text-label{-webkit-user-select:none;user-select:none;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.mat-mdc-standard-chip .mdc-evolution-chip__text-label{font-family:var(--mat-chip-label-text-font, var(--mat-sys-label-large-font));line-height:var(--mat-chip-label-text-line-height, var(--mat-sys-label-large-line-height));font-size:var(--mat-chip-label-text-size, var(--mat-sys-label-large-size));font-weight:var(--mat-chip-label-text-weight, var(--mat-sys-label-large-weight));letter-spacing:var(--mat-chip-label-text-tracking, var(--mat-sys-label-large-tracking))}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mat-chip-label-text-color, var(--mat-sys-on-surface-variant))}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__text-label{color:var(--mat-chip-selected-label-text-color, var(--mat-sys-on-secondary-container))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label,.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled .mdc-evolution-chip__text-label{color:var(--mat-chip-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-evolution-chip__graphic{align-items:center;display:inline-flex;justify-content:center;overflow:hidden;pointer-events:none;position:relative;flex:1 0 auto}.mat-mdc-standard-chip .mdc-evolution-chip__graphic{width:var(--mat-chip-with-avatar-avatar-size, 24px);height:var(--mat-chip-with-avatar-avatar-size, 24px);font-size:var(--mat-chip-with-avatar-avatar-size, 24px)}.mdc-evolution-chip--selecting .mdc-evolution-chip__graphic{transition:width 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selectable:not(.mdc-evolution-chip--selected):not(.mdc-evolution-chip--with-primary-icon) .mdc-evolution-chip__graphic{width:0}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:4px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic{padding-left:8px;padding-right:4px}.mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:6px;padding-right:6px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:4px;padding-right:8px}[dir=rtl] .mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic{padding-left:8px;padding-right:4px}.mdc-evolution-chip--with-avatar.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-leading-action .mdc-evolution-chip__graphic{padding-left:0}.mdc-evolution-chip__checkmark{position:absolute;opacity:0;top:50%;left:50%;height:20px;width:20px}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__checkmark{color:var(--mat-chip-with-icon-selected-icon-color, var(--mat-sys-on-secondary-container))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__checkmark{color:var(--mat-chip-with-icon-disabled-icon-color, var(--mat-sys-on-surface))}.mdc-evolution-chip--selecting .mdc-evolution-chip__checkmark{transition:transform 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1);transform:translate(-75%, -50%)}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{transform:translate(-50%, -50%);opacity:1}.mdc-evolution-chip__checkmark-svg{display:block}.mdc-evolution-chip__checkmark-path{stroke-width:2px;stroke-dasharray:29.7833385;stroke-dashoffset:29.7833385;stroke:currentColor}.mdc-evolution-chip--selecting .mdc-evolution-chip__checkmark-path{transition:stroke-dashoffset 150ms 45ms cubic-bezier(0.4, 0, 0.2, 1)}.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark-path{stroke-dashoffset:0}@media(forced-colors: active){.mdc-evolution-chip__checkmark-path{stroke:CanvasText !important}}.mat-mdc-standard-chip .mdc-evolution-chip__icon--trailing{height:18px;width:18px;font-size:18px}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove{opacity:calc(var(--mat-chip-trailing-action-opacity, 1)*var(--mat-chip-with-trailing-icon-disabled-trailing-icon-opacity, 0.38))}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing.mat-mdc-chip-remove:focus{opacity:calc(var(--mat-chip-trailing-action-focus-opacity, 1)*var(--mat-chip-with-trailing-icon-disabled-trailing-icon-opacity, 0.38))}.mat-mdc-standard-chip{border-radius:var(--mat-chip-container-shape-radius, 8px);height:var(--mat-chip-container-height, 32px)}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled){background-color:var(--mat-chip-elevated-container-color, transparent)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{background-color:var(--mat-chip-elevated-disabled-container-color)}.mat-mdc-standard-chip.mdc-evolution-chip--selected:not(.mdc-evolution-chip--disabled){background-color:var(--mat-chip-elevated-selected-container-color, var(--mat-sys-secondary-container))}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled{background-color:var(--mat-chip-flat-disabled-selected-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}@media(forced-colors: active){.mat-mdc-standard-chip{outline:solid 1px}}.mat-mdc-standard-chip .mdc-evolution-chip__icon--primary{border-radius:var(--mat-chip-with-avatar-avatar-shape-radius, 24px);width:var(--mat-chip-with-icon-icon-size, 18px);height:var(--mat-chip-with-icon-icon-size, 18px);font-size:var(--mat-chip-with-icon-icon-size, 18px)}.mdc-evolution-chip--selected .mdc-evolution-chip__icon--primary{opacity:0}.mat-mdc-standard-chip:not(.mdc-evolution-chip--disabled) .mdc-evolution-chip__icon--primary{color:var(--mat-chip-with-icon-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-standard-chip.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--primary{color:var(--mat-chip-with-icon-disabled-icon-color, var(--mat-sys-on-surface))}.mat-mdc-chip-highlighted{--mat-chip-with-icon-icon-color: var(--mat-chip-with-icon-selected-icon-color, var(--mat-sys-on-secondary-container));--mat-chip-elevated-container-color: var(--mat-chip-elevated-selected-container-color, var(--mat-sys-secondary-container));--mat-chip-label-text-color: var(--mat-chip-selected-label-text-color, var(--mat-sys-on-secondary-container));--mat-chip-outline-width: var(--mat-chip-flat-selected-outline-width, 0)}.mat-mdc-chip-focus-overlay{background:var(--mat-chip-focus-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-chip-selected .mat-mdc-chip-focus-overlay,.mat-mdc-chip-highlighted .mat-mdc-chip-focus-overlay{background:var(--mat-chip-selected-focus-state-layer-color, var(--mat-sys-on-secondary-container))}.mat-mdc-chip:hover .mat-mdc-chip-focus-overlay{background:var(--mat-chip-hover-state-layer-color, var(--mat-sys-on-surface-variant));opacity:var(--mat-chip-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-chip-focus-overlay .mat-mdc-chip-selected:hover,.mat-mdc-chip-highlighted:hover .mat-mdc-chip-focus-overlay{background:var(--mat-chip-selected-hover-state-layer-color, var(--mat-sys-on-secondary-container));opacity:var(--mat-chip-selected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-chip.cdk-focused .mat-mdc-chip-focus-overlay{background:var(--mat-chip-focus-state-layer-color, var(--mat-sys-on-surface-variant));opacity:var(--mat-chip-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-chip-selected.cdk-focused .mat-mdc-chip-focus-overlay,.mat-mdc-chip-highlighted.cdk-focused .mat-mdc-chip-focus-overlay{background:var(--mat-chip-selected-focus-state-layer-color, var(--mat-sys-on-secondary-container));opacity:var(--mat-chip-selected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-evolution-chip--disabled:not(.mdc-evolution-chip--selected) .mat-mdc-chip-avatar{opacity:var(--mat-chip-with-avatar-disabled-avatar-opacity, 0.38)}.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{opacity:var(--mat-chip-with-trailing-icon-disabled-trailing-icon-opacity, 0.38)}.mdc-evolution-chip--disabled.mdc-evolution-chip--selected .mdc-evolution-chip__checkmark{opacity:var(--mat-chip-with-icon-disabled-icon-opacity, 0.38)}.mat-mdc-standard-chip.mdc-evolution-chip--disabled{opacity:var(--mat-chip-disabled-container-opacity, 1)}.mat-mdc-standard-chip.mdc-evolution-chip--selected .mdc-evolution-chip__icon--trailing,.mat-mdc-standard-chip.mat-mdc-chip-highlighted .mdc-evolution-chip__icon--trailing{color:var(--mat-chip-selected-trailing-icon-color, var(--mat-sys-on-secondary-container))}.mat-mdc-standard-chip.mdc-evolution-chip--selected.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mdc-evolution-chip--disabled .mdc-evolution-chip__icon--trailing{color:var(--mat-chip-selected-disabled-trailing-icon-color, var(--mat-sys-on-surface))}.mat-mdc-chip-edit,.mat-mdc-chip-remove{opacity:var(--mat-chip-trailing-action-opacity, 1)}.mat-mdc-chip-edit:focus,.mat-mdc-chip-remove:focus{opacity:var(--mat-chip-trailing-action-focus-opacity, 1)}.mat-mdc-chip-edit::after,.mat-mdc-chip-remove::after{background-color:var(--mat-chip-trailing-action-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-chip-edit:hover::after,.mat-mdc-chip-remove:hover::after{opacity:var(--mat-chip-trailing-action-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-chip-edit:focus::after,.mat-mdc-chip-remove:focus::after{opacity:var(--mat-chip-trailing-action-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-chip-selected .mat-mdc-chip-remove::after,.mat-mdc-chip-highlighted .mat-mdc-chip-remove::after{background-color:var(--mat-chip-selected-trailing-action-state-layer-color, var(--mat-sys-on-secondary-container))}.mat-mdc-standard-chip{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-standard-chip .mdc-evolution-chip__cell--primary,.mat-mdc-standard-chip .mdc-evolution-chip__action--primary,.mat-mdc-standard-chip .mat-mdc-chip-action-label{overflow:visible}.mat-mdc-standard-chip .mat-mdc-chip-graphic,.mat-mdc-standard-chip .mat-mdc-chip-trailing-icon{box-sizing:content-box}.mat-mdc-standard-chip._mat-animation-noopable,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__graphic,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__checkmark,.mat-mdc-standard-chip._mat-animation-noopable .mdc-evolution-chip__checkmark-path{transition-duration:1ms;animation-duration:1ms}.mat-mdc-chip-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;opacity:0;border-radius:inherit;transition:opacity 150ms linear}._mat-animation-noopable .mat-mdc-chip-focus-overlay{transition:none}.mat-mdc-basic-chip .mat-mdc-chip-focus-overlay{display:none}.mat-mdc-chip .mat-ripple.mat-mdc-chip-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-chip-avatar{text-align:center;line-height:1;color:var(--mat-chip-with-icon-icon-color, currentColor)}.mat-mdc-chip{position:relative;z-index:0}.mat-mdc-chip-action-label{text-align:left;z-index:1}[dir=rtl] .mat-mdc-chip-action-label{text-align:right}.mat-mdc-chip.mdc-evolution-chip--with-trailing-action .mat-mdc-chip-action-label{position:relative}.mat-mdc-chip-action-label .mat-mdc-chip-primary-focus-indicator{position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.mat-mdc-chip-action-label .mat-focus-indicator::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-mdc-chip-edit::before,.mat-mdc-chip-remove::before{margin:calc(var(--mat-focus-indicator-border-width, 3px)*-1);left:8px;right:8px}.mat-mdc-chip-edit::after,.mat-mdc-chip-remove::after{content:"";display:block;opacity:0;position:absolute;top:-3px;bottom:-3px;left:5px;right:5px;border-radius:50%;box-sizing:border-box;padding:12px;margin:-12px;background-clip:content-box}.mat-mdc-chip-edit .mat-icon,.mat-mdc-chip-remove .mat-icon{width:18px;height:18px;font-size:18px;box-sizing:content-box}.mat-chip-edit-input{cursor:text;display:inline-block;color:inherit;outline:0}@media(forced-colors: active){.mat-mdc-chip-selected:not(.mat-mdc-chip-multiple){outline-width:3px}}.mat-mdc-chip-action:focus .mat-focus-indicator::before{content:""}.mdc-evolution-chip__icon,.mat-mdc-chip-edit .mat-icon,.mat-mdc-chip-remove .mat-icon{min-height:fit-content}img.mdc-evolution-chip__icon{min-height:0}\n'],encapsulation:2,changeDetection:0})}return kn})(),Ni=(()=>{class kn{static \u0275fac=function(ee){return new(ee||kn)};static \u0275mod=u.$C({type:kn});static \u0275inj=f.G2t({providers:[xe.e,{provide:St,useValue:{separatorKeyCodes:[w.Fm]}}],imports:[ce.y,be.p,ce.y]})}return kn})()},2466(Zt,pe,l){"use strict";l.d(pe,{y:()=>e});var i=l(7094),d=l(8203),v=l(2615),T=l(3664);let e=(()=>{class O{constructor(){(0,v.WQX)(i.Q_)._applyBodyHighContrastModeCssClasses()}static \u0275fac=function(L){return new(L||O)};static \u0275mod=T.$C({type:O});static \u0275inj=v.G2t({imports:[d.jI,d.jI]})}return O})()},3(Zt,pe,l){"use strict";l.d(pe,{WX:()=>Pe,xW:()=>L});var v=l(2615),T=l(3664),w=l(9945);const O=/^\d{4}-\d{2}-\d{2}(?:T\d{2}:\d{2}:\d{2}(?:\.\d+)?(?:Z|(?:(?:\+|-)\d{2}:\d{2}))?)?$/,f=/^(\d?\d)[:.](\d?\d)(?:[:.](\d?\d))?\s*(AM|PM)?$/i;function u(Ce,Ae){const j=Array(Ce);for(let W=0;W{class Ce extends w.MJ{useUtcForDisplay=!1;_matDateLocale=(0,v.WQX)(w.Ju,{optional:!0});constructor(){super();const j=(0,v.WQX)(w.Ju,{optional:!0});void 0!==j&&(this._matDateLocale=j),super.setLocale(this._matDateLocale)}getYear(j){return j.getFullYear()}getMonth(j){return j.getMonth()}getDate(j){return j.getDate()}getDayOfWeek(j){return j.getDay()}getMonthNames(j){const W=new Intl.DateTimeFormat(this.locale,{month:j,timeZone:"utc"});return u(12,G=>this._format(W,new Date(2017,G,1)))}getDateNames(){const j=new Intl.DateTimeFormat(this.locale,{day:"numeric",timeZone:"utc"});return u(31,W=>this._format(j,new Date(2017,0,W+1)))}getDayOfWeekNames(j){const W=new Intl.DateTimeFormat(this.locale,{weekday:j,timeZone:"utc"});return u(7,G=>this._format(W,new Date(2017,0,G+1)))}getYearName(j){const W=new Intl.DateTimeFormat(this.locale,{year:"numeric",timeZone:"utc"});return this._format(W,j)}getFirstDayOfWeek(){if(typeof Intl<"u"&&Intl.Locale){const j=new Intl.Locale(this.locale),W=(j.getWeekInfo?.()||j.weekInfo)?.firstDay??0;return 7===W?0:W}return 0}getNumDaysInMonth(j){return this.getDate(this._createDateWithOverflow(this.getYear(j),this.getMonth(j)+1,0))}clone(j){return new Date(j.getTime())}createDate(j,W,G){let re=this._createDateWithOverflow(j,W,G);return re.getMonth(),re}today(){return new Date}parse(j,W){return"number"==typeof j?new Date(j):j?new Date(Date.parse(j)):null}format(j,W){if(!this.isValid(j))throw Error("NativeDateAdapter: Cannot format invalid date.");const G=new Intl.DateTimeFormat(this.locale,{...W,timeZone:"utc"});return this._format(G,j)}addCalendarYears(j,W){return this.addCalendarMonths(j,12*W)}addCalendarMonths(j,W){let G=this._createDateWithOverflow(this.getYear(j),this.getMonth(j)+W,this.getDate(j));return this.getMonth(G)!=((this.getMonth(j)+W)%12+12)%12&&(G=this._createDateWithOverflow(this.getYear(G),this.getMonth(G),0)),G}addCalendarDays(j,W){return this._createDateWithOverflow(this.getYear(j),this.getMonth(j),this.getDate(j)+W)}toIso8601(j){return[j.getUTCFullYear(),this._2digit(j.getUTCMonth()+1),this._2digit(j.getUTCDate())].join("-")}deserialize(j){if("string"==typeof j){if(!j)return null;if(O.test(j)){let W=new Date(j);if(this.isValid(W))return W}}return super.deserialize(j)}isDateInstance(j){return j instanceof Date}isValid(j){return!isNaN(j.getTime())}invalid(){return new Date(NaN)}setTime(j,W,G,re){const xe=this.clone(j);return xe.setHours(W,G,re,0),xe}getHours(j){return j.getHours()}getMinutes(j){return j.getMinutes()}getSeconds(j){return j.getSeconds()}parseTime(j,W){if("string"!=typeof j)return j instanceof Date?new Date(j.getTime()):null;const G=j.trim();if(0===G.length)return null;let re=this._parseTimeString(G);if(null===re){const xe=G.replace(/[^0-9:(AM|PM)]/gi,"").trim();xe.length>0&&(re=this._parseTimeString(xe))}return re||this.invalid()}addSeconds(j,W){return new Date(j.getTime()+1e3*W)}_createDateWithOverflow(j,W,G){const re=new Date;return re.setFullYear(j,W,G),re.setHours(0,0,0,0),re}_2digit(j){return("00"+j).slice(-2)}_format(j,W){const G=new Date;return G.setUTCFullYear(W.getFullYear(),W.getMonth(),W.getDate()),G.setUTCHours(W.getHours(),W.getMinutes(),W.getSeconds(),W.getMilliseconds()),j.format(G)}_parseTimeString(j){const W=j.toUpperCase().match(f);if(W){let G=parseInt(W[1]);const re=parseInt(W[2]);let xe=null==W[3]?void 0:parseInt(W[3]);const Ee=W[4];if(12===G?G="AM"===Ee?0:G:"PM"===Ee&&(G+=12),C(G,0,23)&&C(re,0,59)&&(null==xe||C(xe,0,59)))return this.setTime(this.today(),G,re,xe||0)}return null}static \u0275fac=function(W){return new(W||Ce)};static \u0275prov=v.jDH({token:Ce,factory:Ce.\u0275fac})}return Ce})();function C(Ce,Ae,j){return!isNaN(Ce)&&Ce>=Ae&&Ce<=j}const B={parse:{dateInput:null,timeInput:null},display:{dateInput:{year:"numeric",month:"numeric",day:"numeric"},timeInput:{hour:"numeric",minute:"numeric"},monthYearLabel:{year:"numeric",month:"short"},dateA11yLabel:{year:"numeric",month:"long",day:"numeric"},monthYearA11yLabel:{year:"numeric",month:"long"},timeOptionLabel:{hour:"numeric",minute:"numeric"}}};let Pe=(()=>{class Ce{static \u0275fac=function(W){return new(W||Ce)};static \u0275mod=T.$C({type:Ce});static \u0275inj=v.G2t({providers:[le()]})}return Ce})();function le(Ce=B){return[{provide:w.MJ,useClass:L},{provide:w.de,useValue:Ce}]}},9945(Zt,pe,l){"use strict";l.d(pe,{Ju:()=>T,MJ:()=>O,de:()=>f});var i=l(2615),d=l(3664),v=l(1413);const T=new i.nKC("MAT_DATE_LOCALE",{providedIn:"root",factory:function w(){return(0,i.WQX)(d.xe9)}}),e="Method not implemented";class O{locale;_localeChanges=new v.B;localeChanges=this._localeChanges;setTime(L,C,B,A){throw new Error(e)}getHours(L){throw new Error(e)}getMinutes(L){throw new Error(e)}getSeconds(L){throw new Error(e)}parseTime(L,C){throw new Error(e)}addSeconds(L,C){throw new Error(e)}getValidDateOrNull(L){return this.isDateInstance(L)&&this.isValid(L)?L:null}deserialize(L){return null==L||this.isDateInstance(L)&&this.isValid(L)?L:this.invalid()}setLocale(L){this.locale=L,this._localeChanges.next()}compareDate(L,C){return this.getYear(L)-this.getYear(C)||this.getMonth(L)-this.getMonth(C)||this.getDate(L)-this.getDate(C)}compareTime(L,C){return this.getHours(L)-this.getHours(C)||this.getMinutes(L)-this.getMinutes(C)||this.getSeconds(L)-this.getSeconds(C)}sameDate(L,C){if(L&&C){let B=this.isValid(L),A=this.isValid(C);return B&&A?!this.compareDate(L,C):B==A}return L==C}sameTime(L,C){if(L&&C){const B=this.isValid(L),A=this.isValid(C);return B&&A?!this.compareTime(L,C):B==A}return L==C}clampDate(L,C,B){return C&&this.compareDate(L,C)<0?C:B&&this.compareDate(L,B)>0?B:L}}const f=new i.nKC("mat-date-formats")},5084(Zt,pe,l){"use strict";l.d(pe,{Vh:()=>Wn,X6:()=>Ii,bU:()=>vn,bZ:()=>Ta});var _e=l(2615),he=l(3664),Dt=l(7705),lt=l(1413),Le=l(8359),te=l(7786),ie=l(7673),P=l(9945),F=l(6838),ve=l(7094),H=l(9726),$=l(1577),Ke=l(4085),Vt=l(7336),St=l(438),ot=l(9338),nt=l(9842),ht=l(4522),oe=l(6939),Ye=l(5964),fe=l(9172),Qe=l(6697),gt=l(2200),Gt=l(9046),rt=l(8968),cn=l(2046),Ft=l(8834),Sn=l(2598),Qn=l(455),h=l(1804),jt=l(9417),Ue=l(8010),wt=l(9588),pt=l(5718),Pt=l(2466);const gn=["mat-calendar-body",""];function ei(nn,ni){return this._trackRow(ni)}const vi=(nn,ni)=>ni.id;function Ni(nn,ni){if(1&nn&&(he.j41(0,"tr",0)(1,"td",3),he.EFF(2),he.k0s()()),2&nn){const U=he.XpG();he.R7$(),he.xc7("padding-top",U._cellPadding)("padding-bottom",U._cellPadding),he.BMQ("colspan",U.numCols),he.R7$(),he.SpI(" ",U.label," ")}}function kn(nn,ni){if(1&nn&&(he.j41(0,"td",3),he.EFF(1),he.k0s()),2&nn){const U=he.XpG(2);he.xc7("padding-top",U._cellPadding)("padding-bottom",U._cellPadding),he.BMQ("colspan",U._firstRowOffset),he.R7$(),he.SpI(" ",U._firstRowOffset>=U.labelMinRequiredCells?U.label:""," ")}}function Ri(nn,ni){if(1&nn){const U=he.RV6();he.j41(0,"td",6)(1,"button",7),he.bIt("click",function(Ze){const Xt=_e.eBV(U).$implicit,Nn=he.XpG(2);return _e.Njj(Nn._cellClicked(Xt,Ze))})("focus",function(Ze){const Xt=_e.eBV(U).$implicit,Nn=he.XpG(2);return _e.Njj(Nn._emitActiveDateChange(Xt,Ze))}),he.j41(2,"span",8),he.EFF(3),he.k0s(),he.nrm(4,"span",9),he.k0s()()}if(2&nn){const U=ni.$implicit,tt=ni.$index,Ze=he.XpG().$index,Xt=he.XpG();he.xc7("width",Xt._cellWidth)("padding-top",Xt._cellPadding)("padding-bottom",Xt._cellPadding),he.BMQ("data-mat-row",Ze)("data-mat-col",tt),he.R7$(),he.AVh("mat-calendar-body-disabled",!U.enabled)("mat-calendar-body-active",Xt._isActiveCell(Ze,tt))("mat-calendar-body-range-start",Xt._isRangeStart(U.compareValue))("mat-calendar-body-range-end",Xt._isRangeEnd(U.compareValue))("mat-calendar-body-in-range",Xt._isInRange(U.compareValue))("mat-calendar-body-comparison-bridge-start",Xt._isComparisonBridgeStart(U.compareValue,Ze,tt))("mat-calendar-body-comparison-bridge-end",Xt._isComparisonBridgeEnd(U.compareValue,Ze,tt))("mat-calendar-body-comparison-start",Xt._isComparisonStart(U.compareValue))("mat-calendar-body-comparison-end",Xt._isComparisonEnd(U.compareValue))("mat-calendar-body-in-comparison-range",Xt._isInComparisonRange(U.compareValue))("mat-calendar-body-preview-start",Xt._isPreviewStart(U.compareValue))("mat-calendar-body-preview-end",Xt._isPreviewEnd(U.compareValue))("mat-calendar-body-in-preview",Xt._isInPreview(U.compareValue)),he.Y8G("ngClass",U.cssClasses)("tabindex",Xt._isActiveCell(Ze,tt)?0:-1),he.BMQ("aria-label",U.ariaLabel)("aria-disabled",!U.enabled||null)("aria-pressed",Xt._isSelected(U.compareValue))("aria-current",Xt.todayValue===U.compareValue?"date":null)("aria-describedby",Xt._getDescribedby(U.compareValue)),he.R7$(),he.AVh("mat-calendar-body-selected",Xt._isSelected(U.compareValue))("mat-calendar-body-comparison-identical",Xt._isComparisonIdentical(U.compareValue))("mat-calendar-body-today",Xt.todayValue===U.compareValue),he.R7$(),he.SpI(" ",U.displayValue," ")}}function vt(nn,ni){if(1&nn&&(he.j41(0,"tr",1),he.nVh(1,kn,2,6,"td",4),he.Z7z(2,Ri,5,48,"td",5,vi),he.k0s()),2&nn){const U=ni.$implicit,tt=ni.$index,Ze=he.XpG();he.R7$(),he.vxM(0===tt&&Ze._firstRowOffset?1:-1),he.R7$(),he.Dyx(U)}}function ee(nn,ni){if(1&nn&&(he.j41(0,"th",2)(1,"span",6),he.EFF(2),he.k0s(),he.j41(3,"span",3),he.EFF(4),he.k0s()()),2&nn){const U=ni.$implicit;he.R7$(2),he.JRh(U.long),he.R7$(2),he.JRh(U.narrow)}}const ye=["*"];function ke(nn,ni){}function Se(nn,ni){if(1&nn){const U=he.RV6();he.j41(0,"mat-month-view",4),he.mxI("activeDateChange",function(Ze){_e.eBV(U);const Xt=he.XpG();return he.DH7(Xt.activeDate,Ze)||(Xt.activeDate=Ze),_e.Njj(Ze)}),he.bIt("_userSelection",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._dateSelected(Ze))})("dragStarted",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._dragStarted(Ze))})("dragEnded",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._dragEnded(Ze))}),he.k0s()}if(2&nn){const U=he.XpG();he.R50("activeDate",U.activeDate),he.Y8G("selected",U.selected)("dateFilter",U.dateFilter)("maxDate",U.maxDate)("minDate",U.minDate)("dateClass",U.dateClass)("comparisonStart",U.comparisonStart)("comparisonEnd",U.comparisonEnd)("startDateAccessibleName",U.startDateAccessibleName)("endDateAccessibleName",U.endDateAccessibleName)("activeDrag",U._activeDrag)}}function ge(nn,ni){if(1&nn){const U=he.RV6();he.j41(0,"mat-year-view",5),he.mxI("activeDateChange",function(Ze){_e.eBV(U);const Xt=he.XpG();return he.DH7(Xt.activeDate,Ze)||(Xt.activeDate=Ze),_e.Njj(Ze)}),he.bIt("monthSelected",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._monthSelectedInYearView(Ze))})("selectedChange",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._goToDateInView(Ze,"month"))}),he.k0s()}if(2&nn){const U=he.XpG();he.R50("activeDate",U.activeDate),he.Y8G("selected",U.selected)("dateFilter",U.dateFilter)("maxDate",U.maxDate)("minDate",U.minDate)("dateClass",U.dateClass)}}function N(nn,ni){if(1&nn){const U=he.RV6();he.j41(0,"mat-multi-year-view",6),he.mxI("activeDateChange",function(Ze){_e.eBV(U);const Xt=he.XpG();return he.DH7(Xt.activeDate,Ze)||(Xt.activeDate=Ze),_e.Njj(Ze)}),he.bIt("yearSelected",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._yearSelectedInMultiYearView(Ze))})("selectedChange",function(Ze){_e.eBV(U);const Xt=he.XpG();return _e.Njj(Xt._goToDateInView(Ze,"year"))}),he.k0s()}if(2&nn){const U=he.XpG();he.R50("activeDate",U.activeDate),he.Y8G("selected",U.selected)("dateFilter",U.dateFilter)("maxDate",U.maxDate)("minDate",U.minDate)("dateClass",U.dateClass)}}function Z(nn,ni){}const Me=["button"],at=[[["","matDatepickerToggleIcon",""]]],qe=["[matDatepickerToggleIcon]"];function pn(nn,ni){1&nn&&(_e.qSk(),he.j41(0,"svg",2),he.nrm(1,"path",3),he.k0s())}let Ot=(()=>{class nn{changes=new lt.B;calendarLabel="Calendar";openCalendarLabel="Open calendar";closeCalendarLabel="Close calendar";prevMonthLabel="Previous month";nextMonthLabel="Next month";prevYearLabel="Previous year";nextYearLabel="Next year";prevMultiYearLabel="Previous 24 years";nextMultiYearLabel="Next 24 years";switchToMonthViewLabel="Choose date";switchToMultiYearViewLabel="Choose month and year";startDateLabel="Start date";endDateLabel="End date";comparisonDateLabel="Comparison range";formatYearRange(U,tt){return`${U} \u2013 ${tt}`}formatYearRangeLabel(U,tt){return`${U} to ${tt}`}static \u0275fac=function(tt){return new(tt||nn)};static \u0275prov=_e.jDH({token:nn,factory:nn.\u0275fac,providedIn:"root"})}return nn})(),se=0;class We{value;displayValue;ariaLabel;enabled;cssClasses;compareValue;rawValue;id=se++;constructor(ni,U,tt,Ze,Xt={},Nn=ni,Ki){this.value=ni,this.displayValue=U,this.ariaLabel=tt,this.enabled=Ze,this.cssClasses=Xt,this.compareValue=Nn,this.rawValue=Ki}}const bt={passive:!1,capture:!0},tn={passive:!0,capture:!0},on={passive:!0};let un=(()=>{class nn{_elementRef=(0,_e.WQX)(he.aKT);_ngZone=(0,_e.WQX)(he.SKi);_platform=(0,_e.WQX)(nt.O);_intl=(0,_e.WQX)(Ot);_eventCleanups;_skipNextFocus;_focusActiveCellAfterViewChecked=!1;label;rows;todayValue;startValue;endValue;labelMinRequiredCells;numCols=7;activeCell=0;ngAfterViewChecked(){this._focusActiveCellAfterViewChecked&&(this._focusActiveCell(),this._focusActiveCellAfterViewChecked=!1)}isRange=!1;cellAspectRatio=1;comparisonStart;comparisonEnd;previewStart=null;previewEnd=null;startDateAccessibleName;endDateAccessibleName;selectedValueChange=new he.bkB;previewChange=new he.bkB;activeDateChange=new he.bkB;dragStarted=new he.bkB;dragEnded=new he.bkB;_firstRowOffset;_cellPadding;_cellWidth;_startDateLabelId;_endDateLabelId;_comparisonStartDateLabelId;_comparisonEndDateLabelId;_didDragSinceMouseDown=!1;_injector=(0,_e.WQX)(_e.zZn);comparisonDateAccessibleName=this._intl.comparisonDateLabel;_trackRow=U=>U;constructor(){const U=(0,_e.WQX)(he.sFG),tt=(0,_e.WQX)(H.g);this._startDateLabelId=tt.getId("mat-calendar-body-start-"),this._endDateLabelId=tt.getId("mat-calendar-body-end-"),this._comparisonStartDateLabelId=tt.getId("mat-calendar-body-comparison-start-"),this._comparisonEndDateLabelId=tt.getId("mat-calendar-body-comparison-end-"),(0,_e.WQX)(rt.l).load(cn.A),this._ngZone.runOutsideAngular(()=>{const Ze=this._elementRef.nativeElement,Xt=[U.listen(Ze,"touchmove",this._touchmoveHandler,bt),U.listen(Ze,"mouseenter",this._enterHandler,tn),U.listen(Ze,"focus",this._enterHandler,tn),U.listen(Ze,"mouseleave",this._leaveHandler,tn),U.listen(Ze,"blur",this._leaveHandler,tn),U.listen(Ze,"mousedown",this._mousedownHandler,on),U.listen(Ze,"touchstart",this._mousedownHandler,on)];this._platform.isBrowser&&Xt.push(U.listen("window","mouseup",this._mouseupHandler),U.listen("window","touchend",this._touchendHandler)),this._eventCleanups=Xt})}_cellClicked(U,tt){this._didDragSinceMouseDown||U.enabled&&this.selectedValueChange.emit({value:U.value,event:tt})}_emitActiveDateChange(U,tt){U.enabled&&this.activeDateChange.emit({value:U.value,event:tt})}_isSelected(U){return this.startValue===U||this.endValue===U}ngOnChanges(U){const tt=U.numCols,{rows:Ze,numCols:Xt}=this;(U.rows||tt)&&(this._firstRowOffset=Ze&&Ze.length&&Ze[0].length?Xt-Ze[0].length:0),(U.cellAspectRatio||tt||!this._cellPadding)&&(this._cellPadding=50*this.cellAspectRatio/Xt+"%"),(tt||!this._cellWidth)&&(this._cellWidth=100/Xt+"%")}ngOnDestroy(){this._eventCleanups.forEach(U=>U())}_isActiveCell(U,tt){let Ze=U*this.numCols+tt;return U&&(Ze-=this._firstRowOffset),Ze==this.activeCell}_focusActiveCell(U=!0){(0,he.mal)(()=>{setTimeout(()=>{const tt=this._elementRef.nativeElement.querySelector(".mat-calendar-body-active");tt&&(U||(this._skipNextFocus=!0),tt.focus())})},{injector:this._injector})}_scheduleFocusActiveCellAfterViewChecked(){this._focusActiveCellAfterViewChecked=!0}_isRangeStart(U){return xn(U,this.startValue,this.endValue)}_isRangeEnd(U){return Jn(U,this.startValue,this.endValue)}_isInRange(U){return xi(U,this.startValue,this.endValue,this.isRange)}_isComparisonStart(U){return xn(U,this.comparisonStart,this.comparisonEnd)}_isComparisonBridgeStart(U,tt,Ze){if(!this._isComparisonStart(U)||this._isRangeStart(U)||!this._isInRange(U))return!1;let Xt=this.rows[tt][Ze-1];if(!Xt){const Nn=this.rows[tt-1];Xt=Nn&&Nn[Nn.length-1]}return Xt&&!this._isRangeEnd(Xt.compareValue)}_isComparisonBridgeEnd(U,tt,Ze){if(!this._isComparisonEnd(U)||this._isRangeEnd(U)||!this._isInRange(U))return!1;let Xt=this.rows[tt][Ze+1];if(!Xt){const Nn=this.rows[tt+1];Xt=Nn&&Nn[0]}return Xt&&!this._isRangeStart(Xt.compareValue)}_isComparisonEnd(U){return Jn(U,this.comparisonStart,this.comparisonEnd)}_isInComparisonRange(U){return xi(U,this.comparisonStart,this.comparisonEnd,this.isRange)}_isComparisonIdentical(U){return this.comparisonStart===this.comparisonEnd&&U===this.comparisonStart}_isPreviewStart(U){return xn(U,this.previewStart,this.previewEnd)}_isPreviewEnd(U){return Jn(U,this.previewStart,this.previewEnd)}_isInPreview(U){return xi(U,this.previewStart,this.previewEnd,this.isRange)}_getDescribedby(U){if(!this.isRange)return null;if(this.startValue===U&&this.endValue===U)return`${this._startDateLabelId} ${this._endDateLabelId}`;if(this.startValue===U)return this._startDateLabelId;if(this.endValue===U)return this._endDateLabelId;if(null!==this.comparisonStart&&null!==this.comparisonEnd){if(U===this.comparisonStart&&U===this.comparisonEnd)return`${this._comparisonStartDateLabelId} ${this._comparisonEndDateLabelId}`;if(U===this.comparisonStart)return this._comparisonStartDateLabelId;if(U===this.comparisonEnd)return this._comparisonEndDateLabelId}return null}_enterHandler=U=>{if(this._skipNextFocus&&"focus"===U.type)this._skipNextFocus=!1;else if(U.target&&this.isRange){const tt=this._getCellFromElement(U.target);tt&&this._ngZone.run(()=>this.previewChange.emit({value:tt.enabled?tt:null,event:U}))}};_touchmoveHandler=U=>{if(!this.isRange)return;const tt=Yi(U),Ze=tt?this._getCellFromElement(tt):null;tt!==U.target&&(this._didDragSinceMouseDown=!0),dn(U.target)&&U.preventDefault(),this._ngZone.run(()=>this.previewChange.emit({value:Ze?.enabled?Ze:null,event:U}))};_leaveHandler=U=>{null!==this.previewEnd&&this.isRange&&("blur"!==U.type&&(this._didDragSinceMouseDown=!0),U.target&&this._getCellFromElement(U.target)&&(!U.relatedTarget||!this._getCellFromElement(U.relatedTarget))&&this._ngZone.run(()=>this.previewChange.emit({value:null,event:U})))};_mousedownHandler=U=>{if(!this.isRange)return;this._didDragSinceMouseDown=!1;const tt=U.target&&this._getCellFromElement(U.target);!tt||!this._isInRange(tt.compareValue)||this._ngZone.run(()=>{this.dragStarted.emit({value:tt.rawValue,event:U})})};_mouseupHandler=U=>{if(!this.isRange)return;const tt=dn(U.target);tt?tt.closest(".mat-calendar-body")===this._elementRef.nativeElement&&this._ngZone.run(()=>{const Ze=this._getCellFromElement(tt);this.dragEnded.emit({value:Ze?.rawValue??null,event:U})}):this._ngZone.run(()=>{this.dragEnded.emit({value:null,event:U})})};_touchendHandler=U=>{const tt=Yi(U);tt&&this._mouseupHandler({target:tt})};_getCellFromElement(U){const tt=dn(U);if(tt){const Ze=tt.getAttribute("data-mat-row"),Xt=tt.getAttribute("data-mat-col");if(Ze&&Xt)return this.rows[parseInt(Ze)]?.[parseInt(Xt)]||null}return null}static \u0275fac=function(tt){return new(tt||nn)};static \u0275cmp=he.VBU({type:nn,selectors:[["","mat-calendar-body",""]],hostAttrs:[1,"mat-calendar-body"],inputs:{label:"label",rows:"rows",todayValue:"todayValue",startValue:"startValue",endValue:"endValue",labelMinRequiredCells:"labelMinRequiredCells",numCols:"numCols",activeCell:"activeCell",isRange:"isRange",cellAspectRatio:"cellAspectRatio",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",previewStart:"previewStart",previewEnd:"previewEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedValueChange:"selectedValueChange",previewChange:"previewChange",activeDateChange:"activeDateChange",dragStarted:"dragStarted",dragEnded:"dragEnded"},exportAs:["matCalendarBody"],features:[he.OA$],attrs:gn,decls:11,vars:11,consts:[["aria-hidden","true"],["role","row"],[1,"mat-calendar-body-hidden-label",3,"id"],[1,"mat-calendar-body-label"],[1,"mat-calendar-body-label",3,"paddingTop","paddingBottom"],["role","gridcell",1,"mat-calendar-body-cell-container",3,"width","paddingTop","paddingBottom"],["role","gridcell",1,"mat-calendar-body-cell-container"],["type","button",1,"mat-calendar-body-cell",3,"click","focus","ngClass","tabindex"],[1,"mat-calendar-body-cell-content","mat-focus-indicator"],["aria-hidden","true",1,"mat-calendar-body-cell-preview"]],template:function(tt,Ze){1&tt&&(he.nVh(0,Ni,3,6,"tr",0),he.Z7z(1,vt,4,1,"tr",1,ei,!0),he.j41(3,"span",2),he.EFF(4),he.k0s(),he.j41(5,"span",2),he.EFF(6),he.k0s(),he.j41(7,"span",2),he.EFF(8),he.k0s(),he.j41(9,"span",2),he.EFF(10),he.k0s()),2&tt&&(he.vxM(Ze._firstRowOffset.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:var(--mat-datepicker-calendar-date-disabled-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:var(--mat-datepicker-calendar-date-today-disabled-state-outline-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mat-calendar-body-disabled{opacity:.5}}.mat-calendar-body-cell-content{top:5%;left:5%;z-index:1;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:90%;height:90%;line-height:1;border-width:1px;border-style:solid;border-radius:999px;color:var(--mat-datepicker-calendar-date-text-color, var(--mat-sys-on-surface));border-color:var(--mat-datepicker-calendar-date-outline-color, transparent)}.mat-calendar-body-cell-content.mat-focus-indicator{position:absolute}@media(forced-colors: active){.mat-calendar-body-cell-content{border:none}}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:var(--mat-datepicker-calendar-date-focus-state-background-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent))}@media(hover: hover){.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:var(--mat-datepicker-calendar-date-hover-state-background-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent))}}.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-state-background-color, var(--mat-sys-primary));color:var(--mat-datepicker-calendar-date-selected-state-text-color, var(--mat-sys-on-primary))}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:var(--mat-datepicker-calendar-date-selected-disabled-state-background-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-calendar-body-selected.mat-calendar-body-today{box-shadow:inset 0 0 0 1px var(--mat-datepicker-calendar-date-today-selected-state-outline-color, var(--mat-sys-primary))}.mat-calendar-body-in-range::before{background:var(--mat-datepicker-calendar-date-in-range-state-background-color, var(--mat-sys-primary-container))}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color, var(--mat-sys-tertiary-container))}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color, var(--mat-sys-tertiary-container))}.mat-calendar-body-comparison-bridge-start::before,[dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, var(--mat-datepicker-calendar-date-in-range-state-background-color, var(--mat-sys-primary-container)) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color, var(--mat-sys-tertiary-container)) 50%)}.mat-calendar-body-comparison-bridge-end::before,[dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, var(--mat-datepicker-calendar-date-in-range-state-background-color, var(--mat-sys-primary-container)) 50%, var(--mat-datepicker-calendar-date-in-comparison-range-state-background-color, var(--mat-sys-tertiary-container)) 50%)}.mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:var(--mat-datepicker-calendar-date-in-overlap-range-state-background-color, var(--mat-sys-secondary-container))}.mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:var(--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color, var(--mat-sys-secondary))}@media(forced-colors: active){.mat-datepicker-popup:not(:empty),.mat-calendar-body-cell:not(.mat-calendar-body-in-range) .mat-calendar-body-selected{outline:solid 1px}.mat-calendar-body-today{outline:dotted 1px}.mat-calendar-body-cell::before,.mat-calendar-body-cell::after,.mat-calendar-body-selected{background:none}.mat-calendar-body-in-range::before,.mat-calendar-body-comparison-bridge-start::before,.mat-calendar-body-comparison-bridge-end::before{border-top:solid 1px;border-bottom:solid 1px}.mat-calendar-body-range-start::before{border-left:solid 1px}[dir=rtl] .mat-calendar-body-range-start::before{border-left:0;border-right:solid 1px}.mat-calendar-body-range-end::before{border-right:solid 1px}[dir=rtl] .mat-calendar-body-range-end::before{border-right:0;border-left:solid 1px}.mat-calendar-body-in-comparison-range::before{border-top:dashed 1px;border-bottom:dashed 1px}.mat-calendar-body-comparison-start::before{border-left:dashed 1px}[dir=rtl] .mat-calendar-body-comparison-start::before{border-left:0;border-right:dashed 1px}.mat-calendar-body-comparison-end::before{border-right:dashed 1px}[dir=rtl] .mat-calendar-body-comparison-end::before{border-right:0;border-left:dashed 1px}}\n'],encapsulation:2,changeDetection:0})}return nn})();function Nt(nn){return"TD"===nn?.nodeName}function dn(nn){let ni;return Nt(nn)?ni=nn:Nt(nn.parentNode)?ni=nn.parentNode:Nt(nn.parentNode?.parentNode)&&(ni=nn.parentNode.parentNode),null!=ni?.getAttribute("data-mat-row")?ni:null}function xn(nn,ni,U){return null!==U&&ni!==U&&nn=ni&&nn===U}function xi(nn,ni,U,tt){return tt&&null!==ni&&null!==U&&ni!==U&&nn>=ni&&nn<=U}function Yi(nn){const ni=nn.changedTouches[0];return document.elementFromPoint(ni.clientX,ni.clientY)}class Tt{start;end;_disableStructuralEquivalency;constructor(ni,U){this.start=ni,this.end=U}}let At=(()=>{class nn{selection;_adapter;_selectionChanged=new lt.B;selectionChanged=this._selectionChanged;constructor(U,tt){this.selection=U,this._adapter=tt,this.selection=U}updateSelection(U,tt){const Ze=this.selection;this.selection=U,this._selectionChanged.next({selection:U,source:tt,oldValue:Ze})}ngOnDestroy(){this._selectionChanged.complete()}_isValidDateInstance(U){return this._adapter.isDateInstance(U)&&this._adapter.isValid(U)}static \u0275fac=function(tt){he.QTQ()};static \u0275prov=_e.jDH({token:nn,factory:nn.\u0275fac})}return nn})(),we=(()=>{class nn extends At{constructor(U){super(null,U)}add(U){super.updateSelection(U,this)}isValid(){return null!=this.selection&&this._isValidDateInstance(this.selection)}isComplete(){return null!=this.selection}clone(){const U=new nn(this._adapter);return U.updateSelection(this.selection,this),U}static \u0275fac=function(tt){return new(tt||nn)(_e.KVO(P.MJ))};static \u0275prov=_e.jDH({token:nn,factory:nn.\u0275fac})}return nn})();const Ht={provide:At,deps:[[new he.Xx1,new he.kdw,At],P.MJ],useFactory:function Lt(nn,ni){return nn||new we(ni)}},bi=new _e.nKC("MAT_DATE_RANGE_SELECTION_STRATEGY");let Yt=0,Un=(()=>{class nn{_changeDetectorRef=(0,_e.WQX)(Dt.gRc);_dateFormats=(0,_e.WQX)(P.de,{optional:!0});_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dir=(0,_e.WQX)($.dS,{optional:!0});_rangeStrategy=(0,_e.WQX)(bi,{optional:!0});_rerenderSubscription=Le.yU.EMPTY;_selectionKeyPressed;get activeDate(){return this._activeDate}set activeDate(U){const tt=this._activeDate,Ze=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ze,this.minDate,this.maxDate),this._hasSameMonthAndYear(tt,this._activeDate)||this._init()}_activeDate;get selected(){return this._selected}set selected(U){this._selected=U instanceof Tt?U:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U)),this._setRanges(this._selected)}_selected;get minDate(){return this._minDate}set minDate(U){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_minDate;get maxDate(){return this._maxDate}set maxDate(U){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_maxDate;dateFilter;dateClass;comparisonStart;comparisonEnd;startDateAccessibleName;endDateAccessibleName;activeDrag=null;selectedChange=new he.bkB;_userSelection=new he.bkB;dragStarted=new he.bkB;dragEnded=new he.bkB;activeDateChange=new he.bkB;_matCalendarBody;_monthLabel=(0,_e.vPA)("");_weeks=(0,_e.vPA)([]);_firstWeekOffset=(0,_e.vPA)(0);_rangeStart=(0,_e.vPA)(null);_rangeEnd=(0,_e.vPA)(null);_comparisonRangeStart=(0,_e.vPA)(null);_comparisonRangeEnd=(0,_e.vPA)(null);_previewStart=(0,_e.vPA)(null);_previewEnd=(0,_e.vPA)(null);_isRange=(0,_e.vPA)(!1);_todayDate=(0,_e.vPA)(null);_weekdays=(0,_e.vPA)([]);constructor(){(0,_e.WQX)(rt.l).load(Gt.Y),this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,fe.Z)(null)).subscribe(()=>this._init())}ngOnChanges(U){const tt=U.comparisonStart||U.comparisonEnd;tt&&!tt.firstChange&&this._setRanges(this.selected),U.activeDrag&&!this.activeDrag&&this._clearPreview()}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_dateSelected(U){const tt=U.value,Ze=this._getDateFromDayOfMonth(tt);let Xt,Nn;this._selected instanceof Tt?(Xt=this._getDateInCurrentMonth(this._selected.start),Nn=this._getDateInCurrentMonth(this._selected.end)):Xt=Nn=this._getDateInCurrentMonth(this._selected),(Xt!==tt||Nn!==tt)&&this.selectedChange.emit(Ze),this._userSelection.emit({value:Ze,event:U.event}),this._clearPreview(),this._changeDetectorRef.markForCheck()}_updateActiveDate(U){const Ze=this._activeDate;this.activeDate=this._getDateFromDayOfMonth(U.value),this._dateAdapter.compareDate(Ze,this.activeDate)&&this.activeDateChange.emit(this._activeDate)}_handleCalendarBodyKeydown(U){const tt=this._activeDate,Ze=this._isRtl();switch(U.keyCode){case St.UQ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,Ze?1:-1);break;case St.LE:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,Ze?-1:1);break;case St.i7:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,-7);break;case St.n6:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,7);break;case St.yZ:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,1-this._dateAdapter.getDate(this._activeDate));break;case St.Kp:this.activeDate=this._dateAdapter.addCalendarDays(this._activeDate,this._dateAdapter.getNumDaysInMonth(this._activeDate)-this._dateAdapter.getDate(this._activeDate));break;case St.w_:this.activeDate=U.altKey?this._dateAdapter.addCalendarYears(this._activeDate,-1):this._dateAdapter.addCalendarMonths(this._activeDate,-1);break;case St.dB:this.activeDate=U.altKey?this._dateAdapter.addCalendarYears(this._activeDate,1):this._dateAdapter.addCalendarMonths(this._activeDate,1);break;case St.Fm:case St.t6:return this._selectionKeyPressed=!0,void(this._canSelect(this._activeDate)&&U.preventDefault());case St._f:return void(null!=this._previewEnd()&&!(0,Vt.rp)(U)&&(this._clearPreview(),this.activeDrag?this.dragEnded.emit({value:null,event:U}):(this.selectedChange.emit(null),this._userSelection.emit({value:null,event:U})),U.preventDefault(),U.stopPropagation()));default:return}this._dateAdapter.compareDate(tt,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),U.preventDefault()}_handleCalendarBodyKeyup(U){(U.keyCode===St.t6||U.keyCode===St.Fm)&&(this._selectionKeyPressed&&this._canSelect(this._activeDate)&&this._dateSelected({value:this._dateAdapter.getDate(this._activeDate),event:U}),this._selectionKeyPressed=!1)}_init(){this._setRanges(this.selected),this._todayDate.set(this._getCellCompareValue(this._dateAdapter.today())),this._monthLabel.set(this._dateFormats.display.monthLabel?this._dateAdapter.format(this.activeDate,this._dateFormats.display.monthLabel):this._dateAdapter.getMonthNames("short")[this._dateAdapter.getMonth(this.activeDate)].toLocaleUpperCase());let U=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),1);this._firstWeekOffset.set((7+this._dateAdapter.getDayOfWeek(U)-this._dateAdapter.getFirstDayOfWeek())%7),this._initWeekdays(),this._createWeekCells(),this._changeDetectorRef.markForCheck()}_focusActiveCell(U){this._matCalendarBody._focusActiveCell(U)}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_previewChanged({event:U,value:tt}){if(this._rangeStrategy){const Ze=tt?tt.rawValue:null,Xt=this._rangeStrategy.createPreview(Ze,this.selected,U);if(this._previewStart.set(this._getCellCompareValue(Xt.start)),this._previewEnd.set(this._getCellCompareValue(Xt.end)),this.activeDrag&&Ze){const Nn=this._rangeStrategy.createDrag?.(this.activeDrag.value,this.selected,Ze,U);Nn&&(this._previewStart.set(this._getCellCompareValue(Nn.start)),this._previewEnd.set(this._getCellCompareValue(Nn.end)))}}}_dragEnded(U){if(this.activeDrag)if(U.value){const tt=this._rangeStrategy?.createDrag?.(this.activeDrag.value,this.selected,U.value,U.event);this.dragEnded.emit({value:tt??null,event:U.event})}else this.dragEnded.emit({value:null,event:U.event})}_getDateFromDayOfMonth(U){return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),this._dateAdapter.getMonth(this.activeDate),U)}_initWeekdays(){const U=this._dateAdapter.getFirstDayOfWeek(),tt=this._dateAdapter.getDayOfWeekNames("narrow"),Xt=this._dateAdapter.getDayOfWeekNames("long").map((Nn,Ki)=>({long:Nn,narrow:tt[Ki],id:Yt++}));this._weekdays.set(Xt.slice(U).concat(Xt.slice(0,U)))}_createWeekCells(){const U=this._dateAdapter.getNumDaysInMonth(this.activeDate),tt=this._dateAdapter.getDateNames(),Ze=[[]];for(let Xt=0,Nn=this._firstWeekOffset();Xt=0)&&(!this.maxDate||this._dateAdapter.compareDate(U,this.maxDate)<=0)&&(!this.dateFilter||this.dateFilter(U))}_getDateInCurrentMonth(U){return U&&this._hasSameMonthAndYear(U,this.activeDate)?this._dateAdapter.getDate(U):null}_hasSameMonthAndYear(U,tt){return!(!U||!tt||this._dateAdapter.getMonth(U)!=this._dateAdapter.getMonth(tt)||this._dateAdapter.getYear(U)!=this._dateAdapter.getYear(tt))}_getCellCompareValue(U){if(U){const tt=this._dateAdapter.getYear(U),Ze=this._dateAdapter.getMonth(U),Xt=this._dateAdapter.getDate(U);return new Date(tt,Ze,Xt).getTime()}return null}_isRtl(){return this._dir&&"rtl"===this._dir.value}_setRanges(U){U instanceof Tt?(this._rangeStart.set(this._getCellCompareValue(U.start)),this._rangeEnd.set(this._getCellCompareValue(U.end)),this._isRange.set(!0)):(this._rangeStart.set(this._getCellCompareValue(U)),this._rangeEnd.set(this._rangeStart()),this._isRange.set(!1)),this._comparisonRangeStart.set(this._getCellCompareValue(this.comparisonStart)),this._comparisonRangeEnd.set(this._getCellCompareValue(this.comparisonEnd))}_canSelect(U){return!this.dateFilter||this.dateFilter(U)}_clearPreview(){this._previewStart.set(null),this._previewEnd.set(null)}static \u0275fac=function(tt){return new(tt||nn)};static \u0275cmp=he.VBU({type:nn,selectors:[["mat-month-view"]],viewQuery:function(tt,Ze){if(1&tt&&he.GBs(un,5),2&tt){let Xt;he.mGM(Xt=he.lsd())&&(Ze._matCalendarBody=Xt.first)}},inputs:{activeDate:"activeDate",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName",activeDrag:"activeDrag"},outputs:{selectedChange:"selectedChange",_userSelection:"_userSelection",dragStarted:"dragStarted",dragEnded:"dragEnded",activeDateChange:"activeDateChange"},exportAs:["matMonthView"],features:[he.OA$],decls:8,vars:14,consts:[["role","grid",1,"mat-calendar-table"],[1,"mat-calendar-table-header"],["scope","col"],["aria-hidden","true"],["colspan","7",1,"mat-calendar-table-header-divider"],["mat-calendar-body","",3,"selectedValueChange","activeDateChange","previewChange","dragStarted","dragEnded","keyup","keydown","label","rows","todayValue","startValue","endValue","comparisonStart","comparisonEnd","previewStart","previewEnd","isRange","labelMinRequiredCells","activeCell","startDateAccessibleName","endDateAccessibleName"],[1,"cdk-visually-hidden"]],template:function(tt,Ze){1&tt&&(he.j41(0,"table",0)(1,"thead",1)(2,"tr"),he.Z7z(3,ee,5,2,"th",2,vi),he.k0s(),he.j41(5,"tr",3),he.nrm(6,"th",4),he.k0s()(),he.j41(7,"tbody",5),he.bIt("selectedValueChange",function(Nn){return Ze._dateSelected(Nn)})("activeDateChange",function(Nn){return Ze._updateActiveDate(Nn)})("previewChange",function(Nn){return Ze._previewChanged(Nn)})("dragStarted",function(Nn){return Ze.dragStarted.emit(Nn)})("dragEnded",function(Nn){return Ze._dragEnded(Nn)})("keyup",function(Nn){return Ze._handleCalendarBodyKeyup(Nn)})("keydown",function(Nn){return Ze._handleCalendarBodyKeydown(Nn)}),he.k0s()()),2&tt&&(he.R7$(3),he.Dyx(Ze._weekdays()),he.R7$(4),he.Y8G("label",Ze._monthLabel())("rows",Ze._weeks())("todayValue",Ze._todayDate())("startValue",Ze._rangeStart())("endValue",Ze._rangeEnd())("comparisonStart",Ze._comparisonRangeStart())("comparisonEnd",Ze._comparisonRangeEnd())("previewStart",Ze._previewStart())("previewEnd",Ze._previewEnd())("isRange",Ze._isRange())("labelMinRequiredCells",3)("activeCell",Ze._dateAdapter.getDate(Ze.activeDate)-1)("startDateAccessibleName",Ze.startDateAccessibleName)("endDateAccessibleName",Ze.endDateAccessibleName))},dependencies:[un],encapsulation:2,changeDetection:0})}return nn})(),ci=(()=>{class nn{_changeDetectorRef=(0,_e.WQX)(Dt.gRc);_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dir=(0,_e.WQX)($.dS,{optional:!0});_rerenderSubscription=Le.yU.EMPTY;_selectionKeyPressed;get activeDate(){return this._activeDate}set activeDate(U){let tt=this._activeDate;const Ze=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ze,this.minDate,this.maxDate),rn(this._dateAdapter,tt,this._activeDate,this.minDate,this.maxDate)||this._init()}_activeDate;get selected(){return this._selected}set selected(U){this._selected=U instanceof Tt?U:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U)),this._setSelectedYear(U)}_selected;get minDate(){return this._minDate}set minDate(U){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_minDate;get maxDate(){return this._maxDate}set maxDate(U){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_maxDate;dateFilter;dateClass;selectedChange=new he.bkB;yearSelected=new he.bkB;activeDateChange=new he.bkB;_matCalendarBody;_years=(0,_e.vPA)([]);_todayYear=(0,_e.vPA)(0);_selectedYear=(0,_e.vPA)(null);constructor(){this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,fe.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_init(){this._todayYear.set(this._dateAdapter.getYear(this._dateAdapter.today()));const tt=this._dateAdapter.getYear(this._activeDate)-In(this._dateAdapter,this.activeDate,this.minDate,this.maxDate),Ze=[];for(let Xt=0,Nn=[];Xt<24;Xt++)Nn.push(tt+Xt),4==Nn.length&&(Ze.push(Nn.map(Ki=>this._createCellForYear(Ki))),Nn=[]);this._years.set(Ze),this._changeDetectorRef.markForCheck()}_yearSelected(U){const tt=U.value,Ze=this._dateAdapter.createDate(tt,0,1),Xt=this._getDateFromYear(tt);this.yearSelected.emit(Ze),this.selectedChange.emit(Xt)}_updateActiveDate(U){const Ze=this._activeDate;this.activeDate=this._getDateFromYear(U.value),this._dateAdapter.compareDate(Ze,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(U){const tt=this._activeDate,Ze=this._isRtl();switch(U.keyCode){case St.UQ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Ze?1:-1);break;case St.LE:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,Ze?-1:1);break;case St.i7:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-4);break;case St.n6:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,4);break;case St.yZ:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,-In(this._dateAdapter,this.activeDate,this.minDate,this.maxDate));break;case St.Kp:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,24-In(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)-1);break;case St.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,U.altKey?-240:-24);break;case St.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,U.altKey?240:24);break;case St.Fm:case St.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(tt,this.activeDate)&&this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked(),U.preventDefault()}_handleCalendarBodyKeyup(U){(U.keyCode===St.t6||U.keyCode===St.Fm)&&(this._selectionKeyPressed&&this._yearSelected({value:this._dateAdapter.getYear(this._activeDate),event:U}),this._selectionKeyPressed=!1)}_getActiveCell(){return In(this._dateAdapter,this.activeDate,this.minDate,this.maxDate)}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getDateFromYear(U){const tt=this._dateAdapter.getMonth(this.activeDate),Ze=this._dateAdapter.getNumDaysInMonth(this._dateAdapter.createDate(U,tt,1));return this._dateAdapter.createDate(U,tt,Math.min(this._dateAdapter.getDate(this.activeDate),Ze))}_createCellForYear(U){const tt=this._dateAdapter.createDate(U,0,1),Ze=this._dateAdapter.getYearName(tt),Xt=this.dateClass?this.dateClass(tt,"multi-year"):void 0;return new We(U,Ze,Ze,this._shouldEnableYear(U),Xt)}_shouldEnableYear(U){if(null==U||this.maxDate&&U>this._dateAdapter.getYear(this.maxDate)||this.minDate&&U{class nn{_changeDetectorRef=(0,_e.WQX)(Dt.gRc);_dateFormats=(0,_e.WQX)(P.de,{optional:!0});_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dir=(0,_e.WQX)($.dS,{optional:!0});_rerenderSubscription=Le.yU.EMPTY;_selectionKeyPressed;get activeDate(){return this._activeDate}set activeDate(U){let tt=this._activeDate;const Ze=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))||this._dateAdapter.today();this._activeDate=this._dateAdapter.clampDate(Ze,this.minDate,this.maxDate),this._dateAdapter.getYear(tt)!==this._dateAdapter.getYear(this._activeDate)&&this._init()}_activeDate;get selected(){return this._selected}set selected(U){this._selected=U instanceof Tt?U:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U)),this._setSelectedMonth(U)}_selected;get minDate(){return this._minDate}set minDate(U){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_minDate;get maxDate(){return this._maxDate}set maxDate(U){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_maxDate;dateFilter;dateClass;selectedChange=new he.bkB;monthSelected=new he.bkB;activeDateChange=new he.bkB;_matCalendarBody;_months=(0,_e.vPA)([]);_yearLabel=(0,_e.vPA)("");_todayMonth=(0,_e.vPA)(null);_selectedMonth=(0,_e.vPA)(null);constructor(){this._activeDate=this._dateAdapter.today()}ngAfterContentInit(){this._rerenderSubscription=this._dateAdapter.localeChanges.pipe((0,fe.Z)(null)).subscribe(()=>this._init())}ngOnDestroy(){this._rerenderSubscription.unsubscribe()}_monthSelected(U){const tt=U.value,Ze=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),tt,1);this.monthSelected.emit(Ze);const Xt=this._getDateFromMonth(tt);this.selectedChange.emit(Xt)}_updateActiveDate(U){const Ze=this._activeDate;this.activeDate=this._getDateFromMonth(U.value),this._dateAdapter.compareDate(Ze,this.activeDate)&&this.activeDateChange.emit(this.activeDate)}_handleCalendarBodyKeydown(U){const tt=this._activeDate,Ze=this._isRtl();switch(U.keyCode){case St.UQ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,Ze?1:-1);break;case St.LE:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,Ze?-1:1);break;case St.i7:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-4);break;case St.n6:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,4);break;case St.yZ:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,-this._dateAdapter.getMonth(this._activeDate));break;case St.Kp:this.activeDate=this._dateAdapter.addCalendarMonths(this._activeDate,11-this._dateAdapter.getMonth(this._activeDate));break;case St.w_:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,U.altKey?-10:-1);break;case St.dB:this.activeDate=this._dateAdapter.addCalendarYears(this._activeDate,U.altKey?10:1);break;case St.Fm:case St.t6:this._selectionKeyPressed=!0;break;default:return}this._dateAdapter.compareDate(tt,this.activeDate)&&(this.activeDateChange.emit(this.activeDate),this._focusActiveCellAfterViewChecked()),U.preventDefault()}_handleCalendarBodyKeyup(U){(U.keyCode===St.t6||U.keyCode===St.Fm)&&(this._selectionKeyPressed&&this._monthSelected({value:this._dateAdapter.getMonth(this._activeDate),event:U}),this._selectionKeyPressed=!1)}_init(){this._setSelectedMonth(this.selected),this._todayMonth.set(this._getMonthInCurrentYear(this._dateAdapter.today())),this._yearLabel.set(this._dateAdapter.getYearName(this.activeDate));let U=this._dateAdapter.getMonthNames("short");this._months.set([[0,1,2,3],[4,5,6,7],[8,9,10,11]].map(tt=>tt.map(Ze=>this._createCellForMonth(Ze,U[Ze])))),this._changeDetectorRef.markForCheck()}_focusActiveCell(){this._matCalendarBody._focusActiveCell()}_focusActiveCellAfterViewChecked(){this._matCalendarBody._scheduleFocusActiveCellAfterViewChecked()}_getMonthInCurrentYear(U){return U&&this._dateAdapter.getYear(U)==this._dateAdapter.getYear(this.activeDate)?this._dateAdapter.getMonth(U):null}_getDateFromMonth(U){const tt=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),U,1),Ze=this._dateAdapter.getNumDaysInMonth(tt);return this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),U,Math.min(this._dateAdapter.getDate(this.activeDate),Ze))}_createCellForMonth(U,tt){const Ze=this._dateAdapter.createDate(this._dateAdapter.getYear(this.activeDate),U,1),Xt=this._dateAdapter.format(Ze,this._dateFormats.display.monthYearA11yLabel),Nn=this.dateClass?this.dateClass(Ze,"year"):void 0;return new We(U,tt.toLocaleUpperCase(),Xt,this._shouldEnableMonth(U),Nn)}_shouldEnableMonth(U){const tt=this._dateAdapter.getYear(this.activeDate);if(null==U||this._isYearAndMonthAfterMaxDate(tt,U)||this._isYearAndMonthBeforeMinDate(tt,U))return!1;if(!this.dateFilter)return!0;for(let Xt=this._dateAdapter.createDate(tt,U,1);this._dateAdapter.getMonth(Xt)==U;Xt=this._dateAdapter.addCalendarDays(Xt,1))if(this.dateFilter(Xt))return!0;return!1}_isYearAndMonthAfterMaxDate(U,tt){if(this.maxDate){const Ze=this._dateAdapter.getYear(this.maxDate),Xt=this._dateAdapter.getMonth(this.maxDate);return U>Ze||U===Ze&&tt>Xt}return!1}_isYearAndMonthBeforeMinDate(U,tt){if(this.minDate){const Ze=this._dateAdapter.getYear(this.minDate),Xt=this._dateAdapter.getMonth(this.minDate);return U{class nn{_intl=(0,_e.WQX)(Ot);calendar=(0,_e.WQX)(ia);_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dateFormats=(0,_e.WQX)(P.de,{optional:!0});_periodButtonText;_periodButtonDescription;_periodButtonLabel;_prevButtonLabel;_nextButtonLabel;constructor(){(0,_e.WQX)(rt.l).load(Gt.Y);const U=(0,_e.WQX)(Dt.gRc);this._updateLabels(),this.calendar.stateChanges.subscribe(()=>{this._updateLabels(),U.markForCheck()})}get periodButtonText(){return this._periodButtonText}get periodButtonDescription(){return this._periodButtonDescription}get periodButtonLabel(){return this._periodButtonLabel}get prevButtonLabel(){return this._prevButtonLabel}get nextButtonLabel(){return this._nextButtonLabel}currentPeriodClicked(){this.calendar.currentView="month"==this.calendar.currentView?"multi-year":"month"}previousClicked(){this.previousEnabled()&&(this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,-1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?-1:-24))}nextClicked(){this.nextEnabled()&&(this.calendar.activeDate="month"==this.calendar.currentView?this._dateAdapter.addCalendarMonths(this.calendar.activeDate,1):this._dateAdapter.addCalendarYears(this.calendar.activeDate,"year"==this.calendar.currentView?1:24))}previousEnabled(){return!this.calendar.minDate||!this.calendar.minDate||!this._isSameView(this.calendar.activeDate,this.calendar.minDate)}nextEnabled(){return!this.calendar.maxDate||!this._isSameView(this.calendar.activeDate,this.calendar.maxDate)}_updateLabels(){const U=this.calendar,tt=this._intl,Ze=this._dateAdapter;"month"===U.currentView?(this._periodButtonText=Ze.format(U.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase(),this._periodButtonDescription=Ze.format(U.activeDate,this._dateFormats.display.monthYearLabel).toLocaleUpperCase(),this._periodButtonLabel=tt.switchToMultiYearViewLabel,this._prevButtonLabel=tt.prevMonthLabel,this._nextButtonLabel=tt.nextMonthLabel):"year"===U.currentView?(this._periodButtonText=Ze.getYearName(U.activeDate),this._periodButtonDescription=Ze.getYearName(U.activeDate),this._periodButtonLabel=tt.switchToMonthViewLabel,this._prevButtonLabel=tt.prevYearLabel,this._nextButtonLabel=tt.nextYearLabel):(this._periodButtonText=tt.formatYearRange(...this._formatMinAndMaxYearLabels()),this._periodButtonDescription=tt.formatYearRangeLabel(...this._formatMinAndMaxYearLabels()),this._periodButtonLabel=tt.switchToMonthViewLabel,this._prevButtonLabel=tt.prevMultiYearLabel,this._nextButtonLabel=tt.nextMultiYearLabel)}_isSameView(U,tt){return"month"==this.calendar.currentView?this._dateAdapter.getYear(U)==this._dateAdapter.getYear(tt)&&this._dateAdapter.getMonth(U)==this._dateAdapter.getMonth(tt):"year"==this.calendar.currentView?this._dateAdapter.getYear(U)==this._dateAdapter.getYear(tt):rn(this._dateAdapter,U,tt,this.calendar.minDate,this.calendar.maxDate)}_formatMinAndMaxYearLabels(){const tt=this._dateAdapter.getYear(this.calendar.activeDate)-In(this._dateAdapter,this.calendar.activeDate,this.calendar.minDate,this.calendar.maxDate),Ze=tt+24-1;return[this._dateAdapter.getYearName(this._dateAdapter.createDate(tt,0,1)),this._dateAdapter.getYearName(this._dateAdapter.createDate(Ze,0,1))]}_periodButtonLabelId=(0,_e.WQX)(H.g).getId("mat-calendar-period-label-");static \u0275fac=function(tt){return new(tt||nn)};static \u0275cmp=he.VBU({type:nn,selectors:[["mat-calendar-header"]],exportAs:["matCalendarHeader"],ngContentSelectors:ye,decls:17,vars:13,consts:[[1,"mat-calendar-header"],[1,"mat-calendar-controls"],["aria-live","polite",1,"cdk-visually-hidden",3,"id"],["matButton","","type","button",1,"mat-calendar-period-button",3,"click"],["aria-hidden","true"],["viewBox","0 0 10 5","focusable","false","aria-hidden","true",1,"mat-calendar-arrow"],["points","0,0 5,5 10,0"],[1,"mat-calendar-spacer"],["matIconButton","","type","button","disabledInteractive","",1,"mat-calendar-previous-button",3,"click","disabled","matTooltip"],["viewBox","0 0 24 24","focusable","false","aria-hidden","true"],["d","M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"],["matIconButton","","type","button","disabledInteractive","",1,"mat-calendar-next-button",3,"click","disabled","matTooltip"],["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"]],template:function(tt,Ze){1&tt&&(he.NAR(),he.j41(0,"div",0)(1,"div",1)(2,"span",2),he.EFF(3),he.k0s(),he.j41(4,"button",3),he.bIt("click",function(){return Ze.currentPeriodClicked()}),he.j41(5,"span",4),he.EFF(6),he.k0s(),_e.qSk(),he.j41(7,"svg",5),he.nrm(8,"polygon",6),he.k0s()(),_e.joV(),he.nrm(9,"div",7),he.SdG(10),he.j41(11,"button",8),he.bIt("click",function(){return Ze.previousClicked()}),_e.qSk(),he.j41(12,"svg",9),he.nrm(13,"path",10),he.k0s()(),_e.joV(),he.j41(14,"button",11),he.bIt("click",function(){return Ze.nextClicked()}),_e.qSk(),he.j41(15,"svg",9),he.nrm(16,"path",12),he.k0s()()()()),2&tt&&(he.R7$(2),he.Y8G("id",Ze._periodButtonLabelId),he.R7$(),he.JRh(Ze.periodButtonDescription),he.R7$(),he.BMQ("aria-label",Ze.periodButtonLabel)("aria-describedby",Ze._periodButtonLabelId),he.R7$(2),he.JRh(Ze.periodButtonText),he.R7$(),he.AVh("mat-calendar-invert","month"!==Ze.calendar.currentView),he.R7$(4),he.Y8G("disabled",!Ze.previousEnabled())("matTooltip",Ze.prevButtonLabel),he.BMQ("aria-label",Ze.prevButtonLabel),he.R7$(3),he.Y8G("disabled",!Ze.nextEnabled())("matTooltip",Ze.nextButtonLabel),he.BMQ("aria-label",Ze.nextButtonLabel))},dependencies:[Ft.$z,Sn.iY,Qn.oV],encapsulation:2,changeDetection:0})}return nn})(),ia=(()=>{class nn{_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dateFormats=(0,_e.WQX)(P.de,{optional:!0});_changeDetectorRef=(0,_e.WQX)(Dt.gRc);_elementRef=(0,_e.WQX)(he.aKT);headerComponent;_calendarHeaderPortal;_intlChanges;_moveFocusOnNextTick=!1;get startAt(){return this._startAt}set startAt(U){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_startAt;startView="month";get selected(){return this._selected}set selected(U){this._selected=U instanceof Tt?U:this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_selected;get minDate(){return this._minDate}set minDate(U){this._minDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_minDate;get maxDate(){return this._maxDate}set maxDate(U){this._maxDate=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_maxDate;dateFilter;dateClass;comparisonStart;comparisonEnd;startDateAccessibleName;endDateAccessibleName;selectedChange=new he.bkB;yearSelected=new he.bkB;monthSelected=new he.bkB;viewChanged=new he.bkB(!0);_userSelection=new he.bkB;_userDragDrop=new he.bkB;monthView;yearView;multiYearView;get activeDate(){return this._clampedActiveDate}set activeDate(U){this._clampedActiveDate=this._dateAdapter.clampDate(U,this.minDate,this.maxDate),this.stateChanges.next(),this._changeDetectorRef.markForCheck()}_clampedActiveDate;get currentView(){return this._currentView}set currentView(U){const tt=this._currentView!==U?U:null;this._currentView=U,this._moveFocusOnNextTick=!0,this._changeDetectorRef.markForCheck(),tt&&(this.stateChanges.next(),this.viewChanged.emit(tt))}_currentView;_activeDrag=null;stateChanges=new lt.B;constructor(){this._intlChanges=(0,_e.WQX)(Ot).changes.subscribe(()=>{this._changeDetectorRef.markForCheck(),this.stateChanges.next()})}ngAfterContentInit(){this._calendarHeaderPortal=new oe.A8(this.headerComponent||Bn),this.activeDate=this.startAt||this._dateAdapter.today(),this._currentView=this.startView}ngAfterViewChecked(){this._moveFocusOnNextTick&&(this._moveFocusOnNextTick=!1,this.focusActiveCell())}ngOnDestroy(){this._intlChanges.unsubscribe(),this.stateChanges.complete()}ngOnChanges(U){const tt=U.minDate&&!this._dateAdapter.sameDate(U.minDate.previousValue,U.minDate.currentValue)?U.minDate:void 0,Ze=U.maxDate&&!this._dateAdapter.sameDate(U.maxDate.previousValue,U.maxDate.currentValue)?U.maxDate:void 0,Xt=tt||Ze||U.dateFilter;if(Xt&&!Xt.firstChange){const Nn=this._getCurrentViewComponent();Nn&&(this._elementRef.nativeElement.contains((0,ht.vc)())&&(this._moveFocusOnNextTick=!0),this._changeDetectorRef.detectChanges(),Nn._init())}this.stateChanges.next()}focusActiveCell(){this._getCurrentViewComponent()._focusActiveCell(!1)}updateTodaysDate(){this._getCurrentViewComponent()._init()}_dateSelected(U){const tt=U.value;(this.selected instanceof Tt||tt&&!this._dateAdapter.sameDate(tt,this.selected))&&this.selectedChange.emit(tt),this._userSelection.emit(U)}_yearSelectedInMultiYearView(U){this.yearSelected.emit(U)}_monthSelectedInYearView(U){this.monthSelected.emit(U)}_goToDateInView(U,tt){this.activeDate=U,this.currentView=tt}_dragStarted(U){this._activeDrag=U}_dragEnded(U){this._activeDrag&&(U.value&&this._userDragDrop.emit(U),this._activeDrag=null)}_getCurrentViewComponent(){return this.monthView||this.yearView||this.multiYearView}static \u0275fac=function(tt){return new(tt||nn)};static \u0275cmp=he.VBU({type:nn,selectors:[["mat-calendar"]],viewQuery:function(tt,Ze){if(1&tt&&(he.GBs(Un,5),he.GBs(ii,5),he.GBs(ci,5)),2&tt){let Xt;he.mGM(Xt=he.lsd())&&(Ze.monthView=Xt.first),he.mGM(Xt=he.lsd())&&(Ze.yearView=Xt.first),he.mGM(Xt=he.lsd())&&(Ze.multiYearView=Xt.first)}},hostAttrs:[1,"mat-calendar"],inputs:{headerComponent:"headerComponent",startAt:"startAt",startView:"startView",selected:"selected",minDate:"minDate",maxDate:"maxDate",dateFilter:"dateFilter",dateClass:"dateClass",comparisonStart:"comparisonStart",comparisonEnd:"comparisonEnd",startDateAccessibleName:"startDateAccessibleName",endDateAccessibleName:"endDateAccessibleName"},outputs:{selectedChange:"selectedChange",yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",_userSelection:"_userSelection",_userDragDrop:"_userDragDrop"},exportAs:["matCalendar"],features:[he.Jv_([Ht]),he.OA$],decls:5,vars:2,consts:[[3,"cdkPortalOutlet"],["cdkMonitorSubtreeFocus","","tabindex","-1",1,"mat-calendar-content"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","activeDrag"],[3,"activeDate","selected","dateFilter","maxDate","minDate","dateClass"],[3,"activeDateChange","_userSelection","dragStarted","dragEnded","activeDate","selected","dateFilter","maxDate","minDate","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName","activeDrag"],[3,"activeDateChange","monthSelected","selectedChange","activeDate","selected","dateFilter","maxDate","minDate","dateClass"],[3,"activeDateChange","yearSelected","selectedChange","activeDate","selected","dateFilter","maxDate","minDate","dateClass"]],template:function(tt,Ze){if(1&tt&&(he.DNE(0,ke,0,0,"ng-template",0),he.j41(1,"div",1),he.nVh(2,Se,1,11,"mat-month-view",2)(3,ge,1,6,"mat-year-view",3)(4,N,1,6,"mat-multi-year-view",3),he.k0s()),2&tt){let Xt;he.Y8G("cdkPortalOutlet",Ze._calendarHeaderPortal),he.R7$(2),he.vxM("month"===(Xt=Ze.currentView)?2:"year"===Xt?3:"multi-year"===Xt?4:-1)}},dependencies:[oe.I3,F.vR,Un,ii,ci],styles:['.mat-calendar{display:block;line-height:normal;font-family:var(--mat-datepicker-calendar-text-font, var(--mat-sys-body-medium-font));font-size:var(--mat-datepicker-calendar-text-size, var(--mat-sys-body-medium-size))}.mat-calendar-header{padding:8px 8px 0 8px}.mat-calendar-content{padding:0 8px 8px 8px;outline:none}.mat-calendar-controls{display:flex;align-items:center;margin:5% calc(4.7142857143% - 16px)}.mat-calendar-spacer{flex:1 1 auto}.mat-calendar-period-button{min-width:0;margin:0 8px;font-size:var(--mat-datepicker-calendar-period-button-text-size, var(--mat-sys-title-small-size));font-weight:var(--mat-datepicker-calendar-period-button-text-weight, var(--mat-sys-title-small-weight));--mat-button-text-label-text-color: var(--mat-datepicker-calendar-period-button-text-color, var(--mat-sys-on-surface-variant))}.mat-calendar-arrow{display:inline-block;width:10px;height:5px;margin:0 0 0 5px;vertical-align:middle;fill:var(--mat-datepicker-calendar-period-button-icon-color, var(--mat-sys-on-surface-variant))}.mat-calendar-arrow.mat-calendar-invert{transform:rotate(180deg)}[dir=rtl] .mat-calendar-arrow{margin:0 5px 0 0}@media(forced-colors: active){.mat-calendar-arrow{fill:CanvasText}}.mat-datepicker-content .mat-calendar-previous-button:not(.mat-mdc-button-disabled),.mat-datepicker-content .mat-calendar-next-button:not(.mat-mdc-button-disabled){color:var(--mat-datepicker-calendar-navigation-button-icon-color, var(--mat-sys-on-surface-variant))}[dir=rtl] .mat-calendar-previous-button,[dir=rtl] .mat-calendar-next-button{transform:rotate(180deg)}.mat-calendar-table{border-spacing:0;border-collapse:collapse;width:100%}.mat-calendar-table-header th{text-align:center;padding:0 0 8px 0;color:var(--mat-datepicker-calendar-header-text-color, var(--mat-sys-on-surface-variant));font-size:var(--mat-datepicker-calendar-header-text-size, var(--mat-sys-title-small-size));font-weight:var(--mat-datepicker-calendar-header-text-weight, var(--mat-sys-title-small-weight))}.mat-calendar-table-header-divider{position:relative;height:1px}.mat-calendar-table-header-divider::after{content:"";position:absolute;top:0;left:-8px;right:-8px;height:1px;background:var(--mat-datepicker-calendar-header-divider-color, transparent)}.mat-calendar-body-cell-content::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 3px)*-1)}.mat-calendar-body-cell:focus .mat-focus-indicator::before{content:""}\n'],encapsulation:2,changeDetection:0})}return nn})();const ra=new _e.nKC("mat-datepicker-scroll-strategy",{providedIn:"root",factory:()=>{const nn=(0,_e.WQX)(_e.zZn);return()=>(0,ot.RH)(nn)}}),ha={provide:ra,deps:[],useFactory:function fa(nn){const ni=(0,_e.WQX)(_e.zZn);return()=>(0,ot.RH)(ni)}};let qt=(()=>{class nn{_elementRef=(0,_e.WQX)(he.aKT);_animationsDisabled=(0,h.Rc)();_changeDetectorRef=(0,_e.WQX)(Dt.gRc);_globalModel=(0,_e.WQX)(At);_dateAdapter=(0,_e.WQX)(P.MJ);_ngZone=(0,_e.WQX)(he.SKi);_rangeSelectionStrategy=(0,_e.WQX)(bi,{optional:!0});_stateChanges;_model;_eventCleanups;_animationFallback;_calendar;color;datepicker;comparisonStart;comparisonEnd;startDateAccessibleName;endDateAccessibleName;_isAbove;_animationDone=new lt.B;_isAnimating=!1;_closeButtonText;_closeButtonFocused;_actionsPortal=null;_dialogLabelId;constructor(){if((0,_e.WQX)(rt.l).load(Gt.Y),this._closeButtonText=(0,_e.WQX)(Ot).closeCalendarLabel,!this._animationsDisabled){const U=this._elementRef.nativeElement,tt=(0,_e.WQX)(he.sFG);this._eventCleanups=this._ngZone.runOutsideAngular(()=>[tt.listen(U,"animationstart",this._handleAnimationEvent),tt.listen(U,"animationend",this._handleAnimationEvent),tt.listen(U,"animationcancel",this._handleAnimationEvent)])}}ngAfterViewInit(){this._stateChanges=this.datepicker.stateChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()}),this._calendar.focusActiveCell()}ngOnDestroy(){clearTimeout(this._animationFallback),this._eventCleanups?.forEach(U=>U()),this._stateChanges?.unsubscribe(),this._animationDone.complete()}_handleUserSelection(U){const tt=this._model.selection,Ze=U.value,Xt=tt instanceof Tt;if(Xt&&this._rangeSelectionStrategy){const Nn=this._rangeSelectionStrategy.selectionFinished(Ze,tt,U.event);this._model.updateSelection(Nn,this)}else Ze&&(Xt||!this._dateAdapter.sameDate(Ze,tt))&&this._model.add(Ze);(!this._model||this._model.isComplete())&&!this._actionsPortal&&this.datepicker.close()}_handleUserDragDrop(U){this._model.updateSelection(U.value,this)}_startExitAnimation(){this._elementRef.nativeElement.classList.add("mat-datepicker-content-exit"),this._animationsDisabled?this._animationDone.next():(clearTimeout(this._animationFallback),this._animationFallback=setTimeout(()=>{this._isAnimating||this._animationDone.next()},200))}_handleAnimationEvent=U=>{const tt=this._elementRef.nativeElement;U.target!==tt||!U.animationName.startsWith("_mat-datepicker-content")||(clearTimeout(this._animationFallback),this._isAnimating="animationstart"===U.type,tt.classList.toggle("mat-datepicker-content-animating",this._isAnimating),this._isAnimating||this._animationDone.next())};_getSelected(){return this._model.selection}_applyPendingSelection(){this._model!==this._globalModel&&this._globalModel.updateSelection(this._model.selection,this)}_assignActions(U,tt){this._model=U?this._globalModel.clone():this._globalModel,this._actionsPortal=U,tt&&this._changeDetectorRef.detectChanges()}static \u0275fac=function(tt){return new(tt||nn)};static \u0275cmp=he.VBU({type:nn,selectors:[["mat-datepicker-content"]],viewQuery:function(tt,Ze){if(1&tt&&he.GBs(ia,5),2&tt){let Xt;he.mGM(Xt=he.lsd())&&(Ze._calendar=Xt.first)}},hostAttrs:[1,"mat-datepicker-content"],hostVars:6,hostBindings:function(tt,Ze){2&tt&&(he.HbH(Ze.color?"mat-"+Ze.color:""),he.AVh("mat-datepicker-content-touch",Ze.datepicker.touchUi)("mat-datepicker-content-animations-enabled",!Ze._animationsDisabled))},inputs:{color:"color"},exportAs:["matDatepickerContent"],decls:5,vars:26,consts:[["cdkTrapFocus","","role","dialog",1,"mat-datepicker-content-container"],[3,"yearSelected","monthSelected","viewChanged","_userSelection","_userDragDrop","id","startAt","startView","minDate","maxDate","dateFilter","headerComponent","selected","dateClass","comparisonStart","comparisonEnd","startDateAccessibleName","endDateAccessibleName"],[3,"cdkPortalOutlet"],["type","button","matButton","elevated",1,"mat-datepicker-close-button",3,"focus","blur","click","color"]],template:function(tt,Ze){1&tt&&(he.j41(0,"div",0)(1,"mat-calendar",1),he.bIt("yearSelected",function(Nn){return Ze.datepicker._selectYear(Nn)})("monthSelected",function(Nn){return Ze.datepicker._selectMonth(Nn)})("viewChanged",function(Nn){return Ze.datepicker._viewChanged(Nn)})("_userSelection",function(Nn){return Ze._handleUserSelection(Nn)})("_userDragDrop",function(Nn){return Ze._handleUserDragDrop(Nn)}),he.k0s(),he.DNE(2,Z,0,0,"ng-template",2),he.j41(3,"button",3),he.bIt("focus",function(){return Ze._closeButtonFocused=!0})("blur",function(){return Ze._closeButtonFocused=!1})("click",function(){return Ze.datepicker.close()}),he.EFF(4),he.k0s()()),2&tt&&(he.AVh("mat-datepicker-content-container-with-custom-header",Ze.datepicker.calendarHeaderComponent)("mat-datepicker-content-container-with-actions",Ze._actionsPortal),he.BMQ("aria-modal",!0)("aria-labelledby",Ze._dialogLabelId??void 0),he.R7$(),he.HbH(Ze.datepicker.panelClass),he.Y8G("id",Ze.datepicker.id)("startAt",Ze.datepicker.startAt)("startView",Ze.datepicker.startView)("minDate",Ze.datepicker._getMinDate())("maxDate",Ze.datepicker._getMaxDate())("dateFilter",Ze.datepicker._getDateFilter())("headerComponent",Ze.datepicker.calendarHeaderComponent)("selected",Ze._getSelected())("dateClass",Ze.datepicker.dateClass)("comparisonStart",Ze.comparisonStart)("comparisonEnd",Ze.comparisonEnd)("startDateAccessibleName",Ze.startDateAccessibleName)("endDateAccessibleName",Ze.endDateAccessibleName),he.R7$(),he.Y8G("cdkPortalOutlet",Ze._actionsPortal),he.R7$(),he.AVh("cdk-visually-hidden",!Ze._closeButtonFocused),he.Y8G("color",Ze.color||"primary"),he.R7$(),he.JRh(Ze._closeButtonText))},dependencies:[ve.kB,ia,oe.I3,Ft.$z],styles:["@keyframes _mat-datepicker-content-dropdown-enter{from{opacity:0;transform:scaleY(0.8)}to{opacity:1;transform:none}}@keyframes _mat-datepicker-content-dialog-enter{from{opacity:0;transform:scale(0.8)}to{opacity:1;transform:none}}@keyframes _mat-datepicker-content-exit{from{opacity:1}to{opacity:0}}.mat-datepicker-content{display:block;background-color:var(--mat-datepicker-calendar-container-background-color, var(--mat-sys-surface-container-high));color:var(--mat-datepicker-calendar-container-text-color, var(--mat-sys-on-surface));box-shadow:var(--mat-datepicker-calendar-container-elevation-shadow, 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12));border-radius:var(--mat-datepicker-calendar-container-shape, var(--mat-sys-corner-large))}.mat-datepicker-content.mat-datepicker-content-animations-enabled{animation:_mat-datepicker-content-dropdown-enter 120ms cubic-bezier(0, 0, 0.2, 1)}.mat-datepicker-content .mat-calendar{width:296px;height:354px}.mat-datepicker-content .mat-datepicker-content-container-with-custom-header .mat-calendar{height:auto}.mat-datepicker-content .mat-datepicker-close-button{position:absolute;top:100%;left:0;margin-top:8px}.mat-datepicker-content-animating .mat-datepicker-content .mat-datepicker-close-button{display:none}.mat-datepicker-content-container{display:flex;flex-direction:column;justify-content:space-between}.mat-datepicker-content-touch{display:block;max-height:80vh;box-shadow:var(--mat-datepicker-calendar-container-touch-elevation-shadow, 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12));border-radius:var(--mat-datepicker-calendar-container-touch-shape, var(--mat-sys-corner-extra-large));position:relative;overflow:visible}.mat-datepicker-content-touch.mat-datepicker-content-animations-enabled{animation:_mat-datepicker-content-dialog-enter 150ms cubic-bezier(0, 0, 0.2, 1)}.mat-datepicker-content-touch .mat-datepicker-content-container{min-height:312px;max-height:788px;min-width:250px;max-width:750px}.mat-datepicker-content-touch .mat-calendar{width:100%;height:auto}.mat-datepicker-content-exit.mat-datepicker-content-animations-enabled{animation:_mat-datepicker-content-exit 100ms linear}@media all and (orientation: landscape){.mat-datepicker-content-touch .mat-datepicker-content-container{width:64vh;height:80vh}}@media all and (orientation: portrait){.mat-datepicker-content-touch .mat-datepicker-content-container{width:80vw;height:100vw}.mat-datepicker-content-touch .mat-datepicker-content-container-with-actions{height:115vw}}\n"],encapsulation:2,changeDetection:0})}return nn})(),En=(()=>{class nn{_injector=(0,_e.WQX)(_e.zZn);_viewContainerRef=(0,_e.WQX)(he.c1b);_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dir=(0,_e.WQX)($.dS,{optional:!0});_model=(0,_e.WQX)(At);_animationsDisabled=(0,h.Rc)();_scrollStrategy=(0,_e.WQX)(ra);_inputStateChanges=Le.yU.EMPTY;_document=(0,_e.WQX)(_e.qQL);calendarHeaderComponent;get startAt(){return this._startAt||(this.datepickerInput?this.datepickerInput.getStartValue():null)}set startAt(U){this._startAt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U))}_startAt;startView="month";get color(){return this._color||(this.datepickerInput?this.datepickerInput.getThemePalette():void 0)}set color(U){this._color=U}_color;touchUi=!1;get disabled(){return void 0===this._disabled&&this.datepickerInput?this.datepickerInput.disabled:!!this._disabled}set disabled(U){U!==this._disabled&&(this._disabled=U,this.stateChanges.next(void 0))}_disabled;xPosition="start";yPosition="below";restoreFocus=!0;yearSelected=new he.bkB;monthSelected=new he.bkB;viewChanged=new he.bkB(!0);dateClass;openedStream=new he.bkB;closedStream=new he.bkB;get panelClass(){return this._panelClass}set panelClass(U){this._panelClass=(0,Ke.cc)(U)}_panelClass;get opened(){return this._opened}set opened(U){U?this.open():this.close()}_opened=!1;id=(0,_e.WQX)(H.g).getId("mat-datepicker-");_getMinDate(){return this.datepickerInput&&this.datepickerInput.min}_getMaxDate(){return this.datepickerInput&&this.datepickerInput.max}_getDateFilter(){return this.datepickerInput&&this.datepickerInput.dateFilter}_overlayRef;_componentRef;_focusedElementBeforeOpen=null;_backdropHarnessClass=`${this.id}-backdrop`;_actionsPortal;datepickerInput;stateChanges=new lt.B;_changeDetectorRef=(0,_e.WQX)(Dt.gRc);constructor(){this._model.selectionChanged.subscribe(()=>{this._changeDetectorRef.markForCheck()})}ngOnChanges(U){const tt=U.xPosition||U.yPosition;if(tt&&!tt.firstChange&&this._overlayRef){const Ze=this._overlayRef.getConfig().positionStrategy;Ze instanceof ot.rW&&(this._setConnectedPositions(Ze),this.opened&&this._overlayRef.updatePosition())}this.stateChanges.next(void 0)}ngOnDestroy(){this._destroyOverlay(),this.close(),this._inputStateChanges.unsubscribe(),this.stateChanges.complete()}select(U){this._model.add(U)}_selectYear(U){this.yearSelected.emit(U)}_selectMonth(U){this.monthSelected.emit(U)}_viewChanged(U){this.viewChanged.emit(U)}registerInput(U){return this._inputStateChanges.unsubscribe(),this.datepickerInput=U,this._inputStateChanges=U.stateChanges.subscribe(()=>this.stateChanges.next(void 0)),this._model}registerActions(U){this._actionsPortal=U,this._componentRef?.instance._assignActions(U,!0)}removeActions(U){U===this._actionsPortal&&(this._actionsPortal=null,this._componentRef?.instance._assignActions(null,!0))}open(){this._opened||this.disabled||this._componentRef?.instance._isAnimating||(this._focusedElementBeforeOpen=(0,ht.vc)(),this._openOverlay(),this._opened=!0,this.openedStream.emit())}close(){if(!this._opened||this._componentRef?.instance._isAnimating)return;const U=this.restoreFocus&&this._focusedElementBeforeOpen&&"function"==typeof this._focusedElementBeforeOpen.focus,tt=()=>{this._opened&&(this._opened=!1,this.closedStream.emit())};if(this._componentRef){const{instance:Ze,location:Xt}=this._componentRef;Ze._animationDone.pipe((0,Qe.s)(1)).subscribe(()=>{const Nn=this._document.activeElement;U&&(!Nn||Nn===this._document.activeElement||Xt.nativeElement.contains(Nn))&&this._focusedElementBeforeOpen.focus(),this._focusedElementBeforeOpen=null,this._destroyOverlay()}),Ze._startExitAnimation()}U?setTimeout(tt):tt()}_applyPendingSelection(){this._componentRef?.instance?._applyPendingSelection()}_forwardContentValues(U){U.datepicker=this,U.color=this.color,U._dialogLabelId=this.datepickerInput.getOverlayLabelId(),U._assignActions(this._actionsPortal,!1)}_openOverlay(){this._destroyOverlay();const U=this.touchUi,tt=new oe.A8(qt,this._viewContainerRef),Ze=this._overlayRef=(0,ot.Y$)(this._injector,new ot.rR({positionStrategy:U?this._getDialogStrategy():this._getDropdownStrategy(),hasBackdrop:!0,backdropClass:[U?"cdk-overlay-dark-backdrop":"mat-overlay-transparent-backdrop",this._backdropHarnessClass],direction:this._dir||"ltr",scrollStrategy:U?(0,ot.gA)(this._injector):this._scrollStrategy(),panelClass:"mat-datepicker-"+(U?"dialog":"popup"),disableAnimations:this._animationsDisabled}));this._getCloseStream(Ze).subscribe(Xt=>{Xt&&Xt.preventDefault(),this.close()}),Ze.keydownEvents().subscribe(Xt=>{const Nn=Xt.keyCode;(Nn===St.i7||Nn===St.n6||Nn===St.UQ||Nn===St.LE||Nn===St.w_||Nn===St.dB)&&Xt.preventDefault()}),this._componentRef=Ze.attach(tt),this._forwardContentValues(this._componentRef.instance),U||(0,he.mal)(()=>{Ze.updatePosition()},{injector:this._injector})}_destroyOverlay(){this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=this._componentRef=null)}_getDialogStrategy(){return(0,ot.uA)(this._injector).centerHorizontally().centerVertically()}_getDropdownStrategy(){const U=(0,ot.$M)(this._injector,this.datepickerInput.getConnectedOverlayOrigin()).withTransformOriginOn(".mat-datepicker-content").withFlexibleDimensions(!1).withViewportMargin(8).withLockedPosition();return this._setConnectedPositions(U)}_setConnectedPositions(U){const tt="end"===this.xPosition?"end":"start",Ze="start"===tt?"end":"start",Xt="above"===this.yPosition?"bottom":"top",Nn="top"===Xt?"bottom":"top";return U.withPositions([{originX:tt,originY:Nn,overlayX:tt,overlayY:Xt},{originX:tt,originY:Xt,overlayX:tt,overlayY:Nn},{originX:Ze,originY:Nn,overlayX:Ze,overlayY:Xt},{originX:Ze,originY:Xt,overlayX:Ze,overlayY:Nn}])}_getCloseStream(U){const tt=["ctrlKey","shiftKey","metaKey"];return(0,te.h)(U.backdropClick(),U.detachments(),U.keydownEvents().pipe((0,Ye.p)(Ze=>Ze.keyCode===St._f&&!(0,Vt.rp)(Ze)||this.datepickerInput&&(0,Vt.rp)(Ze,"altKey")&&Ze.keyCode===St.i7&&tt.every(Xt=>!(0,Vt.rp)(Ze,Xt)))))}static \u0275fac=function(tt){return new(tt||nn)};static \u0275dir=he.FsC({type:nn,inputs:{calendarHeaderComponent:"calendarHeaderComponent",startAt:"startAt",startView:"startView",color:"color",touchUi:[2,"touchUi","touchUi",Dt.L39],disabled:[2,"disabled","disabled",Dt.L39],xPosition:"xPosition",yPosition:"yPosition",restoreFocus:[2,"restoreFocus","restoreFocus",Dt.L39],dateClass:"dateClass",panelClass:"panelClass",opened:[2,"opened","opened",Dt.L39]},outputs:{yearSelected:"yearSelected",monthSelected:"monthSelected",viewChanged:"viewChanged",openedStream:"opened",closedStream:"closed"},features:[he.OA$]})}return nn})(),Wn=(()=>{class nn extends En{static \u0275fac=(()=>{let U;return function(Ze){return(U||(U=he.xGo(nn)))(Ze||nn)}})();static \u0275cmp=he.VBU({type:nn,selectors:[["mat-datepicker"]],exportAs:["matDatepicker"],features:[he.Jv_([Ht,{provide:En,useExisting:nn}]),he.Vt3],decls:0,vars:0,template:function(tt,Ze){},encapsulation:2,changeDetection:0})}return nn})();class ri{target;targetElement;value;constructor(ni,U){this.target=ni,this.targetElement=U,this.value=this.target.value}}let Rn=(()=>{class nn{_elementRef=(0,_e.WQX)(he.aKT);_dateAdapter=(0,_e.WQX)(P.MJ,{optional:!0});_dateFormats=(0,_e.WQX)(P.de,{optional:!0});_isInitialized;get value(){return this._model?this._getValueFromModel(this._model.selection):this._pendingValue}set value(U){this._assignValueProgrammatically(U)}_model;get disabled(){return!!this._disabled||this._parentDisabled()}set disabled(U){const tt=U,Ze=this._elementRef.nativeElement;this._disabled!==tt&&(this._disabled=tt,this.stateChanges.next(void 0)),tt&&this._isInitialized&&Ze.blur&&Ze.blur()}_disabled;dateChange=new he.bkB;dateInput=new he.bkB;stateChanges=new lt.B;_onTouched=()=>{};_validatorOnChange=()=>{};_cvaOnChange=()=>{};_valueChangesSubscription=Le.yU.EMPTY;_localeSubscription=Le.yU.EMPTY;_pendingValue;_parseValidator=()=>this._lastValueValid?null:{matDatepickerParse:{text:this._elementRef.nativeElement.value}};_filterValidator=U=>{const tt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U.value));return!tt||this._matchesFilter(tt)?null:{matDatepickerFilter:!0}};_minValidator=U=>{const tt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U.value)),Ze=this._getMinDate();return!Ze||!tt||this._dateAdapter.compareDate(Ze,tt)<=0?null:{matDatepickerMin:{min:Ze,actual:tt}}};_maxValidator=U=>{const tt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U.value)),Ze=this._getMaxDate();return!Ze||!tt||this._dateAdapter.compareDate(Ze,tt)>=0?null:{matDatepickerMax:{max:Ze,actual:tt}}};_getValidators(){return[this._parseValidator,this._minValidator,this._maxValidator,this._filterValidator]}_registerModel(U){this._model=U,this._valueChangesSubscription.unsubscribe(),this._pendingValue&&this._assignValue(this._pendingValue),this._valueChangesSubscription=this._model.selectionChanged.subscribe(tt=>{if(this._shouldHandleChangeEvent(tt)){const Ze=this._getValueFromModel(tt.selection);this._lastValueValid=this._isValidValue(Ze),this._cvaOnChange(Ze),this._onTouched(),this._formatValue(Ze),this.dateInput.emit(new ri(this,this._elementRef.nativeElement)),this.dateChange.emit(new ri(this,this._elementRef.nativeElement))}})}_lastValueValid=!1;constructor(){this._localeSubscription=this._dateAdapter.localeChanges.subscribe(()=>{this._assignValueProgrammatically(this.value)})}ngAfterViewInit(){this._isInitialized=!0}ngOnChanges(U){(function Hn(nn,ni){const U=Object.keys(nn);for(let tt of U){const{previousValue:Ze,currentValue:Xt}=nn[tt];if(!ni.isDateInstance(Ze)||!ni.isDateInstance(Xt))return!0;if(!ni.sameDate(Ze,Xt))return!0}return!1})(U,this._dateAdapter)&&this.stateChanges.next(void 0)}ngOnDestroy(){this._valueChangesSubscription.unsubscribe(),this._localeSubscription.unsubscribe(),this.stateChanges.complete()}registerOnValidatorChange(U){this._validatorOnChange=U}validate(U){return this._validator?this._validator(U):null}writeValue(U){this._assignValueProgrammatically(U)}registerOnChange(U){this._cvaOnChange=U}registerOnTouched(U){this._onTouched=U}setDisabledState(U){this.disabled=U}_onKeydown(U){(0,Vt.rp)(U,"altKey")&&U.keyCode===St.n6&&["ctrlKey","shiftKey","metaKey"].every(Xt=>!(0,Vt.rp)(U,Xt))&&!this._elementRef.nativeElement.readOnly&&(this._openPopup(),U.preventDefault())}_onInput(U){const tt=U.target.value,Ze=this._lastValueValid;let Xt=this._dateAdapter.parse(tt,this._dateFormats.parse.dateInput);this._lastValueValid=this._isValidValue(Xt),Xt=this._dateAdapter.getValidDateOrNull(Xt);const Nn=!this._dateAdapter.sameDate(Xt,this.value);!Xt||Nn?this._cvaOnChange(Xt):(tt&&!this.value&&this._cvaOnChange(Xt),Ze!==this._lastValueValid&&this._validatorOnChange()),Nn&&(this._assignValue(Xt),this.dateInput.emit(new ri(this,this._elementRef.nativeElement)))}_onChange(){this.dateChange.emit(new ri(this,this._elementRef.nativeElement))}_onBlur(){this.value&&this._formatValue(this.value),this._onTouched()}_formatValue(U){this._elementRef.nativeElement.value=null!=U?this._dateAdapter.format(U,this._dateFormats.display.dateInput):""}_assignValue(U){this._model?(this._assignValueToModel(U),this._pendingValue=null):this._pendingValue=U}_isValidValue(U){return!U||this._dateAdapter.isValid(U)}_parentDisabled(){return!1}_assignValueProgrammatically(U){U=this._dateAdapter.deserialize(U),this._lastValueValid=this._isValidValue(U),U=this._dateAdapter.getValidDateOrNull(U),this._assignValue(U),this._formatValue(U)}_matchesFilter(U){const tt=this._getDateFilter();return!tt||tt(U)}static \u0275fac=function(tt){return new(tt||nn)};static \u0275dir=he.FsC({type:nn,inputs:{value:"value",disabled:[2,"disabled","disabled",Dt.L39]},outputs:{dateChange:"dateChange",dateInput:"dateInput"},features:[he.OA$]})}return nn})();const Pi={provide:jt.kq,useExisting:(0,_e.Rfq)(()=>Ta),multi:!0},da={provide:jt.cz,useExisting:(0,_e.Rfq)(()=>Ta),multi:!0};let Ta=(()=>{class nn extends Rn{_formField=(0,_e.WQX)(wt.xb,{optional:!0});_closedSubscription=Le.yU.EMPTY;_openedSubscription=Le.yU.EMPTY;set matDatepicker(U){U&&(this._datepicker=U,this._ariaOwns.set(U.opened?U.id:null),this._closedSubscription=U.closedStream.subscribe(()=>{this._onTouched(),this._ariaOwns.set(null)}),this._openedSubscription=U.openedStream.subscribe(()=>{this._ariaOwns.set(U.id)}),this._registerModel(U.registerInput(this)))}_datepicker;_ariaOwns=(0,_e.vPA)(null);get min(){return this._min}set min(U){const tt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U));this._dateAdapter.sameDate(tt,this._min)||(this._min=tt,this._validatorOnChange())}_min;get max(){return this._max}set max(U){const tt=this._dateAdapter.getValidDateOrNull(this._dateAdapter.deserialize(U));this._dateAdapter.sameDate(tt,this._max)||(this._max=tt,this._validatorOnChange())}_max;get dateFilter(){return this._dateFilter}set dateFilter(U){const tt=this._matchesFilter(this.value);this._dateFilter=U,this._matchesFilter(this.value)!==tt&&this._validatorOnChange()}_dateFilter;_validator;constructor(){super(),this._validator=jt.k0.compose(super._getValidators())}getConnectedOverlayOrigin(){return this._formField?this._formField.getConnectedOverlayOrigin():this._elementRef}getOverlayLabelId(){return this._formField?this._formField.getLabelId():this._elementRef.nativeElement.getAttribute("aria-labelledby")}getThemePalette(){return this._formField?this._formField.color:void 0}getStartValue(){return this.value}ngOnDestroy(){super.ngOnDestroy(),this._closedSubscription.unsubscribe(),this._openedSubscription.unsubscribe()}_openPopup(){this._datepicker&&this._datepicker.open()}_getValueFromModel(U){return U}_assignValueToModel(U){this._model&&this._model.updateSelection(U,this)}_getMinDate(){return this._min}_getMaxDate(){return this._max}_getDateFilter(){return this._dateFilter}_shouldHandleChangeEvent(U){return U.source!==this}static \u0275fac=function(tt){return new(tt||nn)};static \u0275dir=he.FsC({type:nn,selectors:[["input","matDatepicker",""]],hostAttrs:[1,"mat-datepicker-input"],hostVars:6,hostBindings:function(tt,Ze){1&tt&&he.bIt("input",function(Nn){return Ze._onInput(Nn)})("change",function(){return Ze._onChange()})("blur",function(){return Ze._onBlur()})("keydown",function(Nn){return Ze._onKeydown(Nn)}),2&tt&&(he.Avn("disabled",Ze.disabled),he.BMQ("aria-haspopup",Ze._datepicker?"dialog":null)("aria-owns",Ze._ariaOwns())("min",Ze.min?Ze._dateAdapter.toIso8601(Ze.min):null)("max",Ze.max?Ze._dateAdapter.toIso8601(Ze.max):null)("data-mat-calendar",Ze._datepicker?Ze._datepicker.id:null))},inputs:{matDatepicker:"matDatepicker",min:"min",max:"max",dateFilter:[0,"matDatepickerFilter","dateFilter"]},exportAs:["matDatepickerInput"],features:[he.Jv_([Pi,da,{provide:Ue.O,useExisting:nn}]),he.Vt3]})}return nn})(),en=(()=>{class nn{static \u0275fac=function(tt){return new(tt||nn)};static \u0275dir=he.FsC({type:nn,selectors:[["","matDatepickerToggleIcon",""]]})}return nn})(),vn=(()=>{class nn{_intl=(0,_e.WQX)(Ot);_changeDetectorRef=(0,_e.WQX)(Dt.gRc);_stateChanges=Le.yU.EMPTY;datepicker;tabIndex;ariaLabel;get disabled(){return void 0===this._disabled&&this.datepicker?this.datepicker.disabled:!!this._disabled}set disabled(U){this._disabled=U}_disabled;disableRipple;_customIcon;_button;constructor(){const U=(0,_e.WQX)(new Dt.ES_("tabindex"),{optional:!0}),tt=Number(U);this.tabIndex=tt||0===tt?tt:null}ngOnChanges(U){U.datepicker&&this._watchStateChanges()}ngOnDestroy(){this._stateChanges.unsubscribe()}ngAfterContentInit(){this._watchStateChanges()}_open(U){this.datepicker&&!this.disabled&&(this.datepicker.open(),U.stopPropagation())}_watchStateChanges(){const U=this.datepicker?this.datepicker.stateChanges:(0,ie.of)(),tt=this.datepicker&&this.datepicker.datepickerInput?this.datepicker.datepickerInput.stateChanges:(0,ie.of)(),Ze=this.datepicker?(0,te.h)(this.datepicker.openedStream,this.datepicker.closedStream):(0,ie.of)();this._stateChanges.unsubscribe(),this._stateChanges=(0,te.h)(this._intl.changes,U,tt,Ze).subscribe(()=>this._changeDetectorRef.markForCheck())}static \u0275fac=function(tt){return new(tt||nn)};static \u0275cmp=he.VBU({type:nn,selectors:[["mat-datepicker-toggle"]],contentQueries:function(tt,Ze,Xt){if(1&tt&&he.wni(Xt,en,5),2&tt){let Nn;he.mGM(Nn=he.lsd())&&(Ze._customIcon=Nn.first)}},viewQuery:function(tt,Ze){if(1&tt&&he.GBs(Me,5),2&tt){let Xt;he.mGM(Xt=he.lsd())&&(Ze._button=Xt.first)}},hostAttrs:[1,"mat-datepicker-toggle"],hostVars:8,hostBindings:function(tt,Ze){1&tt&&he.bIt("click",function(Nn){return Ze._open(Nn)}),2&tt&&(he.BMQ("tabindex",null)("data-mat-calendar",Ze.datepicker?Ze.datepicker.id:null),he.AVh("mat-datepicker-toggle-active",Ze.datepicker&&Ze.datepicker.opened)("mat-accent",Ze.datepicker&&"accent"===Ze.datepicker.color)("mat-warn",Ze.datepicker&&"warn"===Ze.datepicker.color))},inputs:{datepicker:[0,"for","datepicker"],tabIndex:"tabIndex",ariaLabel:[0,"aria-label","ariaLabel"],disabled:[2,"disabled","disabled",Dt.L39],disableRipple:"disableRipple"},exportAs:["matDatepickerToggle"],features:[he.OA$],ngContentSelectors:qe,decls:4,vars:7,consts:[["button",""],["matIconButton","","type","button",3,"tabIndex","disabled","disableRipple"],["viewBox","0 0 24 24","width","24px","height","24px","fill","currentColor","focusable","false","aria-hidden","true",1,"mat-datepicker-toggle-default-icon"],["d","M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"]],template:function(tt,Ze){1&tt&&(he.NAR(at),he.j41(0,"button",1,0),he.nVh(2,pn,2,0,":svg:svg",2),he.SdG(3),he.k0s()),2&tt&&(he.Y8G("tabIndex",Ze.disabled?-1:Ze.tabIndex)("disabled",Ze.disabled)("disableRipple",Ze.disableRipple),he.BMQ("aria-haspopup",Ze.datepicker?"dialog":null)("aria-label",Ze.ariaLabel||Ze._intl.openCalendarLabel)("aria-expanded",Ze.datepicker?Ze.datepicker.opened:null),he.R7$(2),he.vxM(Ze._customIcon?-1:2))},dependencies:[Sn.iY],styles:[".mat-datepicker-toggle{pointer-events:auto;color:var(--mat-datepicker-toggle-icon-color, var(--mat-sys-on-surface-variant))}.mat-datepicker-toggle button{color:inherit}.mat-datepicker-toggle-active{color:var(--mat-datepicker-toggle-active-state-icon-color, var(--mat-sys-primary))}@media(forced-colors: active){.mat-datepicker-toggle-default-icon{color:CanvasText}}\n"],encapsulation:2,changeDetection:0})}return nn})(),Ii=(()=>{class nn{static \u0275fac=function(tt){return new(tt||nn)};static \u0275mod=he.$C({type:nn});static \u0275inj=_e.G2t({providers:[Ot,ha],imports:[Ft.Hl,ot.z_,ve.Pd,oe.jc,Pt.y,qt,vn,Bn,pt.Gj]})}return nn})()},1585(Zt,pe,l){"use strict";l.d(pe,{Vh:()=>ht,di:()=>oe,bZ:()=>fe,tx:()=>Qe,hM:()=>Qn,CP:()=>ot});var i=l(3664),d=l(2615),v=l(7705),T=l(1413),w=l(9030),e=l(6939),O=l(7094),f=l(6838),u=l(9842),L=l(4522),C=l(438),B=l(7336),A=l(9172),Pe=l(6697),le=l(9338),Ce=l(9726),Ae=l(1577);function j(h,jt){}class W{viewContainerRef;injector;id;role="dialog";panelClass="";hasBackdrop=!0;backdropClass="";disableClose=!1;closePredicate;width="";height="";minWidth;minHeight;maxWidth;maxHeight;positionStrategy;data=null;direction;ariaDescribedBy=null;ariaLabelledBy=null;ariaLabel=null;ariaModal=!1;autoFocus="first-tabbable";restoreFocus=!0;scrollStrategy;closeOnNavigation=!0;closeOnDestroy=!0;closeOnOverlayDetachments=!0;disableAnimations=!1;providers;container;templateContext}let re=(()=>{class h extends e.lb{_elementRef=(0,d.WQX)(i.aKT);_focusTrapFactory=(0,d.WQX)(O.GX);_config;_interactivityChecker=(0,d.WQX)(O.Z7);_ngZone=(0,d.WQX)(i.SKi);_focusMonitor=(0,d.WQX)(f.FN);_renderer=(0,d.WQX)(i.sFG);_changeDetectorRef=(0,d.WQX)(v.gRc);_injector=(0,d.WQX)(d.zZn);_platform=(0,d.WQX)(u.O);_document=(0,d.WQX)(d.qQL);_portalOutlet;_focusTrapped=new T.B;_focusTrap=null;_elementFocusedBeforeDialogWasOpened=null;_closeInteractionType=null;_ariaLabelledByQueue=[];_isDestroyed=!1;constructor(){super(),this._config=(0,d.WQX)(W,{optional:!0})||new W,this._config.ariaLabelledBy&&this._ariaLabelledByQueue.push(this._config.ariaLabelledBy)}_addAriaLabelledBy(Ue){this._ariaLabelledByQueue.push(Ue),this._changeDetectorRef.markForCheck()}_removeAriaLabelledBy(Ue){const wt=this._ariaLabelledByQueue.indexOf(Ue);wt>-1&&(this._ariaLabelledByQueue.splice(wt,1),this._changeDetectorRef.markForCheck())}_contentAttached(){this._initializeFocusTrap(),this._captureInitialFocus()}_captureInitialFocus(){this._trapFocus()}ngOnDestroy(){this._focusTrapped.complete(),this._isDestroyed=!0,this._restoreFocus()}attachComponentPortal(Ue){this._portalOutlet.hasAttached();const wt=this._portalOutlet.attachComponentPortal(Ue);return this._contentAttached(),wt}attachTemplatePortal(Ue){this._portalOutlet.hasAttached();const wt=this._portalOutlet.attachTemplatePortal(Ue);return this._contentAttached(),wt}attachDomPortal=Ue=>{this._portalOutlet.hasAttached();const wt=this._portalOutlet.attachDomPortal(Ue);return this._contentAttached(),wt};_recaptureFocus(){this._containsFocus()||this._trapFocus()}_forceFocus(Ue,wt){this._interactivityChecker.isFocusable(Ue)||(Ue.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const pt=()=>{Pt(),gn(),Ue.removeAttribute("tabindex")},Pt=this._renderer.listen(Ue,"blur",pt),gn=this._renderer.listen(Ue,"mousedown",pt)})),Ue.focus(wt)}_focusByCssSelector(Ue,wt){let pt=this._elementRef.nativeElement.querySelector(Ue);pt&&this._forceFocus(pt,wt)}_trapFocus(Ue){this._isDestroyed||(0,i.mal)(()=>{const wt=this._elementRef.nativeElement;switch(this._config.autoFocus){case!1:case"dialog":this._containsFocus()||wt.focus(Ue);break;case!0:case"first-tabbable":this._focusTrap?.focusInitialElement(Ue)||this._focusDialogContainer(Ue);break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]',Ue);break;default:this._focusByCssSelector(this._config.autoFocus,Ue)}this._focusTrapped.next()},{injector:this._injector})}_restoreFocus(){const Ue=this._config.restoreFocus;let wt=null;if("string"==typeof Ue?wt=this._document.querySelector(Ue):"boolean"==typeof Ue?wt=Ue?this._elementFocusedBeforeDialogWasOpened:null:Ue&&(wt=Ue),this._config.restoreFocus&&wt&&"function"==typeof wt.focus){const pt=(0,L.vc)(),Pt=this._elementRef.nativeElement;(!pt||pt===this._document.body||pt===Pt||Pt.contains(pt))&&(this._focusMonitor?(this._focusMonitor.focusVia(wt,this._closeInteractionType),this._closeInteractionType=null):wt.focus())}this._focusTrap&&this._focusTrap.destroy()}_focusDialogContainer(Ue){this._elementRef.nativeElement.focus?.(Ue)}_containsFocus(){const Ue=this._elementRef.nativeElement,wt=(0,L.vc)();return Ue===wt||Ue.contains(wt)}_initializeFocusTrap(){this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._document&&(this._elementFocusedBeforeDialogWasOpened=(0,L.vc)()))}static \u0275fac=function(wt){return new(wt||h)};static \u0275cmp=i.VBU({type:h,selectors:[["cdk-dialog-container"]],viewQuery:function(wt,pt){if(1&wt&&i.GBs(e.I3,7),2&wt){let Pt;i.mGM(Pt=i.lsd())&&(pt._portalOutlet=Pt.first)}},hostAttrs:["tabindex","-1",1,"cdk-dialog-container"],hostVars:6,hostBindings:function(wt,pt){2&wt&&i.BMQ("id",pt._config.id||null)("role",pt._config.role)("aria-modal",pt._config.ariaModal)("aria-labelledby",pt._config.ariaLabel?null:pt._ariaLabelledByQueue[0])("aria-label",pt._config.ariaLabel)("aria-describedby",pt._config.ariaDescribedBy||null)},features:[i.Vt3],decls:1,vars:0,consts:[["cdkPortalOutlet",""]],template:function(wt,pt){1&wt&&i.DNE(0,j,0,0,"ng-template",0)},dependencies:[e.I3],styles:[".cdk-dialog-container{display:block;width:100%;height:100%;min-height:inherit;max-height:inherit}\n"],encapsulation:2})}return h})();class xe{overlayRef;config;componentInstance;componentRef;containerInstance;disableClose;closed=new T.B;backdropClick;keydownEvents;outsidePointerEvents;id;_detachSubscription;constructor(jt,Ue){this.overlayRef=jt,this.config=Ue,this.disableClose=Ue.disableClose,this.backdropClick=jt.backdropClick(),this.keydownEvents=jt.keydownEvents(),this.outsidePointerEvents=jt.outsidePointerEvents(),this.id=Ue.id,this.keydownEvents.subscribe(wt=>{wt.keyCode===C._f&&!this.disableClose&&!(0,B.rp)(wt)&&(wt.preventDefault(),this.close(void 0,{focusOrigin:"keyboard"}))}),this.backdropClick.subscribe(()=>{!this.disableClose&&this._canClose()?this.close(void 0,{focusOrigin:"mouse"}):this.containerInstance._recaptureFocus?.()}),this._detachSubscription=jt.detachments().subscribe(()=>{!1!==Ue.closeOnOverlayDetachments&&this.close()})}close(jt,Ue){if(this._canClose(jt)){const wt=this.closed;this.containerInstance._closeInteractionType=Ue?.focusOrigin||"program",this._detachSubscription.unsubscribe(),this.overlayRef.dispose(),wt.next(jt),wt.complete(),this.componentInstance=this.containerInstance=null}}updatePosition(){return this.overlayRef.updatePosition(),this}updateSize(jt="",Ue=""){return this.overlayRef.updateSize({width:jt,height:Ue}),this}addPanelClass(jt){return this.overlayRef.addPanelClass(jt),this}removePanelClass(jt){return this.overlayRef.removePanelClass(jt),this}_canClose(jt){const Ue=this.config;return!!this.containerInstance&&(!Ue.closePredicate||Ue.closePredicate(jt,Ue,this.componentInstance))}}const Ee=new d.nKC("DialogScrollStrategy",{providedIn:"root",factory:()=>{const h=(0,d.WQX)(d.zZn);return()=>(0,le.gA)(h)}}),V=new d.nKC("DialogData"),ce=new d.nKC("DefaultDialogConfig");function be(h){const jt=(0,d.vPA)(h),Ue=new i.bkB;return{valueSignal:jt,get value(){return jt()},change:Ue,ngOnDestroy(){Ue.complete()}}}let ne=(()=>{class h{_injector=(0,d.WQX)(d.zZn);_defaultOptions=(0,d.WQX)(ce,{optional:!0});_parentDialog=(0,d.WQX)(h,{optional:!0,skipSelf:!0});_overlayContainer=(0,d.WQX)(le.Sf);_idGenerator=(0,d.WQX)(Ce.g);_openDialogsAtThisLevel=[];_afterAllClosedAtThisLevel=new T.B;_afterOpenedAtThisLevel=new T.B;_ariaHiddenElements=new Map;_scrollStrategy=(0,d.WQX)(Ee);get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}afterAllClosed=(0,w.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,A.Z)(void 0)));constructor(){}open(Ue,wt){(wt={...this._defaultOptions||new W,...wt}).id=wt.id||this._idGenerator.getId("cdk-dialog-"),wt.id&&this.getDialogById(wt.id);const Pt=this._getOverlayConfig(wt),gn=(0,le.Y$)(this._injector,Pt),ei=new xe(gn,wt),vi=this._attachContainer(gn,ei,wt);if(ei.containerInstance=vi,!this.openDialogs.length){const Ni=this._overlayContainer.getContainerElement();vi._focusTrapped?vi._focusTrapped.pipe((0,Pe.s)(1)).subscribe(()=>{this._hideNonDialogContentFromAssistiveTechnology(Ni)}):this._hideNonDialogContentFromAssistiveTechnology(Ni)}return this._attachDialogContent(Ue,ei,vi,wt),this.openDialogs.push(ei),ei.closed.subscribe(()=>this._removeOpenDialog(ei,!0)),this.afterOpened.next(ei),ei}closeAll(){J(this.openDialogs,Ue=>Ue.close())}getDialogById(Ue){return this.openDialogs.find(wt=>wt.id===Ue)}ngOnDestroy(){J(this._openDialogsAtThisLevel,Ue=>{!1===Ue.config.closeOnDestroy&&this._removeOpenDialog(Ue,!1)}),J(this._openDialogsAtThisLevel,Ue=>Ue.close()),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete(),this._openDialogsAtThisLevel=[]}_getOverlayConfig(Ue){const wt=new le.rR({positionStrategy:Ue.positionStrategy||(0,le.uA)().centerHorizontally().centerVertically(),scrollStrategy:Ue.scrollStrategy||this._scrollStrategy(),panelClass:Ue.panelClass,hasBackdrop:Ue.hasBackdrop,direction:Ue.direction,minWidth:Ue.minWidth,minHeight:Ue.minHeight,maxWidth:Ue.maxWidth,maxHeight:Ue.maxHeight,width:Ue.width,height:Ue.height,disposeOnNavigation:Ue.closeOnNavigation,disableAnimations:Ue.disableAnimations});return Ue.backdropClass&&(wt.backdropClass=Ue.backdropClass),wt}_attachContainer(Ue,wt,pt){const Pt=pt.injector||pt.viewContainerRef?.injector,gn=[{provide:W,useValue:pt},{provide:xe,useValue:wt},{provide:le.yY,useValue:Ue}];let ei;pt.container?"function"==typeof pt.container?ei=pt.container:(ei=pt.container.type,gn.push(...pt.container.providers(pt))):ei=re;const vi=new e.A8(ei,pt.viewContainerRef,d.zZn.create({parent:Pt||this._injector,providers:gn}));return Ue.attach(vi).instance}_attachDialogContent(Ue,wt,pt,Pt){if(Ue instanceof i.C4Q){const gn=this._createInjector(Pt,wt,pt,void 0);let ei={$implicit:Pt.data,dialogRef:wt};Pt.templateContext&&(ei={...ei,..."function"==typeof Pt.templateContext?Pt.templateContext():Pt.templateContext}),pt.attachTemplatePortal(new e.VA(Ue,null,ei,gn))}else{const gn=this._createInjector(Pt,wt,pt,this._injector),ei=pt.attachComponentPortal(new e.A8(Ue,Pt.viewContainerRef,gn));wt.componentRef=ei,wt.componentInstance=ei.instance}}_createInjector(Ue,wt,pt,Pt){const gn=Ue.injector||Ue.viewContainerRef?.injector,ei=[{provide:V,useValue:Ue.data},{provide:xe,useValue:wt}];return Ue.providers&&("function"==typeof Ue.providers?ei.push(...Ue.providers(wt,Ue,pt)):ei.push(...Ue.providers)),Ue.direction&&(!gn||!gn.get(Ae.dS,null,{optional:!0}))&&ei.push({provide:Ae.dS,useValue:be(Ue.direction)}),d.zZn.create({parent:gn||Pt,providers:ei})}_removeOpenDialog(Ue,wt){const pt=this.openDialogs.indexOf(Ue);pt>-1&&(this.openDialogs.splice(pt,1),this.openDialogs.length||(this._ariaHiddenElements.forEach((Pt,gn)=>{Pt?gn.setAttribute("aria-hidden",Pt):gn.removeAttribute("aria-hidden")}),this._ariaHiddenElements.clear(),wt&&this._getAfterAllClosed().next()))}_hideNonDialogContentFromAssistiveTechnology(Ue){if(Ue.parentElement){const wt=Ue.parentElement.children;for(let pt=wt.length-1;pt>-1;pt--){const Pt=wt[pt];Pt!==Ue&&"SCRIPT"!==Pt.nodeName&&"STYLE"!==Pt.nodeName&&!Pt.hasAttribute("aria-live")&&(this._ariaHiddenElements.set(Pt,Pt.getAttribute("aria-hidden")),Pt.setAttribute("aria-hidden","true"))}}}_getAfterAllClosed(){const Ue=this._parentDialog;return Ue?Ue._getAfterAllClosed():this._afterAllClosedAtThisLevel}static \u0275fac=function(wt){return new(wt||h)};static \u0275prov=d.jDH({token:h,factory:h.\u0275fac,providedIn:"root"})}return h})();function J(h,jt){let Ue=h.length;for(;Ue--;)jt(h[Ue])}let De=(()=>{class h{static \u0275fac=function(wt){return new(wt||h)};static \u0275mod=i.$C({type:h});static \u0275inj=d.G2t({providers:[ne],imports:[le.z_,e.jc,O.Pd,e.jc]})}return h})();var Re=l(7847),Xe=l(1804),_e=l(7786),he=l(5964),lt=(l(5718),l(2466));function Le(h,jt){}class te{viewContainerRef;injector;id;role="dialog";panelClass="";hasBackdrop=!0;backdropClass="";disableClose=!1;closePredicate;width="";height="";minWidth;minHeight;maxWidth;maxHeight;position;data=null;direction;ariaDescribedBy=null;ariaLabelledBy=null;ariaLabel=null;ariaModal=!1;autoFocus="first-tabbable";restoreFocus=!0;delayFocusTrap=!0;scrollStrategy;closeOnNavigation=!0;enterAnimationDuration;exitAnimationDuration}const ie="mdc-dialog--open",P="mdc-dialog--opening",F="mdc-dialog--closing";let $=(()=>{class h extends re{_animationStateChanged=new i.bkB;_animationsEnabled=!(0,Xe.Rc)();_actionSectionCount=0;_hostElement=this._elementRef.nativeElement;_enterAnimationDuration=this._animationsEnabled?Vt(this._config.enterAnimationDuration)??150:0;_exitAnimationDuration=this._animationsEnabled?Vt(this._config.exitAnimationDuration)??75:0;_animationTimer=null;_contentAttached(){super._contentAttached(),this._startOpenAnimation()}_startOpenAnimation(){this._animationStateChanged.emit({state:"opening",totalTime:this._enterAnimationDuration}),this._animationsEnabled?(this._hostElement.style.setProperty(Ke,`${this._enterAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(P,ie)),this._waitForAnimationToComplete(this._enterAnimationDuration,this._finishDialogOpen)):(this._hostElement.classList.add(ie),Promise.resolve().then(()=>this._finishDialogOpen()))}_startExitAnimation(){this._animationStateChanged.emit({state:"closing",totalTime:this._exitAnimationDuration}),this._hostElement.classList.remove(ie),this._animationsEnabled?(this._hostElement.style.setProperty(Ke,`${this._exitAnimationDuration}ms`),this._requestAnimationFrame(()=>this._hostElement.classList.add(F)),this._waitForAnimationToComplete(this._exitAnimationDuration,this._finishDialogClose)):Promise.resolve().then(()=>this._finishDialogClose())}_updateActionSectionCount(Ue){this._actionSectionCount+=Ue,this._changeDetectorRef.markForCheck()}_finishDialogOpen=()=>{this._clearAnimationClasses(),this._openAnimationDone(this._enterAnimationDuration)};_finishDialogClose=()=>{this._clearAnimationClasses(),this._animationStateChanged.emit({state:"closed",totalTime:this._exitAnimationDuration})};_clearAnimationClasses(){this._hostElement.classList.remove(P,F)}_waitForAnimationToComplete(Ue,wt){null!==this._animationTimer&&clearTimeout(this._animationTimer),this._animationTimer=setTimeout(wt,Ue)}_requestAnimationFrame(Ue){this._ngZone.runOutsideAngular(()=>{"function"==typeof requestAnimationFrame?requestAnimationFrame(Ue):Ue()})}_captureInitialFocus(){this._config.delayFocusTrap||this._trapFocus()}_openAnimationDone(Ue){this._config.delayFocusTrap&&this._trapFocus(),this._animationStateChanged.next({state:"opened",totalTime:Ue})}ngOnDestroy(){super.ngOnDestroy(),null!==this._animationTimer&&clearTimeout(this._animationTimer)}attachComponentPortal(Ue){const wt=super.attachComponentPortal(Ue);return wt.location.nativeElement.classList.add("mat-mdc-dialog-component-host"),wt}static \u0275fac=(()=>{let Ue;return function(pt){return(Ue||(Ue=i.xGo(h)))(pt||h)}})();static \u0275cmp=i.VBU({type:h,selectors:[["mat-dialog-container"]],hostAttrs:["tabindex","-1",1,"mat-mdc-dialog-container","mdc-dialog"],hostVars:10,hostBindings:function(wt,pt){2&wt&&(i.Avn("id",pt._config.id),i.BMQ("aria-modal",pt._config.ariaModal)("role",pt._config.role)("aria-labelledby",pt._config.ariaLabel?null:pt._ariaLabelledByQueue[0])("aria-label",pt._config.ariaLabel)("aria-describedby",pt._config.ariaDescribedBy||null),i.AVh("_mat-animation-noopable",!pt._animationsEnabled)("mat-mdc-dialog-container-with-actions",pt._actionSectionCount>0))},features:[i.Vt3],decls:3,vars:0,consts:[[1,"mat-mdc-dialog-inner-container","mdc-dialog__container"],[1,"mat-mdc-dialog-surface","mdc-dialog__surface"],["cdkPortalOutlet",""]],template:function(wt,pt){1&wt&&(i.j41(0,"div",0)(1,"div",1),i.DNE(2,Le,0,0,"ng-template",2),i.k0s()())},dependencies:[e.I3],styles:['.mat-mdc-dialog-container{width:100%;height:100%;display:block;box-sizing:border-box;max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit;outline:0}.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-max-width, 560px);min-width:var(--mat-dialog-container-min-width, 280px)}@media(max-width: 599px){.cdk-overlay-pane.mat-mdc-dialog-panel{max-width:var(--mat-dialog-container-small-max-width, calc(100vw - 32px))}}.mat-mdc-dialog-inner-container{display:flex;flex-direction:row;align-items:center;justify-content:space-around;box-sizing:border-box;height:100%;opacity:0;transition:opacity linear var(--mat-dialog-transition-duration, 0ms);max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit}.mdc-dialog--closing .mat-mdc-dialog-inner-container{transition:opacity 75ms linear;transform:none}.mdc-dialog--open .mat-mdc-dialog-inner-container{opacity:1}._mat-animation-noopable .mat-mdc-dialog-inner-container{transition:none}.mat-mdc-dialog-surface{display:flex;flex-direction:column;flex-grow:0;flex-shrink:0;box-sizing:border-box;width:100%;height:100%;position:relative;overflow-y:auto;outline:0;transform:scale(0.8);transition:transform var(--mat-dialog-transition-duration, 0ms) cubic-bezier(0, 0, 0.2, 1);max-height:inherit;min-height:inherit;min-width:inherit;max-width:inherit;box-shadow:var(--mat-dialog-container-elevation-shadow, none);border-radius:var(--mat-dialog-container-shape, var(--mat-sys-corner-extra-large, 4px));background-color:var(--mat-dialog-container-color, var(--mat-sys-surface, white))}[dir=rtl] .mat-mdc-dialog-surface{text-align:right}.mdc-dialog--open .mat-mdc-dialog-surface,.mdc-dialog--closing .mat-mdc-dialog-surface{transform:none}._mat-animation-noopable .mat-mdc-dialog-surface{transition:none}.mat-mdc-dialog-surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:2px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}.mat-mdc-dialog-title{display:block;position:relative;flex-shrink:0;box-sizing:border-box;margin:0 0 1px;padding:var(--mat-dialog-headline-padding, 6px 24px 13px)}.mat-mdc-dialog-title::before{display:inline-block;width:0;height:40px;content:"";vertical-align:0}[dir=rtl] .mat-mdc-dialog-title{text-align:right}.mat-mdc-dialog-container .mat-mdc-dialog-title{color:var(--mat-dialog-subhead-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)));font-family:var(--mat-dialog-subhead-font, var(--mat-sys-headline-small-font, inherit));line-height:var(--mat-dialog-subhead-line-height, var(--mat-sys-headline-small-line-height, 1.5rem));font-size:var(--mat-dialog-subhead-size, var(--mat-sys-headline-small-size, 1rem));font-weight:var(--mat-dialog-subhead-weight, var(--mat-sys-headline-small-weight, 400));letter-spacing:var(--mat-dialog-subhead-tracking, var(--mat-sys-headline-small-tracking, 0.03125em))}.mat-mdc-dialog-content{display:block;flex-grow:1;box-sizing:border-box;margin:0;overflow:auto;max-height:65vh}.mat-mdc-dialog-content>:first-child{margin-top:0}.mat-mdc-dialog-content>:last-child{margin-bottom:0}.mat-mdc-dialog-container .mat-mdc-dialog-content{color:var(--mat-dialog-supporting-text-color, var(--mat-sys-on-surface-variant, rgba(0, 0, 0, 0.6)));font-family:var(--mat-dialog-supporting-text-font, var(--mat-sys-body-medium-font, inherit));line-height:var(--mat-dialog-supporting-text-line-height, var(--mat-sys-body-medium-line-height, 1.5rem));font-size:var(--mat-dialog-supporting-text-size, var(--mat-sys-body-medium-size, 1rem));font-weight:var(--mat-dialog-supporting-text-weight, var(--mat-sys-body-medium-weight, 400));letter-spacing:var(--mat-dialog-supporting-text-tracking, var(--mat-sys-body-medium-tracking, 0.03125em))}.mat-mdc-dialog-container .mat-mdc-dialog-content{padding:var(--mat-dialog-content-padding, 20px 24px)}.mat-mdc-dialog-container-with-actions .mat-mdc-dialog-content{padding:var(--mat-dialog-with-actions-content-padding, 20px 24px 0)}.mat-mdc-dialog-container .mat-mdc-dialog-title+.mat-mdc-dialog-content{padding-top:0}.mat-mdc-dialog-actions{display:flex;position:relative;flex-shrink:0;flex-wrap:wrap;align-items:center;box-sizing:border-box;min-height:52px;margin:0;border-top:1px solid rgba(0,0,0,0);padding:var(--mat-dialog-actions-padding, 16px 24px);justify-content:var(--mat-dialog-actions-alignment, flex-end)}@media(forced-colors: active){.mat-mdc-dialog-actions{border-top-color:CanvasText}}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-start,.mat-mdc-dialog-actions[align=start]{justify-content:start}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-center,.mat-mdc-dialog-actions[align=center]{justify-content:center}.mat-mdc-dialog-actions.mat-mdc-dialog-actions-align-end,.mat-mdc-dialog-actions[align=end]{justify-content:flex-end}.mat-mdc-dialog-actions .mat-button-base+.mat-button-base,.mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-mdc-dialog-actions .mat-button-base+.mat-button-base,[dir=rtl] .mat-mdc-dialog-actions .mat-mdc-button-base+.mat-mdc-button-base{margin-left:0;margin-right:8px}.mat-mdc-dialog-component-host{display:contents}\n'],encapsulation:2})}return h})();const Ke="--mat-dialog-transition-duration";function Vt(h){return null==h?null:"number"==typeof h?h:h.endsWith("ms")?(0,Re.OE)(h.substring(0,h.length-2)):h.endsWith("s")?1e3*(0,Re.OE)(h.substring(0,h.length-1)):"0"===h?0:null}var St=function(h){return h[h.OPEN=0]="OPEN",h[h.CLOSING=1]="CLOSING",h[h.CLOSED=2]="CLOSED",h}(St||{});class ot{_ref;_config;_containerInstance;componentInstance;componentRef;disableClose;id;_afterOpened=new T.B;_beforeClosed=new T.B;_result;_closeFallbackTimeout;_state=St.OPEN;_closeInteractionType;constructor(jt,Ue,wt){this._ref=jt,this._config=Ue,this._containerInstance=wt,this.disableClose=Ue.disableClose,this.id=jt.id,jt.addPanelClass("mat-mdc-dialog-panel"),wt._animationStateChanged.pipe((0,he.p)(pt=>"opened"===pt.state),(0,Pe.s)(1)).subscribe(()=>{this._afterOpened.next(),this._afterOpened.complete()}),wt._animationStateChanged.pipe((0,he.p)(pt=>"closed"===pt.state),(0,Pe.s)(1)).subscribe(()=>{clearTimeout(this._closeFallbackTimeout),this._finishDialogClose()}),jt.overlayRef.detachments().subscribe(()=>{this._beforeClosed.next(this._result),this._beforeClosed.complete(),this._finishDialogClose()}),(0,_e.h)(this.backdropClick(),this.keydownEvents().pipe((0,he.p)(pt=>pt.keyCode===C._f&&!this.disableClose&&!(0,B.rp)(pt)))).subscribe(pt=>{this.disableClose||(pt.preventDefault(),nt(this,"keydown"===pt.type?"keyboard":"mouse"))})}close(jt){const Ue=this._config.closePredicate;Ue&&!Ue(jt,this._config,this.componentInstance)||(this._result=jt,this._containerInstance._animationStateChanged.pipe((0,he.p)(wt=>"closing"===wt.state),(0,Pe.s)(1)).subscribe(wt=>{this._beforeClosed.next(jt),this._beforeClosed.complete(),this._ref.overlayRef.detachBackdrop(),this._closeFallbackTimeout=setTimeout(()=>this._finishDialogClose(),wt.totalTime+100)}),this._state=St.CLOSING,this._containerInstance._startExitAnimation())}afterOpened(){return this._afterOpened}afterClosed(){return this._ref.closed}beforeClosed(){return this._beforeClosed}backdropClick(){return this._ref.backdropClick}keydownEvents(){return this._ref.keydownEvents}updatePosition(jt){let Ue=this._ref.config.positionStrategy;return jt&&(jt.left||jt.right)?jt.left?Ue.left(jt.left):Ue.right(jt.right):Ue.centerHorizontally(),jt&&(jt.top||jt.bottom)?jt.top?Ue.top(jt.top):Ue.bottom(jt.bottom):Ue.centerVertically(),this._ref.updatePosition(),this}updateSize(jt="",Ue=""){return this._ref.updateSize(jt,Ue),this}addPanelClass(jt){return this._ref.addPanelClass(jt),this}removePanelClass(jt){return this._ref.removePanelClass(jt),this}getState(){return this._state}_finishDialogClose(){this._state=St.CLOSED,this._ref.close(this._result,{focusOrigin:this._closeInteractionType}),this.componentInstance=null}}function nt(h,jt,Ue){return h._closeInteractionType=jt,h.close(Ue)}const ht=new d.nKC("MatMdcDialogData"),oe=new d.nKC("mat-mdc-dialog-default-options"),Ye=new d.nKC("mat-mdc-dialog-scroll-strategy",{providedIn:"root",factory:()=>{const h=(0,d.WQX)(d.zZn);return()=>(0,le.gA)(h)}});let fe=(()=>{class h{_defaultOptions=(0,d.WQX)(oe,{optional:!0});_scrollStrategy=(0,d.WQX)(Ye);_parentDialog=(0,d.WQX)(h,{optional:!0,skipSelf:!0});_idGenerator=(0,d.WQX)(Ce.g);_injector=(0,d.WQX)(d.zZn);_dialog=(0,d.WQX)(ne);_animationsDisabled=(0,Xe.Rc)();_openDialogsAtThisLevel=[];_afterAllClosedAtThisLevel=new T.B;_afterOpenedAtThisLevel=new T.B;dialogConfigClass=te;_dialogRefConstructor;_dialogContainerType;_dialogDataToken;get openDialogs(){return this._parentDialog?this._parentDialog.openDialogs:this._openDialogsAtThisLevel}get afterOpened(){return this._parentDialog?this._parentDialog.afterOpened:this._afterOpenedAtThisLevel}_getAfterAllClosed(){const Ue=this._parentDialog;return Ue?Ue._getAfterAllClosed():this._afterAllClosedAtThisLevel}afterAllClosed=(0,w.v)(()=>this.openDialogs.length?this._getAfterAllClosed():this._getAfterAllClosed().pipe((0,A.Z)(void 0)));constructor(){this._dialogRefConstructor=ot,this._dialogContainerType=$,this._dialogDataToken=ht}open(Ue,wt){let pt;(wt={...this._defaultOptions||new te,...wt}).id=wt.id||this._idGenerator.getId("mat-mdc-dialog-"),wt.scrollStrategy=wt.scrollStrategy||this._scrollStrategy();const Pt=this._dialog.open(Ue,{...wt,positionStrategy:(0,le.uA)(this._injector).centerHorizontally().centerVertically(),disableClose:!0,closePredicate:void 0,closeOnDestroy:!1,closeOnOverlayDetachments:!1,disableAnimations:this._animationsDisabled||"0"===wt.enterAnimationDuration?.toLocaleString()||"0"===wt.exitAnimationDuration?.toString(),container:{type:this._dialogContainerType,providers:()=>[{provide:this.dialogConfigClass,useValue:wt},{provide:W,useValue:wt}]},templateContext:()=>({dialogRef:pt}),providers:(gn,ei,vi)=>(pt=new this._dialogRefConstructor(gn,wt,vi),pt.updatePosition(wt?.position),[{provide:this._dialogContainerType,useValue:vi},{provide:this._dialogDataToken,useValue:ei.data},{provide:this._dialogRefConstructor,useValue:pt}])});return pt.componentRef=Pt.componentRef,pt.componentInstance=Pt.componentInstance,this.openDialogs.push(pt),this.afterOpened.next(pt),pt.afterClosed().subscribe(()=>{const gn=this.openDialogs.indexOf(pt);gn>-1&&(this.openDialogs.splice(gn,1),this.openDialogs.length||this._getAfterAllClosed().next())}),pt}closeAll(){this._closeDialogs(this.openDialogs)}getDialogById(Ue){return this.openDialogs.find(wt=>wt.id===Ue)}ngOnDestroy(){this._closeDialogs(this._openDialogsAtThisLevel),this._afterAllClosedAtThisLevel.complete(),this._afterOpenedAtThisLevel.complete()}_closeDialogs(Ue){let wt=Ue.length;for(;wt--;)Ue[wt].close()}static \u0275fac=function(wt){return new(wt||h)};static \u0275prov=d.jDH({token:h,factory:h.\u0275fac,providedIn:"root"})}return h})(),Qe=(()=>{class h{dialogRef=(0,d.WQX)(ot,{optional:!0});_elementRef=(0,d.WQX)(i.aKT);_dialog=(0,d.WQX)(fe);ariaLabel;type="button";dialogResult;_matDialogClose;constructor(){}ngOnInit(){this.dialogRef||(this.dialogRef=function Ft(h,jt){let Ue=h.nativeElement.parentElement;for(;Ue&&!Ue.classList.contains("mat-mdc-dialog-container");)Ue=Ue.parentElement;return Ue?jt.find(wt=>wt.id===Ue.id):null}(this._elementRef,this._dialog.openDialogs))}ngOnChanges(Ue){const wt=Ue._matDialogClose||Ue._matDialogCloseResult;wt&&(this.dialogResult=wt.currentValue)}_onButtonClick(Ue){nt(this.dialogRef,0===Ue.screenX&&0===Ue.screenY?"keyboard":"mouse",this.dialogResult)}static \u0275fac=function(wt){return new(wt||h)};static \u0275dir=i.FsC({type:h,selectors:[["","mat-dialog-close",""],["","matDialogClose",""]],hostVars:2,hostBindings:function(wt,pt){1&wt&&i.bIt("click",function(gn){return pt._onButtonClick(gn)}),2&wt&&i.BMQ("aria-label",pt.ariaLabel||null)("type",pt.type)},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],type:"type",dialogResult:[0,"mat-dialog-close","dialogResult"],_matDialogClose:[0,"matDialogClose","_matDialogClose"]},exportAs:["matDialogClose"],features:[i.OA$]})}return h})();let Qn=(()=>{class h{static \u0275fac=function(wt){return new(wt||h)};static \u0275mod=i.$C({type:h});static \u0275inj=d.G2t({providers:[fe],imports:[De,le.z_,e.jc,lt.y,lt.y]})}return h})()},1997(Zt,pe,l){"use strict";l.d(pe,{q:()=>w,w:()=>e});var i=l(2615),d=l(3664),v=l(4085),T=l(2466);let w=(()=>{class O{get vertical(){return this._vertical}set vertical(u){this._vertical=(0,v.he)(u)}_vertical=!1;get inset(){return this._inset}set inset(u){this._inset=(0,v.he)(u)}_inset=!1;static \u0275fac=function(L){return new(L||O)};static \u0275cmp=d.VBU({type:O,selectors:[["mat-divider"]],hostAttrs:["role","separator",1,"mat-divider"],hostVars:7,hostBindings:function(L,C){2&L&&(d.BMQ("aria-orientation",C.vertical?"vertical":"horizontal"),d.AVh("mat-divider-vertical",C.vertical)("mat-divider-horizontal",!C.vertical)("mat-divider-inset",C.inset))},inputs:{vertical:"vertical",inset:"inset"},decls:0,vars:0,template:function(L,C){},styles:[".mat-divider{display:block;margin:0;border-top-style:solid;border-top-color:var(--mat-divider-color, var(--mat-sys-outline-variant));border-top-width:var(--mat-divider-width, 1px)}.mat-divider.mat-divider-vertical{border-top:0;border-right-style:solid;border-right-color:var(--mat-divider-color, var(--mat-sys-outline-variant));border-right-width:var(--mat-divider-width, 1px)}.mat-divider.mat-divider-inset{margin-left:80px}[dir=rtl] .mat-divider.mat-divider-inset{margin-left:auto;margin-right:80px}\n"],encapsulation:2,changeDetection:0})}return O})(),e=(()=>{class O{static \u0275fac=function(L){return new(L||O)};static \u0275mod=d.$C({type:O});static \u0275inj=i.G2t({imports:[T.y,T.y]})}return O})()},2709(Zt,pe,l){"use strict";l.d(pe,{e:()=>T});var d=l(2615);let T=(()=>{class w{isErrorState(O,f){return!!(O&&O.invalid&&(O.touched||f&&f.submitted))}static \u0275fac=function(f){return new(f||w)};static \u0275prov=d.jDH({token:w,factory:w.\u0275fac,providedIn:"root"})}return w})()},9336(Zt,pe,l){"use strict";l.d(pe,{X:()=>i});class i{_defaultMatcher;ngControl;_parentFormGroup;_parentForm;_stateChanges;errorState=!1;matcher;constructor(v,T,w,e,O){this._defaultMatcher=v,this.ngControl=T,this._parentFormGroup=w,this._parentForm=e,this._stateChanges=O}updateErrorState(){const v=this.errorState,T=this._parentFormGroup||this._parentForm,w=this.matcher||this._defaultMatcher,e=this.ngControl?this.ngControl.control:null,O=w?.isErrorState(e,T)??!1;O!==v&&(this.errorState=O,this._stateChanges.next())}}},9454(Zt,pe,l){"use strict";l.d(pe,{BS:()=>Ke,MY:()=>Vt,GK:()=>P,Q6:()=>H,Z2:()=>ve,WN:()=>$});var i=l(3664),d=l(2615),v=l(7705),T=l(1413),w=l(8359),e=l(9726),O=l(8689);const f=new d.nKC("CdkAccordion");let u=(()=>{class nt{_stateChanges=new T.B;_openCloseAllActions=new T.B;id=(0,d.WQX)(e.g).getId("cdk-accordion-");multi=!1;openAll(){this.multi&&this._openCloseAllActions.next(!0)}closeAll(){this._openCloseAllActions.next(!1)}ngOnChanges(oe){this._stateChanges.next(oe)}ngOnDestroy(){this._stateChanges.complete(),this._openCloseAllActions.complete()}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275dir=i.FsC({type:nt,selectors:[["cdk-accordion"],["","cdkAccordion",""]],inputs:{multi:[2,"multi","multi",v.L39]},exportAs:["cdkAccordion"],features:[i.Jv_([{provide:f,useExisting:nt}]),i.OA$]})}return nt})(),L=(()=>{class nt{accordion=(0,d.WQX)(f,{optional:!0,skipSelf:!0});_changeDetectorRef=(0,d.WQX)(v.gRc);_expansionDispatcher=(0,d.WQX)(O.z);_openCloseAllSubscription=w.yU.EMPTY;closed=new i.bkB;opened=new i.bkB;destroyed=new i.bkB;expandedChange=new i.bkB;id=(0,d.WQX)(e.g).getId("cdk-accordion-child-");get expanded(){return this._expanded}set expanded(oe){this._expanded!==oe&&(this._expanded=oe,this.expandedChange.emit(oe),oe?(this.opened.emit(),this._expansionDispatcher.notify(this.id,this.accordion?this.accordion.id:this.id)):this.closed.emit(),this._changeDetectorRef.markForCheck())}_expanded=!1;get disabled(){return this._disabled()}set disabled(oe){this._disabled.set(oe)}_disabled=(0,d.vPA)(!1);_removeUniqueSelectionListener=()=>{};constructor(){}ngOnInit(){this._removeUniqueSelectionListener=this._expansionDispatcher.listen((oe,Ye)=>{this.accordion&&!this.accordion.multi&&this.accordion.id===Ye&&this.id!==oe&&(this.expanded=!1)}),this.accordion&&(this._openCloseAllSubscription=this._subscribeToOpenCloseAllActions())}ngOnDestroy(){this.opened.complete(),this.closed.complete(),this.destroyed.emit(),this.destroyed.complete(),this._removeUniqueSelectionListener(),this._openCloseAllSubscription.unsubscribe()}toggle(){this.disabled||(this.expanded=!this.expanded)}close(){this.disabled||(this.expanded=!1)}open(){this.disabled||(this.expanded=!0)}_subscribeToOpenCloseAllActions(){return this.accordion._openCloseAllActions.subscribe(oe=>{this.disabled||(this.expanded=oe)})}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275dir=i.FsC({type:nt,selectors:[["cdk-accordion-item"],["","cdkAccordionItem",""]],inputs:{expanded:[2,"expanded","expanded",v.L39],disabled:[2,"disabled","disabled",v.L39]},outputs:{closed:"closed",opened:"opened",destroyed:"destroyed",expandedChange:"expandedChange"},exportAs:["cdkAccordionItem"],features:[i.Jv_([{provide:f,useValue:void 0}])]})}return nt})(),C=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275mod=i.$C({type:nt});static \u0275inj=d.G2t({})}return nt})();var B=l(6939),A=l(6838),Pe=l(4123),le=l(9172),Ce=l(5964),Ae=l(6697),j=l(438),W=l(7336),G=l(983),re=l(7786),xe=l(1804),Ee=l(8968),V=l(2046),ce=l(2466);const ne=["body"],J=["bodyWrapper"],De=[[["mat-expansion-panel-header"]],"*",[["mat-action-row"]]],Re=["mat-expansion-panel-header","*","mat-action-row"];function Xe(nt,ht){}const _e=[[["mat-panel-title"]],[["mat-panel-description"]],"*"],he=["mat-panel-title","mat-panel-description","*"];function Dt(nt,ht){1&nt&&(i.rj2(0,"span",1),d.qSk(),i.rj2(1,"svg",2),i.Hgh(2,"path",3),i.eux()())}const lt=new d.nKC("MAT_ACCORDION"),Le=new d.nKC("MAT_EXPANSION_PANEL");let te=(()=>{class nt{_template=(0,d.WQX)(i.C4Q);_expansionPanel=(0,d.WQX)(Le,{optional:!0});constructor(){}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275dir=i.FsC({type:nt,selectors:[["ng-template","matExpansionPanelContent",""]]})}return nt})();const ie=new d.nKC("MAT_EXPANSION_PANEL_DEFAULT_OPTIONS");let P=(()=>{class nt extends L{_viewContainerRef=(0,d.WQX)(i.c1b);_animationsDisabled=(0,xe.Rc)();_document=(0,d.WQX)(d.qQL);_ngZone=(0,d.WQX)(i.SKi);_elementRef=(0,d.WQX)(i.aKT);_renderer=(0,d.WQX)(i.sFG);_cleanupTransitionEnd;get hideToggle(){return this._hideToggle||this.accordion&&this.accordion.hideToggle}set hideToggle(oe){this._hideToggle=oe}_hideToggle=!1;get togglePosition(){return this._togglePosition||this.accordion&&this.accordion.togglePosition}set togglePosition(oe){this._togglePosition=oe}_togglePosition;afterExpand=new i.bkB;afterCollapse=new i.bkB;_inputChanges=new T.B;accordion=(0,d.WQX)(lt,{optional:!0,skipSelf:!0});_lazyContent;_body;_bodyWrapper;_portal;_headerId=(0,d.WQX)(e.g).getId("mat-expansion-panel-header-");constructor(){super();const oe=(0,d.WQX)(ie,{optional:!0});this._expansionDispatcher=(0,d.WQX)(O.z),oe&&(this.hideToggle=oe.hideToggle)}_hasSpacing(){return!!this.accordion&&this.expanded&&"default"===this.accordion.displayMode}_getExpandedState(){return this.expanded?"expanded":"collapsed"}toggle(){this.expanded=!this.expanded}close(){this.expanded=!1}open(){this.expanded=!0}ngAfterContentInit(){this._lazyContent&&this._lazyContent._expansionPanel===this&&this.opened.pipe((0,le.Z)(null),(0,Ce.p)(()=>this.expanded&&!this._portal),(0,Ae.s)(1)).subscribe(()=>{this._portal=new B.VA(this._lazyContent._template,this._viewContainerRef)}),this._setupAnimationEvents()}ngOnChanges(oe){this._inputChanges.next(oe)}ngOnDestroy(){super.ngOnDestroy(),this._cleanupTransitionEnd?.(),this._inputChanges.complete()}_containsFocus(){if(this._body){const oe=this._document.activeElement,Ye=this._body.nativeElement;return oe===Ye||Ye.contains(oe)}return!1}_transitionEndListener=({target:oe,propertyName:Ye})=>{oe===this._bodyWrapper?.nativeElement&&"grid-template-rows"===Ye&&this._ngZone.run(()=>{this.expanded?this.afterExpand.emit():this.afterCollapse.emit()})};_setupAnimationEvents(){this._ngZone.runOutsideAngular(()=>{this._animationsDisabled?(this.opened.subscribe(()=>this._ngZone.run(()=>this.afterExpand.emit())),this.closed.subscribe(()=>this._ngZone.run(()=>this.afterCollapse.emit()))):setTimeout(()=>{const oe=this._elementRef.nativeElement;this._cleanupTransitionEnd=this._renderer.listen(oe,"transitionend",this._transitionEndListener),oe.classList.add("mat-expansion-panel-animations-enabled")},200)})}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275cmp=i.VBU({type:nt,selectors:[["mat-expansion-panel"]],contentQueries:function(Ye,fe,Qe){if(1&Ye&&i.wni(Qe,te,5),2&Ye){let gt;i.mGM(gt=i.lsd())&&(fe._lazyContent=gt.first)}},viewQuery:function(Ye,fe){if(1&Ye&&(i.GBs(ne,5),i.GBs(J,5)),2&Ye){let Qe;i.mGM(Qe=i.lsd())&&(fe._body=Qe.first),i.mGM(Qe=i.lsd())&&(fe._bodyWrapper=Qe.first)}},hostAttrs:[1,"mat-expansion-panel"],hostVars:4,hostBindings:function(Ye,fe){2&Ye&&i.AVh("mat-expanded",fe.expanded)("mat-expansion-panel-spacing",fe._hasSpacing())},inputs:{hideToggle:[2,"hideToggle","hideToggle",v.L39],togglePosition:"togglePosition"},outputs:{afterExpand:"afterExpand",afterCollapse:"afterCollapse"},exportAs:["matExpansionPanel"],features:[i.Jv_([{provide:lt,useValue:void 0},{provide:Le,useExisting:nt}]),i.Vt3,i.OA$],ngContentSelectors:Re,decls:9,vars:4,consts:[["bodyWrapper",""],["body",""],[1,"mat-expansion-panel-content-wrapper"],["role","region",1,"mat-expansion-panel-content",3,"id"],[1,"mat-expansion-panel-body"],[3,"cdkPortalOutlet"]],template:function(Ye,fe){1&Ye&&(i.NAR(De),i.SdG(0),i.j41(1,"div",2,0)(3,"div",3,1)(5,"div",4),i.SdG(6,1),i.DNE(7,Xe,0,0,"ng-template",5),i.k0s(),i.SdG(8,2),i.k0s()()),2&Ye&&(i.R7$(),i.BMQ("inert",fe.expanded?null:""),i.R7$(2),i.Y8G("id",fe.id),i.BMQ("aria-labelledby",fe._headerId),i.R7$(4),i.Y8G("cdkPortalOutlet",fe._portal))},dependencies:[B.I3],styles:[".mat-expansion-panel{box-sizing:content-box;display:block;margin:0;overflow:hidden;position:relative;background:var(--mat-expansion-container-background-color, var(--mat-sys-surface));color:var(--mat-expansion-container-text-color, var(--mat-sys-on-surface));border-radius:var(--mat-expansion-container-shape, 12px)}.mat-expansion-panel.mat-expansion-panel-animations-enabled{transition:margin 225ms cubic-bezier(0.4, 0, 0.2, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:var(--mat-expansion-container-elevation-shadow, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12))}.mat-accordion .mat-expansion-panel:not(.mat-expanded),.mat-accordion .mat-expansion-panel:not(.mat-expansion-panel-spacing){border-radius:0}.mat-accordion .mat-expansion-panel:first-of-type{border-top-right-radius:var(--mat-expansion-container-shape, 12px);border-top-left-radius:var(--mat-expansion-container-shape, 12px)}.mat-accordion .mat-expansion-panel:last-of-type{border-bottom-right-radius:var(--mat-expansion-container-shape, 12px);border-bottom-left-radius:var(--mat-expansion-container-shape, 12px)}@media(forced-colors: active){.mat-expansion-panel{outline:solid 1px}}.mat-expansion-panel-content-wrapper{display:grid;grid-template-rows:0fr;grid-template-columns:100%}.mat-expansion-panel-animations-enabled .mat-expansion-panel-content-wrapper{transition:grid-template-rows 225ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel.mat-expanded>.mat-expansion-panel-content-wrapper{grid-template-rows:1fr}@supports not (grid-template-rows: 0fr){.mat-expansion-panel-content-wrapper{height:0}.mat-expansion-panel.mat-expanded>.mat-expansion-panel-content-wrapper{height:auto}}.mat-expansion-panel-content{display:flex;flex-direction:column;overflow:visible;min-height:0;visibility:hidden;font-family:var(--mat-expansion-container-text-font, var(--mat-sys-body-large-font));font-size:var(--mat-expansion-container-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-expansion-container-text-weight, var(--mat-sys-body-large-weight));line-height:var(--mat-expansion-container-text-line-height, var(--mat-sys-body-large-line-height));letter-spacing:var(--mat-expansion-container-text-tracking, var(--mat-sys-body-large-tracking))}.mat-expansion-panel-animations-enabled .mat-expansion-panel-content{transition:visibility 190ms linear}.mat-expansion-panel.mat-expanded>.mat-expansion-panel-content-wrapper>.mat-expansion-panel-content{visibility:visible}.mat-expansion-panel-body{padding:0 24px 16px}.mat-expansion-panel-spacing{margin:16px 0}.mat-accordion>.mat-expansion-panel-spacing:first-child,.mat-accordion>*:first-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-top:0}.mat-accordion>.mat-expansion-panel-spacing:last-child,.mat-accordion>*:last-child:not(.mat-expansion-panel) .mat-expansion-panel-spacing{margin-bottom:0}.mat-action-row{border-top-style:solid;border-top-width:1px;display:flex;flex-direction:row;justify-content:flex-end;padding:16px 8px 16px 24px;border-top-color:var(--mat-expansion-actions-divider-color, var(--mat-sys-outline))}.mat-action-row .mat-button-base,.mat-action-row .mat-mdc-button-base{margin-left:8px}[dir=rtl] .mat-action-row .mat-button-base,[dir=rtl] .mat-action-row .mat-mdc-button-base{margin-left:0;margin-right:8px}\n"],encapsulation:2,changeDetection:0})}return nt})(),ve=(()=>{class nt{panel=(0,d.WQX)(P,{host:!0});_element=(0,d.WQX)(i.aKT);_focusMonitor=(0,d.WQX)(A.FN);_changeDetectorRef=(0,d.WQX)(v.gRc);_parentChangeSubscription=w.yU.EMPTY;constructor(){(0,d.WQX)(Ee.l).load(V.A);const oe=this.panel,Ye=(0,d.WQX)(ie,{optional:!0}),fe=(0,d.WQX)(new v.ES_("tabindex"),{optional:!0}),Qe=oe.accordion?oe.accordion._stateChanges.pipe((0,Ce.p)(gt=>!(!gt.hideToggle&&!gt.togglePosition))):G.w;this.tabIndex=parseInt(fe||"")||0,this._parentChangeSubscription=(0,re.h)(oe.opened,oe.closed,Qe,oe._inputChanges.pipe((0,Ce.p)(gt=>!!(gt.hideToggle||gt.disabled||gt.togglePosition)))).subscribe(()=>this._changeDetectorRef.markForCheck()),oe.closed.pipe((0,Ce.p)(()=>oe._containsFocus())).subscribe(()=>this._focusMonitor.focusVia(this._element,"program")),Ye&&(this.expandedHeight=Ye.expandedHeight,this.collapsedHeight=Ye.collapsedHeight)}expandedHeight;collapsedHeight;tabIndex=0;get disabled(){return this.panel.disabled}_toggle(){this.disabled||this.panel.toggle()}_isExpanded(){return this.panel.expanded}_getExpandedState(){return this.panel._getExpandedState()}_getPanelId(){return this.panel.id}_getTogglePosition(){return this.panel.togglePosition}_showToggle(){return!this.panel.hideToggle&&!this.panel.disabled}_getHeaderHeight(){const oe=this._isExpanded();return oe&&this.expandedHeight?this.expandedHeight:!oe&&this.collapsedHeight?this.collapsedHeight:null}_keydown(oe){switch(oe.keyCode){case j.t6:case j.Fm:(0,W.rp)(oe)||(oe.preventDefault(),this._toggle());break;default:return void(this.panel.accordion&&this.panel.accordion._handleHeaderKeydown(oe))}}focus(oe,Ye){oe?this._focusMonitor.focusVia(this._element,oe,Ye):this._element.nativeElement.focus(Ye)}ngAfterViewInit(){this._focusMonitor.monitor(this._element).subscribe(oe=>{oe&&this.panel.accordion&&this.panel.accordion._handleHeaderFocus(this)})}ngOnDestroy(){this._parentChangeSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._element)}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275cmp=i.VBU({type:nt,selectors:[["mat-expansion-panel-header"]],hostAttrs:["role","button",1,"mat-expansion-panel-header","mat-focus-indicator"],hostVars:13,hostBindings:function(Ye,fe){1&Ye&&i.bIt("click",function(){return fe._toggle()})("keydown",function(gt){return fe._keydown(gt)}),2&Ye&&(i.BMQ("id",fe.panel._headerId)("tabindex",fe.disabled?-1:fe.tabIndex)("aria-controls",fe._getPanelId())("aria-expanded",fe._isExpanded())("aria-disabled",fe.panel.disabled),i.xc7("height",fe._getHeaderHeight()),i.AVh("mat-expanded",fe._isExpanded())("mat-expansion-toggle-indicator-after","after"===fe._getTogglePosition())("mat-expansion-toggle-indicator-before","before"===fe._getTogglePosition()))},inputs:{expandedHeight:"expandedHeight",collapsedHeight:"collapsedHeight",tabIndex:[2,"tabIndex","tabIndex",oe=>null==oe?0:(0,v.Udg)(oe)]},ngContentSelectors:he,decls:5,vars:3,consts:[[1,"mat-content"],[1,"mat-expansion-indicator"],["xmlns","http://www.w3.org/2000/svg","viewBox","0 -960 960 960","aria-hidden","true","focusable","false"],["d","M480-345 240-585l56-56 184 184 184-184 56 56-240 240Z"]],template:function(Ye,fe){1&Ye&&(i.NAR(_e),i.rj2(0,"span",0),i.SdG(1),i.SdG(2,1),i.SdG(3,2),i.eux(),i.nVh(4,Dt,3,0,"span",1)),2&Ye&&(i.AVh("mat-content-hide-toggle",!fe._showToggle()),i.R7$(4),i.vxM(fe._showToggle()?4:-1))},styles:['.mat-expansion-panel-header{display:flex;flex-direction:row;align-items:center;padding:0 24px;border-radius:inherit;height:var(--mat-expansion-header-collapsed-state-height, 48px);font-family:var(--mat-expansion-header-text-font, var(--mat-sys-title-medium-font));font-size:var(--mat-expansion-header-text-size, var(--mat-sys-title-medium-size));font-weight:var(--mat-expansion-header-text-weight, var(--mat-sys-title-medium-weight));line-height:var(--mat-expansion-header-text-line-height, var(--mat-sys-title-medium-line-height));letter-spacing:var(--mat-expansion-header-text-tracking, var(--mat-sys-title-medium-tracking))}.mat-expansion-panel-animations-enabled .mat-expansion-panel-header{transition:height 225ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel-header::before{border-radius:inherit}.mat-expansion-panel-header.mat-expanded{height:var(--mat-expansion-header-expanded-state-height, 64px)}.mat-expansion-panel-header[aria-disabled=true]{color:var(--mat-expansion-header-disabled-state-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-expansion-panel-header:not([aria-disabled=true]){cursor:pointer}.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--mat-expansion-header-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent))}@media(hover: none){.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover{background:var(--mat-expansion-container-background-color, var(--mat-sys-surface))}}.mat-expansion-panel .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused,.mat-expansion-panel .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused{background:var(--mat-expansion-header-focus-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent))}.mat-expansion-panel-header._mat-animation-noopable{transition:none}.mat-expansion-panel-header:focus,.mat-expansion-panel-header:hover{outline:none}.mat-expansion-panel-header.mat-expanded:focus,.mat-expansion-panel-header.mat-expanded:hover{background:inherit}.mat-expansion-panel-header.mat-expansion-toggle-indicator-before{flex-direction:row-reverse}.mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator{margin:0 16px 0 0}[dir=rtl] .mat-expansion-panel-header.mat-expansion-toggle-indicator-before .mat-expansion-indicator{margin:0 0 0 16px}.mat-content{display:flex;flex:1;flex-direction:row;overflow:hidden}.mat-content.mat-content-hide-toggle{margin-right:8px}[dir=rtl] .mat-content.mat-content-hide-toggle{margin-right:0;margin-left:8px}.mat-expansion-toggle-indicator-before .mat-content.mat-content-hide-toggle{margin-left:24px;margin-right:0}[dir=rtl] .mat-expansion-toggle-indicator-before .mat-content.mat-content-hide-toggle{margin-right:24px;margin-left:0}.mat-expansion-panel-header-title{color:var(--mat-expansion-header-text-color, var(--mat-sys-on-surface))}.mat-expansion-panel-header-title,.mat-expansion-panel-header-description{display:flex;flex-grow:1;flex-basis:0;margin-right:16px;align-items:center}[dir=rtl] .mat-expansion-panel-header-title,[dir=rtl] .mat-expansion-panel-header-description{margin-right:0;margin-left:16px}.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header-description{flex-grow:2;color:var(--mat-expansion-header-description-color, var(--mat-sys-on-surface-variant))}.mat-expansion-panel-animations-enabled .mat-expansion-indicator{transition:transform 225ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-expansion-panel-header.mat-expanded .mat-expansion-indicator{transform:rotate(180deg)}.mat-expansion-indicator::after{border-style:solid;border-width:0 2px 2px 0;content:"";padding:3px;transform:rotate(45deg);vertical-align:middle;color:var(--mat-expansion-header-indicator-color, var(--mat-sys-on-surface-variant));display:var(--mat-expansion-legacy-header-indicator-display, none)}.mat-expansion-indicator svg{width:24px;height:24px;margin:0 -8px;vertical-align:middle;fill:var(--mat-expansion-header-indicator-color, var(--mat-sys-on-surface-variant));display:var(--mat-expansion-header-indicator-display, inline-block)}@media(forced-colors: active){.mat-expansion-panel-content{border-top:1px solid;border-top-left-radius:0;border-top-right-radius:0}}\n'],encapsulation:2,changeDetection:0})}return nt})(),H=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275dir=i.FsC({type:nt,selectors:[["mat-panel-description"]],hostAttrs:[1,"mat-expansion-panel-header-description"]})}return nt})(),$=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275dir=i.FsC({type:nt,selectors:[["mat-panel-title"]],hostAttrs:[1,"mat-expansion-panel-header-title"]})}return nt})(),Ke=(()=>{class nt extends u{_keyManager;_ownHeaders=new i.rOR;_headers;hideToggle=!1;displayMode="default";togglePosition="after";ngAfterContentInit(){this._headers.changes.pipe((0,le.Z)(this._headers)).subscribe(oe=>{this._ownHeaders.reset(oe.filter(Ye=>Ye.panel.accordion===this)),this._ownHeaders.notifyOnChanges()}),this._keyManager=new Pe.B(this._ownHeaders).withWrap().withHomeAndEnd()}_handleHeaderKeydown(oe){this._keyManager.onKeydown(oe)}_handleHeaderFocus(oe){this._keyManager.updateActiveItem(oe)}ngOnDestroy(){super.ngOnDestroy(),this._keyManager?.destroy(),this._ownHeaders.destroy()}static \u0275fac=(()=>{let oe;return function(fe){return(oe||(oe=i.xGo(nt)))(fe||nt)}})();static \u0275dir=i.FsC({type:nt,selectors:[["mat-accordion"]],contentQueries:function(Ye,fe,Qe){if(1&Ye&&i.wni(Qe,ve,5),2&Ye){let gt;i.mGM(gt=i.lsd())&&(fe._headers=gt)}},hostAttrs:[1,"mat-accordion"],hostVars:2,hostBindings:function(Ye,fe){2&Ye&&i.AVh("mat-accordion-multi",fe.multi)},inputs:{hideToggle:[2,"hideToggle","hideToggle",v.L39],displayMode:"displayMode",togglePosition:"togglePosition"},exportAs:["matAccordion"],features:[i.Jv_([{provide:lt,useExisting:nt}]),i.Vt3]})}return nt})(),Vt=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275mod=i.$C({type:nt});static \u0275inj=d.G2t({imports:[ce.y,C,B.jc]})}return nt})()},1228(Zt,pe,l){"use strict";l.d(pe,{R:()=>e});var i=l(2318),d=l(2615),v=l(3664),T=l(9588),w=l(2466);let e=(()=>{class O{static \u0275fac=function(L){return new(L||O)};static \u0275mod=v.$C({type:O});static \u0275inj=d.G2t({imports:[w.y,i.w5,T.rl,w.y]})}return O})()},9588(Zt,pe,l){"use strict";l.d(pe,{xb:()=>vi,TL:()=>fe,rl:()=>ye,qT:()=>pt,MV:()=>Qe,nJ:()=>oe,yw:()=>cn});var i=l(9726),d=l(1577),v=l(4085),T=l(9842),w=l(2200),e=l(3664),O=l(2615),f=l(7705),u=l(9295),L=l(8359),C=l(1413),B=l(7786),A=l(9172),Pe=l(6354),le=l(9974),Ce=l(4360),j=l(5964),W=l(6977),G=l(3610),re=l(1804);const Ee=["notch"],V=["matFormFieldNotchedOutline",""],ce=["*"],be=["iconPrefixContainer"],ne=["textPrefixContainer"],J=["iconSuffixContainer"],De=["textSuffixContainer"],Re=["textField"],Xe=["*",[["mat-label"]],[["","matPrefix",""],["","matIconPrefix",""]],[["","matTextPrefix",""]],[["","matTextSuffix",""]],[["","matSuffix",""],["","matIconSuffix",""]],[["mat-error"],["","matError",""]],[["mat-hint",3,"align","end"]],[["mat-hint","align","end"]]],_e=["*","mat-label","[matPrefix], [matIconPrefix]","[matTextPrefix]","[matTextSuffix]","[matSuffix], [matIconSuffix]","mat-error, [matError]","mat-hint:not([align='end'])","mat-hint[align='end']"];function he(ke,Se){1&ke&&e.nrm(0,"span",21)}function Dt(ke,Se){if(1&ke&&(e.j41(0,"label",20),e.SdG(1,1),e.nVh(2,he,1,0,"span",21),e.k0s()),2&ke){const ge=e.XpG(2);e.Y8G("floating",ge._shouldLabelFloat())("monitorResize",ge._hasOutline())("id",ge._labelId),e.BMQ("for",ge._control.disableAutomaticLabeling?null:ge._control.id),e.R7$(2),e.vxM(!ge.hideRequiredMarker&&ge._control.required?2:-1)}}function lt(ke,Se){if(1&ke&&e.nVh(0,Dt,3,5,"label",20),2&ke){const ge=e.XpG();e.vxM(ge._hasFloatingLabel()?0:-1)}}function Le(ke,Se){1&ke&&e.nrm(0,"div",7)}function te(ke,Se){}function ie(ke,Se){if(1&ke&&e.DNE(0,te,0,0,"ng-template",13),2&ke){e.XpG(2);const ge=e.sdS(1);e.Y8G("ngTemplateOutlet",ge)}}function P(ke,Se){if(1&ke&&(e.j41(0,"div",9),e.nVh(1,ie,1,1,null,13),e.k0s()),2&ke){const ge=e.XpG();e.Y8G("matFormFieldNotchedOutlineOpen",ge._shouldLabelFloat()),e.R7$(),e.vxM(ge._forceDisplayInfixLabel()?-1:1)}}function F(ke,Se){1&ke&&(e.j41(0,"div",10,2),e.SdG(2,2),e.k0s())}function ve(ke,Se){1&ke&&(e.j41(0,"div",11,3),e.SdG(2,3),e.k0s())}function H(ke,Se){}function $(ke,Se){if(1&ke&&e.DNE(0,H,0,0,"ng-template",13),2&ke){e.XpG();const ge=e.sdS(1);e.Y8G("ngTemplateOutlet",ge)}}function Ke(ke,Se){1&ke&&(e.j41(0,"div",14,4),e.SdG(2,4),e.k0s())}function Vt(ke,Se){1&ke&&(e.j41(0,"div",15,5),e.SdG(2,5),e.k0s())}function St(ke,Se){1&ke&&e.nrm(0,"div",16)}function ot(ke,Se){1&ke&&(e.j41(0,"div",18),e.SdG(1,6),e.k0s())}function nt(ke,Se){if(1&ke&&(e.j41(0,"mat-hint",22),e.EFF(1),e.k0s()),2&ke){const ge=e.XpG(2);e.Y8G("id",ge._hintLabelId),e.R7$(),e.JRh(ge.hintLabel)}}function ht(ke,Se){if(1&ke&&(e.j41(0,"div",19),e.nVh(1,nt,2,2,"mat-hint",22),e.SdG(2,7),e.nrm(3,"div",23),e.SdG(4,8),e.k0s()),2&ke){const ge=e.XpG();e.R7$(),e.vxM(ge.hintLabel?1:-1)}}let oe=(()=>{class ke{static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke,selectors:[["mat-label"]]})}return ke})();const Ye=new O.nKC("MatError");let fe=(()=>{class ke{id=(0,O.WQX)(i.g).getId("mat-mdc-error-");constructor(){}static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke,selectors:[["mat-error"],["","matError",""]],hostAttrs:[1,"mat-mdc-form-field-error","mat-mdc-form-field-bottom-align"],hostVars:1,hostBindings:function(N,Z){2&N&&e.Avn("id",Z.id)},inputs:{id:"id"},features:[e.Jv_([{provide:Ye,useExisting:ke}])]})}return ke})(),Qe=(()=>{class ke{align="start";id=(0,O.WQX)(i.g).getId("mat-mdc-hint-");static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke,selectors:[["mat-hint"]],hostAttrs:[1,"mat-mdc-form-field-hint","mat-mdc-form-field-bottom-align"],hostVars:4,hostBindings:function(N,Z){2&N&&(e.Avn("id",Z.id),e.BMQ("align",null),e.AVh("mat-mdc-form-field-hint-end","end"===Z.align))},inputs:{align:"align",id:"id"}})}return ke})();const gt=new O.nKC("MatPrefix"),rt=new O.nKC("MatSuffix");let cn=(()=>{class ke{set _isTextSelector(ge){this._isText=!0}_isText=!1;static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke,selectors:[["","matSuffix",""],["","matIconSuffix",""],["","matTextSuffix",""]],inputs:{_isTextSelector:[0,"matTextSuffix","_isTextSelector"]},features:[e.Jv_([{provide:rt,useExisting:ke}])]})}return ke})();const Ft=new O.nKC("FloatingLabelParent");let Sn=(()=>{class ke{_elementRef=(0,O.WQX)(e.aKT);get floating(){return this._floating}set floating(ge){this._floating=ge,this.monitorResize&&this._handleResize()}_floating=!1;get monitorResize(){return this._monitorResize}set monitorResize(ge){this._monitorResize=ge,this._monitorResize?this._subscribeToResize():this._resizeSubscription.unsubscribe()}_monitorResize=!1;_resizeObserver=(0,O.WQX)(G.a);_ngZone=(0,O.WQX)(e.SKi);_parent=(0,O.WQX)(Ft);_resizeSubscription=new L.yU;constructor(){}ngOnDestroy(){this._resizeSubscription.unsubscribe()}getWidth(){return function Qn(ke){if(null!==ke.offsetParent)return ke.scrollWidth;const ge=ke.cloneNode(!0);ge.style.setProperty("position","absolute"),ge.style.setProperty("transform","translate(-9999px, -9999px)"),document.documentElement.appendChild(ge);const N=ge.scrollWidth;return ge.remove(),N}(this._elementRef.nativeElement)}get element(){return this._elementRef.nativeElement}_handleResize(){setTimeout(()=>this._parent._handleLabelResized())}_subscribeToResize(){this._resizeSubscription.unsubscribe(),this._ngZone.runOutsideAngular(()=>{this._resizeSubscription=this._resizeObserver.observe(this._elementRef.nativeElement,{box:"border-box"}).subscribe(()=>this._handleResize())})}static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke,selectors:[["label","matFormFieldFloatingLabel",""]],hostAttrs:[1,"mdc-floating-label","mat-mdc-floating-label"],hostVars:2,hostBindings:function(N,Z){2&N&&e.AVh("mdc-floating-label--float-above",Z.floating)},inputs:{floating:"floating",monitorResize:"monitorResize"}})}return ke})();const h="mdc-line-ripple--active",jt="mdc-line-ripple--deactivating";let Ue=(()=>{class ke{_elementRef=(0,O.WQX)(e.aKT);_cleanupTransitionEnd;constructor(){const ge=(0,O.WQX)(e.SKi),N=(0,O.WQX)(e.sFG);ge.runOutsideAngular(()=>{this._cleanupTransitionEnd=N.listen(this._elementRef.nativeElement,"transitionend",this._handleTransitionEnd)})}activate(){const ge=this._elementRef.nativeElement.classList;ge.remove(jt),ge.add(h)}deactivate(){this._elementRef.nativeElement.classList.add(jt)}_handleTransitionEnd=ge=>{const N=this._elementRef.nativeElement.classList,Z=N.contains(jt);"opacity"===ge.propertyName&&Z&&N.remove(h,jt)};ngOnDestroy(){this._cleanupTransitionEnd()}static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke,selectors:[["div","matFormFieldLineRipple",""]],hostAttrs:[1,"mdc-line-ripple"]})}return ke})(),wt=(()=>{class ke{_elementRef=(0,O.WQX)(e.aKT);_ngZone=(0,O.WQX)(e.SKi);open=!1;_notch;ngAfterViewInit(){const ge=this._elementRef.nativeElement,N=ge.querySelector(".mdc-floating-label");N?(ge.classList.add("mdc-notched-outline--upgraded"),"function"==typeof requestAnimationFrame&&(N.style.transitionDuration="0s",this._ngZone.runOutsideAngular(()=>{requestAnimationFrame(()=>N.style.transitionDuration="")}))):ge.classList.add("mdc-notched-outline--no-label")}_setNotchWidth(ge){this._notch.nativeElement.style.width=this.open&&ge?`calc(${ge}px * var(--mat-mdc-form-field-floating-label-scale, 0.75) + 9px)`:""}_setMaxWidth(ge){this._notch.nativeElement.style.setProperty("--mat-form-field-notch-max-width",`calc(100% - ${ge}px)`)}static \u0275fac=function(N){return new(N||ke)};static \u0275cmp=e.VBU({type:ke,selectors:[["div","matFormFieldNotchedOutline",""]],viewQuery:function(N,Z){if(1&N&&e.GBs(Ee,5),2&N){let Me;e.mGM(Me=e.lsd())&&(Z._notch=Me.first)}},hostAttrs:[1,"mdc-notched-outline"],hostVars:2,hostBindings:function(N,Z){2&N&&e.AVh("mdc-notched-outline--notched",Z.open)},inputs:{open:[0,"matFormFieldNotchedOutlineOpen","open"]},attrs:V,ngContentSelectors:ce,decls:5,vars:0,consts:[["notch",""],[1,"mat-mdc-notch-piece","mdc-notched-outline__leading"],[1,"mat-mdc-notch-piece","mdc-notched-outline__notch"],[1,"mat-mdc-notch-piece","mdc-notched-outline__trailing"]],template:function(N,Z){1&N&&(e.NAR(),e.Hgh(0,"div",1),e.rj2(1,"div",2,0),e.SdG(3),e.eux(),e.Hgh(4,"div",3))},encapsulation:2,changeDetection:0})}return ke})(),pt=(()=>{class ke{value;stateChanges;id;placeholder;ngControl;focused;empty;shouldLabelFloat;required;disabled;errorState;controlType;autofilled;userAriaDescribedBy;disableAutomaticLabeling;describedByIds;static \u0275fac=function(N){return new(N||ke)};static \u0275dir=e.FsC({type:ke})}return ke})();const vi=new O.nKC("MatFormField"),Ni=new O.nKC("MAT_FORM_FIELD_DEFAULT_OPTIONS");let ye=(()=>{class ke{_elementRef=(0,O.WQX)(e.aKT);_changeDetectorRef=(0,O.WQX)(f.gRc);_platform=(0,O.WQX)(T.O);_idGenerator=(0,O.WQX)(i.g);_ngZone=(0,O.WQX)(e.SKi);_defaults=(0,O.WQX)(Ni,{optional:!0});_currentDirection;_textField;_iconPrefixContainer;_textPrefixContainer;_iconSuffixContainer;_textSuffixContainer;_floatingLabel;_notchedOutline;_lineRipple;_iconPrefixContainerSignal=(0,f.ebz)("iconPrefixContainer");_textPrefixContainerSignal=(0,f.ebz)("textPrefixContainer");_iconSuffixContainerSignal=(0,f.ebz)("iconSuffixContainer");_textSuffixContainerSignal=(0,f.ebz)("textSuffixContainer");_prefixSuffixContainers=(0,u.EW)(()=>[this._iconPrefixContainerSignal(),this._textPrefixContainerSignal(),this._iconSuffixContainerSignal(),this._textSuffixContainerSignal()].map(ge=>ge?.nativeElement).filter(ge=>void 0!==ge));_formFieldControl;_prefixChildren;_suffixChildren;_errorChildren;_hintChildren;_labelChild=(0,f.sbv)(oe);get hideRequiredMarker(){return this._hideRequiredMarker}set hideRequiredMarker(ge){this._hideRequiredMarker=(0,v.he)(ge)}_hideRequiredMarker=!1;color="primary";get floatLabel(){return this._floatLabel||this._defaults?.floatLabel||"auto"}set floatLabel(ge){ge!==this._floatLabel&&(this._floatLabel=ge,this._changeDetectorRef.markForCheck())}_floatLabel;get appearance(){return this._appearanceSignal()}set appearance(ge){this._appearanceSignal.set(ge||this._defaults?.appearance||"fill")}_appearanceSignal=(0,O.vPA)("fill");get subscriptSizing(){return this._subscriptSizing||this._defaults?.subscriptSizing||"fixed"}set subscriptSizing(ge){this._subscriptSizing=ge||this._defaults?.subscriptSizing||"fixed"}_subscriptSizing=null;get hintLabel(){return this._hintLabel}set hintLabel(ge){this._hintLabel=ge,this._processHints()}_hintLabel="";_hasIconPrefix=!1;_hasTextPrefix=!1;_hasIconSuffix=!1;_hasTextSuffix=!1;_labelId=this._idGenerator.getId("mat-mdc-form-field-label-");_hintLabelId=this._idGenerator.getId("mat-mdc-hint-");_describedByIds;get _control(){return this._explicitFormFieldControl||this._formFieldControl}set _control(ge){this._explicitFormFieldControl=ge}_destroyed=new C.B;_isFocused=null;_explicitFormFieldControl;_previousControl=null;_previousControlValidatorFn=null;_stateChanges;_valueChanges;_describedByChanges;_outlineLabelOffsetResizeObserver=null;_animationsDisabled=(0,re.Rc)();constructor(){const ge=this._defaults,N=(0,O.WQX)(d.dS);ge&&(ge.appearance&&(this.appearance=ge.appearance),this._hideRequiredMarker=!!ge?.hideRequiredMarker,ge.color&&(this.color=ge.color)),(0,u.QZ)(()=>this._currentDirection=N.valueSignal()),this._syncOutlineLabelOffset()}ngAfterViewInit(){this._updateFocusState(),this._animationsDisabled||this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{this._elementRef.nativeElement.classList.add("mat-form-field-animations-enabled")},300)}),this._changeDetectorRef.detectChanges()}ngAfterContentInit(){this._assertFormFieldControl(),this._initializeSubscript(),this._initializePrefixAndSuffix()}ngAfterContentChecked(){this._assertFormFieldControl(),this._control!==this._previousControl&&(this._initializeControl(this._previousControl),this._control.ngControl&&this._control.ngControl.control&&(this._previousControlValidatorFn=this._control.ngControl.control.validator),this._previousControl=this._control),this._control.ngControl&&this._control.ngControl.control&&this._control.ngControl.control.validator!==this._previousControlValidatorFn&&this._changeDetectorRef.markForCheck()}ngOnDestroy(){this._outlineLabelOffsetResizeObserver?.disconnect(),this._stateChanges?.unsubscribe(),this._valueChanges?.unsubscribe(),this._describedByChanges?.unsubscribe(),this._destroyed.next(),this._destroyed.complete()}getLabelId=(0,u.EW)(()=>this._hasFloatingLabel()?this._labelId:null);getConnectedOverlayOrigin(){return this._textField||this._elementRef}_animateAndLockLabel(){this._hasFloatingLabel()&&(this.floatLabel="always")}_initializeControl(ge){const N=this._control,Z="mat-mdc-form-field-type-";ge&&this._elementRef.nativeElement.classList.remove(Z+ge.controlType),N.controlType&&this._elementRef.nativeElement.classList.add(Z+N.controlType),this._stateChanges?.unsubscribe(),this._stateChanges=N.stateChanges.subscribe(()=>{this._updateFocusState(),this._changeDetectorRef.markForCheck()}),this._describedByChanges?.unsubscribe(),this._describedByChanges=N.stateChanges.pipe((0,A.Z)([void 0,void 0]),(0,Pe.T)(()=>[N.errorState,N.userAriaDescribedBy]),function Ae(){return(0,le.N)((ke,Se)=>{let ge,N=!1;ke.subscribe((0,Ce._)(Se,Z=>{const Me=ge;ge=Z,N&&Se.next([Me,Z]),N=!0}))})}(),(0,j.p)(([[Me,at],[qe,pn]])=>Me!==qe||at!==pn)).subscribe(()=>this._syncDescribedByIds()),this._valueChanges?.unsubscribe(),N.ngControl&&N.ngControl.valueChanges&&(this._valueChanges=N.ngControl.valueChanges.pipe((0,W.Q)(this._destroyed)).subscribe(()=>this._changeDetectorRef.markForCheck()))}_checkPrefixAndSuffixTypes(){this._hasIconPrefix=!!this._prefixChildren.find(ge=>!ge._isText),this._hasTextPrefix=!!this._prefixChildren.find(ge=>ge._isText),this._hasIconSuffix=!!this._suffixChildren.find(ge=>!ge._isText),this._hasTextSuffix=!!this._suffixChildren.find(ge=>ge._isText)}_initializePrefixAndSuffix(){this._checkPrefixAndSuffixTypes(),(0,B.h)(this._prefixChildren.changes,this._suffixChildren.changes).subscribe(()=>{this._checkPrefixAndSuffixTypes(),this._changeDetectorRef.markForCheck()})}_initializeSubscript(){this._hintChildren.changes.subscribe(()=>{this._processHints(),this._changeDetectorRef.markForCheck()}),this._errorChildren.changes.subscribe(()=>{this._syncDescribedByIds(),this._changeDetectorRef.markForCheck()}),this._validateHints(),this._syncDescribedByIds()}_assertFormFieldControl(){}_updateFocusState(){const ge=this._control.focused;ge&&!this._isFocused?(this._isFocused=!0,this._lineRipple?.activate()):!ge&&(this._isFocused||null===this._isFocused)&&(this._isFocused=!1,this._lineRipple?.deactivate()),this._elementRef.nativeElement.classList.toggle("mat-focused",ge),this._textField?.nativeElement.classList.toggle("mdc-text-field--focused",ge)}_syncOutlineLabelOffset(){(0,f.uEv)({earlyRead:()=>{if("outline"!==this._appearanceSignal())return this._outlineLabelOffsetResizeObserver?.disconnect(),null;if(globalThis.ResizeObserver){this._outlineLabelOffsetResizeObserver||=new globalThis.ResizeObserver(()=>{this._writeOutlinedLabelStyles(this._getOutlinedLabelOffset())});for(const ge of this._prefixSuffixContainers())this._outlineLabelOffsetResizeObserver.observe(ge,{box:"border-box"})}return this._getOutlinedLabelOffset()},write:ge=>this._writeOutlinedLabelStyles(ge())})}_shouldAlwaysFloat(){return"always"===this.floatLabel}_hasOutline(){return"outline"===this.appearance}_forceDisplayInfixLabel(){return!this._platform.isBrowser&&this._prefixChildren.length&&!this._shouldLabelFloat()}_hasFloatingLabel=(0,u.EW)(()=>!!this._labelChild());_shouldLabelFloat(){return!!this._hasFloatingLabel()&&(this._control.shouldLabelFloat||this._shouldAlwaysFloat())}_shouldForward(ge){const N=this._control?this._control.ngControl:null;return N&&N[ge]}_getSubscriptMessageType(){return this._errorChildren&&this._errorChildren.length>0&&this._control.errorState?"error":"hint"}_handleLabelResized(){this._refreshOutlineNotchWidth()}_refreshOutlineNotchWidth(){this._hasOutline()&&this._floatingLabel&&this._shouldLabelFloat()?this._notchedOutline?._setNotchWidth(this._floatingLabel.getWidth()):this._notchedOutline?._setNotchWidth(0)}_processHints(){this._validateHints(),this._syncDescribedByIds()}_validateHints(){}_syncDescribedByIds(){if(this._control){let ge=[];if(this._control.userAriaDescribedBy&&"string"==typeof this._control.userAriaDescribedBy&&ge.push(...this._control.userAriaDescribedBy.split(" ")),"hint"===this._getSubscriptMessageType()){const Me=this._hintChildren?this._hintChildren.find(qe=>"start"===qe.align):null,at=this._hintChildren?this._hintChildren.find(qe=>"end"===qe.align):null;Me?ge.push(Me.id):this._hintLabel&&ge.push(this._hintLabelId),at&&ge.push(at.id)}else this._errorChildren&&ge.push(...this._errorChildren.map(Me=>Me.id));const N=this._control.describedByIds;let Z;if(N){const Me=this._describedByIds||ge;Z=ge.concat(N.filter(at=>at&&!Me.includes(at)))}else Z=ge;this._control.setDescribedByIds(Z),this._describedByIds=ge}}_getOutlinedLabelOffset(){if(!this._hasOutline()||!this._floatingLabel)return null;if(!this._iconPrefixContainer&&!this._textPrefixContainer)return["",null];if(!this._isAttachedToDom())return null;const ge=this._iconPrefixContainer?.nativeElement,N=this._textPrefixContainer?.nativeElement,Z=this._iconSuffixContainer?.nativeElement,Me=this._textSuffixContainer?.nativeElement,at=ge?.getBoundingClientRect().width??0,qe=N?.getBoundingClientRect().width??0,pn=Z?.getBoundingClientRect().width??0,Je=Me?.getBoundingClientRect().width??0;return[`var(--mat-mdc-form-field-label-transform, translateY(-50%) translateX(calc(${"rtl"===this._currentDirection?"-1":"1"} * (${at+qe}px + var(--mat-mdc-form-field-label-offset-x, 0px)))))`,at+qe+pn+Je]}_writeOutlinedLabelStyles(ge){if(null!==ge){const[N,Z]=ge;this._floatingLabel&&(this._floatingLabel.element.style.transform=N),null!==Z&&this._notchedOutline?._setMaxWidth(Z)}}_isAttachedToDom(){const ge=this._elementRef.nativeElement;if(ge.getRootNode){const N=ge.getRootNode();return N&&N!==ge}return document.documentElement.contains(ge)}static \u0275fac=function(N){return new(N||ke)};static \u0275cmp=e.VBU({type:ke,selectors:[["mat-form-field"]],contentQueries:function(N,Z,Me){if(1&N&&(e.C6U(Me,Z._labelChild,oe,5),e.wni(Me,pt,5),e.wni(Me,gt,5),e.wni(Me,rt,5),e.wni(Me,Ye,5),e.wni(Me,Qe,5)),2&N){let at;e.NyB(),e.mGM(at=e.lsd())&&(Z._formFieldControl=at.first),e.mGM(at=e.lsd())&&(Z._prefixChildren=at),e.mGM(at=e.lsd())&&(Z._suffixChildren=at),e.mGM(at=e.lsd())&&(Z._errorChildren=at),e.mGM(at=e.lsd())&&(Z._hintChildren=at)}},viewQuery:function(N,Z){if(1&N&&(e.wEZ(Z._iconPrefixContainerSignal,be,5),e.wEZ(Z._textPrefixContainerSignal,ne,5),e.wEZ(Z._iconSuffixContainerSignal,J,5),e.wEZ(Z._textSuffixContainerSignal,De,5),e.GBs(Re,5),e.GBs(be,5),e.GBs(ne,5),e.GBs(J,5),e.GBs(De,5),e.GBs(Sn,5),e.GBs(wt,5),e.GBs(Ue,5)),2&N){let Me;e.NyB(4),e.mGM(Me=e.lsd())&&(Z._textField=Me.first),e.mGM(Me=e.lsd())&&(Z._iconPrefixContainer=Me.first),e.mGM(Me=e.lsd())&&(Z._textPrefixContainer=Me.first),e.mGM(Me=e.lsd())&&(Z._iconSuffixContainer=Me.first),e.mGM(Me=e.lsd())&&(Z._textSuffixContainer=Me.first),e.mGM(Me=e.lsd())&&(Z._floatingLabel=Me.first),e.mGM(Me=e.lsd())&&(Z._notchedOutline=Me.first),e.mGM(Me=e.lsd())&&(Z._lineRipple=Me.first)}},hostAttrs:[1,"mat-mdc-form-field"],hostVars:38,hostBindings:function(N,Z){2&N&&e.AVh("mat-mdc-form-field-label-always-float",Z._shouldAlwaysFloat())("mat-mdc-form-field-has-icon-prefix",Z._hasIconPrefix)("mat-mdc-form-field-has-icon-suffix",Z._hasIconSuffix)("mat-form-field-invalid",Z._control.errorState)("mat-form-field-disabled",Z._control.disabled)("mat-form-field-autofilled",Z._control.autofilled)("mat-form-field-appearance-fill","fill"==Z.appearance)("mat-form-field-appearance-outline","outline"==Z.appearance)("mat-form-field-hide-placeholder",Z._hasFloatingLabel()&&!Z._shouldLabelFloat())("mat-primary","accent"!==Z.color&&"warn"!==Z.color)("mat-accent","accent"===Z.color)("mat-warn","warn"===Z.color)("ng-untouched",Z._shouldForward("untouched"))("ng-touched",Z._shouldForward("touched"))("ng-pristine",Z._shouldForward("pristine"))("ng-dirty",Z._shouldForward("dirty"))("ng-valid",Z._shouldForward("valid"))("ng-invalid",Z._shouldForward("invalid"))("ng-pending",Z._shouldForward("pending"))},inputs:{hideRequiredMarker:"hideRequiredMarker",color:"color",floatLabel:"floatLabel",appearance:"appearance",subscriptSizing:"subscriptSizing",hintLabel:"hintLabel"},exportAs:["matFormField"],features:[e.Jv_([{provide:vi,useExisting:ke},{provide:Ft,useExisting:ke}])],ngContentSelectors:_e,decls:18,vars:21,consts:[["labelTemplate",""],["textField",""],["iconPrefixContainer",""],["textPrefixContainer",""],["textSuffixContainer",""],["iconSuffixContainer",""],[1,"mat-mdc-text-field-wrapper","mdc-text-field",3,"click"],[1,"mat-mdc-form-field-focus-overlay"],[1,"mat-mdc-form-field-flex"],["matFormFieldNotchedOutline","",3,"matFormFieldNotchedOutlineOpen"],[1,"mat-mdc-form-field-icon-prefix"],[1,"mat-mdc-form-field-text-prefix"],[1,"mat-mdc-form-field-infix"],[3,"ngTemplateOutlet"],[1,"mat-mdc-form-field-text-suffix"],[1,"mat-mdc-form-field-icon-suffix"],["matFormFieldLineRipple",""],["aria-atomic","true","aria-live","polite",1,"mat-mdc-form-field-subscript-wrapper","mat-mdc-form-field-bottom-align"],[1,"mat-mdc-form-field-error-wrapper"],[1,"mat-mdc-form-field-hint-wrapper"],["matFormFieldFloatingLabel","",3,"floating","monitorResize","id"],["aria-hidden","true",1,"mat-mdc-form-field-required-marker","mdc-floating-label--required"],[3,"id"],[1,"mat-mdc-form-field-hint-spacer"]],template:function(N,Z){if(1&N){const Me=e.RV6();e.NAR(Xe),e.DNE(0,lt,1,1,"ng-template",null,0,e.C5r),e.j41(2,"div",6,1),e.bIt("click",function(qe){return O.eBV(Me),O.Njj(Z._control.onContainerClick(qe))}),e.nVh(4,Le,1,0,"div",7),e.j41(5,"div",8),e.nVh(6,P,2,2,"div",9),e.nVh(7,F,3,0,"div",10),e.nVh(8,ve,3,0,"div",11),e.j41(9,"div",12),e.nVh(10,$,1,1,null,13),e.SdG(11),e.k0s(),e.nVh(12,Ke,3,0,"div",14),e.nVh(13,Vt,3,0,"div",15),e.k0s(),e.nVh(14,St,1,0,"div",16),e.k0s(),e.j41(15,"div",17),e.nVh(16,ot,2,0,"div",18)(17,ht,5,1,"div",19),e.k0s()}if(2&N){let Me;e.R7$(2),e.AVh("mdc-text-field--filled",!Z._hasOutline())("mdc-text-field--outlined",Z._hasOutline())("mdc-text-field--no-label",!Z._hasFloatingLabel())("mdc-text-field--disabled",Z._control.disabled)("mdc-text-field--invalid",Z._control.errorState),e.R7$(2),e.vxM(Z._hasOutline()||Z._control.disabled?-1:4),e.R7$(2),e.vxM(Z._hasOutline()?6:-1),e.R7$(),e.vxM(Z._hasIconPrefix?7:-1),e.R7$(),e.vxM(Z._hasTextPrefix?8:-1),e.R7$(2),e.vxM(!Z._hasOutline()||Z._forceDisplayInfixLabel()?10:-1),e.R7$(2),e.vxM(Z._hasTextSuffix?12:-1),e.R7$(),e.vxM(Z._hasIconSuffix?13:-1),e.R7$(),e.vxM(Z._hasOutline()?-1:14),e.R7$(),e.AVh("mat-mdc-form-field-subscript-dynamic-size","dynamic"===Z.subscriptSizing);const at=Z._getSubscriptMessageType();e.R7$(),e.vxM("error"===(Me=at)?16:"hint"===Me?17:-1)}},dependencies:[Sn,wt,w.T3,Ue,Qe],styles:['.mdc-text-field{display:inline-flex;align-items:baseline;padding:0 16px;position:relative;box-sizing:border-box;overflow:hidden;will-change:opacity,transform,color;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.mdc-text-field__input{width:100%;min-width:0;border:none;border-radius:0;background:none;padding:0;-moz-appearance:none;-webkit-appearance:none;height:28px}.mdc-text-field__input::-webkit-calendar-picker-indicator,.mdc-text-field__input::-webkit-search-cancel-button{display:none}.mdc-text-field__input::-ms-clear{display:none}.mdc-text-field__input:focus{outline:none}.mdc-text-field__input:invalid{box-shadow:none}.mdc-text-field__input::placeholder{opacity:0}.mdc-text-field__input::-moz-placeholder{opacity:0}.mdc-text-field__input::-webkit-input-placeholder{opacity:0}.mdc-text-field__input:-ms-input-placeholder{opacity:0}.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mdc-text-field--focused .mdc-text-field__input::placeholder{opacity:1}.mdc-text-field--no-label .mdc-text-field__input::-moz-placeholder,.mdc-text-field--focused .mdc-text-field__input::-moz-placeholder{opacity:1}.mdc-text-field--no-label .mdc-text-field__input::-webkit-input-placeholder,.mdc-text-field--focused .mdc-text-field__input::-webkit-input-placeholder{opacity:1}.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder{opacity:1}.mdc-text-field--disabled:not(.mdc-text-field--no-label) .mdc-text-field__input.mat-mdc-input-disabled-interactive::placeholder{opacity:0}.mdc-text-field--disabled:not(.mdc-text-field--no-label) .mdc-text-field__input.mat-mdc-input-disabled-interactive::-moz-placeholder{opacity:0}.mdc-text-field--disabled:not(.mdc-text-field--no-label) .mdc-text-field__input.mat-mdc-input-disabled-interactive::-webkit-input-placeholder{opacity:0}.mdc-text-field--disabled:not(.mdc-text-field--no-label) .mdc-text-field__input.mat-mdc-input-disabled-interactive:-ms-input-placeholder{opacity:0}.mdc-text-field--outlined .mdc-text-field__input,.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input{height:100%}.mdc-text-field--outlined .mdc-text-field__input{display:flex;border:none !important;background-color:rgba(0,0,0,0)}.mdc-text-field--disabled .mdc-text-field__input{pointer-events:auto}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mat-form-field-filled-input-text-color, var(--mat-sys-on-surface));caret-color:var(--mat-form-field-filled-caret-color, var(--mat-sys-primary))}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mat-form-field-filled-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-filled-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-filled-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-filled-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input{color:var(--mat-form-field-outlined-input-text-color, var(--mat-sys-on-surface));caret-color:var(--mat-form-field-outlined-caret-color, var(--mat-sys-primary))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder{color:var(--mat-form-field-outlined-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-outlined-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-outlined-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-outlined-input-text-placeholder-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mat-form-field-filled-error-caret-color, var(--mat-sys-error))}.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input{caret-color:var(--mat-form-field-outlined-error-caret-color, var(--mat-sys-error))}.mdc-text-field--filled.mdc-text-field--disabled .mdc-text-field__input{color:var(--mat-form-field-filled-disabled-input-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input{color:var(--mat-form-field-outlined-disabled-input-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}@media(forced-colors: active){.mdc-text-field--disabled .mdc-text-field__input{background-color:Window}}.mdc-text-field--filled{height:56px;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-left-radius:var(--mat-form-field-filled-container-shape, var(--mat-sys-corner-extra-small));border-top-right-radius:var(--mat-form-field-filled-container-shape, var(--mat-sys-corner-extra-small))}.mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:var(--mat-form-field-filled-container-color, var(--mat-sys-surface-variant))}.mdc-text-field--filled.mdc-text-field--disabled{background-color:var(--mat-form-field-filled-disabled-container-color, color-mix(in srgb, var(--mat-sys-on-surface) 4%, transparent))}.mdc-text-field--outlined{height:56px;overflow:visible;padding-right:max(16px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)));padding-left:max(16px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)) + 4px)}[dir=rtl] .mdc-text-field--outlined{padding-right:max(16px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)) + 4px);padding-left:max(16px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)))}.mdc-floating-label{position:absolute;left:0;transform-origin:left top;line-height:1.15rem;text-align:left;text-overflow:ellipsis;white-space:nowrap;cursor:text;overflow:hidden;will-change:transform}[dir=rtl] .mdc-floating-label{right:0;left:auto;transform-origin:right top;text-align:right}.mdc-text-field .mdc-floating-label{top:50%;transform:translateY(-50%);pointer-events:none}.mdc-notched-outline .mdc-floating-label{display:inline-block;position:relative;max-width:100%}.mdc-text-field--outlined .mdc-floating-label{left:4px;right:auto}[dir=rtl] .mdc-text-field--outlined .mdc-floating-label{left:auto;right:4px}.mdc-text-field--filled .mdc-floating-label{left:16px;right:auto}[dir=rtl] .mdc-text-field--filled .mdc-floating-label{left:auto;right:16px}.mdc-text-field--disabled .mdc-floating-label{cursor:default}@media(forced-colors: active){.mdc-text-field--disabled .mdc-floating-label{z-index:1}}.mdc-text-field--filled.mdc-text-field--no-label .mdc-floating-label{display:none}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-floating-label{color:var(--mat-form-field-filled-label-text-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label{color:var(--mat-form-field-filled-focus-label-text-color, var(--mat-sys-primary))}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label{color:var(--mat-form-field-filled-hover-label-text-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label{color:var(--mat-form-field-filled-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid .mdc-floating-label{color:var(--mat-form-field-filled-error-label-text-color, var(--mat-sys-error))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid.mdc-text-field--focused .mdc-floating-label{color:var(--mat-form-field-filled-error-focus-label-text-color, var(--mat-sys-error))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid:not(.mdc-text-field--disabled):hover .mdc-floating-label{color:var(--mat-form-field-filled-error-hover-label-text-color, var(--mat-sys-on-error-container))}.mdc-text-field--filled .mdc-floating-label{font-family:var(--mat-form-field-filled-label-text-font, var(--mat-sys-body-large-font));font-size:var(--mat-form-field-filled-label-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-form-field-filled-label-text-weight, var(--mat-sys-body-large-weight));letter-spacing:var(--mat-form-field-filled-label-text-tracking, var(--mat-sys-body-large-tracking))}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-floating-label{color:var(--mat-form-field-outlined-label-text-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-floating-label{color:var(--mat-form-field-outlined-focus-label-text-color, var(--mat-sys-primary))}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-floating-label{color:var(--mat-form-field-outlined-hover-label-text-color, var(--mat-sys-on-surface))}.mdc-text-field--outlined.mdc-text-field--disabled .mdc-floating-label{color:var(--mat-form-field-outlined-disabled-label-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid .mdc-floating-label{color:var(--mat-form-field-outlined-error-label-text-color, var(--mat-sys-error))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid.mdc-text-field--focused .mdc-floating-label{color:var(--mat-form-field-outlined-error-focus-label-text-color, var(--mat-sys-error))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid:not(.mdc-text-field--disabled):hover .mdc-floating-label{color:var(--mat-form-field-outlined-error-hover-label-text-color, var(--mat-sys-on-error-container))}.mdc-text-field--outlined .mdc-floating-label{font-family:var(--mat-form-field-outlined-label-text-font, var(--mat-sys-body-large-font));font-size:var(--mat-form-field-outlined-label-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-form-field-outlined-label-text-weight, var(--mat-sys-body-large-weight));letter-spacing:var(--mat-form-field-outlined-label-text-tracking, var(--mat-sys-body-large-tracking))}.mdc-floating-label--float-above{cursor:auto;transform:translateY(-106%) scale(0.75)}.mdc-text-field--filled .mdc-floating-label--float-above{transform:translateY(-106%) scale(0.75)}.mdc-text-field--outlined .mdc-floating-label--float-above{transform:translateY(-37.25px) scale(1);font-size:.75rem}.mdc-notched-outline .mdc-floating-label--float-above{text-overflow:clip}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:133.3333333333%}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{transform:translateY(-34.75px) scale(0.75)}.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:1rem}.mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after{margin-left:1px;margin-right:0;content:"*"}[dir=rtl] .mdc-floating-label--required:not(.mdc-floating-label--hide-required-marker)::after{margin-left:0;margin-right:1px}.mdc-notched-outline{display:flex;position:absolute;top:0;right:0;left:0;box-sizing:border-box;width:100%;max-width:100%;height:100%;text-align:left;pointer-events:none}[dir=rtl] .mdc-notched-outline{text-align:right}.mdc-text-field--outlined .mdc-notched-outline{z-index:1}.mat-mdc-notch-piece{box-sizing:border-box;height:100%;pointer-events:none;border-top:1px solid;border-bottom:1px solid}.mdc-text-field--focused .mat-mdc-notch-piece{border-width:2px}.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-outline-color, var(--mat-sys-outline));border-width:var(--mat-form-field-outlined-outline-width, 1px)}.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-hover-outline-color, var(--mat-sys-on-surface))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-focus-outline-color, var(--mat-sys-primary))}.mdc-text-field--outlined.mdc-text-field--disabled .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-disabled-outline-color, color-mix(in srgb, var(--mat-sys-on-surface) 12%, transparent))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-error-outline-color, var(--mat-sys-error))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid:not(.mdc-text-field--focused):hover .mdc-notched-outline .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-error-hover-outline-color, var(--mat-sys-on-error-container))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--invalid.mdc-text-field--focused .mat-mdc-notch-piece{border-color:var(--mat-form-field-outlined-error-focus-outline-color, var(--mat-sys-error))}.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline .mat-mdc-notch-piece{border-width:var(--mat-form-field-outlined-focus-outline-width, 2px)}.mdc-notched-outline__leading{border-left:1px solid;border-right:none;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small));border-bottom-left-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading{width:max(12px,var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small)))}[dir=rtl] .mdc-notched-outline__leading{border-left:none;border-right:1px solid;border-bottom-left-radius:0;border-top-left-radius:0;border-top-right-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small));border-bottom-right-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))}.mdc-notched-outline__trailing{flex-grow:1;border-left:none;border-right:1px solid;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small));border-bottom-right-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))}[dir=rtl] .mdc-notched-outline__trailing{border-left:1px solid;border-right:none;border-top-right-radius:0;border-bottom-right-radius:0;border-top-left-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small));border-bottom-left-radius:var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))}.mdc-notched-outline__notch{flex:0 0 auto;width:auto}.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch{max-width:min(var(--mat-form-field-notch-max-width, 100%),calc(100% - max(12px, var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))) * 2))}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{max-width:min(100%,calc(100% - max(12px, var(--mat-form-field-outlined-container-shape, var(--mat-sys-corner-extra-small))) * 2))}.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:1px}.mdc-text-field--focused.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-top:2px}.mdc-notched-outline--notched .mdc-notched-outline__notch{padding-left:0;padding-right:8px;border-top:none}[dir=rtl] .mdc-notched-outline--notched .mdc-notched-outline__notch{padding-left:8px;padding-right:0}.mdc-notched-outline--no-label .mdc-notched-outline__notch{display:none}.mdc-line-ripple::before,.mdc-line-ripple::after{position:absolute;bottom:0;left:0;width:100%;border-bottom-style:solid;content:""}.mdc-line-ripple::before{z-index:1;border-bottom-width:var(--mat-form-field-filled-active-indicator-height, 1px)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-active-indicator-color, var(--mat-sys-on-surface-variant))}.mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-hover-active-indicator-color, var(--mat-sys-on-surface))}.mdc-text-field--filled.mdc-text-field--disabled .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-disabled-active-indicator-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-error-active-indicator-color, var(--mat-sys-error))}.mdc-text-field--filled:not(.mdc-text-field--disabled).mdc-text-field--invalid:not(.mdc-text-field--focused):hover .mdc-line-ripple::before{border-bottom-color:var(--mat-form-field-filled-error-hover-active-indicator-color, var(--mat-sys-on-error-container))}.mdc-line-ripple::after{transform:scaleX(0);opacity:0;z-index:2}.mdc-text-field--filled .mdc-line-ripple::after{border-bottom-width:var(--mat-form-field-filled-focus-active-indicator-height, 2px)}.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mat-form-field-filled-focus-active-indicator-color, var(--mat-sys-primary))}.mdc-text-field--filled.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after{border-bottom-color:var(--mat-form-field-filled-error-focus-active-indicator-color, var(--mat-sys-error))}.mdc-line-ripple--active::after{transform:scaleX(1);opacity:1}.mdc-line-ripple--deactivating::after{opacity:0}.mdc-text-field--disabled{pointer-events:none}.mat-mdc-form-field-textarea-control{vertical-align:middle;resize:vertical;box-sizing:border-box;height:auto;margin:0;padding:0;border:none;overflow:auto}.mat-mdc-form-field-input-control.mat-mdc-form-field-input-control{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font:inherit;letter-spacing:inherit;text-decoration:inherit;text-transform:inherit;border:none}.mat-mdc-form-field .mat-mdc-floating-label.mdc-floating-label{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;line-height:normal;pointer-events:all;will-change:auto}.mat-mdc-form-field:not(.mat-form-field-disabled) .mat-mdc-floating-label.mdc-floating-label{cursor:inherit}.mdc-text-field--no-label:not(.mdc-text-field--textarea) .mat-mdc-form-field-input-control.mdc-text-field__input,.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control{height:auto}.mat-mdc-text-field-wrapper .mat-mdc-form-field-input-control.mdc-text-field__input[type=color]{height:23px}.mat-mdc-text-field-wrapper{height:auto;flex:auto;will-change:auto}.mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-left:0;--mat-mdc-form-field-label-offset-x: -16px}.mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-right:0}[dir=rtl] .mat-mdc-text-field-wrapper{padding-left:16px;padding-right:16px}[dir=rtl] .mat-mdc-form-field-has-icon-suffix .mat-mdc-text-field-wrapper{padding-left:0}[dir=rtl] .mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper{padding-right:0}.mat-form-field-disabled .mdc-text-field__input::placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-form-field-disabled .mdc-text-field__input::-moz-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-form-field-disabled .mdc-text-field__input::-webkit-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-form-field-disabled .mdc-text-field__input:-ms-input-placeholder{color:var(--mat-form-field-disabled-input-text-placeholder-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-form-field-label-always-float .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms;opacity:1}.mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-floating-label{left:auto;right:auto}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-text-field__input{display:inline-block}.mat-mdc-form-field .mat-mdc-text-field-wrapper.mdc-text-field .mdc-notched-outline__notch{padding-top:0}.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:1px solid rgba(0,0,0,0)}[dir=rtl] .mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field.mat-mdc-form-field .mdc-notched-outline__notch{border-left:none;border-right:1px solid rgba(0,0,0,0)}.mat-mdc-form-field-infix{min-height:var(--mat-form-field-container-height, 56px);padding-top:var(--mat-form-field-filled-with-label-container-padding-top, 24px);padding-bottom:var(--mat-form-field-filled-with-label-container-padding-bottom, 8px)}.mdc-text-field--outlined .mat-mdc-form-field-infix,.mdc-text-field--no-label .mat-mdc-form-field-infix{padding-top:var(--mat-form-field-container-vertical-padding, 16px);padding-bottom:var(--mat-form-field-container-vertical-padding, 16px)}.mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label{top:calc(var(--mat-form-field-container-height, 56px)/2)}.mdc-text-field--filled .mat-mdc-floating-label{display:var(--mat-form-field-filled-label-display, block)}.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{--mat-mdc-form-field-label-transform: translateY(calc(calc(6.75px + var(--mat-form-field-container-height, 56px) / 2) * -1)) scale(var(--mat-mdc-form-field-floating-label-scale, 0.75));transform:var(--mat-mdc-form-field-label-transform)}@keyframes _mat-form-field-subscript-animation{from{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:translateY(0)}}.mat-mdc-form-field-subscript-wrapper{box-sizing:border-box;width:100%;position:relative}.mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-error-wrapper{position:absolute;top:0;left:0;right:0;padding:0 16px;opacity:1;transform:translateY(0);animation:_mat-form-field-subscript-animation 0ms cubic-bezier(0.55, 0, 0.55, 0.2)}.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field-subscript-dynamic-size .mat-mdc-form-field-error-wrapper{position:static}.mat-mdc-form-field-bottom-align::before{content:"";display:inline-block;height:16px}.mat-mdc-form-field-bottom-align.mat-mdc-form-field-subscript-dynamic-size::before{content:unset}.mat-mdc-form-field-hint-end{order:1}.mat-mdc-form-field-hint-wrapper{display:flex}.mat-mdc-form-field-hint-spacer{flex:1 0 1em}.mat-mdc-form-field-error{display:block;color:var(--mat-form-field-error-text-color, var(--mat-sys-error))}.mat-mdc-form-field-subscript-wrapper,.mat-mdc-form-field-bottom-align::before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-form-field-subscript-text-font, var(--mat-sys-body-small-font));line-height:var(--mat-form-field-subscript-text-line-height, var(--mat-sys-body-small-line-height));font-size:var(--mat-form-field-subscript-text-size, var(--mat-sys-body-small-size));letter-spacing:var(--mat-form-field-subscript-text-tracking, var(--mat-sys-body-small-tracking));font-weight:var(--mat-form-field-subscript-text-weight, var(--mat-sys-body-small-weight))}.mat-mdc-form-field-focus-overlay{top:0;left:0;right:0;bottom:0;position:absolute;opacity:0;pointer-events:none;background-color:var(--mat-form-field-state-layer-color, var(--mat-sys-on-surface))}.mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-form-field.mat-focused .mat-mdc-form-field-focus-overlay{opacity:var(--mat-form-field-focus-state-layer-opacity, 0)}select.mat-mdc-form-field-input-control{-moz-appearance:none;-webkit-appearance:none;background-color:rgba(0,0,0,0);display:inline-flex;box-sizing:border-box}select.mat-mdc-form-field-input-control:not(:disabled){cursor:pointer}select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option{color:var(--mat-form-field-select-option-text-color, var(--mat-sys-neutral10))}select.mat-mdc-form-field-input-control:not(.mat-mdc-native-select-inline) option:disabled{color:var(--mat-form-field-select-disabled-option-text-color, color-mix(in srgb, var(--mat-sys-neutral10) 38%, transparent))}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{content:"";width:0;height:0;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-top:5px solid;position:absolute;right:0;top:50%;margin-top:-2.5px;pointer-events:none;color:var(--mat-form-field-enabled-select-arrow-color, var(--mat-sys-on-surface-variant))}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-infix::after{right:auto;left:0}.mat-mdc-form-field-type-mat-native-select.mat-focused .mat-mdc-form-field-infix::after{color:var(--mat-form-field-focus-select-arrow-color, var(--mat-sys-primary))}.mat-mdc-form-field-type-mat-native-select.mat-form-field-disabled .mat-mdc-form-field-infix::after{color:var(--mat-form-field-disabled-select-arrow-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:15px}[dir=rtl] .mat-mdc-form-field-type-mat-native-select .mat-mdc-form-field-input-control{padding-right:0;padding-left:15px}@media(forced-colors: active){.mat-form-field-appearance-fill .mat-mdc-text-field-wrapper{outline:solid 1px}}@media(forced-colors: active){.mat-form-field-appearance-fill.mat-form-field-disabled .mat-mdc-text-field-wrapper{outline-color:GrayText}}@media(forced-colors: active){.mat-form-field-appearance-fill.mat-focused .mat-mdc-text-field-wrapper{outline:dashed 3px}}@media(forced-colors: active){.mat-mdc-form-field.mat-focused .mdc-notched-outline{border:dashed 3px}}.mat-mdc-form-field-input-control[type=date],.mat-mdc-form-field-input-control[type=datetime],.mat-mdc-form-field-input-control[type=datetime-local],.mat-mdc-form-field-input-control[type=month],.mat-mdc-form-field-input-control[type=week],.mat-mdc-form-field-input-control[type=time]{line-height:1}.mat-mdc-form-field-input-control::-webkit-datetime-edit{line-height:1;padding:0;margin-bottom:-2px}.mat-mdc-form-field{--mat-mdc-form-field-floating-label-scale: 0.75;display:inline-flex;flex-direction:column;min-width:0;text-align:left;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-form-field-container-text-font, var(--mat-sys-body-large-font));line-height:var(--mat-form-field-container-text-line-height, var(--mat-sys-body-large-line-height));font-size:var(--mat-form-field-container-text-size, var(--mat-sys-body-large-size));letter-spacing:var(--mat-form-field-container-text-tracking, var(--mat-sys-body-large-tracking));font-weight:var(--mat-form-field-container-text-weight, var(--mat-sys-body-large-weight))}.mat-mdc-form-field .mdc-text-field--outlined .mdc-floating-label--float-above{font-size:calc(var(--mat-form-field-outlined-label-text-populated-size)*var(--mat-mdc-form-field-floating-label-scale))}.mat-mdc-form-field .mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above{font-size:var(--mat-form-field-outlined-label-text-populated-size)}[dir=rtl] .mat-mdc-form-field{text-align:right}.mat-mdc-form-field-flex{display:inline-flex;align-items:baseline;box-sizing:border-box;width:100%}.mat-mdc-text-field-wrapper{width:100%;z-index:0}.mat-mdc-form-field-icon-prefix,.mat-mdc-form-field-icon-suffix{align-self:center;line-height:0;pointer-events:auto;position:relative;z-index:1}.mat-mdc-form-field-icon-prefix>.mat-icon,.mat-mdc-form-field-icon-suffix>.mat-icon{padding:0 12px;box-sizing:content-box}.mat-mdc-form-field-icon-prefix{color:var(--mat-form-field-leading-icon-color, var(--mat-sys-on-surface-variant))}.mat-form-field-disabled .mat-mdc-form-field-icon-prefix{color:var(--mat-form-field-disabled-leading-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-trailing-icon-color, var(--mat-sys-on-surface-variant))}.mat-form-field-disabled .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-disabled-trailing-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-form-field-invalid .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-trailing-icon-color, var(--mat-sys-error))}.mat-form-field-invalid:not(.mat-focused):not(.mat-form-field-disabled) .mat-mdc-text-field-wrapper:hover .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-hover-trailing-icon-color, var(--mat-sys-on-error-container))}.mat-form-field-invalid.mat-focused .mat-mdc-text-field-wrapper .mat-mdc-form-field-icon-suffix{color:var(--mat-form-field-error-focus-trailing-icon-color, var(--mat-sys-error))}.mat-mdc-form-field-icon-prefix,[dir=rtl] .mat-mdc-form-field-icon-suffix{padding:0 4px 0 0}.mat-mdc-form-field-icon-suffix,[dir=rtl] .mat-mdc-form-field-icon-prefix{padding:0 0 0 4px}.mat-mdc-form-field-subscript-wrapper .mat-icon,.mat-mdc-form-field label .mat-icon{width:1em;height:1em;font-size:inherit}.mat-mdc-form-field-infix{flex:auto;min-width:0;width:180px;position:relative;box-sizing:border-box}.mat-mdc-form-field-infix:has(textarea[cols]){width:auto}.mat-mdc-form-field .mdc-notched-outline__notch{margin-left:-1px;-webkit-clip-path:inset(-9em -999em -9em 1px);clip-path:inset(-9em -999em -9em 1px)}[dir=rtl] .mat-mdc-form-field .mdc-notched-outline__notch{margin-left:0;margin-right:-1px;-webkit-clip-path:inset(-9em 1px -9em -999em);clip-path:inset(-9em 1px -9em -999em)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-floating-label{transition:transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input{transition:opacity 150ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input::placeholder{transition:opacity 67ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input::-moz-placeholder{transition:opacity 67ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input::-webkit-input-placeholder{transition:opacity 67ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field__input:-ms-input-placeholder{transition:opacity 67ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--no-label .mdc-text-field__input::placeholder,.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--focused .mdc-text-field__input::placeholder{transition-delay:40ms;transition-duration:110ms}.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--no-label .mdc-text-field__input::-moz-placeholder,.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--focused .mdc-text-field__input::-moz-placeholder{transition-delay:40ms;transition-duration:110ms}.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--no-label .mdc-text-field__input::-webkit-input-placeholder,.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--focused .mdc-text-field__input::-webkit-input-placeholder{transition-delay:40ms;transition-duration:110ms}.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,.mat-mdc-form-field.mat-form-field-animations-enabled.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder{transition-delay:40ms;transition-duration:110ms}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before{transition-duration:75ms}.mat-mdc-form-field.mat-form-field-animations-enabled .mdc-line-ripple::after{transition:transform 180ms cubic-bezier(0.4, 0, 0.2, 1),opacity 180ms cubic-bezier(0.4, 0, 0.2, 1)}.mat-mdc-form-field.mat-form-field-animations-enabled .mat-mdc-form-field-hint-wrapper,.mat-mdc-form-field.mat-form-field-animations-enabled .mat-mdc-form-field-error-wrapper{animation-duration:300ms}.mdc-notched-outline .mdc-floating-label{max-width:calc(100% + 1px)}.mdc-notched-outline--upgraded .mdc-floating-label--float-above{max-width:calc(133.3333333333% + 1px)}\n'],encapsulation:2,changeDetection:0})}return ke})()},2885(Zt,pe,l){"use strict";l.d(pe,{B_:()=>ie,Fe:()=>P,NS:()=>ce});class i{tracker;columnIndex=0;rowIndex=0;get rowCount(){return this.rowIndex+1}get rowspan(){const ve=Math.max(...this.tracker);return ve>1?this.rowCount+ve-1:this.rowCount}positions;update(ve,H){this.columnIndex=0,this.rowIndex=0,this.tracker=new Array(ve),this.tracker.fill(0,0,this.tracker.length),this.positions=H.map($=>this._trackTile($))}_trackTile(ve){const H=this._findMatchingGap(ve.colspan);return this._markTilePosition(H,ve),this.columnIndex=H+ve.colspan,new d(this.rowIndex,H)}_findMatchingGap(ve){let H=-1,$=-1;do{this.columnIndex+ve>this.tracker.length?(this._nextRow(),H=this.tracker.indexOf(0,this.columnIndex),$=this._findGapEndIndex(H)):(H=this.tracker.indexOf(0,this.columnIndex),-1!=H?($=this._findGapEndIndex(H),this.columnIndex=H+1):(this._nextRow(),H=this.tracker.indexOf(0,this.columnIndex),$=this._findGapEndIndex(H)))}while($-H{class F{static \u0275fac=function($){return new($||F)};static \u0275mod=T.$C({type:F});static \u0275inj=w.G2t({imports:[e.y,e.y]})}return F})();var A=l(7847),Pe=l(1577);const G=["*"],V=new w.nKC("MAT_GRID_LIST");let ce=(()=>{class F{_element=(0,w.WQX)(T.aKT);_gridList=(0,w.WQX)(V,{optional:!0});_rowspan=1;_colspan=1;constructor(){}get rowspan(){return this._rowspan}set rowspan(H){this._rowspan=Math.round((0,A.OE)(H))}get colspan(){return this._colspan}set colspan(H){this._colspan=Math.round((0,A.OE)(H))}_setStyle(H,$){this._element.nativeElement.style[H]=$}static \u0275fac=function($){return new($||F)};static \u0275cmp=T.VBU({type:F,selectors:[["mat-grid-tile"]],hostAttrs:[1,"mat-grid-tile"],hostVars:2,hostBindings:function($,Ke){2&$&&T.BMQ("rowspan",Ke.rowspan)("colspan",Ke.colspan)},inputs:{rowspan:"rowspan",colspan:"colspan"},exportAs:["matGridTile"],ngContentSelectors:G,decls:2,vars:0,consts:[[1,"mat-grid-tile-content"]],template:function($,Ke){1&$&&(T.NAR(),T.rj2(0,"div",0),T.SdG(1),T.eux())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-header{font-size:var(--mat-grid-list-tile-header-primary-text-size, var(--mat-sys-body-large))}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size, var(--mat-sys-body-medium))}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size, var(--mat-sys-body-large))}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size, var(--mat-sys-body-medium))}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}\n"],encapsulation:2,changeDetection:0})}return F})();const Re=/^-?\d+((\.\d+)?[A-Za-z%$]?)+$/;class Xe{_gutterSize;_rows=0;_rowspan=0;_cols;_direction;init(ve,H,$,Ke){this._gutterSize=Le(ve),this._rows=H.rowCount,this._rowspan=H.rowspan,this._cols=$,this._direction=Ke}getBaseTileSize(ve,H){return`(${ve}% - (${this._gutterSize} * ${H}))`}getTilePosition(ve,H){return 0===H?"0":lt(`(${ve} + ${this._gutterSize}) * ${H}`)}getTileSize(ve,H){return`(${ve} * ${H}) + (${H-1} * ${this._gutterSize})`}setStyle(ve,H,$){let Ke=100/this._cols,Vt=(this._cols-1)/this._cols;this.setColStyles(ve,$,Ke,Vt),this.setRowStyles(ve,H,Ke,Vt)}setColStyles(ve,H,$,Ke){let Vt=this.getBaseTileSize($,Ke);ve._setStyle("rtl"===this._direction?"right":"left",this.getTilePosition(Vt,H)),ve._setStyle("width",lt(this.getTileSize(Vt,ve.colspan)))}getGutterSpan(){return`${this._gutterSize} * (${this._rowspan} - 1)`}getTileSpan(ve){return`${this._rowspan} * ${this.getTileSize(ve,1)}`}getComputedHeight(){return null}}class _e extends Xe{fixedRowHeight;constructor(ve){super(),this.fixedRowHeight=ve}init(ve,H,$,Ke){super.init(ve,H,$,Ke),this.fixedRowHeight=Le(this.fixedRowHeight),Re.test(this.fixedRowHeight)}setRowStyles(ve,H){ve._setStyle("top",this.getTilePosition(this.fixedRowHeight,H)),ve._setStyle("height",lt(this.getTileSize(this.fixedRowHeight,ve.rowspan)))}getComputedHeight(){return["height",lt(`${this.getTileSpan(this.fixedRowHeight)} + ${this.getGutterSpan()}`)]}reset(ve){ve._setListStyle(["height",null]),ve._tiles&&ve._tiles.forEach(H=>{H._setStyle("top",null),H._setStyle("height",null)})}}class he extends Xe{rowHeightRatio;baseTileHeight;constructor(ve){super(),this._parseRatio(ve)}setRowStyles(ve,H,$,Ke){this.baseTileHeight=this.getBaseTileSize($/this.rowHeightRatio,Ke),ve._setStyle("marginTop",this.getTilePosition(this.baseTileHeight,H)),ve._setStyle("paddingTop",lt(this.getTileSize(this.baseTileHeight,ve.rowspan)))}getComputedHeight(){return["paddingBottom",lt(`${this.getTileSpan(this.baseTileHeight)} + ${this.getGutterSpan()}`)]}reset(ve){ve._setListStyle(["paddingBottom",null]),ve._tiles.forEach(H=>{H._setStyle("marginTop",null),H._setStyle("paddingTop",null)})}_parseRatio(ve){const H=ve.split(":");this.rowHeightRatio=parseFloat(H[0])/parseFloat(H[1])}}class Dt extends Xe{setRowStyles(ve,H){let Vt=this.getBaseTileSize(100/this._rowspan,(this._rows-1)/this._rows);ve._setStyle("top",this.getTilePosition(Vt,H)),ve._setStyle("height",lt(this.getTileSize(Vt,ve.rowspan)))}reset(ve){ve._tiles&&ve._tiles.forEach(H=>{H._setStyle("top",null),H._setStyle("height",null)})}}function lt(F){return`calc(${F})`}function Le(F){return F.match(/([A-Za-z%]+)$/)?F:`${F}px`}let ie=(()=>{class F{_element=(0,w.WQX)(T.aKT);_dir=(0,w.WQX)(Pe.dS,{optional:!0});_cols;_tileCoordinator;_rowHeight;_gutter="1px";_tileStyler;_tiles;constructor(){}get cols(){return this._cols}set cols(H){this._cols=Math.max(1,Math.round((0,A.OE)(H)))}get gutterSize(){return this._gutter}set gutterSize(H){this._gutter=`${H??""}`}get rowHeight(){return this._rowHeight}set rowHeight(H){const $=`${H??""}`;$!==this._rowHeight&&(this._rowHeight=$,this._setTileStyler(this._rowHeight))}ngOnInit(){this._checkCols(),this._checkRowHeight()}ngAfterContentChecked(){this._layoutTiles()}_checkCols(){}_checkRowHeight(){this._rowHeight||this._setTileStyler("1:1")}_setTileStyler(H){this._tileStyler&&this._tileStyler.reset(this),this._tileStyler="fit"===H?new Dt:H&&H.indexOf(":")>-1?new he(H):new _e(H)}_layoutTiles(){this._tileCoordinator||(this._tileCoordinator=new i);const H=this._tileCoordinator,$=this._tiles.filter(Vt=>!Vt._gridList||Vt._gridList===this),Ke=this._dir?this._dir.value:"ltr";this._tileCoordinator.update(this.cols,$),this._tileStyler.init(this.gutterSize,H,this.cols,Ke),$.forEach((Vt,St)=>{const ot=H.positions[St];this._tileStyler.setStyle(Vt,ot.row,ot.col)}),this._setListStyle(this._tileStyler.getComputedHeight())}_setListStyle(H){H&&(this._element.nativeElement.style[H[0]]=H[1])}static \u0275fac=function($){return new($||F)};static \u0275cmp=T.VBU({type:F,selectors:[["mat-grid-list"]],contentQueries:function($,Ke,Vt){if(1&$&&T.wni(Vt,ce,5),2&$){let St;T.mGM(St=T.lsd())&&(Ke._tiles=St)}},hostAttrs:[1,"mat-grid-list"],hostVars:1,hostBindings:function($,Ke){2&$&&T.BMQ("cols",Ke.cols)},inputs:{cols:"cols",gutterSize:"gutterSize",rowHeight:"rowHeight"},exportAs:["matGridList"],features:[T.Jv_([{provide:V,useExisting:F}])],ngContentSelectors:G,decls:2,vars:0,template:function($,Ke){1&$&&(T.NAR(),T.rj2(0,"div"),T.SdG(1),T.eux())},styles:[".mat-grid-list{display:block;position:relative}.mat-grid-tile{display:block;position:absolute;overflow:hidden}.mat-grid-tile .mat-grid-tile-header,.mat-grid-tile .mat-grid-tile-footer{display:flex;align-items:center;height:48px;color:#fff;background:rgba(0,0,0,.38);overflow:hidden;padding:0 16px;position:absolute;left:0;right:0}.mat-grid-tile .mat-grid-tile-header>*,.mat-grid-tile .mat-grid-tile-footer>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-tile-header.mat-2-line,.mat-grid-tile .mat-grid-tile-footer.mat-2-line{height:68px}.mat-grid-tile .mat-grid-list-text{display:flex;flex-direction:column;flex:auto;box-sizing:border-box;overflow:hidden}.mat-grid-tile .mat-grid-list-text>*{margin:0;padding:0;font-weight:normal;font-size:inherit}.mat-grid-tile .mat-grid-list-text:empty{display:none}.mat-grid-tile .mat-grid-tile-header{top:0}.mat-grid-tile .mat-grid-tile-footer{bottom:0}.mat-grid-tile .mat-grid-avatar{padding-right:16px}[dir=rtl] .mat-grid-tile .mat-grid-avatar{padding-right:0;padding-left:16px}.mat-grid-tile .mat-grid-avatar:empty{display:none}.mat-grid-tile-header{font-size:var(--mat-grid-list-tile-header-primary-text-size, var(--mat-sys-body-large))}.mat-grid-tile-header .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-header-secondary-text-size, var(--mat-sys-body-medium))}.mat-grid-tile-footer{font-size:var(--mat-grid-list-tile-footer-primary-text-size, var(--mat-sys-body-large))}.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:var(--mat-grid-list-tile-footer-secondary-text-size, var(--mat-sys-body-medium))}.mat-grid-tile-content{top:0;left:0;right:0;bottom:0;position:absolute;display:flex;align-items:center;justify-content:center;height:100%;padding:0;margin:0}\n"],encapsulation:2,changeDetection:0})}return F})(),P=(()=>{class F{static \u0275fac=function($){return new($||F)};static \u0275mod=T.$C({type:F});static \u0275inj=w.G2t({imports:[B,e.y,B,e.y]})}return F})()},2598(Zt,pe,l){"use strict";l.d(pe,{iM:()=>A,iY:()=>Pe});var i=l(3664),d=l(7705),v=l(2615),T=l(6838),w=l(8968),e=l(1048),O=l(2046),f=l(1804);const u=["mat-icon-button",""],L=["*"],C=new v.nKC("MAT_BUTTON_CONFIG");function B(Ce){return null==Ce?void 0:(0,d.Udg)(Ce)}let A=(()=>{class Ce{_elementRef=(0,v.WQX)(i.aKT);_ngZone=(0,v.WQX)(i.SKi);_animationsDisabled=(0,f.Rc)();_config=(0,v.WQX)(C,{optional:!0});_focusMonitor=(0,v.WQX)(T.FN);_cleanupClick;_renderer=(0,v.WQX)(i.sFG);_rippleLoader=(0,v.WQX)(e.E);_isAnchor;_isFab=!1;color;get disableRipple(){return this._disableRipple}set disableRipple(j){this._disableRipple=j,this._updateRippleDisabled()}_disableRipple=!1;get disabled(){return this._disabled}set disabled(j){this._disabled=j,this._updateRippleDisabled()}_disabled=!1;ariaDisabled;disabledInteractive;tabIndex;set _tabindex(j){this.tabIndex=j}constructor(){(0,v.WQX)(w.l).load(O.A);const j=this._elementRef.nativeElement;this._isAnchor="A"===j.tagName,this.disabledInteractive=this._config?.disabledInteractive??!1,this.color=this._config?.color??null,this._rippleLoader?.configureRipple(j,{className:"mat-mdc-button-ripple"})}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0),this._isAnchor&&this._setupAsAnchor()}ngOnDestroy(){this._cleanupClick?.(),this._focusMonitor.stopMonitoring(this._elementRef),this._rippleLoader?.destroyRipple(this._elementRef.nativeElement)}focus(j="program",W){j?this._focusMonitor.focusVia(this._elementRef.nativeElement,j,W):this._elementRef.nativeElement.focus(W)}_getAriaDisabled(){return null!=this.ariaDisabled?this.ariaDisabled:this._isAnchor?this.disabled||null:!(!this.disabled||!this.disabledInteractive)||null}_getDisabledAttribute(){return!(this.disabledInteractive||!this.disabled)||null}_updateRippleDisabled(){this._rippleLoader?.setDisabled(this._elementRef.nativeElement,this.disableRipple||this.disabled)}_getTabIndex(){return this._isAnchor&&this.disabled&&!this.disabledInteractive?-1:this.tabIndex}_setupAsAnchor(){this._cleanupClick=this._ngZone.runOutsideAngular(()=>this._renderer.listen(this._elementRef.nativeElement,"click",j=>{this.disabled&&(j.preventDefault(),j.stopImmediatePropagation())}))}static \u0275fac=function(W){return new(W||Ce)};static \u0275dir=i.FsC({type:Ce,hostAttrs:[1,"mat-mdc-button-base"],hostVars:13,hostBindings:function(W,G){2&W&&(i.BMQ("disabled",G._getDisabledAttribute())("aria-disabled",G._getAriaDisabled())("tabindex",G._getTabIndex()),i.HbH(G.color?"mat-"+G.color:""),i.AVh("mat-mdc-button-disabled",G.disabled)("mat-mdc-button-disabled-interactive",G.disabledInteractive)("mat-unthemed",!G.color)("_mat-animation-noopable",G._animationsDisabled))},inputs:{color:"color",disableRipple:[2,"disableRipple","disableRipple",d.L39],disabled:[2,"disabled","disabled",d.L39],ariaDisabled:[2,"aria-disabled","ariaDisabled",d.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",d.L39],tabIndex:[2,"tabIndex","tabIndex",B],_tabindex:[2,"tabindex","_tabindex",B]}})}return Ce})(),Pe=(()=>{class Ce extends A{constructor(){super(),this._rippleLoader.configureRipple(this._elementRef.nativeElement,{centered:!0})}static \u0275fac=function(W){return new(W||Ce)};static \u0275cmp=i.VBU({type:Ce,selectors:[["button","mat-icon-button",""],["a","mat-icon-button",""],["button","matIconButton",""],["a","matIconButton",""]],hostAttrs:[1,"mdc-icon-button","mat-mdc-icon-button"],exportAs:["matButton","matAnchor"],features:[i.Vt3],attrs:u,ngContentSelectors:L,decls:4,vars:0,consts:[[1,"mat-mdc-button-persistent-ripple","mdc-icon-button__ripple"],[1,"mat-focus-indicator"],[1,"mat-mdc-button-touch-target"]],template:function(W,G){1&W&&(i.NAR(),i.Hgh(0,"span",0),i.SdG(1),i.Hgh(2,"span",1)(3,"span",2))},styles:['.mat-mdc-icon-button{-webkit-user-select:none;user-select:none;display:inline-block;position:relative;box-sizing:border-box;border:none;outline:none;background-color:rgba(0,0,0,0);fill:currentColor;text-decoration:none;cursor:pointer;z-index:0;overflow:visible;border-radius:var(--mat-icon-button-container-shape, var(--mat-sys-corner-full, 50%));flex-shrink:0;text-align:center;width:var(--mat-icon-button-state-layer-size, 40px);height:var(--mat-icon-button-state-layer-size, 40px);padding:calc(calc(var(--mat-icon-button-state-layer-size, 40px) - var(--mat-icon-button-icon-size, 24px)) / 2);font-size:var(--mat-icon-button-icon-size, 24px);color:var(--mat-icon-button-icon-color, var(--mat-sys-on-surface-variant));-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-icon-button .mat-mdc-button-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple,.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:inherit}.mat-mdc-icon-button .mat-mdc-button-ripple{overflow:hidden}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{content:"";opacity:0}.mat-mdc-icon-button .mdc-button__label,.mat-mdc-icon-button .mat-icon{z-index:1;position:relative}.mat-mdc-icon-button .mat-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:inherit}.mat-mdc-icon-button:focus>.mat-focus-indicator::before{content:"";border-radius:inherit}.mat-mdc-icon-button .mat-ripple-element{background-color:var(--mat-icon-button-ripple-color, color-mix(in srgb, var(--mat-sys-on-surface-variant) calc(var(--mat-sys-pressed-state-layer-opacity) * 100%), transparent))}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-icon-button.mat-mdc-button-disabled .mat-mdc-button-persistent-ripple::before{background-color:var(--mat-icon-button-disabled-state-layer-color, var(--mat-sys-on-surface-variant))}.mat-mdc-icon-button:hover>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mat-mdc-icon-button.cdk-program-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-icon-button.cdk-keyboard-focused>.mat-mdc-button-persistent-ripple::before,.mat-mdc-icon-button.mat-mdc-button-disabled-interactive:focus>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mat-mdc-icon-button:active>.mat-mdc-button-persistent-ripple::before{opacity:var(--mat-icon-button-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity))}.mat-mdc-icon-button .mat-mdc-button-touch-target{position:absolute;top:50%;height:var(--mat-icon-button-touch-target-size, 48px);display:var(--mat-icon-button-touch-target-display, block);left:50%;width:var(--mat-icon-button-touch-target-size, 48px);transform:translate(-50%, -50%)}.mat-mdc-icon-button._mat-animation-noopable{transition:none !important;animation:none !important}.mat-mdc-icon-button[disabled],.mat-mdc-icon-button.mat-mdc-button-disabled{cursor:default;pointer-events:none;color:var(--mat-icon-button-disabled-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-icon-button.mat-mdc-button-disabled-interactive{pointer-events:auto}.mat-mdc-icon-button img,.mat-mdc-icon-button svg{width:var(--mat-icon-button-icon-size, 24px);height:var(--mat-icon-button-icon-size, 24px);vertical-align:baseline}.mat-mdc-icon-button .mat-mdc-button-persistent-ripple{border-radius:var(--mat-icon-button-container-shape, var(--mat-sys-corner-full, 50%))}.mat-mdc-icon-button[hidden]{display:none}.mat-mdc-icon-button.mat-unthemed:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-primary:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-accent:not(.mdc-ripple-upgraded):focus::before,.mat-mdc-icon-button.mat-warn:not(.mdc-ripple-upgraded):focus::before{background:rgba(0,0,0,0);opacity:1}\n',"@media(forced-colors: active){.mat-mdc-button:not(.mdc-button--outlined),.mat-mdc-unelevated-button:not(.mdc-button--outlined),.mat-mdc-raised-button:not(.mdc-button--outlined),.mat-mdc-outlined-button:not(.mdc-button--outlined),.mat-mdc-button-base.mat-tonal-button,.mat-mdc-icon-button.mat-mdc-icon-button,.mat-mdc-outlined-button .mdc-button__ripple{outline:solid 1px}}\n"],encapsulation:2,changeDetection:0})}return Ce})()},2629(Zt,pe,l){"use strict";l.d(pe,{An:()=>ie,m_:()=>P});var i=l(3664),d=l(2615),v=l(7705),T=l(8359),w=l(6697),e=l(9330),O=l(345),f=l(7673),u=l(8810),L=l(7468),C=l(8141),B=l(6354),A=l(9437),Pe=l(980),le=l(7647);let Ce;function j(F){return function Ae(){if(void 0===Ce&&(Ce=null,typeof window<"u")){const F=window;void 0!==F.trustedTypes&&(Ce=F.trustedTypes.createPolicy("angular#components",{createHTML:ve=>ve}))}return Ce}()?.createHTML(F)||F}function W(F){return Error(`Unable to find icon with the name "${F}"`)}function re(F){return Error(`The URL provided to MatIconRegistry was not trusted as a resource URL via Angular's DomSanitizer. Attempted URL was "${F}".`)}function xe(F){return Error(`The literal provided to MatIconRegistry was not trusted as safe HTML by Angular's DomSanitizer. Attempted literal was "${F}".`)}class Ee{url;svgText;options;svgElement;constructor(ve,H,$){this.url=ve,this.svgText=H,this.options=$}}let V=(()=>{class F{_httpClient;_sanitizer;_errorHandler;_document;_svgIconConfigs=new Map;_iconSetConfigs=new Map;_cachedIconsByUrl=new Map;_inProgressUrlFetches=new Map;_fontCssClassesByAlias=new Map;_resolvers=[];_defaultFontSetClass=["material-icons","mat-ligature-font"];constructor(H,$,Ke,Vt){this._httpClient=H,this._sanitizer=$,this._errorHandler=Vt,this._document=Ke}addSvgIcon(H,$,Ke){return this.addSvgIconInNamespace("",H,$,Ke)}addSvgIconLiteral(H,$,Ke){return this.addSvgIconLiteralInNamespace("",H,$,Ke)}addSvgIconInNamespace(H,$,Ke,Vt){return this._addSvgIconConfig(H,$,new Ee(Ke,null,Vt))}addSvgIconResolver(H){return this._resolvers.push(H),this}addSvgIconLiteralInNamespace(H,$,Ke,Vt){const St=this._sanitizer.sanitize(i.WPN.HTML,Ke);if(!St)throw xe(Ke);const ot=j(St);return this._addSvgIconConfig(H,$,new Ee("",ot,Vt))}addSvgIconSet(H,$){return this.addSvgIconSetInNamespace("",H,$)}addSvgIconSetLiteral(H,$){return this.addSvgIconSetLiteralInNamespace("",H,$)}addSvgIconSetInNamespace(H,$,Ke){return this._addSvgIconSetConfig(H,new Ee($,null,Ke))}addSvgIconSetLiteralInNamespace(H,$,Ke){const Vt=this._sanitizer.sanitize(i.WPN.HTML,$);if(!Vt)throw xe($);const St=j(Vt);return this._addSvgIconSetConfig(H,new Ee("",St,Ke))}registerFontClassAlias(H,$=H){return this._fontCssClassesByAlias.set(H,$),this}classNameForFontAlias(H){return this._fontCssClassesByAlias.get(H)||H}setDefaultFontSetClass(...H){return this._defaultFontSetClass=H,this}getDefaultFontSetClass(){return this._defaultFontSetClass}getSvgIconFromUrl(H){const $=this._sanitizer.sanitize(i.WPN.RESOURCE_URL,H);if(!$)throw re(H);const Ke=this._cachedIconsByUrl.get($);return Ke?(0,f.of)(ne(Ke)):this._loadSvgIconFromConfig(new Ee(H,null)).pipe((0,C.M)(Vt=>this._cachedIconsByUrl.set($,Vt)),(0,B.T)(Vt=>ne(Vt)))}getNamedSvgIcon(H,$=""){const Ke=J($,H);let Vt=this._svgIconConfigs.get(Ke);if(Vt)return this._getSvgFromConfig(Vt);if(Vt=this._getIconConfigFromResolvers($,H),Vt)return this._svgIconConfigs.set(Ke,Vt),this._getSvgFromConfig(Vt);const St=this._iconSetConfigs.get($);return St?this._getSvgFromIconSetConfigs(H,St):(0,u.$)(W(Ke))}ngOnDestroy(){this._resolvers=[],this._svgIconConfigs.clear(),this._iconSetConfigs.clear(),this._cachedIconsByUrl.clear()}_getSvgFromConfig(H){return H.svgText?(0,f.of)(ne(this._svgElementFromConfig(H))):this._loadSvgIconFromConfig(H).pipe((0,B.T)($=>ne($)))}_getSvgFromIconSetConfigs(H,$){const Ke=this._extractIconWithNameFromAnySet(H,$);if(Ke)return(0,f.of)(Ke);const Vt=$.filter(St=>!St.svgText).map(St=>this._loadSvgIconSetFromConfig(St).pipe((0,A.W)(ot=>{const ht=`Loading icon set URL: ${this._sanitizer.sanitize(i.WPN.RESOURCE_URL,St.url)} failed: ${ot.message}`;return this._errorHandler.handleError(new Error(ht)),(0,f.of)(null)})));return(0,L.p)(Vt).pipe((0,B.T)(()=>{const St=this._extractIconWithNameFromAnySet(H,$);if(!St)throw W(H);return St}))}_extractIconWithNameFromAnySet(H,$){for(let Ke=$.length-1;Ke>=0;Ke--){const Vt=$[Ke];if(Vt.svgText&&Vt.svgText.toString().indexOf(H)>-1){const St=this._svgElementFromConfig(Vt),ot=this._extractSvgIconFromSet(St,H,Vt.options);if(ot)return ot}}return null}_loadSvgIconFromConfig(H){return this._fetchIcon(H).pipe((0,C.M)($=>H.svgText=$),(0,B.T)(()=>this._svgElementFromConfig(H)))}_loadSvgIconSetFromConfig(H){return H.svgText?(0,f.of)(null):this._fetchIcon(H).pipe((0,C.M)($=>H.svgText=$))}_extractSvgIconFromSet(H,$,Ke){const Vt=H.querySelector(`[id="${$}"]`);if(!Vt)return null;const St=Vt.cloneNode(!0);if(St.removeAttribute("id"),"svg"===St.nodeName.toLowerCase())return this._setSvgAttributes(St,Ke);if("symbol"===St.nodeName.toLowerCase())return this._setSvgAttributes(this._toSvgElement(St),Ke);const ot=this._svgElementFromString(j(""));return ot.appendChild(St),this._setSvgAttributes(ot,Ke)}_svgElementFromString(H){const $=this._document.createElement("DIV");$.innerHTML=H;const Ke=$.querySelector("svg");if(!Ke)throw Error(" tag not found");return Ke}_toSvgElement(H){const $=this._svgElementFromString(j("")),Ke=H.attributes;for(let Vt=0;Vtj(ht)),(0,Pe.j)(()=>this._inProgressUrlFetches.delete(St)),(0,le.u)());return this._inProgressUrlFetches.set(St,nt),nt}_addSvgIconConfig(H,$,Ke){return this._svgIconConfigs.set(J(H,$),Ke),this}_addSvgIconSetConfig(H,$){const Ke=this._iconSetConfigs.get(H);return Ke?Ke.push($):this._iconSetConfigs.set(H,[$]),this}_svgElementFromConfig(H){if(!H.svgElement){const $=this._svgElementFromString(H.svgText);this._setSvgAttributes($,H.options),H.svgElement=$}return H.svgElement}_getIconConfigFromResolvers(H,$){for(let Ke=0;Keve?ve.pathname+ve.search:""}}}),lt=["clip-path","color-profile","src","cursor","fill","filter","marker","marker-start","marker-mid","marker-end","mask","stroke"],Le=lt.map(F=>`[${F}]`).join(", "),te=/^url\(['"]?#(.*?)['"]?\)$/;let ie=(()=>{class F{_elementRef=(0,d.WQX)(i.aKT);_iconRegistry=(0,d.WQX)(V);_location=(0,d.WQX)(he);_errorHandler=(0,d.WQX)(d.zcH);_defaultColor;get color(){return this._color||this._defaultColor}set color(H){this._color=H}_color;inline=!1;get svgIcon(){return this._svgIcon}set svgIcon(H){H!==this._svgIcon&&(H?this._updateSvgIcon(H):this._svgIcon&&this._clearSvgElement(),this._svgIcon=H)}_svgIcon;get fontSet(){return this._fontSet}set fontSet(H){const $=this._cleanupFontValue(H);$!==this._fontSet&&(this._fontSet=$,this._updateFontIconClasses())}_fontSet;get fontIcon(){return this._fontIcon}set fontIcon(H){const $=this._cleanupFontValue(H);$!==this._fontIcon&&(this._fontIcon=$,this._updateFontIconClasses())}_fontIcon;_previousFontSetClass=[];_previousFontIconClass;_svgName;_svgNamespace;_previousPath;_elementsWithExternalReferences;_currentIconFetch=T.yU.EMPTY;constructor(){const H=(0,d.WQX)(new v.ES_("aria-hidden"),{optional:!0}),$=(0,d.WQX)(_e,{optional:!0});$&&($.color&&(this.color=this._defaultColor=$.color),$.fontSet&&(this.fontSet=$.fontSet)),H||this._elementRef.nativeElement.setAttribute("aria-hidden","true")}_splitIconName(H){if(!H)return["",""];const $=H.split(":");switch($.length){case 1:return["",$[0]];case 2:return $;default:throw Error(`Invalid icon name: "${H}"`)}}ngOnInit(){this._updateFontIconClasses()}ngAfterViewChecked(){const H=this._elementsWithExternalReferences;if(H&&H.size){const $=this._location.getPathname();$!==this._previousPath&&(this._previousPath=$,this._prependPathToReferences($))}}ngOnDestroy(){this._currentIconFetch.unsubscribe(),this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear()}_usingFontIcon(){return!this.svgIcon}_setSvgElement(H){this._clearSvgElement();const $=this._location.getPathname();this._previousPath=$,this._cacheChildrenWithExternalReferences(H),this._prependPathToReferences($),this._elementRef.nativeElement.appendChild(H)}_clearSvgElement(){const H=this._elementRef.nativeElement;let $=H.childNodes.length;for(this._elementsWithExternalReferences&&this._elementsWithExternalReferences.clear();$--;){const Ke=H.childNodes[$];(1!==Ke.nodeType||"svg"===Ke.nodeName.toLowerCase())&&Ke.remove()}}_updateFontIconClasses(){if(!this._usingFontIcon())return;const H=this._elementRef.nativeElement,$=(this.fontSet?this._iconRegistry.classNameForFontAlias(this.fontSet).split(/ +/):this._iconRegistry.getDefaultFontSetClass()).filter(Ke=>Ke.length>0);this._previousFontSetClass.forEach(Ke=>H.classList.remove(Ke)),$.forEach(Ke=>H.classList.add(Ke)),this._previousFontSetClass=$,this.fontIcon!==this._previousFontIconClass&&!$.includes("mat-ligature-font")&&(this._previousFontIconClass&&H.classList.remove(this._previousFontIconClass),this.fontIcon&&H.classList.add(this.fontIcon),this._previousFontIconClass=this.fontIcon)}_cleanupFontValue(H){return"string"==typeof H?H.trim().split(" ")[0]:H}_prependPathToReferences(H){const $=this._elementsWithExternalReferences;$&&$.forEach((Ke,Vt)=>{Ke.forEach(St=>{Vt.setAttribute(St.name,`url('${H}#${St.value}')`)})})}_cacheChildrenWithExternalReferences(H){const $=H.querySelectorAll(Le),Ke=this._elementsWithExternalReferences=this._elementsWithExternalReferences||new Map;for(let Vt=0;Vt<$.length;Vt++)lt.forEach(St=>{const ot=$[Vt],nt=ot.getAttribute(St),ht=nt?nt.match(te):null;if(ht){let oe=Ke.get(ot);oe||(oe=[],Ke.set(ot,oe)),oe.push({name:St,value:ht[1]})}})}_updateSvgIcon(H){if(this._svgNamespace=null,this._svgName=null,this._currentIconFetch.unsubscribe(),H){const[$,Ke]=this._splitIconName(H);$&&(this._svgNamespace=$),Ke&&(this._svgName=Ke),this._currentIconFetch=this._iconRegistry.getNamedSvgIcon(Ke,$).pipe((0,w.s)(1)).subscribe(Vt=>this._setSvgElement(Vt),Vt=>{this._errorHandler.handleError(new Error(`Error retrieving icon ${$}:${Ke}! ${Vt.message}`))})}}static \u0275fac=function($){return new($||F)};static \u0275cmp=i.VBU({type:F,selectors:[["mat-icon"]],hostAttrs:["role","img",1,"mat-icon","notranslate"],hostVars:10,hostBindings:function($,Ke){2&$&&(i.BMQ("data-mat-icon-type",Ke._usingFontIcon()?"font":"svg")("data-mat-icon-name",Ke._svgName||Ke.fontIcon)("data-mat-icon-namespace",Ke._svgNamespace||Ke.fontSet)("fontIcon",Ke._usingFontIcon()?Ke.fontIcon:null),i.HbH(Ke.color?"mat-"+Ke.color:""),i.AVh("mat-icon-inline",Ke.inline)("mat-icon-no-color","primary"!==Ke.color&&"accent"!==Ke.color&&"warn"!==Ke.color))},inputs:{color:"color",inline:[2,"inline","inline",v.L39],svgIcon:"svgIcon",fontSet:"fontSet",fontIcon:"fontIcon"},exportAs:["matIcon"],ngContentSelectors:Xe,decls:1,vars:0,template:function($,Ke){1&$&&(i.NAR(),i.SdG(0))},styles:["mat-icon,mat-icon.mat-primary,mat-icon.mat-accent,mat-icon.mat-warn{color:var(--mat-icon-color, inherit)}.mat-icon{-webkit-user-select:none;user-select:none;background-repeat:no-repeat;display:inline-block;fill:currentColor;height:24px;width:24px;overflow:hidden}.mat-icon.mat-icon-inline{font-size:inherit;height:inherit;line-height:inherit;width:inherit}.mat-icon.mat-ligature-font[fontIcon]::before{content:attr(fontIcon)}[dir=rtl] .mat-icon-rtl-mirror{transform:scale(-1, 1)}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon{display:block}.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field:not(.mat-form-field-appearance-legacy) .mat-form-field-suffix .mat-icon-button .mat-icon{margin:auto}\n"],encapsulation:2,changeDetection:0})}return F})(),P=(()=>{class F{static \u0275fac=function($){return new($||F)};static \u0275mod=i.$C({type:F});static \u0275inj=d.G2t({imports:[Re.y,Re.y]})}return F})()},8010(Zt,pe,l){"use strict";l.d(pe,{O:()=>d});const d=new(l(2615).nKC)("MAT_INPUT_VALUE_ACCESSOR")},3746(Zt,pe,l){"use strict";l.d(pe,{fg:()=>St,fS:()=>ot});var i=l(4085),d=l(9842);let w;const e=["color","button","checkbox","date","datetime-local","email","file","hidden","image","month","number","password","radio","range","reset","search","submit","tel","text","time","url","week"];function O(){if(w)return w;if("object"!=typeof document||!document)return w=new Set(e),w;let nt=document.createElement("input");return w=new Set(e.filter(ht=>(nt.setAttribute("type",ht),nt.type===ht))),w}var f=l(3664),u=l(2615),L=l(983),C=l(1413),B=l(8968),A=l(7847);let ne=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275cmp=f.VBU({type:nt,selectors:[["ng-component"]],hostAttrs:["cdk-text-field-style-loader",""],decls:0,vars:0,template:function(Ye,fe){},styles:["textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{padding:2px 0 !important;box-sizing:content-box !important;height:auto !important;overflow:hidden !important}textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0 !important;box-sizing:content-box !important;height:0 !important}@keyframes cdk-text-field-autofill-start{/*!*/}@keyframes cdk-text-field-autofill-end{/*!*/}.cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}\n"],encapsulation:2,changeDetection:0})}return nt})();const J={passive:!0};let De=(()=>{class nt{_platform=(0,u.WQX)(d.O);_ngZone=(0,u.WQX)(f.SKi);_renderer=(0,u.WQX)(f._9s).createRenderer(null,null);_styleLoader=(0,u.WQX)(B.l);_monitoredElements=new Map;constructor(){}monitor(oe){if(!this._platform.isBrowser)return L.w;this._styleLoader.load(ne);const Ye=(0,A.i8)(oe),fe=this._monitoredElements.get(Ye);if(fe)return fe.subject;const Qe=new C.B,gt="cdk-text-field-autofilled",Gt=cn=>{"cdk-text-field-autofill-start"!==cn.animationName||Ye.classList.contains(gt)?"cdk-text-field-autofill-end"===cn.animationName&&Ye.classList.contains(gt)&&(Ye.classList.remove(gt),this._ngZone.run(()=>Qe.next({target:cn.target,isAutofilled:!1}))):(Ye.classList.add(gt),this._ngZone.run(()=>Qe.next({target:cn.target,isAutofilled:!0})))},rt=this._ngZone.runOutsideAngular(()=>(Ye.classList.add("cdk-text-field-autofill-monitored"),this._renderer.listen(Ye,"animationstart",Gt,J)));return this._monitoredElements.set(Ye,{subject:Qe,unlisten:rt}),Qe}stopMonitoring(oe){const Ye=(0,A.i8)(oe),fe=this._monitoredElements.get(Ye);fe&&(fe.unlisten(),fe.subject.complete(),Ye.classList.remove("cdk-text-field-autofill-monitored"),Ye.classList.remove("cdk-text-field-autofilled"),this._monitoredElements.delete(Ye))}ngOnDestroy(){this._monitoredElements.forEach((oe,Ye)=>this.stopMonitoring(Ye))}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275prov=u.jDH({token:nt,factory:nt.\u0275fac,providedIn:"root"})}return nt})(),_e=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275mod=f.$C({type:nt});static \u0275inj=u.G2t({})}return nt})();var he=l(9295),Dt=l(7705),lt=l(9726),Le=l(9417),te=l(8010),ie=l(9588),P=l(2709),F=l(9336),ve=l(1228),H=l(2466);const Ke=["button","checkbox","file","hidden","image","radio","range","reset","submit"],Vt=new u.nKC("MAT_INPUT_CONFIG");let St=(()=>{class nt{_elementRef=(0,u.WQX)(f.aKT);_platform=(0,u.WQX)(d.O);ngControl=(0,u.WQX)(Le.vO,{optional:!0,self:!0});_autofillMonitor=(0,u.WQX)(De);_ngZone=(0,u.WQX)(f.SKi);_formField=(0,u.WQX)(ie.xb,{optional:!0});_renderer=(0,u.WQX)(f.sFG);_uid=(0,u.WQX)(lt.g).getId("mat-input-");_previousNativeValue;_inputValueAccessor;_signalBasedValueAccessor;_previousPlaceholder;_errorStateTracker;_config=(0,u.WQX)(Vt,{optional:!0});_cleanupIosKeyup;_cleanupWebkitWheel;_isServer;_isNativeSelect;_isTextarea;_isInFormField;focused=!1;stateChanges=new C.B;controlType="mat-input";autofilled=!1;get disabled(){return this._disabled}set disabled(oe){this._disabled=(0,i.he)(oe),this.focused&&(this.focused=!1,this.stateChanges.next())}_disabled=!1;get id(){return this._id}set id(oe){this._id=oe||this._uid}_id;placeholder;name;get required(){return this._required??this.ngControl?.control?.hasValidator(Le.k0.required)??!1}set required(oe){this._required=(0,i.he)(oe)}_required;get type(){return this._type}set type(oe){this._type=oe||"text",this._validateType(),!this._isTextarea&&O().has(this._type)&&(this._elementRef.nativeElement.type=this._type)}_type="text";get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(oe){this._errorStateTracker.matcher=oe}userAriaDescribedBy;get value(){return this._signalBasedValueAccessor?this._signalBasedValueAccessor.value():this._inputValueAccessor.value}set value(oe){oe!==this.value&&(this._signalBasedValueAccessor?this._signalBasedValueAccessor.value.set(oe):this._inputValueAccessor.value=oe,this.stateChanges.next())}get readonly(){return this._readonly}set readonly(oe){this._readonly=(0,i.he)(oe)}_readonly=!1;disabledInteractive;get errorState(){return this._errorStateTracker.errorState}set errorState(oe){this._errorStateTracker.errorState=oe}_neverEmptyInputTypes=["date","datetime","datetime-local","month","time","week"].filter(oe=>O().has(oe));constructor(){const oe=(0,u.WQX)(Le.cV,{optional:!0}),Ye=(0,u.WQX)(Le.j4,{optional:!0}),fe=(0,u.WQX)(P.e),Qe=(0,u.WQX)(te.O,{optional:!0,self:!0}),gt=this._elementRef.nativeElement,Gt=gt.nodeName.toLowerCase();Qe?(0,u.Hps)(Qe.value)?this._signalBasedValueAccessor=Qe:this._inputValueAccessor=Qe:this._inputValueAccessor=gt,this._previousNativeValue=this.value,this.id=this.id,this._platform.IOS&&this._ngZone.runOutsideAngular(()=>{this._cleanupIosKeyup=this._renderer.listen(gt,"keyup",this._iOSKeyupListener)}),this._errorStateTracker=new F.X(fe,this.ngControl,Ye,oe,this.stateChanges),this._isServer=!this._platform.isBrowser,this._isNativeSelect="select"===Gt,this._isTextarea="textarea"===Gt,this._isInFormField=!!this._formField,this.disabledInteractive=this._config?.disabledInteractive||!1,this._isNativeSelect&&(this.controlType=gt.multiple?"mat-native-select-multiple":"mat-native-select"),this._signalBasedValueAccessor&&(0,he.QZ)(()=>{this._signalBasedValueAccessor.value(),this.stateChanges.next()})}ngAfterViewInit(){this._platform.isBrowser&&this._autofillMonitor.monitor(this._elementRef.nativeElement).subscribe(oe=>{this.autofilled=oe.isAutofilled,this.stateChanges.next()})}ngOnChanges(){this.stateChanges.next()}ngOnDestroy(){this.stateChanges.complete(),this._platform.isBrowser&&this._autofillMonitor.stopMonitoring(this._elementRef.nativeElement),this._cleanupIosKeyup?.(),this._cleanupWebkitWheel?.()}ngDoCheck(){this.ngControl&&(this.updateErrorState(),null!==this.ngControl.disabled&&this.ngControl.disabled!==this.disabled&&(this.disabled=this.ngControl.disabled,this.stateChanges.next())),this._dirtyCheckNativeValue(),this._dirtyCheckPlaceholder()}focus(oe){this._elementRef.nativeElement.focus(oe)}updateErrorState(){this._errorStateTracker.updateErrorState()}_focusChanged(oe){if(oe!==this.focused){if(!this._isNativeSelect&&oe&&this.disabled&&this.disabledInteractive){const Ye=this._elementRef.nativeElement;"number"===Ye.type?(Ye.type="text",Ye.setSelectionRange(0,0),Ye.type="number"):Ye.setSelectionRange(0,0)}this.focused=oe,this.stateChanges.next()}}_onInput(){}_dirtyCheckNativeValue(){const oe=this._elementRef.nativeElement.value;this._previousNativeValue!==oe&&(this._previousNativeValue=oe,this.stateChanges.next())}_dirtyCheckPlaceholder(){const oe=this._getPlaceholder();if(oe!==this._previousPlaceholder){const Ye=this._elementRef.nativeElement;this._previousPlaceholder=oe,oe?Ye.setAttribute("placeholder",oe):Ye.removeAttribute("placeholder")}}_getPlaceholder(){return this.placeholder||null}_validateType(){Ke.indexOf(this._type)}_isNeverEmpty(){return this._neverEmptyInputTypes.indexOf(this._type)>-1}_isBadInput(){let oe=this._elementRef.nativeElement.validity;return oe&&oe.badInput}get empty(){return!(this._isNeverEmpty()||this._elementRef.nativeElement.value||this._isBadInput()||this.autofilled)}get shouldLabelFloat(){if(this._isNativeSelect){const oe=this._elementRef.nativeElement,Ye=oe.options[0];return this.focused||oe.multiple||!this.empty||!!(oe.selectedIndex>-1&&Ye&&Ye.label)}return this.focused&&!this.disabled||!this.empty}get describedByIds(){return this._elementRef.nativeElement.getAttribute("aria-describedby")?.split(" ")||[]}setDescribedByIds(oe){const Ye=this._elementRef.nativeElement;oe.length?Ye.setAttribute("aria-describedby",oe.join(" ")):Ye.removeAttribute("aria-describedby")}onContainerClick(){this.focused||this.focus()}_isInlineSelect(){const oe=this._elementRef.nativeElement;return this._isNativeSelect&&(oe.multiple||oe.size>1)}_iOSKeyupListener=oe=>{const Ye=oe.target;!Ye.value&&0===Ye.selectionStart&&0===Ye.selectionEnd&&(Ye.setSelectionRange(1,1),Ye.setSelectionRange(0,0))};_getReadonlyAttribute(){return this._isNativeSelect?null:this.readonly||this.disabled&&this.disabledInteractive?"true":null}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275dir=f.FsC({type:nt,selectors:[["input","matInput",""],["textarea","matInput",""],["select","matNativeControl",""],["input","matNativeControl",""],["textarea","matNativeControl",""]],hostAttrs:[1,"mat-mdc-input-element"],hostVars:21,hostBindings:function(Ye,fe){1&Ye&&f.bIt("focus",function(){return fe._focusChanged(!0)})("blur",function(){return fe._focusChanged(!1)})("input",function(){return fe._onInput()}),2&Ye&&(f.Avn("id",fe.id)("disabled",fe.disabled&&!fe.disabledInteractive)("required",fe.required),f.BMQ("name",fe.name||null)("readonly",fe._getReadonlyAttribute())("aria-disabled",fe.disabled&&fe.disabledInteractive?"true":null)("aria-invalid",fe.empty&&fe.required?null:fe.errorState)("aria-required",fe.required)("id",fe.id),f.AVh("mat-input-server",fe._isServer)("mat-mdc-form-field-textarea-control",fe._isInFormField&&fe._isTextarea)("mat-mdc-form-field-input-control",fe._isInFormField)("mat-mdc-input-disabled-interactive",fe.disabledInteractive)("mdc-text-field__input",fe._isInFormField)("mat-mdc-native-select-inline",fe._isInlineSelect()))},inputs:{disabled:"disabled",id:"id",placeholder:"placeholder",name:"name",required:"required",type:"type",errorStateMatcher:"errorStateMatcher",userAriaDescribedBy:[0,"aria-describedby","userAriaDescribedBy"],value:"value",readonly:"readonly",disabledInteractive:[2,"disabledInteractive","disabledInteractive",Dt.L39]},exportAs:["matInput"],features:[f.Jv_([{provide:ie.qT,useExisting:nt}]),f.OA$]})}return nt})(),ot=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275mod=f.$C({type:nt});static \u0275inj=u.G2t({imports:[H.y,ve.R,ve.R,_e,H.y]})}return nt})()},3155(Zt,pe,l){"use strict";l.d(pe,{t:()=>T});var i=l(3664);const d=["mat-internal-form-field",""],v=["*"];let T=(()=>{class w{labelPosition;static \u0275fac=function(f){return new(f||w)};static \u0275cmp=i.VBU({type:w,selectors:[["div","mat-internal-form-field",""]],hostAttrs:[1,"mdc-form-field","mat-internal-form-field"],hostVars:2,hostBindings:function(f,u){2&f&&i.AVh("mdc-form-field--align-end","before"===u.labelPosition)},inputs:{labelPosition:"labelPosition"},attrs:d,ngContentSelectors:v,decls:1,vars:0,template:function(f,u){1&f&&(i.NAR(),i.SdG(0))},styles:[".mat-internal-form-field{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-flex;align-items:center;vertical-align:middle}.mat-internal-form-field>label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0;order:0}[dir=rtl] .mat-internal-form-field>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px}.mdc-form-field--align-end>label{margin-left:auto;margin-right:0;padding-left:0;padding-right:4px;order:-1}[dir=rtl] .mdc-form-field--align-end .mdc-form-field--align-end label{margin-left:0;margin-right:auto;padding-left:4px;padding-right:0}\n"],encapsulation:2,changeDetection:0})}return w})()},3902(Zt,pe,l){"use strict";l.d(pe,{Fg:()=>ee,YE:()=>pt,jt:()=>wt});var d=l(4085),v=l(7847),T=l(2615),w=l(3664),O=(l(7705),l(9842)),u=(l(4522),l(8968)),C=(l(1413),l(8359)),B=l(7786),A=l(2496),Pe=l(1804),le=l(2046),Ae=(l(2200),l(2318)),j=l(1997),ce=(l(4123),l(3869),l(7336),l(438),l(9417),l(6977),l(483)),be=l(2466),ne=l(6881);const J=["*"],Re=["unscopedContent"],Xe=["text"],_e=[[["","matListItemAvatar",""],["","matListItemIcon",""]],[["","matListItemTitle",""]],[["","matListItemLine",""]],"*",[["","matListItemMeta",""]],[["mat-divider"]]],he=["[matListItemAvatar],[matListItemIcon]","[matListItemTitle]","[matListItemLine]","*","[matListItemMeta]","mat-divider"],Ye=new T.nKC("ListOption");let fe=(()=>{class ye{_elementRef=(0,T.WQX)(w.aKT);constructor(){}static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=w.FsC({type:ye,selectors:[["","matListItemTitle",""]],hostAttrs:[1,"mat-mdc-list-item-title","mdc-list-item__primary-text"]})}return ye})(),Qe=(()=>{class ye{_elementRef=(0,T.WQX)(w.aKT);constructor(){}static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=w.FsC({type:ye,selectors:[["","matListItemLine",""]],hostAttrs:[1,"mat-mdc-list-item-line","mdc-list-item__secondary-text"]})}return ye})(),gt=(()=>{class ye{static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=w.FsC({type:ye,selectors:[["","matListItemMeta",""]],hostAttrs:[1,"mat-mdc-list-item-meta","mdc-list-item__end"]})}return ye})(),Gt=(()=>{class ye{_listOption=(0,T.WQX)(Ye,{optional:!0});constructor(){}_isAlignedAtStart(){return!this._listOption||"after"===this._listOption?._getTogglePosition()}static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=w.FsC({type:ye,hostVars:4,hostBindings:function(ge,N){2&ge&&w.AVh("mdc-list-item__start",N._isAlignedAtStart())("mdc-list-item__end",!N._isAlignedAtStart())}})}return ye})(),rt=(()=>{class ye extends Gt{static \u0275fac=(()=>{let Se;return function(N){return(Se||(Se=w.xGo(ye)))(N||ye)}})();static \u0275dir=w.FsC({type:ye,selectors:[["","matListItemAvatar",""]],hostAttrs:[1,"mat-mdc-list-item-avatar"],features:[w.Vt3]})}return ye})(),cn=(()=>{class ye extends Gt{static \u0275fac=(()=>{let Se;return function(N){return(Se||(Se=w.xGo(ye)))(N||ye)}})();static \u0275dir=w.FsC({type:ye,selectors:[["","matListItemIcon",""]],hostAttrs:[1,"mat-mdc-list-item-icon"],features:[w.Vt3]})}return ye})();const Ft=new T.nKC("MAT_LIST_CONFIG");let Sn=(()=>{class ye{_isNonInteractive=!0;get disableRipple(){return this._disableRipple}set disableRipple(Se){this._disableRipple=(0,d.he)(Se)}_disableRipple=!1;get disabled(){return this._disabled()}set disabled(Se){this._disabled.set((0,d.he)(Se))}_disabled=(0,T.vPA)(!1);_defaultOptions=(0,T.WQX)(Ft,{optional:!0});static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=w.FsC({type:ye,hostVars:1,hostBindings:function(ge,N){2&ge&&w.BMQ("aria-disabled",N.disabled)},inputs:{disableRipple:"disableRipple",disabled:"disabled"}})}return ye})(),Qn=(()=>{class ye{_elementRef=(0,T.WQX)(w.aKT);_ngZone=(0,T.WQX)(w.SKi);_listBase=(0,T.WQX)(Sn,{optional:!0});_platform=(0,T.WQX)(O.O);_hostElement;_isButtonElement;_noopAnimations=(0,Pe.Rc)();_avatars;_icons;set lines(Se){this._explicitLines=(0,v.OE)(Se,null),this._updateItemLines(!1)}_explicitLines=null;get disableRipple(){return this.disabled||this._disableRipple||this._noopAnimations||!!this._listBase?.disableRipple}set disableRipple(Se){this._disableRipple=(0,d.he)(Se)}_disableRipple=!1;get disabled(){return this._disabled()||!!this._listBase?.disabled}set disabled(Se){this._disabled.set((0,d.he)(Se))}_disabled=(0,T.vPA)(!1);_subscriptions=new C.yU;_rippleRenderer=null;_hasUnscopedTextContent=!1;rippleConfig;get rippleDisabled(){return this.disableRipple||!!this.rippleConfig.disabled}constructor(){(0,T.WQX)(u.l).load(le.A);const Se=(0,T.WQX)(A.$E,{optional:!0});this.rippleConfig=Se||{},this._hostElement=this._elementRef.nativeElement,this._isButtonElement="button"===this._hostElement.nodeName.toLowerCase(),this._listBase&&!this._listBase._isNonInteractive&&this._initInteractiveListItem(),this._isButtonElement&&!this._hostElement.hasAttribute("type")&&this._hostElement.setAttribute("type","button")}ngAfterViewInit(){this._monitorProjectedLinesAndTitle(),this._updateItemLines(!0)}ngOnDestroy(){this._subscriptions.unsubscribe(),null!==this._rippleRenderer&&this._rippleRenderer._removeTriggerEvents()}_hasIconOrAvatar(){return!(!this._avatars.length&&!this._icons.length)}_initInteractiveListItem(){this._hostElement.classList.add("mat-mdc-list-item-interactive"),this._rippleRenderer=new A.ug(this,this._ngZone,this._hostElement,this._platform,(0,T.WQX)(T.zZn)),this._rippleRenderer.setupTriggerEvents(this._hostElement)}_monitorProjectedLinesAndTitle(){this._ngZone.runOutsideAngular(()=>{this._subscriptions.add((0,B.h)(this._lines.changes,this._titles.changes).subscribe(()=>this._updateItemLines(!1)))})}_updateItemLines(Se){if(!this._lines||!this._titles||!this._unscopedContent)return;Se&&this._checkDomForUnscopedTextContent();const ge=this._explicitLines??this._inferLinesFromContent(),N=this._unscopedContent.nativeElement;if(this._hostElement.classList.toggle("mat-mdc-list-item-single-line",ge<=1),this._hostElement.classList.toggle("mdc-list-item--with-one-line",ge<=1),this._hostElement.classList.toggle("mdc-list-item--with-two-lines",2===ge),this._hostElement.classList.toggle("mdc-list-item--with-three-lines",3===ge),this._hasUnscopedTextContent){const Z=0===this._titles.length&&1===ge;N.classList.toggle("mdc-list-item__primary-text",Z),N.classList.toggle("mdc-list-item__secondary-text",!Z)}else N.classList.remove("mdc-list-item__primary-text"),N.classList.remove("mdc-list-item__secondary-text")}_inferLinesFromContent(){let Se=this._titles.length+this._lines.length;return this._hasUnscopedTextContent&&(Se+=1),Se}_checkDomForUnscopedTextContent(){this._hasUnscopedTextContent=Array.from(this._unscopedContent.nativeElement.childNodes).filter(Se=>Se.nodeType!==Se.COMMENT_NODE).some(Se=>!(!Se.textContent||!Se.textContent.trim()))}static \u0275fac=function(ge){return new(ge||ye)};static \u0275dir=w.FsC({type:ye,contentQueries:function(ge,N,Z){if(1&ge&&(w.wni(Z,rt,4),w.wni(Z,cn,4)),2&ge){let Me;w.mGM(Me=w.lsd())&&(N._avatars=Me),w.mGM(Me=w.lsd())&&(N._icons=Me)}},hostVars:4,hostBindings:function(ge,N){2&ge&&(w.BMQ("aria-disabled",N.disabled)("disabled",N._isButtonElement&&N.disabled||null),w.AVh("mdc-list-item--disabled",N.disabled))},inputs:{lines:"lines",disableRipple:"disableRipple",disabled:"disabled"}})}return ye})(),wt=(()=>{class ye extends Sn{static \u0275fac=(()=>{let Se;return function(N){return(Se||(Se=w.xGo(ye)))(N||ye)}})();static \u0275cmp=w.VBU({type:ye,selectors:[["mat-list"]],hostAttrs:[1,"mat-mdc-list","mat-mdc-list-base","mdc-list"],exportAs:["matList"],features:[w.Jv_([{provide:Sn,useExisting:ye}]),w.Vt3],ngContentSelectors:J,decls:1,vars:0,template:function(ge,N){1&ge&&(w.NAR(),w.SdG(0))},styles:['.mdc-list{margin:0;padding:8px 0;list-style-type:none}.mdc-list:focus{outline:none}.mdc-list-item{display:flex;position:relative;justify-content:flex-start;overflow:hidden;padding:0;align-items:stretch;cursor:pointer;padding-left:16px;padding-right:16px;background-color:var(--mat-list-list-item-container-color, transparent);border-radius:var(--mat-list-list-item-container-shape, var(--mat-sys-corner-none))}.mdc-list-item.mdc-list-item--selected{background-color:var(--mat-list-list-item-selected-container-color)}.mdc-list-item:focus{outline:0}.mdc-list-item.mdc-list-item--disabled{cursor:auto}.mdc-list-item.mdc-list-item--with-one-line{height:var(--mat-list-list-item-one-line-container-height, 48px)}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__start{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-one-line .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-two-lines{height:var(--mat-list-list-item-two-line-container-height, 64px)}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-two-lines .mdc-list-item__end{align-self:center;margin-top:0}.mdc-list-item.mdc-list-item--with-three-lines{height:var(--mat-list-list-item-three-line-container-height, 88px)}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__start{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:16px}.mdc-list-item.mdc-list-item--selected::before,.mdc-list-item.mdc-list-item--selected:focus::before,.mdc-list-item:not(.mdc-list-item--selected):focus::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;content:"";pointer-events:none}a.mdc-list-item{color:inherit;text-decoration:none}.mdc-list-item__start{fill:currentColor;flex-shrink:0;pointer-events:none}.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mat-list-list-item-leading-icon-color, var(--mat-sys-on-surface-variant));width:var(--mat-list-list-item-leading-icon-size, 24px);height:var(--mat-list-list-item-leading-icon-size, 24px);margin-left:16px;margin-right:32px}[dir=rtl] .mdc-list-item--with-leading-icon .mdc-list-item__start{margin-left:32px;margin-right:16px}.mdc-list-item--with-leading-icon:hover .mdc-list-item__start{color:var(--mat-list-list-item-hover-leading-icon-color)}.mdc-list-item--with-leading-avatar .mdc-list-item__start{width:var(--mat-list-list-item-leading-avatar-size, 40px);height:var(--mat-list-list-item-leading-avatar-size, 40px);margin-left:16px;margin-right:16px;border-radius:50%}.mdc-list-item--with-leading-avatar .mdc-list-item__start,[dir=rtl] .mdc-list-item--with-leading-avatar .mdc-list-item__start{margin-left:16px;margin-right:16px;border-radius:50%}.mdc-list-item__end{flex-shrink:0;pointer-events:none}.mdc-list-item--with-trailing-meta .mdc-list-item__end{font-family:var(--mat-list-list-item-trailing-supporting-text-font, var(--mat-sys-label-small-font));line-height:var(--mat-list-list-item-trailing-supporting-text-line-height, var(--mat-sys-label-small-line-height));font-size:var(--mat-list-list-item-trailing-supporting-text-size, var(--mat-sys-label-small-size));font-weight:var(--mat-list-list-item-trailing-supporting-text-weight, var(--mat-sys-label-small-weight));letter-spacing:var(--mat-list-list-item-trailing-supporting-text-tracking, var(--mat-sys-label-small-tracking))}.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mat-list-list-item-trailing-icon-color, var(--mat-sys-on-surface-variant));width:var(--mat-list-list-item-trailing-icon-size, 24px);height:var(--mat-list-list-item-trailing-icon-size, 24px)}.mdc-list-item--with-trailing-icon:hover .mdc-list-item__end{color:var(--mat-list-list-item-hover-trailing-icon-color)}.mdc-list-item.mdc-list-item--with-trailing-meta .mdc-list-item__end{color:var(--mat-list-list-item-trailing-supporting-text-color, var(--mat-sys-on-surface-variant))}.mdc-list-item--selected.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mat-list-list-item-selected-trailing-icon-color, var(--mat-sys-primary))}.mdc-list-item__content{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;align-self:center;flex:1;pointer-events:none}.mdc-list-item--with-two-lines .mdc-list-item__content,.mdc-list-item--with-three-lines .mdc-list-item__content{align-self:stretch}.mdc-list-item__primary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:var(--mat-list-list-item-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-list-list-item-label-text-font, var(--mat-sys-body-large-font));line-height:var(--mat-list-list-item-label-text-line-height, var(--mat-sys-body-large-line-height));font-size:var(--mat-list-list-item-label-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-list-list-item-label-text-weight, var(--mat-sys-body-large-weight));letter-spacing:var(--mat-list-list-item-label-text-tracking, var(--mat-sys-body-large-tracking))}.mdc-list-item:hover .mdc-list-item__primary-text{color:var(--mat-list-list-item-hover-label-text-color, var(--mat-sys-on-surface))}.mdc-list-item:focus .mdc-list-item__primary-text{color:var(--mat-list-list-item-focus-label-text-color, var(--mat-sys-on-surface))}.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-three-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-three-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item__secondary-text{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:block;margin-top:0;color:var(--mat-list-list-item-supporting-text-color, var(--mat-sys-on-surface-variant));font-family:var(--mat-list-list-item-supporting-text-font, var(--mat-sys-body-medium-font));line-height:var(--mat-list-list-item-supporting-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-list-list-item-supporting-text-size, var(--mat-sys-body-medium-size));font-weight:var(--mat-list-list-item-supporting-text-weight, var(--mat-sys-body-medium-weight));letter-spacing:var(--mat-list-list-item-supporting-text-tracking, var(--mat-sys-body-medium-tracking))}.mdc-list-item__secondary-text::before{display:inline-block;width:0;height:20px;content:"";vertical-align:0}.mdc-list-item--with-three-lines .mdc-list-item__secondary-text{white-space:normal;line-height:20px}.mdc-list-item--with-overline .mdc-list-item__secondary-text{white-space:nowrap;line-height:auto}.mdc-list-item--with-leading-radio.mdc-list-item,.mdc-list-item--with-leading-checkbox.mdc-list-item,.mdc-list-item--with-leading-icon.mdc-list-item,.mdc-list-item--with-leading-avatar.mdc-list-item{padding-left:0;padding-right:16px}[dir=rtl] .mdc-list-item--with-leading-radio.mdc-list-item,[dir=rtl] .mdc-list-item--with-leading-checkbox.mdc-list-item,[dir=rtl] .mdc-list-item--with-leading-icon.mdc-list-item,[dir=rtl] .mdc-list-item--with-leading-avatar.mdc-list-item{padding-left:16px;padding-right:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text{display:block;margin-top:0;line-height:normal;margin-bottom:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines .mdc-list-item__primary-text::after{display:inline-block;width:0;height:20px;content:"";vertical-align:-20px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end{display:block;margin-top:0;line-height:normal}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before,.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before,.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines.mdc-list-item--with-trailing-meta .mdc-list-item__end::before{display:inline-block;width:0;height:32px;content:"";vertical-align:0}.mdc-list-item--with-trailing-icon.mdc-list-item,[dir=rtl] .mdc-list-item--with-trailing-icon.mdc-list-item{padding-left:0;padding-right:0}.mdc-list-item--with-trailing-icon .mdc-list-item__end{margin-left:16px;margin-right:16px}.mdc-list-item--with-trailing-meta.mdc-list-item{padding-left:16px;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-meta.mdc-list-item{padding-left:0;padding-right:16px}.mdc-list-item--with-trailing-meta .mdc-list-item__end{-webkit-user-select:none;user-select:none;margin-left:28px;margin-right:16px}[dir=rtl] .mdc-list-item--with-trailing-meta .mdc-list-item__end{margin-left:16px;margin-right:28px}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end,.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end{display:block;line-height:normal;align-self:flex-start;margin-top:0}.mdc-list-item--with-trailing-meta.mdc-list-item--with-three-lines .mdc-list-item__end::before,.mdc-list-item--with-trailing-meta.mdc-list-item--with-two-lines .mdc-list-item__end::before{display:inline-block;width:0;height:28px;content:"";vertical-align:0}.mdc-list-item--with-leading-radio .mdc-list-item__start,.mdc-list-item--with-leading-checkbox .mdc-list-item__start{margin-left:8px;margin-right:24px}[dir=rtl] .mdc-list-item--with-leading-radio .mdc-list-item__start,[dir=rtl] .mdc-list-item--with-leading-checkbox .mdc-list-item__start{margin-left:24px;margin-right:8px}.mdc-list-item--with-leading-radio.mdc-list-item--with-two-lines .mdc-list-item__start,.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines .mdc-list-item__start{align-self:flex-start;margin-top:8px}.mdc-list-item--with-trailing-radio.mdc-list-item,.mdc-list-item--with-trailing-checkbox.mdc-list-item{padding-left:16px;padding-right:0}[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item,[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item{padding-left:0;padding-right:16px}.mdc-list-item--with-trailing-radio.mdc-list-item--with-leading-icon,.mdc-list-item--with-trailing-radio.mdc-list-item--with-leading-avatar,.mdc-list-item--with-trailing-checkbox.mdc-list-item--with-leading-icon,.mdc-list-item--with-trailing-checkbox.mdc-list-item--with-leading-avatar{padding-left:0}[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item--with-leading-icon,[dir=rtl] .mdc-list-item--with-trailing-radio.mdc-list-item--with-leading-avatar,[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item--with-leading-icon,[dir=rtl] .mdc-list-item--with-trailing-checkbox.mdc-list-item--with-leading-avatar{padding-right:0}.mdc-list-item--with-trailing-radio .mdc-list-item__end,.mdc-list-item--with-trailing-checkbox .mdc-list-item__end{margin-left:24px;margin-right:8px}[dir=rtl] .mdc-list-item--with-trailing-radio .mdc-list-item__end,[dir=rtl] .mdc-list-item--with-trailing-checkbox .mdc-list-item__end{margin-left:8px;margin-right:24px}.mdc-list-item--with-trailing-radio.mdc-list-item--with-three-lines .mdc-list-item__end,.mdc-list-item--with-trailing-checkbox.mdc-list-item--with-three-lines .mdc-list-item__end{align-self:flex-start;margin-top:8px}.mdc-list-group__subheader{margin:.75rem 16px}.mdc-list-item--disabled .mdc-list-item__start,.mdc-list-item--disabled .mdc-list-item__content,.mdc-list-item--disabled .mdc-list-item__end{opacity:1}.mdc-list-item--disabled .mdc-list-item__primary-text,.mdc-list-item--disabled .mdc-list-item__secondary-text{opacity:var(--mat-list-list-item-disabled-label-text-opacity, 0.3)}.mdc-list-item--disabled.mdc-list-item--with-leading-icon .mdc-list-item__start{color:var(--mat-list-list-item-disabled-leading-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-disabled-leading-icon-opacity, 0.38)}.mdc-list-item--disabled.mdc-list-item--with-trailing-icon .mdc-list-item__end{color:var(--mat-list-list-item-disabled-trailing-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-disabled-trailing-icon-opacity, 0.38)}.mat-mdc-list-item.mat-mdc-list-item-both-leading-and-trailing,[dir=rtl] .mat-mdc-list-item.mat-mdc-list-item-both-leading-and-trailing{padding-left:0;padding-right:0}.mdc-list-item.mdc-list-item--disabled .mdc-list-item__primary-text{color:var(--mat-list-list-item-disabled-label-text-color, var(--mat-sys-on-surface))}.mdc-list-item:hover::before{background-color:var(--mat-list-list-item-hover-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mdc-list-item.mdc-list-item--disabled::before{background-color:var(--mat-list-list-item-disabled-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-disabled-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-list-item:focus::before{background-color:var(--mat-list-list-item-focus-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-list-list-item-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-list-item--disabled .mdc-radio,.mdc-list-item--disabled .mdc-checkbox{opacity:var(--mat-list-list-item-disabled-label-text-opacity, 0.3)}.mdc-list-item--with-leading-avatar .mat-mdc-list-item-avatar{border-radius:var(--mat-list-list-item-leading-avatar-shape, var(--mat-sys-corner-full));background-color:var(--mat-list-list-item-leading-avatar-color, var(--mat-sys-primary-container))}.mat-mdc-list-item-icon{font-size:var(--mat-list-list-item-leading-icon-size, 24px)}@media(forced-colors: active){a.mdc-list-item--activated::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}a.mdc-list-item--activated [dir=rtl]::after{right:auto;left:16px}}.mat-mdc-list-base{display:block}.mat-mdc-list-base .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item__end,.mat-mdc-list-base .mdc-list-item__content{pointer-events:auto}.mat-mdc-list-item,.mat-mdc-list-option{width:100%;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-list-item:not(.mat-mdc-list-item-interactive),.mat-mdc-list-option:not(.mat-mdc-list-item-interactive){cursor:default}.mat-mdc-list-item .mat-divider-inset,.mat-mdc-list-option .mat-divider-inset{position:absolute;left:0;right:0;bottom:0}.mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,.mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-left:72px}[dir=rtl] .mat-mdc-list-item .mat-mdc-list-item-avatar~.mat-divider-inset,[dir=rtl] .mat-mdc-list-option .mat-mdc-list-item-avatar~.mat-divider-inset{margin-right:72px}.mat-mdc-list-item-interactive::before{top:0;left:0;right:0;bottom:0;position:absolute;content:"";opacity:0;pointer-events:none;border-radius:inherit}.mat-mdc-list-item>.mat-focus-indicator{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-list-item:focus>.mat-focus-indicator::before{content:""}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-line.mdc-list-item__secondary-text{white-space:nowrap;line-height:normal}.mat-mdc-list-item.mdc-list-item--with-three-lines .mat-mdc-list-item-unscoped-content.mdc-list-item__secondary-text{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}mat-action-list button{background:none;color:inherit;border:none;font:inherit;outline:inherit;-webkit-tap-highlight-color:rgba(0,0,0,0);text-align:start}mat-action-list button::-moz-focus-inner{border:0}.mdc-list-item--with-leading-icon .mdc-list-item__start{margin-inline-start:var(--mat-list-list-item-leading-icon-start-space, 16px);margin-inline-end:var(--mat-list-list-item-leading-icon-end-space, 16px)}.mat-mdc-nav-list .mat-mdc-list-item{border-radius:var(--mat-list-active-indicator-shape, var(--mat-sys-corner-full));--mat-focus-indicator-border-radius: var(--mat-list-active-indicator-shape, var(--mat-sys-corner-full))}.mat-mdc-nav-list .mat-mdc-list-item.mdc-list-item--activated{background-color:var(--mat-list-active-indicator-color, var(--mat-sys-secondary-container))}\n'],encapsulation:2,changeDetection:0})}return ye})(),pt=(()=>{class ye extends Qn{_lines;_titles;_meta;_unscopedContent;_itemText;get activated(){return this._activated}set activated(Se){this._activated=(0,d.he)(Se)}_activated=!1;_getAriaCurrent(){return"A"===this._hostElement.nodeName&&this._activated?"page":null}_hasBothLeadingAndTrailing(){return 0!==this._meta.length&&(0!==this._avatars.length||0!==this._icons.length)}static \u0275fac=(()=>{let Se;return function(N){return(Se||(Se=w.xGo(ye)))(N||ye)}})();static \u0275cmp=w.VBU({type:ye,selectors:[["mat-list-item"],["a","mat-list-item",""],["button","mat-list-item",""]],contentQueries:function(ge,N,Z){if(1&ge&&(w.wni(Z,Qe,5),w.wni(Z,fe,5),w.wni(Z,gt,5)),2&ge){let Me;w.mGM(Me=w.lsd())&&(N._lines=Me),w.mGM(Me=w.lsd())&&(N._titles=Me),w.mGM(Me=w.lsd())&&(N._meta=Me)}},viewQuery:function(ge,N){if(1&ge&&(w.GBs(Re,5),w.GBs(Xe,5)),2&ge){let Z;w.mGM(Z=w.lsd())&&(N._unscopedContent=Z.first),w.mGM(Z=w.lsd())&&(N._itemText=Z.first)}},hostAttrs:[1,"mat-mdc-list-item","mdc-list-item"],hostVars:13,hostBindings:function(ge,N){2&ge&&(w.BMQ("aria-current",N._getAriaCurrent()),w.AVh("mdc-list-item--activated",N.activated)("mdc-list-item--with-leading-avatar",0!==N._avatars.length)("mdc-list-item--with-leading-icon",0!==N._icons.length)("mdc-list-item--with-trailing-meta",0!==N._meta.length)("mat-mdc-list-item-both-leading-and-trailing",N._hasBothLeadingAndTrailing())("_mat-animation-noopable",N._noopAnimations))},inputs:{activated:"activated"},exportAs:["matListItem"],features:[w.Vt3],ngContentSelectors:he,decls:10,vars:0,consts:[["unscopedContent",""],[1,"mdc-list-item__content"],[1,"mat-mdc-list-item-unscoped-content",3,"cdkObserveContent"],[1,"mat-focus-indicator"]],template:function(ge,N){if(1&ge){const Z=w.RV6();w.NAR(_e),w.SdG(0),w.j41(1,"span",1),w.SdG(2,1),w.SdG(3,2),w.j41(4,"span",2,0),w.bIt("cdkObserveContent",function(){return T.eBV(Z),T.Njj(N._updateItemLines(!0))}),w.SdG(6,3),w.k0s()(),w.SdG(7,4),w.SdG(8,5),w.nrm(9,"div",3)}},dependencies:[Ae.Wv],encapsulation:2,changeDetection:0})}return ye})(),ee=(()=>{class ye{static \u0275fac=function(ge){return new(ge||ye)};static \u0275mod=w.$C({type:ye});static \u0275inj=T.G2t({imports:[Ae.w5,be.y,ne.p,ce.O,j.w]})}return ye})()},9115(Zt,pe,l){"use strict";l.d(pe,{Cn:()=>vt,Cp:()=>kn,fb:()=>gt,kk:()=>wt});var W=l(2615),G=l(3664),re=l(7705),xe=l(6838),Ee=l(9726),V=l(4123),ce=l(5735),be=l(7336),ne=l(438),J=l(1413),De=l(8359),Re=l(7786),Xe=l(7673),_e=l(5964),he=l(9172),Dt=l(5558),lt=l(6697),Le=l(6977),te=l(8968),ie=l(2046),P=l(2496),F=l(6939),ve=l(1804),H=l(1577),$=l(9338),Ke=l(5718),Vt=l(6881),St=l(2466);const ot=["mat-menu-item",""],nt=[[["mat-icon"],["","matMenuItemIcon",""]],"*"],ht=["mat-icon, [matMenuItemIcon]","*"];function oe(Se,ge){1&Se&&(W.qSk(),G.j41(0,"svg",2),G.nrm(1,"polygon",3),G.k0s())}const Ye=["*"];function fe(Se,ge){if(1&Se){const N=G.RV6();G.rj2(0,"div",0),G.VwU("click",function(){W.eBV(N);const Me=G.XpG();return W.Njj(Me.closed.emit("click"))})("animationstart",function(Me){W.eBV(N);const at=G.XpG();return W.Njj(at._onAnimationStart(Me.animationName))})("animationend",function(Me){W.eBV(N);const at=G.XpG();return W.Njj(at._onAnimationDone(Me.animationName))})("animationcancel",function(Me){W.eBV(N);const at=G.XpG();return W.Njj(at._onAnimationDone(Me.animationName))}),G.rj2(1,"div",1),G.SdG(2),G.eux()()}if(2&Se){const N=G.XpG();G.HbH(N._classList),G.AVh("mat-menu-panel-animations-disabled",N._animationsDisabled)("mat-menu-panel-exit-animation","void"===N._panelAnimationState)("mat-menu-panel-animating",N._isAnimating()),G.Avn("id",N.panelId),G.BMQ("aria-label",N.ariaLabel||null)("aria-labelledby",N.ariaLabelledby||null)("aria-describedby",N.ariaDescribedby||null)}}const Qe=new W.nKC("MAT_MENU_PANEL");let gt=(()=>{class Se{_elementRef=(0,W.WQX)(G.aKT);_document=(0,W.WQX)(W.qQL);_focusMonitor=(0,W.WQX)(xe.FN);_parentMenu=(0,W.WQX)(Qe,{optional:!0});_changeDetectorRef=(0,W.WQX)(re.gRc);role="menuitem";disabled=!1;disableRipple=!1;_hovered=new J.B;_focused=new J.B;_highlighted=!1;_triggersSubmenu=!1;constructor(){(0,W.WQX)(te.l).load(ie.A),this._parentMenu?.addItem?.(this)}focus(N,Z){this._focusMonitor&&N?this._focusMonitor.focusVia(this._getHostElement(),N,Z):this._getHostElement().focus(Z),this._focused.next(this)}ngAfterViewInit(){this._focusMonitor&&this._focusMonitor.monitor(this._elementRef,!1)}ngOnDestroy(){this._focusMonitor&&this._focusMonitor.stopMonitoring(this._elementRef),this._parentMenu&&this._parentMenu.removeItem&&this._parentMenu.removeItem(this),this._hovered.complete(),this._focused.complete()}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._elementRef.nativeElement}_checkDisabled(N){this.disabled&&(N.preventDefault(),N.stopPropagation())}_handleMouseEnter(){this._hovered.next(this)}getLabel(){const N=this._elementRef.nativeElement.cloneNode(!0),Z=N.querySelectorAll("mat-icon, .material-icons");for(let Me=0;Me{class Se{_elementRef=(0,W.WQX)(G.aKT);_changeDetectorRef=(0,W.WQX)(re.gRc);_injector=(0,W.WQX)(W.zZn);_keyManager;_xPosition;_yPosition;_firstItemFocusRef;_exitFallbackTimeout;_animationsDisabled=(0,ve.Rc)();_allItems;_directDescendantItems=new G.rOR;_classList={};_panelAnimationState="void";_animationDone=new J.B;_isAnimating=(0,W.vPA)(!1);parentMenu;direction;overlayPanelClass;backdropClass;ariaLabel;ariaLabelledby;ariaDescribedby;get xPosition(){return this._xPosition}set xPosition(N){this._xPosition=N,this.setPositionClasses()}get yPosition(){return this._yPosition}set yPosition(N){this._yPosition=N,this.setPositionClasses()}templateRef;items;lazyContent;overlapTrigger;hasBackdrop;set panelClass(N){const Z=this._previousPanelClass,Me={...this._classList};Z&&Z.length&&Z.split(" ").forEach(at=>{Me[at]=!1}),this._previousPanelClass=N,N&&N.length&&(N.split(" ").forEach(at=>{Me[at]=!0}),this._elementRef.nativeElement.className=""),this._classList=Me}_previousPanelClass;get classList(){return this.panelClass}set classList(N){this.panelClass=N}closed=new G.bkB;close=this.closed;panelId=(0,W.WQX)(Ee.g).getId("mat-menu-panel-");constructor(){const N=(0,W.WQX)(Qn);this.overlayPanelClass=N.overlayPanelClass||"",this._xPosition=N.xPosition,this._yPosition=N.yPosition,this.backdropClass=N.backdropClass,this.overlapTrigger=N.overlapTrigger,this.hasBackdrop=N.hasBackdrop}ngOnInit(){this.setPositionClasses()}ngAfterContentInit(){this._updateDirectDescendants(),this._keyManager=new V.B(this._directDescendantItems).withWrap().withTypeAhead().withHomeAndEnd(),this._keyManager.tabOut.subscribe(()=>this.closed.emit("tab")),this._directDescendantItems.changes.pipe((0,he.Z)(this._directDescendantItems),(0,Dt.n)(N=>(0,Re.h)(...N.map(Z=>Z._focused)))).subscribe(N=>this._keyManager.updateActiveItem(N)),this._directDescendantItems.changes.subscribe(N=>{const Z=this._keyManager;if("enter"===this._panelAnimationState&&Z.activeItem?._hasFocus()){const Me=N.toArray(),at=Math.max(0,Math.min(Me.length-1,Z.activeItemIndex||0));Me[at]&&!Me[at].disabled?Z.setActiveItem(at):Z.setNextItemActive()}})}ngOnDestroy(){this._keyManager?.destroy(),this._directDescendantItems.destroy(),this.closed.complete(),this._firstItemFocusRef?.destroy(),clearTimeout(this._exitFallbackTimeout)}_hovered(){return this._directDescendantItems.changes.pipe((0,he.Z)(this._directDescendantItems),(0,Dt.n)(Z=>(0,Re.h)(...Z.map(Me=>Me._hovered))))}addItem(N){}removeItem(N){}_handleKeydown(N){const Z=N.keyCode,Me=this._keyManager;switch(Z){case ne._f:(0,be.rp)(N)||(N.preventDefault(),this.closed.emit("keydown"));break;case ne.UQ:this.parentMenu&&"ltr"===this.direction&&this.closed.emit("keydown");break;case ne.LE:this.parentMenu&&"rtl"===this.direction&&this.closed.emit("keydown");break;default:return(Z===ne.i7||Z===ne.n6)&&Me.setFocusOrigin("keyboard"),void Me.onKeydown(N)}}focusFirstItem(N="program"){this._firstItemFocusRef?.destroy(),this._firstItemFocusRef=(0,G.mal)(()=>{const Z=this._resolvePanel();if(!Z||!Z.contains(document.activeElement)){const Me=this._keyManager;Me.setFocusOrigin(N).setFirstItemActive(),!Me.activeItem&&Z&&Z.focus()}},{injector:this._injector})}resetActiveItem(){this._keyManager.setActiveItem(-1)}setElevation(N){}setPositionClasses(N=this.xPosition,Z=this.yPosition){this._classList={...this._classList,"mat-menu-before":"before"===N,"mat-menu-after":"after"===N,"mat-menu-above":"above"===Z,"mat-menu-below":"below"===Z},this._changeDetectorRef.markForCheck()}_onAnimationDone(N){const Z=N===Ue;(Z||N===jt)&&(Z&&(clearTimeout(this._exitFallbackTimeout),this._exitFallbackTimeout=void 0),this._animationDone.next(Z?"void":"enter"),this._isAnimating.set(!1))}_onAnimationStart(N){(N===jt||N===Ue)&&this._isAnimating.set(!0)}_setIsOpen(N){if(this._panelAnimationState=N?"enter":"void",N){if(0===this._keyManager.activeItemIndex){const Z=this._resolvePanel();Z&&(Z.scrollTop=0)}}else this._animationsDisabled||(this._exitFallbackTimeout=setTimeout(()=>this._onAnimationDone(Ue),200));this._animationsDisabled&&setTimeout(()=>{this._onAnimationDone(N?jt:Ue)}),this._changeDetectorRef.markForCheck()}_updateDirectDescendants(){this._allItems.changes.pipe((0,he.Z)(this._allItems)).subscribe(N=>{this._directDescendantItems.reset(N.filter(Z=>Z._parentMenu===this)),this._directDescendantItems.notifyOnChanges()})}_resolvePanel(){let N=null;return this._directDescendantItems.length&&(N=this._directDescendantItems.first._getHostElement().closest('[role="menu"]')),N}static \u0275fac=function(Z){return new(Z||Se)};static \u0275cmp=G.VBU({type:Se,selectors:[["mat-menu"]],contentQueries:function(Z,Me,at){if(1&Z&&(G.wni(at,Ft,5),G.wni(at,gt,5),G.wni(at,gt,4)),2&Z){let qe;G.mGM(qe=G.lsd())&&(Me.lazyContent=qe.first),G.mGM(qe=G.lsd())&&(Me._allItems=qe),G.mGM(qe=G.lsd())&&(Me.items=qe)}},viewQuery:function(Z,Me){if(1&Z&&G.GBs(G.C4Q,5),2&Z){let at;G.mGM(at=G.lsd())&&(Me.templateRef=at.first)}},hostVars:3,hostBindings:function(Z,Me){2&Z&&G.BMQ("aria-label",null)("aria-labelledby",null)("aria-describedby",null)},inputs:{backdropClass:"backdropClass",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],xPosition:"xPosition",yPosition:"yPosition",overlapTrigger:[2,"overlapTrigger","overlapTrigger",re.L39],hasBackdrop:[2,"hasBackdrop","hasBackdrop",N=>null==N?null:(0,re.L39)(N)],panelClass:[0,"class","panelClass"],classList:"classList"},outputs:{closed:"closed",close:"close"},exportAs:["matMenu"],features:[G.Jv_([{provide:Qe,useExisting:Se}])],ngContentSelectors:Ye,decls:1,vars:0,consts:[["tabindex","-1","role","menu",1,"mat-mdc-menu-panel",3,"click","animationstart","animationend","animationcancel","id"],[1,"mat-mdc-menu-content"]],template:function(Z,Me){1&Z&&(G.NAR(),G.PeT(0,fe,3,12,"ng-template"))},styles:['mat-menu{display:none}.mat-mdc-menu-content{margin:0;padding:8px 0;outline:0}.mat-mdc-menu-content,.mat-mdc-menu-content .mat-mdc-menu-item .mat-mdc-menu-item-text{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;flex:1;white-space:normal;font-family:var(--mat-menu-item-label-text-font, var(--mat-sys-label-large-font));line-height:var(--mat-menu-item-label-text-line-height, var(--mat-sys-label-large-line-height));font-size:var(--mat-menu-item-label-text-size, var(--mat-sys-label-large-size));letter-spacing:var(--mat-menu-item-label-text-tracking, var(--mat-sys-label-large-tracking));font-weight:var(--mat-menu-item-label-text-weight, var(--mat-sys-label-large-weight))}@keyframes _mat-menu-enter{from{opacity:0;transform:scale(0.8)}to{opacity:1;transform:none}}@keyframes _mat-menu-exit{from{opacity:1}to{opacity:0}}.mat-mdc-menu-panel{min-width:112px;max-width:280px;overflow:auto;box-sizing:border-box;outline:0;animation:_mat-menu-enter 120ms cubic-bezier(0, 0, 0.2, 1);border-radius:var(--mat-menu-container-shape, var(--mat-sys-corner-extra-small));background-color:var(--mat-menu-container-color, var(--mat-sys-surface-container));box-shadow:var(--mat-menu-container-elevation-shadow, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12));will-change:transform,opacity}.mat-mdc-menu-panel.mat-menu-panel-exit-animation{animation:_mat-menu-exit 100ms 25ms linear forwards}.mat-mdc-menu-panel.mat-menu-panel-animations-disabled{animation:none}.mat-mdc-menu-panel.mat-menu-panel-animating{pointer-events:none}.mat-mdc-menu-panel.mat-menu-panel-animating:has(.mat-mdc-menu-content:empty){display:none}@media(forced-colors: active){.mat-mdc-menu-panel{outline:solid 1px}}.mat-mdc-menu-panel .mat-divider{color:var(--mat-menu-divider-color, var(--mat-sys-surface-variant));margin-bottom:var(--mat-menu-divider-bottom-spacing, 8px);margin-top:var(--mat-menu-divider-top-spacing, 8px)}.mat-mdc-menu-item{display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;padding:0;cursor:pointer;width:100%;text-align:left;box-sizing:border-box;color:inherit;font-size:inherit;background:none;text-decoration:none;margin:0;min-height:48px;padding-left:var(--mat-menu-item-leading-spacing, 12px);padding-right:var(--mat-menu-item-trailing-spacing, 12px);-webkit-user-select:none;user-select:none;cursor:pointer;outline:none;border:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-menu-item::-moz-focus-inner{border:0}[dir=rtl] .mat-mdc-menu-item{padding-left:var(--mat-menu-item-trailing-spacing, 12px);padding-right:var(--mat-menu-item-leading-spacing, 12px)}.mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]){padding-left:var(--mat-menu-item-with-icon-leading-spacing, 12px);padding-right:var(--mat-menu-item-with-icon-trailing-spacing, 12px)}[dir=rtl] .mat-mdc-menu-item:has(.material-icons,mat-icon,[matButtonIcon]){padding-left:var(--mat-menu-item-with-icon-trailing-spacing, 12px);padding-right:var(--mat-menu-item-with-icon-leading-spacing, 12px)}.mat-mdc-menu-item,.mat-mdc-menu-item:visited,.mat-mdc-menu-item:link{color:var(--mat-menu-item-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-menu-item .mat-icon-no-color,.mat-mdc-menu-item .mat-mdc-menu-submenu-icon{color:var(--mat-menu-item-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-menu-item[disabled]{cursor:default;opacity:.38}.mat-mdc-menu-item[disabled]::after{display:block;position:absolute;content:"";top:0;left:0;bottom:0;right:0}.mat-mdc-menu-item:focus{outline:0}.mat-mdc-menu-item .mat-icon{flex-shrink:0;margin-right:var(--mat-menu-item-spacing, 12px);height:var(--mat-menu-item-icon-size, 24px);width:var(--mat-menu-item-icon-size, 24px)}[dir=rtl] .mat-mdc-menu-item{text-align:right}[dir=rtl] .mat-mdc-menu-item .mat-icon{margin-right:0;margin-left:var(--mat-menu-item-spacing, 12px)}.mat-mdc-menu-item:not([disabled]):hover{background-color:var(--mat-menu-item-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent))}.mat-mdc-menu-item:not([disabled]).cdk-program-focused,.mat-mdc-menu-item:not([disabled]).cdk-keyboard-focused,.mat-mdc-menu-item:not([disabled]).mat-mdc-menu-item-highlighted{background-color:var(--mat-menu-item-focus-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent))}@media(forced-colors: active){.mat-mdc-menu-item{margin-top:1px}}.mat-mdc-menu-submenu-icon{width:var(--mat-menu-item-icon-size, 24px);height:10px;fill:currentColor;padding-left:var(--mat-menu-item-spacing, 12px)}[dir=rtl] .mat-mdc-menu-submenu-icon{padding-right:var(--mat-menu-item-spacing, 12px);padding-left:0}[dir=rtl] .mat-mdc-menu-submenu-icon polygon{transform:scaleX(-1);transform-origin:center}@media(forced-colors: active){.mat-mdc-menu-submenu-icon{fill:CanvasText}}.mat-mdc-menu-item .mat-mdc-menu-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}\n'],encapsulation:2,changeDetection:0})}return Se})();const pt=new W.nKC("mat-menu-scroll-strategy",{providedIn:"root",factory:()=>{const Se=(0,W.WQX)(W.zZn);return()=>(0,$.RH)(Se)}}),gn={provide:pt,deps:[],useFactory:function Pt(Se){const ge=(0,W.WQX)(W.zZn);return()=>(0,$.RH)(ge)}},vi=new WeakMap;let Ni=(()=>{class Se{_canHaveBackdrop;_element=(0,W.WQX)(G.aKT);_viewContainerRef=(0,W.WQX)(G.c1b);_menuItemInstance=(0,W.WQX)(gt,{optional:!0,self:!0});_dir=(0,W.WQX)(H.dS,{optional:!0});_focusMonitor=(0,W.WQX)(xe.FN);_ngZone=(0,W.WQX)(G.SKi);_injector=(0,W.WQX)(W.zZn);_scrollStrategy=(0,W.WQX)(pt);_changeDetectorRef=(0,W.WQX)(re.gRc);_animationsDisabled=(0,ve.Rc)();_portal;_overlayRef=null;_menuOpen=!1;_closingActionsSubscription=De.yU.EMPTY;_menuCloseSubscription=De.yU.EMPTY;_pendingRemoval;_parentMaterialMenu;_parentInnerPadding;_openedBy=void 0;get _menu(){return this._menuInternal}set _menu(N){N!==this._menuInternal&&(this._menuInternal=N,this._menuCloseSubscription.unsubscribe(),N&&(this._menuCloseSubscription=N.close.subscribe(Z=>{this._destroyMenu(Z),("click"===Z||"tab"===Z)&&this._parentMaterialMenu&&this._parentMaterialMenu.closed.emit(Z)})),this._menuItemInstance?._setTriggersSubmenu(this._triggersSubmenu()))}_menuInternal;constructor(N){this._canHaveBackdrop=N;const Z=(0,W.WQX)(Qe,{optional:!0});this._parentMaterialMenu=Z instanceof wt?Z:void 0}ngOnDestroy(){this._menu&&this._ownsMenu(this._menu)&&vi.delete(this._menu),this._pendingRemoval?.unsubscribe(),this._menuCloseSubscription.unsubscribe(),this._closingActionsSubscription.unsubscribe(),this._overlayRef&&(this._overlayRef.dispose(),this._overlayRef=null)}get menuOpen(){return this._menuOpen}get dir(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_triggersSubmenu(){return!!(this._menuItemInstance&&this._parentMaterialMenu&&this._menu)}_closeMenu(){this._menu?.close.emit()}_openMenu(N){const Z=this._menu;if(this._menuOpen||!Z)return;this._pendingRemoval?.unsubscribe();const Me=vi.get(Z);vi.set(Z,this),Me&&Me!==this&&Me._closeMenu();const at=this._createOverlay(Z),qe=at.getConfig(),pn=qe.positionStrategy;this._setPosition(Z,pn),qe.hasBackdrop=!!this._canHaveBackdrop&&(null==Z.hasBackdrop?!this._triggersSubmenu():Z.hasBackdrop),at.hasAttached()||(at.attach(this._getPortal(Z)),Z.lazyContent?.attach(this.menuData)),this._closingActionsSubscription=this._menuClosingActions().subscribe(()=>this._closeMenu()),Z.parentMenu=this._triggersSubmenu()?this._parentMaterialMenu:void 0,Z.direction=this.dir,N&&Z.focusFirstItem(this._openedBy||"program"),this._setIsMenuOpen(!0),Z instanceof wt&&(Z._setIsOpen(!0),Z._directDescendantItems.changes.pipe((0,Le.Q)(Z.close)).subscribe(()=>{pn.withLockedPosition(!1).reapplyLastPosition(),pn.withLockedPosition(!0)}))}focus(N,Z){this._focusMonitor&&N?this._focusMonitor.focusVia(this._element,N,Z):this._element.nativeElement.focus(Z)}_destroyMenu(N){const Z=this._overlayRef,Me=this._menu;!Z||!this.menuOpen||(this._closingActionsSubscription.unsubscribe(),this._pendingRemoval?.unsubscribe(),Me instanceof wt&&this._ownsMenu(Me)?(this._pendingRemoval=Me._animationDone.pipe((0,lt.s)(1)).subscribe(()=>{Z.detach(),vi.has(Me)||Me.lazyContent?.detach()}),Me._setIsOpen(!1)):(Z.detach(),Me?.lazyContent?.detach()),Me&&this._ownsMenu(Me)&&vi.delete(Me),this.restoreFocus&&("keydown"===N||!this._openedBy||!this._triggersSubmenu())&&this.focus(this._openedBy),this._openedBy=void 0,this._setIsMenuOpen(!1))}_setIsMenuOpen(N){N!==this._menuOpen&&(this._menuOpen=N,this._menuOpen?this.menuOpened.emit():this.menuClosed.emit(),this._triggersSubmenu()&&this._menuItemInstance._setHighlighted(N),this._changeDetectorRef.markForCheck())}_createOverlay(N){if(!this._overlayRef){const Z=this._getOverlayConfig(N);this._subscribeToPositions(N,Z.positionStrategy),this._overlayRef=(0,$.Y$)(this._injector,Z),this._overlayRef.keydownEvents().subscribe(Me=>{this._menu instanceof wt&&this._menu._handleKeydown(Me)})}return this._overlayRef}_getOverlayConfig(N){return new $.rR({positionStrategy:(0,$.$M)(this._injector,this._getOverlayOrigin()).withLockedPosition().withGrowAfterOpen().withTransformOriginOn(".mat-menu-panel, .mat-mdc-menu-panel"),backdropClass:N.backdropClass||"cdk-overlay-transparent-backdrop",panelClass:N.overlayPanelClass,scrollStrategy:this._scrollStrategy(),direction:this._dir||"ltr",disableAnimations:this._animationsDisabled})}_subscribeToPositions(N,Z){N.setPositionClasses&&Z.positionChanges.subscribe(Me=>{this._ngZone.run(()=>{N.setPositionClasses("start"===Me.connectionPair.overlayX?"after":"before","top"===Me.connectionPair.overlayY?"below":"above")})})}_setPosition(N,Z){let[Me,at]="before"===N.xPosition?["end","start"]:["start","end"],[qe,pn]="above"===N.yPosition?["bottom","top"]:["top","bottom"],[Je,Be]=[qe,pn],[ut,Ge]=[Me,at],Ot=0;if(this._triggersSubmenu()){if(Ge=Me="before"===N.xPosition?"start":"end",at=ut="end"===Me?"start":"end",this._parentMaterialMenu){if(null==this._parentInnerPadding){const se=this._parentMaterialMenu.items.first;this._parentInnerPadding=se?se._getHostElement().offsetTop:0}Ot="bottom"===qe?this._parentInnerPadding:-this._parentInnerPadding}}else N.overlapTrigger||(Je="top"===qe?"bottom":"top",Be="top"===pn?"bottom":"top");Z.withPositions([{originX:Me,originY:Je,overlayX:ut,overlayY:qe,offsetY:Ot},{originX:at,originY:Je,overlayX:Ge,overlayY:qe,offsetY:Ot},{originX:Me,originY:Be,overlayX:ut,overlayY:pn,offsetY:-Ot},{originX:at,originY:Be,overlayX:Ge,overlayY:pn,offsetY:-Ot}])}_menuClosingActions(){const N=this._getOutsideClickStream(this._overlayRef),Z=this._overlayRef.detachments(),Me=this._parentMaterialMenu?this._parentMaterialMenu.closed:(0,Xe.of)(),at=this._parentMaterialMenu?this._parentMaterialMenu._hovered().pipe((0,_e.p)(qe=>this._menuOpen&&qe!==this._menuItemInstance)):(0,Xe.of)();return(0,Re.h)(N,Me,at,Z)}_getPortal(N){return(!this._portal||this._portal.templateRef!==N.templateRef)&&(this._portal=new F.VA(N.templateRef,this._viewContainerRef)),this._portal}_ownsMenu(N){return vi.get(N)===this}static \u0275fac=function(Z){G.QTQ()};static \u0275dir=G.FsC({type:Se})}return Se})(),kn=(()=>{class Se extends Ni{_cleanupTouchstart;_hoverSubscription=De.yU.EMPTY;get _deprecatedMatMenuTriggerFor(){return this.menu}set _deprecatedMatMenuTriggerFor(N){this.menu=N}get menu(){return this._menu}set menu(N){this._menu=N}menuData;restoreFocus=!0;menuOpened=new G.bkB;onMenuOpen=this.menuOpened;menuClosed=new G.bkB;onMenuClose=this.menuClosed;constructor(){super(!0);const N=(0,W.WQX)(G.sFG);this._cleanupTouchstart=N.listen(this._element.nativeElement,"touchstart",Z=>{(0,ce.w)(Z)||(this._openedBy="touch")},{passive:!0})}triggersSubmenu(){return super._triggersSubmenu()}toggleMenu(){return this.menuOpen?this.closeMenu():this.openMenu()}openMenu(){this._openMenu(!0)}closeMenu(){this._closeMenu()}updatePosition(){this._overlayRef?.updatePosition()}ngAfterContentInit(){this._handleHover()}ngOnDestroy(){super.ngOnDestroy(),this._cleanupTouchstart(),this._hoverSubscription.unsubscribe()}_getOverlayOrigin(){return this._element}_getOutsideClickStream(N){return N.backdropClick()}_handleMousedown(N){(0,ce._)(N)||(this._openedBy=0===N.button?"mouse":void 0,this.triggersSubmenu()&&N.preventDefault())}_handleKeydown(N){const Z=N.keyCode;(Z===ne.Fm||Z===ne.t6)&&(this._openedBy="keyboard"),this.triggersSubmenu()&&(Z===ne.LE&&"ltr"===this.dir||Z===ne.UQ&&"rtl"===this.dir)&&(this._openedBy="keyboard",this.openMenu())}_handleClick(N){this.triggersSubmenu()?(N.stopPropagation(),this.openMenu()):this.toggleMenu()}_handleHover(){this.triggersSubmenu()&&this._parentMaterialMenu&&(this._hoverSubscription=this._parentMaterialMenu._hovered().subscribe(N=>{N===this._menuItemInstance&&!N.disabled&&"void"!==this._parentMaterialMenu?._panelAnimationState&&(this._openedBy="mouse",this._openMenu(!1))}))}static \u0275fac=function(Z){return new(Z||Se)};static \u0275dir=G.FsC({type:Se,selectors:[["","mat-menu-trigger-for",""],["","matMenuTriggerFor",""]],hostAttrs:[1,"mat-mdc-menu-trigger"],hostVars:3,hostBindings:function(Z,Me){1&Z&&G.bIt("click",function(qe){return Me._handleClick(qe)})("mousedown",function(qe){return Me._handleMousedown(qe)})("keydown",function(qe){return Me._handleKeydown(qe)}),2&Z&&G.BMQ("aria-haspopup",Me.menu?"menu":null)("aria-expanded",Me.menuOpen)("aria-controls",Me.menuOpen?null==Me.menu?null:Me.menu.panelId:null)},inputs:{_deprecatedMatMenuTriggerFor:[0,"mat-menu-trigger-for","_deprecatedMatMenuTriggerFor"],menu:[0,"matMenuTriggerFor","menu"],menuData:[0,"matMenuTriggerData","menuData"],restoreFocus:[0,"matMenuTriggerRestoreFocus","restoreFocus"]},outputs:{menuOpened:"menuOpened",onMenuOpen:"onMenuOpen",menuClosed:"menuClosed",onMenuClose:"onMenuClose"},exportAs:["matMenuTrigger"],features:[G.Vt3]})}return Se})(),vt=(()=>{class Se{static \u0275fac=function(Z){return new(Z||Se)};static \u0275mod=G.$C({type:Se});static \u0275inj=W.G2t({providers:[gn],imports:[Vt.p,St.y,$.z_,Ke.Gj,St.y]})}return Se})()},146(Zt,pe,l){"use strict";l.d(pe,{S:()=>O});var i=l(2615),d=l(3664),v=l(6881),T=l(483),w=l(2466),e=l(3029);let O=(()=>{class f{static \u0275fac=function(C){return new(C||f)};static \u0275mod=d.$C({type:f});static \u0275inj=i.G2t({imports:[v.p,w.y,T.O,e.wT]})}return f})()},3029(Zt,pe,l){"use strict";l.d(pe,{MI:()=>J,QC:()=>be,TL:()=>Xe,is:()=>ce,jb:()=>Re,wT:()=>De});var w=l(9726),e=l(7336),O=l(438),f=l(3664),u=l(7705),L=l(2615),C=l(1413),B=l(2496),A=l(3386),Pe=l(2046),le=l(9046),Ce=l(8968);const W=["text"],G=[[["mat-icon"]],"*"],re=["mat-icon","*"];function xe(_e,he){if(1&_e&&f.nrm(0,"mat-pseudo-checkbox",1),2&_e){const Dt=f.XpG();f.Y8G("disabled",Dt.disabled)("state",Dt.selected?"checked":"unchecked")}}function Ee(_e,he){if(1&_e&&f.nrm(0,"mat-pseudo-checkbox",3),2&_e){const Dt=f.XpG();f.Y8G("disabled",Dt.disabled)}}function V(_e,he){if(1&_e&&(f.j41(0,"span",4),f.EFF(1),f.k0s()),2&_e){const Dt=f.XpG();f.R7$(),f.SpI("(",Dt.group.label,")")}}const ce=new L.nKC("MAT_OPTION_PARENT_COMPONENT"),be=new L.nKC("MatOptgroup");class J{source;isUserInput;constructor(he,Dt=!1){this.source=he,this.isUserInput=Dt}}let De=(()=>{class _e{_element=(0,L.WQX)(f.aKT);_changeDetectorRef=(0,L.WQX)(u.gRc);_parent=(0,L.WQX)(ce,{optional:!0});group=(0,L.WQX)(be,{optional:!0});_signalDisableRipple=!1;_selected=!1;_active=!1;_mostRecentViewValue="";get multiple(){return this._parent&&this._parent.multiple}get selected(){return this._selected}value;id=(0,L.WQX)(w.g).getId("mat-option-");get disabled(){return this.group&&this.group.disabled||this._disabled()}set disabled(Dt){this._disabled.set(Dt)}_disabled=(0,L.vPA)(!1);get disableRipple(){return this._signalDisableRipple?this._parent.disableRipple():!!this._parent?.disableRipple}get hideSingleSelectionIndicator(){return!(!this._parent||!this._parent.hideSingleSelectionIndicator)}onSelectionChange=new f.bkB;_text;_stateChanges=new C.B;constructor(){const Dt=(0,L.WQX)(Ce.l);Dt.load(Pe.A),Dt.load(le.Y),this._signalDisableRipple=!!this._parent&&(0,L.Hps)(this._parent.disableRipple)}get active(){return this._active}get viewValue(){return(this._text?.nativeElement.textContent||"").trim()}select(Dt=!0){this._selected||(this._selected=!0,this._changeDetectorRef.markForCheck(),Dt&&this._emitSelectionChangeEvent())}deselect(Dt=!0){this._selected&&(this._selected=!1,this._changeDetectorRef.markForCheck(),Dt&&this._emitSelectionChangeEvent())}focus(Dt,lt){const Le=this._getHostElement();"function"==typeof Le.focus&&Le.focus(lt)}setActiveStyles(){this._active||(this._active=!0,this._changeDetectorRef.markForCheck())}setInactiveStyles(){this._active&&(this._active=!1,this._changeDetectorRef.markForCheck())}getLabel(){return this.viewValue}_handleKeydown(Dt){(Dt.keyCode===O.Fm||Dt.keyCode===O.t6)&&!(0,e.rp)(Dt)&&(this._selectViaInteraction(),Dt.preventDefault())}_selectViaInteraction(){this.disabled||(this._selected=!this.multiple||!this._selected,this._changeDetectorRef.markForCheck(),this._emitSelectionChangeEvent(!0))}_getTabIndex(){return this.disabled?"-1":"0"}_getHostElement(){return this._element.nativeElement}ngAfterViewChecked(){if(this._selected){const Dt=this.viewValue;Dt!==this._mostRecentViewValue&&(this._mostRecentViewValue&&this._stateChanges.next(),this._mostRecentViewValue=Dt)}}ngOnDestroy(){this._stateChanges.complete()}_emitSelectionChangeEvent(Dt=!1){this.onSelectionChange.emit(new J(this,Dt))}static \u0275fac=function(lt){return new(lt||_e)};static \u0275cmp=f.VBU({type:_e,selectors:[["mat-option"]],viewQuery:function(lt,Le){if(1<&&f.GBs(W,7),2<){let te;f.mGM(te=f.lsd())&&(Le._text=te.first)}},hostAttrs:["role","option",1,"mat-mdc-option","mdc-list-item"],hostVars:11,hostBindings:function(lt,Le){1<&&f.bIt("click",function(){return Le._selectViaInteraction()})("keydown",function(ie){return Le._handleKeydown(ie)}),2<&&(f.Avn("id",Le.id),f.BMQ("aria-selected",Le.selected)("aria-disabled",Le.disabled.toString()),f.AVh("mdc-list-item--selected",Le.selected)("mat-mdc-option-multiple",Le.multiple)("mat-mdc-option-active",Le.active)("mdc-list-item--disabled",Le.disabled))},inputs:{value:"value",id:"id",disabled:[2,"disabled","disabled",u.L39]},outputs:{onSelectionChange:"onSelectionChange"},exportAs:["matOption"],ngContentSelectors:re,decls:8,vars:5,consts:[["text",""],["aria-hidden","true",1,"mat-mdc-option-pseudo-checkbox",3,"disabled","state"],[1,"mdc-list-item__primary-text"],["state","checked","aria-hidden","true","appearance","minimal",1,"mat-mdc-option-pseudo-checkbox",3,"disabled"],[1,"cdk-visually-hidden"],["aria-hidden","true","mat-ripple","",1,"mat-mdc-option-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled"]],template:function(lt,Le){1<&&(f.NAR(G),f.nVh(0,xe,1,2,"mat-pseudo-checkbox",1),f.SdG(1),f.j41(2,"span",2,0),f.SdG(4,1),f.k0s(),f.nVh(5,Ee,1,1,"mat-pseudo-checkbox",3),f.nVh(6,V,2,1,"span",4),f.nrm(7,"div",5)),2<&&(f.vxM(Le.multiple?0:-1),f.R7$(5),f.vxM(Le.multiple||!Le.selected||Le.hideSingleSelectionIndicator?-1:5),f.R7$(),f.vxM(Le.group&&Le.group._inert?6:-1),f.R7$(),f.Y8G("matRippleTrigger",Le._getHostElement())("matRippleDisabled",Le.disabled||Le.disableRipple))},dependencies:[A.w,B.r6],styles:['.mat-mdc-option{-webkit-user-select:none;user-select:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:flex;position:relative;align-items:center;justify-content:flex-start;overflow:hidden;min-height:48px;padding:0 16px;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);color:var(--mat-option-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-option-label-text-font, var(--mat-sys-label-large-font));line-height:var(--mat-option-label-text-line-height, var(--mat-sys-label-large-line-height));font-size:var(--mat-option-label-text-size, var(--mat-sys-body-large-size));letter-spacing:var(--mat-option-label-text-tracking, var(--mat-sys-label-large-tracking));font-weight:var(--mat-option-label-text-weight, var(--mat-sys-body-large-weight))}.mat-mdc-option:hover:not(.mdc-list-item--disabled){background-color:var(--mat-option-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent))}.mat-mdc-option:focus.mdc-list-item,.mat-mdc-option.mat-mdc-option-active.mdc-list-item{background-color:var(--mat-option-focus-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent));outline:0}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple){background-color:var(--mat-option-selected-state-layer-color, var(--mat-sys-secondary-container))}.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple) .mdc-list-item__primary-text{color:var(--mat-option-selected-state-label-text-color, var(--mat-sys-on-secondary-container))}.mat-mdc-option .mat-pseudo-checkbox{--mat-pseudo-checkbox-minimal-selected-checkmark-color: var(--mat-option-selected-state-label-text-color, var(--mat-sys-on-secondary-container))}.mat-mdc-option.mdc-list-item{align-items:center;background:rgba(0,0,0,0)}.mat-mdc-option.mdc-list-item--disabled{cursor:default;pointer-events:none}.mat-mdc-option.mdc-list-item--disabled .mat-mdc-option-pseudo-checkbox,.mat-mdc-option.mdc-list-item--disabled .mdc-list-item__primary-text,.mat-mdc-option.mdc-list-item--disabled>mat-icon{opacity:.38}.mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:32px}[dir=rtl] .mat-mdc-optgroup .mat-mdc-option:not(.mat-mdc-option-multiple){padding-left:16px;padding-right:32px}.mat-mdc-option .mat-icon,.mat-mdc-option .mat-pseudo-checkbox-full{margin-right:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-icon,[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-full{margin-right:0;margin-left:16px}.mat-mdc-option .mat-pseudo-checkbox-minimal{margin-left:16px;flex-shrink:0}[dir=rtl] .mat-mdc-option .mat-pseudo-checkbox-minimal{margin-right:16px;margin-left:0}.mat-mdc-option .mat-mdc-option-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-mdc-option .mdc-list-item__primary-text{white-space:normal;font-size:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;font-family:inherit;text-decoration:inherit;text-transform:inherit;margin-right:auto}[dir=rtl] .mat-mdc-option .mdc-list-item__primary-text{margin-right:0;margin-left:auto}@media(forced-colors: active){.mat-mdc-option.mdc-list-item--selected:not(:has(.mat-mdc-option-pseudo-checkbox))::after{content:"";position:absolute;top:50%;right:16px;transform:translateY(-50%);width:10px;height:0;border-bottom:solid 10px;border-radius:10px}[dir=rtl] .mat-mdc-option.mdc-list-item--selected:not(:has(.mat-mdc-option-pseudo-checkbox))::after{right:auto;left:16px}}.mat-mdc-option-multiple{--mat-list-list-item-selected-container-color: var(--mat-list-list-item-container-color, transparent)}.mat-mdc-option-active .mat-focus-indicator::before{content:""}\n'],encapsulation:2,changeDetection:0})}return _e})();function Re(_e,he,Dt){if(Dt.length){let lt=he.toArray(),Le=Dt.toArray(),te=0;for(let ie=0;ie<_e+1;ie++)lt[ie].group&<[ie].group===Le[te]&&te++;return te}return 0}function Xe(_e,he,Dt,lt){return _eDt+lt?Math.max(0,_e-lt+he):Dt}},6695(Zt,pe,l){"use strict";l.d(pe,{Ou:()=>ne,iy:()=>be,xX:()=>G});var i=l(2615),d=l(3664),v=l(7705),T=l(1413),w=l(2771),e=l(9726),O=l(9588),f=l(6183),u=l(3029),L=l(2598),C=l(455),B=l(6156),A=l(8834);function Pe(J,De){if(1&J&&(d.j41(0,"mat-option",17),d.EFF(1),d.k0s()),2&J){const Re=De.$implicit;d.Y8G("value",Re),d.R7$(),d.SpI(" ",Re," ")}}function le(J,De){if(1&J){const Re=d.RV6();d.j41(0,"mat-form-field",14)(1,"mat-select",16,0),d.bIt("selectionChange",function(_e){i.eBV(Re);const he=d.XpG(2);return i.Njj(he._changePageSize(_e.value))}),d.Z7z(3,Pe,2,2,"mat-option",17,d.fX1),d.k0s(),d.j41(5,"div",18),d.bIt("click",function(){i.eBV(Re);const _e=d.sdS(2);return i.Njj(_e.open())}),d.k0s()()}if(2&J){const Re=d.XpG(2);d.Y8G("appearance",Re._formFieldAppearance)("color",Re.color),d.R7$(),d.Y8G("value",Re.pageSize)("disabled",Re.disabled),d.jOp("aria-labelledby",Re._pageSizeLabelId),d.Y8G("panelClass",Re.selectConfig.panelClass||"")("disableOptionCentering",Re.selectConfig.disableOptionCentering),d.R7$(2),d.Dyx(Re._displayedPageSizeOptions)}}function Ce(J,De){if(1&J&&(d.j41(0,"div",15),d.EFF(1),d.k0s()),2&J){const Re=d.XpG(2);d.R7$(),d.JRh(Re.pageSize)}}function Ae(J,De){if(1&J&&(d.j41(0,"div",3)(1,"div",13),d.EFF(2),d.k0s(),d.nVh(3,le,6,7,"mat-form-field",14),d.nVh(4,Ce,2,1,"div",15),d.k0s()),2&J){const Re=d.XpG();d.R7$(),d.BMQ("id",Re._pageSizeLabelId),d.R7$(),d.SpI(" ",Re._intl.itemsPerPageLabel," "),d.R7$(),d.vxM(Re._displayedPageSizeOptions.length>1?3:-1),d.R7$(),d.vxM(Re._displayedPageSizeOptions.length<=1?4:-1)}}function j(J,De){if(1&J){const Re=d.RV6();d.j41(0,"button",19),d.bIt("click",function(){i.eBV(Re);const _e=d.XpG();return i.Njj(_e._buttonClicked(0,_e._previousButtonsDisabled()))}),i.qSk(),d.j41(1,"svg",8),d.nrm(2,"path",20),d.k0s()()}if(2&J){const Re=d.XpG();d.Y8G("matTooltip",Re._intl.firstPageLabel)("matTooltipDisabled",Re._previousButtonsDisabled())("disabled",Re._previousButtonsDisabled())("tabindex",Re._previousButtonsDisabled()?-1:null),d.BMQ("aria-label",Re._intl.firstPageLabel)}}function W(J,De){if(1&J){const Re=d.RV6();d.j41(0,"button",21),d.bIt("click",function(){i.eBV(Re);const _e=d.XpG();return i.Njj(_e._buttonClicked(_e.getNumberOfPages()-1,_e._nextButtonsDisabled()))}),i.qSk(),d.j41(1,"svg",8),d.nrm(2,"path",22),d.k0s()()}if(2&J){const Re=d.XpG();d.Y8G("matTooltip",Re._intl.lastPageLabel)("matTooltipDisabled",Re._nextButtonsDisabled())("disabled",Re._nextButtonsDisabled())("tabindex",Re._nextButtonsDisabled()?-1:null),d.BMQ("aria-label",Re._intl.lastPageLabel)}}let G=(()=>{class J{changes=new T.B;itemsPerPageLabel="Items per page:";nextPageLabel="Next page";previousPageLabel="Previous page";firstPageLabel="First page";lastPageLabel="Last page";getRangeLabel=(Re,Xe,_e)=>{if(0==_e||0==Xe)return`0 of ${_e}`;const he=Re*Xe;return`${he+1} \u2013 ${he<(_e=Math.max(_e,0))?Math.min(he+Xe,_e):he+Xe} of ${_e}`};static \u0275fac=function(Xe){return new(Xe||J)};static \u0275prov=i.jDH({token:J,factory:J.\u0275fac,providedIn:"root"})}return J})();const xe={provide:G,deps:[[new d.Xx1,new d.kdw,G]],useFactory:function re(J){return J||new G}},ce=new i.nKC("MAT_PAGINATOR_DEFAULT_OPTIONS");let be=(()=>{class J{_intl=(0,i.WQX)(G);_changeDetectorRef=(0,i.WQX)(v.gRc);_formFieldAppearance;_pageSizeLabelId=(0,i.WQX)(e.g).getId("mat-paginator-page-size-label-");_intlChanges;_isInitialized=!1;_initializedStream=new w.m(1);color;get pageIndex(){return this._pageIndex}set pageIndex(Re){this._pageIndex=Math.max(Re||0,0),this._changeDetectorRef.markForCheck()}_pageIndex=0;get length(){return this._length}set length(Re){this._length=Re||0,this._changeDetectorRef.markForCheck()}_length=0;get pageSize(){return this._pageSize}set pageSize(Re){this._pageSize=Math.max(Re||0,0),this._updateDisplayedPageSizeOptions()}_pageSize;get pageSizeOptions(){return this._pageSizeOptions}set pageSizeOptions(Re){this._pageSizeOptions=(Re||[]).map(Xe=>(0,v.Udg)(Xe,0)),this._updateDisplayedPageSizeOptions()}_pageSizeOptions=[];hidePageSize=!1;showFirstLastButtons=!1;selectConfig={};disabled=!1;page=new d.bkB;_displayedPageSizeOptions;initialized=this._initializedStream;constructor(){const Re=this._intl,Xe=(0,i.WQX)(ce,{optional:!0});if(this._intlChanges=Re.changes.subscribe(()=>this._changeDetectorRef.markForCheck()),Xe){const{pageSize:_e,pageSizeOptions:he,hidePageSize:Dt,showFirstLastButtons:lt}=Xe;null!=_e&&(this._pageSize=_e),null!=he&&(this._pageSizeOptions=he),null!=Dt&&(this.hidePageSize=Dt),null!=lt&&(this.showFirstLastButtons=lt)}this._formFieldAppearance=Xe?.formFieldAppearance||"outline"}ngOnInit(){this._isInitialized=!0,this._updateDisplayedPageSizeOptions(),this._initializedStream.next()}ngOnDestroy(){this._initializedStream.complete(),this._intlChanges.unsubscribe()}nextPage(){this.hasNextPage()&&this._navigate(this.pageIndex+1)}previousPage(){this.hasPreviousPage()&&this._navigate(this.pageIndex-1)}firstPage(){this.hasPreviousPage()&&this._navigate(0)}lastPage(){this.hasNextPage()&&this._navigate(this.getNumberOfPages()-1)}hasPreviousPage(){return this.pageIndex>=1&&0!=this.pageSize}hasNextPage(){const Re=this.getNumberOfPages()-1;return this.pageIndexRe-Xe),this._changeDetectorRef.markForCheck())}_emitPageEvent(Re){this.page.emit({previousPageIndex:Re,pageIndex:this.pageIndex,pageSize:this.pageSize,length:this.length})}_navigate(Re){const Xe=this.pageIndex;Re!==Xe&&(this.pageIndex=Re,this._emitPageEvent(Xe))}_buttonClicked(Re,Xe){Xe||this._navigate(Re)}static \u0275fac=function(Xe){return new(Xe||J)};static \u0275cmp=d.VBU({type:J,selectors:[["mat-paginator"]],hostAttrs:["role","group",1,"mat-mdc-paginator"],inputs:{color:"color",pageIndex:[2,"pageIndex","pageIndex",v.Udg],length:[2,"length","length",v.Udg],pageSize:[2,"pageSize","pageSize",v.Udg],pageSizeOptions:"pageSizeOptions",hidePageSize:[2,"hidePageSize","hidePageSize",v.L39],showFirstLastButtons:[2,"showFirstLastButtons","showFirstLastButtons",v.L39],selectConfig:"selectConfig",disabled:[2,"disabled","disabled",v.L39]},outputs:{page:"page"},exportAs:["matPaginator"],decls:14,vars:14,consts:[["selectRef",""],[1,"mat-mdc-paginator-outer-container"],[1,"mat-mdc-paginator-container"],[1,"mat-mdc-paginator-page-size"],[1,"mat-mdc-paginator-range-actions"],["aria-live","polite",1,"mat-mdc-paginator-range-label"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-first",3,"matTooltip","matTooltipDisabled","disabled","tabindex"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-previous",3,"click","matTooltip","matTooltipDisabled","disabled","tabindex"],["viewBox","0 0 24 24","focusable","false","aria-hidden","true",1,"mat-mdc-paginator-icon"],["d","M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-next",3,"click","matTooltip","matTooltipDisabled","disabled","tabindex"],["d","M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-last",3,"matTooltip","matTooltipDisabled","disabled","tabindex"],[1,"mat-mdc-paginator-page-size-label"],[1,"mat-mdc-paginator-page-size-select",3,"appearance","color"],[1,"mat-mdc-paginator-page-size-value"],["hideSingleSelectionIndicator","",3,"selectionChange","value","disabled","aria-labelledby","panelClass","disableOptionCentering"],[3,"value"],[1,"mat-mdc-paginator-touch-target",3,"click"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-first",3,"click","matTooltip","matTooltipDisabled","disabled","tabindex"],["d","M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6zM6 6h2v12H6z"],["matIconButton","","type","button","matTooltipPosition","above","disabledInteractive","",1,"mat-mdc-paginator-navigation-last",3,"click","matTooltip","matTooltipDisabled","disabled","tabindex"],["d","M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6zM16 6h2v12h-2z"]],template:function(Xe,_e){1&Xe&&(d.j41(0,"div",1)(1,"div",2),d.nVh(2,Ae,5,4,"div",3),d.j41(3,"div",4)(4,"div",5),d.EFF(5),d.k0s(),d.nVh(6,j,3,5,"button",6),d.j41(7,"button",7),d.bIt("click",function(){return _e._buttonClicked(_e.pageIndex-1,_e._previousButtonsDisabled())}),i.qSk(),d.j41(8,"svg",8),d.nrm(9,"path",9),d.k0s()(),i.joV(),d.j41(10,"button",10),d.bIt("click",function(){return _e._buttonClicked(_e.pageIndex+1,_e._nextButtonsDisabled())}),i.qSk(),d.j41(11,"svg",8),d.nrm(12,"path",11),d.k0s()(),d.nVh(13,W,3,5,"button",12),d.k0s()()()),2&Xe&&(d.R7$(2),d.vxM(_e.hidePageSize?-1:2),d.R7$(3),d.SpI(" ",_e._intl.getRangeLabel(_e.pageIndex,_e.pageSize,_e.length)," "),d.R7$(),d.vxM(_e.showFirstLastButtons?6:-1),d.R7$(),d.Y8G("matTooltip",_e._intl.previousPageLabel)("matTooltipDisabled",_e._previousButtonsDisabled())("disabled",_e._previousButtonsDisabled())("tabindex",_e._previousButtonsDisabled()?-1:null),d.BMQ("aria-label",_e._intl.previousPageLabel),d.R7$(3),d.Y8G("matTooltip",_e._intl.nextPageLabel)("matTooltipDisabled",_e._nextButtonsDisabled())("disabled",_e._nextButtonsDisabled())("tabindex",_e._nextButtonsDisabled()?-1:null),d.BMQ("aria-label",_e._intl.nextPageLabel),d.R7$(3),d.vxM(_e.showFirstLastButtons?13:-1))},dependencies:[O.rl,f.VO,u.wT,L.iY,C.oV],styles:[".mat-mdc-paginator{display:block;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-paginator-container-text-color, var(--mat-sys-on-surface));background-color:var(--mat-paginator-container-background-color, var(--mat-sys-surface));font-family:var(--mat-paginator-container-text-font, var(--mat-sys-body-small-font));line-height:var(--mat-paginator-container-text-line-height, var(--mat-sys-body-small-line-height));font-size:var(--mat-paginator-container-text-size, var(--mat-sys-body-small-size));font-weight:var(--mat-paginator-container-text-weight, var(--mat-sys-body-small-weight));letter-spacing:var(--mat-paginator-container-text-tracking, var(--mat-sys-body-small-tracking));--mat-form-field-container-height: var(--mat-paginator-form-field-container-height, 40px);--mat-form-field-container-vertical-padding: var(--mat-paginator-form-field-container-vertical-padding, 8px)}.mat-mdc-paginator .mat-mdc-select-value{font-size:var(--mat-paginator-select-trigger-text-size, var(--mat-sys-body-small-size))}.mat-mdc-paginator .mat-mdc-form-field-subscript-wrapper{display:none}.mat-mdc-paginator .mat-mdc-select{line-height:1.5}.mat-mdc-paginator-outer-container{display:flex}.mat-mdc-paginator-container{display:flex;align-items:center;justify-content:flex-end;padding:0 8px;flex-wrap:wrap;width:100%;min-height:var(--mat-paginator-container-size, 56px)}.mat-mdc-paginator-page-size{display:flex;align-items:baseline;margin-right:8px}[dir=rtl] .mat-mdc-paginator-page-size{margin-right:0;margin-left:8px}.mat-mdc-paginator-page-size-label{margin:0 4px}.mat-mdc-paginator-page-size-select{margin:0 4px;width:var(--mat-paginator-page-size-select-width, 84px)}.mat-mdc-paginator-range-label{margin:0 32px 0 24px}.mat-mdc-paginator-range-actions{display:flex;align-items:center}.mat-mdc-paginator-icon{display:inline-block;width:28px;fill:var(--mat-paginator-enabled-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-icon-button[aria-disabled] .mat-mdc-paginator-icon{fill:var(--mat-paginator-disabled-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}[dir=rtl] .mat-mdc-paginator-icon{transform:rotate(180deg)}@media(forced-colors: active){.mat-mdc-icon-button[aria-disabled] .mat-mdc-paginator-icon,.mat-mdc-paginator-icon{fill:currentColor}.mat-mdc-paginator-range-actions .mat-mdc-icon-button{outline:solid 1px}.mat-mdc-paginator-range-actions .mat-mdc-icon-button[aria-disabled]{color:GrayText}}.mat-mdc-paginator-touch-target{display:var(--mat-paginator-touch-target-display, block);position:absolute;top:50%;left:50%;width:var(--mat-paginator-page-size-select-width, 84px);height:var(--mat-paginator-page-size-select-touch-target-height, 48px);background-color:rgba(0,0,0,0);transform:translate(-50%, -50%);cursor:pointer}\n"],encapsulation:2,changeDetection:0})}return J})(),ne=(()=>{class J{static \u0275fac=function(Xe){return new(Xe||J)};static \u0275mod=d.$C({type:J});static \u0275inj=i.G2t({providers:[xe],imports:[A.Hl,f.Ve,B.u,be]})}return J})()},7575(Zt,pe,l){"use strict";l.d(pe,{HM:()=>L,PO:()=>B});var i=l(2615),d=l(3664),v=l(7705),T=l(1804),w=l(2466);function e(A,Pe){1&A&&d.Hgh(0,"div",2)}const O=new i.nKC("MAT_PROGRESS_BAR_DEFAULT_OPTIONS");let L=(()=>{class A{_elementRef=(0,i.WQX)(d.aKT);_ngZone=(0,i.WQX)(d.SKi);_changeDetectorRef=(0,i.WQX)(v.gRc);_renderer=(0,i.WQX)(d.sFG);_cleanupTransitionEnd;constructor(){const le=(0,T._J)(),Ce=(0,i.WQX)(O,{optional:!0});this._isNoopAnimation="di-disabled"===le,"reduced-motion"===le&&this._elementRef.nativeElement.classList.add("mat-progress-bar-reduced-motion"),Ce&&(Ce.color&&(this.color=this._defaultColor=Ce.color),this.mode=Ce.mode||this.mode)}_isNoopAnimation;get color(){return this._color||this._defaultColor}set color(le){this._color=le}_color;_defaultColor="primary";get value(){return this._value}set value(le){this._value=C(le||0),this._changeDetectorRef.markForCheck()}_value=0;get bufferValue(){return this._bufferValue||0}set bufferValue(le){this._bufferValue=C(le||0),this._changeDetectorRef.markForCheck()}_bufferValue=0;animationEnd=new d.bkB;get mode(){return this._mode}set mode(le){this._mode=le,this._changeDetectorRef.markForCheck()}_mode="determinate";ngAfterViewInit(){this._ngZone.runOutsideAngular(()=>{this._cleanupTransitionEnd=this._renderer.listen(this._elementRef.nativeElement,"transitionend",this._transitionendHandler)})}ngOnDestroy(){this._cleanupTransitionEnd?.()}_getPrimaryBarTransform(){return`scaleX(${this._isIndeterminate()?1:this.value/100})`}_getBufferBarFlexBasis(){return`${"buffer"===this.mode?this.bufferValue:100}%`}_isIndeterminate(){return"indeterminate"===this.mode||"query"===this.mode}_transitionendHandler=le=>{0===this.animationEnd.observers.length||!le.target||!le.target.classList.contains("mdc-linear-progress__primary-bar")||("determinate"===this.mode||"buffer"===this.mode)&&this._ngZone.run(()=>this.animationEnd.next({value:this.value}))};static \u0275fac=function(Ce){return new(Ce||A)};static \u0275cmp=d.VBU({type:A,selectors:[["mat-progress-bar"]],hostAttrs:["role","progressbar","aria-valuemin","0","aria-valuemax","100","tabindex","-1",1,"mat-mdc-progress-bar","mdc-linear-progress"],hostVars:10,hostBindings:function(Ce,Ae){2&Ce&&(d.BMQ("aria-valuenow",Ae._isIndeterminate()?null:Ae.value)("mode",Ae.mode),d.HbH("mat-"+Ae.color),d.AVh("_mat-animation-noopable",Ae._isNoopAnimation)("mdc-linear-progress--animation-ready",!Ae._isNoopAnimation)("mdc-linear-progress--indeterminate",Ae._isIndeterminate()))},inputs:{color:"color",value:[2,"value","value",v.Udg],bufferValue:[2,"bufferValue","bufferValue",v.Udg],mode:"mode"},outputs:{animationEnd:"animationEnd"},exportAs:["matProgressBar"],decls:7,vars:5,consts:[["aria-hidden","true",1,"mdc-linear-progress__buffer"],[1,"mdc-linear-progress__buffer-bar"],[1,"mdc-linear-progress__buffer-dots"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__primary-bar"],[1,"mdc-linear-progress__bar-inner"],["aria-hidden","true",1,"mdc-linear-progress__bar","mdc-linear-progress__secondary-bar"]],template:function(Ce,Ae){1&Ce&&(d.rj2(0,"div",0),d.Hgh(1,"div",1),d.nVh(2,e,1,0,"div",2),d.eux(),d.rj2(3,"div",3),d.Hgh(4,"span",4),d.eux(),d.rj2(5,"div",5),d.Hgh(6,"span",4),d.eux()),2&Ce&&(d.R7$(),d.xc7("flex-basis",Ae._getBufferBarFlexBasis()),d.R7$(),d.vxM("buffer"===Ae.mode?2:-1),d.R7$(),d.xc7("transform",Ae._getPrimaryBarTransform()))},styles:[".mat-mdc-progress-bar{--mat-progress-bar-animation-multiplier: 1;display:block;text-align:start}.mat-mdc-progress-bar[mode=query]{transform:scaleX(-1)}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-dots,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__secondary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__bar-inner.mdc-linear-progress__bar-inner{animation:none}.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__primary-bar,.mat-mdc-progress-bar._mat-animation-noopable .mdc-linear-progress__buffer-bar{transition:transform 1ms}.mat-progress-bar-reduced-motion{--mat-progress-bar-animation-multiplier: 2}.mdc-linear-progress{position:relative;width:100%;transform:translateZ(0);outline:1px solid rgba(0,0,0,0);overflow-x:hidden;transition:opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);height:max(var(--mat-progress-bar-track-height, 4px),var(--mat-progress-bar-active-indicator-height, 4px))}@media(forced-colors: active){.mdc-linear-progress{outline-color:CanvasText}}.mdc-linear-progress__bar{position:absolute;top:0;bottom:0;margin:auto 0;width:100%;animation:none;transform-origin:top left;transition:transform 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);height:var(--mat-progress-bar-active-indicator-height, 4px)}.mdc-linear-progress--indeterminate .mdc-linear-progress__bar{transition:none}[dir=rtl] .mdc-linear-progress__bar{right:0;transform-origin:center right}.mdc-linear-progress__bar-inner{display:inline-block;position:absolute;width:100%;animation:none;border-top-style:solid;border-color:var(--mat-progress-bar-active-indicator-color, var(--mat-sys-primary));border-top-width:var(--mat-progress-bar-active-indicator-height, 4px)}.mdc-linear-progress__buffer{display:flex;position:absolute;top:0;bottom:0;margin:auto 0;width:100%;overflow:hidden;height:var(--mat-progress-bar-track-height, 4px);border-radius:var(--mat-progress-bar-track-shape, var(--mat-sys-corner-none))}.mdc-linear-progress__buffer-dots{background-image:radial-gradient(circle, var(--mat-progress-bar-track-color, var(--mat-sys-surface-variant)) calc(var(--mat-progress-bar-track-height, 4px) / 2), transparent 0);background-repeat:repeat-x;background-size:calc(calc(var(--mat-progress-bar-track-height, 4px) / 2)*5);background-position:left;flex:auto;transform:rotate(180deg);animation:mdc-linear-progress-buffering calc(250ms*var(--mat-progress-bar-animation-multiplier)) infinite linear}@media(forced-colors: active){.mdc-linear-progress__buffer-dots{background-color:ButtonBorder}}[dir=rtl] .mdc-linear-progress__buffer-dots{animation:mdc-linear-progress-buffering-reverse calc(250ms*var(--mat-progress-bar-animation-multiplier)) infinite linear;transform:rotate(0)}.mdc-linear-progress__buffer-bar{flex:0 1 100%;transition:flex-basis 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);background-color:var(--mat-progress-bar-track-color, var(--mat-sys-surface-variant))}.mdc-linear-progress__primary-bar{transform:scaleX(0)}.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{left:-145.166611%}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation:mdc-linear-progress-primary-indeterminate-translate calc(2s*var(--mat-progress-bar-animation-multiplier)) infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-primary-indeterminate-scale calc(2s*var(--mat-progress-bar-animation-multiplier)) infinite linear}[dir=rtl] .mdc-linear-progress.mdc-linear-progress--animation-ready .mdc-linear-progress__primary-bar{animation-name:mdc-linear-progress-primary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar{right:-145.166611%;left:auto}.mdc-linear-progress__secondary-bar{display:none}.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{left:-54.888891%;display:block}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation:mdc-linear-progress-secondary-indeterminate-translate calc(2s*var(--mat-progress-bar-animation-multiplier)) infinite linear}.mdc-linear-progress--indeterminate.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar>.mdc-linear-progress__bar-inner{animation:mdc-linear-progress-secondary-indeterminate-scale calc(2s*var(--mat-progress-bar-animation-multiplier)) infinite linear}[dir=rtl] .mdc-linear-progress.mdc-linear-progress--animation-ready .mdc-linear-progress__secondary-bar{animation-name:mdc-linear-progress-secondary-indeterminate-translate-reverse}[dir=rtl] .mdc-linear-progress.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar{right:-54.888891%;left:auto}@keyframes mdc-linear-progress-buffering{from{transform:rotate(180deg) translateX(calc(var(--mat-progress-bar-track-height, 4px) * -2.5))}}@keyframes mdc-linear-progress-primary-indeterminate-translate{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(83.67142%)}100%{transform:translateX(200.611057%)}}@keyframes mdc-linear-progress-primary-indeterminate-scale{0%{transform:scaleX(0.08)}36.65%{animation-timing-function:cubic-bezier(0.334731, 0.12482, 0.785844, 1);transform:scaleX(0.08)}69.15%{animation-timing-function:cubic-bezier(0.06, 0.11, 0.6, 1);transform:scaleX(0.661479)}100%{transform:scaleX(0.08)}}@keyframes mdc-linear-progress-secondary-indeterminate-translate{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(84.386165%)}100%{transform:translateX(160.277782%)}}@keyframes mdc-linear-progress-secondary-indeterminate-scale{0%{animation-timing-function:cubic-bezier(0.205028, 0.057051, 0.57661, 0.453971);transform:scaleX(0.08)}19.15%{animation-timing-function:cubic-bezier(0.152313, 0.196432, 0.648374, 1.004315);transform:scaleX(0.457104)}44.15%{animation-timing-function:cubic-bezier(0.257759, -0.003163, 0.211762, 1.38179);transform:scaleX(0.72796)}100%{transform:scaleX(0.08)}}@keyframes mdc-linear-progress-primary-indeterminate-translate-reverse{0%{transform:translateX(0)}20%{animation-timing-function:cubic-bezier(0.5, 0, 0.701732, 0.495819);transform:translateX(0)}59.15%{animation-timing-function:cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);transform:translateX(-83.67142%)}100%{transform:translateX(-200.611057%)}}@keyframes mdc-linear-progress-secondary-indeterminate-translate-reverse{0%{animation-timing-function:cubic-bezier(0.15, 0, 0.515058, 0.409685);transform:translateX(0)}25%{animation-timing-function:cubic-bezier(0.31033, 0.284058, 0.8, 0.733712);transform:translateX(-37.651913%)}48.35%{animation-timing-function:cubic-bezier(0.4, 0.627035, 0.6, 0.902026);transform:translateX(-84.386165%)}100%{transform:translateX(-160.277782%)}}@keyframes mdc-linear-progress-buffering-reverse{from{transform:translateX(-10px)}}\n"],encapsulation:2,changeDetection:0})}return A})();function C(A,Pe=0,le=100){return Math.max(Pe,Math.min(le,A))}let B=(()=>{class A{static \u0275fac=function(Ce){return new(Ce||A)};static \u0275mod=d.$C({type:A});static \u0275inj=i.G2t({imports:[w.y]})}return A})()},9183(Zt,pe,l){"use strict";l.d(pe,{D6:()=>le,LG:()=>A});var i=l(2615),d=l(3664),v=l(7705),T=l(2200),w=l(1804),e=l(2466);const O=["determinateSpinner"];function f(Ce,Ae){if(1&Ce&&(i.qSk(),d.j41(0,"svg",11),d.nrm(1,"circle",12),d.k0s()),2&Ce){const j=d.XpG();d.BMQ("viewBox",j._viewBox()),d.R7$(),d.xc7("stroke-dasharray",j._strokeCircumference(),"px")("stroke-dashoffset",j._strokeCircumference()/2,"px")("stroke-width",j._circleStrokeWidth(),"%"),d.BMQ("r",j._circleRadius())}}const u=new i.nKC("mat-progress-spinner-default-options",{providedIn:"root",factory:function L(){return{diameter:C}}}),C=100;let A=(()=>{class Ce{_elementRef=(0,i.WQX)(d.aKT);_noopAnimations;get color(){return this._color||this._defaultColor}set color(j){this._color=j}_color;_defaultColor="primary";_determinateCircle;constructor(){const j=(0,i.WQX)(u),W=(0,w._J)(),G=this._elementRef.nativeElement;this._noopAnimations="di-disabled"===W&&!!j&&!j._forceAnimations,this.mode="mat-spinner"===G.nodeName.toLowerCase()?"indeterminate":"determinate",!this._noopAnimations&&"reduced-motion"===W&&G.classList.add("mat-progress-spinner-reduced-motion"),j&&(j.color&&(this.color=this._defaultColor=j.color),j.diameter&&(this.diameter=j.diameter),j.strokeWidth&&(this.strokeWidth=j.strokeWidth))}mode;get value(){return"determinate"===this.mode?this._value:0}set value(j){this._value=Math.max(0,Math.min(100,j||0))}_value=0;get diameter(){return this._diameter}set diameter(j){this._diameter=j||0}_diameter=C;get strokeWidth(){return this._strokeWidth??this.diameter/10}set strokeWidth(j){this._strokeWidth=j||0}_strokeWidth;_circleRadius(){return(this.diameter-10)/2}_viewBox(){const j=2*this._circleRadius()+this.strokeWidth;return`0 0 ${j} ${j}`}_strokeCircumference(){return 2*Math.PI*this._circleRadius()}_strokeDashOffset(){return"determinate"===this.mode?this._strokeCircumference()*(100-this._value)/100:null}_circleStrokeWidth(){return this.strokeWidth/this.diameter*100}static \u0275fac=function(W){return new(W||Ce)};static \u0275cmp=d.VBU({type:Ce,selectors:[["mat-progress-spinner"],["mat-spinner"]],viewQuery:function(W,G){if(1&W&&d.GBs(O,5),2&W){let re;d.mGM(re=d.lsd())&&(G._determinateCircle=re.first)}},hostAttrs:["role","progressbar","tabindex","-1",1,"mat-mdc-progress-spinner","mdc-circular-progress"],hostVars:18,hostBindings:function(W,G){2&W&&(d.BMQ("aria-valuemin",0)("aria-valuemax",100)("aria-valuenow","determinate"===G.mode?G.value:null)("mode",G.mode),d.HbH("mat-"+G.color),d.xc7("width",G.diameter,"px")("height",G.diameter,"px")("--mat-progress-spinner-size",G.diameter+"px")("--mat-progress-spinner-active-indicator-width",G.diameter+"px"),d.AVh("_mat-animation-noopable",G._noopAnimations)("mdc-circular-progress--indeterminate","indeterminate"===G.mode))},inputs:{color:"color",mode:"mode",value:[2,"value","value",v.Udg],diameter:[2,"diameter","diameter",v.Udg],strokeWidth:[2,"strokeWidth","strokeWidth",v.Udg]},exportAs:["matProgressSpinner"],decls:14,vars:11,consts:[["circle",""],["determinateSpinner",""],["aria-hidden","true",1,"mdc-circular-progress__determinate-container"],["xmlns","http://www.w3.org/2000/svg","focusable","false",1,"mdc-circular-progress__determinate-circle-graphic"],["cx","50%","cy","50%",1,"mdc-circular-progress__determinate-circle"],["aria-hidden","true",1,"mdc-circular-progress__indeterminate-container"],[1,"mdc-circular-progress__spinner-layer"],[1,"mdc-circular-progress__circle-clipper","mdc-circular-progress__circle-left"],[3,"ngTemplateOutlet"],[1,"mdc-circular-progress__gap-patch"],[1,"mdc-circular-progress__circle-clipper","mdc-circular-progress__circle-right"],["xmlns","http://www.w3.org/2000/svg","focusable","false",1,"mdc-circular-progress__indeterminate-circle-graphic"],["cx","50%","cy","50%"]],template:function(W,G){if(1&W&&(d.DNE(0,f,2,8,"ng-template",null,0,d.C5r),d.j41(2,"div",2,1),i.qSk(),d.j41(4,"svg",3),d.nrm(5,"circle",4),d.k0s()(),i.joV(),d.j41(6,"div",5)(7,"div",6)(8,"div",7),d.eu8(9,8),d.k0s(),d.j41(10,"div",9),d.eu8(11,8),d.k0s(),d.j41(12,"div",10),d.eu8(13,8),d.k0s()()()),2&W){const re=d.sdS(1);d.R7$(4),d.BMQ("viewBox",G._viewBox()),d.R7$(),d.xc7("stroke-dasharray",G._strokeCircumference(),"px")("stroke-dashoffset",G._strokeDashOffset(),"px")("stroke-width",G._circleStrokeWidth(),"%"),d.BMQ("r",G._circleRadius()),d.R7$(4),d.Y8G("ngTemplateOutlet",re),d.R7$(2),d.Y8G("ngTemplateOutlet",re),d.R7$(2),d.Y8G("ngTemplateOutlet",re)}},dependencies:[T.T3],styles:[".mat-mdc-progress-spinner{--mat-progress-spinner-animation-multiplier: 1;display:block;overflow:hidden;line-height:0;position:relative;direction:ltr;transition:opacity 250ms cubic-bezier(0.4, 0, 0.6, 1)}.mat-mdc-progress-spinner circle{stroke-width:var(--mat-progress-spinner-active-indicator-width, 4px)}.mat-mdc-progress-spinner._mat-animation-noopable,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__determinate-circle{transition:none !important}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-circle-graphic,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__spinner-layer,.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container{animation:none !important}.mat-mdc-progress-spinner._mat-animation-noopable .mdc-circular-progress__indeterminate-container circle{stroke-dasharray:0 !important}@media(forced-colors: active){.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic,.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle{stroke:currentColor;stroke:CanvasText}}.mat-progress-spinner-reduced-motion{--mat-progress-spinner-animation-multiplier: 1.25}.mdc-circular-progress__determinate-container,.mdc-circular-progress__indeterminate-circle-graphic,.mdc-circular-progress__indeterminate-container,.mdc-circular-progress__spinner-layer{position:absolute;width:100%;height:100%}.mdc-circular-progress__determinate-container{transform:rotate(-90deg)}.mdc-circular-progress--indeterminate .mdc-circular-progress__determinate-container{opacity:0}.mdc-circular-progress__indeterminate-container{font-size:0;letter-spacing:0;white-space:nowrap;opacity:0}.mdc-circular-progress--indeterminate .mdc-circular-progress__indeterminate-container{opacity:1;animation:mdc-circular-progress-container-rotate calc(1568.2352941176ms*var(--mat-progress-spinner-animation-multiplier)) linear infinite}.mdc-circular-progress__determinate-circle-graphic,.mdc-circular-progress__indeterminate-circle-graphic{fill:rgba(0,0,0,0)}.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:var(--mat-progress-spinner-active-indicator-color, var(--mat-sys-primary))}@media(forced-colors: active){.mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:CanvasText}}.mdc-circular-progress__determinate-circle{transition:stroke-dashoffset 500ms cubic-bezier(0, 0, 0.2, 1)}.mdc-circular-progress__gap-patch{position:absolute;top:0;left:47.5%;box-sizing:border-box;width:5%;height:100%;overflow:hidden}.mdc-circular-progress__gap-patch .mdc-circular-progress__indeterminate-circle-graphic{left:-900%;width:2000%;transform:rotate(180deg)}.mdc-circular-progress__circle-clipper .mdc-circular-progress__indeterminate-circle-graphic{width:200%}.mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{left:-100%}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-left .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-left-spin calc(1333ms*var(--mat-progress-spinner-animation-multiplier)) cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress--indeterminate .mdc-circular-progress__circle-right .mdc-circular-progress__indeterminate-circle-graphic{animation:mdc-circular-progress-right-spin calc(1333ms*var(--mat-progress-spinner-animation-multiplier)) cubic-bezier(0.4, 0, 0.2, 1) infinite both}.mdc-circular-progress__circle-clipper{display:inline-flex;position:relative;width:50%;height:100%;overflow:hidden}.mdc-circular-progress--indeterminate .mdc-circular-progress__spinner-layer{animation:mdc-circular-progress-spinner-layer-rotate calc(5332ms*var(--mat-progress-spinner-animation-multiplier)) cubic-bezier(0.4, 0, 0.2, 1) infinite both}@keyframes mdc-circular-progress-container-rotate{to{transform:rotate(360deg)}}@keyframes mdc-circular-progress-spinner-layer-rotate{12.5%{transform:rotate(135deg)}25%{transform:rotate(270deg)}37.5%{transform:rotate(405deg)}50%{transform:rotate(540deg)}62.5%{transform:rotate(675deg)}75%{transform:rotate(810deg)}87.5%{transform:rotate(945deg)}100%{transform:rotate(1080deg)}}@keyframes mdc-circular-progress-left-spin{from{transform:rotate(265deg)}50%{transform:rotate(130deg)}to{transform:rotate(265deg)}}@keyframes mdc-circular-progress-right-spin{from{transform:rotate(-265deg)}50%{transform:rotate(-130deg)}to{transform:rotate(-265deg)}}\n"],encapsulation:2,changeDetection:0})}return Ce})(),le=(()=>{class Ce{static \u0275fac=function(W){return new(W||Ce)};static \u0275mod=d.$C({type:Ce});static \u0275inj=i.G2t({imports:[e.y]})}return Ce})()},483(Zt,pe,l){"use strict";l.d(pe,{O:()=>T});var i=l(2615),d=l(3664),v=l(2466);let T=(()=>{class w{static \u0275fac=function(f){return new(f||w)};static \u0275mod=d.$C({type:w});static \u0275inj=i.G2t({imports:[v.y]})}return w})()},3386(Zt,pe,l){"use strict";l.d(pe,{w:()=>v});var i=l(3664),d=l(1804);let v=(()=>{class T{_animationsDisabled=(0,d.Rc)();state="unchecked";disabled=!1;appearance="full";constructor(){}static \u0275fac=function(O){return new(O||T)};static \u0275cmp=i.VBU({type:T,selectors:[["mat-pseudo-checkbox"]],hostAttrs:[1,"mat-pseudo-checkbox"],hostVars:12,hostBindings:function(O,f){2&O&&i.AVh("mat-pseudo-checkbox-indeterminate","indeterminate"===f.state)("mat-pseudo-checkbox-checked","checked"===f.state)("mat-pseudo-checkbox-disabled",f.disabled)("mat-pseudo-checkbox-minimal","minimal"===f.appearance)("mat-pseudo-checkbox-full","full"===f.appearance)("_mat-animation-noopable",f._animationsDisabled)},inputs:{state:"state",disabled:"disabled",appearance:"appearance"},decls:0,vars:0,template:function(O,f){},styles:['.mat-pseudo-checkbox{border-radius:2px;cursor:pointer;display:inline-block;vertical-align:middle;box-sizing:border-box;position:relative;flex-shrink:0;transition:border-color 90ms cubic-bezier(0, 0, 0.2, 0.1),background-color 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox::after{position:absolute;opacity:0;content:"";border-bottom:2px solid currentColor;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 0.1)}.mat-pseudo-checkbox._mat-animation-noopable{transition:none !important;animation:none !important}.mat-pseudo-checkbox._mat-animation-noopable::after{transition:none}.mat-pseudo-checkbox-disabled{cursor:default}.mat-pseudo-checkbox-indeterminate::after{left:1px;opacity:1;border-radius:2px}.mat-pseudo-checkbox-checked::after{left:1px;border-left:2px solid currentColor;transform:rotate(-45deg);opacity:1;box-sizing:content-box}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after,.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate::after{color:var(--mat-pseudo-checkbox-minimal-selected-checkmark-color, var(--mat-sys-primary))}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled::after,.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled::after{color:var(--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-pseudo-checkbox-full{border-color:var(--mat-pseudo-checkbox-full-unselected-icon-color, var(--mat-sys-on-surface-variant));border-width:2px;border-style:solid}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-disabled{border-color:var(--mat-pseudo-checkbox-full-disabled-unselected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate{background-color:var(--mat-pseudo-checkbox-full-selected-icon-color, var(--mat-sys-primary));border-color:rgba(0,0,0,0)}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate::after{color:var(--mat-pseudo-checkbox-full-selected-checkmark-color, var(--mat-sys-on-primary))}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background-color:var(--mat-pseudo-checkbox-full-disabled-selected-icon-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled::after,.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled::after{color:var(--mat-pseudo-checkbox-full-disabled-selected-checkmark-color, var(--mat-sys-surface))}.mat-pseudo-checkbox{width:18px;height:18px}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after{width:14px;height:6px;transform-origin:center;top:-4.2426406871px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-indeterminate::after{top:8px;width:16px}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after{width:10px;height:4px;transform-origin:center;top:-2.8284271247px;left:0;bottom:0;right:0;margin:auto}.mat-pseudo-checkbox-full.mat-pseudo-checkbox-indeterminate::after{top:6px;width:12px}\n'],encapsulation:2,changeDetection:0})}return T})()},5951(Zt,pe,l){"use strict";l.d(pe,{VT:()=>Ee,Wk:()=>ce,_g:()=>V});var i=l(6838),d=l(9726),v=l(8689),T=l(2615),w=l(3664),e=l(7705),O=l(9417),f=l(8968),u=l(1804),L=l(2046),C=l(2496),B=l(3155),A=l(2466),Pe=l(6881);const le=["input"],Ce=["formField"],Ae=["*"];class j{source;value;constructor(ne,J){this.source=ne,this.value=J}}const W={provide:O.kq,useExisting:(0,T.Rfq)(()=>Ee),multi:!0},G=new T.nKC("MatRadioGroup"),re=new T.nKC("mat-radio-default-options",{providedIn:"root",factory:function xe(){return{color:"accent",disabledInteractive:!1}}});let Ee=(()=>{class be{_changeDetector=(0,T.WQX)(e.gRc);_value=null;_name=(0,T.WQX)(d.g).getId("mat-radio-group-");_selected=null;_isInitialized=!1;_labelPosition="after";_disabled=!1;_required=!1;_buttonChanges;_controlValueAccessorChangeFn=()=>{};onTouched=()=>{};change=new w.bkB;_radios;color;get name(){return this._name}set name(J){this._name=J,this._updateRadioButtonNames()}get labelPosition(){return this._labelPosition}set labelPosition(J){this._labelPosition="before"===J?"before":"after",this._markRadiosForCheck()}get value(){return this._value}set value(J){this._value!==J&&(this._value=J,this._updateSelectedRadioFromValue(),this._checkSelectedRadioButton())}_checkSelectedRadioButton(){this._selected&&!this._selected.checked&&(this._selected.checked=!0)}get selected(){return this._selected}set selected(J){this._selected=J,this.value=J?J.value:null,this._checkSelectedRadioButton()}get disabled(){return this._disabled}set disabled(J){this._disabled=J,this._markRadiosForCheck()}get required(){return this._required}set required(J){this._required=J,this._markRadiosForCheck()}get disabledInteractive(){return this._disabledInteractive}set disabledInteractive(J){this._disabledInteractive=J,this._markRadiosForCheck()}_disabledInteractive=!1;constructor(){}ngAfterContentInit(){this._isInitialized=!0,this._buttonChanges=this._radios.changes.subscribe(()=>{this.selected&&!this._radios.find(J=>J===this.selected)&&(this._selected=null)})}ngOnDestroy(){this._buttonChanges?.unsubscribe()}_touch(){this.onTouched&&this.onTouched()}_updateRadioButtonNames(){this._radios&&this._radios.forEach(J=>{J.name=this.name,J._markForCheck()})}_updateSelectedRadioFromValue(){this._radios&&(null===this._selected||this._selected.value!==this._value)&&(this._selected=null,this._radios.forEach(De=>{De.checked=this.value===De.value,De.checked&&(this._selected=De)}))}_emitChangeEvent(){this._isInitialized&&this.change.emit(new j(this._selected,this._value))}_markRadiosForCheck(){this._radios&&this._radios.forEach(J=>J._markForCheck())}writeValue(J){this.value=J,this._changeDetector.markForCheck()}registerOnChange(J){this._controlValueAccessorChangeFn=J}registerOnTouched(J){this.onTouched=J}setDisabledState(J){this.disabled=J,this._changeDetector.markForCheck()}static \u0275fac=function(De){return new(De||be)};static \u0275dir=w.FsC({type:be,selectors:[["mat-radio-group"]],contentQueries:function(De,Re,Xe){if(1&De&&w.wni(Xe,V,5),2&De){let _e;w.mGM(_e=w.lsd())&&(Re._radios=_e)}},hostAttrs:["role","radiogroup",1,"mat-mdc-radio-group"],inputs:{color:"color",name:"name",labelPosition:"labelPosition",value:"value",selected:"selected",disabled:[2,"disabled","disabled",e.L39],required:[2,"required","required",e.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",e.L39]},outputs:{change:"change"},exportAs:["matRadioGroup"],features:[w.Jv_([W,{provide:G,useExisting:be}])]})}return be})(),V=(()=>{class be{_elementRef=(0,T.WQX)(w.aKT);_changeDetector=(0,T.WQX)(e.gRc);_focusMonitor=(0,T.WQX)(i.FN);_radioDispatcher=(0,T.WQX)(v.z);_defaultOptions=(0,T.WQX)(re,{optional:!0});_ngZone=(0,T.WQX)(w.SKi);_renderer=(0,T.WQX)(w.sFG);_uniqueId=(0,T.WQX)(d.g).getId("mat-radio-");_cleanupClick;id=this._uniqueId;name;ariaLabel;ariaLabelledby;ariaDescribedby;disableRipple=!1;tabIndex=0;get checked(){return this._checked}set checked(J){this._checked!==J&&(this._checked=J,J&&this.radioGroup&&this.radioGroup.value!==this.value?this.radioGroup.selected=this:!J&&this.radioGroup&&this.radioGroup.value===this.value&&(this.radioGroup.selected=null),J&&this._radioDispatcher.notify(this.id,this.name),this._changeDetector.markForCheck())}get value(){return this._value}set value(J){this._value!==J&&(this._value=J,null!==this.radioGroup&&(this.checked||(this.checked=this.radioGroup.value===J),this.checked&&(this.radioGroup.selected=this)))}get labelPosition(){return this._labelPosition||this.radioGroup&&this.radioGroup.labelPosition||"after"}set labelPosition(J){this._labelPosition=J}_labelPosition;get disabled(){return this._disabled||null!==this.radioGroup&&this.radioGroup.disabled}set disabled(J){this._setDisabled(J)}get required(){return this._required||this.radioGroup&&this.radioGroup.required}set required(J){J!==this._required&&this._changeDetector.markForCheck(),this._required=J}get color(){return this._color||this.radioGroup&&this.radioGroup.color||this._defaultOptions&&this._defaultOptions.color||"accent"}set color(J){this._color=J}_color;get disabledInteractive(){return this._disabledInteractive||null!==this.radioGroup&&this.radioGroup.disabledInteractive}set disabledInteractive(J){this._disabledInteractive=J}_disabledInteractive;change=new w.bkB;radioGroup;get inputId(){return`${this.id||this._uniqueId}-input`}_checked=!1;_disabled;_required;_value=null;_removeUniqueSelectionListener=()=>{};_previousTabIndex;_inputElement;_rippleTrigger;_noopAnimations=(0,u.Rc)();_injector=(0,T.WQX)(T.zZn);constructor(){(0,T.WQX)(f.l).load(L.A);const J=(0,T.WQX)(G,{optional:!0}),De=(0,T.WQX)(new e.ES_("tabindex"),{optional:!0});this.radioGroup=J,this._disabledInteractive=this._defaultOptions?.disabledInteractive??!1,De&&(this.tabIndex=(0,e.Udg)(De,0))}focus(J,De){De?this._focusMonitor.focusVia(this._inputElement,De,J):this._inputElement.nativeElement.focus(J)}_markForCheck(){this._changeDetector.markForCheck()}ngOnInit(){this.radioGroup&&(this.checked=this.radioGroup.value===this._value,this.checked&&(this.radioGroup.selected=this),this.name=this.radioGroup.name),this._removeUniqueSelectionListener=this._radioDispatcher.listen((J,De)=>{J!==this.id&&De===this.name&&(this.checked=!1)})}ngDoCheck(){this._updateTabIndex()}ngAfterViewInit(){this._updateTabIndex(),this._focusMonitor.monitor(this._elementRef,!0).subscribe(J=>{!J&&this.radioGroup&&this.radioGroup._touch()}),this._ngZone.runOutsideAngular(()=>{this._cleanupClick=this._renderer.listen(this._inputElement.nativeElement,"click",this._onInputClick)})}ngOnDestroy(){this._cleanupClick?.(),this._focusMonitor.stopMonitoring(this._elementRef),this._removeUniqueSelectionListener()}_emitChangeEvent(){this.change.emit(new j(this,this._value))}_isRippleDisabled(){return this.disableRipple||this.disabled}_onInputInteraction(J){if(J.stopPropagation(),!this.checked&&!this.disabled){const De=this.radioGroup&&this.value!==this.radioGroup.value;this.checked=!0,this._emitChangeEvent(),this.radioGroup&&(this.radioGroup._controlValueAccessorChangeFn(this.value),De&&this.radioGroup._emitChangeEvent())}}_onTouchTargetClick(J){this._onInputInteraction(J),(!this.disabled||this.disabledInteractive)&&this._inputElement?.nativeElement.focus()}_setDisabled(J){this._disabled!==J&&(this._disabled=J,this._changeDetector.markForCheck())}_onInputClick=J=>{this.disabled&&this.disabledInteractive&&J.preventDefault()};_updateTabIndex(){const J=this.radioGroup;let De;if(De=J&&J.selected&&!this.disabled?J.selected===this?this.tabIndex:-1:this.tabIndex,De!==this._previousTabIndex){const Re=this._inputElement?.nativeElement;Re&&(Re.setAttribute("tabindex",De+""),this._previousTabIndex=De,(0,w.mal)(()=>{queueMicrotask(()=>{J&&J.selected&&J.selected!==this&&document.activeElement===Re&&(J.selected?._inputElement.nativeElement.focus(),document.activeElement===Re&&this._inputElement.nativeElement.blur())})},{injector:this._injector}))}}static \u0275fac=function(De){return new(De||be)};static \u0275cmp=w.VBU({type:be,selectors:[["mat-radio-button"]],viewQuery:function(De,Re){if(1&De&&(w.GBs(le,5),w.GBs(Ce,7,w.aKT)),2&De){let Xe;w.mGM(Xe=w.lsd())&&(Re._inputElement=Xe.first),w.mGM(Xe=w.lsd())&&(Re._rippleTrigger=Xe.first)}},hostAttrs:[1,"mat-mdc-radio-button"],hostVars:19,hostBindings:function(De,Re){1&De&&w.bIt("focus",function(){return Re._inputElement.nativeElement.focus()}),2&De&&(w.BMQ("id",Re.id)("tabindex",null)("aria-label",null)("aria-labelledby",null)("aria-describedby",null),w.AVh("mat-primary","primary"===Re.color)("mat-accent","accent"===Re.color)("mat-warn","warn"===Re.color)("mat-mdc-radio-checked",Re.checked)("mat-mdc-radio-disabled",Re.disabled)("mat-mdc-radio-disabled-interactive",Re.disabledInteractive)("_mat-animation-noopable",Re._noopAnimations))},inputs:{id:"id",name:"name",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],disableRipple:[2,"disableRipple","disableRipple",e.L39],tabIndex:[2,"tabIndex","tabIndex",J=>null==J?0:(0,e.Udg)(J)],checked:[2,"checked","checked",e.L39],value:"value",labelPosition:"labelPosition",disabled:[2,"disabled","disabled",e.L39],required:[2,"required","required",e.L39],color:"color",disabledInteractive:[2,"disabledInteractive","disabledInteractive",e.L39]},outputs:{change:"change"},exportAs:["matRadioButton"],ngContentSelectors:Ae,decls:13,vars:17,consts:[["formField",""],["input",""],["mat-internal-form-field","",3,"labelPosition"],[1,"mdc-radio"],[1,"mat-mdc-radio-touch-target",3,"click"],["type","radio","aria-invalid","false",1,"mdc-radio__native-control",3,"change","id","checked","disabled","required"],[1,"mdc-radio__background"],[1,"mdc-radio__outer-circle"],[1,"mdc-radio__inner-circle"],["mat-ripple","",1,"mat-radio-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mat-ripple-element","mat-radio-persistent-ripple"],[1,"mdc-label",3,"for"]],template:function(De,Re){if(1&De){const Xe=w.RV6();w.NAR(),w.j41(0,"div",2,0)(2,"div",3)(3,"div",4),w.bIt("click",function(he){return T.eBV(Xe),T.Njj(Re._onTouchTargetClick(he))}),w.k0s(),w.j41(4,"input",5,1),w.bIt("change",function(he){return T.eBV(Xe),T.Njj(Re._onInputInteraction(he))}),w.k0s(),w.j41(6,"div",6),w.nrm(7,"div",7)(8,"div",8),w.k0s(),w.j41(9,"div",9),w.nrm(10,"div",10),w.k0s()(),w.j41(11,"label",11),w.SdG(12),w.k0s()()}2&De&&(w.Y8G("labelPosition",Re.labelPosition),w.R7$(2),w.AVh("mdc-radio--disabled",Re.disabled),w.R7$(2),w.Y8G("id",Re.inputId)("checked",Re.checked)("disabled",Re.disabled&&!Re.disabledInteractive)("required",Re.required),w.BMQ("name",Re.name)("value",Re.value)("aria-label",Re.ariaLabel)("aria-labelledby",Re.ariaLabelledby)("aria-describedby",Re.ariaDescribedby)("aria-disabled",Re.disabled&&Re.disabledInteractive?"true":null),w.R7$(5),w.Y8G("matRippleTrigger",Re._rippleTrigger.nativeElement)("matRippleDisabled",Re._isRippleDisabled())("matRippleCentered",!0),w.R7$(2),w.Y8G("for",Re.inputId))},dependencies:[C.r6,B.t],styles:['.mat-mdc-radio-button{-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-mdc-radio-button .mdc-radio{display:inline-block;position:relative;flex:0 0 auto;box-sizing:content-box;width:20px;height:20px;cursor:pointer;will-change:opacity,transform,border-color,color;padding:calc((var(--mat-radio-state-layer-size, 40px) - 20px)/2)}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:not([disabled]):not(:focus)~.mdc-radio__background::before{opacity:.04;transform:scale(1)}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:not([disabled])~.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-unselected-hover-icon-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-selected-hover-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio:hover>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-selected-hover-icon-color, var(--mat-sys-primary, currentColor))}.mat-mdc-radio-button .mdc-radio:active>.mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-unselected-pressed-icon-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button .mdc-radio:active>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-selected-pressed-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio:active>.mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-selected-pressed-icon-color, var(--mat-sys-primary, currentColor))}.mat-mdc-radio-button .mdc-radio__background{display:inline-block;position:relative;box-sizing:border-box;width:20px;height:20px}.mat-mdc-radio-button .mdc-radio__background::before{position:absolute;transform:scale(0, 0);border-radius:50%;opacity:0;pointer-events:none;content:"";transition:opacity 90ms cubic-bezier(0.4, 0, 0.6, 1),transform 90ms cubic-bezier(0.4, 0, 0.6, 1);width:var(--mat-radio-state-layer-size, 40px);height:var(--mat-radio-state-layer-size, 40px);top:calc(-1*(var(--mat-radio-state-layer-size, 40px) - 20px)/2);left:calc(-1*(var(--mat-radio-state-layer-size, 40px) - 20px)/2)}.mat-mdc-radio-button .mdc-radio__outer-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;border-width:2px;border-style:solid;border-radius:50%;transition:border-color 90ms cubic-bezier(0.4, 0, 0.6, 1)}.mat-mdc-radio-button .mdc-radio__inner-circle{position:absolute;top:0;left:0;box-sizing:border-box;width:100%;height:100%;transform:scale(0);border-radius:50%;transition:transform 90ms cubic-bezier(0.4, 0, 0.6, 1),background-color 90ms cubic-bezier(0.4, 0, 0.6, 1)}@media(forced-colors: active){.mat-mdc-radio-button .mdc-radio__inner-circle{background-color:CanvasText !important}}.mat-mdc-radio-button .mdc-radio__native-control{position:absolute;margin:0;padding:0;opacity:0;top:0;right:0;left:0;cursor:inherit;z-index:1;width:var(--mat-radio-state-layer-size, 40px);height:var(--mat-radio-state-layer-size, 40px)}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background,.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background{transition:opacity 90ms cubic-bezier(0, 0, 0.2, 1),transform 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__outer-circle{transition:border-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__inner-circle{transition:transform 90ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:focus+.mdc-radio__background::before{transform:scale(1);opacity:.12;transition:opacity 90ms cubic-bezier(0, 0, 0.2, 1),transform 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button .mdc-radio__native-control:disabled:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-disabled-unselected-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-radio-disabled-unselected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background{cursor:default}.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-disabled-selected-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio__native-control:disabled+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-disabled-selected-icon-color, var(--mat-sys-on-surface, currentColor));opacity:var(--mat-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button .mdc-radio__native-control:enabled:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-unselected-icon-color, var(--mat-sys-on-surface-variant))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-selected-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:checked+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-selected-icon-color, var(--mat-sys-primary, currentColor))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:focus:checked+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-selected-focus-icon-color, var(--mat-sys-primary))}.mat-mdc-radio-button .mdc-radio__native-control:enabled:focus:checked+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-selected-focus-icon-color, var(--mat-sys-primary, currentColor))}.mat-mdc-radio-button .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__inner-circle{transform:scale(0.5);transition:transform 90ms cubic-bezier(0, 0, 0.2, 1),background-color 90ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled{pointer-events:auto}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control:not(:checked)+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-disabled-unselected-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-radio-disabled-unselected-icon-opacity, 0.38)}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled:hover .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control:checked:focus+.mdc-radio__background>.mdc-radio__outer-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control+.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-disabled-selected-icon-color, var(--mat-sys-on-surface));opacity:var(--mat-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled:hover .mdc-radio__native-control:checked+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control:checked:focus+.mdc-radio__background>.mdc-radio__inner-circle,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__native-control+.mdc-radio__background>.mdc-radio__inner-circle{background-color:var(--mat-radio-disabled-selected-icon-color, var(--mat-sys-on-surface, currentColor));opacity:var(--mat-radio-disabled-selected-icon-opacity, 0.38)}.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__background::before,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__outer-circle,.mat-mdc-radio-button._mat-animation-noopable .mdc-radio__inner-circle{transition:none !important}.mat-mdc-radio-button label{cursor:pointer}.mat-mdc-radio-button .mdc-radio__background::before{background-color:var(--mat-radio-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button.mat-mdc-radio-checked .mat-ripple-element,.mat-mdc-radio-button.mat-mdc-radio-checked .mdc-radio__background::before{background-color:var(--mat-radio-checked-ripple-color, var(--mat-sys-primary))}.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mat-ripple-element,.mat-mdc-radio-button.mat-mdc-radio-disabled-interactive .mdc-radio--disabled .mdc-radio__background::before{background-color:var(--mat-radio-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button .mat-internal-form-field{color:var(--mat-radio-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-radio-label-text-font, var(--mat-sys-body-medium-font));line-height:var(--mat-radio-label-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-radio-label-text-size, var(--mat-sys-body-medium-size));letter-spacing:var(--mat-radio-label-text-tracking, var(--mat-sys-body-medium-tracking));font-weight:var(--mat-radio-label-text-weight, var(--mat-sys-body-medium-weight))}.mat-mdc-radio-button .mdc-radio--disabled+label{color:var(--mat-radio-disabled-label-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-radio-button .mat-radio-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none;border-radius:50%}.mat-mdc-radio-button .mat-radio-ripple>.mat-ripple-element{opacity:.14}.mat-mdc-radio-button .mat-radio-ripple::before{border-radius:50%}.mat-mdc-radio-button .mdc-radio>.mdc-radio__native-control:focus:enabled:not(:checked)~.mdc-radio__background>.mdc-radio__outer-circle{border-color:var(--mat-radio-unselected-focus-icon-color, var(--mat-sys-on-surface))}.mat-mdc-radio-button.cdk-focused .mat-focus-indicator::before{content:""}.mat-mdc-radio-disabled{cursor:default;pointer-events:none}.mat-mdc-radio-disabled.mat-mdc-radio-disabled-interactive{pointer-events:auto}.mat-mdc-radio-touch-target{position:absolute;top:50%;left:50%;height:var(--mat-radio-touch-target-size, 48px);width:var(--mat-radio-touch-target-size, 48px);transform:translate(-50%, -50%);display:var(--mat-radio-touch-target-display, block)}[dir=rtl] .mat-mdc-radio-touch-target{left:auto;right:50%;transform:translate(50%, -50%)}\n'],encapsulation:2,changeDetection:0})}return be})(),ce=(()=>{class be{static \u0275fac=function(De){return new(De||be)};static \u0275mod=w.$C({type:be});static \u0275inj=T.G2t({imports:[A.y,Pe.p,V,A.y]})}return be})()},1048(Zt,pe,l){"use strict";l.d(pe,{E:()=>A});var i=l(2615),d=l(3664),v=l(9842),T=l(4522),w=l(1804),e=l(2496);const O={capture:!0},f=["focus","mousedown","mouseenter","touchstart"],u="mat-ripple-loader-uninitialized",L="mat-ripple-loader-class-name",C="mat-ripple-loader-centered",B="mat-ripple-loader-disabled";let A=(()=>{class Pe{_document=(0,i.WQX)(i.qQL);_animationsDisabled=(0,w.Rc)();_globalRippleOptions=(0,i.WQX)(e.$E,{optional:!0});_platform=(0,i.WQX)(v.O);_ngZone=(0,i.WQX)(d.SKi);_injector=(0,i.WQX)(i.zZn);_eventCleanups;_hosts=new Map;constructor(){const Ce=(0,i.WQX)(d._9s).createRenderer(null,null);this._eventCleanups=this._ngZone.runOutsideAngular(()=>f.map(Ae=>Ce.listen(this._document,Ae,this._onInteraction,O)))}ngOnDestroy(){const Ce=this._hosts.keys();for(const Ae of Ce)this.destroyRipple(Ae);this._eventCleanups.forEach(Ae=>Ae())}configureRipple(Ce,Ae){Ce.setAttribute(u,this._globalRippleOptions?.namespace??""),(Ae.className||!Ce.hasAttribute(L))&&Ce.setAttribute(L,Ae.className||""),Ae.centered&&Ce.setAttribute(C,""),Ae.disabled&&Ce.setAttribute(B,"")}setDisabled(Ce,Ae){const j=this._hosts.get(Ce);j?(j.target.rippleDisabled=Ae,!Ae&&!j.hasSetUpEvents&&(j.hasSetUpEvents=!0,j.renderer.setupTriggerEvents(Ce))):Ae?Ce.setAttribute(B,""):Ce.removeAttribute(B)}_onInteraction=Ce=>{const Ae=(0,T.Fb)(Ce);if(Ae instanceof HTMLElement){const j=Ae.closest(`[${u}="${this._globalRippleOptions?.namespace??""}"]`);j&&this._createRipple(j)}};_createRipple(Ce){if(!this._document||this._hosts.has(Ce))return;Ce.querySelector(".mat-ripple")?.remove();const Ae=this._document.createElement("span");Ae.classList.add("mat-ripple",Ce.getAttribute(L)),Ce.append(Ae);const j=this._globalRippleOptions,W=this._animationsDisabled?0:j?.animation?.enterDuration??e.EX.enterDuration,G=this._animationsDisabled?0:j?.animation?.exitDuration??e.EX.exitDuration,re={rippleDisabled:this._animationsDisabled||j?.disabled||Ce.hasAttribute(B),rippleConfig:{centered:Ce.hasAttribute(C),terminateOnPointerUp:j?.terminateOnPointerUp,animation:{enterDuration:W,exitDuration:G}}},xe=new e.ug(re,this._ngZone,Ae,this._platform,this._injector),Ee=!re.rippleDisabled;Ee&&xe.setupTriggerEvents(Ce),this._hosts.set(Ce,{target:re,renderer:xe,hasSetUpEvents:Ee}),Ce.removeAttribute(u)}destroyRipple(Ce){const Ae=this._hosts.get(Ce);Ae&&(Ae.renderer._removeTriggerEvents(),this._hosts.delete(Ce))}static \u0275fac=function(Ae){return new(Ae||Pe)};static \u0275prov=i.jDH({token:Pe,factory:Pe.\u0275fac,providedIn:"root"})}return Pe})()},6881(Zt,pe,l){"use strict";l.d(pe,{p:()=>T});var i=l(2615),d=l(3664),v=l(2466);let T=(()=>{class w{static \u0275fac=function(f){return new(f||w)};static \u0275mod=d.$C({type:w});static \u0275inj=i.G2t({imports:[v.y,v.y]})}return w})()},2496(Zt,pe,l){"use strict";l.d(pe,{$E:()=>xe,EX:()=>Pe,r6:()=>Ee,ug:()=>G});var i=l(9842),d=l(3300),v=l(4522),T=l(3664),w=l(2615),e=l(5735),O=l(7847),f=l(8968),u=l(1804),L=function(V){return V[V.FADING_IN=0]="FADING_IN",V[V.VISIBLE=1]="VISIBLE",V[V.FADING_OUT=2]="FADING_OUT",V[V.HIDDEN=3]="HIDDEN",V}(L||{});class C{_renderer;element;config;_animationForciblyDisabledThroughCss;state=L.HIDDEN;constructor(ce,be,ne,J=!1){this._renderer=ce,this.element=be,this.config=ne,this._animationForciblyDisabledThroughCss=J}fadeOut(){this._renderer.fadeOutRipple(this)}}const B=(0,d.B)({passive:!0,capture:!0});class A{_events=new Map;addHandler(ce,be,ne,J){const De=this._events.get(be);if(De){const Re=De.get(ne);Re?Re.add(J):De.set(ne,new Set([J]))}else this._events.set(be,new Map([[ne,new Set([J])]])),ce.runOutsideAngular(()=>{document.addEventListener(be,this._delegateEventHandler,B)})}removeHandler(ce,be,ne){const J=this._events.get(ce);if(!J)return;const De=J.get(be);De&&(De.delete(ne),0===De.size&&J.delete(be),0===J.size&&(this._events.delete(ce),document.removeEventListener(ce,this._delegateEventHandler,B)))}_delegateEventHandler=ce=>{const be=(0,v.Fb)(ce);be&&this._events.get(ce.type)?.forEach((ne,J)=>{(J===be||J.contains(be))&&ne.forEach(De=>De.handleEvent(ce))})}}const Pe={enterDuration:225,exitDuration:150},Ce=(0,d.B)({passive:!0,capture:!0}),Ae=["mousedown","touchstart"],j=["mouseup","mouseleave","touchend","touchcancel"];let W=(()=>{class V{static \u0275fac=function(ne){return new(ne||V)};static \u0275cmp=T.VBU({type:V,selectors:[["ng-component"]],hostAttrs:["mat-ripple-style-loader",""],decls:0,vars:0,template:function(ne,J){},styles:[".mat-ripple{overflow:hidden;position:relative}.mat-ripple:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0, 0, 0.2, 1);transform:scale3d(0, 0, 0);background-color:var(--mat-ripple-color, color-mix(in srgb, var(--mat-sys-on-surface) 10%, transparent))}@media(forced-colors: active){.mat-ripple-element{display:none}}.cdk-drag-preview .mat-ripple-element,.cdk-drag-placeholder .mat-ripple-element{display:none}\n"],encapsulation:2,changeDetection:0})}return V})();class G{_target;_ngZone;_platform;_containerElement;_triggerElement;_isPointerDown=!1;_activeRipples=new Map;_mostRecentTransientRipple;_lastTouchStartEvent;_pointerUpEventsRegistered=!1;_containerRect;static _eventManager=new A;constructor(ce,be,ne,J,De){this._target=ce,this._ngZone=be,this._platform=J,J.isBrowser&&(this._containerElement=(0,O.i8)(ne)),De&&De.get(f.l).load(W)}fadeInRipple(ce,be,ne={}){const J=this._containerRect=this._containerRect||this._containerElement.getBoundingClientRect(),De={...Pe,...ne.animation};ne.centered&&(ce=J.left+J.width/2,be=J.top+J.height/2);const Re=ne.radius||function re(V,ce,be){const ne=Math.max(Math.abs(V-be.left),Math.abs(V-be.right)),J=Math.max(Math.abs(ce-be.top),Math.abs(ce-be.bottom));return Math.sqrt(ne*ne+J*J)}(ce,be,J),Xe=ce-J.left,_e=be-J.top,he=De.enterDuration,Dt=document.createElement("div");Dt.classList.add("mat-ripple-element"),Dt.style.left=Xe-Re+"px",Dt.style.top=_e-Re+"px",Dt.style.height=2*Re+"px",Dt.style.width=2*Re+"px",null!=ne.color&&(Dt.style.backgroundColor=ne.color),Dt.style.transitionDuration=`${he}ms`,this._containerElement.appendChild(Dt);const lt=window.getComputedStyle(Dt),te=lt.transitionDuration,ie="none"===lt.transitionProperty||"0s"===te||"0s, 0s"===te||0===J.width&&0===J.height,P=new C(this,Dt,ne,ie);Dt.style.transform="scale3d(1, 1, 1)",P.state=L.FADING_IN,ne.persistent||(this._mostRecentTransientRipple=P);let F=null;return!ie&&(he||De.exitDuration)&&this._ngZone.runOutsideAngular(()=>{const ve=()=>{F&&(F.fallbackTimer=null),clearTimeout($),this._finishRippleTransition(P)},H=()=>this._destroyRipple(P),$=setTimeout(H,he+100);Dt.addEventListener("transitionend",ve),Dt.addEventListener("transitioncancel",H),F={onTransitionEnd:ve,onTransitionCancel:H,fallbackTimer:$}}),this._activeRipples.set(P,F),(ie||!he)&&this._finishRippleTransition(P),P}fadeOutRipple(ce){if(ce.state===L.FADING_OUT||ce.state===L.HIDDEN)return;const be=ce.element,ne={...Pe,...ce.config.animation};be.style.transitionDuration=`${ne.exitDuration}ms`,be.style.opacity="0",ce.state=L.FADING_OUT,(ce._animationForciblyDisabledThroughCss||!ne.exitDuration)&&this._finishRippleTransition(ce)}fadeOutAll(){this._getActiveRipples().forEach(ce=>ce.fadeOut())}fadeOutAllNonPersistent(){this._getActiveRipples().forEach(ce=>{ce.config.persistent||ce.fadeOut()})}setupTriggerEvents(ce){const be=(0,O.i8)(ce);!this._platform.isBrowser||!be||be===this._triggerElement||(this._removeTriggerEvents(),this._triggerElement=be,Ae.forEach(ne=>{G._eventManager.addHandler(this._ngZone,ne,be,this)}))}handleEvent(ce){"mousedown"===ce.type?this._onMousedown(ce):"touchstart"===ce.type?this._onTouchStart(ce):this._onPointerUp(),this._pointerUpEventsRegistered||(this._ngZone.runOutsideAngular(()=>{j.forEach(be=>{this._triggerElement.addEventListener(be,this,Ce)})}),this._pointerUpEventsRegistered=!0)}_finishRippleTransition(ce){ce.state===L.FADING_IN?this._startFadeOutTransition(ce):ce.state===L.FADING_OUT&&this._destroyRipple(ce)}_startFadeOutTransition(ce){const be=ce===this._mostRecentTransientRipple,{persistent:ne}=ce.config;ce.state=L.VISIBLE,!ne&&(!be||!this._isPointerDown)&&ce.fadeOut()}_destroyRipple(ce){const be=this._activeRipples.get(ce)??null;this._activeRipples.delete(ce),this._activeRipples.size||(this._containerRect=null),ce===this._mostRecentTransientRipple&&(this._mostRecentTransientRipple=null),ce.state=L.HIDDEN,null!==be&&(ce.element.removeEventListener("transitionend",be.onTransitionEnd),ce.element.removeEventListener("transitioncancel",be.onTransitionCancel),null!==be.fallbackTimer&&clearTimeout(be.fallbackTimer)),ce.element.remove()}_onMousedown(ce){const be=(0,e._)(ce),ne=this._lastTouchStartEvent&&Date.now(){!ce.config.persistent&&(ce.state===L.VISIBLE||ce.config.terminateOnPointerUp&&ce.state===L.FADING_IN)&&ce.fadeOut()}))}_getActiveRipples(){return Array.from(this._activeRipples.keys())}_removeTriggerEvents(){const ce=this._triggerElement;ce&&(Ae.forEach(be=>G._eventManager.removeHandler(be,ce,this)),this._pointerUpEventsRegistered&&(j.forEach(be=>ce.removeEventListener(be,this,Ce)),this._pointerUpEventsRegistered=!1))}}const xe=new w.nKC("mat-ripple-global-options");let Ee=(()=>{class V{_elementRef=(0,w.WQX)(T.aKT);_animationsDisabled=(0,u.Rc)();color;unbounded;centered;radius=0;animation;get disabled(){return this._disabled}set disabled(be){be&&this.fadeOutAllNonPersistent(),this._disabled=be,this._setupTriggerEventsIfEnabled()}_disabled=!1;get trigger(){return this._trigger||this._elementRef.nativeElement}set trigger(be){this._trigger=be,this._setupTriggerEventsIfEnabled()}_trigger;_rippleRenderer;_globalOptions;_isInitialized=!1;constructor(){const be=(0,w.WQX)(T.SKi),ne=(0,w.WQX)(i.O),J=(0,w.WQX)(xe,{optional:!0}),De=(0,w.WQX)(w.zZn);this._globalOptions=J||{},this._rippleRenderer=new G(this,be,this._elementRef,ne,De)}ngOnInit(){this._isInitialized=!0,this._setupTriggerEventsIfEnabled()}ngOnDestroy(){this._rippleRenderer._removeTriggerEvents()}fadeOutAll(){this._rippleRenderer.fadeOutAll()}fadeOutAllNonPersistent(){this._rippleRenderer.fadeOutAllNonPersistent()}get rippleConfig(){return{centered:this.centered,radius:this.radius,color:this.color,animation:{...this._globalOptions.animation,...this._animationsDisabled?{enterDuration:0,exitDuration:0}:{},...this.animation},terminateOnPointerUp:this._globalOptions.terminateOnPointerUp}}get rippleDisabled(){return this.disabled||!!this._globalOptions.disabled}_setupTriggerEventsIfEnabled(){!this.disabled&&this._isInitialized&&this._rippleRenderer.setupTriggerEvents(this.trigger)}launch(be,ne=0,J){return"number"==typeof be?this._rippleRenderer.fadeInRipple(be,ne,{...this.rippleConfig,...J}):this._rippleRenderer.fadeInRipple(0,0,{...this.rippleConfig,...be})}static \u0275fac=function(ne){return new(ne||V)};static \u0275dir=T.FsC({type:V,selectors:[["","mat-ripple",""],["","matRipple",""]],hostAttrs:[1,"mat-ripple"],hostVars:2,hostBindings:function(ne,J){2&ne&&T.AVh("mat-ripple-unbounded",J.unbounded)},inputs:{color:[0,"matRippleColor","color"],unbounded:[0,"matRippleUnbounded","unbounded"],centered:[0,"matRippleCentered","centered"],radius:[0,"matRippleRadius","radius"],animation:[0,"matRippleAnimation","animation"],disabled:[0,"matRippleDisabled","disabled"],trigger:[0,"matRippleTrigger","trigger"]},exportAs:["matRipple"]})}return V})()},6183(Zt,pe,l){"use strict";l.d(pe,{$2:()=>fe,JO:()=>ot,VO:()=>Ye,Ve:()=>Qe});var i=l(9338),d=l(2615),v=l(3664),T=l(7705),w=l(5718),e=l(8617),O=l(7094),f=l(9726),u=l(9090),L=l(1577),C=l(3869),B=l(7336),A=l(438),Pe=l(9417),le=l(1413),Ce=l(9030),Ae=l(7786),j=l(5964),W=l(6354),G=l(9172),re=l(5558),xe=l(6697),Ee=l(6977),V=l(2200),ce=l(9588),be=l(1804),ne=l(3029),J=l(2709),De=l(9336),Re=l(146),Xe=l(2466),_e=l(1228);const he=["trigger"],Dt=["panel"],lt=[[["mat-select-trigger"]],"*"],Le=["mat-select-trigger","*"];function te(gt,Gt){if(1>&&(v.j41(0,"span",4),v.EFF(1),v.k0s()),2>){const rt=v.XpG();v.R7$(),v.JRh(rt.placeholder)}}function ie(gt,Gt){1>&&v.SdG(0)}function P(gt,Gt){if(1>&&(v.j41(0,"span",11),v.EFF(1),v.k0s()),2>){const rt=v.XpG(2);v.R7$(),v.JRh(rt.triggerValue)}}function F(gt,Gt){if(1>&&(v.j41(0,"span",5),v.nVh(1,ie,1,0)(2,P,2,1,"span",11),v.k0s()),2>){const rt=v.XpG();v.R7$(),v.vxM(rt.customTrigger?1:2)}}function ve(gt,Gt){if(1>){const rt=v.RV6();v.j41(0,"div",12,1),v.bIt("keydown",function(Ft){d.eBV(rt);const Sn=v.XpG();return d.Njj(Sn._handleKeydown(Ft))}),v.SdG(2,1),v.k0s()}if(2>){const rt=v.XpG();v.HbH(v.VkB("mat-mdc-select-panel mdc-menu-surface mdc-menu-surface--open ",rt._getPanelTheme())),v.AVh("mat-select-panel-animations-enabled",!rt._animationsDisabled),v.Y8G("ngClass",rt.panelClass),v.BMQ("id",rt.id+"-panel")("aria-multiselectable",rt.multiple)("aria-label",rt.ariaLabel||null)("aria-labelledby",rt._getPanelAriaLabelledby())}}const Vt=new d.nKC("mat-select-scroll-strategy",{providedIn:"root",factory:()=>{const gt=(0,d.WQX)(d.zZn);return()=>(0,i.RH)(gt)}}),ot=new d.nKC("MAT_SELECT_CONFIG"),nt={provide:Vt,deps:[],useFactory:function St(gt){const Gt=(0,d.WQX)(d.zZn);return()=>(0,i.RH)(Gt)}},ht=new d.nKC("MatSelectTrigger");class oe{source;value;constructor(Gt,rt){this.source=Gt,this.value=rt}}let Ye=(()=>{class gt{_viewportRuler=(0,d.WQX)(w.Xj);_changeDetectorRef=(0,d.WQX)(T.gRc);_elementRef=(0,d.WQX)(v.aKT);_dir=(0,d.WQX)(L.dS,{optional:!0});_idGenerator=(0,d.WQX)(f.g);_renderer=(0,d.WQX)(v.sFG);_parentFormField=(0,d.WQX)(ce.xb,{optional:!0});ngControl=(0,d.WQX)(Pe.vO,{self:!0,optional:!0});_liveAnnouncer=(0,d.WQX)(O.Ai);_defaultOptions=(0,d.WQX)(ot,{optional:!0});_animationsDisabled=(0,be.Rc)();_initialized=new le.B;_cleanupDetach;options;optionGroups;customTrigger;_positions=[{originX:"start",originY:"bottom",overlayX:"start",overlayY:"top"},{originX:"end",originY:"bottom",overlayX:"end",overlayY:"top"},{originX:"start",originY:"top",overlayX:"start",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"},{originX:"end",originY:"top",overlayX:"end",overlayY:"bottom",panelClass:"mat-mdc-select-panel-above"}];_scrollOptionIntoView(rt){const cn=this.options.toArray()[rt];if(cn){const Ft=this.panel.nativeElement,Sn=(0,ne.jb)(rt,this.options,this.optionGroups),Qn=cn._getHostElement();Ft.scrollTop=0===rt&&1===Sn?0:(0,ne.TL)(Qn.offsetTop,Qn.offsetHeight,Ft.scrollTop,Ft.offsetHeight)}}_positioningSettled(){this._scrollOptionIntoView(this._keyManager.activeItemIndex||0)}_getChangeEvent(rt){return new oe(this,rt)}_scrollStrategyFactory=(0,d.WQX)(Vt);_panelOpen=!1;_compareWith=(rt,cn)=>rt===cn;_uid=this._idGenerator.getId("mat-select-");_triggerAriaLabelledBy=null;_previousControl;_destroy=new le.B;_errorStateTracker;stateChanges=new le.B;disableAutomaticLabeling=!0;userAriaDescribedBy;_selectionModel;_keyManager;_preferredOverlayOrigin;_overlayWidth;_onChange=()=>{};_onTouched=()=>{};_valueId=this._idGenerator.getId("mat-select-value-");_scrollStrategy;_overlayPanelClass=this._defaultOptions?.overlayPanelClass||"";get focused(){return this._focused||this._panelOpen}_focused=!1;controlType="mat-select";trigger;panel;_overlayDir;panelClass;disabled=!1;get disableRipple(){return this._disableRipple()}set disableRipple(rt){this._disableRipple.set(rt)}_disableRipple=(0,d.vPA)(!1);tabIndex=0;get hideSingleSelectionIndicator(){return this._hideSingleSelectionIndicator}set hideSingleSelectionIndicator(rt){this._hideSingleSelectionIndicator=rt,this._syncParentProperties()}_hideSingleSelectionIndicator=this._defaultOptions?.hideSingleSelectionIndicator??!1;get placeholder(){return this._placeholder}set placeholder(rt){this._placeholder=rt,this.stateChanges.next()}_placeholder;get required(){return this._required??this.ngControl?.control?.hasValidator(Pe.k0.required)??!1}set required(rt){this._required=rt,this.stateChanges.next()}_required;get multiple(){return this._multiple}set multiple(rt){this._multiple=rt}_multiple=!1;disableOptionCentering=this._defaultOptions?.disableOptionCentering??!1;get compareWith(){return this._compareWith}set compareWith(rt){this._compareWith=rt,this._selectionModel&&this._initializeSelection()}get value(){return this._value}set value(rt){this._assignValue(rt)&&this._onChange(rt)}_value;ariaLabel="";ariaLabelledby;get errorStateMatcher(){return this._errorStateTracker.matcher}set errorStateMatcher(rt){this._errorStateTracker.matcher=rt}typeaheadDebounceInterval;sortComparator;get id(){return this._id}set id(rt){this._id=rt||this._uid,this.stateChanges.next()}_id;get errorState(){return this._errorStateTracker.errorState}set errorState(rt){this._errorStateTracker.errorState=rt}panelWidth=this._defaultOptions&&typeof this._defaultOptions.panelWidth<"u"?this._defaultOptions.panelWidth:"auto";canSelectNullableOptions=this._defaultOptions?.canSelectNullableOptions??!1;optionSelectionChanges=(0,Ce.v)(()=>{const rt=this.options;return rt?rt.changes.pipe((0,G.Z)(rt),(0,re.n)(()=>(0,Ae.h)(...rt.map(cn=>cn.onSelectionChange)))):this._initialized.pipe((0,re.n)(()=>this.optionSelectionChanges))});openedChange=new v.bkB;_openedStream=this.openedChange.pipe((0,j.p)(rt=>rt),(0,W.T)(()=>{}));_closedStream=this.openedChange.pipe((0,j.p)(rt=>!rt),(0,W.T)(()=>{}));selectionChange=new v.bkB;valueChange=new v.bkB;constructor(){const rt=(0,d.WQX)(J.e),cn=(0,d.WQX)(Pe.cV,{optional:!0}),Ft=(0,d.WQX)(Pe.j4,{optional:!0}),Sn=(0,d.WQX)(new T.ES_("tabindex"),{optional:!0});this.ngControl&&(this.ngControl.valueAccessor=this),null!=this._defaultOptions?.typeaheadDebounceInterval&&(this.typeaheadDebounceInterval=this._defaultOptions.typeaheadDebounceInterval),this._errorStateTracker=new De.X(rt,this.ngControl,Ft,cn,this.stateChanges),this._scrollStrategy=this._scrollStrategyFactory(),this.tabIndex=null==Sn?0:parseInt(Sn)||0,this.id=this.id}ngOnInit(){this._selectionModel=new C.C(this.multiple),this.stateChanges.next(),this._viewportRuler.change().pipe((0,Ee.Q)(this._destroy)).subscribe(()=>{this.panelOpen&&(this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._changeDetectorRef.detectChanges())})}ngAfterContentInit(){this._initialized.next(),this._initialized.complete(),this._initKeyManager(),this._selectionModel.changed.pipe((0,Ee.Q)(this._destroy)).subscribe(rt=>{rt.added.forEach(cn=>cn.select()),rt.removed.forEach(cn=>cn.deselect())}),this.options.changes.pipe((0,G.Z)(null),(0,Ee.Q)(this._destroy)).subscribe(()=>{this._resetOptions(),this._initializeSelection()})}ngDoCheck(){const rt=this._getTriggerAriaLabelledby(),cn=this.ngControl;if(rt!==this._triggerAriaLabelledBy){const Ft=this._elementRef.nativeElement;this._triggerAriaLabelledBy=rt,rt?Ft.setAttribute("aria-labelledby",rt):Ft.removeAttribute("aria-labelledby")}cn&&(this._previousControl!==cn.control&&(void 0!==this._previousControl&&null!==cn.disabled&&cn.disabled!==this.disabled&&(this.disabled=cn.disabled),this._previousControl=cn.control),this.updateErrorState())}ngOnChanges(rt){(rt.disabled||rt.userAriaDescribedBy)&&this.stateChanges.next(),rt.typeaheadDebounceInterval&&this._keyManager&&this._keyManager.withTypeAhead(this.typeaheadDebounceInterval)}ngOnDestroy(){this._cleanupDetach?.(),this._keyManager?.destroy(),this._destroy.next(),this._destroy.complete(),this.stateChanges.complete(),this._clearFromModal()}toggle(){this.panelOpen?this.close():this.open()}open(){this._canOpen()&&(this._parentFormField&&(this._preferredOverlayOrigin=this._parentFormField.getConnectedOverlayOrigin()),this._cleanupDetach?.(),this._overlayWidth=this._getOverlayWidth(this._preferredOverlayOrigin),this._applyModalPanelOwnership(),this._panelOpen=!0,this._overlayDir.positionChange.pipe((0,xe.s)(1)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this._positioningSettled()}),this._overlayDir.attachOverlay(),this._keyManager.withHorizontalOrientation(null),this._highlightCorrectOption(),this._changeDetectorRef.markForCheck(),this.stateChanges.next(),Promise.resolve().then(()=>this.openedChange.emit(!0)))}_trackedModal=null;_applyModalPanelOwnership(){const rt=this._elementRef.nativeElement.closest('body > .cdk-overlay-container [aria-modal="true"]');if(!rt)return;const cn=`${this.id}-panel`;this._trackedModal&&(0,e.Ae)(this._trackedModal,"aria-owns",cn),(0,e.px)(rt,"aria-owns",cn),this._trackedModal=rt}_clearFromModal(){this._trackedModal&&((0,e.Ae)(this._trackedModal,"aria-owns",`${this.id}-panel`),this._trackedModal=null)}close(){this._panelOpen&&(this._panelOpen=!1,this._exitAndDetach(),this._keyManager.withHorizontalOrientation(this._isRtl()?"rtl":"ltr"),this._changeDetectorRef.markForCheck(),this._onTouched(),this.stateChanges.next(),Promise.resolve().then(()=>this.openedChange.emit(!1)))}_exitAndDetach(){if(this._animationsDisabled||!this.panel)return void this._detachOverlay();this._cleanupDetach?.(),this._cleanupDetach=()=>{cn(),clearTimeout(Ft),this._cleanupDetach=void 0};const rt=this.panel.nativeElement,cn=this._renderer.listen(rt,"animationend",Sn=>{"_mat-select-exit"===Sn.animationName&&(this._cleanupDetach?.(),this._detachOverlay())}),Ft=setTimeout(()=>{this._cleanupDetach?.(),this._detachOverlay()},200);rt.classList.add("mat-select-panel-exit")}_detachOverlay(){this._overlayDir.detachOverlay(),this._changeDetectorRef.markForCheck()}writeValue(rt){this._assignValue(rt)}registerOnChange(rt){this._onChange=rt}registerOnTouched(rt){this._onTouched=rt}setDisabledState(rt){this.disabled=rt,this._changeDetectorRef.markForCheck(),this.stateChanges.next()}get panelOpen(){return this._panelOpen}get selected(){return this.multiple?this._selectionModel?.selected||[]:this._selectionModel?.selected[0]}get triggerValue(){if(this.empty)return"";if(this._multiple){const rt=this._selectionModel.selected.map(cn=>cn.viewValue);return this._isRtl()&&rt.reverse(),rt.join(", ")}return this._selectionModel.selected[0].viewValue}updateErrorState(){this._errorStateTracker.updateErrorState()}_isRtl(){return!!this._dir&&"rtl"===this._dir.value}_handleKeydown(rt){this.disabled||(this.panelOpen?this._handleOpenKeydown(rt):this._handleClosedKeydown(rt))}_handleClosedKeydown(rt){const cn=rt.keyCode,Ft=cn===A.n6||cn===A.i7||cn===A.UQ||cn===A.LE,Sn=cn===A.Fm||cn===A.t6,Qn=this._keyManager;if(!Qn.isTyping()&&Sn&&!(0,B.rp)(rt)||(this.multiple||rt.altKey)&&Ft)rt.preventDefault(),this.open();else if(!this.multiple){const h=this.selected;Qn.onKeydown(rt);const jt=this.selected;jt&&h!==jt&&this._liveAnnouncer.announce(jt.viewValue,1e4)}}_handleOpenKeydown(rt){const cn=this._keyManager,Ft=rt.keyCode,Sn=Ft===A.n6||Ft===A.i7,Qn=cn.isTyping();if(Sn&&rt.altKey)rt.preventDefault(),this.close();else if(Qn||Ft!==A.Fm&&Ft!==A.t6||!cn.activeItem||(0,B.rp)(rt))if(!Qn&&this._multiple&&Ft===A.A&&rt.ctrlKey){rt.preventDefault();const h=this.options.some(jt=>!jt.disabled&&!jt.selected);this.options.forEach(jt=>{jt.disabled||(h?jt.select():jt.deselect())})}else{const h=cn.activeItemIndex;cn.onKeydown(rt),this._multiple&&Sn&&rt.shiftKey&&cn.activeItem&&cn.activeItemIndex!==h&&cn.activeItem._selectViaInteraction()}else rt.preventDefault(),cn.activeItem._selectViaInteraction()}_handleOverlayKeydown(rt){rt.keyCode===A._f&&!(0,B.rp)(rt)&&(rt.preventDefault(),this.close())}_onFocus(){this.disabled||(this._focused=!0,this.stateChanges.next())}_onBlur(){this._focused=!1,this._keyManager?.cancelTypeahead(),!this.disabled&&!this.panelOpen&&(this._onTouched(),this._changeDetectorRef.markForCheck(),this.stateChanges.next())}_getPanelTheme(){return this._parentFormField?`mat-${this._parentFormField.color}`:""}get empty(){return!this._selectionModel||this._selectionModel.isEmpty()}_initializeSelection(){Promise.resolve().then(()=>{this.ngControl&&(this._value=this.ngControl.value),this._setSelectionByValue(this._value),this.stateChanges.next()})}_setSelectionByValue(rt){if(this.options.forEach(cn=>cn.setInactiveStyles()),this._selectionModel.clear(),this.multiple&&rt)Array.isArray(rt),rt.forEach(cn=>this._selectOptionByValue(cn)),this._sortValues();else{const cn=this._selectOptionByValue(rt);cn?this._keyManager.updateActiveItem(cn):this.panelOpen||this._keyManager.updateActiveItem(-1)}this._changeDetectorRef.markForCheck()}_selectOptionByValue(rt){const cn=this.options.find(Ft=>{if(this._selectionModel.isSelected(Ft))return!1;try{return(null!=Ft.value||this.canSelectNullableOptions)&&this._compareWith(Ft.value,rt)}catch{return!1}});return cn&&this._selectionModel.select(cn),cn}_assignValue(rt){return!!(rt!==this._value||this._multiple&&Array.isArray(rt))&&(this.options&&this._setSelectionByValue(rt),this._value=rt,!0)}_skipPredicate=rt=>!this.panelOpen&&rt.disabled;_getOverlayWidth(rt){return"auto"===this.panelWidth?(rt instanceof i.$Q?rt.elementRef:rt||this._elementRef).nativeElement.getBoundingClientRect().width:null===this.panelWidth?"":this.panelWidth}_syncParentProperties(){if(this.options)for(const rt of this.options)rt._changeDetectorRef.markForCheck()}_initKeyManager(){this._keyManager=new u.A(this.options).withTypeAhead(this.typeaheadDebounceInterval).withVerticalOrientation().withHorizontalOrientation(this._isRtl()?"rtl":"ltr").withHomeAndEnd().withPageUpDown().withAllowedModifierKeys(["shiftKey"]).skipPredicate(this._skipPredicate),this._keyManager.tabOut.subscribe(()=>{this.panelOpen&&(!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction(),this.focus(),this.close())}),this._keyManager.change.subscribe(()=>{this._panelOpen&&this.panel?this._scrollOptionIntoView(this._keyManager.activeItemIndex||0):!this._panelOpen&&!this.multiple&&this._keyManager.activeItem&&this._keyManager.activeItem._selectViaInteraction()})}_resetOptions(){const rt=(0,Ae.h)(this.options.changes,this._destroy);this.optionSelectionChanges.pipe((0,Ee.Q)(rt)).subscribe(cn=>{this._onSelect(cn.source,cn.isUserInput),cn.isUserInput&&!this.multiple&&this._panelOpen&&(this.close(),this.focus())}),(0,Ae.h)(...this.options.map(cn=>cn._stateChanges)).pipe((0,Ee.Q)(rt)).subscribe(()=>{this._changeDetectorRef.detectChanges(),this.stateChanges.next()})}_onSelect(rt,cn){const Ft=this._selectionModel.isSelected(rt);this.canSelectNullableOptions||null!=rt.value||this._multiple?(Ft!==rt.selected&&(rt.selected?this._selectionModel.select(rt):this._selectionModel.deselect(rt)),cn&&this._keyManager.setActiveItem(rt),this.multiple&&(this._sortValues(),cn&&this.focus())):(rt.deselect(),this._selectionModel.clear(),null!=this.value&&this._propagateChanges(rt.value)),Ft!==this._selectionModel.isSelected(rt)&&this._propagateChanges(),this.stateChanges.next()}_sortValues(){if(this.multiple){const rt=this.options.toArray();this._selectionModel.sort((cn,Ft)=>this.sortComparator?this.sortComparator(cn,Ft,rt):rt.indexOf(cn)-rt.indexOf(Ft)),this.stateChanges.next()}}_propagateChanges(rt){let cn;cn=this.multiple?this.selected.map(Ft=>Ft.value):this.selected?this.selected.value:rt,this._value=cn,this.valueChange.emit(cn),this._onChange(cn),this.selectionChange.emit(this._getChangeEvent(cn)),this._changeDetectorRef.markForCheck()}_highlightCorrectOption(){if(this._keyManager)if(this.empty){let rt=-1;for(let cn=0;cn0&&!!this._overlayDir}focus(rt){this._elementRef.nativeElement.focus(rt)}_getPanelAriaLabelledby(){if(this.ariaLabel)return null;const rt=this._parentFormField?.getLabelId()||null;return this.ariaLabelledby?(rt?rt+" ":"")+this.ariaLabelledby:rt}_getAriaActiveDescendant(){return this.panelOpen&&this._keyManager&&this._keyManager.activeItem?this._keyManager.activeItem.id:null}_getTriggerAriaLabelledby(){if(this.ariaLabel)return null;let rt=this._parentFormField?.getLabelId()||"";return this.ariaLabelledby&&(rt+=" "+this.ariaLabelledby),rt||(rt=this._valueId),rt}get describedByIds(){return this._elementRef.nativeElement.getAttribute("aria-describedby")?.split(" ")||[]}setDescribedByIds(rt){rt.length?this._elementRef.nativeElement.setAttribute("aria-describedby",rt.join(" ")):this._elementRef.nativeElement.removeAttribute("aria-describedby")}onContainerClick(){this.focus(),this.open()}get shouldLabelFloat(){return this.panelOpen||!this.empty||this.focused&&!!this.placeholder}static \u0275fac=function(cn){return new(cn||gt)};static \u0275cmp=v.VBU({type:gt,selectors:[["mat-select"]],contentQueries:function(cn,Ft,Sn){if(1&cn&&(v.wni(Sn,ht,5),v.wni(Sn,ne.wT,5),v.wni(Sn,ne.QC,5)),2&cn){let Qn;v.mGM(Qn=v.lsd())&&(Ft.customTrigger=Qn.first),v.mGM(Qn=v.lsd())&&(Ft.options=Qn),v.mGM(Qn=v.lsd())&&(Ft.optionGroups=Qn)}},viewQuery:function(cn,Ft){if(1&cn&&(v.GBs(he,5),v.GBs(Dt,5),v.GBs(i.WB,5)),2&cn){let Sn;v.mGM(Sn=v.lsd())&&(Ft.trigger=Sn.first),v.mGM(Sn=v.lsd())&&(Ft.panel=Sn.first),v.mGM(Sn=v.lsd())&&(Ft._overlayDir=Sn.first)}},hostAttrs:["role","combobox","aria-haspopup","listbox",1,"mat-mdc-select"],hostVars:21,hostBindings:function(cn,Ft){1&cn&&v.bIt("keydown",function(Qn){return Ft._handleKeydown(Qn)})("focus",function(){return Ft._onFocus()})("blur",function(){return Ft._onBlur()}),2&cn&&(v.BMQ("id",Ft.id)("tabindex",Ft.disabled?-1:Ft.tabIndex)("aria-controls",Ft.panelOpen?Ft.id+"-panel":null)("aria-expanded",Ft.panelOpen)("aria-label",Ft.ariaLabel||null)("aria-required",Ft.required.toString())("aria-disabled",Ft.disabled.toString())("aria-invalid",Ft.errorState)("aria-activedescendant",Ft._getAriaActiveDescendant()),v.AVh("mat-mdc-select-disabled",Ft.disabled)("mat-mdc-select-invalid",Ft.errorState)("mat-mdc-select-required",Ft.required)("mat-mdc-select-empty",Ft.empty)("mat-mdc-select-multiple",Ft.multiple)("mat-select-open",Ft.panelOpen))},inputs:{userAriaDescribedBy:[0,"aria-describedby","userAriaDescribedBy"],panelClass:"panelClass",disabled:[2,"disabled","disabled",T.L39],disableRipple:[2,"disableRipple","disableRipple",T.L39],tabIndex:[2,"tabIndex","tabIndex",rt=>null==rt?0:(0,T.Udg)(rt)],hideSingleSelectionIndicator:[2,"hideSingleSelectionIndicator","hideSingleSelectionIndicator",T.L39],placeholder:"placeholder",required:[2,"required","required",T.L39],multiple:[2,"multiple","multiple",T.L39],disableOptionCentering:[2,"disableOptionCentering","disableOptionCentering",T.L39],compareWith:"compareWith",value:"value",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],errorStateMatcher:"errorStateMatcher",typeaheadDebounceInterval:[2,"typeaheadDebounceInterval","typeaheadDebounceInterval",T.Udg],sortComparator:"sortComparator",id:"id",panelWidth:"panelWidth",canSelectNullableOptions:[2,"canSelectNullableOptions","canSelectNullableOptions",T.L39]},outputs:{openedChange:"openedChange",_openedStream:"opened",_closedStream:"closed",selectionChange:"selectionChange",valueChange:"valueChange"},exportAs:["matSelect"],features:[v.Jv_([{provide:ce.qT,useExisting:gt},{provide:ne.is,useExisting:gt}]),v.OA$],ngContentSelectors:Le,decls:11,vars:9,consts:[["fallbackOverlayOrigin","cdkOverlayOrigin","trigger",""],["panel",""],["cdk-overlay-origin","",1,"mat-mdc-select-trigger",3,"click"],[1,"mat-mdc-select-value"],[1,"mat-mdc-select-placeholder","mat-mdc-select-min-line"],[1,"mat-mdc-select-value-text"],[1,"mat-mdc-select-arrow-wrapper"],[1,"mat-mdc-select-arrow"],["viewBox","0 0 24 24","width","24px","height","24px","focusable","false","aria-hidden","true"],["d","M7 10l5 5 5-5z"],["cdk-connected-overlay","","cdkConnectedOverlayLockPosition","","cdkConnectedOverlayHasBackdrop","","cdkConnectedOverlayBackdropClass","cdk-overlay-transparent-backdrop",3,"detach","backdropClick","overlayKeydown","cdkConnectedOverlayDisableClose","cdkConnectedOverlayPanelClass","cdkConnectedOverlayScrollStrategy","cdkConnectedOverlayOrigin","cdkConnectedOverlayPositions","cdkConnectedOverlayWidth","cdkConnectedOverlayFlexibleDimensions"],[1,"mat-mdc-select-min-line"],["role","listbox","tabindex","-1",3,"keydown","ngClass"]],template:function(cn,Ft){if(1&cn){const Sn=v.RV6();v.NAR(lt),v.j41(0,"div",2,0),v.bIt("click",function(){return d.eBV(Sn),d.Njj(Ft.open())}),v.j41(3,"div",3),v.nVh(4,te,2,1,"span",4)(5,F,3,1,"span",5),v.k0s(),v.j41(6,"div",6)(7,"div",7),d.qSk(),v.j41(8,"svg",8),v.nrm(9,"path",9),v.k0s()()()(),v.DNE(10,ve,3,10,"ng-template",10),v.bIt("detach",function(){return d.eBV(Sn),d.Njj(Ft.close())})("backdropClick",function(){return d.eBV(Sn),d.Njj(Ft.close())})("overlayKeydown",function(h){return d.eBV(Sn),d.Njj(Ft._handleOverlayKeydown(h))})}if(2&cn){const Sn=v.sdS(1);v.R7$(3),v.BMQ("id",Ft._valueId),v.R7$(),v.vxM(Ft.empty?4:5),v.R7$(6),v.Y8G("cdkConnectedOverlayDisableClose",!0)("cdkConnectedOverlayPanelClass",Ft._overlayPanelClass)("cdkConnectedOverlayScrollStrategy",Ft._scrollStrategy)("cdkConnectedOverlayOrigin",Ft._preferredOverlayOrigin||Sn)("cdkConnectedOverlayPositions",Ft._positions)("cdkConnectedOverlayWidth",Ft._overlayWidth)("cdkConnectedOverlayFlexibleDimensions",!0)}},dependencies:[i.$Q,i.WB,V.YU],styles:['@keyframes _mat-select-enter{from{opacity:0;transform:scaleY(0.8)}to{opacity:1;transform:none}}@keyframes _mat-select-exit{from{opacity:1}to{opacity:0}}.mat-mdc-select{display:inline-block;width:100%;outline:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;color:var(--mat-select-enabled-trigger-text-color, var(--mat-sys-on-surface));font-family:var(--mat-select-trigger-text-font, var(--mat-sys-body-large-font));line-height:var(--mat-select-trigger-text-line-height, var(--mat-sys-body-large-line-height));font-size:var(--mat-select-trigger-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-select-trigger-text-weight, var(--mat-sys-body-large-weight));letter-spacing:var(--mat-select-trigger-text-tracking, var(--mat-sys-body-large-tracking))}div.mat-mdc-select-panel{box-shadow:var(--mat-select-container-elevation-shadow, 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12))}.mat-mdc-select-disabled{color:var(--mat-select-disabled-trigger-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-select-disabled .mat-mdc-select-placeholder{color:var(--mat-select-disabled-trigger-text-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-mdc-select-trigger{display:inline-flex;align-items:center;cursor:pointer;position:relative;box-sizing:border-box;width:100%}.mat-mdc-select-disabled .mat-mdc-select-trigger{-webkit-user-select:none;user-select:none;cursor:default}.mat-mdc-select-value{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mat-mdc-select-value-text{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.mat-mdc-select-arrow-wrapper{height:24px;flex-shrink:0;display:inline-flex;align-items:center}.mat-form-field-appearance-fill .mdc-text-field--no-label .mat-mdc-select-arrow-wrapper{transform:none}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-invalid .mat-mdc-select-arrow,.mat-form-field-invalid:not(.mat-form-field-disabled) .mat-mdc-form-field-infix::after{color:var(--mat-select-invalid-arrow-color, var(--mat-sys-error))}.mat-mdc-select-arrow{width:10px;height:5px;position:relative;color:var(--mat-select-enabled-arrow-color, var(--mat-sys-on-surface-variant))}.mat-mdc-form-field.mat-focused .mat-mdc-select-arrow{color:var(--mat-select-focused-arrow-color, var(--mat-sys-primary))}.mat-mdc-form-field .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-arrow{color:var(--mat-select-disabled-arrow-color, color-mix(in srgb, var(--mat-sys-on-surface) 38%, transparent))}.mat-select-open .mat-mdc-select-arrow{transform:rotate(180deg)}.mat-form-field-animations-enabled .mat-mdc-select-arrow{transition:transform 80ms linear}.mat-mdc-select-arrow svg{fill:currentColor;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}@media(forced-colors: active){.mat-mdc-select-arrow svg{fill:CanvasText}.mat-mdc-select-disabled .mat-mdc-select-arrow svg{fill:GrayText}}div.mat-mdc-select-panel{width:100%;max-height:275px;outline:0;overflow:auto;padding:8px 0;border-radius:4px;box-sizing:border-box;position:relative;background-color:var(--mat-select-panel-background-color, var(--mat-sys-surface-container))}@media(forced-colors: active){div.mat-mdc-select-panel{outline:solid 1px}}.cdk-overlay-pane:not(.mat-mdc-select-panel-above) div.mat-mdc-select-panel{border-top-left-radius:0;border-top-right-radius:0;transform-origin:top center}.mat-mdc-select-panel-above div.mat-mdc-select-panel{border-bottom-left-radius:0;border-bottom-right-radius:0;transform-origin:bottom center}.mat-select-panel-animations-enabled{animation:_mat-select-enter 120ms cubic-bezier(0, 0, 0.2, 1)}.mat-select-panel-animations-enabled.mat-select-panel-exit{animation:_mat-select-exit 100ms linear}.mat-mdc-select-placeholder{transition:color 400ms 133.3333333333ms cubic-bezier(0.25, 0.8, 0.25, 1);color:var(--mat-select-placeholder-text-color, var(--mat-sys-on-surface-variant))}.mat-mdc-form-field:not(.mat-form-field-animations-enabled) .mat-mdc-select-placeholder,._mat-animation-noopable .mat-mdc-select-placeholder{transition:none}.mat-form-field-hide-placeholder .mat-mdc-select-placeholder{color:rgba(0,0,0,0);-webkit-text-fill-color:rgba(0,0,0,0);transition:none;display:block}.mat-mdc-form-field-type-mat-select:not(.mat-form-field-disabled) .mat-mdc-text-field-wrapper{cursor:pointer}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mat-mdc-floating-label{max-width:calc(100% - 18px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-fill .mdc-floating-label--float-above{max-width:calc(100%/0.75 - 24px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-notched-outline__notch{max-width:calc(100% - 60px)}.mat-mdc-form-field-type-mat-select.mat-form-field-appearance-outline .mdc-text-field--label-floating .mdc-notched-outline__notch{max-width:calc(100% - 24px)}.mat-mdc-select-min-line:empty::before{content:" ";white-space:pre;width:1px;display:inline-block;visibility:hidden}.mat-form-field-appearance-fill .mat-mdc-select-arrow-wrapper{transform:var(--mat-select-arrow-transform, translateY(-8px))}\n'],encapsulation:2,changeDetection:0})}return gt})(),fe=(()=>{class gt{static \u0275fac=function(cn){return new(cn||gt)};static \u0275dir=v.FsC({type:gt,selectors:[["mat-select-trigger"]],features:[v.Jv_([{provide:ht,useExisting:gt}])]})}return gt})(),Qe=(()=>{class gt{static \u0275fac=function(cn){return new(cn||gt)};static \u0275mod=v.$C({type:gt});static \u0275inj=d.G2t({providers:[nt],imports:[i.z_,Re.S,Xe.y,w.Gj,_e.R,Re.S,Xe.y]})}return gt})()},882(Zt,pe,l){"use strict";l.d(pe,{El:()=>$,LG:()=>Ke,US:()=>Vt,vg:()=>St});var i=l(6838),d=l(7094),v=l(1577),T=l(4085),w=l(7847),e=l(7336),O=l(438),f=l(9842),u=l(5718),L=l(2615),C=l(3664),B=l(7705),A=l(1413),Pe=l(3726),le=l(7786),Ce=l(152),Ae=l(5964),j=l(6354),W=l(3703),G=l(9172),re=l(6697),xe=l(6977),Ee=l(1804),V=l(2466);const ce=["*"],be=["content"],ne=[[["mat-drawer"]],[["mat-drawer-content"]],"*"],J=["mat-drawer","mat-drawer-content","*"];function De(nt,ht){if(1&nt){const oe=C.RV6();C.j41(0,"div",1),C.bIt("click",function(){L.eBV(oe);const fe=C.XpG();return L.Njj(fe._onBackdropClicked())}),C.k0s()}if(2&nt){const oe=C.XpG();C.AVh("mat-drawer-shown",oe._isShowingBackdrop())}}function Re(nt,ht){1&nt&&(C.j41(0,"mat-drawer-content"),C.SdG(1,2),C.k0s())}const Xe=[[["mat-sidenav"]],[["mat-sidenav-content"]],"*"],_e=["mat-sidenav","mat-sidenav-content","*"];function he(nt,ht){if(1&nt){const oe=C.RV6();C.j41(0,"div",1),C.bIt("click",function(){L.eBV(oe);const fe=C.XpG();return L.Njj(fe._onBackdropClicked())}),C.k0s()}if(2&nt){const oe=C.XpG();C.AVh("mat-drawer-shown",oe._isShowingBackdrop())}}function Dt(nt,ht){1&nt&&(C.j41(0,"mat-sidenav-content"),C.SdG(1,2),C.k0s())}const te=new L.nKC("MAT_DRAWER_DEFAULT_AUTOSIZE",{providedIn:"root",factory:function P(){return!1}}),ie=new L.nKC("MAT_DRAWER_CONTAINER");let F=(()=>{class nt extends u.uv{_platform=(0,L.WQX)(f.O);_changeDetectorRef=(0,L.WQX)(B.gRc);_container=(0,L.WQX)(H);constructor(){super((0,L.WQX)(C.aKT),(0,L.WQX)(u.R),(0,L.WQX)(C.SKi))}ngAfterContentInit(){this._container._contentMarginChanges.subscribe(()=>{this._changeDetectorRef.markForCheck()})}_shouldBeHidden(){if(this._platform.isBrowser)return!1;const{start:oe,end:Ye}=this._container;return null!=oe&&"over"!==oe.mode&&oe.opened||null!=Ye&&"over"!==Ye.mode&&Ye.opened}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275cmp=C.VBU({type:nt,selectors:[["mat-drawer-content"]],hostAttrs:[1,"mat-drawer-content"],hostVars:6,hostBindings:function(Ye,fe){2&Ye&&(C.xc7("margin-left",fe._container._contentMargins.left,"px")("margin-right",fe._container._contentMargins.right,"px"),C.AVh("mat-drawer-content-hidden",fe._shouldBeHidden()))},features:[C.Jv_([{provide:u.uv,useExisting:nt}]),C.Vt3],ngContentSelectors:ce,decls:1,vars:0,template:function(Ye,fe){1&Ye&&(C.NAR(),C.SdG(0))},encapsulation:2,changeDetection:0})}return nt})(),ve=(()=>{class nt{_elementRef=(0,L.WQX)(C.aKT);_focusTrapFactory=(0,L.WQX)(d.GX);_focusMonitor=(0,L.WQX)(i.FN);_platform=(0,L.WQX)(f.O);_ngZone=(0,L.WQX)(C.SKi);_renderer=(0,L.WQX)(C.sFG);_interactivityChecker=(0,L.WQX)(d.Z7);_doc=(0,L.WQX)(L.qQL);_container=(0,L.WQX)(ie,{optional:!0});_focusTrap=null;_elementFocusedBeforeDrawerWasOpened=null;_eventCleanups;_isAttached;_anchor;get position(){return this._position}set position(oe){(oe="end"===oe?"end":"start")!==this._position&&(this._isAttached&&this._updatePositionInParent(oe),this._position=oe,this.onPositionChanged.emit())}_position="start";get mode(){return this._mode}set mode(oe){this._mode=oe,this._updateFocusTrapState(),this._modeChanged.next()}_mode="over";get disableClose(){return this._disableClose}set disableClose(oe){this._disableClose=(0,T.he)(oe)}_disableClose=!1;get autoFocus(){return this._autoFocus??("side"===this.mode?"dialog":"first-tabbable")}set autoFocus(oe){("true"===oe||"false"===oe||null==oe)&&(oe=(0,T.he)(oe)),this._autoFocus=oe}_autoFocus;get opened(){return this._opened()}set opened(oe){this.toggle((0,T.he)(oe))}_opened=(0,L.vPA)(!1);_openedVia;_animationStarted=new A.B;_animationEnd=new A.B;openedChange=new C.bkB(!0);_openedStream=this.openedChange.pipe((0,Ae.p)(oe=>oe),(0,j.T)(()=>{}));openedStart=this._animationStarted.pipe((0,Ae.p)(()=>this.opened),(0,W.u)(void 0));_closedStream=this.openedChange.pipe((0,Ae.p)(oe=>!oe),(0,j.T)(()=>{}));closedStart=this._animationStarted.pipe((0,Ae.p)(()=>!this.opened),(0,W.u)(void 0));_destroyed=new A.B;onPositionChanged=new C.bkB;_content;_modeChanged=new A.B;_injector=(0,L.WQX)(L.zZn);_changeDetectorRef=(0,L.WQX)(B.gRc);constructor(){this.openedChange.pipe((0,xe.Q)(this._destroyed)).subscribe(oe=>{oe?(this._elementFocusedBeforeDrawerWasOpened=this._doc.activeElement,this._takeFocus()):this._isFocusWithinDrawer()&&this._restoreFocus(this._openedVia||"program")}),this._ngZone.runOutsideAngular(()=>{const oe=this._elementRef.nativeElement;(0,Pe.R)(oe,"keydown").pipe((0,Ae.p)(Ye=>Ye.keyCode===O._f&&!this.disableClose&&!(0,e.rp)(Ye)),(0,xe.Q)(this._destroyed)).subscribe(Ye=>this._ngZone.run(()=>{this.close(),Ye.stopPropagation(),Ye.preventDefault()})),this._eventCleanups=[this._renderer.listen(oe,"transitionrun",this._handleTransitionEvent),this._renderer.listen(oe,"transitionend",this._handleTransitionEvent),this._renderer.listen(oe,"transitioncancel",this._handleTransitionEvent)]}),this._animationEnd.subscribe(()=>{this.openedChange.emit(this.opened)})}_forceFocus(oe,Ye){this._interactivityChecker.isFocusable(oe)||(oe.tabIndex=-1,this._ngZone.runOutsideAngular(()=>{const fe=()=>{Qe(),gt(),oe.removeAttribute("tabindex")},Qe=this._renderer.listen(oe,"blur",fe),gt=this._renderer.listen(oe,"mousedown",fe)})),oe.focus(Ye)}_focusByCssSelector(oe,Ye){let fe=this._elementRef.nativeElement.querySelector(oe);fe&&this._forceFocus(fe,Ye)}_takeFocus(){if(!this._focusTrap)return;const oe=this._elementRef.nativeElement;switch(this.autoFocus){case!1:case"dialog":return;case!0:case"first-tabbable":(0,C.mal)(()=>{!this._focusTrap.focusInitialElement()&&"function"==typeof oe.focus&&oe.focus()},{injector:this._injector});break;case"first-heading":this._focusByCssSelector('h1, h2, h3, h4, h5, h6, [role="heading"]');break;default:this._focusByCssSelector(this.autoFocus)}}_restoreFocus(oe){"dialog"!==this.autoFocus&&(this._elementFocusedBeforeDrawerWasOpened?this._focusMonitor.focusVia(this._elementFocusedBeforeDrawerWasOpened,oe):this._elementRef.nativeElement.blur(),this._elementFocusedBeforeDrawerWasOpened=null)}_isFocusWithinDrawer(){const oe=this._doc.activeElement;return!!oe&&this._elementRef.nativeElement.contains(oe)}ngAfterViewInit(){this._isAttached=!0,"end"===this._position&&this._updatePositionInParent("end"),this._platform.isBrowser&&(this._focusTrap=this._focusTrapFactory.create(this._elementRef.nativeElement),this._updateFocusTrapState())}ngOnDestroy(){this._eventCleanups.forEach(oe=>oe()),this._focusTrap?.destroy(),this._anchor?.remove(),this._anchor=null,this._animationStarted.complete(),this._animationEnd.complete(),this._modeChanged.complete(),this._destroyed.next(),this._destroyed.complete()}open(oe){return this.toggle(!0,oe)}close(){return this.toggle(!1)}_closeViaBackdropClick(){return this._setOpen(!1,!0,"mouse")}toggle(oe=!this.opened,Ye){oe&&Ye&&(this._openedVia=Ye);const fe=this._setOpen(oe,!oe&&this._isFocusWithinDrawer(),this._openedVia||"program");return oe||(this._openedVia=null),fe}_setOpen(oe,Ye,fe){return oe===this.opened?Promise.resolve(oe?"open":"close"):(this._opened.set(oe),this._container?._transitionsEnabled?this._setIsAnimating(!0):setTimeout(()=>{this._animationStarted.next(),this._animationEnd.next()}),this._elementRef.nativeElement.classList.toggle("mat-drawer-opened",oe),!oe&&Ye&&this._restoreFocus(fe),this._changeDetectorRef.markForCheck(),this._updateFocusTrapState(),new Promise(Qe=>{this.openedChange.pipe((0,re.s)(1)).subscribe(gt=>Qe(gt?"open":"close"))}))}_setIsAnimating(oe){this._elementRef.nativeElement.classList.toggle("mat-drawer-animating",oe)}_getWidth(){return this._elementRef.nativeElement.offsetWidth||0}_updateFocusTrapState(){this._focusTrap&&(this._focusTrap.enabled=!!this._container?.hasBackdrop&&this.opened)}_updatePositionInParent(oe){if(!this._platform.isBrowser)return;const Ye=this._elementRef.nativeElement,fe=Ye.parentNode;"end"===oe?(this._anchor||(this._anchor=this._doc.createComment("mat-drawer-anchor"),fe.insertBefore(this._anchor,Ye)),fe.appendChild(Ye)):this._anchor&&this._anchor.parentNode.insertBefore(Ye,this._anchor)}_handleTransitionEvent=oe=>{oe.target===this._elementRef.nativeElement&&this._ngZone.run(()=>{"transitionrun"===oe.type?this._animationStarted.next(oe):("transitionend"===oe.type&&this._setIsAnimating(!1),this._animationEnd.next(oe))})};static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275cmp=C.VBU({type:nt,selectors:[["mat-drawer"]],viewQuery:function(Ye,fe){if(1&Ye&&C.GBs(be,5),2&Ye){let Qe;C.mGM(Qe=C.lsd())&&(fe._content=Qe.first)}},hostAttrs:[1,"mat-drawer"],hostVars:12,hostBindings:function(Ye,fe){2&Ye&&(C.BMQ("align",null)("tabIndex","side"!==fe.mode?"-1":null),C.xc7("visibility",fe._container||fe.opened?null:"hidden"),C.AVh("mat-drawer-end","end"===fe.position)("mat-drawer-over","over"===fe.mode)("mat-drawer-push","push"===fe.mode)("mat-drawer-side","side"===fe.mode))},inputs:{position:"position",mode:"mode",disableClose:"disableClose",autoFocus:"autoFocus",opened:"opened"},outputs:{openedChange:"openedChange",_openedStream:"opened",openedStart:"openedStart",_closedStream:"closed",closedStart:"closedStart",onPositionChanged:"positionChanged"},exportAs:["matDrawer"],ngContentSelectors:ce,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(Ye,fe){1&Ye&&(C.NAR(),C.j41(0,"div",1,0),C.SdG(2),C.k0s())},dependencies:[u.uv],encapsulation:2,changeDetection:0})}return nt})(),H=(()=>{class nt{_dir=(0,L.WQX)(v.dS,{optional:!0});_element=(0,L.WQX)(C.aKT);_ngZone=(0,L.WQX)(C.SKi);_changeDetectorRef=(0,L.WQX)(B.gRc);_animationDisabled=(0,Ee.Rc)();_transitionsEnabled=!1;_allDrawers;_drawers=new C.rOR;_content;_userContent;get start(){return this._start}get end(){return this._end}get autosize(){return this._autosize}set autosize(oe){this._autosize=(0,T.he)(oe)}_autosize=(0,L.WQX)(te);get hasBackdrop(){return this._drawerHasBackdrop(this._start)||this._drawerHasBackdrop(this._end)}set hasBackdrop(oe){this._backdropOverride=null==oe?null:(0,T.he)(oe)}_backdropOverride;backdropClick=new C.bkB;_start;_end;_left;_right;_destroyed=new A.B;_doCheckSubject=new A.B;_contentMargins={left:null,right:null};_contentMarginChanges=new A.B;get scrollable(){return this._userContent||this._content}_injector=(0,L.WQX)(L.zZn);constructor(){const oe=(0,L.WQX)(f.O),Ye=(0,L.WQX)(u.Xj);this._dir?.change.pipe((0,xe.Q)(this._destroyed)).subscribe(()=>{this._validateDrawers(),this.updateContentMargins()}),Ye.change().pipe((0,xe.Q)(this._destroyed)).subscribe(()=>this.updateContentMargins()),!this._animationDisabled&&oe.isBrowser&&this._ngZone.runOutsideAngular(()=>{setTimeout(()=>{this._element.nativeElement.classList.add("mat-drawer-transition"),this._transitionsEnabled=!0},200)})}ngAfterContentInit(){this._allDrawers.changes.pipe((0,G.Z)(this._allDrawers),(0,xe.Q)(this._destroyed)).subscribe(oe=>{this._drawers.reset(oe.filter(Ye=>!Ye._container||Ye._container===this)),this._drawers.notifyOnChanges()}),this._drawers.changes.pipe((0,G.Z)(null)).subscribe(()=>{this._validateDrawers(),this._drawers.forEach(oe=>{this._watchDrawerToggle(oe),this._watchDrawerPosition(oe),this._watchDrawerMode(oe)}),(!this._drawers.length||this._isDrawerOpen(this._start)||this._isDrawerOpen(this._end))&&this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),this._ngZone.runOutsideAngular(()=>{this._doCheckSubject.pipe((0,Ce.B)(10),(0,xe.Q)(this._destroyed)).subscribe(()=>this.updateContentMargins())})}ngOnDestroy(){this._contentMarginChanges.complete(),this._doCheckSubject.complete(),this._drawers.destroy(),this._destroyed.next(),this._destroyed.complete()}open(){this._drawers.forEach(oe=>oe.open())}close(){this._drawers.forEach(oe=>oe.close())}updateContentMargins(){let oe=0,Ye=0;if(this._left&&this._left.opened)if("side"==this._left.mode)oe+=this._left._getWidth();else if("push"==this._left.mode){const fe=this._left._getWidth();oe+=fe,Ye-=fe}if(this._right&&this._right.opened)if("side"==this._right.mode)Ye+=this._right._getWidth();else if("push"==this._right.mode){const fe=this._right._getWidth();Ye+=fe,oe-=fe}oe=oe||null,Ye=Ye||null,(oe!==this._contentMargins.left||Ye!==this._contentMargins.right)&&(this._contentMargins={left:oe,right:Ye},this._ngZone.run(()=>this._contentMarginChanges.next(this._contentMargins)))}ngDoCheck(){this._autosize&&this._isPushed()&&this._ngZone.runOutsideAngular(()=>this._doCheckSubject.next())}_watchDrawerToggle(oe){oe._animationStarted.pipe((0,xe.Q)(this._drawers.changes)).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()}),"side"!==oe.mode&&oe.openedChange.pipe((0,xe.Q)(this._drawers.changes)).subscribe(()=>this._setContainerClass(oe.opened))}_watchDrawerPosition(oe){oe.onPositionChanged.pipe((0,xe.Q)(this._drawers.changes)).subscribe(()=>{(0,C.mal)({read:()=>this._validateDrawers()},{injector:this._injector})})}_watchDrawerMode(oe){oe._modeChanged.pipe((0,xe.Q)((0,le.h)(this._drawers.changes,this._destroyed))).subscribe(()=>{this.updateContentMargins(),this._changeDetectorRef.markForCheck()})}_setContainerClass(oe){const Ye=this._element.nativeElement.classList,fe="mat-drawer-container-has-open";oe?Ye.add(fe):Ye.remove(fe)}_validateDrawers(){this._start=this._end=null,this._drawers.forEach(oe=>{"end"==oe.position?this._end=oe:this._start=oe}),this._right=this._left=null,this._dir&&"rtl"===this._dir.value?(this._left=this._end,this._right=this._start):(this._left=this._start,this._right=this._end)}_isPushed(){return this._isDrawerOpen(this._start)&&"over"!=this._start.mode||this._isDrawerOpen(this._end)&&"over"!=this._end.mode}_onBackdropClicked(){this.backdropClick.emit(),this._closeModalDrawersViaBackdrop()}_closeModalDrawersViaBackdrop(){[this._start,this._end].filter(oe=>oe&&!oe.disableClose&&this._drawerHasBackdrop(oe)).forEach(oe=>oe._closeViaBackdropClick())}_isShowingBackdrop(){return this._isDrawerOpen(this._start)&&this._drawerHasBackdrop(this._start)||this._isDrawerOpen(this._end)&&this._drawerHasBackdrop(this._end)}_isDrawerOpen(oe){return null!=oe&&oe.opened}_drawerHasBackdrop(oe){return null==this._backdropOverride?!!oe&&"side"!==oe.mode:this._backdropOverride}static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275cmp=C.VBU({type:nt,selectors:[["mat-drawer-container"]],contentQueries:function(Ye,fe,Qe){if(1&Ye&&(C.wni(Qe,F,5),C.wni(Qe,ve,5)),2&Ye){let gt;C.mGM(gt=C.lsd())&&(fe._content=gt.first),C.mGM(gt=C.lsd())&&(fe._allDrawers=gt)}},viewQuery:function(Ye,fe){if(1&Ye&&C.GBs(F,5),2&Ye){let Qe;C.mGM(Qe=C.lsd())&&(fe._userContent=Qe.first)}},hostAttrs:[1,"mat-drawer-container"],hostVars:2,hostBindings:function(Ye,fe){2&Ye&&C.AVh("mat-drawer-container-explicit-backdrop",fe._backdropOverride)},inputs:{autosize:"autosize",hasBackdrop:"hasBackdrop"},outputs:{backdropClick:"backdropClick"},exportAs:["matDrawerContainer"],features:[C.Jv_([{provide:ie,useExisting:nt}])],ngContentSelectors:J,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(Ye,fe){1&Ye&&(C.NAR(ne),C.nVh(0,De,1,2,"div",0),C.SdG(1),C.SdG(2,1),C.nVh(3,Re,2,0,"mat-drawer-content")),2&Ye&&(C.vxM(fe.hasBackdrop?0:-1),C.R7$(3),C.vxM(fe._content?-1:3))},dependencies:[F],styles:[".mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color, var(--mat-sys-on-background));background-color:var(--mat-sidenav-content-background-color, var(--mat-sys-background));box-sizing:border-box;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible;background-color:var(--mat-sidenav-scrim-color, color-mix(in srgb, var(--mat-sys-neutral-variant20) 40%, transparent))}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}@media(forced-colors: active){.mat-drawer-backdrop{opacity:.5}}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-content.mat-drawer-content-hidden{opacity:0}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;color:var(--mat-sidenav-container-text-color, var(--mat-sys-on-surface-variant));box-shadow:var(--mat-sidenav-container-elevation-shadow, none);background-color:var(--mat-sidenav-container-background-color, var(--mat-sys-surface));border-top-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));width:var(--mat-sidenav-container-width, 360px);display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}@media(forced-colors: active){.mat-drawer,[dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}}@media(forced-colors: active){[dir=rtl] .mat-drawer,.mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0);border-top-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-transition .mat-drawer{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-drawer:not(.mat-drawer-opened):not(.mat-drawer-animating){visibility:hidden;box-shadow:none}.mat-drawer:not(.mat-drawer-opened):not(.mat-drawer-animating) .mat-drawer-inner-container{display:none}.mat-drawer.mat-drawer-opened.mat-drawer-opened{transform:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color, transparent);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color, transparent);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color, transparent);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color, transparent);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto}.mat-sidenav-fixed{position:fixed}\n"],encapsulation:2,changeDetection:0})}return nt})(),$=(()=>{class nt extends F{static \u0275fac=(()=>{let oe;return function(fe){return(oe||(oe=C.xGo(nt)))(fe||nt)}})();static \u0275cmp=C.VBU({type:nt,selectors:[["mat-sidenav-content"]],hostAttrs:[1,"mat-drawer-content","mat-sidenav-content"],features:[C.Jv_([{provide:u.uv,useExisting:nt}]),C.Vt3],ngContentSelectors:ce,decls:1,vars:0,template:function(Ye,fe){1&Ye&&(C.NAR(),C.SdG(0))},encapsulation:2,changeDetection:0})}return nt})(),Ke=(()=>{class nt extends ve{get fixedInViewport(){return this._fixedInViewport}set fixedInViewport(oe){this._fixedInViewport=(0,T.he)(oe)}_fixedInViewport=!1;get fixedTopGap(){return this._fixedTopGap}set fixedTopGap(oe){this._fixedTopGap=(0,w.OE)(oe)}_fixedTopGap=0;get fixedBottomGap(){return this._fixedBottomGap}set fixedBottomGap(oe){this._fixedBottomGap=(0,w.OE)(oe)}_fixedBottomGap=0;static \u0275fac=(()=>{let oe;return function(fe){return(oe||(oe=C.xGo(nt)))(fe||nt)}})();static \u0275cmp=C.VBU({type:nt,selectors:[["mat-sidenav"]],hostAttrs:[1,"mat-drawer","mat-sidenav"],hostVars:16,hostBindings:function(Ye,fe){2&Ye&&(C.BMQ("tabIndex","side"!==fe.mode?"-1":null)("align",null),C.xc7("top",fe.fixedInViewport?fe.fixedTopGap:null,"px")("bottom",fe.fixedInViewport?fe.fixedBottomGap:null,"px"),C.AVh("mat-drawer-end","end"===fe.position)("mat-drawer-over","over"===fe.mode)("mat-drawer-push","push"===fe.mode)("mat-drawer-side","side"===fe.mode)("mat-sidenav-fixed",fe.fixedInViewport))},inputs:{fixedInViewport:"fixedInViewport",fixedTopGap:"fixedTopGap",fixedBottomGap:"fixedBottomGap"},exportAs:["matSidenav"],features:[C.Jv_([{provide:ve,useExisting:nt}]),C.Vt3],ngContentSelectors:ce,decls:3,vars:0,consts:[["content",""],["cdkScrollable","",1,"mat-drawer-inner-container"]],template:function(Ye,fe){1&Ye&&(C.NAR(),C.j41(0,"div",1,0),C.SdG(2),C.k0s())},dependencies:[u.uv],encapsulation:2,changeDetection:0})}return nt})(),Vt=(()=>{class nt extends H{_allDrawers=void 0;_content=void 0;static \u0275fac=(()=>{let oe;return function(fe){return(oe||(oe=C.xGo(nt)))(fe||nt)}})();static \u0275cmp=C.VBU({type:nt,selectors:[["mat-sidenav-container"]],contentQueries:function(Ye,fe,Qe){if(1&Ye&&(C.wni(Qe,$,5),C.wni(Qe,Ke,5)),2&Ye){let gt;C.mGM(gt=C.lsd())&&(fe._content=gt.first),C.mGM(gt=C.lsd())&&(fe._allDrawers=gt)}},hostAttrs:[1,"mat-drawer-container","mat-sidenav-container"],hostVars:2,hostBindings:function(Ye,fe){2&Ye&&C.AVh("mat-drawer-container-explicit-backdrop",fe._backdropOverride)},exportAs:["matSidenavContainer"],features:[C.Jv_([{provide:ie,useExisting:nt},{provide:H,useExisting:nt}]),C.Vt3],ngContentSelectors:_e,decls:4,vars:2,consts:[[1,"mat-drawer-backdrop",3,"mat-drawer-shown"],[1,"mat-drawer-backdrop",3,"click"]],template:function(Ye,fe){1&Ye&&(C.NAR(Xe),C.nVh(0,he,1,2,"div",0),C.SdG(1),C.SdG(2,1),C.nVh(3,Dt,2,0,"mat-sidenav-content")),2&Ye&&(C.vxM(fe.hasBackdrop?0:-1),C.R7$(3),C.vxM(fe._content?-1:3))},dependencies:[$],styles:[".mat-drawer-container{position:relative;z-index:1;color:var(--mat-sidenav-content-text-color, var(--mat-sys-on-background));background-color:var(--mat-sidenav-content-background-color, var(--mat-sys-background));box-sizing:border-box;display:block;overflow:hidden}.mat-drawer-container[fullscreen]{top:0;left:0;right:0;bottom:0;position:absolute}.mat-drawer-container[fullscreen].mat-drawer-container-has-open{overflow:hidden}.mat-drawer-container.mat-drawer-container-explicit-backdrop .mat-drawer-side{z-index:3}.mat-drawer-container.ng-animate-disabled .mat-drawer-backdrop,.mat-drawer-container.ng-animate-disabled .mat-drawer-content,.ng-animate-disabled .mat-drawer-container .mat-drawer-backdrop,.ng-animate-disabled .mat-drawer-container .mat-drawer-content{transition:none}.mat-drawer-backdrop{top:0;left:0;right:0;bottom:0;position:absolute;display:block;z-index:3;visibility:hidden}.mat-drawer-backdrop.mat-drawer-shown{visibility:visible;background-color:var(--mat-sidenav-scrim-color, color-mix(in srgb, var(--mat-sys-neutral-variant20) 40%, transparent))}.mat-drawer-transition .mat-drawer-backdrop{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:background-color,visibility}@media(forced-colors: active){.mat-drawer-backdrop{opacity:.5}}.mat-drawer-content{position:relative;z-index:1;display:block;height:100%;overflow:auto}.mat-drawer-content.mat-drawer-content-hidden{opacity:0}.mat-drawer-transition .mat-drawer-content{transition-duration:400ms;transition-timing-function:cubic-bezier(0.25, 0.8, 0.25, 1);transition-property:transform,margin-left,margin-right}.mat-drawer{position:relative;z-index:4;color:var(--mat-sidenav-container-text-color, var(--mat-sys-on-surface-variant));box-shadow:var(--mat-sidenav-container-elevation-shadow, none);background-color:var(--mat-sidenav-container-background-color, var(--mat-sys-surface));border-top-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));width:var(--mat-sidenav-container-width, 360px);display:block;position:absolute;top:0;bottom:0;z-index:3;outline:0;box-sizing:border-box;overflow-y:auto;transform:translate3d(-100%, 0, 0)}@media(forced-colors: active){.mat-drawer,[dir=rtl] .mat-drawer.mat-drawer-end{border-right:solid 1px currentColor}}@media(forced-colors: active){[dir=rtl] .mat-drawer,.mat-drawer.mat-drawer-end{border-left:solid 1px currentColor;border-right:none}}.mat-drawer.mat-drawer-side{z-index:2}.mat-drawer.mat-drawer-end{right:0;transform:translate3d(100%, 0, 0);border-top-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-right-radius:0;border-bottom-right-radius:0}[dir=rtl] .mat-drawer{border-top-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-left-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-right-radius:0;border-bottom-right-radius:0;transform:translate3d(100%, 0, 0)}[dir=rtl] .mat-drawer.mat-drawer-end{border-top-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-bottom-right-radius:var(--mat-sidenav-container-shape, var(--mat-sys-corner-large));border-top-left-radius:0;border-bottom-left-radius:0;left:0;right:auto;transform:translate3d(-100%, 0, 0)}.mat-drawer-transition .mat-drawer{transition:transform 400ms cubic-bezier(0.25, 0.8, 0.25, 1)}.mat-drawer:not(.mat-drawer-opened):not(.mat-drawer-animating){visibility:hidden;box-shadow:none}.mat-drawer:not(.mat-drawer-opened):not(.mat-drawer-animating) .mat-drawer-inner-container{display:none}.mat-drawer.mat-drawer-opened.mat-drawer-opened{transform:none}.mat-drawer-side{box-shadow:none;border-right-color:var(--mat-sidenav-container-divider-color, transparent);border-right-width:1px;border-right-style:solid}.mat-drawer-side.mat-drawer-end{border-left-color:var(--mat-sidenav-container-divider-color, transparent);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side{border-left-color:var(--mat-sidenav-container-divider-color, transparent);border-left-width:1px;border-left-style:solid;border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-right-color:var(--mat-sidenav-container-divider-color, transparent);border-right-width:1px;border-right-style:solid;border-left:none}.mat-drawer-inner-container{width:100%;height:100%;overflow:auto}.mat-sidenav-fixed{position:fixed}\n"],encapsulation:2,changeDetection:0})}return nt})(),St=(()=>{class nt{static \u0275fac=function(Ye){return new(Ye||nt)};static \u0275mod=C.$C({type:nt});static \u0275inj=L.G2t({imports:[V.y,u.Gj,u.Gj,V.y]})}return nt})()},450(Zt,pe,l){"use strict";l.d(pe,{mV:()=>W,sG:()=>j});var i=l(2615),d=l(3664),v=l(7705),T=l(9417),w=l(6838),e=l(9726),O=l(8968),f=l(1804),u=l(2046),L=l(2496),C=l(3155),B=l(2466);const A=["switch"],Pe=["*"];function le(G,re){1&G&&(d.j41(0,"span",11),i.qSk(),d.j41(1,"svg",13),d.nrm(2,"path",14),d.k0s(),d.j41(3,"svg",15),d.nrm(4,"path",16),d.k0s()())}const Ce=new i.nKC("mat-slide-toggle-default-options",{providedIn:"root",factory:()=>({disableToggleValue:!1,hideIcon:!1,disabledInteractive:!1})});class Ae{source;checked;constructor(re,xe){this.source=re,this.checked=xe}}let j=(()=>{class G{_elementRef=(0,i.WQX)(d.aKT);_focusMonitor=(0,i.WQX)(w.FN);_changeDetectorRef=(0,i.WQX)(v.gRc);defaults=(0,i.WQX)(Ce);_onChange=xe=>{};_onTouched=()=>{};_validatorOnChange=()=>{};_uniqueId;_checked=!1;_createChangeEvent(xe){return new Ae(this,xe)}_labelId;get buttonId(){return`${this.id||this._uniqueId}-button`}_switchElement;focus(){this._switchElement.nativeElement.focus()}_noopAnimations=(0,f.Rc)();_focused;name=null;id;labelPosition="after";ariaLabel=null;ariaLabelledby=null;ariaDescribedby;required;color;disabled=!1;disableRipple=!1;tabIndex=0;get checked(){return this._checked}set checked(xe){this._checked=xe,this._changeDetectorRef.markForCheck()}hideIcon;disabledInteractive;change=new d.bkB;toggleChange=new d.bkB;get inputId(){return`${this.id||this._uniqueId}-input`}constructor(){(0,i.WQX)(O.l).load(u.A);const xe=(0,i.WQX)(new v.ES_("tabindex"),{optional:!0}),Ee=this.defaults;this.tabIndex=null==xe?0:parseInt(xe)||0,this.color=Ee.color||"accent",this.id=this._uniqueId=(0,i.WQX)(e.g).getId("mat-mdc-slide-toggle-"),this.hideIcon=Ee.hideIcon??!1,this.disabledInteractive=Ee.disabledInteractive??!1,this._labelId=this._uniqueId+"-label"}ngAfterContentInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(xe=>{"keyboard"===xe||"program"===xe?(this._focused=!0,this._changeDetectorRef.markForCheck()):xe||Promise.resolve().then(()=>{this._focused=!1,this._onTouched(),this._changeDetectorRef.markForCheck()})})}ngOnChanges(xe){xe.required&&this._validatorOnChange()}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef)}writeValue(xe){this.checked=!!xe}registerOnChange(xe){this._onChange=xe}registerOnTouched(xe){this._onTouched=xe}validate(xe){return this.required&&!0!==xe.value?{required:!0}:null}registerOnValidatorChange(xe){this._validatorOnChange=xe}setDisabledState(xe){this.disabled=xe,this._changeDetectorRef.markForCheck()}toggle(){this.checked=!this.checked,this._onChange(this.checked)}_emitChangeEvent(){this._onChange(this.checked),this.change.emit(this._createChangeEvent(this.checked))}_handleClick(){this.disabled||(this.toggleChange.emit(),this.defaults.disableToggleValue||(this.checked=!this.checked,this._onChange(this.checked),this.change.emit(new Ae(this,this.checked))))}_getAriaLabelledBy(){return this.ariaLabelledby?this.ariaLabelledby:this.ariaLabel?null:this._labelId}static \u0275fac=function(Ee){return new(Ee||G)};static \u0275cmp=d.VBU({type:G,selectors:[["mat-slide-toggle"]],viewQuery:function(Ee,V){if(1&Ee&&d.GBs(A,5),2&Ee){let ce;d.mGM(ce=d.lsd())&&(V._switchElement=ce.first)}},hostAttrs:[1,"mat-mdc-slide-toggle"],hostVars:13,hostBindings:function(Ee,V){2&Ee&&(d.Avn("id",V.id),d.BMQ("tabindex",null)("aria-label",null)("name",null)("aria-labelledby",null),d.HbH(V.color?"mat-"+V.color:""),d.AVh("mat-mdc-slide-toggle-focused",V._focused)("mat-mdc-slide-toggle-checked",V.checked)("_mat-animation-noopable",V._noopAnimations))},inputs:{name:"name",id:"id",labelPosition:"labelPosition",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],ariaDescribedby:[0,"aria-describedby","ariaDescribedby"],required:[2,"required","required",v.L39],color:"color",disabled:[2,"disabled","disabled",v.L39],disableRipple:[2,"disableRipple","disableRipple",v.L39],tabIndex:[2,"tabIndex","tabIndex",xe=>null==xe?0:(0,v.Udg)(xe)],checked:[2,"checked","checked",v.L39],hideIcon:[2,"hideIcon","hideIcon",v.L39],disabledInteractive:[2,"disabledInteractive","disabledInteractive",v.L39]},outputs:{change:"change",toggleChange:"toggleChange"},exportAs:["matSlideToggle"],features:[d.Jv_([{provide:T.kq,useExisting:(0,i.Rfq)(()=>G),multi:!0},{provide:T.cz,useExisting:G,multi:!0}]),d.OA$],ngContentSelectors:Pe,decls:14,vars:27,consts:[["switch",""],["mat-internal-form-field","",3,"labelPosition"],["role","switch","type","button",1,"mdc-switch",3,"click","tabIndex","disabled"],[1,"mat-mdc-slide-toggle-touch-target"],[1,"mdc-switch__track"],[1,"mdc-switch__handle-track"],[1,"mdc-switch__handle"],[1,"mdc-switch__shadow"],[1,"mdc-elevation-overlay"],[1,"mdc-switch__ripple"],["mat-ripple","",1,"mat-mdc-slide-toggle-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled","matRippleCentered"],[1,"mdc-switch__icons"],[1,"mdc-label",3,"click","for"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--on"],["d","M19.69,5.23L8.96,15.96l-4.23-4.23L2.96,13.5l6,6L21.46,7L19.69,5.23z"],["viewBox","0 0 24 24","aria-hidden","true",1,"mdc-switch__icon","mdc-switch__icon--off"],["d","M20 13H4v-2h16v2z"]],template:function(Ee,V){if(1&Ee){const ce=d.RV6();d.NAR(),d.j41(0,"div",1)(1,"button",2,0),d.bIt("click",function(){return i.eBV(ce),i.Njj(V._handleClick())}),d.nrm(3,"div",3)(4,"span",4),d.j41(5,"span",5)(6,"span",6)(7,"span",7),d.nrm(8,"span",8),d.k0s(),d.j41(9,"span",9),d.nrm(10,"span",10),d.k0s(),d.nVh(11,le,5,0,"span",11),d.k0s()()(),d.j41(12,"label",12),d.bIt("click",function(ne){return i.eBV(ce),i.Njj(ne.stopPropagation())}),d.SdG(13),d.k0s()()}if(2&Ee){const ce=d.sdS(2);d.Y8G("labelPosition",V.labelPosition),d.R7$(),d.AVh("mdc-switch--selected",V.checked)("mdc-switch--unselected",!V.checked)("mdc-switch--checked",V.checked)("mdc-switch--disabled",V.disabled)("mat-mdc-slide-toggle-disabled-interactive",V.disabledInteractive),d.Y8G("tabIndex",V.disabled&&!V.disabledInteractive?-1:V.tabIndex)("disabled",V.disabled&&!V.disabledInteractive),d.BMQ("id",V.buttonId)("name",V.name)("aria-label",V.ariaLabel)("aria-labelledby",V._getAriaLabelledBy())("aria-describedby",V.ariaDescribedby)("aria-required",V.required||null)("aria-checked",V.checked)("aria-disabled",V.disabled&&V.disabledInteractive?"true":null),d.R7$(9),d.Y8G("matRippleTrigger",ce)("matRippleDisabled",V.disableRipple||V.disabled)("matRippleCentered",!0),d.R7$(),d.vxM(V.hideIcon?-1:11),d.R7$(),d.Y8G("for",V.buttonId),d.BMQ("id",V._labelId)}},dependencies:[L.r6,C.t],styles:['.mdc-switch{align-items:center;background:none;border:none;cursor:pointer;display:inline-flex;flex-shrink:0;margin:0;outline:none;overflow:visible;padding:0;position:relative;width:var(--mat-slide-toggle-track-width, 52px)}.mdc-switch.mdc-switch--disabled{cursor:default;pointer-events:none}.mdc-switch.mat-mdc-slide-toggle-disabled-interactive{pointer-events:auto}.mdc-switch__track{overflow:hidden;position:relative;width:100%;height:var(--mat-slide-toggle-track-height, 32px);border-radius:var(--mat-slide-toggle-track-shape, var(--mat-sys-corner-full))}.mdc-switch--disabled.mdc-switch .mdc-switch__track{opacity:var(--mat-slide-toggle-disabled-track-opacity, 0.12)}.mdc-switch__track::before,.mdc-switch__track::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";height:100%;left:0;position:absolute;width:100%;border-width:var(--mat-slide-toggle-track-outline-width, 2px);border-color:var(--mat-slide-toggle-track-outline-color, var(--mat-sys-outline))}.mdc-switch--selected .mdc-switch__track::before,.mdc-switch--selected .mdc-switch__track::after{border-width:var(--mat-slide-toggle-selected-track-outline-width, 2px);border-color:var(--mat-slide-toggle-selected-track-outline-color, transparent)}.mdc-switch--disabled .mdc-switch__track::before,.mdc-switch--disabled .mdc-switch__track::after{border-width:var(--mat-slide-toggle-disabled-unselected-track-outline-width, 2px);border-color:var(--mat-slide-toggle-disabled-unselected-track-outline-color, var(--mat-sys-on-surface))}@media(forced-colors: active){.mdc-switch__track{border-color:currentColor}}.mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);transform:translateX(0);background:var(--mat-slide-toggle-unselected-track-color, var(--mat-sys-surface-variant))}.mdc-switch--selected .mdc-switch__track::before{transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch--selected .mdc-switch__track::before{transform:translateX(-100%)}.mdc-switch--selected .mdc-switch__track::before{opacity:var(--mat-slide-toggle-hidden-track-opacity, 0);transition:var(--mat-slide-toggle-hidden-track-transition, opacity 75ms)}.mdc-switch--unselected .mdc-switch__track::before{opacity:var(--mat-slide-toggle-visible-track-opacity, 1);transition:var(--mat-slide-toggle-visible-track-transition, opacity 75ms)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::before{background:var(--mat-slide-toggle-unselected-hover-track-color, var(--mat-sys-surface-variant))}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::before{background:var(--mat-slide-toggle-unselected-focus-track-color, var(--mat-sys-surface-variant))}.mdc-switch:enabled:active .mdc-switch__track::before{background:var(--mat-slide-toggle-unselected-pressed-track-color, var(--mat-sys-surface-variant))}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:hover:not(:focus):not(:active) .mdc-switch__track::before,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:focus:not(:active) .mdc-switch__track::before,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:active .mdc-switch__track::before,.mdc-switch.mdc-switch--disabled .mdc-switch__track::before{background:var(--mat-slide-toggle-disabled-unselected-track-color, var(--mat-sys-surface-variant))}.mdc-switch__track::after{transform:translateX(-100%);background:var(--mat-slide-toggle-selected-track-color, var(--mat-sys-primary))}[dir=rtl] .mdc-switch__track::after{transform:translateX(100%)}.mdc-switch--selected .mdc-switch__track::after{transform:translateX(0)}.mdc-switch--selected .mdc-switch__track::after{opacity:var(--mat-slide-toggle-visible-track-opacity, 1);transition:var(--mat-slide-toggle-visible-track-transition, opacity 75ms)}.mdc-switch--unselected .mdc-switch__track::after{opacity:var(--mat-slide-toggle-hidden-track-opacity, 0);transition:var(--mat-slide-toggle-hidden-track-transition, opacity 75ms)}.mdc-switch:enabled:hover:not(:focus):not(:active) .mdc-switch__track::after{background:var(--mat-slide-toggle-selected-hover-track-color, var(--mat-sys-primary))}.mdc-switch:enabled:focus:not(:active) .mdc-switch__track::after{background:var(--mat-slide-toggle-selected-focus-track-color, var(--mat-sys-primary))}.mdc-switch:enabled:active .mdc-switch__track::after{background:var(--mat-slide-toggle-selected-pressed-track-color, var(--mat-sys-primary))}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:hover:not(:focus):not(:active) .mdc-switch__track::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:focus:not(:active) .mdc-switch__track::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:active .mdc-switch__track::after,.mdc-switch.mdc-switch--disabled .mdc-switch__track::after{background:var(--mat-slide-toggle-disabled-selected-track-color, var(--mat-sys-on-surface))}.mdc-switch__handle-track{height:100%;pointer-events:none;position:absolute;top:0;transition:transform 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);left:0;right:auto;transform:translateX(0);width:calc(100% - var(--mat-slide-toggle-handle-width))}[dir=rtl] .mdc-switch__handle-track{left:auto;right:0}.mdc-switch--selected .mdc-switch__handle-track{transform:translateX(100%)}[dir=rtl] .mdc-switch--selected .mdc-switch__handle-track{transform:translateX(-100%)}.mdc-switch__handle{display:flex;pointer-events:auto;position:absolute;top:50%;transform:translateY(-50%);left:0;right:auto;transition:width 75ms cubic-bezier(0.4, 0, 0.2, 1),height 75ms cubic-bezier(0.4, 0, 0.2, 1),margin 75ms cubic-bezier(0.4, 0, 0.2, 1);width:var(--mat-slide-toggle-handle-width);height:var(--mat-slide-toggle-handle-height);border-radius:var(--mat-slide-toggle-handle-shape, var(--mat-sys-corner-full))}[dir=rtl] .mdc-switch__handle{left:auto;right:0}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle{width:var(--mat-slide-toggle-unselected-handle-size, 16px);height:var(--mat-slide-toggle-unselected-handle-size, 16px);margin:var(--mat-slide-toggle-unselected-handle-horizontal-margin, 0 8px)}.mat-mdc-slide-toggle .mdc-switch--unselected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-slide-toggle-unselected-with-icon-handle-horizontal-margin, 0 4px)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle{width:var(--mat-slide-toggle-selected-handle-size, 24px);height:var(--mat-slide-toggle-selected-handle-size, 24px);margin:var(--mat-slide-toggle-selected-handle-horizontal-margin, 0 24px)}.mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle:has(.mdc-switch__icons){margin:var(--mat-slide-toggle-selected-with-icon-handle-horizontal-margin, 0 24px)}.mat-mdc-slide-toggle .mdc-switch__handle:has(.mdc-switch__icons){width:var(--mat-slide-toggle-with-icon-handle-size, 24px);height:var(--mat-slide-toggle-with-icon-handle-size, 24px)}.mat-mdc-slide-toggle .mdc-switch:active:not(.mdc-switch--disabled) .mdc-switch__handle{width:var(--mat-slide-toggle-pressed-handle-size, 28px);height:var(--mat-slide-toggle-pressed-handle-size, 28px)}.mat-mdc-slide-toggle .mdc-switch--selected:active:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-slide-toggle-selected-pressed-handle-horizontal-margin, 0 22px)}.mat-mdc-slide-toggle .mdc-switch--unselected:active:not(.mdc-switch--disabled) .mdc-switch__handle{margin:var(--mat-slide-toggle-unselected-pressed-handle-horizontal-margin, 0 2px)}.mdc-switch--disabled.mdc-switch--selected .mdc-switch__handle::after{opacity:var(--mat-slide-toggle-disabled-selected-handle-opacity, 1)}.mdc-switch--disabled.mdc-switch--unselected .mdc-switch__handle::after{opacity:var(--mat-slide-toggle-disabled-unselected-handle-opacity, 0.38)}.mdc-switch__handle::before,.mdc-switch__handle::after{border:1px solid rgba(0,0,0,0);border-radius:inherit;box-sizing:border-box;content:"";width:100%;height:100%;left:0;position:absolute;top:0;transition:background-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1),border-color 75ms 0ms cubic-bezier(0.4, 0, 0.2, 1);z-index:-1}@media(forced-colors: active){.mdc-switch__handle::before,.mdc-switch__handle::after{border-color:currentColor}}.mdc-switch--selected:enabled .mdc-switch__handle::after{background:var(--mat-slide-toggle-selected-handle-color, var(--mat-sys-on-primary))}.mdc-switch--selected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mat-slide-toggle-selected-hover-handle-color, var(--mat-sys-primary-container))}.mdc-switch--selected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mat-slide-toggle-selected-focus-handle-color, var(--mat-sys-primary-container))}.mdc-switch--selected:enabled:active .mdc-switch__handle::after{background:var(--mat-slide-toggle-selected-pressed-handle-color, var(--mat-sys-primary-container))}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled.mdc-switch--selected:hover:not(:focus):not(:active) .mdc-switch__handle::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled.mdc-switch--selected:focus:not(:active) .mdc-switch__handle::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled.mdc-switch--selected:active .mdc-switch__handle::after,.mdc-switch--selected.mdc-switch--disabled .mdc-switch__handle::after{background:var(--mat-slide-toggle-disabled-selected-handle-color, var(--mat-sys-surface))}.mdc-switch--unselected:enabled .mdc-switch__handle::after{background:var(--mat-slide-toggle-unselected-handle-color, var(--mat-sys-outline))}.mdc-switch--unselected:enabled:hover:not(:focus):not(:active) .mdc-switch__handle::after{background:var(--mat-slide-toggle-unselected-hover-handle-color, var(--mat-sys-on-surface-variant))}.mdc-switch--unselected:enabled:focus:not(:active) .mdc-switch__handle::after{background:var(--mat-slide-toggle-unselected-focus-handle-color, var(--mat-sys-on-surface-variant))}.mdc-switch--unselected:enabled:active .mdc-switch__handle::after{background:var(--mat-slide-toggle-unselected-pressed-handle-color, var(--mat-sys-on-surface-variant))}.mdc-switch--unselected.mdc-switch--disabled .mdc-switch__handle::after{background:var(--mat-slide-toggle-disabled-unselected-handle-color, var(--mat-sys-on-surface))}.mdc-switch__handle::before{background:var(--mat-slide-toggle-handle-surface-color)}.mdc-switch__shadow{border-radius:inherit;bottom:0;left:0;position:absolute;right:0;top:0}.mdc-switch:enabled .mdc-switch__shadow{box-shadow:var(--mat-slide-toggle-handle-elevation-shadow)}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:hover:not(:focus):not(:active) .mdc-switch__shadow,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:focus:not(:active) .mdc-switch__shadow,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:active .mdc-switch__shadow,.mdc-switch.mdc-switch--disabled .mdc-switch__shadow{box-shadow:var(--mat-slide-toggle-disabled-handle-elevation-shadow)}.mdc-switch__ripple{left:50%;position:absolute;top:50%;transform:translate(-50%, -50%);z-index:-1;width:var(--mat-slide-toggle-state-layer-size, 40px);height:var(--mat-slide-toggle-state-layer-size, 40px)}.mdc-switch__ripple::after{content:"";opacity:0}.mdc-switch--disabled .mdc-switch__ripple::after{display:none}.mat-mdc-slide-toggle-disabled-interactive .mdc-switch__ripple::after{display:block}.mdc-switch:hover .mdc-switch__ripple::after{transition:75ms opacity cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:enabled:focus .mdc-switch__ripple::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:enabled:active .mdc-switch__ripple::after,.mat-mdc-slide-toggle-disabled-interactive.mdc-switch--disabled:enabled:hover:not(:focus) .mdc-switch__ripple::after,.mdc-switch--unselected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background:var(--mat-slide-toggle-unselected-hover-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-slide-toggle-unselected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mdc-switch--unselected:enabled:focus .mdc-switch__ripple::after{background:var(--mat-slide-toggle-unselected-focus-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-slide-toggle-unselected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-switch--unselected:enabled:active .mdc-switch__ripple::after{background:var(--mat-slide-toggle-unselected-pressed-state-layer-color, var(--mat-sys-on-surface));opacity:var(--mat-slide-toggle-unselected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity));transition:opacity 75ms linear}.mdc-switch--selected:enabled:hover:not(:focus) .mdc-switch__ripple::after{background:var(--mat-slide-toggle-selected-hover-state-layer-color, var(--mat-sys-primary));opacity:var(--mat-slide-toggle-selected-hover-state-layer-opacity, var(--mat-sys-hover-state-layer-opacity))}.mdc-switch--selected:enabled:focus .mdc-switch__ripple::after{background:var(--mat-slide-toggle-selected-focus-state-layer-color, var(--mat-sys-primary));opacity:var(--mat-slide-toggle-selected-focus-state-layer-opacity, var(--mat-sys-focus-state-layer-opacity))}.mdc-switch--selected:enabled:active .mdc-switch__ripple::after{background:var(--mat-slide-toggle-selected-pressed-state-layer-color, var(--mat-sys-primary));opacity:var(--mat-slide-toggle-selected-pressed-state-layer-opacity, var(--mat-sys-pressed-state-layer-opacity));transition:opacity 75ms linear}.mdc-switch__icons{position:relative;height:100%;width:100%;z-index:1;transform:translateZ(0)}.mdc-switch--disabled.mdc-switch--unselected .mdc-switch__icons{opacity:var(--mat-slide-toggle-disabled-unselected-icon-opacity, 0.38)}.mdc-switch--disabled.mdc-switch--selected .mdc-switch__icons{opacity:var(--mat-slide-toggle-disabled-selected-icon-opacity, 0.38)}.mdc-switch__icon{bottom:0;left:0;margin:auto;position:absolute;right:0;top:0;opacity:0;transition:opacity 30ms 0ms cubic-bezier(0.4, 0, 1, 1)}.mdc-switch--unselected .mdc-switch__icon{width:var(--mat-slide-toggle-unselected-icon-size, 16px);height:var(--mat-slide-toggle-unselected-icon-size, 16px);fill:var(--mat-slide-toggle-unselected-icon-color, var(--mat-sys-surface-variant))}.mdc-switch--unselected.mdc-switch--disabled .mdc-switch__icon{fill:var(--mat-slide-toggle-disabled-unselected-icon-color, var(--mat-sys-surface-variant))}.mdc-switch--selected .mdc-switch__icon{width:var(--mat-slide-toggle-selected-icon-size, 16px);height:var(--mat-slide-toggle-selected-icon-size, 16px);fill:var(--mat-slide-toggle-selected-icon-color, var(--mat-sys-on-primary-container))}.mdc-switch--selected.mdc-switch--disabled .mdc-switch__icon{fill:var(--mat-slide-toggle-disabled-selected-icon-color, var(--mat-sys-on-surface))}.mdc-switch--selected .mdc-switch__icon--on,.mdc-switch--unselected .mdc-switch__icon--off{opacity:1;transition:opacity 45ms 30ms cubic-bezier(0, 0, 0.2, 1)}.mat-mdc-slide-toggle{-webkit-user-select:none;user-select:none;display:inline-block;-webkit-tap-highlight-color:rgba(0,0,0,0);outline:0}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple,.mat-mdc-slide-toggle .mdc-switch__ripple::after{top:0;left:0;right:0;bottom:0;position:absolute;border-radius:50%;pointer-events:none}.mat-mdc-slide-toggle .mat-mdc-slide-toggle-ripple:not(:empty),.mat-mdc-slide-toggle .mdc-switch__ripple::after:not(:empty){transform:translateZ(0)}.mat-mdc-slide-toggle.mat-mdc-slide-toggle-focused .mat-focus-indicator::before{content:""}.mat-mdc-slide-toggle .mat-internal-form-field{color:var(--mat-slide-toggle-label-text-color, var(--mat-sys-on-surface));font-family:var(--mat-slide-toggle-label-text-font, var(--mat-sys-body-medium-font));line-height:var(--mat-slide-toggle-label-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-slide-toggle-label-text-size, var(--mat-sys-body-medium-size));letter-spacing:var(--mat-slide-toggle-label-text-tracking, var(--mat-sys-body-medium-tracking));font-weight:var(--mat-slide-toggle-label-text-weight, var(--mat-sys-body-medium-weight))}.mat-mdc-slide-toggle .mat-ripple-element{opacity:.12}.mat-mdc-slide-toggle .mat-focus-indicator::before{border-radius:50%}.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle-track,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__icon,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__handle::after,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::before,.mat-mdc-slide-toggle._mat-animation-noopable .mdc-switch__track::after{transition:none}.mat-mdc-slide-toggle .mdc-switch:enabled+.mdc-label{cursor:pointer}.mat-mdc-slide-toggle .mdc-switch--disabled+label{color:var(--mat-slide-toggle-disabled-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-slide-toggle-touch-target{position:absolute;top:50%;left:50%;height:var(--mat-slide-toggle-touch-target-size, 48px);width:100%;transform:translate(-50%, -50%);display:var(--mat-slide-toggle-touch-target-display, block)}[dir=rtl] .mat-mdc-slide-toggle-touch-target{left:auto;right:50%;transform:translate(50%, -50%)}\n'],encapsulation:2,changeDetection:0})}return G})(),W=(()=>{class G{static \u0275fac=function(Ee){return new(Ee||G)};static \u0275mod=d.$C({type:G});static \u0275inj=i.G2t({imports:[j,B.y,B.y]})}return G})()},5416(Zt,pe,l){"use strict";l.d(pe,{UG:()=>he,_T:()=>lt,x6:()=>_e});var i=l(2615),d=l(3664),v=l(7705),T=l(1413),w=l(7673),e=l(8834),O=l(7094),f=l(9726),u=l(9842),L=l(6939),C=l(1804),B=l(9327),A=l(4330),Pe=l(9338),le=l(6977),Ce=l(2466);function Ae(te,ie){if(1&te){const P=d.RV6();d.j41(0,"div",1)(1,"button",2),d.bIt("click",function(){i.eBV(P);const ve=d.XpG();return i.Njj(ve.action())}),d.EFF(2),d.k0s()()}if(2&te){const P=d.XpG();d.R7$(2),d.SpI(" ",P.data.action," ")}}const j=["label"];function W(te,ie){}const G=Math.pow(2,31)-1;class re{_overlayRef;instance;containerInstance;_afterDismissed=new T.B;_afterOpened=new T.B;_onAction=new T.B;_durationTimeoutId;_dismissedByAction=!1;constructor(ie,P){this._overlayRef=P,this.containerInstance=ie,ie._onExit.subscribe(()=>this._finishDismiss())}dismiss(){this._afterDismissed.closed||this.containerInstance.exit(),clearTimeout(this._durationTimeoutId)}dismissWithAction(){this._onAction.closed||(this._dismissedByAction=!0,this._onAction.next(),this._onAction.complete(),this.dismiss()),clearTimeout(this._durationTimeoutId)}closeWithAction(){this.dismissWithAction()}_dismissAfter(ie){this._durationTimeoutId=setTimeout(()=>this.dismiss(),Math.min(ie,G))}_open(){this._afterOpened.closed||(this._afterOpened.next(),this._afterOpened.complete())}_finishDismiss(){this._overlayRef.dispose(),this._onAction.closed||this._onAction.complete(),this._afterDismissed.next({dismissedByAction:this._dismissedByAction}),this._afterDismissed.complete(),this._dismissedByAction=!1}afterDismissed(){return this._afterDismissed}afterOpened(){return this.containerInstance._onEnter}onAction(){return this._onAction}}const xe=new i.nKC("MatSnackBarData");class Ee{politeness="polite";announcementMessage="";viewContainerRef;duration=0;panelClass;direction;data=null;horizontalPosition="center";verticalPosition="bottom"}let V=(()=>{class te{static \u0275fac=function(F){return new(F||te)};static \u0275dir=d.FsC({type:te,selectors:[["","matSnackBarLabel",""]],hostAttrs:[1,"mat-mdc-snack-bar-label","mdc-snackbar__label"]})}return te})(),ce=(()=>{class te{static \u0275fac=function(F){return new(F||te)};static \u0275dir=d.FsC({type:te,selectors:[["","matSnackBarActions",""]],hostAttrs:[1,"mat-mdc-snack-bar-actions","mdc-snackbar__actions"]})}return te})(),be=(()=>{class te{static \u0275fac=function(F){return new(F||te)};static \u0275dir=d.FsC({type:te,selectors:[["","matSnackBarAction",""]],hostAttrs:[1,"mat-mdc-snack-bar-action","mdc-snackbar__action"]})}return te})(),ne=(()=>{class te{snackBarRef=(0,i.WQX)(re);data=(0,i.WQX)(xe);constructor(){}action(){this.snackBarRef.dismissWithAction()}get hasAction(){return!!this.data.action}static \u0275fac=function(F){return new(F||te)};static \u0275cmp=d.VBU({type:te,selectors:[["simple-snack-bar"]],hostAttrs:[1,"mat-mdc-simple-snack-bar"],exportAs:["matSnackBar"],decls:3,vars:2,consts:[["matSnackBarLabel",""],["matSnackBarActions",""],["matButton","","matSnackBarAction","",3,"click"]],template:function(F,ve){1&F&&(d.j41(0,"div",0),d.EFF(1),d.k0s(),d.nVh(2,Ae,3,1,"div",1)),2&F&&(d.R7$(),d.SpI(" ",ve.data.message,"\n"),d.R7$(),d.vxM(ve.hasAction?2:-1))},dependencies:[e.$z,V,ce,be],styles:[".mat-mdc-simple-snack-bar{display:flex}.mat-mdc-simple-snack-bar .mat-mdc-snack-bar-label{max-height:50vh;overflow:auto}\n"],encapsulation:2,changeDetection:0})}return te})();const J="_mat-snack-bar-enter",De="_mat-snack-bar-exit";let Re=(()=>{class te extends L.lb{_ngZone=(0,i.WQX)(d.SKi);_elementRef=(0,i.WQX)(d.aKT);_changeDetectorRef=(0,i.WQX)(v.gRc);_platform=(0,i.WQX)(u.O);_animationsDisabled=(0,C.Rc)();snackBarConfig=(0,i.WQX)(Ee);_document=(0,i.WQX)(i.qQL);_trackedModals=new Set;_enterFallback;_exitFallback;_injector=(0,i.WQX)(i.zZn);_announceDelay=150;_announceTimeoutId;_destroyed=!1;_portalOutlet;_onAnnounce=new T.B;_onExit=new T.B;_onEnter=new T.B;_animationState="void";_live;_label;_role;_liveElementId=(0,i.WQX)(f.g).getId("mat-snack-bar-container-live-");constructor(){super();const P=this.snackBarConfig;this._live="assertive"!==P.politeness||P.announcementMessage?"off"===P.politeness?"off":"polite":"assertive",this._platform.FIREFOX&&("polite"===this._live&&(this._role="status"),"assertive"===this._live&&(this._role="alert"))}attachComponentPortal(P){this._assertNotAttached();const F=this._portalOutlet.attachComponentPortal(P);return this._afterPortalAttached(),F}attachTemplatePortal(P){this._assertNotAttached();const F=this._portalOutlet.attachTemplatePortal(P);return this._afterPortalAttached(),F}attachDomPortal=P=>{this._assertNotAttached();const F=this._portalOutlet.attachDomPortal(P);return this._afterPortalAttached(),F};onAnimationEnd(P){P===De?this._completeExit():P===J&&(clearTimeout(this._enterFallback),this._ngZone.run(()=>{this._onEnter.next(),this._onEnter.complete()}))}enter(){this._destroyed||(this._animationState="visible",this._changeDetectorRef.markForCheck(),this._changeDetectorRef.detectChanges(),this._screenReaderAnnounce(),this._animationsDisabled?(0,d.mal)(()=>{this._ngZone.run(()=>queueMicrotask(()=>this.onAnimationEnd(J)))},{injector:this._injector}):(clearTimeout(this._enterFallback),this._enterFallback=setTimeout(()=>{this._elementRef.nativeElement.classList.add("mat-snack-bar-fallback-visible"),this.onAnimationEnd(J)},200)))}exit(){return this._destroyed?(0,w.of)(void 0):(this._ngZone.run(()=>{this._animationState="hidden",this._changeDetectorRef.markForCheck(),this._elementRef.nativeElement.setAttribute("mat-exit",""),clearTimeout(this._announceTimeoutId),this._animationsDisabled?(0,d.mal)(()=>{this._ngZone.run(()=>queueMicrotask(()=>this.onAnimationEnd(De)))},{injector:this._injector}):(clearTimeout(this._exitFallback),this._exitFallback=setTimeout(()=>this.onAnimationEnd(De),200))}),this._onExit)}ngOnDestroy(){this._destroyed=!0,this._clearFromModals(),this._completeExit()}_completeExit(){clearTimeout(this._exitFallback),queueMicrotask(()=>{this._onExit.next(),this._onExit.complete()})}_afterPortalAttached(){const P=this._elementRef.nativeElement,F=this.snackBarConfig.panelClass;F&&(Array.isArray(F)?F.forEach($=>P.classList.add($)):P.classList.add(F)),this._exposeToModals();const ve=this._label.nativeElement,H="mdc-snackbar__label";ve.classList.toggle(H,!ve.querySelector(`.${H}`))}_exposeToModals(){const P=this._liveElementId,F=this._document.querySelectorAll('body > .cdk-overlay-container [aria-modal="true"]');for(let ve=0;ve{const F=P.getAttribute("aria-owns");if(F){const ve=F.replace(this._liveElementId,"").trim();ve.length>0?P.setAttribute("aria-owns",ve):P.removeAttribute("aria-owns")}}),this._trackedModals.clear()}_assertNotAttached(){this._portalOutlet.hasAttached()}_screenReaderAnnounce(){this._announceTimeoutId||this._ngZone.runOutsideAngular(()=>{this._announceTimeoutId=setTimeout(()=>{if(this._destroyed)return;const P=this._elementRef.nativeElement,F=P.querySelector("[aria-hidden]"),ve=P.querySelector("[aria-live]");if(F&&ve){let H=null;this._platform.isBrowser&&document.activeElement instanceof HTMLElement&&F.contains(document.activeElement)&&(H=document.activeElement),F.removeAttribute("aria-hidden"),ve.appendChild(F),H?.focus(),this._onAnnounce.next(),this._onAnnounce.complete()}},this._announceDelay)})}static \u0275fac=function(F){return new(F||te)};static \u0275cmp=d.VBU({type:te,selectors:[["mat-snack-bar-container"]],viewQuery:function(F,ve){if(1&F&&(d.GBs(L.I3,7),d.GBs(j,7)),2&F){let H;d.mGM(H=d.lsd())&&(ve._portalOutlet=H.first),d.mGM(H=d.lsd())&&(ve._label=H.first)}},hostAttrs:[1,"mdc-snackbar","mat-mdc-snack-bar-container"],hostVars:6,hostBindings:function(F,ve){1&F&&d.bIt("animationend",function($){return ve.onAnimationEnd($.animationName)})("animationcancel",function($){return ve.onAnimationEnd($.animationName)}),2&F&&d.AVh("mat-snack-bar-container-enter","visible"===ve._animationState)("mat-snack-bar-container-exit","hidden"===ve._animationState)("mat-snack-bar-container-animations-enabled",!ve._animationsDisabled)},features:[d.Vt3],decls:6,vars:3,consts:[["label",""],[1,"mdc-snackbar__surface","mat-mdc-snackbar-surface"],[1,"mat-mdc-snack-bar-label"],["aria-hidden","true"],["cdkPortalOutlet",""]],template:function(F,ve){1&F&&(d.j41(0,"div",1)(1,"div",2,0)(3,"div",3),d.DNE(4,W,0,0,"ng-template",4),d.k0s(),d.nrm(5,"div"),d.k0s()()),2&F&&(d.R7$(5),d.BMQ("aria-live",ve._live)("role",ve._role)("id",ve._liveElementId))},dependencies:[L.I3],styles:["@keyframes _mat-snack-bar-enter{from{transform:scale(0.8);opacity:0}to{transform:scale(1);opacity:1}}@keyframes _mat-snack-bar-exit{from{opacity:1}to{opacity:0}}.mat-mdc-snack-bar-container{display:flex;align-items:center;justify-content:center;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0);margin:8px}.mat-mdc-snack-bar-handset .mat-mdc-snack-bar-container{width:100vw}.mat-snack-bar-container-animations-enabled{opacity:0}.mat-snack-bar-container-animations-enabled.mat-snack-bar-fallback-visible{opacity:1}.mat-snack-bar-container-animations-enabled.mat-snack-bar-container-enter{animation:_mat-snack-bar-enter 150ms cubic-bezier(0, 0, 0.2, 1) forwards}.mat-snack-bar-container-animations-enabled.mat-snack-bar-container-exit{animation:_mat-snack-bar-exit 75ms cubic-bezier(0.4, 0, 1, 1) forwards}.mat-mdc-snackbar-surface{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);display:flex;align-items:center;justify-content:flex-start;box-sizing:border-box;padding-left:0;padding-right:8px}[dir=rtl] .mat-mdc-snackbar-surface{padding-right:0;padding-left:8px}.mat-mdc-snack-bar-container .mat-mdc-snackbar-surface{min-width:344px;max-width:672px}.mat-mdc-snack-bar-handset .mat-mdc-snackbar-surface{width:100%;min-width:0}@media(forced-colors: active){.mat-mdc-snackbar-surface{outline:solid 1px}}.mat-mdc-snack-bar-container .mat-mdc-snackbar-surface{color:var(--mat-snack-bar-supporting-text-color, var(--mat-sys-inverse-on-surface));border-radius:var(--mat-snack-bar-container-shape, var(--mat-sys-corner-extra-small));background-color:var(--mat-snack-bar-container-color, var(--mat-sys-inverse-surface))}.mdc-snackbar__label{width:100%;flex-grow:1;box-sizing:border-box;margin:0;padding:14px 8px 14px 16px}[dir=rtl] .mdc-snackbar__label{padding-left:8px;padding-right:16px}.mat-mdc-snack-bar-container .mdc-snackbar__label{font-family:var(--mat-snack-bar-supporting-text-font, var(--mat-sys-body-medium-font));font-size:var(--mat-snack-bar-supporting-text-size, var(--mat-sys-body-medium-size));font-weight:var(--mat-snack-bar-supporting-text-weight, var(--mat-sys-body-medium-weight));line-height:var(--mat-snack-bar-supporting-text-line-height, var(--mat-sys-body-medium-line-height))}.mat-mdc-snack-bar-actions{display:flex;flex-shrink:0;align-items:center;box-sizing:border-box}.mat-mdc-snack-bar-handset,.mat-mdc-snack-bar-container,.mat-mdc-snack-bar-label{flex:1 1 auto}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled){--mat-button-text-state-layer-color: currentColor;--mat-button-text-ripple-color: currentColor}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled).mat-unthemed{color:var(--mat-snack-bar-button-color, var(--mat-sys-inverse-primary))}.mat-mdc-snack-bar-container .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled) .mat-ripple-element{opacity:.1}\n"],encapsulation:2})}return te})();const _e=new i.nKC("mat-snack-bar-default-options",{providedIn:"root",factory:function Xe(){return new Ee}});let he=(()=>{class te{_live=(0,i.WQX)(O.Ai);_injector=(0,i.WQX)(i.zZn);_breakpointObserver=(0,i.WQX)(A.Q);_parentSnackBar=(0,i.WQX)(te,{optional:!0,skipSelf:!0});_defaultConfig=(0,i.WQX)(_e);_animationsDisabled=(0,C.Rc)();_snackBarRefAtThisLevel=null;simpleSnackBarComponent=ne;snackBarContainerComponent=Re;handsetCssClass="mat-mdc-snack-bar-handset";get _openedSnackBarRef(){const P=this._parentSnackBar;return P?P._openedSnackBarRef:this._snackBarRefAtThisLevel}set _openedSnackBarRef(P){this._parentSnackBar?this._parentSnackBar._openedSnackBarRef=P:this._snackBarRefAtThisLevel=P}constructor(){}openFromComponent(P,F){return this._attach(P,F)}openFromTemplate(P,F){return this._attach(P,F)}open(P,F="",ve){const H={...this._defaultConfig,...ve};return H.data={message:P,action:F},H.announcementMessage===P&&(H.announcementMessage=void 0),this.openFromComponent(this.simpleSnackBarComponent,H)}dismiss(){this._openedSnackBarRef&&this._openedSnackBarRef.dismiss()}ngOnDestroy(){this._snackBarRefAtThisLevel&&this._snackBarRefAtThisLevel.dismiss()}_attachSnackBarContainer(P,F){const H=i.zZn.create({parent:F&&F.viewContainerRef&&F.viewContainerRef.injector||this._injector,providers:[{provide:Ee,useValue:F}]}),$=new L.A8(this.snackBarContainerComponent,F.viewContainerRef,H),Ke=P.attach($);return Ke.instance.snackBarConfig=F,Ke.instance}_attach(P,F){const ve={...new Ee,...this._defaultConfig,...F},H=this._createOverlay(ve),$=this._attachSnackBarContainer(H,ve),Ke=new re($,H);if(P instanceof d.C4Q){const Vt=new L.VA(P,null,{$implicit:ve.data,snackBarRef:Ke});Ke.instance=$.attachTemplatePortal(Vt)}else{const Vt=this._createInjector(ve,Ke),St=new L.A8(P,void 0,Vt),ot=$.attachComponentPortal(St);Ke.instance=ot.instance}return this._breakpointObserver.observe(B.Rp.HandsetPortrait).pipe((0,le.Q)(H.detachments())).subscribe(Vt=>{H.overlayElement.classList.toggle(this.handsetCssClass,Vt.matches)}),ve.announcementMessage&&$._onAnnounce.subscribe(()=>{this._live.announce(ve.announcementMessage,ve.politeness)}),this._animateSnackBar(Ke,ve),this._openedSnackBarRef=Ke,this._openedSnackBarRef}_animateSnackBar(P,F){P.afterDismissed().subscribe(()=>{this._openedSnackBarRef==P&&(this._openedSnackBarRef=null),F.announcementMessage&&this._live.clear()}),F.duration&&F.duration>0&&P.afterOpened().subscribe(()=>P._dismissAfter(F.duration)),this._openedSnackBarRef?(this._openedSnackBarRef.afterDismissed().subscribe(()=>{P.containerInstance.enter()}),this._openedSnackBarRef.dismiss()):P.containerInstance.enter()}_createOverlay(P){const F=new Pe.rR;F.direction=P.direction;const ve=(0,Pe.uA)(this._injector),H="rtl"===P.direction,$="left"===P.horizontalPosition||"start"===P.horizontalPosition&&!H||"end"===P.horizontalPosition&&H,Ke=!$&&"center"!==P.horizontalPosition;return $?ve.left("0"):Ke?ve.right("0"):ve.centerHorizontally(),"top"===P.verticalPosition?ve.top("0"):ve.bottom("0"),F.positionStrategy=ve,F.disableAnimations=this._animationsDisabled,(0,Pe.Y$)(this._injector,F)}_createInjector(P,F){return i.zZn.create({parent:P&&P.viewContainerRef&&P.viewContainerRef.injector||this._injector,providers:[{provide:re,useValue:F},{provide:xe,useValue:P.data}]})}static \u0275fac=function(F){return new(F||te)};static \u0275prov=i.jDH({token:te,factory:te.\u0275fac,providedIn:"root"})}return te})(),lt=(()=>{class te{static \u0275fac=function(F){return new(F||te)};static \u0275mod=d.$C({type:te});static \u0275inj=i.G2t({providers:[he],imports:[Pe.z_,L.jc,e.Hl,Ce.y,ne,Ce.y]})}return te})()},2042(Zt,pe,l){"use strict";l.d(pe,{B4:()=>xe,NQ:()=>J,aE:()=>ne});var i=l(2615),d=l(3664),v=l(7705),T=l(8617),w=l(6838),e=l(438),O=l(1413),f=l(2771),u=l(7786),L=l(8968),C=l(1804),B=l(2046),A=l(2466);const Pe=["mat-sort-header",""],le=["*"];function Ce(Re,Xe){1&Re&&(d.rj2(0,"div",2),i.qSk(),d.rj2(1,"svg",3),d.Hgh(2,"path",4),d.eux()())}const re=new i.nKC("MAT_SORT_DEFAULT_OPTIONS");let xe=(()=>{class Re{_defaultOptions;_initializedStream=new f.m(1);sortables=new Map;_stateChanges=new O.B;active;start="asc";get direction(){return this._direction}set direction(_e){this._direction=_e}_direction="";disableClear;disabled=!1;sortChange=new d.bkB;initialized=this._initializedStream;constructor(_e){this._defaultOptions=_e}register(_e){this.sortables.set(_e.id,_e)}deregister(_e){this.sortables.delete(_e.id)}sort(_e){this.active!=_e.id?(this.active=_e.id,this.direction=_e.start?_e.start:this.start):this.direction=this.getNextSortDirection(_e),this.sortChange.emit({active:this.active,direction:this.direction})}getNextSortDirection(_e){if(!_e)return"";let Dt=function Ee(Re,Xe){let _e=["asc","desc"];return"desc"==Re&&_e.reverse(),Xe||_e.push(""),_e}(_e.start||this.start,_e?.disableClear??this.disableClear??!!this._defaultOptions?.disableClear),lt=Dt.indexOf(this.direction)+1;return lt>=Dt.length&&(lt=0),Dt[lt]}ngOnInit(){this._initializedStream.next()}ngOnChanges(){this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete(),this._initializedStream.complete()}static \u0275fac=function(he){return new(he||Re)(d.rXU(re,8))};static \u0275dir=d.FsC({type:Re,selectors:[["","matSort",""]],hostAttrs:[1,"mat-sort"],inputs:{active:[0,"matSortActive","active"],start:[0,"matSortStart","start"],direction:[0,"matSortDirection","direction"],disableClear:[2,"matSortDisableClear","disableClear",v.L39],disabled:[2,"matSortDisabled","disabled",v.L39]},outputs:{sortChange:"matSortChange"},exportAs:["matSort"],features:[d.OA$]})}return Re})(),V=(()=>{class Re{changes=new O.B;static \u0275fac=function(he){return new(he||Re)};static \u0275prov=i.jDH({token:Re,factory:Re.\u0275fac,providedIn:"root"})}return Re})();const be={provide:V,deps:[[new d.Xx1,new d.kdw,V]],useFactory:function ce(Re){return Re||new V}};let ne=(()=>{class Re{_intl=(0,i.WQX)(V);_sort=(0,i.WQX)(xe,{optional:!0});_columnDef=(0,i.WQX)("MAT_SORT_HEADER_COLUMN_DEF",{optional:!0});_changeDetectorRef=(0,i.WQX)(v.gRc);_focusMonitor=(0,i.WQX)(w.FN);_elementRef=(0,i.WQX)(d.aKT);_ariaDescriber=(0,i.WQX)(T.vr,{optional:!0});_renderChanges;_animationsDisabled=(0,C.Rc)();_recentlyCleared=(0,i.vPA)(null);_sortButton;id;arrowPosition="after";start;disabled=!1;get sortActionDescription(){return this._sortActionDescription}set sortActionDescription(_e){this._updateSortActionDescription(_e)}_sortActionDescription="Sort";disableClear;constructor(){(0,i.WQX)(L.l).load(B.A);const _e=(0,i.WQX)(re,{optional:!0});_e?.arrowPosition&&(this.arrowPosition=_e?.arrowPosition)}ngOnInit(){!this.id&&this._columnDef&&(this.id=this._columnDef.name),this._sort.register(this),this._renderChanges=(0,u.h)(this._sort._stateChanges,this._sort.sortChange).subscribe(()=>this._changeDetectorRef.markForCheck()),this._sortButton=this._elementRef.nativeElement.querySelector(".mat-sort-header-container"),this._updateSortActionDescription(this._sortActionDescription)}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0).subscribe(()=>{Promise.resolve().then(()=>this._recentlyCleared.set(null))})}ngOnDestroy(){this._focusMonitor.stopMonitoring(this._elementRef),this._sort.deregister(this),this._renderChanges?.unsubscribe(),this._sortButton&&this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription)}_toggleOnInteraction(){if(!this._isDisabled()){const _e=this._isSorted(),he=this._sort.direction;this._sort.sort(this),this._recentlyCleared.set(_e&&!this._isSorted()?he:null)}}_handleKeydown(_e){(_e.keyCode===e.t6||_e.keyCode===e.Fm)&&(_e.preventDefault(),this._toggleOnInteraction())}_isSorted(){return this._sort.active==this.id&&("asc"===this._sort.direction||"desc"===this._sort.direction)}_isDisabled(){return this._sort.disabled||this.disabled}_getAriaSortAttribute(){return this._isSorted()?"asc"==this._sort.direction?"ascending":"descending":"none"}_renderArrow(){return!this._isDisabled()||this._isSorted()}_updateSortActionDescription(_e){this._sortButton&&(this._ariaDescriber?.removeDescription(this._sortButton,this._sortActionDescription),this._ariaDescriber?.describe(this._sortButton,_e)),this._sortActionDescription=_e}static \u0275fac=function(he){return new(he||Re)};static \u0275cmp=d.VBU({type:Re,selectors:[["","mat-sort-header",""]],hostAttrs:[1,"mat-sort-header"],hostVars:3,hostBindings:function(he,Dt){1&he&&d.bIt("click",function(){return Dt._toggleOnInteraction()})("keydown",function(Le){return Dt._handleKeydown(Le)})("mouseleave",function(){return Dt._recentlyCleared.set(null)}),2&he&&(d.BMQ("aria-sort",Dt._getAriaSortAttribute()),d.AVh("mat-sort-header-disabled",Dt._isDisabled()))},inputs:{id:[0,"mat-sort-header","id"],arrowPosition:"arrowPosition",start:"start",disabled:[2,"disabled","disabled",v.L39],sortActionDescription:"sortActionDescription",disableClear:[2,"disableClear","disableClear",v.L39]},exportAs:["matSortHeader"],attrs:Pe,ngContentSelectors:le,decls:4,vars:17,consts:[[1,"mat-sort-header-container","mat-focus-indicator"],[1,"mat-sort-header-content"],[1,"mat-sort-header-arrow"],["viewBox","0 -960 960 960","focusable","false","aria-hidden","true"],["d","M440-240v-368L296-464l-56-56 240-240 240 240-56 56-144-144v368h-80Z"]],template:function(he,Dt){1&he&&(d.NAR(),d.rj2(0,"div",0)(1,"div",1),d.SdG(2),d.eux(),d.nVh(3,Ce,3,0,"div",2),d.eux()),2&he&&(d.AVh("mat-sort-header-sorted",Dt._isSorted())("mat-sort-header-position-before","before"===Dt.arrowPosition)("mat-sort-header-descending","desc"===Dt._sort.direction)("mat-sort-header-ascending","asc"===Dt._sort.direction)("mat-sort-header-recently-cleared-ascending","asc"===Dt._recentlyCleared())("mat-sort-header-recently-cleared-descending","desc"===Dt._recentlyCleared())("mat-sort-header-animations-disabled",Dt._animationsDisabled),d.BMQ("tabindex",Dt._isDisabled()?null:0)("role",Dt._isDisabled()?null:"button"),d.R7$(3),d.vxM(Dt._renderArrow()?3:-1))},styles:[".mat-sort-header{cursor:pointer}.mat-sort-header-disabled{cursor:default}.mat-sort-header-container{display:flex;align-items:center;letter-spacing:normal;outline:0}[mat-sort-header].cdk-keyboard-focused .mat-sort-header-container,[mat-sort-header].cdk-program-focused .mat-sort-header-container{border-bottom:solid 1px currentColor}.mat-sort-header-container::before{margin:calc(calc(var(--mat-focus-indicator-border-width, 3px) + 2px)*-1)}.mat-sort-header-content{display:flex;align-items:center}.mat-sort-header-position-before{flex-direction:row-reverse}@keyframes _mat-sort-header-recently-cleared-ascending{from{transform:translateY(0);opacity:1}to{transform:translateY(-25%);opacity:0}}@keyframes _mat-sort-header-recently-cleared-descending{from{transform:translateY(0) rotate(180deg);opacity:1}to{transform:translateY(25%) rotate(180deg);opacity:0}}.mat-sort-header-arrow{height:12px;width:12px;position:relative;transition:transform 225ms cubic-bezier(0.4, 0, 0.2, 1),opacity 225ms cubic-bezier(0.4, 0, 0.2, 1);opacity:0;overflow:visible;color:var(--mat-sort-arrow-color, var(--mat-sys-on-surface))}.mat-sort-header.cdk-keyboard-focused .mat-sort-header-arrow,.mat-sort-header.cdk-program-focused .mat-sort-header-arrow,.mat-sort-header:hover .mat-sort-header-arrow{opacity:.54}.mat-sort-header .mat-sort-header-sorted .mat-sort-header-arrow{opacity:1}.mat-sort-header-descending .mat-sort-header-arrow{transform:rotate(180deg)}.mat-sort-header-recently-cleared-ascending .mat-sort-header-arrow{transform:translateY(-25%)}.mat-sort-header-recently-cleared-ascending .mat-sort-header-arrow{transition:none;animation:_mat-sort-header-recently-cleared-ascending 225ms cubic-bezier(0.4, 0, 0.2, 1) forwards}.mat-sort-header-recently-cleared-descending .mat-sort-header-arrow{transition:none;animation:_mat-sort-header-recently-cleared-descending 225ms cubic-bezier(0.4, 0, 0.2, 1) forwards}.mat-sort-header-animations-disabled .mat-sort-header-arrow{transition-duration:0ms;animation-duration:0ms}.mat-sort-header-arrow svg{width:24px;height:24px;fill:currentColor;position:absolute;top:50%;left:50%;margin:-12px 0 0 -12px;transform:translateZ(0)}.mat-sort-header-arrow,[dir=rtl] .mat-sort-header-position-before .mat-sort-header-arrow{margin:0 0 0 6px}.mat-sort-header-position-before .mat-sort-header-arrow,[dir=rtl] .mat-sort-header-arrow{margin:0 6px 0 0}\n"],encapsulation:2,changeDetection:0})}return Re})(),J=(()=>{class Re{static \u0275fac=function(he){return new(he||Re)};static \u0275mod=d.$C({type:Re});static \u0275inj=i.G2t({providers:[be],imports:[A.y]})}return Re})()},6013(Zt,pe,l){"use strict";l.d(pe,{F7:()=>cn,FR:()=>Ft,M6:()=>rt,Ti:()=>nt,V5:()=>Gt,aP:()=>Sn,xJ:()=>Qe});var i=l(6939),d=l(7768),v=l(2615),T=l(3664),w=l(7705),e=l(6838),O=l(1413),f=l(8359),u=l(2200),L=l(9046),C=l(8968),B=l(2629),A=l(2046),Pe=l(2496),le=l(9842),Ce=l(6354),Ae=l(9172),j=l(5558),W=l(6977),G=l(2709),re=l(1804),xe=l(2466),Ee=l(6881);const V=(h,jt,Ue)=>({index:h,active:jt,optional:Ue});function ce(h,jt){if(1&h&&T.eu8(0,2),2&h){const Ue=T.XpG();T.Y8G("ngTemplateOutlet",Ue.iconOverrides[Ue.state])("ngTemplateOutletContext",T.sMw(2,V,Ue.index,Ue.active,Ue.optional))}}function be(h,jt){if(1&h&&(T.j41(0,"span",7),T.EFF(1),T.k0s()),2&h){const Ue=T.XpG(2);T.R7$(),T.JRh(Ue._getDefaultTextForState(Ue.state))}}function ne(h,jt){if(1&h&&(T.j41(0,"span",8),T.EFF(1),T.k0s()),2&h){const Ue=T.XpG(3);T.R7$(),T.JRh(Ue._intl.completedLabel)}}function J(h,jt){if(1&h&&(T.j41(0,"span",8),T.EFF(1),T.k0s()),2&h){const Ue=T.XpG(3);T.R7$(),T.JRh(Ue._intl.editableLabel)}}function De(h,jt){if(1&h&&(T.nVh(0,ne,2,1,"span",8)(1,J,2,1,"span",8),T.j41(2,"mat-icon",7),T.EFF(3),T.k0s()),2&h){const Ue=T.XpG(2);T.vxM("done"===Ue.state?0:"edit"===Ue.state?1:-1),T.R7$(3),T.JRh(Ue._getDefaultTextForState(Ue.state))}}function Re(h,jt){if(1&h&&T.nVh(0,be,2,1,"span",7)(1,De,4,2),2&h){let Ue;const wt=T.XpG();T.vxM("number"===(Ue=wt.state)?0:1)}}function Xe(h,jt){1&h&&(T.j41(0,"div",4),T.eu8(1,9),T.k0s()),2&h&&(T.R7$(),T.Y8G("ngTemplateOutlet",jt.template))}function _e(h,jt){if(1&h&&(T.j41(0,"div",4),T.EFF(1),T.k0s()),2&h){const Ue=T.XpG();T.R7$(),T.JRh(Ue.label)}}function he(h,jt){if(1&h&&(T.j41(0,"div",5),T.EFF(1),T.k0s()),2&h){const Ue=T.XpG();T.R7$(),T.JRh(Ue._intl.optionalLabel)}}function Dt(h,jt){if(1&h&&(T.j41(0,"div",6),T.EFF(1),T.k0s()),2&h){const Ue=T.XpG();T.R7$(),T.JRh(Ue.errorMessage)}}const lt=["*"];function Le(h,jt){}function te(h,jt){if(1&h&&(T.SdG(0),T.DNE(1,Le,0,0,"ng-template",0)),2&h){const Ue=T.XpG();T.R7$(),T.Y8G("cdkPortalOutlet",Ue._portal)}}const ie=["animatedContainer"],P=h=>({step:h});function F(h,jt){1&h&&T.SdG(0)}function ve(h,jt){1&h&&T.nrm(0,"div",7)}function H(h,jt){if(1&h&&(T.eu8(0,6),T.nVh(1,ve,1,0,"div",7)),2&h){const Ue=jt.$implicit,wt=jt.$index,pt=jt.$count;T.XpG(2);const Pt=T.sdS(4);T.Y8G("ngTemplateOutlet",Pt)("ngTemplateOutletContext",T.eq3(3,P,Ue)),T.R7$(),T.vxM(wt!==pt-1?1:-1)}}function $(h,jt){if(1&h&&(T.j41(0,"div",8,1),T.eu8(2,9),T.k0s()),2&h){const Ue=jt.$implicit,wt=jt.$index,pt=T.XpG(2);T.HbH("mat-horizontal-stepper-content-"+pt._getAnimationDirection(wt)),T.Y8G("id",pt._getStepContentId(wt)),T.BMQ("aria-labelledby",pt._getStepLabelId(wt))("inert",pt.selectedIndex===wt?null:""),T.R7$(2),T.Y8G("ngTemplateOutlet",Ue.content)}}function Ke(h,jt){if(1&h&&(T.j41(0,"div",2)(1,"div",3),T.Z7z(2,H,2,5,null,null,T.fX1),T.k0s(),T.j41(4,"div",4),T.Z7z(5,$,3,6,"div",5,T.fX1),T.k0s()()),2&h){const Ue=T.XpG();T.R7$(2),T.Dyx(Ue.steps),T.R7$(3),T.Dyx(Ue.steps)}}function Vt(h,jt){if(1&h&&(T.j41(0,"div",10),T.eu8(1,6),T.j41(2,"div",11,1)(4,"div",12)(5,"div",13),T.eu8(6,9),T.k0s()()()()),2&h){const Ue=jt.$implicit,wt=jt.$index,pt=jt.$index,Pt=jt.$count,gn=T.XpG(2),ei=T.sdS(4);T.R7$(),T.Y8G("ngTemplateOutlet",ei)("ngTemplateOutletContext",T.eq3(10,P,Ue)),T.R7$(),T.AVh("mat-stepper-vertical-line",pt!==Pt-1)("mat-vertical-content-container-active",gn.selectedIndex===wt),T.BMQ("inert",gn.selectedIndex===wt?null:""),T.R7$(2),T.Y8G("id",gn._getStepContentId(wt)),T.BMQ("aria-labelledby",gn._getStepLabelId(wt)),T.R7$(2),T.Y8G("ngTemplateOutlet",Ue.content)}}function St(h,jt){if(1&h&&T.Z7z(0,Vt,7,12,"div",10,T.fX1),2&h){const Ue=T.XpG();T.Dyx(Ue.steps)}}function ot(h,jt){if(1&h){const Ue=T.RV6();T.j41(0,"mat-step-header",14),T.bIt("click",function(){const pt=v.eBV(Ue).step;return v.Njj(pt.select())})("keydown",function(pt){v.eBV(Ue);const Pt=T.XpG();return v.Njj(Pt._onKeydown(pt))}),T.k0s()}if(2&h){const Ue=jt.step,wt=T.XpG();T.AVh("mat-horizontal-stepper-header","horizontal"===wt.orientation)("mat-vertical-stepper-header","vertical"===wt.orientation),T.Y8G("tabIndex",wt._getFocusIndex()===Ue.index()?0:-1)("id",wt._getStepLabelId(Ue.index()))("index",Ue.index())("state",Ue.indicatorType())("label",Ue.stepLabel||Ue.label)("selected",Ue.isSelected())("active",Ue.isNavigable())("optional",Ue.optional)("errorMessage",Ue.errorMessage)("iconOverrides",wt._iconOverrides)("disableRipple",wt.disableRipple||!Ue.isNavigable())("color",Ue.color||wt.color),T.BMQ("aria-posinset",Ue.index()+1)("aria-setsize",wt.steps.length)("aria-controls",wt._getStepContentId(Ue.index()))("aria-selected",Ue.isSelected())("aria-label",Ue.ariaLabel||null)("aria-labelledby",!Ue.ariaLabel&&Ue.ariaLabelledby?Ue.ariaLabelledby:null)("aria-disabled",!Ue.isNavigable()||null)}}let nt=(()=>{class h extends d.nb{static \u0275fac=(()=>{let Ue;return function(pt){return(Ue||(Ue=T.xGo(h)))(pt||h)}})();static \u0275dir=T.FsC({type:h,selectors:[["","matStepLabel",""]],features:[T.Vt3]})}return h})(),ht=(()=>{class h{changes=new O.B;optionalLabel="Optional";completedLabel="Completed";editableLabel="Editable";static \u0275fac=function(wt){return new(wt||h)};static \u0275prov=v.jDH({token:h,factory:h.\u0275fac,providedIn:"root"})}return h})();const Ye={provide:ht,deps:[[new T.Xx1,new T.kdw,ht]],useFactory:function oe(h){return h||new ht}};let fe=(()=>{class h extends d.oX{_intl=(0,v.WQX)(ht);_focusMonitor=(0,v.WQX)(e.FN);_intlSubscription;state;label;errorMessage;iconOverrides;index;selected;active;optional;disableRipple;color;constructor(){super();const Ue=(0,v.WQX)(C.l);Ue.load(A.A),Ue.load(L.Y);const wt=(0,v.WQX)(w.gRc);this._intlSubscription=this._intl.changes.subscribe(()=>wt.markForCheck())}ngAfterViewInit(){this._focusMonitor.monitor(this._elementRef,!0)}ngOnDestroy(){this._intlSubscription.unsubscribe(),this._focusMonitor.stopMonitoring(this._elementRef)}focus(Ue,wt){Ue?this._focusMonitor.focusVia(this._elementRef,Ue,wt):this._elementRef.nativeElement.focus(wt)}_stringLabel(){return this.label instanceof nt?null:this.label}_templateLabel(){return this.label instanceof nt?this.label:null}_getHostElement(){return this._elementRef.nativeElement}_getDefaultTextForState(Ue){return"number"==Ue?`${this.index+1}`:"edit"==Ue?"create":"error"==Ue?"warning":Ue}_hasEmptyLabel(){return!(this._stringLabel()||this._templateLabel()||this._hasOptionalLabel()||this._hasErrorLabel())}_hasOptionalLabel(){return this.optional&&"error"!==this.state}_hasErrorLabel(){return"error"===this.state}static \u0275fac=function(wt){return new(wt||h)};static \u0275cmp=T.VBU({type:h,selectors:[["mat-step-header"]],hostAttrs:["role","tab",1,"mat-step-header"],hostVars:4,hostBindings:function(wt,pt){2&wt&&(T.HbH("mat-"+(pt.color||"primary")),T.AVh("mat-step-header-empty-label",pt._hasEmptyLabel()))},inputs:{state:"state",label:"label",errorMessage:"errorMessage",iconOverrides:"iconOverrides",index:"index",selected:"selected",active:"active",optional:"optional",disableRipple:"disableRipple",color:"color"},features:[T.Vt3],decls:10,vars:17,consts:[["matRipple","",1,"mat-step-header-ripple","mat-focus-indicator",3,"matRippleTrigger","matRippleDisabled"],[1,"mat-step-icon-content"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[1,"mat-step-label"],[1,"mat-step-text-label"],[1,"mat-step-optional"],[1,"mat-step-sub-label-error"],["aria-hidden","true"],[1,"cdk-visually-hidden"],[3,"ngTemplateOutlet"]],template:function(wt,pt){if(1&wt&&(T.nrm(0,"div",0),T.j41(1,"div")(2,"div",1),T.nVh(3,ce,1,6,"ng-container",2)(4,Re,2,1),T.k0s()(),T.j41(5,"div",3),T.nVh(6,Xe,2,1,"div",4)(7,_e,2,1,"div",4),T.nVh(8,he,2,1,"div",5),T.nVh(9,Dt,2,1,"div",6),T.k0s()),2&wt){let Pt;T.Y8G("matRippleTrigger",pt._getHostElement())("matRippleDisabled",pt.disableRipple),T.R7$(),T.HbH(T.VkB("mat-step-icon-state-",pt.state," mat-step-icon")),T.AVh("mat-step-icon-selected",pt.selected),T.R7$(2),T.vxM(pt.iconOverrides&&pt.iconOverrides[pt.state]?3:4),T.R7$(2),T.AVh("mat-step-label-active",pt.active)("mat-step-label-selected",pt.selected)("mat-step-label-error","error"==pt.state),T.R7$(),T.vxM((Pt=pt._templateLabel())?6:pt._stringLabel()?7:-1,Pt),T.R7$(2),T.vxM(pt._hasOptionalLabel()?8:-1),T.R7$(),T.vxM(pt._hasErrorLabel()?9:-1)}},dependencies:[Pe.r6,u.T3,B.An],styles:['.mat-step-header{overflow:hidden;outline:none;cursor:pointer;position:relative;box-sizing:content-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mat-step-header:focus .mat-focus-indicator::before{content:""}.mat-step-header:hover[aria-disabled=true]{cursor:default}.mat-step-header:hover:not([aria-disabled]),.mat-step-header:hover[aria-disabled=false]{background-color:var(--mat-stepper-header-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent));border-radius:var(--mat-stepper-header-hover-state-layer-shape, var(--mat-sys-corner-medium))}.mat-step-header.cdk-keyboard-focused,.mat-step-header.cdk-program-focused{background-color:var(--mat-stepper-header-focus-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-focus-state-layer-opacity) * 100%), transparent));border-radius:var(--mat-stepper-header-focus-state-layer-shape, var(--mat-sys-corner-medium))}@media(hover: none){.mat-step-header:hover{background:none}}@media(forced-colors: active){.mat-step-header{outline:solid 1px}.mat-step-header[aria-selected=true] .mat-step-label{text-decoration:underline}.mat-step-header[aria-disabled=true]{outline-color:GrayText}.mat-step-header[aria-disabled=true] .mat-step-label,.mat-step-header[aria-disabled=true] .mat-step-icon,.mat-step-header[aria-disabled=true] .mat-step-optional{color:GrayText}}.mat-step-optional{font-size:12px;color:var(--mat-stepper-header-optional-label-text-color, var(--mat-sys-on-surface-variant))}.mat-step-sub-label-error{font-size:12px;font-weight:normal}.mat-step-icon{border-radius:50%;height:24px;width:24px;flex-shrink:0;position:relative;color:var(--mat-stepper-header-icon-foreground-color, var(--mat-sys-surface));background-color:var(--mat-stepper-header-icon-background-color, var(--mat-sys-on-surface-variant))}.mat-step-icon-content{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);display:flex}.mat-step-icon .mat-icon{font-size:16px;height:16px;width:16px}.mat-step-icon-state-error{background-color:var(--mat-stepper-header-error-state-icon-background-color, transparent);color:var(--mat-stepper-header-error-state-icon-foreground-color, var(--mat-sys-error))}.mat-step-icon-state-error .mat-icon{font-size:24px;height:24px;width:24px}.mat-step-label{display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;min-width:50px;vertical-align:middle;font-family:var(--mat-stepper-header-label-text-font, var(--mat-sys-title-small-font));font-size:var(--mat-stepper-header-label-text-size, var(--mat-sys-title-small-size));font-weight:var(--mat-stepper-header-label-text-weight, var(--mat-sys-title-small-weight));color:var(--mat-stepper-header-label-text-color, var(--mat-sys-on-surface-variant))}.mat-step-label.mat-step-label-active{color:var(--mat-stepper-header-selected-state-label-text-color, var(--mat-sys-on-surface-variant))}.mat-step-label.mat-step-label-error{color:var(--mat-stepper-header-error-state-label-text-color, var(--mat-sys-error));font-size:var(--mat-stepper-header-error-state-label-text-size, var(--mat-sys-title-small-size))}.mat-step-label.mat-step-label-selected{font-size:var(--mat-stepper-header-selected-state-label-text-size, var(--mat-sys-title-small-size));font-weight:var(--mat-stepper-header-selected-state-label-text-weight, var(--mat-sys-title-small-weight))}.mat-step-header-empty-label .mat-step-label{min-width:0}.mat-step-text-label{text-overflow:ellipsis;overflow:hidden}.mat-step-header .mat-step-header-ripple{top:0;left:0;right:0;bottom:0;position:absolute;pointer-events:none}.mat-step-icon-selected{background-color:var(--mat-stepper-header-selected-state-icon-background-color, var(--mat-sys-primary));color:var(--mat-stepper-header-selected-state-icon-foreground-color, var(--mat-sys-on-primary))}.mat-step-icon-state-done{background-color:var(--mat-stepper-header-done-state-icon-background-color, var(--mat-sys-primary));color:var(--mat-stepper-header-done-state-icon-foreground-color, var(--mat-sys-on-primary))}.mat-step-icon-state-edit{background-color:var(--mat-stepper-header-edit-state-icon-background-color, var(--mat-sys-primary));color:var(--mat-stepper-header-edit-state-icon-foreground-color, var(--mat-sys-on-primary))}\n'],encapsulation:2,changeDetection:0})}return h})(),Qe=(()=>{class h{templateRef=(0,v.WQX)(T.C4Q);name;constructor(){}static \u0275fac=function(wt){return new(wt||h)};static \u0275dir=T.FsC({type:h,selectors:[["ng-template","matStepperIcon",""]],inputs:{name:[0,"matStepperIcon","name"]}})}return h})(),gt=(()=>{class h{_template=(0,v.WQX)(T.C4Q);constructor(){}static \u0275fac=function(wt){return new(wt||h)};static \u0275dir=T.FsC({type:h,selectors:[["ng-template","matStepContent",""]]})}return h})(),Gt=(()=>{class h extends d.VI{_errorStateMatcher=(0,v.WQX)(G.e,{skipSelf:!0});_viewContainerRef=(0,v.WQX)(T.c1b);_isSelected=f.yU.EMPTY;stepLabel=void 0;color;_lazyContent;_portal;ngAfterContentInit(){this._isSelected=this._stepper.steps.changes.pipe((0,j.n)(()=>this._stepper.selectionChange.pipe((0,Ce.T)(Ue=>Ue.selectedStep===this),(0,Ae.Z)(this._stepper.selected===this)))).subscribe(Ue=>{Ue&&this._lazyContent&&!this._portal&&(this._portal=new i.VA(this._lazyContent._template,this._viewContainerRef))})}ngOnDestroy(){this._isSelected.unsubscribe()}isErrorState(Ue,wt){return this._errorStateMatcher.isErrorState(Ue,wt)||!!(Ue&&Ue.invalid&&this.interacted)}static \u0275fac=(()=>{let Ue;return function(pt){return(Ue||(Ue=T.xGo(h)))(pt||h)}})();static \u0275cmp=T.VBU({type:h,selectors:[["mat-step"]],contentQueries:function(wt,pt,Pt){if(1&wt&&(T.wni(Pt,nt,5),T.wni(Pt,gt,5)),2&wt){let gn;T.mGM(gn=T.lsd())&&(pt.stepLabel=gn.first),T.mGM(gn=T.lsd())&&(pt._lazyContent=gn.first)}},hostAttrs:["hidden",""],inputs:{color:"color"},exportAs:["matStep"],features:[T.Jv_([{provide:G.e,useExisting:h},{provide:d.VI,useExisting:h}]),T.Vt3],ngContentSelectors:lt,decls:1,vars:0,consts:[[3,"cdkPortalOutlet"]],template:function(wt,pt){1&wt&&(T.NAR(),T.DNE(0,te,2,1,"ng-template"))},dependencies:[i.I3],encapsulation:2,changeDetection:0})}return h})(),rt=(()=>{class h extends d.Up{_ngZone=(0,v.WQX)(T.SKi);_renderer=(0,v.WQX)(T.sFG);_animationsDisabled=(0,re.Rc)();_cleanupTransition;_isAnimating=(0,v.vPA)(!1);_stepHeader=void 0;_animatedContainers;_steps=void 0;steps=new T.rOR;_icons;animationDone=new T.bkB;disableRipple;color;labelPosition="end";headerPosition="top";_iconOverrides={};get animationDuration(){return this._animationDuration}set animationDuration(Ue){this._animationDuration=/^\d+$/.test(Ue)?Ue+"ms":Ue}_animationDuration="";_isServer=!(0,v.WQX)(le.O).isBrowser;constructor(){super();const wt=(0,v.WQX)(T.aKT).nativeElement.nodeName.toLowerCase();this.orientation="mat-vertical-stepper"===wt?"vertical":"horizontal"}ngAfterContentInit(){super.ngAfterContentInit(),this._icons.forEach(({name:Ue,templateRef:wt})=>this._iconOverrides[Ue]=wt),this.steps.changes.pipe((0,W.Q)(this._destroyed)).subscribe(()=>this._stateChanged()),this.selectedIndexChange.pipe((0,W.Q)(this._destroyed)).subscribe(()=>{const Ue=this._getAnimationDuration();"0ms"===Ue||"0s"===Ue?this._onAnimationDone():this._isAnimating.set(!0)}),this._ngZone.runOutsideAngular(()=>{this._animationsDisabled||setTimeout(()=>{this._elementRef.nativeElement.classList.add("mat-stepper-animations-enabled"),this._cleanupTransition=this._renderer.listen(this._elementRef.nativeElement,"transitionend",this._handleTransitionend)},200)})}ngAfterViewInit(){if(super.ngAfterViewInit(),"function"==typeof queueMicrotask){let Ue=!1;this._animatedContainers.changes.pipe((0,Ae.Z)(null),(0,W.Q)(this._destroyed)).subscribe(()=>queueMicrotask(()=>{Ue||(Ue=!0,this.animationDone.emit()),this._stateChanged()}))}}ngOnDestroy(){super.ngOnDestroy(),this._cleanupTransition?.()}_getAnimationDuration(){return this._animationsDisabled?"0ms":this.animationDuration?this.animationDuration:"horizontal"===this.orientation?"500ms":"225ms"}_handleTransitionend=Ue=>{const wt=Ue.target;if(!wt)return;const pt="horizontal"===this.orientation&&"transform"===Ue.propertyName&&wt.classList.contains("mat-horizontal-stepper-content-current"),Pt="vertical"===this.orientation&&"grid-template-rows"===Ue.propertyName&&wt.classList.contains("mat-vertical-content-container-active");(pt||Pt)&&this._animatedContainers.find(ei=>ei.nativeElement===wt)&&this._onAnimationDone()};_onAnimationDone(){this._isAnimating.set(!1),this.animationDone.emit()}static \u0275fac=function(wt){return new(wt||h)};static \u0275cmp=T.VBU({type:h,selectors:[["mat-stepper"],["mat-vertical-stepper"],["mat-horizontal-stepper"],["","matStepper",""]],contentQueries:function(wt,pt,Pt){if(1&wt&&(T.wni(Pt,Gt,5),T.wni(Pt,Qe,5)),2&wt){let gn;T.mGM(gn=T.lsd())&&(pt._steps=gn),T.mGM(gn=T.lsd())&&(pt._icons=gn)}},viewQuery:function(wt,pt){if(1&wt&&(T.GBs(fe,5),T.GBs(ie,5)),2&wt){let Pt;T.mGM(Pt=T.lsd())&&(pt._stepHeader=Pt),T.mGM(Pt=T.lsd())&&(pt._animatedContainers=Pt)}},hostAttrs:["role","tablist"],hostVars:15,hostBindings:function(wt,pt){2&wt&&(T.BMQ("aria-orientation",pt.orientation),T.xc7("--mat-stepper-animation-duration",pt._getAnimationDuration()),T.AVh("mat-stepper-horizontal","horizontal"===pt.orientation)("mat-stepper-vertical","vertical"===pt.orientation)("mat-stepper-label-position-end","horizontal"===pt.orientation&&"end"==pt.labelPosition)("mat-stepper-label-position-bottom","horizontal"===pt.orientation&&"bottom"==pt.labelPosition)("mat-stepper-header-position-bottom","bottom"===pt.headerPosition)("mat-stepper-animating",pt._isAnimating()))},inputs:{disableRipple:"disableRipple",color:"color",labelPosition:"labelPosition",headerPosition:"headerPosition",animationDuration:"animationDuration"},outputs:{animationDone:"animationDone"},exportAs:["matStepper","matVerticalStepper","matHorizontalStepper"],features:[T.Jv_([{provide:d.Up,useExisting:h}]),T.Vt3],ngContentSelectors:lt,decls:5,vars:2,consts:[["stepTemplate",""],["animatedContainer",""],[1,"mat-horizontal-stepper-wrapper"],[1,"mat-horizontal-stepper-header-container"],[1,"mat-horizontal-content-container"],["role","tabpanel",1,"mat-horizontal-stepper-content",3,"id","class"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[1,"mat-stepper-horizontal-line"],["role","tabpanel",1,"mat-horizontal-stepper-content",3,"id"],[3,"ngTemplateOutlet"],[1,"mat-step"],[1,"mat-vertical-content-container"],["role","tabpanel",1,"mat-vertical-stepper-content",3,"id"],[1,"mat-vertical-content"],[3,"click","keydown","tabIndex","id","index","state","label","selected","active","optional","errorMessage","iconOverrides","disableRipple","color"]],template:function(wt,pt){if(1&wt&&(T.NAR(),T.nVh(0,F,1,0),T.nVh(1,Ke,7,0,"div",2)(2,St,2,0),T.DNE(3,ot,1,23,"ng-template",null,0,T.C5r)),2&wt){let Pt;T.vxM(pt._isServer?0:-1),T.R7$(),T.vxM("horizontal"===(Pt=pt.orientation)?1:"vertical"===Pt?2:-1)}},dependencies:[u.T3,fe],styles:['.mat-stepper-vertical,.mat-stepper-horizontal{display:block;font-family:var(--mat-stepper-container-text-font, var(--mat-sys-body-medium-font));background:var(--mat-stepper-container-color, var(--mat-sys-surface))}.mat-horizontal-stepper-header-container{white-space:nowrap;display:flex;align-items:center}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header-container{align-items:flex-start}.mat-stepper-header-position-bottom .mat-horizontal-stepper-header-container{order:1}.mat-stepper-horizontal-line{border-top-width:1px;border-top-style:solid;flex:auto;height:0;margin:0 -16px;min-width:32px;border-top-color:var(--mat-stepper-line-color, var(--mat-sys-outline))}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{margin:0;min-width:0;position:relative;top:calc(calc((var(--mat-stepper-header-height, 72px) - 24px) / 2) + 12px)}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::before,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::after{border-top-width:1px;border-top-style:solid;content:"";display:inline-block;height:0;position:absolute;width:calc(50% - 20px)}.mat-horizontal-stepper-header{display:flex;overflow:hidden;align-items:center;padding:0 24px;height:var(--mat-stepper-header-height, 72px)}.mat-horizontal-stepper-header .mat-step-icon{margin-right:8px;flex:none}[dir=rtl] .mat-horizontal-stepper-header .mat-step-icon{margin-right:0;margin-left:8px}.mat-horizontal-stepper-header.mat-step-header-empty-label .mat-step-icon{margin:0}.mat-horizontal-stepper-header::before,.mat-horizontal-stepper-header::after{border-top-color:var(--mat-stepper-line-color, var(--mat-sys-outline))}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{padding:calc((var(--mat-stepper-header-height, 72px) - 24px) / 2) 24px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after{top:calc(calc((var(--mat-stepper-header-height, 72px) - 24px) / 2) + 12px)}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header{box-sizing:border-box;flex-direction:column;height:auto}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::after,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::after{right:0}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:first-child)::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:not(:last-child)::before{left:0}[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:last-child::before,[dir=rtl] .mat-stepper-label-position-bottom .mat-horizontal-stepper-header:first-child::after{display:none}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header .mat-step-icon{margin-right:0;margin-left:0}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header .mat-step-label{padding:16px 0 0 0;text-align:center;width:100%}.mat-vertical-stepper-header{display:flex;align-items:center;height:24px;padding:calc((var(--mat-stepper-header-height, 72px) - 24px) / 2) 24px}.mat-vertical-stepper-header .mat-step-icon{margin-right:12px}[dir=rtl] .mat-vertical-stepper-header .mat-step-icon{margin-right:0;margin-left:12px}.mat-horizontal-stepper-wrapper{display:flex;flex-direction:column}.mat-horizontal-stepper-content{visibility:hidden;overflow:hidden;outline:0;height:0}.mat-stepper-animations-enabled .mat-horizontal-stepper-content{transition:transform var(--mat-stepper-animation-duration, 0) cubic-bezier(0.35, 0, 0.25, 1)}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-previous{transform:translate3d(-100%, 0, 0)}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-next{transform:translate3d(100%, 0, 0)}.mat-horizontal-stepper-content.mat-horizontal-stepper-content-current{visibility:visible;transform:none;height:auto}.mat-stepper-horizontal:not(.mat-stepper-animating) .mat-horizontal-stepper-content.mat-horizontal-stepper-content-current{overflow:visible}.mat-horizontal-content-container{overflow:hidden;padding:0 24px 24px 24px}@media(forced-colors: active){.mat-horizontal-content-container{outline:solid 1px}}.mat-stepper-header-position-bottom .mat-horizontal-content-container{padding:24px 24px 0 24px}.mat-vertical-content-container{display:grid;grid-template-rows:0fr;grid-template-columns:100%;margin-left:36px;border:0;position:relative}.mat-stepper-animations-enabled .mat-vertical-content-container{transition:grid-template-rows var(--mat-stepper-animation-duration, 0) cubic-bezier(0.4, 0, 0.2, 1)}.mat-vertical-content-container.mat-vertical-content-container-active{grid-template-rows:1fr}.mat-step:last-child .mat-vertical-content-container{border:none}@media(forced-colors: active){.mat-vertical-content-container{outline:solid 1px}}[dir=rtl] .mat-vertical-content-container{margin-left:0;margin-right:36px}@supports not (grid-template-rows: 0fr){.mat-vertical-content-container{height:0}.mat-vertical-content-container.mat-vertical-content-container-active{height:auto}}.mat-stepper-vertical-line::before{content:"";position:absolute;left:0;border-left-width:1px;border-left-style:solid;border-left-color:var(--mat-stepper-line-color, var(--mat-sys-outline));top:calc(8px - calc((var(--mat-stepper-header-height, 72px) - 24px) / 2));bottom:calc(8px - calc((var(--mat-stepper-header-height, 72px) - 24px) / 2))}[dir=rtl] .mat-stepper-vertical-line::before{left:auto;right:0}.mat-vertical-stepper-content{overflow:hidden;outline:0;visibility:hidden}.mat-stepper-animations-enabled .mat-vertical-stepper-content{transition:visibility var(--mat-stepper-animation-duration, 0) linear}.mat-vertical-content-container-active>.mat-vertical-stepper-content{visibility:visible}.mat-vertical-content{padding:0 24px 24px 24px}\n'],encapsulation:2,changeDetection:0})}return h})(),cn=(()=>{class h extends d.v5{static \u0275fac=(()=>{let Ue;return function(pt){return(Ue||(Ue=T.xGo(h)))(pt||h)}})();static \u0275dir=T.FsC({type:h,selectors:[["button","matStepperNext",""]],hostAttrs:[1,"mat-stepper-next"],hostVars:1,hostBindings:function(wt,pt){2&wt&&T.Avn("type",pt.type)},features:[T.Vt3]})}return h})(),Ft=(()=>{class h extends d.FK{static \u0275fac=(()=>{let Ue;return function(pt){return(Ue||(Ue=T.xGo(h)))(pt||h)}})();static \u0275dir=T.FsC({type:h,selectors:[["button","matStepperPrevious",""]],hostAttrs:[1,"mat-stepper-previous"],hostVars:1,hostBindings:function(wt,pt){2&wt&&T.Avn("type",pt.type)},features:[T.Vt3]})}return h})(),Sn=(()=>{class h{static \u0275fac=function(wt){return new(wt||h)};static \u0275mod=T.$C({type:h});static \u0275inj=v.G2t({providers:[Ye,G.e],imports:[xe.y,i.jc,d.uY,B.m_,Ee.p,rt,fe,xe.y]})}return h})()},2046(Zt,pe,l){"use strict";l.d(pe,{A:()=>d});var i=l(3664);let d=(()=>{class v{static \u0275fac=function(e){return new(e||v)};static \u0275cmp=i.VBU({type:v,selectors:[["structural-styles"]],decls:0,vars:0,template:function(e,O){},styles:['.mat-focus-indicator{position:relative}.mat-focus-indicator::before{top:0;left:0;right:0;bottom:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border-width:var(--mat-focus-indicator-border-width, 3px);border-style:var(--mat-focus-indicator-border-style, solid);border-color:var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.mat-focus-indicator:focus::before{content:""}@media(forced-colors: active){html{--mat-focus-indicator-display: block}}\n'],encapsulation:2,changeDetection:0})}return v})()},1676(Zt,pe,l){"use strict";l.d(pe,{$R:()=>Ge,YV:()=>at,cC:()=>Je,Qo:()=>ut,Zq:()=>pn,iF:()=>on,xW:()=>We,KS:()=>Be,tL:()=>qe,YZ:()=>tn,ji:()=>se,NB:()=>un,iL:()=>bt,Zl:()=>Me,I6:()=>Yi,tP:()=>Jn});var i=l(3664),d=l(2615),v=l(7705),T=l(4117),w=l(1413),e=l(4412),O=l(4402),f=l(7673),u=l(6977),C=function(Tt){return Tt[Tt.REPLACED=0]="REPLACED",Tt[Tt.INSERTED=1]="INSERTED",Tt[Tt.MOVED=2]="MOVED",Tt[Tt.REMOVED=3]="REMOVED",Tt}(C||{});const B=new d.nKC("_ViewRepeater");class Pe{applyChanges(At,we,ae,Lt,Ht){At.forEachOperation((_n,fi,bi)=>{let Qi,zi;if(null==_n.previousIndex){const It=ae(_n,fi,bi);Qi=we.createEmbeddedView(It.templateRef,It.context,It.index),zi=C.INSERTED}else null==bi?(we.remove(fi),zi=C.REMOVED):(Qi=we.get(fi),we.move(Qi,bi),zi=C.MOVED);Ht&&Ht({context:Qi?.context,operation:zi,record:_n})})}detach(){}}var le=l(1577),Ce=l(9842),Ae=l(5718);const j=[[["caption"]],[["colgroup"],["col"]],"*"],W=["caption","colgroup, col","*"];function G(Tt,At){1&Tt&&i.SdG(0,2)}function re(Tt,At){1&Tt&&(i.j41(0,"thead",0),i.eu8(1,1),i.k0s(),i.j41(2,"tbody",0),i.eu8(3,2)(4,3),i.k0s(),i.j41(5,"tfoot",0),i.eu8(6,4),i.k0s())}function xe(Tt,At){1&Tt&&i.eu8(0,1)(1,2)(2,3)(3,4)}const ce=new d.nKC("CDK_TABLE");let ne=(()=>{class Tt{template=(0,d.WQX)(i.C4Q);constructor(){}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkCellDef",""]]})}return Tt})(),J=(()=>{class Tt{template=(0,d.WQX)(i.C4Q);constructor(){}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkHeaderCellDef",""]]})}return Tt})(),De=(()=>{class Tt{template=(0,d.WQX)(i.C4Q);constructor(){}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkFooterCellDef",""]]})}return Tt})(),Re=(()=>{class Tt{_table=(0,d.WQX)(ce,{optional:!0});_hasStickyChanged=!1;get name(){return this._name}set name(we){this._setNameInput(we)}_name;get sticky(){return this._sticky}set sticky(we){we!==this._sticky&&(this._sticky=we,this._hasStickyChanged=!0)}_sticky=!1;get stickyEnd(){return this._stickyEnd}set stickyEnd(we){we!==this._stickyEnd&&(this._stickyEnd=we,this._hasStickyChanged=!0)}_stickyEnd=!1;cell;headerCell;footerCell;cssClassFriendlyName;_columnCssClassName;constructor(){}hasStickyChanged(){const we=this._hasStickyChanged;return this.resetStickyChanged(),we}resetStickyChanged(){this._hasStickyChanged=!1}_updateColumnCssClassName(){this._columnCssClassName=[`cdk-column-${this.cssClassFriendlyName}`]}_setNameInput(we){we&&(this._name=we,this.cssClassFriendlyName=we.replace(/[^a-z0-9_-]/gi,"-"),this._updateColumnCssClassName())}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkColumnDef",""]],contentQueries:function(ae,Lt,Ht){if(1&ae&&(i.wni(Ht,ne,5),i.wni(Ht,J,5),i.wni(Ht,De,5)),2&ae){let _n;i.mGM(_n=i.lsd())&&(Lt.cell=_n.first),i.mGM(_n=i.lsd())&&(Lt.headerCell=_n.first),i.mGM(_n=i.lsd())&&(Lt.footerCell=_n.first)}},inputs:{name:[0,"cdkColumnDef","name"],sticky:[2,"sticky","sticky",v.L39],stickyEnd:[2,"stickyEnd","stickyEnd",v.L39]},features:[i.Jv_([{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Tt}])]})}return Tt})();class Xe{constructor(At,we){we.nativeElement.classList.add(...At._columnCssClassName)}}let _e=(()=>{class Tt extends Xe{constructor(){super((0,d.WQX)(Re),(0,d.WQX)(i.aKT))}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["cdk-header-cell"],["th","cdk-header-cell",""]],hostAttrs:["role","columnheader",1,"cdk-header-cell"],features:[i.Vt3]})}return Tt})(),he=(()=>{class Tt extends Xe{constructor(){const we=(0,d.WQX)(Re),ae=(0,d.WQX)(i.aKT);super(we,ae);const Lt=we._table?._getCellRole();Lt&&ae.nativeElement.setAttribute("role",Lt)}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["cdk-footer-cell"],["td","cdk-footer-cell",""]],hostAttrs:[1,"cdk-footer-cell"],features:[i.Vt3]})}return Tt})(),Dt=(()=>{class Tt extends Xe{constructor(){const we=(0,d.WQX)(Re),ae=(0,d.WQX)(i.aKT);super(we,ae);const Lt=we._table?._getCellRole();Lt&&ae.nativeElement.setAttribute("role",Lt)}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["cdk-cell"],["td","cdk-cell",""]],hostAttrs:[1,"cdk-cell"],features:[i.Vt3]})}return Tt})(),Le=(()=>{class Tt{template=(0,d.WQX)(i.C4Q);_differs=(0,d.WQX)(v._q3);columns;_columnsDiffer;constructor(){}ngOnChanges(we){if(!this._columnsDiffer){const ae=we.columns&&we.columns.currentValue||[];this._columnsDiffer=this._differs.find(ae).create(),this._columnsDiffer.diff(ae)}}getColumnsDiff(){return this._columnsDiffer.diff(this.columns)}extractCellTemplate(we){return this instanceof te?we.headerCell.template:this instanceof ie?we.footerCell.template:we.cell.template}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,features:[i.OA$]})}return Tt})(),te=(()=>{class Tt extends Le{_table=(0,d.WQX)(ce,{optional:!0});_hasStickyChanged=!1;get sticky(){return this._sticky}set sticky(we){we!==this._sticky&&(this._sticky=we,this._hasStickyChanged=!0)}_sticky=!1;constructor(){super((0,d.WQX)(i.C4Q),(0,d.WQX)(v._q3))}ngOnChanges(we){super.ngOnChanges(we)}hasStickyChanged(){const we=this._hasStickyChanged;return this.resetStickyChanged(),we}resetStickyChanged(){this._hasStickyChanged=!1}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkHeaderRowDef",""]],inputs:{columns:[0,"cdkHeaderRowDef","columns"],sticky:[2,"cdkHeaderRowDefSticky","sticky",v.L39]},features:[i.Vt3,i.OA$]})}return Tt})(),ie=(()=>{class Tt extends Le{_table=(0,d.WQX)(ce,{optional:!0});_hasStickyChanged=!1;get sticky(){return this._sticky}set sticky(we){we!==this._sticky&&(this._sticky=we,this._hasStickyChanged=!0)}_sticky=!1;constructor(){super((0,d.WQX)(i.C4Q),(0,d.WQX)(v._q3))}ngOnChanges(we){super.ngOnChanges(we)}hasStickyChanged(){const we=this._hasStickyChanged;return this.resetStickyChanged(),we}resetStickyChanged(){this._hasStickyChanged=!1}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkFooterRowDef",""]],inputs:{columns:[0,"cdkFooterRowDef","columns"],sticky:[2,"cdkFooterRowDefSticky","sticky",v.L39]},features:[i.Vt3,i.OA$]})}return Tt})(),P=(()=>{class Tt extends Le{_table=(0,d.WQX)(ce,{optional:!0});when;constructor(){super((0,d.WQX)(i.C4Q),(0,d.WQX)(v._q3))}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkRowDef",""]],inputs:{columns:[0,"cdkRowDefColumns","columns"],when:[0,"cdkRowDefWhen","when"]},features:[i.Vt3]})}return Tt})(),F=(()=>{class Tt{_viewContainer=(0,d.WQX)(i.c1b);cells;context;static mostRecentCellOutlet=null;constructor(){Tt.mostRecentCellOutlet=this}ngOnDestroy(){Tt.mostRecentCellOutlet===this&&(Tt.mostRecentCellOutlet=null)}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","cdkCellOutlet",""]]})}return Tt})(),ve=(()=>{class Tt{static \u0275fac=function(ae){return new(ae||Tt)};static \u0275cmp=i.VBU({type:Tt,selectors:[["cdk-header-row"],["tr","cdk-header-row",""]],hostAttrs:["role","row",1,"cdk-header-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ae,Lt){1&ae&&i.eu8(0,0)},dependencies:[F],encapsulation:2})}return Tt})(),H=(()=>{class Tt{static \u0275fac=function(ae){return new(ae||Tt)};static \u0275cmp=i.VBU({type:Tt,selectors:[["cdk-footer-row"],["tr","cdk-footer-row",""]],hostAttrs:["role","row",1,"cdk-footer-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ae,Lt){1&ae&&i.eu8(0,0)},dependencies:[F],encapsulation:2})}return Tt})(),$=(()=>{class Tt{static \u0275fac=function(ae){return new(ae||Tt)};static \u0275cmp=i.VBU({type:Tt,selectors:[["cdk-row"],["tr","cdk-row",""]],hostAttrs:["role","row",1,"cdk-row"],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ae,Lt){1&ae&&i.eu8(0,0)},dependencies:[F],encapsulation:2})}return Tt})(),Ke=(()=>{class Tt{templateRef=(0,d.WQX)(i.C4Q);_contentClassNames=["cdk-no-data-row","cdk-row"];_cellClassNames=["cdk-cell","cdk-no-data-cell"];_cellSelector="td, cdk-cell, [cdk-cell], .cdk-cell";constructor(){}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["ng-template","cdkNoDataRow",""]]})}return Tt})();const Vt=["top","bottom","left","right"];class St{_isNativeHtmlTable;_stickCellCss;_isBrowser;_needsPositionStickyOnElement;direction;_positionListener;_tableInjector;_elemSizeCache=new WeakMap;_resizeObserver=globalThis?.ResizeObserver?new globalThis.ResizeObserver(At=>this._updateCachedSizes(At)):null;_updatedStickyColumnsParamsToReplay=[];_stickyColumnsReplayTimeout=null;_cachedCellWidths=[];_borderCellCss;_destroyed=!1;constructor(At,we,ae=!0,Lt=!0,Ht,_n,fi){this._isNativeHtmlTable=At,this._stickCellCss=we,this._isBrowser=ae,this._needsPositionStickyOnElement=Lt,this.direction=Ht,this._positionListener=_n,this._tableInjector=fi,this._borderCellCss={top:`${we}-border-elem-top`,bottom:`${we}-border-elem-bottom`,left:`${we}-border-elem-left`,right:`${we}-border-elem-right`}}clearStickyPositioning(At,we){(we.includes("left")||we.includes("right"))&&this._removeFromStickyColumnReplayQueue(At);const ae=[];for(const Lt of At)Lt.nodeType===Lt.ELEMENT_NODE&&ae.push(Lt,...Array.from(Lt.children));(0,i.mal)({write:()=>{for(const Lt of ae)this._removeStickyStyle(Lt,we)}},{injector:this._tableInjector})}updateStickyColumns(At,we,ae,Lt=!0,Ht=!0){if(!At.length||!this._isBrowser||!we.some(Fn=>Fn)&&!ae.some(Fn=>Fn))return this._positionListener?.stickyColumnsUpdated({sizes:[]}),void this._positionListener?.stickyEndColumnsUpdated({sizes:[]});const _n=At[0],fi=_n.children.length,bi="rtl"===this.direction,Qi=bi?"right":"left",zi=bi?"left":"right",It=we.lastIndexOf(!0),an=ae.indexOf(!0);let Yt,Un,zn;Ht&&this._updateStickyColumnReplayQueue({rows:[...At],stickyStartStates:[...we],stickyEndStates:[...ae]}),(0,i.mal)({earlyRead:()=>{Yt=this._getCellWidths(_n,Lt),Un=this._getStickyStartColumnPositions(Yt,we),zn=this._getStickyEndColumnPositions(Yt,ae)},write:()=>{for(const Fn of At)for(let ci=0;ci!!Fn)&&(this._positionListener.stickyColumnsUpdated({sizes:-1===It?[]:Yt.slice(0,It+1).map((Fn,ci)=>we[ci]?Fn:null)}),this._positionListener.stickyEndColumnsUpdated({sizes:-1===an?[]:Yt.slice(an).map((Fn,ci)=>ae[ci+an]?Fn:null).reverse()}))}},{injector:this._tableInjector})}stickRows(At,we,ae){if(!this._isBrowser)return;const Lt="bottom"===ae?At.slice().reverse():At,Ht="bottom"===ae?we.slice().reverse():we,_n=[],fi=[],bi=[];(0,i.mal)({earlyRead:()=>{for(let Qi=0,zi=0;Qi{const Qi=Ht.lastIndexOf(!0);for(let zi=0;zi{const ae=At.querySelector("tfoot");ae&&(we.some(Lt=>!Lt)?this._removeStickyStyle(ae,["bottom"]):this._addStickyStyle(ae,"bottom",0,!1))}},{injector:this._tableInjector})}destroy(){this._stickyColumnsReplayTimeout&&clearTimeout(this._stickyColumnsReplayTimeout),this._resizeObserver?.disconnect(),this._destroyed=!0}_removeStickyStyle(At,we){if(At.classList.contains(this._stickCellCss)){for(const Lt of we)At.style[Lt]="",At.classList.remove(this._borderCellCss[Lt]);Vt.some(Lt=>-1===we.indexOf(Lt)&&At.style[Lt])?At.style.zIndex=this._getCalculatedZIndex(At):(At.style.zIndex="",this._needsPositionStickyOnElement&&(At.style.position=""),At.classList.remove(this._stickCellCss))}}_addStickyStyle(At,we,ae,Lt){At.classList.add(this._stickCellCss),Lt&&At.classList.add(this._borderCellCss[we]),At.style[we]=`${ae}px`,At.style.zIndex=this._getCalculatedZIndex(At),this._needsPositionStickyOnElement&&(At.style.cssText+="position: -webkit-sticky; position: sticky; ")}_getCalculatedZIndex(At){const we={top:100,bottom:10,left:1,right:1};let ae=0;for(const Lt of Vt)At.style[Lt]&&(ae+=we[Lt]);return ae?`${ae}`:""}_getCellWidths(At,we=!0){if(!we&&this._cachedCellWidths.length)return this._cachedCellWidths;const ae=[],Lt=At.children;for(let Ht=0;Ht0;Ht--)we[Ht]&&(ae[Ht]=Lt,Lt+=At[Ht]);return ae}_retrieveElementSize(At){const we=this._elemSizeCache.get(At);if(we)return we;const ae=At.getBoundingClientRect(),Lt={width:ae.width,height:ae.height};return this._resizeObserver&&(this._elemSizeCache.set(At,Lt),this._resizeObserver.observe(At,{box:"border-box"})),Lt}_updateStickyColumnReplayQueue(At){this._removeFromStickyColumnReplayQueue(At.rows),this._stickyColumnsReplayTimeout||this._updatedStickyColumnsParamsToReplay.push(At)}_removeFromStickyColumnReplayQueue(At){const we=new Set(At);for(const ae of this._updatedStickyColumnsParamsToReplay)ae.rows=ae.rows.filter(Lt=>!we.has(Lt));this._updatedStickyColumnsParamsToReplay=this._updatedStickyColumnsParamsToReplay.filter(ae=>!!ae.rows.length)}_updateCachedSizes(At){let we=!1;for(const ae of At){const Lt=ae.borderBoxSize?.length?{width:ae.borderBoxSize[0].inlineSize,height:ae.borderBoxSize[0].blockSize}:{width:ae.contentRect.width,height:ae.contentRect.height};Lt.width!==this._elemSizeCache.get(ae.target)?.width&&ot(ae.target)&&(we=!0),this._elemSizeCache.set(ae.target,Lt)}we&&this._updatedStickyColumnsParamsToReplay.length&&(this._stickyColumnsReplayTimeout&&clearTimeout(this._stickyColumnsReplayTimeout),this._stickyColumnsReplayTimeout=setTimeout(()=>{if(!this._destroyed){for(const ae of this._updatedStickyColumnsParamsToReplay)this.updateStickyColumns(ae.rows,ae.stickyStartStates,ae.stickyEndStates,!0,!1);this._updatedStickyColumnsParamsToReplay=[],this._stickyColumnsReplayTimeout=null}},0))}}function ot(Tt){return["cdk-cell","cdk-header-cell","cdk-footer-cell"].some(At=>Tt.classList.contains(At))}const rt=new d.nKC("CDK_SPL");let Ft=(()=>{class Tt{viewContainer=(0,d.WQX)(i.c1b);elementRef=(0,d.WQX)(i.aKT);constructor(){const we=(0,d.WQX)(ce);we._rowOutlet=this,we._outletAssigned()}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","rowOutlet",""]]})}return Tt})(),Sn=(()=>{class Tt{viewContainer=(0,d.WQX)(i.c1b);elementRef=(0,d.WQX)(i.aKT);constructor(){const we=(0,d.WQX)(ce);we._headerRowOutlet=this,we._outletAssigned()}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","headerRowOutlet",""]]})}return Tt})(),Qn=(()=>{class Tt{viewContainer=(0,d.WQX)(i.c1b);elementRef=(0,d.WQX)(i.aKT);constructor(){const we=(0,d.WQX)(ce);we._footerRowOutlet=this,we._outletAssigned()}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","footerRowOutlet",""]]})}return Tt})(),h=(()=>{class Tt{viewContainer=(0,d.WQX)(i.c1b);elementRef=(0,d.WQX)(i.aKT);constructor(){const we=(0,d.WQX)(ce);we._noDataRowOutlet=this,we._outletAssigned()}static \u0275fac=function(ae){return new(ae||Tt)};static \u0275dir=i.FsC({type:Tt,selectors:[["","noDataRowOutlet",""]]})}return Tt})(),jt=(()=>{class Tt{_differs=(0,d.WQX)(v._q3);_changeDetectorRef=(0,d.WQX)(v.gRc);_elementRef=(0,d.WQX)(i.aKT);_dir=(0,d.WQX)(le.dS,{optional:!0});_platform=(0,d.WQX)(Ce.O);_viewRepeater=(0,d.WQX)(B);_viewportRuler=(0,d.WQX)(Ae.Xj);_stickyPositioningListener=(0,d.WQX)(rt,{optional:!0,skipSelf:!0});_document=(0,d.WQX)(d.qQL);_data;_onDestroy=new w.B;_renderRows;_renderChangeSubscription;_columnDefsByName=new Map;_rowDefs;_headerRowDefs;_footerRowDefs;_dataDiffer;_defaultRowDef;_customColumnDefs=new Set;_customRowDefs=new Set;_customHeaderRowDefs=new Set;_customFooterRowDefs=new Set;_customNoDataRow;_headerRowDefChanged=!0;_footerRowDefChanged=!0;_stickyColumnStylesNeedReset=!0;_forceRecalculateCellWidths=!0;_cachedRenderRowsMap=new Map;_isNativeHtmlTable;_stickyStyler;stickyCssClass="cdk-table-sticky";needsPositionStickyOnElement=!0;_isServer;_isShowingNoDataRow=!1;_hasAllOutlets=!1;_hasInitialized=!1;_getCellRole(){if(void 0===this._cellRoleInternal){const we=this._elementRef.nativeElement.getAttribute("role");return"grid"===we||"treegrid"===we?"gridcell":"cell"}return this._cellRoleInternal}_cellRoleInternal=void 0;get trackBy(){return this._trackByFn}set trackBy(we){this._trackByFn=we}_trackByFn;get dataSource(){return this._dataSource}set dataSource(we){this._dataSource!==we&&this._switchDataSource(we)}_dataSource;get multiTemplateDataRows(){return this._multiTemplateDataRows}set multiTemplateDataRows(we){this._multiTemplateDataRows=we,this._rowOutlet&&this._rowOutlet.viewContainer.length&&(this._forceRenderDataRows(),this.updateStickyColumnStyles())}_multiTemplateDataRows=!1;get fixedLayout(){return this._fixedLayout}set fixedLayout(we){this._fixedLayout=we,this._forceRecalculateCellWidths=!0,this._stickyColumnStylesNeedReset=!0}_fixedLayout=!1;contentChanged=new i.bkB;viewChange=new e.t({start:0,end:Number.MAX_VALUE});_rowOutlet;_headerRowOutlet;_footerRowOutlet;_noDataRowOutlet;_contentColumnDefs;_contentRowDefs;_contentHeaderRowDefs;_contentFooterRowDefs;_noDataRow;_injector=(0,d.WQX)(d.zZn);constructor(){(0,d.WQX)(new v.ES_("role"),{optional:!0})||this._elementRef.nativeElement.setAttribute("role","table"),this._isServer=!this._platform.isBrowser,this._isNativeHtmlTable="TABLE"===this._elementRef.nativeElement.nodeName,this._dataDiffer=this._differs.find([]).create((ae,Lt)=>this.trackBy?this.trackBy(Lt.dataIndex,Lt.data):Lt)}ngOnInit(){this._setupStickyStyler(),this._viewportRuler.change().pipe((0,u.Q)(this._onDestroy)).subscribe(()=>{this._forceRecalculateCellWidths=!0})}ngAfterContentInit(){this._hasInitialized=!0}ngAfterContentChecked(){this._canRender()&&this._render()}ngOnDestroy(){this._stickyStyler?.destroy(),[this._rowOutlet?.viewContainer,this._headerRowOutlet?.viewContainer,this._footerRowOutlet?.viewContainer,this._cachedRenderRowsMap,this._customColumnDefs,this._customRowDefs,this._customHeaderRowDefs,this._customFooterRowDefs,this._columnDefsByName].forEach(we=>{we?.clear()}),this._headerRowDefs=[],this._footerRowDefs=[],this._defaultRowDef=null,this._onDestroy.next(),this._onDestroy.complete(),(0,T.y)(this.dataSource)&&this.dataSource.disconnect(this)}renderRows(){this._renderRows=this._getAllRenderRows();const we=this._dataDiffer.diff(this._renderRows);if(!we)return this._updateNoDataRow(),void this.contentChanged.next();const ae=this._rowOutlet.viewContainer;this._viewRepeater.applyChanges(we,ae,(Lt,Ht,_n)=>this._getEmbeddedViewArgs(Lt.item,_n),Lt=>Lt.item.data,Lt=>{Lt.operation===C.INSERTED&&Lt.context&&this._renderCellTemplateForItem(Lt.record.item.rowDef,Lt.context)}),this._updateRowIndexContext(),we.forEachIdentityChange(Lt=>{ae.get(Lt.currentIndex).context.$implicit=Lt.item.data}),this._updateNoDataRow(),this.contentChanged.next(),this.updateStickyColumnStyles()}addColumnDef(we){this._customColumnDefs.add(we)}removeColumnDef(we){this._customColumnDefs.delete(we)}addRowDef(we){this._customRowDefs.add(we)}removeRowDef(we){this._customRowDefs.delete(we)}addHeaderRowDef(we){this._customHeaderRowDefs.add(we),this._headerRowDefChanged=!0}removeHeaderRowDef(we){this._customHeaderRowDefs.delete(we),this._headerRowDefChanged=!0}addFooterRowDef(we){this._customFooterRowDefs.add(we),this._footerRowDefChanged=!0}removeFooterRowDef(we){this._customFooterRowDefs.delete(we),this._footerRowDefChanged=!0}setNoDataRow(we){this._customNoDataRow=we}updateStickyHeaderRowStyles(){const we=this._getRenderedRows(this._headerRowOutlet);if(this._isNativeHtmlTable){const Lt=wt(this._headerRowOutlet,"thead");Lt&&(Lt.style.display=we.length?"":"none")}const ae=this._headerRowDefs.map(Lt=>Lt.sticky);this._stickyStyler.clearStickyPositioning(we,["top"]),this._stickyStyler.stickRows(we,ae,"top"),this._headerRowDefs.forEach(Lt=>Lt.resetStickyChanged())}updateStickyFooterRowStyles(){const we=this._getRenderedRows(this._footerRowOutlet);if(this._isNativeHtmlTable){const Lt=wt(this._footerRowOutlet,"tfoot");Lt&&(Lt.style.display=we.length?"":"none")}const ae=this._footerRowDefs.map(Lt=>Lt.sticky);this._stickyStyler.clearStickyPositioning(we,["bottom"]),this._stickyStyler.stickRows(we,ae,"bottom"),this._stickyStyler.updateStickyFooterContainer(this._elementRef.nativeElement,ae),this._footerRowDefs.forEach(Lt=>Lt.resetStickyChanged())}updateStickyColumnStyles(){const we=this._getRenderedRows(this._headerRowOutlet),ae=this._getRenderedRows(this._rowOutlet),Lt=this._getRenderedRows(this._footerRowOutlet);(this._isNativeHtmlTable&&!this._fixedLayout||this._stickyColumnStylesNeedReset)&&(this._stickyStyler.clearStickyPositioning([...we,...ae,...Lt],["left","right"]),this._stickyColumnStylesNeedReset=!1),we.forEach((Ht,_n)=>{this._addStickyColumnStyles([Ht],this._headerRowDefs[_n])}),this._rowDefs.forEach(Ht=>{const _n=[];for(let fi=0;fi{this._addStickyColumnStyles([Ht],this._footerRowDefs[_n])}),Array.from(this._columnDefsByName.values()).forEach(Ht=>Ht.resetStickyChanged())}_outletAssigned(){!this._hasAllOutlets&&this._rowOutlet&&this._headerRowOutlet&&this._footerRowOutlet&&this._noDataRowOutlet&&(this._hasAllOutlets=!0,this._canRender()&&this._render())}_canRender(){return this._hasAllOutlets&&this._hasInitialized}_render(){this._cacheRowDefs(),this._cacheColumnDefs();const ae=this._renderUpdatedColumns()||this._headerRowDefChanged||this._footerRowDefChanged;this._stickyColumnStylesNeedReset=this._stickyColumnStylesNeedReset||ae,this._forceRecalculateCellWidths=ae,this._headerRowDefChanged&&(this._forceRenderHeaderRows(),this._headerRowDefChanged=!1),this._footerRowDefChanged&&(this._forceRenderFooterRows(),this._footerRowDefChanged=!1),this.dataSource&&this._rowDefs.length>0&&!this._renderChangeSubscription?this._observeRenderChanges():this._stickyColumnStylesNeedReset&&this.updateStickyColumnStyles(),this._checkStickyStates()}_getAllRenderRows(){const we=[],ae=this._cachedRenderRowsMap;if(this._cachedRenderRowsMap=new Map,!this._data)return we;for(let Lt=0;Lt{const fi=Lt&&Lt.has(_n)?Lt.get(_n):[];if(fi.length){const bi=fi.shift();return bi.dataIndex=ae,bi}return{data:we,rowDef:_n,dataIndex:ae}})}_cacheColumnDefs(){this._columnDefsByName.clear(),Ue(this._getOwnDefs(this._contentColumnDefs),this._customColumnDefs).forEach(ae=>{this._columnDefsByName.has(ae.name),this._columnDefsByName.set(ae.name,ae)})}_cacheRowDefs(){this._headerRowDefs=Ue(this._getOwnDefs(this._contentHeaderRowDefs),this._customHeaderRowDefs),this._footerRowDefs=Ue(this._getOwnDefs(this._contentFooterRowDefs),this._customFooterRowDefs),this._rowDefs=Ue(this._getOwnDefs(this._contentRowDefs),this._customRowDefs);const we=this._rowDefs.filter(ae=>!ae.when);this._defaultRowDef=we[0]}_renderUpdatedColumns(){const we=(_n,fi)=>{const bi=!!fi.getColumnsDiff();return _n||bi},ae=this._rowDefs.reduce(we,!1);ae&&this._forceRenderDataRows();const Lt=this._headerRowDefs.reduce(we,!1);Lt&&this._forceRenderHeaderRows();const Ht=this._footerRowDefs.reduce(we,!1);return Ht&&this._forceRenderFooterRows(),ae||Lt||Ht}_switchDataSource(we){this._data=[],(0,T.y)(this.dataSource)&&this.dataSource.disconnect(this),this._renderChangeSubscription&&(this._renderChangeSubscription.unsubscribe(),this._renderChangeSubscription=null),we||(this._dataDiffer&&this._dataDiffer.diff([]),this._rowOutlet&&this._rowOutlet.viewContainer.clear()),this._dataSource=we}_observeRenderChanges(){if(!this.dataSource)return;let we;(0,T.y)(this.dataSource)?we=this.dataSource.connect(this):(0,O.A)(this.dataSource)?we=this.dataSource:Array.isArray(this.dataSource)&&(we=(0,f.of)(this.dataSource)),this._renderChangeSubscription=we.pipe((0,u.Q)(this._onDestroy)).subscribe(ae=>{this._data=ae||[],this.renderRows()})}_forceRenderHeaderRows(){this._headerRowOutlet.viewContainer.length>0&&this._headerRowOutlet.viewContainer.clear(),this._headerRowDefs.forEach((we,ae)=>this._renderRow(this._headerRowOutlet,we,ae)),this.updateStickyHeaderRowStyles()}_forceRenderFooterRows(){this._footerRowOutlet.viewContainer.length>0&&this._footerRowOutlet.viewContainer.clear(),this._footerRowDefs.forEach((we,ae)=>this._renderRow(this._footerRowOutlet,we,ae)),this.updateStickyFooterRowStyles()}_addStickyColumnStyles(we,ae){const Lt=Array.from(ae?.columns||[]).map(fi=>this._columnDefsByName.get(fi)),Ht=Lt.map(fi=>fi.sticky),_n=Lt.map(fi=>fi.stickyEnd);this._stickyStyler.updateStickyColumns(we,Ht,_n,!this._fixedLayout||this._forceRecalculateCellWidths)}_getRenderedRows(we){const ae=[];for(let Lt=0;Lt!Ht.when||Ht.when(ae,we));else{let Ht=this._rowDefs.find(_n=>_n.when&&_n.when(ae,we))||this._defaultRowDef;Ht&&Lt.push(Ht)}return Lt}_getEmbeddedViewArgs(we,ae){return{templateRef:we.rowDef.template,context:{$implicit:we.data},index:ae}}_renderRow(we,ae,Lt,Ht={}){const _n=we.viewContainer.createEmbeddedView(ae.template,Ht,Lt);return this._renderCellTemplateForItem(ae,Ht),_n}_renderCellTemplateForItem(we,ae){for(let Lt of this._getCellTemplates(we))F.mostRecentCellOutlet&&F.mostRecentCellOutlet._viewContainer.createEmbeddedView(Lt,ae);this._changeDetectorRef.markForCheck()}_updateRowIndexContext(){const we=this._rowOutlet.viewContainer;for(let ae=0,Lt=we.length;ae{const Lt=this._columnDefsByName.get(ae);return we.extractCellTemplate(Lt)}):[]}_forceRenderDataRows(){this._dataDiffer.diff([]),this._rowOutlet.viewContainer.clear(),this.renderRows()}_checkStickyStates(){const we=(ae,Lt)=>ae||Lt.hasStickyChanged();this._headerRowDefs.reduce(we,!1)&&this.updateStickyHeaderRowStyles(),this._footerRowDefs.reduce(we,!1)&&this.updateStickyFooterRowStyles(),Array.from(this._columnDefsByName.values()).reduce(we,!1)&&(this._stickyColumnStylesNeedReset=!0,this.updateStickyColumnStyles())}_setupStickyStyler(){this._stickyStyler=new St(this._isNativeHtmlTable,this.stickyCssClass,this._platform.isBrowser,this.needsPositionStickyOnElement,this._dir?this._dir.value:"ltr",this._stickyPositioningListener,this._injector),(this._dir?this._dir.change:(0,f.of)()).pipe((0,u.Q)(this._onDestroy)).subscribe(ae=>{this._stickyStyler.direction=ae,this.updateStickyColumnStyles()})}_getOwnDefs(we){return we.filter(ae=>!ae._table||ae._table===this)}_updateNoDataRow(){const we=this._customNoDataRow||this._noDataRow;if(!we)return;const ae=0===this._rowOutlet.viewContainer.length;if(ae===this._isShowingNoDataRow)return;const Lt=this._noDataRowOutlet.viewContainer;if(ae){const Ht=Lt.createEmbeddedView(we.templateRef),_n=Ht.rootNodes[0];if(1===Ht.rootNodes.length&&_n?.nodeType===this._document.ELEMENT_NODE){_n.setAttribute("role","row"),_n.classList.add(...we._contentClassNames);const fi=_n.querySelectorAll(we._cellSelector);for(let bi=0;bi{class Tt{static \u0275fac=function(ae){return new(ae||Tt)};static \u0275mod=i.$C({type:Tt});static \u0275inj=d.G2t({imports:[Ae.E9]})}return Tt})();var ei=l(2466),vi=l(7786),Ni=l(4572),kn=l(7847),Ri=l(6354);const vt=[[["caption"]],[["colgroup"],["col"]],"*"],ee=["caption","colgroup, col","*"];function ye(Tt,At){1&Tt&&i.SdG(0,2)}function ke(Tt,At){1&Tt&&(i.j41(0,"thead",0),i.eu8(1,1),i.k0s(),i.j41(2,"tbody",2),i.eu8(3,3)(4,4),i.k0s(),i.j41(5,"tfoot",0),i.eu8(6,5),i.k0s())}function Se(Tt,At){1&Tt&&i.eu8(0,1)(1,3)(2,4)(3,5)}let Me=(()=>{class Tt extends jt{stickyCssClass="mat-mdc-table-sticky";needsPositionStickyOnElement=!1;static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275cmp=i.VBU({type:Tt,selectors:[["mat-table"],["table","mat-table",""]],hostAttrs:[1,"mat-mdc-table","mdc-data-table__table"],hostVars:2,hostBindings:function(ae,Lt){2&ae&&i.AVh("mdc-table-fixed-layout",Lt.fixedLayout)},exportAs:["matTable"],features:[i.Jv_([{provide:jt,useExisting:Tt},{provide:ce,useExisting:Tt},{provide:B,useClass:Pe},{provide:rt,useValue:null}]),i.Vt3],ngContentSelectors:ee,decls:5,vars:2,consts:[["role","rowgroup"],["headerRowOutlet",""],["role","rowgroup",1,"mdc-data-table__content"],["rowOutlet",""],["noDataRowOutlet",""],["footerRowOutlet",""]],template:function(ae,Lt){1&ae&&(i.NAR(vt),i.SdG(0),i.SdG(1,1),i.nVh(2,ye,1,0),i.nVh(3,ke,7,0)(4,Se,4,0)),2&ae&&(i.R7$(2),i.vxM(Lt._isServer?2:-1),i.R7$(),i.vxM(Lt._isNativeHtmlTable?3:4))},dependencies:[Sn,Ft,h,Qn],styles:[".mat-mdc-table-sticky{position:sticky !important}mat-table{display:block}mat-header-row{min-height:var(--mat-table-header-container-height, 56px)}mat-row{min-height:var(--mat-table-row-item-container-height, 52px)}mat-footer-row{min-height:var(--mat-table-footer-container-height, 52px)}mat-row,mat-header-row,mat-footer-row{display:flex;border-width:0;border-bottom-width:1px;border-style:solid;align-items:center;box-sizing:border-box}mat-cell:first-of-type,mat-header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:24px}[dir=rtl] mat-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:first-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:first-of-type:not(:only-of-type){padding-left:0;padding-right:24px}mat-cell:last-of-type,mat-header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:24px}[dir=rtl] mat-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-header-cell:last-of-type:not(:only-of-type),[dir=rtl] mat-footer-cell:last-of-type:not(:only-of-type){padding-right:0;padding-left:24px}mat-cell,mat-header-cell,mat-footer-cell{flex:1;display:flex;align-items:center;overflow:hidden;word-wrap:break-word;min-height:inherit}.mat-mdc-table{min-width:100%;border:0;border-spacing:0;table-layout:auto;white-space:normal;background-color:var(--mat-table-background-color, var(--mat-sys-surface))}.mdc-data-table__cell{box-sizing:border-box;overflow:hidden;text-align:left;text-overflow:ellipsis}[dir=rtl] .mdc-data-table__cell{text-align:right}.mdc-data-table__cell,.mdc-data-table__header-cell{padding:0 16px}.mat-mdc-header-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-header-container-height, 56px);color:var(--mat-table-header-headline-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)));font-family:var(--mat-table-header-headline-font, var(--mat-sys-title-small-font, Roboto, sans-serif));line-height:var(--mat-table-header-headline-line-height, var(--mat-sys-title-small-line-height));font-size:var(--mat-table-header-headline-size, var(--mat-sys-title-small-size, 14px));font-weight:var(--mat-table-header-headline-weight, var(--mat-sys-title-small-weight, 500))}.mat-mdc-row{height:var(--mat-table-row-item-container-height, 52px);color:var(--mat-table-row-item-label-text-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)))}.mat-mdc-row,.mdc-data-table__content{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-family:var(--mat-table-row-item-label-text-font, var(--mat-sys-body-medium-font, Roboto, sans-serif));line-height:var(--mat-table-row-item-label-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-table-row-item-label-text-size, var(--mat-sys-body-medium-size, 14px));font-weight:var(--mat-table-row-item-label-text-weight, var(--mat-sys-body-medium-weight))}.mat-mdc-footer-row{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;height:var(--mat-table-footer-container-height, 52px);color:var(--mat-table-row-item-label-text-color, var(--mat-sys-on-surface, rgba(0, 0, 0, 0.87)));font-family:var(--mat-table-footer-supporting-text-font, var(--mat-sys-body-medium-font, Roboto, sans-serif));line-height:var(--mat-table-footer-supporting-text-line-height, var(--mat-sys-body-medium-line-height));font-size:var(--mat-table-footer-supporting-text-size, var(--mat-sys-body-medium-size, 14px));font-weight:var(--mat-table-footer-supporting-text-weight, var(--mat-sys-body-medium-weight));letter-spacing:var(--mat-table-footer-supporting-text-tracking, var(--mat-sys-body-medium-tracking))}.mat-mdc-header-cell{border-bottom-color:var(--mat-table-row-item-outline-color, var(--mat-sys-outline, rgba(0, 0, 0, 0.12)));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-header-headline-tracking, var(--mat-sys-title-small-tracking));font-weight:inherit;line-height:inherit;box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;outline:none;text-align:left}[dir=rtl] .mat-mdc-header-cell{text-align:right}.mdc-data-table__row:last-child>.mat-mdc-header-cell{border-bottom:none}.mat-mdc-cell{border-bottom-color:var(--mat-table-row-item-outline-color, var(--mat-sys-outline, rgba(0, 0, 0, 0.12)));border-bottom-width:var(--mat-table-row-item-outline-width, 1px);border-bottom-style:solid;letter-spacing:var(--mat-table-row-item-label-text-tracking, var(--mat-sys-body-medium-tracking));line-height:inherit}.mdc-data-table__row:last-child>.mat-mdc-cell{border-bottom:none}.mat-mdc-footer-cell{letter-spacing:var(--mat-table-row-item-label-text-tracking, var(--mat-sys-body-medium-tracking))}mat-row.mat-mdc-row,mat-header-row.mat-mdc-header-row,mat-footer-row.mat-mdc-footer-row{border-bottom:none}.mat-mdc-table tbody,.mat-mdc-table tfoot,.mat-mdc-table thead,.mat-mdc-cell,.mat-mdc-footer-cell,.mat-mdc-header-row,.mat-mdc-row,.mat-mdc-footer-row,.mat-mdc-table .mat-mdc-header-cell{background:inherit}.mat-mdc-table mat-header-row.mat-mdc-header-row,.mat-mdc-table mat-row.mat-mdc-row,.mat-mdc-table mat-footer-row.mat-mdc-footer-cell{height:unset}mat-header-cell.mat-mdc-header-cell,mat-cell.mat-mdc-cell,mat-footer-cell.mat-mdc-footer-cell{align-self:stretch}\n"],encapsulation:2})}return Tt})(),at=(()=>{class Tt extends ne{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matCellDef",""]],features:[i.Jv_([{provide:ne,useExisting:Tt}]),i.Vt3]})}return Tt})(),qe=(()=>{class Tt extends J{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matHeaderCellDef",""]],features:[i.Jv_([{provide:J,useExisting:Tt}]),i.Vt3]})}return Tt})(),pn=(()=>{class Tt extends De{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matFooterCellDef",""]],features:[i.Jv_([{provide:De,useExisting:Tt}]),i.Vt3]})}return Tt})(),Je=(()=>{class Tt extends Re{get name(){return this._name}set name(we){this._setNameInput(we)}_updateColumnCssClassName(){super._updateColumnCssClassName(),this._columnCssClassName.push(`mat-column-${this.cssClassFriendlyName}`)}static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matColumnDef",""]],inputs:{name:[0,"matColumnDef","name"]},features:[i.Jv_([{provide:Re,useExisting:Tt},{provide:"MAT_SORT_HEADER_COLUMN_DEF",useExisting:Tt}]),i.Vt3]})}return Tt})(),Be=(()=>{class Tt extends _e{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["mat-header-cell"],["th","mat-header-cell",""]],hostAttrs:["role","columnheader",1,"mat-mdc-header-cell","mdc-data-table__header-cell"],features:[i.Vt3]})}return Tt})(),ut=(()=>{class Tt extends he{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["mat-footer-cell"],["td","mat-footer-cell",""]],hostAttrs:[1,"mat-mdc-footer-cell","mdc-data-table__cell"],features:[i.Vt3]})}return Tt})(),Ge=(()=>{class Tt extends Dt{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["mat-cell"],["td","mat-cell",""]],hostAttrs:[1,"mat-mdc-cell","mdc-data-table__cell"],features:[i.Vt3]})}return Tt})(),se=(()=>{class Tt extends te{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matHeaderRowDef",""]],inputs:{columns:[0,"matHeaderRowDef","columns"],sticky:[2,"matHeaderRowDefSticky","sticky",v.L39]},features:[i.Jv_([{provide:te,useExisting:Tt}]),i.Vt3]})}return Tt})(),We=(()=>{class Tt extends ie{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matFooterRowDef",""]],inputs:{columns:[0,"matFooterRowDef","columns"],sticky:[2,"matFooterRowDefSticky","sticky",v.L39]},features:[i.Jv_([{provide:ie,useExisting:Tt}]),i.Vt3]})}return Tt})(),bt=(()=>{class Tt extends P{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275dir=i.FsC({type:Tt,selectors:[["","matRowDef",""]],inputs:{columns:[0,"matRowDefColumns","columns"],when:[0,"matRowDefWhen","when"]},features:[i.Jv_([{provide:P,useExisting:Tt}]),i.Vt3]})}return Tt})(),tn=(()=>{class Tt extends ve{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275cmp=i.VBU({type:Tt,selectors:[["mat-header-row"],["tr","mat-header-row",""]],hostAttrs:["role","row",1,"mat-mdc-header-row","mdc-data-table__header-row"],exportAs:["matHeaderRow"],features:[i.Jv_([{provide:ve,useExisting:Tt}]),i.Vt3],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ae,Lt){1&ae&&i.eu8(0,0)},dependencies:[F],encapsulation:2})}return Tt})(),on=(()=>{class Tt extends H{static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275cmp=i.VBU({type:Tt,selectors:[["mat-footer-row"],["tr","mat-footer-row",""]],hostAttrs:["role","row",1,"mat-mdc-footer-row","mdc-data-table__row"],exportAs:["matFooterRow"],features:[i.Jv_([{provide:H,useExisting:Tt}]),i.Vt3],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ae,Lt){1&ae&&i.eu8(0,0)},dependencies:[F],encapsulation:2})}return Tt})(),un=(()=>{class Tt extends ${static \u0275fac=(()=>{let we;return function(Lt){return(we||(we=i.xGo(Tt)))(Lt||Tt)}})();static \u0275cmp=i.VBU({type:Tt,selectors:[["mat-row"],["tr","mat-row",""]],hostAttrs:["role","row",1,"mat-mdc-row","mdc-data-table__row"],exportAs:["matRow"],features:[i.Jv_([{provide:$,useExisting:Tt}]),i.Vt3],decls:1,vars:0,consts:[["cdkCellOutlet",""]],template:function(ae,Lt){1&ae&&i.eu8(0,0)},dependencies:[F],encapsulation:2})}return Tt})(),Jn=(()=>{class Tt{static \u0275fac=function(ae){return new(ae||Tt)};static \u0275mod=i.$C({type:Tt});static \u0275inj=d.G2t({imports:[ei.y,gn,ei.y]})}return Tt})();class Yi extends T.q{_data;_renderData=new e.t([]);_filter=new e.t("");_internalPageChanges=new w.B;_renderChangesSubscription=null;filteredData;get data(){return this._data.value}set data(At){At=Array.isArray(At)?At:[],this._data.next(At),this._renderChangesSubscription||this._filterData(At)}get filter(){return this._filter.value}set filter(At){this._filter.next(At),this._renderChangesSubscription||this._filterData(this.data)}get sort(){return this._sort}set sort(At){this._sort=At,this._updateChangeSubscription()}_sort;get paginator(){return this._paginator}set paginator(At){this._paginator=At,this._updateChangeSubscription()}_paginator;sortingDataAccessor=(At,we)=>{const ae=At[we];if((0,kn.o1)(ae)){const Lt=Number(ae);return Lt<9007199254740991?Lt:ae}return ae};sortData=(At,we)=>{const ae=we.active,Lt=we.direction;return ae&&""!=Lt?At.sort((Ht,_n)=>{let fi=this.sortingDataAccessor(Ht,ae),bi=this.sortingDataAccessor(_n,ae);const Qi=typeof fi,zi=typeof bi;Qi!==zi&&("number"===Qi&&(fi+=""),"number"===zi&&(bi+=""));let It=0;return null!=fi&&null!=bi?fi>bi?It=1:fi{const ae=we.trim().toLowerCase();return Object.values(At).some(Lt=>`${Lt}`.toLowerCase().includes(ae))};constructor(At=[]){super(),this._data=new e.t(At),this._updateChangeSubscription()}_updateChangeSubscription(){const At=this._sort?(0,vi.h)(this._sort.sortChange,this._sort.initialized):(0,f.of)(null),we=this._paginator?(0,vi.h)(this._paginator.page,this._internalPageChanges,this._paginator.initialized):(0,f.of)(null),Lt=(0,Ni.z)([this._data,this._filter]).pipe((0,Ri.T)(([fi])=>this._filterData(fi))),Ht=(0,Ni.z)([Lt,At]).pipe((0,Ri.T)(([fi])=>this._orderData(fi))),_n=(0,Ni.z)([Ht,we]).pipe((0,Ri.T)(([fi])=>this._pageData(fi)));this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=_n.subscribe(fi=>this._renderData.next(fi))}_filterData(At){return this.filteredData=null==this.filter||""===this.filter?At:At.filter(we=>this.filterPredicate(we,this.filter)),this.paginator&&this._updatePaginator(this.filteredData.length),this.filteredData}_orderData(At){return this.sort?this.sortData(At.slice(),this.sort):At}_pageData(At){if(!this.paginator)return At;const we=this.paginator.pageIndex*this.paginator.pageSize;return At.slice(we,we+this.paginator.pageSize)}_updatePaginator(At){Promise.resolve().then(()=>{const we=this.paginator;if(we&&(we.length=At,we.pageIndex>0)){const ae=Math.ceil(we.length/we.pageSize)-1||0,Lt=Math.min(we.pageIndex,ae);Lt!==we.pageIndex&&(we.pageIndex=Lt,this._internalPageChanges.next())}})}connect(){return this._renderChangesSubscription||this._updateChangeSubscription(),this._renderData}disconnect(){this._renderChangesSubscription?.unsubscribe(),this._renderChangesSubscription=null}}},6850(Zt,pe,l){"use strict";l.d(pe,{Bu:()=>ge,ES:()=>Ft,Ql:()=>N,RI:()=>Me,T8:()=>ke,hQ:()=>Z,mq:()=>Qn});var i=l(6838),d=l(9726),v=l(4123),T=l(1577),w=l(7336),e=l(438),O=l(3610),f=l(9842),u=l(5718),L=l(2615),C=l(3664),B=l(7705),A=l(9295),Pe=l(1985),le=l(1413),Ce=l(4412),Ae=l(8359),j=l(7786),W=l(7673),G=l(1807),re=l(983),xe=l(152),Ee=l(5964),V=l(5245),ce=l(9172),be=l(5558),ne=l(6977),J=l(1804),De=l(6939),Re=l(8968),Xe=l(2046),_e=l(2318),he=l(2496),Dt=l(2466);const lt=["*"];function Le(qe,pn){1&qe&&C.SdG(0)}const te=["tabListContainer"],ie=["tabList"],P=["tabListInner"],F=["nextPaginator"],ve=["previousPaginator"],H=["content"];function $(qe,pn){}const Ke=["tabBodyWrapper"],Vt=["tabHeader"];function St(qe,pn){}function ot(qe,pn){if(1&qe&&C.DNE(0,St,0,0,"ng-template",12),2&qe){const Je=C.XpG().$implicit;C.Y8G("cdkPortalOutlet",Je.templateLabel)}}function nt(qe,pn){if(1&qe&&C.EFF(0),2&qe){const Je=C.XpG().$implicit;C.JRh(Je.textLabel)}}function ht(qe,pn){if(1&qe){const Je=C.RV6();C.j41(0,"div",7,2),C.bIt("click",function(){const ut=L.eBV(Je),Ge=ut.$implicit,Ot=ut.$index,se=C.XpG(),We=C.sdS(1);return L.Njj(se._handleClick(Ge,We,Ot))})("cdkFocusChange",function(ut){const Ge=L.eBV(Je).$index,Ot=C.XpG();return L.Njj(Ot._tabFocusChanged(ut,Ge))}),C.nrm(2,"span",8)(3,"div",9),C.j41(4,"span",10)(5,"span",11),C.nVh(6,ot,1,1,null,12)(7,nt,1,1),C.k0s()()()}if(2&qe){const Je=pn.$implicit,Be=pn.$index,ut=C.sdS(1),Ge=C.XpG();C.HbH(Je.labelClass),C.AVh("mdc-tab--active",Ge.selectedIndex===Be),C.Y8G("id",Ge._getTabLabelId(Je,Be))("disabled",Je.disabled)("fitInkBarToContent",Ge.fitInkBarToContent),C.BMQ("tabIndex",Ge._getTabIndex(Be))("aria-posinset",Be+1)("aria-setsize",Ge._tabs.length)("aria-controls",Ge._getTabContentId(Be))("aria-selected",Ge.selectedIndex===Be)("aria-label",Je.ariaLabel||null)("aria-labelledby",!Je.ariaLabel&&Je.ariaLabelledby?Je.ariaLabelledby:null),C.R7$(3),C.Y8G("matRippleTrigger",ut)("matRippleDisabled",Je.disabled||Ge.disableRipple),C.R7$(3),C.vxM(Je.templateLabel?6:7)}}function oe(qe,pn){1&qe&&C.SdG(0)}function Ye(qe,pn){if(1&qe){const Je=C.RV6();C.j41(0,"mat-tab-body",13),C.bIt("_onCentered",function(){L.eBV(Je);const ut=C.XpG();return L.Njj(ut._removeTabBodyWrapperHeight())})("_onCentering",function(ut){L.eBV(Je);const Ge=C.XpG();return L.Njj(Ge._setTabBodyWrapperHeight(ut))})("_beforeCentering",function(ut){L.eBV(Je);const Ge=C.XpG();return L.Njj(Ge._bodyCentered(ut))}),C.k0s()}if(2&qe){const Je=pn.$implicit,Be=pn.$index,ut=C.XpG();C.HbH(Je.bodyClass),C.Y8G("id",ut._getTabContentId(Be))("content",Je.content)("position",Je.position)("animationDuration",ut.animationDuration)("preserveContent",ut.preserveContent),C.BMQ("tabindex",null!=ut.contentTabIndex&&ut.selectedIndex===Be?ut.contentTabIndex:null)("aria-labelledby",ut._getTabLabelId(Je,Be))("aria-hidden",ut.selectedIndex!==Be)}}const fe=["mat-tab-nav-bar",""],Qe=["mat-tab-link",""],gt=new L.nKC("MatTabContent");let Gt=(()=>{class qe{template=(0,L.WQX)(C.C4Q);constructor(){}static \u0275fac=function(Be){return new(Be||qe)};static \u0275dir=C.FsC({type:qe,selectors:[["","matTabContent",""]],features:[C.Jv_([{provide:gt,useExisting:qe}])]})}return qe})();const rt=new L.nKC("MatTabLabel"),cn=new L.nKC("MAT_TAB");let Ft=(()=>{class qe extends De.bV{_closestTab=(0,L.WQX)(cn,{optional:!0});static \u0275fac=(()=>{let Je;return function(ut){return(Je||(Je=C.xGo(qe)))(ut||qe)}})();static \u0275dir=C.FsC({type:qe,selectors:[["","mat-tab-label",""],["","matTabLabel",""]],features:[C.Jv_([{provide:rt,useExisting:qe}]),C.Vt3]})}return qe})();const Sn=new L.nKC("MAT_TAB_GROUP");let Qn=(()=>{class qe{_viewContainerRef=(0,L.WQX)(C.c1b);_closestTabGroup=(0,L.WQX)(Sn,{optional:!0});disabled=!1;get templateLabel(){return this._templateLabel}set templateLabel(Je){this._setTemplateLabelInput(Je)}_templateLabel;_explicitContent=void 0;_implicitContent;textLabel="";ariaLabel;ariaLabelledby;labelClass;bodyClass;id=null;_contentPortal=null;get content(){return this._contentPortal}_stateChanges=new le.B;position=null;origin=null;isActive=!1;constructor(){(0,L.WQX)(Re.l).load(Xe.A)}ngOnChanges(Je){(Je.hasOwnProperty("textLabel")||Je.hasOwnProperty("disabled"))&&this._stateChanges.next()}ngOnDestroy(){this._stateChanges.complete()}ngOnInit(){this._contentPortal=new De.VA(this._explicitContent||this._implicitContent,this._viewContainerRef)}_setTemplateLabelInput(Je){Je&&Je._closestTab===this&&(this._templateLabel=Je)}static \u0275fac=function(Be){return new(Be||qe)};static \u0275cmp=C.VBU({type:qe,selectors:[["mat-tab"]],contentQueries:function(Be,ut,Ge){if(1&Be&&(C.wni(Ge,Ft,5),C.wni(Ge,Gt,7,C.C4Q)),2&Be){let Ot;C.mGM(Ot=C.lsd())&&(ut.templateLabel=Ot.first),C.mGM(Ot=C.lsd())&&(ut._explicitContent=Ot.first)}},viewQuery:function(Be,ut){if(1&Be&&C.GBs(C.C4Q,7),2&Be){let Ge;C.mGM(Ge=C.lsd())&&(ut._implicitContent=Ge.first)}},hostAttrs:["hidden",""],hostVars:1,hostBindings:function(Be,ut){2&Be&&C.BMQ("id",null)},inputs:{disabled:[2,"disabled","disabled",B.L39],textLabel:[0,"label","textLabel"],ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],labelClass:"labelClass",bodyClass:"bodyClass",id:"id"},exportAs:["matTab"],features:[C.Jv_([{provide:cn,useExisting:qe}]),C.OA$],ngContentSelectors:lt,decls:1,vars:0,template:function(Be,ut){1&Be&&(C.NAR(),C.PeT(0,Le,1,0,"ng-template"))},encapsulation:2})}return qe})();const h="mdc-tab-indicator--active",jt="mdc-tab-indicator--no-transition";class Ue{_items;_currentItem;constructor(pn){this._items=pn}hide(){this._items.forEach(pn=>pn.deactivateInkBar()),this._currentItem=void 0}alignToElement(pn){const Je=this._items.find(ut=>ut.elementRef.nativeElement===pn),Be=this._currentItem;if(Je!==Be&&(Be?.deactivateInkBar(),Je)){const ut=Be?.elementRef.nativeElement.getBoundingClientRect?.();Je.activateInkBar(ut),this._currentItem=Je}}}let wt=(()=>{class qe{_elementRef=(0,L.WQX)(C.aKT);_inkBarElement;_inkBarContentElement;_fitToContent=!1;get fitInkBarToContent(){return this._fitToContent}set fitInkBarToContent(Je){this._fitToContent!==Je&&(this._fitToContent=Je,this._inkBarElement&&this._appendInkBarElement())}activateInkBar(Je){const Be=this._elementRef.nativeElement;if(!Je||!Be.getBoundingClientRect||!this._inkBarContentElement)return void Be.classList.add(h);const ut=Be.getBoundingClientRect(),Ge=Je.width/ut.width,Ot=Je.left-ut.left;Be.classList.add(jt),this._inkBarContentElement.style.setProperty("transform",`translateX(${Ot}px) scaleX(${Ge})`),Be.getBoundingClientRect(),Be.classList.remove(jt),Be.classList.add(h),this._inkBarContentElement.style.setProperty("transform","")}deactivateInkBar(){this._elementRef.nativeElement.classList.remove(h)}ngOnInit(){this._createInkBarElement()}ngOnDestroy(){this._inkBarElement?.remove(),this._inkBarElement=this._inkBarContentElement=null}_createInkBarElement(){const Je=this._elementRef.nativeElement.ownerDocument||document,Be=this._inkBarElement=Je.createElement("span"),ut=this._inkBarContentElement=Je.createElement("span");Be.className="mdc-tab-indicator",ut.className="mdc-tab-indicator__content mdc-tab-indicator__content--underline",Be.appendChild(this._inkBarContentElement),this._appendInkBarElement()}_appendInkBarElement(){(this._fitToContent?this._elementRef.nativeElement.querySelector(".mdc-tab__content"):this._elementRef.nativeElement).appendChild(this._inkBarElement)}static \u0275fac=function(Be){return new(Be||qe)};static \u0275dir=C.FsC({type:qe,inputs:{fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",B.L39]}})}return qe})(),gn=(()=>{class qe extends wt{elementRef=(0,L.WQX)(C.aKT);disabled=!1;focus(){this.elementRef.nativeElement.focus()}getOffsetLeft(){return this.elementRef.nativeElement.offsetLeft}getOffsetWidth(){return this.elementRef.nativeElement.offsetWidth}static \u0275fac=(()=>{let Je;return function(ut){return(Je||(Je=C.xGo(qe)))(ut||qe)}})();static \u0275dir=C.FsC({type:qe,selectors:[["","matTabLabelWrapper",""]],hostVars:3,hostBindings:function(Be,ut){2&Be&&(C.BMQ("aria-disabled",!!ut.disabled),C.AVh("mat-mdc-tab-disabled",ut.disabled))},inputs:{disabled:[2,"disabled","disabled",B.L39]},features:[C.Vt3]})}return qe})();const ei={passive:!0};let kn=(()=>{class qe{_elementRef=(0,L.WQX)(C.aKT);_changeDetectorRef=(0,L.WQX)(B.gRc);_viewportRuler=(0,L.WQX)(u.Xj);_dir=(0,L.WQX)(T.dS,{optional:!0});_ngZone=(0,L.WQX)(C.SKi);_platform=(0,L.WQX)(f.O);_sharedResizeObserver=(0,L.WQX)(O.a);_injector=(0,L.WQX)(L.zZn);_renderer=(0,L.WQX)(C.sFG);_animationsDisabled=(0,J.Rc)();_eventCleanups;_scrollDistance=0;_selectedIndexChanged=!1;_destroyed=new le.B;_showPaginationControls=!1;_disableScrollAfter=!0;_disableScrollBefore=!0;_tabLabelCount;_scrollDistanceChanged;_keyManager;_currentTextContent;_stopScrolling=new le.B;disablePagination=!1;get selectedIndex(){return this._selectedIndex}set selectedIndex(Je){const Be=isNaN(Je)?0:Je;this._selectedIndex!=Be&&(this._selectedIndexChanged=!0,this._selectedIndex=Be,this._keyManager&&this._keyManager.updateActiveItem(Be))}_selectedIndex=0;selectFocusedIndex=new C.bkB;indexFocused=new C.bkB;constructor(){this._eventCleanups=this._ngZone.runOutsideAngular(()=>[this._renderer.listen(this._elementRef.nativeElement,"mouseleave",()=>this._stopInterval())])}ngAfterViewInit(){this._eventCleanups.push(this._renderer.listen(this._previousPaginator.nativeElement,"touchstart",()=>this._handlePaginatorPress("before"),ei),this._renderer.listen(this._nextPaginator.nativeElement,"touchstart",()=>this._handlePaginatorPress("after"),ei))}ngAfterContentInit(){const Je=this._dir?this._dir.change:(0,W.of)("ltr"),Be=this._sharedResizeObserver.observe(this._elementRef.nativeElement).pipe((0,xe.B)(32),(0,ne.Q)(this._destroyed)),ut=this._viewportRuler.change(150).pipe((0,ne.Q)(this._destroyed)),Ge=()=>{this.updatePagination(),this._alignInkBarToSelectedTab()};this._keyManager=new v.B(this._items).withHorizontalOrientation(this._getLayoutDirection()).withHomeAndEnd().withWrap().skipPredicate(()=>!1),this._keyManager.updateActiveItem(Math.max(this._selectedIndex,0)),(0,C.mal)(Ge,{injector:this._injector}),(0,j.h)(Je,ut,Be,this._items.changes,this._itemsResized()).pipe((0,ne.Q)(this._destroyed)).subscribe(()=>{this._ngZone.run(()=>{Promise.resolve().then(()=>{this._scrollDistance=Math.max(0,Math.min(this._getMaxScrollDistance(),this._scrollDistance)),Ge()})}),this._keyManager?.withHorizontalOrientation(this._getLayoutDirection())}),this._keyManager.change.subscribe(Ot=>{this.indexFocused.emit(Ot),this._setTabFocus(Ot)})}_itemsResized(){return"function"!=typeof ResizeObserver?re.w:this._items.changes.pipe((0,ce.Z)(this._items),(0,be.n)(Je=>new Pe.c(Be=>this._ngZone.runOutsideAngular(()=>{const ut=new ResizeObserver(Ge=>Be.next(Ge));return Je.forEach(Ge=>ut.observe(Ge.elementRef.nativeElement)),()=>{ut.disconnect()}}))),(0,V.i)(1),(0,Ee.p)(Je=>Je.some(Be=>Be.contentRect.width>0&&Be.contentRect.height>0)))}ngAfterContentChecked(){this._tabLabelCount!=this._items.length&&(this.updatePagination(),this._tabLabelCount=this._items.length,this._changeDetectorRef.markForCheck()),this._selectedIndexChanged&&(this._scrollToLabel(this._selectedIndex),this._checkScrollingControls(),this._alignInkBarToSelectedTab(),this._selectedIndexChanged=!1,this._changeDetectorRef.markForCheck()),this._scrollDistanceChanged&&(this._updateTabScrollPosition(),this._scrollDistanceChanged=!1,this._changeDetectorRef.markForCheck())}ngOnDestroy(){this._eventCleanups.forEach(Je=>Je()),this._keyManager?.destroy(),this._destroyed.next(),this._destroyed.complete(),this._stopScrolling.complete()}_handleKeydown(Je){if(!(0,w.rp)(Je))switch(Je.keyCode){case e.Fm:case e.t6:if(this.focusIndex!==this.selectedIndex){const Be=this._items.get(this.focusIndex);Be&&!Be.disabled&&(this.selectFocusedIndex.emit(this.focusIndex),this._itemSelected(Je))}break;default:this._keyManager?.onKeydown(Je)}}_onContentChanges(){const Je=this._elementRef.nativeElement.textContent;Je!==this._currentTextContent&&(this._currentTextContent=Je||"",this._ngZone.run(()=>{this.updatePagination(),this._alignInkBarToSelectedTab(),this._changeDetectorRef.markForCheck()}))}updatePagination(){this._checkPaginationEnabled(),this._checkScrollingControls(),this._updateTabScrollPosition()}get focusIndex(){return this._keyManager?this._keyManager.activeItemIndex:0}set focusIndex(Je){!this._isValidIndex(Je)||this.focusIndex===Je||!this._keyManager||this._keyManager.setActiveItem(Je)}_isValidIndex(Je){return!this._items||!!this._items.toArray()[Je]}_setTabFocus(Je){if(this._showPaginationControls&&this._scrollToLabel(Je),this._items&&this._items.length){this._items.toArray()[Je].focus();const Be=this._tabListContainer.nativeElement;Be.scrollLeft="ltr"==this._getLayoutDirection()?0:Be.scrollWidth-Be.offsetWidth}}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_updateTabScrollPosition(){if(this.disablePagination)return;const Je=this.scrollDistance,Be="ltr"===this._getLayoutDirection()?-Je:Je;this._tabList.nativeElement.style.transform=`translateX(${Math.round(Be)}px)`,(this._platform.TRIDENT||this._platform.EDGE)&&(this._tabListContainer.nativeElement.scrollLeft=0)}get scrollDistance(){return this._scrollDistance}set scrollDistance(Je){this._scrollTo(Je)}_scrollHeader(Je){return this._scrollTo(this._scrollDistance+("before"==Je?-1:1)*this._tabListContainer.nativeElement.offsetWidth/3)}_handlePaginatorClick(Je){this._stopInterval(),this._scrollHeader(Je)}_scrollToLabel(Je){if(this.disablePagination)return;const Be=this._items?this._items.toArray()[Je]:null;if(!Be)return;const ut=this._tabListContainer.nativeElement.offsetWidth,{offsetLeft:Ge,offsetWidth:Ot}=Be.elementRef.nativeElement;let se,We;"ltr"==this._getLayoutDirection()?(se=Ge,We=se+Ot):(We=this._tabListInner.nativeElement.offsetWidth-Ge,se=We-Ot);const bt=this.scrollDistance,tn=this.scrollDistance+ut;setn&&(this.scrollDistance+=Math.min(We-tn,se-bt))}_checkPaginationEnabled(){if(this.disablePagination)this._showPaginationControls=!1;else{const ut=this._tabListInner.nativeElement.scrollWidth-this._elementRef.nativeElement.offsetWidth>=5;ut||(this.scrollDistance=0),ut!==this._showPaginationControls&&(this._showPaginationControls=ut,this._changeDetectorRef.markForCheck())}}_checkScrollingControls(){this.disablePagination?this._disableScrollAfter=this._disableScrollBefore=!0:(this._disableScrollBefore=0==this.scrollDistance,this._disableScrollAfter=this.scrollDistance==this._getMaxScrollDistance(),this._changeDetectorRef.markForCheck())}_getMaxScrollDistance(){return this._tabListInner.nativeElement.scrollWidth-this._tabListContainer.nativeElement.offsetWidth||0}_alignInkBarToSelectedTab(){const Je=this._items&&this._items.length?this._items.toArray()[this.selectedIndex]:null,Be=Je?Je.elementRef.nativeElement:null;Be?this._inkBar.alignToElement(Be):this._inkBar.hide()}_stopInterval(){this._stopScrolling.next()}_handlePaginatorPress(Je,Be){Be&&null!=Be.button&&0!==Be.button||(this._stopInterval(),(0,G.O)(650,100).pipe((0,ne.Q)((0,j.h)(this._stopScrolling,this._destroyed))).subscribe(()=>{const{maxScrollDistance:ut,distance:Ge}=this._scrollHeader(Je);(0===Ge||Ge>=ut)&&this._stopInterval()}))}_scrollTo(Je){if(this.disablePagination)return{maxScrollDistance:0,distance:0};const Be=this._getMaxScrollDistance();return this._scrollDistance=Math.max(0,Math.min(Be,Je)),this._scrollDistanceChanged=!0,this._checkScrollingControls(),{maxScrollDistance:Be,distance:this._scrollDistance}}static \u0275fac=function(Be){return new(Be||qe)};static \u0275dir=C.FsC({type:qe,inputs:{disablePagination:[2,"disablePagination","disablePagination",B.L39],selectedIndex:[2,"selectedIndex","selectedIndex",B.Udg]},outputs:{selectFocusedIndex:"selectFocusedIndex",indexFocused:"indexFocused"}})}return qe})(),Ri=(()=>{class qe extends kn{_items;_tabListContainer;_tabList;_tabListInner;_nextPaginator;_previousPaginator;_inkBar;ariaLabel;ariaLabelledby;disableRipple=!1;ngAfterContentInit(){this._inkBar=new Ue(this._items),super.ngAfterContentInit()}_itemSelected(Je){Je.preventDefault()}static \u0275fac=(()=>{let Je;return function(ut){return(Je||(Je=C.xGo(qe)))(ut||qe)}})();static \u0275cmp=C.VBU({type:qe,selectors:[["mat-tab-header"]],contentQueries:function(Be,ut,Ge){if(1&Be&&C.wni(Ge,gn,4),2&Be){let Ot;C.mGM(Ot=C.lsd())&&(ut._items=Ot)}},viewQuery:function(Be,ut){if(1&Be&&(C.GBs(te,7),C.GBs(ie,7),C.GBs(P,7),C.GBs(F,5),C.GBs(ve,5)),2&Be){let Ge;C.mGM(Ge=C.lsd())&&(ut._tabListContainer=Ge.first),C.mGM(Ge=C.lsd())&&(ut._tabList=Ge.first),C.mGM(Ge=C.lsd())&&(ut._tabListInner=Ge.first),C.mGM(Ge=C.lsd())&&(ut._nextPaginator=Ge.first),C.mGM(Ge=C.lsd())&&(ut._previousPaginator=Ge.first)}},hostAttrs:[1,"mat-mdc-tab-header"],hostVars:4,hostBindings:function(Be,ut){2&Be&&C.AVh("mat-mdc-tab-header-pagination-controls-enabled",ut._showPaginationControls)("mat-mdc-tab-header-rtl","rtl"==ut._getLayoutDirection())},inputs:{ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"],disableRipple:[2,"disableRipple","disableRipple",B.L39]},features:[C.Vt3],ngContentSelectors:lt,decls:13,vars:10,consts:[["previousPaginator",""],["tabListContainer",""],["tabList",""],["tabListInner",""],["nextPaginator",""],["mat-ripple","",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-before",3,"click","mousedown","touchend","matRippleDisabled"],[1,"mat-mdc-tab-header-pagination-chevron"],[1,"mat-mdc-tab-label-container",3,"keydown"],["role","tablist",1,"mat-mdc-tab-list",3,"cdkObserveContent"],[1,"mat-mdc-tab-labels"],["mat-ripple","",1,"mat-mdc-tab-header-pagination","mat-mdc-tab-header-pagination-after",3,"mousedown","click","touchend","matRippleDisabled"]],template:function(Be,ut){if(1&Be){const Ge=C.RV6();C.NAR(),C.j41(0,"div",5,0),C.bIt("click",function(){return L.eBV(Ge),L.Njj(ut._handlePaginatorClick("before"))})("mousedown",function(se){return L.eBV(Ge),L.Njj(ut._handlePaginatorPress("before",se))})("touchend",function(){return L.eBV(Ge),L.Njj(ut._stopInterval())}),C.nrm(2,"div",6),C.k0s(),C.j41(3,"div",7,1),C.bIt("keydown",function(se){return L.eBV(Ge),L.Njj(ut._handleKeydown(se))}),C.j41(5,"div",8,2),C.bIt("cdkObserveContent",function(){return L.eBV(Ge),L.Njj(ut._onContentChanges())}),C.j41(7,"div",9,3),C.SdG(9),C.k0s()()(),C.j41(10,"div",10,4),C.bIt("mousedown",function(se){return L.eBV(Ge),L.Njj(ut._handlePaginatorPress("after",se))})("click",function(){return L.eBV(Ge),L.Njj(ut._handlePaginatorClick("after"))})("touchend",function(){return L.eBV(Ge),L.Njj(ut._stopInterval())}),C.nrm(12,"div",6),C.k0s()}2&Be&&(C.AVh("mat-mdc-tab-header-pagination-disabled",ut._disableScrollBefore),C.Y8G("matRippleDisabled",ut._disableScrollBefore||ut.disableRipple),C.R7$(3),C.AVh("_mat-animation-noopable",ut._animationsDisabled),C.R7$(2),C.BMQ("aria-label",ut.ariaLabel||null)("aria-labelledby",ut.ariaLabelledby||null),C.R7$(5),C.AVh("mat-mdc-tab-header-pagination-disabled",ut._disableScrollAfter),C.Y8G("matRippleDisabled",ut._disableScrollAfter||ut.disableRipple))},dependencies:[he.r6,_e.Wv],styles:[".mat-mdc-tab-header{display:flex;overflow:hidden;position:relative;flex-shrink:0}.mdc-tab-indicator .mdc-tab-indicator__content{transition-duration:var(--mat-tab-animation-duration, 250ms)}.mat-mdc-tab-header-pagination{-webkit-user-select:none;user-select:none;position:relative;display:none;justify-content:center;align-items:center;min-width:32px;cursor:pointer;z-index:2;-webkit-tap-highlight-color:rgba(0,0,0,0);touch-action:none;box-sizing:content-box;outline:0}.mat-mdc-tab-header-pagination::-moz-focus-inner{border:0}.mat-mdc-tab-header-pagination .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-header-pagination-controls-enabled .mat-mdc-tab-header-pagination{display:flex}.mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after{padding-left:4px}.mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(-135deg)}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before,.mat-mdc-tab-header-pagination-after{padding-right:4px}.mat-mdc-tab-header-rtl .mat-mdc-tab-header-pagination-before .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-header-pagination-after .mat-mdc-tab-header-pagination-chevron{transform:rotate(45deg)}.mat-mdc-tab-header-pagination-chevron{border-style:solid;border-width:2px 2px 0 0;height:8px;width:8px;border-color:var(--mat-tab-pagination-icon-color, var(--mat-sys-on-surface))}.mat-mdc-tab-header-pagination-disabled{box-shadow:none;cursor:default;pointer-events:none}.mat-mdc-tab-header-pagination-disabled .mat-mdc-tab-header-pagination-chevron{opacity:.4}.mat-mdc-tab-list{flex-grow:1;position:relative;transition:transform 500ms cubic-bezier(0.35, 0, 0.25, 1)}._mat-animation-noopable .mat-mdc-tab-list{transition:none}.mat-mdc-tab-label-container{display:flex;flex-grow:1;overflow:hidden;z-index:1;border-bottom-style:solid;border-bottom-width:var(--mat-tab-divider-height, 1px);border-bottom-color:var(--mat-tab-divider-color, var(--mat-sys-surface-variant))}.mat-mdc-tab-group-inverted-header .mat-mdc-tab-label-container{border-bottom:none;border-top-style:solid;border-top-width:var(--mat-tab-divider-height, 1px);border-top-color:var(--mat-tab-divider-color, var(--mat-sys-surface-variant))}.mat-mdc-tab-labels{display:flex;flex:1 0 auto}[mat-align-tabs=center]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:center}[mat-align-tabs=end]>.mat-mdc-tab-header .mat-mdc-tab-labels{justify-content:flex-end}.cdk-drop-list .mat-mdc-tab-labels,.mat-mdc-tab-labels.cdk-drop-list{min-height:var(--mat-tab-container-height, 48px)}.mat-mdc-tab::before{margin:5px}@media(forced-colors: active){.mat-mdc-tab[aria-disabled=true]{color:GrayText}}\n"],encapsulation:2})}return qe})();const vt=new L.nKC("MAT_TABS_CONFIG");let ee=(()=>{class qe extends De.I3{_host=(0,L.WQX)(ye);_ngZone=(0,L.WQX)(C.SKi);_centeringSub=Ae.yU.EMPTY;_leavingSub=Ae.yU.EMPTY;constructor(){super()}ngOnInit(){super.ngOnInit(),this._centeringSub=this._host._beforeCentering.pipe((0,ce.Z)(this._host._isCenterPosition())).subscribe(Je=>{this._host._content&&Je&&!this.hasAttached()&&this._ngZone.run(()=>{Promise.resolve().then(),this.attach(this._host._content)})}),this._leavingSub=this._host._afterLeavingCenter.subscribe(()=>{this._host.preserveContent||this._ngZone.run(()=>this.detach())})}ngOnDestroy(){super.ngOnDestroy(),this._centeringSub.unsubscribe(),this._leavingSub.unsubscribe()}static \u0275fac=function(Be){return new(Be||qe)};static \u0275dir=C.FsC({type:qe,selectors:[["","matTabBodyHost",""]],features:[C.Vt3]})}return qe})(),ye=(()=>{class qe{_elementRef=(0,L.WQX)(C.aKT);_dir=(0,L.WQX)(T.dS,{optional:!0});_ngZone=(0,L.WQX)(C.SKi);_injector=(0,L.WQX)(L.zZn);_renderer=(0,L.WQX)(C.sFG);_diAnimationsDisabled=(0,J.Rc)();_eventCleanups;_initialized;_fallbackTimer;_positionIndex;_dirChangeSubscription=Ae.yU.EMPTY;_position;_previousPosition;_onCentering=new C.bkB;_beforeCentering=new C.bkB;_afterLeavingCenter=new C.bkB;_onCentered=new C.bkB(!0);_portalHost;_contentElement;_content;animationDuration="500ms";preserveContent=!1;set position(Je){this._positionIndex=Je,this._computePositionAnimationState()}constructor(){if(this._dir){const Je=(0,L.WQX)(B.gRc);this._dirChangeSubscription=this._dir.change.subscribe(Be=>{this._computePositionAnimationState(Be),Je.markForCheck()})}}ngOnInit(){this._bindTransitionEvents(),"center"===this._position&&(this._setActiveClass(!0),(0,C.mal)(()=>this._onCentering.emit(this._elementRef.nativeElement.clientHeight),{injector:this._injector})),this._initialized=!0}ngOnDestroy(){clearTimeout(this._fallbackTimer),this._eventCleanups?.forEach(Je=>Je()),this._dirChangeSubscription.unsubscribe()}_bindTransitionEvents(){this._ngZone.runOutsideAngular(()=>{const Je=this._elementRef.nativeElement,Be=ut=>{ut.target===this._contentElement?.nativeElement&&(this._elementRef.nativeElement.classList.remove("mat-tab-body-animating"),"transitionend"===ut.type&&this._transitionDone())};this._eventCleanups=[this._renderer.listen(Je,"transitionstart",ut=>{ut.target===this._contentElement?.nativeElement&&(this._elementRef.nativeElement.classList.add("mat-tab-body-animating"),this._transitionStarted())}),this._renderer.listen(Je,"transitionend",Be),this._renderer.listen(Je,"transitioncancel",Be)]})}_transitionStarted(){clearTimeout(this._fallbackTimer);const Je="center"===this._position;this._beforeCentering.emit(Je),Je&&this._onCentering.emit(this._elementRef.nativeElement.clientHeight)}_transitionDone(){"center"===this._position?this._onCentered.emit():"center"===this._previousPosition&&this._afterLeavingCenter.emit()}_setActiveClass(Je){this._elementRef.nativeElement.classList.toggle("mat-mdc-tab-body-active",Je)}_getLayoutDirection(){return this._dir&&"rtl"===this._dir.value?"rtl":"ltr"}_isCenterPosition(){return 0===this._positionIndex}_computePositionAnimationState(Je=this._getLayoutDirection()){this._previousPosition=this._position,this._position=this._positionIndex<0?"ltr"==Je?"left":"right":this._positionIndex>0?"ltr"==Je?"right":"left":"center",this._animationsDisabled()?this._simulateTransitionEvents():this._initialized&&("center"===this._position||"center"===this._previousPosition)&&(clearTimeout(this._fallbackTimer),this._fallbackTimer=this._ngZone.runOutsideAngular(()=>setTimeout(()=>this._simulateTransitionEvents(),100)))}_simulateTransitionEvents(){this._transitionStarted(),(0,C.mal)(()=>this._transitionDone(),{injector:this._injector})}_animationsDisabled(){return this._diAnimationsDisabled||"0ms"===this.animationDuration||"0s"===this.animationDuration}static \u0275fac=function(Be){return new(Be||qe)};static \u0275cmp=C.VBU({type:qe,selectors:[["mat-tab-body"]],viewQuery:function(Be,ut){if(1&Be&&(C.GBs(ee,5),C.GBs(H,5)),2&Be){let Ge;C.mGM(Ge=C.lsd())&&(ut._portalHost=Ge.first),C.mGM(Ge=C.lsd())&&(ut._contentElement=Ge.first)}},hostAttrs:[1,"mat-mdc-tab-body"],hostVars:1,hostBindings:function(Be,ut){2&Be&&C.BMQ("inert","center"===ut._position?null:"")},inputs:{_content:[0,"content","_content"],animationDuration:"animationDuration",preserveContent:"preserveContent",position:"position"},outputs:{_onCentering:"_onCentering",_beforeCentering:"_beforeCentering",_onCentered:"_onCentered"},decls:3,vars:6,consts:[["content",""],["cdkScrollable","",1,"mat-mdc-tab-body-content"],["matTabBodyHost",""]],template:function(Be,ut){1&Be&&(C.j41(0,"div",1,0),C.DNE(2,$,0,0,"ng-template",2),C.k0s()),2&Be&&C.AVh("mat-tab-body-content-left","left"===ut._position)("mat-tab-body-content-right","right"===ut._position)("mat-tab-body-content-can-animate","center"===ut._position||"center"===ut._previousPosition)},dependencies:[ee,u.uv],styles:[".mat-mdc-tab-body{top:0;left:0;right:0;bottom:0;position:absolute;display:block;overflow:hidden;outline:0;flex-basis:100%}.mat-mdc-tab-body.mat-mdc-tab-body-active{position:relative;overflow-x:hidden;overflow-y:auto;z-index:1;flex-grow:1}.mat-mdc-tab-group.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body.mat-mdc-tab-body-active{overflow-y:hidden}.mat-mdc-tab-body-content{height:100%;overflow:auto;transform:none;visibility:hidden}.mat-tab-body-animating>.mat-mdc-tab-body-content,.mat-mdc-tab-body-active>.mat-mdc-tab-body-content{visibility:visible}.mat-tab-body-animating>.mat-mdc-tab-body-content{min-height:1px}.mat-mdc-tab-group-dynamic-height .mat-mdc-tab-body-content{overflow:hidden}.mat-tab-body-content-can-animate{transition:transform var(--mat-tab-animation-duration) 1ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-mdc-tab-body-wrapper._mat-animation-noopable .mat-tab-body-content-can-animate{transition:none}.mat-tab-body-content-left{transform:translate3d(-100%, 0, 0)}.mat-tab-body-content-right{transform:translate3d(100%, 0, 0)}\n"],encapsulation:2})}return qe})(),ke=(()=>{class qe{_elementRef=(0,L.WQX)(C.aKT);_changeDetectorRef=(0,L.WQX)(B.gRc);_ngZone=(0,L.WQX)(C.SKi);_tabsSubscription=Ae.yU.EMPTY;_tabLabelSubscription=Ae.yU.EMPTY;_tabBodySubscription=Ae.yU.EMPTY;_diAnimationsDisabled=(0,J.Rc)();_allTabs;_tabBodies;_tabBodyWrapper;_tabHeader;_tabs=new C.rOR;_indexToSelect=0;_lastFocusedTabIndex=null;_tabBodyWrapperHeight=0;color;get fitInkBarToContent(){return this._fitInkBarToContent}set fitInkBarToContent(Je){this._fitInkBarToContent=Je,this._changeDetectorRef.markForCheck()}_fitInkBarToContent=!1;stretchTabs=!0;alignTabs=null;dynamicHeight=!1;get selectedIndex(){return this._selectedIndex}set selectedIndex(Je){this._indexToSelect=isNaN(Je)?null:Je}_selectedIndex=null;headerPosition="above";get animationDuration(){return this._animationDuration}set animationDuration(Je){const Be=Je+"";this._animationDuration=/^\d+$/.test(Be)?Je+"ms":Be}_animationDuration;get contentTabIndex(){return this._contentTabIndex}set contentTabIndex(Je){this._contentTabIndex=isNaN(Je)?null:Je}_contentTabIndex;disablePagination=!1;disableRipple=!1;preserveContent=!1;get backgroundColor(){return this._backgroundColor}set backgroundColor(Je){const Be=this._elementRef.nativeElement.classList;Be.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),Je&&Be.add("mat-tabs-with-background",`mat-background-${Je}`),this._backgroundColor=Je}_backgroundColor;ariaLabel;ariaLabelledby;selectedIndexChange=new C.bkB;focusChange=new C.bkB;animationDone=new C.bkB;selectedTabChange=new C.bkB(!0);_groupId;_isServer=!(0,L.WQX)(f.O).isBrowser;constructor(){const Je=(0,L.WQX)(vt,{optional:!0});this._groupId=(0,L.WQX)(d.g).getId("mat-tab-group-"),this.animationDuration=Je&&Je.animationDuration?Je.animationDuration:"500ms",this.disablePagination=!(!Je||null==Je.disablePagination)&&Je.disablePagination,this.dynamicHeight=!(!Je||null==Je.dynamicHeight)&&Je.dynamicHeight,null!=Je?.contentTabIndex&&(this.contentTabIndex=Je.contentTabIndex),this.preserveContent=!!Je?.preserveContent,this.fitInkBarToContent=!(!Je||null==Je.fitInkBarToContent)&&Je.fitInkBarToContent,this.stretchTabs=!Je||null==Je.stretchTabs||Je.stretchTabs,this.alignTabs=Je&&null!=Je.alignTabs?Je.alignTabs:null}ngAfterContentChecked(){const Je=this._indexToSelect=this._clampTabIndex(this._indexToSelect);if(this._selectedIndex!=Je){const Be=null==this._selectedIndex;if(!Be){this.selectedTabChange.emit(this._createChangeEvent(Je));const ut=this._tabBodyWrapper.nativeElement;ut.style.minHeight=ut.clientHeight+"px"}Promise.resolve().then(()=>{this._tabs.forEach((ut,Ge)=>ut.isActive=Ge===Je),Be||(this.selectedIndexChange.emit(Je),this._tabBodyWrapper.nativeElement.style.minHeight="")})}this._tabs.forEach((Be,ut)=>{Be.position=ut-Je,null!=this._selectedIndex&&0==Be.position&&!Be.origin&&(Be.origin=Je-this._selectedIndex)}),this._selectedIndex!==Je&&(this._selectedIndex=Je,this._lastFocusedTabIndex=null,this._changeDetectorRef.markForCheck())}ngAfterContentInit(){this._subscribeToAllTabChanges(),this._subscribeToTabLabels(),this._tabsSubscription=this._tabs.changes.subscribe(()=>{const Je=this._clampTabIndex(this._indexToSelect);if(Je===this._selectedIndex){const Be=this._tabs.toArray();let ut;for(let Ge=0;Ge{Be[Je].isActive=!0,this.selectedTabChange.emit(this._createChangeEvent(Je))})}this._changeDetectorRef.markForCheck()})}ngAfterViewInit(){this._tabBodySubscription=this._tabBodies.changes.subscribe(()=>this._bodyCentered(!0))}_subscribeToAllTabChanges(){this._allTabs.changes.pipe((0,ce.Z)(this._allTabs)).subscribe(Je=>{this._tabs.reset(Je.filter(Be=>Be._closestTabGroup===this||!Be._closestTabGroup)),this._tabs.notifyOnChanges()})}ngOnDestroy(){this._tabs.destroy(),this._tabsSubscription.unsubscribe(),this._tabLabelSubscription.unsubscribe(),this._tabBodySubscription.unsubscribe()}realignInkBar(){this._tabHeader&&this._tabHeader._alignInkBarToSelectedTab()}updatePagination(){this._tabHeader&&this._tabHeader.updatePagination()}focusTab(Je){const Be=this._tabHeader;Be&&(Be.focusIndex=Je)}_focusChanged(Je){this._lastFocusedTabIndex=Je,this.focusChange.emit(this._createChangeEvent(Je))}_createChangeEvent(Je){const Be=new Se;return Be.index=Je,this._tabs&&this._tabs.length&&(Be.tab=this._tabs.toArray()[Je]),Be}_subscribeToTabLabels(){this._tabLabelSubscription&&this._tabLabelSubscription.unsubscribe(),this._tabLabelSubscription=(0,j.h)(...this._tabs.map(Je=>Je._stateChanges)).subscribe(()=>this._changeDetectorRef.markForCheck())}_clampTabIndex(Je){return Math.min(this._tabs.length-1,Math.max(Je||0,0))}_getTabLabelId(Je,Be){return Je.id||`${this._groupId}-label-${Be}`}_getTabContentId(Je){return`${this._groupId}-content-${Je}`}_setTabBodyWrapperHeight(Je){if(!this.dynamicHeight||!this._tabBodyWrapperHeight)return void(this._tabBodyWrapperHeight=Je);const Be=this._tabBodyWrapper.nativeElement;Be.style.height=this._tabBodyWrapperHeight+"px",this._tabBodyWrapper.nativeElement.offsetHeight&&(Be.style.height=Je+"px")}_removeTabBodyWrapperHeight(){const Je=this._tabBodyWrapper.nativeElement;this._tabBodyWrapperHeight=Je.clientHeight,Je.style.height="",this._ngZone.run(()=>this.animationDone.emit())}_handleClick(Je,Be,ut){Be.focusIndex=ut,Je.disabled||(this.selectedIndex=ut)}_getTabIndex(Je){return Je===(this._lastFocusedTabIndex??this.selectedIndex)?0:-1}_tabFocusChanged(Je,Be){Je&&"mouse"!==Je&&"touch"!==Je&&(this._tabHeader.focusIndex=Be)}_bodyCentered(Je){Je&&this._tabBodies?.forEach((Be,ut)=>Be._setActiveClass(ut===this._selectedIndex))}_animationsDisabled(){return this._diAnimationsDisabled||"0"===this.animationDuration||"0ms"===this.animationDuration}static \u0275fac=function(Be){return new(Be||qe)};static \u0275cmp=C.VBU({type:qe,selectors:[["mat-tab-group"]],contentQueries:function(Be,ut,Ge){if(1&Be&&C.wni(Ge,Qn,5),2&Be){let Ot;C.mGM(Ot=C.lsd())&&(ut._allTabs=Ot)}},viewQuery:function(Be,ut){if(1&Be&&(C.GBs(Ke,5),C.GBs(Vt,5),C.GBs(ye,5)),2&Be){let Ge;C.mGM(Ge=C.lsd())&&(ut._tabBodyWrapper=Ge.first),C.mGM(Ge=C.lsd())&&(ut._tabHeader=Ge.first),C.mGM(Ge=C.lsd())&&(ut._tabBodies=Ge)}},hostAttrs:[1,"mat-mdc-tab-group"],hostVars:11,hostBindings:function(Be,ut){2&Be&&(C.BMQ("mat-align-tabs",ut.alignTabs),C.HbH("mat-"+(ut.color||"primary")),C.xc7("--mat-tab-animation-duration",ut.animationDuration),C.AVh("mat-mdc-tab-group-dynamic-height",ut.dynamicHeight)("mat-mdc-tab-group-inverted-header","below"===ut.headerPosition)("mat-mdc-tab-group-stretch-tabs",ut.stretchTabs))},inputs:{color:"color",fitInkBarToContent:[2,"fitInkBarToContent","fitInkBarToContent",B.L39],stretchTabs:[2,"mat-stretch-tabs","stretchTabs",B.L39],alignTabs:[0,"mat-align-tabs","alignTabs"],dynamicHeight:[2,"dynamicHeight","dynamicHeight",B.L39],selectedIndex:[2,"selectedIndex","selectedIndex",B.Udg],headerPosition:"headerPosition",animationDuration:"animationDuration",contentTabIndex:[2,"contentTabIndex","contentTabIndex",B.Udg],disablePagination:[2,"disablePagination","disablePagination",B.L39],disableRipple:[2,"disableRipple","disableRipple",B.L39],preserveContent:[2,"preserveContent","preserveContent",B.L39],backgroundColor:"backgroundColor",ariaLabel:[0,"aria-label","ariaLabel"],ariaLabelledby:[0,"aria-labelledby","ariaLabelledby"]},outputs:{selectedIndexChange:"selectedIndexChange",focusChange:"focusChange",animationDone:"animationDone",selectedTabChange:"selectedTabChange"},exportAs:["matTabGroup"],features:[C.Jv_([{provide:Sn,useExisting:qe}])],ngContentSelectors:lt,decls:9,vars:8,consts:[["tabHeader",""],["tabBodyWrapper",""],["tabNode",""],[3,"indexFocused","selectFocusedIndex","selectedIndex","disableRipple","disablePagination","aria-label","aria-labelledby"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-focus-indicator",3,"id","mdc-tab--active","class","disabled","fitInkBarToContent"],[1,"mat-mdc-tab-body-wrapper"],["role","tabpanel",3,"id","class","content","position","animationDuration","preserveContent"],["role","tab","matTabLabelWrapper","","cdkMonitorElementFocus","",1,"mdc-tab","mat-mdc-tab","mat-focus-indicator",3,"click","cdkFocusChange","id","disabled","fitInkBarToContent"],[1,"mdc-tab__ripple"],["mat-ripple","",1,"mat-mdc-tab-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mdc-tab__content"],[1,"mdc-tab__text-label"],[3,"cdkPortalOutlet"],["role","tabpanel",3,"_onCentered","_onCentering","_beforeCentering","id","content","position","animationDuration","preserveContent"]],template:function(Be,ut){if(1&Be){const Ge=C.RV6();C.NAR(),C.j41(0,"mat-tab-header",3,0),C.bIt("indexFocused",function(se){return L.eBV(Ge),L.Njj(ut._focusChanged(se))})("selectFocusedIndex",function(se){return L.eBV(Ge),L.Njj(ut.selectedIndex=se)}),C.Z7z(2,ht,8,17,"div",4,C.fX1),C.k0s(),C.nVh(4,oe,1,0),C.j41(5,"div",5,1),C.Z7z(7,Ye,1,10,"mat-tab-body",6,C.fX1),C.k0s()}2&Be&&(C.Y8G("selectedIndex",ut.selectedIndex||0)("disableRipple",ut.disableRipple)("disablePagination",ut.disablePagination),C.jOp("aria-label",ut.ariaLabel)("aria-labelledby",ut.ariaLabelledby),C.R7$(2),C.Dyx(ut._tabs),C.R7$(2),C.vxM(ut._isServer?4:-1),C.R7$(),C.AVh("_mat-animation-noopable",ut._animationsDisabled()),C.R7$(2),C.Dyx(ut._tabs))},dependencies:[Ri,gn,i.vR,he.r6,De.I3,ye],styles:['.mdc-tab{min-width:90px;padding:0 24px;display:flex;flex:1 0 auto;justify-content:center;box-sizing:border-box;border:none;outline:none;text-align:center;white-space:nowrap;cursor:pointer;z-index:1;touch-action:manipulation}.mdc-tab__content{display:flex;align-items:center;justify-content:center;height:inherit;pointer-events:none}.mdc-tab__text-label{transition:150ms color linear;display:inline-block;line-height:1;z-index:2}.mdc-tab--active .mdc-tab__text-label{transition-delay:100ms}._mat-animation-noopable .mdc-tab__text-label{transition:none}.mdc-tab-indicator{display:flex;position:absolute;top:0;left:0;justify-content:center;width:100%;height:100%;pointer-events:none;z-index:1}.mdc-tab-indicator__content{transition:var(--mat-tab-animation-duration, 250ms) transform cubic-bezier(0.4, 0, 0.2, 1);transform-origin:left;opacity:0}.mdc-tab-indicator__content--underline{align-self:flex-end;box-sizing:border-box;width:100%;border-top-style:solid}.mdc-tab-indicator--active .mdc-tab-indicator__content{opacity:1}._mat-animation-noopable .mdc-tab-indicator__content,.mdc-tab-indicator--no-transition .mdc-tab-indicator__content{transition:none}.mat-mdc-tab-ripple.mat-mdc-tab-ripple{position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none}.mat-mdc-tab{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none;background:none;height:var(--mat-tab-container-height, 48px);font-family:var(--mat-tab-label-text-font, var(--mat-sys-title-small-font));font-size:var(--mat-tab-label-text-size, var(--mat-sys-title-small-size));letter-spacing:var(--mat-tab-label-text-tracking, var(--mat-sys-title-small-tracking));line-height:var(--mat-tab-label-text-line-height, var(--mat-sys-title-small-line-height));font-weight:var(--mat-tab-label-text-weight, var(--mat-sys-title-small-weight))}.mat-mdc-tab.mdc-tab{flex-grow:0}.mat-mdc-tab .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-indicator-color, var(--mat-sys-primary));border-top-width:var(--mat-tab-active-indicator-height, 2px);border-radius:var(--mat-tab-active-indicator-shape, 0)}.mat-mdc-tab:hover .mdc-tab__text-label{color:var(--mat-tab-inactive-hover-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab:focus .mdc-tab__text-label{color:var(--mat-tab-inactive-focus-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-active-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-active-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-active-hover-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-hover-indicator-color, var(--mat-sys-primary))}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-active-focus-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-focus-indicator-color, var(--mat-sys-primary))}.mat-mdc-tab.mat-mdc-tab-disabled{opacity:.4;pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__content{pointer-events:none}.mat-mdc-tab.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab.mat-mdc-tab-disabled .mat-ripple-element{background-color:var(--mat-tab-disabled-ripple-color, var(--mat-sys-on-surface-variant))}.mat-mdc-tab .mdc-tab__ripple::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;pointer-events:none;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-inactive-label-text-color, var(--mat-sys-on-surface));display:inline-flex;align-items:center}.mat-mdc-tab .mdc-tab__content{position:relative;pointer-events:auto}.mat-mdc-tab:hover .mdc-tab__ripple::before{opacity:.04}.mat-mdc-tab.cdk-program-focused .mdc-tab__ripple::before,.mat-mdc-tab.cdk-keyboard-focused .mdc-tab__ripple::before{opacity:.12}.mat-mdc-tab .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-group.mat-mdc-tab-group-stretch-tabs>.mat-mdc-tab-header .mat-mdc-tab{flex-grow:1}.mat-mdc-tab-group{display:flex;flex-direction:column;max-width:100%}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination{background-color:var(--mat-tab-background-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mat-mdc-tab .mdc-tab__text-label{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background.mat-primary>.mat-mdc-tab-header .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab__text-label{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-header .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-focus-indicator::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-focus-indicator::before{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mdc-tab__ripple::before,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mdc-tab__ripple::before{background-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-group.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header{flex-direction:column-reverse}.mat-mdc-tab-group.mat-mdc-tab-group-inverted-header .mdc-tab-indicator__content--underline{align-self:flex-start}.mat-mdc-tab-body-wrapper{position:relative;overflow:hidden;display:flex;transition:height 500ms cubic-bezier(0.35, 0, 0.25, 1)}.mat-mdc-tab-body-wrapper._mat-animation-noopable{transition:none !important;animation:none !important}\n'],encapsulation:2})}return qe})();class Se{index;tab}let ge=(()=>{class qe extends kn{_focusedItem=(0,L.vPA)(null);get fitInkBarToContent(){return this._fitInkBarToContent.value}set fitInkBarToContent(Je){this._fitInkBarToContent.next(Je),this._changeDetectorRef.markForCheck()}_fitInkBarToContent=new Ce.t(!1);stretchTabs=!0;get animationDuration(){return this._animationDuration}set animationDuration(Je){const Be=Je+"";this._animationDuration=/^\d+$/.test(Be)?Je+"ms":Be}_animationDuration;_items;get backgroundColor(){return this._backgroundColor}set backgroundColor(Je){const Be=this._elementRef.nativeElement.classList;Be.remove("mat-tabs-with-background",`mat-background-${this.backgroundColor}`),Je&&Be.add("mat-tabs-with-background",`mat-background-${Je}`),this._backgroundColor=Je}_backgroundColor;get disableRipple(){return this._disableRipple()}set disableRipple(Je){this._disableRipple.set(Je)}_disableRipple=(0,L.vPA)(!1);color="primary";tabPanel;_tabListContainer;_tabList;_tabListInner;_nextPaginator;_previousPaginator;_inkBar;constructor(){const Je=(0,L.WQX)(vt,{optional:!0});super(),this.disablePagination=!(!Je||null==Je.disablePagination)&&Je.disablePagination,this.fitInkBarToContent=!(!Je||null==Je.fitInkBarToContent)&&Je.fitInkBarToContent,this.stretchTabs=!Je||null==Je.stretchTabs||Je.stretchTabs}_itemSelected(){}ngAfterContentInit(){this._inkBar=new Ue(this._items),this._items.changes.pipe((0,ce.Z)(null),(0,ne.Q)(this._destroyed)).subscribe(()=>this.updateActiveLink()),super.ngAfterContentInit(),this._keyManager.change.pipe((0,ce.Z)(null),(0,ne.Q)(this._destroyed)).subscribe(()=>this._focusedItem.set(this._keyManager?.activeItem||null))}ngAfterViewInit(){super.ngAfterViewInit()}updateActiveLink(){if(!this._items)return;const Je=this._items.toArray();for(let Be=0;Be.mat-mdc-tab-link-container .mat-mdc-tab-links{justify-content:center}[mat-align-tabs=end]>.mat-mdc-tab-link-container .mat-mdc-tab-links{justify-content:flex-end}.cdk-drop-list .mat-mdc-tab-links,.mat-mdc-tab-links.cdk-drop-list{min-height:var(--mat-tab-container-height, 48px)}.mat-mdc-tab-link-container{display:flex;flex-grow:1;overflow:hidden;z-index:1;border-bottom-style:solid;border-bottom-width:var(--mat-tab-divider-height, 1px);border-bottom-color:var(--mat-tab-divider-color, var(--mat-sys-surface-variant))}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination{background-color:var(--mat-tab-background-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background.mat-primary>.mat-mdc-tab-link-container .mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background.mat-primary>.mat-mdc-tab-link-container .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-link-container .mat-mdc-tab-link:not(.mdc-tab--active) .mdc-tab__text-label{color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background:not(.mat-primary)>.mat-mdc-tab-link-container .mat-mdc-tab-link:not(.mdc-tab--active) .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-focus-indicator::before,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-focus-indicator::before{border-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mdc-tab__ripple::before,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-ripple-element,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mdc-tab__ripple::before{background-color:var(--mat-tab-foreground-color)}.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-link-container .mat-mdc-tab-header-pagination-chevron,.mat-mdc-tab-nav-bar.mat-tabs-with-background>.mat-mdc-tab-header-pagination .mat-mdc-tab-header-pagination-chevron{color:var(--mat-tab-foreground-color)}\n"],encapsulation:2})}return qe})(),N=(()=>{class qe extends wt{_tabNavBar=(0,L.WQX)(ge);elementRef=(0,L.WQX)(C.aKT);_focusMonitor=(0,L.WQX)(i.FN);_destroyed=new le.B;_isActive=!1;_tabIndex=(0,A.EW)(()=>this._tabNavBar._focusedItem()===this?this.tabIndex:-1);get active(){return this._isActive}set active(Je){Je!==this._isActive&&(this._isActive=Je,this._tabNavBar.updateActiveLink())}disabled=!1;get disableRipple(){return this._disableRipple()}set disableRipple(Je){this._disableRipple.set(Je)}_disableRipple=(0,L.vPA)(!1);tabIndex=0;rippleConfig;get rippleDisabled(){return this.disabled||this.disableRipple||this._tabNavBar.disableRipple||!!this.rippleConfig.disabled}id=(0,L.WQX)(d.g).getId("mat-tab-link-");constructor(){super(),(0,L.WQX)(Re.l).load(Xe.A);const Je=(0,L.WQX)(he.$E,{optional:!0}),Be=(0,L.WQX)(new B.ES_("tabindex"),{optional:!0});this.rippleConfig=Je||{},this.tabIndex=null==Be?0:parseInt(Be)||0,(0,J.Rc)()&&(this.rippleConfig.animation={enterDuration:0,exitDuration:0}),this._tabNavBar._fitInkBarToContent.pipe((0,ne.Q)(this._destroyed)).subscribe(ut=>{this.fitInkBarToContent=ut})}focus(){this.elementRef.nativeElement.focus()}ngAfterViewInit(){this._focusMonitor.monitor(this.elementRef)}ngOnDestroy(){this._destroyed.next(),this._destroyed.complete(),super.ngOnDestroy(),this._focusMonitor.stopMonitoring(this.elementRef)}_handleFocus(){this._tabNavBar.focusIndex=this._tabNavBar._items.toArray().indexOf(this)}_handleKeydown(Je){(Je.keyCode===e.t6||Je.keyCode===e.Fm)&&(this.disabled?Je.preventDefault():this._tabNavBar.tabPanel&&(Je.keyCode===e.t6&&Je.preventDefault(),this.elementRef.nativeElement.click()))}_getAriaControls(){return this._tabNavBar.tabPanel?this._tabNavBar.tabPanel?.id:this.elementRef.nativeElement.getAttribute("aria-controls")}_getAriaSelected(){return this._tabNavBar.tabPanel?this.active?"true":"false":this.elementRef.nativeElement.getAttribute("aria-selected")}_getAriaCurrent(){return this.active&&!this._tabNavBar.tabPanel?"page":null}_getRole(){return this._tabNavBar.tabPanel?"tab":this.elementRef.nativeElement.getAttribute("role")}static \u0275fac=function(Be){return new(Be||qe)};static \u0275cmp=C.VBU({type:qe,selectors:[["","mat-tab-link",""],["","matTabLink",""]],hostAttrs:[1,"mdc-tab","mat-mdc-tab-link","mat-focus-indicator"],hostVars:11,hostBindings:function(Be,ut){1&Be&&C.bIt("focus",function(){return ut._handleFocus()})("keydown",function(Ot){return ut._handleKeydown(Ot)}),2&Be&&(C.BMQ("aria-controls",ut._getAriaControls())("aria-current",ut._getAriaCurrent())("aria-disabled",ut.disabled)("aria-selected",ut._getAriaSelected())("id",ut.id)("tabIndex",ut._tabIndex())("role",ut._getRole()),C.AVh("mat-mdc-tab-disabled",ut.disabled)("mdc-tab--active",ut.active))},inputs:{active:[2,"active","active",B.L39],disabled:[2,"disabled","disabled",B.L39],disableRipple:[2,"disableRipple","disableRipple",B.L39],tabIndex:[2,"tabIndex","tabIndex",Je=>null==Je?0:(0,B.Udg)(Je)],id:"id"},exportAs:["matTabLink"],features:[C.Vt3],attrs:Qe,ngContentSelectors:lt,decls:5,vars:2,consts:[[1,"mdc-tab__ripple"],["mat-ripple","",1,"mat-mdc-tab-ripple",3,"matRippleTrigger","matRippleDisabled"],[1,"mdc-tab__content"],[1,"mdc-tab__text-label"]],template:function(Be,ut){1&Be&&(C.NAR(),C.nrm(0,"span",0)(1,"div",1),C.j41(2,"span",2)(3,"span",3),C.SdG(4),C.k0s()()),2&Be&&(C.R7$(),C.Y8G("matRippleTrigger",ut.elementRef.nativeElement)("matRippleDisabled",ut.rippleDisabled))},dependencies:[he.r6],styles:['.mat-mdc-tab-link{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none;background:none;height:var(--mat-tab-container-height, 48px);font-family:var(--mat-tab-label-text-font, var(--mat-sys-title-small-font));font-size:var(--mat-tab-label-text-size, var(--mat-sys-title-small-size));letter-spacing:var(--mat-tab-label-text-tracking, var(--mat-sys-title-small-tracking));line-height:var(--mat-tab-label-text-line-height, var(--mat-sys-title-small-line-height));font-weight:var(--mat-tab-label-text-weight, var(--mat-sys-title-small-weight))}.mat-mdc-tab-link.mdc-tab{flex-grow:0}.mat-mdc-tab-link .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-indicator-color, var(--mat-sys-primary));border-top-width:var(--mat-tab-active-indicator-height, 2px);border-radius:var(--mat-tab-active-indicator-shape, 0)}.mat-mdc-tab-link:hover .mdc-tab__text-label{color:var(--mat-tab-inactive-hover-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link:focus .mdc-tab__text-label{color:var(--mat-tab-inactive-focus-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__text-label{color:var(--mat-tab-active-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active .mdc-tab__ripple::before,.mat-mdc-tab-link.mdc-tab--active .mat-ripple-element{background-color:var(--mat-tab-active-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab__text-label{color:var(--mat-tab-active-hover-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active:hover .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-hover-indicator-color, var(--mat-sys-primary))}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab__text-label{color:var(--mat-tab-active-focus-label-text-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link.mdc-tab--active:focus .mdc-tab-indicator__content--underline{border-color:var(--mat-tab-active-focus-indicator-color, var(--mat-sys-primary))}.mat-mdc-tab-link.mat-mdc-tab-disabled{opacity:.4;pointer-events:none}.mat-mdc-tab-link.mat-mdc-tab-disabled .mdc-tab__content{pointer-events:none}.mat-mdc-tab-link.mat-mdc-tab-disabled .mdc-tab__ripple::before,.mat-mdc-tab-link.mat-mdc-tab-disabled .mat-ripple-element{background-color:var(--mat-tab-disabled-ripple-color, var(--mat-sys-on-surface-variant))}.mat-mdc-tab-link .mdc-tab__ripple::before{content:"";display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;pointer-events:none;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-link .mdc-tab__text-label{color:var(--mat-tab-inactive-label-text-color, var(--mat-sys-on-surface));display:inline-flex;align-items:center}.mat-mdc-tab-link .mdc-tab__content{position:relative;pointer-events:auto}.mat-mdc-tab-link:hover .mdc-tab__ripple::before{opacity:.04}.mat-mdc-tab-link.cdk-program-focused .mdc-tab__ripple::before,.mat-mdc-tab-link.cdk-keyboard-focused .mdc-tab__ripple::before{opacity:.12}.mat-mdc-tab-link .mat-ripple-element{opacity:.12;background-color:var(--mat-tab-inactive-ripple-color, var(--mat-sys-on-surface))}.mat-mdc-tab-header.mat-mdc-tab-nav-bar-stretch-tabs .mat-mdc-tab-link{flex-grow:1}.mat-mdc-tab-link::before{margin:5px}@media(max-width: 599px){.mat-mdc-tab-link{min-width:72px}}\n'],encapsulation:2,changeDetection:0})}return qe})(),Z=(()=>{class qe{id=(0,L.WQX)(d.g).getId("mat-tab-nav-panel-");_activeTabId;static \u0275fac=function(Be){return new(Be||qe)};static \u0275cmp=C.VBU({type:qe,selectors:[["mat-tab-nav-panel"]],hostAttrs:["role","tabpanel",1,"mat-mdc-tab-nav-panel"],hostVars:2,hostBindings:function(Be,ut){2&Be&&C.BMQ("aria-labelledby",ut._activeTabId)("id",ut.id)},inputs:{id:"id"},exportAs:["matTabNavPanel"],ngContentSelectors:lt,decls:1,vars:0,template:function(Be,ut){1&Be&&(C.NAR(),C.SdG(0))},encapsulation:2,changeDetection:0})}return qe})(),Me=(()=>{class qe{static \u0275fac=function(Be){return new(Be||qe)};static \u0275mod=C.$C({type:qe});static \u0275inj=L.G2t({imports:[Dt.y,Dt.y]})}return qe})()},5911(Zt,pe,l){"use strict";l.d(pe,{KQ:()=>f,s5:()=>L});var i=l(2615),d=l(3664),v=l(9842),T=l(2466);const w=["*",[["mat-toolbar-row"]]],e=["*","mat-toolbar-row"];let O=(()=>{class C{static \u0275fac=function(Pe){return new(Pe||C)};static \u0275dir=d.FsC({type:C,selectors:[["mat-toolbar-row"]],hostAttrs:[1,"mat-toolbar-row"],exportAs:["matToolbarRow"]})}return C})(),f=(()=>{class C{_elementRef=(0,i.WQX)(d.aKT);_platform=(0,i.WQX)(v.O);_document=(0,i.WQX)(i.qQL);color;_toolbarRows;constructor(){}ngAfterViewInit(){this._platform.isBrowser&&(this._checkToolbarMixedModes(),this._toolbarRows.changes.subscribe(()=>this._checkToolbarMixedModes()))}_checkToolbarMixedModes(){}static \u0275fac=function(Pe){return new(Pe||C)};static \u0275cmp=d.VBU({type:C,selectors:[["mat-toolbar"]],contentQueries:function(Pe,le,Ce){if(1&Pe&&d.wni(Ce,O,5),2&Pe){let Ae;d.mGM(Ae=d.lsd())&&(le._toolbarRows=Ae)}},hostAttrs:[1,"mat-toolbar"],hostVars:6,hostBindings:function(Pe,le){2&Pe&&(d.HbH(le.color?"mat-"+le.color:""),d.AVh("mat-toolbar-multiple-rows",le._toolbarRows.length>0)("mat-toolbar-single-row",0===le._toolbarRows.length))},inputs:{color:"color"},exportAs:["matToolbar"],ngContentSelectors:e,decls:2,vars:0,template:function(Pe,le){1&Pe&&(d.NAR(w),d.SdG(0),d.SdG(1,1))},styles:[".mat-toolbar{background:var(--mat-toolbar-container-background-color, var(--mat-sys-surface));color:var(--mat-toolbar-container-text-color, var(--mat-sys-on-surface))}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font-family:var(--mat-toolbar-title-text-font, var(--mat-sys-title-large-font));font-size:var(--mat-toolbar-title-text-size, var(--mat-sys-title-large-size));line-height:var(--mat-toolbar-title-text-line-height, var(--mat-sys-title-large-line-height));font-weight:var(--mat-toolbar-title-text-weight, var(--mat-sys-title-large-weight));letter-spacing:var(--mat-toolbar-title-text-tracking, var(--mat-sys-title-large-tracking));margin:0}@media(forced-colors: active){.mat-toolbar{outline:solid 1px}}.mat-toolbar .mat-form-field-underline,.mat-toolbar .mat-form-field-ripple,.mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.mat-toolbar .mat-form-field-label,.mat-toolbar .mat-focused .mat-form-field-label,.mat-toolbar .mat-select-value,.mat-toolbar .mat-select-arrow,.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar .mat-mdc-button-base.mat-mdc-button-base.mat-unthemed{--mat-button-text-label-text-color: var(--mat-toolbar-container-text-color, var(--mat-sys-on-surface));--mat-button-outlined-label-text-color: var(--mat-toolbar-container-text-color, var(--mat-sys-on-surface))}.mat-toolbar-row,.mat-toolbar-single-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap;height:var(--mat-toolbar-standard-height, 64px)}@media(max-width: 599px){.mat-toolbar-row,.mat-toolbar-single-row{height:var(--mat-toolbar-mobile-height, 56px)}}.mat-toolbar-multiple-rows{display:flex;box-sizing:border-box;flex-direction:column;width:100%;min-height:var(--mat-toolbar-standard-height, 64px)}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:var(--mat-toolbar-mobile-height, 56px)}}\n"],encapsulation:2,changeDetection:0})}return C})(),L=(()=>{class C{static \u0275fac=function(Pe){return new(Pe||C)};static \u0275mod=d.$C({type:C});static \u0275inj=i.G2t({imports:[T.y,T.y]})}return C})()},6156(Zt,pe,l){"use strict";l.d(pe,{u:()=>f});var i=l(2615),d=l(3664),v=l(7094),T=l(9338),w=l(5718),e=l(455),O=l(2466);let f=(()=>{class u{static \u0275fac=function(B){return new(B||u)};static \u0275mod=d.$C({type:u});static \u0275inj=i.G2t({providers:[e.YZ],imports:[v.Pd,T.z_,O.y,O.y,w.Gj]})}return u})()},455(Zt,pe,l){"use strict";l.d(pe,{YZ:()=>ce,oV:()=>lt});var i=l(6977),d=l(4085),v=l(7847),T=l(7336),w=l(438),e=l(2615),O=l(3664),f=l(7705),u=l(2200),L=l(9842),C=l(3300),B=l(8617),A=l(6838),Pe=l(1577),le=l(9338),Ce=l(5718),Ae=l(6939),j=l(1413),W=l(1804);const G=["tooltip"],Ee=new e.nKC("mat-tooltip-scroll-strategy",{providedIn:"root",factory:()=>{const te=(0,e.WQX)(e.zZn);return()=>(0,le.RH)(te,{scrollThrottle:20})}}),ce={provide:Ee,deps:[],useFactory:function V(te){const ie=(0,e.WQX)(e.zZn);return()=>(0,le.RH)(ie,{scrollThrottle:20})}},ne=new e.nKC("mat-tooltip-default-options",{providedIn:"root",factory:function be(){return{showDelay:0,hideDelay:0,touchendHideDelay:1500}}}),De="tooltip-panel",Re=(0,C.B)({passive:!0});let lt=(()=>{class te{_elementRef=(0,e.WQX)(O.aKT);_ngZone=(0,e.WQX)(O.SKi);_platform=(0,e.WQX)(L.O);_ariaDescriber=(0,e.WQX)(B.vr);_focusMonitor=(0,e.WQX)(A.FN);_dir=(0,e.WQX)(Pe.dS);_injector=(0,e.WQX)(e.zZn);_viewContainerRef=(0,e.WQX)(O.c1b);_animationsDisabled=(0,W.Rc)();_defaultOptions=(0,e.WQX)(ne,{optional:!0});_overlayRef;_tooltipInstance;_overlayPanelClass;_portal;_position="below";_positionAtOrigin=!1;_disabled=!1;_tooltipClass;_viewInitialized=!1;_pointerExitEventsInitialized=!1;_tooltipComponent=Le;_viewportMargin=8;_currentPosition;_cssClassPrefix="mat-mdc";_ariaDescriptionPending;_dirSubscribed=!1;get position(){return this._position}set position(P){P!==this._position&&(this._position=P,this._overlayRef&&(this._updatePosition(this._overlayRef),this._tooltipInstance?.show(0),this._overlayRef.updatePosition()))}get positionAtOrigin(){return this._positionAtOrigin}set positionAtOrigin(P){this._positionAtOrigin=(0,d.he)(P),this._detach(),this._overlayRef=null}get disabled(){return this._disabled}set disabled(P){const F=(0,d.he)(P);this._disabled!==F&&(this._disabled=F,F?this.hide(0):this._setupPointerEnterEventsIfNeeded(),this._syncAriaDescription(this.message))}get showDelay(){return this._showDelay}set showDelay(P){this._showDelay=(0,v.OE)(P)}_showDelay;get hideDelay(){return this._hideDelay}set hideDelay(P){this._hideDelay=(0,v.OE)(P),this._tooltipInstance&&(this._tooltipInstance._mouseLeaveHideDelay=this._hideDelay)}_hideDelay;touchGestures="auto";get message(){return this._message}set message(P){const F=this._message;this._message=null!=P?String(P).trim():"",!this._message&&this._isTooltipVisible()?this.hide(0):(this._setupPointerEnterEventsIfNeeded(),this._updateTooltipMessage()),this._syncAriaDescription(F)}_message="";get tooltipClass(){return this._tooltipClass}set tooltipClass(P){this._tooltipClass=P,this._tooltipInstance&&this._setTooltipClass(this._tooltipClass)}_passiveListeners=[];_touchstartTimeout=null;_destroyed=new j.B;_isDestroyed=!1;constructor(){const P=this._defaultOptions;P&&(this._showDelay=P.showDelay,this._hideDelay=P.hideDelay,P.position&&(this.position=P.position),P.positionAtOrigin&&(this.positionAtOrigin=P.positionAtOrigin),P.touchGestures&&(this.touchGestures=P.touchGestures),P.tooltipClass&&(this.tooltipClass=P.tooltipClass)),this._viewportMargin=8}ngAfterViewInit(){this._viewInitialized=!0,this._setupPointerEnterEventsIfNeeded(),this._focusMonitor.monitor(this._elementRef).pipe((0,i.Q)(this._destroyed)).subscribe(P=>{P?"keyboard"===P&&this._ngZone.run(()=>this.show()):this._ngZone.run(()=>this.hide(0))})}ngOnDestroy(){const P=this._elementRef.nativeElement;this._touchstartTimeout&&clearTimeout(this._touchstartTimeout),this._overlayRef&&(this._overlayRef.dispose(),this._tooltipInstance=null),this._passiveListeners.forEach(([F,ve])=>{P.removeEventListener(F,ve,Re)}),this._passiveListeners.length=0,this._destroyed.next(),this._destroyed.complete(),this._isDestroyed=!0,this._ariaDescriber.removeDescription(P,this.message,"tooltip"),this._focusMonitor.stopMonitoring(P)}show(P=this.showDelay,F){if(this.disabled||!this.message||this._isTooltipVisible())return void this._tooltipInstance?._cancelPendingAnimations();const ve=this._createOverlay(F);this._detach(),this._portal=this._portal||new Ae.A8(this._tooltipComponent,this._viewContainerRef);const H=this._tooltipInstance=ve.attach(this._portal).instance;H._triggerElement=this._elementRef.nativeElement,H._mouseLeaveHideDelay=this._hideDelay,H.afterHidden().pipe((0,i.Q)(this._destroyed)).subscribe(()=>this._detach()),this._setTooltipClass(this._tooltipClass),this._updateTooltipMessage(),H.show(P)}hide(P=this.hideDelay){const F=this._tooltipInstance;F&&(F.isVisible()?F.hide(P):(F._cancelPendingAnimations(),this._detach()))}toggle(P){this._isTooltipVisible()?this.hide():this.show(void 0,P)}_isTooltipVisible(){return!!this._tooltipInstance&&this._tooltipInstance.isVisible()}_createOverlay(P){if(this._overlayRef){const $=this._overlayRef.getConfig().positionStrategy;if((!this.positionAtOrigin||!P)&&$._origin instanceof O.aKT)return this._overlayRef;this._detach()}const F=this._injector.get(Ce.R).getAncestorScrollContainers(this._elementRef),ve=`${this._cssClassPrefix}-${De}`,H=(0,le.$M)(this._injector,this.positionAtOrigin&&P||this._elementRef).withTransformOriginOn(`.${this._cssClassPrefix}-tooltip`).withFlexibleDimensions(!1).withViewportMargin(this._viewportMargin).withScrollableContainers(F);return H.positionChanges.pipe((0,i.Q)(this._destroyed)).subscribe($=>{this._updateCurrentPositionClass($.connectionPair),this._tooltipInstance&&$.scrollableViewProperties.isOverlayClipped&&this._tooltipInstance.isVisible()&&this._ngZone.run(()=>this.hide(0))}),this._overlayRef=(0,le.Y$)(this._injector,{direction:this._dir,positionStrategy:H,panelClass:this._overlayPanelClass?[...this._overlayPanelClass,ve]:ve,scrollStrategy:this._injector.get(Ee)(),disableAnimations:this._animationsDisabled}),this._updatePosition(this._overlayRef),this._overlayRef.detachments().pipe((0,i.Q)(this._destroyed)).subscribe(()=>this._detach()),this._overlayRef.outsidePointerEvents().pipe((0,i.Q)(this._destroyed)).subscribe(()=>this._tooltipInstance?._handleBodyInteraction()),this._overlayRef.keydownEvents().pipe((0,i.Q)(this._destroyed)).subscribe($=>{this._isTooltipVisible()&&$.keyCode===w._f&&!(0,T.rp)($)&&($.preventDefault(),$.stopPropagation(),this._ngZone.run(()=>this.hide(0)))}),this._defaultOptions?.disableTooltipInteractivity&&this._overlayRef.addPanelClass(`${this._cssClassPrefix}-tooltip-panel-non-interactive`),this._dirSubscribed||(this._dirSubscribed=!0,this._dir.change.pipe((0,i.Q)(this._destroyed)).subscribe(()=>{this._overlayRef&&this._updatePosition(this._overlayRef)})),this._overlayRef}_detach(){this._overlayRef&&this._overlayRef.hasAttached()&&this._overlayRef.detach(),this._tooltipInstance=null}_updatePosition(P){const F=P.getConfig().positionStrategy,ve=this._getOrigin(),H=this._getOverlayPosition();F.withPositions([this._addOffset({...ve.main,...H.main}),this._addOffset({...ve.fallback,...H.fallback})])}_addOffset(P){const ve=!this._dir||"ltr"==this._dir.value;return"top"===P.originY?P.offsetY=-8:"bottom"===P.originY?P.offsetY=8:"start"===P.originX?P.offsetX=ve?-8:8:"end"===P.originX&&(P.offsetX=ve?8:-8),P}_getOrigin(){const P=!this._dir||"ltr"==this._dir.value,F=this.position;let ve;"above"==F||"below"==F?ve={originX:"center",originY:"above"==F?"top":"bottom"}:"before"==F||"left"==F&&P||"right"==F&&!P?ve={originX:"start",originY:"center"}:("after"==F||"right"==F&&P||"left"==F&&!P)&&(ve={originX:"end",originY:"center"});const{x:H,y:$}=this._invertPosition(ve.originX,ve.originY);return{main:ve,fallback:{originX:H,originY:$}}}_getOverlayPosition(){const P=!this._dir||"ltr"==this._dir.value,F=this.position;let ve;"above"==F?ve={overlayX:"center",overlayY:"bottom"}:"below"==F?ve={overlayX:"center",overlayY:"top"}:"before"==F||"left"==F&&P||"right"==F&&!P?ve={overlayX:"end",overlayY:"center"}:("after"==F||"right"==F&&P||"left"==F&&!P)&&(ve={overlayX:"start",overlayY:"center"});const{x:H,y:$}=this._invertPosition(ve.overlayX,ve.overlayY);return{main:ve,fallback:{overlayX:H,overlayY:$}}}_updateTooltipMessage(){this._tooltipInstance&&(this._tooltipInstance.message=this.message,this._tooltipInstance._markForCheck(),(0,O.mal)(()=>{this._tooltipInstance&&this._overlayRef.updatePosition()},{injector:this._injector}))}_setTooltipClass(P){this._tooltipInstance&&(this._tooltipInstance.tooltipClass=P,this._tooltipInstance._markForCheck())}_invertPosition(P,F){return"above"===this.position||"below"===this.position?"top"===F?F="bottom":"bottom"===F&&(F="top"):"end"===P?P="start":"start"===P&&(P="end"),{x:P,y:F}}_updateCurrentPositionClass(P){const{overlayY:F,originX:ve,originY:H}=P;let $;if($="center"===F?this._dir&&"rtl"===this._dir.value?"end"===ve?"left":"right":"start"===ve?"left":"right":"bottom"===F&&"top"===H?"above":"below",$!==this._currentPosition){const Ke=this._overlayRef;if(Ke){const Vt=`${this._cssClassPrefix}-${De}-`;Ke.removePanelClass(Vt+this._currentPosition),Ke.addPanelClass(Vt+$)}this._currentPosition=$}}_setupPointerEnterEventsIfNeeded(){this._disabled||!this.message||!this._viewInitialized||this._passiveListeners.length||(this._platformSupportsMouseEvents()?this._passiveListeners.push(["mouseenter",P=>{let F;this._setupPointerExitEventsIfNeeded(),void 0!==P.x&&void 0!==P.y&&(F=P),this.show(void 0,F)}]):"off"!==this.touchGestures&&(this._disableNativeGesturesIfNecessary(),this._passiveListeners.push(["touchstart",P=>{const F=P.targetTouches?.[0],ve=F?{x:F.clientX,y:F.clientY}:void 0;this._setupPointerExitEventsIfNeeded(),this._touchstartTimeout&&clearTimeout(this._touchstartTimeout),this._touchstartTimeout=setTimeout(()=>{this._touchstartTimeout=null,this.show(void 0,ve)},this._defaultOptions?.touchLongPressShowDelay??500)}])),this._addListeners(this._passiveListeners))}_setupPointerExitEventsIfNeeded(){if(this._pointerExitEventsInitialized)return;this._pointerExitEventsInitialized=!0;const P=[];if(this._platformSupportsMouseEvents())P.push(["mouseleave",F=>{const ve=F.relatedTarget;(!ve||!this._overlayRef?.overlayElement.contains(ve))&&this.hide()}],["wheel",F=>this._wheelListener(F)]);else if("off"!==this.touchGestures){this._disableNativeGesturesIfNecessary();const F=()=>{this._touchstartTimeout&&clearTimeout(this._touchstartTimeout),this.hide(this._defaultOptions?.touchendHideDelay)};P.push(["touchend",F],["touchcancel",F])}this._addListeners(P),this._passiveListeners.push(...P)}_addListeners(P){P.forEach(([F,ve])=>{this._elementRef.nativeElement.addEventListener(F,ve,Re)})}_platformSupportsMouseEvents(){return!this._platform.IOS&&!this._platform.ANDROID}_wheelListener(P){if(this._isTooltipVisible()){const F=this._injector.get(e.qQL).elementFromPoint(P.clientX,P.clientY),ve=this._elementRef.nativeElement;F!==ve&&!ve.contains(F)&&this.hide()}}_disableNativeGesturesIfNecessary(){const P=this.touchGestures;if("off"!==P){const F=this._elementRef.nativeElement,ve=F.style;("on"===P||"INPUT"!==F.nodeName&&"TEXTAREA"!==F.nodeName)&&(ve.userSelect=ve.msUserSelect=ve.webkitUserSelect=ve.MozUserSelect="none"),("on"===P||!F.draggable)&&(ve.webkitUserDrag="none"),ve.touchAction="none",ve.webkitTapHighlightColor="transparent"}}_syncAriaDescription(P){this._ariaDescriptionPending||(this._ariaDescriptionPending=!0,this._ariaDescriber.removeDescription(this._elementRef.nativeElement,P,"tooltip"),this._isDestroyed||(0,O.mal)({write:()=>{this._ariaDescriptionPending=!1,this.message&&!this.disabled&&this._ariaDescriber.describe(this._elementRef.nativeElement,this.message,"tooltip")}},{injector:this._injector}))}static \u0275fac=function(F){return new(F||te)};static \u0275dir=O.FsC({type:te,selectors:[["","matTooltip",""]],hostAttrs:[1,"mat-mdc-tooltip-trigger"],hostVars:2,hostBindings:function(F,ve){2&F&&O.AVh("mat-mdc-tooltip-disabled",ve.disabled)},inputs:{position:[0,"matTooltipPosition","position"],positionAtOrigin:[0,"matTooltipPositionAtOrigin","positionAtOrigin"],disabled:[0,"matTooltipDisabled","disabled"],showDelay:[0,"matTooltipShowDelay","showDelay"],hideDelay:[0,"matTooltipHideDelay","hideDelay"],touchGestures:[0,"matTooltipTouchGestures","touchGestures"],message:[0,"matTooltip","message"],tooltipClass:[0,"matTooltipClass","tooltipClass"]},exportAs:["matTooltip"]})}return te})(),Le=(()=>{class te{_changeDetectorRef=(0,e.WQX)(f.gRc);_elementRef=(0,e.WQX)(O.aKT);_isMultiline=!1;message;tooltipClass;_showTimeoutId;_hideTimeoutId;_triggerElement;_mouseLeaveHideDelay;_animationsDisabled=(0,W.Rc)();_tooltip;_closeOnInteraction=!1;_isVisible=!1;_onHide=new j.B;_showAnimation="mat-mdc-tooltip-show";_hideAnimation="mat-mdc-tooltip-hide";constructor(){}show(P){null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=setTimeout(()=>{this._toggleVisibility(!0),this._showTimeoutId=void 0},P)}hide(P){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),this._hideTimeoutId=setTimeout(()=>{this._toggleVisibility(!1),this._hideTimeoutId=void 0},P)}afterHidden(){return this._onHide}isVisible(){return this._isVisible}ngOnDestroy(){this._cancelPendingAnimations(),this._onHide.complete(),this._triggerElement=null}_handleBodyInteraction(){this._closeOnInteraction&&this.hide(0)}_markForCheck(){this._changeDetectorRef.markForCheck()}_handleMouseLeave({relatedTarget:P}){(!P||!this._triggerElement.contains(P))&&(this.isVisible()?this.hide(this._mouseLeaveHideDelay):this._finalizeAnimation(!1))}_onShow(){this._isMultiline=this._isTooltipMultiline(),this._markForCheck()}_isTooltipMultiline(){const P=this._elementRef.nativeElement.getBoundingClientRect();return P.height>24&&P.width>=200}_handleAnimationEnd({animationName:P}){(P===this._showAnimation||P===this._hideAnimation)&&this._finalizeAnimation(P===this._showAnimation)}_cancelPendingAnimations(){null!=this._showTimeoutId&&clearTimeout(this._showTimeoutId),null!=this._hideTimeoutId&&clearTimeout(this._hideTimeoutId),this._showTimeoutId=this._hideTimeoutId=void 0}_finalizeAnimation(P){P?this._closeOnInteraction=!0:this.isVisible()||this._onHide.next()}_toggleVisibility(P){const F=this._tooltip.nativeElement,ve=this._showAnimation,H=this._hideAnimation;if(F.classList.remove(P?H:ve),F.classList.add(P?ve:H),this._isVisible!==P&&(this._isVisible=P,this._changeDetectorRef.markForCheck()),P&&!this._animationsDisabled&&"function"==typeof getComputedStyle){const $=getComputedStyle(F);("0s"===$.getPropertyValue("animation-duration")||"none"===$.getPropertyValue("animation-name"))&&(this._animationsDisabled=!0)}P&&this._onShow(),this._animationsDisabled&&(F.classList.add("_mat-animation-noopable"),this._finalizeAnimation(P))}static \u0275fac=function(F){return new(F||te)};static \u0275cmp=O.VBU({type:te,selectors:[["mat-tooltip-component"]],viewQuery:function(F,ve){if(1&F&&O.GBs(G,7),2&F){let H;O.mGM(H=O.lsd())&&(ve._tooltip=H.first)}},hostAttrs:["aria-hidden","true"],hostBindings:function(F,ve){1&F&&O.bIt("mouseleave",function($){return ve._handleMouseLeave($)})},decls:4,vars:4,consts:[["tooltip",""],[1,"mdc-tooltip","mat-mdc-tooltip",3,"animationend","ngClass"],[1,"mat-mdc-tooltip-surface","mdc-tooltip__surface"]],template:function(F,ve){if(1&F){const H=O.RV6();O.j41(0,"div",1,0),O.bIt("animationend",function(Ke){return e.eBV(H),e.Njj(ve._handleAnimationEnd(Ke))}),O.j41(2,"div",2),O.EFF(3),O.k0s()()}2&F&&(O.AVh("mdc-tooltip--multiline",ve._isMultiline),O.Y8G("ngClass",ve.tooltipClass),O.R7$(3),O.JRh(ve.message))},dependencies:[u.YU],styles:['.mat-mdc-tooltip{position:relative;transform:scale(0);display:inline-flex}.mat-mdc-tooltip::before{content:"";top:0;right:0;bottom:0;left:0;z-index:-1;position:absolute}.mat-mdc-tooltip-panel-below .mat-mdc-tooltip::before{top:-8px}.mat-mdc-tooltip-panel-above .mat-mdc-tooltip::before{bottom:-8px}.mat-mdc-tooltip-panel-right .mat-mdc-tooltip::before{left:-8px}.mat-mdc-tooltip-panel-left .mat-mdc-tooltip::before{right:-8px}.mat-mdc-tooltip._mat-animation-noopable{animation:none;transform:scale(1)}.mat-mdc-tooltip-surface{word-break:normal;overflow-wrap:anywhere;padding:4px 8px;min-width:40px;max-width:200px;min-height:24px;max-height:40vh;box-sizing:border-box;overflow:hidden;text-align:center;will-change:transform,opacity;background-color:var(--mat-tooltip-container-color, var(--mat-sys-inverse-surface));color:var(--mat-tooltip-supporting-text-color, var(--mat-sys-inverse-on-surface));border-radius:var(--mat-tooltip-container-shape, var(--mat-sys-corner-extra-small));font-family:var(--mat-tooltip-supporting-text-font, var(--mat-sys-body-small-font));font-size:var(--mat-tooltip-supporting-text-size, var(--mat-sys-body-small-size));font-weight:var(--mat-tooltip-supporting-text-weight, var(--mat-sys-body-small-weight));line-height:var(--mat-tooltip-supporting-text-line-height, var(--mat-sys-body-small-line-height));letter-spacing:var(--mat-tooltip-supporting-text-tracking, var(--mat-sys-body-small-tracking))}.mat-mdc-tooltip-surface::before{position:absolute;box-sizing:border-box;width:100%;height:100%;top:0;left:0;border:1px solid rgba(0,0,0,0);border-radius:inherit;content:"";pointer-events:none}.mdc-tooltip--multiline .mat-mdc-tooltip-surface{text-align:left}[dir=rtl] .mdc-tooltip--multiline .mat-mdc-tooltip-surface{text-align:right}.mat-mdc-tooltip-panel{line-height:normal}.mat-mdc-tooltip-panel.mat-mdc-tooltip-panel-non-interactive{pointer-events:none}@keyframes mat-mdc-tooltip-show{0%{opacity:0;transform:scale(0.8)}100%{opacity:1;transform:scale(1)}}@keyframes mat-mdc-tooltip-hide{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(0.8)}}.mat-mdc-tooltip-show{animation:mat-mdc-tooltip-show 150ms cubic-bezier(0, 0, 0.2, 1) forwards}.mat-mdc-tooltip-hide{animation:mat-mdc-tooltip-hide 75ms cubic-bezier(0.4, 0, 1, 1) forwards}\n'],encapsulation:2,changeDetection:0})}return te})()},7358(Zt,pe,l){"use strict";l.d(pe,{Zh:()=>Ee,d6:()=>B,jH:()=>G,lQ:()=>Ae,pO:()=>j,q1:()=>Pe,wx:()=>Ce,yI:()=>A});var d=l(2279),v=l(2615),T=l(3664),w=l(7705),e=l(2466),O=l(4117),f=l(4412),u=l(7786),L=l(6354);let B=(()=>{class V extends d.xn{get tabIndexInputBinding(){return this._tabIndexInputBinding}set tabIndexInputBinding(be){this._tabIndexInputBinding=be}_tabIndexInputBinding;defaultTabIndex=0;_getTabindexAttribute(){return function C(V){return!!V._isNoopTreeKeyManager}(this._tree._keyManager)?this.tabIndexInputBinding:this._tabindex}get disabled(){return this.isDisabled}set disabled(be){this.isDisabled=be}constructor(){super();const be=(0,v.WQX)(new w.ES_("tabindex"),{optional:!0});this.tabIndexInputBinding=Number(be)||this.defaultTabIndex}ngOnInit(){super.ngOnInit()}ngOnDestroy(){super.ngOnDestroy()}static \u0275fac=function(ne){return new(ne||V)};static \u0275dir=T.FsC({type:V,selectors:[["mat-tree-node"]],hostAttrs:[1,"mat-tree-node"],hostVars:5,hostBindings:function(ne,J){1&ne&&T.bIt("click",function(){return J._focusItem()}),2&ne&&(T.Avn("tabIndex",J._getTabindexAttribute()),T.BMQ("aria-expanded",J._getAriaExpanded())("aria-level",J.level+1)("aria-posinset",J._getPositionInSet())("aria-setsize",J._getSetSize()))},inputs:{tabIndexInputBinding:[2,"tabIndex","tabIndexInputBinding",be=>null==be?0:(0,w.Udg)(be)],disabled:[2,"disabled","disabled",w.L39]},outputs:{activation:"activation",expandedChange:"expandedChange"},exportAs:["matTreeNode"],features:[T.Jv_([{provide:d.xn,useExisting:V}]),T.Vt3]})}return V})(),A=(()=>{class V extends d.Sz{data;static \u0275fac=(()=>{let be;return function(J){return(be||(be=T.xGo(V)))(J||V)}})();static \u0275dir=T.FsC({type:V,selectors:[["","matTreeNodeDef",""]],inputs:{when:[0,"matTreeNodeDefWhen","when"],data:[0,"matTreeNode","data"]},features:[T.Jv_([{provide:d.Sz,useExisting:V}]),T.Vt3]})}return V})(),Pe=(()=>{class V extends d.s3{node;get disabled(){return this.isDisabled}set disabled(be){this.isDisabled=be}get tabIndex(){return this.isDisabled?-1:this._tabIndex}set tabIndex(be){this._tabIndex=be}_tabIndex;ngOnInit(){super.ngOnInit()}ngAfterContentInit(){super.ngAfterContentInit()}ngOnDestroy(){super.ngOnDestroy()}static \u0275fac=(()=>{let be;return function(J){return(be||(be=T.xGo(V)))(J||V)}})();static \u0275dir=T.FsC({type:V,selectors:[["mat-nested-tree-node"]],hostAttrs:[1,"mat-nested-tree-node"],inputs:{node:[0,"matNestedTreeNode","node"],disabled:[2,"disabled","disabled",w.L39],tabIndex:[2,"tabIndex","tabIndex",be=>null==be?0:(0,w.Udg)(be)]},outputs:{activation:"activation",expandedChange:"expandedChange"},exportAs:["matNestedTreeNode"],features:[T.Jv_([{provide:d.s3,useExisting:V},{provide:d.xn,useExisting:V},{provide:d.kZ,useExisting:V}]),T.Vt3]})}return V})(),Ce=(()=>{class V{viewContainer=(0,v.WQX)(T.c1b);_node=(0,v.WQX)(d.kZ,{optional:!0});static \u0275fac=function(ne){return new(ne||V)};static \u0275dir=T.FsC({type:V,selectors:[["","matTreeNodeOutlet",""]],features:[T.Jv_([{provide:d.a$,useExisting:V}])]})}return V})(),Ae=(()=>{class V extends d.NL{_nodeOutlet=void 0;static \u0275fac=(()=>{let be;return function(J){return(be||(be=T.xGo(V)))(J||V)}})();static \u0275cmp=T.VBU({type:V,selectors:[["mat-tree"]],viewQuery:function(ne,J){if(1&ne&&T.GBs(Ce,7),2&ne){let De;T.mGM(De=T.lsd())&&(J._nodeOutlet=De.first)}},hostAttrs:[1,"mat-tree"],exportAs:["matTree"],features:[T.Jv_([{provide:d.NL,useExisting:V}]),T.Vt3],decls:1,vars:0,consts:[["matTreeNodeOutlet",""]],template:function(ne,J){1&ne&&T.eu8(0,0)},dependencies:[Ce],styles:[".mat-tree{display:block;background-color:var(--mat-tree-container-background-color, var(--mat-sys-surface))}.mat-tree-node,.mat-nested-tree-node{color:var(--mat-tree-node-text-color, var(--mat-sys-on-surface));font-family:var(--mat-tree-node-text-font, var(--mat-sys-body-large-font));font-size:var(--mat-tree-node-text-size, var(--mat-sys-body-large-size));font-weight:var(--mat-tree-node-text-weight, var(--mat-sys-body-large-weight))}.mat-tree-node{display:flex;align-items:center;flex:1;word-wrap:break-word;min-height:var(--mat-tree-node-min-height, 48px)}.mat-nested-tree-node{border-bottom-width:0}\n"],encapsulation:2})}return V})(),j=(()=>{class V extends d.Hy{static \u0275fac=(()=>{let be;return function(J){return(be||(be=T.xGo(V)))(J||V)}})();static \u0275dir=T.FsC({type:V,selectors:[["","matTreeNodeToggle",""]],inputs:{recursive:[0,"matTreeNodeToggleRecursive","recursive"]},features:[T.Jv_([{provide:d.Hy,useExisting:V}]),T.Vt3]})}return V})(),G=(()=>{class V{static \u0275fac=function(ne){return new(ne||V)};static \u0275mod=T.$C({type:V});static \u0275inj=v.G2t({imports:[d.Dc,e.y,e.y]})}return V})();class Ee extends O.q{get data(){return this._data.value}set data(ce){this._data.next(ce)}_data=new f.t([]);connect(ce){return(0,u.h)(ce.viewChange,this._data).pipe((0,L.T)(()=>this.data))}disconnect(){}}},3393(Zt,pe,l){"use strict";l.d(pe,{CI:()=>A,EU:()=>O,Hl:()=>T,Q5:()=>e,jd:()=>w,mE:()=>ne});var i=l(2615),d=l(7303),v=l(3664);class T{_doc;constructor(Le){this._doc=Le}manager}let w=(()=>{class lt extends T{constructor(te){super(te)}supports(te){return!0}addEventListener(te,ie,P,F){return te.addEventListener(ie,P,F),()=>this.removeEventListener(te,ie,P,F)}removeEventListener(te,ie,P,F){return te.removeEventListener(ie,P,F)}static \u0275fac=function(ie){return new(ie||lt)(i.KVO(i.qQL))};static \u0275prov=i.jDH({token:lt,factory:lt.\u0275fac})}return lt})();const e=new i.nKC("");let O=(()=>{class lt{_zone;_plugins;_eventNameToPlugin=new Map;constructor(te,ie){this._zone=ie,te.forEach(ve=>{ve.manager=this});const P=te.filter(ve=>!(ve instanceof w));this._plugins=P.slice().reverse();const F=te.find(ve=>ve instanceof w);F&&this._plugins.push(F)}addEventListener(te,ie,P,F){return this._findPluginFor(ie).addEventListener(te,ie,P,F)}getZone(){return this._zone}_findPluginFor(te){let ie=this._eventNameToPlugin.get(te);if(ie)return ie;if(ie=this._plugins.find(F=>F.supports(te)),!ie)throw new i.buA(5101,!1);return this._eventNameToPlugin.set(te,ie),ie}static \u0275fac=function(ie){return new(ie||lt)(i.KVO(e),i.KVO(v.SKi))};static \u0275prov=i.jDH({token:lt,factory:lt.\u0275fac})}return lt})();const f="ng-app-id";function u(lt){for(const Le of lt)Le.remove()}function L(lt,Le){const te=Le.createElement("style");return te.textContent=lt,te}function B(lt,Le){const te=Le.createElement("link");return te.setAttribute("rel","stylesheet"),te.setAttribute("href",lt),te}let A=(()=>{class lt{doc;appId;nonce;inline=new Map;external=new Map;hosts=new Set;constructor(te,ie,P,F={}){this.doc=te,this.appId=ie,this.nonce=P,function C(lt,Le,te,ie){const P=lt.head?.querySelectorAll(`style[${f}="${Le}"],link[${f}="${Le}"]`);if(P)for(const F of P)F.removeAttribute(f),F instanceof HTMLLinkElement?ie.set(F.href.slice(F.href.lastIndexOf("/")+1),{usage:0,elements:[F]}):F.textContent&&te.set(F.textContent,{usage:0,elements:[F]})}(te,ie,this.inline,this.external),this.hosts.add(te.head)}addStyles(te,ie){for(const P of te)this.addUsage(P,this.inline,L);ie?.forEach(P=>this.addUsage(P,this.external,B))}removeStyles(te,ie){for(const P of te)this.removeUsage(P,this.inline);ie?.forEach(P=>this.removeUsage(P,this.external))}addUsage(te,ie,P){const F=ie.get(te);F?F.usage++:ie.set(te,{usage:1,elements:[...this.hosts].map(ve=>this.addElement(ve,P(te,this.doc)))})}removeUsage(te,ie){const P=ie.get(te);P&&(P.usage--,P.usage<=0&&(u(P.elements),ie.delete(te)))}ngOnDestroy(){for(const[,{elements:te}]of[...this.inline,...this.external])u(te);this.hosts.clear()}addHost(te){this.hosts.add(te);for(const[ie,{elements:P}]of this.inline)P.push(this.addElement(te,L(ie,this.doc)));for(const[ie,{elements:P}]of this.external)P.push(this.addElement(te,B(ie,this.doc)))}removeHost(te){this.hosts.delete(te)}addElement(te,ie){return this.nonce&&ie.setAttribute("nonce",this.nonce),te.appendChild(ie)}static \u0275fac=function(ie){return new(ie||lt)(i.KVO(i.qQL),i.KVO(v.sZ2),i.KVO(v.BIS,8),i.KVO(v.Agw))};static \u0275prov=i.jDH({token:lt,factory:lt.\u0275fac})}return lt})();const Pe={svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/",math:"http://www.w3.org/1998/Math/MathML"},le=/%COMP%/g,j="%COMP%",W=`_nghost-${j}`,G=`_ngcontent-${j}`,xe=new i.nKC("",{providedIn:"root",factory:()=>!0});function ce(lt,Le){return Le.map(te=>te.replace(le,lt))}let ne=(()=>{class lt{eventManager;sharedStylesHost;appId;removeStylesOnCompDestroy;doc;ngZone;nonce;tracingService;rendererByCompId=new Map;defaultRenderer;platformIsServer;constructor(te,ie,P,F,ve,H,$=null,Ke=null){this.eventManager=te,this.sharedStylesHost=ie,this.appId=P,this.removeStylesOnCompDestroy=F,this.doc=ve,this.ngZone=H,this.nonce=$,this.tracingService=Ke,this.platformIsServer=!1,this.defaultRenderer=new J(te,ve,H,this.platformIsServer,this.tracingService)}createRenderer(te,ie){if(!te||!ie)return this.defaultRenderer;const P=this.getOrCreateRenderer(te,ie);return P instanceof Dt?P.applyToHost(te):P instanceof he&&P.applyStyles(),P}getOrCreateRenderer(te,ie){const P=this.rendererByCompId;let F=P.get(ie.id);if(!F){const ve=this.doc,H=this.ngZone,$=this.eventManager,Ke=this.sharedStylesHost,Vt=this.removeStylesOnCompDestroy,St=this.platformIsServer,ot=this.tracingService;switch(ie.encapsulation){case v.gXe.Emulated:F=new Dt($,Ke,ie,this.appId,Vt,ve,H,St,ot);break;case v.gXe.ShadowDom:return new _e($,Ke,te,ie,ve,H,this.nonce,St,ot);default:F=new he($,Ke,ie,Vt,ve,H,St,ot)}P.set(ie.id,F)}return F}ngOnDestroy(){this.rendererByCompId.clear()}componentReplaced(te){this.rendererByCompId.delete(te)}static \u0275fac=function(ie){return new(ie||lt)(i.KVO(O),i.KVO(A),i.KVO(v.sZ2),i.KVO(xe),i.KVO(i.qQL),i.KVO(v.SKi),i.KVO(v.BIS),i.KVO(v.a8H,8))};static \u0275prov=i.jDH({token:lt,factory:lt.\u0275fac})}return lt})();class J{eventManager;doc;ngZone;platformIsServer;tracingService;data=Object.create(null);throwOnSyntheticProps=!0;constructor(Le,te,ie,P,F){this.eventManager=Le,this.doc=te,this.ngZone=ie,this.platformIsServer=P,this.tracingService=F}destroy(){}destroyNode=null;createElement(Le,te){return te?this.doc.createElementNS(Pe[te]||te,Le):this.doc.createElement(Le)}createComment(Le){return this.doc.createComment(Le)}createText(Le){return this.doc.createTextNode(Le)}appendChild(Le,te){(Xe(Le)?Le.content:Le).appendChild(te)}insertBefore(Le,te,ie){Le&&(Xe(Le)?Le.content:Le).insertBefore(te,ie)}removeChild(Le,te){te.remove()}selectRootElement(Le,te){let ie="string"==typeof Le?this.doc.querySelector(Le):Le;if(!ie)throw new i.buA(-5104,!1);return te||(ie.textContent=""),ie}parentNode(Le){return Le.parentNode}nextSibling(Le){return Le.nextSibling}setAttribute(Le,te,ie,P){if(P){te=P+":"+te;const F=Pe[P];F?Le.setAttributeNS(F,te,ie):Le.setAttribute(te,ie)}else Le.setAttribute(te,ie)}removeAttribute(Le,te,ie){if(ie){const P=Pe[ie];P?Le.removeAttributeNS(P,te):Le.removeAttribute(`${ie}:${te}`)}else Le.removeAttribute(te)}addClass(Le,te){Le.classList.add(te)}removeClass(Le,te){Le.classList.remove(te)}setStyle(Le,te,ie,P){P&(v.czy.DashCase|v.czy.Important)?Le.style.setProperty(te,ie,P&v.czy.Important?"important":""):Le.style[te]=ie}removeStyle(Le,te,ie){ie&v.czy.DashCase?Le.style.removeProperty(te):Le.style[te]=""}setProperty(Le,te,ie){null!=Le&&(Le[te]=ie)}setValue(Le,te){Le.nodeValue=te}listen(Le,te,ie,P){if("string"==typeof Le&&!(Le=(0,d.rb)().getGlobalEventTarget(this.doc,Le)))throw new i.buA(5102,!1);let F=this.decoratePreventDefault(ie);return this.tracingService?.wrapEventListener&&(F=this.tracingService.wrapEventListener(Le,te,F)),this.eventManager.addEventListener(Le,te,F,P)}decoratePreventDefault(Le){return te=>{if("__ngUnwrap__"===te)return Le;!1===Le(te)&&te.preventDefault()}}}function Xe(lt){return"TEMPLATE"===lt.tagName&&void 0!==lt.content}class _e extends J{sharedStylesHost;hostEl;shadowRoot;constructor(Le,te,ie,P,F,ve,H,$,Ke){super(Le,F,ve,$,Ke),this.sharedStylesHost=te,this.hostEl=ie,this.shadowRoot=ie.attachShadow({mode:"open"}),this.sharedStylesHost.addHost(this.shadowRoot);let Vt=P.styles;Vt=ce(P.id,Vt);for(const ot of Vt){const nt=document.createElement("style");H&&nt.setAttribute("nonce",H),nt.textContent=ot,this.shadowRoot.appendChild(nt)}const St=P.getExternalStyles?.();if(St)for(const ot of St){const nt=B(ot,F);H&&nt.setAttribute("nonce",H),this.shadowRoot.appendChild(nt)}}nodeOrShadowRoot(Le){return Le===this.hostEl?this.shadowRoot:Le}appendChild(Le,te){return super.appendChild(this.nodeOrShadowRoot(Le),te)}insertBefore(Le,te,ie){return super.insertBefore(this.nodeOrShadowRoot(Le),te,ie)}removeChild(Le,te){return super.removeChild(null,te)}parentNode(Le){return this.nodeOrShadowRoot(super.parentNode(this.nodeOrShadowRoot(Le)))}destroy(){this.sharedStylesHost.removeHost(this.shadowRoot)}}class he extends J{sharedStylesHost;removeStylesOnCompDestroy;styles;styleUrls;constructor(Le,te,ie,P,F,ve,H,$,Ke){super(Le,F,ve,H,$),this.sharedStylesHost=te,this.removeStylesOnCompDestroy=P;let Vt=ie.styles;this.styles=Ke?ce(Ke,Vt):Vt,this.styleUrls=ie.getExternalStyles?.(Ke)}applyStyles(){this.sharedStylesHost.addStyles(this.styles,this.styleUrls)}destroy(){this.removeStylesOnCompDestroy&&0===v.DUP.size&&this.sharedStylesHost.removeStyles(this.styles,this.styleUrls)}}class Dt extends he{contentAttr;hostAttr;constructor(Le,te,ie,P,F,ve,H,$,Ke){const Vt=P+"-"+ie.id;super(Le,te,ie,F,ve,H,$,Ke,Vt),this.contentAttr=function Ee(lt){return G.replace(le,lt)}(Vt),this.hostAttr=function V(lt){return W.replace(le,lt)}(Vt)}applyToHost(Le){this.applyStyles(),this.setAttribute(Le,this.hostAttr,"")}createElement(Le,te){const ie=super.createElement(Le,te);return super.setAttribute(ie,this.contentAttr,""),ie}}},345(Zt,pe,l){"use strict";l.d(pe,{fM:()=>P,hE:()=>ce,up:()=>F});var G=l(2615),re=l(3664),xe=l(3393);let ce=(()=>{class Qe{_doc;constructor(Gt){this._doc=Gt}getTitle(){return this._doc.title}setTitle(Gt){this._doc.title=Gt||""}static \u0275fac=function(rt){return new(rt||Qe)(G.KVO(G.qQL))};static \u0275prov=G.jDH({token:Qe,factory:Qe.\u0275fac,providedIn:"root"})}return Qe})();const Dt={pan:!0,panstart:!0,panmove:!0,panend:!0,pancancel:!0,panleft:!0,panright:!0,panup:!0,pandown:!0,pinch:!0,pinchstart:!0,pinchmove:!0,pinchend:!0,pinchcancel:!0,pinchin:!0,pinchout:!0,press:!0,pressup:!0,rotate:!0,rotatestart:!0,rotatemove:!0,rotateend:!0,rotatecancel:!0,swipe:!0,swipeleft:!0,swiperight:!0,swipeup:!0,swipedown:!0,tap:!0,doubletap:!0},lt=new G.nKC(""),Le=new G.nKC("");let te=(()=>{class Qe{events=[];overrides={};options;buildHammer(Gt){const rt=new Hammer(Gt,this.options);rt.get("pinch").set({enable:!0}),rt.get("rotate").set({enable:!0});for(const cn in this.overrides)rt.get(cn).set(this.overrides[cn]);return rt}static \u0275fac=function(rt){return new(rt||Qe)};static \u0275prov=G.jDH({token:Qe,factory:Qe.\u0275fac})}return Qe})(),ie=(()=>{class Qe extends xe.Hl{_config;_injector;loader;_loaderPromise=null;constructor(Gt,rt,cn,Ft){super(Gt),this._config=rt,this._injector=cn,this.loader=Ft}supports(Gt){return!(!Dt.hasOwnProperty(Gt.toLowerCase())&&!this.isCustomEvent(Gt)||!window.Hammer&&!this.loader)}addEventListener(Gt,rt,cn){const Ft=this.manager.getZone();if(rt=rt.toLowerCase(),!window.Hammer&&this.loader){this._loaderPromise=this._loaderPromise||Ft.runOutsideAngular(()=>this.loader());let Sn=!1,Qn=()=>{Sn=!0};return Ft.runOutsideAngular(()=>this._loaderPromise.then(()=>{window.Hammer?Sn||(Qn=this.addEventListener(Gt,rt,cn)):Qn=()=>{}}).catch(()=>{Qn=()=>{}})),()=>{Qn()}}return Ft.runOutsideAngular(()=>{const Sn=this._config.buildHammer(Gt),Qn=function(h){Ft.runGuarded(function(){cn(h)})};return Sn.on(rt,Qn),()=>{Sn.off(rt,Qn),"function"==typeof Sn.destroy&&Sn.destroy()}})}isCustomEvent(Gt){return this._config.events.indexOf(Gt)>-1}static \u0275fac=function(rt){return new(rt||Qe)(G.KVO(G.qQL),G.KVO(lt),G.KVO(G.zZn),G.KVO(Le,8))};static \u0275prov=G.jDH({token:Qe,factory:Qe.\u0275fac})}return Qe})(),P=(()=>{class Qe{static \u0275fac=function(rt){return new(rt||Qe)};static \u0275mod=re.$C({type:Qe});static \u0275inj=G.G2t({providers:[{provide:xe.Q5,useClass:ie,multi:!0,deps:[G.qQL,lt,G.zZn,[new re.Xx1,Le]]},{provide:lt,useClass:te}]})}return Qe})(),F=(()=>{class Qe{static \u0275fac=function(rt){return new(rt||Qe)};static \u0275prov=G.jDH({token:Qe,factory:function(rt){let cn=null;return cn=rt?new(rt||Qe):G.KVO(ve),cn},providedIn:"root"})}return Qe})(),ve=(()=>{class Qe extends F{_doc;constructor(Gt){super(),this._doc=Gt}sanitize(Gt,rt){if(null==rt)return null;switch(Gt){case re.WPN.NONE:return rt;case re.WPN.HTML:return(0,re.iWE)(rt,"HTML")?(0,re.aCM)(rt):(0,re.wr$)(this._doc,String(rt)).toString();case re.WPN.STYLE:return(0,re.iWE)(rt,"Style")?(0,re.aCM)(rt):rt;case re.WPN.SCRIPT:if((0,re.iWE)(rt,"Script"))return(0,re.aCM)(rt);throw new G.buA(5200,!1);case re.WPN.URL:return(0,re.iWE)(rt,"URL")?(0,re.aCM)(rt):(0,re.gil)(String(rt));case re.WPN.RESOURCE_URL:if((0,re.iWE)(rt,"ResourceURL"))return(0,re.aCM)(rt);throw new G.buA(5201,!1);default:throw new G.buA(5202,!1)}}bypassSecurityTrustHtml(Gt){return(0,re.PYC)(Gt)}bypassSecurityTrustStyle(Gt){return(0,re.rAh)(Gt)}bypassSecurityTrustScript(Gt){return(0,re.p2i)(Gt)}bypassSecurityTrustUrl(Gt){return(0,re.B1s)(Gt)}bypassSecurityTrustResourceUrl(Gt){return(0,re.RPW)(Gt)}static \u0275fac=function(rt){return new(rt||Qe)(G.KVO(G.qQL))};static \u0275prov=G.jDH({token:Qe,factory:Qe.\u0275fac,providedIn:"root"})}return Qe})()},3694(Zt,pe,l){"use strict";l.d(pe,{nX:()=>Ze,Pu:()=>io,Zp:()=>Jt,nU:()=>Ni,wU:()=>Un,c1:()=>fr,XR:()=>Wr,j5:()=>Vn,wF:()=>rn,L6:()=>Bn,lW:()=>ii,mo:()=>Mn,Z:()=>ci,J2:()=>ao,J_:()=>So,bw:()=>fo,gx:()=>qt,tD:()=>zo,Ix:()=>Wo,D$:()=>To,n3:()=>hr,OY:()=>da,Sd:()=>vi,bK:()=>Ys,gk:()=>Ll,Lg:()=>Dr,wO:()=>un,Us:()=>oi,we:()=>pr});var i=l(2615),d=l(7303),v=l(3664),T=l(7705),w=l(9295),e=l(4402),O=l(2806),f=l(7673),u=l(4412),L=l(4572),C=l(9350),B=l(8793),A=l(9030),Pe=l(1203),le=l(8810),Ce=l(983),Ae=l(17),j=l(1413),W=l(1985),G=l(8359),re=l(6354),xe=l(5558),Ee=l(6697),V=l(9172),ce=l(5964),be=l(1397),ne=l(1594),J=l(274),De=l(8141),Re=l(9437),Xe=l(1943),_e=l(9901),he=l(9974),Dt=l(4360);function lt(X){return X<=0?()=>Ce.w:(0,he.N)((de,Q)=>{let me=[];de.subscribe((0,Dt._)(Q,et=>{me.push(et),X{for(const et of me)Q.next(et);Q.complete()},void 0,()=>{me=null}))})}var Le=l(3774),te=l(3669),P=l(980),F=l(9898),ve=l(6977),H=l(345);const $="primary",Ke=Symbol("RouteTitle");class Vt{params;constructor(de){this.params=de||{}}has(de){return Object.prototype.hasOwnProperty.call(this.params,de)}get(de){if(this.has(de)){const Q=this.params[de];return Array.isArray(Q)?Q[0]:Q}return null}getAll(de){if(this.has(de)){const Q=this.params[de];return Array.isArray(Q)?Q:[Q]}return[]}get keys(){return Object.keys(this.params)}}function St(X){return new Vt(X)}function ot(X,de,Q){const me=Q.path.split("/");if(me.length>X.length||"full"===Q.pathMatch&&(de.hasChildren()||me.lengthme[Mt]===et)}return X===de}function fe(X){return X.length>0?X[X.length-1]:null}function Qe(X){return(0,e.A)(X)?X:(0,v.yLl)(X)?(0,O.H)(Promise.resolve(X)):(0,f.of)(X)}const gt={exact:function Ft(X,de,Q){if(!gn(X.segments,de.segments)||!jt(X.segments,de.segments,Q)||X.numberOfChildren!==de.numberOfChildren)return!1;for(const me in de.children)if(!X.children[me]||!Ft(X.children[me],de.children[me],Q))return!1;return!0},subset:Qn},Gt={exact:function cn(X,de){return ht(X,de)},subset:function Sn(X,de){return Object.keys(de).length<=Object.keys(X).length&&Object.keys(de).every(Q=>Ye(X[Q],de[Q]))},ignored:()=>!0};function rt(X,de,Q){return gt[Q.paths](X.root,de.root,Q.matrixParams)&&Gt[Q.queryParams](X.queryParams,de.queryParams)&&!("exact"===Q.fragment&&X.fragment!==de.fragment)}function Qn(X,de,Q){return h(X,de,de.segments,Q)}function h(X,de,Q,me){if(X.segments.length>Q.length){const et=X.segments.slice(0,Q.length);return!(!gn(et,Q)||de.hasChildren()||!jt(et,Q,me))}if(X.segments.length===Q.length){if(!gn(X.segments,Q)||!jt(X.segments,Q,me))return!1;for(const et in de.children)if(!X.children[et]||!Qn(X.children[et],de.children[et],me))return!1;return!0}{const et=Q.slice(0,X.segments.length),Mt=Q.slice(X.segments.length);return!!(gn(X.segments,et)&&jt(X.segments,et,me)&&X.children[$])&&h(X.children[$],de,Mt,me)}}function jt(X,de,Q){return de.every((me,et)=>Gt[Q](X[et].parameters,me.parameters))}class Ue{root;queryParams;fragment;_queryParamMap;constructor(de=new wt([],{}),Q={},me=null){this.root=de,this.queryParams=Q,this.fragment=me}get queryParamMap(){return this._queryParamMap??=St(this.queryParams),this._queryParamMap}toString(){return kn.serialize(this)}}class wt{segments;children;parent=null;constructor(de,Q){this.segments=de,this.children=Q,Object.values(Q).forEach(me=>me.parent=this)}hasChildren(){return this.numberOfChildren>0}get numberOfChildren(){return Object.keys(this.children).length}toString(){return Ri(this)}}class pt{path;parameters;_parameterMap;constructor(de,Q){this.path=de,this.parameters=Q}get parameterMap(){return this._parameterMap??=St(this.parameters),this._parameterMap}toString(){return Z(this)}}function gn(X,de){return X.length===de.length&&X.every((Q,me)=>Q.path===de[me].path)}let vi=(()=>{class X{static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:()=>new Ni,providedIn:"root"})}return X})();class Ni{parse(de){const Q=new We(de);return new Ue(Q.parseRootSegment(),Q.parseQueryParams(),Q.parseFragment())}serialize(de){const Q=`/${vt(de.root,!0)}`,me=function at(X){const de=Object.entries(X).map(([Q,me])=>Array.isArray(me)?me.map(et=>`${ye(Q)}=${ye(et)}`).join("&"):`${ye(Q)}=${ye(me)}`).filter(Q=>Q);return de.length?`?${de.join("&")}`:""}(de.queryParams);return`${Q}${me}${"string"==typeof de.fragment?`#${function ke(X){return encodeURI(X)}(de.fragment)}`:""}`}}const kn=new Ni;function Ri(X){return X.segments.map(de=>Z(de)).join("/")}function vt(X,de){if(!X.hasChildren())return Ri(X);if(de){const Q=X.children[$]?vt(X.children[$],!1):"",me=[];return Object.entries(X.children).forEach(([et,Mt])=>{et!==$&&me.push(`${et}:${vt(Mt,!1)}`)}),me.length>0?`${Q}(${me.join("//")})`:Q}{const Q=function ei(X,de){let Q=[];return Object.entries(X.children).forEach(([me,et])=>{me===$&&(Q=Q.concat(de(et,me)))}),Object.entries(X.children).forEach(([me,et])=>{me!==$&&(Q=Q.concat(de(et,me)))}),Q}(X,(me,et)=>et===$?[vt(X.children[$],!1)]:[`${et}:${vt(me,!1)}`]);return 1===Object.keys(X.children).length&&null!=X.children[$]?`${Ri(X)}/${Q[0]}`:`${Ri(X)}/(${Q.join("//")})`}}function ee(X){return encodeURIComponent(X).replace(/%40/g,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",")}function ye(X){return ee(X).replace(/%3B/gi,";")}function Se(X){return ee(X).replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/%26/gi,"&")}function ge(X){return decodeURIComponent(X)}function N(X){return ge(X.replace(/\+/g,"%20"))}function Z(X){return`${Se(X.path)}${function Me(X){return Object.entries(X).map(([de,Q])=>`;${Se(de)}=${Se(Q)}`).join("")}(X.parameters)}`}const qe=/^[^\/()?;#]+/;function pn(X){const de=X.match(qe);return de?de[0]:""}const Je=/^[^\/()?;=#]+/,ut=/^[^=?&#]+/,Ot=/^[^&#]+/;class We{url;remaining;constructor(de){this.url=de,this.remaining=de}parseRootSegment(){return this.consumeOptional("/"),""===this.remaining||this.peekStartsWith("?")||this.peekStartsWith("#")?new wt([],{}):new wt([],this.parseChildren())}parseQueryParams(){const de={};if(this.consumeOptional("?"))do{this.parseQueryParam(de)}while(this.consumeOptional("&"));return de}parseFragment(){return this.consumeOptional("#")?decodeURIComponent(this.remaining):null}parseChildren(){if(""===this.remaining)return{};this.consumeOptional("/");const de=[];for(this.peekStartsWith("(")||de.push(this.parseSegment());this.peekStartsWith("/")&&!this.peekStartsWith("//")&&!this.peekStartsWith("/(");)this.capture("/"),de.push(this.parseSegment());let Q={};this.peekStartsWith("/(")&&(this.capture("/"),Q=this.parseParens(!0));let me={};return this.peekStartsWith("(")&&(me=this.parseParens(!1)),(de.length>0||Object.keys(Q).length>0)&&(me[$]=new wt(de,Q)),me}parseSegment(){const de=pn(this.remaining);if(""===de&&this.peekStartsWith(";"))throw new i.buA(4009,!1);return this.capture(de),new pt(ge(de),this.parseMatrixParams())}parseMatrixParams(){const de={};for(;this.consumeOptional(";");)this.parseParam(de);return de}parseParam(de){const Q=function Be(X){const de=X.match(Je);return de?de[0]:""}(this.remaining);if(!Q)return;this.capture(Q);let me="";if(this.consumeOptional("=")){const et=pn(this.remaining);et&&(me=et,this.capture(me))}de[ge(Q)]=ge(me)}parseQueryParam(de){const Q=function Ge(X){const de=X.match(ut);return de?de[0]:""}(this.remaining);if(!Q)return;this.capture(Q);let me="";if(this.consumeOptional("=")){const Kt=function se(X){const de=X.match(Ot);return de?de[0]:""}(this.remaining);Kt&&(me=Kt,this.capture(me))}const et=N(Q),Mt=N(me);if(de.hasOwnProperty(et)){let Kt=de[et];Array.isArray(Kt)||(Kt=[Kt],de[et]=Kt),Kt.push(Mt)}else de[et]=Mt}parseParens(de){const Q={};for(this.capture("(");!this.consumeOptional(")")&&this.remaining.length>0;){const me=pn(this.remaining),et=this.remaining[me.length];if("/"!==et&&")"!==et&&";"!==et)throw new i.buA(4010,!1);let Mt;me.indexOf(":")>-1?(Mt=me.slice(0,me.indexOf(":")),this.capture(Mt),this.capture(":")):de&&(Mt=$);const Kt=this.parseChildren();Q[Mt??$]=1===Object.keys(Kt).length&&Kt[$]?Kt[$]:new wt([],Kt),this.consumeOptional("//")}return Q}peekStartsWith(de){return this.remaining.startsWith(de)}consumeOptional(de){return!!this.peekStartsWith(de)&&(this.remaining=this.remaining.substring(de.length),!0)}capture(de){if(!this.consumeOptional(de))throw new i.buA(4011,!1)}}function bt(X){return X.segments.length>0?new wt([],{[$]:X}):X}function tn(X){const de={};for(const[me,et]of Object.entries(X.children)){const Mt=tn(et);if(me===$&&0===Mt.segments.length&&Mt.hasChildren())for(const[Kt,Tn]of Object.entries(Mt.children))de[Kt]=Tn;else(Mt.segments.length>0||Mt.hasChildren())&&(de[me]=Mt)}return function on(X){if(1===X.numberOfChildren&&X.children[$]){const de=X.children[$];return new wt(X.segments.concat(de.segments),de.children)}return X}(new wt(X.segments,de))}function un(X){return X instanceof Ue}function dn(X){let de;const et=bt(function Q(Mt){const Kt={};for(const ai of Mt.children){const Gi=Q(ai);Kt[ai.outlet]=Gi}const Tn=new wt(Mt.url,Kt);return Mt===X&&(de=Tn),Tn}(X.root));return de??et}function xn(X,de,Q,me){let et=X;for(;et.parent;)et=et.parent;if(0===de.length)return Yi(et,et,et,Q,me);const Mt=function we(X){if("string"==typeof X[0]&&1===X.length&&"/"===X[0])return new At(!0,0,X);let de=0,Q=!1;const me=X.reduce((et,Mt,Kt)=>{if("object"==typeof Mt&&null!=Mt){if(Mt.outlets){const Tn={};return Object.entries(Mt.outlets).forEach(([ai,Gi])=>{Tn[ai]="string"==typeof Gi?Gi.split("/"):Gi}),[...et,{outlets:Tn}]}if(Mt.segmentPath)return[...et,Mt.segmentPath]}return"string"!=typeof Mt?[...et,Mt]:0===Kt?(Mt.split("/").forEach((Tn,ai)=>{0==ai&&"."===Tn||(0==ai&&""===Tn?Q=!0:".."===Tn?de++:""!=Tn&&et.push(Tn))}),et):[...et,Mt]},[]);return new At(Q,de,me)}(de);if(Mt.toRoot())return Yi(et,et,new wt([],{}),Q,me);const Kt=function Lt(X,de,Q){if(X.isAbsolute)return new ae(de,!0,0);if(!Q)return new ae(de,!1,NaN);if(null===Q.parent)return new ae(Q,!0,0);const me=Jn(X.commands[0])?0:1;return function Ht(X,de,Q){let me=X,et=de,Mt=Q;for(;Mt>et;){if(Mt-=et,me=me.parent,!me)throw new i.buA(4005,!1);et=me.segments.length}return new ae(me,!1,et-Mt)}(Q,Q.segments.length-1+me,X.numberOfDoubleDots)}(Mt,et,X),Tn=Kt.processChildren?bi(Kt.segmentGroup,Kt.index,Mt.commands):fi(Kt.segmentGroup,Kt.index,Mt.commands);return Yi(et,Kt.segmentGroup,Tn,Q,me)}function Jn(X){return"object"==typeof X&&null!=X&&!X.outlets&&!X.segmentPath}function xi(X){return"object"==typeof X&&null!=X&&X.outlets}function Yi(X,de,Q,me,et){let Kt,Mt={};me&&Object.entries(me).forEach(([ai,Gi])=>{Mt[ai]=Array.isArray(Gi)?Gi.map(La=>`${La}`):`${Gi}`}),Kt=X===de?Q:Tt(X,de,Q);const Tn=bt(tn(Kt));return new Ue(Tn,Mt,et)}function Tt(X,de,Q){const me={};return Object.entries(X.children).forEach(([et,Mt])=>{me[et]=Mt===de?Q:Tt(Mt,de,Q)}),new wt(X.segments,me)}class At{isAbsolute;numberOfDoubleDots;commands;constructor(de,Q,me){if(this.isAbsolute=de,this.numberOfDoubleDots=Q,this.commands=me,de&&me.length>0&&Jn(me[0]))throw new i.buA(4003,!1);const et=me.find(xi);if(et&&et!==fe(me))throw new i.buA(4004,!1)}toRoot(){return this.isAbsolute&&1===this.commands.length&&"/"==this.commands[0]}}class ae{segmentGroup;processChildren;index;constructor(de,Q,me){this.segmentGroup=de,this.processChildren=Q,this.index=me}}function fi(X,de,Q){if(X??=new wt([],{}),0===X.segments.length&&X.hasChildren())return bi(X,de,Q);const me=function Qi(X,de,Q){let me=0,et=de;const Mt={match:!1,pathIndex:0,commandIndex:0};for(;et=Q.length)return Mt;const Kt=X.segments[et],Tn=Q[me];if(xi(Tn))break;const ai=`${Tn}`,Gi=me0&&void 0===ai)break;if(ai&&Gi&&"object"==typeof Gi&&void 0===Gi.outlets){if(!Yt(ai,Gi,Kt))return Mt;me+=2}else{if(!Yt(ai,{},Kt))return Mt;me++}et++}return{match:!0,pathIndex:et,commandIndex:me}}(X,de,Q),et=Q.slice(me.commandIndex);if(me.match&&me.pathIndexMt!==$)&&X.children[$]&&1===X.numberOfChildren&&0===X.children[$].segments.length){const Mt=bi(X.children[$],de,Q);return new wt(X.segments,Mt.children)}return Object.entries(me).forEach(([Mt,Kt])=>{"string"==typeof Kt&&(Kt=[Kt]),null!==Kt&&(et[Mt]=fi(X.children[Mt],de,Kt))}),Object.entries(X.children).forEach(([Mt,Kt])=>{void 0===me[Mt]&&(et[Mt]=Kt)}),new wt(X.segments,et)}}function zi(X,de,Q){const me=X.segments.slice(0,de);let et=0;for(;et{"string"==typeof me&&(me=[me]),null!==me&&(de[Q]=zi(new wt([],{}),0,me))}),de}function an(X){const de={};return Object.entries(X).forEach(([Q,me])=>de[Q]=`${me}`),de}function Yt(X,de,Q){return X==Q.path&&ht(de,Q.parameters)}const Un="imperative";var zn=function(X){return X[X.NavigationStart=0]="NavigationStart",X[X.NavigationEnd=1]="NavigationEnd",X[X.NavigationCancel=2]="NavigationCancel",X[X.NavigationError=3]="NavigationError",X[X.RoutesRecognized=4]="RoutesRecognized",X[X.ResolveStart=5]="ResolveStart",X[X.ResolveEnd=6]="ResolveEnd",X[X.GuardsCheckStart=7]="GuardsCheckStart",X[X.GuardsCheckEnd=8]="GuardsCheckEnd",X[X.RouteConfigLoadStart=9]="RouteConfigLoadStart",X[X.RouteConfigLoadEnd=10]="RouteConfigLoadEnd",X[X.ChildActivationStart=11]="ChildActivationStart",X[X.ChildActivationEnd=12]="ChildActivationEnd",X[X.ActivationStart=13]="ActivationStart",X[X.ActivationEnd=14]="ActivationEnd",X[X.Scroll=15]="Scroll",X[X.NavigationSkipped=16]="NavigationSkipped",X}(zn||{});class Fn{id;url;constructor(de,Q){this.id=de,this.url=Q}}class ci extends Fn{type=zn.NavigationStart;navigationTrigger;restoredState;constructor(de,Q,me="imperative",et=null){super(de,Q),this.navigationTrigger=me,this.restoredState=et}toString(){return`NavigationStart(id: ${this.id}, url: '${this.url}')`}}class rn extends Fn{urlAfterRedirects;type=zn.NavigationEnd;constructor(de,Q,me){super(de,Q),this.urlAfterRedirects=me}toString(){return`NavigationEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}')`}}var In=function(X){return X[X.Redirect=0]="Redirect",X[X.SupersededByNewNavigation=1]="SupersededByNewNavigation",X[X.NoDataFromResolver=2]="NoDataFromResolver",X[X.GuardRejected=3]="GuardRejected",X[X.Aborted=4]="Aborted",X}(In||{}),Mn=function(X){return X[X.IgnoredSameUrlNavigation=0]="IgnoredSameUrlNavigation",X[X.IgnoredByUrlHandlingStrategy=1]="IgnoredByUrlHandlingStrategy",X}(Mn||{});class Vn extends Fn{reason;code;type=zn.NavigationCancel;constructor(de,Q,me,et){super(de,Q),this.reason=me,this.code=et}toString(){return`NavigationCancel(id: ${this.id}, url: '${this.url}')`}}class ii extends Fn{reason;code;type=zn.NavigationSkipped;constructor(de,Q,me,et){super(de,Q),this.reason=me,this.code=et}}class Bn extends Fn{error;target;type=zn.NavigationError;constructor(de,Q,me,et){super(de,Q),this.error=me,this.target=et}toString(){return`NavigationError(id: ${this.id}, url: '${this.url}', error: ${this.error})`}}class ia extends Fn{urlAfterRedirects;state;type=zn.RoutesRecognized;constructor(de,Q,me,et){super(de,Q),this.urlAfterRedirects=me,this.state=et}toString(){return`RoutesRecognized(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class ra extends Fn{urlAfterRedirects;state;type=zn.GuardsCheckStart;constructor(de,Q,me,et){super(de,Q),this.urlAfterRedirects=me,this.state=et}toString(){return`GuardsCheckStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class fa extends Fn{urlAfterRedirects;state;shouldActivate;type=zn.GuardsCheckEnd;constructor(de,Q,me,et,Mt){super(de,Q),this.urlAfterRedirects=me,this.state=et,this.shouldActivate=Mt}toString(){return`GuardsCheckEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state}, shouldActivate: ${this.shouldActivate})`}}class ha extends Fn{urlAfterRedirects;state;type=zn.ResolveStart;constructor(de,Q,me,et){super(de,Q),this.urlAfterRedirects=me,this.state=et}toString(){return`ResolveStart(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class qt extends Fn{urlAfterRedirects;state;type=zn.ResolveEnd;constructor(de,Q,me,et){super(de,Q),this.urlAfterRedirects=me,this.state=et}toString(){return`ResolveEnd(id: ${this.id}, url: '${this.url}', urlAfterRedirects: '${this.urlAfterRedirects}', state: ${this.state})`}}class En{route;type=zn.RouteConfigLoadStart;constructor(de){this.route=de}toString(){return`RouteConfigLoadStart(path: ${this.route.path})`}}class Wn{route;type=zn.RouteConfigLoadEnd;constructor(de){this.route=de}toString(){return`RouteConfigLoadEnd(path: ${this.route.path})`}}class ri{snapshot;type=zn.ChildActivationStart;constructor(de){this.snapshot=de}toString(){return`ChildActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Rn{snapshot;type=zn.ChildActivationEnd;constructor(de){this.snapshot=de}toString(){return`ChildActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Hn{snapshot;type=zn.ActivationStart;constructor(de){this.snapshot=de}toString(){return`ActivationStart(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class Pi{snapshot;type=zn.ActivationEnd;constructor(de){this.snapshot=de}toString(){return`ActivationEnd(path: '${this.snapshot.routeConfig&&this.snapshot.routeConfig.path||""}')`}}class da{routerEvent;position;anchor;type=zn.Scroll;constructor(de,Q,me){this.routerEvent=de,this.position=Q,this.anchor=me}toString(){return`Scroll(anchor: '${this.anchor}', position: '${this.position?`${this.position[0]}, ${this.position[1]}`:null}')`}}class Ta{}class en{url;navigationBehaviorOptions;constructor(de,Q){this.url=de,this.navigationBehaviorOptions=Q}}function oi(X){switch(X.type){case zn.ActivationEnd:return`ActivationEnd(path: '${X.snapshot.routeConfig?.path||""}')`;case zn.ActivationStart:return`ActivationStart(path: '${X.snapshot.routeConfig?.path||""}')`;case zn.ChildActivationEnd:return`ChildActivationEnd(path: '${X.snapshot.routeConfig?.path||""}')`;case zn.ChildActivationStart:return`ChildActivationStart(path: '${X.snapshot.routeConfig?.path||""}')`;case zn.GuardsCheckEnd:return`GuardsCheckEnd(id: ${X.id}, url: '${X.url}', urlAfterRedirects: '${X.urlAfterRedirects}', state: ${X.state}, shouldActivate: ${X.shouldActivate})`;case zn.GuardsCheckStart:return`GuardsCheckStart(id: ${X.id}, url: '${X.url}', urlAfterRedirects: '${X.urlAfterRedirects}', state: ${X.state})`;case zn.NavigationCancel:return`NavigationCancel(id: ${X.id}, url: '${X.url}')`;case zn.NavigationSkipped:return`NavigationSkipped(id: ${X.id}, url: '${X.url}')`;case zn.NavigationEnd:return`NavigationEnd(id: ${X.id}, url: '${X.url}', urlAfterRedirects: '${X.urlAfterRedirects}')`;case zn.NavigationError:return`NavigationError(id: ${X.id}, url: '${X.url}', error: ${X.error})`;case zn.NavigationStart:return`NavigationStart(id: ${X.id}, url: '${X.url}')`;case zn.ResolveEnd:return`ResolveEnd(id: ${X.id}, url: '${X.url}', urlAfterRedirects: '${X.urlAfterRedirects}', state: ${X.state})`;case zn.ResolveStart:return`ResolveStart(id: ${X.id}, url: '${X.url}', urlAfterRedirects: '${X.urlAfterRedirects}', state: ${X.state})`;case zn.RouteConfigLoadEnd:return`RouteConfigLoadEnd(path: ${X.route.path})`;case zn.RouteConfigLoadStart:return`RouteConfigLoadStart(path: ${X.route.path})`;case zn.RoutesRecognized:return`RoutesRecognized(id: ${X.id}, url: '${X.url}', urlAfterRedirects: '${X.urlAfterRedirects}', state: ${X.state})`;case zn.Scroll:return`Scroll(anchor: '${X.anchor}', position: '${X.position?`${X.position[0]}, ${X.position[1]}`:null}')`}}function Fe(X){return X.outlet||$}function Ve(X){if(!X)return null;if(X.routeConfig?._injector)return X.routeConfig._injector;for(let de=X.parent;de;de=de.parent){const Q=de.routeConfig;if(Q?._loadedInjector)return Q._loadedInjector;if(Q?._injector)return Q._injector}return null}class Et{rootInjector;outlet=null;route=null;children;attachRef=null;get injector(){return Ve(this.route?.snapshot)??this.rootInjector}constructor(de){this.rootInjector=de,this.children=new Jt(this.rootInjector)}}let Jt=(()=>{class X{rootInjector;contexts=new Map;constructor(Q){this.rootInjector=Q}onChildOutletCreated(Q,me){const et=this.getOrCreateContext(Q);et.outlet=me,this.contexts.set(Q,et)}onChildOutletDestroyed(Q){const me=this.getContext(Q);me&&(me.outlet=null,me.attachRef=null)}onOutletDeactivated(){const Q=this.contexts;return this.contexts=new Map,Q}onOutletReAttached(Q){this.contexts=Q}getOrCreateContext(Q){let me=this.getContext(Q);return me||(me=new Et(this.rootInjector),this.contexts.set(Q,me)),me}getContext(Q){return this.contexts.get(Q)||null}static \u0275fac=function(me){return new(me||X)(i.KVO(i.uvJ))};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})();class ti{_root;constructor(de){this._root=de}get root(){return this._root.value}parent(de){const Q=this.pathFromRoot(de);return Q.length>1?Q[Q.length-2]:null}children(de){const Q=di(de,this._root);return Q?Q.children.map(me=>me.value):[]}firstChild(de){const Q=di(de,this._root);return Q&&Q.children.length>0?Q.children[0].value:null}siblings(de){const Q=Ii(de,this._root);return Q.length<2?[]:Q[Q.length-2].children.map(et=>et.value).filter(et=>et!==de)}pathFromRoot(de){return Ii(de,this._root).map(Q=>Q.value)}}function di(X,de){if(X===de.value)return de;for(const Q of de.children){const me=di(X,Q);if(me)return me}return null}function Ii(X,de){if(X===de.value)return[de];for(const Q of de.children){const me=Ii(X,Q);if(me.length)return me.unshift(de),me}return[]}class ca{value;children;constructor(de,Q){this.value=de,this.children=Q}toString(){return`TreeNode(${this.value})`}}function nn(X){const de={};return X&&X.children.forEach(Q=>de[Q.value.outlet]=Q),de}class ni extends ti{snapshot;constructor(de,Q){super(de),this.snapshot=Q,_a(this,de)}toString(){return this.snapshot.toString()}}function U(X){const de=function tt(X){const Mt=new Nn([],{},{},"",{},$,X,null,{});return new Ki("",new ca(Mt,[]))}(X),Q=new u.t([new pt("",{})]),me=new u.t({}),et=new u.t({}),Mt=new u.t({}),Kt=new u.t(""),Tn=new Ze(Q,me,Mt,Kt,et,$,X,de.root);return Tn.snapshot=de.root,new ni(new ca(Tn,[]),de)}class Ze{urlSubject;paramsSubject;queryParamsSubject;fragmentSubject;dataSubject;outlet;component;snapshot;_futureSnapshot;_routerState;_paramMap;_queryParamMap;title;url;params;queryParams;fragment;data;constructor(de,Q,me,et,Mt,Kt,Tn,ai){this.urlSubject=de,this.paramsSubject=Q,this.queryParamsSubject=me,this.fragmentSubject=et,this.dataSubject=Mt,this.outlet=Kt,this.component=Tn,this._futureSnapshot=ai,this.title=this.dataSubject?.pipe((0,re.T)(Gi=>Gi[Ke]))??(0,f.of)(void 0),this.url=de,this.params=Q,this.queryParams=me,this.fragment=et,this.data=Mt}get routeConfig(){return this._futureSnapshot.routeConfig}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap??=this.params.pipe((0,re.T)(de=>St(de))),this._paramMap}get queryParamMap(){return this._queryParamMap??=this.queryParams.pipe((0,re.T)(de=>St(de))),this._queryParamMap}toString(){return this.snapshot?this.snapshot.toString():`Future(${this._futureSnapshot})`}}function Xt(X,de,Q="emptyOnly"){let me;const{routeConfig:et}=X;return me=null===de||"always"!==Q&&""!==et?.path&&(de.component||de.routeConfig?.loadComponent)?{params:{...X.params},data:{...X.data},resolve:{...X.data,...X._resolvedData??{}}}:{params:{...de.params,...X.params},data:{...de.data,...X.data},resolve:{...X.data,...de.data,...et?.data,...X._resolvedData}},et&&Ga(et)&&(me.resolve[Ke]=et.title),me}class Nn{url;params;queryParams;fragment;data;outlet;component;routeConfig;_resolve;_resolvedData;_routerState;_paramMap;_queryParamMap;get title(){return this.data?.[Ke]}constructor(de,Q,me,et,Mt,Kt,Tn,ai,Gi){this.url=de,this.params=Q,this.queryParams=me,this.fragment=et,this.data=Mt,this.outlet=Kt,this.component=Tn,this.routeConfig=ai,this._resolve=Gi}get root(){return this._routerState.root}get parent(){return this._routerState.parent(this)}get firstChild(){return this._routerState.firstChild(this)}get children(){return this._routerState.children(this)}get pathFromRoot(){return this._routerState.pathFromRoot(this)}get paramMap(){return this._paramMap??=St(this.params),this._paramMap}get queryParamMap(){return this._queryParamMap??=St(this.queryParams),this._queryParamMap}toString(){return`Route(url:'${this.url.map(me=>me.toString()).join("/")}', path:'${this.routeConfig?this.routeConfig.path:""}')`}}class Ki extends ti{url;constructor(de,Q){super(Q),this.url=de,_a(this,Q)}toString(){return Ua(this._root)}}function _a(X,de){de.value._routerState=X,de.children.forEach(Q=>_a(X,Q))}function Ua(X){const de=X.children.length>0?` { ${X.children.map(Ua).join(", ")} } `:"";return`${X.value}${de}`}function $a(X){if(X.snapshot){const de=X.snapshot,Q=X._futureSnapshot;X.snapshot=Q,ht(de.queryParams,Q.queryParams)||X.queryParamsSubject.next(Q.queryParams),de.fragment!==Q.fragment&&X.fragmentSubject.next(Q.fragment),ht(de.params,Q.params)||X.paramsSubject.next(Q.params),function nt(X,de){if(X.length!==de.length)return!1;for(let Q=0;Qht(Q.parameters,de[me].parameters))}(X.url,de.url);return Q&&!(!X.parent!=!de.parent)&&(!X.parent||ns(X.parent,de.parent))}function Ga(X){return"string"==typeof X.title||null===X.title}const As=new i.nKC("");let hr=(()=>{class X{activated=null;get activatedComponentRef(){return this.activated}_activatedRoute=null;name=$;activateEvents=new v.bkB;deactivateEvents=new v.bkB;attachEvents=new v.bkB;detachEvents=new v.bkB;routerOutletData=(0,T.hFB)();parentContexts=(0,i.WQX)(Jt);location=(0,i.WQX)(v.c1b);changeDetector=(0,i.WQX)(T.gRc);inputBinder=(0,i.WQX)(fr,{optional:!0});supportsBindingToComponentInputs=!0;ngOnChanges(Q){if(Q.name){const{firstChange:me,previousValue:et}=Q.name;if(me)return;this.isTrackedInParentContexts(et)&&(this.deactivate(),this.parentContexts.onChildOutletDestroyed(et)),this.initializeOutletWithName()}}ngOnDestroy(){this.isTrackedInParentContexts(this.name)&&this.parentContexts.onChildOutletDestroyed(this.name),this.inputBinder?.unsubscribeFromRouteData(this)}isTrackedInParentContexts(Q){return this.parentContexts.getContext(Q)?.outlet===this}ngOnInit(){this.initializeOutletWithName()}initializeOutletWithName(){if(this.parentContexts.onChildOutletCreated(this.name,this),this.activated)return;const Q=this.parentContexts.getContext(this.name);Q?.route&&(Q.attachRef?this.attach(Q.attachRef,Q.route):this.activateWith(Q.route,Q.injector))}get isActivated(){return!!this.activated}get component(){if(!this.activated)throw new i.buA(4012,!1);return this.activated.instance}get activatedRoute(){if(!this.activated)throw new i.buA(4012,!1);return this._activatedRoute}get activatedRouteData(){return this._activatedRoute?this._activatedRoute.snapshot.data:{}}detach(){if(!this.activated)throw new i.buA(4012,!1);this.location.detach();const Q=this.activated;return this.activated=null,this._activatedRoute=null,this.detachEvents.emit(Q.instance),Q}attach(Q,me){this.activated=Q,this._activatedRoute=me,this.location.insert(Q.hostView),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.attachEvents.emit(Q.instance)}deactivate(){if(this.activated){const Q=this.component;this.activated.destroy(),this.activated=null,this._activatedRoute=null,this.deactivateEvents.emit(Q)}}activateWith(Q,me){if(this.isActivated)throw new i.buA(4013,!1);this._activatedRoute=Q;const et=this.location,Kt=Q.snapshot.component,Tn=this.parentContexts.getOrCreateContext(this.name).children,ai=new mr(Q,Tn,et.injector,this.routerOutletData);this.activated=et.createComponent(Kt,{index:et.length,injector:ai,environmentInjector:me}),this.changeDetector.markForCheck(),this.inputBinder?.bindActivatedRouteToOutletComponent(this),this.activateEvents.emit(this.activated.instance)}static \u0275fac=function(me){return new(me||X)};static \u0275dir=v.FsC({type:X,selectors:[["router-outlet"]],inputs:{name:"name",routerOutletData:[1,"routerOutletData"]},outputs:{activateEvents:"activate",deactivateEvents:"deactivate",attachEvents:"attach",detachEvents:"detach"},exportAs:["outlet"],features:[v.OA$]})}return X})();class mr{route;childContexts;parent;outletData;constructor(de,Q,me,et){this.route=de,this.childContexts=Q,this.parent=me,this.outletData=et}get(de,Q){return de===Ze?this.route:de===Jt?this.childContexts:de===As?this.outletData:this.parent.get(de,Q)}}const fr=new i.nKC("");let zo=(()=>{class X{outletDataSubscriptions=new Map;bindActivatedRouteToOutletComponent(Q){this.unsubscribeFromRouteData(Q),this.subscribeToRouteData(Q)}unsubscribeFromRouteData(Q){this.outletDataSubscriptions.get(Q)?.unsubscribe(),this.outletDataSubscriptions.delete(Q)}subscribeToRouteData(Q){const{activatedRoute:me}=Q,et=(0,L.z)([me.queryParams,me.params,me.data]).pipe((0,xe.n)(([Mt,Kt,Tn],ai)=>(Tn={...Mt,...Kt,...Tn},0===ai?(0,f.of)(Tn):Promise.resolve(Tn)))).subscribe(Mt=>{if(!Q.isActivated||!Q.activatedComponentRef||Q.activatedRoute!==me||null===me.component)return void this.unsubscribeFromRouteData(Q);const Kt=(0,T.HJs)(me.component);if(Kt)for(const{templateName:Tn}of Kt.inputs)Q.activatedComponentRef.setInput(Tn,Mt[Tn]);else this.unsubscribeFromRouteData(Q)});this.outletDataSubscriptions.set(Q,et)}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac})}return X})(),pr=(()=>{class X{static \u0275fac=function(me){return new(me||X)};static \u0275cmp=v.VBU({type:X,selectors:[["ng-component"]],exportAs:["emptyRouterOutlet"],decls:1,vars:0,template:function(me,et){1&me&&v.nrm(0,"router-outlet")},dependencies:[hr],encapsulation:2})}return X})();function gr(X){const de=X.children&&X.children.map(gr),Q=de?{...X,children:de}:{...X};return!Q.component&&!Q.loadComponent&&(de||Q.loadChildren)&&Q.outlet&&Q.outlet!==$&&(Q.component=pr),Q}function Zs(X,de,Q){if(Q&&X.shouldReuseRoute(de.value,Q.value.snapshot)){const me=Q.value;me._futureSnapshot=de.value;const et=function jr(X,de,Q){return de.children.map(me=>{for(const et of Q.children)if(X.shouldReuseRoute(me.value,et.value.snapshot))return Zs(X,me,et);return Zs(X,me)})}(X,de,Q);return new ca(me,et)}{if(X.shouldAttach(de.value)){const Mt=X.retrieve(de.value);if(null!==Mt){const Kt=Mt.route;return Kt.value._futureSnapshot=de.value,Kt.children=de.children.map(Tn=>Zs(X,Tn)),Kt}}const me=function Er(X){return new Ze(new u.t(X.url),new u.t(X.params),new u.t(X.queryParams),new u.t(X.fragment),new u.t(X.data),X.outlet,X.component,X)}(de.value),et=de.children.map(Mt=>Zs(X,Mt));return new ca(me,et)}}class Ka{redirectTo;navigationBehaviorOptions;constructor(de,Q){this.redirectTo=de,this.navigationBehaviorOptions=Q}}const Ps="ngNavigationCancelingError";function kr(X,de){const{redirectTo:Q,navigationBehaviorOptions:me}=un(de)?{redirectTo:de,navigationBehaviorOptions:void 0}:de,et=js(!1,In.Redirect);return et.url=Q,et.navigationBehaviorOptions=me,et}function js(X,de){const Q=new Error(`NavigationCancelingError: ${X||""}`);return Q[Ps]=!0,Q.cancellationCode=de,Q}function Zr(X){return!!X&&X[Ps]}class Co{routeReuseStrategy;futureState;currState;forwardEvent;inputBindingEnabled;constructor(de,Q,me,et,Mt){this.routeReuseStrategy=de,this.futureState=Q,this.currState=me,this.forwardEvent=et,this.inputBindingEnabled=Mt}activate(de){const Q=this.futureState._root,me=this.currState?this.currState._root:null;this.deactivateChildRoutes(Q,me,de),$a(this.futureState.root),this.activateChildRoutes(Q,me,de)}deactivateChildRoutes(de,Q,me){const et=nn(Q);de.children.forEach(Mt=>{const Kt=Mt.value.outlet;this.deactivateRoutes(Mt,et[Kt],me),delete et[Kt]}),Object.values(et).forEach(Mt=>{this.deactivateRouteAndItsChildren(Mt,me)})}deactivateRoutes(de,Q,me){const et=de.value,Mt=Q?Q.value:null;if(et===Mt)if(et.component){const Kt=me.getContext(et.outlet);Kt&&this.deactivateChildRoutes(de,Q,Kt.children)}else this.deactivateChildRoutes(de,Q,me);else Mt&&this.deactivateRouteAndItsChildren(Q,me)}deactivateRouteAndItsChildren(de,Q){de.value.component&&this.routeReuseStrategy.shouldDetach(de.value.snapshot)?this.detachAndStoreRouteSubtree(de,Q):this.deactivateRouteAndOutlet(de,Q)}detachAndStoreRouteSubtree(de,Q){const me=Q.getContext(de.value.outlet),et=me&&de.value.component?me.children:Q,Mt=nn(de);for(const Kt of Object.values(Mt))this.deactivateRouteAndItsChildren(Kt,et);if(me&&me.outlet){const Kt=me.outlet.detach(),Tn=me.children.onOutletDeactivated();this.routeReuseStrategy.store(de.value.snapshot,{componentRef:Kt,route:de,contexts:Tn})}}deactivateRouteAndOutlet(de,Q){const me=Q.getContext(de.value.outlet),et=me&&de.value.component?me.children:Q,Mt=nn(de);for(const Kt of Object.values(Mt))this.deactivateRouteAndItsChildren(Kt,et);me&&(me.outlet&&(me.outlet.deactivate(),me.children.onOutletDeactivated()),me.attachRef=null,me.route=null)}activateChildRoutes(de,Q,me){const et=nn(Q);de.children.forEach(Mt=>{this.activateRoutes(Mt,et[Mt.value.outlet],me),this.forwardEvent(new Pi(Mt.value.snapshot))}),de.children.length&&this.forwardEvent(new Rn(de.value.snapshot))}activateRoutes(de,Q,me){const et=de.value,Mt=Q?Q.value:null;if($a(et),et===Mt)if(et.component){const Kt=me.getOrCreateContext(et.outlet);this.activateChildRoutes(de,Q,Kt.children)}else this.activateChildRoutes(de,Q,me);else if(et.component){const Kt=me.getOrCreateContext(et.outlet);if(this.routeReuseStrategy.shouldAttach(et.snapshot)){const Tn=this.routeReuseStrategy.retrieve(et.snapshot);this.routeReuseStrategy.store(et.snapshot,null),Kt.children.onOutletReAttached(Tn.contexts),Kt.attachRef=Tn.componentRef,Kt.route=Tn.route.value,Kt.outlet&&Kt.outlet.attach(Tn.componentRef,Tn.route.value),$a(Tn.route.value),this.activateChildRoutes(de,null,Kt.children)}else Kt.attachRef=null,Kt.route=et,Kt.outlet&&Kt.outlet.activateWith(et,Kt.injector),this.activateChildRoutes(de,null,Kt.children)}else this.activateChildRoutes(de,null,me)}}class Js{path;route;constructor(de){this.path=de,this.route=this.path[this.path.length-1]}}class _r{component;route;constructor(de,Q){this.component=de,this.route=Q}}function rs(X,de,Q){const me=X._root;return Hs(me,de?de._root:null,Q,[me.value])}function is(X,de){const Q=Symbol(),me=de.get(X,Q);return me===Q?"function"!=typeof X||(0,i.muV)(X)?de.get(X):X:me}function Hs(X,de,Q,me,et={canDeactivateChecks:[],canActivateChecks:[]}){const Mt=nn(de);return X.children.forEach(Kt=>{(function Ws(X,de,Q,me,et={canDeactivateChecks:[],canActivateChecks:[]}){const Mt=X.value,Kt=de?de.value:null,Tn=Q?Q.getContext(X.value.outlet):null;if(Kt&&Mt.routeConfig===Kt.routeConfig){const ai=function Mr(X,de,Q){if("function"==typeof Q)return Q(X,de);switch(Q){case"pathParamsChange":return!gn(X.url,de.url);case"pathParamsOrQueryParamsChange":return!gn(X.url,de.url)||!ht(X.queryParams,de.queryParams);case"always":return!0;case"paramsOrQueryParamsChange":return!ns(X,de)||!ht(X.queryParams,de.queryParams);default:return!ns(X,de)}}(Kt,Mt,Mt.routeConfig.runGuardsAndResolvers);ai?et.canActivateChecks.push(new Js(me)):(Mt.data=Kt.data,Mt._resolvedData=Kt._resolvedData),Hs(X,de,Mt.component?Tn?Tn.children:null:Q,me,et),ai&&Tn&&Tn.outlet&&Tn.outlet.isActivated&&et.canDeactivateChecks.push(new _r(Tn.outlet.component,Kt))}else Kt&&Ui(de,Tn,et),et.canActivateChecks.push(new Js(me)),Hs(X,null,Mt.component?Tn?Tn.children:null:Q,me,et)})(Kt,Mt[Kt.value.outlet],Q,me.concat([Kt.value]),et),delete Mt[Kt.value.outlet]}),Object.entries(Mt).forEach(([Kt,Tn])=>Ui(Tn,Q.getContext(Kt),et)),et}function Ui(X,de,Q){const me=nn(X),et=X.value;Object.entries(me).forEach(([Mt,Kt])=>{Ui(Kt,et.component?de?de.children.getContext(Mt):null:de,Q)}),Q.canDeactivateChecks.push(new _r(et.component&&de&&de.outlet&&de.outlet.isActivated?de.outlet.component:null,et))}function xs(X){return"function"==typeof X}function wa(X){return X instanceof C.G||"EmptyError"===X?.name}const ja=Symbol("INITIAL_VALUE");function Za(){return(0,xe.n)(X=>(0,L.z)(X.map(de=>de.pipe((0,Ee.s)(1),(0,V.Z)(ja)))).pipe((0,re.T)(de=>{for(const Q of de)if(!0!==Q){if(Q===ja)return ja;if(!1===Q||Or(Q))return Q}return!0}),(0,ce.p)(de=>de!==ja),(0,Ee.s)(1)))}function Or(X){return un(X)||X instanceof Ka}function ln(X){return(0,Pe.F)((0,De.M)(de=>{if("boolean"!=typeof de)throw kr(0,de)}),(0,re.T)(de=>!0===de))}class ua{segmentGroup;constructor(de){this.segmentGroup=de||null}}class Es extends Error{urlTree;constructor(de){super(),this.urlTree=de}}function kt(X){return(0,le.$)(new ua(X))}function On(X){return(0,le.$)(new i.buA(4e3,!1))}class mn{urlSerializer;urlTree;constructor(de,Q){this.urlSerializer=de,this.urlTree=Q}lineralizeSegments(de,Q){let me=[],et=Q.root;for(;;){if(me=me.concat(et.segments),0===et.numberOfChildren)return(0,f.of)(me);if(et.numberOfChildren>1||!et.children[$])return On();et=et.children[$]}}applyRedirectCommands(de,Q,me,et,Mt){return function Ln(X,de,Q){if("string"==typeof X)return(0,f.of)(X);const me=X,{queryParams:et,fragment:Mt,routeConfig:Kt,url:Tn,outlet:ai,params:Gi,data:La,title:as}=de;return Qe((0,i.N4e)(Q,()=>me({params:Gi,data:La,queryParams:et,fragment:Mt,routeConfig:Kt,url:Tn,outlet:ai,title:as})))}(Q,et,Mt).pipe((0,re.T)(Kt=>{if(Kt instanceof Ue)throw new Es(Kt);const Tn=this.applyRedirectCreateUrlTree(Kt,this.urlSerializer.parse(Kt),de,me);if("/"===Kt[0])throw new Es(Tn);return Tn}))}applyRedirectCreateUrlTree(de,Q,me,et){const Mt=this.createSegmentGroup(de,Q.root,me,et);return new Ue(Mt,this.createQueryParams(Q.queryParams,this.urlTree.queryParams),Q.fragment)}createQueryParams(de,Q){const me={};return Object.entries(de).forEach(([et,Mt])=>{if("string"==typeof Mt&&":"===Mt[0]){const Tn=Mt.substring(1);me[et]=Q[Tn]}else me[et]=Mt}),me}createSegmentGroup(de,Q,me,et){const Mt=this.createSegments(de,Q.segments,me,et);let Kt={};return Object.entries(Q.children).forEach(([Tn,ai])=>{Kt[Tn]=this.createSegmentGroup(de,ai,me,et)}),new wt(Mt,Kt)}createSegments(de,Q,me,et){return Q.map(Mt=>":"===Mt.path[0]?this.findPosParam(de,Mt,et):this.findOrReturn(Mt,me))}findPosParam(de,Q,me){const et=me[Q.path.substring(1)];if(!et)throw new i.buA(4001,!1);return et}findOrReturn(de,Q){let me=0;for(const et of Q){if(et.path===de.path)return Q.splice(me),et;me++}return de}}const Ei={matched:!1,consumedSegments:[],remainingSegments:[],parameters:{},positionalParamSegments:{}};function xa(X,de,Q,me,et){const Mt=cs(X,de,Q);return Mt.matched?(me=function bn(X,de){return X.providers&&!X._injector&&(X._injector=(0,v.Ol2)(X.providers,de,`Route: ${X.path}`)),X._injector??de}(de,me),function Oi(X,de,Q,me){const et=de.canMatch;if(!et||0===et.length)return(0,f.of)(!0);const Mt=et.map(Kt=>{const Tn=is(Kt,X);return Qe(function Xs(X){return X&&xs(X.canMatch)}(Tn)?Tn.canMatch(de,Q):(0,i.N4e)(X,()=>Tn(de,Q)))});return(0,f.of)(Mt).pipe(Za(),ln())}(me,de,Q).pipe((0,re.T)(Kt=>!0===Kt?Mt:{...Ei}))):(0,f.of)(Mt)}function cs(X,de,Q){if("**"===de.path)return function qr(X){return{matched:!0,parameters:X.length>0?fe(X).parameters:{},consumedSegments:X,remainingSegments:[],positionalParamSegments:{}}}(Q);if(""===de.path)return"full"===de.pathMatch&&(X.hasChildren()||Q.length>0)?{...Ei}:{matched:!0,consumedSegments:[],remainingSegments:Q,parameters:{},positionalParamSegments:{}};const et=(de.matcher||ot)(Q,X,de);if(!et)return{...Ei};const Mt={};Object.entries(et.posParams??{}).forEach(([Tn,ai])=>{Mt[Tn]=ai.path});const Kt=et.consumed.length>0?{...Mt,...et.consumed[et.consumed.length-1].parameters}:Mt;return{matched:!0,consumedSegments:et.consumed,remainingSegments:Q.slice(et.consumed.length),parameters:Kt,positionalParamSegments:et.posParams??{}}}function xo(X,de,Q,me){return Q.length>0&&function Ml(X,de,Q){return Q.some(me=>tr(X,de,me)&&Fe(me)!==$)}(X,Q,me)?{segmentGroup:new wt(de,el(me,new wt(Q,X.children))),slicedSegments:[]}:0===Q.length&&function Ss(X,de,Q){return Q.some(me=>tr(X,de,me))}(X,Q,me)?{segmentGroup:new wt(X.segments,Ms(X,Q,me,X.children)),slicedSegments:Q}:{segmentGroup:new wt(X.segments,X.children),slicedSegments:Q}}function Ms(X,de,Q,me){const et={};for(const Mt of Q)if(tr(X,de,Mt)&&!me[Fe(Mt)]){const Kt=new wt([],{});et[Fe(Mt)]=Kt}return{...me,...et}}function el(X,de){const Q={};Q[$]=de;for(const me of X)if(""===me.path&&Fe(me)!==$){const et=new wt([],{});Q[Fe(me)]=et}return Q}function tr(X,de,Q){return(!(X.hasChildren()||de.length>0)||"full"!==Q.pathMatch)&&""===Q.path}class Mo{}class zl{injector;configLoader;rootComponentType;config;urlTree;paramsInheritanceStrategy;urlSerializer;applyRedirects;absoluteRedirectCount=0;allowRedirects=!0;constructor(de,Q,me,et,Mt,Kt,Tn){this.injector=de,this.configLoader=Q,this.rootComponentType=me,this.config=et,this.urlTree=Mt,this.paramsInheritanceStrategy=Kt,this.urlSerializer=Tn,this.applyRedirects=new mn(this.urlSerializer,this.urlTree)}noMatchError(de){return new i.buA(4002,`'${de.segmentGroup}'`)}recognize(){const de=xo(this.urlTree.root,[],[],this.config).segmentGroup;return this.match(de).pipe((0,re.T)(({children:Q,rootSnapshot:me})=>{const et=new ca(me,Q),Mt=new Ki("",et),Kt=function Nt(X,de,Q=null,me=null){return xn(dn(X),de,Q,me)}(me,[],this.urlTree.queryParams,this.urlTree.fragment);return Kt.queryParams=this.urlTree.queryParams,Mt.url=this.urlSerializer.serialize(Kt),{state:Mt,tree:Kt}}))}match(de){const Q=new Nn([],Object.freeze({}),Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Object.freeze({}),$,this.rootComponentType,null,{});return this.processSegmentGroup(this.injector,this.config,de,$,Q).pipe((0,re.T)(me=>({children:me,rootSnapshot:Q})),(0,Re.W)(me=>{if(me instanceof Es)return this.urlTree=me.urlTree,this.match(me.urlTree.root);throw me instanceof ua?this.noMatchError(me):me}))}processSegmentGroup(de,Q,me,et,Mt){return 0===me.segments.length&&me.hasChildren()?this.processChildren(de,Q,me,Mt):this.processSegment(de,Q,me,me.segments,et,!0,Mt).pipe((0,re.T)(Kt=>Kt instanceof ca?[Kt]:[]))}processChildren(de,Q,me,et){const Mt=[];for(const Kt of Object.keys(me.children))"primary"===Kt?Mt.unshift(Kt):Mt.push(Kt);return(0,O.H)(Mt).pipe((0,J.H)(Kt=>{const Tn=me.children[Kt],ai=function Wt(X,de){const Q=X.filter(me=>Fe(me)===de);return Q.push(...X.filter(me=>Fe(me)!==de)),Q}(Q,Kt);return this.processSegmentGroup(de,ai,Tn,Kt,et)}),(0,Xe.S)((Kt,Tn)=>(Kt.push(...Tn),Kt)),(0,_e.U)(null),function ie(X,de){const Q=arguments.length>=2;return me=>me.pipe(X?(0,ce.p)((et,Mt)=>X(et,Mt,me)):te.D,lt(1),Q?(0,_e.U)(de):(0,Le.v)(()=>new C.G))}(),(0,be.Z)(Kt=>{if(null===Kt)return kt(me);const Tn=mi(Kt);return function ds(X){X.sort((de,Q)=>de.value.outlet===$?-1:Q.value.outlet===$?1:de.value.outlet.localeCompare(Q.value.outlet))}(Tn),(0,f.of)(Tn)}))}processSegment(de,Q,me,et,Mt,Kt,Tn){return(0,O.H)(Q).pipe((0,J.H)(ai=>this.processSegmentAgainstRoute(ai._injector??de,Q,ai,me,et,Mt,Kt,Tn).pipe((0,Re.W)(Gi=>{if(Gi instanceof ua)return(0,f.of)(null);throw Gi}))),(0,ne.$)(ai=>!!ai),(0,Re.W)(ai=>{if(wa(ai))return function Eo(X,de,Q){return 0===de.length&&!X.children[Q]}(me,et,Mt)?(0,f.of)(new Mo):kt(me);throw ai}))}processSegmentAgainstRoute(de,Q,me,et,Mt,Kt,Tn,ai){return Fe(me)===Kt||Kt!==$&&tr(et,Mt,me)?void 0===me.redirectTo?this.matchSegmentAgainstRoute(de,et,me,Mt,Kt,ai):this.allowRedirects&&Tn?this.expandSegmentAgainstRouteUsingRedirect(de,et,Q,me,Mt,Kt,ai):kt(et):kt(et)}expandSegmentAgainstRouteUsingRedirect(de,Q,me,et,Mt,Kt,Tn){const{matched:ai,parameters:Gi,consumedSegments:La,positionalParamSegments:as,remainingSegments:Ns}=cs(Q,et,Mt);if(!ai)return kt(Q);"string"==typeof et.redirectTo&&"/"===et.redirectTo[0]&&(this.absoluteRedirectCount++,this.absoluteRedirectCount>31&&(this.allowRedirects=!1));const il=new Nn(Mt,Gi,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Go(et),Fe(et),et.component??et._loadedComponent??null,et,gl(et)),ar=Xt(il,Tn,this.paramsInheritanceStrategy);return il.params=Object.freeze(ar.params),il.data=Object.freeze(ar.data),this.applyRedirects.applyRedirectCommands(La,et.redirectTo,as,il,de).pipe((0,xe.n)(oo=>this.applyRedirects.lineralizeSegments(et,oo)),(0,be.Z)(oo=>this.processSegment(de,me,Q,oo.concat(Ns),Kt,!1,Tn)))}matchSegmentAgainstRoute(de,Q,me,et,Mt,Kt){const Tn=xa(Q,me,et,de);return"**"===me.path&&(Q.children={}),Tn.pipe((0,xe.n)(ai=>ai.matched?this.getChildConfig(de=me._injector??de,me,et).pipe((0,xe.n)(({routes:Gi})=>{const La=me._loadedInjector??de,{parameters:as,consumedSegments:Ns,remainingSegments:il}=ai,ar=new Nn(Ns,as,Object.freeze({...this.urlTree.queryParams}),this.urlTree.fragment,Go(me),Fe(me),me.component??me._loadedComponent??null,me,gl(me)),ro=Xt(ar,Kt,this.paramsInheritanceStrategy);ar.params=Object.freeze(ro.params),ar.data=Object.freeze(ro.data);const{segmentGroup:oo,slicedSegments:Il}=xo(Q,Ns,il,Gi);if(0===Il.length&&oo.hasChildren())return this.processChildren(La,Gi,oo,ar).pipe((0,re.T)(ec=>new ca(ar,ec)));if(0===Gi.length&&0===Il.length)return(0,f.of)(new ca(ar,[]));const mc=Fe(me)===Mt;return this.processSegment(La,Gi,oo,Il,mc?$:Mt,!0,ar).pipe((0,re.T)(ec=>new ca(ar,ec instanceof ca?[ec]:[])))})):kt(Q)))}getChildConfig(de,Q,me){return Q.children?(0,f.of)({routes:Q.children,injector:de}):Q.loadChildren?void 0!==Q._loadedRoutes?(0,f.of)({routes:Q._loadedRoutes,injector:Q._loadedInjector}):function mt(X,de,Q,me){const et=de.canLoad;if(void 0===et||0===et.length)return(0,f.of)(!0);const Mt=et.map(Kt=>{const Tn=is(Kt,X);return Qe(function qs(X){return X&&xs(X.canLoad)}(Tn)?Tn.canLoad(de,Q):(0,i.N4e)(X,()=>Tn(de,Q)))});return(0,f.of)(Mt).pipe(Za(),ln())}(de,Q,me).pipe((0,be.Z)(et=>et?this.configLoader.loadChildren(de,Q).pipe((0,De.M)(Mt=>{Q._loadedRoutes=Mt.routes,Q._loadedInjector=Mt.injector})):function $e(){return(0,le.$)(js(!1,In.GuardRejected))}())):(0,f.of)({routes:[],injector:de})}}function nr(X){const de=X.value.routeConfig;return de&&""===de.path}function mi(X){const de=[],Q=new Set;for(const me of X){if(!nr(me)){de.push(me);continue}const et=de.find(Mt=>me.value.routeConfig===Mt.value.routeConfig);void 0!==et?(et.children.push(...me.children),Q.add(et)):de.push(me)}for(const me of Q){const et=mi(me.children);de.push(new ca(me.value,et))}return de.filter(me=>!Q.has(me))}function Go(X){return X.data||{}}function gl(X){return X.resolve||{}}function mo(X){const de=X.children.map(Q=>mo(Q)).flat();return[X,...de]}function us(X){return(0,xe.n)(de=>{const Q=X(de);return Q?(0,O.H)(Q).pipe((0,re.T)(()=>de)):(0,f.of)(de)})}let Dl=(()=>{class X{buildTitle(Q){let me,et=Q.root;for(;void 0!==et;)me=this.getResolvedTitleForRoute(et)??me,et=et.children.find(Mt=>Mt.outlet===$);return me}getResolvedTitleForRoute(Q){return Q.data[Ke]}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:()=>(0,i.WQX)(eo),providedIn:"root"})}return X})(),eo=(()=>{class X extends Dl{title;constructor(Q){super(),this.title=Q}updateTitle(Q){const me=this.buildTitle(Q);void 0!==me&&this.title.setTitle(me)}static \u0275fac=function(me){return new(me||X)(i.KVO(H.hE))};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})();const So=new i.nKC("",{providedIn:"root",factory:()=>({})}),fo=new i.nKC("");let To=(()=>{class X{componentLoaders=new WeakMap;childrenLoaders=new WeakMap;onLoadStartListener;onLoadEndListener;compiler=(0,i.WQX)(v.Ql9);loadComponent(Q,me){if(this.componentLoaders.get(me))return this.componentLoaders.get(me);if(me._loadedComponent)return(0,f.of)(me._loadedComponent);this.onLoadStartListener&&this.onLoadStartListener(me);const et=Qe((0,i.N4e)(Q,()=>me.loadComponent())).pipe((0,re.T)(to),(0,xe.n)(wl),(0,De.M)(Kt=>{this.onLoadEndListener&&this.onLoadEndListener(me),me._loadedComponent=Kt}),(0,P.j)(()=>{this.componentLoaders.delete(me)})),Mt=new Ae.G(et,()=>new j.B).pipe((0,F.B)());return this.componentLoaders.set(me,Mt),Mt}loadChildren(Q,me){if(this.childrenLoaders.get(me))return this.childrenLoaders.get(me);if(me._loadedRoutes)return(0,f.of)({routes:me._loadedRoutes,injector:me._loadedInjector});this.onLoadStartListener&&this.onLoadStartListener(me);const Mt=function Ho(X,de,Q,me){return Qe((0,i.N4e)(Q,()=>X.loadChildren())).pipe((0,re.T)(to),(0,xe.n)(wl),(0,be.Z)(et=>et instanceof v.PYt||Array.isArray(et)?(0,f.of)(et):(0,O.H)(de.compileModuleAsync(et))),(0,re.T)(et=>{me&&me(X);let Mt,Kt,Tn=!1;return Array.isArray(et)?(Kt=et,!0):(Mt=et.create(Q).injector,Kt=Mt.get(fo,[],{optional:!0,self:!0}).flat()),{routes:Kt.map(gr),injector:Mt}}))}(me,this.compiler,Q,this.onLoadEndListener).pipe((0,P.j)(()=>{this.childrenLoaders.delete(me)})),Kt=new Ae.G(Mt,()=>new j.B).pipe((0,F.B)());return this.childrenLoaders.set(me,Kt),Kt}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})();function to(X){return function _l(X){return X&&"object"==typeof X&&"default"in X}(X)?X.default:X}function wl(X){return(0,f.of)(X)}let no=(()=>{class X{static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:()=>(0,i.WQX)(Al),providedIn:"root"})}return X})(),Al=(()=>{class X{shouldProcessUrl(Q){return!0}extract(Q){return Q}merge(Q,me){return Q}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})();const io=new i.nKC(""),Ys=new i.nKC("");function Dr(X,de,Q){const me=X.get(Ys),et=X.get(i.qQL);if(!et.startViewTransition||me.skipNextTransition)return me.skipNextTransition=!1,new Promise(Gi=>setTimeout(Gi));let Mt;const Kt=new Promise(Gi=>{Mt=Gi}),Tn=et.startViewTransition(()=>(Mt(),function li(X){return new Promise(de=>{(0,v.mal)({read:()=>setTimeout(de)},{injector:X})})}(X)));Tn.ready.catch(Gi=>{});const{onViewTransitionCreated:ai}=me;return ai&&(0,i.N4e)(X,()=>ai({transition:Tn,from:de,to:Q})),Kt}const Wr=new i.nKC("");let ao=(()=>{class X{currentNavigation=(0,i.vPA)(null,{equal:()=>!1});currentTransition=null;lastSuccessfulNavigation=null;events=new j.B;transitionAbortWithErrorSubject=new j.B;configLoader=(0,i.WQX)(To);environmentInjector=(0,i.WQX)(i.uvJ);destroyRef=(0,i.WQX)(i.abz);urlSerializer=(0,i.WQX)(vi);rootContexts=(0,i.WQX)(Jt);location=(0,i.WQX)(d.aZ);inputBindingEnabled=null!==(0,i.WQX)(fr,{optional:!0});titleStrategy=(0,i.WQX)(Dl);options=(0,i.WQX)(So,{optional:!0})||{};paramsInheritanceStrategy=this.options.paramsInheritanceStrategy||"emptyOnly";urlHandlingStrategy=(0,i.WQX)(no);createViewTransition=(0,i.WQX)(io,{optional:!0});navigationErrorHandler=(0,i.WQX)(Wr,{optional:!0});navigationId=0;get hasRequestedNavigation(){return 0!==this.navigationId}transitions;afterPreactivation=()=>(0,f.of)(void 0);rootComponentType=null;destroyed=!1;constructor(){this.configLoader.onLoadEndListener=et=>this.events.next(new Wn(et)),this.configLoader.onLoadStartListener=et=>this.events.next(new En(et)),this.destroyRef.onDestroy(()=>{this.destroyed=!0})}complete(){this.transitions?.complete()}handleNavigationRequest(Q){const me=++this.navigationId;(0,w.O8)(()=>{this.transitions?.next({...Q,extractedUrl:this.urlHandlingStrategy.extract(Q.rawUrl),targetSnapshot:null,targetRouterState:null,guards:{canActivateChecks:[],canDeactivateChecks:[]},guardsResult:null,abortController:new AbortController,id:me})})}setupNavigations(Q){return this.transitions=new u.t(null),this.transitions.pipe((0,ce.p)(me=>null!==me),(0,xe.n)(me=>{let et=!1;return(0,f.of)(me).pipe((0,xe.n)(Mt=>{if(this.navigationId>me.id)return this.cancelNavigationTransition(me,"",In.SupersededByNewNavigation),Ce.w;this.currentTransition=me,this.currentNavigation.set({id:Mt.id,initialUrl:Mt.rawUrl,extractedUrl:Mt.extractedUrl,targetBrowserUrl:"string"==typeof Mt.extras.browserUrl?this.urlSerializer.parse(Mt.extras.browserUrl):Mt.extras.browserUrl,trigger:Mt.source,extras:Mt.extras,previousNavigation:this.lastSuccessfulNavigation?{...this.lastSuccessfulNavigation,previousNavigation:null}:null,abort:()=>Mt.abortController.abort()});const Kt=!Q.navigated||this.isUpdatingInternalState()||this.isUpdatedBrowserUrl();if(!Kt&&"reload"!==(Mt.extras.onSameUrlNavigation??Q.onSameUrlNavigation))return this.events.next(new ii(Mt.id,this.urlSerializer.serialize(Mt.rawUrl),"",Mn.IgnoredSameUrlNavigation)),Mt.resolve(!1),Ce.w;if(this.urlHandlingStrategy.shouldProcessUrl(Mt.rawUrl))return(0,f.of)(Mt).pipe((0,xe.n)(ai=>(this.events.next(new ci(ai.id,this.urlSerializer.serialize(ai.extractedUrl),ai.source,ai.restoredState)),ai.id!==this.navigationId?Ce.w:Promise.resolve(ai))),function Tr(X,de,Q,me,et,Mt){return(0,be.Z)(Kt=>function Sl(X,de,Q,me,et,Mt,Kt="emptyOnly"){return new zl(X,de,Q,me,et,Kt,Mt).recognize()}(X,de,Q,me,Kt.extractedUrl,et,Mt).pipe((0,re.T)(({state:Tn,tree:ai})=>({...Kt,targetSnapshot:Tn,urlAfterRedirects:ai}))))}(this.environmentInjector,this.configLoader,this.rootComponentType,Q.config,this.urlSerializer,this.paramsInheritanceStrategy),(0,De.M)(ai=>{me.targetSnapshot=ai.targetSnapshot,me.urlAfterRedirects=ai.urlAfterRedirects,this.currentNavigation.update(La=>(La.finalUrl=ai.urlAfterRedirects,La));const Gi=new ia(ai.id,this.urlSerializer.serialize(ai.extractedUrl),this.urlSerializer.serialize(ai.urlAfterRedirects),ai.targetSnapshot);this.events.next(Gi)}));if(Kt&&this.urlHandlingStrategy.shouldProcessUrl(Mt.currentRawUrl)){const{id:ai,extractedUrl:Gi,source:La,restoredState:as,extras:Ns}=Mt,il=new ci(ai,this.urlSerializer.serialize(Gi),La,as);this.events.next(il);const ar=U(this.rootComponentType).snapshot;return this.currentTransition=me={...Mt,targetSnapshot:ar,urlAfterRedirects:Gi,extras:{...Ns,skipLocationChange:!1,replaceUrl:!1}},this.currentNavigation.update(ro=>(ro.finalUrl=Gi,ro)),(0,f.of)(me)}return this.events.next(new ii(Mt.id,this.urlSerializer.serialize(Mt.extractedUrl),"",Mn.IgnoredByUrlHandlingStrategy)),Mt.resolve(!1),Ce.w}),(0,De.M)(Mt=>{const Kt=new ra(Mt.id,this.urlSerializer.serialize(Mt.extractedUrl),this.urlSerializer.serialize(Mt.urlAfterRedirects),Mt.targetSnapshot);this.events.next(Kt)}),(0,re.T)(Mt=>(this.currentTransition=me={...Mt,guards:rs(Mt.targetSnapshot,Mt.currentSnapshot,this.rootContexts)},me)),function Rr(X,de){return(0,be.Z)(Q=>{const{targetSnapshot:me,currentSnapshot:et,guards:{canActivateChecks:Mt,canDeactivateChecks:Kt}}=Q;return 0===Kt.length&&0===Mt.length?(0,f.of)({...Q,guardsResult:!0}):function Fs(X,de,Q,me){return(0,O.H)(X).pipe((0,be.Z)(et=>function q(X,de,Q,me,et){const Mt=de&&de.routeConfig?de.routeConfig.canDeactivate:null;if(!Mt||0===Mt.length)return(0,f.of)(!0);const Kt=Mt.map(Tn=>{const ai=Ve(de)??et,Gi=is(Tn,ai);return Qe(function er(X){return X&&xs(X.canDeactivate)}(Gi)?Gi.canDeactivate(X,de,Q,me):(0,i.N4e)(ai,()=>Gi(X,de,Q,me))).pipe((0,ne.$)())});return(0,f.of)(Kt).pipe(Za())}(et.component,et.route,Q,de,me)),(0,ne.$)(et=>!0!==et,!0))}(Kt,me,et,X).pipe((0,be.Z)(Tn=>Tn&&function vr(X){return"boolean"==typeof X}(Tn)?function Hr(X,de,Q,me){return(0,O.H)(de).pipe((0,J.H)(et=>(0,B.x)(function Sr(X,de){return null!==X&&de&&de(new ri(X)),(0,f.of)(!0)}(et.route.parent,me),function Ks(X,de){return null!==X&&de&&de(new Hn(X)),(0,f.of)(!0)}(et.route,me),function He(X,de,Q){const me=de[de.length-1],Mt=de.slice(0,de.length-1).reverse().map(Kt=>function ls(X){const de=X.routeConfig?X.routeConfig.canActivateChild:null;return de&&0!==de.length?{node:X,guards:de}:null}(Kt)).filter(Kt=>null!==Kt).map(Kt=>(0,A.v)(()=>{const Tn=Kt.guards.map(ai=>{const Gi=Ve(Kt.node)??Q,La=is(ai,Gi);return Qe(function yr(X){return X&&xs(X.canActivateChild)}(La)?La.canActivateChild(me,X):(0,i.N4e)(Gi,()=>La(me,X))).pipe((0,ne.$)())});return(0,f.of)(Tn).pipe(Za())}));return(0,f.of)(Mt).pipe(Za())}(X,et.path,Q),function Ne(X,de,Q){const me=de.routeConfig?de.routeConfig.canActivate:null;if(!me||0===me.length)return(0,f.of)(!0);const et=me.map(Mt=>(0,A.v)(()=>{const Kt=Ve(de)??Q,Tn=is(Mt,Kt);return Qe(function Pa(X){return X&&xs(X.canActivate)}(Tn)?Tn.canActivate(de,X):(0,i.N4e)(Kt,()=>Tn(de,X))).pipe((0,ne.$)())}));return(0,f.of)(et).pipe(Za())}(X,et.route,Q))),(0,ne.$)(et=>!0!==et,!0))}(me,Mt,X,de):(0,f.of)(Tn)),(0,re.T)(Tn=>({...Q,guardsResult:Tn})))})}(this.environmentInjector,Mt=>this.events.next(Mt)),(0,De.M)(Mt=>{if(me.guardsResult=Mt.guardsResult,Mt.guardsResult&&"boolean"!=typeof Mt.guardsResult)throw kr(0,Mt.guardsResult);const Kt=new fa(Mt.id,this.urlSerializer.serialize(Mt.extractedUrl),this.urlSerializer.serialize(Mt.urlAfterRedirects),Mt.targetSnapshot,!!Mt.guardsResult);this.events.next(Kt)}),(0,ce.p)(Mt=>!!Mt.guardsResult||(this.cancelNavigationTransition(Mt,"",In.GuardRejected),!1)),us(Mt=>{if(0!==Mt.guards.canActivateChecks.length)return(0,f.of)(Mt).pipe((0,De.M)(Kt=>{const Tn=new ha(Kt.id,this.urlSerializer.serialize(Kt.extractedUrl),this.urlSerializer.serialize(Kt.urlAfterRedirects),Kt.targetSnapshot);this.events.next(Tn)}),(0,xe.n)(Kt=>{let Tn=!1;return(0,f.of)(Kt).pipe(function jo(X,de){return(0,be.Z)(Q=>{const{targetSnapshot:me,guards:{canActivateChecks:et}}=Q;if(!et.length)return(0,f.of)(Q);const Mt=new Set(et.map(ai=>ai.route)),Kt=new Set;for(const ai of Mt)if(!Kt.has(ai))for(const Gi of mo(ai))Kt.add(Gi);let Tn=0;return(0,O.H)(Kt).pipe((0,J.H)(ai=>Mt.has(ai)?function Tl(X,de,Q,me){const et=X.routeConfig,Mt=X._resolve;return void 0!==et?.title&&!Ga(et)&&(Mt[Ke]=et.title),(0,A.v)(()=>(X.data=Xt(X,X.parent,Q).resolve,function Vl(X,de,Q,me){const et=oe(X);if(0===et.length)return(0,f.of)({});const Mt={};return(0,O.H)(et).pipe((0,be.Z)(Kt=>function za(X,de,Q,me){const et=Ve(de)??me,Mt=is(X,et);return Qe(Mt.resolve?Mt.resolve(de,Q):(0,i.N4e)(et,()=>Mt(de,Q)))}(X[Kt],de,Q,me).pipe((0,ne.$)(),(0,De.M)(Tn=>{if(Tn instanceof Ka)throw kr(new Ni,Tn);Mt[Kt]=Tn}))),lt(1),(0,re.T)(()=>Mt),(0,Re.W)(Kt=>wa(Kt)?Ce.w:(0,le.$)(Kt)))}(Mt,X,de,me).pipe((0,re.T)(Kt=>(X._resolvedData=Kt,X.data={...X.data,...Kt},null)))))}(ai,me,X,de):(ai.data=Xt(ai,ai.parent,X).resolve,(0,f.of)(void 0))),(0,De.M)(()=>Tn++),lt(1),(0,be.Z)(ai=>Tn===Kt.size?(0,f.of)(Q):Ce.w))})}(this.paramsInheritanceStrategy,this.environmentInjector),(0,De.M)({next:()=>Tn=!0,complete:()=>{Tn||this.cancelNavigationTransition(Kt,"",In.NoDataFromResolver)}}))}),(0,De.M)(Kt=>{const Tn=new qt(Kt.id,this.urlSerializer.serialize(Kt.extractedUrl),this.urlSerializer.serialize(Kt.urlAfterRedirects),Kt.targetSnapshot);this.events.next(Tn)}))}),us(Mt=>{const Kt=Tn=>{const ai=[];if(Tn.routeConfig?.loadComponent){const Gi=Ve(Tn)??this.environmentInjector;ai.push(this.configLoader.loadComponent(Gi,Tn.routeConfig).pipe((0,De.M)(La=>{Tn.component=La}),(0,re.T)(()=>{})))}for(const Gi of Tn.children)ai.push(...Kt(Gi));return ai};return(0,L.z)(Kt(Mt.targetSnapshot.root)).pipe((0,_e.U)(null),(0,Ee.s)(1))}),us(()=>this.afterPreactivation()),(0,xe.n)(()=>{const{currentSnapshot:Mt,targetSnapshot:Kt}=me,Tn=this.createViewTransition?.(this.environmentInjector,Mt.root,Kt.root);return Tn?(0,O.H)(Tn).pipe((0,re.T)(()=>me)):(0,f.of)(me)}),(0,re.T)(Mt=>{const Kt=function bo(X,de,Q){const me=Zs(X,de._root,Q?Q._root:void 0);return new ni(me,de)}(Q.routeReuseStrategy,Mt.targetSnapshot,Mt.currentRouterState);return this.currentTransition=me={...Mt,targetRouterState:Kt},this.currentNavigation.update(Tn=>(Tn.targetRouterState=Kt,Tn)),me}),(0,De.M)(()=>{this.events.next(new Ta)}),((X,de,Q,me)=>(0,re.T)(et=>(new Co(de,et.targetRouterState,et.currentRouterState,Q,me).activate(X),et)))(this.rootContexts,Q.routeReuseStrategy,Mt=>this.events.next(Mt),this.inputBindingEnabled),(0,Ee.s)(1),(0,ve.Q)(new W.c(Mt=>{const Kt=me.abortController.signal,Tn=()=>Mt.next();return Kt.addEventListener("abort",Tn),()=>Kt.removeEventListener("abort",Tn)}).pipe((0,ce.p)(()=>!et&&!me.targetRouterState),(0,De.M)(()=>{this.cancelNavigationTransition(me,me.abortController.signal.reason+"",In.Aborted)}))),(0,De.M)({next:Mt=>{et=!0,this.lastSuccessfulNavigation=(0,w.O8)(this.currentNavigation),this.events.next(new rn(Mt.id,this.urlSerializer.serialize(Mt.extractedUrl),this.urlSerializer.serialize(Mt.urlAfterRedirects))),this.titleStrategy?.updateTitle(Mt.targetRouterState.snapshot),Mt.resolve(!0)},complete:()=>{et=!0}}),(0,ve.Q)(this.transitionAbortWithErrorSubject.pipe((0,De.M)(Mt=>{throw Mt}))),(0,P.j)(()=>{et||this.cancelNavigationTransition(me,"",In.SupersededByNewNavigation),this.currentTransition?.id===me.id&&(this.currentNavigation.set(null),this.currentTransition=null)}),(0,Re.W)(Mt=>{if(this.destroyed)return me.resolve(!1),Ce.w;if(et=!0,Zr(Mt))this.events.next(new Vn(me.id,this.urlSerializer.serialize(me.extractedUrl),Mt.message,Mt.cancellationCode)),function Vo(X){return Zr(X)&&un(X.url)}(Mt)?this.events.next(new en(Mt.url,Mt.navigationBehaviorOptions)):me.resolve(!1);else{const Kt=new Bn(me.id,this.urlSerializer.serialize(me.extractedUrl),Mt,me.targetSnapshot??void 0);try{const Tn=(0,i.N4e)(this.environmentInjector,()=>this.navigationErrorHandler?.(Kt));if(!(Tn instanceof Ka))throw this.events.next(Kt),Mt;{const{message:ai,cancellationCode:Gi}=kr(0,Tn);this.events.next(new Vn(me.id,this.urlSerializer.serialize(me.extractedUrl),ai,Gi)),this.events.next(new en(Tn.redirectTo,Tn.navigationBehaviorOptions))}}catch(Tn){this.options.resolveNavigationPromiseOnError?me.resolve(!1):me.reject(Tn)}}return Ce.w}))}))}cancelNavigationTransition(Q,me,et){const Mt=new Vn(Q.id,this.urlSerializer.serialize(Q.extractedUrl),me,et);this.events.next(Mt),Q.resolve(!1)}isUpdatingInternalState(){return this.currentTransition?.extractedUrl.toString()!==this.currentTransition?.currentUrlTree.toString()}isUpdatedBrowserUrl(){const Q=this.urlHandlingStrategy.extract(this.urlSerializer.parse(this.location.path(!0))),me=(0,w.O8)(this.currentNavigation),et=me?.targetBrowserUrl??me?.extractedUrl;return Q.toString()!==et?.toString()&&!me?.extras.skipLocationChange}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})();function Pr(X){return X!==Un}let so=(()=>{class X{static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:()=>(0,i.WQX)(Ul),providedIn:"root"})}return X})();class tl{shouldDetach(de){return!1}store(de,Q){}shouldAttach(de){return!1}retrieve(de){return null}shouldReuseRoute(de,Q){return de.routeConfig===Q.routeConfig}}let Ul=(()=>{class X extends tl{static \u0275fac=(()=>{let Q;return function(et){return(Q||(Q=v.xGo(X)))(et||X)}})();static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})(),Do=(()=>{class X{urlSerializer=(0,i.WQX)(vi);options=(0,i.WQX)(So,{optional:!0})||{};canceledNavigationResolution=this.options.canceledNavigationResolution||"replace";location=(0,i.WQX)(d.aZ);urlHandlingStrategy=(0,i.WQX)(no);urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred";currentUrlTree=new Ue;getCurrentUrlTree(){return this.currentUrlTree}rawUrlTree=this.currentUrlTree;getRawUrlTree(){return this.rawUrlTree}createBrowserPath({finalUrl:Q,initialUrl:me,targetBrowserUrl:et}){const Mt=void 0!==Q?this.urlHandlingStrategy.merge(Q,me):me,Kt=et??Mt;return Kt instanceof Ue?this.urlSerializer.serialize(Kt):Kt}commitTransition({targetRouterState:Q,finalUrl:me,initialUrl:et}){me&&Q?(this.currentUrlTree=me,this.rawUrlTree=this.urlHandlingStrategy.merge(me,et),this.routerState=Q):this.rawUrlTree=et}routerState=U(null);getRouterState(){return this.routerState}stateMemento=this.createStateMemento();updateStateMemento(){this.stateMemento=this.createStateMemento()}createStateMemento(){return{rawUrlTree:this.rawUrlTree,currentUrlTree:this.currentUrlTree,routerState:this.routerState}}resetInternalState({finalUrl:Q}){this.routerState=this.stateMemento.routerState,this.currentUrlTree=this.stateMemento.currentUrlTree,this.rawUrlTree=this.urlHandlingStrategy.merge(this.currentUrlTree,Q??this.rawUrlTree)}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:()=>(0,i.WQX)(Jl),providedIn:"root"})}return X})(),Jl=(()=>{class X extends Do{currentPageId=0;lastSuccessfulId=-1;restoredState(){return this.location.getState()}get browserPageId(){return"computed"!==this.canceledNavigationResolution?this.currentPageId:this.restoredState()?.\u0275routerPageId??this.currentPageId}registerNonRouterCurrentEntryChangeListener(Q){return this.location.subscribe(me=>{"popstate"===me.type&&setTimeout(()=>{Q(me.url,me.state,"popstate")})})}handleRouterEvent(Q,me){Q instanceof ci?this.updateStateMemento():Q instanceof ii?this.commitTransition(me):Q instanceof ia?"eager"===this.urlUpdateStrategy&&(me.extras.skipLocationChange||this.setBrowserUrl(this.createBrowserPath(me),me)):Q instanceof Ta?(this.commitTransition(me),"deferred"===this.urlUpdateStrategy&&!me.extras.skipLocationChange&&this.setBrowserUrl(this.createBrowserPath(me),me)):Q instanceof Vn&&Q.code!==In.SupersededByNewNavigation&&Q.code!==In.Redirect?this.restoreHistory(me):Q instanceof Bn?this.restoreHistory(me,!0):Q instanceof rn&&(this.lastSuccessfulId=Q.id,this.currentPageId=this.browserPageId)}setBrowserUrl(Q,{extras:me,id:et}){const{replaceUrl:Mt,state:Kt}=me;if(this.location.isCurrentPathEqualTo(Q)||Mt){const Tn=this.browserPageId,ai={...Kt,...this.generateNgRouterState(et,Tn)};this.location.replaceState(Q,"",ai)}else{const Tn={...Kt,...this.generateNgRouterState(et,this.browserPageId+1)};this.location.go(Q,"",Tn)}}restoreHistory(Q,me=!1){if("computed"===this.canceledNavigationResolution){const Mt=this.currentPageId-this.browserPageId;0!==Mt?this.location.historyGo(Mt):this.getCurrentUrlTree()===Q.finalUrl&&0===Mt&&(this.resetInternalState(Q),this.resetUrlToCurrentUrlTree())}else"replace"===this.canceledNavigationResolution&&(me&&this.resetInternalState(Q),this.resetUrlToCurrentUrlTree())}resetUrlToCurrentUrlTree(){this.location.replaceState(this.urlSerializer.serialize(this.getRawUrlTree()),"",this.generateNgRouterState(this.lastSuccessfulId,this.currentPageId))}generateNgRouterState(Q,me){return"computed"===this.canceledNavigationResolution?{navigationId:Q,\u0275routerPageId:me}:{navigationId:Q}}static \u0275fac=(()=>{let Q;return function(et){return(Q||(Q=v.xGo(X)))(et||X)}})();static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})();function Ll(X,de){X.events.pipe((0,ce.p)(Q=>Q instanceof rn||Q instanceof Vn||Q instanceof Bn||Q instanceof ii),(0,re.T)(Q=>Q instanceof rn||Q instanceof ii?0:Q instanceof Vn&&(Q.code===In.Redirect||Q.code===In.SupersededByNewNavigation)?2:1),(0,ce.p)(Q=>2!==Q),(0,Ee.s)(1)).subscribe(()=>{de()})}const ir={paths:"exact",fragment:"ignored",matrixParams:"ignored",queryParams:"exact"},ql={paths:"subset",fragment:"ignored",matrixParams:"ignored",queryParams:"subset"};let Wo=(()=>{class X{get currentUrlTree(){return this.stateManager.getCurrentUrlTree()}get rawUrlTree(){return this.stateManager.getRawUrlTree()}disposed=!1;nonRouterCurrentEntryChangeSubscription;console=(0,i.WQX)(v.C7A);stateManager=(0,i.WQX)(Do);options=(0,i.WQX)(So,{optional:!0})||{};pendingTasks=(0,i.WQX)(i.rev);urlUpdateStrategy=this.options.urlUpdateStrategy||"deferred";navigationTransitions=(0,i.WQX)(ao);urlSerializer=(0,i.WQX)(vi);location=(0,i.WQX)(d.aZ);urlHandlingStrategy=(0,i.WQX)(no);injector=(0,i.WQX)(i.uvJ);_events=new j.B;get events(){return this._events}get routerState(){return this.stateManager.getRouterState()}navigated=!1;routeReuseStrategy=(0,i.WQX)(so);onSameUrlNavigation=this.options.onSameUrlNavigation||"ignore";config=(0,i.WQX)(fo,{optional:!0})?.flat()??[];componentInputBindingEnabled=!!(0,i.WQX)(fr,{optional:!0});currentNavigation=this.navigationTransitions.currentNavigation.asReadonly();constructor(){this.resetConfig(this.config),this.navigationTransitions.setupNavigations(this).subscribe({error:Q=>{this.console.warn(Q)}}),this.subscribeToNavigationEvents()}eventsSubscription=new G.yU;subscribeToNavigationEvents(){const Q=this.navigationTransitions.events.subscribe(me=>{try{const et=this.navigationTransitions.currentTransition,Mt=(0,w.O8)(this.navigationTransitions.currentNavigation);if(null!==et&&null!==Mt)if(this.stateManager.handleRouterEvent(me,Mt),me instanceof Vn&&me.code!==In.Redirect&&me.code!==In.SupersededByNewNavigation)this.navigated=!0;else if(me instanceof rn)this.navigated=!0;else if(me instanceof en){const Kt=me.navigationBehaviorOptions,Tn=this.urlHandlingStrategy.merge(me.url,et.currentRawUrl),ai={browserUrl:et.extras.browserUrl,info:et.extras.info,skipLocationChange:et.extras.skipLocationChange,replaceUrl:et.extras.replaceUrl||"eager"===this.urlUpdateStrategy||Pr(et.source),...Kt};this.scheduleNavigation(Tn,Un,null,ai,{resolve:et.resolve,reject:et.reject,promise:et.promise})}(function vn(X){return!(X instanceof Ta||X instanceof en)})(me)&&this._events.next(me)}catch(et){this.navigationTransitions.transitionAbortWithErrorSubject.next(et)}});this.eventsSubscription.add(Q)}resetRootComponentType(Q){this.routerState.root.component=Q,this.navigationTransitions.rootComponentType=Q}initialNavigation(){this.setUpLocationChangeListener(),this.navigationTransitions.hasRequestedNavigation||this.navigateToSyncWithBrowser(this.location.path(!0),Un,this.stateManager.restoredState())}setUpLocationChangeListener(){this.nonRouterCurrentEntryChangeSubscription??=this.stateManager.registerNonRouterCurrentEntryChangeListener((Q,me,et)=>{this.navigateToSyncWithBrowser(Q,et,me)})}navigateToSyncWithBrowser(Q,me,et){const Mt={replaceUrl:!0},Kt=et?.navigationId?et:null;if(et){const ai={...et};delete ai.navigationId,delete ai.\u0275routerPageId,0!==Object.keys(ai).length&&(Mt.state=ai)}const Tn=this.parseUrl(Q);this.scheduleNavigation(Tn,me,Kt,Mt).catch(ai=>{this.disposed||this.injector.get(i.ZTf)(ai)})}get url(){return this.serializeUrl(this.currentUrlTree)}getCurrentNavigation(){return(0,w.O8)(this.navigationTransitions.currentNavigation)}get lastSuccessfulNavigation(){return this.navigationTransitions.lastSuccessfulNavigation}resetConfig(Q){this.config=Q.map(gr),this.navigated=!1}ngOnDestroy(){this.dispose()}dispose(){this._events.unsubscribe(),this.navigationTransitions.complete(),this.nonRouterCurrentEntryChangeSubscription&&(this.nonRouterCurrentEntryChangeSubscription.unsubscribe(),this.nonRouterCurrentEntryChangeSubscription=void 0),this.disposed=!0,this.eventsSubscription.unsubscribe()}createUrlTree(Q,me={}){const{relativeTo:et,queryParams:Mt,fragment:Kt,queryParamsHandling:Tn,preserveFragment:ai}=me,Gi=ai?this.currentUrlTree.fragment:Kt;let as,La=null;switch(Tn??this.options.defaultQueryParamsHandling){case"merge":La={...this.currentUrlTree.queryParams,...Mt};break;case"preserve":La=this.currentUrlTree.queryParams;break;default:La=Mt||null}null!==La&&(La=this.removeEmptyProps(La));try{as=dn(et?et.snapshot:this.routerState.snapshot.root)}catch{("string"!=typeof Q[0]||"/"!==Q[0][0])&&(Q=[]),as=this.currentUrlTree.root}return xn(as,Q,La,Gi??null)}navigateByUrl(Q,me={skipLocationChange:!1}){const et=un(Q)?Q:this.parseUrl(Q),Mt=this.urlHandlingStrategy.merge(et,this.rawUrlTree);return this.scheduleNavigation(Mt,Un,null,me)}navigate(Q,me={skipLocationChange:!1}){return function nl(X){for(let de=0;de(null!=Mt&&(me[et]=Mt),me),{})}scheduleNavigation(Q,me,et,Mt,Kt){if(this.disposed)return Promise.resolve(!1);let Tn,ai,Gi;Kt?(Tn=Kt.resolve,ai=Kt.reject,Gi=Kt.promise):Gi=new Promise((as,Ns)=>{Tn=as,ai=Ns});const La=this.pendingTasks.add();return Ll(this,()=>{queueMicrotask(()=>this.pendingTasks.remove(La))}),this.navigationTransitions.handleNavigationRequest({source:me,restoredState:et,currentUrlTree:this.currentUrlTree,currentRawUrl:this.currentUrlTree,rawUrl:Q,extras:Mt,resolve:Tn,reject:ai,promise:Gi,currentSnapshot:this.routerState.snapshot,currentRouterState:this.routerState}),Gi.catch(as=>Promise.reject(as))}static \u0275fac=function(me){return new(me||X)};static \u0275prov=i.jDH({token:X,factory:X.\u0275fac,providedIn:"root"})}return X})()},8132(Zt,pe,l){"use strict";l.d(pe,{Wk:()=>lt,iI:()=>Ni,wQ:()=>Le});var W=l(467),G=l(7303),re=l(177),xe=l(2200),Ee=l(7705),V=l(2615),ce=l(3664),be=l(9295),ne=l(3694),J=l(1413),De=l(2806),Re=l(7673),Xe=l(274),_e=l(5964),he=l(6365),Dt=l(1397);let lt=(()=>{class ge{router;route;tabIndexAttribute;renderer;el;locationStrategy;reactiveHref=(0,V.vPA)(null);get href(){return(0,be.O8)(this.reactiveHref)}set href(Z){this.reactiveHref.set(Z)}target;queryParams;fragment;queryParamsHandling;state;info;relativeTo;isAnchorElement;subscription;onChanges=new J.B;applicationErrorHandler=(0,V.WQX)(V.ZTf);options=(0,V.WQX)(ne.J_,{optional:!0});constructor(Z,Me,at,qe,pn,Je){this.router=Z,this.route=Me,this.tabIndexAttribute=at,this.renderer=qe,this.el=pn,this.locationStrategy=Je,this.reactiveHref.set((0,V.WQX)(new Ee.ES_("href"),{optional:!0}));const Be=pn.nativeElement.tagName?.toLowerCase();this.isAnchorElement="a"===Be||"area"===Be||!("object"!=typeof customElements||!customElements.get(Be)?.observedAttributes?.includes?.("href")),this.isAnchorElement?this.setTabIndexIfNotOnNativeEl("0"):this.subscribeToNavigationEventsIfNecessary()}subscribeToNavigationEventsIfNecessary(){if(void 0!==this.subscription||!this.isAnchorElement)return;let Z=this.preserveFragment;const Me=at=>"merge"===at||"preserve"===at;Z||=Me(this.queryParamsHandling),Z||=!this.queryParamsHandling&&!Me(this.options?.defaultQueryParamsHandling),Z&&(this.subscription=this.router.events.subscribe(at=>{at instanceof ne.wF&&this.updateHref()}))}preserveFragment=!1;skipLocationChange=!1;replaceUrl=!1;setTabIndexIfNotOnNativeEl(Z){null!=this.tabIndexAttribute||this.isAnchorElement||this.applyAttributeValue("tabindex",Z)}ngOnChanges(Z){this.isAnchorElement&&(this.updateHref(),this.subscribeToNavigationEventsIfNecessary()),this.onChanges.next(this)}routerLinkInput=null;set routerLink(Z){null==Z?(this.routerLinkInput=null,this.setTabIndexIfNotOnNativeEl(null)):(this.routerLinkInput=(0,ne.wO)(Z)||Array.isArray(Z)?Z:[Z],this.setTabIndexIfNotOnNativeEl("0"))}onClick(Z,Me,at,qe,pn){const Je=this.urlTree;if(null===Je||this.isAnchorElement&&(0!==Z||Me||at||qe||pn||"string"==typeof this.target&&"_self"!=this.target))return!0;const Be={skipLocationChange:this.skipLocationChange,replaceUrl:this.replaceUrl,state:this.state,info:this.info};return this.router.navigateByUrl(Je,Be)?.catch(ut=>{this.applicationErrorHandler(ut)}),!this.isAnchorElement}ngOnDestroy(){this.subscription?.unsubscribe()}updateHref(){const Z=this.urlTree;this.reactiveHref.set(null!==Z&&this.locationStrategy?this.locationStrategy?.prepareExternalUrl(this.router.serializeUrl(Z))??"":null)}applyAttributeValue(Z,Me){const at=this.renderer,qe=this.el.nativeElement;null!==Me?at.setAttribute(qe,Z,Me):at.removeAttribute(qe,Z)}get urlTree(){return null===this.routerLinkInput?null:(0,ne.wO)(this.routerLinkInput)?this.routerLinkInput:this.router.createUrlTree(this.routerLinkInput,{relativeTo:void 0!==this.relativeTo?this.relativeTo:this.route,queryParams:this.queryParams,fragment:this.fragment,queryParamsHandling:this.queryParamsHandling,preserveFragment:this.preserveFragment})}static \u0275fac=function(Me){return new(Me||ge)(ce.rXU(ne.Ix),ce.rXU(ne.nX),ce.kS0("tabindex"),ce.rXU(ce.sFG),ce.rXU(ce.aKT),ce.rXU(G.hb))};static \u0275dir=ce.FsC({type:ge,selectors:[["","routerLink",""]],hostVars:2,hostBindings:function(Me,at){1&Me&&ce.bIt("click",function(pn){return at.onClick(pn.button,pn.ctrlKey,pn.shiftKey,pn.altKey,pn.metaKey)}),2&Me&&ce.BMQ("href",at.reactiveHref(),ce.n$t)("target",at.target)},inputs:{target:"target",queryParams:"queryParams",fragment:"fragment",queryParamsHandling:"queryParamsHandling",state:"state",info:"info",relativeTo:"relativeTo",preserveFragment:[2,"preserveFragment","preserveFragment",Ee.L39],skipLocationChange:[2,"skipLocationChange","skipLocationChange",Ee.L39],replaceUrl:[2,"replaceUrl","replaceUrl",Ee.L39],routerLink:"routerLink"},features:[ce.OA$]})}return ge})(),Le=(()=>{class ge{router;element;renderer;cdr;link;links;classes=[];routerEventsSubscription;linkInputChangesSubscription;_isActive=!1;get isActive(){return this._isActive}routerLinkActiveOptions={exact:!1};ariaCurrentWhenActive;isActiveChange=new ce.bkB;constructor(Z,Me,at,qe,pn){this.router=Z,this.element=Me,this.renderer=at,this.cdr=qe,this.link=pn,this.routerEventsSubscription=Z.events.subscribe(Je=>{Je instanceof ne.wF&&this.update()})}ngAfterContentInit(){(0,Re.of)(this.links.changes,(0,Re.of)(null)).pipe((0,he.U)()).subscribe(Z=>{this.update(),this.subscribeToEachLinkOnChanges()})}subscribeToEachLinkOnChanges(){this.linkInputChangesSubscription?.unsubscribe();const Z=[...this.links.toArray(),this.link].filter(Me=>!!Me).map(Me=>Me.onChanges);this.linkInputChangesSubscription=(0,De.H)(Z).pipe((0,he.U)()).subscribe(Me=>{this._isActive!==this.isLinkActive(this.router)(Me)&&this.update()})}set routerLinkActive(Z){const Me=Array.isArray(Z)?Z:Z.split(" ");this.classes=Me.filter(at=>!!at)}ngOnChanges(Z){this.update()}ngOnDestroy(){this.routerEventsSubscription.unsubscribe(),this.linkInputChangesSubscription?.unsubscribe()}update(){!this.links||!this.router.navigated||queueMicrotask(()=>{const Z=this.hasActiveLinks();this.classes.forEach(Me=>{Z?this.renderer.addClass(this.element.nativeElement,Me):this.renderer.removeClass(this.element.nativeElement,Me)}),Z&&void 0!==this.ariaCurrentWhenActive?this.renderer.setAttribute(this.element.nativeElement,"aria-current",this.ariaCurrentWhenActive.toString()):this.renderer.removeAttribute(this.element.nativeElement,"aria-current"),this._isActive!==Z&&(this._isActive=Z,this.cdr.markForCheck(),this.isActiveChange.emit(Z))})}isLinkActive(Z){const Me=function te(ge){return!!ge.paths}(this.routerLinkActiveOptions)?this.routerLinkActiveOptions:this.routerLinkActiveOptions.exact||!1;return at=>{const qe=at.urlTree;return!!qe&&Z.isActive(qe,Me)}}hasActiveLinks(){const Z=this.isLinkActive(this.router);return this.link&&Z(this.link)||this.links.some(Z)}static \u0275fac=function(Me){return new(Me||ge)(ce.rXU(ne.Ix),ce.rXU(ce.aKT),ce.rXU(ce.sFG),ce.rXU(Ee.gRc),ce.rXU(lt,8))};static \u0275dir=ce.FsC({type:ge,selectors:[["","routerLinkActive",""]],contentQueries:function(Me,at,qe){if(1&Me&&ce.wni(qe,lt,5),2&Me){let pn;ce.mGM(pn=ce.lsd())&&(at.links=pn)}},inputs:{routerLinkActiveOptions:"routerLinkActiveOptions",ariaCurrentWhenActive:"ariaCurrentWhenActive",routerLinkActive:"routerLinkActive"},outputs:{isActiveChange:"isActiveChange"},exportAs:["routerLinkActive"],features:[ce.OA$]})}return ge})();class ie{}let ve=(()=>{class ge{router;injector;preloadingStrategy;loader;subscription;constructor(Z,Me,at,qe){this.router=Z,this.injector=Me,this.preloadingStrategy=at,this.loader=qe}setUpPreloading(){this.subscription=this.router.events.pipe((0,_e.p)(Z=>Z instanceof ne.wF),(0,Xe.H)(()=>this.preload())).subscribe(()=>{})}preload(){return this.processRoutes(this.injector,this.router.config)}ngOnDestroy(){this.subscription&&this.subscription.unsubscribe()}processRoutes(Z,Me){const at=[];for(const qe of Me){qe.providers&&!qe._injector&&(qe._injector=(0,ce.Ol2)(qe.providers,Z,`Route: ${qe.path}`));const pn=qe._injector??Z,Je=qe._loadedInjector??pn;(qe.loadChildren&&!qe._loadedRoutes&&void 0===qe.canLoad||qe.loadComponent&&!qe._loadedComponent)&&at.push(this.preloadConfig(pn,qe)),(qe.children||qe._loadedRoutes)&&at.push(this.processRoutes(Je,qe.children??qe._loadedRoutes))}return(0,De.H)(at).pipe((0,he.U)())}preloadConfig(Z,Me){return this.preloadingStrategy.preload(Me,()=>{let at;at=Me.loadChildren&&void 0===Me.canLoad?this.loader.loadChildren(Z,Me):(0,Re.of)(null);const qe=at.pipe((0,Dt.Z)(pn=>null===pn?(0,Re.of)(void 0):(Me._loadedRoutes=pn.routes,Me._loadedInjector=pn.injector,this.processRoutes(pn.injector??Z,pn.routes))));if(Me.loadComponent&&!Me._loadedComponent){const pn=this.loader.loadComponent(Z,Me);return(0,De.H)([qe,pn]).pipe((0,he.U)())}return qe})}static \u0275fac=function(Me){return new(Me||ge)(V.KVO(ne.Ix),V.KVO(V.uvJ),V.KVO(ie),V.KVO(ne.D$))};static \u0275prov=V.jDH({token:ge,factory:ge.\u0275fac,providedIn:"root"})}return ge})();const H=new V.nKC("");let $=(()=>{class ge{urlSerializer;transitions;viewportScroller;zone;options;routerEventsSubscription;scrollEventsSubscription;lastId=0;lastSource=ne.wU;restoredId=0;store={};constructor(Z,Me,at,qe,pn={}){this.urlSerializer=Z,this.transitions=Me,this.viewportScroller=at,this.zone=qe,this.options=pn,pn.scrollPositionRestoration||="disabled",pn.anchorScrolling||="disabled"}init(){"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.setHistoryScrollRestoration("manual"),this.routerEventsSubscription=this.createScrollEvents(),this.scrollEventsSubscription=this.consumeScrollEvents()}createScrollEvents(){return this.transitions.events.subscribe(Z=>{Z instanceof ne.Z?(this.store[this.lastId]=this.viewportScroller.getScrollPosition(),this.lastSource=Z.navigationTrigger,this.restoredId=Z.restoredState?Z.restoredState.navigationId:0):Z instanceof ne.wF?(this.lastId=Z.id,this.scheduleScrollEvent(Z,this.urlSerializer.parse(Z.urlAfterRedirects).fragment)):Z instanceof ne.lW&&Z.code===ne.mo.IgnoredSameUrlNavigation&&(this.lastSource=void 0,this.restoredId=0,this.scheduleScrollEvent(Z,this.urlSerializer.parse(Z.url).fragment))})}consumeScrollEvents(){return this.transitions.events.subscribe(Z=>{if(!(Z instanceof ne.OY))return;const Me={behavior:"instant"};Z.position?"top"===this.options.scrollPositionRestoration?this.viewportScroller.scrollToPosition([0,0],Me):"enabled"===this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition(Z.position,Me):Z.anchor&&"enabled"===this.options.anchorScrolling?this.viewportScroller.scrollToAnchor(Z.anchor):"disabled"!==this.options.scrollPositionRestoration&&this.viewportScroller.scrollToPosition([0,0])})}scheduleScrollEvent(Z,Me){var at=this;this.zone.runOutsideAngular((0,W.A)(function*(){yield new Promise(qe=>{setTimeout(qe),typeof requestAnimationFrame<"u"&&requestAnimationFrame(qe)}),at.zone.run(()=>{at.transitions.events.next(new ne.OY(Z,"popstate"===at.lastSource?at.store[at.restoredId]:null,Me))})}))}ngOnDestroy(){this.routerEventsSubscription?.unsubscribe(),this.scrollEventsSubscription?.unsubscribe()}static \u0275fac=function(Me){ce.QTQ()};static \u0275prov=V.jDH({token:ge,factory:ge.\u0275fac})}return ge})();function ht(ge,N){return{\u0275kind:ge,\u0275providers:N}}function gt(){const ge=(0,V.WQX)(V.zZn);return N=>{const Z=ge.get(ce.o8S);if(N!==Z.components[0])return;const Me=ge.get(ne.Ix),at=ge.get(Gt);1===ge.get(rt)&&Me.initialNavigation(),ge.get(Qn,null,{optional:!0})?.setUpPreloading(),ge.get(H,null,{optional:!0})?.init(),Me.resetRootComponentType(Z.componentTypes[0]),at.closed||(at.next(),at.complete(),at.unsubscribe())}}const Gt=new V.nKC("",{factory:()=>new J.B}),rt=new V.nKC("",{providedIn:"root",factory:()=>1}),Qn=new V.nKC("");function h(ge){return ht(0,[{provide:Qn,useExisting:ve},{provide:ie,useExisting:ge}])}function Pt(ge){return(0,ce._jY)("NgRouterViewTransitions"),ht(9,[{provide:ne.Pu,useValue:ne.Lg},{provide:ne.bK,useValue:{skipNextTransition:!!ge?.skipInitialTransition,...ge}}])}const vi=[G.aZ,{provide:ne.Sd,useClass:ne.nU},ne.Ix,ne.Zp,{provide:ne.nX,useFactory:function nt(ge){return ge.routerState.root},deps:[ne.Ix]},ne.D$,[]];let Ni=(()=>{class ge{constructor(){}static forRoot(Z,Me){return{ngModule:ge,providers:[vi,[],{provide:ne.bw,multi:!0,useValue:Z},[],Me?.errorHandler?{provide:ne.XR,useValue:Me.errorHandler}:[],{provide:ne.J_,useValue:Me||{}},Me?.useHash?{provide:G.hb,useClass:xe.fw}:{provide:G.hb,useClass:G.Sm},{provide:H,useFactory:()=>{const ge=(0,V.WQX)(re.Xr),N=(0,V.WQX)(ce.SKi),Z=(0,V.WQX)(ne.J_),Me=(0,V.WQX)(ne.J2),at=(0,V.WQX)(ne.Sd);return Z.scrollOffset&&ge.setOffset(Z.scrollOffset),new $(at,Me,ge,N,Z)}},Me?.preloadingStrategy?h(Me.preloadingStrategy).\u0275providers:[],Me?.initialNavigation?ye(Me):[],Me?.bindToComponentInputs?ht(8,[ne.tD,{provide:ne.c1,useExisting:ne.tD}]).\u0275providers:[],Me?.enableViewTransitions?Pt().\u0275providers:[],[{provide:ke,useFactory:gt},{provide:ce.iLQ,multi:!0,useExisting:ke}]]}}static forChild(Z){return{ngModule:ge,providers:[{provide:ne.bw,multi:!0,useValue:Z}]}}static \u0275fac=function(Me){return new(Me||ge)};static \u0275mod=ce.$C({type:ge});static \u0275inj=V.G2t({})}return ge})();function ye(ge){return["disabled"===ge.initialNavigation?ht(3,[(0,ce.phd)(()=>{(0,V.WQX)(ne.Ix).setUpLocationChangeListener()}),{provide:rt,useValue:2}]).\u0275providers:[],"enabledBlocking"===ge.initialNavigation?ht(2,[{provide:ce.tvf,useValue:!0},{provide:rt,useValue:0},(0,ce.phd)(()=>{const N=(0,V.WQX)(V.zZn);return N.get(G.hj,Promise.resolve()).then(()=>new Promise(Me=>{const at=N.get(ne.Ix),qe=N.get(Gt);(0,ne.gk)(at,()=>{Me(!0)}),N.get(ne.J2).afterPreactivation=()=>(Me(!0),qe.closed?(0,Re.of)(void 0):qe),at.initialNavigation()}))})]).\u0275providers:[]]}const ke=new V.nKC("")},60(Zt,pe,l){"use strict";l.d(pe,{aY:()=>ld,dX:()=>I0});var i=l(2615),d=l(3664),v=l(7705),T=l(9295),w=l(345);function e(Te,dt){(null==dt||dt>Te.length)&&(dt=Te.length);for(var st=0,ft=Array(dt);st=Te.length?{done:!0}:{done:!1,value:Te[ft++]}},e:function(si){throw si},f:$t}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var Cn,Dn=!0,Zn=!1;return{s:function(){st=st.call(Te)},n:function(){var si=st.next();return Dn=si.done,si},e:function(si){Zn=!0,Cn=si},f:function(){try{Dn||null==st.return||st.return()}finally{if(Zn)throw Cn}}}}function A(Te,dt,st){return(dt=ce(dt))in Te?Object.defineProperty(Te,dt,{value:st,enumerable:!0,configurable:!0,writable:!0}):Te[dt]=st,Te}function W(Te,dt){var st=Object.keys(Te);if(Object.getOwnPropertySymbols){var ft=Object.getOwnPropertySymbols(Te);dt&&(ft=ft.filter(function($t){return Object.getOwnPropertyDescriptor(Te,$t).enumerable})),st.push.apply(st,ft)}return st}function G(Te){for(var dt=1;dt0;)dt+="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[62*Math.random()|0];return dt}function wa(Te){for(var dt=[],st=(Te||[]).length>>>0;st--;)dt[st]=Te[st];return dt}function ja(Te){return Te.classList?wa(Te.classList):(Te.getAttribute("class")||"").split(" ").filter(function(dt){return dt})}function Za(Te){return"".concat(Te).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function Rr(Te){return Object.keys(Te||{}).reduce(function(dt,st){return dt+"".concat(st,": ").concat(Te[st].trim(),";")},"")}function Fs(Te){return Te.size!==Pa.size||Te.x!==Pa.x||Te.y!==Pa.y||Te.rotate!==Pa.rotate||Te.flipX||Te.flipY}function Ne(){var dt=Ki,st=Ui.cssPrefix,ft=Ui.replacementClass,$t=':root, :host {\n --fa-font-solid: normal 900 1em/1 "Font Awesome 7 Free";\n --fa-font-regular: normal 400 1em/1 "Font Awesome 7 Free";\n --fa-font-light: normal 300 1em/1 "Font Awesome 7 Pro";\n --fa-font-thin: normal 100 1em/1 "Font Awesome 7 Pro";\n --fa-font-duotone: normal 900 1em/1 "Font Awesome 7 Duotone";\n --fa-font-duotone-regular: normal 400 1em/1 "Font Awesome 7 Duotone";\n --fa-font-duotone-light: normal 300 1em/1 "Font Awesome 7 Duotone";\n --fa-font-duotone-thin: normal 100 1em/1 "Font Awesome 7 Duotone";\n --fa-font-brands: normal 400 1em/1 "Font Awesome 7 Brands";\n --fa-font-sharp-solid: normal 900 1em/1 "Font Awesome 7 Sharp";\n --fa-font-sharp-regular: normal 400 1em/1 "Font Awesome 7 Sharp";\n --fa-font-sharp-light: normal 300 1em/1 "Font Awesome 7 Sharp";\n --fa-font-sharp-thin: normal 100 1em/1 "Font Awesome 7 Sharp";\n --fa-font-sharp-duotone-solid: normal 900 1em/1 "Font Awesome 7 Sharp Duotone";\n --fa-font-sharp-duotone-regular: normal 400 1em/1 "Font Awesome 7 Sharp Duotone";\n --fa-font-sharp-duotone-light: normal 300 1em/1 "Font Awesome 7 Sharp Duotone";\n --fa-font-sharp-duotone-thin: normal 100 1em/1 "Font Awesome 7 Sharp Duotone";\n --fa-font-slab-regular: normal 400 1em/1 "Font Awesome 7 Slab";\n --fa-font-slab-press-regular: normal 400 1em/1 "Font Awesome 7 Slab Press";\n --fa-font-whiteboard-semibold: normal 600 1em/1 "Font Awesome 7 Whiteboard";\n --fa-font-thumbprint-light: normal 300 1em/1 "Font Awesome 7 Thumbprint";\n --fa-font-notdog-solid: normal 900 1em/1 "Font Awesome 7 Notdog";\n --fa-font-notdog-duo-solid: normal 900 1em/1 "Font Awesome 7 Notdog Duo";\n --fa-font-etch-solid: normal 900 1em/1 "Font Awesome 7 Etch";\n --fa-font-jelly-regular: normal 400 1em/1 "Font Awesome 7 Jelly";\n --fa-font-jelly-fill-regular: normal 400 1em/1 "Font Awesome 7 Jelly Fill";\n --fa-font-jelly-duo-regular: normal 400 1em/1 "Font Awesome 7 Jelly Duo";\n --fa-font-chisel-regular: normal 400 1em/1 "Font Awesome 7 Chisel";\n --fa-font-utility-semibold: normal 600 1em/1 "Font Awesome 7 Utility";\n --fa-font-utility-duo-semibold: normal 600 1em/1 "Font Awesome 7 Utility Duo";\n --fa-font-utility-fill-semibold: normal 600 1em/1 "Font Awesome 7 Utility Fill";\n}\n\n.svg-inline--fa {\n box-sizing: content-box;\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n width: var(--fa-width, 1.25em);\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285714em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left,\n.svg-inline--fa .fa-pull-start {\n float: inline-start;\n margin-inline-end: var(--fa-pull-margin, 0.3em);\n}\n.svg-inline--fa.fa-pull-right,\n.svg-inline--fa .fa-pull-end {\n float: inline-end;\n margin-inline-start: var(--fa-pull-margin, 0.3em);\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n inset-inline-start: calc(-1 * var(--fa-li-width, 2em));\n inset-block-start: 0.25em; /* syncing vertical alignment with Web Font rendering */\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: var(--fa-width, 1.25em);\n}\n.fa-layers .svg-inline--fa {\n inset: 0;\n margin: auto;\n position: absolute;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n transform: scale(var(--fa-counter-scale, 0.25));\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: calc(10 / 16 * 1em); /* converts a 10px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 10 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 10 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-xs {\n font-size: calc(12 / 16 * 1em); /* converts a 12px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 12 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 12 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-sm {\n font-size: calc(14 / 16 * 1em); /* converts a 14px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 14 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 14 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-lg {\n font-size: calc(20 / 16 * 1em); /* converts a 20px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 20 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 20 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-xl {\n font-size: calc(24 / 16 * 1em); /* converts a 24px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 24 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 24 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-2xl {\n font-size: calc(32 / 16 * 1em); /* converts a 32px size into an em-based value that\'s relative to the scale\'s 16px base */\n line-height: calc(1 / 32 * 1em); /* sets the line-height of the icon back to that of it\'s parent */\n vertical-align: calc((6 / 32 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text\'s descender */\n}\n\n.fa-width-auto {\n --fa-width: auto;\n}\n\n.fa-fw,\n.fa-width-fixed {\n --fa-width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-inline-start: var(--fa-li-margin, 2.5em);\n padding-inline-start: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n inset-inline-start: calc(-1 * var(--fa-li-width, 2em));\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n/* Heads Up: Bordered Icons will not be supported in the future!\n - This feature will be deprecated in the next major release of Font Awesome (v8)!\n - You may continue to use it in this version *v7), but it will not be supported in Font Awesome v8.\n*/\n/* Notes:\n* --@{v.$css-prefix}-border-width = 1/16 by default (to render as ~1px based on a 16px default font-size)\n* --@{v.$css-prefix}-border-padding =\n ** 3/16 for vertical padding (to give ~2px of vertical whitespace around an icon considering it\'s vertical alignment)\n ** 4/16 for horizontal padding (to give ~4px of horizontal whitespace around an icon)\n*/\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.0625em);\n box-sizing: var(--fa-border-box-sizing, content-box);\n padding: var(--fa-border-padding, 0.1875em 0.25em);\n}\n\n.fa-pull-left,\n.fa-pull-start {\n float: inline-start;\n margin-inline-end: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right,\n.fa-pull-end {\n float: inline-end;\n margin-inline-start: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n animation-name: fa-beat;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n animation-name: fa-bounce;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n animation-name: fa-fade;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-beat-fade {\n animation-name: fa-beat-fade;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n}\n\n.fa-flip {\n animation-name: fa-flip;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n animation-name: fa-shake;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin {\n animation-name: fa-spin;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 2s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n animation-name: fa-spin;\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n .fa-bounce,\n .fa-fade,\n .fa-beat-fade,\n .fa-flip,\n .fa-pulse,\n .fa-shake,\n .fa-spin,\n .fa-spin-pulse {\n animation: none !important;\n transition: none !important;\n }\n}\n@keyframes fa-beat {\n 0%, 90% {\n transform: scale(1);\n }\n 45% {\n transform: scale(var(--fa-beat-scale, 1.25));\n }\n}\n@keyframes fa-bounce {\n 0% {\n transform: scale(1, 1) translateY(0);\n }\n 10% {\n transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n }\n 30% {\n transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n }\n 50% {\n transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n }\n 57% {\n transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n }\n 64% {\n transform: scale(1, 1) translateY(0);\n }\n 100% {\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-fade {\n 50% {\n opacity: var(--fa-fade-opacity, 0.4);\n }\n}\n@keyframes fa-beat-fade {\n 0%, 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n transform: scale(1);\n }\n 50% {\n opacity: 1;\n transform: scale(var(--fa-beat-fade-scale, 1.125));\n }\n}\n@keyframes fa-flip {\n 50% {\n transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n }\n}\n@keyframes fa-shake {\n 0% {\n transform: rotate(-15deg);\n }\n 4% {\n transform: rotate(15deg);\n }\n 8%, 24% {\n transform: rotate(-18deg);\n }\n 12%, 28% {\n transform: rotate(18deg);\n }\n 16% {\n transform: rotate(-22deg);\n }\n 20% {\n transform: rotate(22deg);\n }\n 32% {\n transform: rotate(-12deg);\n }\n 36% {\n transform: rotate(12deg);\n }\n 40%, 100% {\n transform: rotate(0deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n transform: rotate(var(--fa-rotate-angle, 0));\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.svg-inline--fa.fa-inverse {\n fill: var(--fa-inverse, #fff);\n}\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n line-height: 2em;\n position: relative;\n vertical-align: middle;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.svg-inline--fa.fa-stack-1x {\n --fa-width: 1.25em;\n height: 1em;\n width: var(--fa-width);\n}\n.svg-inline--fa.fa-stack-2x {\n --fa-width: 2.5em;\n height: 2em;\n width: var(--fa-width);\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n inset: 0;\n margin: auto;\n position: absolute;\n z-index: var(--fa-stack-z-index, auto);\n}';if("fa"!==st||ft!==dt){var Cn=new RegExp("\\.".concat("fa","\\-"),"g"),Dn=new RegExp("\\--".concat("fa","\\-"),"g"),Zn=new RegExp("\\.".concat(dt),"g");$t=$t.replace(Cn,".".concat(st,"-")).replace(Dn,"--".concat(st,"-")).replace(Zn,".".concat(ft))}return $t}var He=!1;function q(){Ui.autoAddCss&&!He&&(function yr(Te){if(Te&&H){var dt=ie.createElement("style");dt.setAttribute("type","text/css"),dt.innerHTML=Te;for(var st=ie.head.childNodes,ft=null,$t=st.length-1;$t>-1;$t--){var Cn=st[$t],Dn=(Cn.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(Dn)>-1&&(ft=Cn)}ie.head.insertBefore(dt,ft)}}(Ne()),He=!0)}var mt={mixout:function(){return{dom:{css:Ne,insertCss:q}}},hooks:function(){return{beforeDOMElementCreation:function(){q()},beforeI2svg:function(){q()}}}},ln=te||{};ln[Ze]||(ln[Ze]={}),ln[Ze].styles||(ln[Ze].styles={}),ln[Ze].hooks||(ln[Ze].hooks={}),ln[Ze].shims||(ln[Ze].shims=[]);var Oi=ln[Ze],ua=[],Es=function(){ie.removeEventListener("DOMContentLoaded",Es),kt=1,ua.map(function(dt){return dt()})},kt=!1;function $e(Te){var dt=Te.tag,st=Te.attributes,ft=void 0===st?{}:st,$t=Te.children,Cn=void 0===$t?[]:$t;return"string"==typeof Te?Za(Te):"<".concat(dt," ").concat(function Or(Te){return Object.keys(Te||{}).reduce(function(dt,st){return dt+"".concat(st,'="').concat(Za(Te[st]),'" ')},"").trim()}(ft),">").concat(Cn.map($e).join(""),"")}function mn(Te,dt,st){if(Te&&Te[dt]&&Te[dt][st])return{prefix:dt,iconName:st,icon:Te[dt][st]}}H&&((kt=(ie.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(ie.readyState))||ie.addEventListener("DOMContentLoaded",Es));var Ei=function(dt,st,ft,$t){var si,_t,ji,Cn=Object.keys(dt),Dn=Cn.length,Zn=void 0!==$t?function(dt,st){return function(ft,$t,Cn,Dn){return dt.call(st,ft,$t,Cn,Dn)}}(st,$t):st;for(void 0===ft?(si=1,ji=dt[Cn[0]]):(si=0,ji=ft);si2&&void 0!==arguments[2]?arguments[2]:{}).skipHooks,$t=void 0!==ft&&ft,Cn=cs(dt);"function"!=typeof Oi.hooks.addPack||$t?Oi.styles[Te]=G(G({},Oi.styles[Te]||{}),Cn):Oi.hooks.addPack(Te,cs(dt)),"fas"===Te&&qr("fa",dt)}var Ss=Oi.styles,tr=Oi.shims,Eo=Object.keys(Ka),Mo=Eo.reduce(function(Te,dt){return Te[dt]=Object.keys(Ka[dt]),Te},{}),Sl=null,pl={},zl={},ds={},nr={},mi={};var gl=function(){var dt=function(Cn){return Ei(Ss,function(Dn,Zn,si){return Dn[si]=Ei(Zn,Cn,{}),Dn},{})};pl=dt(function($t,Cn,Dn){return Cn[3]&&($t[Cn[3]]=Dn),Cn[2]&&Cn[2].filter(function(si){return"number"==typeof si}).forEach(function(si){$t[si.toString(16)]=Dn}),$t}),zl=dt(function($t,Cn,Dn){return $t[Dn]=Dn,Cn[2]&&Cn[2].filter(function(si){return"string"==typeof si}).forEach(function(si){$t[si]=Dn}),$t}),mi=dt(function($t,Cn,Dn){var Zn=Cn[2];return $t[Dn]=Dn,Zn.forEach(function(si){$t[si]=Dn}),$t});var st="far"in Ss||Ui.autoFetchSvg,ft=Ei(tr,function($t,Cn){var Dn=Cn[0],Zn=Cn[1],si=Cn[2];return"far"===Zn&&!st&&(Zn="fas"),"string"==typeof Dn&&($t.names[Dn]={prefix:Zn,iconName:si}),"number"==typeof Dn&&($t.unicodes[Dn.toString(16)]={prefix:Zn,iconName:si}),$t},{names:{},unicodes:{}});ds=ft.names,nr=ft.unicodes,Sl=eo(Ui.styleDefault,{family:Ui.familyDefault})};function Tr(Te,dt){return(pl[Te]||{})[dt]}function mo(Te,dt){return(mi[Te]||{})[dt]}function Tl(Te){return ds[Te]||{prefix:null,iconName:null}}function za(){return Sl}function eo(Te){var st=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).family,ft=void 0===st?oe:st;return ft!==Ye||Te?jr[ft][Te]||jr[ft][bo[ft][Te]]||(Te in Oi.styles?Te:null)||null:"fad"}function fo(Te){return Te.sort().filter(function(dt,st,ft){return ft.indexOf(dt)===st})}(function vr(Te){xs.push(Te)})(function(Te){Sl=eo(Te.styleDefault,{family:Ui.familyDefault})}),gl();var To=di.concat(bt);function Ho(Te){var st=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).skipLookups,ft=void 0!==st&&st,$t=null,Cn=fo(Te.filter(function(Ba){return To.includes(Ba)})),Dn=fo(Te.filter(function(Ba){return!To.includes(Ba)})),_t=xe(Cn.filter(function(Ba){return $t=Ba,!ht.includes(Ba)}),1)[0],ji=void 0===_t?null:_t,Hi=function Dl(Te){var dt=oe,st=Eo.reduce(function(ft,$t){return ft[$t]="".concat(Ui.cssPrefix,"-").concat($t),ft},{});return Be.forEach(function(ft){(Te.includes(st[ft])||Te.some(function($t){return Mo[ft].includes($t)}))&&(dt=ft)}),dt}(Cn),Ja=G(G({},function So(Te){var dt=[],st=null;return Te.forEach(function(ft){var $t=function Go(Te,dt){var st=dt.split("-"),ft=st[0],$t=st.slice(1).join("-");return ft!==Te||""===$t||function Uo(Te){return~_r.indexOf(Te)}($t)?null:$t}(Ui.cssPrefix,ft);$t?st=$t:ft&&dt.push(ft)}),{iconName:st,rest:dt}}(Dn)),{},{prefix:eo(ji,{family:Hi})});return G(G(G({},Ja),function no(Te){var dt=Te.values,st=Te.family,ft=Te.canonical,$t=Te.givenPrefix,Cn=void 0===$t?"":$t,Dn=Te.styles,Zn=void 0===Dn?{}:Dn,si=Te.config,_t=void 0===si?{}:si,ji=st===Ye,Hi=dt.includes("fa-duotone")||dt.includes("fad");if(!ji&&(Hi||"duotone"===_t.familyDefault||("fad"===ft.prefix||"fa-duotone"===ft.prefix))&&(ft.prefix="fad"),(dt.includes("fa-brands")||dt.includes("fab"))&&(ft.prefix="fab"),!ft.prefix&&to.includes(st)&&(Object.keys(Zn).find(function(vs){return wl.includes(vs)})||_t.autoFetchSvg)){var _s=se.get(st).defaultShortPrefixId;ft.prefix=_s,ft.iconName=mo(ft.prefix,ft.iconName)||ft.iconName}return("fa"===ft.prefix||"fa"===Cn)&&(ft.prefix=za()||"fas"),ft}({values:Te,family:Hi,styles:Ss,config:Ui,canonical:Ja,givenPrefix:$t})),function _l(Te,dt,st){var ft=st.prefix,$t=st.iconName;if(Te||!ft||!$t)return{prefix:ft,iconName:$t};var Cn="fa"===dt?Tl($t):{},Dn=mo(ft,$t);return"far"===(ft=Cn.prefix||ft)&&!Ss.far&&Ss.fas&&!Ui.autoFetchSvg&&(ft="fas"),{prefix:ft,iconName:$t=Cn.iconName||Dn||$t}}(ft,$t,Ja))}var to=Be.filter(function(Te){return Te!==oe||Te!==Ye}),wl=Object.keys(Jt).filter(function(Te){return Te!==oe}).map(function(Te){return Object.keys(Jt[Te])}).flat(),Al=function(){return function C(Te,dt,st){return dt&&L(Te.prototype,dt),st&&L(Te,st),Object.defineProperty(Te,"prototype",{writable:!1}),Te}(function Te(){(function u(Te,dt){if(!(Te instanceof dt))throw new TypeError("Cannot call a class as a function")})(this,Te),this.definitions={}},[{key:"add",value:function(){for(var st=this,ft=arguments.length,$t=new Array(ft),Cn=0;Cn0&&ji.forEach(function(Hi){"string"==typeof Hi&&(st[Zn][Hi]=_t)}),st[Zn][si]=_t}),st}}])}(),io=[],Ys={},Dr={},li=Object.keys(Dr);function ao(Te,dt){for(var st=arguments.length,ft=new Array(st>2?st-2:0),$t=2;$t1?dt-1:0),ft=1;ft0&&void 0!==arguments[0]?arguments[0]:{};return H?(Pr("beforeI2svg",dt),so("pseudoElements2svg",dt),so("i2svg",dt)):Promise.reject(new Error("Operation requires a DOM of some kind."))},watch:function(){var dt=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},st=dt.autoReplaceSvgRoot;!1===Ui.autoReplaceSvg&&(Ui.autoReplaceSvg=!0),Ui.observeMutations=!0,function On(Te){H&&(kt?setTimeout(Te,0):ua.push(Te))}(function(){ql({autoReplaceSvgRoot:st}),Pr("watch",dt)})}},ir={noAuto:function(){Ui.autoReplaceSvg=!1,Ui.observeMutations=!1,Pr("noAuto")},config:Ui,dom:Jl,parse:{icon:function(dt){if(null===dt)return null;if("object"===be(dt)&&dt.prefix&&dt.iconName)return{prefix:dt.prefix,iconName:mo(dt.prefix,dt.iconName)||dt.iconName};if(Array.isArray(dt)&&2===dt.length){var st=0===dt[1].indexOf("fa-")?dt[1].slice(3):dt[1],ft=eo(dt[0]);return{prefix:ft,iconName:mo(ft,st)||st}}if("string"==typeof dt&&(dt.indexOf("".concat(Ui.cssPrefix,"-"))>-1||dt.match(js))){var $t=Ho(dt.split(" "),{skipLookups:!0});return{prefix:$t.prefix||za(),iconName:mo($t.prefix,$t.iconName)||$t.iconName}}if("string"==typeof dt){var Cn=za();return{prefix:Cn,iconName:mo(Cn,dt)||dt}}}},library:Ul,findIconDefinition:tl,toHtml:$e},ql=function(){var st=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}).autoReplaceSvgRoot,ft=void 0===st?ie:st;(Object.keys(Oi.styles).length>0||Ui.autoFetchSvg)&&H&&Ui.autoReplaceSvg&&ir.dom.i2svg({node:ft})};function Wo(Te,dt){return Object.defineProperty(Te,"abstract",{get:dt}),Object.defineProperty(Te,"html",{get:function(){return Te.abstract.map(function(ft){return $e(ft)})}}),Object.defineProperty(Te,"node",{get:function(){if(H){var ft=ie.createElement("div");return ft.innerHTML=Te.html,ft.children}}}),Te}function Q(Te){var dt=Te.icons,st=dt.main,ft=dt.mask,$t=Te.prefix,Cn=Te.iconName,Dn=Te.transform,Zn=Te.symbol,si=Te.maskId,_t=Te.extra,ji=Te.watchable,Hi=void 0!==ji&&ji,Ja=ft.found?ft:st,Ba=Ja.width,wr=Ja.height,_s=[Ui.replacementClass,Cn?"".concat(Ui.cssPrefix,"-").concat(Cn):""].filter(function(sc){return-1===_t.classes.indexOf(sc)}).filter(function(sc){return""!==sc||!!sc}).concat(_t.classes).join(" "),vs={children:[],attributes:G(G({},_t.attributes),{},{"data-prefix":$t,"data-icon":Cn,class:_s,role:_t.attributes.role||"img",viewBox:"0 0 ".concat(Ba," ").concat(wr)})};!function de(Te){return["aria-label","aria-labelledby","title","role"].some(function(st){return st in Te})}(_t.attributes)&&!_t.attributes["aria-hidden"]&&(vs.attributes["aria-hidden"]="true"),Hi&&(vs.attributes[_a]="");var rr=G(G({},vs),{},{prefix:$t,iconName:Cn,main:st,mask:ft,maskId:si,transform:Dn,symbol:Zn,styles:G({},_t.styles)}),Bs=ft.found&&st.found?so("generateAbstractMask",rr)||{children:[],attributes:{}}:so("generateAbstractIcon",rr)||{children:[],attributes:{}},Kr=Bs.attributes;return rr.children=Bs.children,rr.attributes=Kr,Zn?function X(Te){var st=Te.iconName,ft=Te.children,$t=Te.attributes,Cn=Te.symbol,Dn=!0===Cn?"".concat(Te.prefix,"-").concat(Ui.cssPrefix,"-").concat(st):Cn;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:G(G({},$t),{},{id:Dn}),children:ft}]}]}(rr):function nl(Te){var dt=Te.children,st=Te.main,ft=Te.mask,$t=Te.attributes,Cn=Te.styles,Dn=Te.transform;if(Fs(Dn)&&st.found&&!ft.found){var _t={x:st.width/st.height/2,y:.5};$t.style=Rr(G(G({},Cn),{},{"transform-origin":"".concat(_t.x+Dn.x/16,"em ").concat(_t.y+Dn.y/16,"em")}))}return[{tag:"svg",attributes:$t,children:dt}]}(rr)}function me(Te){var dt=Te.content,st=Te.width,ft=Te.height,$t=Te.transform,Cn=Te.extra,Dn=Te.watchable,Zn=void 0!==Dn&&Dn,si=G(G({},Cn.attributes),{},{class:Cn.classes.join(" ")});Zn&&(si[_a]="");var _t=G({},Cn.styles);Fs($t)&&(_t.transform=function Ks(Te){var dt=Te.transform,st=Te.width,$t=Te.height,Cn=void 0===$t?16:$t,Dn=Te.startCentered,Zn=void 0!==Dn&&Dn,si="";return si+=Zn&&$?"translate(".concat(dt.x/16-(void 0===st?16:st)/2,"em, ").concat(dt.y/16-Cn/2,"em) "):Zn?"translate(calc(-50% + ".concat(dt.x/16,"em), calc(-50% + ").concat(dt.y/16,"em)) "):"translate(".concat(dt.x/16,"em, ").concat(dt.y/16,"em) "),(si+="scale(".concat(dt.size/16*(dt.flipX?-1:1),", ").concat(dt.size/16*(dt.flipY?-1:1),") "))+"rotate(".concat(dt.rotate,"deg) ")}({transform:$t,startCentered:!0,width:st,height:ft}),_t["-webkit-transform"]=_t.transform);var ji=Rr(_t);ji.length>0&&(si.style=ji);var Hi=[];return Hi.push({tag:"span",attributes:si,children:[dt]}),Hi}var Mt=Oi.styles;function Kt(Te){var dt=Te[0],st=Te[1],Cn=xe(Te.slice(4),1)[0];return{found:!0,width:dt,height:st,icon:Array.isArray(Cn)?{tag:"g",attributes:{class:"".concat(Ui.cssPrefix,"-").concat(Js_GROUP)},children:[{tag:"path",attributes:{class:"".concat(Ui.cssPrefix,"-").concat(Js_SECONDARY),fill:"currentColor",d:Cn[0]}},{tag:"path",attributes:{class:"".concat(Ui.cssPrefix,"-").concat(Js_PRIMARY),fill:"currentColor",d:Cn[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:Cn}}}}var Tn={found:!1,width:512,height:512};function Gi(Te,dt){var st=dt;return"fa"===dt&&null!==Ui.styleDefault&&(dt=za()),new Promise(function(ft,$t){if("fa"===st){var Cn=Tl(Te)||{};Te=Cn.iconName||Te,dt=Cn.prefix||dt}if(Te&&dt&&Mt[dt]&&Mt[dt][Te])return ft(Kt(Mt[dt][Te]));(function ai(Te,dt){!zo&&!Ui.showMissingIcons&&Te&&console.error('Icon with name "'.concat(Te,'" and prefix "').concat(dt,'" is missing.'))})(Te,dt),ft(G(G({},Tn),{},{icon:Ui.showMissingIcons&&Te&&so("missingIconAbstract")||{}}))})}var La=function(){},as=Ui.measurePerformance&&F&&F.mark&&F.measure?F:{mark:La,measure:La},Ns='FA "7.1.0"',ro_begin=function(dt){return as.mark("".concat(Ns," ").concat(dt," begins")),function(){return function(dt){as.mark("".concat(Ns," ").concat(dt," ends")),as.measure("".concat(Ns," ").concat(dt),"".concat(Ns," ").concat(dt," begins"),"".concat(Ns," ").concat(dt," ends"))}(dt)}},oo=function(){};function Il(Te){return"string"==typeof(Te.getAttribute?Te.getAttribute(_a):null)}function Xc(Te){return ie.createElementNS("http://www.w3.org/2000/svg",Te)}function po(Te){return ie.createElement(Te)}function fc(Te){var st=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:{}).ceFn,ft=void 0===st?"svg"===Te.tag?Xc:po:st;if("string"==typeof Te)return ie.createTextNode(Te);var $t=ft(Te.tag);return Object.keys(Te.attributes||[]).forEach(function(Dn){$t.setAttribute(Dn,Te.attributes[Dn])}),(Te.children||[]).forEach(function(Dn){$t.appendChild(fc(Dn,{ceFn:ft}))}),$t}var Fr={replace:function(dt){var st=dt[0];if(st.parentNode)if(dt[1].forEach(function($t){st.parentNode.insertBefore(fc($t),st)}),null===st.getAttribute(_a)&&Ui.keepOriginalSource){var ft=ie.createComment(function pc(Te){var dt=" ".concat(Te.outerHTML," ");return"".concat(dt,"Font Awesome fontawesome.com ")}(st));st.parentNode.replaceChild(ft,st)}else st.remove()},nest:function(dt){var st=dt[0],ft=dt[1];if(~ja(st).indexOf(Ui.replacementClass))return Fr.replace(dt);var $t=new RegExp("".concat(Ui.cssPrefix,"-.*"));if(delete ft[0].attributes.id,ft[0].attributes.class){var Cn=ft[0].attributes.class.split(" ").reduce(function(Zn,si){return si===Ui.replacementClass||si.match($t)?Zn.toSvg.push(si):Zn.toNode.push(si),Zn},{toNode:[],toSvg:[]});ft[0].attributes.class=Cn.toSvg.join(" "),0===Cn.toNode.length?st.removeAttribute("class"):st.setAttribute("class",Cn.toNode.join(" "))}var Dn=ft.map(function(Zn){return $e(Zn)}).join("\n");st.setAttribute(_a,""),st.innerHTML=Dn}};function wo(Te){Te()}function od(Te,dt){var st="function"==typeof dt?dt:oo;if(0===Te.length)st();else{var ft=wo;"async"===Ui.mutateApproach&&(ft=te.requestAnimationFrame||wo),ft(function(){var $t=function kl(){return!0===Ui.autoReplaceSvg?Fr.replace:Fr[Ui.autoReplaceSvg]||Fr.replace}(),Cn=ro_begin("mutate");Te.map($t),Cn(),st()})}}var Ao=!1;function Lc(){Ao=!0}function vl(){Ao=!1}var al=null;function Lo(Te){if(P&&Ui.observeMutations){var dt=Te.treeCallback,st=void 0===dt?oo:dt,ft=Te.nodeCallback,$t=void 0===ft?oo:ft,Cn=Te.pseudoElementsCallback,Dn=void 0===Cn?oo:Cn,Zn=Te.observeMutationsRoot,si=void 0===Zn?ie:Zn;al=new P(function(_t){if(!Ao){var ji=za();wa(_t).forEach(function(Hi){if("childList"===Hi.type&&Hi.addedNodes.length>0&&!Il(Hi.addedNodes[0])&&(Ui.searchPseudoElements&&Dn(Hi.target),st(Hi.target)),"attributes"===Hi.type&&Hi.target.parentNode&&Ui.searchPseudoElements&&Dn([Hi.target],!0),"attributes"===Hi.type&&Il(Hi.target)&&~Co.indexOf(Hi.attributeName))if("class"===Hi.attributeName&&function mc(Te){var dt=Te.getAttribute?Te.getAttribute(ns):null,st=Te.getAttribute?Te.getAttribute(Ga):null;return dt&&st}(Hi.target)){var Ja=Ho(ja(Hi.target)),wr=Ja.iconName;Hi.target.setAttribute(ns,Ja.prefix||ji),wr&&Hi.target.setAttribute(Ga,wr)}else(function ec(Te){return Te&&Te.classList&&Te.classList.contains&&Te.classList.contains(Ui.replacementClass)})(Hi.target)&&$t(Hi.target)})}}),H&&al.observe(si,{childList:!0,attributes:!0,characterData:!0,subtree:!0})}}function Io(Te){var dt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{styleParser:!0},st=function jl(Te){var dt=Te.getAttribute("data-prefix"),st=Te.getAttribute("data-icon"),ft=void 0!==Te.innerText?Te.innerText.trim():"",$t=Ho(ja(Te));return $t.prefix||($t.prefix=za()),dt&&st&&($t.prefix=dt,$t.iconName=st),$t.iconName&&$t.prefix||($t.prefix&&ft.length>0&&($t.iconName=function jo(Te,dt){return(zl[Te]||{})[dt]}($t.prefix,Te.innerText)||Tr($t.prefix,xa(Te.innerText))),!$t.iconName&&Ui.autoFetchSvg&&Te.firstChild&&Te.firstChild.nodeType===Node.TEXT_NODE&&($t.iconName=Te.firstChild.data)),$t}(Te),ft=st.iconName,$t=st.prefix,Cn=st.rest,Dn=function Hl(Te){return wa(Te.attributes).reduce(function(st,ft){return"class"!==st.name&&"style"!==st.name&&(st[ft.name]=ft.value),st},{})}(Te),Zn=ao("parseNodeAttributes",{},Te),si=dt.styleParser?function Gl(Te){var dt=Te.getAttribute("style"),st=[];return dt&&(st=dt.split(";").reduce(function(ft,$t){var Cn=$t.split(":"),Dn=Cn[0],Zn=Cn.slice(1);return Dn&&Zn.length>0&&(ft[Dn]=Zn.join(":").trim()),ft},{})),st}(Te):[];return G({iconName:ft,prefix:$t,transform:Pa,mask:{iconName:null,prefix:null,rest:[]},maskId:null,symbol:!1,extra:{classes:Cn,styles:si,attributes:Dn}},Zn)}var ko=Oi.styles;function Wl(Te){var dt="nest"===Ui.autoReplaceSvg?Io(Te,{styleParser:!1}):Io(Te);return~dt.extra.classes.indexOf(Vo)?so("generateLayersText",Te,dt):so("generateSvgReplacementMutation",Te,dt)}function Ts(Te){var dt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(!H)return Promise.resolve();var st=ie.documentElement.classList,ft=function(Hi){return st.add("".concat(As,"-").concat(Hi))},$t=function(Hi){return st.remove("".concat(As,"-").concat(Hi))},Cn=Ui.autoFetchSvg?function sr(){return[].concat(Ee(bt),Ee(di))}():ht.concat(Object.keys(ko));Cn.includes("fa")||Cn.push("fa");var Dn=[".".concat(Vo,":not([").concat(_a,"])")].concat(Cn.map(function(ji){return".".concat(ji,":not([").concat(_a,"])")})).join(", ");if(0===Dn.length)return Promise.resolve();var Zn=[];try{Zn=wa(Te.querySelectorAll(Dn))}catch{}if(!(Zn.length>0))return Promise.resolve();ft("pending"),$t("complete");var si=ro_begin("onTree"),_t=Zn.reduce(function(ji,Hi){try{var Ja=Wl(Hi);Ja&&ji.push(Ja)}catch(Ba){zo||"MissingIcon"===Ba.name&&console.error(Ba)}return ji},[]);return new Promise(function(ji,Hi){Promise.all(_t).then(function(Ja){od(Ja,function(){ft("active"),ft("complete"),$t("pending"),"function"==typeof dt&&dt(),si(),ji()})}).catch(function(Ja){si(),Hi(Ja)})})}function yt(Te){var dt=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;Wl(Te).then(function(st){st&&od([st],dt)})}var ct=function(dt){var st=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},ft=st.transform,$t=void 0===ft?Pa:ft,Cn=st.symbol,Dn=void 0!==Cn&&Cn,Zn=st.mask,si=void 0===Zn?null:Zn,_t=st.maskId,ji=void 0===_t?null:_t,Hi=st.classes,Ja=void 0===Hi?[]:Hi,Ba=st.attributes,wr=void 0===Ba?{}:Ba,_s=st.styles,vs=void 0===_s?{}:_s;if(dt){var rr=dt.prefix,Bs=dt.iconName,ol=dt.icon;return Wo(G({type:"icon"},dt),function(){return Pr("beforeDOMElementCreation",{iconDefinition:dt,params:st}),Q({icons:{main:Kt(ol),mask:si?Kt(si.icon):{found:!1,width:null,height:null,icon:{}}},prefix:rr,iconName:Bs,transform:G(G({},Pa),$t),symbol:Dn,maskId:ji,extra:{attributes:wr,styles:vs,classes:Ja}})})}},Qt={mixout:function(){return{icon:(Te=ct,function(dt){var st=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},ft=(dt||{}).icon?dt:tl(dt||{}),$t=st.mask;return $t&&($t=($t||{}).icon?$t:tl($t||{})),Te(ft,G(G({},st),{},{mask:$t}))})};var Te},hooks:function(){return{mutationObserverCallbacks:function(st){return st.treeCallback=Ts,st.nodeCallback=yt,st}}},provides:function(dt){dt.i2svg=function(st){var ft=st.node,Cn=st.callback;return Ts(void 0===ft?ie:ft,void 0===Cn?function(){}:Cn)},dt.generateSvgReplacementMutation=function(st,ft){var $t=ft.iconName,Cn=ft.prefix,Dn=ft.transform,Zn=ft.symbol,si=ft.mask,_t=ft.maskId,ji=ft.extra;return new Promise(function(Hi,Ja){Promise.all([Gi($t,Cn),si.iconName?Gi(si.iconName,si.prefix):Promise.resolve({found:!1,width:512,height:512,icon:{}})]).then(function(Ba){var wr=xe(Ba,2);Hi([st,Q({icons:{main:wr[0],mask:wr[1]},prefix:Cn,iconName:$t,transform:Dn,symbol:Zn,maskId:_t,extra:ji,watchable:!0})])}).catch(Ja)})},dt.generateAbstractIcon=function(st){var _t,ft=st.children,$t=st.attributes,Cn=st.main,Dn=st.transform,si=Rr(st.styles);return si.length>0&&($t.style=si),Fs(Dn)&&(_t=so("generateAbstractTransformGrouping",{main:Cn,transform:Dn,containerWidth:Cn.width,iconWidth:Cn.width})),ft.push(_t||Cn.icon),{children:ft,attributes:$t}}}},Pn={mixout:function(){return{layer:function(st){var ft=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},$t=ft.classes,Cn=void 0===$t?[]:$t;return Wo({type:"layer"},function(){Pr("beforeDOMElementCreation",{assembler:st,params:ft});var Dn=[];return st(function(Zn){Array.isArray(Zn)?Zn.map(function(si){Dn=Dn.concat(si.abstract)}):Dn=Dn.concat(Zn.abstract)}),[{tag:"span",attributes:{class:["".concat(Ui.cssPrefix,"-layers")].concat(Ee(Cn)).join(" ")},children:Dn}]})}}}},$n={mixout:function(){return{counter:function(st){var ft=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},$t=ft.title,Cn=void 0===$t?null:$t,Dn=ft.classes,Zn=void 0===Dn?[]:Dn,si=ft.attributes,_t=void 0===si?{}:si,ji=ft.styles,Hi=void 0===ji?{}:ji;return Wo({type:"counter",content:st},function(){return Pr("beforeDOMElementCreation",{content:st,params:ft}),function et(Te){var dt=Te.content,st=Te.extra,ft=G(G({},st.attributes),{},{class:st.classes.join(" ")}),$t=Rr(st.styles);$t.length>0&&(ft.style=$t);var Cn=[];return Cn.push({tag:"span",attributes:ft,children:[dt]}),Cn}({content:st.toString(),title:Cn,extra:{attributes:_t,styles:Hi,classes:["".concat(Ui.cssPrefix,"-layers-counter")].concat(Ee(Zn))}})})}}}},Ci={mixout:function(){return{text:function(st){var ft=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},$t=ft.transform,Cn=void 0===$t?Pa:$t,Dn=ft.classes,Zn=void 0===Dn?[]:Dn,si=ft.attributes,_t=void 0===si?{}:si,ji=ft.styles,Hi=void 0===ji?{}:ji;return Wo({type:"text",content:st},function(){return Pr("beforeDOMElementCreation",{content:st,params:ft}),me({content:st,transform:G(G({},Pa),Cn),extra:{attributes:_t,styles:Hi,classes:["".concat(Ui.cssPrefix,"-layers-text")].concat(Ee(Zn))}})})}}},provides:function(dt){dt.generateLayersText=function(st,ft){var $t=ft.transform,Cn=ft.extra,Dn=null,Zn=null;if($){var si=parseInt(getComputedStyle(st).fontSize,10),_t=st.getBoundingClientRect();Dn=_t.width/si,Zn=_t.height/si}return Promise.resolve([st,me({content:st.innerHTML,width:Dn,height:Zn,transform:$t,extra:Cn,watchable:!0})])}}},wi=new RegExp('"',"ug"),$i=[1105920,1112319],sa=G(G(G(G({},{FontAwesome:{normal:"fas",400:"fas"}}),{"Font Awesome 7 Free":{900:"fas",400:"far"},"Font Awesome 7 Pro":{900:"fas",400:"far",normal:"far",300:"fal",100:"fat"},"Font Awesome 7 Brands":{400:"fab",normal:"fab"},"Font Awesome 7 Duotone":{900:"fad",400:"fadr",normal:"fadr",300:"fadl",100:"fadt"},"Font Awesome 7 Sharp":{900:"fass",400:"fasr",normal:"fasr",300:"fasl",100:"fast"},"Font Awesome 7 Sharp Duotone":{900:"fasds",400:"fasdr",normal:"fasdr",300:"fasdl",100:"fasdt"},"Font Awesome 7 Jelly":{400:"fajr",normal:"fajr"},"Font Awesome 7 Jelly Fill":{400:"fajfr",normal:"fajfr"},"Font Awesome 7 Jelly Duo":{400:"fajdr",normal:"fajdr"},"Font Awesome 7 Slab":{400:"faslr",normal:"faslr"},"Font Awesome 7 Slab Press":{400:"faslpr",normal:"faslpr"},"Font Awesome 7 Thumbprint":{300:"fatl",normal:"fatl"},"Font Awesome 7 Notdog":{900:"fans",normal:"fans"},"Font Awesome 7 Notdog Duo":{900:"fands",normal:"fands"},"Font Awesome 7 Etch":{900:"faes",normal:"faes"},"Font Awesome 7 Chisel":{400:"facr",normal:"facr"},"Font Awesome 7 Whiteboard":{600:"fawsb",normal:"fawsb"},"Font Awesome 7 Utility":{600:"fausb",normal:"fausb"},"Font Awesome 7 Utility Duo":{600:"faudsb",normal:"faudsb"},"Font Awesome 7 Utility Fill":{600:"faufsb",normal:"faufsb"}}),{"Font Awesome 5 Free":{900:"fas",400:"far"},"Font Awesome 5 Pro":{900:"fas",400:"far",normal:"far",300:"fal"},"Font Awesome 5 Brands":{400:"fab",normal:"fab"},"Font Awesome 5 Duotone":{900:"fad"}}),{"Font Awesome Kit":{400:"fak",normal:"fak"},"Font Awesome Kit Duotone":{400:"fakd",normal:"fakd"}}),va=Object.keys(sa).reduce(function(Te,dt){return Te[dt.toLowerCase()]=sa[dt],Te},{}),oa=Object.keys(va).reduce(function(Te,dt){var st=va[dt];return Te[dt]=st[900]||Ee(Object.entries(st))[0][1],Te},{});function Nr(Te,dt){var st="".concat("data-fa-pseudo-element-pending").concat(dt.replace(":","-"));return new Promise(function(ft,$t){if(null!==Te.getAttribute(st))return ft();var Dn=wa(Te.children).filter(function(ll){return ll.getAttribute(Ua)===dt})[0],Zn=te.getComputedStyle(Te,dt),si=Zn.getPropertyValue("font-family"),_t=si.match(Zr),ji=Zn.getPropertyValue("font-weight"),Hi=Zn.getPropertyValue("content");if(Dn&&!_t)return Te.removeChild(Dn),ft();if(_t&&"none"!==Hi&&""!==Hi){var Ja=Zn.getPropertyValue("content"),Ba=function gi(Te,dt){var st=Te.replace(/^['"]|['"]$/g,"").toLowerCase(),ft=parseInt(dt),$t=isNaN(ft)?"normal":ft;return(va[st]||{})[$t]||oa[st]}(si,ji),wr=function hs(Te){return xa(Ee(Te.replace(wi,""))[0]||"")}(Ja),_s=_t[0].startsWith("FontAwesome"),vs=function Ls(Te){var dt=Te.getPropertyValue("font-feature-settings").includes("ss01"),ft=Te.getPropertyValue("content").replace(wi,""),$t=ft.codePointAt(0);return $t>=$i[0]&&$t<=$i[1]||2===ft.length&&ft[0]===ft[1]||dt}(Zn),rr=Tr(Ba,wr),Bs=rr;if(_s){var ol=function Vl(Te){var dt=nr[Te],st=Tr("fas",Te);return dt||(st?{prefix:"fas",iconName:st}:null)||{prefix:null,iconName:null}}(wr);ol.iconName&&ol.prefix&&(rr=ol.iconName,Ba=ol.prefix)}if(!rr||vs||Dn&&Dn.getAttribute(ns)===Ba&&Dn.getAttribute(Ga)===Bs)ft();else{Te.setAttribute(st,Bs),Dn&&Te.removeChild(Dn);var Kr=function Rl(){return{iconName:null,prefix:null,transform:Pa,symbol:!1,mask:{iconName:null,prefix:null,rest:[]},maskId:null,extra:{classes:[],styles:{},attributes:{}}}}(),sc=Kr.extra;sc.attributes[Ua]=dt,Gi(rr,Ba).then(function(ll){var D4=Q(G(G({},Kr),{},{icons:{main:ll,mask:{prefix:null,iconName:null,rest:[]}},prefix:Ba,iconName:Bs,extra:sc,watchable:!0})),vc=ie.createElementNS("http://www.w3.org/2000/svg","svg");"::before"===dt?Te.insertBefore(vc,Te.firstChild):Te.appendChild(vc),vc.outerHTML=D4.map(function(s2){return $e(s2)}).join("\n"),Te.removeAttribute(st),ft()}).catch($t)}}else ft()})}function Br(Te){return Promise.all([Nr(Te,"::before"),Nr(Te,"::after")])}function Xo(Te){return!(Te.parentNode===document.head||~mr.indexOf(Te.tagName.toUpperCase())||Te.getAttribute(Ua)||Te.parentNode&&"svg"===Te.parentNode.tagName)}var Oo=function(dt){return!!dt&&fr.some(function(st){return dt.includes(st)})},Pl=function(dt){if(!dt)return[];var Cn,st=new Set,ft=dt.split(/,(?![^()]*\))/).map(function(si){return si.trim()}),$t=B(ft=ft.flatMap(function(si){return si.includes("(")?si:si.split(",").map(function(_t){return _t.trim()})}));try{for($t.s();!(Cn=$t.n()).done;){var Dn=Cn.value;if(Oo(Dn)){var Zn=fr.reduce(function(si,_t){return si.replace(_t,"")},Dn);""!==Zn&&"*"!==Zn&&st.add(Zn)}}}catch(si){$t.e(si)}finally{$t.f()}return st};function yl(Te){if(H){var st;if(arguments.length>1&&void 0!==arguments[1]&&arguments[1])st=Te;else if(Ui.searchPseudoElementsFullScan)st=Te.querySelectorAll("*");else{var Cn,ft=new Set,$t=B(document.styleSheets);try{for($t.s();!(Cn=$t.n()).done;){var Dn=Cn.value;try{var si,Zn=B(Dn.cssRules);try{for(Zn.s();!(si=Zn.n()).done;){var Ja,Hi=B(Pl(si.value.selectorText));try{for(Hi.s();!(Ja=Hi.n()).done;)ft.add(Ja.value)}catch(_s){Hi.e(_s)}finally{Hi.f()}}}catch(_s){Zn.e(_s)}finally{Zn.f()}}catch(_s){Ui.searchPseudoElementsWarnings&&console.warn("Font Awesome: cannot parse stylesheet: ".concat(Dn.href," (").concat(_s.message,')\nIf it declares any Font Awesome CSS pseudo-elements, they will not be rendered as SVG icons. Add crossorigin="anonymous" to the , enable searchPseudoElementsFullScan for slower but more thorough DOM parsing, or suppress this warning by setting searchPseudoElementsWarnings to false.'))}}}catch(_s){$t.e(_s)}finally{$t.f()}if(!ft.size)return;var wr=Array.from(ft).join(", ");try{st=Te.querySelectorAll(wr)}catch{}}return new Promise(function(_s,vs){var rr=wa(st).filter(Xo).map(Br),Bs=ro_begin("searchPseudoElements");Lc(),Promise.all(rr).then(function(){Bs(),vl(),_s()}).catch(function(){Bs(),vl(),vs()})})}}var tc=!1,Kc=function(dt){return dt.toLowerCase().split(" ").reduce(function(ft,$t){var Cn=$t.toLowerCase().split("-"),Dn=Cn[0],Zn=Cn.slice(1).join("-");if(Dn&&"h"===Zn)return ft.flipX=!0,ft;if(Dn&&"v"===Zn)return ft.flipY=!0,ft;if(Zn=parseFloat(Zn),isNaN(Zn))return ft;switch(Dn){case"grow":ft.size=ft.size+Zn;break;case"shrink":ft.size=ft.size-Zn;break;case"left":ft.x=ft.x-Zn;break;case"right":ft.x=ft.x+Zn;break;case"up":ft.y=ft.y-Zn;break;case"down":ft.y=ft.y+Zn;break;case"rotate":ft.rotate=ft.rotate+Zn}return ft},{size:16,x:0,y:0,flipX:!1,flipY:!1,rotate:0})},gc={x:0,y:0,width:"100%",height:"100%"};function Yc(Te){return Te.attributes&&(Te.attributes.fill||!(arguments.length>1&&void 0!==arguments[1])||arguments[1])&&(Te.attributes.fill="black"),Te}!function Wr(Te,dt){var st=dt.mixoutsTo;io=Te,Ys={},Object.keys(Dr).forEach(function(ft){-1===li.indexOf(ft)&&delete Dr[ft]}),io.forEach(function(ft){var $t=ft.mixout?ft.mixout():{};if(Object.keys($t).forEach(function(Dn){"function"==typeof $t[Dn]&&(st[Dn]=$t[Dn]),"object"===be($t[Dn])&&Object.keys($t[Dn]).forEach(function(Zn){st[Dn]||(st[Dn]={}),st[Dn][Zn]=$t[Dn][Zn]})}),ft.hooks){var Cn=ft.hooks();Object.keys(Cn).forEach(function(Dn){Ys[Dn]||(Ys[Dn]=[]),Ys[Dn].push(Cn[Dn])})}ft.provides&&ft.provides(Dr)})}([mt,Qt,Pn,$n,Ci,{hooks:function(){return{mutationObserverCallbacks:function(st){return st.pseudoElementsCallback=yl,st}}},provides:function(dt){dt.pseudoElements2svg=function(st){var ft=st.node;Ui.searchPseudoElements&&yl(void 0===ft?ie:ft)}}},{mixout:function(){return{dom:{unwatch:function(){Lc(),tc=!0}}}},hooks:function(){return{bootstrap:function(){Lo(ao("mutationObserverCallbacks",{}))},noAuto:function(){!function Ol(){al&&al.disconnect()}()},watch:function(st){var ft=st.observeMutationsRoot;tc?vl():Lo(ao("mutationObserverCallbacks",{observeMutationsRoot:ft}))}}}},{mixout:function(){return{parse:{transform:function(st){return Kc(st)}}}},hooks:function(){return{parseNodeAttributes:function(st,ft){var $t=ft.getAttribute("data-fa-transform");return $t&&(st.transform=Kc($t)),st}}},provides:function(dt){dt.generateAbstractTransformGrouping=function(st){var ft=st.main,$t=st.transform,Dn=st.iconWidth,Zn={transform:"translate(".concat(st.containerWidth/2," 256)")},si="translate(".concat(32*$t.x,", ").concat(32*$t.y,") "),_t="scale(".concat($t.size/16*($t.flipX?-1:1),", ").concat($t.size/16*($t.flipY?-1:1),") "),ji="rotate(".concat($t.rotate," 0 0)"),Ba={outer:Zn,inner:{transform:"".concat(si," ").concat(_t," ").concat(ji)},path:{transform:"translate(".concat(Dn/2*-1," -256)")}};return{tag:"g",attributes:G({},Ba.outer),children:[{tag:"g",attributes:G({},Ba.inner),children:[{tag:ft.icon.tag,children:ft.icon.children,attributes:G(G({},ft.icon.attributes),Ba.path)}]}]}}}},{hooks:function(){return{parseNodeAttributes:function(st,ft){var $t=ft.getAttribute("data-fa-mask"),Cn=$t?Ho($t.split(" ").map(function(Dn){return Dn.trim()})):{prefix:null,iconName:null,rest:[]};return Cn.prefix||(Cn.prefix=za()),st.mask=Cn,st.maskId=ft.getAttribute("data-fa-mask-id"),st}}},provides:function(dt){dt.generateAbstractMask=function(st){var Te,ft=st.children,$t=st.attributes,Cn=st.main,Dn=st.mask,Zn=st.maskId,ji=Cn.icon,Ja=Dn.icon,Ba=function Hr(Te){var dt=Te.transform,ft=Te.iconWidth,$t={transform:"translate(".concat(Te.containerWidth/2," 256)")},Cn="translate(".concat(32*dt.x,", ").concat(32*dt.y,") "),Dn="scale(".concat(dt.size/16*(dt.flipX?-1:1),", ").concat(dt.size/16*(dt.flipY?-1:1),") "),Zn="rotate(".concat(dt.rotate," 0 0)");return{outer:$t,inner:{transform:"".concat(Cn," ").concat(Dn," ").concat(Zn)},path:{transform:"translate(".concat(ft/2*-1," -256)")}}}({transform:st.transform,containerWidth:Dn.width,iconWidth:Cn.width}),wr={tag:"rect",attributes:G(G({},gc),{},{fill:"white"})},_s=ji.children?{children:ji.children.map(Yc)}:{},vs={tag:"g",attributes:G({},Ba.inner),children:[Yc(G({tag:ji.tag,attributes:G(G({},ji.attributes),Ba.path)},_s))]},rr={tag:"g",attributes:G({},Ba.outer),children:[vs]},Bs="mask-".concat(Zn||Xs()),ol="clip-".concat(Zn||Xs()),Kr={tag:"mask",attributes:G(G({},gc),{},{id:Bs,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[wr,rr]},sc={tag:"defs",children:[{tag:"clipPath",attributes:{id:ol},children:(Te=Ja,"g"===Te.tag?Te.children:[Te])},Kr]};return ft.push(sc,{tag:"rect",attributes:G({fill:"currentColor","clip-path":"url(#".concat(ol,")"),mask:"url(#".concat(Bs,")")},gc)}),{children:ft,attributes:$t}}}},{provides:function(dt){var st=!1;te.matchMedia&&(st=te.matchMedia("(prefers-reduced-motion: reduce)").matches),dt.missingIconAbstract=function(){var ft=[],$t={fill:"currentColor"},Cn={attributeType:"XML",repeatCount:"indefinite",dur:"2s"};ft.push({tag:"path",attributes:G(G({},$t),{},{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"})});var Dn=G(G({},Cn),{},{attributeName:"opacity"}),Zn={tag:"circle",attributes:G(G({},$t),{},{cx:"256",cy:"364",r:"28"}),children:[]};return st||Zn.children.push({tag:"animate",attributes:G(G({},Cn),{},{attributeName:"r",values:"28;14;28;28;14;28;"})},{tag:"animate",attributes:G(G({},Dn),{},{values:"1;0;1;1;0;1;"})}),ft.push(Zn),ft.push({tag:"path",attributes:G(G({},$t),{},{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),children:st?[]:[{tag:"animate",attributes:G(G({},Dn),{},{values:"1;0;0;0;0;1;"})}]}),st||ft.push({tag:"path",attributes:G(G({},$t),{},{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),children:[{tag:"animate",attributes:G(G({},Dn),{},{values:"0;0;1;1;0;0;"})}]}),{tag:"g",attributes:{class:"missing"},children:ft}}}},{hooks:function(){return{parseNodeAttributes:function(st,ft){var $t=ft.getAttribute("data-fa-symbol");return st.symbol=null!==$t&&(""===$t||$t),st}}}}],{mixoutsTo:ir});var Oa=ir.config,K=ir.dom,Ie=ir.parse,ui=ir.icon;const S4=["*"];let Qc=(()=>{class Te{defaultPrefix="fas";fallbackIcon=null;fixedWidth;set autoAddCss(st){Oa.autoAddCss=st,this._autoAddCss=st}get autoAddCss(){return this._autoAddCss}_autoAddCss=!0;static \u0275fac=function(ft){return new(ft||Te)};static \u0275prov=i.jDH({token:Te,factory:Te.\u0275fac,providedIn:"root"})}return Te})(),_c=(()=>{class Te{definitions={};addIcons(...st){for(const ft of st){ft.prefix in this.definitions||(this.definitions[ft.prefix]={}),this.definitions[ft.prefix][ft.iconName]=ft;for(const $t of ft.icon[2])"string"==typeof $t&&(this.definitions[ft.prefix][$t]=ft)}}addIconPacks(...st){for(const ft of st){const $t=Object.keys(ft).map(Cn=>ft[Cn]);this.addIcons(...$t)}}getIconDefinition(st,ft){return st in this.definitions&&ft in this.definitions[st]?this.definitions[st][ft]:null}static \u0275fac=function(ft){return new(ft||Te)};static \u0275prov=i.jDH({token:Te,factory:Te.\u0275fac,providedIn:"root"})}return Te})();const $c=Te=>null!=Te&&(90===Te||180===Te||270===Te||"90"===Te||"180"===Te||"270"===Te),n2=Te=>{const dt=$c(Te.rotate),st={[`fa-${Te.animation}`]:null!=Te.animation&&!Te.animation.startsWith("spin"),"fa-spin":"spin"===Te.animation||"spin-reverse"===Te.animation,"fa-spin-pulse":"spin-pulse"===Te.animation||"spin-pulse-reverse"===Te.animation,"fa-spin-reverse":"spin-reverse"===Te.animation||"spin-pulse-reverse"===Te.animation,"fa-pulse":"spin-pulse"===Te.animation||"spin-pulse-reverse"===Te.animation,"fa-fw":Te.fixedWidth,"fa-border":Te.border,"fa-inverse":Te.inverse,"fa-layers-counter":Te.counter,"fa-flip-horizontal":"horizontal"===Te.flip||"both"===Te.flip,"fa-flip-vertical":"vertical"===Te.flip||"both"===Te.flip,[`fa-${Te.size}`]:null!==Te.size,[`fa-rotate-${Te.rotate}`]:dt,"fa-rotate-by":null!=Te.rotate&&!dt,[`fa-pull-${Te.pull}`]:null!==Te.pull,[`fa-stack-${Te.stackItemSize}`]:null!=Te.stackItemSize};return Object.keys(st).map(ft=>st[ft]?ft:null).filter(ft=>null!=ft)},rl=new WeakSet,br="fa-auto-css";let Fl=(()=>{class Te{stackItemSize=(0,v.hFB)("1x");size=(0,v.hFB)();_effect=(0,T.QZ)(()=>{if(this.size())throw new Error('fa-icon is not allowed to customize size when used inside fa-stack. Set size on the enclosing fa-stack instead: ....')});static \u0275fac=function(ft){return new(ft||Te)};static \u0275dir=d.FsC({type:Te,selectors:[["fa-icon","stackItemSize",""],["fa-duotone-icon","stackItemSize",""]],inputs:{stackItemSize:[1,"stackItemSize"],size:[1,"size"]}})}return Te})(),y1=(()=>{class Te{size=(0,v.hFB)();classes=(0,T.EW)(()=>{const st=this.size();return{...st?{[`fa-${st}`]:!0}:{},"fa-stack":!0}});static \u0275fac=function(ft){return new(ft||Te)};static \u0275cmp=d.VBU({type:Te,selectors:[["fa-stack"]],hostVars:2,hostBindings:function(ft,$t){2&ft&&d.HbH($t.classes())},inputs:{size:[1,"size"]},ngContentSelectors:S4,decls:1,vars:0,template:function(ft,$t){1&ft&&(d.NAR(),d.SdG(0))},encapsulation:2,changeDetection:0})}return Te})(),ld=(()=>{class Te{icon=(0,v.geq)();title=(0,v.geq)();animation=(0,v.geq)();mask=(0,v.geq)();flip=(0,v.geq)();size=(0,v.geq)();pull=(0,v.geq)();border=(0,v.geq)();inverse=(0,v.geq)();symbol=(0,v.geq)();rotate=(0,v.geq)();fixedWidth=(0,v.geq)();transform=(0,v.geq)();a11yRole=(0,v.geq)();renderedIconHTML=(0,T.EW)(()=>{const st=this.icon()??this.config.fallbackIcon;if(!st)return(()=>{throw new Error("Property `icon` is required for `fa-icon`/`fa-duotone-icon` components.")})(),"";const ft=this.findIconDefinition(st);if(!ft)return"";const $t=this.buildParams();!function Yo(Te,dt){if(!dt.autoAddCss||rl.has(Te))return;if(null!=Te.getElementById(br))return dt.autoAddCss=!1,void rl.add(Te);const st=Te.createElement("style");st.setAttribute("type","text/css"),st.setAttribute("id",br),st.innerHTML=K.css();const ft=Te.head.childNodes;let $t=null;for(let Cn=ft.length-1;Cn>-1;Cn--){const Dn=ft[Cn],Zn=Dn.nodeName.toUpperCase();["STYLE","LINK"].indexOf(Zn)>-1&&($t=Dn)}Te.head.insertBefore(st,$t),dt.autoAddCss=!1,rl.add(Te)}(this.document,this.config);const Cn=ui(ft,$t);return this.sanitizer.bypassSecurityTrustHtml(Cn.html.join("\n"))});document=(0,i.WQX)(i.qQL);sanitizer=(0,i.WQX)(w.up);config=(0,i.WQX)(Qc);iconLibrary=(0,i.WQX)(_c);stackItem=(0,i.WQX)(Fl,{optional:!0});stack=(0,i.WQX)(y1,{optional:!0});constructor(){null!=this.stack&&null==this.stackItem&&console.error('FontAwesome: fa-icon and fa-duotone-icon elements must specify stackItemSize attribute when wrapped into fa-stack. Example: .')}findIconDefinition(st){const ft=((Te,dt)=>(Te=>void 0!==Te.prefix&&void 0!==Te.iconName)(Te)?Te:Array.isArray(Te)&&2===Te.length?{prefix:Te[0],iconName:Te[1]}:{prefix:dt,iconName:Te})(st,this.config.defaultPrefix);return"icon"in ft?ft:this.iconLibrary.getIconDefinition(ft.prefix,ft.iconName)??((Te=>{throw new Error(`Could not find icon with iconName=${Te.iconName} and prefix=${Te.prefix} in the icon library.`)})(ft),null)}buildParams(){const st=this.fixedWidth(),ft={flip:this.flip(),animation:this.animation(),border:this.border(),inverse:this.inverse(),size:this.size(),pull:this.pull(),rotate:this.rotate(),fixedWidth:"boolean"==typeof st?st:this.config.fixedWidth,stackItemSize:null!=this.stackItem?this.stackItem.stackItemSize():void 0},$t=this.transform(),Cn="string"==typeof $t?Ie.transform($t):$t,Dn=this.mask(),Zn=null!=Dn?this.findIconDefinition(Dn):null,si={},_t=this.a11yRole();null!=_t&&(si.role=_t);const ji={};return null!=ft.rotate&&!$c(ft.rotate)&&(ji["--fa-rotate-angle"]=`${ft.rotate}`),{title:this.title(),transform:Cn,classes:n2(ft),mask:Zn??void 0,symbol:this.symbol(),attributes:si,styles:ji}}static \u0275fac=function(ft){return new(ft||Te)};static \u0275cmp=d.VBU({type:Te,selectors:[["fa-icon"]],hostAttrs:[1,"ng-fa-icon"],hostVars:2,hostBindings:function(ft,$t){2&ft&&(d.Avn("innerHTML",$t.renderedIconHTML(),d.npT),d.BMQ("title",$t.title()??void 0))},inputs:{icon:[1,"icon"],title:[1,"title"],animation:[1,"animation"],mask:[1,"mask"],flip:[1,"flip"],size:[1,"size"],pull:[1,"pull"],border:[1,"border"],inverse:[1,"inverse"],symbol:[1,"symbol"],rotate:[1,"rotate"],fixedWidth:[1,"fixedWidth"],transform:[1,"transform"],a11yRole:[1,"a11yRole"]},outputs:{icon:"iconChange",title:"titleChange",animation:"animationChange",mask:"maskChange",flip:"flipChange",size:"sizeChange",pull:"pullChange",border:"borderChange",inverse:"inverseChange",symbol:"symbolChange",rotate:"rotateChange",fixedWidth:"fixedWidthChange",transform:"transformChange",a11yRole:"a11yRoleChange"},decls:0,vars:0,template:function(ft,$t){},encapsulation:2,changeDetection:0})}return Te})(),I0=(()=>{class Te{static \u0275fac=function(ft){return new(ft||Te)};static \u0275mod=d.$C({type:Te});static \u0275inj=i.G2t({})}return Te})()},5383(Zt,pe,l){"use strict";l.d(pe,{$$g:()=>qa,$Fj:()=>Ch,$sC:()=>Xb,BA1:()=>In,C8j:()=>cd,CQO:()=>r0,Ccf:()=>gs,D6w:()=>t_,DW4:()=>M4,EvL:()=>te,FYJ:()=>We,GR4:()=>wt,GRI:()=>A_,HEq:()=>ki,If6:()=>Yt,Int:()=>f6,JKM:()=>n1,Kcb:()=>Op,M29:()=>ub,McB:()=>Fb,Mf0:()=>mc,MjD:()=>ln,Oh6:()=>cC,QLR:()=>kf,TBz:()=>Hb,Tq9:()=>Ia,Vpi:()=>B,VwO:()=>S_,W1p:()=>vf,WKo:()=>er,WxX:()=>Tc,Xbc:()=>On,_eQ:()=>So,_qq:()=>M_,aAJ:()=>yo,aFw:()=>P6,cbP:()=>g1,dB:()=>c0,e4L:()=>M6,eGi:()=>N3,f6_:()=>Lh,gdJ:()=>_d,hb3:()=>cc,iW_:()=>CC,iy8:()=>Jo,jPR:()=>oy,jTw:()=>J2,k02:()=>Ve,k6j:()=>dg,knH:()=>r3,ld_:()=>Iu,njF:()=>qb,nsx:()=>Vb,o97:()=>Ii,pCJ:()=>dn,pS3:()=>X,peG:()=>Fp,qFF:()=>n0,qIE:()=>SC,s5m:()=>j2,vfE:()=>a7,xiI:()=>Up,ymQ:()=>E,zPk:()=>s1,zjW:()=>A2,zm_:()=>gy,zpE:()=>N8});var B={prefix:"fas",iconName:"dollar-sign",icon:[320,512,[128178,61781,"dollar","usd"],"24","M136 24c0-13.3 10.7-24 24-24s24 10.7 24 24l0 40 56 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-114.9 0c-24.9 0-45.1 20.2-45.1 45.1 0 22.5 16.5 41.5 38.7 44.7l91.6 13.1c53.8 7.7 93.7 53.7 93.7 108 0 60.3-48.9 109.1-109.1 109.1l-10.9 0 0 40c0 13.3-10.7 24-24 24s-24-10.7-24-24l0-40-72 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l130.9 0c24.9 0 45.1-20.2 45.1-45.1 0-22.5-16.5-41.5-38.7-44.7l-91.6-13.1C55.9 273.5 16 227.4 16 173.1 16 112.9 64.9 64 125.1 64l10.9 0 0-40z"]},te={prefix:"fas",iconName:"question",icon:[320,512,[10067,10068,61736],"3f","M64 160c0-53 43-96 96-96s96 43 96 96c0 42.7-27.9 78.9-66.5 91.4-28.4 9.2-61.5 35.3-61.5 76.6l0 24c0 17.7 14.3 32 32 32s32-14.3 32-32l0-24c0-1.7 .6-4.1 3.5-7.3 3-3.3 7.9-6.5 13.7-8.4 64.3-20.7 110.8-81 110.8-152.3 0-88.4-71.6-160-160-160S0 71.6 0 160c0 17.7 14.3 32 32 32s32-14.3 32-32zm96 352c22.1 0 40-17.9 40-40s-17.9-40-40-40-40 17.9-40 40 17.9 40 40 40z"]},wt={prefix:"fas",iconName:"scale-balanced",icon:[640,512,[9878,"balance-scale"],"f24e","M384 32l128 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L398.4 96c-5.2 25.8-22.9 47.1-46.4 57.3l0 294.7 160 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-384 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l160 0 0-294.7c-23.5-10.3-41.2-31.6-46.4-57.3L128 96c-17.7 0-32-14.3-32-32s14.3-32 32-32l128 0c14.6-19.4 37.8-32 64-32s49.4 12.6 64 32zm55.6 288L584.4 320 512 195.8 439.6 320zM512 416c-62.9 0-115.2-34-126-78.9-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1-10.8 44.8-63.1 78.9-126 78.9zM126.8 195.8L54.4 320 199.3 320 126.8 195.8zM.9 337.1c-2.6-11 1-22.3 6.7-32.1l95.2-163.2c5-8.6 14.2-13.8 24.1-13.8s19.1 5.3 24.1 13.8l95.2 163.2c5.7 9.8 9.3 21.1 6.7 32.1-10.8 44.8-63.1 78.9-126 78.9S11.7 382 .9 337.1z"]},We={prefix:"fas",iconName:"indian-rupee-sign",icon:[320,512,["indian-rupee","inr"],"e1bc","M0 64C0 46.3 14.3 32 32 32l264 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-76.7 0c17.7 19.8 30.1 44.6 34.7 72l42 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-42 0c-10.4 62.2-60.8 110.9-123.8 118.9L274.6 422c14.4 10.3 17.7 30.3 7.4 44.6s-30.3 17.7-44.6 7.4L13.4 314C2.1 306-2.7 291.5 1.5 278.2S18.1 256 32 256l80 0c35.8 0 66.1-23.5 76.3-56L24 200c-13.3 0-24-10.7-24-24s10.7-24 24-24l164.3 0c-10.2-32.5-40.5-56-76.3-56L32 96C14.3 96 0 81.7 0 64z"]},dn={prefix:"fas",iconName:"user-check",icon:[640,512,[],"f4fc","M286 304c98.5 0 178.3 79.8 178.3 178.3 0 16.4-13.3 29.7-29.7 29.7L78 512c-16.4 0-29.7-13.3-29.7-29.7 0-98.5 79.8-178.3 178.3-178.3l59.4 0zM585.7 105.9c7.8-10.7 22.8-13.1 33.5-5.3s13.1 22.8 5.3 33.5L522.1 274.9c-4.2 5.7-10.7 9.4-17.7 9.8s-14-2.2-18.9-7.3l-46.4-48c-9.2-9.5-9-24.7 .6-33.9 9.5-9.2 24.7-8.9 33.9 .6l26.5 27.4 85.6-117.7zM256.3 248a120 120 0 1 1 0-240 120 120 0 1 1 0 240z"]},Yt={prefix:"fas",iconName:"arrows-turn-to-dots",icon:[448,512,[],"e4c1","M265.4-6.6c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3L285.3 64 352 64c53 0 96 43 96 96l0 32c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-32c0-17.7-14.3-32-32-32l-66.7 0 25.4 25.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0l-80-80c-12.5-12.5-12.5-32.8 0-45.3l80-80zm-82.7 272l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L162.7 400 96 400c-17.7 0-32 14.3-32 32l0 32c0 17.7-14.3 32-32 32S0 481.7 0 464l0-32c0-53 43-96 96-96l66.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0zM320 368a64 64 0 1 1 128 0 64 64 0 1 1 -128 0zM64 160a64 64 0 1 1 0-128 64 64 0 1 1 0 128z"]},In={prefix:"fas",iconName:"wallet",icon:[512,512,[],"f555","M64 32C28.7 32 0 60.7 0 96L0 384c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-192c0-35.3-28.7-64-64-64L72 128c-13.3 0-24-10.7-24-24S58.7 80 72 80l384 0c13.3 0 24-10.7 24-24s-10.7-24-24-24L64 32zM416 256a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"]},Ve={prefix:"fas",iconName:"up-right-from-square",icon:[512,512,["external-link-alt"],"f35d","M290.4 19.8C295.4 7.8 307.1 0 320 0L480 0c17.7 0 32 14.3 32 32l0 160c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9L400 157.3 246.6 310.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L354.7 112 297.4 54.6c-9.2-9.2-11.9-22.9-6.9-34.9zM0 176c0-44.2 35.8-80 80-80l80 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-80 0c-8.8 0-16 7.2-16 16l0 256c0 8.8 7.2 16 16 16l256 0c8.8 0 16-7.2 16-16l0-80c0-17.7 14.3-32 32-32s32 14.3 32 32l0 80c0 44.2-35.8 80-80 80L80 512c-44.2 0-80-35.8-80-80L0 176z"]},Ii={prefix:"fas",iconName:"bars-staggered",icon:[512,512,["reorder","stream"],"f550","M0 96C0 78.3 14.3 64 32 64l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96zM64 256c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L96 288c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32L32 448c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z"]},er={prefix:"fas",iconName:"percent",icon:[448,512,[62101,62785,"percentage"],"25","M192 128a96 96 0 1 0 -192 0 96 96 0 1 0 192 0zM448 384a96 96 0 1 0 -192 0 96 96 0 1 0 192 0zM438.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-384 384c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l384-384z"]},ln={prefix:"fas",iconName:"magnifying-glass",icon:[512,512,[128269,"search"],"f002","M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376C296.3 401.1 253.9 416 208 416 93.1 416 0 322.9 0 208S93.1 0 208 0 416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"]},On={prefix:"fas",iconName:"code-branch",icon:[448,512,[],"f126","M80 104a24 24 0 1 0 0-48 24 24 0 1 0 0 48zm80-24c0 32.8-19.7 61-48 73.3l0 70.7 176 0c26.5 0 48-21.5 48-48l0-22.7c-28.3-12.3-48-40.5-48-73.3 0-44.2 35.8-80 80-80s80 35.8 80 80c0 32.8-19.7 61-48 73.3l0 22.7c0 61.9-50.1 112-112 112l-176 0 0 70.7c28.3 12.3 48 40.5 48 73.3 0 44.2-35.8 80-80 80S0 476.2 0 432c0-32.8 19.7-61 48-73.3l0-205.3C19.7 141 0 112.8 0 80 0 35.8 35.8 0 80 0s80 35.8 80 80zm232 0a24 24 0 1 0 -48 0 24 24 0 1 0 48 0zM80 456a24 24 0 1 0 0-48 24 24 0 1 0 0 48z"]},So={prefix:"fas",iconName:"paintbrush",icon:[576,512,[128396,"paint-brush"],"f1fc","M480.5 10.3L259.1 158c-29.1 19.4-47.6 50.9-50.6 85.3 62.3 12.8 111.4 61.9 124.3 124.3 34.5-3 65.9-21.5 85.3-50.6L565.7 95.5c6.7-10.1 10.3-21.9 10.3-34.1 0-33.9-27.5-61.4-61.4-61.4-12.1 0-24 3.6-34.1 10.3zM288 400c0-61.9-50.1-112-112-112S64 338.1 64 400c0 3.9 .2 7.8 .6 11.6 1.8 17.5-10.2 36.4-27.8 36.4L32 448c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0c61.9 0 112-50.1 112-112z"]},X={prefix:"fas",iconName:"eye",icon:[576,512,[128065],"f06e","M288 32c-80.8 0-145.5 36.8-192.6 80.6-46.8 43.5-78.1 95.4-93 131.1-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47.1 43.7 111.8 80.6 192.6 80.6s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.7-111.8-80.6-192.6-80.6zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64-11.5 0-22.3-3-31.7-8.4-1 10.9-.1 22.1 2.9 33.2 13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-12.2-45.7-55.5-74.8-101.1-70.8 5.3 9.3 8.4 20.1 8.4 31.7z"]},mc={prefix:"fas",iconName:"receipt",icon:[384,512,[129534],"f543","M14 2.2C22.5-1.7 32.5-.3 39.6 5.8L80 40.4 120.4 5.8c9-7.7 22.3-7.7 31.2 0L192 40.4 232.4 5.8c9-7.7 22.2-7.7 31.2 0L304 40.4 344.4 5.8c7.1-6.1 17.1-7.5 25.6-3.6S384 14.6 384 24l0 464c0 9.4-5.5 17.9-14 21.8s-18.5 2.5-25.6-3.6l-40.4-34.6-40.4 34.6c-9 7.7-22.2 7.7-31.2 0l-40.4-34.6-40.4 34.6c-9 7.7-22.3 7.7-31.2 0L80 471.6 39.6 506.2c-7.1 6.1-17.1 7.5-25.6 3.6S0 497.4 0 488L0 24C0 14.6 5.5 6.1 14 2.2zM104 136c-13.3 0-24 10.7-24 24s10.7 24 24 24l176 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-176 0zM80 352c0 13.3 10.7 24 24 24l176 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-176 0c-13.3 0-24 10.7-24 24zm24-120c-13.3 0-24 10.7-24 24s10.7 24 24 24l176 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-176 0z"]},ki={prefix:"fas",iconName:"unlock-keyhole",icon:[384,512,["unlock-alt"],"f13e","M192 32c-35.3 0-64 28.7-64 64l0 64 192 0c35.3 0 64 28.7 64 64l0 224c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 224c0-35.3 28.7-64 64-64l0-64c0-70.7 57.3-128 128-128 63.5 0 116.1 46.1 126.2 106.7 2.9 17.4-8.8 33.9-26.3 36.9s-33.9-8.8-36.9-26.3C250 55.1 223.7 32 192 32zm40 328c13.3 0 24-10.7 24-24s-10.7-24-24-24l-80 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l80 0z"]},cd={prefix:"fas",iconName:"infinity",icon:[640,512,[8734,9854],"f534","M0 256c0-88.4 71.6-160 160-160 50.4 0 97.8 23.7 128 64l32 42.7 32-42.7c30.2-40.3 77.6-64 128-64 88.4 0 160 71.6 160 160S568.4 416 480 416c-50.4 0-97.8-23.7-128-64l-32-42.7-32 42.7c-30.2 40.3-77.6 64-128 64-88.4 0-160-71.6-160-160zm280 0l-43.2-57.6c-18.1-24.2-46.6-38.4-76.8-38.4-53 0-96 43-96 96s43 96 96 96c30.2 0 58.7-14.2 76.8-38.4L280 256zm80 0l43.2 57.6c18.1 24.2 46.6 38.4 76.8 38.4 53 0 96-43 96-96s-43-96-96-96c-30.2 0-58.7 14.2-76.8 38.4L360 256z"]},_d={prefix:"fas",iconName:"users",icon:[640,512,[],"f0c0","M320 16a104 104 0 1 1 0 208 104 104 0 1 1 0-208zM96 88a72 72 0 1 1 0 144 72 72 0 1 1 0-144zM0 416c0-70.7 57.3-128 128-128 12.8 0 25.2 1.9 36.9 5.4-32.9 36.8-52.9 85.4-52.9 138.6l0 16c0 11.4 2.4 22.2 6.7 32L32 480c-17.7 0-32-14.3-32-32l0-32zm521.3 64c4.3-9.8 6.7-20.6 6.7-32l0-16c0-53.2-20-101.8-52.9-138.6 11.7-3.5 24.1-5.4 36.9-5.4 70.7 0 128 57.3 128 128l0 32c0 17.7-14.3 32-32 32l-86.7 0zM472 160a72 72 0 1 1 144 0 72 72 0 1 1 -144 0zM160 432c0-88.4 71.6-160 160-160s160 71.6 160 160l0 16c0 17.7-14.3 32-32 32l-256 0c-17.7 0-32-14.3-32-32l0-16z"]},qa={prefix:"fas",iconName:"pen-ruler",icon:[512,512,["pencil-ruler"],"f5ae","M404 0c19.2 0 37.6 7.6 51.1 21.2l35.7 35.7C504.4 70.4 512 88.8 512 108s-7.6 37.6-21.2 51.1L445.9 204 308 66.1 352.9 21.2C366.4 7.6 384.8 0 404 0zM58.9 315.1L274.1 100 412 237.9 196.9 453.1c-10.7 10.7-24.1 18.5-38.7 22.6L30.4 511.1c-8.3 2.3-17.3 0-23.4-6.2s-8.5-15.1-6.2-23.4L36.4 353.8c4.1-14.6 11.8-27.9 22.6-38.7zM225.4 80.8L80.8 225.4 11.7 156.3c-15.6-15.6-15.6-40.9 0-56.6l88-88c15.6-15.6 40.9-15.6 56.6 0l5.9 5.9-56.3 56.3c-7.8 7.8-7.8 20.5 0 28.3s20.5 7.8 28.3 0l56.3-56.3 34.9 34.9zM431.2 286.6l34.9 34.9-56.3 56.3c-7.8 7.8-7.8 20.5 0 28.3s20.5 7.8 28.3 0l56.3-56.3 5.9 5.9c15.6 15.6 15.6 40.9 0 56.6l-88 88c-15.6 15.6-40.9 15.6-56.6 0l-69.1-69.1 144.6-144.6z"]},n1={prefix:"fas",iconName:"won-sign",icon:[512,512,[8361,"krw","won"],"f159","M62.4 53.9C56.8 37.1 38.7 28.1 21.9 33.6S-3.9 57.4 1.7 74.1L56.9 240 32 240c-13.3 0-24 10.7-24 24s10.7 24 24 24l40.9 0 56.7 170.1c4.5 13.5 17.4 22.4 31.6 21.9s26.4-10.4 29.8-24.2L233 288 279 288 321 455.8c3.4 13.8 15.6 23.7 29.8 24.2s27.1-8.4 31.6-21.9L439.1 288 480 288c13.3 0 24-10.7 24-24s-10.7-24-24-24l-24.9 0 55.3-165.9c5.6-16.8-3.5-34.9-20.2-40.5s-34.9 3.5-40.5 20.2l-62 186.1-54.6 0-45.9-183.8C283.5 42 270.7 32 256 32s-27.5 10-31 24.2L179 240 124.4 240 62.4 53.9zm78 234.1l26.6 0-11.4 45.6-15.2-45.6zM245 240l11-44.1 11 44.1-22 0zm100 48l26.6 0-15.2 45.6-11.4-45.6z"]},A2={prefix:"fas",iconName:"franc-sign",icon:[320,512,[],"e18f","M80 32C62.3 32 48 46.3 48 64l0 256-24 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l24 0 0 80c0 17.7 14.3 32 32 32s32-14.3 32-32l0-80 88 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-88 0 0-64 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-96 176 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32z"]},r3={prefix:"fas",iconName:"signs-post",icon:[512,512,["map-signs"],"f277","M256.4 0c-17.7 0-32 14.3-32 32l0 32-160 0c-17.7 0-32 14.3-32 32l0 64c0 17.7 14.3 32 32 32l160 0 0 64-153.4 0c-4.2 0-8.3 1.7-11.3 4.7l-48 48c-6.2 6.2-6.2 16.4 0 22.6l48 48c3 3 7.1 4.7 11.3 4.7l153.4 0 0 96c0 17.7 14.3 32 32 32s32-14.3 32-32l0-96 160 0c17.7 0 32-14.3 32-32l0-64c0-17.7-14.3-32-32-32l-160 0 0-64 153.4 0c4.2 0 8.3-1.7 11.3-4.7l48-48c6.2-6.2 6.2-16.4 0-22.6l-48-48c-3-3-7.1-4.7-11.3-4.7l-153.4 0 0-32c0-17.7-14.3-32-32-32z"]},cc={prefix:"fas",iconName:"turkish-lira-sign",icon:[448,512,["try","turkish-lira"],"e2bb","M160 32c17.7 0 32 14.3 32 32l0 43.6 121.4-34.7c12.7-3.6 26 3.7 29.7 16.5s-3.7 26-16.5 29.7l-134.6 38.5 0 46.1 121.4-34.7c12.7-3.6 26 3.7 29.7 16.5s-3.7 26-16.5 29.7l-134.6 38.5 0 162.5 72 0c53 0 96-43 96-96 0-17.7 14.3-32 32-32s32 14.3 32 32c0 88.4-71.6 160-160 160l-104 0c-17.7 0-32-14.3-32-32l0-176.2-25.4 7.3c-12.7 3.6-26-3.7-29.7-16.5s3.7-26 16.5-29.7l38.6-11 0-46.1-25.4 7.3c-12.7 3.6-26-3.7-29.7-16.5s3.7-26 16.5-29.7l38.6-11 0-61.9c0-17.7 14.3-32 32-32z"]},Iu={prefix:"fas",iconName:"user-clock",icon:[576,512,[],"f4fd","M224 8a120 120 0 1 1 0 240 120 120 0 1 1 0-240zM194.3 304l59.4 0c3.9 0 7.9 .1 11.8 .4-16.2 28.2-25.5 60.8-25.5 95.6 0 41.8 13.4 80.5 36 112L45.7 512C29.3 512 16 498.7 16 482.3 16 383.8 95.8 304 194.3 304zM288 400a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-80c-8.8 0-16 7.2-16 16l0 64c0 8.8 7.2 16 16 16l48 0c8.8 0 16-7.2 16-16s-7.2-16-16-16l-32 0 0-48c0-8.8-7.2-16-16-16z"]},j2={prefix:"fas",iconName:"euro-sign",icon:[448,512,[8364,"eur","euro"],"f153","M73.3 192C100.8 99.5 186.5 32 288 32l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c-65.6 0-122 39.5-146.7 96L272 192c13.3 0 24 10.7 24 24s-10.7 24-24 24l-143.2 0c-.5 5.3-.8 10.6-.8 16s.3 10.7 .8 16L272 272c13.3 0 24 10.7 24 24s-10.7 24-24 24l-130.7 0c24.7 56.5 81.1 96 146.7 96l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-64 0c-101.5 0-187.2-67.5-214.7-160L40 320c-13.3 0-24-10.7-24-24s10.7-24 24-24l24.6 0c-.7-10.5-.7-21.5 0-32L40 240c-13.3 0-24-10.7-24-24s10.7-24 24-24l33.3 0z"]},s1={prefix:"fas",iconName:"yen-sign",icon:[384,512,[165,"cny","jpy","rmb","yen"],"f157","M74.9 46.7c-9.6-14.9-29.4-19.2-44.2-9.6S11.5 66.4 21.1 81.3L143.7 272 88 272c-13.3 0-24 10.7-24 24s10.7 24 24 24l72 0 0 32-72 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l72 0 0 48c0 17.7 14.3 32 32 32s32-14.3 32-32l0-48 72 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-72 0 0-32 72 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-55.7 0 122.6-190.7c9.6-14.9 5.3-34.7-9.6-44.2s-34.7-5.3-44.2 9.6L192 228.8 74.9 46.7z"]},Tc={prefix:"fas",iconName:"angles-down",icon:[384,512,["angle-double-down"],"f103","M214.6 470.6c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 402.7 329.4 265.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3l-160 160zm160-352l-160 160c-12.5 12.5-32.8 12.5-45.3 0l-160-160c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 210.7 329.4 73.4c12.5-12.5 32.8-12.5 45.3 0s12.5 32.8 0 45.3z"]},N3={prefix:"fas",iconName:"network-wired",icon:[576,512,[],"f6ff","M248 88l80 0 0 48-80 0 0-48zm-8-56c-26.5 0-48 21.5-48 48l0 64c0 26.5 21.5 48 48 48l16 0 0 32-224 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0 0 32-16 0c-26.5 0-48 21.5-48 48l0 64c0 26.5 21.5 48 48 48l96 0c26.5 0 48-21.5 48-48l0-64c0-26.5-21.5-48-48-48l-16 0 0-32 192 0 0 32-16 0c-26.5 0-48 21.5-48 48l0 64c0 26.5 21.5 48 48 48l96 0c26.5 0 48-21.5 48-48l0-64c0-26.5-21.5-48-48-48l-16 0 0-32 96 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-224 0 0-32 16 0c26.5 0 48-21.5 48-48l0-64c0-26.5-21.5-48-48-48l-96 0zM448 376l8 0 0 48-80 0 0-48 72 0zm-256 0l8 0 0 48-80 0 0-48 72 0z"]},J2={prefix:"fas",iconName:"code",icon:[576,512,[],"f121","M360.8 1.2c-17-4.9-34.7 5-39.6 22l-128 448c-4.9 17 5 34.7 22 39.6s34.7-5 39.6-22l128-448c4.9-17-5-34.7-22-39.6zm64.6 136.1c-12.5 12.5-12.5 32.8 0 45.3l73.4 73.4-73.4 73.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0zm-274.7 0c-12.5-12.5-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 150.6 182.6c12.5-12.5 12.5-32.8 0-45.3z"]},n0={prefix:"fas",iconName:"diagram-project",icon:[512,512,["project-diagram"],"f542","M0 80C0 53.5 21.5 32 48 32l96 0c26.5 0 48 21.5 48 48l0 16 128 0 0-16c0-26.5 21.5-48 48-48l96 0c26.5 0 48 21.5 48 48l0 96c0 26.5-21.5 48-48 48l-96 0c-26.5 0-48-21.5-48-48l0-16-128 0 0 16c0 7.3-1.7 14.3-4.6 20.5l68.6 91.5 80 0c26.5 0 48 21.5 48 48l0 96c0 26.5-21.5 48-48 48l-96 0c-26.5 0-48-21.5-48-48l0-96c0-7.3 1.7-14.3 4.6-20.5L128 224 48 224c-26.5 0-48-21.5-48-48L0 80z"]},E={prefix:"fas",iconName:"money-bill-wave",icon:[512,512,[],"f53a","M0 419.6L0 109.5c0-23.2 24.1-38.6 46.3-32 87.7 26.2 149.7 5.5 212.1-15.3 64.5-21.5 129.4-43.1 223.3-13.1 18.5 5.9 30.3 23.8 30.3 43.3l0 310.1c0 23.2-24.1 38.6-46.2 32-87.7-26.2-149.8-5.5-212.1 15.3-64.5 21.5-129.4 43.1-223.3 13.1-18.5-5.9-30.3-23.8-30.3-43.3zM336 256c0-53-35.8-96-80-96s-80 43-80 96 35.8 96 80 96 80-43 80-96zM120 413.6c4.4 0 7.9-3.8 7.2-8.1-4.6-27.8-27-49.5-55.2-53-4.4-.5-8 3.1-8 7.5l0 39.9c0 3.6 2.4 6.8 6 7.7 17.9 4.2 34.3 6.1 50 6.1zm318.5-51.1c5 .8 9.5-3 9.5-8l0-42.6c0-4.4-3.6-8.1-8-7.5-25.2 3.1-45.9 20.9-53.2 44.6-1.4 4.7 2.3 9.1 7.2 9.2 14.2 .4 29 1.7 44.4 4.3zM448 152l0-39.9c0-3.6-2.5-6.8-6-7.7-17.9-4.2-34.3-6.1-50-6.1-4.4 0-7.9 3.8-7.2 8.1 4.6 27.8 27 49.5 55.2 53 4.4 .5 8-3.1 8-7.5zM125.2 162.9c1.4-4.7-2.3-9.1-7.2-9.2-14.2-.4-29-1.7-44.4-4.3-5-.8-9.5 3-9.5 8L64 200c0 4.4 3.6 8.1 8 7.5 25.2-3.1 45.9-20.9 53.2-44.6z"]},Ia={prefix:"fas",iconName:"brazilian-real-sign",icon:[512,512,[],"e46c","M400 16c17.7 0 32 14.3 32 32l0 16 16 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-48.9 0c-26 0-47.1 21.1-47.1 47.1 0 22.5 15.9 41.8 37.9 46.2l32.8 6.6c51.9 10.4 89.3 56 89.3 109 0 50.6-33.8 93.3-80 106.7l0 20.4c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-16-32 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l64.9 0c26 0 47.1-21.1 47.1-47.1 0-22.5-15.9-41.8-37.9-46.2l-32.8-6.6c-51.9-10.4-89.3-56-89.3-109 0-50.6 33.8-93.2 80-106.7L368 48c0-17.7 14.3-32 32-32zM0 64C0 46.3 14.3 32 32 32l80 0c79.5 0 144 64.5 144 144 0 54.3-30 101.5-74.4 126.1l41 136.7c5.1 16.9-4.5 34.8-21.5 39.8s-34.8-4.5-39.8-21.5L120.1 319.8c-2.7 .1-5.4 .2-8.1 .2l-48 0 0 128c0 17.7-14.3 32-32 32S0 465.7 0 448L0 64zM64 256l48 0c44.2 0 80-35.8 80-80s-35.8-80-80-80l-48 0 0 160z"]},r0={prefix:"fas",iconName:"link",icon:[576,512,[128279,"chain"],"f0c1","M419.5 96c-16.6 0-32.7 4.5-46.8 12.7-15.8-16-34.2-29.4-54.5-39.5 28.2-24 64.1-37.2 101.3-37.2 86.4 0 156.5 70 156.5 156.5 0 41.5-16.5 81.3-45.8 110.6l-71.1 71.1c-29.3 29.3-69.1 45.8-110.6 45.8-86.4 0-156.5-70-156.5-156.5 0-1.5 0-3 .1-4.5 .5-17.7 15.2-31.6 32.9-31.1s31.6 15.2 31.1 32.9c0 .9 0 1.8 0 2.6 0 51.1 41.4 92.5 92.5 92.5 24.5 0 48-9.7 65.4-27.1l71.1-71.1c17.3-17.3 27.1-40.9 27.1-65.4 0-51.1-41.4-92.5-92.5-92.5zM275.2 173.3c-1.9-.8-3.8-1.9-5.5-3.1-12.6-6.5-27-10.2-42.1-10.2-24.5 0-48 9.7-65.4 27.1L91.1 258.2c-17.3 17.3-27.1 40.9-27.1 65.4 0 51.1 41.4 92.5 92.5 92.5 16.5 0 32.6-4.4 46.7-12.6 15.8 16 34.2 29.4 54.6 39.5-28.2 23.9-64 37.2-101.3 37.2-86.4 0-156.5-70-156.5-156.5 0-41.5 16.5-81.3 45.8-110.6l71.1-71.1c29.3-29.3 69.1-45.8 110.6-45.8 86.6 0 156.5 70.6 156.5 156.9 0 1.3 0 2.6 0 3.9-.4 17.7-15.1 31.6-32.8 31.2s-31.6-15.1-31.2-32.8c0-.8 0-1.5 0-2.3 0-33.7-18-63.3-44.8-79.6z"]},c0={prefix:"fas",iconName:"gear",icon:[512,512,[9881,"cog"],"f013","M195.1 9.5C198.1-5.3 211.2-16 226.4-16l59.8 0c15.2 0 28.3 10.7 31.3 25.5L332 79.5c14.1 6 27.3 13.7 39.3 22.8l67.8-22.5c14.4-4.8 30.2 1.2 37.8 14.4l29.9 51.8c7.6 13.2 4.9 29.8-6.5 39.9L447 233.3c.9 7.4 1.3 15 1.3 22.7s-.5 15.3-1.3 22.7l53.4 47.5c11.4 10.1 14 26.8 6.5 39.9l-29.9 51.8c-7.6 13.1-23.4 19.2-37.8 14.4l-67.8-22.5c-12.1 9.1-25.3 16.7-39.3 22.8l-14.4 69.9c-3.1 14.9-16.2 25.5-31.3 25.5l-59.8 0c-15.2 0-28.3-10.7-31.3-25.5l-14.4-69.9c-14.1-6-27.2-13.7-39.3-22.8L73.5 432.3c-14.4 4.8-30.2-1.2-37.8-14.4L5.8 366.1c-7.6-13.2-4.9-29.8 6.5-39.9l53.4-47.5c-.9-7.4-1.3-15-1.3-22.7s.5-15.3 1.3-22.7L12.3 185.8c-11.4-10.1-14-26.8-6.5-39.9L35.7 94.1c7.6-13.2 23.4-19.2 37.8-14.4l67.8 22.5c12.1-9.1 25.3-16.7 39.3-22.8L195.1 9.5zM256.3 336a80 80 0 1 0 -.6-160 80 80 0 1 0 .6 160z"]},yo={prefix:"fas",iconName:"user-lock",icon:[576,512,[],"f502","M224 8a120 120 0 1 1 0 240 120 120 0 1 1 0-240zM194.3 304l59.4 0c29.7 0 57.7 7.3 82.3 20.1l0 4.3c-19.6 17.6-32 43.1-32 71.5l0 96c0 5.5 .5 10.9 1.3 16.1L45.7 512C29.3 512 16 498.7 16 482.3 16 383.8 95.8 304 194.3 304zm301.7 .1c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 47.9 64 0 0-47.9zM352 400c0-20.9 13.4-38.7 32-45.3l0-50.6c0-44.2 35.8-80 80-80s80 35.8 80 80l0 50.6c18.6 6.6 32 24.4 32 45.3l0 96c0 26.5-21.5 48-48 48l-128 0c-26.5 0-48-21.5-48-48l0-96z"]},Ch={prefix:"fas",iconName:"chart-bar",icon:[512,512,["bar-chart"],"f080","M32 32c17.7 0 32 14.3 32 32l0 336c0 8.8 7.2 16 16 16l400 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L80 480c-44.2 0-80-35.8-80-80L0 64C0 46.3 14.3 32 32 32zm96 64c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32zm32 80l128 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-128 0c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 112l256 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-256 0c-17.7 0-32-14.3-32-32s14.3-32 32-32z"]},Op={prefix:"fas",iconName:"baht-sign",icon:[320,512,[],"e0ac","M136 0c-13.3 0-24 10.7-24 24l0 40-74.4 0C16.8 64 0 80.8 0 101.6L0 406.3c0 23 18.7 41.7 41.7 41.7l70.3 0 0 40c0 13.3 10.7 24 24 24s24-10.7 24-24l0-40 48 0c61.9 0 112-50.1 112-112 0-40.1-21.1-75.3-52.7-95.1 13.1-18.3 20.7-40.7 20.7-64.9 0-61.9-50.1-112-112-112l-16 0 0-40c0-13.3-10.7-24-24-24zM112 128l0 96-48 0 0-96 48 0zm48 96l0-96 16 0c26.5 0 48 21.5 48 48s-21.5 48-48 48l-16 0zm-48 64l0 96-48 0 0-96 48 0zm48 96l0-96 48 0c26.5 0 48 21.5 48 48s-21.5 48-48 48l-48 0z"]},t_={prefix:"fas",iconName:"server",icon:[448,512,[],"f233","M64 32C28.7 32 0 60.7 0 96l0 64c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-64c0-35.3-28.7-64-64-64L64 32zm216 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0zM64 288c-35.3 0-64 28.7-64 64l0 64c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-64c0-35.3-28.7-64-64-64L64 288zm216 72a24 24 0 1 1 0 48 24 24 0 1 1 0-48zm56 24a24 24 0 1 1 48 0 24 24 0 1 1 -48 0z"]},Fp={prefix:"fas",iconName:"arrows-turn-right",icon:[448,512,[],"e4c0","M313.4-6.6c12.5-12.5 32.8-12.5 45.3 0l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L338.7 128 128 128c-35.3 0-64 28.7-64 64l0 32c0 17.7-14.3 32-32 32S0 241.7 0 224l0-32C0 121.3 57.3 64 128 64l210.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3zm-96 256c12.5-12.5 32.8-12.5 45.3 0l80 80c12.5 12.5 12.5 32.8 0 45.3l-80 80c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 384 96 384c-17.7 0-32 14.3-32 32l0 32c0 17.7-14.3 32-32 32S0 465.7 0 448l0-32c0-53 43-96 96-96l146.7 0-25.4-25.4c-12.5-12.5-12.5-32.8 0-45.3z"]},Up={prefix:"fas",iconName:"gauge-high",icon:[512,512,[62461,"tachometer-alt","tachometer-alt-fast"],"f625","M0 256a256 256 0 1 1 512 0 256 256 0 1 1 -512 0zM288 96a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM256 416c35.3 0 64-28.7 64-64 0-16.2-6-31.1-16-42.3l69.5-138.9c5.9-11.9 1.1-26.3-10.7-32.2s-26.3-1.1-32.2 10.7L261.1 288.2c-1.7-.1-3.4-.2-5.1-.2-35.3 0-64 28.7-64 64s28.7 64 64 64zM176 144a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM96 288a32 32 0 1 0 0-64 32 32 0 1 0 0 64zm352-32a32 32 0 1 0 -64 0 32 32 0 1 0 64 0z"]},M_={prefix:"fas",iconName:"right-left",icon:[512,512,["exchange-alt"],"f362","M502.6 150.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9S352 236.9 352 224l0-64-320 0c-17.7 0-32-14.3-32-32S14.3 96 32 96l320 0 0-64c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c12.5 12.5 12.5 32.8 0 45.3zm-397.3 352l-96-96c-12.5-12.5-12.5-32.8 0-45.3l96-96c9.2-9.2 22.9-11.9 34.9-6.9S160 275.1 160 288l0 64 320 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-320 0 0 64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9z"]},S_={prefix:"fas",iconName:"dumbbell",icon:[640,512,[],"f44b","M96 112c0-26.5 21.5-48 48-48s48 21.5 48 48l0 112 256 0 0-112c0-26.5 21.5-48 48-48s48 21.5 48 48l0 16 16 0c26.5 0 48 21.5 48 48l0 48c17.7 0 32 14.3 32 32s-14.3 32-32 32l0 48c0 26.5-21.5 48-48 48l-16 0 0 16c0 26.5-21.5 48-48 48s-48-21.5-48-48l0-112-256 0 0 112c0 26.5-21.5 48-48 48s-48-21.5-48-48l0-16-16 0c-26.5 0-48-21.5-48-48l0-48c-17.7 0-32-14.3-32-32s14.3-32 32-32l0-48c0-26.5 21.5-48 48-48l16 0 0-16z"]},A_={prefix:"fas",iconName:"xmark",icon:[384,512,[128473,10005,10006,10060,215,"close","multiply","remove","times"],"f00d","M55.1 73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L147.2 256 9.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192.5 301.3 329.9 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.8 256 375.1 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192.5 210.7 55.1 73.4z"]},Lh={prefix:"fas",iconName:"ruble-sign",icon:[448,512,[8381,"rouble","rub","ruble"],"f158","M112 32C94.3 32 80 46.3 80 64l0 208-40 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l40 0 0 48-40 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l40 0 0 32c0 17.7 14.3 32 32 32s32-14.3 32-32l0-32 152 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-152 0 0-48 112 0c79.5 0 144-64.5 144-144S335.5 32 256 32L112 32zM256 256l-112 0 0-160 112 0c44.2 0 80 35.8 80 80s-35.8 80-80 80z"]},f6={prefix:"fas",iconName:"clock-rotate-left",icon:[576,512,["history"],"f1da","M288 64c106 0 192 86 192 192S394 448 288 448c-65.2 0-122.9-32.5-157.6-82.3-10.1-14.5-30.1-18-44.6-7.9s-18 30.1-7.9 44.6C124.1 468.6 201 512 288 512 429.4 512 544 397.4 544 256S429.4 0 288 0C202.3 0 126.5 42.1 80 106.7L80 80c0-17.7-14.3-32-32-32S16 62.3 16 80l0 112c0 17.7 14.3 32 32 32l24.6 0c.5 0 1 0 1.5 0l86 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-38.3 0C154.9 102.6 217 64 288 64zm24 88c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 104c0 6.4 2.5 12.5 7 17l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-65-65 0-94.1z"]},vf={prefix:"fas",iconName:"chart-pie",icon:[576,512,["pie-chart"],"f200","M512.4 240l-176 0c-17.7 0-32-14.3-32-32l0-176c0-17.7 14.4-32.2 31.9-29.9 107 14.2 191.8 99 206 206 2.3 17.5-12.2 31.9-29.9 31.9zM222.6 37.2c18.1-3.8 33.8 11 33.8 29.5l0 197.3c0 5.6 2 11 5.5 15.3L394 438.7c11.7 14.1 9.2 35.4-6.9 44.1-34.1 18.6-73.2 29.2-114.7 29.2-132.5 0-240-107.5-240-240 0-115.5 81.5-211.9 190.2-234.8zM477.8 288l64 0c18.5 0 33.3 15.7 29.5 33.8-10.2 48.4-35 91.4-69.6 124.2-12.3 11.7-31.6 9.2-42.4-3.9L374.9 340.4c-17.3-20.9-2.4-52.4 24.6-52.4l78.2 0z"]},M6={prefix:"fas",iconName:"bullhorn",icon:[512,512,[128226,128363],"f0a1","M461.2 18.9C472.7 24 480 35.4 480 48l0 416c0 12.6-7.3 24-18.8 29.1s-24.8 3.2-34.3-5.1l-46.6-40.7c-43.6-38.1-98.7-60.3-156.4-63l0 95.7c0 17.7-14.3 32-32 32l-32 0c-17.7 0-32-14.3-32-32l0-96C57.3 384 0 326.7 0 256S57.3 128 128 128l84.5 0c61.8-.2 121.4-22.7 167.9-63.3l46.6-40.7c9.4-8.3 22.9-10.2 34.3-5.1zM224 320l0 .2c70.3 2.7 137.8 28.5 192 73.4l0-275.3c-54.2 44.9-121.7 70.7-192 73.4L224 320z"]},N8={prefix:"fas",iconName:"triangle-exclamation",icon:[512,512,[9888,"exclamation-triangle","warning"],"f071","M256 0c14.7 0 28.2 8.1 35.2 21l216 400c6.7 12.4 6.4 27.4-.8 39.5S486.1 480 472 480L40 480c-14.1 0-27.2-7.4-34.4-19.5s-7.5-27.1-.8-39.5l216-400c7-12.9 20.5-21 35.2-21zm0 352a32 32 0 1 0 0 64 32 32 0 1 0 0-64zm0-192c-18.2 0-32.7 15.5-31.4 33.7l7.4 104c.9 12.5 11.4 22.3 23.9 22.3 12.6 0 23-9.7 23.9-22.3l7.4-104c1.3-18.2-13.1-33.7-31.4-33.7z"]},M4={prefix:"fas",iconName:"lock",icon:[384,512,[128274],"f023","M128 96l0 64 128 0 0-64c0-35.3-28.7-64-64-64s-64 28.7-64 64zM64 160l0-64C64 25.3 121.3-32 192-32S320 25.3 320 96l0 64c35.3 0 64 28.7 64 64l0 224c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 224c0-35.3 28.7-64 64-64z"]},P6={prefix:"fas",iconName:"window-restore",icon:[576,512,[],"f2d2","M512 96L160 96c0-35.3 28.7-64 64-64l288 0c35.3 0 64 28.7 64 64l0 192c0 35.3-28.7 64-64 64l-48 0 0-64 48 0 0-192zM0 224c0-35.3 28.7-64 64-64l288 0c35.3 0 64 28.7 64 64l0 192c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 224zm64 40c0 13.3 10.7 24 24 24l240 0c13.3 0 24-10.7 24-24s-10.7-24-24-24L88 240c-13.3 0-24 10.7-24 24z"]},g1={prefix:"fas",iconName:"download",icon:[448,512,[],"f019","M256 32c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 210.7-41.4-41.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0l96-96c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 242.7 256 32zM64 320c-35.3 0-64 28.7-64 64l0 32c0 35.3 28.7 64 64 64l320 0c35.3 0 64-28.7 64-64l0-32c0-35.3-28.7-64-64-64l-46.9 0-56.6 56.6c-31.2 31.2-81.9 31.2-113.1 0L110.9 320 64 320zm304 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"]},kf={prefix:"fas",iconName:"plus",icon:[448,512,[10133,61543,"add"],"2b","M256 64c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 160-160 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l160 0 0 160c0 17.7 14.3 32 32 32s32-14.3 32-32l0-160 160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-160 0 0-160z"]},oy={prefix:"fas",iconName:"copy",icon:[448,512,[],"f0c5","M192 0c-35.3 0-64 28.7-64 64l0 256c0 35.3 28.7 64 64 64l192 0c35.3 0 64-28.7 64-64l0-200.6c0-17.4-7.1-34.1-19.7-46.2L370.6 17.8C358.7 6.4 342.8 0 326.3 0L192 0zM64 128c-35.3 0-64 28.7-64 64L0 448c0 35.3 28.7 64 64 64l192 0c35.3 0 64-28.7 64-64l0-16-64 0 0 16-192 0 0-256 16 0 0-64-16 0z"]},gs={prefix:"fas",iconName:"money-bill-1",icon:[512,512,["money-bill-alt"],"f3d1","M64 64C28.7 64 0 92.7 0 128L0 384c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-256c0-35.3-28.7-64-64-64L64 64zm192 80a112 112 0 1 1 0 224 112 112 0 1 1 0-224zM64 184l0-48c0-4.4 3.6-8 8-8l48 0c4.4 0 8.1 3.6 7.5 8-3.6 29-26.6 51.9-55.5 55.5-4.4 .5-8-3.1-8-7.5zm0 144c0-4.4 3.6-8.1 8-7.5 29 3.6 51.9 26.6 55.5 55.5 .5 4.4-3.1 8-7.5 8l-48 0c-4.4 0-8-3.6-8-8l0-48zM440 191.5c-29-3.6-51.9-26.6-55.5-55.5-.5-4.4 3.1-8 7.5-8l48 0c4.4 0 8 3.6 8 8l0 48c0 4.4-3.6 8.1-8 7.5zM448 328l0 48c0 4.4-3.6 8-8 8l-48 0c-4.4 0-8.1-3.6-7.5-8 3.6-29 26.6-51.9 55.5-55.5 4.4-.5 8 3.1 8 7.5zM240 188c-11 0-20 9-20 20 0 9.7 6.9 17.7 16 19.6l0 48.4-4 0c-11 0-20 9-20 20s9 20 20 20l48 0c11 0 20-9 20-20s-9-20-20-20l-4 0 0-68c0-11-9-20-20-20l-16 0z"]},Jo=gs,dg={prefix:"fas",iconName:"eye-slash",icon:[576,512,[],"f070","M41-24.9c-9.4-9.4-24.6-9.4-33.9 0S-2.3-.3 7 9.1l528 528c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-96.4-96.4c2.7-2.4 5.4-4.8 8-7.2 46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.7-111.8-80.6-192.6-80.6-56.8 0-105.6 18.2-146 44.2L41-24.9zM204.5 138.7c23.5-16.8 52.4-26.7 83.5-26.7 79.5 0 144 64.5 144 144 0 31.1-9.9 59.9-26.7 83.5l-34.7-34.7c12.7-21.4 17-47.7 10.1-73.7-13.7-51.2-66.4-81.6-117.6-67.9-8.6 2.3-16.7 5.7-24 10l-34.7-34.7zM325.3 395.1c-11.9 3.2-24.4 4.9-37.3 4.9-79.5 0-144-64.5-144-144 0-12.9 1.7-25.4 4.9-37.3L69.4 139.2c-32.6 36.8-55 75.8-66.9 104.5-3.3 7.9-3.3 16.7 0 24.6 14.9 35.7 46.2 87.7 93 131.1 47.1 43.7 111.8 80.6 192.6 80.6 37.3 0 71.2-7.9 101.5-20.6l-64.2-64.2z"]},gy={prefix:"fas",iconName:"bolt",icon:[448,512,[9889,"zap"],"f0e7","M338.8-9.9c11.9 8.6 16.3 24.2 10.9 37.8L271.3 224 416 224c13.5 0 25.5 8.4 30.1 21.1s.7 26.9-9.6 35.5l-288 240c-11.3 9.4-27.4 9.9-39.3 1.3s-16.3-24.2-10.9-37.8L176.7 288 32 288c-13.5 0-25.5-8.4-30.1-21.1s-.7-26.9 9.6-35.5l288-240c11.3-9.4 27.4-9.9 39.3-1.3z"]},ub={prefix:"fas",iconName:"burst",icon:[512,512,[],"e4dc","M37.6 4.2C28-2.3 15.2-1.1 7 7S-2.3 28 4.2 37.6l112 163.3-99.6 32.3C6.7 236.4 0 245.6 0 256s6.7 19.6 16.6 22.8l103.1 33.4-52.9 100.6c-4.9 9.3-3.2 20.7 4.3 28.1s18.8 9.2 28.1 4.3l100.6-52.9 33.4 103.1c3.2 9.9 12.4 16.6 22.8 16.6s19.6-6.7 22.8-16.6l33.4-103.1 100.6 52.9c9.3 4.9 20.7 3.2 28.1-4.3s9.2-18.8 4.3-28.1l-52.9-100.6 103.1-33.4c9.9-3.2 16.6-12.4 16.6-22.8s-6.7-19.6-16.6-22.8l-106.5-34.5 25.7-70.4c3.2-8.8 1-18.6-5.6-25.2s-16.4-8.8-25.2-5.6l-70.4 25.7-34.5-106.5C275.6 6.7 266.4 0 256 0s-19.6 6.7-22.8 16.6L200.9 116.2 37.6 4.2z"]},Fb={prefix:"fas",iconName:"user-gear",icon:[640,512,["user-cog"],"f4fe","M256.5 8a120 120 0 1 1 0 240 120 120 0 1 1 0-240zM226.7 304l59.4 0 1.5 0c-12.9 26.8-7.8 58.2 11.5 79.5-20.2 22.3-24.8 55.8-9.4 83.4l22.5 40.4c.9 1.6 1.9 3.2 2.9 4.7l-237 0c-16.4 0-29.7-13.3-29.7-29.7 0-98.5 79.8-178.3 178.3-178.3zm205.9-56.4c0-13.3 10.7-24 24-24l48 0c13.3 0 24 10.7 24 24l0 6.1c0 18.9 24.1 32.8 40.5 23.4l5-2.9c11.6-6.7 26.5-2.6 33 9.1l22.4 40.2c6.2 11.2 2.6 25.2-8.2 32l-4.7 2.9c-16.2 10.1-16.2 39.9 0 50.1l4.6 2.9c10.8 6.8 14.5 20.8 8.3 32L607 483.8c-6.5 11.7-21.4 15.9-33 9.1l-4.9-2.9c-16.4-9.5-40.5 4.5-40.5 23.4l0 6.1c0 13.3-10.7 24-24 24l-48 0c-13.3 0-24-10.7-24-24l0-5.9c0-19-24.2-33-40.7-23.5l-4.8 2.8c-11.6 6.7-26.4 2.6-33-9.1l-22.6-40.4c-6.2-11.2-2.6-25.3 8.3-32.1l4.4-2.7c16.3-10.1 16.3-40.1 0-50.2l-4.5-2.8c-10.9-6.8-14.5-20.9-8.3-32.1l22.5-40.3c6.5-11.7 21.4-15.8 32.9-9.1l4.8 2.8c16.5 9.5 40.7-4.5 40.7-23.5l0-5.9zm99.9 136.2a52 52 0 1 0 -104 0 52 52 0 1 0 104 0z"]},Vb={prefix:"fas",iconName:"screwdriver-wrench",icon:[576,512,["tools"],"f7d9","M70.8-6.7c5.4-5.4 13.8-6.2 20.2-2L209.9 70.5c8.9 5.9 14.2 15.9 14.2 26.6l0 49.6 90.8 90.8c33.3-15 73.9-8.9 101.2 18.5L542.2 382.1c18.7 18.7 18.7 49.1 0 67.9l-60.1 60.1c-18.7 18.7-49.1 18.7-67.9 0L288.1 384c-27.4-27.4-33.5-67.9-18.5-101.2l-90.8-90.8-49.6 0c-10.7 0-20.7-5.3-26.6-14.2L23.4 58.9c-4.2-6.3-3.4-14.8 2-20.2L70.8-6.7zm145 303.5c-6.3 36.9 2.3 75.9 26.2 107.2l-94.9 95c-28.1 28.1-73.7 28.1-101.8 0s-28.1-73.7 0-101.8l135.4-135.5 35.2 35.1zM384.1 0c20.1 0 39.4 3.7 57.1 10.5 10 3.8 11.8 16.5 4.3 24.1L388.8 91.3c-3 3-4.7 7.1-4.7 11.3l0 41.4c0 8.8 7.2 16 16 16l41.4 0c4.2 0 8.3-1.7 11.3-4.7l56.7-56.7c7.6-7.5 20.3-5.7 24.1 4.3 6.8 17.7 10.5 37 10.5 57.1 0 43.2-17.2 82.3-45 111.1l-49.1-49.1c-33.1-33-78.5-45.7-121.1-38.4l-56.8-56.8 0-29.7-.2-5c-.8-12.4-4.4-24.3-10.5-34.9 29.4-35 73.4-57.2 122.7-57.3z"]},Hb={prefix:"fas",iconName:"route",icon:[512,512,[],"f4d7","M512 96c0 50.2-59.1 125.1-84.6 155-3.8 4.4-9.4 6.1-14.5 5L320 256c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0c53 0 96 43 96 96s-43 96-96 96l-276.4 0c8.7-9.9 19.3-22.6 30-36.8 6.3-8.4 12.8-17.6 19-27.2L416 448c17.7 0 32-14.3 32-32s-14.3-32-32-32l-96 0c-53 0-96-43-96-96s43-96 96-96l39.8 0c-21-31.5-39.8-67.7-39.8-96 0-53 43-96 96-96s96 43 96 96zM117.1 489.1c-3.8 4.3-7.2 8.1-10.1 11.3l-1.8 2-.2-.2c-6 4.6-14.6 4-20-1.8-25.2-27.4-85-97.9-85-148.4 0-53 43-96 96-96s96 43 96 96c0 30-21.1 67-43.5 97.9-10.7 14.7-21.7 28-30.8 38.5l-.6 .7zM128 352a32 32 0 1 0 -64 0 32 32 0 1 0 64 0zM416 128a32 32 0 1 0 0-64 32 32 0 1 0 0 64z"]},Xb={prefix:"fas",iconName:"angles-up",icon:[384,512,["angle-double-up"],"f102","M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 109.3 329.4 246.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160zm160 352l-160-160c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 329.4 438.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3z"]},qb={prefix:"fas",iconName:"eject",icon:[448,512,[9167],"f052","M224 32c13.5 0 26.3 5.6 35.4 15.6l176 192c12.9 14 16.2 34.3 8.6 51.8S419 320 400 320L48 320c-19 0-36.3-11.2-43.9-28.7s-4.3-37.7 8.6-51.8l176-192C197.7 37.6 210.5 32 224 32zM0 432c0-26.5 21.5-48 48-48l352 0c26.5 0 48 21.5 48 48s-21.5 48-48 48L48 480c-26.5 0-48-21.5-48-48z"]},cC={prefix:"fas",iconName:"box-archive",icon:[512,512,["archive"],"f187","M0 64C0 46.3 14.3 32 32 32l448 0c17.7 0 32 14.3 32 32l0 32c0 17.7-14.3 32-32 32L32 128C14.3 128 0 113.7 0 96L0 64zM32 176l448 0 0 240c0 35.3-28.7 64-64 64L96 480c-35.3 0-64-28.7-64-64l0-240zm152 64c-13.3 0-24 10.7-24 24s10.7 24 24 24l144 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-144 0z"]},a7={prefix:"fas",iconName:"sterling-sign",icon:[384,512,[163,"gbp","pound-sign"],"f154","M91.3 288l-34.8 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l21.4 0C37.3 147.3 105.1 42 207.6 42l8.2 0c33.6 0 66.2 11.3 92.5 32.2l16.1 12.7c13.9 11 16.2 31.1 5.2 45s-31.1 16.2-45 5.2l-16.1-12.7c-15-11.9-33.6-18.4-52.8-18.4l-8.2 0c-57.3 0-94.7 59.9-69.7 111.4 3.6 7.4 6.6 14.9 9.1 22.6l149.5 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-141.2 0c1 35.3-8.7 70.6-28.9 100.9l-18.1 27.1 212.2 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-272 0c-11.8 0-22.6-6.5-28.2-16.9s-5-23 1.6-32.9l51.2-76.8c13.1-19.6 19.2-42.6 18.2-65.4z"]},CC={prefix:"fas",iconName:"circle-info",icon:[512,512,["info-circle"],"f05a","M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512zM224 160a32 32 0 1 1 64 0 32 32 0 1 1 -64 0zm-8 64l48 0c13.3 0 24 10.7 24 24l0 88 8 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l24 0 0-64-24 0c-13.3 0-24-10.7-24-24s10.7-24 24-24z"]},SC={prefix:"fas",iconName:"layer-group",icon:[512,512,[],"f5fd","M232.5 5.2c14.9-6.9 32.1-6.9 47 0l218.6 101c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L13.9 149.8C5.4 145.8 0 137.3 0 128s5.4-17.9 13.9-21.8L232.5 5.2zM48.1 218.4l164.3 75.9c27.7 12.8 59.6 12.8 87.3 0l164.3-75.9 34.1 15.8c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L13.9 277.8C5.4 273.8 0 265.3 0 256s5.4-17.9 13.9-21.8l34.1-15.8zM13.9 362.2l34.1-15.8 164.3 75.9c27.7 12.8 59.6 12.8 87.3 0l164.3-75.9 34.1 15.8c8.5 3.9 13.9 12.4 13.9 21.8s-5.4 17.9-13.9 21.8l-218.6 101c-14.9 6.9-32.1 6.9-47 0L13.9 405.8C5.4 401.8 0 393.3 0 384s5.4-17.9 13.9-21.8z"]}},1747(Zt,pe,l){"use strict";l.d(pe,{En:()=>ot,Vm:()=>ye,EH:()=>lt,gp:()=>nt});var i=l(7786),d=l(1985),v=l(1413),T=l(3557),w=l(983),e=l(7673),O=l(8810),f=l(8071);class L{constructor(Z,Me,at){this.kind=Z,this.value=Me,this.error=at,this.hasValue="N"===Z}observe(Z){return C(this,Z)}do(Z,Me,at){const{kind:qe,value:pn,error:Je}=this;return"N"===qe?Z?.(pn):"E"===qe?Me?.(Je):at?.()}accept(Z,Me,at){var qe;return(0,f.T)(null===(qe=Z)||void 0===qe?void 0:qe.next)?this.observe(Z):this.do(Z,Me,at)}toObservable(){const{kind:Z,value:Me,error:at}=this,qe="N"===Z?(0,e.of)(Me):"E"===Z?(0,O.$)(()=>at):"C"===Z?w.w:0;if(!qe)throw new TypeError(`Unexpected notification kind ${Z}`);return qe}static createNext(Z){return new L("N",Z)}static createError(Z){return new L("E",void 0,Z)}static createComplete(){return L.completeNotification}}function C(N,Z){var Me,at,qe;const{kind:pn,value:Je,error:Be}=N;if("string"!=typeof pn)throw new TypeError('Invalid notification, missing "kind"');"N"===pn?null===(Me=Z.next)||void 0===Me||Me.call(Z,Je):"E"===pn?null===(at=Z.error)||void 0===at||at.call(Z,Be):null===(qe=Z.complete)||void 0===qe||qe.call(Z)}L.completeNotification=new L("C");var B=l(9974),A=l(4360),le=l(6354),Ce=l(9437),Ae=l(5964),j=l(8750);function W(N,Z,Me,at){return(0,B.N)((qe,pn)=>{let Je;Z&&"function"!=typeof Z?({duration:Me,element:Je,connector:at}=Z):Je=Z;const Be=new Map,ut=tn=>{Be.forEach(tn),tn(pn)},Ge=tn=>ut(on=>on.error(tn));let Ot=0,se=!1;const We=new A.H(pn,tn=>{try{const on=N(tn);let un=Be.get(on);if(!un){Be.set(on,un=at?at():new v.B);const Nt=function bt(tn,on){const un=new d.c(Nt=>{Ot++;const dn=on.subscribe(Nt);return()=>{dn.unsubscribe(),0===--Ot&&se&&We.unsubscribe()}});return un.key=tn,un}(on,un);if(pn.next(Nt),Me){const dn=(0,A._)(un,()=>{un.complete(),dn?.unsubscribe()},void 0,void 0,()=>Be.delete(on));We.add((0,j.Tg)(Me(Nt)).subscribe(dn))}}un.next(Je?Je(tn):tn)}catch(on){Ge(on)}},()=>ut(tn=>tn.complete()),Ge,()=>Be.clear(),()=>(se=!0,0===Ot));qe.subscribe(We)})}var G=l(1397);function re(N,Z){return Z?Me=>Me.pipe(re((at,qe)=>(0,j.Tg)(N(at,qe)).pipe((0,le.T)((pn,Je)=>Z(at,pn,qe,Je))))):(0,B.N)((Me,at)=>{let qe=0,pn=null,Je=!1;Me.subscribe((0,A._)(at,Be=>{pn||(pn=(0,A._)(at,void 0,()=>{pn=null,Je&&at.complete()}),(0,j.Tg)(N(Be,qe++)).subscribe(pn))},()=>{Je=!0,!pn&&at.complete()}))})}var Ee=l(6697),V=l(2615),ce=l(3664),be=l(9640);const he={dispatch:!0,functional:!1,useEffectsErrorHandler:!0},Dt="__@ngrx/effects_create__";function lt(N,Z={}){const Me=Z.functional?N:N(),at={...he,...Z};return Object.defineProperty(Me,Dt,{value:at}),Me}function P(N){return Object.getPrototypeOf(N)}function ve(N){return"function"==typeof N}function H(N){return N.filter(ve)}function Ke(N,Z,Me){const at=P(N),pn=at&&"Object"!==at.constructor.name?at.constructor.name:null,Je=function ie(N){return function Le(N){return Object.getOwnPropertyNames(N).filter(at=>!(!N[at]||!N[at].hasOwnProperty(Dt))&&N[at][Dt].hasOwnProperty("dispatch")).map(at=>({propertyName:at,...N[at][Dt]}))}(N)}(N).map(({propertyName:Be,dispatch:ut,useEffectsErrorHandler:Ge})=>{const Ot="function"==typeof N[Be]?N[Be]():N[Be],se=Ge?Me(Ot,Z):Ot;return!1===ut?se.pipe((0,T.w)()):se.pipe(function Pe(){return(0,B.N)((N,Z)=>{N.subscribe((0,A._)(Z,Me=>{Z.next(L.createNext(Me))},()=>{Z.next(L.createComplete()),Z.complete()},Me=>{Z.next(L.createError(Me)),Z.complete()}))})}()).pipe((0,le.T)(bt=>({effect:N[Be],notification:bt,propertyName:Be,sourceName:pn,sourceInstance:N})))});return(0,i.h)(...Je)}function St(N,Z,Me=10){return N.pipe((0,Ce.W)(at=>(Z&&Z.handleError(at),Me<=1?N:St(N,Z,Me-1))))}let ot=(()=>{var N;class Z extends d.c{constructor(at){super(),at&&(this.source=at)}lift(at){const qe=new Z;return qe.source=this,qe.operator=at,qe}static#e=N=()=>(this.\u0275fac=function(qe){return new(qe||Z)(V.KVO(be.sA))},this.\u0275prov=V.jDH({token:Z,factory:Z.\u0275fac,providedIn:"root"}))}return N(),Z})();function nt(...N){return(0,Ae.p)(Z=>N.some(Me=>"string"==typeof Me?Me===Z.type:Me.type===Z.type))}const ht=new V.nKC("@ngrx/effects Internal Root Guard"),oe=new V.nKC("@ngrx/effects User Provided Effects"),Ye=new V.nKC("@ngrx/effects Internal Root Effects"),fe=new V.nKC("@ngrx/effects Internal Root Effects Instances"),Qe=new V.nKC("@ngrx/effects Internal Feature Effects"),gt=new V.nKC("@ngrx/effects Internal Feature Effects Instance Groups"),Gt=new V.nKC("@ngrx/effects Effects Error Handler",{providedIn:"root",factory:()=>St}),rt="@ngrx/effects/init";function gn(N){return ei(N,"ngrxOnInitEffects")}function ei(N,Z){return N&&Z in N&&"function"==typeof N[Z]}(0,be.VP)(rt);let vi=(()=>{var N;class Z extends v.B{constructor(at,qe){super(),this.errorHandler=at,this.effectsErrorHandler=qe}addEffects(at){this.next(at)}toActions(){return this.pipe(W(at=>function F(N){return!!N.constructor&&"Object"!==N.constructor.name&&"Function"!==N.constructor.name}(at)?P(at):at),(0,G.Z)(at=>at.pipe(W(Ni))),(0,G.Z)(at=>{const qe=at.pipe(re(Je=>function kn(N,Z){return Me=>{const at=Ke(Me,N,Z);return function pt(N){return ei(N,"ngrxOnRunEffects")}(Me)?Me.ngrxOnRunEffects(at):at}}(this.errorHandler,this.effectsErrorHandler)(Je)),(0,le.T)(Je=>(function Ft(N,Z){if("N"===N.notification.kind){const Me=N.notification.value;!function Sn(N){return"function"!=typeof N&&N&&N.type&&"string"==typeof N.type}(Me)&&Z.handleError(new Error(`Effect ${function Qn({propertyName:N,sourceInstance:Z,sourceName:Me}){const at="function"==typeof Z[N];return Me?`"${Me}.${String(N)}${at?"()":""}"`:`"${String(N)}()"`}(N)} dispatched an invalid action: ${function h(N){try{return JSON.stringify(N)}catch{return N}}(Me)}`))}}(Je,this.errorHandler),Je.notification)),(0,Ae.p)(Je=>"N"===Je.kind&&null!=Je.value),function xe(){return(0,B.N)((N,Z)=>{N.subscribe((0,A._)(Z,Me=>C(Me,Z)))})}()),pn=at.pipe((0,Ee.s)(1),(0,Ae.p)(gn),(0,le.T)(Je=>Je.ngrxOnInitEffects()));return(0,i.h)(qe,pn)}))}static#e=N=()=>(this.\u0275fac=function(qe){return new(qe||Z)(V.KVO(V.zcH),V.KVO(Gt))},this.\u0275prov=V.jDH({token:Z,factory:Z.\u0275fac,providedIn:"root"}))}return N(),Z})();function Ni(N){return function Ue(N){return ei(N,"ngrxOnIdentifyEffects")}(N)?N.ngrxOnIdentifyEffects():""}let Ri=(()=>{var N;class Z{get isStarted(){return!!this.effectsSubscription}constructor(at,qe){this.effectSources=at,this.store=qe,this.effectsSubscription=null}start(){this.effectsSubscription||(this.effectsSubscription=this.effectSources.toActions().subscribe(this.store))}ngOnDestroy(){this.effectsSubscription&&(this.effectsSubscription.unsubscribe(),this.effectsSubscription=null)}static#e=N=()=>(this.\u0275fac=function(qe){return new(qe||Z)(V.KVO(vi),V.KVO(be.il))},this.\u0275prov=V.jDH({token:Z,factory:Z.\u0275fac,providedIn:"root"}))}return N(),Z})(),vt=(()=>{var N;class Z{constructor(at,qe,pn,Je,Be,ut,Ge){this.sources=at,qe.start();for(const Ot of Je)at.addEffects(Ot);pn.dispatch({type:rt})}addEffects(at){this.sources.addEffects(at)}static#e=N=()=>(this.\u0275fac=function(qe){return new(qe||Z)(V.KVO(vi),V.KVO(Ri),V.KVO(be.il),V.KVO(fe),V.KVO(be.wc,8),V.KVO(be.ae,8),V.KVO(ht,8))},this.\u0275mod=ce.$C({type:Z}),this.\u0275inj=V.G2t({}))}return N(),Z})(),ee=(()=>{var N;class Z{constructor(at,qe,pn,Je){const Be=qe.flat();for(const ut of Be)at.addEffects(ut)}static#e=N=()=>(this.\u0275fac=function(qe){return new(qe||Z)(V.KVO(vt),V.KVO(gt),V.KVO(be.wc,8),V.KVO(be.ae,8))},this.\u0275mod=ce.$C({type:Z}),this.\u0275inj=V.G2t({}))}return N(),Z})(),ye=(()=>{var N;class Z{static forFeature(...at){const qe=at.flat(),pn=H(qe);return{ngModule:ee,providers:[pn,{provide:Qe,multi:!0,useValue:qe},{provide:oe,multi:!0,useValue:[]},{provide:gt,multi:!0,useFactory:ke,deps:[Qe,oe]}]}}static forRoot(...at){const qe=at.flat(),pn=H(qe);return{ngModule:vt,providers:[pn,{provide:Ye,useValue:[qe]},{provide:ht,useFactory:Se},{provide:oe,multi:!0,useValue:[]},{provide:fe,useFactory:ke,deps:[Ye,oe]}]}}static#e=N=()=>(this.\u0275fac=function(qe){return new(qe||Z)},this.\u0275mod=ce.$C({type:Z}),this.\u0275inj=V.G2t({}))}return N(),Z})();function ke(N,Z){const Me=[];for(const at of N)Me.push(...at);for(const at of Z)Me.push(...at);return Me.map(at=>function $(N){return N instanceof V.nKC||ve(N)}(at)?(0,V.WQX)(at):at)}function Se(){const N=(0,V.WQX)(Ri,{optional:!0,skipSelf:!0}),Z=(0,V.WQX)(Ye,{self:!0});if((1!==Z.length||0!==Z[0].length)&&N)throw new TypeError("EffectsModule.forRoot() called twice. Feature modules should use EffectsModule.forFeature() instead.");return"guarded"}},9640(Zt,pe,l){"use strict";l.d(pe,{SS:()=>Xe,Zz:()=>Re,N_:()=>lt,Bh:()=>jt,QU:()=>h,sA:()=>Pt,h1:()=>ei,il:()=>Ri,ae:()=>Hn,md:()=>Pi,wc:()=>Rn,q6:()=>Ue,VP:()=>W,UX:()=>Jn,vy:()=>Ta,Mz:()=>Nt,on:()=>da,xk:()=>G});var i=l(2615),d=l(3664),v=l(9295),T=l(7705),w=l(4412),e=l(1985),O=l(1413),f=l(7242),u=l(941),L=l(3993),C=l(1943),B=l(6354),Pe=l(3294),le=l(9079);const Ae={};function W(en,vn){if(Ae[en]=(Ae[en]||0)+1,"function"==typeof vn)return xe(en,(...bn)=>({...vn(...bn),type:en}));switch(vn?vn._as:"empty"){case"empty":return xe(en,()=>({type:en}));case"props":return xe(en,bn=>({...bn,type:en}));default:throw new Error("Unexpected config.")}}function G(){return{_as:"props",_p:void 0}}function xe(en,vn){return Object.defineProperty(vn,"type",{value:en,writable:!1})}const Re="@ngrx/store/init";let Xe=(()=>{var en;class vn extends w.t{constructor(){super({type:Re})}next(bn){if("function"==typeof bn)throw new TypeError("\n Dispatch expected an object, instead it received a function.\n If you're using the createAction function, make sure to invoke the function\n before dispatching the action. For example, someAction should be someAction().");if(typeof bn>"u")throw new TypeError("Actions must be objects");if(typeof bn.type>"u")throw new TypeError("Actions must have a type property");super.next(bn)}complete(){}ngOnDestroy(){super.complete()}static#e=en=()=>(this.\u0275fac=function(Kn){return new(Kn||vn)},this.\u0275prov=i.jDH({token:vn,factory:vn.\u0275fac}))}return en(),vn})();const _e=[Xe],he=new i.nKC("@ngrx/store Internal Root Guard"),Dt=new i.nKC("@ngrx/store Internal Initial State"),lt=new i.nKC("@ngrx/store Initial State"),Le=new i.nKC("@ngrx/store Reducer Factory"),te=new i.nKC("@ngrx/store Internal Reducer Factory Provider"),ie=new i.nKC("@ngrx/store Initial Reducers"),P=new i.nKC("@ngrx/store Internal Initial Reducers"),F=new i.nKC("@ngrx/store Store Features"),ve=new i.nKC("@ngrx/store Internal Store Reducers"),H=new i.nKC("@ngrx/store Internal Feature Reducers"),$=new i.nKC("@ngrx/store Internal Feature Configs"),Ke=new i.nKC("@ngrx/store Internal Store Features"),Vt=new i.nKC("@ngrx/store Internal Feature Reducers Token"),St=new i.nKC("@ngrx/store Feature Reducers"),ot=new i.nKC("@ngrx/store User Provided Meta Reducers"),nt=new i.nKC("@ngrx/store Meta Reducers"),ht=new i.nKC("@ngrx/store Internal Resolved Meta Reducers"),oe=new i.nKC("@ngrx/store User Runtime Checks Config"),Ye=new i.nKC("@ngrx/store Internal User Runtime Checks Config"),fe=new i.nKC("@ngrx/store Internal Runtime Checks"),Qe=new i.nKC("@ngrx/store Check if Action types are unique"),gt=new i.nKC("@ngrx/store Root Store Provider"),Gt=new i.nKC("@ngrx/store Feature State Provider");function rt(en,vn={}){const oi=Object.keys(en),bn={};for(let yi=0;yiyi(Kn),oi(vn))}}function Sn(en,vn){return Array.isArray(vn)&&vn.length>0&&(en=Ft.apply(null,[...vn,en])),(oi,bn)=>{const Kn=en(oi);return(yi,Wi)=>Kn(yi=void 0===yi?bn:yi,Wi)}}class h extends e.c{}class jt extends Xe{}const Ue="@ngrx/store/update-reducers";let wt=(()=>{var en;class vn extends w.t{get currentReducers(){return this.reducers}constructor(bn,Kn,yi,Wi){super(Wi(yi,Kn)),this.dispatcher=bn,this.initialState=Kn,this.reducers=yi,this.reducerFactory=Wi}addFeature(bn){this.addFeatures([bn])}addFeatures(bn){const Kn=bn.reduce((yi,{reducers:Wi,reducerFactory:Ca,metaReducers:Fe,initialState:Wt,key:Ve})=>{const Et="function"==typeof Wi?function Qn(en){const vn=Array.isArray(en)&&en.length>0?Ft(...en):oi=>oi;return(oi,bn)=>(oi=vn(oi),(Kn,yi)=>oi(Kn=void 0===Kn?bn:Kn,yi))}(Fe)(Wi,Wt):Sn(Ca,Fe)(Wi,Wt);return yi[Ve]=Et,yi},{});this.addReducers(Kn)}removeFeature(bn){this.removeFeatures([bn])}removeFeatures(bn){this.removeReducers(bn.map(Kn=>Kn.key))}addReducer(bn,Kn){this.addReducers({[bn]:Kn})}addReducers(bn){this.reducers={...this.reducers,...bn},this.updateReducers(Object.keys(bn))}removeReducer(bn){this.removeReducers([bn])}removeReducers(bn){bn.forEach(Kn=>{this.reducers=function cn(en,vn){return Object.keys(en).filter(oi=>oi!==vn).reduce((oi,bn)=>Object.assign(oi,{[bn]:en[bn]}),{})}(this.reducers,Kn)}),this.updateReducers(bn)}updateReducers(bn){this.next(this.reducerFactory(this.reducers,this.initialState)),this.dispatcher.next({type:Ue,features:bn})}ngOnDestroy(){this.complete()}static#e=en=()=>(this.\u0275fac=function(Kn){return new(Kn||vn)(i.KVO(jt),i.KVO(lt),i.KVO(ie),i.KVO(Le))},this.\u0275prov=i.jDH({token:vn,factory:vn.\u0275fac}))}return en(),vn})();const pt=[wt,{provide:h,useExisting:wt},{provide:jt,useExisting:Xe}];let Pt=(()=>{var en;class vn extends O.B{ngOnDestroy(){this.complete()}static#e=en=()=>(this.\u0275fac=(()=>{let bn;return function(yi){return(bn||(bn=d.xGo(vn)))(yi||vn)}})(),this.\u0275prov=i.jDH({token:vn,factory:vn.\u0275fac}))}return en(),vn})();const gn=[Pt];class ei extends e.c{}let vi=(()=>{var en;class vn extends w.t{constructor(bn,Kn,yi,Wi){super(Wi);const Ve=bn.pipe((0,u.Q)(f.T)).pipe((0,L.E)(Kn)).pipe((0,C.S)(Ni,{state:Wi}));this.stateSubscription=Ve.subscribe(({state:Et,action:Jt})=>{this.next(Et),yi.next(Jt)}),this.state=(0,le.ot)(this,{manualCleanup:!0,requireSync:!0})}ngOnDestroy(){this.stateSubscription.unsubscribe(),this.complete()}static#e=en=()=>(this.INIT=Re,this.\u0275fac=function(Kn){return new(Kn||vn)(i.KVO(Xe),i.KVO(h),i.KVO(Pt),i.KVO(lt))},this.\u0275prov=i.jDH({token:vn,factory:vn.\u0275fac}))}return en(),vn})();function Ni(en={state:void 0},[vn,oi]){const{state:bn}=en;return{state:oi(bn,vn),action:vn}}const kn=[vi,{provide:ei,useExisting:vi}];let Ri=(()=>{var en;class vn extends e.c{constructor(bn,Kn,yi,Wi){super(),this.actionsObserver=Kn,this.reducerManager=yi,this.injector=Wi,this.source=bn,this.state=bn.state}select(bn,...Kn){return ee.call(null,bn,...Kn)(this)}selectSignal(bn,Kn){return(0,v.EW)(()=>bn(this.state()),Kn)}lift(bn){const Kn=new vn(this,this.actionsObserver,this.reducerManager);return Kn.operator=bn,Kn}dispatch(bn,Kn){if("function"==typeof bn)return this.processDispatchFn(bn,Kn);this.actionsObserver.next(bn)}next(bn){this.actionsObserver.next(bn)}error(bn){this.actionsObserver.error(bn)}complete(){this.actionsObserver.complete()}addReducer(bn,Kn){this.reducerManager.addReducer(bn,Kn)}removeReducer(bn){this.reducerManager.removeReducer(bn)}processDispatchFn(bn,Kn){!function ce(en,vn){if(null==en)throw new Error(`${vn} must be defined.`)}(this.injector,"Store Injector");const yi=Kn?.injector??function ye(){try{return(0,i.WQX)(i.zZn)}catch{return}}()??this.injector;return(0,v.QZ)(()=>{const Wi=bn();(0,v.O8)(()=>this.dispatch(Wi))},{injector:yi})}static#e=en=()=>(this.\u0275fac=function(Kn){return new(Kn||vn)(i.KVO(ei),i.KVO(Xe),i.KVO(wt),i.KVO(i.zZn))},this.\u0275prov=i.jDH({token:vn,factory:vn.\u0275fac}))}return en(),vn})();const vt=[Ri];function ee(en,vn,...oi){return function(Kn){let yi;if("string"==typeof en){const Wi=[vn,...oi].filter(Boolean);yi=Kn.pipe(function A(...en){const vn=en.length;if(0===vn)throw new Error("list of properties cannot be empty.");return(0,B.T)(oi=>{let bn=oi;for(let Kn=0;Knen(Wi,vn)))}return yi.pipe((0,Pe.F)())}}const ke="https://ngrx.io/guide/store/configuration/runtime-checks";function Se(en){return void 0===en}function ge(en){return null===en}function N(en){return Array.isArray(en)}function qe(en){return"object"==typeof en&&null!==en}function Be(en){return"function"==typeof en}function bt(en,vn){return en===vn}function un(en,vn=bt,oi=bt){let yi,bn=null,Kn=null;return{memoized:function Wt(){if(void 0!==yi)return yi.result;if(!bn)return Kn=en.apply(null,arguments),bn=arguments,Kn;if(!function tn(en,vn,oi){for(let bn=0;bn"function"==typeof vn)}(bn[0])&&(bn=function Yi(en){const vn=Object.values(en),oi=Object.keys(en);return[...vn,(...Kn)=>oi.reduce((yi,Wi,Ca)=>({...yi,[Wi]:Kn[Ca]}),{})]}(bn[0]));const Kn=bn.slice(0,bn.length-1),yi=bn[bn.length-1],Wi=Kn.filter(Ve=>Ve.release&&"function"==typeof Ve.release),Ca=en(function(...Ve){return yi.apply(null,Ve)}),Fe=un(function(Ve,Et){return vn.stateFn.apply(null,[Ve,Kn,Et,Ca])});return Object.assign(Fe.memoized,{release:function Wt(){Fe.reset(),Ca.reset(),Wi.forEach(Ve=>Ve.release())},projector:Ca.memoized,setResult:Fe.setResult,clearResult:Fe.clearResult})}}(un)(...en)}function dn(en,vn,oi,bn){if(void 0===oi){const yi=vn.map(Wi=>Wi(en));return bn.memoized.apply(null,yi)}const Kn=vn.map(yi=>yi(en,oi));return bn.memoized.apply(null,[...Kn,oi])}function Jn(en){return Nt(vn=>{const oi=vn[en];return(0,T.naY)()&&!(en in vn)&&console.warn(`@ngrx/store: The feature name "${en}" does not exist in the state, therefore createFeatureSelector cannot access it. Be sure it is imported in a loaded module using StoreModule.forRoot('${en}', ...) or StoreModule.forFeature('${en}', ...). If the default state is intended to be undefined, as is the case with router state, this development-only warning message can be ignored.`),oi},vn=>vn)}function ae(en){return en instanceof i.nKC?(0,i.WQX)(en):en}function Lt(en,vn){return vn.map((oi,bn)=>{if(en[bn]instanceof i.nKC){const Kn=(0,i.WQX)(en[bn]);return{key:oi.key,reducerFactory:Kn.reducerFactory?Kn.reducerFactory:rt,metaReducers:Kn.metaReducers?Kn.metaReducers:[],initialState:Kn.initialState}}return oi})}function Ht(en){return en.map(vn=>vn instanceof i.nKC?(0,i.WQX)(vn):vn)}function _n(en){return"function"==typeof en?en():en}function fi(en,vn){return en.concat(vn)}function bi(){if((0,i.WQX)(Ri,{optional:!0,skipSelf:!0}))throw new TypeError("The root Store has been provided more than once. Feature modules should provide feature states instead.");return"guarded"}function zi(en){Object.freeze(en);const vn=Be(en);return Object.getOwnPropertyNames(en).forEach(oi=>{if(!oi.startsWith("\u0275")&&function Ge(en,vn){return Object.prototype.hasOwnProperty.call(en,vn)}(en,oi)&&(!vn||"caller"!==oi&&"callee"!==oi&&"arguments"!==oi)){const bn=en[oi];(qe(bn)||Be(bn))&&!Object.isFrozen(bn)&&zi(bn)}}),en}function an(en,vn=[]){return(Se(en)||ge(en))&&0===vn.length?{path:["root"],value:en}:Object.keys(en).reduce((bn,Kn)=>{if(bn)return bn;const yi=en[Kn];return function ut(en){return Be(en)&&en.hasOwnProperty("\u0275cmp")}(yi)?bn:!(Se(yi)||ge(yi)||function at(en){return"number"==typeof en}(yi)||function Me(en){return"boolean"==typeof en}(yi)||function Z(en){return"string"==typeof en}(yi)||N(yi))&&(function Je(en){if(!function pn(en){return qe(en)&&!N(en)}(en))return!1;const vn=Object.getPrototypeOf(en);return vn===Object.prototype||null===vn}(yi)?an(yi,[...vn,Kn]):{path:[...vn,Kn],value:yi})},!1)}function Yt(en,vn){if(!1===en)return;const oi=en.path.join("."),bn=new Error(`Detected unserializable ${vn} at "${oi}". ${ke}#strict${vn}serializability`);throw bn.value=en.value,bn.unserializablePath=oi,bn}function zn(en){return(0,T.naY)()?{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!0,strictActionImmutability:!0,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1,...en}:{strictStateSerializability:!1,strictActionSerializability:!1,strictStateImmutability:!1,strictActionImmutability:!1,strictActionWithinNgZone:!1,strictActionTypeUniqueness:!1}}function Fn({strictActionSerializability:en,strictStateSerializability:vn}){return oi=>en||vn?function It(en,vn){return function(oi,bn){vn.action(bn)&&Yt(an(bn),"action");const Kn=en(oi,bn);return vn.state()&&Yt(an(Kn),"state"),Kn}}(oi,{action:bn=>en&&!rn(bn),state:()=>vn}):oi}function ci({strictActionImmutability:en,strictStateImmutability:vn}){return oi=>en||vn?function Qi(en,vn){return function(oi,bn){const Kn=vn.action(bn)?zi(bn):bn,yi=en(oi,Kn);return vn.state()?zi(yi):yi}}(oi,{action:bn=>en&&!rn(bn),state:()=>vn}):oi}function rn(en){return en.type.startsWith("@ngrx")}function In({strictActionWithinNgZone:en}){return vn=>en?function Un(en,vn){return function(oi,bn){if(vn.action(bn)&&!d.SKi.isInAngularZone())throw new Error(`Action '${bn.type}' running outside NgZone. ${ke}#strictactionwithinngzone`);return en(oi,bn)}}(vn,{action:oi=>en&&!rn(oi)}):vn}function Mn(en){return[{provide:Ye,useValue:en},{provide:oe,useFactory:ii,deps:[Ye]},{provide:fe,deps:[oe],useFactory:zn},{provide:nt,multi:!0,deps:[fe],useFactory:ci},{provide:nt,multi:!0,deps:[fe],useFactory:Fn},{provide:nt,multi:!0,deps:[fe],useFactory:In}]}function Vn(){return[{provide:Qe,multi:!0,deps:[fe],useFactory:Bn}]}function ii(en){return en}function Bn(en){if(!en.strictActionTypeUniqueness)return;const vn=Object.entries(Ae).filter(([,oi])=>oi>1).map(([oi])=>oi);if(vn.length)throw new Error(`Action types are registered more than once, ${vn.map(oi=>`"${oi}"`).join(", ")}. ${ke}#strictactiontypeuniqueness`)}function ra(en={},vn={}){return[{provide:he,useFactory:bi},{provide:Dt,useValue:vn.initialState},{provide:lt,useFactory:_n,deps:[Dt]},{provide:P,useValue:en},{provide:ve,useExisting:en instanceof i.nKC?en:P},{provide:ie,deps:[P,[new d.y_5(ve)]],useFactory:ae},{provide:ot,useValue:vn.metaReducers?vn.metaReducers:[]},{provide:ht,deps:[nt,ot],useFactory:fi},{provide:te,useValue:vn.reducerFactory?vn.reducerFactory:rt},{provide:Le,deps:[te,ht],useFactory:Sn},_e,pt,gn,kn,vt,Mn(vn.runtimeChecks),Vn()]}function ri(en,vn,oi={}){return[{provide:$,multi:!0,useValue:en instanceof Object?{}:oi},{provide:F,multi:!0,useValue:{key:en instanceof Object?en.name:en,reducerFactory:oi instanceof i.nKC||!oi.reducerFactory?rt:oi.reducerFactory,metaReducers:oi instanceof i.nKC||!oi.metaReducers?[]:oi.metaReducers,initialState:oi instanceof i.nKC||!oi.initialState?void 0:oi.initialState}},{provide:Ke,deps:[$,F],useFactory:Lt},{provide:H,multi:!0,useValue:en instanceof Object?en.reducer:vn},{provide:Vt,multi:!0,useExisting:vn instanceof i.nKC?vn:H},{provide:St,multi:!0,deps:[H,[new d.y_5(Vt)]],useFactory:Ht},Vn()]}(0,i.BCV)(()=>(0,i.WQX)(gt)),(0,i.BCV)(()=>(0,i.WQX)(Gt));let Rn=(()=>{var en;class vn{constructor(bn,Kn,yi,Wi,Ca,Fe){}static#e=en=()=>(this.\u0275fac=function(Kn){return new(Kn||vn)(i.KVO(Xe),i.KVO(h),i.KVO(Pt),i.KVO(Ri),i.KVO(he,8),i.KVO(Qe,8))},this.\u0275mod=d.$C({type:vn}),this.\u0275inj=i.G2t({}))}return en(),vn})(),Hn=(()=>{var en;class vn{constructor(bn,Kn,yi,Wi,Ca){this.features=bn,this.featureReducers=Kn,this.reducerManager=yi;const Fe=bn.map((Wt,Ve)=>{const Jt=Kn.shift()[Ve];return{...Wt,reducers:Jt,initialState:_n(Wt.initialState)}});yi.addFeatures(Fe)}ngOnDestroy(){this.reducerManager.removeFeatures(this.features)}static#e=en=()=>(this.\u0275fac=function(Kn){return new(Kn||vn)(i.KVO(Ke),i.KVO(St),i.KVO(wt),i.KVO(Rn),i.KVO(Qe,8))},this.\u0275mod=d.$C({type:vn}),this.\u0275inj=i.G2t({}))}return en(),vn})(),Pi=(()=>{var en;class vn{static forRoot(bn,Kn){return{ngModule:Rn,providers:[...ra(bn,Kn)]}}static forFeature(bn,Kn,yi={}){return{ngModule:Hn,providers:[...ri(bn,Kn,yi)]}}static#e=en=()=>(this.\u0275fac=function(Kn){return new(Kn||vn)},this.\u0275mod=d.$C({type:vn}),this.\u0275inj=i.G2t({}))}return en(),vn})();function da(...en){return{reducer:en.pop(),types:en.map(bn=>bn.type)}}function Ta(en,...vn){const oi=new Map;for(const bn of vn)for(const Kn of bn.types){const yi=oi.get(Kn);oi.set(Kn,yi?(Ca,Fe)=>bn.reducer(yi(Ca,Fe),Fe):bn.reducer)}return function(bn=en,Kn){const yi=oi.get(Kn.type);return yi?yi(bn,Kn):bn}}},1993(Zt,pe,l){"use strict";l.d(pe,{Dl:()=>bp,L8:()=>hh,dV:()=>p4});var i=l(3664),d=l(2615),v=l(7705),T=l(2200),w=l(177),e=l(1635),O=l(6939),f=l(3726),u=l(152),L=l(1514);function C(){}function B(s){return null==s?C:function(){return this.querySelector(s)}}function le(){return[]}function Ce(s){return null==s?le:function(){return this.querySelectorAll(s)}}function W(s){return function(){return this.matches(s)}}function G(s){return function(g){return g.matches(s)}}var re=Array.prototype.find;function Ee(){return this.firstElementChild}var ce=Array.prototype.filter;function be(){return Array.from(this.children)}function Re(s){return new Array(s.length)}function _e(s,g){this.ownerDocument=s.ownerDocument,this.namespaceURI=s.namespaceURI,this._next=null,this._parent=s,this.__data__=g}function Dt(s,g,c,r,y,x){for(var ue,R=0,xt=g.length,Rt=x.length;Rg?1:s>=g?0:NaN}_e.prototype={constructor:_e,appendChild:function(s){return this._parent.insertBefore(s,this._next)},insertBefore:function(s,g){return this._parent.insertBefore(s,g)},querySelector:function(s){return this._parent.querySelector(s)},querySelectorAll:function(s){return this._parent.querySelectorAll(s)}};var Ye="http://www.w3.org/1999/xhtml";const fe={svg:"http://www.w3.org/2000/svg",xhtml:Ye,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function Qe(s){var g=s+="",c=g.indexOf(":");return c>=0&&"xmlns"!==(g=s.slice(0,c))&&(s=s.slice(c+1)),fe.hasOwnProperty(g)?{space:fe[g],local:s}:s}function gt(s){return function(){this.removeAttribute(s)}}function Gt(s){return function(){this.removeAttributeNS(s.space,s.local)}}function rt(s,g){return function(){this.setAttribute(s,g)}}function cn(s,g){return function(){this.setAttributeNS(s.space,s.local,g)}}function Ft(s,g){return function(){var c=g.apply(this,arguments);null==c?this.removeAttribute(s):this.setAttribute(s,c)}}function Sn(s,g){return function(){var c=g.apply(this,arguments);null==c?this.removeAttributeNS(s.space,s.local):this.setAttributeNS(s.space,s.local,c)}}function h(s){return s.ownerDocument&&s.ownerDocument.defaultView||s.document&&s||s.defaultView}function jt(s){return function(){this.style.removeProperty(s)}}function Ue(s,g,c){return function(){this.style.setProperty(s,g,c)}}function wt(s,g,c){return function(){var r=g.apply(this,arguments);null==r?this.style.removeProperty(s):this.style.setProperty(s,r,c)}}function Pt(s,g){return s.style.getPropertyValue(g)||h(s).getComputedStyle(s,null).getPropertyValue(g)}function gn(s){return function(){delete this[s]}}function ei(s,g){return function(){this[s]=g}}function vi(s,g){return function(){var c=g.apply(this,arguments);null==c?delete this[s]:this[s]=c}}function kn(s){return s.trim().split(/^|\s+/)}function Ri(s){return s.classList||new vt(s)}function vt(s){this._node=s,this._names=kn(s.getAttribute("class")||"")}function ee(s,g){for(var c=Ri(s),r=-1,y=g.length;++r=0&&(this._names.splice(g,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(s){return this._names.indexOf(s)>=0}};var an=[null];function Yt(s,g){this._groups=s,this._parents=g}function Un(){return new Yt([[document.documentElement]],an)}Yt.prototype=Un.prototype={constructor:Yt,select:function A(s){"function"!=typeof s&&(s=B(s));for(var g=this._groups,c=g.length,r=new Array(c),y=0;y=ea&&(ea=pa+1);!(Na=Xn[ea])&&++ea=0;)(R=r[y])&&(x&&4^R.compareDocumentPosition(x)&&x.parentNode.insertBefore(R,x),x=R);return this},sort:function $(s){function g(wn,An){return wn&&An?s(wn.__data__,An.__data__):!wn-!An}s||(s=Ke);for(var c=this._groups,r=c.length,y=new Array(r),x=0;x1?this.each((null==g?jt:"function"==typeof g?wt:Ue)(s,g,c??"")):Pt(this.node(),s)},property:function Ni(s,g){return arguments.length>1?this.each((null==g?gn:"function"==typeof g?vi:ei)(s,g)):this.node()[s]},classed:function N(s,g){var c=kn(s+"");if(arguments.length<2){for(var r=Ri(this.node()),y=-1,x=c.length;++y=0&&(c=g.slice(r+1),g=g.slice(0,r)),{type:g,name:c}})}(s+""),x=r.length;if(!(arguments.length<2)){for(ue=g?Ht:Lt,y=0;y{}};function In(){for(var r,s=0,g=arguments.length,c={};s=0&&(r=c.slice(y+1),c=c.slice(0,y)),c&&!g.hasOwnProperty(c))throw new Error("unknown type: "+c);return{type:c,name:r}})}(s+"",c),x=-1,R=r.length;if(!(arguments.length<2)){if(null!=g&&"function"!=typeof g)throw new Error("invalid callback: "+g);for(;++x0)for(var y,x,c=new Array(y),r=0;r>8&15|g>>4&240,g>>4&15|240&g,(15&g)<<4|15&g,1):8===c?ca(g>>24&255,g>>16&255,g>>8&255,(255&g)/255):4===c?ca(g>>12&15|g>>8&240,g>>8&15|g>>4&240,g>>4&15|240&g,((15&g)<<4|15&g)/255):null):(g=bn.exec(s))?new U(g[1],g[2],g[3],1):(g=Kn.exec(s))?new U(255*g[1]/100,255*g[2]/100,255*g[3]/100,1):(g=yi.exec(s))?ca(g[1],g[2],g[3],g[4]):(g=Wi.exec(s))?ca(255*g[1]/100,255*g[2]/100,255*g[3]/100,g[4]):(g=Ca.exec(s))?Ua(g[1],g[2]/100,g[3]/100,1):(g=Fe.exec(s))?Ua(g[1],g[2]/100,g[3]/100,g[4]):Wt.hasOwnProperty(s)?Ii(Wt[s]):"transparent"===s?new U(NaN,NaN,NaN,0):null}function Ii(s){return new U(s>>16&255,s>>8&255,255&s,1)}function ca(s,g,c,r){return r<=0&&(s=g=c=NaN),new U(s,g,c,r)}function ni(s,g,c,r){return 1===arguments.length?function nn(s){return s instanceof Hn||(s=di(s)),s?new U((s=s.rgb()).r,s.g,s.b,s.opacity):new U}(s):new U(s,g,c,r??1)}function U(s,g,c,r){this.r=+s,this.g=+g,this.b=+c,this.opacity=+r}function tt(){return`#${_a(this.r)}${_a(this.g)}${_a(this.b)}`}function Xt(){const s=Nn(this.opacity);return`${1===s?"rgb(":"rgba("}${Ki(this.r)}, ${Ki(this.g)}, ${Ki(this.b)}${1===s?")":`, ${s})`}`}function Nn(s){return isNaN(s)?1:Math.max(0,Math.min(1,s))}function Ki(s){return Math.max(0,Math.min(255,Math.round(s)||0))}function _a(s){return((s=Ki(s))<16?"0":"")+s.toString(16)}function Ua(s,g,c,r){return r<=0?s=g=c=NaN:c<=0||c>=1?s=g=NaN:g<=0&&(s=NaN),new Ga(s,g,c,r)}function $a(s){if(s instanceof Ga)return new Ga(s.h,s.s,s.l,s.opacity);if(s instanceof Hn||(s=di(s)),!s)return new Ga;if(s instanceof Ga)return s;var g=(s=s.rgb()).r/255,c=s.g/255,r=s.b/255,y=Math.min(g,c,r),x=Math.max(g,c,r),R=NaN,ue=x-y,xt=(x+y)/2;return ue?(R=g===x?(c-r)/ue+6*(c0&&xt<1?0:R,new Ga(R,ue,xt,s.opacity)}function Ga(s,g,c,r){this.h=+s,this.s=+g,this.l=+c,this.opacity=+r}function As(s){return(s=(s||0)%360)<0?s+360:s}function hr(s){return Math.max(0,Math.min(1,s||0))}function mr(s,g,c){return 255*(s<60?g+(c-g)*s/60:s<180?c:s<240?g+(c-g)*(240-s)/60:g)}function fr(s,g,c,r,y){var x=s*s,R=x*s;return((1-3*s+3*x-R)*g+(4-6*x+3*R)*c+(1+3*s+3*x-3*R)*r+R*y)/6}ri(Hn,di,{copy(s){return Object.assign(new this.constructor,this,s)},displayable(){return this.rgb().displayable()},hex:Ve,formatHex:Ve,formatHex8:function Et(){return this.rgb().formatHex8()},formatHsl:function Jt(){return $a(this).formatHsl()},formatRgb:ti,toString:ti}),ri(U,ni,Rn(Hn,{brighter(s){return s=null==s?da:Math.pow(da,s),new U(this.r*s,this.g*s,this.b*s,this.opacity)},darker(s){return s=null==s?.7:Math.pow(.7,s),new U(this.r*s,this.g*s,this.b*s,this.opacity)},rgb(){return this},clamp(){return new U(Ki(this.r),Ki(this.g),Ki(this.b),Nn(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:tt,formatHex:tt,formatHex8:function Ze(){return`#${_a(this.r)}${_a(this.g)}${_a(this.b)}${_a(255*(isNaN(this.opacity)?1:this.opacity))}`},formatRgb:Xt,toString:Xt})),ri(Ga,function ns(s,g,c,r){return 1===arguments.length?$a(s):new Ga(s,g,c,r??1)},Rn(Hn,{brighter(s){return s=null==s?da:Math.pow(da,s),new Ga(this.h,this.s,this.l*s,this.opacity)},darker(s){return s=null==s?.7:Math.pow(.7,s),new Ga(this.h,this.s,this.l*s,this.opacity)},rgb(){var s=this.h%360+360*(this.h<0),g=isNaN(s)||isNaN(this.s)?0:this.s,c=this.l,r=c+(c<.5?c:1-c)*g,y=2*c-r;return new U(mr(s>=240?s-240:s+120,y,r),mr(s,y,r),mr(s<120?s+240:s-120,y,r),this.opacity)},clamp(){return new Ga(As(this.h),hr(this.s),hr(this.l),Nn(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const s=Nn(this.opacity);return`${1===s?"hsl(":"hsla("}${As(this.h)}, ${100*hr(this.s)}%, ${100*hr(this.l)}%${1===s?")":`, ${s})`}`}}));const gr=s=>()=>s;function Ps(s,g){var c=g-s;return c?function Zs(s,g){return function(c){return s+c*g}}(s,c):gr(isNaN(s)?g:s)}const kr=function s(g){var c=function Ka(s){return 1==(s=+s)?Ps:function(g,c){return c-g?function jr(s,g,c){return s=Math.pow(s,c),g=Math.pow(g,c)-s,c=1/c,function(r){return Math.pow(s+r*g,c)}}(g,c,s):gr(isNaN(g)?c:g)}}(g);function r(y,x){var R=c((y=ni(y)).r,(x=ni(x)).r),ue=c(y.g,x.g),xt=c(y.b,x.b),Rt=Ps(y.opacity,x.opacity);return function(sn){return y.r=R(sn),y.g=ue(sn),y.b=xt(sn),y.opacity=Rt(sn),y+""}}return r.gamma=s,r}(1);function js(s){return function(g){var R,ue,c=g.length,r=new Array(c),y=new Array(c),x=new Array(c);for(R=0;R=1?(c=1,g-1):Math.floor(c*g),y=s[r],x=s[r+1];return fr((c-r/g)*g,r>0?s[r-1]:2*y-x,y,x,rc&&(x=g.slice(c,x),ue[R]?ue[R]+=x:ue[++R]=x),(r=r[0])===(y=y[0])?ue[R]?ue[R]+=y:ue[++R]=y:(ue[++R]=null,xt.push({i:R,x:rs(r,y)})),c=Hs.lastIndex;return c=0&&s._call.call(void 0,g),s=s._next;--er}()}finally{er=0,function Es(){for(var s,c,g=Za,r=1/0;g;)g._call?(r>g._time&&(r=g._time),s=g,g=g._next):(c=g._next,g._next=null,g=s?s._next=c:Za=c);Or=s,kt(r)}(),Fs=0}}function ua(){var s=Ks.now(),g=s-Rr;g>1e3&&(Hr-=g,Rr=s)}function kt(s){er||(Xs&&(Xs=clearTimeout(Xs)),s-Fs>24?(s<1/0&&(Xs=setTimeout(Oi,s-Ks.now()-Hr)),wa&&(wa=clearInterval(wa))):(wa||(Rr=Ks.now(),wa=setInterval(ua,1e3)),er=1,Sr(Oi)))}function On(s,g,c){var r=new q;return r.restart(y=>{r.stop(),s(y+g)},g=null==g?0:+g,c),r}q.prototype=mt.prototype={constructor:q,restart:function(s,g,c){if("function"!=typeof s)throw new TypeError("callback is not a function");c=(null==c?Ne():+c)+(null==g?0:+g),!this._next&&Or!==this&&(Or?Or._next=this:Za=this,Or=this),this._call=s,this._time=c,kt()},stop:function(){this._call&&(this._call=null,this._time=1/0,kt())}};var $e=ia("start","end","cancel","interrupt"),mn=[];function el(s,g,c,r,y,x){var R=s.__transition;if(R){if(c in R)return}else s.__transition={};!function Eo(s,g,c){var y,r=s.__transition;function R(Rt){var sn,wn,An,_i;if(1!==c.state)return xt();for(sn in r)if((_i=r[sn]).name===c.name){if(3===_i.state)return On(R);4===_i.state?(_i.state=6,_i.timer.stop(),_i.on.call("interrupt",s,s.__data__,_i.index,_i.group),delete r[sn]):+sn0)throw new Error("too late; already scheduled");return c}function Ss(s,g){var c=tr(s,g);if(c.state>3)throw new Error("too late; already running");return c}function tr(s,g){var c=s.__transition;if(!c||!(c=c[g]))throw new Error("transition not found");return c}var nr,pl=180/Math.PI,zl={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function ds(s,g,c,r,y,x){var R,ue,xt;return(R=Math.sqrt(s*s+g*g))&&(s/=R,g/=R),(xt=s*c+g*r)&&(c-=s*xt,r-=g*xt),(ue=Math.sqrt(c*c+r*r))&&(c/=ue,r/=ue,xt/=ue),s*r180?sn+=360:sn-Rt>180&&(Rt+=360),An.push({i:wn.push(y(wn)+"rotate(",null,r)-2,x:rs(Rt,sn)})):sn&&wn.push(y(wn)+"rotate("+sn+r)}(Rt.rotate,sn.rotate,wn,An),function ue(Rt,sn,wn,An){Rt!==sn?An.push({i:wn.push(y(wn)+"skewX(",null,r)-2,x:rs(Rt,sn)}):sn&&wn.push(y(wn)+"skewX("+sn+r)}(Rt.skewX,sn.skewX,wn,An),function xt(Rt,sn,wn,An,_i,pi){if(Rt!==wn||sn!==An){var Ji=_i.push(y(_i)+"scale(",null,",",null,")");pi.push({i:Ji-4,x:rs(Rt,wn)},{i:Ji-2,x:rs(sn,An)})}else(1!==wn||1!==An)&&_i.push(y(_i)+"scale("+wn+","+An+")")}(Rt.scaleX,Rt.scaleY,sn.scaleX,sn.scaleY,wn,An),Rt=sn=null,function(_i){for(var Xn,pi=-1,Ji=An.length;++pi=0&&(g=g.slice(0,c)),!g||"start"===g})}(g)?Ml:Ss;return function(){var R=x(this,s),ue=R.on;ue!==r&&(y=(r=ue).copy()).on(g,c),R.on=y}}(c,s,g))},attr:function Ho(s,g){var c=Qe(s),r="transform"===c?Tr:za;return this.attrTween(s,"function"==typeof g?(c.local?To:fo)(c,r,Vl(this,"attr."+s,g)):null==g?(c.local?Dl:us)(c):(c.local?So:eo)(c,r,g))},attrTween:function Al(s,g){var c="attr."+s;if(arguments.length<2)return(c=this.tween(c))&&c._value;if(null==g)return this.tween(c,null);if("function"!=typeof g)throw new Error;var r=Qe(s);return this.tween(c,(r.local?wl:no)(r,g))},style:function Gi(s,g,c){var r="transform"==(s+="")?gl:za;return null==g?this.styleTween(s,function et(s,g){var c,r,y;return function(){var x=Pt(this,s),R=(this.style.removeProperty(s),Pt(this,s));return x===R?null:x===c&&R===r?y:y=g(c=x,r=R)}}(s,r)).on("end.style."+s,Mt(s)):"function"==typeof g?this.styleTween(s,function Tn(s,g,c){var r,y,x;return function(){var R=Pt(this,s),ue=c(this),xt=ue+"";return null==ue&&(this.style.removeProperty(s),xt=ue=Pt(this,s)),R===xt?null:R===r&&xt===y?x:(y=xt,x=g(r=R,ue))}}(s,r,Vl(this,"style."+s,g))).each(function ai(s,g){var c,r,y,ue,x="style."+g,R="end."+x;return function(){var xt=Ss(this,s),Rt=xt.on,sn=null==xt.value[x]?ue||(ue=Mt(g)):void 0;(Rt!==c||y!==sn)&&(r=(c=Rt).copy()).on(R,y=sn),xt.on=r}}(this._id,s)):this.styleTween(s,function Kt(s,g,c){var r,x,y=c+"";return function(){var R=Pt(this,s);return R===y?null:R===r?x:x=g(r=R,c)}}(s,r,g),c).on("end.style."+s,null)},styleTween:function Ns(s,g,c){var r="style."+(s+="");if(arguments.length<2)return(r=this.tween(r))&&r._value;if(null==g)return this.tween(r,null);if("function"!=typeof g)throw new Error;return this.tween(r,function as(s,g,c){var r,y;function x(){var R=g.apply(this,arguments);return R!==y&&(r=(y=R)&&function La(s,g,c){return function(r){this.style.setProperty(s,g.call(this,r),c)}}(s,R,c)),r}return x._value=g,x}(s,g,c??""))},text:function ro(s){return this.tween("text","function"==typeof s?function ar(s){return function(){var g=s(this);this.textContent=g??""}}(Vl(this,"text",s)):function il(s){return function(){this.textContent=s}}(null==s?"":s+""))},textTween:function mc(s){var g="text";if(arguments.length<1)return(g=this.tween(g))&&g._value;if(null==s)return this.tween(g,null);if("function"!=typeof s)throw new Error;return this.tween(g,function Il(s){var g,c;function r(){var y=s.apply(this,arguments);return y!==c&&(g=(c=y)&&function oo(s){return function(g){this.textContent=s.call(this,g)}}(y)),g}return r._value=s,r}(s))},remove:function nl(){return this.on("end.remove",function Wo(s){return function(){var g=this.parentNode;for(var c in this.__transition)if(+c!==s)return;g&&g.removeChild(this)}}(this._id))},tween:function Tl(s,g){var c=this._id;if(s+="",arguments.length<2){for(var R,r=tr(this.node(),c).tween,y=0,x=r.length;y2&&r.state<5,r.state=6,r.timer.stop(),r.on.call(y?"interrupt":"cancel",s,s.__data__,r.index,r.group),delete c[R]):x=!1;x&&delete s.__transition}}(this,s)})},Fn.prototype.transition=function al(s){var g,c;s instanceof po?(g=s._id,s=s._name):(g=pc(),(c=Lc).time=Ne(),s=null==s?null:s+"");for(var r=this._groups,y=r.length,x=0;xg?1:s>=g?0:NaN}function tc(s,g){return null==s||null==g?NaN:gs?1:g>=s?0:NaN}function Xl(s){let g,c,r;function y(ue,xt,Rt=0,sn=ue.length){if(Rt>>1;c(ue[wn],xt)<0?Rt=wn+1:sn=wn}while(RtXr(s(ue),xt),r=(ue,xt)=>s(ue)-xt):(g=s===Xr||s===tc?s:Kc,c=s,r=s),{left:y,center:function R(ue,xt,Rt=0,sn=ue.length){const wn=y(ue,xt,Rt,sn-1);return wn>Rt&&r(ue[wn-1],xt)>-r(ue[wn],xt)?wn-1:wn},right:function x(ue,xt,Rt=0,sn=ue.length){if(Rt>>1;c(ue[wn],xt)<=0?Rt=wn+1:sn=wn}while(Rt=_1?10:x>=gc?5:x>=Yc?2:1;let ue,xt,Rt;return y<0?(Rt=Math.pow(10,-y)/R,ue=Math.round(s*Rt),xt=Math.round(g*Rt),ue/Rtg&&--xt,Rt=-Rt):(Rt=Math.pow(10,y)*R,ue=Math.round(s/Rt),xt=Math.round(g/Rt),ue*Rtg&&--xt),xt(s(x=new Date(+x)),x),y.ceil=x=>(s(x=new Date(x-1)),g(x,1),s(x),x),y.round=x=>{const R=y(x),ue=y.ceil(x);return x-R(g(x=new Date(+x),null==R?1:Math.floor(R)),x),y.range=(x,R,ue)=>{const xt=[];if(x=y.ceil(x),ue=null==ue?1:Math.floor(ue),!(x0))return xt;let Rt;do{xt.push(Rt=new Date(+x)),g(x,ue),s(x)}while(Rtki(R=>{if(R>=R)for(;s(R),!x(R);)R.setTime(R-1)},(R,ue)=>{if(R>=R)if(ue<0)for(;++ue<=0;)for(;g(R,-1),!x(R););else for(;--ue>=0;)for(;g(R,1),!x(R););}),c&&(y.count=(x,R)=>(Gn.setTime(+x),ui.setTime(+R),s(Gn),s(ui),Math.floor(c(Gn,ui))),y.every=x=>(x=Math.floor(x),isFinite(x)&&x>0?x>1?y.filter(r?R=>r(R)%x===0:R=>y.count(0,R)%x===0):y:null)),y}const Wa=ki(()=>{},(s,g)=>{s.setTime(+s+g)},(s,g)=>g-s);Wa.every=s=>(s=Math.floor(s),isFinite(s)&&s>0?s>1?ki(g=>{g.setTime(Math.floor(g/s)*s)},(g,c)=>{g.setTime(+g+c*s)},(g,c)=>(c-g)/s):Wa:null);const Aa=ki(s=>{s.setTime(s-s.getMilliseconds())},(s,g)=>{s.setTime(+s+g*Ha)},(s,g)=>(g-s)/Ha,s=>s.getUTCSeconds()),es=ki(s=>{s.setTime(s-s.getMilliseconds()-s.getSeconds()*Ha)},(s,g)=>{s.setTime(+s+g*Ti)},(s,g)=>(g-s)/Ti,s=>s.getMinutes()),sl=ki(s=>{s.setUTCSeconds(0,0)},(s,g)=>{s.setTime(+s+g*Ti)},(s,g)=>(g-s)/Ti,s=>s.getUTCMinutes()),go=ki(s=>{s.setTime(s-s.getMilliseconds()-s.getSeconds()*Ha-s.getMinutes()*Ti)},(s,g)=>{s.setTime(+s+g*Oa)},(s,g)=>(g-s)/Oa,s=>s.getHours()),t2=ki(s=>{s.setUTCMinutes(0,0,0)},(s,g)=>{s.setTime(+s+g*Oa)},(s,g)=>(g-s)/Oa,s=>s.getUTCHours()),Qc=ki(s=>s.setHours(0,0,0,0),(s,g)=>s.setDate(s.getDate()+g),(s,g)=>(g-s-(g.getTimezoneOffset()-s.getTimezoneOffset())*Ti)/os,s=>s.getDate()-1),Ro=ki(s=>{s.setUTCHours(0,0,0,0)},(s,g)=>{s.setUTCDate(s.getUTCDate()+g)},(s,g)=>(g-s)/os,s=>s.getUTCDate()-1),$c=ki(s=>{s.setUTCHours(0,0,0,0)},(s,g)=>{s.setUTCDate(s.getUTCDate()+g)},(s,g)=>(g-s)/os,s=>Math.floor(s/os));function rl(s){return ki(g=>{g.setDate(g.getDate()-(g.getDay()+7-s)%7),g.setHours(0,0,0,0)},(g,c)=>{g.setDate(g.getDate()+7*c)},(g,c)=>(c-g-(c.getTimezoneOffset()-g.getTimezoneOffset())*Ti)/K)}const br=rl(0),Yo=rl(1),Fl=(rl(2),rl(3),rl(4));function dt(s){return ki(g=>{g.setUTCDate(g.getUTCDate()-(g.getUTCDay()+7-s)%7),g.setUTCHours(0,0,0,0)},(g,c)=>{g.setUTCDate(g.getUTCDate()+7*c)},(g,c)=>(c-g)/K)}rl(5),rl(6);const st=dt(0),ft=dt(1),Dn=(dt(2),dt(3),dt(4)),vs=(dt(5),dt(6),ki(s=>{s.setDate(1),s.setHours(0,0,0,0)},(s,g)=>{s.setMonth(s.getMonth()+g)},(s,g)=>g.getMonth()-s.getMonth()+12*(g.getFullYear()-s.getFullYear()),s=>s.getMonth())),Bs=ki(s=>{s.setUTCDate(1),s.setUTCHours(0,0,0,0)},(s,g)=>{s.setUTCMonth(s.getUTCMonth()+g)},(s,g)=>g.getUTCMonth()-s.getUTCMonth()+12*(g.getUTCFullYear()-s.getUTCFullYear()),s=>s.getUTCMonth()),Kr=ki(s=>{s.setMonth(0,1),s.setHours(0,0,0,0)},(s,g)=>{s.setFullYear(s.getFullYear()+g)},(s,g)=>g.getFullYear()-s.getFullYear(),s=>s.getFullYear());Kr.every=s=>isFinite(s=Math.floor(s))&&s>0?ki(g=>{g.setFullYear(Math.floor(g.getFullYear()/s)*s),g.setMonth(0,1),g.setHours(0,0,0,0)},(g,c)=>{g.setFullYear(g.getFullYear()+c*s)}):null;const ll=ki(s=>{s.setUTCMonth(0,1),s.setUTCHours(0,0,0,0)},(s,g)=>{s.setUTCFullYear(s.getUTCFullYear()+g)},(s,g)=>g.getUTCFullYear()-s.getUTCFullYear(),s=>s.getUTCFullYear());function vc(s,g,c,r,y,x){const R=[[Aa,1,Ha],[Aa,5,5e3],[Aa,15,15e3],[Aa,30,3e4],[x,1,Ti],[x,5,5*Ti],[x,15,15*Ti],[x,30,30*Ti],[y,1,Oa],[y,3,3*Oa],[y,6,6*Oa],[y,12,12*Oa],[r,1,os],[r,2,2*os],[c,1,K],[g,1,Ie],[g,3,3*Ie],[s,1,Ut]];function xt(Rt,sn,wn){const An=Math.abs(sn-Rt)/wn,_i=Xl(([,,Xn])=>Xn).right(R,An);if(_i===R.length)return s.every(lo(Rt/Ut,sn/Ut,wn));if(0===_i)return Wa.every(Math.max(lo(Rt,sn,wn),1));const[pi,Ji]=R[An/R[_i-1][2]isFinite(s=Math.floor(s))&&s>0?ki(g=>{g.setUTCFullYear(Math.floor(g.getUTCFullYear()/s)*s),g.setUTCMonth(0,1),g.setUTCHours(0,0,0,0)},(g,c)=>{g.setUTCFullYear(g.getUTCFullYear()+c*s)}):null;const[s2,Pf]=vc(ll,Bs,st,$c,t2,sl),[Hh,r2]=vc(Kr,vs,br,Qc,go,es);function o2(s){if(0<=s.y&&s.y<100){var g=new Date(-1,s.m,s.d,s.H,s.M,s.S,s.L);return g.setFullYear(s.y),g}return new Date(s.y,s.m,s.d,s.H,s.M,s.S,s.L)}function cd(s){if(0<=s.y&&s.y<100){var g=new Date(Date.UTC(-1,s.m,s.d,s.H,s.M,s.S,s.L));return g.setUTCFullYear(s.y),g}return new Date(Date.UTC(s.y,s.m,s.d,s.H,s.M,s.S,s.L))}function b1(s,g,c){return{y:s,m:g,d:c,H:0,M:0,S:0,L:0}}var k0={"-":"",_:" ",0:"0"},zr=/^\s*\d+/,O0=/^%/,A4=/[\\^$*+?|[\]().{}]/g;function Xa(s,g,c){var r=s<0?"-":"",y=(r?-s:s)+"",x=y.length;return r+(x[g.toLowerCase(),c]))}function l2(s,g,c){var r=zr.exec(g.slice(c,c+1));return r?(s.w=+r[0],c+r[0].length):-1}function Qo(s,g,c){var r=zr.exec(g.slice(c,c+1));return r?(s.u=+r[0],c+r[0].length):-1}function or(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.U=+r[0],c+r[0].length):-1}function dd(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.V=+r[0],c+r[0].length):-1}function cl(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.W=+r[0],c+r[0].length):-1}function bc(s,g,c){var r=zr.exec(g.slice(c,c+4));return r?(s.y=+r[0],c+r[0].length):-1}function ud(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.y=+r[0]+(+r[0]>68?1900:2e3),c+r[0].length):-1}function P0(s,g,c){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(g.slice(c,c+6));return r?(s.Z=r[1]?0:-(r[2]+(r[3]||"00")),c+r[0].length):-1}function c2(s,g,c){var r=zr.exec(g.slice(c,c+1));return r?(s.q=3*r[0]-3,c+r[0].length):-1}function hd(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.m=r[0]-1,c+r[0].length):-1}function Cc(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.d=+r[0],c+r[0].length):-1}function F0(s,g,c){var r=zr.exec(g.slice(c,c+3));return r?(s.m=0,s.d=+r[0],c+r[0].length):-1}function d2(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.H=+r[0],c+r[0].length):-1}function C1(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.M=+r[0],c+r[0].length):-1}function N0(s,g,c){var r=zr.exec(g.slice(c,c+2));return r?(s.S=+r[0],c+r[0].length):-1}function B0(s,g,c){var r=zr.exec(g.slice(c,c+3));return r?(s.L=+r[0],c+r[0].length):-1}function md(s,g,c){var r=zr.exec(g.slice(c,c+6));return r?(s.L=Math.floor(r[0]/1e3),c+r[0].length):-1}function zs(s,g,c){var r=O0.exec(g.slice(c,c+1));return r?c+r[0].length:-1}function Qs(s,g,c){var r=zr.exec(g.slice(c));return r?(s.Q=+r[0],c+r[0].length):-1}function lr(s,g,c){var r=zr.exec(g.slice(c));return r?(s.s=+r[0],c+r[0].length):-1}function Ds(s,g){return Xa(s.getDate(),g,2)}function Jc(s,g){return Xa(s.getHours(),g,2)}function qc(s,g){return Xa(s.getHours()%12||12,g,2)}function fd(s,g){return Xa(1+Qc.count(Kr(s),s),g,3)}function dl(s,g){return Xa(s.getMilliseconds(),g,3)}function pd(s,g){return dl(s,g)+"000"}function u2(s,g){return Xa(s.getMonth()+1,g,2)}function z0(s,g){return Xa(s.getMinutes(),g,2)}function h2(s,g){return Xa(s.getSeconds(),g,2)}function m2(s){var g=s.getDay();return 0===g?7:g}function L4(s,g){return Xa(br.count(Kr(s)-1,s),g,2)}function V0(s){var g=s.getDay();return g>=4||0===g?Fl(s):Fl.ceil(s)}function I4(s,g){return s=V0(s),Xa(Fl.count(Kr(s),s)+(4===Kr(s).getDay()),g,2)}function U0(s){return s.getDay()}function G0(s,g){return Xa(Yo.count(Kr(s)-1,s),g,2)}function Wh(s,g){return Xa(s.getFullYear()%100,g,2)}function x1(s,g){return Xa((s=V0(s)).getFullYear()%100,g,2)}function j0(s,g){return Xa(s.getFullYear()%1e4,g,4)}function gd(s,g){var c=s.getDay();return Xa((s=c>=4||0===c?Fl(s):Fl.ceil(s)).getFullYear()%1e4,g,4)}function H0(s){var g=s.getTimezoneOffset();return(g>0?"-":(g*=-1,"+"))+Xa(g/60|0,"0",2)+Xa(g%60,"0",2)}function f2(s,g){return Xa(s.getUTCDate(),g,2)}function k4(s,g){return Xa(s.getUTCHours(),g,2)}function W0(s,g){return Xa(s.getUTCHours()%12||12,g,2)}function Xh(s,g){return Xa(1+Ro.count(ll(s),s),g,3)}function O4(s,g){return Xa(s.getUTCMilliseconds(),g,3)}function R4(s,g){return O4(s,g)+"000"}function P4(s,g){return Xa(s.getUTCMonth()+1,g,2)}function X0(s,g){return Xa(s.getUTCMinutes(),g,2)}function F4(s,g){return Xa(s.getUTCSeconds(),g,2)}function K0(s){var g=s.getUTCDay();return 0===g?7:g}function N4(s,g){return Xa(st.count(ll(s)-1,s),g,2)}function _d(s){var g=s.getUTCDay();return g>=4||0===g?Dn(s):Dn.ceil(s)}function e1(s,g){return s=_d(s),Xa(Dn.count(ll(s),s)+(4===ll(s).getUTCDay()),g,2)}function Ql(s){return s.getUTCDay()}function Y0(s,g){return Xa(ft.count(ll(s)-1,s),g,2)}function B4(s,g){return Xa(s.getUTCFullYear()%100,g,2)}function Q0(s,g){return Xa((s=_d(s)).getUTCFullYear()%100,g,2)}function Kh(s,g){return Xa(s.getUTCFullYear()%1e4,g,4)}function Yh(s,g){var c=s.getUTCDay();return Xa((s=c>=4||0===c?Dn(s):Dn.ceil(s)).getUTCFullYear()%1e4,g,4)}function p2(){return"+0000"}function E1(){return"%"}function kc(s){return+s}function Oc(s){return Math.floor(+s/1e3)}function Z0(s){return null===s?NaN:+s}!function ul(s){(function w4(s){var g=s.dateTime,c=s.date,r=s.time,y=s.periods,x=s.days,R=s.shortDays,ue=s.months,xt=s.shortMonths,Rt=yc(y),sn=Zc(y),wn=yc(x),An=Zc(x),_i=yc(R),pi=Zc(R),Ji=yc(ue),Xn=Zc(ue),Vi=yc(xt),pa=Zc(xt),ea={a:function dr(ta){return R[ta.getDay()]},A:function ml(ta){return x[ta.getDay()]},b:function ur(ta){return xt[ta.getMonth()]},B:function ss(ta){return ue[ta.getMonth()]},c:null,d:Ds,e:Ds,f:pd,g:x1,G:gd,H:Jc,I:qc,j:fd,L:dl,m:u2,M:z0,p:function Gr(ta){return y[+(ta.getHours()>=12)]},q:function Ar(ta){return 1+~~(ta.getMonth()/3)},Q:kc,s:Oc,S:h2,u:m2,U:L4,V:I4,w:U0,W:G0,x:null,X:null,y:Wh,Y:j0,Z:H0,"%":E1},ga={a:function b0(ta){return R[ta.getUTCDay()]},A:function Hc(ta){return x[ta.getUTCDay()]},b:function nd(ta){return xt[ta.getUTCMonth()]},B:function id(ta){return ue[ta.getUTCMonth()]},c:null,d:f2,e:f2,f:R4,g:Q0,G:Yh,H:k4,I:W0,j:Xh,L:O4,m:P4,M:X0,p:function No(ta){return y[+(ta.getUTCHours()>=12)]},q:function ad(ta){return 1+~~(ta.getUTCMonth()/3)},Q:kc,s:Oc,S:F4,u:K0,U:N4,V:e1,w:Ql,W:Y0,x:null,X:null,y:B4,Y:Kh,Z:p2,"%":E1},Na={a:function bs(ta,ka,Qa){var Li=_i.exec(ka.slice(Qa));return Li?(ta.w=pi.get(Li[0].toLowerCase()),Qa+Li[0].length):-1},A:function Gs(ta,ka,Qa){var Li=wn.exec(ka.slice(Qa));return Li?(ta.w=An.get(Li[0].toLowerCase()),Qa+Li[0].length):-1},b:function Da(ta,ka,Qa){var Li=Vi.exec(ka.slice(Qa));return Li?(ta.m=pa.get(Li[0].toLowerCase()),Qa+Li[0].length):-1},B:function Rs(ta,ka,Qa){var Li=Ji.exec(ka.slice(Qa));return Li?(ta.m=Xn.get(Li[0].toLowerCase()),Qa+Li[0].length):-1},c:function ts(ta,ka,Qa){return Os(ta,g,ka,Qa)},d:Cc,e:Cc,f:md,g:ud,G:bc,H:d2,I:d2,j:F0,L:B0,m:hd,M:C1,p:function Po(ta,ka,Qa){var Li=Rt.exec(ka.slice(Qa));return Li?(ta.p=sn.get(Li[0].toLowerCase()),Qa+Li[0].length):-1},q:c2,Q:Qs,s:lr,S:N0,u:Qo,U:or,V:dd,w:l2,W:cl,x:function Fo(ta,ka,Qa){return Os(ta,c,ka,Qa)},X:function Cr(ta,ka,Qa){return Os(ta,r,ka,Qa)},y:ud,Y:bc,Z:P0,"%":zs};function qi(ta,ka){return function(Qa){var Zo,ba,Ir,Li=[],Lr=-1,Cs=0,fl=ta.length;for(Qa instanceof Date||(Qa=new Date(+Qa));++Lr53)return null;"w"in Li||(Li.w=1),"Z"in Li?(fl=(Cs=cd(b1(Li.y,0,1))).getUTCDay(),Cs=fl>4||0===fl?ft.ceil(Cs):ft(Cs),Cs=Ro.offset(Cs,7*(Li.V-1)),Li.y=Cs.getUTCFullYear(),Li.m=Cs.getUTCMonth(),Li.d=Cs.getUTCDate()+(Li.w+6)%7):(fl=(Cs=o2(b1(Li.y,0,1))).getDay(),Cs=fl>4||0===fl?Yo.ceil(Cs):Yo(Cs),Cs=Qc.offset(Cs,7*(Li.V-1)),Li.y=Cs.getFullYear(),Li.m=Cs.getMonth(),Li.d=Cs.getDate()+(Li.w+6)%7)}else("W"in Li||"U"in Li)&&("w"in Li||(Li.w="u"in Li?Li.u%7:"W"in Li?1:0),fl="Z"in Li?cd(b1(Li.y,0,1)).getUTCDay():o2(b1(Li.y,0,1)).getDay(),Li.m=0,Li.d="W"in Li?(Li.w+6)%7+7*Li.W-(fl+5)%7:Li.w+7*Li.U-(fl+6)%7);return"Z"in Li?(Li.H+=Li.Z/100|0,Li.M+=Li.Z%100,cd(Li)):o2(Li)}}function Os(ta,ka,Qa,Li){for(var Zo,ba,Lr=0,Cs=ka.length,fl=Qa.length;Lr=fl)return-1;if(37===(Zo=ka.charCodeAt(Lr++))){if(Zo=ka.charAt(Lr++),!(ba=Na[Zo in k0?ka.charAt(Lr++):Zo])||(Li=ba(ta,Qa,Li))<0)return-1}else if(Zo!=Qa.charCodeAt(Li++))return-1}return Li}return ea.x=qi(c,ea),ea.X=qi(r,ea),ea.c=qi(g,ea),ga.x=qi(c,ga),ga.X=qi(r,ga),ga.c=qi(g,ga),{format:function(ta){var ka=qi(ta+="",ea);return ka.toString=function(){return ta},ka},parse:function(ta){var ka=ks(ta+="",!1);return ka.toString=function(){return ta},ka},utcFormat:function(ta){var ka=qi(ta+="",ga);return ka.toString=function(){return ta},ka},utcParse:function(ta){var ka=ks(ta+="",!0);return ka.toString=function(){return ta},ka}}})(s)}({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});const U4=Xl(Xr).right,v2=(Xl(Z0),U4);function G4(s,g){return s=+s,g=+g,function(c){return Math.round(s*(1-c)+g*c)}}function H4(s){return+s}var qa=[0,1];function xc(s){return s}function y2(s,g){return(g-=s=+s)?function(c){return(c-s)/g}:function j4(s){return function(){return s}}(isNaN(g)?NaN:.5)}function M1(s,g,c){var r=s[0],y=s[1],x=g[0],R=g[1];return yg&&(c=s,s=g,g=c),function(r){return Math.max(s,Math.min(g,r))}}(s[0],s[An-1])),ue=An>2?W4:M1,xt=Rt=null,wn}function wn(An){return null==An||isNaN(An=+An)?x:(xt||(xt=ue(s.map(r),g,c)))(r(R(An)))}return wn.invert=function(An){return R(y((Rt||(Rt=ue(g,s.map(r),rs)))(An)))},wn.domain=function(An){return arguments.length?(s=Array.from(An,H4),sn()):s.slice()},wn.range=function(An){return arguments.length?(g=Array.from(An),sn()):g.slice()},wn.rangeRound=function(An){return g=Array.from(An),c=G4,sn()},wn.clamp=function(An){return arguments.length?(R=!!An||xc,sn()):R!==xc},wn.interpolate=function(An){return arguments.length?(c=An,sn()):c},wn.unknown=function(An){return arguments.length?(x=An,wn):x},function(An,_i){return r=An,y=_i,sn()}}()(xc,xc)}function t1(s,g){switch(arguments.length){case 0:break;case 1:this.range(s);break;default:this.range(g).domain(s)}return this}var bl,K4=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function Rc(s){if(!(g=K4.exec(s)))throw new Error("invalid format: "+s);var g;return new Ec({fill:g[1],align:g[2],sign:g[3],symbol:g[4],zero:g[5],width:g[6],comma:g[7],precision:g[8]&&g[8].slice(1),trim:g[9],type:g[10]})}function Ec(s){this.fill=void 0===s.fill?" ":s.fill+"",this.align=void 0===s.align?">":s.align+"",this.sign=void 0===s.sign?"-":s.sign+"",this.symbol=void 0===s.symbol?"":s.symbol+"",this.zero=!!s.zero,this.width=void 0===s.width?void 0:+s.width,this.comma=!!s.comma,this.precision=void 0===s.precision?void 0:+s.precision,this.trim=!!s.trim,this.type=void 0===s.type?"":s.type+""}function Cd(s,g){if(!isFinite(s)||0===s)return null;var c=(s=g?s.toExponential(g-1):s.toExponential()).indexOf("e"),r=s.slice(0,c);return[r.length>1?r[0]+r.slice(2):r,+s.slice(c+1)]}function Mc(s){return(s=Cd(Math.abs(s)))?s[1]:NaN}function rc(s,g){var c=Cd(s,g);if(!c)return s+"";var r=c[0],y=c[1];return y<0?"0."+new Array(-y).join("0")+r:r.length>y+1?r.slice(0,y+1)+"."+r.slice(y+1):r+new Array(y-r.length+2).join("0")}Rc.prototype=Ec.prototype,Ec.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};const I1={"%":(s,g)=>(100*s).toFixed(g),b:s=>Math.round(s).toString(2),c:s=>s+"",d:function eu(s){return Math.abs(s=Math.round(s))>=1e21?s.toLocaleString("en").replace(/,/g,""):s.toString(10)},e:(s,g)=>s.toExponential(g),f:(s,g)=>s.toFixed(g),g:(s,g)=>s.toPrecision(g),o:s=>Math.round(s).toString(8),p:(s,g)=>rc(100*s,g),r:rc,s:function L1(s,g){var c=Cd(s,g);if(!c)return bl=void 0,s.toPrecision(g);var r=c[0],y=c[1],x=y-(bl=3*Math.max(-8,Math.min(8,Math.floor(y/3))))+1,R=r.length;return x===R?r:x>R?r+new Array(x-R+1).join("0"):x>0?r.slice(0,x)+"."+r.slice(x):"0."+new Array(1-x).join("0")+Cd(s,Math.max(0,g+x-1))[0]},X:s=>Math.round(s).toString(16).toUpperCase(),x:s=>Math.round(s).toString(16)};function Yr(s){return s}var k1,C2,Y4,n1=Array.prototype.map,su=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"];function $4(s){var g=s.domain;return s.ticks=function(c){var r=g();return function v1(s,g,c){if(!((c=+c)>0))return[];if((s=+s)===(g=+g))return[s];const r=g=y))return[];const ue=x-y+1,xt=new Array(ue);if(r)if(R<0)for(let Rt=0;Rt0;){if((Rt=ic(R,ue,c))===xt)return r[y]=R,r[x]=ue,g(r);if(Rt>0)R=Math.floor(R/Rt)*Rt,ue=Math.ceil(ue/Rt)*Rt;else{if(!(Rt<0))break;R=Math.ceil(R*Rt)/Rt,ue=Math.floor(ue*Rt)/Rt}xt=Rt}return s},s}function lc(){var s=yd();return s.copy=function(){return function S1(s,g){return g.domain(s.domain()).range(s.range()).interpolate(s.interpolate()).clamp(s.clamp()).unknown(s.unknown())}(s,lc())},t1.apply(s,arguments),$4(s)}function ru(s,g,c){s=+s,g=+g,c=(y=arguments.length)<2?(g=s,s=0,1):y<3?1:+c;for(var r=-1,y=0|Math.max(0,Math.ceil((g-s)/c)),x=new Array(y);++r0&&ue>0&&(xt+ue+1>r&&(ue=Math.max(1,r-xt)),x.push(c.substring(y-=ue,y+ue)),!((xt+=ue+1)>r));)ue=s[R=(R+1)%s.length];return x.reverse().join(g)}}(n1.call(s.grouping,Number),s.thousands+""),c=void 0===s.currency?"":s.currency[0]+"",r=void 0===s.currency?"":s.currency[1]+"",y=void 0===s.decimal?".":s.decimal+"",x=void 0===s.numerals?Yr:function iu(s){return function(g){return g.replace(/[0-9]/g,function(c){return s[+c]})}}(n1.call(s.numerals,String)),R=void 0===s.percent?"%":s.percent+"",ue=void 0===s.minus?"\u2212":s.minus+"",xt=void 0===s.nan?"NaN":s.nan+"";function Rt(wn,An){var _i=(wn=Rc(wn)).fill,pi=wn.align,Ji=wn.sign,Xn=wn.symbol,Vi=wn.zero,pa=wn.width,ea=wn.comma,ga=wn.precision,Na=wn.trim,qi=wn.type;"n"===qi?(ea=!0,qi="g"):I1[qi]||(void 0===ga&&(ga=12),Na=!0,qi="g"),(Vi||"0"===_i&&"="===pi)&&(Vi=!0,_i="0",pi="=");var ks=(An&&void 0!==An.prefix?An.prefix:"")+("$"===Xn?c:"#"===Xn&&/[boxX]/.test(qi)?"0"+qi.toLowerCase():""),Os=("$"===Xn?r:/[%p]/.test(qi)?R:"")+(An&&void 0!==An.suffix?An.suffix:""),Po=I1[qi],bs=/[defgprs%]/.test(qi);function Gs(Da){var Fo,Cr,dr,Rs=ks,ts=Os;if("c"===qi)ts=Po(Da)+ts,Da="";else{var ml=(Da=+Da)<0||1/Da<0;if(Da=isNaN(Da)?xt:Po(Math.abs(Da),ga),Na&&(Da=function au(s){e:for(var y,g=s.length,c=1,r=-1;c0&&(r=0)}return r>0?s.slice(0,r)+s.slice(y+1):s}(Da)),ml&&0==+Da&&"+"!==Ji&&(ml=!1),Rs=(ml?"("===Ji?Ji:ue:"-"===Ji||"("===Ji?"":Ji)+Rs,ts=("s"!==qi||isNaN(Da)||void 0===bl?"":su[8+bl/3])+ts+(ml&&"("===Ji?")":""),bs)for(Fo=-1,Cr=Da.length;++Fo(dr=Da.charCodeAt(Fo))||dr>57){ts=(46===dr?y+Da.slice(Fo+1):Da.slice(Fo))+ts,Da=Da.slice(0,Fo);break}}ea&&!Vi&&(Da=g(Da,1/0));var ur=Rs.length+Da.length+ts.length,ss=ur>1)+Rs+Da+ts+ss.slice(ur);break;default:Da=ss+Rs+Da+ts}return x(Da)}return ga=void 0===ga?6:/[gprs]/.test(qi)?Math.max(1,Math.min(21,ga)):Math.max(0,Math.min(20,ga)),Gs.toString=function(){return wn+""},Gs}return{format:Rt,formatPrefix:function sn(wn,An){var _i=3*Math.max(-8,Math.min(8,Math.floor(Mc(An)/3))),pi=Math.pow(10,-_i),Ji=Rt(((wn=Rc(wn)).type="f",wn),{suffix:su[8+_i/3]});return function(Xn){return Ji(pi*Xn)}}}}(s),C2=k1.format,Y4=k1.formatPrefix}({thousands:",",grouping:[3],currency:["$",""]});class ou extends Map{constructor(g,c=cu){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:c}}),null!=g)for(const[r,y]of g)this.set(r,y)}get(g){return super.get(O1(this,g))}has(g){return super.has(O1(this,g))}set(g,c){return super.set(function Ed({_intern:s,_key:g},c){const r=g(c);return s.has(r)?s.get(r):(s.set(r,c),c)}(this,g),c)}delete(g){return super.delete(function Sc({_intern:s,_key:g},c){const r=g(c);return s.has(r)&&(c=s.get(r),s.delete(r)),c}(this,g))}}function O1({_intern:s,_key:g},c){const r=g(c);return s.has(r)?s.get(r):c}function cu(s){return null!==s&&"object"==typeof s?s.valueOf():s}Set;const E2=Symbol("implicit");function Md(){var s=new ou,g=[],c=[],r=E2;function y(x){let R=s.get(x);if(void 0===R){if(r!==E2)return r;s.set(x,R=g.push(x)-1)}return c[R%c.length]}return y.domain=function(x){if(!arguments.length)return g.slice();g=[],s=new ou;for(const R of x)s.has(R)||s.set(R,g.push(R)-1);return y},y.range=function(x){return arguments.length?(c=Array.from(x),y):c.slice()},y.unknown=function(x){return arguments.length?(r=x,y):r},y.copy=function(){return Md(g,c).unknown(r)},t1.apply(y,arguments),y}function Pc(){var x,R,s=Md().unknown(void 0),g=s.domain,c=s.range,r=0,y=1,ue=!1,xt=0,Rt=0,sn=.5;function wn(){var An=g().length,_i=y=1)return+c(s[r-1],r-1,s);var r,y=(r-1)*g,x=Math.floor(y),R=+c(s[x],x,s);return R+(+c(s[x+1],x+1,s)-R)*(y-x)}}function P1(){var r,s=[],g=[],c=[];function y(){var R=0,ue=Math.max(1,g.length);for(c=new Array(ue-1);++R0?c[ue-1]:s[0],ue({model:s});function tm(s,g){}function Mu(s,g){if(1&s&&(i.j41(0,"span"),i.DNE(1,tm,0,0,"ng-template",5),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngTemplateOutlet",c.template)("ngTemplateOutletContext",i.eq3(2,Eu,c.context))}}function P2(s,g){if(1&s&&i.nrm(0,"span",6),2&s){const c=i.XpG();i.Y8G("innerHTML",c.title,i.npT)}}function F2(s,g){if(1&s&&(i.j41(0,"header",4)(1,"span",5),i.EFF(2),i.k0s()()),2&s){const c=i.XpG();i.R7$(2),i.JRh(c.title)}}function N2(s,g){if(1&s){const c=i.RV6();i.j41(0,"li",6)(1,"ngx-charts-legend-entry",7),i.bIt("select",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.labelClick.emit(y))})("activate",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.activate(y))})("deactivate",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.deactivate(y))}),i.k0s()()}if(2&s){const c=g.$implicit,r=i.XpG();i.R7$(),i.Y8G("label",c.label)("formattedLabel",c.formattedLabel)("color",c.color)("isActive",r.isActive(c))}}const B2=["*"];function l3(s,g){if(1&s&&i.nrm(0,"ngx-charts-scale-legend",4),2&s){const c=i.XpG();i.Y8G("horizontal",c.legendOptions&&c.legendOptions.position===c.LegendPosition.Below)("valueRange",c.legendOptions.domain)("colors",c.legendOptions.colors)("height",c.view[1])("width",c.legendWidth)}}function c3(s,g){if(1&s){const c=i.RV6();i.j41(0,"ngx-charts-legend",5),i.bIt("labelClick",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.legendLabelClick.emit(y))})("labelActivate",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.legendLabelActivate.emit(y))})("labelDeactivate",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.legendLabelDeactivate.emit(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("horizontal",c.legendOptions&&c.legendOptions.position===c.LegendPosition.Below)("data",c.legendOptions.domain)("title",c.legendOptions.title)("colors",c.legendOptions.colors)("height",c.view[1])("width",c.legendWidth)("activeEntries",c.activeEntries)}}const d3=["ngx-charts-axis-label",""],Su=["ticksel"],z2=["ngx-charts-x-axis-ticks",""];function u3(s,g){1&s&&(d.qSk(),i.eu8(0))}function wd(s,g){if(1&s&&(d.qSk(),i.j41(0,"tspan",12),i.EFF(1),i.k0s()),2&s){const c=g.$implicit;i.BMQ("y",12*g.index),i.R7$(),i.SpI(" ",c," ")}}function h3(s,g){if(1&s&&(d.qSk(),i.qex(0),i.DNE(1,wd,2,2,"tspan",11),i.bVm()),2&s){const c=g.ngIf;i.R7$(),i.Y8G("ngForOf",c)}}function Ad(s,g){if(1&s&&i.DNE(0,h3,2,1,"ng-container",8),2&s){const c=i.XpG(2).$implicit,r=i.XpG();i.Y8G("ngIf",r.tickChunks(c))}}function Ld(s,g){if(1&s&&i.EFF(0),2&s){const c=i.XpG().ngIf,r=i.XpG(2);i.SpI(" ",r.tickTrim(c)," ")}}function nm(s,g){if(1&s&&(d.qSk(),i.qex(0),i.j41(1,"title"),i.EFF(2),i.k0s(),i.j41(3,"text",9),i.DNE(4,u3,1,0,"ng-container",10),i.k0s(),i.DNE(5,Ad,1,1,"ng-template",null,1,i.C5r)(7,Ld,1,1,"ng-template",null,2,i.C5r),i.bVm()),2&s){const c=g.ngIf,r=i.sdS(6),y=i.sdS(8),x=i.XpG(2);i.R7$(2),i.JRh(c),i.R7$(),i.BMQ("text-anchor",x.textAnchor)("transform",x.textTransform),i.R7$(),i.Y8G("ngIf",x.isWrapTicksSupported)("ngIfThen",r)("ngIfElse",y)}}function Tu(s,g){if(1&s&&(d.qSk(),i.j41(0,"g",7),i.DNE(1,nm,9,6,"ng-container",8),i.k0s()),2&s){const c=g.$implicit,r=i.XpG();i.BMQ("transform",r.tickTransform(c)),i.R7$(),i.Y8G("ngIf",r.tickFormat(c))}}function B1(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.nrm(1,"line",13),i.k0s()),2&s){const c=i.XpG(2);i.BMQ("transform",c.gridLineTransform()),i.R7$(),i.BMQ("y1",-c.gridLineHeight)}}function Id(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,B1,2,2,"g",8),i.k0s()),2&s){const c=g.$implicit,r=i.XpG();i.BMQ("transform",r.tickTransform(c)),i.R7$(),i.Y8G("ngIf",r.showGridLines)}}function m3(s,g){if(1&s&&(d.qSk(),i.nrm(0,"path",14)),2&s){const c=i.XpG();i.BMQ("d",c.referenceAreaPath)("transform",c.gridLineTransform())}}function V2(s,g){if(1&s&&(d.qSk(),i.j41(0,"g")(1,"title"),i.EFF(2),i.k0s(),i.j41(3,"text",17),i.EFF(4),i.k0s()()),2&s){const c=i.XpG(2).$implicit,r=i.XpG();i.R7$(2),i.JRh(r.tickTrim(r.tickFormat(c.value))),i.R7$(2),i.SpI(" ",c.name," ")}}function f3(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.nrm(1,"line",16),i.DNE(2,V2,5,2,"g",8),i.k0s()),2&s){const c=i.XpG().$implicit,r=i.XpG();i.BMQ("transform",r.transform(c.value)),i.R7$(),i.BMQ("y2",25+r.gridLineHeight)("transform",r.gridLineTransform()),i.R7$(),i.Y8G("ngIf",r.showRefLabels)}}function kd(s,g){if(1&s&&(d.qSk(),i.j41(0,"g",15),i.DNE(1,f3,3,4,"g",8),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngIf",c.showRefLines)}}const p3=["ngx-charts-x-axis",""];function cc(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",2),i.bIt("dimensionsChanged",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.emitTicksHeight(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("trimTicks",c.trimTicks)("rotateTicks",c.rotateTicks)("maxTickLength",c.maxTickLength)("tickFormatting",c.tickFormatting)("tickArguments",c.tickArguments)("tickStroke",c.tickStroke)("scale",c.xScale)("orient",c.xOrient)("showGridLines",c.showGridLines)("gridLineHeight",c.dims.height)("referenceLines",c.referenceLines)("showRefLines",c.showRefLines)("showRefLabels",c.showRefLabels)("width",c.dims.width)("tickValues",c.ticks)("wrapTicks",c.wrapTicks)}}function Nc(s,g){if(1&s&&(d.qSk(),i.nrm(0,"g",3)),2&s){const c=i.XpG();i.Y8G("label",c.labelText)("offset",c.labelOffset)("orient",c.orientation.Bottom)("height",c.dims.height)("width",c.dims.width)}}const im=["ngx-charts-y-axis-ticks",""];function am(s,g){1&s&&(d.qSk(),i.eu8(0))}function z1(s,g){if(1&s&&(d.qSk(),i.j41(0,"tspan",13),i.EFF(1),i.k0s()),2&s){const c=g.$implicit,r=g.index,y=i.XpG(6);i.BMQ("y",r*(8+y.tickSpacing)),i.R7$(),i.SpI(" ",c," ")}}function g3(s,g){if(1&s&&(d.qSk(),i.qex(0),i.DNE(1,z1,2,2,"tspan",12),i.bVm()),2&s){const c=i.XpG().ngIf;i.R7$(),i.Y8G("ngForOf",c)}}function Du(s,g){if(1&s&&(d.qSk(),i.qex(0),i.DNE(1,g3,2,1,"ng-container",11),i.bVm()),2&s){const c=g.ngIf;i.XpG(2);const r=i.sdS(8);i.R7$(),i.Y8G("ngIf",c.length>1)("ngIfElse",r)}}function wu(s,g){if(1&s&&i.DNE(0,Du,2,2,"ng-container",8),2&s){const c=i.XpG(2).$implicit,r=i.XpG();i.Y8G("ngIf",r.tickChunks(c))}}function Au(s,g){if(1&s&&i.EFF(0),2&s){const c=i.XpG().ngIf,r=i.XpG(2);i.SpI(" ",r.tickTrim(c)," ")}}function _3(s,g){if(1&s&&(d.qSk(),i.qex(0),i.j41(1,"title"),i.EFF(2),i.k0s(),i.j41(3,"text",9),i.DNE(4,am,1,0,"ng-container",10),i.k0s(),i.DNE(5,wu,1,1,"ng-template",null,1,i.C5r)(7,Au,1,1,"ng-template",null,2,i.C5r),i.bVm()),2&s){const c=g.ngIf,r=i.sdS(6),y=i.sdS(8),x=i.XpG(2);i.R7$(2),i.JRh(c),i.R7$(),i.xc7("font-size","12px"),i.BMQ("dy",x.dy)("x",x.x1)("y",x.y1)("text-anchor",x.textAnchor),i.R7$(),i.Y8G("ngIf",x.wrapTicks)("ngIfThen",r)("ngIfElse",y)}}function Lu(s,g){if(1&s&&(d.qSk(),i.j41(0,"g",7),i.DNE(1,_3,9,10,"ng-container",8),i.k0s()),2&s){const c=g.$implicit,r=i.XpG();i.BMQ("transform",r.transform(c)),i.R7$(),i.Y8G("ngIf",r.tickFormat(c))}}function v3(s,g){if(1&s&&(d.qSk(),i.nrm(0,"path",14)),2&s){const c=i.XpG();i.BMQ("d",c.referenceAreaPath)("transform",c.gridLineTransform())}}function Iu(s,g){if(1&s&&(d.qSk(),i.nrm(0,"line",16)),2&s){const c=i.XpG(3);i.BMQ("x2",c.gridLineWidth)}}function y3(s,g){if(1&s&&(d.qSk(),i.nrm(0,"line",16)),2&s){const c=i.XpG(3);i.BMQ("x2",-c.gridLineWidth)}}function U2(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,Iu,1,1,"line",15)(2,y3,1,1,"line",15),i.k0s()),2&s){const c=i.XpG(2);i.BMQ("transform",c.gridLineTransform()),i.R7$(),i.Y8G("ngIf",c.orient===c.Orientation.Left),i.R7$(),i.Y8G("ngIf",c.orient===c.Orientation.Right)}}function sm(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,U2,3,3,"g",8),i.k0s()),2&s){const c=g.$implicit,r=i.XpG();i.BMQ("transform",r.transform(c)),i.R7$(),i.Y8G("ngIf",r.showGridLines)}}function ku(s,g){if(1&s&&(d.qSk(),i.j41(0,"g")(1,"title"),i.EFF(2),i.k0s(),i.j41(3,"text",19),i.EFF(4),i.k0s()()),2&s){const c=i.XpG(2).$implicit,r=i.XpG();i.R7$(2),i.JRh(r.tickTrim(r.tickFormat(c.value))),i.R7$(),i.BMQ("dy",r.dy)("y",-6)("x",r.gridLineWidth)("text-anchor",r.textAnchor),i.R7$(),i.SpI(" ",c.name," ")}}function rm(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.nrm(1,"line",18),i.DNE(2,ku,5,6,"g",8),i.k0s()),2&s){const c=i.XpG().$implicit,r=i.XpG();i.BMQ("transform",r.transform(c.value)),i.R7$(),i.BMQ("x2",r.gridLineWidth),i.R7$(),i.Y8G("ngIf",r.showRefLabels)}}function G2(s,g){if(1&s&&(d.qSk(),i.j41(0,"g",17),i.DNE(1,rm,3,3,"g",8),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngIf",c.showRefLines)}}const j2=["ngx-charts-y-axis",""];function Ff(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",2),i.bIt("dimensionsChanged",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.emitTicksWidth(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("trimTicks",c.trimTicks)("maxTickLength",c.maxTickLength)("tickFormatting",c.tickFormatting)("tickArguments",c.tickArguments)("tickValues",c.ticks)("tickStroke",c.tickStroke)("scale",c.yScale)("orient",c.yOrient)("showGridLines",c.showGridLines)("gridLineWidth",c.dims.width)("referenceLines",c.referenceLines)("showRefLines",c.showRefLines)("showRefLabels",c.showRefLabels)("height",c.dims.height)("wrapTicks",c.wrapTicks)}}function Vr(s,g){if(1&s&&(d.qSk(),i.nrm(0,"g",3)),2&s){const c=i.XpG();i.Y8G("label",c.labelText)("offset",c.labelOffset)("orient",c.yOrient)("height",c.dims.height)("width",c.dims.width)}}const b3=["ngx-charts-svg-linear-gradient",""];function s1(s,g){if(1&s&&(d.qSk(),i.nrm(0,"stop")),2&s){const c=g.$implicit;i.xc7("stop-color",c.color)("stop-opacity",c.opacity),i.BMQ("offset",c.offset+"%")}}const Fu=["ngx-charts-grid-panel",""],Nu=["ngx-charts-grid-panel-series",""];function Bc(s,g){if(1&s&&(d.qSk(),i.nrm(0,"g",1)),2&s){const c=g.$implicit;i.AVh("grid-panel",!0)("odd","odd"===c.class)("even","even"===c.class),i.Y8G("height",c.height)("width",c.width)("x",c.x)("y",c.y)}}const w3=["tooltipTemplate"],l1=(s,g)=>[s,g],Cl=".ngx-charts-outer{animation:chartFadeIn linear .6s}@keyframes chartFadeIn{0%{opacity:0}20%{opacity:0}to{opacity:1}}.ngx-charts{float:left;overflow:visible}.ngx-charts .circle,.ngx-charts .cell,.ngx-charts .bar,.ngx-charts .node,.ngx-charts .link,.ngx-charts .arc{cursor:pointer}.ngx-charts .bar.active,.ngx-charts .bar:hover,.ngx-charts .cell.active,.ngx-charts .cell:hover,.ngx-charts .arc.active,.ngx-charts .arc:hover,.ngx-charts .node.active,.ngx-charts .node:hover,.ngx-charts .link.active,.ngx-charts .link:hover,.ngx-charts .card.active,.ngx-charts .card:hover{opacity:.8;transition:opacity .1s ease-in-out}.ngx-charts .bar:focus,.ngx-charts .cell:focus,.ngx-charts .arc:focus,.ngx-charts .node:focus,.ngx-charts .link:focus,.ngx-charts .card:focus{outline:none}.ngx-charts .bar.hidden,.ngx-charts .cell.hidden,.ngx-charts .arc.hidden,.ngx-charts .node.hidden,.ngx-charts .link.hidden,.ngx-charts .card.hidden{display:none}.ngx-charts g:focus{outline:none}.ngx-charts .line-series.inactive,.ngx-charts .line-series-range.inactive,.ngx-charts .polar-series-path.inactive,.ngx-charts .polar-series-area.inactive,.ngx-charts .area-series.inactive{transition:opacity .1s ease-in-out;opacity:.2}.ngx-charts .line-highlight{display:none}.ngx-charts .line-highlight.active{display:block}.ngx-charts .area{opacity:.6}.ngx-charts .circle:hover{cursor:pointer}.ngx-charts .label{font-size:12px;font-weight:400}.ngx-charts .tooltip-anchor{fill:#000}.ngx-charts .gridline-path{stroke:#ddd;stroke-width:1;fill:none}.ngx-charts .refline-path{stroke:#a8b2c7;stroke-width:1;stroke-dasharray:5;stroke-dashoffset:5}.ngx-charts .refline-label{font-size:9px}.ngx-charts .reference-area{fill-opacity:.05;fill:#000}.ngx-charts .gridline-path-dotted{stroke:#ddd;stroke-width:1;fill:none;stroke-dasharray:1,20;stroke-dashoffset:3}.ngx-charts .grid-panel rect{fill:none}.ngx-charts .grid-panel.odd rect{fill:#0000000d}\n",O3=["ngx-charts-bar",""];function R3(s,g){if(1&s&&(d.qSk(),i.j41(0,"defs"),i.nrm(1,"g",2),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("orientation",c.orientation)("name",c.gradientId)("stops",c.gradientStops)}}const P3=["ngx-charts-bar-label",""],e0=["ngx-charts-series-vertical",""];function t0(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",2),i.bIt("select",function(y){d.eBV(c);const x=i.XpG(2);return d.Njj(x.onClick(y))})("activate",function(y){d.eBV(c);const x=i.XpG(2);return d.Njj(x.activate.emit(y))})("deactivate",function(y){d.eBV(c);const x=i.XpG(2);return d.Njj(x.deactivate.emit(y))}),i.k0s()}if(2&s){const c=g.$implicit,r=i.XpG(2);i.Y8G("@animationState","active")("@.disabled",!r.animations)("width",c.width)("height",c.height)("x",c.x)("y",c.y)("fill",c.color)("stops",c.gradientStops)("data",c.data)("orientation",r.barOrientation.Vertical)("roundEdges",c.roundEdges)("gradient",r.gradient)("ariaLabel",c.ariaLabel)("isActive",r.isActive(c.data))("tooltipDisabled",r.tooltipDisabled)("tooltipPlacement",r.tooltipPlacement)("tooltipType",r.tooltipType)("tooltipTitle",r.tooltipTemplate?void 0:c.tooltipText)("tooltipTemplate",r.tooltipTemplate)("tooltipContext",c.data)("noBarWhenZero",r.noBarWhenZero)("animations",r.animations)}}function ju(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,t0,1,22,"g",1),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngForOf",c.bars)("ngForTrackBy",c.trackBy)}}function ym(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",2),i.bIt("select",function(y){d.eBV(c);const x=i.XpG(2);return d.Njj(x.onClick(y))})("activate",function(y){d.eBV(c);const x=i.XpG(2);return d.Njj(x.activate.emit(y))})("deactivate",function(y){d.eBV(c);const x=i.XpG(2);return d.Njj(x.deactivate.emit(y))}),i.k0s()}if(2&s){const c=g.$implicit,r=i.XpG(2);i.Y8G("width",c.width)("height",c.height)("x",c.x)("y",c.y)("fill",c.color)("stops",c.gradientStops)("data",c.data)("orientation",r.barOrientation.Vertical)("roundEdges",c.roundEdges)("gradient",r.gradient)("ariaLabel",c.ariaLabel)("isActive",r.isActive(c.data))("tooltipDisabled",r.tooltipDisabled)("tooltipPlacement",r.tooltipPlacement)("tooltipType",r.tooltipType)("tooltipTitle",r.tooltipTemplate?void 0:c.tooltipText)("tooltipTemplate",r.tooltipTemplate)("tooltipContext",c.data)("noBarWhenZero",r.noBarWhenZero)("animations",r.animations)}}function bm(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,ym,1,20,"g",1),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngForOf",c.bars)("ngForTrackBy",c.trackBy)}}function Hu(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",4),i.bIt("dimensionsChanged",function(y){const x=d.eBV(c).index,R=i.XpG(2);return d.Njj(R.dataLabelHeightChanged.emit({size:y,index:x}))}),i.k0s()}if(2&s){const c=g.$implicit,r=i.XpG(2);i.Y8G("barX",c.x)("barY",c.y)("barWidth",c.width)("barHeight",c.height)("value",c.total)("valueFormatting",r.dataLabelFormatting)("orientation",r.barOrientation.Vertical)}}function Wu(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,Hu,1,7,"g",3),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngForOf",c.barsForDataLabels)("ngForTrackBy",c.trackDataLabelBy)}}function Xu(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",5),i.bIt("dimensionsChanged",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.updateXAxisHeight(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("xScale",c.xScale)("dims",c.dims)("showGridLines",c.showGridLines)("showLabel",c.showXAxisLabel)("labelText",c.xAxisLabel)("trimTicks",c.trimXAxisTicks)("rotateTicks",c.rotateXAxisTicks)("maxTickLength",c.maxXAxisTickLength)("tickFormatting",c.xAxisTickFormatting)("ticks",c.xAxisTicks)("xAxisOffset",c.dataLabelMaxHeight.negative)("wrapTicks",c.wrapTicks)}}function Cm(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",6),i.bIt("dimensionsChanged",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.updateYAxisWidth(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("yScale",c.yScale)("dims",c.dims)("showGridLines",c.showGridLines)("showLabel",c.showYAxisLabel)("labelText",c.yAxisLabel)("trimTicks",c.trimYAxisTicks)("maxTickLength",c.maxYAxisTickLength)("tickFormatting",c.yAxisTickFormatting)("ticks",c.yAxisTicks)("referenceLines",c.referenceLines)("showRefLines",c.showRefLines)("showRefLabels",c.showRefLabels)("wrapTicks",c.wrapTicks)}}function Ku(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",6),i.bIt("dimensionsChanged",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.updateXAxisHeight(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("xScale",c.groupScale)("dims",c.dims)("showLabel",c.showXAxisLabel)("labelText",c.xAxisLabel)("trimTicks",c.trimXAxisTicks)("rotateTicks",c.rotateXAxisTicks)("maxTickLength",c.maxXAxisTickLength)("tickFormatting",c.xAxisTickFormatting)("ticks",c.xAxisTicks)("xAxisOffset",c.dataLabelMaxHeight.negative)("wrapTicks",c.wrapTicks)}}function j3(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",7),i.bIt("dimensionsChanged",function(y){d.eBV(c);const x=i.XpG();return d.Njj(x.updateYAxisWidth(y))}),i.k0s()}if(2&s){const c=i.XpG();i.Y8G("yScale",c.valueScale)("dims",c.dims)("showGridLines",c.showGridLines)("showLabel",c.showYAxisLabel)("labelText",c.yAxisLabel)("trimTicks",c.trimYAxisTicks)("maxTickLength",c.maxYAxisTickLength)("tickFormatting",c.yAxisTickFormatting)("ticks",c.yAxisTicks)("wrapTicks",c.wrapTicks)}}function xm(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",9),i.bIt("select",function(y){const x=d.eBV(c).$implicit,R=i.XpG(2);return d.Njj(R.onClick(y,x))})("activate",function(y){const x=d.eBV(c).$implicit,R=i.XpG(2);return d.Njj(R.onActivate(y,x))})("deactivate",function(y){const x=d.eBV(c).$implicit,R=i.XpG(2);return d.Njj(R.onDeactivate(y,x))})("dataLabelHeightChanged",function(y){const x=d.eBV(c).index,R=i.XpG(2);return d.Njj(R.onDataLabelMaxHeightChanged(y,x))}),i.k0s()}if(2&s){const c=g.$implicit,r=i.XpG(2);i.Y8G("@animationState","active")("activeEntries",r.activeEntries)("xScale",r.innerScale)("yScale",r.valueScale)("colors",r.colors)("series",c.series)("dims",r.dims)("gradient",r.gradient)("tooltipDisabled",r.tooltipDisabled)("tooltipTemplate",r.tooltipTemplate)("showDataLabel",r.showDataLabel)("dataLabelFormatting",r.dataLabelFormatting)("seriesName",c.name)("roundEdges",r.roundEdges)("animations",r.animations)("noBarWhenZero",r.noBarWhenZero),i.BMQ("transform",r.groupTransform(c))}}function H3(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,xm,1,17,"g",8),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngForOf",c.results)("ngForTrackBy",c.trackBy)}}function Yu(s,g){if(1&s){const c=i.RV6();d.qSk(),i.j41(0,"g",9),i.bIt("select",function(y){const x=d.eBV(c).$implicit,R=i.XpG(2);return d.Njj(R.onClick(y,x))})("activate",function(y){const x=d.eBV(c).$implicit,R=i.XpG(2);return d.Njj(R.onActivate(y,x))})("deactivate",function(y){const x=d.eBV(c).$implicit,R=i.XpG(2);return d.Njj(R.onDeactivate(y,x))})("dataLabelHeightChanged",function(y){const x=d.eBV(c).index,R=i.XpG(2);return d.Njj(R.onDataLabelMaxHeightChanged(y,x))}),i.k0s()}if(2&s){const c=g.$implicit,r=i.XpG(2);i.Y8G("activeEntries",r.activeEntries)("xScale",r.innerScale)("yScale",r.valueScale)("colors",r.colors)("series",c.series)("dims",r.dims)("gradient",r.gradient)("tooltipDisabled",r.tooltipDisabled)("tooltipTemplate",r.tooltipTemplate)("showDataLabel",r.showDataLabel)("dataLabelFormatting",r.dataLabelFormatting)("seriesName",c.name)("roundEdges",r.roundEdges)("animations",r.animations)("noBarWhenZero",r.noBarWhenZero),i.BMQ("transform",r.groupTransform(c))}}function n0(s,g){if(1&s&&(d.qSk(),i.j41(0,"g"),i.DNE(1,Yu,1,16,"g",8),i.k0s()),2&s){const c=i.XpG();i.R7$(),i.Y8G("ngForOf",c.results)("ngForTrackBy",c.trackBy)}}function c0(s,g,c){c=c||{};let r,y,x,R=null,ue=0;function xt(){ue=!1===c.leading?0:+new Date,R=null,x=s.apply(r,y)}return function(){const Rt=+new Date;!ue&&!1===c.leading&&(ue=Rt);const sn=g-(Rt-ue);return r=this,y=arguments,sn<=0?(clearTimeout(R),R=null,ue=Rt,x=s.apply(r,y)):!R&&!1!==c.trailing&&(R=setTimeout(xt,sn)),x}}function sp(s,g){return function(r,y,x){return{configurable:!0,enumerable:x.enumerable,get:function(){return Object.defineProperty(this,y,{configurable:!0,enumerable:x.enumerable,value:c0(x.value,s,g)}),this[y]}}}}var Va=function(s){return s.Top="top",s.Bottom="bottom",s.Left="left",s.Right="right",s.Center="center",s}(Va||{});function Sm(s,g,c){return c===Va.Top?s.top-7:c===Va.Bottom?s.top+s.height-g.height+7:c===Va.Center?s.top+s.height/2-g.height/2:void 0}function eh(s,g,c){return c===Va.Left?s.left-7:c===Va.Right?s.left+s.width-g.width+7:c===Va.Center?s.left+s.width/2-g.width/2:void 0}class $o{static calculateVerticalAlignment(g,c,r){let y=Sm(g,c,r);return y+c.height>window.innerHeight&&(y=window.innerHeight-c.height),y}static calculateVerticalCaret(g,c,r,y){let x;y===Va.Top&&(x=g.height/2-r.height/2+7),y===Va.Bottom&&(x=c.height-g.height/2-r.height/2-7),y===Va.Center&&(x=c.height/2-r.height/2);const R=Sm(g,c,y);return R+c.height>window.innerHeight&&(x+=R+c.height-window.innerHeight),x}static calculateHorizontalAlignment(g,c,r){let y=eh(g,c,r);return y+c.width>window.innerWidth&&(y=window.innerWidth-c.width),y}static calculateHorizontalCaret(g,c,r,y){let x;y===Va.Left&&(x=g.width/2-r.width/2+7),y===Va.Right&&(x=c.width-g.width/2-r.width/2-7),y===Va.Center&&(x=c.width/2-r.width/2);const R=eh(g,c,y);return R+c.width>window.innerWidth&&(x+=R+c.width-window.innerWidth),x}static shouldFlip(g,c,r,y){let x=!1;return r===Va.Right&&g.left+g.width+c.width+y>window.innerWidth&&(x=!0),r===Va.Left&&g.left-c.width-y<0&&(x=!0),r===Va.Top&&g.top-c.height-y<0&&(x=!0),r===Va.Bottom&&g.top+g.height+c.height+y>window.innerHeight&&(x=!0),x}static positionCaret(g,c,r,y,x){let R=0,ue=0;return g===Va.Right?(ue=-7,R=$o.calculateVerticalCaret(r,c,y,x)):g===Va.Left?(ue=c.width,R=$o.calculateVerticalCaret(r,c,y,x)):g===Va.Top?(R=c.height,ue=$o.calculateHorizontalCaret(r,c,y,x)):g===Va.Bottom&&(R=-7,ue=$o.calculateHorizontalCaret(r,c,y,x)),{top:R,left:ue}}static positionContent(g,c,r,y,x){let R=0,ue=0;return g===Va.Right?(ue=r.left+r.width+y,R=$o.calculateVerticalAlignment(r,c,x)):g===Va.Left?(ue=r.left-c.width-y,R=$o.calculateVerticalAlignment(r,c,x)):g===Va.Top?(R=r.top-c.height-y,ue=$o.calculateHorizontalAlignment(r,c,x)):g===Va.Bottom&&(R=r.top+r.height+y,ue=$o.calculateHorizontalAlignment(r,c,x)),{top:R,left:ue}}static determinePlacement(g,c,r,y){if($o.shouldFlip(r,c,g,y)){if(g===Va.Right)return Va.Left;if(g===Va.Left)return Va.Right;if(g===Va.Top)return Va.Bottom;if(g===Va.Bottom)return Va.Top}return g}}let rp=(()=>{var s;class g{get cssClasses(){let r="ngx-charts-tooltip-content";return r+=` position-${this.placement}`,r+=` type-${this.type}`,r+=` ${this.cssClass}`,r}constructor(r,y,x){this.element=r,this.renderer=y,this.platformId=x}ngAfterViewInit(){setTimeout(this.position.bind(this))}position(){if(!(0,w.UE)(this.platformId))return;const r=this.element.nativeElement,y=this.host.nativeElement.getBoundingClientRect();if(!y.height&&!y.width)return;const x=r.getBoundingClientRect();this.checkFlip(y,x),this.positionContent(r,y,x),this.showCaret&&this.positionCaret(y,x),setTimeout(()=>this.renderer.addClass(r,"animate"),1)}positionContent(r,y,x){const{top:R,left:ue}=$o.positionContent(this.placement,x,y,this.spacing,this.alignment);this.renderer.setStyle(r,"top",`${R}px`),this.renderer.setStyle(r,"left",`${ue}px`)}positionCaret(r,y){const x=this.caretElm.nativeElement,R=x.getBoundingClientRect(),{top:ue,left:xt}=$o.positionCaret(this.placement,y,r,R,this.alignment);this.renderer.setStyle(x,"top",`${ue}px`),this.renderer.setStyle(x,"left",`${xt}px`)}checkFlip(r,y){this.placement=$o.determinePlacement(this.placement,y,r,this.spacing)}onWindowResize(){this.position()}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.aKT),i.rXU(i.sFG),i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-tooltip-content"]],viewQuery:function(y,x){if(1&y&&i.GBs(xu,5),2&y){let R;i.mGM(R=i.lsd())&&(x.caretElm=R.first)}},hostVars:2,hostBindings:function(y,x){1&y&&i.bIt("resize",function(){return x.onWindowResize()},i.tSv),2&y&&i.HbH(x.cssClasses)},inputs:{host:"host",showCaret:"showCaret",type:"type",placement:"placement",alignment:"alignment",spacing:"spacing",cssClass:"cssClass",title:"title",template:"template",context:"context"},standalone:!1,decls:6,vars:6,consts:[["caretElm",""],[3,"hidden"],[1,"tooltip-content"],[4,"ngIf"],[3,"innerHTML",4,"ngIf"],[3,"ngTemplateOutlet","ngTemplateOutletContext"],[3,"innerHTML"]],template:function(y,x){1&y&&(i.j41(0,"div"),i.nrm(1,"span",1,0),i.j41(3,"div",2),i.DNE(4,Mu,2,4,"span",3)(5,P2,1,1,"span",4),i.k0s()()),2&y&&(i.R7$(),i.HbH(i.VkB("tooltip-caret position-",x.placement)),i.Y8G("hidden",!x.showCaret),i.R7$(3),i.Y8G("ngIf",!x.title),i.R7$(),i.Y8G("ngIf",x.title))},dependencies:[T.bT,T.T3],styles:[".ngx-charts-tooltip-content{position:fixed;border-radius:3px;z-index:5000;display:block;font-weight:400;opacity:0;pointer-events:none!important}.ngx-charts-tooltip-content.type-popover{background:#fff;color:#060709;border:1px solid #72809b;box-shadow:0 1px 3px #0003,0 1px 1px #00000024,0 2px 1px -1px #0000001f;font-size:13px;padding:4px}.ngx-charts-tooltip-content.type-popover .tooltip-caret{position:absolute;z-index:5001;width:0;height:0}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-left{border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-top{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-right{border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid #fff}.ngx-charts-tooltip-content.type-popover .tooltip-caret.position-bottom{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #fff}.ngx-charts-tooltip-content.type-tooltip{color:#fff;background:#000000bf;font-size:12px;padding:0 10px;text-align:center;pointer-events:auto}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-left{border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-top{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-right{border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content.type-tooltip .tooltip-caret.position-bottom{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(0,0,0,.75)}.ngx-charts-tooltip-content .tooltip-label{display:block;line-height:1em;padding:8px 5px 5px;font-size:1em}.ngx-charts-tooltip-content .tooltip-val{display:block;font-size:1.3em;line-height:1em;padding:0 5px 8px}.ngx-charts-tooltip-content .tooltip-caret{position:absolute;z-index:5001;width:0;height:0}.ngx-charts-tooltip-content.position-right{transform:translate3d(10px,0,0)}.ngx-charts-tooltip-content.position-left{transform:translate3d(-10px,0,0)}.ngx-charts-tooltip-content.position-top{transform:translate3d(0,-10px,0)}.ngx-charts-tooltip-content.position-bottom{transform:translate3d(0,10px,0)}.ngx-charts-tooltip-content.animate{opacity:1;transition:opacity .3s,transform .3s;transform:translateZ(0);pointer-events:auto}.area-tooltip-container{padding:5px 0;pointer-events:none}.tooltip-item{text-align:left;line-height:1.2em;padding:5px 0}.tooltip-item .tooltip-item-color{display:inline-block;height:12px;width:12px;margin-right:5px;color:#5b646b;border-radius:3px}\n"],encapsulation:2}))}return s(),(0,e.Cg)([sp(100)],g.prototype,"onWindowResize",null),g})();class Tm{constructor(g){this.injectionService=g,this.defaults={},this.components=new Map}getByType(g=this.type){return this.components.get(g)}create(g){return this.createByType(this.type,g)}createByType(g,c){c=this.assignDefaults(c);const r=this.injectComponent(g,c);return this.register(g,r),r}destroy(g){const c=this.components.get(g.componentType);if(c&&c.length){const r=c.indexOf(g);r>-1&&(c[r].destroy(),c.splice(r,1))}}destroyAll(){this.destroyByType(this.type)}destroyByType(g){const c=this.components.get(g);if(c&&c.length){let r=c.length-1;for(;r>=0;)this.destroy(c[r--])}}injectComponent(g,c){return this.injectionService.appendComponent(g,c)}assignDefaults(g){const c={...this.defaults.inputs},r={...this.defaults.outputs};return!g.inputs&&!g.outputs&&(g={inputs:g}),c&&(g.inputs={...c,...g.inputs}),r&&(g.outputs={...r,...g.outputs}),g}register(g,c){this.components.has(g)||this.components.set(g,[]),this.components.get(g).push(c)}}let qu=(()=>{var s;class g{static setGlobalRootViewContainer(r){g.globalRootViewContainer=r}constructor(r,y){this.applicationRef=r,this.injector=y}getRootViewContainer(){if(this._container)return this._container;if(g.globalRootViewContainer)return g.globalRootViewContainer;if(this.applicationRef.components.length)return this.applicationRef.components[0];throw new Error("View Container not found! ngUpgrade needs to manually set this via setRootViewContainer or setGlobalRootViewContainer.")}setRootViewContainer(r){this._container=r}getComponentRootNode(r){return function Dm(s){return s.element}(r)?r.element.nativeElement:r.hostView&&r.hostView.rootNodes.length>0?r.hostView.rootNodes[0]:r.location.nativeElement}getRootViewContainerNode(r){return this.getComponentRootNode(r)}projectComponentBindings(r,y){if(y){if(void 0!==y.inputs){const x=Object.getOwnPropertyNames(y.inputs);for(const R of x)r.instance[R]=y.inputs[R]}if(void 0!==y.outputs){const x=Object.getOwnPropertyNames(y.outputs);for(const R of x)r.instance[R]=y.outputs[R]}}return r}appendComponent(r,y={},x){x||(x=this.getRootViewContainer());const R=this.getComponentRootNode(x),ue=new O.aI(R,this.applicationRef,this.injector),xt=new O.A8(r),Rt=ue.attach(xt);return this.projectComponentBindings(Rt,y),Rt}static#e=s=()=>(this.globalRootViewContainer=null,this.\u0275fac=function(y){return new(y||g)(d.KVO(i.o8S),d.KVO(d.zZn))},this.\u0275prov=d.jDH({token:g,factory:g.\u0275fac}))}return s(),g})(),d0=(()=>{var s;class g extends Tm{constructor(r){super(r),this.type=rp}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(d.KVO(qu))},this.\u0275prov=d.jDH({token:g,factory:g.\u0275fac}))}return s(),g})();var Ac=function(s){return s.Right="right",s.Below="below",s}(Ac||{}),u0=function(s){return s.ScaleLegend="scaleLegend",s.Legend="legend",s}(u0||{}),ma=function(s){return s.Time="time",s.Linear="linear",s.Ordinal="ordinal",s.Quantile="quantile",s}(ma||{});function Z1(s){return s instanceof Date?s.toLocaleDateString():s.toLocaleString()}let th=(()=>{var s;class g{constructor(){this.isActive=!1,this.select=new i.bkB,this.activate=new i.bkB,this.deactivate=new i.bkB,this.toggle=new i.bkB}get trimmedLabel(){return this.formattedLabel||"(empty)"}onMouseEnter(){this.activate.emit({name:this.label})}onMouseLeave(){this.deactivate.emit({name:this.label})}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-charts-legend-entry"]],hostBindings:function(y,x){1&y&&i.bIt("mouseenter",function(){return x.onMouseEnter()})("mouseleave",function(){return x.onMouseLeave()})},inputs:{color:"color",label:"label",formattedLabel:"formattedLabel",isActive:"isActive"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",toggle:"toggle"},standalone:!1,decls:4,vars:6,consts:[["tabindex","-1",3,"click","title"],[1,"legend-label-color",3,"click"],[1,"legend-label-text"]],template:function(y,x){1&y&&(i.j41(0,"span",0),i.bIt("click",function(){return x.select.emit(x.formattedLabel)}),i.j41(1,"span",1),i.bIt("click",function(){return x.toggle.emit(x.formattedLabel)}),i.k0s(),i.j41(2,"span",2),i.EFF(3),i.k0s()()),2&y&&(i.AVh("active",x.isActive),i.Y8G("title",x.formattedLabel),i.R7$(),i.xc7("background-color",x.color),i.R7$(2),i.SpI(" ",x.trimmedLabel," "))},encapsulation:2,changeDetection:0}))}return s(),g})(),nh=(()=>{var s;class g{constructor(r){this.cd=r,this.horizontal=!1,this.labelClick=new i.bkB,this.labelActivate=new i.bkB,this.labelDeactivate=new i.bkB,this.legendEntries=[]}ngOnChanges(r){this.update()}update(){this.cd.markForCheck(),this.legendEntries=this.getLegendEntries()}getLegendEntries(){const r=[];for(const y of this.data){const x=Z1(y);-1===r.findIndex(ue=>ue.label===x)&&r.push({label:y,formattedLabel:x,color:this.colors.getColor(y)})}return r}isActive(r){return!!this.activeEntries&&void 0!==this.activeEntries.find(x=>r.label===x.name)}activate(r){this.labelActivate.emit(r)}deactivate(r){this.labelDeactivate.emit(r)}trackBy(r,y){return y.label}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(v.gRc))},this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-charts-legend"]],inputs:{data:"data",title:"title",colors:"colors",height:"height",width:"width",activeEntries:"activeEntries",horizontal:"horizontal"},outputs:{labelClick:"labelClick",labelActivate:"labelActivate",labelDeactivate:"labelDeactivate"},standalone:!1,features:[i.OA$],decls:5,vars:9,consts:[["class","legend-title",4,"ngIf"],[1,"legend-wrap"],[1,"legend-labels"],["class","legend-label",4,"ngFor","ngForOf","ngForTrackBy"],[1,"legend-title"],[1,"legend-title-text"],[1,"legend-label"],[3,"select","activate","deactivate","label","formattedLabel","color","isActive"]],template:function(y,x){1&y&&(i.j41(0,"div"),i.DNE(1,F2,3,1,"header",0),i.j41(2,"div",1)(3,"ul",2),i.DNE(4,N2,2,4,"li",3),i.k0s()()()),2&y&&(i.xc7("width",x.width,"px"),i.R7$(),i.Y8G("ngIf",(null==x.title?null:x.title.length)>0),i.R7$(2),i.xc7("max-height",x.height-45,"px"),i.AVh("horizontal-legend",x.horizontal),i.R7$(),i.Y8G("ngForOf",x.legendEntries)("ngForTrackBy",x.trackBy))},dependencies:[T.Sq,T.bT,th],styles:[".chart-legend{display:inline-block;padding:0;width:auto!important}.chart-legend .legend-title{white-space:nowrap;overflow:hidden;margin-left:10px;margin-bottom:5px;font-size:14px;font-weight:700}.chart-legend ul,.chart-legend li{padding:0;margin:0;list-style:none}.chart-legend .horizontal-legend li{display:inline-block}.chart-legend .legend-wrap{width:calc(100% - 10px)}.chart-legend .legend-labels{line-height:85%;list-style:none;text-align:left;float:left;width:100%;border-radius:3px;overflow-y:auto;overflow-x:hidden;white-space:nowrap;background:#0000000d}.chart-legend .legend-label{cursor:pointer;font-size:90%;margin:8px;color:#afb7c8}.chart-legend .legend-label:hover{color:#000;-webkit-transition:.2s;-moz-transition:.2s;transition:.2s}.chart-legend .legend-label .active .legend-label-text{color:#000}.chart-legend .legend-label-color{display:inline-block;height:15px;width:15px;margin-right:5px;color:#5b646b;border-radius:3px}.chart-legend .legend-label-text{display:inline-block;vertical-align:top;line-height:15px;font-size:12px;width:calc(100% - 20px);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.chart-legend .legend-title-text{vertical-align:bottom;display:inline-block;line-height:16px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}\n"],encapsulation:2,changeDetection:0}))}return s(),g})(),wm=(()=>{var s;class g{constructor(){this.horizontal=!1}ngOnChanges(r){const y=this.gradientString(this.colors.range(),this.colors.domain());this.gradient=`linear-gradient(to ${this.horizontal?"right":"bottom"}, ${y})`}gradientString(r,y){y.push(1);const x=[];return r.reverse().forEach((R,ue)=>{x.push(`${R} ${Math.round(100*y[ue])}%`)}),x.join(", ")}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-charts-scale-legend"]],inputs:{valueRange:"valueRange",colors:"colors",height:"height",width:"width",horizontal:"horizontal"},standalone:!1,features:[i.OA$],decls:8,vars:10,consts:[[1,"scale-legend"],[1,"scale-legend-label"],[1,"scale-legend-wrap"]],template:function(y,x){1&y&&(i.j41(0,"div",0)(1,"div",1)(2,"span"),i.EFF(3),i.k0s()(),i.nrm(4,"div",2),i.j41(5,"div",1)(6,"span"),i.EFF(7),i.k0s()()()),2&y&&(i.xc7("height",x.horizontal?void 0:x.height,"px")("width",x.width,"px"),i.AVh("horizontal-legend",x.horizontal),i.R7$(3),i.JRh(x.valueRange[1].toLocaleString()),i.R7$(),i.xc7("background",x.gradient),i.R7$(3),i.JRh(x.valueRange[0].toLocaleString()))},styles:[".chart-legend{display:inline-block;padding:0;width:auto!important}.chart-legend .scale-legend{text-align:center;display:flex;flex-direction:column}.chart-legend .scale-legend-wrap{display:inline-block;flex:1;width:30px;border-radius:5px;margin:0 auto}.chart-legend .scale-legend-label{font-size:12px}.chart-legend .horizontal-legend.scale-legend{flex-direction:row}.chart-legend .horizontal-legend .scale-legend-wrap{width:auto;height:30px;margin:0 16px}\n"],encapsulation:2,changeDetection:0}))}return s(),g})(),ih=(()=>{var s;class g{constructor(){this.showLegend=!1,this.animations=!0,this.legendLabelClick=new i.bkB,this.legendLabelActivate=new i.bkB,this.legendLabelDeactivate=new i.bkB,this.LegendPosition=Ac,this.LegendType=u0}ngOnChanges(r){this.update()}update(){let r=0;this.showLegend&&(this.legendType=this.getLegendType(),(!this.legendOptions||this.legendOptions.position===Ac.Right)&&(r=this.legendType===u0.ScaleLegend?1:2)),this.chartWidth=Math.floor(this.view[0]*(12-r)/12),this.legendWidth=this.legendOptions&&this.legendOptions.position!==Ac.Right?this.chartWidth:Math.floor(this.view[0]*r/12)}getLegendType(){return this.legendOptions.scaleType===ma.Linear?u0.ScaleLegend:u0.Legend}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-charts-chart"]],inputs:{view:"view",showLegend:"showLegend",legendOptions:"legendOptions",legendType:"legendType",activeEntries:"activeEntries",animations:"animations"},outputs:{legendLabelClick:"legendLabelClick",legendLabelActivate:"legendLabelActivate",legendLabelDeactivate:"legendLabelDeactivate"},standalone:!1,features:[i.Jv_([d0]),i.OA$],ngContentSelectors:B2,decls:5,vars:8,consts:[[1,"ngx-charts-outer"],[1,"ngx-charts"],["class","chart-legend",3,"horizontal","valueRange","colors","height","width",4,"ngIf"],["class","chart-legend",3,"horizontal","data","title","colors","height","width","activeEntries","labelClick","labelActivate","labelDeactivate",4,"ngIf"],[1,"chart-legend",3,"horizontal","valueRange","colors","height","width"],[1,"chart-legend",3,"labelClick","labelActivate","labelDeactivate","horizontal","data","title","colors","height","width","activeEntries"]],template:function(y,x){1&y&&(i.NAR(),i.j41(0,"div",0),d.qSk(),i.j41(1,"svg",1),i.SdG(2),i.k0s(),i.DNE(3,l3,1,5,"ngx-charts-scale-legend",2)(4,c3,1,7,"ngx-charts-legend",3),i.k0s()),2&y&&(i.xc7("width",x.view[0],"px")("height",x.view[1],"px"),i.R7$(),i.BMQ("width",x.chartWidth)("height",x.view[1]),i.R7$(2),i.Y8G("ngIf",x.showLegend&&x.legendType===x.LegendType.ScaleLegend),i.R7$(),i.Y8G("ngIf",x.showLegend&&x.legendType===x.LegendType.Legend))},dependencies:[T.bT,nh,wm],encapsulation:2,changeDetection:0}))}return s(),g})(),ah=(()=>{var s;class g{constructor(r,y){this.element=r,this.zone=y,this.visible=new i.bkB,this.isVisible=!1,this.runCheck()}destroy(){clearTimeout(this.timeout)}onVisibilityChange(){this.zone.run(()=>{this.isVisible=!0,this.visible.emit(!0)})}runCheck(){const r=()=>{if(!this.element)return;const{offsetHeight:y,offsetWidth:x}=this.element.nativeElement;y&&x?(clearTimeout(this.timeout),this.onVisibilityChange()):(clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>r(),100)}))};this.zone.runOutsideAngular(()=>{this.timeout=setTimeout(()=>r())})}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.aKT),i.rXU(i.SKi))},this.\u0275dir=i.FsC({type:g,selectors:[["visibility-observer"]],outputs:{visible:"visible"},standalone:!1}))}return s(),g})();function t4(s){return"[object Date]"===toString.call(s)}let h0=(()=>{var s;class g{constructor(r,y,x,R){this.chartElement=r,this.zone=y,this.cd=x,this.platformId=R,this.scheme="cool",this.schemeType=ma.Ordinal,this.animations=!0,this.select=new i.bkB}ngOnInit(){(0,w.Vy)(this.platformId)&&(this.animations=!1)}ngAfterViewInit(){this.bindWindowResizeEvent(),this.visibilityObserver=new ah(this.chartElement,this.zone),this.visibilityObserver.visible.subscribe(this.update.bind(this))}ngOnDestroy(){this.unbindEvents(),this.visibilityObserver&&(this.visibilityObserver.visible.unsubscribe(),this.visibilityObserver.destroy())}ngOnChanges(r){this.update()}update(){if(this.results=this.results?this.cloneData(this.results):[],this.view)this.width=this.view[0],this.height=this.view[1];else{const r=this.getContainerDims();r&&(this.width=r.width,this.height=r.height)}this.width||(this.width=600),this.height||(this.height=400),this.width=Math.floor(this.width),this.height=Math.floor(this.height),this.cd&&this.cd.markForCheck()}getContainerDims(){let r,y;const x=this.chartElement.nativeElement;if((0,w.UE)(this.platformId)&&null!==x.parentNode){const R=x.parentNode.getBoundingClientRect();r=R.width,y=R.height}return r&&y?{width:r,height:y}:null}formatDates(){for(let r=0;r{this.update(),this.cd&&this.cd.markForCheck()});this.resizeSubscription=y}cloneData(r){const y=[];for(const x of r){const R={};if(void 0!==x.name&&(R.name=x.name),void 0!==x.value&&(R.value=x.value),void 0!==x.series){R.series=[];for(const ue of x.series){const xt=Object.assign({},ue);R.series.push(xt)}}void 0!==x.extra&&(R.extra=JSON.parse(JSON.stringify(x.extra))),void 0!==x.source&&(R.source=x.source),void 0!==x.target&&(R.target=x.target),y.push(R)}return y}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.aKT),i.rXU(i.SKi),i.rXU(v.gRc),i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:g,selectors:[["base-chart"]],inputs:{results:"results",view:"view",scheme:"scheme",schemeType:"schemeType",customColors:"customColors",animations:"animations"},outputs:{select:"select"},standalone:!1,features:[i.OA$],decls:1,vars:0,template:function(y,x){1&y&&i.nrm(0,"div")},encapsulation:2}))}return s(),g})();var Us=function(s){return s.Top="top",s.Bottom="bottom",s.Left="left",s.Right="right",s}(Us||{});let Am=(()=>{var s;class g{constructor(r){this.textHeight=25,this.margin=5,this.element=r.nativeElement}ngOnChanges(r){this.update()}update(){switch(this.strokeWidth="0.01",this.textAnchor="middle",this.transform="",this.orient){case Us.Top:case Us.Bottom:this.y=this.offset,this.x=this.width/2;break;case Us.Left:this.y=-(this.offset+this.textHeight+this.margin),this.x=-this.height/2,this.transform="rotate(270)";break;case Us.Right:this.y=this.offset+this.margin,this.x=-this.height/2,this.transform="rotate(270)"}}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.aKT))},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-axis-label",""]],inputs:{orient:"orient",label:"label",offset:"offset",width:"width",height:"height"},standalone:!1,features:[i.OA$],attrs:d3,decls:2,vars:6,template:function(y,x){1&y&&(d.qSk(),i.j41(0,"text"),i.EFF(1),i.k0s()),2&y&&(i.BMQ("stroke-width",x.strokeWidth)("x",x.x)("y",x.y)("text-anchor",x.textAnchor)("transform",x.transform),i.R7$(),i.SpI(" ",x.label," "))},encapsulation:2,changeDetection:0}))}return s(),g})();function sh(s,g=16){return"string"!=typeof s?"number"==typeof s?s+"":"":(s=s.trim()).length<=g?s:`${s.slice(0,g)}...`}function Lm(s,g){if(s.length>g){const c=[],r=Math.floor(s.length/g);for(let y=0;y{const ue=(x.pop()||"")+" ";return ue.length+R.length>g?[...x,ue.trim(),R.trim()]:[...x,ue+R]},[]);else{let x=0;for(;xc&&(y=y.splice(0,c),y[y.length-1]+="..."),y}var El=function(s){return s.Start="start",s.Middle="middle",s.End="end",s}(El||{});function hc(s,g,c,r,y,[x,R,ue,xt]){let Rt="";return Rt=`M${[s+y,g]}`,Rt+="h"+((c=0===(c=Math.floor(c))?1:c)-2*y),Rt+=R?`a${[y,y]} 0 0 1 ${[y,y]}`:`h${y}v${y}`,Rt+="v"+((r=0===(r=Math.floor(r))?1:r)-2*y),Rt+=xt?`a${[y,y]} 0 0 1 ${[-y,y]}`:`v${y}h${-y}`,Rt+="h"+(2*y-c),Rt+=ue?`a${[y,y]} 0 0 1 ${[-y,-y]}`:`h${-y}v${-y}`,Rt+="v"+(2*y-r),Rt+=x?`a${[y,y]} 0 0 1 ${[y,-y]}`:`v${-y}h${y}`,Rt+="z",Rt}let n4=(()=>{var s;class g{get isWrapTicksSupported(){return this.wrapTicks&&this.scale.step}constructor(r){this.platformId=r,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.rotateTicks=!0,this.wrapTicks=!1,this.showRefLabels=!1,this.showRefLines=!1,this.dimensionsChanged=new i.bkB,this.verticalSpacing=20,this.rotateLabels=!1,this.innerTickSize=6,this.outerTickSize=6,this.tickPadding=3,this.textAnchor=El.Middle,this.maxTicksLength=0,this.maxAllowedLength=16,this.height=0,this.approxHeight=10,this.maxPossibleLengthForTickIfWrapped=16,this.referenceLineLength=0}ngOnChanges(r){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,w.UE)(this.platformId))return void this.dimensionsChanged.emit({height:this.approxHeight});const r=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().height,10);r!==this.height&&(this.height=r,this.dimensionsChanged.emit({height:this.height}),setTimeout(()=>this.updateDims()))}update(){const r=this.scale;this.adjustedScale=this.scale.bandwidth?function(R){return this.scale(R)+.5*this.scale.bandwidth()}:this.scale,this.ticks=this.getTicks();const y=this.orient===Us.Top||this.orient===Us.Right?-1:1;switch(this.tickSpacing=Math.max(this.innerTickSize,0)+this.tickPadding,this.orient){case Us.Bottom:this.transform=function(R){return"translate("+this.adjustedScale(R)+",0)"},this.textAnchor=El.Middle,this.x2=this.innerTickSize*y,this.x1=this.tickSpacing*y,this.dx=y<0?"0em":".71em";break;case Us.Left:this.transform=function(R){return"translate(0,"+this.adjustedScale(R)+")"},this.textAnchor=El.End,this.y2=this.innerTickSize*-y,this.y1=this.tickSpacing*-y,this.dx=".32em";break;case Us.Top:this.transform=function(R){return"translate("+this.adjustedScale(R)+",0)"},this.textAnchor=El.Middle,this.y2=this.innerTickSize*y,this.y1=this.tickSpacing*y,this.dx=y<0?"0em":".71em";break;case Us.Right:this.transform=function(R){return"translate(0,"+this.adjustedScale(R)+")"},this.textAnchor=El.Start,this.x2=this.innerTickSize*-y,this.x1=this.tickSpacing*-y,this.dx=".32em"}this.tickFormat=this.tickFormatting?this.tickFormatting:r.tickFormat?r.tickFormat.apply(r,this.tickArguments):function(R){return"Date"===R.constructor.name?R.toLocaleDateString():R.toLocaleString()};const x=this.rotateTicks?this.getRotationAngle(this.ticks):null;this.textTransform="",x&&0!==x?(this.textTransform=`rotate(${x})`,this.textAnchor=El.End,this.verticalSpacing=10):this.textAnchor=El.Middle,setTimeout(()=>this.updateDims())}setReferencelines(){this.refMin=this.adjustedScale(Math.min.apply(null,this.referenceLines.map(r=>r.value))),this.refMax=this.adjustedScale(Math.max.apply(null,this.referenceLines.map(r=>r.value))),this.referenceLineLength=this.referenceLines.length,this.referenceAreaPath=hc(this.refMax,25-this.gridLineHeight,this.refMin-this.refMax,this.gridLineHeight,0,[!1,!1,!1,!1])}getRotationAngle(r){let y=0;this.maxTicksLength=0;for(let An=0;Anthis.maxTicksLength&&(this.maxTicksLength=pi)}const ue=7*Math.min(this.maxTicksLength,this.maxAllowedLength);let xt=ue;const Rt=Math.floor(this.width/r.length);for(;xt>Rt&&y>-90;)y-=30,xt=Math.cos(y*(Math.PI/180))*ue;let sn=14;if(this.isWrapTicksSupported){const An=this.ticks.reduce((pi,Ji)=>Ji.length>pi.length?Ji:pi,"");sn=14*(this.tickChunks(An).length||1),this.maxPossibleLengthForTickIfWrapped=this.getMaxPossibleLengthForTick(An)}const wn=0!==y?Math.max(Math.abs(Math.sin(y*Math.PI/180))*this.maxTickLength*7,10):sn;return this.approxHeight=Math.min(wn,200),this.showRefLines&&this.referenceLines&&this.setReferencelines(),y}getTicks(){let r;const y=this.getMaxTicks(20),x=this.getMaxTicks(100);return this.tickValues?r=this.tickValues:this.scale.ticks?r=this.scale.ticks.apply(this.scale,[x]):(r=this.scale.domain(),r=Lm(r,y)),r}getMaxTicks(r){return Math.floor(this.width/r)}tickTransform(r){return"translate("+this.adjustedScale(r)+","+this.verticalSpacing+")"}gridLineTransform(){return`translate(0,${-this.verticalSpacing-5})`}tickTrim(r){return this.trimTicks?sh(r,this.maxTickLength):r}getMaxPossibleLengthForTick(r){if(this.scale.bandwidth){const x=Math.floor(this.scale.bandwidth()/7),R=r.slice(0,x);return Math.max(R.length,this.maxTickLength)}return this.maxTickLength}tickChunks(r){if(r.toString().length>this.maxTickLength&&this.scale.bandwidth){let x=this.rotateTicks?Math.floor(this.scale.step()/14):5;if(x<=1)return[this.tickTrim(r)];let R=Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength);return(0,w.UE)(this.platformId)||(R=Math.floor(Math.min(this.approxHeight/5,Math.max(this.maxPossibleLengthForTickIfWrapped,this.maxTickLength)))),x=Math.min(x,5),rh(r,R,x<1?1:x)}return[this.tickTrim(r)]}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-x-axis-ticks",""]],viewQuery:function(y,x){if(1&y&&i.GBs(Su,5),2&y){let R;i.mGM(R=i.lsd())&&(x.ticksElement=R.first)}},inputs:{scale:"scale",orient:"orient",tickArguments:"tickArguments",tickValues:"tickValues",tickStroke:"tickStroke",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",gridLineHeight:"gridLineHeight",width:"width",rotateTicks:"rotateTicks",wrapTicks:"wrapTicks",referenceLines:"referenceLines",showRefLabels:"showRefLabels",showRefLines:"showRefLines"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:z2,decls:6,vars:4,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],[4,"ngFor","ngForOf"],["class","reference-area",4,"ngIf"],["class","ref-line",4,"ngFor","ngForOf"],[1,"tick"],[4,"ngIf"],["stroke-width","0.01","font-size","12px"],[4,"ngIf","ngIfThen","ngIfElse"],["x","0",4,"ngFor","ngForOf"],["x","0"],["y2","0",1,"gridline-path","gridline-path-vertical"],[1,"reference-area"],[1,"ref-line"],["y1","25",1,"refline-path","gridline-path-vertical"],["transform","rotate(-270) translate(5, -5)",1,"refline-label"]],template:function(y,x){1&y&&(d.qSk(),i.j41(0,"g",null,0),i.DNE(2,Tu,2,2,"g",3),i.k0s(),i.DNE(3,Id,2,2,"g",4)(4,m3,1,2,"path",5)(5,kd,2,1,"g",6)),2&y&&(i.R7$(2),i.Y8G("ngForOf",x.ticks),i.R7$(),i.Y8G("ngForOf",x.ticks),i.R7$(),i.Y8G("ngIf",x.referenceLineLength>1&&x.refMax&&x.refMin&&x.showRefLines),i.R7$(),i.Y8G("ngForOf",x.referenceLines))},dependencies:[T.Sq,T.bT],encapsulation:2,changeDetection:0}))}return s(),g})(),i4=(()=>{var s;class g{constructor(){this.rotateTicks=!0,this.showGridLines=!1,this.xOrient=Us.Bottom,this.xAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new i.bkB,this.xAxisClassName="x axis",this.labelOffset=0,this.fill="none",this.stroke="stroke",this.tickStroke="#ccc",this.strokeWidth="none",this.padding=5,this.orientation=Us}ngOnChanges(r){this.update()}update(){this.transform=`translate(0,${this.xAxisOffset+this.padding+this.dims.height})`,typeof this.xAxisTickCount<"u"&&(this.tickArguments=[this.xAxisTickCount])}emitTicksHeight({height:r}){const y=r+25+5;y!==this.labelOffset&&(this.labelOffset=y,setTimeout(()=>{this.dimensionsChanged.emit({height:r})},0))}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-x-axis",""]],viewQuery:function(y,x){if(1&y&&i.GBs(n4,5),2&y){let R;i.mGM(R=i.lsd())&&(x.ticksComponent=R.first)}},inputs:{xScale:"xScale",dims:"dims",trimTicks:"trimTicks",rotateTicks:"rotateTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",showLabel:"showLabel",labelText:"labelText",ticks:"ticks",xAxisTickCount:"xAxisTickCount",xOrient:"xOrient",referenceLines:"referenceLines",showRefLines:"showRefLines",showRefLabels:"showRefLabels",xAxisOffset:"xAxisOffset",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:p3,decls:3,vars:4,consts:[["ngx-charts-x-axis-ticks","",3,"trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","referenceLines","showRefLines","showRefLabels","width","tickValues","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-x-axis-ticks","",3,"dimensionsChanged","trimTicks","rotateTicks","maxTickLength","tickFormatting","tickArguments","tickStroke","scale","orient","showGridLines","gridLineHeight","referenceLines","showRefLines","showRefLabels","width","tickValues","wrapTicks"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(y,x){1&y&&(d.qSk(),i.j41(0,"g"),i.DNE(1,cc,1,16,"g",0)(2,Nc,1,5,"g",1),i.k0s()),2&y&&(i.BMQ("class",x.xAxisClassName)("transform",x.transform),i.R7$(),i.Y8G("ngIf",x.xScale),i.R7$(),i.Y8G("ngIf",x.showLabel))},dependencies:[T.bT,Am,n4],encapsulation:2,changeDetection:0}))}return s(),g})(),oh=(()=>{var s;class g{constructor(r){this.platformId=r,this.tickArguments=[5],this.tickStroke="#ccc",this.trimTicks=!0,this.maxTickLength=16,this.showGridLines=!1,this.showRefLabels=!1,this.showRefLines=!1,this.wrapTicks=!1,this.dimensionsChanged=new i.bkB,this.innerTickSize=6,this.tickPadding=3,this.verticalSpacing=20,this.textAnchor=El.Middle,this.width=0,this.outerTickSize=6,this.rotateLabels=!1,this.referenceLineLength=0,this.Orientation=Us}ngOnChanges(r){this.update()}ngAfterViewInit(){setTimeout(()=>this.updateDims())}updateDims(){if(!(0,w.UE)(this.platformId))return this.width=this.getApproximateAxisWidth(),void this.dimensionsChanged.emit({width:this.width});const r=parseInt(this.ticksElement.nativeElement.getBoundingClientRect().width,10);r!==this.width&&(this.width=r,this.dimensionsChanged.emit({width:r}),setTimeout(()=>this.updateDims()))}update(){const r=this.scale,y=this.orient===Us.Top||this.orient===Us.Right?-1:1;switch(this.tickSpacing=Math.max(this.innerTickSize,0)+this.tickPadding,this.ticks=this.getTicks(),this.tickFormat=this.tickFormatting?this.tickFormatting:r.tickFormat?r.tickFormat.apply(r,this.tickArguments):function(x){return"Date"===x.constructor.name?x.toLocaleDateString():x.toLocaleString()},this.adjustedScale=r.bandwidth?x=>{const R=r(x)+.5*r.bandwidth();if(this.wrapTicks&&x.toString().length>this.maxTickLength){const ue=this.tickChunks(x).length;if(1===ue)return R;const sn=.5*r.bandwidth()-8*ue*.5;return r(x)+sn}return R}:r,this.showRefLines&&this.referenceLines&&this.setReferencelines(),this.orient){case Us.Top:case Us.Bottom:this.transform=function(x){return"translate("+this.adjustedScale(x)+",0)"},this.textAnchor=El.Middle,this.y2=this.innerTickSize*y,this.y1=this.tickSpacing*y,this.dy=y<0?"0em":".71em";break;case Us.Left:this.transform=function(x){return"translate(0,"+this.adjustedScale(x)+")"},this.textAnchor=El.End,this.x2=this.innerTickSize*-y,this.x1=this.tickSpacing*-y,this.dy=".32em";break;case Us.Right:this.transform=function(x){return"translate(0,"+this.adjustedScale(x)+")"},this.textAnchor=El.Start,this.x2=this.innerTickSize*-y,this.x1=this.tickSpacing*-y,this.dy=".32em"}setTimeout(()=>this.updateDims())}setReferencelines(){this.refMin=this.adjustedScale(Math.min.apply(null,this.referenceLines.map(r=>r.value))),this.refMax=this.adjustedScale(Math.max.apply(null,this.referenceLines.map(r=>r.value))),this.referenceLineLength=this.referenceLines.length,this.referenceAreaPath=hc(0,this.refMax,this.gridLineWidth,this.refMin-this.refMax,0,[!1,!1,!1,!1])}getTicks(){let r;const y=this.getMaxTicks(20),x=this.getMaxTicks(50);return this.tickValues?r=this.tickValues:this.scale.ticks?r=this.scale.ticks.apply(this.scale,[x]):(r=this.scale.domain(),r=Lm(r,y)),r}getMaxTicks(r){return Math.floor(this.height/r)}tickTransform(r){return`translate(${this.adjustedScale(r)},${this.verticalSpacing})`}gridLineTransform(){return"translate(5,0)"}tickTrim(r){return this.trimTicks?sh(r,this.maxTickLength):r}getApproximateAxisWidth(){return 7*Math.max(...this.ticks.map(x=>this.tickTrim(this.tickFormat(x)).length))}tickChunks(r){if(r.toString().length>this.maxTickLength&&this.scale.bandwidth){const y=this.maxTickLength,x=Math.floor(this.scale.bandwidth()/15);return x<=1?[this.tickTrim(r)]:rh(r,y,Math.min(x,5))}return[this.tickFormat(r)]}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-y-axis-ticks",""]],viewQuery:function(y,x){if(1&y&&i.GBs(Su,5),2&y){let R;i.mGM(R=i.lsd())&&(x.ticksElement=R.first)}},inputs:{scale:"scale",orient:"orient",tickArguments:"tickArguments",tickValues:"tickValues",tickStroke:"tickStroke",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",showGridLines:"showGridLines",gridLineWidth:"gridLineWidth",height:"height",referenceLines:"referenceLines",showRefLabels:"showRefLabels",showRefLines:"showRefLines",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:im,decls:6,vars:4,consts:[["ticksel",""],["tmplMultilineTick",""],["tmplSinglelineTick",""],["class","tick",4,"ngFor","ngForOf"],["class","reference-area",4,"ngIf"],[4,"ngFor","ngForOf"],["class","ref-line",4,"ngFor","ngForOf"],[1,"tick"],[4,"ngIf"],["stroke-width","0.01"],[4,"ngIf","ngIfThen","ngIfElse"],[4,"ngIf","ngIfElse"],["x","0",4,"ngFor","ngForOf"],["x","0"],[1,"reference-area"],["class","gridline-path gridline-path-horizontal","x1","0",4,"ngIf"],["x1","0",1,"gridline-path","gridline-path-horizontal"],[1,"ref-line"],["x1","0",1,"refline-path","gridline-path-horizontal"],[1,"refline-label"]],template:function(y,x){1&y&&(d.qSk(),i.j41(0,"g",null,0),i.DNE(2,Lu,2,2,"g",3),i.k0s(),i.DNE(3,v3,1,2,"path",4)(4,sm,2,2,"g",5)(5,G2,2,1,"g",6)),2&y&&(i.R7$(2),i.Y8G("ngForOf",x.ticks),i.R7$(),i.Y8G("ngIf",x.referenceLineLength>1&&x.refMax&&x.refMin&&x.showRefLines),i.R7$(),i.Y8G("ngForOf",x.ticks),i.R7$(),i.Y8G("ngForOf",x.referenceLines))},dependencies:[T.Sq,T.bT],encapsulation:2,changeDetection:0}))}return s(),g})(),lh=(()=>{var s;class g{constructor(){this.showGridLines=!1,this.yOrient=Us.Left,this.yAxisOffset=0,this.wrapTicks=!1,this.dimensionsChanged=new i.bkB,this.yAxisClassName="y axis",this.labelOffset=15,this.fill="none",this.stroke="#CCC",this.tickStroke="#CCC",this.strokeWidth=1,this.padding=5}ngOnChanges(r){this.update()}update(){this.offset=-(this.yAxisOffset+this.padding),this.yOrient===Us.Right?(this.labelOffset=65,this.transform=`translate(${this.offset+this.dims.width} , 0)`):this.transform=`translate(${this.offset} , 0)`,void 0!==this.yAxisTickCount&&(this.tickArguments=[this.yAxisTickCount])}emitTicksWidth({width:r}){r!==this.labelOffset&&this.yOrient===Us.Right?(this.labelOffset=r+this.labelOffset,setTimeout(()=>{this.dimensionsChanged.emit({width:r})},0)):r!==this.labelOffset&&(this.labelOffset=r,setTimeout(()=>{this.dimensionsChanged.emit({width:r})},0))}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-y-axis",""]],viewQuery:function(y,x){if(1&y&&i.GBs(oh,5),2&y){let R;i.mGM(R=i.lsd())&&(x.ticksComponent=R.first)}},inputs:{yScale:"yScale",dims:"dims",trimTicks:"trimTicks",maxTickLength:"maxTickLength",tickFormatting:"tickFormatting",ticks:"ticks",showGridLines:"showGridLines",showLabel:"showLabel",labelText:"labelText",yAxisTickCount:"yAxisTickCount",yOrient:"yOrient",referenceLines:"referenceLines",showRefLines:"showRefLines",showRefLabels:"showRefLabels",yAxisOffset:"yAxisOffset",wrapTicks:"wrapTicks"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:j2,decls:3,vars:4,consts:[["ngx-charts-y-axis-ticks","",3,"trimTicks","maxTickLength","tickFormatting","tickArguments","tickValues","tickStroke","scale","orient","showGridLines","gridLineWidth","referenceLines","showRefLines","showRefLabels","height","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width",4,"ngIf"],["ngx-charts-y-axis-ticks","",3,"dimensionsChanged","trimTicks","maxTickLength","tickFormatting","tickArguments","tickValues","tickStroke","scale","orient","showGridLines","gridLineWidth","referenceLines","showRefLines","showRefLabels","height","wrapTicks"],["ngx-charts-axis-label","",3,"label","offset","orient","height","width"]],template:function(y,x){1&y&&(d.qSk(),i.j41(0,"g"),i.DNE(1,Ff,1,15,"g",0)(2,Vr,1,5,"g",1),i.k0s()),2&y&&(i.BMQ("class",x.yAxisClassName)("transform",x.transform),i.R7$(),i.Y8G("ngIf",x.yScale),i.R7$(),i.Y8G("ngIf",x.showLabel))},dependencies:[T.bT,Am,oh],encapsulation:2,changeDetection:0}))}return s(),g})(),Im=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[T.MD]}))}return s(),g})();var Hd=function(s){return s.popover="popover",s.tooltip="tooltip",s}(Hd||{}),J1=function(s){return s[s.all="all"]="all",s[s.focus="focus"]="focus",s[s.mouseover="mouseover"]="mouseover",s}(J1||{});let m0=(()=>{var s;class g{get listensForFocus(){return this.tooltipShowEvent===J1.all||this.tooltipShowEvent===J1.focus}get listensForHover(){return this.tooltipShowEvent===J1.all||this.tooltipShowEvent===J1.mouseover}constructor(r,y,x){this.tooltipService=r,this.viewContainerRef=y,this.renderer=x,this.tooltipCssClass="",this.tooltipAppendToBody=!0,this.tooltipSpacing=10,this.tooltipDisabled=!1,this.tooltipShowCaret=!0,this.tooltipPlacement=Va.Top,this.tooltipAlignment=Va.Center,this.tooltipType=Hd.popover,this.tooltipCloseOnClickOutside=!0,this.tooltipCloseOnMouseLeave=!0,this.tooltipHideTimeout=300,this.tooltipShowTimeout=100,this.tooltipShowEvent=J1.all,this.tooltipImmediateExit=!1,this.show=new i.bkB,this.hide=new i.bkB}ngOnDestroy(){this.hideTooltip(!0)}onFocus(){this.listensForFocus&&this.showTooltip()}onBlur(){this.listensForFocus&&this.hideTooltip(!0)}onMouseEnter(){this.listensForHover&&this.showTooltip()}onMouseLeave(r){if(this.listensForHover&&this.tooltipCloseOnMouseLeave){if(clearTimeout(this.timeout),this.component&&this.component.instance.element.nativeElement.contains(r))return;this.hideTooltip(this.tooltipImmediateExit)}}onMouseClick(){this.listensForHover&&this.hideTooltip(!0)}showTooltip(r){if(this.component||this.tooltipDisabled)return;const y=r?0:this.tooltipShowTimeout+(navigator.userAgent.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/)?400:0);clearTimeout(this.timeout),this.timeout=setTimeout(()=>{this.tooltipService.destroyAll();const x=this.createBoundOptions();this.component=this.tooltipService.create(x),setTimeout(()=>{this.component&&this.addHideListeners(this.component.instance.element.nativeElement)},10),this.show.emit(!0)},y)}addHideListeners(r){this.mouseEnterContentEvent=this.renderer.listen(r,"mouseenter",()=>{clearTimeout(this.timeout)}),this.tooltipCloseOnMouseLeave&&(this.mouseLeaveContentEvent=this.renderer.listen(r,"mouseleave",()=>{this.hideTooltip(this.tooltipImmediateExit)})),this.tooltipCloseOnClickOutside&&(this.documentClickEvent=this.renderer.listen("window","click",y=>{r.contains(y.target)||this.hideTooltip()}))}hideTooltip(r=!1){if(!this.component)return;const y=()=>{this.mouseLeaveContentEvent&&this.mouseLeaveContentEvent(),this.mouseEnterContentEvent&&this.mouseEnterContentEvent(),this.documentClickEvent&&this.documentClickEvent(),this.hide.emit(!0),this.tooltipService.destroy(this.component),this.component=void 0};clearTimeout(this.timeout),r?y():this.timeout=setTimeout(y,this.tooltipHideTimeout)}createBoundOptions(){return{title:this.tooltipTitle,template:this.tooltipTemplate,host:this.viewContainerRef.element,placement:this.tooltipPlacement,alignment:this.tooltipAlignment,type:this.tooltipType,showCaret:this.tooltipShowCaret,cssClass:this.tooltipCssClass,spacing:this.tooltipSpacing,context:this.tooltipContext}}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(d0),i.rXU(i.c1b),i.rXU(i.sFG))},this.\u0275dir=i.FsC({type:g,selectors:[["","ngx-tooltip",""]],hostBindings:function(y,x){1&y&&i.bIt("focusin",function(){return x.onFocus()})("blur",function(){return x.onBlur()})("mouseenter",function(){return x.onMouseEnter()})("mouseleave",function(ue){return x.onMouseLeave(ue.target)})("click",function(){return x.onMouseClick()})},inputs:{tooltipCssClass:"tooltipCssClass",tooltipTitle:"tooltipTitle",tooltipAppendToBody:"tooltipAppendToBody",tooltipSpacing:"tooltipSpacing",tooltipDisabled:"tooltipDisabled",tooltipShowCaret:"tooltipShowCaret",tooltipPlacement:"tooltipPlacement",tooltipAlignment:"tooltipAlignment",tooltipType:"tooltipType",tooltipCloseOnClickOutside:"tooltipCloseOnClickOutside",tooltipCloseOnMouseLeave:"tooltipCloseOnMouseLeave",tooltipHideTimeout:"tooltipHideTimeout",tooltipShowTimeout:"tooltipShowTimeout",tooltipTemplate:"tooltipTemplate",tooltipShowEvent:"tooltipShowEvent",tooltipContext:"tooltipContext",tooltipImmediateExit:"tooltipImmediateExit"},outputs:{show:"show",hide:"hide"},standalone:!1}))}return s(),g})(),ch=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({providers:[qu,d0],imports:[T.MD]}))}return s(),g})();const f0={};function p0(){let s=("0000"+(Math.random()*Math.pow(36,4)|0).toString(36)).slice(-4);return s=`a${s}`,f0[s]?p0():(f0[s]=!0,s)}var Qr=function(s){return s.Vertical="vertical",s.Horizontal="horizontal",s}(Qr||{});let Wd=(()=>{var s;class g{constructor(){this.orientation=Qr.Vertical}ngOnChanges(r){this.x1="0%",this.x2="0%",this.y1="0%",this.y2="0%",this.orientation===Qr.Horizontal?this.x2="100%":this.orientation===Qr.Vertical&&(this.y1="100%")}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-svg-linear-gradient",""]],inputs:{orientation:"orientation",name:"name",stops:"stops"},standalone:!1,features:[i.OA$],attrs:b3,decls:2,vars:6,consts:[[3,"id"],[3,"stop-color","stop-opacity",4,"ngFor","ngForOf"]],template:function(y,x){1&y&&(d.qSk(),i.j41(0,"linearGradient",0),i.DNE(1,s1,1,5,"stop",1),i.k0s()),2&y&&(i.Y8G("id",x.name),i.BMQ("x1",x.x1)("y1",x.y1)("x2",x.x2)("y2",x.y2),i.R7$(),i.Y8G("ngForOf",x.stops))},dependencies:[T.Sq],encapsulation:2,changeDetection:0}))}return s(),g})(),q1=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-grid-panel",""]],inputs:{width:"width",height:"height",x:"x",y:"y"},standalone:!1,attrs:Fu,decls:1,vars:4,consts:[["stroke","none",1,"gridpanel"]],template:function(y,x){1&y&&(d.qSk(),i.nrm(0,"rect",0)),2&y&&i.BMQ("height",x.height)("width",x.width)("x",x.x)("y",x.y)},encapsulation:2,changeDetection:0}))}return s(),g})();var Gc=function(s){return s.Odd="odd",s.Even="even",s}(Gc||{});let r4,Om=(()=>{var s;class g{ngOnChanges(r){this.update()}update(){this.gridPanels=this.getGridPanels()}getGridPanels(){return this.data.map(r=>{let y,x,R,ue,xt,Rt=Gc.Odd;if(this.orient===Qr.Vertical){const sn=this.xScale(r.name);Number.parseInt((sn/this.xScale.step()).toString(),10)%2==1&&(Rt=Gc.Even),y=this.xScale.bandwidth()*this.xScale.paddingInner(),x=this.xScale.bandwidth()+y,R=this.dims.height,ue=this.xScale(r.name)-y/2,xt=0}else if(this.orient===Qr.Horizontal){const sn=this.yScale(r.name);Number.parseInt((sn/this.yScale.step()).toString(),10)%2==1&&(Rt=Gc.Even),y=this.yScale.bandwidth()*this.yScale.paddingInner(),x=this.dims.width,R=this.yScale.bandwidth()+y,ue=0,xt=this.yScale(r.name)-y/2}return{name:r.name,class:Rt,height:R,width:x,x:ue,y:xt}})}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-grid-panel-series",""]],inputs:{data:"data",dims:"dims",xScale:"xScale",yScale:"yScale",orient:"orient"},standalone:!1,features:[i.OA$],attrs:Nu,decls:1,vars:1,consts:[["ngx-charts-grid-panel","",3,"height","width","x","y","grid-panel","odd","even",4,"ngFor","ngForOf"],["ngx-charts-grid-panel","",3,"height","width","x","y"]],template:function(y,x){1&y&&i.DNE(0,Bc,1,10,"g",0),2&y&&i.Y8G("ngForOf",x.gridPanels)},dependencies:[T.Sq,q1],encapsulation:2,changeDetection:0}))}return s(),g})();typeof window<"u"?r4=window:typeof global<"u"&&(r4=global);let hl=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[T.MD,Im,ch,T.MD,Im,ch]}))}return s(),g})();function Fm({width:s,height:g,margins:c,showXAxis:r=!1,showYAxis:y=!1,xAxisHeight:x=0,yAxisWidth:R=0,showXLabel:ue=!1,showYLabel:xt=!1,showLegend:Rt=!1,legendType:sn=ma.Ordinal,legendPosition:wn=Ac.Right,columns:An=12}){let _i=c[3],pi=s,Ji=g-c[0]-c[2];return Rt&&wn===Ac.Right&&(An-=sn===ma.Ordinal?2:1),pi=pi*An/12,pi=pi-c[1]-c[3],r&&(Ji-=5,Ji-=x,ue&&(Ji-=30)),y&&(pi-=5,pi-=R,_i+=R,_i+=10,xt&&(pi-=30,_i+=30)),pi=Math.max(0,pi),Ji=Math.max(0,Ji),{width:Math.floor(pi),height:Math.floor(Ji),xOffset:Math.floor(_i)}}const hp=[{name:"vivid",selectable:!0,group:ma.Ordinal,domain:["#647c8a","#3f51b5","#2196f3","#00b862","#afdf0a","#a7b61a","#f3e562","#ff9800","#ff5722","#ff4514"]},{name:"natural",selectable:!0,group:ma.Ordinal,domain:["#bf9d76","#e99450","#d89f59","#f2dfa7","#a5d7c6","#7794b1","#afafaf","#707160","#ba9383","#d9d5c3"]},{name:"cool",selectable:!0,group:ma.Ordinal,domain:["#a8385d","#7aa3e5","#a27ea8","#aae3f5","#adcded","#a95963","#8796c0","#7ed3ed","#50abcc","#ad6886"]},{name:"fire",selectable:!0,group:ma.Ordinal,domain:["#ff3d00","#bf360c","#ff8f00","#ff6f00","#ff5722","#e65100","#ffca28","#ffab00"]},{name:"solar",selectable:!0,group:ma.Linear,domain:["#fff8e1","#ffecb3","#ffe082","#ffd54f","#ffca28","#ffc107","#ffb300","#ffa000","#ff8f00","#ff6f00"]},{name:"air",selectable:!0,group:ma.Linear,domain:["#e1f5fe","#b3e5fc","#81d4fa","#4fc3f7","#29b6f6","#03a9f4","#039be5","#0288d1","#0277bd","#01579b"]},{name:"aqua",selectable:!0,group:ma.Linear,domain:["#e0f7fa","#b2ebf2","#80deea","#4dd0e1","#26c6da","#00bcd4","#00acc1","#0097a7","#00838f","#006064"]},{name:"flame",selectable:!1,group:ma.Ordinal,domain:["#A10A28","#D3342D","#EF6D49","#FAAD67","#FDDE90","#DBED91","#A9D770","#6CBA67","#2C9653","#146738"]},{name:"ocean",selectable:!1,group:ma.Ordinal,domain:["#1D68FB","#33C0FC","#4AFFFE","#AFFFFF","#FFFC63","#FDBD2D","#FC8A25","#FA4F1E","#FA141B","#BA38D1"]},{name:"forest",selectable:!1,group:ma.Ordinal,domain:["#55C22D","#C1F33D","#3CC099","#AFFFFF","#8CFC9D","#76CFFA","#BA60FB","#EE6490","#C42A1C","#FC9F32"]},{name:"horizon",selectable:!1,group:ma.Ordinal,domain:["#2597FB","#65EBFD","#99FDD0","#FCEE4B","#FEFCFA","#FDD6E3","#FCB1A8","#EF6F7B","#CB96E8","#EFDEE0"]},{name:"neons",selectable:!1,group:ma.Ordinal,domain:["#FF3333","#FF33FF","#CC33FF","#0000FF","#33CCFF","#33FFFF","#33FF66","#CCFF33","#FFCC00","#FF6600"]},{name:"picnic",selectable:!1,group:ma.Ordinal,domain:["#FAC51D","#66BD6D","#FAA026","#29BB9C","#E96B56","#55ACD2","#B7332F","#2C83C9","#9166B8","#92E7E8"]},{name:"night",selectable:!1,group:ma.Ordinal,domain:["#2B1B5A","#501356","#183356","#28203F","#391B3C","#1E2B3C","#120634","#2D0432","#051932","#453080","#75267D","#2C507D","#4B3880","#752F7D","#35547D"]},{name:"nightLights",selectable:!1,group:ma.Ordinal,domain:["#4e31a5","#9c25a7","#3065ab","#57468b","#904497","#46648b","#32118d","#a00fb3","#1052a2","#6e51bd","#b63cc3","#6c97cb","#8671c1","#b455be","#7496c3"]}];class c4{constructor(g,c,r,y){"string"==typeof g&&(g=hp.find(x=>x.name===g)),this.colorDomain=g.domain,this.scaleType=c,this.domain=r,this.customColors=y,this.scale=this.generateColorScheme(g,c,this.domain)}generateColorScheme(g,c,r){let y;switch("string"==typeof g&&(g=hp.find(x=>x.name===g)),c){case ma.Quantile:y=P1().range(g.domain).domain(r);break;case ma.Ordinal:y=Md().range(g.domain).domain(r);break;case ma.Linear:{const x=[...g.domain];1===x.length&&(x.push(x[0]),this.colorDomain=x);const R=ru(0,1,1/x.length);y=lc().range(x).domain(R)}}return y}getColor(g){if(null==g)throw new Error("Value can not be null");if(this.scaleType===ma.Linear){const c=lc().domain(this.domain).range([0,1]);return this.scale(c(g))}{if("function"==typeof this.customColors)return this.customColors(g);const c=g.toString();let r;return this.customColors&&this.customColors.length>0&&(r=this.customColors.find(y=>y.name.toLowerCase()===c.toLowerCase())),r?r.value:this.scale(g)}}getLinearGradientStops(g,c){void 0===c&&(c=this.domain[0]);const r=lc().domain(this.domain).range([0,1]),y=Pc().domain(this.colorDomain).range([0,1]),x=this.getColor(g),R=r(c),ue=this.getColor(c),xt=r(g);let Rt=1,sn=R;const wn=[];for(wn.push({color:ue,offset:R,originalOffset:R,opacity:1});sn=(xt-y.bandwidth()).toFixed(4))break;wn.push({color:An,offset:_i,opacity:1}),sn=_i,Rt++}}if(wn[wn.length-1].offset<100&&wn.push({color:x,offset:xt,opacity:1}),xt===R)wn[0].offset=0,wn[1].offset=100;else if(100!==wn[wn.length-1].offset)for(const An of wn)An.offset=(An.offset-R)/(xt-R)*100;return wn}}let Bm=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),zm=(()=>{var s;class g{constructor(r){this.roundEdges=!0,this.gradient=!1,this.offset=0,this.isActive=!1,this.animations=!0,this.noBarWhenZero=!0,this.select=new i.bkB,this.activate=new i.bkB,this.deactivate=new i.bkB,this.hasGradient=!1,this.hideBar=!1,this.element=r.nativeElement}ngOnChanges(r){r.roundEdges&&this.loadAnimation(),this.update()}update(){this.gradientId="grad"+p0().toString(),this.gradientFill=`url(#${this.gradientId})`,this.gradient||this.stops?(this.gradientStops=this.getGradient(),this.hasGradient=!0):this.hasGradient=!1,this.updatePathEl(),this.checkToHideBar()}loadAnimation(){this.path=this.getStartingPath(),setTimeout(this.update.bind(this),100)}updatePathEl(){const r=ci(this.element).select(".bar"),y=this.getPath();this.animations?r.transition().duration(500).attr("d",y):r.attr("d",y)}getGradient(){return this.stops?this.stops:[{offset:0,color:this.fill,opacity:this.getStartOpacity()},{offset:100,color:this.fill,opacity:1}]}getStartingPath(){if(!this.animations)return this.getPath();let y,r=this.getRadius();return this.roundEdges?this.orientation===Qr.Vertical?(r=Math.min(this.height,r),y=hc(this.x,this.y+this.height,this.width,1,0,this.edges)):this.orientation===Qr.Horizontal&&(r=Math.min(this.width,r),y=hc(this.x,this.y,1,this.height,0,this.edges)):this.orientation===Qr.Vertical?y=hc(this.x,this.y+this.height,this.width,1,0,this.edges):this.orientation===Qr.Horizontal&&(y=hc(this.x,this.y,1,this.height,0,this.edges)),y}getPath(){let y,r=this.getRadius();return this.roundEdges?this.orientation===Qr.Vertical?(r=Math.min(this.height,r),y=hc(this.x,this.y,this.width,this.height,r,this.edges)):this.orientation===Qr.Horizontal&&(r=Math.min(this.width,r),y=hc(this.x,this.y,this.width,this.height,r,this.edges)):y=hc(this.x,this.y,this.width,this.height,r,this.edges),y}getRadius(){let r=0;return this.roundEdges&&this.height>5&&this.width>5&&(r=Math.floor(Math.min(5,this.height/2,this.width/2))),r}getStartOpacity(){return this.roundEdges?.2:.5}get edges(){let r=[!1,!1,!1,!1];return this.roundEdges&&(this.orientation===Qr.Vertical?r=this.data.value>0?[!0,!0,!1,!1]:[!1,!1,!0,!0]:this.orientation===Qr.Horizontal&&(r=this.data.value>0?[!1,!0,!1,!0]:[!0,!1,!0,!1])),r}onMouseEnter(){this.activate.emit(this.data)}onMouseLeave(){this.deactivate.emit(this.data)}checkToHideBar(){this.hideBar=this.noBarWhenZero&&(this.orientation===Qr.Vertical&&0===this.height||this.orientation===Qr.Horizontal&&0===this.width)}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.aKT))},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-bar",""]],hostBindings:function(y,x){1&y&&i.bIt("mouseenter",function(){return x.onMouseEnter()})("mouseleave",function(){return x.onMouseLeave()})},inputs:{fill:"fill",data:"data",width:"width",height:"height",x:"x",y:"y",orientation:"orientation",roundEdges:"roundEdges",gradient:"gradient",offset:"offset",isActive:"isActive",stops:"stops",animations:"animations",ariaLabel:"ariaLabel",noBarWhenZero:"noBarWhenZero"},outputs:{select:"select",activate:"activate",deactivate:"deactivate"},standalone:!1,features:[i.OA$],attrs:O3,decls:2,vars:8,consts:[[4,"ngIf"],["stroke","none","role","img","tabIndex","-1",1,"bar",3,"click"],["ngx-charts-svg-linear-gradient","",3,"orientation","name","stops"]],template:function(y,x){1&y&&(i.DNE(0,R3,2,3,"defs",0),d.qSk(),i.j41(1,"path",1),i.bIt("click",function(){return x.select.emit(x.data)}),i.k0s()),2&y&&(i.Y8G("ngIf",x.hasGradient),i.R7$(),i.AVh("active",x.isActive)("hidden",x.hideBar),i.BMQ("d",x.path)("aria-label",x.ariaLabel)("fill",x.hasGradient?x.gradientFill:x.fill))},dependencies:[T.bT,Wd],encapsulation:2,changeDetection:0}))}return s(),g})();var jc=function(s){return s.Standard="standard",s.Normalized="normalized",s.Stacked="stacked",s}(jc||{}),f1=function(s){return s.positive="positive",s.negative="negative",s}(f1||{});let d4=(()=>{var s;class g{constructor(r){this.dimensionsChanged=new i.bkB,this.horizontalPadding=2,this.verticalPadding=5,this.element=r.nativeElement}ngOnChanges(r){this.update()}getSize(){return{height:this.element.getBoundingClientRect().height,width:this.element.getBoundingClientRect().width,negative:this.value<0}}ngAfterViewInit(){this.dimensionsChanged.emit(this.getSize())}update(){this.formatedValue=this.valueFormatting?this.valueFormatting(this.value):Z1(this.value),"horizontal"===this.orientation?(this.x=this.barX+this.barWidth,this.value<0?(this.x=this.x-this.horizontalPadding,this.textAnchor="end"):(this.x=this.x+this.horizontalPadding,this.textAnchor="start"),this.y=this.barY+this.barHeight/2):(this.x=this.barX+this.barWidth/2,this.y=this.barY+this.barHeight,this.value<0?(this.y=this.y+this.verticalPadding,this.textAnchor="end"):(this.y=this.y-this.verticalPadding,this.textAnchor="start"),this.transform=`rotate(-45, ${this.x} , ${this.y})`)}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.aKT))},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-bar-label",""]],inputs:{value:"value",valueFormatting:"valueFormatting",barX:"barX",barY:"barY",barWidth:"barWidth",barHeight:"barHeight",orientation:"orientation"},outputs:{dimensionsChanged:"dimensionsChanged"},standalone:!1,features:[i.OA$],attrs:P3,decls:2,vars:5,consts:[["alignment-baseline","middle",1,"textDataLabel"]],template:function(y,x){1&y&&(d.qSk(),i.j41(0,"text",0),i.EFF(1),i.k0s()),2&y&&(i.BMQ("text-anchor",x.textAnchor)("transform",x.transform)("x",x.x)("y",x.y),i.R7$(),i.SpI(" ",x.formatedValue," "))},styles:[".textDataLabel[_ngcontent-%COMP%]{font-size:11px}"],changeDetection:0}))}return s(),g})(),Vm=(()=>{var s;class g{constructor(r){this.platformId=r,this.type=jc.Standard,this.tooltipDisabled=!1,this.animations=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.select=new i.bkB,this.activate=new i.bkB,this.deactivate=new i.bkB,this.dataLabelHeightChanged=new i.bkB,this.barsForDataLabels=[],this.barOrientation=Qr,this.isSSR=!1}ngOnInit(){(0,w.Vy)(this.platformId)&&(this.isSSR=!0)}ngOnChanges(){this.update()}update(){let r;this.updateTooltipSettings(),this.series.length&&(r=this.xScale.bandwidth()),r=Math.round(r);const y=Math.max(this.yScale.domain()[0],0),x={[f1.positive]:0,[f1.negative]:0};let ue,R=f1.positive;this.type===jc.Normalized&&(ue=this.series.map(xt=>xt.value).reduce((xt,Rt)=>xt+Rt,0)),this.bars=this.series.map((xt,Rt)=>{let sn=xt.value;const wn=this.getLabel(xt),An=Z1(wn);R=sn>0?f1.positive:f1.negative;const pi={value:sn,label:wn,roundEdges:this.roundEdges,data:xt,width:r,formattedLabel:An,height:0,x:0,y:0};if(this.type===jc.Standard)pi.height=Math.abs(this.yScale(sn)-this.yScale(y)),pi.x=this.xScale(wn),pi.y=this.yScale(sn<0?0:sn);else if(this.type===jc.Stacked){const Xn=x[R],Vi=Xn+sn;x[R]+=sn,pi.height=this.yScale(Xn)-this.yScale(Vi),pi.x=0,pi.y=this.yScale(Vi),pi.offset0=Xn,pi.offset1=Vi}else if(this.type===jc.Normalized){let Xn=x[R],Vi=Xn+sn;x[R]+=sn,ue>0?(Xn=100*Xn/ue,Vi=100*Vi/ue):(Xn=0,Vi=0),pi.height=this.yScale(Xn)-this.yScale(Vi),pi.x=0,pi.y=this.yScale(Vi),pi.offset0=Xn,pi.offset1=Vi,sn=(Vi-Xn).toFixed(2)+"%"}this.colors.scaleType===ma.Ordinal?pi.color=this.colors.getColor(wn):this.type===jc.Standard?(pi.color=this.colors.getColor(sn),pi.gradientStops=this.colors.getLinearGradientStops(sn)):(pi.color=this.colors.getColor(pi.offset1),pi.gradientStops=this.colors.getLinearGradientStops(pi.offset1,pi.offset0));let Ji=An;return pi.ariaLabel=An+" "+sn.toLocaleString(),null!=this.seriesName&&(Ji=`${this.seriesName} \u2022 ${An}`,pi.data.series=this.seriesName,pi.ariaLabel=this.seriesName+" "+pi.ariaLabel),pi.tooltipText=this.tooltipDisabled?void 0:`\n ${function e4(s){return s.toLocaleString().replace(/[&'`"<>]/g,g=>({"&":"&","'":"'","`":"`",'"':""","<":"<",">":">"}[g]))}(Ji)}\n ${this.dataLabelFormatting?this.dataLabelFormatting(sn):sn.toLocaleString()}\n `,pi}),this.updateDataLabels()}updateDataLabels(){if(this.type===jc.Stacked){this.barsForDataLabels=[];const r={};r.series=this.seriesName;const y=this.series.map(R=>R.value).reduce((R,ue)=>ue>0?R+ue:R,0),x=this.series.map(R=>R.value).reduce((R,ue)=>ue<0?R+ue:R,0);r.total=y+x,r.x=0,r.y=0,r.height=this.yScale(r.total>0?y:x),r.width=this.xScale.bandwidth(),this.barsForDataLabels.push(r)}else this.barsForDataLabels=this.series.map(r=>{const y={};return y.series=this.seriesName??r.label,y.total=r.value,y.x=this.xScale(r.label),y.y=this.yScale(0),y.height=this.yScale(y.total)-this.yScale(0),y.width=this.xScale.bandwidth(),y})}updateTooltipSettings(){this.tooltipPlacement=this.tooltipDisabled?void 0:Va.Top,this.tooltipType=this.tooltipDisabled?void 0:Hd.tooltip}isActive(r){return!!this.activeEntries&&void 0!==this.activeEntries.find(x=>r.name===x.name&&r.value===x.value)}onClick(r){this.select.emit(r)}getLabel(r){return r.label?r.label:r.name}trackBy(r,y){return y.label}trackDataLabelBy(r,y){return r+"#"+y.series+"#"+y.total}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)(i.rXU(i.Agw))},this.\u0275cmp=i.VBU({type:g,selectors:[["g","ngx-charts-series-vertical",""]],inputs:{dims:"dims",type:"type",series:"series",xScale:"xScale",yScale:"yScale",colors:"colors",gradient:"gradient",activeEntries:"activeEntries",seriesName:"seriesName",tooltipDisabled:"tooltipDisabled",tooltipTemplate:"tooltipTemplate",roundEdges:"roundEdges",animations:"animations",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero"},outputs:{select:"select",activate:"activate",deactivate:"deactivate",dataLabelHeightChanged:"dataLabelHeightChanged"},standalone:!1,features:[i.OA$],attrs:e0,decls:3,vars:3,consts:[[4,"ngIf"],["ngx-charts-bar","","ngx-tooltip","",3,"width","height","x","y","fill","stops","data","orientation","roundEdges","gradient","ariaLabel","isActive","tooltipDisabled","tooltipPlacement","tooltipType","tooltipTitle","tooltipTemplate","tooltipContext","noBarWhenZero","animations","select","activate","deactivate",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-bar","","ngx-tooltip","",3,"select","activate","deactivate","width","height","x","y","fill","stops","data","orientation","roundEdges","gradient","ariaLabel","isActive","tooltipDisabled","tooltipPlacement","tooltipType","tooltipTitle","tooltipTemplate","tooltipContext","noBarWhenZero","animations"],["ngx-charts-bar-label","",3,"barX","barY","barWidth","barHeight","value","valueFormatting","orientation","dimensionsChanged",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-bar-label","",3,"dimensionsChanged","barX","barY","barWidth","barHeight","value","valueFormatting","orientation"]],template:function(y,x){1&y&&i.DNE(0,ju,2,2,"g",0)(1,bm,2,2,"g",0)(2,Wu,2,2,"g",0),2&y&&(i.Y8G("ngIf",!x.isSSR),i.R7$(),i.Y8G("ngIf",x.isSSR),i.R7$(),i.Y8G("ngIf",x.showDataLabel))},dependencies:[T.Sq,T.bT,m0,zm,d4],encapsulation:2,data:{animation:[(0,L.hZ)("animationState",[(0,L.kY)(":leave",[(0,L.iF)({opacity:1}),(0,L.i0)(500,(0,L.iF)({opacity:0}))])])]},changeDetection:0}))}return s(),g})(),hh=(()=>{var s;class g extends h0{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=Ac.Right,this.tooltipDisabled=!1,this.showGridLines=!0,this.activeEntries=[],this.trimXAxisTicks=!0,this.trimYAxisTicks=!0,this.rotateXAxisTicks=!0,this.maxXAxisTickLength=16,this.maxYAxisTickLength=16,this.barPadding=8,this.roundDomains=!1,this.roundEdges=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.wrapTicks=!1,this.activate=new i.bkB,this.deactivate=new i.bkB,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0}}ngOnChanges(){this.update()}update(){if(super.update(),this.showDataLabel||(this.dataLabelMaxHeight={negative:0,positive:0}),this.margin=[10+this.dataLabelMaxHeight.positive,20,10+this.dataLabelMaxHeight.negative,20],this.dims=Fm({width:this.width,height:this.height,margins:this.margin,showXAxis:this.xAxis,showYAxis:this.yAxis,xAxisHeight:this.xAxisHeight,yAxisWidth:this.yAxisWidth,showXLabel:this.showXAxisLabel,showYLabel:this.showYAxisLabel,showLegend:this.legend,legendType:this.schemeType,legendPosition:this.legendPosition}),this.formatDates(),this.showDataLabel&&(this.dims.height-=this.dataLabelMaxHeight.negative),this.xScale=this.getXScale(),this.yScale=this.getYScale(),this.setColors(),this.legendOptions=this.getLegendOptions(),this.transform=`translate(${this.dims.xOffset} , ${this.margin[0]+this.dataLabelMaxHeight.negative})`,this.showRefLines){const r=ci(this.chartElement.nativeElement).select(".bar-chart").node();ci(this.chartElement.nativeElement).selectAll(".ref-line").nodes().forEach(x=>r.appendChild(x))}}getXScale(){this.xDomain=this.getXDomain();const r=this.xDomain.length/(this.dims.width/this.barPadding+1);return Pc().range([0,this.dims.width]).paddingInner(r).domain(this.xDomain)}getYScale(){this.yDomain=this.getYDomain();const r=lc().range([this.dims.height,0]).domain(this.yDomain);return this.roundDomains?r.nice():r}getXDomain(){return this.results.map(r=>r.label)}getYDomain(){const r=this.results.map(R=>R.value);let y=this.yScaleMin?Math.min(this.yScaleMin,...r):Math.min(0,...r);this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(y=Math.min(y,...this.yAxisTicks));let x=this.yScaleMax?Math.max(this.yScaleMax,...r):Math.max(0,...r);return this.yAxisTicks&&!this.yAxisTicks.some(isNaN)&&(x=Math.max(x,...this.yAxisTicks)),[y,x]}onClick(r){this.select.emit(r)}setColors(){let r;r=this.schemeType===ma.Ordinal?this.xDomain:this.yDomain,this.colors=new c4(this.scheme,this.schemeType,r,this.customColors)}getLegendOptions(){const r={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return r.scaleType===ma.Ordinal?(r.domain=this.xDomain,r.colors=this.colors,r.title=this.legendTitle):(r.domain=this.yDomain,r.colors=this.colors.scale),r}updateYAxisWidth({width:r}){this.yAxisWidth=r,this.update()}updateXAxisHeight({height:r}){this.xAxisHeight=r,this.update()}onDataLabelMaxHeightChanged(r){r.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,r.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,r.size.height),r.index===this.results.length-1&&setTimeout(()=>this.update())}onActivate(r,y=!1){r=this.results.find(R=>y?R.label===r.name:R.name===r.name),!(this.activeEntries.findIndex(R=>R.name===r.name&&R.value===r.value&&R.series===r.series)>-1)&&(this.activeEntries=[r,...this.activeEntries],this.activate.emit({value:r,entries:this.activeEntries}))}onDeactivate(r,y=!1){r=this.results.find(R=>y?R.label===r.name:R.name===r.name);const x=this.activeEntries.findIndex(R=>R.name===r.name&&R.value===r.value&&R.series===r.series);this.activeEntries.splice(x,1),this.activeEntries=[...this.activeEntries],this.deactivate.emit({value:r,entries:this.activeEntries})}static#e=s=()=>(this.\u0275fac=(()=>{let r;return function(x){return(r||(r=i.xGo(g)))(x||g)}})(),this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-charts-bar-vertical"]],contentQueries:function(y,x,R){if(1&y&&i.wni(R,w3,5),2&y){let ue;i.mGM(ue=i.lsd())&&(x.tooltipTemplate=ue.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",gradient:"gradient",referenceLines:"referenceLines",showRefLines:"showRefLines",showRefLabels:"showRefLabels",showGridLines:"showGridLines",activeEntries:"activeEntries",schemeType:"schemeType",trimXAxisTicks:"trimXAxisTicks",trimYAxisTicks:"trimYAxisTicks",rotateXAxisTicks:"rotateXAxisTicks",maxXAxisTickLength:"maxXAxisTickLength",maxYAxisTickLength:"maxYAxisTickLength",xAxisTickFormatting:"xAxisTickFormatting",yAxisTickFormatting:"yAxisTickFormatting",xAxisTicks:"xAxisTicks",yAxisTicks:"yAxisTicks",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",yScaleMin:"yScaleMin",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},standalone:!1,features:[i.Vt3,i.OA$],decls:5,vars:25,consts:[[3,"legendLabelClick","legendLabelActivate","legendLabelDeactivate","view","showLegend","legendOptions","activeEntries","animations"],[1,"bar-chart","chart"],["ngx-charts-x-axis","",3,"xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","referenceLines","showRefLines","showRefLabels","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-series-vertical","",3,"activate","deactivate","select","dataLabelHeightChanged","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","activeEntries","roundEdges","animations","noBarWhenZero"],["ngx-charts-x-axis","",3,"dimensionsChanged","xScale","dims","showGridLines","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks"],["ngx-charts-y-axis","",3,"dimensionsChanged","yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","referenceLines","showRefLines","showRefLabels","wrapTicks"]],template:function(y,x){1&y&&(i.j41(0,"ngx-charts-chart",0),i.bIt("legendLabelClick",function(ue){return x.onClick(ue)})("legendLabelActivate",function(ue){return x.onActivate(ue,!0)})("legendLabelDeactivate",function(ue){return x.onDeactivate(ue,!0)}),d.qSk(),i.j41(1,"g",1),i.DNE(2,Xu,1,12,"g",2)(3,Cm,1,13,"g",3),i.j41(4,"g",4),i.bIt("activate",function(ue){return x.onActivate(ue)})("deactivate",function(ue){return x.onDeactivate(ue)})("select",function(ue){return x.onClick(ue)})("dataLabelHeightChanged",function(ue){return x.onDataLabelMaxHeightChanged(ue)}),i.k0s()()()),2&y&&(i.Y8G("view",i.l_i(22,l1,x.width,x.height))("showLegend",x.legend)("legendOptions",x.legendOptions)("activeEntries",x.activeEntries)("animations",x.animations),i.R7$(),i.BMQ("transform",x.transform),i.R7$(),i.Y8G("ngIf",x.xAxis),i.R7$(),i.Y8G("ngIf",x.yAxis),i.R7$(),i.Y8G("xScale",x.xScale)("yScale",x.yScale)("colors",x.colors)("series",x.results)("dims",x.dims)("gradient",x.gradient)("tooltipDisabled",x.tooltipDisabled)("tooltipTemplate",x.tooltipTemplate)("showDataLabel",x.showDataLabel)("dataLabelFormatting",x.dataLabelFormatting)("activeEntries",x.activeEntries)("roundEdges",x.roundEdges)("animations",x.animations)("noBarWhenZero",x.noBarWhenZero))},dependencies:[T.bT,i4,lh,ih,Vm],styles:[Cl],encapsulation:2,changeDetection:0}))}return s(),g})(),bp=(()=>{var s;class g extends h0{constructor(){super(...arguments),this.legend=!1,this.legendTitle="Legend",this.legendPosition=Ac.Right,this.tooltipDisabled=!1,this.scaleType=ma.Ordinal,this.showGridLines=!0,this.activeEntries=[],this.schemeType=ma.Ordinal,this.trimXAxisTicks=!0,this.trimYAxisTicks=!0,this.rotateXAxisTicks=!0,this.maxXAxisTickLength=16,this.maxYAxisTickLength=16,this.groupPadding=16,this.barPadding=8,this.roundDomains=!1,this.roundEdges=!0,this.showDataLabel=!1,this.noBarWhenZero=!0,this.wrapTicks=!1,this.activate=new i.bkB,this.deactivate=new i.bkB,this.margin=[10,20,10,20],this.xAxisHeight=0,this.yAxisWidth=0,this.dataLabelMaxHeight={negative:0,positive:0},this.isSSR=!1,this.barOrientation=Qr,this.trackBy=(r,y)=>y.name}ngOnInit(){(0,w.Vy)(this.platformId)&&(this.isSSR=!0)}update(){super.update(),this.showDataLabel||(this.dataLabelMaxHeight={negative:0,positive:0}),this.margin=[10+this.dataLabelMaxHeight.positive,20,10+this.dataLabelMaxHeight.negative,20],this.dims=Fm({width:this.width,height:this.height,margins:this.margin,showXAxis:this.xAxis,showYAxis:this.yAxis,xAxisHeight:this.xAxisHeight,yAxisWidth:this.yAxisWidth,showXLabel:this.showXAxisLabel,showYLabel:this.showYAxisLabel,showLegend:this.legend,legendType:this.schemeType,legendPosition:this.legendPosition}),this.showDataLabel&&(this.dims.height-=this.dataLabelMaxHeight.negative),this.formatDates(),this.groupDomain=this.getGroupDomain(),this.innerDomain=this.getInnerDomain(),this.valueDomain=this.getValueDomain(),this.groupScale=this.getGroupScale(),this.innerScale=this.getInnerScale(),this.valueScale=this.getValueScale(),this.setColors(),this.legendOptions=this.getLegendOptions(),this.transform=`translate(${this.dims.xOffset} , ${this.margin[0]+this.dataLabelMaxHeight.negative})`}onDataLabelMaxHeightChanged(r,y){r.size.negative?this.dataLabelMaxHeight.negative=Math.max(this.dataLabelMaxHeight.negative,r.size.height):this.dataLabelMaxHeight.positive=Math.max(this.dataLabelMaxHeight.positive,r.size.height),y===this.results.length-1&&setTimeout(()=>this.update())}getGroupScale(){const r=this.groupDomain.length/(this.dims.height/this.groupPadding+1);return Pc().rangeRound([0,this.dims.width]).paddingInner(r).paddingOuter(r/2).domain(this.groupDomain)}getInnerScale(){const r=this.groupScale.bandwidth(),y=this.innerDomain.length/(r/this.barPadding+1);return Pc().rangeRound([0,r]).paddingInner(y).domain(this.innerDomain)}getValueScale(){const r=lc().range([this.dims.height,0]).domain(this.valueDomain);return this.roundDomains?r.nice():r}getGroupDomain(){const r=[];for(const y of this.results)r.includes(y.label)||r.push(y.label);return r}getInnerDomain(){const r=[];for(const y of this.results)for(const x of y.series)r.includes(x.label)||r.push(x.label);return r}getValueDomain(){const r=[];for(const R of this.results)for(const ue of R.series)r.includes(ue.value)||r.push(ue.value);return[Math.min(0,...r),this.yScaleMax?Math.max(this.yScaleMax,...r):Math.max(0,...r)]}groupTransform(r){return`translate(${this.groupScale(r.label)}, 0)`}onClick(r,y){y&&(r.series=y.name),this.select.emit(r)}setColors(){let r;r=this.schemeType===ma.Ordinal?this.innerDomain:this.valueDomain,this.colors=new c4(this.scheme,this.schemeType,r,this.customColors)}getLegendOptions(){const r={scaleType:this.schemeType,colors:void 0,domain:[],title:void 0,position:this.legendPosition};return r.scaleType===ma.Ordinal?(r.domain=this.innerDomain,r.colors=this.colors,r.title=this.legendTitle):(r.domain=this.valueDomain,r.colors=this.colors.scale),r}updateYAxisWidth({width:r}){this.yAxisWidth=r,this.update()}updateXAxisHeight({height:r}){this.xAxisHeight=r,this.update()}onActivate(r,y,x=!1){const R=Object.assign({},r);y&&(R.series=y.name);const ue=this.results.map(xt=>xt.series).flat().filter(xt=>x?xt.label===R.name:xt.name===R.name&&xt.series===R.series);this.activeEntries=[...ue],this.activate.emit({value:R,entries:this.activeEntries})}onDeactivate(r,y,x=!1){const R=Object.assign({},r);y&&(R.series=y.name),this.activeEntries=this.activeEntries.filter(ue=>x?ue.label!==R.name:!(ue.name===R.name&&ue.series===R.series)),this.deactivate.emit({value:R,entries:this.activeEntries})}static#e=s=()=>(this.\u0275fac=(()=>{let r;return function(x){return(r||(r=i.xGo(g)))(x||g)}})(),this.\u0275cmp=i.VBU({type:g,selectors:[["ngx-charts-bar-vertical-2d"]],contentQueries:function(y,x,R){if(1&y&&i.wni(R,w3,5),2&y){let ue;i.mGM(ue=i.lsd())&&(x.tooltipTemplate=ue.first)}},inputs:{legend:"legend",legendTitle:"legendTitle",legendPosition:"legendPosition",xAxis:"xAxis",yAxis:"yAxis",showXAxisLabel:"showXAxisLabel",showYAxisLabel:"showYAxisLabel",xAxisLabel:"xAxisLabel",yAxisLabel:"yAxisLabel",tooltipDisabled:"tooltipDisabled",scaleType:"scaleType",gradient:"gradient",showGridLines:"showGridLines",activeEntries:"activeEntries",schemeType:"schemeType",trimXAxisTicks:"trimXAxisTicks",trimYAxisTicks:"trimYAxisTicks",rotateXAxisTicks:"rotateXAxisTicks",maxXAxisTickLength:"maxXAxisTickLength",maxYAxisTickLength:"maxYAxisTickLength",xAxisTickFormatting:"xAxisTickFormatting",yAxisTickFormatting:"yAxisTickFormatting",xAxisTicks:"xAxisTicks",yAxisTicks:"yAxisTicks",groupPadding:"groupPadding",barPadding:"barPadding",roundDomains:"roundDomains",roundEdges:"roundEdges",yScaleMax:"yScaleMax",showDataLabel:"showDataLabel",dataLabelFormatting:"dataLabelFormatting",noBarWhenZero:"noBarWhenZero",wrapTicks:"wrapTicks"},outputs:{activate:"activate",deactivate:"deactivate"},standalone:!1,features:[i.Vt3],decls:7,vars:18,consts:[[3,"legendLabelActivate","legendLabelDeactivate","legendLabelClick","view","showLegend","legendOptions","activeEntries","animations"],[1,"bar-chart","chart"],["ngx-charts-grid-panel-series","",3,"xScale","yScale","data","dims","orient"],["ngx-charts-x-axis","",3,"xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks","dimensionsChanged",4,"ngIf"],["ngx-charts-y-axis","",3,"yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks","dimensionsChanged",4,"ngIf"],[4,"ngIf"],["ngx-charts-x-axis","",3,"dimensionsChanged","xScale","dims","showLabel","labelText","trimTicks","rotateTicks","maxTickLength","tickFormatting","ticks","xAxisOffset","wrapTicks"],["ngx-charts-y-axis","",3,"dimensionsChanged","yScale","dims","showGridLines","showLabel","labelText","trimTicks","maxTickLength","tickFormatting","ticks","wrapTicks"],["ngx-charts-series-vertical","",3,"activeEntries","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","seriesName","roundEdges","animations","noBarWhenZero","select","activate","deactivate","dataLabelHeightChanged",4,"ngFor","ngForOf","ngForTrackBy"],["ngx-charts-series-vertical","",3,"select","activate","deactivate","dataLabelHeightChanged","activeEntries","xScale","yScale","colors","series","dims","gradient","tooltipDisabled","tooltipTemplate","showDataLabel","dataLabelFormatting","seriesName","roundEdges","animations","noBarWhenZero"]],template:function(y,x){1&y&&(i.j41(0,"ngx-charts-chart",0),i.bIt("legendLabelActivate",function(ue){return x.onActivate(ue,void 0,!0)})("legendLabelDeactivate",function(ue){return x.onDeactivate(ue,void 0,!0)})("legendLabelClick",function(ue){return x.onClick(ue)}),d.qSk(),i.j41(1,"g",1),i.nrm(2,"g",2),i.DNE(3,Ku,1,11,"g",3)(4,j3,1,10,"g",4)(5,H3,2,2,"g",5)(6,n0,2,2,"g",5),i.k0s()()),2&y&&(i.Y8G("view",i.l_i(15,l1,x.width,x.height))("showLegend",x.legend)("legendOptions",x.legendOptions)("activeEntries",x.activeEntries)("animations",x.animations),i.R7$(),i.BMQ("transform",x.transform),i.R7$(),i.Y8G("xScale",x.groupScale)("yScale",x.valueScale)("data",x.results)("dims",x.dims)("orient",x.barOrientation.Vertical),i.R7$(),i.Y8G("ngIf",x.xAxis),i.R7$(),i.Y8G("ngIf",x.yAxis),i.R7$(),i.Y8G("ngIf",!x.isSSR),i.R7$(),i.Y8G("ngIf",x.isSSR))},dependencies:[T.Sq,T.bT,i4,lh,ih,Om,Vm],styles:[Cl],encapsulation:2,data:{animation:[(0,L.hZ)("animationState",[(0,L.kY)(":leave",[(0,L.iF)({opacity:1,transform:"*"}),(0,L.i0)(500,(0,L.iF)({opacity:0,transform:"scale(0)"}))])])]},changeDetection:0}))}return s(),g})(),Um=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),mh=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),fh=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),gh=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),Tp=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})();Math;let p1=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),Dp=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl,p1,Tp]}))}return s(),g})(),yo=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),yh=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),bh=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl,p1,Um]}))}return s(),g})(),td=(()=>{var s;class g{static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl]}))}return s(),g})(),p4=(()=>{var s;class g{constructor(){!function Ch(){typeof SVGElement<"u"&&typeof SVGElement.prototype.contains>"u"&&(SVGElement.prototype.contains=HTMLDivElement.prototype.contains)}()}static#e=s=()=>(this.\u0275fac=function(y){return new(y||g)},this.\u0275mod=i.$C({type:g}),this.\u0275inj=d.G2t({imports:[hl,Bm,Um,mh,fh,gh,td,Tp,Dp,yo,p1,yh,bh]}))}return s(),g})()},8288(Zt,pe,l){"use strict";l.d(pe,{Um:()=>A,XK:()=>Pe});var i=l(467),d=l(2200),v=l(2615),T=l(3664),w=l(7705),e=l(8314);function O(le,Ce){if(1&le&&T.nrm(0,"canvas",1),2&le){const Ae=T.XpG();T.HbH(Ae.styleClass),T.Y8G("qrCode",Ae.value)("qrCodeErrorCorrectionLevel",Ae.errorCorrectionLevel)("qrCodeCenterImageSrc",Ae.centerImageSrc)("qrCodeCenterImageWidth",Ae.centerImageSize)("qrCodeCenterImageHeight",Ae.centerImageSize)("qrCodeMargin",Ae.margin)("qrScale",Ae.scale)("qrCodeMaskPattern",Ae.maskPattern)("width",Ae.size)("height",Ae.size)("ngStyle",Ae.style)("darkColor",Ae.darkColor)("lightColor",Ae.lightColor)}}const f=/^#(?:[0-9a-fA-F]{3,4}){1,2}$/,u=/^[0-9.]+$/;let L=(()=>{var le;class Ce{constructor(j){this.viewContainerRef=j,this.errorCorrectionLevel=Ce.DEFAULT_ERROR_CORRECTION_LEVEL,this.darkColor="#000000FF",this.lightColor="#FFFFFFFF",this.margin=16}ngOnChanges(){var j=this;return(0,i.A)(function*(){if(!j.value)return;j.version&&j.version>40?(console.warn("[qrCode] max version is 40, clamping"),j.version=40):j.version&&j.version<1?(console.warn("[qrCode] min version is 1, clamping"),j.version=1):void 0!==j.version&&isNaN(j.version)&&(console.warn("[qrCode] version should be set to a number, defaulting to auto"),j.version=void 0);const W=j.viewContainerRef.element.nativeElement;if(!W)return;const G=W.getContext("2d");G&&G.clearRect(0,0,G.canvas.width,G.canvas.height);const re=j.errorCorrectionLevel??Ce.DEFAULT_ERROR_CORRECTION_LEVEL,xe=j.darkColor&&f.test(j.darkColor)?j.darkColor:void 0,Ee=j.lightColor&&f.test(j.lightColor)?j.lightColor:void 0;(0,w.naY)()&&(!xe&&j.darkColor&&console.error("[ng-qrcode] darkColor set to invalid value, must be RGBA hex color string, eg: #3050A1FF"),!Ee&&j.lightColor&&console.error("[ng-qrcode] lightColor set to invalid value, must be RGBA hex color string, eg: #3050A130")),yield e.toCanvas(W,j.value,{version:j.version,errorCorrectionLevel:re,width:C(j.width),margin:j.margin,scale:j.qrScale,maskPattern:j.qrCodeMaskPattern,color:{dark:xe,light:Ee}});const V=j.centerImageSrc,ce=B(j.centerImageWidth,Ce.DEFAULT_CENTER_IMAGE_SIZE),be=B(j.centerImageHeight,Ce.DEFAULT_CENTER_IMAGE_SIZE);if(V&&G){j.centerImage||(j.centerImage=new Image(ce,be));const ne=j.centerImage;V!==j.centerImage.src&&(ne.src=V),ce!==j.centerImage.width&&(ne.width=ce),be!==j.centerImage.height&&(ne.height=be);const J=()=>{G.drawImage(ne,W.width/2-ce/2,W.height/2-be/2,ce,be)};ne.onload=J,ne.complete&&J()}})()}static#e=le=()=>(this.DEFAULT_ERROR_CORRECTION_LEVEL="M",this.DEFAULT_CENTER_IMAGE_SIZE=40,this.\u0275fac=function(W){return new(W||Ce)(T.rXU(T.c1b))},this.\u0275dir=T.FsC({type:Ce,selectors:[["canvas","qrCode",""]],inputs:{value:[0,"qrCode","value"],version:[0,"qrCodeVersion","version"],errorCorrectionLevel:[0,"qrCodeErrorCorrectionLevel","errorCorrectionLevel"],width:"width",height:"height",darkColor:"darkColor",lightColor:"lightColor",centerImageSrc:[0,"qrCodeCenterImageSrc","centerImageSrc"],centerImageWidth:[0,"qrCodeCenterImageWidth","centerImageWidth"],centerImageHeight:[0,"qrCodeCenterImageHeight","centerImageHeight"],margin:[0,"qrCodeMargin","margin"],qrScale:"qrScale",qrCodeMaskPattern:"qrCodeMaskPattern"},features:[T.OA$]}))}return le(),Ce})();function C(le){if(void 0!==le&&""!==le){if("string"==typeof le){if(!u.test(le))throw new Error(`'${le}' is not a valid number`);return parseFloat(le)}return le}}function B(le,Ce){return void 0===le||""===le?Ce:C(le)}let A=(()=>{var le;class Ce{static#e=le=()=>(this.\u0275fac=function(W){return new(W||Ce)},this.\u0275cmp=T.VBU({type:Ce,selectors:[["qr-code"]],inputs:{value:"value",size:"size",style:"style",styleClass:"styleClass",darkColor:"darkColor",lightColor:"lightColor",errorCorrectionLevel:"errorCorrectionLevel",centerImageSrc:"centerImageSrc",centerImageSize:"centerImageSize",margin:"margin",scale:"scale",maskPattern:"maskPattern"},decls:1,vars:1,consts:[[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","qrScale","qrCodeMaskPattern","width","height","class","ngStyle","darkColor","lightColor"],[3,"qrCode","qrCodeErrorCorrectionLevel","qrCodeCenterImageSrc","qrCodeCenterImageWidth","qrCodeCenterImageHeight","qrCodeMargin","qrScale","qrCodeMaskPattern","width","height","ngStyle","darkColor","lightColor"]],template:function(W,G){1&W&&T.nVh(0,O,1,15,"canvas",0),2&W&&T.vxM(G.value?0:-1)},dependencies:[L,d.MD,d.B3],encapsulation:2}))}return le(),Ce})(),Pe=(()=>{var le;class Ce{static#e=le=()=>(this.\u0275fac=function(W){return new(W||Ce)},this.\u0275mod=T.$C({type:Ce}),this.\u0275inj=v.G2t({imports:[d.MD,A]}))}return le(),Ce})()},497(Zt,pe,l){"use strict";l.d(pe,{kU:()=>Me,ZF:()=>ut,Ld:()=>Be,U$:()=>Ot});var i=l(1413),d=l(3726),v=l(7786),T=l(3798),w=l(6977),e=l(3294),O=l(3703),f=l(3664),u=l(7705),L=l(2615),C=l(2200),B=l(177);function A(se){return getComputedStyle(se)}function Pe(se,We){for(var bt in We){var tn=We[bt];"number"==typeof tn&&(tn+="px"),se.style[bt]=tn}return se}function le(se){var We=document.createElement("div");return We.className=se,We}var Ce=typeof Element<"u"&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector);function Ae(se,We){if(!Ce)throw new Error("No element matching method supported");return Ce.call(se,We)}function j(se){se.remove?se.remove():se.parentNode&&se.parentNode.removeChild(se)}function W(se,We){return Array.prototype.filter.call(se.children,function(bt){return Ae(bt,We)})}var G_element_thumb=function(se){return"ps__thumb-"+se},G_element_rail=function(se){return"ps__rail-"+se},G_element_consuming="ps__child--consume",G_state_focus="ps--focus",G_state_clicking="ps--clicking",G_state_active=function(se){return"ps--active-"+se},G_state_scrolling=function(se){return"ps--scrolling-"+se},re={x:null,y:null};function xe(se,We){var bt=se.element.classList,tn=G_state_scrolling(We);bt.contains(tn)?clearTimeout(re[We]):bt.add(tn)}function Ee(se,We){re[We]=setTimeout(function(){return se.isAlive&&se.element.classList.remove(G_state_scrolling(We))},se.settings.scrollingThreshold)}var ce=function(We){this.element=We,this.handlers={}},be={isEmpty:{configurable:!0}};ce.prototype.bind=function(We,bt){typeof this.handlers[We]>"u"&&(this.handlers[We]=[]),this.handlers[We].push(bt),this.element.addEventListener(We,bt,!1)},ce.prototype.unbind=function(We,bt){var tn=this;this.handlers[We]=this.handlers[We].filter(function(on){return!(!bt||on===bt)||(tn.element.removeEventListener(We,on,!1),!1)})},ce.prototype.unbindAll=function(){for(var We in this.handlers)this.unbind(We)},be.isEmpty.get=function(){var se=this;return Object.keys(this.handlers).every(function(We){return 0===se.handlers[We].length})},Object.defineProperties(ce.prototype,be);var ne=function(){this.eventElements=[]};function J(se){if("function"==typeof window.CustomEvent)return new CustomEvent(se);var We=document.createEvent("CustomEvent");return We.initCustomEvent(se,!1,!1,void 0),We}function De(se,We,bt,tn,on){var un;if(void 0===tn&&(tn=!0),void 0===on&&(on=!1),"top"===We)un=["contentHeight","containerHeight","scrollTop","y","up","down"];else{if("left"!==We)throw new Error("A proper axis should be provided");un=["contentWidth","containerWidth","scrollLeft","x","left","right"]}!function Re(se,We,bt,tn,on){var un=bt[0],Nt=bt[1],dn=bt[2],xn=bt[3],Jn=bt[4],xi=bt[5];void 0===tn&&(tn=!0),void 0===on&&(on=!1);var Yi=se.element;se.reach[xn]=null,Yi[dn]<1&&(se.reach[xn]="start"),Yi[dn]>se[un]-se[Nt]-1&&(se.reach[xn]="end"),We&&(Yi.dispatchEvent(J("ps-scroll-"+xn)),We<0?Yi.dispatchEvent(J("ps-scroll-"+Jn)):We>0&&Yi.dispatchEvent(J("ps-scroll-"+xi)),tn&&function V(se,We){xe(se,We),Ee(se,We)}(se,xn)),se.reach[xn]&&(We||on)&&Yi.dispatchEvent(J("ps-"+xn+"-reach-"+se.reach[xn]))}(se,bt,un,tn,on)}function Xe(se){return parseInt(se,10)||0}ne.prototype.eventElement=function(We){var bt=this.eventElements.filter(function(tn){return tn.element===We})[0];return bt||(bt=new ce(We),this.eventElements.push(bt)),bt},ne.prototype.bind=function(We,bt,tn){this.eventElement(We).bind(bt,tn)},ne.prototype.unbind=function(We,bt,tn){var on=this.eventElement(We);on.unbind(bt,tn),on.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(on),1)},ne.prototype.unbindAll=function(){this.eventElements.forEach(function(We){return We.unbindAll()}),this.eventElements=[]},ne.prototype.once=function(We,bt,tn){var on=this.eventElement(We),un=function(Nt){on.unbind(bt,un),tn(Nt)};on.bind(bt,un)};var Dt={isWebKit:typeof document<"u"&&"WebkitAppearance"in document.documentElement.style,supportsTouch:typeof window<"u"&&("ontouchstart"in window||"maxTouchPoints"in window.navigator&&window.navigator.maxTouchPoints>0||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:typeof navigator<"u"&&navigator.msMaxTouchPoints,isChrome:typeof navigator<"u"&&/Chrome/i.test(navigator&&navigator.userAgent)};function lt(se){var We=se.element,bt=Math.floor(We.scrollTop),tn=We.getBoundingClientRect();se.containerWidth=Math.round(tn.width),se.containerHeight=Math.round(tn.height),se.contentWidth=We.scrollWidth,se.contentHeight=We.scrollHeight,We.contains(se.scrollbarXRail)||(W(We,G_element_rail("x")).forEach(function(on){return j(on)}),We.appendChild(se.scrollbarXRail)),We.contains(se.scrollbarYRail)||(W(We,G_element_rail("y")).forEach(function(on){return j(on)}),We.appendChild(se.scrollbarYRail)),!se.settings.suppressScrollX&&se.containerWidth+se.settings.scrollXMarginOffset=se.railXWidth-se.scrollbarXWidth&&(se.scrollbarXLeft=se.railXWidth-se.scrollbarXWidth),se.scrollbarYTop>=se.railYHeight-se.scrollbarYHeight&&(se.scrollbarYTop=se.railYHeight-se.scrollbarYHeight),function te(se,We){var bt={width:We.railXWidth},tn=Math.floor(se.scrollTop);bt.left=We.isRtl?We.negativeScrollAdjustment+se.scrollLeft+We.containerWidth-We.contentWidth:se.scrollLeft,We.isScrollbarXUsingBottom?bt.bottom=We.scrollbarXBottom-tn:bt.top=We.scrollbarXTop+tn,Pe(We.scrollbarXRail,bt);var on={top:tn,height:We.railYHeight};We.isScrollbarYUsingRight?on.right=We.isRtl?We.contentWidth-(We.negativeScrollAdjustment+se.scrollLeft)-We.scrollbarYRight-We.scrollbarYOuterWidth-9:We.scrollbarYRight-se.scrollLeft:on.left=We.isRtl?We.negativeScrollAdjustment+se.scrollLeft+2*We.containerWidth-We.contentWidth-We.scrollbarYLeft-We.scrollbarYOuterWidth:We.scrollbarYLeft+se.scrollLeft,Pe(We.scrollbarYRail,on),Pe(We.scrollbarX,{left:We.scrollbarXLeft,width:We.scrollbarXWidth-We.railBorderXWidth}),Pe(We.scrollbarY,{top:We.scrollbarYTop,height:We.scrollbarYHeight-We.railBorderYWidth})}(We,se),se.scrollbarXActive?We.classList.add(G_state_active("x")):(We.classList.remove(G_state_active("x")),se.scrollbarXWidth=0,se.scrollbarXLeft=0,We.scrollLeft=!0===se.isRtl?se.contentWidth:0),se.scrollbarYActive?We.classList.add(G_state_active("y")):(We.classList.remove(G_state_active("y")),se.scrollbarYHeight=0,se.scrollbarYTop=0,We.scrollTop=0)}function Le(se,We){return se.settings.minScrollbarLength&&(We=Math.max(We,se.settings.minScrollbarLength)),se.settings.maxScrollbarLength&&(We=Math.min(We,se.settings.maxScrollbarLength)),We}function F(se,We){var bt=We[0],tn=We[1],on=We[2],un=We[3],Nt=We[4],dn=We[5],xn=We[6],Jn=We[7],xi=We[8],Yi=se.element,Tt=null,At=null,we=null;function ae(_n){_n.touches&&_n.touches[0]&&(_n[on]=_n.touches[0].pageY),Yi[xn]=Tt+we*(_n[on]-At),xe(se,Jn),lt(se),_n.stopPropagation(),_n.type.startsWith("touch")&&_n.changedTouches.length>1&&_n.preventDefault()}function Lt(){Ee(se,Jn),se[xi].classList.remove(G_state_clicking),se.event.unbind(se.ownerDocument,"mousemove",ae)}function Ht(_n,fi){Tt=Yi[xn],fi&&_n.touches&&(_n[on]=_n.touches[0].pageY),At=_n[on],we=(se[tn]-se[bt])/(se[un]-se[dn]),fi?se.event.bind(se.ownerDocument,"touchmove",ae):(se.event.bind(se.ownerDocument,"mousemove",ae),se.event.once(se.ownerDocument,"mouseup",Lt),_n.preventDefault()),se[xi].classList.add(G_state_clicking),_n.stopPropagation()}se.event.bind(se[Nt],"mousedown",function(_n){Ht(_n)}),se.event.bind(se[Nt],"touchstart",function(_n){Ht(_n,!0)})}var Vt={"click-rail":function ie(se){se.event.bind(se.scrollbarY,"mousedown",function(bt){return bt.stopPropagation()}),se.event.bind(se.scrollbarYRail,"mousedown",function(bt){var tn=bt.pageY-window.pageYOffset-se.scrollbarYRail.getBoundingClientRect().top;se.element.scrollTop+=(tn>se.scrollbarYTop?1:-1)*se.containerHeight,lt(se),bt.stopPropagation()}),se.event.bind(se.scrollbarX,"mousedown",function(bt){return bt.stopPropagation()}),se.event.bind(se.scrollbarXRail,"mousedown",function(bt){var tn=bt.pageX-window.pageXOffset-se.scrollbarXRail.getBoundingClientRect().left;se.element.scrollLeft+=(tn>se.scrollbarXLeft?1:-1)*se.containerWidth,lt(se),bt.stopPropagation()})},"drag-thumb":function P(se){F(se,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),F(se,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])},keyboard:function ve(se){var We=se.element;se.event.bind(se.ownerDocument,"keydown",function(un){if(!(un.isDefaultPrevented&&un.isDefaultPrevented()||un.defaultPrevented)&&(Ae(We,":hover")||Ae(se.scrollbarX,":focus")||Ae(se.scrollbarY,":focus"))){var Nt=document.activeElement?document.activeElement:se.ownerDocument.activeElement;if(Nt){if("IFRAME"===Nt.tagName)Nt=Nt.contentDocument.activeElement;else for(;Nt.shadowRoot;)Nt=Nt.shadowRoot.activeElement;if(function _e(se){return Ae(se,"input,[contenteditable]")||Ae(se,"select,[contenteditable]")||Ae(se,"textarea,[contenteditable]")||Ae(se,"button,[contenteditable]")}(Nt))return}var dn=0,xn=0;switch(un.which){case 37:dn=un.metaKey?-se.contentWidth:un.altKey?-se.containerWidth:-30;break;case 38:xn=un.metaKey?se.contentHeight:un.altKey?se.containerHeight:30;break;case 39:dn=un.metaKey?se.contentWidth:un.altKey?se.containerWidth:30;break;case 40:xn=un.metaKey?-se.contentHeight:un.altKey?-se.containerHeight:-30;break;case 32:xn=un.shiftKey?se.containerHeight:-se.containerHeight;break;case 33:xn=se.containerHeight;break;case 34:xn=-se.containerHeight;break;case 36:xn=se.contentHeight;break;case 35:xn=-se.contentHeight;break;default:return}se.settings.suppressScrollX&&0!==dn||se.settings.suppressScrollY&&0!==xn||(We.scrollTop-=xn,We.scrollLeft+=dn,lt(se),function on(un,Nt){var dn=Math.floor(We.scrollTop);if(0===un){if(!se.scrollbarYActive)return!1;if(0===dn&&Nt>0||dn>=se.contentHeight-se.containerHeight&&Nt<0)return!se.settings.wheelPropagation}var xn=We.scrollLeft;if(0===Nt){if(!se.scrollbarXActive)return!1;if(0===xn&&un<0||xn>=se.contentWidth-se.containerWidth&&un>0)return!se.settings.wheelPropagation}return!0}(dn,xn)&&un.preventDefault())}})},wheel:function H(se){var We=se.element;function un(Nt){var dn=function tn(Nt){var dn=Nt.deltaX,xn=-1*Nt.deltaY;return(typeof dn>"u"||typeof xn>"u")&&(dn=-1*Nt.wheelDeltaX/6,xn=Nt.wheelDeltaY/6),Nt.deltaMode&&1===Nt.deltaMode&&(dn*=10,xn*=10),dn!=dn&&xn!=xn&&(dn=0,xn=Nt.wheelDelta),Nt.shiftKey?[-xn,-dn]:[dn,xn]}(Nt),xn=dn[0],Jn=dn[1];if(!function on(Nt,dn,xn){if(!Dt.isWebKit&&We.querySelector("select:focus"))return!0;if(!We.contains(Nt))return!1;for(var Jn=Nt;Jn&&Jn!==We;){if(Jn.classList.contains(G_element_consuming))return!0;var xi=A(Jn);if(xn&&xi.overflowY.match(/(scroll|auto)/)){var Yi=Jn.scrollHeight-Jn.clientHeight;if(Yi>0&&(Jn.scrollTop>0&&xn<0||Jn.scrollTop0))return!0}if(dn&&xi.overflowX.match(/(scroll|auto)/)){var Tt=Jn.scrollWidth-Jn.clientWidth;if(Tt>0&&(Jn.scrollLeft>0&&dn<0||Jn.scrollLeft0))return!0}Jn=Jn.parentNode}return!1}(Nt.target,xn,Jn)){var xi=!1;se.settings.useBothWheelAxes?se.scrollbarYActive&&!se.scrollbarXActive?(Jn?We.scrollTop-=Jn*se.settings.wheelSpeed:We.scrollTop+=xn*se.settings.wheelSpeed,xi=!0):se.scrollbarXActive&&!se.scrollbarYActive&&(xn?We.scrollLeft+=xn*se.settings.wheelSpeed:We.scrollLeft-=Jn*se.settings.wheelSpeed,xi=!0):(We.scrollTop-=Jn*se.settings.wheelSpeed,We.scrollLeft+=xn*se.settings.wheelSpeed),lt(se),xi=xi||function bt(Nt,dn){var xn=Math.floor(We.scrollTop),Jn=0===We.scrollTop,xi=xn+We.offsetHeight===We.scrollHeight,Yi=0===We.scrollLeft,Tt=We.scrollLeft+We.offsetWidth===We.scrollWidth;return!(Math.abs(dn)>Math.abs(Nt)?Jn||xi:Yi||Tt)||!se.settings.wheelPropagation}(xn,Jn),xi&&!Nt.ctrlKey&&(Nt.stopPropagation(),Nt.preventDefault())}}typeof window.onwheel<"u"?se.event.bind(We,"wheel",un):typeof window.onmousewheel<"u"&&se.event.bind(We,"mousewheel",un)},touch:function $(se){if(Dt.supportsTouch||Dt.supportsIePointer){var We=se.element,on={},un=0,Nt={},dn=null;Dt.supportsTouch?(se.event.bind(We,"touchstart",xi),se.event.bind(We,"touchmove",Tt),se.event.bind(We,"touchend",At)):Dt.supportsIePointer&&(window.PointerEvent?(se.event.bind(We,"pointerdown",xi),se.event.bind(We,"pointermove",Tt),se.event.bind(We,"pointerup",At)):window.MSPointerEvent&&(se.event.bind(We,"MSPointerDown",xi),se.event.bind(We,"MSPointerMove",Tt),se.event.bind(We,"MSPointerUp",At)))}function tn(we,ae){We.scrollTop-=ae,We.scrollLeft-=we,lt(se)}function xn(we){return we.targetTouches?we.targetTouches[0]:we}function Jn(we){return!(we.pointerType&&"pen"===we.pointerType&&0===we.buttons||!(we.targetTouches&&1===we.targetTouches.length||we.pointerType&&"mouse"!==we.pointerType&&we.pointerType!==we.MSPOINTER_TYPE_MOUSE))}function xi(we){if(Jn(we)){var ae=xn(we);on.pageX=ae.pageX,on.pageY=ae.pageY,un=(new Date).getTime(),null!==dn&&clearInterval(dn)}}function Tt(we){if(Jn(we)){var ae=xn(we),Lt={pageX:ae.pageX,pageY:ae.pageY},Ht=Lt.pageX-on.pageX,_n=Lt.pageY-on.pageY;if(function Yi(we,ae,Lt){if(!We.contains(we))return!1;for(var Ht=we;Ht&&Ht!==We;){if(Ht.classList.contains(G_element_consuming))return!0;var _n=A(Ht);if(Lt&&_n.overflowY.match(/(scroll|auto)/)){var fi=Ht.scrollHeight-Ht.clientHeight;if(fi>0&&(Ht.scrollTop>0&&Lt<0||Ht.scrollTop0))return!0}if(ae&&_n.overflowX.match(/(scroll|auto)/)){var bi=Ht.scrollWidth-Ht.clientWidth;if(bi>0&&(Ht.scrollLeft>0&&ae<0||Ht.scrollLeft0))return!0}Ht=Ht.parentNode}return!1}(we.target,Ht,_n))return;tn(Ht,_n),on=Lt;var fi=(new Date).getTime(),bi=fi-un;bi>0&&(Nt.x=Ht/bi,Nt.y=_n/bi,un=fi),function bt(we,ae){var Lt=Math.floor(We.scrollTop),Ht=We.scrollLeft,_n=Math.abs(we),fi=Math.abs(ae);if(fi>_n){if(ae<0&&Lt===se.contentHeight-se.containerHeight||ae>0&&0===Lt)return 0===window.scrollY&&ae>0&&Dt.isChrome}else if(_n>fi&&(we<0&&Ht===se.contentWidth-se.containerWidth||we>0&&0===Ht))return!0;return!0}(Ht,_n)&&we.preventDefault()}}function At(){se.settings.swipeEasing&&(clearInterval(dn),dn=setInterval(function(){se.isInitialized?clearInterval(dn):Nt.x||Nt.y?Math.abs(Nt.x)<.01&&Math.abs(Nt.y)<.01?clearInterval(dn):se.element?(tn(30*Nt.x,30*Nt.y),Nt.x*=.8,Nt.y*=.8):clearInterval(dn):clearInterval(dn)},10))}}},St=function(We,bt){var tn=this;if(void 0===bt&&(bt={}),"string"==typeof We&&(We=document.querySelector(We)),!We||!We.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");for(var on in this.element=We,We.classList.add("ps"),this.settings={handlers:["click-rail","drag-thumb","keyboard","wheel","touch"],maxScrollbarLength:null,minScrollbarLength:null,scrollingThreshold:1e3,scrollXMarginOffset:0,scrollYMarginOffset:0,suppressScrollX:!1,suppressScrollY:!1,swipeEasing:!0,useBothWheelAxes:!1,wheelPropagation:!0,wheelSpeed:1},bt)this.settings[on]=bt[on];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var xi,Jn,un=function(){return We.classList.add(G_state_focus)},Nt=function(){return We.classList.remove(G_state_focus)};this.isRtl="rtl"===A(We).direction,!0===this.isRtl&&We.classList.add("ps__rtl"),this.isNegativeScroll=(Jn=We.scrollLeft,We.scrollLeft=-1,xi=We.scrollLeft<0,We.scrollLeft=Jn,xi),this.negativeScrollAdjustment=this.isNegativeScroll?We.scrollWidth-We.clientWidth:0,this.event=new ne,this.ownerDocument=We.ownerDocument||document,this.scrollbarXRail=le(G_element_rail("x")),We.appendChild(this.scrollbarXRail),this.scrollbarX=le(G_element_thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",un),this.event.bind(this.scrollbarX,"blur",Nt),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var dn=A(this.scrollbarXRail);this.scrollbarXBottom=parseInt(dn.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=Xe(dn.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=Xe(dn.borderLeftWidth)+Xe(dn.borderRightWidth),Pe(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=Xe(dn.marginLeft)+Xe(dn.marginRight),Pe(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=le(G_element_rail("y")),We.appendChild(this.scrollbarYRail),this.scrollbarY=le(G_element_thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",un),this.event.bind(this.scrollbarY,"blur",Nt),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var xn=A(this.scrollbarYRail);this.scrollbarYRight=parseInt(xn.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=Xe(xn.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?function he(se){var We=A(se);return Xe(We.width)+Xe(We.paddingLeft)+Xe(We.paddingRight)+Xe(We.borderLeftWidth)+Xe(We.borderRightWidth)}(this.scrollbarY):null,this.railBorderYWidth=Xe(xn.borderTopWidth)+Xe(xn.borderBottomWidth),Pe(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=Xe(xn.marginTop)+Xe(xn.marginBottom),Pe(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:We.scrollLeft<=0?"start":We.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:We.scrollTop<=0?"start":We.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(Jn){return Vt[Jn](tn)}),this.lastScrollTop=Math.floor(We.scrollTop),this.lastScrollLeft=We.scrollLeft,this.event.bind(this.element,"scroll",function(Jn){return tn.onScroll(Jn)}),lt(this)};St.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,Pe(this.scrollbarXRail,{display:"block"}),Pe(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=Xe(A(this.scrollbarXRail).marginLeft)+Xe(A(this.scrollbarXRail).marginRight),this.railYMarginHeight=Xe(A(this.scrollbarYRail).marginTop)+Xe(A(this.scrollbarYRail).marginBottom),Pe(this.scrollbarXRail,{display:"none"}),Pe(this.scrollbarYRail,{display:"none"}),lt(this),De(this,"top",0,!1,!0),De(this,"left",0,!1,!0),Pe(this.scrollbarXRail,{display:""}),Pe(this.scrollbarYRail,{display:""}))},St.prototype.onScroll=function(We){this.isAlive&&(lt(this),De(this,"top",this.element.scrollTop-this.lastScrollTop),De(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)},St.prototype.destroy=function(){this.isAlive&&(this.event.unbindAll(),j(this.scrollbarX),j(this.scrollbarY),j(this.scrollbarXRail),j(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)},St.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(We){return!We.match(/^ps([-_].+|)$/)}).join(" ")};const ot=St;var nt=function(){if(typeof Map<"u")return Map;function se(We,bt){var tn=-1;return We.some(function(on,un){return on[0]===bt&&(tn=un,!0)}),tn}return function(){function We(){this.__entries__=[]}return Object.defineProperty(We.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),We.prototype.get=function(bt){var tn=se(this.__entries__,bt),on=this.__entries__[tn];return on&&on[1]},We.prototype.set=function(bt,tn){var on=se(this.__entries__,bt);~on?this.__entries__[on][1]=tn:this.__entries__.push([bt,tn])},We.prototype.delete=function(bt){var tn=this.__entries__,on=se(tn,bt);~on&&tn.splice(on,1)},We.prototype.has=function(bt){return!!~se(this.__entries__,bt)},We.prototype.clear=function(){this.__entries__.splice(0)},We.prototype.forEach=function(bt,tn){void 0===tn&&(tn=null);for(var on=0,un=this.__entries__;on0},se.prototype.connect_=function(){!ht||this.connected_||(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),rt?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},se.prototype.disconnect_=function(){!ht||!this.connected_||(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},se.prototype.onTransitionEnd_=function(We){var bt=We.propertyName,tn=void 0===bt?"":bt;Gt.some(function(un){return!!~tn.indexOf(un)})&&this.refresh()},se.getInstance=function(){return this.instance_||(this.instance_=new se),this.instance_},se.instance_=null,se}(),Ft=function(se,We){for(var bt=0,tn=Object.keys(We);bt"u")&&Element instanceof Object){if(!(We instanceof Sn(We).Element))throw new TypeError('parameter 1 is not of type "Element".');var bt=this.observations_;bt.has(We)||(bt.set(We,new kn(We)),this.controller_.addObserver(this),this.controller_.refresh())}},se.prototype.unobserve=function(We){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if(!(typeof Element>"u")&&Element instanceof Object){if(!(We instanceof Sn(We).Element))throw new TypeError('parameter 1 is not of type "Element".');var bt=this.observations_;bt.has(We)&&(bt.delete(We),bt.size||this.controller_.removeObserver(this))}},se.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},se.prototype.gatherActive=function(){var We=this;this.clearActive(),this.observations_.forEach(function(bt){bt.isActive()&&We.activeObservations_.push(bt)})},se.prototype.broadcastActive=function(){if(this.hasActive()){var We=this.callbackCtx_,bt=this.activeObservations_.map(function(tn){return new Ri(tn.target,tn.broadcastRect())});this.callback_.call(We,bt,We),this.clearActive()}},se.prototype.clearActive=function(){this.activeObservations_.splice(0)},se.prototype.hasActive=function(){return this.activeObservations_.length>0},se}(),ee=typeof WeakMap<"u"?new WeakMap:new nt,ye=function(){return function se(We){if(!(this instanceof se))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var bt=cn.getInstance(),tn=new vt(We,bt,this);ee.set(this,tn)}}();["observe","unobserve","disconnect"].forEach(function(se){ye.prototype[se]=function(){var We;return(We=ee.get(this))[se].apply(We,arguments)}});const Se=typeof oe.ResizeObserver<"u"?oe.ResizeObserver:ye,N=["*"];function Z(se,We){if(1&se&&(f.j41(0,"div",3),f.nrm(1,"div",4)(2,"div",5)(3,"div",6)(4,"div",7),f.k0s()),2&se){const bt=f.XpG();f.AVh("ps-at-top",bt.states.top)("ps-at-left",bt.states.left)("ps-at-right",bt.states.right)("ps-at-bottom",bt.states.bottom),f.R7$(),f.AVh("ps-indicator-show",bt.indicatorY&&bt.interaction),f.R7$(),f.AVh("ps-indicator-show",bt.indicatorX&&bt.interaction),f.R7$(),f.AVh("ps-indicator-show",bt.indicatorX&&bt.interaction),f.R7$(),f.AVh("ps-indicator-show",bt.indicatorY&&bt.interaction)}}const Me=new L.nKC("PERFECT_SCROLLBAR_CONFIG");class at{constructor(We,bt,tn,on){this.x=We,this.y=bt,this.w=tn,this.h=on}}class qe{constructor(We,bt){this.x=We,this.y=bt}}const pn=["psScrollY","psScrollX","psScrollUp","psScrollDown","psScrollLeft","psScrollRight","psYReachEnd","psYReachStart","psXReachEnd","psXReachStart"];class Je{constructor(We={}){this.assign(We)}assign(We={}){for(const bt in We)this[bt]=We[bt]}}let Be=(()=>{class se{constructor(bt,tn,on,un,Nt){this.zone=bt,this.differs=tn,this.elementRef=on,this.platformId=un,this.defaults=Nt,this.instance=null,this.ro=null,this.timeout=null,this.animation=null,this.configDiff=null,this.ngDestroy=new i.B,this.disabled=!1,this.psScrollY=new f.bkB,this.psScrollX=new f.bkB,this.psScrollUp=new f.bkB,this.psScrollDown=new f.bkB,this.psScrollLeft=new f.bkB,this.psScrollRight=new f.bkB,this.psYReachEnd=new f.bkB,this.psYReachStart=new f.bkB,this.psXReachEnd=new f.bkB,this.psXReachStart=new f.bkB}ngOnInit(){if(!this.disabled&&(0,B.UE)(this.platformId)){const bt=new Je(this.defaults);bt.assign(this.config),this.zone.runOutsideAngular(()=>{this.instance=new ot(this.elementRef.nativeElement,bt)}),this.configDiff||(this.configDiff=this.differs.find(this.config||{}).create(),this.configDiff.diff(this.config||{})),this.zone.runOutsideAngular(()=>{this.ro=new Se(()=>{this.update()}),this.elementRef.nativeElement.children[0]&&this.ro.observe(this.elementRef.nativeElement.children[0]),this.ro.observe(this.elementRef.nativeElement)}),this.zone.runOutsideAngular(()=>{pn.forEach(tn=>{const on=tn.replace(/([A-Z])/g,un=>`-${un.toLowerCase()}`);(0,d.R)(this.elementRef.nativeElement,on).pipe((0,T.Z)(20),(0,w.Q)(this.ngDestroy)).subscribe(un=>{this[tn].emit(un)})})})}}ngOnDestroy(){(0,B.UE)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.complete(),this.ro&&this.ro.disconnect(),this.timeout&&typeof window<"u"&&window.clearTimeout(this.timeout),this.zone.runOutsideAngular(()=>{this.instance&&this.instance.destroy()}),this.instance=null)}ngDoCheck(){!this.disabled&&this.configDiff&&(0,B.UE)(this.platformId)&&this.configDiff.diff(this.config||{})&&(this.ngOnDestroy(),this.ngOnInit())}ngOnChanges(bt){bt.disabled&&!bt.disabled.isFirstChange()&&(0,B.UE)(this.platformId)&&bt.disabled.currentValue!==bt.disabled.previousValue&&(!0===bt.disabled.currentValue?this.ngOnDestroy():!1===bt.disabled.currentValue&&this.ngOnInit())}ps(){return this.instance}update(){typeof window<"u"&&(this.timeout&&window.clearTimeout(this.timeout),this.timeout=window.setTimeout(()=>{if(!this.disabled&&this.configDiff)try{this.zone.runOutsideAngular(()=>{this.instance&&this.instance.update()})}catch{}},0))}geometry(bt="scroll"){return new at(this.elementRef.nativeElement[bt+"Left"],this.elementRef.nativeElement[bt+"Top"],this.elementRef.nativeElement[bt+"Width"],this.elementRef.nativeElement[bt+"Height"])}position(bt=!1){return!bt&&this.instance?new qe(this.instance.reach.x||0,this.instance.reach.y||0):new qe(this.elementRef.nativeElement.scrollLeft,this.elementRef.nativeElement.scrollTop)}scrollable(bt="any"){const tn=this.elementRef.nativeElement;return"any"===bt?tn.classList.contains("ps--active-x")||tn.classList.contains("ps--active-y"):"both"===bt?tn.classList.contains("ps--active-x")&&tn.classList.contains("ps--active-y"):tn.classList.contains("ps--active-"+bt)}scrollTo(bt,tn,on){this.disabled||(null==tn&&null==on?this.animateScrolling("scrollTop",bt,on):(null!=bt&&this.animateScrolling("scrollLeft",bt,on),null!=tn&&this.animateScrolling("scrollTop",tn,on)))}scrollToX(bt,tn){this.animateScrolling("scrollLeft",bt,tn)}scrollToY(bt,tn){this.animateScrolling("scrollTop",bt,tn)}scrollToTop(bt,tn){this.animateScrolling("scrollTop",bt||0,tn)}scrollToLeft(bt,tn){this.animateScrolling("scrollLeft",bt||0,tn)}scrollToRight(bt,tn){this.animateScrolling("scrollLeft",this.elementRef.nativeElement.scrollWidth-this.elementRef.nativeElement.clientWidth-(bt||0),tn)}scrollToBottom(bt,tn){this.animateScrolling("scrollTop",this.elementRef.nativeElement.scrollHeight-this.elementRef.nativeElement.clientHeight-(bt||0),tn)}scrollToElement(bt,tn,on){if("string"==typeof bt&&(bt=this.elementRef.nativeElement.querySelector(bt)),bt){const un=bt.getBoundingClientRect(),Nt=this.elementRef.nativeElement.getBoundingClientRect();this.elementRef.nativeElement.classList.contains("ps--active-x")&&this.animateScrolling("scrollLeft",un.left-Nt.left+this.elementRef.nativeElement.scrollLeft+(tn||0),on),this.elementRef.nativeElement.classList.contains("ps--active-y")&&this.animateScrolling("scrollTop",un.top-Nt.top+this.elementRef.nativeElement.scrollTop+(tn||0),on)}}animateScrolling(bt,tn,on){if(this.animation&&(window.cancelAnimationFrame(this.animation),this.animation=null),!on||typeof window>"u")this.elementRef.nativeElement[bt]=tn;else if(tn!==this.elementRef.nativeElement[bt]){let un=0,Nt=0,dn=performance.now(),xn=this.elementRef.nativeElement[bt];const Jn=(xn-tn)/2,xi=Yi=>{Nt+=Math.PI/(on/(Yi-dn)),un=Math.round(tn+Jn+Jn*Math.cos(Nt)),this.elementRef.nativeElement[bt]===xn&&(Nt>=Math.PI?this.animateScrolling(bt,tn,0):(this.elementRef.nativeElement[bt]=un,xn=this.elementRef.nativeElement[bt],dn=Yi,this.animation=window.requestAnimationFrame(xi)))};window.requestAnimationFrame(xi)}}}return se.\u0275fac=function(bt){return new(bt||se)(f.rXU(f.SKi),f.rXU(u.MKu),f.rXU(f.aKT),f.rXU(f.Agw),f.rXU(Me,8))},se.\u0275dir=f.FsC({type:se,selectors:[["","perfectScrollbar",""]],inputs:{disabled:"disabled",config:[0,"perfectScrollbar","config"]},outputs:{psScrollY:"psScrollY",psScrollX:"psScrollX",psScrollUp:"psScrollUp",psScrollDown:"psScrollDown",psScrollLeft:"psScrollLeft",psScrollRight:"psScrollRight",psYReachEnd:"psYReachEnd",psYReachStart:"psYReachStart",psXReachEnd:"psXReachEnd",psXReachStart:"psXReachStart"},exportAs:["ngxPerfectScrollbar"],standalone:!1,features:[f.OA$]}),se})(),ut=(()=>{class se{constructor(bt,tn,on){this.zone=bt,this.cdRef=tn,this.platformId=on,this.states={},this.indicatorX=!1,this.indicatorY=!1,this.interaction=!1,this.scrollPositionX=0,this.scrollPositionY=0,this.scrollDirectionX=0,this.scrollDirectionY=0,this.usePropagationX=!1,this.usePropagationY=!1,this.allowPropagationX=!1,this.allowPropagationY=!1,this.stateTimeout=null,this.ngDestroy=new i.B,this.stateUpdate=new i.B,this.disabled=!1,this.usePSClass=!0,this.autoPropagation=!1,this.scrollIndicators=!1,this.psScrollY=new f.bkB,this.psScrollX=new f.bkB,this.psScrollUp=new f.bkB,this.psScrollDown=new f.bkB,this.psScrollLeft=new f.bkB,this.psScrollRight=new f.bkB,this.psYReachEnd=new f.bkB,this.psYReachStart=new f.bkB,this.psXReachEnd=new f.bkB,this.psXReachStart=new f.bkB}ngOnInit(){(0,B.UE)(this.platformId)&&(this.stateUpdate.pipe((0,w.Q)(this.ngDestroy),(0,e.F)((bt,tn)=>bt===tn&&!this.stateTimeout)).subscribe(bt=>{this.stateTimeout&&typeof window<"u"&&(window.clearTimeout(this.stateTimeout),this.stateTimeout=null),"x"===bt||"y"===bt?(this.interaction=!1,"x"===bt?(this.indicatorX=!1,this.states.left=!1,this.states.right=!1,this.autoPropagation&&this.usePropagationX&&(this.allowPropagationX=!1)):"y"===bt&&(this.indicatorY=!1,this.states.top=!1,this.states.bottom=!1,this.autoPropagation&&this.usePropagationY&&(this.allowPropagationY=!1))):("left"===bt||"right"===bt?(this.states.left=!1,this.states.right=!1,this.states[bt]=!0,this.autoPropagation&&this.usePropagationX&&(this.indicatorX=!0)):("top"===bt||"bottom"===bt)&&(this.states.top=!1,this.states.bottom=!1,this.states[bt]=!0,this.autoPropagation&&this.usePropagationY&&(this.indicatorY=!0)),this.autoPropagation&&typeof window<"u"&&(this.stateTimeout=window.setTimeout(()=>{this.indicatorX=!1,this.indicatorY=!1,this.stateTimeout=null,this.interaction&&(this.states.left||this.states.right)&&(this.allowPropagationX=!0),this.interaction&&(this.states.top||this.states.bottom)&&(this.allowPropagationY=!0),this.cdRef.markForCheck()},500))),this.cdRef.markForCheck(),this.cdRef.detectChanges()}),this.zone.runOutsideAngular(()=>{if(this.directiveRef){const bt=this.directiveRef.elementRef.nativeElement;(0,d.R)(bt,"wheel").pipe((0,w.Q)(this.ngDestroy)).subscribe(tn=>{!this.disabled&&this.autoPropagation&&this.checkPropagation(tn,tn.deltaX,tn.deltaY)}),(0,d.R)(bt,"touchmove").pipe((0,w.Q)(this.ngDestroy)).subscribe(tn=>{if(!this.disabled&&this.autoPropagation){const on=tn.touches[0].clientX,un=tn.touches[0].clientY;this.checkPropagation(tn,on-this.scrollPositionX,un-this.scrollPositionY),this.scrollPositionX=on,this.scrollPositionY=un}}),(0,v.h)((0,d.R)(bt,"ps-scroll-x").pipe((0,O.u)("x")),(0,d.R)(bt,"ps-scroll-y").pipe((0,O.u)("y")),(0,d.R)(bt,"ps-x-reach-end").pipe((0,O.u)("right")),(0,d.R)(bt,"ps-y-reach-end").pipe((0,O.u)("bottom")),(0,d.R)(bt,"ps-x-reach-start").pipe((0,O.u)("left")),(0,d.R)(bt,"ps-y-reach-start").pipe((0,O.u)("top"))).pipe((0,w.Q)(this.ngDestroy)).subscribe(tn=>{!this.disabled&&(this.autoPropagation||this.scrollIndicators)&&this.stateUpdate.next(tn)})}}),window.setTimeout(()=>{pn.forEach(bt=>{this.directiveRef&&(this.directiveRef[bt]=this[bt])})},0))}ngOnDestroy(){(0,B.UE)(this.platformId)&&(this.ngDestroy.next(),this.ngDestroy.unsubscribe(),this.stateTimeout&&typeof window<"u"&&window.clearTimeout(this.stateTimeout))}ngDoCheck(){if((0,B.UE)(this.platformId)&&!this.disabled&&this.autoPropagation&&this.directiveRef){const bt=this.directiveRef.elementRef.nativeElement;this.usePropagationX=bt.classList.contains("ps--active-x"),this.usePropagationY=bt.classList.contains("ps--active-y")}}checkPropagation(bt,tn,on){this.interaction=!0;const un=tn<0?-1:1,Nt=on<0?-1:1;(this.usePropagationX&&this.usePropagationY||this.usePropagationX&&(!this.allowPropagationX||this.scrollDirectionX!==un)||this.usePropagationY&&(!this.allowPropagationY||this.scrollDirectionY!==Nt))&&(bt.preventDefault(),bt.stopPropagation()),tn&&(this.scrollDirectionX=un),on&&(this.scrollDirectionY=Nt),this.stateUpdate.next("interaction"),this.cdRef.detectChanges()}}return se.\u0275fac=function(bt){return new(bt||se)(f.rXU(f.SKi),f.rXU(u.gRc),f.rXU(f.Agw))},se.\u0275cmp=f.VBU({type:se,selectors:[["perfect-scrollbar"]],viewQuery:function(bt,tn){if(1&bt&&f.GBs(Be,7),2&bt){let on;f.mGM(on=f.lsd())&&(tn.directiveRef=on.first)}},hostVars:4,hostBindings:function(bt,tn){2&bt&&f.AVh("ps-show-limits",tn.autoPropagation)("ps-show-active",tn.scrollIndicators)},inputs:{disabled:"disabled",usePSClass:"usePSClass",autoPropagation:"autoPropagation",scrollIndicators:"scrollIndicators",config:"config"},outputs:{psScrollY:"psScrollY",psScrollX:"psScrollX",psScrollUp:"psScrollUp",psScrollDown:"psScrollDown",psScrollLeft:"psScrollLeft",psScrollRight:"psScrollRight",psYReachEnd:"psYReachEnd",psYReachStart:"psYReachStart",psXReachEnd:"psXReachEnd",psXReachStart:"psXReachStart"},exportAs:["ngxPerfectScrollbar"],standalone:!1,ngContentSelectors:N,decls:4,vars:5,consts:[[2,"position","static",3,"perfectScrollbar","disabled"],[1,"ps-content"],["class","ps-overlay",3,"ps-at-top","ps-at-left","ps-at-right","ps-at-bottom",4,"ngIf"],[1,"ps-overlay"],[1,"ps-indicator-top"],[1,"ps-indicator-left"],[1,"ps-indicator-right"],[1,"ps-indicator-bottom"]],template:function(bt,tn){1&bt&&(f.NAR(),f.j41(0,"div",0)(1,"div",1),f.SdG(2),f.k0s(),f.DNE(3,Z,5,16,"div",2),f.k0s()),2&bt&&(f.AVh("ps",tn.usePSClass),f.Y8G("perfectScrollbar",tn.config)("disabled",tn.disabled),f.R7$(3),f.Y8G("ngIf",tn.scrollIndicators))},dependencies:[Be,C.bT],styles:["perfect-scrollbar{position:relative;display:block;overflow:hidden;width:100%;height:100%;max-width:100%;max-height:100%}perfect-scrollbar[hidden]{display:none}perfect-scrollbar[fxflex]{display:flex;flex-direction:column;height:auto;min-width:0;min-height:0}perfect-scrollbar[fxflex]>.ps{flex:1 1 auto;width:auto;height:auto;min-width:0;min-height:0;-webkit-box-flex:1}perfect-scrollbar[fxlayout]>.ps,perfect-scrollbar[fxlayout]>.ps>.ps-content{display:flex;flex:1 1 auto;flex-direction:inherit;align-items:inherit;align-content:inherit;justify-content:inherit;width:100%;height:100%;-webkit-box-align:inherit;-webkit-box-flex:1;-webkit-box-pack:inherit}perfect-scrollbar[fxlayout=row]>.ps,perfect-scrollbar[fxlayout=row]>.ps>.ps-content{flex-direction:row!important}perfect-scrollbar[fxlayout=column]>.ps,perfect-scrollbar[fxlayout=column]>.ps>.ps-content{flex-direction:column!important}perfect-scrollbar>.ps{position:static;display:block;width:100%;height:100%;max-width:100%;max-height:100%}perfect-scrollbar>.ps textarea{-ms-overflow-style:scrollbar}perfect-scrollbar>.ps>.ps-overlay{position:absolute;top:0;right:0;bottom:0;left:0;display:block;overflow:hidden;pointer-events:none}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{position:absolute;opacity:0;transition:opacity .3s ease-in-out}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{left:0;min-width:100%;min-height:24px}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left,perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right{top:0;min-width:24px;min-height:100%}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-top{top:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-left{left:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-right{right:0}perfect-scrollbar>.ps>.ps-overlay .ps-indicator-bottom{bottom:0}perfect-scrollbar>.ps.ps--active-y>.ps__rail-y{top:0!important;right:0!important;left:auto!important;width:10px;cursor:default;transition:width .2s linear,opacity .2s linear,background-color .2s linear}perfect-scrollbar>.ps.ps--active-y>.ps__rail-y:hover,perfect-scrollbar>.ps.ps--active-y>.ps__rail-y.ps--clicking{width:15px}perfect-scrollbar>.ps.ps--active-x>.ps__rail-x{top:auto!important;bottom:0!important;left:0!important;height:10px;cursor:default;transition:height .2s linear,opacity .2s linear,background-color .2s linear}perfect-scrollbar>.ps.ps--active-x>.ps__rail-x:hover,perfect-scrollbar>.ps.ps--active-x>.ps__rail-x.ps--clicking{height:15px}perfect-scrollbar>.ps.ps--active-x.ps--active-y>.ps__rail-y{margin:0 0 10px}perfect-scrollbar>.ps.ps--active-x.ps--active-y>.ps__rail-x{margin:0 10px 0 0}perfect-scrollbar>.ps.ps--scrolling-y>.ps__rail-y,perfect-scrollbar>.ps.ps--scrolling-x>.ps__rail-x{opacity:.9;background-color:#eee}perfect-scrollbar.ps-show-always>.ps.ps--active-y>.ps__rail-y,perfect-scrollbar.ps-show-always>.ps.ps--active-x>.ps__rail-x{opacity:.6}perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-top) .ps-indicator-top{opacity:1;background:linear-gradient(to bottom,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-y>.ps-overlay:not(.ps-at-bottom) .ps-indicator-bottom{opacity:1;background:linear-gradient(to top,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-x>.ps-overlay:not(.ps-at-left) .ps-indicator-left{opacity:1;background:linear-gradient(to right,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active>.ps.ps--active-x>.ps-overlay:not(.ps-at-right) .ps-indicator-right{opacity:1;background:linear-gradient(to left,rgba(255,255,255,.5) 0%,rgba(255,255,255,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-top .ps-indicator-top{background:linear-gradient(to bottom,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-bottom .ps-indicator-bottom{background:linear-gradient(to top,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-left .ps-indicator-left{background:linear-gradient(to right,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-right .ps-indicator-right{background:linear-gradient(to left,rgba(170,170,170,.5) 0%,rgba(170,170,170,0) 100%)}perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-top .ps-indicator-top.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-y>.ps-overlay.ps-at-bottom .ps-indicator-bottom.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-left .ps-indicator-left.ps-indicator-show,perfect-scrollbar.ps-show-active.ps-show-limits>.ps.ps--active-x>.ps-overlay.ps-at-right .ps-indicator-right.ps-indicator-show{opacity:1}\n",".ps{overflow:hidden!important;overflow-anchor:none;-ms-overflow-style:none;touch-action:auto;-ms-touch-action:auto}.ps__rail-x{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;height:15px;bottom:0px;position:absolute}.ps__rail-y{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;width:15px;right:0;position:absolute}.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y,.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y{opacity:.6}.ps .ps__rail-x:hover,.ps .ps__rail-y:hover,.ps .ps__rail-x:focus,.ps .ps__rail-y:focus,.ps .ps__rail-x.ps--clicking,.ps .ps__rail-y.ps--clicking{background-color:#eee;opacity:.9}.ps__thumb-x{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:6px;bottom:2px;position:absolute}.ps__thumb-y{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:6px;right:2px;position:absolute}.ps__rail-x:hover>.ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x.ps--clicking .ps__thumb-x{background-color:#999;height:11px}.ps__rail-y:hover>.ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y.ps--clicking .ps__thumb-y{background-color:#999;width:11px}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.ps{overflow:auto!important}}\n"],encapsulation:2}),se})(),Ot=(()=>{class se{}return se.\u0275fac=function(bt){return new(bt||se)},se.\u0275mod=f.$C({type:se}),se.\u0275inj=L.G2t({imports:[[C.MD],C.MD]}),se})()},467(Zt,pe,l){"use strict";function i(v,T,w,e,O,f,u){try{var L=v[f](u),C=L.value}catch(B){return void w(B)}L.done?T(C):Promise.resolve(C).then(e,O)}function d(v){return function(){var T=this,w=arguments;return new Promise(function(e,O){var f=v.apply(T,w);function u(C){i(f,e,O,u,L,"next",C)}function L(C){i(f,e,O,u,L,"throw",C)}u(void 0)})}}l.d(pe,{A:()=>d})},1635(Zt,pe,l){"use strict";function w(ie,P,F,ve){var Ke,H=arguments.length,$=H<3?P:null===ve?ve=Object.getOwnPropertyDescriptor(P,F):ve;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)$=Reflect.decorate(ie,P,F,ve);else for(var Vt=ie.length-1;Vt>=0;Vt--)(Ke=ie[Vt])&&($=(H<3?Ke($):H>3?Ke(P,F,$):Ke(P,F))||$);return H>3&&$&&Object.defineProperty(P,F,$),$}function B(ie,P,F,ve){return new(F||(F=Promise))(function($,Ke){function Vt(nt){try{ot(ve.next(nt))}catch(ht){Ke(ht)}}function St(nt){try{ot(ve.throw(nt))}catch(ht){Ke(ht)}}function ot(nt){nt.done?$(nt.value):function H($){return $ instanceof F?$:new F(function(Ke){Ke($)})}(nt.value).then(Vt,St)}ot((ve=ve.apply(ie,P||[])).next())})}function re(ie){return this instanceof re?(this.v=ie,this):new re(ie)}function xe(ie,P,F){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var H,ve=F.apply(ie,P||[]),$=[];return H=Object.create(("function"==typeof AsyncIterator?AsyncIterator:Object).prototype),Vt("next"),Vt("throw"),Vt("return",function Ke(Ye){return function(fe){return Promise.resolve(fe).then(Ye,ht)}}),H[Symbol.asyncIterator]=function(){return this},H;function Vt(Ye,fe){ve[Ye]&&(H[Ye]=function(Qe){return new Promise(function(gt,Gt){$.push([Ye,Qe,gt,Gt])>1||St(Ye,Qe)})},fe&&(H[Ye]=fe(H[Ye])))}function St(Ye,fe){try{!function ot(Ye){Ye.value instanceof re?Promise.resolve(Ye.value.v).then(nt,ht):oe($[0][2],Ye)}(ve[Ye](fe))}catch(Qe){oe($[0][3],Qe)}}function nt(Ye){St("next",Ye)}function ht(Ye){St("throw",Ye)}function oe(Ye,fe){Ye(fe),$.shift(),$.length&&St($[0][0],$[0][1])}}function V(ie){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var F,P=ie[Symbol.asyncIterator];return P?P.call(ie):(ie=function Ce(ie){var P="function"==typeof Symbol&&Symbol.iterator,F=P&&ie[P],ve=0;if(F)return F.call(ie);if(ie&&"number"==typeof ie.length)return{next:function(){return ie&&ve>=ie.length&&(ie=void 0),{value:ie&&ie[ve++],done:!ie}}};throw new TypeError(P?"Object is not iterable.":"Symbol.iterator is not defined.")}(ie),F={},ve("next"),ve("throw"),ve("return"),F[Symbol.asyncIterator]=function(){return this},F);function ve($){F[$]=ie[$]&&function(Ke){return new Promise(function(Vt,St){!function H($,Ke,Vt,St){Promise.resolve(St).then(function(ot){$({value:ot,done:Vt})},Ke)}(Vt,St,(Ke=ie[$](Ke)).done,Ke.value)})}}}l.d(pe,{AQ:()=>xe,Cg:()=>w,N3:()=>re,sH:()=>B,xN:()=>V}),"function"==typeof SuppressedError&&SuppressedError}},Zt=>{Zt(Zt.s=599)}]); \ No newline at end of file diff --git a/frontend/polyfills.17d9756e1f282744.js b/frontend/polyfills.17d9756e1f282744.js new file mode 100644 index 00000000..9aa887bd --- /dev/null +++ b/frontend/polyfills.17d9756e1f282744.js @@ -0,0 +1 @@ +(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[461],{4050(Wt,z,W){window.global=window,window.global.Buffer=window.global.Buffer||W(3838).hp,window.global.process=window.global.process||W(573)},3981(Wt,z){"use strict";z.byteLength=function w(I){var b=Z(I),st=b[1];return 3*(b[0]+st)/4-st},z.toByteArray=function tt(I){var b,gt,q=Z(I),st=q[0],Ct=q[1],dt=new Rt(function u(I,b,q){return 3*(b+q)/4-q}(0,st,Ct)),Pt=0,jt=Ct>0?st-4:st;for(gt=0;gt>16&255,dt[Pt++]=b>>8&255,dt[Pt++]=255&b;return 2===Ct&&(b=N[I.charCodeAt(gt)]<<2|N[I.charCodeAt(gt+1)]>>4,dt[Pt++]=255&b),1===Ct&&(b=N[I.charCodeAt(gt)]<<10|N[I.charCodeAt(gt+1)]<<4|N[I.charCodeAt(gt+2)]>>2,dt[Pt++]=b>>8&255,dt[Pt++]=255&b),dt},z.fromByteArray=function It(I){for(var b,q=I.length,st=q%3,Ct=[],Pt=0,jt=q-st;Ptjt?jt:Pt+16383));return 1===st?Ct.push(W[(b=I[q-1])>>2]+W[b<<4&63]+"=="):2===st&&Ct.push(W[(b=(I[q-2]<<8)+I[q-1])>>10]+W[b>>4&63]+W[b<<2&63]+"="),Ct.join("")};for(var W=[],N=[],Rt=typeof Uint8Array<"u"?Uint8Array:Array,Et="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",ot=0;ot<64;++ot)W[ot]=Et[ot],N[Et.charCodeAt(ot)]=ot;function Z(I){var b=I.length;if(b%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var q=I.indexOf("=");return-1===q&&(q=b),[q,q===b?0:4-q%4]}function _t(I){return W[I>>18&63]+W[I>>12&63]+W[I>>6&63]+W[63&I]}function xt(I,b,q){for(var Ct=[],dt=b;dtlt)throw new RangeError('The value "'+r+'" is invalid for option "size"');const t=new Uint8Array(r);return Object.setPrototypeOf(t,u.prototype),t}function u(r,t,e){if("number"==typeof r){if("string"==typeof t)throw new TypeError('The "string" argument must be of type string. Received type number');return It(r)}return tt(r,t,e)}function tt(r,t,e){if("string"==typeof r)return function I(r,t){if(("string"!=typeof t||""===t)&&(t="utf8"),!u.isEncoding(t))throw new TypeError("Unknown encoding: "+t);const e=0|jt(r,t);let n=w(e);const i=n.write(r,t);return i!==e&&(n=n.slice(0,i)),n}(r,t);if(ArrayBuffer.isView(r))return function q(r){if(Ut(r,Uint8Array)){const t=new Uint8Array(r);return st(t.buffer,t.byteOffset,t.byteLength)}return b(r)}(r);if(null==r)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r);if(Ut(r,ArrayBuffer)||r&&Ut(r.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(Ut(r,SharedArrayBuffer)||r&&Ut(r.buffer,SharedArrayBuffer)))return st(r,t,e);if("number"==typeof r)throw new TypeError('The "value" argument must not be of type number. Received type number');const n=r.valueOf&&r.valueOf();if(null!=n&&n!==r)return u.from(n,t,e);const i=function Ct(r){if(u.isBuffer(r)){const t=0|dt(r.length),e=w(t);return 0===e.length||r.copy(e,0,0,t),e}return void 0!==r.length?"number"!=typeof r.length||we(r.length)?w(0):b(r):"Buffer"===r.type&&Array.isArray(r.data)?b(r.data):void 0}(r);if(i)return i;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof r[Symbol.toPrimitive])return u.from(r[Symbol.toPrimitive]("string"),t,e);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r)}function _t(r){if("number"!=typeof r)throw new TypeError('"size" argument must be of type number');if(r<0)throw new RangeError('The value "'+r+'" is invalid for option "size"')}function It(r){return _t(r),w(r<0?0:0|dt(r))}function b(r){const t=r.length<0?0:0|dt(r.length),e=w(t);for(let n=0;n=lt)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+lt.toString(16)+" bytes");return 0|r}function jt(r,t){if(u.isBuffer(r))return r.length;if(ArrayBuffer.isView(r)||Ut(r,ArrayBuffer))return r.byteLength;if("string"!=typeof r)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof r);const e=r.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===e)return 0;let i=!1;for(;;)switch(t){case"ascii":case"latin1":case"binary":return e;case"utf8":case"utf-8":return he(r).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*e;case"hex":return e>>>1;case"base64":return Te(r).length;default:if(i)return n?-1:he(r).length;t=(""+t).toLowerCase(),i=!0}}function gt(r,t,e){let n=!1;if((void 0===t||t<0)&&(t=0),t>this.length||((void 0===e||e>this.length)&&(e=this.length),e<=0)||(e>>>=0)<=(t>>>=0))return"";for(r||(r="utf8");;)switch(r){case"hex":return ye(this,t,e);case"utf8":case"utf-8":return ae(this,t,e);case"ascii":return Ie(this,t,e);case"latin1":case"binary":return le(this,t,e);case"base64":return Pe(this,t,e);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return ve(this,t,e);default:if(n)throw new TypeError("Unknown encoding: "+r);r=(r+"").toLowerCase(),n=!0}}function St(r,t,e){const n=r[t];r[t]=r[e],r[e]=n}function Qt(r,t,e,n,i){if(0===r.length)return-1;if("string"==typeof e?(n=e,e=0):e>2147483647?e=2147483647:e<-2147483648&&(e=-2147483648),we(e=+e)&&(e=i?0:r.length-1),e<0&&(e=r.length+e),e>=r.length){if(i)return-1;e=r.length-1}else if(e<0){if(!i)return-1;e=0}if("string"==typeof t&&(t=u.from(t,n)),u.isBuffer(t))return 0===t.length?-1:se(r,t,e,n,i);if("number"==typeof t)return t&=255,"function"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(r,t,e):Uint8Array.prototype.lastIndexOf.call(r,t,e):se(r,[t],e,n,i);throw new TypeError("val must be string, number or Buffer")}function se(r,t,e,n,i){let ht,a=1,E=r.length,H=t.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(r.length<2||t.length<2)return-1;a=2,E/=2,H/=2,e/=2}function mt(Tt,rt){return 1===a?Tt[rt]:Tt.readUInt16BE(rt*a)}if(i){let Tt=-1;for(ht=e;htE&&(e=E-H),ht=e;ht>=0;ht--){let Tt=!0;for(let rt=0;rti&&(n=i):n=i;const a=t.length;let E;for(n>a/2&&(n=a/2),E=0;E>8,i=e%256,a.push(i),a.push(n);return a}(t,r.length-e),r,e,n)}function Pe(r,t,e){return Rt.fromByteArray(0===t&&e===r.length?r:r.slice(t,e))}function ae(r,t,e){e=Math.min(r.length,e);const n=[];let i=t;for(;i239?4:a>223?3:a>191?2:1;if(i+H<=e){let mt,ht,Tt,rt;switch(H){case 1:a<128&&(E=a);break;case 2:mt=r[i+1],128==(192&mt)&&(rt=(31&a)<<6|63&mt,rt>127&&(E=rt));break;case 3:mt=r[i+1],ht=r[i+2],128==(192&mt)&&128==(192&ht)&&(rt=(15&a)<<12|(63&mt)<<6|63&ht,rt>2047&&(rt<55296||rt>57343)&&(E=rt));break;case 4:mt=r[i+1],ht=r[i+2],Tt=r[i+3],128==(192&mt)&&128==(192&ht)&&128==(192&Tt)&&(rt=(15&a)<<18|(63&mt)<<12|(63&ht)<<6|63&Tt,rt>65535&&rt<1114112&&(E=rt))}}null===E?(E=65533,H=1):E>65535&&(E-=65536,n.push(E>>>10&1023|55296),E=56320|1023&E),n.push(E),i+=H}return function xe(r){const t=r.length;if(t<=4096)return String.fromCharCode.apply(String,r);let e="",n=0;for(;nn)&&(e=n);let i="";for(let a=t;ae)throw new RangeError("Trying to access beyond buffer length")}function At(r,t,e,n,i,a){if(!u.isBuffer(r))throw new TypeError('"buffer" argument must be a Buffer instance');if(t>i||tr.length)throw new RangeError("Index out of range")}function Ee(r,t,e,n,i){Gt(t,n,i,r,e,7);let a=Number(t&BigInt(4294967295));r[e++]=a,a>>=8,r[e++]=a,a>>=8,r[e++]=a,a>>=8,r[e++]=a;let E=Number(t>>BigInt(32)&BigInt(4294967295));return r[e++]=E,E>>=8,r[e++]=E,E>>=8,r[e++]=E,E>>=8,r[e++]=E,e}function _e(r,t,e,n,i){Gt(t,n,i,r,e,7);let a=Number(t&BigInt(4294967295));r[e+7]=a,a>>=8,r[e+6]=a,a>>=8,r[e+5]=a,a>>=8,r[e+4]=a;let E=Number(t>>BigInt(32)&BigInt(4294967295));return r[e+3]=E,E>>=8,r[e+2]=E,E>>=8,r[e+1]=E,E>>=8,r[e]=E,e+8}function ge(r,t,e,n,i,a){if(e+n>r.length)throw new RangeError("Index out of range");if(e<0)throw new RangeError("Index out of range")}function Nt(r,t,e,n,i){return t=+t,e>>>=0,i||ge(r,0,e,4),Et.write(r,t,e,n,23,4),e+4}function te(r,t,e,n,i){return t=+t,e>>>=0,i||ge(r,0,e,8),Et.write(r,t,e,n,52,8),e+8}!(u.TYPED_ARRAY_SUPPORT=function Z(){try{const r=new Uint8Array(1),t={foo:function(){return 42}};return Object.setPrototypeOf(t,Uint8Array.prototype),Object.setPrototypeOf(r,t),42===r.foo()}catch{return!1}}())&&typeof console<"u"&&"function"==typeof console.error&&console.error("This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support."),Object.defineProperty(u.prototype,"parent",{enumerable:!0,get:function(){if(u.isBuffer(this))return this.buffer}}),Object.defineProperty(u.prototype,"offset",{enumerable:!0,get:function(){if(u.isBuffer(this))return this.byteOffset}}),u.poolSize=8192,u.from=function(r,t,e){return tt(r,t,e)},Object.setPrototypeOf(u.prototype,Uint8Array.prototype),Object.setPrototypeOf(u,Uint8Array),u.alloc=function(r,t,e){return function xt(r,t,e){return _t(r),r<=0?w(r):void 0!==t?"string"==typeof e?w(r).fill(t,e):w(r).fill(t):w(r)}(r,t,e)},u.allocUnsafe=function(r){return It(r)},u.allocUnsafeSlow=function(r){return It(r)},u.isBuffer=function(t){return null!=t&&!0===t._isBuffer&&t!==u.prototype},u.compare=function(t,e){if(Ut(t,Uint8Array)&&(t=u.from(t,t.offset,t.byteLength)),Ut(e,Uint8Array)&&(e=u.from(e,e.offset,e.byteLength)),!u.isBuffer(t)||!u.isBuffer(e))throw new TypeError('The "buf1", "buf2" arguments must be one of type Buffer or Uint8Array');if(t===e)return 0;let n=t.length,i=e.length;for(let a=0,E=Math.min(n,i);ai.length?(u.isBuffer(E)||(E=u.from(E)),E.copy(i,a)):Uint8Array.prototype.set.call(i,E,a);else{if(!u.isBuffer(E))throw new TypeError('"list" argument must be an Array of Buffers');E.copy(i,a)}a+=E.length}return i},u.byteLength=jt,u.prototype._isBuffer=!0,u.prototype.swap16=function(){const t=this.length;if(t%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(let e=0;ee&&(t+=" ... "),""},ot&&(u.prototype[ot]=u.prototype.inspect),u.prototype.compare=function(t,e,n,i,a){if(Ut(t,Uint8Array)&&(t=u.from(t,t.offset,t.byteLength)),!u.isBuffer(t))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===e&&(e=0),void 0===n&&(n=t?t.length:0),void 0===i&&(i=0),void 0===a&&(a=this.length),e<0||n>t.length||i<0||a>this.length)throw new RangeError("out of range index");if(i>=a&&e>=n)return 0;if(i>=a)return-1;if(e>=n)return 1;if(this===t)return 0;let E=(a>>>=0)-(i>>>=0),H=(n>>>=0)-(e>>>=0);const mt=Math.min(E,H),ht=this.slice(i,a),Tt=t.slice(e,n);for(let rt=0;rt>>=0,isFinite(n)?(n>>>=0,void 0===i&&(i="utf8")):(i=n,n=void 0)}const a=this.length-e;if((void 0===n||n>a)&&(n=a),t.length>0&&(n<0||e<0)||e>this.length)throw new RangeError("Attempt to write outside buffer bounds");i||(i="utf8");let E=!1;for(;;)switch(i){case"hex":return de(this,t,e,n);case"utf8":case"utf-8":return Q(this,t,e,n);case"ascii":case"latin1":case"binary":return ce(this,t,e,n);case"base64":return ue(this,t,e,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return vt(this,t,e,n);default:if(E)throw new TypeError("Unknown encoding: "+i);i=(""+i).toLowerCase(),E=!0}},u.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}},u.prototype.slice=function(t,e){const n=this.length;(t=~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),(e=void 0===e?n:~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),e>>=0,e>>>=0,n||wt(t,e,this.length);let i=this[t],a=1,E=0;for(;++E>>=0,e>>>=0,n||wt(t,e,this.length);let i=this[t+--e],a=1;for(;e>0&&(a*=256);)i+=this[t+--e]*a;return i},u.prototype.readUint8=u.prototype.readUInt8=function(t,e){return t>>>=0,e||wt(t,1,this.length),this[t]},u.prototype.readUint16LE=u.prototype.readUInt16LE=function(t,e){return t>>>=0,e||wt(t,2,this.length),this[t]|this[t+1]<<8},u.prototype.readUint16BE=u.prototype.readUInt16BE=function(t,e){return t>>>=0,e||wt(t,2,this.length),this[t]<<8|this[t+1]},u.prototype.readUint32LE=u.prototype.readUInt32LE=function(t,e){return t>>>=0,e||wt(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},u.prototype.readUint32BE=u.prototype.readUInt32BE=function(t,e){return t>>>=0,e||wt(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},u.prototype.readBigUInt64LE=Mt(function(t){Yt(t>>>=0,"offset");const e=this[t],n=this[t+7];(void 0===e||void 0===n)&&re(t,this.length-8);const i=e+256*this[++t]+65536*this[++t]+this[++t]*2**24,a=this[++t]+256*this[++t]+65536*this[++t]+n*2**24;return BigInt(i)+(BigInt(a)<>>=0,"offset");const e=this[t],n=this[t+7];(void 0===e||void 0===n)&&re(t,this.length-8);const i=e*2**24+65536*this[++t]+256*this[++t]+this[++t],a=this[++t]*2**24+65536*this[++t]+256*this[++t]+n;return(BigInt(i)<>>=0,e>>>=0,n||wt(t,e,this.length);let i=this[t],a=1,E=0;for(;++E=a&&(i-=Math.pow(2,8*e)),i},u.prototype.readIntBE=function(t,e,n){t>>>=0,e>>>=0,n||wt(t,e,this.length);let i=e,a=1,E=this[t+--i];for(;i>0&&(a*=256);)E+=this[t+--i]*a;return a*=128,E>=a&&(E-=Math.pow(2,8*e)),E},u.prototype.readInt8=function(t,e){return t>>>=0,e||wt(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},u.prototype.readInt16LE=function(t,e){t>>>=0,e||wt(t,2,this.length);const n=this[t]|this[t+1]<<8;return 32768&n?4294901760|n:n},u.prototype.readInt16BE=function(t,e){t>>>=0,e||wt(t,2,this.length);const n=this[t+1]|this[t]<<8;return 32768&n?4294901760|n:n},u.prototype.readInt32LE=function(t,e){return t>>>=0,e||wt(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},u.prototype.readInt32BE=function(t,e){return t>>>=0,e||wt(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},u.prototype.readBigInt64LE=Mt(function(t){Yt(t>>>=0,"offset");const e=this[t],n=this[t+7];return(void 0===e||void 0===n)&&re(t,this.length-8),(BigInt(this[t+4]+256*this[t+5]+65536*this[t+6]+(n<<24))<>>=0,"offset");const e=this[t],n=this[t+7];(void 0===e||void 0===n)&&re(t,this.length-8);const i=(e<<24)+65536*this[++t]+256*this[++t]+this[++t];return(BigInt(i)<>>=0,e||wt(t,4,this.length),Et.read(this,t,!0,23,4)},u.prototype.readFloatBE=function(t,e){return t>>>=0,e||wt(t,4,this.length),Et.read(this,t,!1,23,4)},u.prototype.readDoubleLE=function(t,e){return t>>>=0,e||wt(t,8,this.length),Et.read(this,t,!0,52,8)},u.prototype.readDoubleBE=function(t,e){return t>>>=0,e||wt(t,8,this.length),Et.read(this,t,!1,52,8)},u.prototype.writeUintLE=u.prototype.writeUIntLE=function(t,e,n,i){t=+t,e>>>=0,n>>>=0,i||At(this,t,e,n,Math.pow(2,8*n)-1,0);let a=1,E=0;for(this[e]=255&t;++E>>=0,n>>>=0,i||At(this,t,e,n,Math.pow(2,8*n)-1,0);let a=n-1,E=1;for(this[e+a]=255&t;--a>=0&&(E*=256);)this[e+a]=t/E&255;return e+n},u.prototype.writeUint8=u.prototype.writeUInt8=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,1,255,0),this[e]=255&t,e+1},u.prototype.writeUint16LE=u.prototype.writeUInt16LE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},u.prototype.writeUint16BE=u.prototype.writeUInt16BE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},u.prototype.writeUint32LE=u.prototype.writeUInt32LE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},u.prototype.writeUint32BE=u.prototype.writeUInt32BE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},u.prototype.writeBigUInt64LE=Mt(function(t,e=0){return Ee(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))}),u.prototype.writeBigUInt64BE=Mt(function(t,e=0){return _e(this,t,e,BigInt(0),BigInt("0xffffffffffffffff"))}),u.prototype.writeIntLE=function(t,e,n,i){if(t=+t,e>>>=0,!i){const mt=Math.pow(2,8*n-1);At(this,t,e,n,mt-1,-mt)}let a=0,E=1,H=0;for(this[e]=255&t;++a>>=0,!i){const mt=Math.pow(2,8*n-1);At(this,t,e,n,mt-1,-mt)}let a=n-1,E=1,H=0;for(this[e+a]=255&t;--a>=0&&(E*=256);)t<0&&0===H&&0!==this[e+a+1]&&(H=1),this[e+a]=(t/E|0)-H&255;return e+n},u.prototype.writeInt8=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},u.prototype.writeInt16LE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},u.prototype.writeInt16BE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},u.prototype.writeInt32LE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},u.prototype.writeInt32BE=function(t,e,n){return t=+t,e>>>=0,n||At(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},u.prototype.writeBigInt64LE=Mt(function(t,e=0){return Ee(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),u.prototype.writeBigInt64BE=Mt(function(t,e=0){return _e(this,t,e,-BigInt("0x8000000000000000"),BigInt("0x7fffffffffffffff"))}),u.prototype.writeFloatLE=function(t,e,n){return Nt(this,t,e,!0,n)},u.prototype.writeFloatBE=function(t,e,n){return Nt(this,t,e,!1,n)},u.prototype.writeDoubleLE=function(t,e,n){return te(this,t,e,!0,n)},u.prototype.writeDoubleBE=function(t,e,n){return te(this,t,e,!1,n)},u.prototype.copy=function(t,e,n,i){if(!u.isBuffer(t))throw new TypeError("argument should be a Buffer");if(n||(n=0),!i&&0!==i&&(i=this.length),e>=t.length&&(e=t.length),e||(e=0),i>0&&i=this.length)throw new RangeError("Index out of range");if(i<0)throw new RangeError("sourceEnd out of bounds");i>this.length&&(i=this.length),t.length-e>>=0,n=void 0===n?this.length:n>>>0,t||(t=0),"number"==typeof t)for(a=e;a=n+4;e-=3)t=`_${r.slice(e-3,e)}${t}`;return`${r.slice(0,e)}${t}`}function Gt(r,t,e,n,i,a){if(r>e||r3?0===t||t===BigInt(0)?`>= 0${E} and < 2${E} ** ${8*(a+1)}${E}`:`>= -(2${E} ** ${8*(a+1)-1}${E}) and < 2 ** ${8*(a+1)-1}${E}`:`>= ${t}${E} and <= ${e}${E}`,new ee.ERR_OUT_OF_RANGE("value",H,r)}!function Se(r,t,e){Yt(t,"offset"),(void 0===r[t]||void 0===r[t+e])&&re(t,r.length-(e+1))}(n,i,a)}function Yt(r,t){if("number"!=typeof r)throw new ee.ERR_INVALID_ARG_TYPE(t,"number",r)}function re(r,t,e){throw Math.floor(r)!==r?(Yt(r,e),new ee.ERR_OUT_OF_RANGE(e||"offset","an integer",r)):t<0?new ee.ERR_BUFFER_OUT_OF_BOUNDS:new ee.ERR_OUT_OF_RANGE(e||"offset",`>= ${e?1:0} and <= ${t}`,r)}me("ERR_BUFFER_OUT_OF_BOUNDS",function(r){return r?`${r} is outside of buffer bounds`:"Attempt to access memory outside buffer bounds"},RangeError),me("ERR_INVALID_ARG_TYPE",function(r,t){return`The "${r}" argument must be of type number. Received type ${typeof t}`},TypeError),me("ERR_OUT_OF_RANGE",function(r,t,e){let n=`The value of "${r}" is out of range.`,i=e;return Number.isInteger(e)&&Math.abs(e)>2**32?i=Ht(String(e)):"bigint"==typeof e&&(i=String(e),(e>BigInt(2)**BigInt(32)||e<-(BigInt(2)**BigInt(32)))&&(i=Ht(i)),i+="n"),n+=` It must be ${t}. Received ${i}`,n},RangeError);const Ae=/[^+/0-9A-Za-z-_]/g;function he(r,t){let e;t=t||1/0;const n=r.length;let i=null;const a=[];for(let E=0;E55295&&e<57344){if(!i){if(e>56319){(t-=3)>-1&&a.push(239,191,189);continue}if(E+1===n){(t-=3)>-1&&a.push(239,191,189);continue}i=e;continue}if(e<56320){(t-=3)>-1&&a.push(239,191,189),i=e;continue}e=65536+(i-55296<<10|e-56320)}else i&&(t-=3)>-1&&a.push(239,191,189);if(i=null,e<128){if((t-=1)<0)break;a.push(e)}else if(e<2048){if((t-=2)<0)break;a.push(e>>6|192,63&e|128)}else if(e<65536){if((t-=3)<0)break;a.push(e>>12|224,e>>6&63|128,63&e|128)}else{if(!(e<1114112))throw new Error("Invalid code point");if((t-=4)<0)break;a.push(e>>18|240,e>>12&63|128,e>>6&63|128,63&e|128)}}return a}function Te(r){return Rt.toByteArray(function Ot(r){if((r=(r=r.split("=")[0]).trim().replace(Ae,"")).length<2)return"";for(;r.length%4!=0;)r+="=";return r}(r))}function fe(r,t,e,n){let i;for(i=0;i=t.length||i>=r.length);++i)t[i+e]=r[i];return i}function Ut(r,t){return r instanceof t||null!=r&&null!=r.constructor&&null!=r.constructor.name&&r.constructor.name===t.name}function we(r){return r!=r}const De=function(){const r="0123456789abcdef",t=new Array(256);for(let e=0;e<16;++e){const n=16*e;for(let i=0;i<16;++i)t[n+i]=r[e]+r[i]}return t}();function Mt(r){return typeof BigInt>"u"?ne:r}function ne(){throw new Error("BigInt not supported")}},2020(Wt,z){z.read=function(W,N,Rt,Et,ot){var lt,Z,w=8*ot-Et-1,u=(1<>1,_t=-7,xt=Rt?ot-1:0,It=Rt?-1:1,I=W[N+xt];for(xt+=It,lt=I&(1<<-_t)-1,I>>=-_t,_t+=w;_t>0;lt=256*lt+W[N+xt],xt+=It,_t-=8);for(Z=lt&(1<<-_t)-1,lt>>=-_t,_t+=Et;_t>0;Z=256*Z+W[N+xt],xt+=It,_t-=8);if(0===lt)lt=1-tt;else{if(lt===u)return Z?NaN:1/0*(I?-1:1);Z+=Math.pow(2,Et),lt-=tt}return(I?-1:1)*Z*Math.pow(2,lt-Et)},z.write=function(W,N,Rt,Et,ot,lt){var Z,w,u,tt=8*lt-ot-1,_t=(1<>1,It=23===ot?Math.pow(2,-24)-Math.pow(2,-77):0,I=Et?0:lt-1,b=Et?1:-1,q=N<0||0===N&&1/N<0?1:0;for(N=Math.abs(N),isNaN(N)||N===1/0?(w=isNaN(N)?1:0,Z=_t):(Z=Math.floor(Math.log(N)/Math.LN2),N*(u=Math.pow(2,-Z))<1&&(Z--,u*=2),(N+=Z+xt>=1?It/u:It*Math.pow(2,1-xt))*u>=2&&(Z++,u/=2),Z+xt>=_t?(w=0,Z=_t):Z+xt>=1?(w=(N*u-1)*Math.pow(2,ot),Z+=xt):(w=N*Math.pow(2,xt-1)*Math.pow(2,ot),Z=0));ot>=8;W[Rt+I]=255&w,I+=b,w/=256,ot-=8);for(Z=Z<0;W[Rt+I]=255&Z,I+=b,Z/=256,tt-=8);W[Rt+I-b]|=128*q}},573(Wt){var W,N,z=Wt.exports={};function Rt(){throw new Error("setTimeout has not been defined")}function Et(){throw new Error("clearTimeout has not been defined")}function ot(b){if(W===setTimeout)return setTimeout(b,0);if((W===Rt||!W)&&setTimeout)return W=setTimeout,setTimeout(b,0);try{return W(b,0)}catch{try{return W.call(null,b,0)}catch{return W.call(this,b,0)}}}!function(){try{W="function"==typeof setTimeout?setTimeout:Rt}catch{W=Rt}try{N="function"==typeof clearTimeout?clearTimeout:Et}catch{N=Et}}();var u,Z=[],w=!1,tt=-1;function _t(){!w||!u||(w=!1,u.length?Z=u.concat(Z):tt=-1,Z.length&&xt())}function xt(){if(!w){var b=ot(_t);w=!0;for(var q=Z.length;q;){for(u=Z,Z=[];++tt1)for(var st=1;sto in s?Wt(s,o,{enumerable:!0,configurable:!0,writable:!0,value:y}):s[o]=y,lt=(s,o)=>{for(var y in o||(o={}))Rt.call(o,y)&&ot(s,y,o[y]);if(N)for(var y of N(o))Et.call(o,y)&&ot(s,y,o[y]);return s},w=(s,o,y)=>(ot(s,"symbol"!=typeof o?o+"":o,y),y),u=globalThis;function tt(s){return(u.__Zone_symbol_prefix||"__zone_symbol__")+s}var It=Object.getOwnPropertyDescriptor,I=Object.defineProperty,b=Object.getPrototypeOf,q=Object.create,st=Array.prototype.slice,Ct="addEventListener",dt="removeEventListener",Pt=tt(Ct),jt=tt(dt),gt="true",St="false",Qt=tt("");function se(s,o){return Zone.current.wrap(s,o)}function de(s,o,y,c,d){return Zone.current.scheduleMacroTask(s,o,y,c,d)}var Q=tt,ce=typeof window<"u",ue=ce?window:void 0,vt=ce&&ue||globalThis;function ae(s,o){for(let y=s.length-1;y>=0;y--)"function"==typeof s[y]&&(s[y]=se(s[y],o+"_"+y));return s}function xe(s){return!s||!1!==s.writable&&!("function"==typeof s.get&&typeof s.set>"u")}var Ie=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope,le=!("nw"in vt)&&typeof vt.process<"u"&&"[object process]"===vt.process.toString(),ye=!le&&!Ie&&!(!ce||!ue.HTMLElement),ve=typeof vt.process<"u"&&"[object process]"===vt.process.toString()&&!Ie&&!(!ce||!ue.HTMLElement),wt={},At=Q("enable_beforeunload"),Ee=function(s){if(!(s=s||vt.event))return;let o=wt[s.type];o||(o=wt[s.type]=Q("ON_PROPERTY"+s.type));const y=this||s.target||vt,c=y[o];let d;return ye&&y===ue&&"error"===s.type?(d=c&&c.call(this,s.message,s.filename,s.lineno,s.colno,s.error),!0===d&&s.preventDefault()):(d=c&&c.apply(this,arguments),"beforeunload"===s.type&&vt[At]&&"string"==typeof d?s.returnValue=d:null!=d&&!d&&s.preventDefault()),d};function _e(s,o,y){let c=It(s,o);if(!c&&y&&It(y,o)&&(c={enumerable:!0,configurable:!0}),!c||!c.configurable)return;const d=Q("on"+o+"patched");if(s.hasOwnProperty(d)&&s[d])return;delete c.writable,delete c.value;const _=c.get,D=c.set,x=o.slice(2);let S=wt[x];S||(S=wt[x]=Q("ON_PROPERTY"+x)),c.set=function(U){let B=this;!B&&s===vt&&(B=vt),B&&("function"==typeof B[S]&&B.removeEventListener(x,Ee),D?.call(B,null),B[S]=U,"function"==typeof U&&B.addEventListener(x,Ee,!1))},c.get=function(){let U=this;if(!U&&s===vt&&(U=vt),!U)return null;const B=U[S];if(B)return B;if(_){let L=_.call(this);if(L)return c.set.call(this,L),"function"==typeof U.removeAttribute&&U.removeAttribute(o),L}return null},I(s,o,c),s[d]=!0}function ge(s,o,y){if(o)for(let c=0;cfunction(D,x){const S=y(D,x);return S.cbIdx>=0&&"function"==typeof x[S.cbIdx]?de(S.name,x[S.cbIdx],S,d):_.apply(D,x)})}function Gt(s,o){s[Q("OriginalDelegate")]=o}function Yt(s){return"function"==typeof s}function re(s){return"number"==typeof s}var Ae={useG:!0},Ot={},he={},Be=new RegExp("^"+Qt+"(\\w+)(true|false)$"),Re=Q("propagationStopped");function Te(s,o){const y=(o?o(s):s)+St,c=(o?o(s):s)+gt,d=Qt+y,_=Qt+c;Ot[s]={},Ot[s][St]=d,Ot[s][gt]=_}function fe(s,o,y,c){const d=c&&c.add||Ct,_=c&&c.rm||dt,D=c&&c.listeners||"eventListeners",x=c&&c.rmAll||"removeAllListeners",S=Q(d),U="."+d+":",B="prependListener",L="."+B+":",Y=function(P,k,ct){if(P.isRemoved)return;const et=P.callback;let yt;"object"==typeof et&&et.handleEvent&&(P.callback=R=>et.handleEvent(R),P.originalDelegate=et);try{P.invoke(P,k,[ct])}catch(R){yt=R}const ut=P.options;return ut&&"object"==typeof ut&&ut.once&&k[_].call(k,ct.type,P.originalDelegate?P.originalDelegate:P.callback,ut),yt};function K(P,k,ct){if(!(k=k||s.event))return;const et=P||k.target||s,yt=et[Ot[k.type][ct?gt:St]];if(yt){const ut=[];if(1===yt.length){const R=Y(yt[0],et,k);R&&ut.push(R)}else{const R=yt.slice();for(let bt=0;bt{throw bt})}}}const Dt=function(P){return K(this,P,!1)},kt=function(P){return K(this,P,!0)};function Lt(P,k){if(!P)return!1;let ct=!0;k&&void 0!==k.useG&&(ct=k.useG);const et=k&&k.vh;let yt=!0;k&&void 0!==k.chkDup&&(yt=k.chkDup);let ut=!1;k&&void 0!==k.rt&&(ut=k.rt);let R=P;for(;R&&!R.hasOwnProperty(d);)R=b(R);if(!R&&P[d]&&(R=P),!R||R[S])return!1;const bt=k&&k.eventNameToString,j={},M=R[S]=R[d],X=R[Q(_)]=R[_],F=R[Q(D)]=R[D],Ft=R[Q(x)]=R[x];let Zt;k&&k.prepend&&(Zt=R[Q(k.prepend)]=R[k.prepend]);const it=ct?function(p){if(!j.isExisting)return M.call(j.target,j.eventName,j.capture?kt:Dt,j.options)}:function(p){return M.call(j.target,j.eventName,p.invoke,j.options)},J=ct?function(p){if(!p.isRemoved){const m=Ot[p.eventName];let C;m&&(C=m[p.capture?gt:St]);const O=C&&p.target[C];if(O)for(let v=0;vz(s,W({passive:!0})))(lt({},p)):p:{passive:!0}:p}(arguments[2],ie)),oe=$t?.signal;if(oe?.aborted)return;if(Kt)for(let Xt=0;Xtzt.zone.cancelTask(zt);p.call(oe,"abort",Xt,{once:!0}),zt.removeAbortListener=()=>oe.removeEventListener("abort",Xt)}return j.target=null,ke&&(ke.taskData=null),Ue&&(j.options.once=!0),"boolean"!=typeof zt.options&&(zt.options=$t),zt.target=V,zt.capture=Fe,zt.eventName=$,pt&&(zt.originalDelegate=ft),G?pe.unshift(zt):pe.push(zt),v?V:void 0}};return R[d]=g(M,U,it,J,ut),Zt&&(R[B]=g(Zt,L,function(p){return Zt.call(j.target,j.eventName,p.invoke,j.options)},J,ut,!0)),R[_]=function(){const p=this||s;let m=arguments[0];k&&k.transferEventName&&(m=k.transferEventName(m));const C=arguments[2],O=!!C&&("boolean"==typeof C||C.capture),v=arguments[1];if(!v)return X.apply(this,arguments);if(et&&!et(X,v,p,arguments))return;const G=Ot[m];let V;G&&(V=G[O?gt:St]);const $=V&&p[V];if($)for(let ft=0;ft<$.length;ft++){const pt=$[ft];if(Jt(pt,v))return $.splice(ft,1),pt.isRemoved=!0,0!==$.length||(pt.allRemoved=!0,p[V]=null,O||"string"!=typeof m)||(p[Qt+"ON_PROPERTY"+m]=null),pt.zone.cancelTask(pt),ut?p:void 0}return X.apply(this,arguments)},R[D]=function(){const p=this||s;let m=arguments[0];k&&k.transferEventName&&(m=k.transferEventName(m));const C=[],O=Ut(p,bt?bt(m):m);for(let v=0;vfunction(d,_){d[Re]=!0,c&&c.apply(d,_)})}var Mt=Q("zoneTask");function ne(s,o,y,c){let d=null,_=null;y+=c;const D={};function x(U){const B=U.data;B.args[0]=function(){return U.invoke.apply(this,arguments)};const L=d.apply(s,B.args);return re(L)?B.handleId=L:(B.handle=L,B.isRefreshable=Yt(L.refresh)),U}function S(U){const{handle:B,handleId:L}=U.data;return _.call(s,B??L)}d=Ht(s,o+=c,U=>function(B,L){var Y;if(Yt(L[0])){const K={isRefreshable:!1,isPeriodic:"Interval"===c,delay:"Timeout"===c||"Interval"===c?L[1]||0:void 0,args:L},Dt=L[0];L[0]=function(){try{return Dt.apply(this,arguments)}finally{const{handle:et,handleId:yt,isPeriodic:ut,isRefreshable:R}=K;!ut&&!R&&(yt?delete D[yt]:et&&(et[Mt]=null))}};const kt=de(o,L[0],K,x,S);if(!kt)return kt;const{handleId:Lt,handle:Bt,isRefreshable:P,isPeriodic:k}=kt.data;if(Lt)D[Lt]=kt;else if(Bt&&(Bt[Mt]=kt,P&&!k)){const ct=Bt.refresh;Bt.refresh=function(){const{zone:et,state:yt}=kt;return"notScheduled"===yt?(kt._state="scheduled",et._updateTaskCount(kt,1)):"running"===yt&&(kt._state="scheduling"),ct.call(this)}}return null!=(Y=Bt??Lt)?Y:kt}return U.apply(s,L)}),_=Ht(s,y,U=>function(B,L){const Y=L[0];let K;re(Y)?(K=D[Y],delete D[Y]):(K=Y?.[Mt],K?Y[Mt]=null:K=Y),K?.type?K.cancelFn&&K.zone.cancelTask(K):U.apply(s,L)})}function n(s,o,y){if(!y||0===y.length)return o;const c=y.filter(_=>_.target===s);if(0===c.length)return o;const d=c[0].ignoreProperties;return o.filter(_=>-1===d.indexOf(_))}function i(s,o,y,c){s&&ge(s,n(s,o,y),c)}function a(s){return Object.getOwnPropertyNames(s).filter(o=>o.startsWith("on")&&o.length>2).map(o=>o.substring(2))}function Tt(s,o,y,c,d){const _=Zone.__symbol__(c);if(o[_])return;const D=o[_]=o[c];o[c]=function(x,S,U){return S&&S.prototype&&d.forEach(function(B){const L=`${y}.${c}::`+B,Y=S.prototype;try{if(Y.hasOwnProperty(B)){const K=s.ObjectGetOwnPropertyDescriptor(Y,B);K&&K.value?(K.value=s.wrapWithCurrentZone(K.value,L),s._redefineProperty(S.prototype,B,K)):Y[B]&&(Y[B]=s.wrapWithCurrentZone(Y[B],L))}else Y[B]&&(Y[B]=s.wrapWithCurrentZone(Y[B],L))}catch{}}),D.call(o,x,S,U)},s.attachOriginToPatched(o[c],D)}var Le=function xt(){const o=globalThis,y=!0===o[tt("forceDuplicateZoneCheck")];if(o.Zone&&(y||"function"!=typeof o.Zone.__symbol__))throw new Error("Zone already loaded.");return null!=o.Zone||(o.Zone=function _t(){const s=u.performance;function o(nt){s&&s.mark&&s.mark(nt)}function y(nt,f){s&&s.measure&&s.measure(nt,f)}o("Zone");const c=class Oe{constructor(f,h){w(this,"_parent"),w(this,"_name"),w(this,"_properties"),w(this,"_zoneDelegate"),this._parent=f,this._name=h?h.name||"unnamed":"",this._properties=h&&h.properties||{},this._zoneDelegate=new D(this,this._parent&&this._parent._zoneDelegate,h)}static assertZonePatched(){if(u.Promise!==M.ZoneAwarePromise)throw new Error("Zone.js has detected that ZoneAwarePromise `(window|global).Promise` has been overwritten.\nMost likely cause is that a Promise polyfill has been loaded after Zone.js (Polyfilling Promise api is not necessary when zone.js is loaded. If you must load one, do so before loading zone.js.)")}static get root(){let f=Oe.current;for(;f.parent;)f=f.parent;return f}static get current(){return F.zone}static get currentTask(){return Ft}static __load_patch(f,h,l=!1){if(M.hasOwnProperty(f)){const A=!0===u[tt("forceDuplicateZoneCheck")];if(!l&&A)throw Error("Already loaded patch: "+f)}else if(!u["__Zone_disable_"+f]){const A="Zone:"+f;o(A),M[f]=h(u,Oe,X),y(A,A)}}get parent(){return this._parent}get name(){return this._name}get(f){const h=this.getZoneWith(f);if(h)return h._properties[f]}getZoneWith(f){let h=this;for(;h;){if(h._properties.hasOwnProperty(f))return h;h=h._parent}return null}fork(f){if(!f)throw new Error("ZoneSpec required!");return this._zoneDelegate.fork(this,f)}wrap(f,h){if("function"!=typeof f)throw new Error("Expecting function got: "+f);const l=this._zoneDelegate.intercept(this,f,h),A=this;return function(){return A.runGuarded(l,this,arguments,h)}}run(f,h,l,A){F={parent:F,zone:this};try{return this._zoneDelegate.invoke(this,f,h,l,A)}finally{F=F.parent}}runGuarded(f,h=null,l,A){F={parent:F,zone:this};try{try{return this._zoneDelegate.invoke(this,f,h,l,A)}catch(it){if(this._zoneDelegate.handleError(this,it))throw it}}finally{F=F.parent}}runTask(f,h,l){if(f.zone!=this)throw new Error("A task can only be run in the zone of creation! (Creation: "+(f.zone||Bt).name+"; Execution: "+this.name+")");const A=f,{type:it,data:{isPeriodic:J=!1,isRefreshable:qt=!1}={}}=f;if(f.state===P&&(it===j||it===bt))return;const Jt=f.state!=et;Jt&&A._transitionTo(et,ct);const Kt=Ft;Ft=A,F={parent:F,zone:this};try{it==bt&&f.data&&!J&&!qt&&(f.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,A,h,l)}catch(Vt){if(this._zoneDelegate.handleError(this,Vt))throw Vt}}finally{const Vt=f.state;if(Vt!==P&&Vt!==ut)if(it==j||J||qt&&Vt===k)Jt&&A._transitionTo(ct,et,k);else{const T=A._zoneDelegates;this._updateTaskCount(A,-1),Jt&&A._transitionTo(P,et,P),qt&&(A._zoneDelegates=T)}F=F.parent,Ft=Kt}}scheduleTask(f){if(f.zone&&f.zone!==this){let l=this;for(;l;){if(l===f.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${f.zone.name}`);l=l.parent}}f._transitionTo(k,P);const h=[];f._zoneDelegates=h,f._zone=this;try{f=this._zoneDelegate.scheduleTask(this,f)}catch(l){throw f._transitionTo(ut,k,P),this._zoneDelegate.handleError(this,l),l}return f._zoneDelegates===h&&this._updateTaskCount(f,1),f.state==k&&f._transitionTo(ct,k),f}scheduleMicroTask(f,h,l,A){return this.scheduleTask(new x(R,f,h,l,A,void 0))}scheduleMacroTask(f,h,l,A,it){return this.scheduleTask(new x(bt,f,h,l,A,it))}scheduleEventTask(f,h,l,A,it){return this.scheduleTask(new x(j,f,h,l,A,it))}cancelTask(f){if(f.zone!=this)throw new Error("A task can only be cancelled in the zone of creation! (Creation: "+(f.zone||Bt).name+"; Execution: "+this.name+")");if(f.state===ct||f.state===et){f._transitionTo(yt,ct,et);try{this._zoneDelegate.cancelTask(this,f)}catch(h){throw f._transitionTo(ut,yt),this._zoneDelegate.handleError(this,h),h}return this._updateTaskCount(f,-1),f._transitionTo(P,yt),f.runCount=-1,f}}_updateTaskCount(f,h){const l=f._zoneDelegates;-1==h&&(f._zoneDelegates=null);for(let A=0;Ant.hasTask(h,l),onScheduleTask:(nt,f,h,l)=>nt.scheduleTask(h,l),onInvokeTask:(nt,f,h,l,A,it)=>nt.invokeTask(h,l,A,it),onCancelTask:(nt,f,h,l)=>nt.cancelTask(h,l)};class D{constructor(f,h,l){w(this,"_zone"),w(this,"_taskCounts",{microTask:0,macroTask:0,eventTask:0}),w(this,"_parentDelegate"),w(this,"_forkDlgt"),w(this,"_forkZS"),w(this,"_forkCurrZone"),w(this,"_interceptDlgt"),w(this,"_interceptZS"),w(this,"_interceptCurrZone"),w(this,"_invokeDlgt"),w(this,"_invokeZS"),w(this,"_invokeCurrZone"),w(this,"_handleErrorDlgt"),w(this,"_handleErrorZS"),w(this,"_handleErrorCurrZone"),w(this,"_scheduleTaskDlgt"),w(this,"_scheduleTaskZS"),w(this,"_scheduleTaskCurrZone"),w(this,"_invokeTaskDlgt"),w(this,"_invokeTaskZS"),w(this,"_invokeTaskCurrZone"),w(this,"_cancelTaskDlgt"),w(this,"_cancelTaskZS"),w(this,"_cancelTaskCurrZone"),w(this,"_hasTaskDlgt"),w(this,"_hasTaskDlgtOwner"),w(this,"_hasTaskZS"),w(this,"_hasTaskCurrZone"),this._zone=f,this._parentDelegate=h,this._forkZS=l&&(l&&l.onFork?l:h._forkZS),this._forkDlgt=l&&(l.onFork?h:h._forkDlgt),this._forkCurrZone=l&&(l.onFork?this._zone:h._forkCurrZone),this._interceptZS=l&&(l.onIntercept?l:h._interceptZS),this._interceptDlgt=l&&(l.onIntercept?h:h._interceptDlgt),this._interceptCurrZone=l&&(l.onIntercept?this._zone:h._interceptCurrZone),this._invokeZS=l&&(l.onInvoke?l:h._invokeZS),this._invokeDlgt=l&&(l.onInvoke?h:h._invokeDlgt),this._invokeCurrZone=l&&(l.onInvoke?this._zone:h._invokeCurrZone),this._handleErrorZS=l&&(l.onHandleError?l:h._handleErrorZS),this._handleErrorDlgt=l&&(l.onHandleError?h:h._handleErrorDlgt),this._handleErrorCurrZone=l&&(l.onHandleError?this._zone:h._handleErrorCurrZone),this._scheduleTaskZS=l&&(l.onScheduleTask?l:h._scheduleTaskZS),this._scheduleTaskDlgt=l&&(l.onScheduleTask?h:h._scheduleTaskDlgt),this._scheduleTaskCurrZone=l&&(l.onScheduleTask?this._zone:h._scheduleTaskCurrZone),this._invokeTaskZS=l&&(l.onInvokeTask?l:h._invokeTaskZS),this._invokeTaskDlgt=l&&(l.onInvokeTask?h:h._invokeTaskDlgt),this._invokeTaskCurrZone=l&&(l.onInvokeTask?this._zone:h._invokeTaskCurrZone),this._cancelTaskZS=l&&(l.onCancelTask?l:h._cancelTaskZS),this._cancelTaskDlgt=l&&(l.onCancelTask?h:h._cancelTaskDlgt),this._cancelTaskCurrZone=l&&(l.onCancelTask?this._zone:h._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const A=l&&l.onHasTask;(A||h&&h._hasTaskZS)&&(this._hasTaskZS=A?l:_,this._hasTaskDlgt=h,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=this._zone,l.onScheduleTask||(this._scheduleTaskZS=_,this._scheduleTaskDlgt=h,this._scheduleTaskCurrZone=this._zone),l.onInvokeTask||(this._invokeTaskZS=_,this._invokeTaskDlgt=h,this._invokeTaskCurrZone=this._zone),l.onCancelTask||(this._cancelTaskZS=_,this._cancelTaskDlgt=h,this._cancelTaskCurrZone=this._zone))}get zone(){return this._zone}fork(f,h){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,f,h):new d(f,h)}intercept(f,h,l){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,f,h,l):h}invoke(f,h,l,A,it){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,f,h,l,A,it):h.apply(l,A)}handleError(f,h){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,f,h)}scheduleTask(f,h){let l=h;if(this._scheduleTaskZS)this._hasTaskZS&&l._zoneDelegates.push(this._hasTaskDlgtOwner),l=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,f,h),l||(l=h);else if(h.scheduleFn)h.scheduleFn(h);else{if(h.type!=R)throw new Error("Task is missing scheduleFn.");kt(h)}return l}invokeTask(f,h,l,A){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,f,h,l,A):h.callback.apply(l,A)}cancelTask(f,h){let l;if(this._cancelTaskZS)l=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,f,h);else{if(!h.cancelFn)throw Error("Task is not cancelable");l=h.cancelFn(h)}return l}hasTask(f,h){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,f,h)}catch(l){this.handleError(f,l)}}_updateTaskCount(f,h){const l=this._taskCounts,A=l[f],it=l[f]=A+h;if(it<0)throw new Error("More tasks executed then were scheduled.");0!=A&&0!=it||this.hasTask(this._zone,{microTask:l.microTask>0,macroTask:l.macroTask>0,eventTask:l.eventTask>0,change:f})}}class x{constructor(f,h,l,A,it,J){if(w(this,"type"),w(this,"source"),w(this,"invoke"),w(this,"callback"),w(this,"data"),w(this,"scheduleFn"),w(this,"cancelFn"),w(this,"_zone",null),w(this,"runCount",0),w(this,"_zoneDelegates",null),w(this,"_state","notScheduled"),this.type=f,this.source=h,this.data=A,this.scheduleFn=it,this.cancelFn=J,!l)throw new Error("callback is not defined");this.callback=l;const qt=this;this.invoke=f===j&&A&&A.useG?x.invokeTask:function(){return x.invokeTask.call(u,qt,this,arguments)}}static invokeTask(f,h,l){f||(f=this),Zt++;try{return f.runCount++,f.zone.runTask(f,h,l)}finally{1==Zt&&Lt(),Zt--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(P,k)}_transitionTo(f,h,l){if(this._state!==h&&this._state!==l)throw new Error(`${this.type} '${this.source}': can not transition to '${f}', expecting state '${h}'${l?" or '"+l+"'":""}, was '${this._state}'.`);this._state=f,f==P&&(this._zoneDelegates=null)}toString(){return this.data&&typeof this.data.handleId<"u"?this.data.handleId.toString():Object.prototype.toString.call(this)}toJSON(){return{type:this.type,state:this.state,source:this.source,zone:this.zone.name,runCount:this.runCount}}}const S=tt("setTimeout"),U=tt("Promise"),B=tt("then");let K,L=[],Y=!1;function Dt(nt){if(K||u[U]&&(K=u[U].resolve(0)),K){let f=K[B];f||(f=K.then),f.call(K,nt)}else u[S](nt,0)}function kt(nt){0===Zt&&0===L.length&&Dt(Lt),nt&&L.push(nt)}function Lt(){if(!Y){for(Y=!0;L.length;){const nt=L;L=[];for(let f=0;fF,onUnhandledError:at,microtaskDrainDone:at,scheduleMicroTask:kt,showUncaughtError:()=>!d[tt("ignoreConsoleErrorUncaughtError")],patchEventTarget:()=>[],patchOnProperties:at,patchMethod:()=>at,bindArguments:()=>[],patchThen:()=>at,patchMacroTask:()=>at,patchEventPrototype:()=>at,getGlobalObjects:()=>{},ObjectDefineProperty:()=>at,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>at,wrapWithCurrentZone:()=>at,filterProperties:()=>[],attachOriginToPatched:()=>at,_redefineProperty:()=>at,patchCallbacks:()=>at,nativeScheduleMicroTask:Dt};let F={parent:null,zone:new d(null,null)},Ft=null,Zt=0;function at(){}return y("Zone","Zone"),d}()),o.Zone}();(function Ge(s){(function mt(s){s.__load_patch("ZoneAwarePromise",(o,y,c)=>{const d=Object.getOwnPropertyDescriptor,_=Object.defineProperty,x=c.symbol,S=[],U=!1!==o[x("DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION")],B=x("Promise"),L=x("then");c.onUnhandledError=T=>{if(c.showUncaughtError()){const g=T&&T.rejection;g?console.error("Unhandled Promise rejection:",g instanceof Error?g.message:g,"; Zone:",T.zone.name,"; Task:",T.task&&T.task.source,"; Value:",g,g instanceof Error?g.stack:void 0):console.error(T)}},c.microtaskDrainDone=()=>{for(;S.length;){const T=S.shift();try{T.zone.runGuarded(()=>{throw T.throwOriginal?T.rejection:T})}catch(g){Dt(g)}}};const K=x("unhandledPromiseRejectionHandler");function Dt(T){c.onUnhandledError(T);try{const g=y[K];"function"==typeof g&&g.call(this,T)}catch{}}function kt(T){return T&&"function"==typeof T.then}function Lt(T){return T}function Bt(T){return J.reject(T)}const P=x("state"),k=x("value"),ct=x("finally"),et=x("parentPromiseValue"),yt=x("parentPromiseState"),R=null,j=!1;function X(T,g){return p=>{try{at(T,g,p)}catch(m){at(T,!1,m)}}}const F=function(){let T=!1;return function(p){return function(){T||(T=!0,p.apply(null,arguments))}}},Ft="Promise resolved with itself",Zt=x("currentTaskTrace");function at(T,g,p){const m=F();if(T===p)throw new TypeError(Ft);if(T[P]===R){let C=null;try{("object"==typeof p||"function"==typeof p)&&(C=p&&p.then)}catch(O){return m(()=>{at(T,!1,O)})(),T}if(g!==j&&p instanceof J&&p.hasOwnProperty(P)&&p.hasOwnProperty(k)&&p[P]!==R)f(p),at(T,p[P],p[k]);else if(g!==j&&"function"==typeof C)try{C.call(p,m(X(T,g)),m(X(T,!1)))}catch(O){m(()=>{at(T,!1,O)})()}else{T[P]=g;const O=T[k];if(T[k]=p,T[ct]===ct&&!0===g&&(T[P]=T[yt],T[k]=T[et]),g===j&&p instanceof Error){const v=y.currentTask&&y.currentTask.data&&y.currentTask.data.__creationTrace__;v&&_(p,Zt,{configurable:!0,enumerable:!1,writable:!0,value:v})}for(let v=0;v{try{const G=T[k],V=!!p&&ct===p[ct];V&&(p[et]=G,p[yt]=O);const $=g.run(v,void 0,V&&v!==Bt&&v!==Lt?[]:[G]);at(p,!0,$)}catch(G){at(p,!1,G)}},p)}const A=function(){},it=o.AggregateError;class J{static toString(){return"function ZoneAwarePromise() { [native code] }"}static resolve(g){return g instanceof J?g:at(new this(null),!0,g)}static reject(g){return at(new this(null),j,g)}static withResolvers(){const g={};return g.promise=new J((p,m)=>{g.resolve=p,g.reject=m}),g}static any(g){if(!g||"function"!=typeof g[Symbol.iterator])return Promise.reject(new it([],"All promises were rejected"));const p=[];let m=0;try{for(let v of g)m++,p.push(J.resolve(v))}catch{return Promise.reject(new it([],"All promises were rejected"))}if(0===m)return Promise.reject(new it([],"All promises were rejected"));let C=!1;const O=[];return new J((v,G)=>{for(let V=0;V{C||(C=!0,v($))},$=>{O.push($),m--,0===m&&(C=!0,G(new it(O,"All promises were rejected")))})})}static race(g){let p,m,C=new this((G,V)=>{p=G,m=V});function O(G){p(G)}function v(G){m(G)}for(let G of g)kt(G)||(G=this.resolve(G)),G.then(O,v);return C}static all(g){return J.allWithCallback(g)}static allSettled(g){return(this&&this.prototype instanceof J?this:J).allWithCallback(g,{thenCallback:m=>({status:"fulfilled",value:m}),errorCallback:m=>({status:"rejected",reason:m})})}static allWithCallback(g,p){let m,C,O=new this(($,ft)=>{m=$,C=ft}),v=2,G=0;const V=[];for(let $ of g){kt($)||($=this.resolve($));const ft=G;try{$.then(pt=>{V[ft]=p?p.thenCallback(pt):pt,v--,0===v&&m(V)},pt=>{p?(V[ft]=p.errorCallback(pt),v--,0===v&&m(V)):C(pt)})}catch(pt){C(pt)}v++,G++}return v-=2,0===v&&m(V),O}constructor(g){const p=this;if(!(p instanceof J))throw new Error("Must be an instanceof Promise.");p[P]=R,p[k]=[];try{const m=F();g&&g(m(X(p,!0)),m(X(p,j)))}catch(m){at(p,!1,m)}}get[Symbol.toStringTag](){return"Promise"}get[Symbol.species](){return J}then(g,p){var m;let C=null==(m=this.constructor)?void 0:m[Symbol.species];(!C||"function"!=typeof C)&&(C=this.constructor||J);const O=new C(A),v=y.current;return this[P]==R?this[k].push(v,O,g,p):h(this,v,O,g,p),O}catch(g){return this.then(null,g)}finally(g){var p;let m=null==(p=this.constructor)?void 0:p[Symbol.species];(!m||"function"!=typeof m)&&(m=J);const C=new m(A);C[ct]=ct;const O=y.current;return this[P]==R?this[k].push(O,C,g,g):h(this,O,C,g,g),C}}J.resolve=J.resolve,J.reject=J.reject,J.race=J.race,J.all=J.all;const qt=o[B]=o.Promise;o.Promise=J;const Jt=x("thenPatched");function Kt(T){const g=T.prototype,p=d(g,"then");if(p&&(!1===p.writable||!p.configurable))return;const m=g.then;g[L]=m,T.prototype.then=function(C,O){return new J((G,V)=>{m.call(this,G,V)}).then(C,O)},T[Jt]=!0}return c.patchThen=Kt,qt&&(Kt(qt),Ht(o,"fetch",T=>function Vt(T){return function(g,p){let m=T.apply(g,p);if(m instanceof J)return m;let C=m.constructor;return C[Jt]||Kt(C),m}}(T))),Promise[y.__symbol__("uncaughtPromiseErrors")]=S,J})})(s),function ht(s){s.__load_patch("toString",o=>{const y=Function.prototype.toString,c=Q("OriginalDelegate"),d=Q("Promise"),_=Q("Error"),D=function(){if("function"==typeof this){const B=this[c];if(B)return"function"==typeof B?y.call(B):Object.prototype.toString.call(B);if(this===Promise){const L=o[d];if(L)return y.call(L)}if(this===Error){const L=o[_];if(L)return y.call(L)}}return y.call(this)};D[c]=y,Function.prototype.toString=D;const x=Object.prototype.toString;Object.prototype.toString=function(){return"function"==typeof Promise&&this instanceof Promise?"[object Promise]":x.call(this)}})}(s),function rt(s){s.__load_patch("util",(o,y,c)=>{const d=a(o);c.patchOnProperties=ge,c.patchMethod=Ht,c.bindArguments=ae,c.patchMacroTask=Se;const _=y.__symbol__("BLACK_LISTED_EVENTS"),D=y.__symbol__("UNPATCHED_EVENTS");o[D]&&(o[_]=o[D]),o[_]&&(y[_]=y[D]=o[_]),c.patchEventPrototype=we,c.patchEventTarget=fe,c.ObjectDefineProperty=I,c.ObjectGetOwnPropertyDescriptor=It,c.ObjectCreate=q,c.ArraySlice=st,c.patchClass=te,c.wrapWithCurrentZone=se,c.filterProperties=n,c.attachOriginToPatched=Gt,c._redefineProperty=Object.defineProperty,c.patchCallbacks=Tt,c.getGlobalObjects=()=>({globalSources:he,zoneSymbolEventNames:Ot,eventNames:d,isBrowser:ye,isMix:ve,isNode:le,TRUE_STR:gt,FALSE_STR:St,ZONE_SYMBOL_PREFIX:Qt,ADD_EVENT_LISTENER_STR:Ct,REMOVE_EVENT_LISTENER_STR:dt})})}(s)})(Le),function H(s){s.__load_patch("timers",o=>{const c="clear";ne(o,"set",c,"Timeout"),ne(o,"set",c,"Interval"),ne(o,"set",c,"Immediate")}),s.__load_patch("requestAnimationFrame",o=>{ne(o,"request","cancel","AnimationFrame"),ne(o,"mozRequest","mozCancel","AnimationFrame"),ne(o,"webkitRequest","webkitCancel","AnimationFrame")}),s.__load_patch("blocking",(o,y)=>{const c=["alert","prompt","confirm"];for(let d=0;dfunction(U,B){return y.current.run(D,o,B,S)})}),s.__load_patch("EventTarget",(o,y,c)=>{(function e(s,o){o.patchEventPrototype(s,o)})(o,c),function t(s,o){if(Zone[o.symbol("patchEventTarget")])return;const{eventNames:y,zoneSymbolEventNames:c,TRUE_STR:d,FALSE_STR:_,ZONE_SYMBOL_PREFIX:D}=o.getGlobalObjects();for(let S=0;S{te("MutationObserver"),te("WebKitMutationObserver")}),s.__load_patch("IntersectionObserver",(o,y,c)=>{te("IntersectionObserver")}),s.__load_patch("FileReader",(o,y,c)=>{te("FileReader")}),s.__load_patch("on_property",(o,y,c)=>{!function E(s,o){if(le&&!ve||Zone[s.symbol("patchEvents")])return;const y=o.__Zone_ignore_on_properties;let c=[];if(ye){const d=window;c=c.concat(["Document","SVGElement","Element","HTMLElement","HTMLBodyElement","HTMLMediaElement","HTMLFrameSetElement","HTMLFrameElement","HTMLIFrameElement","HTMLMarqueeElement","Worker"]),i(d,a(d),y,b(d))}c=c.concat(["XMLHttpRequest","XMLHttpRequestEventTarget","IDBIndex","IDBRequest","IDBOpenDBRequest","IDBDatabase","IDBTransaction","IDBCursor","WebSocket"]);for(let d=0;d{!function r(s,o){const{isBrowser:y,isMix:c}=o.getGlobalObjects();(y||c)&&s.customElements&&"customElements"in s&&o.patchCallbacks(o,s.customElements,"customElements","define",["connectedCallback","disconnectedCallback","adoptedCallback","attributeChangedCallback","formAssociatedCallback","formDisabledCallback","formResetCallback","formStateRestoreCallback"])}(o,c)}),s.__load_patch("XHR",(o,y)=>{!function U(B){const L=B.XMLHttpRequest;if(!L)return;const Y=L.prototype;let Dt=Y[Pt],kt=Y[jt];if(!Dt){const M=B.XMLHttpRequestEventTarget;if(M){const X=M.prototype;Dt=X[Pt],kt=X[jt]}}const Lt="readystatechange",Bt="scheduled";function P(M){const X=M.data,F=X.target;F[D]=!1,F[S]=!1;const Ft=F[_];Dt||(Dt=F[Pt],kt=F[jt]),Ft&&kt.call(F,Lt,Ft);const Zt=F[_]=()=>{if(F.readyState===F.DONE)if(!X.aborted&&F[D]&&M.state===Bt){const nt=F[y.__symbol__("loadfalse")];if(0!==F.status&&nt&&nt.length>0){const f=M.invoke;M.invoke=function(){const h=F[y.__symbol__("loadfalse")];for(let l=0;lfunction(M,X){return M[d]=0==X[2],M[x]=X[1],et.apply(M,X)}),ut=Q("fetchTaskAborting"),R=Q("fetchTaskScheduling"),bt=Ht(Y,"send",()=>function(M,X){if(!0===y.current[R]||M[d])return bt.apply(M,X);{const F={target:M,url:M[x],isPeriodic:!1,args:X,aborted:!1},Ft=de("XMLHttpRequest.send",k,F,P,ct);M&&!0===M[S]&&!F.aborted&&Ft.state===Bt&&Ft.invoke()}}),j=Ht(Y,"abort",()=>function(M,X){const F=function K(M){return M[c]}(M);if(F&&"string"==typeof F.type){if(null==F.cancelFn||F.data&&F.data.aborted)return;F.zone.cancelTask(F)}else if(!0===y.current[ut])return j.apply(M,X)})}(o);const c=Q("xhrTask"),d=Q("xhrSync"),_=Q("xhrListener"),D=Q("xhrScheduled"),x=Q("xhrURL"),S=Q("xhrErrorBeforeScheduled")}),s.__load_patch("geolocation",o=>{o.navigator&&o.navigator.geolocation&&function be(s,o){const y=s.constructor.name;for(let c=0;c{const S=function(){return x.apply(this,ae(arguments,y+"."+d))};return Gt(S,x),S})(_)}}}(o.navigator.geolocation,["getCurrentPosition","watchPosition"])}),s.__load_patch("PromiseRejectionEvent",(o,y)=>{function c(d){return function(_){Ut(o,d).forEach(x=>{const S=o.PromiseRejectionEvent;if(S){const U=new S(d,{promise:_.promise,reason:_.rejection});x.invoke(U)}})}}o.PromiseRejectionEvent&&(y[Q("unhandledPromiseRejectionHandler")]=c("unhandledrejection"),y[Q("rejectionHandledHandler")]=c("rejectionhandled"))}),s.__load_patch("queueMicrotask",(o,y,c)=>{!function De(s,o){o.patchMethod(s,"queueMicrotask",y=>function(c,d){Zone.current.scheduleMicroTask("queueMicrotask",d[0])})}(o,c)})}(Le)}},Wt=>{var z=N=>Wt(Wt.s=N);z(6935),z(4050)}]); \ No newline at end of file diff --git a/frontend/polyfills.277648f7b3e820e3.js b/frontend/polyfills.277648f7b3e820e3.js deleted file mode 100644 index b1e72783..00000000 --- a/frontend/polyfills.277648f7b3e820e3.js +++ /dev/null @@ -1 +0,0 @@ -(self.webpackChunkRTLApp=self.webpackChunkRTLApp||[]).push([[461],{4050:(Ce,D,Y)=>{window.global=window,window.global.Buffer=window.global.Buffer||Y(3838).Buffer,window.global.process=window.global.process||Y(573)},3981:(Ce,D)=>{"use strict";D.byteLength=function l(w){var v=B(w),R=v[1];return 3*(v[0]+R)/4-R},D.toByteArray=function ke(w){var v,he,V=B(w),R=V[0],xe=V[1],ae=new ue(function se(w,v,V){return 3*(v+V)/4-V}(0,R,xe)),K=0,Ge=xe>0?R-4:R;for(he=0;he>16&255,ae[K++]=v>>8&255,ae[K++]=255&v;return 2===xe&&(v=P[w.charCodeAt(he)]<<2|P[w.charCodeAt(he+1)]>>4,ae[K++]=255&v),1===xe&&(v=P[w.charCodeAt(he)]<<10|P[w.charCodeAt(he+1)]<<4|P[w.charCodeAt(he+2)]>>2,ae[K++]=v>>8&255,ae[K++]=255&v),ae},D.fromByteArray=function me(w){for(var v,V=w.length,R=V%3,xe=[],K=0,Ge=V-R;KGe?Ge:K+16383));return 1===R?xe.push(Y[(v=w[V-1])>>2]+Y[v<<4&63]+"=="):2===R&&xe.push(Y[(v=(w[V-2]<<8)+w[V-1])>>10]+Y[v>>4&63]+Y[v<<2&63]+"="),xe.join("")};for(var Y=[],P=[],ue=typeof Uint8Array<"u"?Uint8Array:Array,Te="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",ne=0;ne<64;++ne)Y[ne]=Te[ne],P[Te.charCodeAt(ne)]=ne;function B(w){var v=w.length;if(v%4>0)throw new Error("Invalid string. Length must be a multiple of 4");var V=w.indexOf("=");return-1===V&&(V=v),[V,V===v?0:4-V%4]}function le(w){return Y[w>>18&63]+Y[w>>12&63]+Y[w>>6&63]+Y[63&w]}function te(w,v,V){for(var xe=[],ae=v;ae{"use strict";var P=Y(3981),ue=Y(2020),Te="function"==typeof Symbol&&"function"==typeof Symbol.for?Symbol.for("nodejs.util.inspect.custom"):null;D.Buffer=l,D.SlowBuffer=function ae(r){return+r!=r&&(r=0),l.alloc(+r)},D.INSPECT_MAX_BYTES=50;var ne=2147483647;function B(r){if(r>ne)throw new RangeError('The value "'+r+'" is invalid for option "size"');var e=new Uint8Array(r);return Object.setPrototypeOf(e,l.prototype),e}function l(r,e,t){if("number"==typeof r){if("string"==typeof e)throw new TypeError('The "string" argument must be of type string. Received type number');return te(r)}return se(r,e,t)}function se(r,e,t){if("string"==typeof r)return function me(r,e){if(("string"!=typeof e||""===e)&&(e="utf8"),!l.isEncoding(e))throw new TypeError("Unknown encoding: "+e);var t=0|K(r,e),n=B(t),c=n.write(r,e);return c!==t&&(n=n.slice(0,c)),n}(r,e);if(ArrayBuffer.isView(r))return function v(r){if(Ne(r,Uint8Array)){var e=new Uint8Array(r);return V(e.buffer,e.byteOffset,e.byteLength)}return w(r)}(r);if(null==r)throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r);if(Ne(r,ArrayBuffer)||r&&Ne(r.buffer,ArrayBuffer)||typeof SharedArrayBuffer<"u"&&(Ne(r,SharedArrayBuffer)||r&&Ne(r.buffer,SharedArrayBuffer)))return V(r,e,t);if("number"==typeof r)throw new TypeError('The "value" argument must not be of type number. Received type number');var n=r.valueOf&&r.valueOf();if(null!=n&&n!==r)return l.from(n,e,t);var c=function R(r){if(l.isBuffer(r)){var e=0|xe(r.length),t=B(e);return 0===t.length||r.copy(t,0,0,e),t}return void 0!==r.length?"number"!=typeof r.length||st(r.length)?B(0):w(r):"Buffer"===r.type&&Array.isArray(r.data)?w(r.data):void 0}(r);if(c)return c;if(typeof Symbol<"u"&&null!=Symbol.toPrimitive&&"function"==typeof r[Symbol.toPrimitive])return l.from(r[Symbol.toPrimitive]("string"),e,t);throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof r)}function ke(r){if("number"!=typeof r)throw new TypeError('"size" argument must be of type number');if(r<0)throw new RangeError('The value "'+r+'" is invalid for option "size"')}function te(r){return ke(r),B(r<0?0:0|xe(r))}function w(r){for(var e=r.length<0?0:0|xe(r.length),t=B(e),n=0;n=ne)throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+ne.toString(16)+" bytes");return 0|r}function K(r,e){if(l.isBuffer(r))return r.length;if(ArrayBuffer.isView(r)||Ne(r,ArrayBuffer))return r.byteLength;if("string"!=typeof r)throw new TypeError('The "string" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof r);var t=r.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===t)return 0;for(var c=!1;;)switch(e){case"ascii":case"latin1":case"binary":return t;case"utf8":case"utf-8":return $e(r).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*t;case"hex":return t>>>1;case"base64":return ot(r).length;default:if(c)return n?-1:$e(r).length;e=(""+e).toLowerCase(),c=!0}}function Ge(r,e,t){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length||((void 0===t||t>this.length)&&(t=this.length),t<=0)||(t>>>=0)<=(e>>>=0))return"";for(r||(r="utf8");;)switch(r){case"hex":return wt(this,e,t);case"utf8":case"utf-8":return nt(this,e,t);case"ascii":return We(this,e,t);case"latin1":case"binary":return Oe(this,e,t);case"base64":return ft(this,e,t);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Ue(this,e,t);default:if(n)throw new TypeError("Unknown encoding: "+r);r=(r+"").toLowerCase(),n=!0}}function he(r,e,t){var n=r[e];r[e]=r[t],r[t]=n}function ct(r,e,t,n,c){if(0===r.length)return-1;if("string"==typeof t?(n=t,t=0):t>2147483647?t=2147483647:t<-2147483648&&(t=-2147483648),st(t=+t)&&(t=c?0:r.length-1),t<0&&(t=r.length+t),t>=r.length){if(c)return-1;t=r.length-1}else if(t<0){if(!c)return-1;t=0}if("string"==typeof e&&(e=l.from(e,n)),l.isBuffer(e))return 0===e.length?-1:tt(r,e,t,n,c);if("number"==typeof e)return e&=255,"function"==typeof Uint8Array.prototype.indexOf?c?Uint8Array.prototype.indexOf.call(r,e,t):Uint8Array.prototype.lastIndexOf.call(r,e,t):tt(r,[e],t,n,c);throw new TypeError("val must be string, number or Buffer")}function tt(r,e,t,n,c){var ce,d=1,E=r.length,J=e.length;if(void 0!==n&&("ucs2"===(n=String(n).toLowerCase())||"ucs-2"===n||"utf16le"===n||"utf-16le"===n)){if(r.length<2||e.length<2)return-1;d=2,E/=2,J/=2,t/=2}function ie(Et,mt){return 1===d?Et[mt]:Et.readUInt16BE(mt*d)}if(c){var Fe=-1;for(ce=t;ceE&&(t=E-J),ce=t;ce>=0;ce--){for(var pe=!0,Ke=0;Kec&&(n=c):n=c;var d=e.length;n>d/2&&(n=d/2);for(var E=0;E>8,d.push(t%256),d.push(n);return d}(e,r.length-t),r,t,n)}function ft(r,e,t){return P.fromByteArray(0===e&&t===r.length?r:r.slice(e,t))}function nt(r,e,t){t=Math.min(r.length,t);for(var n=[],c=e;c239?4:d>223?3:d>191?2:1;if(c+J<=t)switch(J){case 1:d<128&&(E=d);break;case 2:128==(192&(ie=r[c+1]))&&(pe=(31&d)<<6|63&ie)>127&&(E=pe);break;case 3:ce=r[c+2],128==(192&(ie=r[c+1]))&&128==(192&ce)&&(pe=(15&d)<<12|(63&ie)<<6|63&ce)>2047&&(pe<55296||pe>57343)&&(E=pe);break;case 4:ce=r[c+2],Fe=r[c+3],128==(192&(ie=r[c+1]))&&128==(192&ce)&&128==(192&Fe)&&(pe=(15&d)<<18|(63&ie)<<12|(63&ce)<<6|63&Fe)>65535&&pe<1114112&&(E=pe)}null===E?(E=65533,J=1):E>65535&&(n.push((E-=65536)>>>10&1023|55296),E=56320|1023&E),n.push(E),c+=J}return function Le(r){var e=r.length;if(e<=it)return String.fromCharCode.apply(String,r);for(var t="",n=0;nc.length?l.from(E).copy(c,d):Uint8Array.prototype.set.call(c,E,d);else{if(!l.isBuffer(E))throw new TypeError('"list" argument must be an Array of Buffers');E.copy(c,d)}d+=E.length}return c},l.byteLength=K,l.prototype._isBuffer=!0,l.prototype.swap16=function(){var e=this.length;if(e%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var t=0;tt&&(e+=" ... "),""},Te&&(l.prototype[Te]=l.prototype.inspect),l.prototype.compare=function(e,t,n,c,d){if(Ne(e,Uint8Array)&&(e=l.from(e,e.offset,e.byteLength)),!l.isBuffer(e))throw new TypeError('The "target" argument must be one of type Buffer or Uint8Array. Received type '+typeof e);if(void 0===t&&(t=0),void 0===n&&(n=e?e.length:0),void 0===c&&(c=0),void 0===d&&(d=this.length),t<0||n>e.length||c<0||d>this.length)throw new RangeError("out of range index");if(c>=d&&t>=n)return 0;if(c>=d)return-1;if(t>=n)return 1;if(this===e)return 0;for(var E=(d>>>=0)-(c>>>=0),J=(n>>>=0)-(t>>>=0),ie=Math.min(E,J),ce=this.slice(c,d),Fe=e.slice(t,n),pe=0;pe>>=0,isFinite(n)?(n>>>=0,void 0===c&&(c="utf8")):(c=n,n=void 0)}var d=this.length-t;if((void 0===n||n>d)&&(n=d),e.length>0&&(n<0||t<0)||t>this.length)throw new RangeError("Attempt to write outside buffer bounds");c||(c="utf8");for(var E=!1;;)switch(c){case"hex":return ut(this,e,t,n);case"utf8":case"utf-8":return qe(this,e,t,n);case"ascii":case"latin1":case"binary":return rt(this,e,t,n);case"base64":return lt(this,e,t,n);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return Ye(this,e,t,n);default:if(E)throw new TypeError("Unknown encoding: "+c);c=(""+c).toLowerCase(),E=!0}},l.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var it=4096;function We(r,e,t){var n="";t=Math.min(r.length,t);for(var c=e;cn)&&(t=n);for(var c="",d=e;dt)throw new RangeError("Trying to access beyond buffer length")}function Se(r,e,t,n,c,d){if(!l.isBuffer(r))throw new TypeError('"buffer" argument must be a Buffer instance');if(e>c||er.length)throw new RangeError("Index out of range")}function ht(r,e,t,n,c,d){if(t+n>r.length)throw new RangeError("Index out of range");if(t<0)throw new RangeError("Index out of range")}function pt(r,e,t,n,c){return e=+e,t>>>=0,c||ht(r,0,t,4),ue.write(r,e,t,n,23,4),t+4}function Ve(r,e,t,n,c){return e=+e,t>>>=0,c||ht(r,0,t,8),ue.write(r,e,t,n,52,8),t+8}l.prototype.slice=function(e,t){var n=this.length;(e=~~e)<0?(e+=n)<0&&(e=0):e>n&&(e=n),(t=void 0===t?n:~~t)<0?(t+=n)<0&&(t=0):t>n&&(t=n),t>>=0,t>>>=0,n||be(e,t,this.length);for(var c=this[e],d=1,E=0;++E>>=0,t>>>=0,n||be(e,t,this.length);for(var c=this[e+--t],d=1;t>0&&(d*=256);)c+=this[e+--t]*d;return c},l.prototype.readUint8=l.prototype.readUInt8=function(e,t){return e>>>=0,t||be(e,1,this.length),this[e]},l.prototype.readUint16LE=l.prototype.readUInt16LE=function(e,t){return e>>>=0,t||be(e,2,this.length),this[e]|this[e+1]<<8},l.prototype.readUint16BE=l.prototype.readUInt16BE=function(e,t){return e>>>=0,t||be(e,2,this.length),this[e]<<8|this[e+1]},l.prototype.readUint32LE=l.prototype.readUInt32LE=function(e,t){return e>>>=0,t||be(e,4,this.length),(this[e]|this[e+1]<<8|this[e+2]<<16)+16777216*this[e+3]},l.prototype.readUint32BE=l.prototype.readUInt32BE=function(e,t){return e>>>=0,t||be(e,4,this.length),16777216*this[e]+(this[e+1]<<16|this[e+2]<<8|this[e+3])},l.prototype.readIntLE=function(e,t,n){e>>>=0,t>>>=0,n||be(e,t,this.length);for(var c=this[e],d=1,E=0;++E=(d*=128)&&(c-=Math.pow(2,8*t)),c},l.prototype.readIntBE=function(e,t,n){e>>>=0,t>>>=0,n||be(e,t,this.length);for(var c=t,d=1,E=this[e+--c];c>0&&(d*=256);)E+=this[e+--c]*d;return E>=(d*=128)&&(E-=Math.pow(2,8*t)),E},l.prototype.readInt8=function(e,t){return e>>>=0,t||be(e,1,this.length),128&this[e]?-1*(255-this[e]+1):this[e]},l.prototype.readInt16LE=function(e,t){e>>>=0,t||be(e,2,this.length);var n=this[e]|this[e+1]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt16BE=function(e,t){e>>>=0,t||be(e,2,this.length);var n=this[e+1]|this[e]<<8;return 32768&n?4294901760|n:n},l.prototype.readInt32LE=function(e,t){return e>>>=0,t||be(e,4,this.length),this[e]|this[e+1]<<8|this[e+2]<<16|this[e+3]<<24},l.prototype.readInt32BE=function(e,t){return e>>>=0,t||be(e,4,this.length),this[e]<<24|this[e+1]<<16|this[e+2]<<8|this[e+3]},l.prototype.readFloatLE=function(e,t){return e>>>=0,t||be(e,4,this.length),ue.read(this,e,!0,23,4)},l.prototype.readFloatBE=function(e,t){return e>>>=0,t||be(e,4,this.length),ue.read(this,e,!1,23,4)},l.prototype.readDoubleLE=function(e,t){return e>>>=0,t||be(e,8,this.length),ue.read(this,e,!0,52,8)},l.prototype.readDoubleBE=function(e,t){return e>>>=0,t||be(e,8,this.length),ue.read(this,e,!1,52,8)},l.prototype.writeUintLE=l.prototype.writeUIntLE=function(e,t,n,c){e=+e,t>>>=0,n>>>=0,c||Se(this,e,t,n,Math.pow(2,8*n)-1,0);var E=1,J=0;for(this[t]=255&e;++J>>=0,n>>>=0,c||Se(this,e,t,n,Math.pow(2,8*n)-1,0);var E=n-1,J=1;for(this[t+E]=255&e;--E>=0&&(J*=256);)this[t+E]=e/J&255;return t+n},l.prototype.writeUint8=l.prototype.writeUInt8=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,1,255,0),this[t]=255&e,t+1},l.prototype.writeUint16LE=l.prototype.writeUInt16LE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,2,65535,0),this[t]=255&e,this[t+1]=e>>>8,t+2},l.prototype.writeUint16BE=l.prototype.writeUInt16BE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,2,65535,0),this[t]=e>>>8,this[t+1]=255&e,t+2},l.prototype.writeUint32LE=l.prototype.writeUInt32LE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,4,4294967295,0),this[t+3]=e>>>24,this[t+2]=e>>>16,this[t+1]=e>>>8,this[t]=255&e,t+4},l.prototype.writeUint32BE=l.prototype.writeUInt32BE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,4,4294967295,0),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},l.prototype.writeIntLE=function(e,t,n,c){if(e=+e,t>>>=0,!c){var d=Math.pow(2,8*n-1);Se(this,e,t,n,d-1,-d)}var E=0,J=1,ie=0;for(this[t]=255&e;++E>>=0,!c){var d=Math.pow(2,8*n-1);Se(this,e,t,n,d-1,-d)}var E=n-1,J=1,ie=0;for(this[t+E]=255&e;--E>=0&&(J*=256);)e<0&&0===ie&&0!==this[t+E+1]&&(ie=1),this[t+E]=(e/J|0)-ie&255;return t+n},l.prototype.writeInt8=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,1,127,-128),e<0&&(e=255+e+1),this[t]=255&e,t+1},l.prototype.writeInt16LE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,2,32767,-32768),this[t]=255&e,this[t+1]=e>>>8,t+2},l.prototype.writeInt16BE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,2,32767,-32768),this[t]=e>>>8,this[t+1]=255&e,t+2},l.prototype.writeInt32LE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,4,2147483647,-2147483648),this[t]=255&e,this[t+1]=e>>>8,this[t+2]=e>>>16,this[t+3]=e>>>24,t+4},l.prototype.writeInt32BE=function(e,t,n){return e=+e,t>>>=0,n||Se(this,e,t,4,2147483647,-2147483648),e<0&&(e=4294967295+e+1),this[t]=e>>>24,this[t+1]=e>>>16,this[t+2]=e>>>8,this[t+3]=255&e,t+4},l.prototype.writeFloatLE=function(e,t,n){return pt(this,e,t,!0,n)},l.prototype.writeFloatBE=function(e,t,n){return pt(this,e,t,!1,n)},l.prototype.writeDoubleLE=function(e,t,n){return Ve(this,e,t,!0,n)},l.prototype.writeDoubleBE=function(e,t,n){return Ve(this,e,t,!1,n)},l.prototype.copy=function(e,t,n,c){if(!l.isBuffer(e))throw new TypeError("argument should be a Buffer");if(n||(n=0),!c&&0!==c&&(c=this.length),t>=e.length&&(t=e.length),t||(t=0),c>0&&c=this.length)throw new RangeError("Index out of range");if(c<0)throw new RangeError("sourceEnd out of bounds");c>this.length&&(c=this.length),e.length-t>>=0,n=void 0===n?this.length:n>>>0,e||(e=0),"number"==typeof e)for(E=t;E55295&&t<57344){if(!c){if(t>56319){(e-=3)>-1&&d.push(239,191,189);continue}if(E+1===n){(e-=3)>-1&&d.push(239,191,189);continue}c=t;continue}if(t<56320){(e-=3)>-1&&d.push(239,191,189),c=t;continue}t=65536+(c-55296<<10|t-56320)}else c&&(e-=3)>-1&&d.push(239,191,189);if(c=null,t<128){if((e-=1)<0)break;d.push(t)}else if(t<2048){if((e-=2)<0)break;d.push(t>>6|192,63&t|128)}else if(t<65536){if((e-=3)<0)break;d.push(t>>12|224,t>>6&63|128,63&t|128)}else{if(!(t<1114112))throw new Error("Invalid code point");if((e-=4)<0)break;d.push(t>>18|240,t>>12&63|128,t>>6&63|128,63&t|128)}}return d}function ot(r){return P.toByteArray(function Be(r){if((r=(r=r.split("=")[0]).trim().replace(vt,"")).length<2)return"";for(;r.length%4!=0;)r+="=";return r}(r))}function Je(r,e,t,n){for(var c=0;c=e.length||c>=r.length);++c)e[c+t]=r[c];return c}function Ne(r,e){return r instanceof e||null!=r&&null!=r.constructor&&null!=r.constructor.name&&r.constructor.name===e.name}function st(r){return r!=r}var kt=function(){for(var r="0123456789abcdef",e=new Array(256),t=0;t<16;++t)for(var n=16*t,c=0;c<16;++c)e[n+c]=r[t]+r[c];return e}()},2020:(Ce,D)=>{D.read=function(Y,P,ue,Te,ne){var _e,B,l=8*ne-Te-1,se=(1<>1,le=-7,te=ue?ne-1:0,me=ue?-1:1,w=Y[P+te];for(te+=me,_e=w&(1<<-le)-1,w>>=-le,le+=l;le>0;_e=256*_e+Y[P+te],te+=me,le-=8);for(B=_e&(1<<-le)-1,_e>>=-le,le+=Te;le>0;B=256*B+Y[P+te],te+=me,le-=8);if(0===_e)_e=1-ke;else{if(_e===se)return B?NaN:1/0*(w?-1:1);B+=Math.pow(2,Te),_e-=ke}return(w?-1:1)*B*Math.pow(2,_e-Te)},D.write=function(Y,P,ue,Te,ne,_e){var B,l,se,ke=8*_e-ne-1,le=(1<>1,me=23===ne?Math.pow(2,-24)-Math.pow(2,-77):0,w=Te?0:_e-1,v=Te?1:-1,V=P<0||0===P&&1/P<0?1:0;for(P=Math.abs(P),isNaN(P)||P===1/0?(l=isNaN(P)?1:0,B=le):(B=Math.floor(Math.log(P)/Math.LN2),P*(se=Math.pow(2,-B))<1&&(B--,se*=2),(P+=B+te>=1?me/se:me*Math.pow(2,1-te))*se>=2&&(B++,se/=2),B+te>=le?(l=0,B=le):B+te>=1?(l=(P*se-1)*Math.pow(2,ne),B+=te):(l=P*Math.pow(2,te-1)*Math.pow(2,ne),B=0));ne>=8;Y[ue+w]=255&l,w+=v,l/=256,ne-=8);for(B=B<0;Y[ue+w]=255&B,w+=v,B/=256,ke-=8);Y[ue+w-v]|=128*V}},573:Ce=>{var Y,P,D=Ce.exports={};function ue(){throw new Error("setTimeout has not been defined")}function Te(){throw new Error("clearTimeout has not been defined")}function ne(v){if(Y===setTimeout)return setTimeout(v,0);if((Y===ue||!Y)&&setTimeout)return Y=setTimeout,setTimeout(v,0);try{return Y(v,0)}catch{try{return Y.call(null,v,0)}catch{return Y.call(this,v,0)}}}!function(){try{Y="function"==typeof setTimeout?setTimeout:ue}catch{Y=ue}try{P="function"==typeof clearTimeout?clearTimeout:Te}catch{P=Te}}();var se,B=[],l=!1,ke=-1;function le(){!l||!se||(l=!1,se.length?B=se.concat(B):ke=-1,B.length&&te())}function te(){if(!l){var v=ne(le);l=!0;for(var V=B.length;V;){for(se=B,B=[];++ke1)for(var R=1;R{"use strict";const Ce=globalThis;function D(o){return(Ce.__Zone_symbol_prefix||"__zone_symbol__")+o}const ue=Object.getOwnPropertyDescriptor,Te=Object.defineProperty,ne=Object.getPrototypeOf,_e=Object.create,B=Array.prototype.slice,l="addEventListener",se="removeEventListener",ke=D(l),le=D(se),te="true",me="false",w=D("");function v(o,a){return Zone.current.wrap(o,a)}function V(o,a,p,s,h){return Zone.current.scheduleMacroTask(o,a,p,s,h)}const R=D,xe=typeof window<"u",ae=xe?window:void 0,K=xe&&ae||globalThis,Ge="removeAttribute";function he(o,a){for(let p=o.length-1;p>=0;p--)"function"==typeof o[p]&&(o[p]=v(o[p],a+"_"+p));return o}function tt(o){return!o||!1!==o.writable&&!("function"==typeof o.get&&typeof o.set>"u")}const ut=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope,qe=!("nw"in K)&&typeof K.process<"u"&&"[object process]"===K.process.toString(),rt=!qe&&!ut&&!(!xe||!ae.HTMLElement),lt=typeof K.process<"u"&&"[object process]"===K.process.toString()&&!ut&&!(!xe||!ae.HTMLElement),Ye={},ft=function(o){if(!(o=o||K.event))return;let a=Ye[o.type];a||(a=Ye[o.type]=R("ON_PROPERTY"+o.type));const p=this||o.target||K,s=p[a];let h;return rt&&p===ae&&"error"===o.type?(h=s&&s.call(this,o.message,o.filename,o.lineno,o.colno,o.error),!0===h&&o.preventDefault()):(h=s&&s.apply(this,arguments),null!=h&&!h&&o.preventDefault()),h};function nt(o,a,p){let s=ue(o,a);if(!s&&p&&ue(p,a)&&(s={enumerable:!0,configurable:!0}),!s||!s.configurable)return;const h=R("on"+a+"patched");if(o.hasOwnProperty(h)&&o[h])return;delete s.writable,delete s.value;const m=s.get,x=s.set,b=a.slice(2);let I=Ye[b];I||(I=Ye[b]=R("ON_PROPERTY"+b)),s.set=function(H){let C=this;!C&&o===K&&(C=K),C&&("function"==typeof C[I]&&C.removeEventListener(b,ft),x&&x.call(C,null),C[I]=H,"function"==typeof H&&C.addEventListener(b,ft,!1))},s.get=function(){let H=this;if(!H&&o===K&&(H=K),!H)return null;const C=H[I];if(C)return C;if(m){let $=m.call(this);if($)return s.set.call(this,$),"function"==typeof H[Ge]&&H.removeAttribute(a),$}return null},Te(o,a,s),o[h]=!0}function it(o,a,p){if(a)for(let s=0;sfunction(x,b){const I=p(x,b);return I.cbIdx>=0&&"function"==typeof b[I.cbIdx]?V(I.name,b[I.cbIdx],I,h):m.apply(x,b)})}function Ue(o,a){o[R("OriginalDelegate")]=a}let be=!1,Se=!1;function pt(){if(be)return Se;be=!0;try{const o=ae.navigator.userAgent;(-1!==o.indexOf("MSIE ")||-1!==o.indexOf("Trident/")||-1!==o.indexOf("Edge/"))&&(Se=!0)}catch{}return Se}let Ve=!1;if(typeof window<"u")try{const o=Object.defineProperty({},"passive",{get:function(){Ve=!0}});window.addEventListener("test",o,o),window.removeEventListener("test",o,o)}catch{Ve=!1}const vt={useG:!0},Be={},$e={},dt=new RegExp("^"+w+"(\\w+)(true|false)$"),yt=R("propagationStopped");function ot(o,a){const p=(a?a(o):o)+me,s=(a?a(o):o)+te,h=w+p,m=w+s;Be[o]={},Be[o][me]=h,Be[o][te]=m}function Je(o,a,p,s){const h=s&&s.add||l,m=s&&s.rm||se,x=s&&s.listeners||"eventListeners",b=s&&s.rmAll||"removeAllListeners",I=R(h),H="."+h+":",C="prependListener",$="."+C+":",U=function(N,g,fe){if(N.isRemoved)return;const we=N.callback;let Re;"object"==typeof we&&we.handleEvent&&(N.callback=A=>we.handleEvent(A),N.originalDelegate=we);try{N.invoke(N,g,[fe])}catch(A){Re=A}const de=N.options;return de&&"object"==typeof de&&de.once&&g[m].call(g,fe.type,N.originalDelegate?N.originalDelegate:N.callback,de),Re};function re(N,g,fe){if(!(g=g||o.event))return;const we=N||g.target||o,Re=we[Be[g.type][fe?te:me]];if(Re){const de=[];if(1===Re.length){const A=U(Re[0],we,g);A&&de.push(A)}else{const A=Re.slice();for(let ye=0;ye{throw ye})}}}const ge=function(N){return re(this,N,!1)},oe=function(N){return re(this,N,!0)};function Ze(N,g){if(!N)return!1;let fe=!0;g&&void 0!==g.useG&&(fe=g.useG);const we=g&&g.vh;let Re=!0;g&&void 0!==g.chkDup&&(Re=g.chkDup);let de=!1;g&&void 0!==g.rt&&(de=g.rt);let A=N;for(;A&&!A.hasOwnProperty(h);)A=ne(A);if(!A&&N[h]&&(A=N),!A||A[I])return!1;const ye=g&&g.eventNameToString,q={},Z=A[I]=A[h],L=A[R(m)]=A[m],W=A[R(x)]=A[x],Pe=A[R(b)]=A[b];let ve;g&&g.prepend&&(ve=A[R(g.prepend)]=A[g.prepend]);const Ie=fe?function(f){if(!q.isExisting)return Z.call(q.target,q.eventName,q.capture?oe:ge,q.options)}:function(f){return Z.call(q.target,q.eventName,f.invoke,q.options)},Q=fe?function(f){if(!f.isRemoved){const y=Be[f.eventName];let _;y&&(_=y[f.capture?te:me]);const M=_&&f.target[_];if(M)for(let j=0;jHe.zone.cancelTask(He);f.call(Qe,"abort",je,{once:!0}),Xe&&(Xe.removeAbortListener=()=>Qe.removeEventListener("abort",je))}return q.target=null,Xe&&(Xe.taskData=null),At&&(Me.once=!0),!Ve&&"boolean"==typeof He.options||(He.options=Me),He.target=O,He.capture=xt,He.eventName=G,Ee&&(He.originalDelegate=ee),F?et.unshift(He):et.push(He),j?O:void 0}};return A[h]=T(Z,H,Ie,Q,de),ve&&(A[C]=T(ve,$,function(f){return ve.call(q.target,q.eventName,f.invoke,q.options)},Q,de,!0)),A[m]=function(){const f=this||o;let y=arguments[0];g&&g.transferEventName&&(y=g.transferEventName(y));const _=arguments[2],M=!!_&&("boolean"==typeof _||_.capture),j=arguments[1];if(!j)return L.apply(this,arguments);if(we&&!we(L,j,f,arguments))return;const F=Be[y];let O;F&&(O=F[M?te:me]);const G=O&&f[O];if(G)for(let ee=0;eefunction(h,m){h[yt]=!0,s&&s.apply(h,m)})}const r=R("zoneTask");function e(o,a,p,s){let h=null,m=null;p+=s;const x={};function b(H){const C=H.data;return C.args[0]=function(){return H.invoke.apply(this,arguments)},C.handleId=h.apply(o,C.args),H}function I(H){return m.call(o,H.data.handleId)}h=Oe(o,a+=s,H=>function(C,$){if("function"==typeof $[0]){const U={isPeriodic:"Interval"===s,delay:"Timeout"===s||"Interval"===s?$[1]||0:void 0,args:$},re=$[0];$[0]=function(){try{return re.apply(this,arguments)}finally{U.isPeriodic||("number"==typeof U.handleId?delete x[U.handleId]:U.handleId&&(U.handleId[r]=null))}};const ge=V(a,$[0],U,b,I);if(!ge)return ge;const oe=ge.data.handleId;return"number"==typeof oe?x[oe]=ge:oe&&(oe[r]=ge),oe&&oe.ref&&oe.unref&&"function"==typeof oe.ref&&"function"==typeof oe.unref&&(ge.ref=oe.ref.bind(oe),ge.unref=oe.unref.bind(oe)),"number"==typeof oe||oe?oe:ge}return H.apply(o,$)}),m=Oe(o,p,H=>function(C,$){const U=$[0];let re;"number"==typeof U?re=x[U]:(re=U&&U[r],re||(re=U)),re&&"string"==typeof re.type?"notScheduled"!==re.state&&(re.cancelFn&&re.data.isPeriodic||0===re.runCount)&&("number"==typeof U?delete x[U]:U&&(U[r]=null),re.zone.cancelTask(re)):H.apply(o,$)})}function d(o,a,p){if(!p||0===p.length)return a;const s=p.filter(m=>m.target===o);if(!s||0===s.length)return a;const h=s[0].ignoreProperties;return a.filter(m=>-1===h.indexOf(m))}function E(o,a,p,s){o&&it(o,d(o,a,p),s)}function J(o){return Object.getOwnPropertyNames(o).filter(a=>a.startsWith("on")&&a.length>2).map(a=>a.substring(2))}function Ke(o,a,p,s,h){const m=Zone.__symbol__(s);if(a[m])return;const x=a[m]=a[s];a[s]=function(b,I,H){return I&&I.prototype&&h.forEach(function(C){const $=`${p}.${s}::`+C,U=I.prototype;try{if(U.hasOwnProperty(C)){const re=o.ObjectGetOwnPropertyDescriptor(U,C);re&&re.value?(re.value=o.wrapWithCurrentZone(re.value,$),o._redefineProperty(I.prototype,C,re)):U[C]&&(U[C]=o.wrapWithCurrentZone(U[C],$))}else U[C]&&(U[C]=o.wrapWithCurrentZone(U[C],$))}catch{}}),x.call(a,b,I,H)},o.attachOriginToPatched(a[s],x)}const Ct=function P(){const o=globalThis,a=!0===o[D("forceDuplicateZoneCheck")];if(o.Zone&&(a||"function"!=typeof o.Zone.__symbol__))throw new Error("Zone already loaded.");return o.Zone??=function Y(){const o=Ce.performance;function a(X){o&&o.mark&&o.mark(X)}function p(X,k){o&&o.measure&&o.measure(X,k)}a("Zone");let s=(()=>{class X{static#e=this.__symbol__=D;static assertZonePatched(){if(Ce.Promise!==q.ZoneAwarePromise)throw new Error("Zone.js has detected that ZoneAwarePromise `(window|global).Promise` has been overwritten.\nMost likely cause is that a Promise polyfill has been loaded after Zone.js (Polyfilling Promise api is not necessary when zone.js is loaded. If you must load one, do so before loading zone.js.)")}static get root(){let i=X.current;for(;i.parent;)i=i.parent;return i}static get current(){return L.zone}static get currentTask(){return W}static __load_patch(i,u,S=!1){if(q.hasOwnProperty(i)){const z=!0===Ce[D("forceDuplicateZoneCheck")];if(!S&&z)throw Error("Already loaded patch: "+i)}else if(!Ce["__Zone_disable_"+i]){const z="Zone:"+i;a(z),q[i]=u(Ce,X,Z),p(z,z)}}get parent(){return this._parent}get name(){return this._name}constructor(i,u){this._parent=i,this._name=u?u.name||"unnamed":"",this._properties=u&&u.properties||{},this._zoneDelegate=new m(this,this._parent&&this._parent._zoneDelegate,u)}get(i){const u=this.getZoneWith(i);if(u)return u._properties[i]}getZoneWith(i){let u=this;for(;u;){if(u._properties.hasOwnProperty(i))return u;u=u._parent}return null}fork(i){if(!i)throw new Error("ZoneSpec required!");return this._zoneDelegate.fork(this,i)}wrap(i,u){if("function"!=typeof i)throw new Error("Expecting function got: "+i);const S=this._zoneDelegate.intercept(this,i,u),z=this;return function(){return z.runGuarded(S,this,arguments,u)}}run(i,u,S,z){L={parent:L,zone:this};try{return this._zoneDelegate.invoke(this,i,u,S,z)}finally{L=L.parent}}runGuarded(i,u=null,S,z){L={parent:L,zone:this};try{try{return this._zoneDelegate.invoke(this,i,u,S,z)}catch(Ie){if(this._zoneDelegate.handleError(this,Ie))throw Ie}}finally{L=L.parent}}runTask(i,u,S){if(i.zone!=this)throw new Error("A task can only be run in the zone of creation! (Creation: "+(i.zone||Ze).name+"; Execution: "+this.name+")");if(i.state===Ae&&(i.type===ye||i.type===A))return;const z=i.state!=fe;z&&i._transitionTo(fe,g),i.runCount++;const Ie=W;W=i,L={parent:L,zone:this};try{i.type==A&&i.data&&!i.data.isPeriodic&&(i.cancelFn=void 0);try{return this._zoneDelegate.invokeTask(this,i,u,S)}catch(Q){if(this._zoneDelegate.handleError(this,Q))throw Q}}finally{i.state!==Ae&&i.state!==Re&&(i.type==ye||i.data&&i.data.isPeriodic?z&&i._transitionTo(g,fe):(i.runCount=0,this._updateTaskCount(i,-1),z&&i._transitionTo(Ae,fe,Ae))),L=L.parent,W=Ie}}scheduleTask(i){if(i.zone&&i.zone!==this){let S=this;for(;S;){if(S===i.zone)throw Error(`can not reschedule task to ${this.name} which is descendants of the original zone ${i.zone.name}`);S=S.parent}}i._transitionTo(N,Ae);const u=[];i._zoneDelegates=u,i._zone=this;try{i=this._zoneDelegate.scheduleTask(this,i)}catch(S){throw i._transitionTo(Re,N,Ae),this._zoneDelegate.handleError(this,S),S}return i._zoneDelegates===u&&this._updateTaskCount(i,1),i.state==N&&i._transitionTo(g,N),i}scheduleMicroTask(i,u,S,z){return this.scheduleTask(new x(de,i,u,S,z,void 0))}scheduleMacroTask(i,u,S,z,Ie){return this.scheduleTask(new x(A,i,u,S,z,Ie))}scheduleEventTask(i,u,S,z,Ie){return this.scheduleTask(new x(ye,i,u,S,z,Ie))}cancelTask(i){if(i.zone!=this)throw new Error("A task can only be cancelled in the zone of creation! (Creation: "+(i.zone||Ze).name+"; Execution: "+this.name+")");if(i.state===g||i.state===fe){i._transitionTo(we,g,fe);try{this._zoneDelegate.cancelTask(this,i)}catch(u){throw i._transitionTo(Re,we),this._zoneDelegate.handleError(this,u),u}return this._updateTaskCount(i,-1),i._transitionTo(Ae,we),i.runCount=0,i}}_updateTaskCount(i,u){const S=i._zoneDelegates;-1==u&&(i._zoneDelegates=null);for(let z=0;zX.hasTask(i,u),onScheduleTask:(X,k,i,u)=>X.scheduleTask(i,u),onInvokeTask:(X,k,i,u,S,z)=>X.invokeTask(i,u,S,z),onCancelTask:(X,k,i,u)=>X.cancelTask(i,u)};class m{get zone(){return this._zone}constructor(k,i,u){this._taskCounts={microTask:0,macroTask:0,eventTask:0},this._zone=k,this._parentDelegate=i,this._forkZS=u&&(u&&u.onFork?u:i._forkZS),this._forkDlgt=u&&(u.onFork?i:i._forkDlgt),this._forkCurrZone=u&&(u.onFork?this._zone:i._forkCurrZone),this._interceptZS=u&&(u.onIntercept?u:i._interceptZS),this._interceptDlgt=u&&(u.onIntercept?i:i._interceptDlgt),this._interceptCurrZone=u&&(u.onIntercept?this._zone:i._interceptCurrZone),this._invokeZS=u&&(u.onInvoke?u:i._invokeZS),this._invokeDlgt=u&&(u.onInvoke?i:i._invokeDlgt),this._invokeCurrZone=u&&(u.onInvoke?this._zone:i._invokeCurrZone),this._handleErrorZS=u&&(u.onHandleError?u:i._handleErrorZS),this._handleErrorDlgt=u&&(u.onHandleError?i:i._handleErrorDlgt),this._handleErrorCurrZone=u&&(u.onHandleError?this._zone:i._handleErrorCurrZone),this._scheduleTaskZS=u&&(u.onScheduleTask?u:i._scheduleTaskZS),this._scheduleTaskDlgt=u&&(u.onScheduleTask?i:i._scheduleTaskDlgt),this._scheduleTaskCurrZone=u&&(u.onScheduleTask?this._zone:i._scheduleTaskCurrZone),this._invokeTaskZS=u&&(u.onInvokeTask?u:i._invokeTaskZS),this._invokeTaskDlgt=u&&(u.onInvokeTask?i:i._invokeTaskDlgt),this._invokeTaskCurrZone=u&&(u.onInvokeTask?this._zone:i._invokeTaskCurrZone),this._cancelTaskZS=u&&(u.onCancelTask?u:i._cancelTaskZS),this._cancelTaskDlgt=u&&(u.onCancelTask?i:i._cancelTaskDlgt),this._cancelTaskCurrZone=u&&(u.onCancelTask?this._zone:i._cancelTaskCurrZone),this._hasTaskZS=null,this._hasTaskDlgt=null,this._hasTaskDlgtOwner=null,this._hasTaskCurrZone=null;const S=u&&u.onHasTask;(S||i&&i._hasTaskZS)&&(this._hasTaskZS=S?u:h,this._hasTaskDlgt=i,this._hasTaskDlgtOwner=this,this._hasTaskCurrZone=this._zone,u.onScheduleTask||(this._scheduleTaskZS=h,this._scheduleTaskDlgt=i,this._scheduleTaskCurrZone=this._zone),u.onInvokeTask||(this._invokeTaskZS=h,this._invokeTaskDlgt=i,this._invokeTaskCurrZone=this._zone),u.onCancelTask||(this._cancelTaskZS=h,this._cancelTaskDlgt=i,this._cancelTaskCurrZone=this._zone))}fork(k,i){return this._forkZS?this._forkZS.onFork(this._forkDlgt,this.zone,k,i):new s(k,i)}intercept(k,i,u){return this._interceptZS?this._interceptZS.onIntercept(this._interceptDlgt,this._interceptCurrZone,k,i,u):i}invoke(k,i,u,S,z){return this._invokeZS?this._invokeZS.onInvoke(this._invokeDlgt,this._invokeCurrZone,k,i,u,S,z):i.apply(u,S)}handleError(k,i){return!this._handleErrorZS||this._handleErrorZS.onHandleError(this._handleErrorDlgt,this._handleErrorCurrZone,k,i)}scheduleTask(k,i){let u=i;if(this._scheduleTaskZS)this._hasTaskZS&&u._zoneDelegates.push(this._hasTaskDlgtOwner),u=this._scheduleTaskZS.onScheduleTask(this._scheduleTaskDlgt,this._scheduleTaskCurrZone,k,i),u||(u=i);else if(i.scheduleFn)i.scheduleFn(i);else{if(i.type!=de)throw new Error("Task is missing scheduleFn.");ge(i)}return u}invokeTask(k,i,u,S){return this._invokeTaskZS?this._invokeTaskZS.onInvokeTask(this._invokeTaskDlgt,this._invokeTaskCurrZone,k,i,u,S):i.callback.apply(u,S)}cancelTask(k,i){let u;if(this._cancelTaskZS)u=this._cancelTaskZS.onCancelTask(this._cancelTaskDlgt,this._cancelTaskCurrZone,k,i);else{if(!i.cancelFn)throw Error("Task is not cancelable");u=i.cancelFn(i)}return u}hasTask(k,i){try{this._hasTaskZS&&this._hasTaskZS.onHasTask(this._hasTaskDlgt,this._hasTaskCurrZone,k,i)}catch(u){this.handleError(k,u)}}_updateTaskCount(k,i){const u=this._taskCounts,S=u[k],z=u[k]=S+i;if(z<0)throw new Error("More tasks executed then were scheduled.");0!=S&&0!=z||this.hasTask(this._zone,{microTask:u.microTask>0,macroTask:u.macroTask>0,eventTask:u.eventTask>0,change:k})}}class x{constructor(k,i,u,S,z,Ie){if(this._zone=null,this.runCount=0,this._zoneDelegates=null,this._state="notScheduled",this.type=k,this.source=i,this.data=S,this.scheduleFn=z,this.cancelFn=Ie,!u)throw new Error("callback is not defined");this.callback=u;const Q=this;this.invoke=k===ye&&S&&S.useG?x.invokeTask:function(){return x.invokeTask.call(Ce,Q,this,arguments)}}static invokeTask(k,i,u){k||(k=this),Pe++;try{return k.runCount++,k.zone.runTask(k,i,u)}finally{1==Pe&&oe(),Pe--}}get zone(){return this._zone}get state(){return this._state}cancelScheduleRequest(){this._transitionTo(Ae,N)}_transitionTo(k,i,u){if(this._state!==i&&this._state!==u)throw new Error(`${this.type} '${this.source}': can not transition to '${k}', expecting state '${i}'${u?" or '"+u+"'":""}, was '${this._state}'.`);this._state=k,k==Ae&&(this._zoneDelegates=null)}toString(){return this.data&&typeof this.data.handleId<"u"?this.data.handleId.toString():Object.prototype.toString.call(this)}toJSON(){return{type:this.type,state:this.state,source:this.source,zone:this.zone.name,runCount:this.runCount}}}const b=D("setTimeout"),I=D("Promise"),H=D("then");let U,C=[],$=!1;function re(X){if(U||Ce[I]&&(U=Ce[I].resolve(0)),U){let k=U[H];k||(k=U.then),k.call(U,X)}else Ce[b](X,0)}function ge(X){0===Pe&&0===C.length&&re(oe),X&&C.push(X)}function oe(){if(!$){for($=!0;C.length;){const X=C;C=[];for(let k=0;kL,onUnhandledError:ve,microtaskDrainDone:ve,scheduleMicroTask:ge,showUncaughtError:()=>!s[D("ignoreConsoleErrorUncaughtError")],patchEventTarget:()=>[],patchOnProperties:ve,patchMethod:()=>ve,bindArguments:()=>[],patchThen:()=>ve,patchMacroTask:()=>ve,patchEventPrototype:()=>ve,isIEOrEdge:()=>!1,getGlobalObjects:()=>{},ObjectDefineProperty:()=>ve,ObjectGetOwnPropertyDescriptor:()=>{},ObjectCreate:()=>{},ArraySlice:()=>[],patchClass:()=>ve,wrapWithCurrentZone:()=>ve,filterProperties:()=>[],attachOriginToPatched:()=>ve,_redefineProperty:()=>ve,patchCallbacks:()=>ve,nativeScheduleMicroTask:re};let L={parent:null,zone:new s(null,null)},W=null,Pe=0;function ve(){}return p("Zone","Zone"),s}(),o.Zone}();(function mt(o){(function Fe(o){o.__load_patch("ZoneAwarePromise",(a,p,s)=>{const h=Object.getOwnPropertyDescriptor,m=Object.defineProperty,b=s.symbol,I=[],H=!1!==a[b("DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION")],C=b("Promise"),$=b("then"),U="__creationTrace__";s.onUnhandledError=T=>{if(s.showUncaughtError()){const f=T&&T.rejection;f?console.error("Unhandled Promise rejection:",f instanceof Error?f.message:f,"; Zone:",T.zone.name,"; Task:",T.task&&T.task.source,"; Value:",f,f instanceof Error?f.stack:void 0):console.error(T)}},s.microtaskDrainDone=()=>{for(;I.length;){const T=I.shift();try{T.zone.runGuarded(()=>{throw T.throwOriginal?T.rejection:T})}catch(f){ge(f)}}};const re=b("unhandledPromiseRejectionHandler");function ge(T){s.onUnhandledError(T);try{const f=p[re];"function"==typeof f&&f.call(this,T)}catch{}}function oe(T){return T&&T.then}function Ze(T){return T}function Ae(T){return Q.reject(T)}const N=b("state"),g=b("value"),fe=b("finally"),we=b("parentPromiseValue"),Re=b("parentPromiseState"),de="Promise.then",A=null,ye=!0,q=!1,Z=0;function L(T,f){return y=>{try{X(T,f,y)}catch(_){X(T,!1,_)}}}const W=function(){let T=!1;return function(y){return function(){T||(T=!0,y.apply(null,arguments))}}},Pe="Promise resolved with itself",ve=b("currentTaskTrace");function X(T,f,y){const _=W();if(T===y)throw new TypeError(Pe);if(T[N]===A){let M=null;try{("object"==typeof y||"function"==typeof y)&&(M=y&&y.then)}catch(j){return _(()=>{X(T,!1,j)})(),T}if(f!==q&&y instanceof Q&&y.hasOwnProperty(N)&&y.hasOwnProperty(g)&&y[N]!==A)i(y),X(T,y[N],y[g]);else if(f!==q&&"function"==typeof M)try{M.call(y,_(L(T,f)),_(L(T,!1)))}catch(j){_(()=>{X(T,!1,j)})()}else{T[N]=f;const j=T[g];if(T[g]=y,T[fe]===fe&&f===ye&&(T[N]=T[Re],T[g]=T[we]),f===q&&y instanceof Error){const F=p.currentTask&&p.currentTask.data&&p.currentTask.data[U];F&&m(y,ve,{configurable:!0,enumerable:!1,writable:!0,value:F})}for(let F=0;F{try{const O=T[g],G=!!y&&fe===y[fe];G&&(y[we]=O,y[Re]=j);const ee=f.run(F,void 0,G&&F!==Ae&&F!==Ze?[]:[O]);X(y,!0,ee)}catch(O){X(y,!1,O)}},y)}const z=function(){},Ie=a.AggregateError;class Q{static toString(){return"function ZoneAwarePromise() { [native code] }"}static resolve(f){return f instanceof Q?f:X(new this(null),ye,f)}static reject(f){return X(new this(null),q,f)}static withResolvers(){const f={};return f.promise=new Q((y,_)=>{f.resolve=y,f.reject=_}),f}static any(f){if(!f||"function"!=typeof f[Symbol.iterator])return Promise.reject(new Ie([],"All promises were rejected"));const y=[];let _=0;try{for(let F of f)_++,y.push(Q.resolve(F))}catch{return Promise.reject(new Ie([],"All promises were rejected"))}if(0===_)return Promise.reject(new Ie([],"All promises were rejected"));let M=!1;const j=[];return new Q((F,O)=>{for(let G=0;G{M||(M=!0,F(ee))},ee=>{j.push(ee),_--,0===_&&(M=!0,O(new Ie(j,"All promises were rejected")))})})}static race(f){let y,_,M=new this((O,G)=>{y=O,_=G});function j(O){y(O)}function F(O){_(O)}for(let O of f)oe(O)||(O=this.resolve(O)),O.then(j,F);return M}static all(f){return Q.allWithCallback(f)}static allSettled(f){return(this&&this.prototype instanceof Q?this:Q).allWithCallback(f,{thenCallback:_=>({status:"fulfilled",value:_}),errorCallback:_=>({status:"rejected",reason:_})})}static allWithCallback(f,y){let _,M,j=new this((ee,Ee)=>{_=ee,M=Ee}),F=2,O=0;const G=[];for(let ee of f){oe(ee)||(ee=this.resolve(ee));const Ee=O;try{ee.then(De=>{G[Ee]=y?y.thenCallback(De):De,F--,0===F&&_(G)},De=>{y?(G[Ee]=y.errorCallback(De),F--,0===F&&_(G)):M(De)})}catch(De){M(De)}F++,O++}return F-=2,0===F&&_(G),j}constructor(f){const y=this;if(!(y instanceof Q))throw new Error("Must be an instanceof Promise.");y[N]=A,y[g]=[];try{const _=W();f&&f(_(L(y,ye)),_(L(y,q)))}catch(_){X(y,!1,_)}}get[Symbol.toStringTag](){return"Promise"}get[Symbol.species](){return Q}then(f,y){let _=this.constructor?.[Symbol.species];(!_||"function"!=typeof _)&&(_=this.constructor||Q);const M=new _(z),j=p.current;return this[N]==A?this[g].push(j,M,f,y):u(this,j,M,f,y),M}catch(f){return this.then(null,f)}finally(f){let y=this.constructor?.[Symbol.species];(!y||"function"!=typeof y)&&(y=Q);const _=new y(z);_[fe]=fe;const M=p.current;return this[N]==A?this[g].push(M,_,f,f):u(this,M,_,f,f),_}}Q.resolve=Q.resolve,Q.reject=Q.reject,Q.race=Q.race,Q.all=Q.all;const Tt=a[C]=a.Promise;a.Promise=Q;const at=b("thenPatched");function ze(T){const f=T.prototype,y=h(f,"then");if(y&&(!1===y.writable||!y.configurable))return;const _=f.then;f[$]=_,T.prototype.then=function(M,j){return new Q((O,G)=>{_.call(this,O,G)}).then(M,j)},T[at]=!0}return s.patchThen=ze,Tt&&(ze(Tt),Oe(a,"fetch",T=>function _t(T){return function(f,y){let _=T.apply(f,y);if(_ instanceof Q)return _;let M=_.constructor;return M[at]||ze(M),_}}(T))),Promise[p.__symbol__("uncaughtPromiseErrors")]=I,Q})})(o),function pe(o){o.__load_patch("toString",a=>{const p=Function.prototype.toString,s=R("OriginalDelegate"),h=R("Promise"),m=R("Error"),x=function(){if("function"==typeof this){const C=this[s];if(C)return"function"==typeof C?p.call(C):Object.prototype.toString.call(C);if(this===Promise){const $=a[h];if($)return p.call($)}if(this===Error){const $=a[m];if($)return p.call($)}}return p.call(this)};x[s]=p,Function.prototype.toString=x;const b=Object.prototype.toString;Object.prototype.toString=function(){return"function"==typeof Promise&&this instanceof Promise?"[object Promise]":b.call(this)}})}(o),function Et(o){o.__load_patch("util",(a,p,s)=>{const h=J(a);s.patchOnProperties=it,s.patchMethod=Oe,s.bindArguments=he,s.patchMacroTask=wt;const m=p.__symbol__("BLACK_LISTED_EVENTS"),x=p.__symbol__("UNPATCHED_EVENTS");a[x]&&(a[m]=a[x]),a[m]&&(p[m]=p[x]=a[m]),s.patchEventPrototype=st,s.patchEventTarget=Je,s.isIEOrEdge=pt,s.ObjectDefineProperty=Te,s.ObjectGetOwnPropertyDescriptor=ue,s.ObjectCreate=_e,s.ArraySlice=B,s.patchClass=We,s.wrapWithCurrentZone=v,s.filterProperties=d,s.attachOriginToPatched=Ue,s._redefineProperty=Object.defineProperty,s.patchCallbacks=Ke,s.getGlobalObjects=()=>({globalSources:$e,zoneSymbolEventNames:Be,eventNames:h,isBrowser:rt,isMix:lt,isNode:qe,TRUE_STR:te,FALSE_STR:me,ZONE_SYMBOL_PREFIX:w,ADD_EVENT_LISTENER_STR:l,REMOVE_EVENT_LISTENER_STR:se})})}(o)})(Ct),function ce(o){o.__load_patch("legacy",a=>{const p=a[o.__symbol__("legacyPatch")];p&&p()}),o.__load_patch("timers",a=>{const p="set",s="clear";e(a,p,s,"Timeout"),e(a,p,s,"Interval"),e(a,p,s,"Immediate")}),o.__load_patch("requestAnimationFrame",a=>{e(a,"request","cancel","AnimationFrame"),e(a,"mozRequest","mozCancel","AnimationFrame"),e(a,"webkitRequest","webkitCancel","AnimationFrame")}),o.__load_patch("blocking",(a,p)=>{const s=["alert","prompt","confirm"];for(let h=0;hfunction(H,C){return p.current.run(x,a,C,I)})}),o.__load_patch("EventTarget",(a,p,s)=>{(function c(o,a){a.patchEventPrototype(o,a)})(a,s),function n(o,a){if(Zone[a.symbol("patchEventTarget")])return;const{eventNames:p,zoneSymbolEventNames:s,TRUE_STR:h,FALSE_STR:m,ZONE_SYMBOL_PREFIX:x}=a.getGlobalObjects();for(let I=0;I{We("MutationObserver"),We("WebKitMutationObserver")}),o.__load_patch("IntersectionObserver",(a,p,s)=>{We("IntersectionObserver")}),o.__load_patch("FileReader",(a,p,s)=>{We("FileReader")}),o.__load_patch("on_property",(a,p,s)=>{!function ie(o,a){if(qe&&!lt||Zone[o.symbol("patchEvents")])return;const p=a.__Zone_ignore_on_properties;let s=[];if(rt){const h=window;s=s.concat(["Document","SVGElement","Element","HTMLElement","HTMLBodyElement","HTMLMediaElement","HTMLFrameSetElement","HTMLFrameElement","HTMLIFrameElement","HTMLMarqueeElement","Worker"]);const m=function ht(){try{const o=ae.navigator.userAgent;if(-1!==o.indexOf("MSIE ")||-1!==o.indexOf("Trident/"))return!0}catch{}return!1}()?[{target:h,ignoreProperties:["error"]}]:[];E(h,J(h),p&&p.concat(m),ne(h))}s=s.concat(["XMLHttpRequest","XMLHttpRequestEventTarget","IDBIndex","IDBRequest","IDBOpenDBRequest","IDBDatabase","IDBTransaction","IDBCursor","WebSocket"]);for(let h=0;h{!function t(o,a){const{isBrowser:p,isMix:s}=a.getGlobalObjects();(p||s)&&o.customElements&&"customElements"in o&&a.patchCallbacks(a,o.customElements,"customElements","define",["connectedCallback","disconnectedCallback","adoptedCallback","attributeChangedCallback","formAssociatedCallback","formDisabledCallback","formResetCallback","formStateRestoreCallback"])}(a,s)}),o.__load_patch("XHR",(a,p)=>{!function H(C){const $=C.XMLHttpRequest;if(!$)return;const U=$.prototype;let ge=U[ke],oe=U[le];if(!ge){const Z=C.XMLHttpRequestEventTarget;if(Z){const L=Z.prototype;ge=L[ke],oe=L[le]}}const Ze="readystatechange",Ae="scheduled";function N(Z){const L=Z.data,W=L.target;W[x]=!1,W[I]=!1;const Pe=W[m];ge||(ge=W[ke],oe=W[le]),Pe&&oe.call(W,Ze,Pe);const ve=W[m]=()=>{if(W.readyState===W.DONE)if(!L.aborted&&W[x]&&Z.state===Ae){const k=W[p.__symbol__("loadfalse")];if(0!==W.status&&k&&k.length>0){const i=Z.invoke;Z.invoke=function(){const u=W[p.__symbol__("loadfalse")];for(let S=0;Sfunction(Z,L){return Z[h]=0==L[2],Z[b]=L[1],we.apply(Z,L)}),de=R("fetchTaskAborting"),A=R("fetchTaskScheduling"),ye=Oe(U,"send",()=>function(Z,L){if(!0===p.current[A]||Z[h])return ye.apply(Z,L);{const W={target:Z,url:Z[b],isPeriodic:!1,args:L,aborted:!1},Pe=V("XMLHttpRequest.send",g,W,N,fe);Z&&!0===Z[I]&&!W.aborted&&Pe.state===Ae&&Pe.invoke()}}),q=Oe(U,"abort",()=>function(Z,L){const W=function re(Z){return Z[s]}(Z);if(W&&"string"==typeof W.type){if(null==W.cancelFn||W.data&&W.data.aborted)return;W.zone.cancelTask(W)}else if(!0===p.current[de])return q.apply(Z,L)})}(a);const s=R("xhrTask"),h=R("xhrSync"),m=R("xhrListener"),x=R("xhrScheduled"),b=R("xhrURL"),I=R("xhrErrorBeforeScheduled")}),o.__load_patch("geolocation",a=>{a.navigator&&a.navigator.geolocation&&function ct(o,a){const p=o.constructor.name;for(let s=0;s{const I=function(){return b.apply(this,he(arguments,p+"."+h))};return Ue(I,b),I})(m)}}}(a.navigator.geolocation,["getCurrentPosition","watchPosition"])}),o.__load_patch("PromiseRejectionEvent",(a,p)=>{function s(h){return function(m){Ne(a,h).forEach(b=>{const I=a.PromiseRejectionEvent;if(I){const H=new I(h,{promise:m.promise,reason:m.rejection});b.invoke(H)}})}}a.PromiseRejectionEvent&&(p[R("unhandledPromiseRejectionHandler")]=s("unhandledrejection"),p[R("rejectionHandledHandler")]=s("rejectionhandled"))}),o.__load_patch("queueMicrotask",(a,p,s)=>{!function kt(o,a){a.patchMethod(o,"queueMicrotask",p=>function(s,h){Zone.current.scheduleMicroTask("queueMicrotask",h[0])})}(a,s)})}(Ct)}},Ce=>{var D=P=>Ce(Ce.s=P);D(6935),D(4050)}]); \ No newline at end of file diff --git a/frontend/runtime.738cba8440999ebd.js b/frontend/runtime.738cba8440999ebd.js deleted file mode 100644 index 19415555..00000000 --- a/frontend/runtime.738cba8440999ebd.js +++ /dev/null @@ -1 +0,0 @@ -(()=>{"use strict";var e,v={},m={};function r(e){var o=m[e];if(void 0!==o)return o.exports;var t=m[e]={id:e,loaded:!1,exports:{}};return v[e].call(t.exports,t,t.exports,r),t.loaded=!0,t.exports}r.m=v,e=[],r.O=(o,t,i,f)=>{if(!t){var a=1/0;for(n=0;n=f)&&Object.keys(r.O).every(b=>r.O[b](t[l]))?t.splice(l--,1):(c=!1,f0&&e[n-1][2]>f;n--)e[n]=e[n-1];e[n]=[t,i,f]},r.d=(e,o)=>{for(var t in o)r.o(o,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:o[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((o,t)=>(r.f[t](e,o),o),[])),r.u=e=>e+"."+{17:"d00d31d08d7bad32",190:"88ca997666a3998a",193:"b1206fbf24aa1327",853:"c4ce8a9a0bef2bb7"}[e]+".js",r.miniCssF=e=>{},r.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),(()=>{var e={},o="RTLApp:";r.l=(t,i,f,n)=>{if(e[t])e[t].push(i);else{var a,c;if(void 0!==f)for(var l=document.getElementsByTagName("script"),d=0;d{a.onerror=a.onload=null,clearTimeout(p);var h=e[t];if(delete e[t],a.parentNode&&a.parentNode.removeChild(a),h&&h.forEach(y=>y(b)),g)return g(b)},p=setTimeout(s.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=s.bind(null,a.onerror),a.onload=s.bind(null,a.onload),c&&document.head.appendChild(a)}}})(),r.r=e=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e;r.tt=()=>(void 0===e&&(e={createScriptURL:o=>o},typeof trustedTypes<"u"&&trustedTypes.createPolicy&&(e=trustedTypes.createPolicy("angular#bundler",e))),e)})(),r.tu=e=>r.tt().createScriptURL(e),r.p="",(()=>{var e={121:0};r.f.j=(i,f)=>{var n=r.o(e,i)?e[i]:void 0;if(0!==n)if(n)f.push(n[2]);else if(121!=i){var a=new Promise((u,s)=>n=e[i]=[u,s]);f.push(n[2]=a);var c=r.p+r.u(i),l=new Error;r.l(c,u=>{if(r.o(e,i)&&(0!==(n=e[i])&&(e[i]=void 0),n)){var s=u&&("load"===u.type?"missing":u.type),p=u&&u.target&&u.target.src;l.message="Loading chunk "+i+" failed.\n("+s+": "+p+")",l.name="ChunkLoadError",l.type=s,l.request=p,n[1](l)}},"chunk-"+i,i)}else e[i]=0},r.O.j=i=>0===e[i];var o=(i,f)=>{var l,d,[n,a,c]=f,u=0;if(n.some(p=>0!==e[p])){for(l in a)r.o(a,l)&&(r.m[l]=a[l]);if(c)var s=c(r)}for(i&&i(f);u{"use strict";var e,v={},m={};function r(e){var o=m[e];if(void 0!==o)return o.exports;var t=m[e]={exports:{}};return v[e].call(t.exports,t,t.exports,r),t.exports}r.m=v,e=[],r.O=(o,t,i,f)=>{if(!t){var a=1/0;for(n=0;n=f)&&Object.keys(r.O).every(b=>r.O[b](t[u]))?t.splice(u--,1):(s=!1,f0&&e[n-1][2]>f;n--)e[n]=e[n-1];e[n]=[t,i,f]},r.d=(e,o)=>{for(var t in o)r.o(o,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:o[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((o,t)=>(r.f[t](e,o),o),[])),r.u=e=>e+"."+{17:"da5e0b6abb96d103",190:"0e6572086349bd7c",193:"5eec0042e2c6f1a7",853:"e46ed60b577aec33"}[e]+".js",r.miniCssF=e=>{},r.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),(()=>{var e={},o="RTLApp:";r.l=(t,i,f,n)=>{if(e[t])e[t].push(i);else{var a,s;if(void 0!==f)for(var u=document.getElementsByTagName("script"),d=0;d{a.onerror=a.onload=null,clearTimeout(p);var g=e[t];if(delete e[t],a.parentNode&&a.parentNode.removeChild(a),g&&g.forEach(_=>_(b)),h)return h(b)},p=setTimeout(c.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=c.bind(null,a.onerror),a.onload=c.bind(null,a.onload),s&&document.head.appendChild(a)}}})(),(()=>{var e;r.tt=()=>(void 0===e&&(e={createScriptURL:o=>o},typeof trustedTypes<"u"&&trustedTypes.createPolicy&&(e=trustedTypes.createPolicy("angular#bundler",e))),e)})(),r.tu=e=>r.tt().createScriptURL(e),r.p="",(()=>{var e={121:0};r.f.j=(i,f)=>{var n=r.o(e,i)?e[i]:void 0;if(0!==n)if(n)f.push(n[2]);else if(121!=i){var a=new Promise((l,c)=>n=e[i]=[l,c]);f.push(n[2]=a);var s=r.p+r.u(i),u=new Error;r.l(s,l=>{if(r.o(e,i)&&(0!==(n=e[i])&&(e[i]=void 0),n)){var c=l&&("load"===l.type?"missing":l.type),p=l&&l.target&&l.target.src;u.message="Loading chunk "+i+" failed.\n("+c+": "+p+")",u.name="ChunkLoadError",u.type=c,u.request=p,n[1](u)}},"chunk-"+i,i)}else e[i]=0},r.O.j=i=>0===e[i];var o=(i,f)=>{var u,d,[n,a,s]=f,l=0;if(n.some(p=>0!==e[p])){for(u in a)r.o(a,u)&&(r.m[u]=a[u]);if(s)var c=s(r)}for(i&&i(f);l.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y,.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y{opacity:.6}.ps .ps__rail-x:hover,.ps .ps__rail-y:hover,.ps .ps__rail-x:focus,.ps .ps__rail-y:focus,.ps .ps__rail-x.ps--clicking,.ps .ps__rail-y.ps--clicking{background-color:transparent;opacity:.9}.ps__thumb-x{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:4px;bottom:2px;position:absolute}.ps__thumb-y{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:4px;right:2px;position:absolute}.ps__rail-x:hover>.ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x.ps--clicking .ps__thumb-x{background-color:#999;height:6px}.ps__rail-y:hover>.ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y.ps--clicking .ps__thumb-y{background-color:#999;width:6px}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.ps{overflow:auto!important}}html{width:100%;height:99%;line-height:1.5;overflow-x:hidden;font-family:Roboto,sans-serif!important;font-size:95%}@media only screen and (max-width:56.25em){html{font-size:90%}}@media only screen and (max-width:37.5em){html{font-size:80%}}body{box-sizing:border-box;height:100%;margin:0;overflow:hidden}.rtl-container{position:absolute;width:100%;height:100%;inset:0;overflow:hidden}.rtl-container .mat-menu-panel .mat-menu-content{padding-top:0;padding-bottom:0}.rtl-container .mat-nested-tree-node-child>.mat-tree-node{padding-left:2.5rem}.mat-sidenav-container .mat-sidenav-content{height:95vh;min-height:95vh}.sidenav{width:16rem!important;height:100%;overflow:hidden!important}span.page-text,.mat-mdc-slide-toggle,.material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:3rem}.mat-mdc-checkbox{min-height:4rem}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}.sticky{position:fixed;top:0;z-index:9999}.horizontal-menu{padding:0;z-index:999;position:fixed;top:0;height:4rem;overflow:visible}.inner-sidenav-content{position:relative;inset:0;padding:.75rem}@media only screen and (max-width:56.25em){.inner-sidenav-content{padding:.5rem}}@media only screen and (max-width:37.5em){.inner-sidenav-content{padding:.5rem .25rem}}.top-50{top:50px}*{margin:0;padding:0}.rtl-spinner{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;width:100%;position:fixed;background:#fff;z-index:999999;visibility:visible;opacity:1}.rtl-spinner h4{margin-top:.625rem}.spinner-dialog-panel .mat-mdc-dialog-container .mat-mdc-dialog-surface{background:transparent;box-shadow:none}.mat-mdc-dialog-container .mat-mdc-dialog-surface{overflow:hidden}@media only screen and (max-width:75em){button.mdc-button{min-width:50px}}@media only screen and (max-width:56.25em){button.mdc-button{min-width:40px}}@media only screen and (max-width:37.5em){button.mdc-button{min-width:20px}}button.mdc-button.mat-mdc-button-base{font-size:103%;font-weight:500;font-family:Roboto,sans-serif}button.mdc-button.mat-mdc-button-base.mat-mdc-unelevated-button{margin-bottom:1rem}.mat-mdc-icon-button.mat-mdc-button-base.btn-icon-small{height:40px;padding:.75rem}.mdc-floating-label{will-change:unset!important}.mat-mdc-form-field.mat-form-field-disabled,.mat-mdc-form-field.mat-form-field-disabled .mat-mdc-text-field-wrapper.mdc-text-field--disable,.mat-mdc-form-field.mat-form-field-disabled .mdc-floating-label.mat-mdc-floating-label,.mat-mdc-form-field.mat-form-field-disabled .mat-mdc-input-element.mat-mdc-form-field-input-control,.mat-mdc-slide-toggle .mdc-switch.mdc-switch--disabled{cursor:not-allowed}.padding-gap{padding:.5rem!important}@media only screen and (max-width:56.25em){.padding-gap{padding:.25rem!important}}@media only screen and (max-width:37.5em){.padding-gap{padding:.125rem!important}}.padding-gap-x{padding:0 .5rem!important}@media only screen and (max-width:75em){.padding-gap-x{padding:0 .25rem!important}}@media only screen and (max-width:56.25em){.padding-gap-x{padding:0 .25rem!important}}@media only screen and (max-width:37.5em){.padding-gap-x{padding:0 .125rem!important}}.padding-gap-large{padding:1rem!important}@media only screen and (max-width:75em){.padding-gap-large{padding:2rem!important}}@media only screen and (max-width:56.25em){.padding-gap-large{padding:.25rem!important}}@media only screen and (max-width:37.5em){.padding-gap-large{padding:.125rem!important}}.padding-gap-x-large{padding:0 1rem!important}@media only screen and (max-width:75em){.padding-gap-x-large{padding:0 .5rem!important}}@media only screen and (max-width:56.25em){.padding-gap-x-large{padding:0 .25rem!important}}@media only screen and (max-width:37.5em){.padding-gap-x-large{padding:0 .125rem!important}}.padding-gap-bottom-large{padding-bottom:1rem!important}@media only screen and (max-width:56.25em){.padding-gap-bottom-large{padding-bottom:.5rem!important}}@media only screen and (max-width:37.5em){.padding-gap-bottom-large{padding-bottom:.125rem!important}}.overflow-wrap{overflow-wrap:break-word!important;overflow:hidden}.mat-mdc-card{padding:0!important;overflow:hidden;border-radius:2px!important}.mat-mdc-card-original{padding:1rem!important;border-radius:4px!important}.mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix,.mat-mdc-form-field-flex .mat-mdc-form-field-icon-prefix{padding-right:1rem}mat-card-content.mat-mdc-card-content:first-child{padding-top:0}.card-content-gap{padding:.6rem 1rem!important;height:100%}@media only screen and (max-width:56.25em){.card-content-gap{padding:.5rem!important}}@media only screen and (max-width:37.5em){.card-content-gap{padding:.25rem .125rem!important}}.routing-tabs-block .mat-mdc-tab-body-wrapper{padding:0!important;min-height:100px}.mat-mdc-card-actions{display:block;margin-bottom:1rem;padding-left:.3333333333rem;padding-right:.3333333333rem}.mat-mdc-card-content,.mat-mdc-card-subtitle,.mat-mdc-card-title{display:block;margin-bottom:1rem}.mat-mdc-card-content form,.mat-mdc-card-subtitle form,.mat-mdc-card-title form{overflow:hidden}.mat-mdc-card-title{font-size:125%}.mat-mdc-card-subtitle{font-size:120%}.mat-mdc-card-header-text{margin:0!important;line-height:1}.mat-form-field-wrapper{width:100%}.mat-mdc-select{margin:0 1rem 0 0}.green{color:#28ca43!important}.yellow{color:#ffbd2e!important}.red{color:#c62828!important}.grey{color:#ccc!important}.mt-1px{margin-top:1px!important}.mt-2px{margin-top:2px!important}.mt-4px{margin-top:4px!important}.mt-5px{margin-top:5px!important}.my-2px{margin:2px 0!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.625rem!important}@media only screen and (max-width:56.25em){.mt-1{margin-top:.5rem!important}}@media only screen and (max-width:37.5em){.mt-1{margin-top:.5rem!important}}.mb-0{margin-bottom:0!important}.mb-2px{margin-bottom:2px!important}.mb-5px{margin-bottom:5px!important}.mb-1{margin-bottom:.625rem!important}@media only screen and (max-width:56.25em){.mb-1{margin-bottom:.5rem!important}}@media only screen and (max-width:37.5em){.mb-1{margin-bottom:.5rem!important}}.mb-6{margin-bottom:3.75rem!important}@media only screen and (max-width:56.25em){.mb-6{margin-bottom:3rem!important}}@media only screen and (max-width:37.5em){.mb-6{margin-bottom:3rem!important}}.ml-0{margin-left:0!important}.ml-half{margin-left:.25rem!important}.ml-1{margin-left:.625rem!important}@media only screen and (max-width:56.25em){.ml-1{margin-left:.25rem!important}}@media only screen and (max-width:37.5em){.ml-1{margin-left:2px!important}}.ml-minus-1{margin-left:-.625rem!important}.mr-0{margin-right:0!important}.mr-3px{margin-right:3px!important}.mr-5px{margin-right:5px!important}.mr-1{margin-right:.625rem!important}@media only screen and (max-width:56.25em){.mr-1{margin-right:.25rem!important}}@media only screen and (max-width:37.5em){.mr-1{margin-right:2px!important}}.mx-1{margin:0 .625rem!important}@media only screen and (max-width:56.25em){.mx-1{margin:0 .25rem!important}}@media only screen and (max-width:37.5em){.mx-1{margin:0 2px!important}}.my-1{margin:.625rem 0!important}@media only screen and (max-width:56.25em){.my-1{margin:.5rem 0!important}}@media only screen and (max-width:37.5em){.my-1{margin:.5rem 0!important}}.m-1{margin:.625rem!important}@media only screen and (max-width:56.25em){.m-1{margin:.5rem!important}}@media only screen and (max-width:37.5em){.m-1{margin:.5rem!important}}.mt-2{margin-top:1.25rem!important}@media only screen and (max-width:56.25em){.mt-2{margin-top:1rem!important}}@media only screen and (max-width:37.5em){.mt-2{margin-top:1rem!important}}.mt-3{margin-top:2rem!important}@media only screen and (max-width:56.25em){.mt-3{margin-top:1.5rem!important}}@media only screen and (max-width:37.5em){.mt-3{margin-top:1.5rem!important}}.mt-4{margin-top:2.5rem!important}@media only screen and (max-width:56.25em){.mt-4{margin-top:2rem!important}}@media only screen and (max-width:37.5em){.mt-4{margin-top:2rem!important}}.mt-6{margin-top:3.75rem!important}@media only screen and (max-width:56.25em){.mt-6{margin-top:3rem!important}}@media only screen and (max-width:37.5em){.mt-6{margin-top:3rem!important}}.mt-minus-1{margin-top:-.625rem!important}@media only screen and (max-width:56.25em){.mt-minus-1{margin-top:-.5rem!important}}@media only screen and (max-width:37.5em){.mt-minus-1{margin-top:-.5rem!important}}.mt-minus-2{margin-top:-1.25rem!important}@media only screen and (max-width:56.25em){.mt-minus-2{margin-top:-1rem!important}}@media only screen and (max-width:37.5em){.mt-minus-2{margin-top:-1rem!important}}.mb-2{margin-bottom:1rem!important}@media only screen and (max-width:56.25em){.mb-2{margin-bottom:1rem!important}}@media only screen and (max-width:37.5em){.mb-2{margin-bottom:1rem!important}}.mb-3{margin-bottom:2rem!important}@media only screen and (max-width:56.25em){.mb-3{margin-bottom:1.5rem!important}}@media only screen and (max-width:37.5em){.mb-3{margin-bottom:1.5rem!important}}.mb-4{margin-bottom:2.5rem!important}@media only screen and (max-width:56.25em){.mb-4{margin-bottom:1.25rem!important}}@media only screen and (max-width:37.5em){.mb-4{margin-bottom:1.25rem!important}}.ml-2{margin-left:1.25rem!important}@media only screen and (max-width:56.25em){.ml-2{margin-left:.5rem!important}}@media only screen and (max-width:37.5em){.ml-2{margin-left:.25rem!important}}.mr-2{margin-right:1.25rem!important}@media only screen and (max-width:56.25em){.mr-2{margin-right:.5rem!important}}@media only screen and (max-width:37.5em){.mr-2{margin-right:.25rem!important}}.ml-4{margin-left:2.5rem!important}@media only screen and (max-width:56.25em){.ml-4{margin-left:1rem!important}}@media only screen and (max-width:37.5em){.ml-4{margin-left:.5rem!important}}.ml-5{margin-left:3rem!important}@media only screen and (max-width:56.25em){.ml-5{margin-left:1.25rem!important}}@media only screen and (max-width:37.5em){.ml-5{margin-left:.625rem!important}}.mr-4{margin-right:2.5rem!important}@media only screen and (max-width:56.25em){.mr-4{margin-right:1rem!important}}@media only screen and (max-width:37.5em){.mr-4{margin-right:.5rem!important}}.mr-5{margin-right:3rem!important}@media only screen and (max-width:56.25em){.mr-5{margin-right:1.25rem!important}}@media only screen and (max-width:37.5em){.mr-5{margin-right:.625rem!important}}.mr-6{margin-right:3.75rem!important}@media only screen and (max-width:56.25em){.mr-6{margin-right:2rem!important}}@media only screen and (max-width:37.5em){.mr-6{margin-right:1.25rem!important}}.mx-2{margin:0 1.25rem!important}@media only screen and (max-width:56.25em){.mx-2{margin:0 .5rem!important}}@media only screen and (max-width:37.5em){.mx-2{margin:0 .25rem!important}}.my-0{margin-top:0!important;margin-bottom:0!important}.my-2{margin:1.25rem 0!important}@media only screen and (max-width:56.25em){.my-2{margin:1rem 0!important}}@media only screen and (max-width:37.5em){.my-2{margin:1rem 0!important}}.my-3{margin:2rem 0!important}@media only screen and (max-width:56.25em){.my-3{margin:1.5rem 0!important}}@media only screen and (max-width:37.5em){.my-3{margin:1.5rem 0!important}}.my-4{margin:2.5rem 0!important}@media only screen and (max-width:56.25em){.my-4{margin:1.25rem 0!important}}@media only screen and (max-width:37.5em){.my-4{margin:1.25rem 0!important}}.m-2{margin:1.25rem!important}@media only screen and (max-width:56.25em){.m-2{margin:1rem!important}}@media only screen and (max-width:37.5em){.m-2{margin:1rem!important}}.pt-1{padding-top:.625rem!important}@media only screen and (max-width:56.25em){.pt-1{padding-top:.5rem!important}}@media only screen and (max-width:37.5em){.pt-1{padding-top:.5rem!important}}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.625rem!important}@media only screen and (max-width:56.25em){.pb-1{padding-bottom:.5rem!important}}@media only screen and (max-width:37.5em){.pb-1{padding-bottom:.5rem!important}}.pl-5px{padding-left:5px!important}@media only screen and (max-width:56.25em){.pl-5px{padding-left:.25rem!important}}@media only screen and (max-width:37.5em){.pl-5px{padding-left:3px!important}}.pl-1{padding-left:.625rem!important}@media only screen and (max-width:56.25em){.pl-1{padding-left:.25rem!important}}@media only screen and (max-width:37.5em){.pl-1{padding-left:2px!important}}.pl-15px{padding-left:1rem!important}@media only screen and (max-width:56.25em){.pl-15px{padding-left:.3333333333rem!important}}@media only screen and (max-width:37.5em){.pl-15px{padding-left:.25rem!important}}.pr-0{padding-right:0!important}.pr-1{padding-right:.625rem!important}@media only screen and (max-width:56.25em){.pr-1{padding-right:.25rem!important}}@media only screen and (max-width:37.5em){.pr-1{padding-right:2px!important}}.pr-3{padding-right:2rem!important}@media only screen and (max-width:56.25em){.pr-3{padding-right:.75rem!important}}@media only screen and (max-width:37.5em){.pr-3{padding-right:.3333333333rem!important}}.pr-4{padding-right:2.5rem!important}@media only screen and (max-width:56.25em){.pr-4{padding-right:1rem!important}}@media only screen and (max-width:37.5em){.pr-4{padding-right:.5rem!important}}.pr-4px{padding-right:.25rem!important}.pr-6px{padding-right:.3333333333rem!important}.p-0{padding:0!important}.p-5px{padding:5px!important}.pl-0{padding-left:0!important}.px-1{padding:0 .625rem!important}@media only screen and (max-width:56.25em){.px-1{padding:0 .25rem!important}}@media only screen and (max-width:37.5em){.px-1{padding:0 2px!important}}.py-0{padding:.625rem 0!important}@media only screen and (max-width:56.25em){.py-0{padding:.5rem 0!important}}@media only screen and (max-width:37.5em){.py-0{padding:.5rem 0!important}}.py-1{padding:.625rem 0!important}@media only screen and (max-width:56.25em){.py-1{padding:.5rem 0!important}}@media only screen and (max-width:37.5em){.py-1{padding:.5rem 0!important}}.p-1{padding:.625rem!important}@media only screen and (max-width:56.25em){.p-1{padding:.5rem!important}}@media only screen and (max-width:37.5em){.p-1{padding:.5rem!important}}.p-16{padding:1rem!important}@media only screen and (max-width:56.25em){.p-16{padding:.5rem!important}}@media only screen and (max-width:37.5em){.p-16{padding:.25rem!important}}.pt-2{padding-top:1.25rem!important}@media only screen and (max-width:56.25em){.pt-2{padding-top:1rem!important}}@media only screen and (max-width:37.5em){.pt-2{padding-top:1rem!important}}.pt-3{padding-top:2rem!important}@media only screen and (max-width:56.25em){.pt-3{padding-top:1.5rem!important}}@media only screen and (max-width:37.5em){.pt-3{padding-top:1.5rem!important}}.pb-2{padding-bottom:1.25rem!important}@media only screen and (max-width:56.25em){.pb-2{padding-bottom:1rem!important}}@media only screen and (max-width:37.5em){.pb-2{padding-bottom:1rem!important}}.pl-2{padding-left:1.25rem!important}@media only screen and (max-width:56.25em){.pl-2{padding-left:.5rem!important}}@media only screen and (max-width:37.5em){.pl-2{padding-left:.25rem!important}}.pt-4{padding-top:1.25rem!important}@media only screen and (max-width:56.25em){.pt-4{padding-top:1.5rem!important}}@media only screen and (max-width:37.5em){.pt-4{padding-top:1.5rem!important}}.pl-3{padding-left:2rem!important}@media only screen and (max-width:56.25em){.pl-3{padding-left:.75rem!important}}@media only screen and (max-width:37.5em){.pl-3{padding-left:.3333333333rem!important}}.pl-4{padding-left:2.5rem!important}@media only screen and (max-width:56.25em){.pl-4{padding-left:1rem!important}}@media only screen and (max-width:37.5em){.pl-4{padding-left:.5rem!important}}.pr-2{padding-right:1.25rem!important}@media only screen and (max-width:56.25em){.pr-2{padding-right:.5rem!important}}@media only screen and (max-width:37.5em){.pr-2{padding-right:.25rem!important}}.pr-5{padding-right:2.5rem!important}@media only screen and (max-width:56.25em){.pr-5{padding-right:1rem!important}}@media only screen and (max-width:37.5em){.pr-5{padding-right:.5rem!important}}.px-2{padding:0 1.25rem!important}@media only screen and (max-width:56.25em){.px-2{padding:0 .5rem!important}}@media only screen and (max-width:37.5em){.px-2{padding:0 .25rem!important}}.px-3{padding:0 2rem!important}@media only screen and (max-width:56.25em){.px-3{padding:0 .75rem!important}}@media only screen and (max-width:37.5em){.px-3{padding:0 .3333333333rem!important}}.px-4{padding:0 2.5rem!important}@media only screen and (max-width:56.25em){.px-4{padding:0 1rem!important}}@media only screen and (max-width:37.5em){.px-4{padding:0 .5rem!important}}.py-2{padding:1.25rem 0!important}@media only screen and (max-width:56.25em){.py-2{padding:1rem 0!important}}@media only screen and (max-width:37.5em){.py-2{padding:1rem 0!important}}.p-2{padding:1.25rem!important}@media only screen and (max-width:56.25em){.p-2{padding:1rem!important}}@media only screen and (max-width:37.5em){.p-2{padding:1rem!important}}.p-24{padding:1.5rem!important}@media only screen and (max-width:56.25em){.p-24{padding:.75rem!important}}@media only screen and (max-width:37.5em){.p-24{padding:.625rem!important}}.ps-2{padding-left:1.25rem!important}.m-1px{margin:1px!important}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-auto{overflow:auto}.mat-footer-row .mat-footer-cell{border-bottom:none!important}.mat-row:last-child .mdc-data-table__cell{border-bottom:none!important}.mat-mdc-form-field-infix{width:14rem!important}.flex-ellipsis{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-right:2rem}.mat-list,.mat-list .mat-list-item .mat-list-item-content,.mat-nav-list,.mat-selection-list{padding:0!important}.inline-spinner{display:inline-flex!important;top:5px!important}.top-minus-5px{position:relative;top:-5px}.top-minus-25px{position:relative;top:-1.5rem;margin-bottom:-1.5rem!important}.top-minus-30px{position:relative;top:-2rem}.cursor-pointer:hover{cursor:pointer!important}.cursor-default:hover{cursor:default!important}.cursor-not-allowed:hover{cursor:not-allowed!important}.inline-flex{display:inline-flex!important}.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.op-image{box-shadow:0 0 2px #ccc;border:2px solid;border-color:transparent;cursor:pointer;transition:.2s}.settings-icon{position:fixed;top:30%;right:0;width:.25rem;height:2.5rem;opacity:.6;cursor:pointer;z-index:999999}.test-banner{padding-top:2px;background-color:#fc7783;text-transform:uppercase;border-radius:2px}.currency-icon.currency-icon-small{max-width:.8375rem;max-height:.8375rem}.currency-icon.currency-icon-medium{max-width:1rem;max-height:1rem}.currency-icon.currency-icon-large{max-width:1.125rem;max-height:1.125rem}.currency-icon.currency-icon-x-large{max-width:1.25rem;max-height:1.25rem}.fa-icon-small,.top-icon-small{min-width:1.25rem}.fa-icon-small svg,.top-icon-small svg{min-width:1.25rem}.botlz-icon-sm{min-width:1rem;width:1rem;max-width:1rem}.copy-icon{position:relative;top:.25rem}.copy-icon-smaller{position:relative;top:2px}.top-5px{position:relative;top:5px}.animate-settings{animation:animate-settings 10s linear infinite}@keyframes animate-settings{to{transform:rotate(360deg)}}.mt-minus-5{position:relative;margin-top:-5px}.color-white{color:#fff!important}.custom-card{padding:0 0 .5rem!important}.not-found-box{min-width:50%}.w-100{width:100%!important}.w-96{width:96%!important}.w-84{width:84%!important}.h-100{height:100%!important}.h-93{height:93%!important}.h-40{height:400px!important}.h-46{height:460px!important}.h-50{height:500px!important}.h-10{height:100px!important}.h-4{height:12rem!important}.h-35px{height:35px!important}a{outline:none;text-decoration:none;text-decoration:underline}.mat-tree{width:100%}.mat-tree-node,.mat-nested-tree-node-parent{min-height:3rem;height:3rem;padding:0 .75rem;cursor:pointer}@media only screen and (max-width:37.5em){.mat-tree-node,.mat-nested-tree-node-parent{min-height:4rem;height:4rem}}.mat-tree-node:focus,.mat-tree-node:active,.mat-nested-tree-node:focus,.mat-nested-tree-node:active,.mat-nested-tree-node-parent:focus,.mat-nested-tree-node-parent:active,.mat-tree-node span:focus,.mat-tree-node span:active,.mat-nested-tree-node-parent span:focus,.mat-nested-tree-node-parent span:active,.mat-tree-node div:focus,.mat-tree-node div:active,.mat-nested-tree-node-parent div:focus,.mat-nested-tree-node-parent div:active,.mat-tree-node .mat-icon:focus,.mat-tree-node .mat-icon:active,.mat-nested-tree-node-parent .mat-icon:focus,.mat-nested-tree-node-parent .mat-icon:active{outline:none}.lnd-info{height:6rem}.flex-wrap{flex-wrap:wrap!important}.word-break{word-break:break-all!important}.font-bold-500{font-weight:500!important}.font-bold-700{font-weight:700!important}.pubkey-info-top{flex-wrap:wrap;margin-top:1px;min-height:1rem;cursor:pointer;display:flex;align-content:center}.logo{font-weight:700;letter-spacing:1px}.fa-icon-regular{min-width:2.5rem;width:2.5rem;max-width:2.5rem}.icon-large{margin-left:-100%}.icon-small{height:1.25rem!important;width:1.25rem!important}.icon-smaller{height:.625rem!important;width:.625rem!important}.mat-icon-36{width:2.25rem!important;height:2.25rem!important}.mat-mdc-select.multi-node-select{width:84%}.page-title-container{font-size:110%;padding:0 .75rem;margin-bottom:.5rem}@media only screen and (max-width:56.25em){.page-title-container{padding:0 .5rem;margin:.5rem 0}}@media only screen and (max-width:37.5em){.page-title-container{padding:0 .5rem;margin:.5rem 0}}table{width:100%}th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 1rem}@media only screen and (max-width:75em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .5rem}}@media only screen and (max-width:56.25em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .25rem}}@media only screen and (max-width:37.5em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .125rem}}th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:1rem}@media only screen and (max-width:75em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.5rem!important}}@media only screen and (max-width:56.25em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.25rem!important}}@media only screen and (max-width:37.5em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.125rem!important}}th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:1rem}@media only screen and (max-width:75em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.5rem!important}}@media only screen and (max-width:56.25em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.25rem!important}}@media only screen and (max-width:37.5em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.125rem!important}}.dot{display:inline-flex;width:.8rem;height:.8rem;border-radius:.8rem;margin:.25rem 0 0}.dot.tiny-dot{width:.5rem;height:.5rem;border-radius:.5rem;margin:0 .3333333333rem 1px 0}.dot.green{background-color:#28ca43}.dot.yellow{background-color:#ffbd2e}.dot.red{background-color:#c62828}.dot.grey{background-color:#ccc}.font-size-80{font-size:80%!important}.font-size-90{font-size:90%!important}.font-size-120{font-size:120%!important}.font-size-200{font-size:200%!important}.font-size-300{font-size:300%!important}.font-weight-500{font-weight:500!important}.font-weight-900{font-weight:900!important}.pre-wrap{white-space:pre-wrap!important}.display-none{display:none!important}.mat-divider.mat-divider-horizontal.mat-divider-inset{margin-left:1rem}.mat-vertical-stepper-header{padding:.625rem .625rem .625rem .5rem!important}.mat-vertical-stepper-content{margin:0 .5rem}.ellipsis-child{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.blinker{animation:blink-animation 1s steps(5,start) infinite;-webkit-animation:blink-animation 1s steps(5,start) infinite}@keyframes blink-animation{to{visibility:hidden}}.mat-progress-bar.dashboard-progress-bar{height:6px;min-height:6px}.alert{margin-bottom:.625rem;padding:.3333333333rem .625rem;border-radius:2px}.dashboard-vert-menu.mat-menu-panel{min-height:3rem}.mat-mdc-tab .mdc-tab__content{overflow:hidden!important}.mdc-tab__text-label{opacity:1;padding:0;min-width:11rem}@media only screen and (max-width:56.25em){.mdc-tab__text-label{min-width:auto}}@media only screen and (max-width:37.5em){.mdc-tab__text-label{min-width:auto}}.dashboard-card{margin-bottom:0}.dashboard-card .mat-mdc-card-header{padding:16px 0 0 16px}.dashboard-card .mat-mdc-card-content.dashboard-card-content{margin-bottom:0}.dashboard-tabs-group.mat-mdc-tab-group{max-width:91%}.dashboard-tabs-group .mat-mdc-tab-list{width:100%}.dashboard-tabs-group .mdc-tab{margin:0;padding:0 1.5rem;display:flex;flex:1 0 auto;justify-content:center}.dashboard-tabs-group.mat-mdc-tab-group .mat-mdc-tab .mdc-tab__content .mdc-tab__text-label{min-width:5.5rem}.node-grid-tile.mat-grid-tile .mat-figure{align-items:start}.mat-vertical-content-container{margin-left:1.25rem!important}.xs-scroll-y{overflow-y:scroll;max-height:600px}.h-2{min-height:1.25rem!important}.border-valid{border:1px solid #28ca43!important}.border-invalid{border:1px solid #c62828!important}.icon-green{fill:#28ca43}.visible{visibility:visible!important}.hidden{visibility:hidden!important}.h-5{height:50px}.btn-sticky-container{height:0;opacity:.5}.btn-sticky-container .mat-icon{animation:scrollDownAnimation 2s infinite}@keyframes scrollDownAnimation{0%{transform:translateY(0)}10%{transform:translateY(-20%)}20%{transform:translateY(20%)}30%{transform:translateY(-20%)}40%{transform:translateY(20%)}50%{transform:translateY(0)}}.mat-form-field-appearance-legacy.mat-form-field-disabled input,.mat-form-field-appearance-legacy.mat-form-field-disabled mat-select,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-trigger,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-value,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-arro-wrapper,.mat-form-field-appearance-legacy.mat-form-field-disabled textarea,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-infix{cursor:not-allowed}.mat-mdc-tooltip-panel{max-width:25rem!important}.ngx-charts-tooltip-content.type-tooltip{background:#323232e6!important}.ngx-charts-tooltip-content .tooltip-caret{border-top-color:#323232e6!important}.mat-mdc-tooltip-panel .mdc-tooltip__surface{min-width:10rem;max-width:unset;text-align:start}.go-to-link{text-decoration:underline;font-weight:500;cursor:pointer}.mat-mdc-card.dashboard-card{padding:0 .75rem!important}@media only screen and (max-width:56.25em){.mat-mdc-card.dashboard-card{padding:.25rem .625rem!important}}@media only screen and (max-width:37.5em){.mat-mdc-card.dashboard-card{padding:.25rem .5rem!important}}.mat-mdc-card.dashboard-card.p-0{padding:0!important}.mat-mdc-card.dashboard-card .mat-mdc-card-header-text{width:100%}.mat-progress-bar{min-height:4px}.dashboard-card-content{text-align:left}.ellipsis-parent{display:flex}.mat-column-actions{min-height:3.25rem}@media only screen and (max-width:37.5em){.mat-column-actions{min-height:4.1rem}}.mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 1rem}@media only screen and (max-width:56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .5rem}}@media only screen and (max-width:37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .25rem}}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header .mat-expansion-indicator{margin-top:-5px}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 1.5rem 1rem}@media only screen and (max-width:56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .5rem .5rem}}@media only screen and (max-width:37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .25rem .125rem}}@media only screen and (max-width:56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-title,.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-description{margin-right:.5rem}}@media only screen and (max-width:37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-title,.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-description{margin-right:.25rem}}.flex-9{flex:1 1 9%}.flex-17{flex:1 1 17%}.flex-20{flex:1 1 20%}.flex-25{flex:1 1 25%}.flex-30{flex:1 1 30%}.flex-35{flex:1 1 35%}.flex-40{flex:1 1 40%}.flex-48{flex:1 1 48%}.flex-50{flex:1 1 50%}.flex-70{flex:1 1 70%}.flex-83{flex:1 1 83%}.flex-91{flex:1 1 91%}.flex-100{flex:1 1 100%}.align-center-start{display:flex;justify-content:center;align-items:flex-start}.align-center-center{display:flex;justify-content:center;align-items:center}html{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12)}html{--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}html{--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}html{--mat-optgroup-label-text-color: rgba(0, 0, 0, .87)}html{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #5e4ea5;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #5e4ea5;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}html{--mat-card-elevated-container-shape: 4px;--mat-card-outlined-container-shape: 4px;--mat-card-filled-container-shape: 4px;--mat-card-outlined-outline-width: 1px}html{--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12)}html{--mat-progress-bar-active-indicator-height: 4px;--mat-progress-bar-track-height: 4px;--mat-progress-bar-track-shape: 0}.mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #5e4ea5;--mat-progress-bar-track-color: rgba(94, 78, 165, .25)}.mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}html{--mat-tooltip-container-shape: 4px;--mat-tooltip-supporting-text-line-height: 16px}html{--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white}html{--mat-form-field-filled-active-indicator-height: 1px;--mat-form-field-filled-focus-active-indicator-height: 2px;--mat-form-field-filled-container-shape: 4px;--mat-form-field-outlined-outline-width: 1px;--mat-form-field-outlined-focus-outline-width: 2px;--mat-form-field-outlined-container-shape: 4px}html{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-filled-caret-color: #5e4ea5;--mat-form-field-filled-focus-active-indicator-color: #5e4ea5;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-outlined-caret-color: #5e4ea5;--mat-form-field-outlined-focus-outline-color: #5e4ea5;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020}.mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}html{--mat-form-field-container-height: 56px;--mat-form-field-filled-label-display: block;--mat-form-field-container-vertical-padding: 16px;--mat-form-field-filled-with-label-container-padding-top: 24px;--mat-form-field-filled-with-label-container-padding-bottom: 8px}html{--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #5e4ea5;--mat-select-invalid-arrow-color: #b00020}.mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}html{--mat-select-arrow-transform: translateY(-8px)}html{--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-autocomplete-background-color: white}html{--mat-dialog-container-shape: 4px;--mat-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px}html{--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54)}.mat-mdc-standard-chip{--mat-chip-container-shape-radius: 16px;--mat-chip-disabled-container-opacity: .4;--mat-chip-disabled-outline-color: transparent;--mat-chip-flat-selected-outline-width: 0;--mat-chip-focus-outline-color: transparent;--mat-chip-hover-state-layer-opacity: .04;--mat-chip-outline-color: transparent;--mat-chip-outline-width: 0;--mat-chip-selected-hover-state-layer-opacity: .04;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-focus-state-layer-opacity: 0;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-with-avatar-avatar-shape-radius: 14px;--mat-chip-with-avatar-avatar-size: 28px;--mat-chip-with-avatar-disabled-avatar-opacity: 1;--mat-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-with-icon-icon-size: 18px;--mat-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1}.mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #5e4ea5;--mat-chip-elevated-disabled-container-color: #5e4ea5;--mat-chip-elevated-selected-container-color: #5e4ea5;--mat-chip-flat-disabled-selected-container-color: #5e4ea5;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.mat-mdc-chip.mat-mdc-standard-chip{--mat-chip-container-height: 32px}html{--mat-slide-toggle-disabled-handle-opacity: .38;--mat-slide-toggle-disabled-selected-handle-opacity: .38;--mat-slide-toggle-disabled-selected-icon-opacity: .38;--mat-slide-toggle-disabled-track-opacity: .12;--mat-slide-toggle-disabled-unselected-handle-opacity: .38;--mat-slide-toggle-disabled-unselected-icon-opacity: .38;--mat-slide-toggle-disabled-unselected-track-outline-color: transparent;--mat-slide-toggle-disabled-unselected-track-outline-width: 1px;--mat-slide-toggle-handle-height: 20px;--mat-slide-toggle-handle-shape: 10px;--mat-slide-toggle-handle-width: 20px;--mat-slide-toggle-hidden-track-opacity: 1;--mat-slide-toggle-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-slide-toggle-pressed-handle-size: 20px;--mat-slide-toggle-selected-focus-state-layer-opacity: .12;--mat-slide-toggle-selected-handle-horizontal-margin: 0;--mat-slide-toggle-selected-handle-size: 20px;--mat-slide-toggle-selected-hover-state-layer-opacity: .04;--mat-slide-toggle-selected-icon-size: 18px;--mat-slide-toggle-selected-pressed-handle-horizontal-margin: 0;--mat-slide-toggle-selected-pressed-state-layer-opacity: .12;--mat-slide-toggle-selected-track-outline-color: transparent;--mat-slide-toggle-selected-track-outline-width: 1px;--mat-slide-toggle-selected-with-icon-handle-horizontal-margin: 0;--mat-slide-toggle-track-height: 14px;--mat-slide-toggle-track-outline-color: transparent;--mat-slide-toggle-track-outline-width: 1px;--mat-slide-toggle-track-shape: 7px;--mat-slide-toggle-track-width: 36px;--mat-slide-toggle-unselected-focus-state-layer-opacity: .12;--mat-slide-toggle-unselected-handle-horizontal-margin: 0;--mat-slide-toggle-unselected-handle-size: 20px;--mat-slide-toggle-unselected-hover-state-layer-opacity: .12;--mat-slide-toggle-unselected-icon-size: 18px;--mat-slide-toggle-unselected-pressed-handle-horizontal-margin: 0;--mat-slide-toggle-unselected-pressed-state-layer-opacity: .1;--mat-slide-toggle-unselected-with-icon-handle-horizontal-margin: 0;--mat-slide-toggle-visible-track-opacity: 1;--mat-slide-toggle-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-slide-toggle-with-icon-handle-size: 20px;--mat-slide-toggle-touch-target-size: 48px}html{--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-handle-color: #5e4ea5;--mat-slide-toggle-selected-hover-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-pressed-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-focus-handle-color: #5e4ea5;--mat-slide-toggle-selected-hover-handle-color: #5e4ea5;--mat-slide-toggle-selected-pressed-handle-color: #5e4ea5;--mat-slide-toggle-selected-focus-track-color: #8e83c0;--mat-slide-toggle-selected-hover-track-color: #8e83c0;--mat-slide-toggle-selected-pressed-track-color: #8e83c0;--mat-slide-toggle-selected-track-color: #8e83c0;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12)}.mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}html{--mat-slide-toggle-state-layer-size: 40px;--mat-slide-toggle-touch-target-display: block}html{--mat-radio-disabled-selected-icon-opacity: .38;--mat-radio-disabled-unselected-icon-opacity: .38;--mat-radio-state-layer-size: 40px;--mat-radio-touch-target-size: 48px}.mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #5e4ea5;--mat-radio-selected-hover-icon-color: #5e4ea5;--mat-radio-selected-icon-color: #5e4ea5;--mat-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}html{--mat-radio-state-layer-size: 40px;--mat-radio-touch-target-display: block}html{--mat-slider-active-track-height: 6px;--mat-slider-active-track-shape: 9999px;--mat-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-handle-height: 20px;--mat-slider-handle-shape: 50%;--mat-slider-handle-width: 20px;--mat-slider-inactive-track-height: 4px;--mat-slider-inactive-track-shape: 9999px;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-container-transform: translateX(-50%);--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-width: auto;--mat-slider-with-overlap-handle-outline-width: 1px;--mat-slider-with-tick-marks-active-container-opacity: .6;--mat-slider-with-tick-marks-container-shape: 50%;--mat-slider-with-tick-marks-container-size: 2px;--mat-slider-with-tick-marks-inactive-container-opacity: .6;--mat-slider-value-indicator-transform-origin: bottom}html{--mat-slider-active-track-color: #5e4ea5;--mat-slider-focus-handle-color: #5e4ea5;--mat-slider-handle-color: #5e4ea5;--mat-slider-hover-handle-color: #5e4ea5;--mat-slider-focus-state-layer-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #5e4ea5 4%, transparent);--mat-slider-inactive-track-color: #5e4ea5;--mat-slider-ripple-color: #5e4ea5;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87)}.mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}html{--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12)}html{--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mat-list-list-item-container-shape: 0;--mat-list-list-item-leading-avatar-shape: 50%;--mat-list-list-item-container-color: transparent;--mat-list-list-item-selected-container-color: transparent;--mat-list-list-item-leading-avatar-color: transparent;--mat-list-list-item-leading-icon-size: 24px;--mat-list-list-item-leading-avatar-size: 40px;--mat-list-list-item-trailing-icon-size: 24px;--mat-list-list-item-disabled-state-layer-color: transparent;--mat-list-list-item-disabled-state-layer-opacity: 0;--mat-list-list-item-disabled-label-text-opacity: .38;--mat-list-list-item-disabled-leading-icon-opacity: .38;--mat-list-list-item-disabled-trailing-icon-opacity: .38}html{--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12}.mdc-list-item__start,.mdc-list-item__end{--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #5e4ea5;--mat-radio-selected-hover-icon-color: #5e4ea5;--mat-radio-selected-icon-color: #5e4ea5;--mat-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-accent .mdc-list-item__start,.mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-warn .mdc-list-item__start,.mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #5e4ea5;--mat-checkbox-selected-hover-icon-color: #5e4ea5;--mat-checkbox-selected-icon-color: #5e4ea5;--mat-checkbox-selected-pressed-icon-color: #5e4ea5;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #5e4ea5;--mat-checkbox-selected-hover-state-layer-color: #5e4ea5;--mat-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#5e4ea5}.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}html{--mat-list-list-item-leading-icon-start-space: 16px;--mat-list-list-item-leading-icon-end-space: 32px;--mat-list-list-item-one-line-container-height: 48px;--mat-list-list-item-two-line-container-height: 64px;--mat-list-list-item-three-line-container-height: 88px}.mdc-list-item__start,.mdc-list-item__end{--mat-radio-state-layer-size: 40px;--mat-radio-touch-target-display: block}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line{height:56px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}html{--mat-paginator-page-size-select-width: 84px;--mat-paginator-page-size-select-touch-target-height: 48px}html{--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}html{--mat-paginator-container-size: 56px;--mat-paginator-form-field-container-height: 40px;--mat-paginator-form-field-container-vertical-padding: 8px;--mat-paginator-touch-target-display: block}html{--mat-tab-container-height: 48px;--mat-tab-divider-color: transparent;--mat-tab-divider-height: 0;--mat-tab-active-indicator-height: 2px;--mat-tab-active-indicator-shape: 0}.mat-mdc-tab-group,.mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #5e4ea5;--mat-tab-active-ripple-color: #5e4ea5;--mat-tab-inactive-ripple-color: #5e4ea5;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #5e4ea5;--mat-tab-active-hover-label-text-color: #5e4ea5;--mat-tab-active-focus-indicator-color: #5e4ea5;--mat-tab-active-hover-indicator-color: #5e4ea5;--mat-tab-active-indicator-color: #5e4ea5}.mat-mdc-tab-group.mat-accent,.mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.mat-mdc-tab-group.mat-warn,.mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.mat-mdc-tab-group.mat-background-primary,.mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #5e4ea5;--mat-tab-foreground-color: #ffffff}.mat-mdc-tab-group.mat-background-accent,.mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.mat-mdc-tab-group.mat-background-warn,.mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.mat-mdc-tab-header{--mat-tab-container-height: 48px}html{--mat-checkbox-disabled-selected-checkmark-color: white;--mat-checkbox-selected-focus-state-layer-opacity: .12;--mat-checkbox-selected-hover-state-layer-opacity: .04;--mat-checkbox-selected-pressed-state-layer-opacity: .12;--mat-checkbox-unselected-focus-state-layer-opacity: .12;--mat-checkbox-unselected-hover-state-layer-opacity: .04;--mat-checkbox-unselected-pressed-state-layer-opacity: .12;--mat-checkbox-touch-target-size: 48px}html{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #5e4ea5;--mat-checkbox-selected-hover-icon-color: #5e4ea5;--mat-checkbox-selected-icon-color: #5e4ea5;--mat-checkbox-selected-pressed-icon-color: #5e4ea5;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #5e4ea5;--mat-checkbox-selected-hover-state-layer-color: #5e4ea5;--mat-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}html{--mat-checkbox-touch-target-display: block;--mat-checkbox-state-layer-size: 40px}html{--mat-button-filled-container-shape: 4px;--mat-button-filled-horizontal-padding: 16px;--mat-button-filled-icon-offset: -4px;--mat-button-filled-icon-spacing: 8px;--mat-button-filled-touch-target-size: 48px;--mat-button-outlined-container-shape: 4px;--mat-button-outlined-horizontal-padding: 15px;--mat-button-outlined-icon-offset: -4px;--mat-button-outlined-icon-spacing: 8px;--mat-button-outlined-keep-touch-target: false;--mat-button-outlined-outline-width: 1px;--mat-button-outlined-touch-target-size: 48px;--mat-button-protected-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-button-protected-container-shape: 4px;--mat-button-protected-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-button-protected-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-button-protected-horizontal-padding: 16px;--mat-button-protected-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-button-protected-icon-offset: -4px;--mat-button-protected-icon-spacing: 8px;--mat-button-protected-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-button-protected-touch-target-size: 48px;--mat-button-text-container-shape: 4px;--mat-button-text-horizontal-padding: 8px;--mat-button-text-icon-offset: 0;--mat-button-text-icon-spacing: 8px;--mat-button-text-with-icon-horizontal-padding: 8px;--mat-button-text-touch-target-size: 48px;--mat-button-tonal-container-shape: 4px;--mat-button-tonal-horizontal-padding: 16px;--mat-button-tonal-icon-offset: -4px;--mat-button-tonal-icon-spacing: 8px;--mat-button-tonal-touch-target-size: 48px}html{--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-button.mat-primary,.mat-mdc-unelevated-button.mat-primary,.mat-mdc-raised-button.mat-primary,.mat-mdc-outlined-button.mat-primary,.mat-tonal-button.mat-primary{--mat-button-filled-container-color: #5e4ea5;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #5e4ea5;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-button-outlined-state-layer-color: #5e4ea5;--mat-button-protected-container-color: #5e4ea5;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #5e4ea5;--mat-button-text-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-button-text-state-layer-color: #5e4ea5;--mat-button-tonal-container-color: #5e4ea5;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.mat-mdc-button.mat-accent,.mat-mdc-unelevated-button.mat-accent,.mat-mdc-raised-button.mat-accent,.mat-mdc-outlined-button.mat-accent,.mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.mat-mdc-button.mat-warn,.mat-mdc-unelevated-button.mat-warn,.mat-mdc-raised-button.mat-warn,.mat-mdc-outlined-button.mat-warn,.mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}html{--mat-button-filled-container-height: 36px;--mat-button-filled-touch-target-display: block;--mat-button-outlined-container-height: 36px;--mat-button-outlined-touch-target-display: block;--mat-button-protected-container-height: 36px;--mat-button-protected-touch-target-display: block;--mat-button-text-container-height: 36px;--mat-button-text-touch-target-display: block;--mat-button-tonal-container-height: 36px;--mat-button-tonal-touch-target-display: block}html{--mat-icon-button-icon-size: 24px;--mat-icon-button-container-shape: 50%;--mat-icon-button-touch-target-size: 48px}html{--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent)}.mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}html{--mat-icon-button-touch-target-display: block}.mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 48px;--mat-icon-button-state-layer-size: 48px;width:var(--mat-icon-button-state-layer-size);height:var(--mat-icon-button-state-layer-size);padding:12px}html{--mat-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-container-shape: 50%;--mat-fab-touch-target-size: 48px;--mat-fab-extended-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-extended-container-height: 48px;--mat-fab-extended-container-shape: 24px;--mat-fab-extended-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-extended-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-extended-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-fab-small-container-shape: 50%;--mat-fab-small-touch-target-size: 48px;--mat-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12)}html{--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87)}.mat-mdc-fab.mat-primary,.mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #5e4ea5;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.mat-mdc-fab.mat-accent,.mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.mat-mdc-fab.mat-warn,.mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}html{--mat-fab-small-touch-target-display: block;--mat-fab-touch-target-display: block}html{--mat-snack-bar-container-shape: 4px}html{--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #8e83c0}html{--mat-table-row-item-outline-width: 1px}html{--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12)}html{--mat-table-header-container-height: 56px;--mat-table-footer-container-height: 52px;--mat-table-row-item-container-height: 52px}html{--mat-progress-spinner-active-indicator-width: 4px;--mat-progress-spinner-size: 48px}html{--mat-progress-spinner-active-indicator-color: #5e4ea5}.mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}html{--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0}html{--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}html{--mat-bottom-sheet-container-shape: 4px}html{--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white}html{--mat-button-toggle-focus-state-layer-opacity: .12;--mat-button-toggle-hover-state-layer-opacity: .04;--mat-button-toggle-legacy-focus-state-layer-opacity: 1;--mat-button-toggle-legacy-height: 36px;--mat-button-toggle-legacy-shape: 2px;--mat-button-toggle-shape: 4px}html{--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87)}html{--mat-button-toggle-height: 48px}html{--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12)}html{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #5e4ea5 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #5e4ea5 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #5e4ea5 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.mat-datepicker-content.mat-accent,.mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.mat-datepicker-content.mat-warn,.mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.mat-calendar-controls{--mat-icon-button-touch-target-display: none}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 40px;--mat-icon-button-state-layer-size: 40px;width:var(--mat-icon-button-state-layer-size);height:var(--mat-icon-button-state-layer-size);padding:8px}html{--mat-divider-width: 1px}html{--mat-divider-color: rgba(0, 0, 0, .12)}html{--mat-expansion-container-shape: 4px;--mat-expansion-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none}html{--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54)}html{--mat-expansion-header-collapsed-state-height: 48px;--mat-expansion-header-expanded-state-height: 64px}html{--mat-icon-color: inherit}.mat-icon.mat-primary{--mat-icon-color: #5e4ea5}.mat-icon.mat-accent{--mat-icon-color: #424242}.mat-icon.mat-warn{--mat-icon-color: #b00020}html{--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto}html{--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6)}html{--mat-stepper-header-focus-state-layer-shape: 0;--mat-stepper-header-hover-state-layer-shape: 0}html{--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent}.mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}html{--mat-stepper-header-height: 72px}html{--mat-sort-arrow-color: rgba(0, 0, 0, .87)}html{--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87)}.mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #5e4ea5;--mat-toolbar-container-text-color: #ffffff}.mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}html{--mat-toolbar-standard-height: 64px;--mat-toolbar-mobile-height: 56px}html{--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}html{--mat-tree-node-min-height: 48px}html{--mat-timepicker-container-shape: 4px;--mat-timepicker-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-timepicker-container-background-color: white}.rtl-container.purple.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.purple.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.purple.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.purple.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.purple.day .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.purple.day .page-title,.rtl-container.purple.day .mat-mdc-select-value,.rtl-container.purple.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.purple.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.purple.day .help-expansion .mat-expansion-panel-header,.rtl-container.purple.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.purple.day .help-expansion .mat-expansion-indicator:after,.rtl-container.purple.day .help-expansion .mat-expansion-panel-content,.rtl-container.purple.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#5e4ea5}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.purple.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#5e4ea5}.rtl-container.purple.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.purple.day .mat-tree-node:hover,.rtl-container.purple.day .mat-nested-tree-node-parent:hover,.rtl-container.purple.day .mat-select-panel .mat-option:hover,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#5e4ea5;cursor:pointer}.rtl-container.purple.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.day .mat-tree-node:hover .mat-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#5e4ea5}.rtl-container.purple.day .spinner-container h2{color:#fff}.rtl-container.purple.day .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.purple.day .mat-form-field-suffix{color:#0000008a}.rtl-container.purple.day .mat-stroked-button.mat-primary{border-color:#5e4ea5}.rtl-container.purple.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.purple.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.purple.day .selected-color{border-color:#8e83c0}.rtl-container.purple.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.purple.day table.mat-mdc-table thead tr th,.rtl-container.purple.day .page-title-container,.rtl-container.purple.day .page-sub-title-container{color:#0000008a}.rtl-container.purple.day .page-title-container .page-title-img,.rtl-container.purple.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.purple.day .page-title-container .mat-input-element,.rtl-container.purple.day .page-title-container .mat-radio-label-content,.rtl-container.purple.day .page-title-container .theme-name,.rtl-container.purple.day .page-sub-title-container .mat-input-element,.rtl-container.purple.day .page-sub-title-container .mat-radio-label-content,.rtl-container.purple.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.purple.day .cc-data-block .cc-data-title{color:#5e4ea5}.rtl-container.purple.day .active-link,.rtl-container.purple.day .active-link .fa-icon-small{color:#5e4ea5;font-weight:500;cursor:pointer;fill:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover,.rtl-container.purple.day .mat-nested-tree-node-parent:hover,.rtl-container.purple.day .mat-select-panel .mat-option:hover,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#5e4ea5;cursor:pointer;background:#0000000a}.rtl-container.purple.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.day .mat-tree-node:hover .mat-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#5e4ea5}.rtl-container.purple.day .mat-tree-node .sidenav-img,.rtl-container.purple.day .mat-nested-tree-node .sidenav-img,.rtl-container.purple.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.purple.day .page-title-container .page-title-img,.rtl-container.purple.day svg.top-icon-small{fill:#000000de}.rtl-container.purple.day .mat-progress-bar-fill:after{background-color:#312579}.rtl-container.purple.day .modal-qr-code-container{background:#0000001f}.rtl-container.purple.day .mdc-tab__text-label,.rtl-container.purple.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.purple.day .mat-mdc-card,.rtl-container.purple.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.purple.day .dashboard-info-title{color:#5e4ea5}.rtl-container.purple.day .dashboard-capacity-header,.rtl-container.purple.day .dashboard-info-value{color:#0000008a}.rtl-container.purple.day .color-primary{color:#5e4ea5!important}.rtl-container.purple.day .dot-primary{background-color:#5e4ea5!important}.rtl-container.purple.day .dot-primary-lighter{background-color:#8e83c0!important}.rtl-container.purple.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .mat-mdc-form-field-hint{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.purple.day .mat-mdc-form-field-hint fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.day .currency-icon path,.rtl-container.purple.day .currency-icon polygon{fill:#0000008a}.rtl-container.purple.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.purple.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.purple.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-primary-lighter{stroke:#8e83c0}.rtl-container.purple.day svg .stroke-color-primary{stroke:#5e4ea5}.rtl-container.purple.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.purple.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-1{fill:#fff}.rtl-container.purple.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.purple.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-6{fill:#fff}.rtl-container.purple.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-9{fill:#fff}.rtl-container.purple.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.purple.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.purple.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-16{fill:#404040}.rtl-container.purple.day svg .fill-color-17{fill:#404040}.rtl-container.purple.day svg .fill-color-18{fill:#000}.rtl-container.purple.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-24{fill:#000}.rtl-container.purple.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.purple.day svg .fill-color-27{fill:#000}.rtl-container.purple.day svg .fill-color-28{fill:#313131}.rtl-container.purple.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-30{fill:#fff}.rtl-container.purple.day svg .fill-color-31{fill:#5e4ea5}.rtl-container.purple.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.purple.day svg .fill-color-primary{fill:#5e4ea5}.rtl-container.purple.day svg .fill-color-primary-lighter{fill:#8e83c0}.rtl-container.purple.day svg .fill-color-primary-darker{fill:#5e4ea5}.rtl-container.purple.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.purple.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.purple.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#5e4ea5}.rtl-container.purple.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.purple.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.purple.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.purple.day .material-icons.mat-icon-no-color,.rtl-container.purple.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.purple.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.purple.day .material-icons.info-icon.info-icon-primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.purple.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.purple.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.purple.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.purple.day .material-icons.info-icon.arrow-downward,.rtl-container.purple.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.purple.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#5e4ea5}.rtl-container.purple.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#312579}.rtl-container.purple.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#afa7d2}.rtl-container.purple.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.purple.day .mat-progress-bar-buffer{background-color:#cfcae4}.rtl-container.purple.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.purple.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.purple.day .foreground.mat-progress-spinner circle,.rtl-container.purple.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.purple.day .mat-toolbar-row,.rtl-container.purple.day .mat-toolbar-single-row{height:4rem}.rtl-container.purple.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day a{color:#5e4ea5}.rtl-container.purple.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.purple.day .h-active-link{border-bottom:2px solid white}.rtl-container.purple.day .mat-icon-36{color:#0000008a}.rtl-container.purple.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.purple.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.purple.day .genseed-message{width:10%;color:#5e4ea5}.rtl-container.purple.day .border-primary{border:1px solid #5e4ea5}.rtl-container.purple.day .border-accent{border:1px solid #9e9e9e}.rtl-container.purple.day .border-warn{border:1px solid #b00020}.rtl-container.purple.day .material-icons.primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.accent{color:#9e9e9e}.rtl-container.purple.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.purple.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.purple.day .row-disabled{background-color:gray}.rtl-container.purple.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.purple.day .mat-mdc-card-content,.rtl-container.purple.day .mat-mdc-card-subtitle,.rtl-container.purple.day .mat-mdc-card-title{color:#0000008a}.rtl-container.purple.day .mat-menu-panel{min-width:4rem}.rtl-container.purple.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.purple.day .horizontal-button:hover{background:#8e83c0;color:#9e9e9e}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#5e4ea5}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.purple.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.purple.day .mat-button,.rtl-container.purple.day .mat-icon-button,.rtl-container.purple.day .mat-stroked-button,.rtl-container.purple.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.purple.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.purple.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.purple.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.purple.day .cc-data-block .cc-data-value{color:#000}.rtl-container.purple.day .mat-cell,.rtl-container.purple.day .mat-header-cell,.rtl-container.purple.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.purple.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.purple.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#5e4ea5}.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#5e4ea5;opacity:1}.rtl-container.purple.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.purple.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.purple.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.purple.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.purple.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.purple.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.purple.day .more-button{color:#000}.rtl-container.purple.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.purple.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.purple.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.purple.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.purple.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.purple.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.purple.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.purple.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.purple.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.purple.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.purple.day .tab-badge .mat-badge-content.mat-badge-active{background:#5e4ea5}.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.purple.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.purple.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.purple.day .rtl-select-overlay{min-width:7rem}}.rtl-container.purple.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.purple.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.purple.day .table-actions-button{min-width:8rem}.rtl-container.purple.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.purple.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#afa7d2!important}.rtl-container.purple.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#56479d!important}.rtl-container.purple.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.purple.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.purple.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.purple.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.purple.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.purple.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.purple.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.purple.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.purple.day .color-warn{color:#b00020}.rtl-container.purple.day .fill-warn{fill:#b00020}.rtl-container.purple.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.purple.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.purple.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.purple.day .alert.alert-info a{color:#004085}.rtl-container.purple.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.purple.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.purple.day .alert.alert-warn a{color:#856404}.rtl-container.purple.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.purple.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.purple.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.purple.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.purple.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.purple.day .failed-status{color:#b00020}.rtl-container.purple.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.purple.day .svg-fill-primary{fill:#5e4ea5}.rtl-container.purple.day .svg-fill-primary-lighter{fill:#8e83c0}.rtl-container.purple.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.purple.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.purple.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.purple.day .dashboard-card-content .underline,.rtl-container.purple.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.purple.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon path{fill:#5e4ea5}.rtl-container.purple.day .fa-icon-primary{color:#5e4ea5}.rtl-container.purple.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day ngx-charts-bar-vertical text,.rtl-container.purple.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.purple.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.purple.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.purple.day .mat-paginator-container{padding:0}.rtl-container.purple.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.purple.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.purple.day .invoice-animation-div .particles-circle{position:absolute;background-color:#5e4ea5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #5e4ea5;background-color:transparent}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.purple.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.purple.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.purple.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.purple.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.purple.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-filled-caret-color: #5e4ea5;--mat-form-field-filled-focus-active-indicator-color: #5e4ea5;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-outlined-caret-color: #5e4ea5;--mat-form-field-outlined-focus-outline-color: #5e4ea5;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #5e4ea5 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #5e4ea5;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-handle-color: #5e4ea5;--mat-slide-toggle-selected-hover-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-pressed-state-layer-color: #5e4ea5;--mat-slide-toggle-selected-focus-handle-color: #5e4ea5;--mat-slide-toggle-selected-hover-handle-color: #5e4ea5;--mat-slide-toggle-selected-pressed-handle-color: #5e4ea5;--mat-slide-toggle-selected-focus-track-color: #56479d;--mat-slide-toggle-selected-hover-track-color: #56479d;--mat-slide-toggle-selected-pressed-track-color: #56479d;--mat-slide-toggle-selected-track-color: #56479d;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #5e4ea5;--mat-slider-focus-handle-color: #5e4ea5;--mat-slider-handle-color: #5e4ea5;--mat-slider-hover-handle-color: #5e4ea5;--mat-slider-focus-state-layer-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #5e4ea5 4%, transparent);--mat-slider-inactive-track-color: #5e4ea5;--mat-slider-ripple-color: #5e4ea5;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #56479d;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #5e4ea5;--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #5e4ea5 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #5e4ea5 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #5e4ea5 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.purple.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.purple.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.purple.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #5e4ea5;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #5e4ea5;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.purple.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.purple.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.purple.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #5e4ea5;--mat-progress-bar-track-color: rgba(94, 78, 165, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.purple.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #5e4ea5;--mat-chip-elevated-disabled-container-color: #5e4ea5;--mat-chip-elevated-selected-container-color: #5e4ea5;--mat-chip-flat-disabled-selected-container-color: #5e4ea5;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.purple.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #5e4ea5;--mat-radio-selected-hover-icon-color: #5e4ea5;--mat-radio-selected-icon-color: #5e4ea5;--mat-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.purple.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.purple.night .mdc-list-item__start,.rtl-container.purple.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #5e4ea5;--mat-radio-selected-hover-icon-color: #5e4ea5;--mat-radio-selected-icon-color: #5e4ea5;--mat-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-accent .mdc-list-item__start,.rtl-container.purple.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-warn .mdc-list-item__start,.rtl-container.purple.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.purple.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #5e4ea5;--mat-checkbox-selected-hover-icon-color: #5e4ea5;--mat-checkbox-selected-icon-color: #5e4ea5;--mat-checkbox-selected-pressed-icon-color: #5e4ea5;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #5e4ea5;--mat-checkbox-selected-hover-state-layer-color: #5e4ea5;--mat-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.purple.night .mat-mdc-tab-group,.rtl-container.purple.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #5e4ea5;--mat-tab-active-ripple-color: #5e4ea5;--mat-tab-inactive-ripple-color: #5e4ea5;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #5e4ea5;--mat-tab-active-hover-label-text-color: #5e4ea5;--mat-tab-active-focus-indicator-color: #5e4ea5;--mat-tab-active-hover-indicator-color: #5e4ea5;--mat-tab-active-indicator-color: #5e4ea5}.rtl-container.purple.night .mat-mdc-tab-group.mat-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.purple.night .mat-mdc-tab-group.mat-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #5e4ea5;--mat-tab-foreground-color: #ffffff}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #5e4ea5;--mat-checkbox-selected-hover-icon-color: #5e4ea5;--mat-checkbox-selected-icon-color: #5e4ea5;--mat-checkbox-selected-pressed-icon-color: #5e4ea5;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #5e4ea5;--mat-checkbox-selected-hover-state-layer-color: #5e4ea5;--mat-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-button.mat-primary,.rtl-container.purple.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.purple.night .mat-mdc-raised-button.mat-primary,.rtl-container.purple.night .mat-mdc-outlined-button.mat-primary,.rtl-container.purple.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #5e4ea5;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #5e4ea5;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-button-outlined-state-layer-color: #5e4ea5;--mat-button-protected-container-color: #5e4ea5;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #5e4ea5;--mat-button-text-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-button-text-state-layer-color: #5e4ea5;--mat-button-tonal-container-color: #5e4ea5;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.purple.night .mat-mdc-button.mat-accent,.rtl-container.purple.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.purple.night .mat-mdc-raised-button.mat-accent,.rtl-container.purple.night .mat-mdc-outlined-button.mat-accent,.rtl-container.purple.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.purple.night .mat-mdc-button.mat-warn,.rtl-container.purple.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.purple.night .mat-mdc-raised-button.mat-warn,.rtl-container.purple.night .mat-mdc-outlined-button.mat-warn,.rtl-container.purple.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.purple.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent)}.rtl-container.purple.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.purple.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.purple.night .mat-mdc-fab.mat-primary,.rtl-container.purple.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #5e4ea5;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #5e4ea5 12%, transparent);--mat-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.purple.night .mat-mdc-fab.mat-accent,.rtl-container.purple.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.purple.night .mat-mdc-fab.mat-warn,.rtl-container.purple.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.purple.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.purple.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.purple.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.purple.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.purple.night .mat-datepicker-content.mat-accent,.rtl-container.purple.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.purple.night .mat-datepicker-content.mat-warn,.rtl-container.purple.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.purple.night .mat-icon.mat-primary{--mat-icon-color: #5e4ea5}.rtl-container.purple.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.purple.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.purple.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.purple.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.purple.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #5e4ea5;--mat-toolbar-container-text-color: #ffffff}.rtl-container.purple.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.purple.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.purple.night .mat-primary{color:#9787ff!important}.rtl-container.purple.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.purple.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.purple.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.purple.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.purple.night .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#9787ff}.rtl-container.purple.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.purple.night .currency-icon path,.rtl-container.purple.night .currency-icon polygon{fill:#fff}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.purple.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#9787ff}.rtl-container.purple.night .cc-data-block .cc-data-title{color:#9787ff}.rtl-container.purple.night .mat-stroked-button.mat-primary{border-color:#9787ff;color:#9787ff}.rtl-container.purple.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.purple.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.purple.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.purple.night .active-link,.rtl-container.purple.night .active-link .fa-icon-small,.rtl-container.purple.night .mat-select-panel .mat-option.mat-active,.rtl-container.purple.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#9787ff;font-weight:500;cursor:pointer;fill:#9787ff}.rtl-container.purple.night .help-expansion .mat-expansion-panel-header,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.purple.night .help-expansion .mat-expansion-indicator:after,.rtl-container.purple.night .help-expansion .mat-expansion-panel-content,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.purple.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.purple.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.purple.night .mat-expansion-panel,.rtl-container.purple.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.purple.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.purple.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.purple.night .mdc-data-table__header-cell,.rtl-container.purple.night .mat-mdc-paginator,.rtl-container.purple.night .mat-mdc-form-field-focus-overlay,.rtl-container.purple.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.purple.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.purple.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#9787ff}.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.purple.night .svg-donation{opacity:1!important}.rtl-container.purple.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#9787ff!important}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#9787ff!important}.rtl-container.purple.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#5e4ea5}.rtl-container.purple.night a{color:#9787ff!important;cursor:pointer}.rtl-container.purple.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.purple.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.purple.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.purple.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.purple.night .mat-mdc-select-placeholder,.rtl-container.purple.night .mat-mdc-select-value,.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#9787ff}.rtl-container.purple.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.purple.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.purple.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#9787ff}.rtl-container.purple.night .mat-tree-node:hover,.rtl-container.purple.night .mat-nested-tree-node-parent:hover,.rtl-container.purple.night .mat-select-panel .mat-option:hover,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#9787ff;cursor:pointer;background:#ffffff0f}.rtl-container.purple.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.night .mat-tree-node:hover .mat-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#9787ff}.rtl-container.purple.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.purple.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#9787ff}.rtl-container.purple.night .mat-tree-node:hover .boltz-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#9787ff}.rtl-container.purple.night .mat-tree-node .sidenav-img,.rtl-container.purple.night .mat-nested-tree-node .sidenav-img,.rtl-container.purple.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.purple.night .page-title-container .page-title-img,.rtl-container.purple.night svg.top-icon-small{fill:#fff}.rtl-container.purple.night .selected-color{border-color:#8e83c0}.rtl-container.purple.night .mat-progress-bar-fill:after{background-color:#56479d}.rtl-container.purple.night .chart-legend .legend-label:hover,.rtl-container.purple.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.purple.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.purple.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#9787ff}.rtl-container.purple.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.purple.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#9787ff}.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#9787ff}.rtl-container.purple.night .mat-select-panel{background-color:#121212}.rtl-container.purple.night .mat-tree{background:#121212}.rtl-container.purple.night h4{color:#9787ff}.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.purple.night .dashboard-info-title{color:#9787ff}.rtl-container.purple.night .dashboard-info-value,.rtl-container.purple.night .dashboard-capacity-header{color:#fff}.rtl-container.purple.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.purple.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.purple.night .color-primary{color:#9787ff!important}.rtl-container.purple.night .dot-primary{background-color:#9787ff!important}.rtl-container.purple.night .dot-primary-lighter{background-color:#5e4ea5!important}.rtl-container.purple.night .mat-stepper-vertical{background-color:#121212}.rtl-container.purple.night .spinner-container h2{color:#9787ff}.rtl-container.purple.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.purple.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.purple.night svg .boltz-icon-fill{fill:#fff}.rtl-container.purple.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-primary-lighter{stroke:#8e83c0}.rtl-container.purple.night svg .stroke-color-primary{stroke:#5e4ea5}.rtl-container.purple.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.purple.night svg .fill-color-0{fill:#171717}.rtl-container.purple.night svg .fill-color-1{fill:#232323}.rtl-container.purple.night svg .fill-color-2{fill:#222}.rtl-container.purple.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.purple.night svg .fill-color-4{fill:#383838}.rtl-container.purple.night svg .fill-color-5{fill:#555}.rtl-container.purple.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.purple.night svg .fill-color-7{fill:#202020}.rtl-container.purple.night svg .fill-color-8{fill:#242424}.rtl-container.purple.night svg .fill-color-9{fill:#262626}.rtl-container.purple.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.purple.night svg .fill-color-11{fill:#171717}.rtl-container.purple.night svg .fill-color-12{fill:#ccc}.rtl-container.purple.night svg .fill-color-13{fill:#adadad}.rtl-container.purple.night svg .fill-color-14{fill:#ababab}.rtl-container.purple.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.purple.night svg .fill-color-16{fill:#707070}.rtl-container.purple.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.purple.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.purple.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.purple.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.purple.night svg .fill-color-21{fill:#cacaca}.rtl-container.purple.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.purple.night svg .fill-color-23{fill:#777}.rtl-container.purple.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.purple.night svg .fill-color-25{fill:#252525}.rtl-container.purple.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.purple.night svg .fill-color-27{fill:#000}.rtl-container.purple.night svg .fill-color-28{fill:#313131}.rtl-container.purple.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.purple.night svg .fill-color-30{fill:#fff}.rtl-container.purple.night svg .fill-color-31{fill:#5e4ea5}.rtl-container.purple.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.purple.night svg .fill-color-primary{fill:#5e4ea5}.rtl-container.purple.night svg .fill-color-primary-lighter{fill:#8e83c0}.rtl-container.purple.night svg .fill-color-primary-darker{fill:#9787ff}.rtl-container.purple.night .mat-select-value,.rtl-container.purple.night .mat-select-arrow{color:#fff}.rtl-container.purple.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.purple.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.purple.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.purple.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.purple.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.purple.night .mat-button.mat-primary,.rtl-container.purple.night .mat-icon-button.mat-primary,.rtl-container.purple.night .mat-stroked-button.mat-primary{color:#9787ff}.rtl-container.purple.night tr.alert.alert-warn .mat-cell,.rtl-container.purple.night tr.alert.alert-warn .mat-header-cell,.rtl-container.purple.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.purple.night .material-icons.info-icon{font-size:100%;color:#9787ff}.rtl-container.purple.night .material-icons.info-icon.info-icon-primary{color:#9787ff}.rtl-container.purple.night .material-icons.info-icon.info-icon-text,.rtl-container.purple.night .material-icons.info-icon.arrow-downward,.rtl-container.purple.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.purple.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#9787ff}.rtl-container.purple.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#42358a}.rtl-container.purple.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#9787ff}.rtl-container.purple.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.purple.night .mat-progress-bar-buffer{background-color:#cfcae4}.rtl-container.purple.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.purple.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.purple.night .foreground.mat-progress-spinner circle,.rtl-container.purple.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.purple.night .mat-toolbar-row,.rtl-container.purple.night .mat-toolbar-single-row{height:4rem}.rtl-container.purple.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.purple.night a{color:#5e4ea5}.rtl-container.purple.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.purple.night .h-active-link{border-bottom:2px solid white}.rtl-container.purple.night .mat-icon-36{color:#ffffffb3}.rtl-container.purple.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.purple.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.purple.night .genseed-message{width:10%;color:#5e4ea5}.rtl-container.purple.night .border-primary{border:1px solid #5e4ea5}.rtl-container.purple.night .border-accent{border:1px solid #aaaaaa}.rtl-container.purple.night .border-warn{border:1px solid #b00020}.rtl-container.purple.night .material-icons.primary{color:#5e4ea5}.rtl-container.purple.night .material-icons.accent{color:#aaa}.rtl-container.purple.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.purple.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.purple.night .row-disabled{background-color:gray}.rtl-container.purple.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.purple.night .mat-mdc-card-content,.rtl-container.purple.night .mat-mdc-card-subtitle,.rtl-container.purple.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.purple.night .mat-menu-panel{min-width:4rem}.rtl-container.purple.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.purple.night .horizontal-button:hover{background:#8e83c0;color:#aaa}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#5e4ea5}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.purple.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.purple.night .mat-button,.rtl-container.purple.night .mat-icon-button,.rtl-container.purple.night .mat-stroked-button,.rtl-container.purple.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.purple.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.purple.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.purple.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.purple.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.purple.night .mat-cell,.rtl-container.purple.night .mat-header-cell,.rtl-container.purple.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.purple.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.purple.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#5e4ea5}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#5e4ea5;opacity:1}.rtl-container.purple.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.purple.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.purple.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.purple.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.purple.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.purple.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.purple.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.purple.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.purple.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.purple.night .more-button{color:#fff}.rtl-container.purple.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.purple.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.purple.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.purple.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.purple.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.purple.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.purple.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.purple.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.purple.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.purple.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.purple.night .tab-badge .mat-badge-content.mat-badge-active{background:#5e4ea5}.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.purple.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.purple.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.purple.night .rtl-select-overlay{min-width:7rem}}.rtl-container.purple.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.purple.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.purple.night .table-actions-button{min-width:8rem}.rtl-container.purple.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.purple.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#afa7d2!important}.rtl-container.purple.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#56479d!important}.rtl-container.purple.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.purple.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.purple.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.purple.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.purple.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.purple.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.purple.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.purple.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.purple.night .color-warn{color:#b00020}.rtl-container.purple.night .fill-warn{fill:#b00020}.rtl-container.purple.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.purple.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.purple.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.purple.night .alert.alert-info a{color:#004085}.rtl-container.purple.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.purple.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.purple.night .alert.alert-warn a{color:#856404}.rtl-container.purple.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.purple.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.purple.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.purple.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.purple.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.purple.night .failed-status{color:#b00020}.rtl-container.purple.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.purple.night .svg-fill-primary{fill:#5e4ea5}.rtl-container.purple.night .svg-fill-primary-lighter{fill:#8e83c0}.rtl-container.purple.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.purple.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.purple.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.purple.night .dashboard-card-content .underline,.rtl-container.purple.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#5e4ea5}.rtl-container.purple.night .mat-mdc-form-field-hint .currency-icon{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-form-field-hint .currency-icon path{fill:#5e4ea5}.rtl-container.purple.night .fa-icon-primary{color:#5e4ea5}.rtl-container.purple.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night ngx-charts-bar-vertical text,.rtl-container.purple.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.purple.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.purple.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.purple.night .mat-paginator-container{padding:0}.rtl-container.purple.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.purple.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.purple.night .invoice-animation-div .particles-circle{position:absolute;background-color:#5e4ea5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #5e4ea5;background-color:transparent}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.purple.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.purple.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.purple.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.purple.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.blue.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-filled-caret-color: #1976d2;--mat-form-field-filled-focus-active-indicator-color: #1976d2;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-outlined-caret-color: #1976d2;--mat-form-field-outlined-focus-outline-color: #1976d2;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #1976d2;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #1976d2;--mat-slide-toggle-selected-handle-color: #1976d2;--mat-slide-toggle-selected-hover-state-layer-color: #1976d2;--mat-slide-toggle-selected-pressed-state-layer-color: #1976d2;--mat-slide-toggle-selected-focus-handle-color: #1976d2;--mat-slide-toggle-selected-hover-handle-color: #1976d2;--mat-slide-toggle-selected-pressed-handle-color: #1976d2;--mat-slide-toggle-selected-focus-track-color: #64b5f6;--mat-slide-toggle-selected-hover-track-color: #64b5f6;--mat-slide-toggle-selected-pressed-track-color: #64b5f6;--mat-slide-toggle-selected-track-color: #64b5f6;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #1976d2;--mat-slider-focus-handle-color: #1976d2;--mat-slider-handle-color: #1976d2;--mat-slider-hover-handle-color: #1976d2;--mat-slider-focus-state-layer-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #1976d2 4%, transparent);--mat-slider-inactive-track-color: #1976d2;--mat-slider-ripple-color: #1976d2;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #1976d2;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #64b5f6;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #1976d2;--mat-badge-background-color: #1976d2;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #1976d2 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #1976d2 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #1976d2 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.blue.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.blue.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.blue.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #1976d2;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #1976d2;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.blue.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.blue.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.blue.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #1976d2;--mat-progress-bar-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.blue.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #1976d2;--mat-chip-elevated-disabled-container-color: #1976d2;--mat-chip-elevated-selected-container-color: #1976d2;--mat-chip-flat-disabled-selected-container-color: #1976d2;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.blue.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #1976d2;--mat-radio-selected-hover-icon-color: #1976d2;--mat-radio-selected-icon-color: #1976d2;--mat-radio-selected-pressed-icon-color: #1976d2;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.blue.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.blue.day .mdc-list-item__start,.rtl-container.blue.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #1976d2;--mat-radio-selected-hover-icon-color: #1976d2;--mat-radio-selected-icon-color: #1976d2;--mat-radio-selected-pressed-icon-color: #1976d2;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-accent .mdc-list-item__start,.rtl-container.blue.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-warn .mdc-list-item__start,.rtl-container.blue.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #1976d2;--mat-checkbox-selected-hover-icon-color: #1976d2;--mat-checkbox-selected-icon-color: #1976d2;--mat-checkbox-selected-pressed-icon-color: #1976d2;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #1976d2;--mat-checkbox-selected-hover-state-layer-color: #1976d2;--mat-checkbox-selected-pressed-state-layer-color: #1976d2;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#1976d2}.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.blue.day .mat-mdc-tab-group,.rtl-container.blue.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #1976d2;--mat-tab-active-ripple-color: #1976d2;--mat-tab-inactive-ripple-color: #1976d2;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #1976d2;--mat-tab-active-hover-label-text-color: #1976d2;--mat-tab-active-focus-indicator-color: #1976d2;--mat-tab-active-hover-indicator-color: #1976d2;--mat-tab-active-indicator-color: #1976d2}.rtl-container.blue.day .mat-mdc-tab-group.mat-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.blue.day .mat-mdc-tab-group.mat-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #1976d2;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.blue.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #1976d2;--mat-checkbox-selected-hover-icon-color: #1976d2;--mat-checkbox-selected-icon-color: #1976d2;--mat-checkbox-selected-pressed-icon-color: #1976d2;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #1976d2;--mat-checkbox-selected-hover-state-layer-color: #1976d2;--mat-checkbox-selected-pressed-state-layer-color: #1976d2;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-button.mat-primary,.rtl-container.blue.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.blue.day .mat-mdc-raised-button.mat-primary,.rtl-container.blue.day .mat-mdc-outlined-button.mat-primary,.rtl-container.blue.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #1976d2;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #1976d2;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-button-outlined-state-layer-color: #1976d2;--mat-button-protected-container-color: #1976d2;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #1976d2;--mat-button-text-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-button-text-state-layer-color: #1976d2;--mat-button-tonal-container-color: #1976d2;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-mdc-button.mat-accent,.rtl-container.blue.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.blue.day .mat-mdc-raised-button.mat-accent,.rtl-container.blue.day .mat-mdc-outlined-button.mat-accent,.rtl-container.blue.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.blue.day .mat-mdc-button.mat-warn,.rtl-container.blue.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.blue.day .mat-mdc-raised-button.mat-warn,.rtl-container.blue.day .mat-mdc-outlined-button.mat-warn,.rtl-container.blue.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.blue.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: color-mix(in srgb, #1976d2 12%, transparent)}.rtl-container.blue.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.blue.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.blue.day .mat-mdc-fab.mat-primary,.rtl-container.blue.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #1976d2;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-mdc-fab.mat-accent,.rtl-container.blue.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.blue.day .mat-mdc-fab.mat-warn,.rtl-container.blue.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.blue.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.blue.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.blue.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.blue.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.blue.day .mat-datepicker-content.mat-accent,.rtl-container.blue.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-datepicker-content.mat-warn,.rtl-container.blue.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-icon.mat-primary{--mat-icon-color: #1976d2}.rtl-container.blue.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.blue.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.blue.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #1976d2;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.blue.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.blue.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.blue.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.blue.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.blue.day .bg-primary{background-color:#2196f3;color:#fff}.rtl-container.blue.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.blue.day .page-title,.rtl-container.blue.day .mat-mdc-select-value,.rtl-container.blue.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.blue.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.blue.day .help-expansion .mat-expansion-panel-header,.rtl-container.blue.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.blue.day .help-expansion .mat-expansion-indicator:after,.rtl-container.blue.day .help-expansion .mat-expansion-panel-content,.rtl-container.blue.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#2196f3}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#2196f3}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.blue.day .mat-tree-node:hover,.rtl-container.blue.day .mat-nested-tree-node-parent:hover,.rtl-container.blue.day .mat-select-panel .mat-option:hover,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#2196f3;cursor:pointer}.rtl-container.blue.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.day .mat-tree-node:hover .mat-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#2196f3}.rtl-container.blue.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#2196f3}.rtl-container.blue.day .spinner-container h2{color:#fff}.rtl-container.blue.day .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.blue.day .mat-form-field-suffix{color:#0000008a}.rtl-container.blue.day .mat-stroked-button.mat-primary{border-color:#2196f3}.rtl-container.blue.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.blue.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.blue.day .selected-color{border-color:#90caf9}.rtl-container.blue.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.blue.day table.mat-mdc-table thead tr th,.rtl-container.blue.day .page-title-container,.rtl-container.blue.day .page-sub-title-container{color:#0000008a}.rtl-container.blue.day .page-title-container .page-title-img,.rtl-container.blue.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.blue.day .page-title-container .mat-input-element,.rtl-container.blue.day .page-title-container .mat-radio-label-content,.rtl-container.blue.day .page-title-container .theme-name,.rtl-container.blue.day .page-sub-title-container .mat-input-element,.rtl-container.blue.day .page-sub-title-container .mat-radio-label-content,.rtl-container.blue.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.blue.day .cc-data-block .cc-data-title{color:#2196f3}.rtl-container.blue.day .active-link,.rtl-container.blue.day .active-link .fa-icon-small{color:#2196f3;font-weight:500;cursor:pointer;fill:#2196f3}.rtl-container.blue.day .mat-tree-node:hover,.rtl-container.blue.day .mat-nested-tree-node-parent:hover,.rtl-container.blue.day .mat-select-panel .mat-option:hover,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#2196f3;cursor:pointer;background:#0000000a}.rtl-container.blue.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.day .mat-tree-node:hover .mat-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#2196f3}.rtl-container.blue.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#2196f3}.rtl-container.blue.day .mat-tree-node .sidenav-img,.rtl-container.blue.day .mat-nested-tree-node .sidenav-img,.rtl-container.blue.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.blue.day .page-title-container .page-title-img,.rtl-container.blue.day svg.top-icon-small{fill:#000000de}.rtl-container.blue.day .mat-progress-bar-fill:after{background-color:#0d47a1}.rtl-container.blue.day .modal-qr-code-container{background:#0000001f}.rtl-container.blue.day .mdc-tab__text-label,.rtl-container.blue.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.blue.day .mat-mdc-card,.rtl-container.blue.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.blue.day .dashboard-info-title{color:#2196f3}.rtl-container.blue.day .dashboard-capacity-header,.rtl-container.blue.day .dashboard-info-value{color:#0000008a}.rtl-container.blue.day .color-primary{color:#2196f3!important}.rtl-container.blue.day .dot-primary{background-color:#2196f3!important}.rtl-container.blue.day .dot-primary-lighter{background-color:#90caf9!important}.rtl-container.blue.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .mat-mdc-form-field-hint{color:#2196f3}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.blue.day .mat-mdc-form-field-hint fa-icon svg path{fill:#2196f3}.rtl-container.blue.day .currency-icon path,.rtl-container.blue.day .currency-icon polygon{fill:#0000008a}.rtl-container.blue.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.blue.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.blue.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-primary-lighter{stroke:#90caf9}.rtl-container.blue.day svg .stroke-color-primary{stroke:#2196f3}.rtl-container.blue.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.blue.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-1{fill:#fff}.rtl-container.blue.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.blue.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-6{fill:#fff}.rtl-container.blue.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-9{fill:#fff}.rtl-container.blue.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.blue.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.blue.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-16{fill:#404040}.rtl-container.blue.day svg .fill-color-17{fill:#404040}.rtl-container.blue.day svg .fill-color-18{fill:#000}.rtl-container.blue.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-24{fill:#000}.rtl-container.blue.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.blue.day svg .fill-color-27{fill:#000}.rtl-container.blue.day svg .fill-color-28{fill:#313131}.rtl-container.blue.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-30{fill:#fff}.rtl-container.blue.day svg .fill-color-31{fill:#2196f3}.rtl-container.blue.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.day svg .fill-color-primary{fill:#2196f3}.rtl-container.blue.day svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.day svg .fill-color-primary-darker{fill:#2196f3}.rtl-container.blue.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.blue.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.blue.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#2196f3}.rtl-container.blue.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.blue.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.blue.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.blue.day .material-icons.mat-icon-no-color,.rtl-container.blue.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.blue.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.blue.day .material-icons.info-icon.info-icon-primary{color:#2196f3}.rtl-container.blue.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.blue.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.blue.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.blue.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.blue.day .material-icons.info-icon.arrow-downward,.rtl-container.blue.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.blue.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#2196f3}.rtl-container.blue.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#0d47a1}.rtl-container.blue.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#90caf9}.rtl-container.blue.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.blue.day .mat-progress-bar-buffer{background-color:#bbdefb}.rtl-container.blue.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.blue.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.blue.day .foreground.mat-progress-spinner circle,.rtl-container.blue.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.blue.day .mat-toolbar-row,.rtl-container.blue.day .mat-toolbar-single-row{height:4rem}.rtl-container.blue.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day a{color:#2196f3}.rtl-container.blue.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.blue.day .h-active-link{border-bottom:2px solid white}.rtl-container.blue.day .mat-icon-36{color:#0000008a}.rtl-container.blue.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.blue.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.blue.day .genseed-message{width:10%;color:#2196f3}.rtl-container.blue.day .border-primary{border:1px solid #2196f3}.rtl-container.blue.day .border-accent{border:1px solid #9e9e9e}.rtl-container.blue.day .border-warn{border:1px solid #b00020}.rtl-container.blue.day .material-icons.primary{color:#2196f3}.rtl-container.blue.day .material-icons.accent{color:#9e9e9e}.rtl-container.blue.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.blue.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.blue.day .row-disabled{background-color:gray}.rtl-container.blue.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.blue.day .mat-mdc-card-content,.rtl-container.blue.day .mat-mdc-card-subtitle,.rtl-container.blue.day .mat-mdc-card-title{color:#0000008a}.rtl-container.blue.day .mat-menu-panel{min-width:4rem}.rtl-container.blue.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.blue.day .horizontal-button:hover{background:#90caf9;color:#9e9e9e}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#2196f3}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.blue.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.blue.day .mat-button,.rtl-container.blue.day .mat-icon-button,.rtl-container.blue.day .mat-stroked-button,.rtl-container.blue.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.blue.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.blue.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.blue.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.blue.day .cc-data-block .cc-data-value{color:#000}.rtl-container.blue.day .mat-cell,.rtl-container.blue.day .mat-header-cell,.rtl-container.blue.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.blue.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.blue.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#2196f3}.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#2196f3;opacity:1}.rtl-container.blue.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.blue.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.blue.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.blue.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.blue.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.blue.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.blue.day .more-button{color:#000}.rtl-container.blue.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.blue.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.blue.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.blue.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.blue.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.blue.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.blue.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.blue.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.blue.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.blue.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.blue.day .tab-badge .mat-badge-content.mat-badge-active{background:#2196f3}.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.blue.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.blue.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.blue.day .rtl-select-overlay{min-width:7rem}}.rtl-container.blue.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.blue.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.blue.day .table-actions-button{min-width:8rem}.rtl-container.blue.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.blue.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#90caf9!important}.rtl-container.blue.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#1e88e5!important}.rtl-container.blue.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.blue.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.blue.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.blue.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.blue.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.blue.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.blue.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.blue.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.blue.day .color-warn{color:#b00020}.rtl-container.blue.day .fill-warn{fill:#b00020}.rtl-container.blue.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.blue.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.blue.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.blue.day .alert.alert-info a{color:#004085}.rtl-container.blue.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.blue.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.blue.day .alert.alert-warn a{color:#856404}.rtl-container.blue.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.blue.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.blue.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.blue.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.blue.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.blue.day .failed-status{color:#b00020}.rtl-container.blue.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.blue.day .svg-fill-primary{fill:#2196f3}.rtl-container.blue.day .svg-fill-primary-lighter{fill:#90caf9}.rtl-container.blue.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.blue.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.blue.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.blue.day .dashboard-card-content .underline,.rtl-container.blue.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#2196f3}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#2196f3}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#2196f3}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon{color:#2196f3}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon path{fill:#2196f3}.rtl-container.blue.day .fa-icon-primary{color:#2196f3}.rtl-container.blue.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day ngx-charts-bar-vertical text,.rtl-container.blue.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.blue.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.blue.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.blue.day .mat-paginator-container{padding:0}.rtl-container.blue.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.blue.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.blue.day .invoice-animation-div .particles-circle{position:absolute;background-color:#2196f3;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #2196f3;background-color:transparent}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.blue.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.blue.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.blue.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.blue.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.blue.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-filled-caret-color: #1976d2;--mat-form-field-filled-focus-active-indicator-color: #1976d2;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-outlined-caret-color: #1976d2;--mat-form-field-outlined-focus-outline-color: #1976d2;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #1976d2 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #1976d2;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #1976d2;--mat-slide-toggle-selected-handle-color: #1976d2;--mat-slide-toggle-selected-hover-state-layer-color: #1976d2;--mat-slide-toggle-selected-pressed-state-layer-color: #1976d2;--mat-slide-toggle-selected-focus-handle-color: #1976d2;--mat-slide-toggle-selected-hover-handle-color: #1976d2;--mat-slide-toggle-selected-pressed-handle-color: #1976d2;--mat-slide-toggle-selected-focus-track-color: #1e88e5;--mat-slide-toggle-selected-hover-track-color: #1e88e5;--mat-slide-toggle-selected-pressed-track-color: #1e88e5;--mat-slide-toggle-selected-track-color: #1e88e5;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #1976d2;--mat-slider-focus-handle-color: #1976d2;--mat-slider-handle-color: #1976d2;--mat-slider-hover-handle-color: #1976d2;--mat-slider-focus-state-layer-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #1976d2 4%, transparent);--mat-slider-inactive-track-color: #1976d2;--mat-slider-ripple-color: #1976d2;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #1976d2;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #1e88e5;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #1976d2;--mat-badge-background-color: #1976d2;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #1976d2 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #1976d2 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #1976d2 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.blue.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.blue.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.blue.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #1976d2;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #1976d2;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.blue.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.blue.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.blue.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #1976d2;--mat-progress-bar-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.blue.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #1976d2;--mat-chip-elevated-disabled-container-color: #1976d2;--mat-chip-elevated-selected-container-color: #1976d2;--mat-chip-flat-disabled-selected-container-color: #1976d2;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.blue.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #1976d2;--mat-radio-selected-hover-icon-color: #1976d2;--mat-radio-selected-icon-color: #1976d2;--mat-radio-selected-pressed-icon-color: #1976d2;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.blue.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.blue.night .mdc-list-item__start,.rtl-container.blue.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #1976d2;--mat-radio-selected-hover-icon-color: #1976d2;--mat-radio-selected-icon-color: #1976d2;--mat-radio-selected-pressed-icon-color: #1976d2;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-accent .mdc-list-item__start,.rtl-container.blue.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-warn .mdc-list-item__start,.rtl-container.blue.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.blue.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #1976d2;--mat-checkbox-selected-hover-icon-color: #1976d2;--mat-checkbox-selected-icon-color: #1976d2;--mat-checkbox-selected-pressed-icon-color: #1976d2;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #1976d2;--mat-checkbox-selected-hover-state-layer-color: #1976d2;--mat-checkbox-selected-pressed-state-layer-color: #1976d2;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#1976d2}.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.blue.night .mat-mdc-tab-group,.rtl-container.blue.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #1976d2;--mat-tab-active-ripple-color: #1976d2;--mat-tab-inactive-ripple-color: #1976d2;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #1976d2;--mat-tab-active-hover-label-text-color: #1976d2;--mat-tab-active-focus-indicator-color: #1976d2;--mat-tab-active-hover-indicator-color: #1976d2;--mat-tab-active-indicator-color: #1976d2}.rtl-container.blue.night .mat-mdc-tab-group.mat-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.blue.night .mat-mdc-tab-group.mat-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #1976d2;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #1976d2;--mat-checkbox-selected-hover-icon-color: #1976d2;--mat-checkbox-selected-icon-color: #1976d2;--mat-checkbox-selected-pressed-icon-color: #1976d2;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #1976d2;--mat-checkbox-selected-hover-state-layer-color: #1976d2;--mat-checkbox-selected-pressed-state-layer-color: #1976d2;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-button.mat-primary,.rtl-container.blue.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.blue.night .mat-mdc-raised-button.mat-primary,.rtl-container.blue.night .mat-mdc-outlined-button.mat-primary,.rtl-container.blue.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #1976d2;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #1976d2;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-button-outlined-state-layer-color: #1976d2;--mat-button-protected-container-color: #1976d2;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #1976d2;--mat-button-text-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-button-text-state-layer-color: #1976d2;--mat-button-tonal-container-color: #1976d2;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-mdc-button.mat-accent,.rtl-container.blue.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.blue.night .mat-mdc-raised-button.mat-accent,.rtl-container.blue.night .mat-mdc-outlined-button.mat-accent,.rtl-container.blue.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.blue.night .mat-mdc-button.mat-warn,.rtl-container.blue.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.blue.night .mat-mdc-raised-button.mat-warn,.rtl-container.blue.night .mat-mdc-outlined-button.mat-warn,.rtl-container.blue.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.blue.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: color-mix(in srgb, #1976d2 12%, transparent)}.rtl-container.blue.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.blue.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.blue.night .mat-mdc-fab.mat-primary,.rtl-container.blue.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #1976d2;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #1976d2 12%, transparent);--mat-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-mdc-fab.mat-accent,.rtl-container.blue.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.blue.night .mat-mdc-fab.mat-warn,.rtl-container.blue.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.blue.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.blue.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.blue.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.blue.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.blue.night .mat-datepicker-content.mat-accent,.rtl-container.blue.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.blue.night .mat-datepicker-content.mat-warn,.rtl-container.blue.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.blue.night .mat-icon.mat-primary{--mat-icon-color: #1976d2}.rtl-container.blue.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.blue.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.blue.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.blue.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #1976d2;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.blue.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.blue.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.blue.night .mat-primary{color:#448aff!important}.rtl-container.blue.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.blue.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.blue.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.blue.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.blue.night .bg-primary{background-color:#2196f3;color:#fff}.rtl-container.blue.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#448aff}.rtl-container.blue.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#448aff}.rtl-container.blue.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#448aff}.rtl-container.blue.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.blue.night .currency-icon path,.rtl-container.blue.night .currency-icon polygon{fill:#fff}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.blue.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#448aff}.rtl-container.blue.night .cc-data-block .cc-data-title{color:#448aff}.rtl-container.blue.night .mat-stroked-button.mat-primary{border-color:#448aff;color:#448aff}.rtl-container.blue.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.blue.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.blue.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.blue.night .active-link,.rtl-container.blue.night .active-link .fa-icon-small,.rtl-container.blue.night .mat-select-panel .mat-option.mat-active,.rtl-container.blue.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#448aff;font-weight:500;cursor:pointer;fill:#448aff}.rtl-container.blue.night .help-expansion .mat-expansion-panel-header,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.blue.night .help-expansion .mat-expansion-indicator:after,.rtl-container.blue.night .help-expansion .mat-expansion-panel-content,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.blue.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.blue.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.blue.night .mat-expansion-panel,.rtl-container.blue.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.blue.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.blue.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.blue.night .mdc-data-table__header-cell,.rtl-container.blue.night .mat-mdc-paginator,.rtl-container.blue.night .mat-mdc-form-field-focus-overlay,.rtl-container.blue.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.blue.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.blue.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#448aff}.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.blue.night .svg-donation{opacity:1!important}.rtl-container.blue.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#448aff!important}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#448aff!important}.rtl-container.blue.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#448aff}.rtl-container.blue.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#2196f3}.rtl-container.blue.night a{color:#448aff!important;cursor:pointer}.rtl-container.blue.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.blue.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.blue.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.blue.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.blue.night .mat-mdc-select-placeholder,.rtl-container.blue.night .mat-mdc-select-value,.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#448aff}.rtl-container.blue.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.blue.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#448aff}.rtl-container.blue.night .mat-tree-node:hover,.rtl-container.blue.night .mat-nested-tree-node-parent:hover,.rtl-container.blue.night .mat-select-panel .mat-option:hover,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#448aff;cursor:pointer;background:#ffffff0f}.rtl-container.blue.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.night .mat-tree-node:hover .mat-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#448aff}.rtl-container.blue.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.blue.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#448aff}.rtl-container.blue.night .mat-tree-node:hover .boltz-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#448aff}.rtl-container.blue.night .mat-tree-node .sidenav-img,.rtl-container.blue.night .mat-nested-tree-node .sidenav-img,.rtl-container.blue.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.blue.night .page-title-container .page-title-img,.rtl-container.blue.night svg.top-icon-small{fill:#fff}.rtl-container.blue.night .selected-color{border-color:#90caf9}.rtl-container.blue.night .mat-progress-bar-fill:after{background-color:#1e88e5}.rtl-container.blue.night .chart-legend .legend-label:hover,.rtl-container.blue.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.blue.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.blue.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#448aff}.rtl-container.blue.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.blue.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#448aff}.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#448aff}.rtl-container.blue.night .mat-select-panel{background-color:#121212}.rtl-container.blue.night .mat-tree{background:#121212}.rtl-container.blue.night h4{color:#448aff}.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.blue.night .dashboard-info-title{color:#448aff}.rtl-container.blue.night .dashboard-info-value,.rtl-container.blue.night .dashboard-capacity-header{color:#fff}.rtl-container.blue.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.blue.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.blue.night .color-primary{color:#448aff!important}.rtl-container.blue.night .dot-primary{background-color:#448aff!important}.rtl-container.blue.night .dot-primary-lighter{background-color:#2196f3!important}.rtl-container.blue.night .mat-stepper-vertical{background-color:#121212}.rtl-container.blue.night .spinner-container h2{color:#448aff}.rtl-container.blue.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.blue.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.blue.night svg .boltz-icon-fill{fill:#fff}.rtl-container.blue.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-primary-lighter{stroke:#90caf9}.rtl-container.blue.night svg .stroke-color-primary{stroke:#2196f3}.rtl-container.blue.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.blue.night svg .fill-color-0{fill:#171717}.rtl-container.blue.night svg .fill-color-1{fill:#232323}.rtl-container.blue.night svg .fill-color-2{fill:#222}.rtl-container.blue.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.blue.night svg .fill-color-4{fill:#383838}.rtl-container.blue.night svg .fill-color-5{fill:#555}.rtl-container.blue.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.blue.night svg .fill-color-7{fill:#202020}.rtl-container.blue.night svg .fill-color-8{fill:#242424}.rtl-container.blue.night svg .fill-color-9{fill:#262626}.rtl-container.blue.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.blue.night svg .fill-color-11{fill:#171717}.rtl-container.blue.night svg .fill-color-12{fill:#ccc}.rtl-container.blue.night svg .fill-color-13{fill:#adadad}.rtl-container.blue.night svg .fill-color-14{fill:#ababab}.rtl-container.blue.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.blue.night svg .fill-color-16{fill:#707070}.rtl-container.blue.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.blue.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.blue.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.blue.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.blue.night svg .fill-color-21{fill:#cacaca}.rtl-container.blue.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.blue.night svg .fill-color-23{fill:#777}.rtl-container.blue.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.blue.night svg .fill-color-25{fill:#252525}.rtl-container.blue.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.blue.night svg .fill-color-27{fill:#000}.rtl-container.blue.night svg .fill-color-28{fill:#313131}.rtl-container.blue.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.blue.night svg .fill-color-30{fill:#fff}.rtl-container.blue.night svg .fill-color-31{fill:#2196f3}.rtl-container.blue.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.night svg .fill-color-primary{fill:#2196f3}.rtl-container.blue.night svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.night svg .fill-color-primary-darker{fill:#448aff}.rtl-container.blue.night .mat-select-value,.rtl-container.blue.night .mat-select-arrow{color:#fff}.rtl-container.blue.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.blue.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.blue.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.blue.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.blue.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.blue.night .mat-button.mat-primary,.rtl-container.blue.night .mat-icon-button.mat-primary,.rtl-container.blue.night .mat-stroked-button.mat-primary{color:#448aff}.rtl-container.blue.night tr.alert.alert-warn .mat-cell,.rtl-container.blue.night tr.alert.alert-warn .mat-header-cell,.rtl-container.blue.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.blue.night .material-icons.info-icon{font-size:100%;color:#448aff}.rtl-container.blue.night .material-icons.info-icon.info-icon-primary{color:#448aff}.rtl-container.blue.night .material-icons.info-icon.info-icon-text,.rtl-container.blue.night .material-icons.info-icon.arrow-downward,.rtl-container.blue.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.blue.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#448aff}.rtl-container.blue.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#1565c0}.rtl-container.blue.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#448aff}.rtl-container.blue.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.blue.night .mat-progress-bar-buffer{background-color:#bbdefb}.rtl-container.blue.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.blue.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.blue.night .foreground.mat-progress-spinner circle,.rtl-container.blue.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.blue.night .mat-toolbar-row,.rtl-container.blue.night .mat-toolbar-single-row{height:4rem}.rtl-container.blue.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.blue.night a{color:#2196f3}.rtl-container.blue.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.blue.night .h-active-link{border-bottom:2px solid white}.rtl-container.blue.night .mat-icon-36{color:#ffffffb3}.rtl-container.blue.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.blue.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.blue.night .genseed-message{width:10%;color:#2196f3}.rtl-container.blue.night .border-primary{border:1px solid #2196f3}.rtl-container.blue.night .border-accent{border:1px solid #aaaaaa}.rtl-container.blue.night .border-warn{border:1px solid #b00020}.rtl-container.blue.night .material-icons.primary{color:#2196f3}.rtl-container.blue.night .material-icons.accent{color:#aaa}.rtl-container.blue.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.blue.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.blue.night .row-disabled{background-color:gray}.rtl-container.blue.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.blue.night .mat-mdc-card-content,.rtl-container.blue.night .mat-mdc-card-subtitle,.rtl-container.blue.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.blue.night .mat-menu-panel{min-width:4rem}.rtl-container.blue.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.blue.night .horizontal-button:hover{background:#90caf9;color:#aaa}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#2196f3}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.blue.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.blue.night .mat-button,.rtl-container.blue.night .mat-icon-button,.rtl-container.blue.night .mat-stroked-button,.rtl-container.blue.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.blue.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.blue.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.blue.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.blue.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.blue.night .mat-cell,.rtl-container.blue.night .mat-header-cell,.rtl-container.blue.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.blue.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.blue.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#2196f3}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#2196f3;opacity:1}.rtl-container.blue.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.blue.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.blue.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.blue.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.blue.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.blue.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.blue.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.blue.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.blue.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.blue.night .more-button{color:#fff}.rtl-container.blue.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.blue.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.blue.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.blue.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.blue.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.blue.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.blue.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.blue.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.blue.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.blue.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.blue.night .tab-badge .mat-badge-content.mat-badge-active{background:#2196f3}.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.blue.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.blue.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.blue.night .rtl-select-overlay{min-width:7rem}}.rtl-container.blue.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.blue.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.blue.night .table-actions-button{min-width:8rem}.rtl-container.blue.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.blue.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#90caf9!important}.rtl-container.blue.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#1e88e5!important}.rtl-container.blue.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.blue.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.blue.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.blue.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.blue.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.blue.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.blue.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.blue.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.blue.night .color-warn{color:#b00020}.rtl-container.blue.night .fill-warn{fill:#b00020}.rtl-container.blue.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.blue.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.blue.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.blue.night .alert.alert-info a{color:#004085}.rtl-container.blue.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.blue.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.blue.night .alert.alert-warn a{color:#856404}.rtl-container.blue.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.blue.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.blue.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.blue.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.blue.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.blue.night .failed-status{color:#b00020}.rtl-container.blue.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.blue.night .svg-fill-primary{fill:#2196f3}.rtl-container.blue.night .svg-fill-primary-lighter{fill:#90caf9}.rtl-container.blue.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.blue.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.blue.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.blue.night .dashboard-card-content .underline,.rtl-container.blue.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#2196f3}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#2196f3}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#2196f3}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon{color:#2196f3}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon path{fill:#2196f3}.rtl-container.blue.night .fa-icon-primary{color:#2196f3}.rtl-container.blue.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night ngx-charts-bar-vertical text,.rtl-container.blue.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.blue.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.blue.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.blue.night .mat-paginator-container{padding:0}.rtl-container.blue.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.blue.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.blue.night .invoice-animation-div .particles-circle{position:absolute;background-color:#2196f3;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #2196f3;background-color:transparent}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.blue.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.blue.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.blue.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.blue.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.indigo.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-filled-caret-color: #3f51b5;--mat-form-field-filled-focus-active-indicator-color: #3f51b5;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-outlined-caret-color: #3f51b5;--mat-form-field-outlined-focus-outline-color: #3f51b5;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #3f51b5;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #3f51b5;--mat-slide-toggle-selected-handle-color: #3f51b5;--mat-slide-toggle-selected-hover-state-layer-color: #3f51b5;--mat-slide-toggle-selected-pressed-state-layer-color: #3f51b5;--mat-slide-toggle-selected-focus-handle-color: #3f51b5;--mat-slide-toggle-selected-hover-handle-color: #3f51b5;--mat-slide-toggle-selected-pressed-handle-color: #3f51b5;--mat-slide-toggle-selected-focus-track-color: #7986cb;--mat-slide-toggle-selected-hover-track-color: #7986cb;--mat-slide-toggle-selected-pressed-track-color: #7986cb;--mat-slide-toggle-selected-track-color: #7986cb;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #3f51b5;--mat-slider-focus-handle-color: #3f51b5;--mat-slider-handle-color: #3f51b5;--mat-slider-hover-handle-color: #3f51b5;--mat-slider-focus-state-layer-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #3f51b5 4%, transparent);--mat-slider-inactive-track-color: #3f51b5;--mat-slider-ripple-color: #3f51b5;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #3f51b5;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #7986cb;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #3f51b5;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #3f51b5 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #3f51b5 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #3f51b5 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.indigo.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.indigo.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.indigo.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #3f51b5;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #3f51b5;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.indigo.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.indigo.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.indigo.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #3f51b5;--mat-progress-bar-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.indigo.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #3f51b5;--mat-chip-elevated-disabled-container-color: #3f51b5;--mat-chip-elevated-selected-container-color: #3f51b5;--mat-chip-flat-disabled-selected-container-color: #3f51b5;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.indigo.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #3f51b5;--mat-radio-selected-hover-icon-color: #3f51b5;--mat-radio-selected-icon-color: #3f51b5;--mat-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.indigo.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.indigo.day .mdc-list-item__start,.rtl-container.indigo.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #3f51b5;--mat-radio-selected-hover-icon-color: #3f51b5;--mat-radio-selected-icon-color: #3f51b5;--mat-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-accent .mdc-list-item__start,.rtl-container.indigo.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-warn .mdc-list-item__start,.rtl-container.indigo.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #3f51b5;--mat-checkbox-selected-hover-icon-color: #3f51b5;--mat-checkbox-selected-icon-color: #3f51b5;--mat-checkbox-selected-pressed-icon-color: #3f51b5;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #3f51b5;--mat-checkbox-selected-hover-state-layer-color: #3f51b5;--mat-checkbox-selected-pressed-state-layer-color: #3f51b5;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.indigo.day .mat-mdc-tab-group,.rtl-container.indigo.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #3f51b5;--mat-tab-active-ripple-color: #3f51b5;--mat-tab-inactive-ripple-color: #3f51b5;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #3f51b5;--mat-tab-active-hover-label-text-color: #3f51b5;--mat-tab-active-focus-indicator-color: #3f51b5;--mat-tab-active-hover-indicator-color: #3f51b5;--mat-tab-active-indicator-color: #3f51b5}.rtl-container.indigo.day .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.indigo.day .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #3f51b5;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.indigo.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #3f51b5;--mat-checkbox-selected-hover-icon-color: #3f51b5;--mat-checkbox-selected-icon-color: #3f51b5;--mat-checkbox-selected-pressed-icon-color: #3f51b5;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #3f51b5;--mat-checkbox-selected-hover-state-layer-color: #3f51b5;--mat-checkbox-selected-pressed-state-layer-color: #3f51b5;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-button.mat-primary,.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.indigo.day .mat-mdc-raised-button.mat-primary,.rtl-container.indigo.day .mat-mdc-outlined-button.mat-primary,.rtl-container.indigo.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #3f51b5;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #3f51b5;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-button-outlined-state-layer-color: #3f51b5;--mat-button-protected-container-color: #3f51b5;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #3f51b5;--mat-button-text-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-button-text-state-layer-color: #3f51b5;--mat-button-tonal-container-color: #3f51b5;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-mdc-button.mat-accent,.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.indigo.day .mat-mdc-raised-button.mat-accent,.rtl-container.indigo.day .mat-mdc-outlined-button.mat-accent,.rtl-container.indigo.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.indigo.day .mat-mdc-button.mat-warn,.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.indigo.day .mat-mdc-raised-button.mat-warn,.rtl-container.indigo.day .mat-mdc-outlined-button.mat-warn,.rtl-container.indigo.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.indigo.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.indigo.day .mat-mdc-fab.mat-primary,.rtl-container.indigo.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #3f51b5;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-mdc-fab.mat-accent,.rtl-container.indigo.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.indigo.day .mat-mdc-fab.mat-warn,.rtl-container.indigo.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.indigo.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.indigo.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.indigo.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.indigo.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.indigo.day .mat-datepicker-content.mat-accent,.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-datepicker-content.mat-warn,.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-icon.mat-primary{--mat-icon-color: #3f51b5}.rtl-container.indigo.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.indigo.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.indigo.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #3f51b5;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.indigo.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.indigo.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.indigo.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.indigo.day .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.indigo.day .page-title,.rtl-container.indigo.day .mat-mdc-select-value,.rtl-container.indigo.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.indigo.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.indigo.day .help-expansion .mat-expansion-indicator:after,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-content,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#3f51b5}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.indigo.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#3f51b5}.rtl-container.indigo.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.indigo.day .mat-tree-node:hover,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover,.rtl-container.indigo.day .mat-select-panel .mat-option:hover,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#3f51b5;cursor:pointer}.rtl-container.indigo.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.day .mat-tree-node:hover .mat-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#3f51b5}.rtl-container.indigo.day .spinner-container h2{color:#fff}.rtl-container.indigo.day .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.indigo.day .mat-form-field-suffix{color:#0000008a}.rtl-container.indigo.day .mat-stroked-button.mat-primary{border-color:#3f51b5}.rtl-container.indigo.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.indigo.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.indigo.day .selected-color{border-color:#9fa8da}.rtl-container.indigo.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.indigo.day table.mat-mdc-table thead tr th,.rtl-container.indigo.day .page-title-container,.rtl-container.indigo.day .page-sub-title-container{color:#0000008a}.rtl-container.indigo.day .page-title-container .page-title-img,.rtl-container.indigo.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.indigo.day .page-title-container .mat-input-element,.rtl-container.indigo.day .page-title-container .mat-radio-label-content,.rtl-container.indigo.day .page-title-container .theme-name,.rtl-container.indigo.day .page-sub-title-container .mat-input-element,.rtl-container.indigo.day .page-sub-title-container .mat-radio-label-content,.rtl-container.indigo.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.indigo.day .cc-data-block .cc-data-title{color:#3f51b5}.rtl-container.indigo.day .active-link,.rtl-container.indigo.day .active-link .fa-icon-small{color:#3f51b5;font-weight:500;cursor:pointer;fill:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover,.rtl-container.indigo.day .mat-select-panel .mat-option:hover,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#3f51b5;cursor:pointer;background:#0000000a}.rtl-container.indigo.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.day .mat-tree-node:hover .mat-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#3f51b5}.rtl-container.indigo.day .mat-tree-node .sidenav-img,.rtl-container.indigo.day .mat-nested-tree-node .sidenav-img,.rtl-container.indigo.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.indigo.day .page-title-container .page-title-img,.rtl-container.indigo.day svg.top-icon-small{fill:#000000de}.rtl-container.indigo.day .mat-progress-bar-fill:after{background-color:#1a237e}.rtl-container.indigo.day .modal-qr-code-container{background:#0000001f}.rtl-container.indigo.day .mdc-tab__text-label,.rtl-container.indigo.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.indigo.day .mat-mdc-card,.rtl-container.indigo.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.indigo.day .dashboard-info-title{color:#3f51b5}.rtl-container.indigo.day .dashboard-capacity-header,.rtl-container.indigo.day .dashboard-info-value{color:#0000008a}.rtl-container.indigo.day .color-primary{color:#3f51b5!important}.rtl-container.indigo.day .dot-primary{background-color:#3f51b5!important}.rtl-container.indigo.day .dot-primary-lighter{background-color:#9fa8da!important}.rtl-container.indigo.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-mdc-form-field-hint{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.indigo.day .mat-mdc-form-field-hint fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.day .currency-icon path,.rtl-container.indigo.day .currency-icon polygon{fill:#0000008a}.rtl-container.indigo.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.indigo.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.indigo.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-primary-lighter{stroke:#9fa8da}.rtl-container.indigo.day svg .stroke-color-primary{stroke:#3f51b5}.rtl-container.indigo.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.indigo.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-1{fill:#fff}.rtl-container.indigo.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.indigo.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-6{fill:#fff}.rtl-container.indigo.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-9{fill:#fff}.rtl-container.indigo.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.indigo.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.indigo.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-16{fill:#404040}.rtl-container.indigo.day svg .fill-color-17{fill:#404040}.rtl-container.indigo.day svg .fill-color-18{fill:#000}.rtl-container.indigo.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-24{fill:#000}.rtl-container.indigo.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.indigo.day svg .fill-color-27{fill:#000}.rtl-container.indigo.day svg .fill-color-28{fill:#313131}.rtl-container.indigo.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-30{fill:#fff}.rtl-container.indigo.day svg .fill-color-31{fill:#3f51b5}.rtl-container.indigo.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.indigo.day svg .fill-color-primary{fill:#3f51b5}.rtl-container.indigo.day svg .fill-color-primary-lighter{fill:#9fa8da}.rtl-container.indigo.day svg .fill-color-primary-darker{fill:#3f51b5}.rtl-container.indigo.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.indigo.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.indigo.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#3f51b5}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.indigo.day .material-icons.mat-icon-no-color,.rtl-container.indigo.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.indigo.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.indigo.day .material-icons.info-icon.info-icon-primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.indigo.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.indigo.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.indigo.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.indigo.day .material-icons.info-icon.arrow-downward,.rtl-container.indigo.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.indigo.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#3f51b5}.rtl-container.indigo.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#1a237e}.rtl-container.indigo.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#9fa8da}.rtl-container.indigo.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.indigo.day .mat-progress-bar-buffer{background-color:#c5cae9}.rtl-container.indigo.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.indigo.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.indigo.day .foreground.mat-progress-spinner circle,.rtl-container.indigo.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.indigo.day .mat-toolbar-row,.rtl-container.indigo.day .mat-toolbar-single-row{height:4rem}.rtl-container.indigo.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day a{color:#3f51b5}.rtl-container.indigo.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.indigo.day .h-active-link{border-bottom:2px solid white}.rtl-container.indigo.day .mat-icon-36{color:#0000008a}.rtl-container.indigo.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.indigo.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.indigo.day .genseed-message{width:10%;color:#3f51b5}.rtl-container.indigo.day .border-primary{border:1px solid #3f51b5}.rtl-container.indigo.day .border-accent{border:1px solid #9e9e9e}.rtl-container.indigo.day .border-warn{border:1px solid #b00020}.rtl-container.indigo.day .material-icons.primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.accent{color:#9e9e9e}.rtl-container.indigo.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.indigo.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.indigo.day .row-disabled{background-color:gray}.rtl-container.indigo.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.indigo.day .mat-mdc-card-content,.rtl-container.indigo.day .mat-mdc-card-subtitle,.rtl-container.indigo.day .mat-mdc-card-title{color:#0000008a}.rtl-container.indigo.day .mat-menu-panel{min-width:4rem}.rtl-container.indigo.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.indigo.day .horizontal-button:hover{background:#9fa8da;color:#9e9e9e}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#3f51b5}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.indigo.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.indigo.day .mat-button,.rtl-container.indigo.day .mat-icon-button,.rtl-container.indigo.day .mat-stroked-button,.rtl-container.indigo.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.indigo.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.indigo.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.indigo.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.indigo.day .cc-data-block .cc-data-value{color:#000}.rtl-container.indigo.day .mat-cell,.rtl-container.indigo.day .mat-header-cell,.rtl-container.indigo.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.indigo.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.indigo.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#3f51b5}.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#3f51b5;opacity:1}.rtl-container.indigo.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.indigo.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.indigo.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.indigo.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.indigo.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.indigo.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.indigo.day .more-button{color:#000}.rtl-container.indigo.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.indigo.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.indigo.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.indigo.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.indigo.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.indigo.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.indigo.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.indigo.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.indigo.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.indigo.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.indigo.day .tab-badge .mat-badge-content.mat-badge-active{background:#3f51b5}.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.indigo.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.indigo.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.indigo.day .rtl-select-overlay{min-width:7rem}}.rtl-container.indigo.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.indigo.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.indigo.day .table-actions-button{min-width:8rem}.rtl-container.indigo.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.indigo.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#9fa8da!important}.rtl-container.indigo.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#3949ab!important}.rtl-container.indigo.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.indigo.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.indigo.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.indigo.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.indigo.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.indigo.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.indigo.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.indigo.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.indigo.day .color-warn{color:#b00020}.rtl-container.indigo.day .fill-warn{fill:#b00020}.rtl-container.indigo.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.indigo.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.indigo.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.indigo.day .alert.alert-info a{color:#004085}.rtl-container.indigo.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.indigo.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.indigo.day .alert.alert-warn a{color:#856404}.rtl-container.indigo.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.indigo.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.indigo.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.indigo.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.indigo.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.indigo.day .failed-status{color:#b00020}.rtl-container.indigo.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.indigo.day .svg-fill-primary{fill:#3f51b5}.rtl-container.indigo.day .svg-fill-primary-lighter{fill:#9fa8da}.rtl-container.indigo.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.indigo.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.indigo.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.indigo.day .dashboard-card-content .underline,.rtl-container.indigo.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon path{fill:#3f51b5}.rtl-container.indigo.day .fa-icon-primary{color:#3f51b5}.rtl-container.indigo.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day ngx-charts-bar-vertical text,.rtl-container.indigo.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.indigo.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.indigo.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.indigo.day .mat-paginator-container{padding:0}.rtl-container.indigo.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.indigo.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.indigo.day .invoice-animation-div .particles-circle{position:absolute;background-color:#3f51b5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #3f51b5;background-color:transparent}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.indigo.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.indigo.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.indigo.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.indigo.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.indigo.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-filled-caret-color: #3f51b5;--mat-form-field-filled-focus-active-indicator-color: #3f51b5;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-outlined-caret-color: #3f51b5;--mat-form-field-outlined-focus-outline-color: #3f51b5;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #3f51b5 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #3f51b5;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #3f51b5;--mat-slide-toggle-selected-handle-color: #3f51b5;--mat-slide-toggle-selected-hover-state-layer-color: #3f51b5;--mat-slide-toggle-selected-pressed-state-layer-color: #3f51b5;--mat-slide-toggle-selected-focus-handle-color: #3f51b5;--mat-slide-toggle-selected-hover-handle-color: #3f51b5;--mat-slide-toggle-selected-pressed-handle-color: #3f51b5;--mat-slide-toggle-selected-focus-track-color: #3949ab;--mat-slide-toggle-selected-hover-track-color: #3949ab;--mat-slide-toggle-selected-pressed-track-color: #3949ab;--mat-slide-toggle-selected-track-color: #3949ab;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #3f51b5;--mat-slider-focus-handle-color: #3f51b5;--mat-slider-handle-color: #3f51b5;--mat-slider-hover-handle-color: #3f51b5;--mat-slider-focus-state-layer-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #3f51b5 4%, transparent);--mat-slider-inactive-track-color: #3f51b5;--mat-slider-ripple-color: #3f51b5;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #3f51b5;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #3949ab;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #3f51b5;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #3f51b5 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #3f51b5 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #3f51b5 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.indigo.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.indigo.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.indigo.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #3f51b5;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #3f51b5;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.indigo.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.indigo.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.indigo.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #3f51b5;--mat-progress-bar-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.indigo.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #3f51b5;--mat-chip-elevated-disabled-container-color: #3f51b5;--mat-chip-elevated-selected-container-color: #3f51b5;--mat-chip-flat-disabled-selected-container-color: #3f51b5;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.indigo.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #3f51b5;--mat-radio-selected-hover-icon-color: #3f51b5;--mat-radio-selected-icon-color: #3f51b5;--mat-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.indigo.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.indigo.night .mdc-list-item__start,.rtl-container.indigo.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #3f51b5;--mat-radio-selected-hover-icon-color: #3f51b5;--mat-radio-selected-icon-color: #3f51b5;--mat-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-accent .mdc-list-item__start,.rtl-container.indigo.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-warn .mdc-list-item__start,.rtl-container.indigo.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.indigo.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #3f51b5;--mat-checkbox-selected-hover-icon-color: #3f51b5;--mat-checkbox-selected-icon-color: #3f51b5;--mat-checkbox-selected-pressed-icon-color: #3f51b5;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #3f51b5;--mat-checkbox-selected-hover-state-layer-color: #3f51b5;--mat-checkbox-selected-pressed-state-layer-color: #3f51b5;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.indigo.night .mat-mdc-tab-group,.rtl-container.indigo.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #3f51b5;--mat-tab-active-ripple-color: #3f51b5;--mat-tab-inactive-ripple-color: #3f51b5;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #3f51b5;--mat-tab-active-hover-label-text-color: #3f51b5;--mat-tab-active-focus-indicator-color: #3f51b5;--mat-tab-active-hover-indicator-color: #3f51b5;--mat-tab-active-indicator-color: #3f51b5}.rtl-container.indigo.night .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #3f51b5;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #3f51b5;--mat-checkbox-selected-hover-icon-color: #3f51b5;--mat-checkbox-selected-icon-color: #3f51b5;--mat-checkbox-selected-pressed-icon-color: #3f51b5;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #3f51b5;--mat-checkbox-selected-hover-state-layer-color: #3f51b5;--mat-checkbox-selected-pressed-state-layer-color: #3f51b5;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-button.mat-primary,.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.indigo.night .mat-mdc-raised-button.mat-primary,.rtl-container.indigo.night .mat-mdc-outlined-button.mat-primary,.rtl-container.indigo.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #3f51b5;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #3f51b5;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-button-outlined-state-layer-color: #3f51b5;--mat-button-protected-container-color: #3f51b5;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #3f51b5;--mat-button-text-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-button-text-state-layer-color: #3f51b5;--mat-button-tonal-container-color: #3f51b5;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-mdc-button.mat-accent,.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.indigo.night .mat-mdc-raised-button.mat-accent,.rtl-container.indigo.night .mat-mdc-outlined-button.mat-accent,.rtl-container.indigo.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.indigo.night .mat-mdc-button.mat-warn,.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.indigo.night .mat-mdc-raised-button.mat-warn,.rtl-container.indigo.night .mat-mdc-outlined-button.mat-warn,.rtl-container.indigo.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.indigo.night .mat-mdc-fab.mat-primary,.rtl-container.indigo.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #3f51b5;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #3f51b5 12%, transparent);--mat-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-mdc-fab.mat-accent,.rtl-container.indigo.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.indigo.night .mat-mdc-fab.mat-warn,.rtl-container.indigo.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.indigo.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.indigo.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.indigo.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.indigo.night .mat-datepicker-content.mat-accent,.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.indigo.night .mat-datepicker-content.mat-warn,.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.indigo.night .mat-icon.mat-primary{--mat-icon-color: #3f51b5}.rtl-container.indigo.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.indigo.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.indigo.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.indigo.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #3f51b5;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.indigo.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.indigo.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.indigo.night .mat-primary{color:#536dfe!important}.rtl-container.indigo.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.indigo.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.indigo.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.indigo.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.indigo.night .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.indigo.night .currency-icon path,.rtl-container.indigo.night .currency-icon polygon{fill:#fff}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.indigo.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#536dfe}.rtl-container.indigo.night .cc-data-block .cc-data-title{color:#536dfe}.rtl-container.indigo.night .mat-stroked-button.mat-primary{border-color:#536dfe;color:#536dfe}.rtl-container.indigo.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.indigo.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.indigo.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.indigo.night .active-link,.rtl-container.indigo.night .active-link .fa-icon-small,.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active,.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#536dfe;font-weight:500;cursor:pointer;fill:#536dfe}.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.indigo.night .help-expansion .mat-expansion-indicator:after,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-content,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.indigo.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.indigo.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.indigo.night .mat-expansion-panel,.rtl-container.indigo.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.indigo.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.indigo.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.indigo.night .mdc-data-table__header-cell,.rtl-container.indigo.night .mat-mdc-paginator,.rtl-container.indigo.night .mat-mdc-form-field-focus-overlay,.rtl-container.indigo.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.indigo.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.indigo.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#536dfe}.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.indigo.night .svg-donation{opacity:1!important}.rtl-container.indigo.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#536dfe!important}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#536dfe!important}.rtl-container.indigo.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#3f51b5}.rtl-container.indigo.night a{color:#536dfe!important;cursor:pointer}.rtl-container.indigo.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.indigo.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.indigo.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.indigo.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.indigo.night .mat-mdc-select-placeholder,.rtl-container.indigo.night .mat-mdc-select-value,.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#536dfe}.rtl-container.indigo.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.indigo.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover,.rtl-container.indigo.night .mat-select-panel .mat-option:hover,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#536dfe;cursor:pointer;background:#ffffff0f}.rtl-container.indigo.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.night .mat-tree-node:hover .mat-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover .boltz-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#536dfe}.rtl-container.indigo.night .mat-tree-node .sidenav-img,.rtl-container.indigo.night .mat-nested-tree-node .sidenav-img,.rtl-container.indigo.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.indigo.night .page-title-container .page-title-img,.rtl-container.indigo.night svg.top-icon-small{fill:#fff}.rtl-container.indigo.night .selected-color{border-color:#9fa8da}.rtl-container.indigo.night .mat-progress-bar-fill:after{background-color:#3949ab}.rtl-container.indigo.night .chart-legend .legend-label:hover,.rtl-container.indigo.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.indigo.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.indigo.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#536dfe}.rtl-container.indigo.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.indigo.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#536dfe}.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#536dfe}.rtl-container.indigo.night .mat-select-panel{background-color:#121212}.rtl-container.indigo.night .mat-tree{background:#121212}.rtl-container.indigo.night h4{color:#536dfe}.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.indigo.night .dashboard-info-title{color:#536dfe}.rtl-container.indigo.night .dashboard-info-value,.rtl-container.indigo.night .dashboard-capacity-header{color:#fff}.rtl-container.indigo.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.indigo.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.indigo.night .color-primary{color:#536dfe!important}.rtl-container.indigo.night .dot-primary{background-color:#536dfe!important}.rtl-container.indigo.night .dot-primary-lighter{background-color:#3f51b5!important}.rtl-container.indigo.night .mat-stepper-vertical{background-color:#121212}.rtl-container.indigo.night .spinner-container h2{color:#536dfe}.rtl-container.indigo.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.indigo.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.indigo.night svg .boltz-icon-fill{fill:#fff}.rtl-container.indigo.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-primary-lighter{stroke:#9fa8da}.rtl-container.indigo.night svg .stroke-color-primary{stroke:#3f51b5}.rtl-container.indigo.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.indigo.night svg .fill-color-0{fill:#171717}.rtl-container.indigo.night svg .fill-color-1{fill:#232323}.rtl-container.indigo.night svg .fill-color-2{fill:#222}.rtl-container.indigo.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.indigo.night svg .fill-color-4{fill:#383838}.rtl-container.indigo.night svg .fill-color-5{fill:#555}.rtl-container.indigo.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.indigo.night svg .fill-color-7{fill:#202020}.rtl-container.indigo.night svg .fill-color-8{fill:#242424}.rtl-container.indigo.night svg .fill-color-9{fill:#262626}.rtl-container.indigo.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.indigo.night svg .fill-color-11{fill:#171717}.rtl-container.indigo.night svg .fill-color-12{fill:#ccc}.rtl-container.indigo.night svg .fill-color-13{fill:#adadad}.rtl-container.indigo.night svg .fill-color-14{fill:#ababab}.rtl-container.indigo.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.indigo.night svg .fill-color-16{fill:#707070}.rtl-container.indigo.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.indigo.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.indigo.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.indigo.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.indigo.night svg .fill-color-21{fill:#cacaca}.rtl-container.indigo.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.indigo.night svg .fill-color-23{fill:#777}.rtl-container.indigo.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.indigo.night svg .fill-color-25{fill:#252525}.rtl-container.indigo.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.indigo.night svg .fill-color-27{fill:#000}.rtl-container.indigo.night svg .fill-color-28{fill:#313131}.rtl-container.indigo.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.indigo.night svg .fill-color-30{fill:#fff}.rtl-container.indigo.night svg .fill-color-31{fill:#3f51b5}.rtl-container.indigo.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.indigo.night svg .fill-color-primary{fill:#3f51b5}.rtl-container.indigo.night svg .fill-color-primary-lighter{fill:#9fa8da}.rtl-container.indigo.night svg .fill-color-primary-darker{fill:#536dfe}.rtl-container.indigo.night .mat-select-value,.rtl-container.indigo.night .mat-select-arrow{color:#fff}.rtl-container.indigo.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.indigo.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.indigo.night .mat-button.mat-primary,.rtl-container.indigo.night .mat-icon-button.mat-primary,.rtl-container.indigo.night .mat-stroked-button.mat-primary{color:#536dfe}.rtl-container.indigo.night tr.alert.alert-warn .mat-cell,.rtl-container.indigo.night tr.alert.alert-warn .mat-header-cell,.rtl-container.indigo.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.indigo.night .material-icons.info-icon{font-size:100%;color:#536dfe}.rtl-container.indigo.night .material-icons.info-icon.info-icon-primary{color:#536dfe}.rtl-container.indigo.night .material-icons.info-icon.info-icon-text,.rtl-container.indigo.night .material-icons.info-icon.arrow-downward,.rtl-container.indigo.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.indigo.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#536dfe}.rtl-container.indigo.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#283593}.rtl-container.indigo.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#536dfe}.rtl-container.indigo.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.indigo.night .mat-progress-bar-buffer{background-color:#c5cae9}.rtl-container.indigo.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.indigo.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.indigo.night .foreground.mat-progress-spinner circle,.rtl-container.indigo.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.indigo.night .mat-toolbar-row,.rtl-container.indigo.night .mat-toolbar-single-row{height:4rem}.rtl-container.indigo.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.indigo.night a{color:#3f51b5}.rtl-container.indigo.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.indigo.night .h-active-link{border-bottom:2px solid white}.rtl-container.indigo.night .mat-icon-36{color:#ffffffb3}.rtl-container.indigo.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.indigo.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.indigo.night .genseed-message{width:10%;color:#3f51b5}.rtl-container.indigo.night .border-primary{border:1px solid #3f51b5}.rtl-container.indigo.night .border-accent{border:1px solid #aaaaaa}.rtl-container.indigo.night .border-warn{border:1px solid #b00020}.rtl-container.indigo.night .material-icons.primary{color:#3f51b5}.rtl-container.indigo.night .material-icons.accent{color:#aaa}.rtl-container.indigo.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.indigo.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.indigo.night .row-disabled{background-color:gray}.rtl-container.indigo.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.indigo.night .mat-mdc-card-content,.rtl-container.indigo.night .mat-mdc-card-subtitle,.rtl-container.indigo.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.indigo.night .mat-menu-panel{min-width:4rem}.rtl-container.indigo.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.indigo.night .horizontal-button:hover{background:#9fa8da;color:#aaa}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#3f51b5}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.indigo.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.indigo.night .mat-button,.rtl-container.indigo.night .mat-icon-button,.rtl-container.indigo.night .mat-stroked-button,.rtl-container.indigo.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.indigo.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.indigo.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.indigo.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.indigo.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.indigo.night .mat-cell,.rtl-container.indigo.night .mat-header-cell,.rtl-container.indigo.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.indigo.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.indigo.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#3f51b5}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#3f51b5;opacity:1}.rtl-container.indigo.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.indigo.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.indigo.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.indigo.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.indigo.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.indigo.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.indigo.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.indigo.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.indigo.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.indigo.night .more-button{color:#fff}.rtl-container.indigo.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.indigo.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.indigo.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.indigo.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.indigo.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.indigo.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.indigo.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.indigo.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.indigo.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.indigo.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.indigo.night .tab-badge .mat-badge-content.mat-badge-active{background:#3f51b5}.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.indigo.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.indigo.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.indigo.night .rtl-select-overlay{min-width:7rem}}.rtl-container.indigo.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.indigo.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.indigo.night .table-actions-button{min-width:8rem}.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.indigo.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#9fa8da!important}.rtl-container.indigo.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#3949ab!important}.rtl-container.indigo.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.indigo.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.indigo.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.indigo.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.indigo.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.indigo.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.indigo.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.indigo.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.indigo.night .color-warn{color:#b00020}.rtl-container.indigo.night .fill-warn{fill:#b00020}.rtl-container.indigo.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.indigo.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.indigo.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.indigo.night .alert.alert-info a{color:#004085}.rtl-container.indigo.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.indigo.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.indigo.night .alert.alert-warn a{color:#856404}.rtl-container.indigo.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.indigo.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.indigo.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.indigo.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.indigo.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.indigo.night .failed-status{color:#b00020}.rtl-container.indigo.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.indigo.night .svg-fill-primary{fill:#3f51b5}.rtl-container.indigo.night .svg-fill-primary-lighter{fill:#9fa8da}.rtl-container.indigo.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.indigo.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.indigo.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.indigo.night .dashboard-card-content .underline,.rtl-container.indigo.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#3f51b5}.rtl-container.indigo.night .mat-mdc-form-field-hint .currency-icon{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-form-field-hint .currency-icon path{fill:#3f51b5}.rtl-container.indigo.night .fa-icon-primary{color:#3f51b5}.rtl-container.indigo.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night ngx-charts-bar-vertical text,.rtl-container.indigo.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.indigo.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.indigo.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.indigo.night .mat-paginator-container{padding:0}.rtl-container.indigo.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.indigo.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.indigo.night .invoice-animation-div .particles-circle{position:absolute;background-color:#3f51b5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #3f51b5;background-color:transparent}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.indigo.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.indigo.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.indigo.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.indigo.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.green.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-filled-caret-color: #185127;--mat-form-field-filled-focus-active-indicator-color: #185127;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-outlined-caret-color: #185127;--mat-form-field-outlined-focus-outline-color: #185127;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #185127;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #185127;--mat-slide-toggle-selected-handle-color: #185127;--mat-slide-toggle-selected-hover-state-layer-color: #185127;--mat-slide-toggle-selected-pressed-state-layer-color: #185127;--mat-slide-toggle-selected-focus-handle-color: #185127;--mat-slide-toggle-selected-hover-handle-color: #185127;--mat-slide-toggle-selected-pressed-handle-color: #185127;--mat-slide-toggle-selected-focus-track-color: #5d8568;--mat-slide-toggle-selected-hover-track-color: #5d8568;--mat-slide-toggle-selected-pressed-track-color: #5d8568;--mat-slide-toggle-selected-track-color: #5d8568;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #185127;--mat-slider-focus-handle-color: #185127;--mat-slider-handle-color: #185127;--mat-slider-hover-handle-color: #185127;--mat-slider-focus-state-layer-color: color-mix(in srgb, #185127 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #185127 4%, transparent);--mat-slider-inactive-track-color: #185127;--mat-slider-ripple-color: #185127;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #185127;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #5d8568;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #185127;--mat-badge-background-color: #185127;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #185127 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #185127 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #185127 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #185127 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.green.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.green.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.green.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #185127;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #185127;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.green.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.green.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.green.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #185127;--mat-progress-bar-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.green.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #185127;--mat-chip-elevated-disabled-container-color: #185127;--mat-chip-elevated-selected-container-color: #185127;--mat-chip-flat-disabled-selected-container-color: #185127;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.green.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.green.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #185127;--mat-radio-selected-hover-icon-color: #185127;--mat-radio-selected-icon-color: #185127;--mat-radio-selected-pressed-icon-color: #185127;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.green.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.green.day .mdc-list-item__start,.rtl-container.green.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #185127;--mat-radio-selected-hover-icon-color: #185127;--mat-radio-selected-icon-color: #185127;--mat-radio-selected-pressed-icon-color: #185127;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-accent .mdc-list-item__start,.rtl-container.green.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-warn .mdc-list-item__start,.rtl-container.green.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #185127;--mat-checkbox-selected-hover-icon-color: #185127;--mat-checkbox-selected-icon-color: #185127;--mat-checkbox-selected-pressed-icon-color: #185127;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #185127;--mat-checkbox-selected-hover-state-layer-color: #185127;--mat-checkbox-selected-pressed-state-layer-color: #185127;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#185127}.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.green.day .mat-mdc-tab-group,.rtl-container.green.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #185127;--mat-tab-active-ripple-color: #185127;--mat-tab-inactive-ripple-color: #185127;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #185127;--mat-tab-active-hover-label-text-color: #185127;--mat-tab-active-focus-indicator-color: #185127;--mat-tab-active-hover-indicator-color: #185127;--mat-tab-active-indicator-color: #185127}.rtl-container.green.day .mat-mdc-tab-group.mat-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.green.day .mat-mdc-tab-group.mat-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.green.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #185127;--mat-tab-foreground-color: #ffffff}.rtl-container.green.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.green.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.green.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #185127;--mat-checkbox-selected-hover-icon-color: #185127;--mat-checkbox-selected-icon-color: #185127;--mat-checkbox-selected-pressed-icon-color: #185127;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #185127;--mat-checkbox-selected-hover-state-layer-color: #185127;--mat-checkbox-selected-pressed-state-layer-color: #185127;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-button.mat-primary,.rtl-container.green.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.green.day .mat-mdc-raised-button.mat-primary,.rtl-container.green.day .mat-mdc-outlined-button.mat-primary,.rtl-container.green.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #185127;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #185127;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-button-outlined-state-layer-color: #185127;--mat-button-protected-container-color: #185127;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #185127;--mat-button-text-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-button-text-state-layer-color: #185127;--mat-button-tonal-container-color: #185127;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.green.day .mat-mdc-button.mat-accent,.rtl-container.green.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.green.day .mat-mdc-raised-button.mat-accent,.rtl-container.green.day .mat-mdc-outlined-button.mat-accent,.rtl-container.green.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.green.day .mat-mdc-button.mat-warn,.rtl-container.green.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.green.day .mat-mdc-raised-button.mat-warn,.rtl-container.green.day .mat-mdc-outlined-button.mat-warn,.rtl-container.green.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.green.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: color-mix(in srgb, #185127 12%, transparent)}.rtl-container.green.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.green.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.green.day .mat-mdc-fab.mat-primary,.rtl-container.green.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #185127;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-fab-small-container-color: #185127;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.green.day .mat-mdc-fab.mat-accent,.rtl-container.green.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.green.day .mat-mdc-fab.mat-warn,.rtl-container.green.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.green.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.green.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.green.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.green.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.green.day .mat-datepicker-content.mat-accent,.rtl-container.green.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-datepicker-content.mat-warn,.rtl-container.green.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-icon.mat-primary{--mat-icon-color: #185127}.rtl-container.green.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.green.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.green.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #185127;--mat-toolbar-container-text-color: #ffffff}.rtl-container.green.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.green.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.green.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.green.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.green.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.green.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.green.day .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.green.day .page-title,.rtl-container.green.day .mat-mdc-select-value,.rtl-container.green.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.green.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.green.day .help-expansion .mat-expansion-panel-header,.rtl-container.green.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.green.day .help-expansion .mat-expansion-indicator:after,.rtl-container.green.day .help-expansion .mat-expansion-panel-content,.rtl-container.green.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#185127}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.green.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#185127}.rtl-container.green.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.green.day .mat-tree-node:hover,.rtl-container.green.day .mat-nested-tree-node-parent:hover,.rtl-container.green.day .mat-select-panel .mat-option:hover,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#185127;cursor:pointer}.rtl-container.green.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.day .mat-tree-node:hover .mat-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#185127}.rtl-container.green.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#185127}.rtl-container.green.day .spinner-container h2{color:#fff}.rtl-container.green.day .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.green.day .mat-form-field-suffix{color:#0000008a}.rtl-container.green.day .mat-stroked-button.mat-primary{border-color:#185127}.rtl-container.green.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.green.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.green.day .selected-color{border-color:#5d8568}.rtl-container.green.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.green.day table.mat-mdc-table thead tr th,.rtl-container.green.day .page-title-container,.rtl-container.green.day .page-sub-title-container{color:#0000008a}.rtl-container.green.day .page-title-container .page-title-img,.rtl-container.green.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.green.day .page-title-container .mat-input-element,.rtl-container.green.day .page-title-container .mat-radio-label-content,.rtl-container.green.day .page-title-container .theme-name,.rtl-container.green.day .page-sub-title-container .mat-input-element,.rtl-container.green.day .page-sub-title-container .mat-radio-label-content,.rtl-container.green.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.green.day .cc-data-block .cc-data-title{color:#185127}.rtl-container.green.day .active-link,.rtl-container.green.day .active-link .fa-icon-small{color:#185127;font-weight:500;cursor:pointer;fill:#185127}.rtl-container.green.day .mat-tree-node:hover,.rtl-container.green.day .mat-nested-tree-node-parent:hover,.rtl-container.green.day .mat-select-panel .mat-option:hover,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#185127;cursor:pointer;background:#0000000a}.rtl-container.green.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.day .mat-tree-node:hover .mat-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#185127}.rtl-container.green.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#185127}.rtl-container.green.day .mat-tree-node .sidenav-img,.rtl-container.green.day .mat-nested-tree-node .sidenav-img,.rtl-container.green.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.green.day .page-title-container .page-title-img,.rtl-container.green.day svg.top-icon-small{fill:#000000de}.rtl-container.green.day .mat-progress-bar-fill:after{background-color:#08270e}.rtl-container.green.day .modal-qr-code-container{background:#0000001f}.rtl-container.green.day .mdc-tab__text-label,.rtl-container.green.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.green.day .mat-mdc-card,.rtl-container.green.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.green.day .dashboard-info-title{color:#185127}.rtl-container.green.day .dashboard-capacity-header,.rtl-container.green.day .dashboard-info-value{color:#0000008a}.rtl-container.green.day .color-primary{color:#185127!important}.rtl-container.green.day .dot-primary{background-color:#185127!important}.rtl-container.green.day .dot-primary-lighter{background-color:#5d8568!important}.rtl-container.green.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .mat-mdc-form-field-hint{color:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.green.day .mat-mdc-form-field-hint fa-icon svg path{fill:#185127}.rtl-container.green.day .currency-icon path,.rtl-container.green.day .currency-icon polygon{fill:#0000008a}.rtl-container.green.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.green.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.green.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-primary-lighter{stroke:#5d8568}.rtl-container.green.day svg .stroke-color-primary{stroke:#185127}.rtl-container.green.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.green.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-1{fill:#fff}.rtl-container.green.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.green.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-6{fill:#fff}.rtl-container.green.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-9{fill:#fff}.rtl-container.green.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.green.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.green.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-16{fill:#404040}.rtl-container.green.day svg .fill-color-17{fill:#404040}.rtl-container.green.day svg .fill-color-18{fill:#000}.rtl-container.green.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-24{fill:#000}.rtl-container.green.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.green.day svg .fill-color-27{fill:#000}.rtl-container.green.day svg .fill-color-28{fill:#313131}.rtl-container.green.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-30{fill:#fff}.rtl-container.green.day svg .fill-color-31{fill:#185127}.rtl-container.green.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.green.day svg .fill-color-primary{fill:#185127}.rtl-container.green.day svg .fill-color-primary-lighter{fill:#5d8568}.rtl-container.green.day svg .fill-color-primary-darker{fill:#185127}.rtl-container.green.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.green.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.green.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#185127}.rtl-container.green.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.green.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.green.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.green.day .material-icons.mat-icon-no-color,.rtl-container.green.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.green.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.green.day .material-icons.info-icon.info-icon-primary{color:#185127}.rtl-container.green.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.green.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.green.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.green.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.green.day .material-icons.info-icon.arrow-downward,.rtl-container.green.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.green.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.green.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#185127}.rtl-container.green.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#08270e}.rtl-container.green.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#8ca893}.rtl-container.green.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.green.day .mat-progress-bar-buffer{background-color:#bacbbe}.rtl-container.green.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.green.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.green.day .foreground.mat-progress-spinner circle,.rtl-container.green.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.green.day .mat-toolbar-row,.rtl-container.green.day .mat-toolbar-single-row{height:4rem}.rtl-container.green.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.green.day a{color:#185127}.rtl-container.green.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.green.day .h-active-link{border-bottom:2px solid white}.rtl-container.green.day .mat-icon-36{color:#0000008a}.rtl-container.green.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.green.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.green.day .genseed-message{width:10%;color:#185127}.rtl-container.green.day .border-primary{border:1px solid #185127}.rtl-container.green.day .border-accent{border:1px solid #9e9e9e}.rtl-container.green.day .border-warn{border:1px solid #b00020}.rtl-container.green.day .material-icons.primary{color:#185127}.rtl-container.green.day .material-icons.accent{color:#9e9e9e}.rtl-container.green.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.green.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.green.day .row-disabled{background-color:gray}.rtl-container.green.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.green.day .mat-mdc-card-content,.rtl-container.green.day .mat-mdc-card-subtitle,.rtl-container.green.day .mat-mdc-card-title{color:#0000008a}.rtl-container.green.day .mat-menu-panel{min-width:4rem}.rtl-container.green.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.green.day .horizontal-button:hover{background:#5d8568;color:#9e9e9e}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#185127}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.green.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.green.day .mat-button,.rtl-container.green.day .mat-icon-button,.rtl-container.green.day .mat-stroked-button,.rtl-container.green.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.green.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.green.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.green.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.green.day .cc-data-block .cc-data-value{color:#000}.rtl-container.green.day .mat-cell,.rtl-container.green.day .mat-header-cell,.rtl-container.green.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.green.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.green.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#185127}.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#185127;opacity:1}.rtl-container.green.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.green.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.green.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.green.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.green.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.green.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.green.day .more-button{color:#000}.rtl-container.green.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.green.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.green.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.green.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.green.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.green.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.green.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.green.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.green.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.green.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.green.day .tab-badge .mat-badge-content.mat-badge-active{background:#185127}.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.green.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.green.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.green.day .rtl-select-overlay{min-width:7rem}}.rtl-container.green.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.green.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.green.day .table-actions-button{min-width:8rem}.rtl-container.green.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.green.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#8ca893!important}.rtl-container.green.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#154a23!important}.rtl-container.green.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.green.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.green.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.green.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.green.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.green.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.green.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.green.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.green.day .color-warn{color:#b00020}.rtl-container.green.day .fill-warn{fill:#b00020}.rtl-container.green.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.green.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.green.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.green.day .alert.alert-info a{color:#004085}.rtl-container.green.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.green.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.green.day .alert.alert-warn a{color:#856404}.rtl-container.green.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.green.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.green.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.green.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.green.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.green.day .failed-status{color:#b00020}.rtl-container.green.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.green.day .svg-fill-primary{fill:#185127}.rtl-container.green.day .svg-fill-primary-lighter{fill:#5d8568}.rtl-container.green.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.green.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.green.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.green.day .dashboard-card-content .underline,.rtl-container.green.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#185127}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#185127}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon{color:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon path{fill:#185127}.rtl-container.green.day .fa-icon-primary{color:#185127}.rtl-container.green.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day ngx-charts-bar-vertical text,.rtl-container.green.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.green.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.green.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.green.day .mat-paginator-container{padding:0}.rtl-container.green.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.green.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.green.day .invoice-animation-div .particles-circle{position:absolute;background-color:#185127;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #185127;background-color:transparent}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.green.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.green.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.green.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.green.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.green.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-filled-caret-color: #185127;--mat-form-field-filled-focus-active-indicator-color: #185127;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-outlined-caret-color: #185127;--mat-form-field-outlined-focus-outline-color: #185127;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #185127 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #185127;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #185127;--mat-slide-toggle-selected-handle-color: #185127;--mat-slide-toggle-selected-hover-state-layer-color: #185127;--mat-slide-toggle-selected-pressed-state-layer-color: #185127;--mat-slide-toggle-selected-focus-handle-color: #185127;--mat-slide-toggle-selected-hover-handle-color: #185127;--mat-slide-toggle-selected-pressed-handle-color: #185127;--mat-slide-toggle-selected-focus-track-color: #154a23;--mat-slide-toggle-selected-hover-track-color: #154a23;--mat-slide-toggle-selected-pressed-track-color: #154a23;--mat-slide-toggle-selected-track-color: #154a23;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #185127;--mat-slider-focus-handle-color: #185127;--mat-slider-handle-color: #185127;--mat-slider-hover-handle-color: #185127;--mat-slider-focus-state-layer-color: color-mix(in srgb, #185127 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #185127 4%, transparent);--mat-slider-inactive-track-color: #185127;--mat-slider-ripple-color: #185127;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #185127;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #154a23;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #185127;--mat-badge-background-color: #185127;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #185127 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #185127 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #185127 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #185127 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.green.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.green.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.green.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #185127;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #185127;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.green.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.green.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.green.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #185127;--mat-progress-bar-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.green.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #185127;--mat-chip-elevated-disabled-container-color: #185127;--mat-chip-elevated-selected-container-color: #185127;--mat-chip-flat-disabled-selected-container-color: #185127;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.green.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.green.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.green.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #185127;--mat-radio-selected-hover-icon-color: #185127;--mat-radio-selected-icon-color: #185127;--mat-radio-selected-pressed-icon-color: #185127;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.green.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.green.night .mdc-list-item__start,.rtl-container.green.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #185127;--mat-radio-selected-hover-icon-color: #185127;--mat-radio-selected-icon-color: #185127;--mat-radio-selected-pressed-icon-color: #185127;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-accent .mdc-list-item__start,.rtl-container.green.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-warn .mdc-list-item__start,.rtl-container.green.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.green.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #185127;--mat-checkbox-selected-hover-icon-color: #185127;--mat-checkbox-selected-icon-color: #185127;--mat-checkbox-selected-pressed-icon-color: #185127;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #185127;--mat-checkbox-selected-hover-state-layer-color: #185127;--mat-checkbox-selected-pressed-state-layer-color: #185127;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#185127}.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.green.night .mat-mdc-tab-group,.rtl-container.green.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #185127;--mat-tab-active-ripple-color: #185127;--mat-tab-inactive-ripple-color: #185127;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #185127;--mat-tab-active-hover-label-text-color: #185127;--mat-tab-active-focus-indicator-color: #185127;--mat-tab-active-hover-indicator-color: #185127;--mat-tab-active-indicator-color: #185127}.rtl-container.green.night .mat-mdc-tab-group.mat-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.green.night .mat-mdc-tab-group.mat-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.green.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #185127;--mat-tab-foreground-color: #ffffff}.rtl-container.green.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.green.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #185127;--mat-checkbox-selected-hover-icon-color: #185127;--mat-checkbox-selected-icon-color: #185127;--mat-checkbox-selected-pressed-icon-color: #185127;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #185127;--mat-checkbox-selected-hover-state-layer-color: #185127;--mat-checkbox-selected-pressed-state-layer-color: #185127;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-button.mat-primary,.rtl-container.green.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.green.night .mat-mdc-raised-button.mat-primary,.rtl-container.green.night .mat-mdc-outlined-button.mat-primary,.rtl-container.green.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #185127;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #185127;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-button-outlined-state-layer-color: #185127;--mat-button-protected-container-color: #185127;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #185127;--mat-button-text-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-button-text-state-layer-color: #185127;--mat-button-tonal-container-color: #185127;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.green.night .mat-mdc-button.mat-accent,.rtl-container.green.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.green.night .mat-mdc-raised-button.mat-accent,.rtl-container.green.night .mat-mdc-outlined-button.mat-accent,.rtl-container.green.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.green.night .mat-mdc-button.mat-warn,.rtl-container.green.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.green.night .mat-mdc-raised-button.mat-warn,.rtl-container.green.night .mat-mdc-outlined-button.mat-warn,.rtl-container.green.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.green.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: color-mix(in srgb, #185127 12%, transparent)}.rtl-container.green.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.green.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.green.night .mat-mdc-fab.mat-primary,.rtl-container.green.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #185127;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #185127 12%, transparent);--mat-fab-small-container-color: #185127;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.green.night .mat-mdc-fab.mat-accent,.rtl-container.green.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.green.night .mat-mdc-fab.mat-warn,.rtl-container.green.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.green.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.green.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.green.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.green.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.green.night .mat-datepicker-content.mat-accent,.rtl-container.green.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.green.night .mat-datepicker-content.mat-warn,.rtl-container.green.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.green.night .mat-icon.mat-primary{--mat-icon-color: #185127}.rtl-container.green.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.green.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.green.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.green.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #185127;--mat-toolbar-container-text-color: #ffffff}.rtl-container.green.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.green.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.green.night .mat-primary{color:#30ff4b!important}.rtl-container.green.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.green.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.green.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.green.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.green.night .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#30ff4b}.rtl-container.green.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.green.night .currency-icon path,.rtl-container.green.night .currency-icon polygon{fill:#fff}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.green.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#30ff4b}.rtl-container.green.night .cc-data-block .cc-data-title{color:#30ff4b}.rtl-container.green.night .mat-stroked-button.mat-primary{border-color:#30ff4b;color:#30ff4b}.rtl-container.green.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.green.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.green.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.green.night .active-link,.rtl-container.green.night .active-link .fa-icon-small,.rtl-container.green.night .mat-select-panel .mat-option.mat-active,.rtl-container.green.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#30ff4b;font-weight:500;cursor:pointer;fill:#30ff4b}.rtl-container.green.night .help-expansion .mat-expansion-panel-header,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.green.night .help-expansion .mat-expansion-indicator:after,.rtl-container.green.night .help-expansion .mat-expansion-panel-content,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.green.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.green.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.green.night .mat-expansion-panel,.rtl-container.green.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.green.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.green.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.green.night .mdc-data-table__header-cell,.rtl-container.green.night .mat-mdc-paginator,.rtl-container.green.night .mat-mdc-form-field-focus-overlay,.rtl-container.green.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.green.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.green.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#30ff4b}.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.green.night .svg-donation{opacity:1!important}.rtl-container.green.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#30ff4b!important}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#30ff4b!important}.rtl-container.green.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#185127}.rtl-container.green.night a{color:#30ff4b!important;cursor:pointer}.rtl-container.green.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.green.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.green.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.green.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.green.night .mat-mdc-select-placeholder,.rtl-container.green.night .mat-mdc-select-value,.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#30ff4b}.rtl-container.green.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.green.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#30ff4b}.rtl-container.green.night .mat-tree-node:hover,.rtl-container.green.night .mat-nested-tree-node-parent:hover,.rtl-container.green.night .mat-select-panel .mat-option:hover,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#30ff4b;cursor:pointer;background:#ffffff0f}.rtl-container.green.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.night .mat-tree-node:hover .mat-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#30ff4b}.rtl-container.green.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.green.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.green.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#30ff4b}.rtl-container.green.night .mat-tree-node:hover .boltz-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#30ff4b}.rtl-container.green.night .mat-tree-node .sidenav-img,.rtl-container.green.night .mat-nested-tree-node .sidenav-img,.rtl-container.green.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.green.night .page-title-container .page-title-img,.rtl-container.green.night svg.top-icon-small{fill:#fff}.rtl-container.green.night .selected-color{border-color:#5d8568}.rtl-container.green.night .mat-progress-bar-fill:after{background-color:#154a23}.rtl-container.green.night .chart-legend .legend-label:hover,.rtl-container.green.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.green.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.green.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#30ff4b}.rtl-container.green.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.green.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#30ff4b}.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#30ff4b}.rtl-container.green.night .mat-select-panel{background-color:#121212}.rtl-container.green.night .mat-tree{background:#121212}.rtl-container.green.night h4{color:#30ff4b}.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.green.night .dashboard-info-title{color:#30ff4b}.rtl-container.green.night .dashboard-info-value,.rtl-container.green.night .dashboard-capacity-header{color:#fff}.rtl-container.green.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.green.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.green.night .color-primary{color:#30ff4b!important}.rtl-container.green.night .dot-primary{background-color:#30ff4b!important}.rtl-container.green.night .dot-primary-lighter{background-color:#185127!important}.rtl-container.green.night .mat-stepper-vertical{background-color:#121212}.rtl-container.green.night .spinner-container h2{color:#30ff4b}.rtl-container.green.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.green.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.green.night svg .boltz-icon-fill{fill:#fff}.rtl-container.green.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-primary-lighter{stroke:#5d8568}.rtl-container.green.night svg .stroke-color-primary{stroke:#185127}.rtl-container.green.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.green.night svg .fill-color-0{fill:#171717}.rtl-container.green.night svg .fill-color-1{fill:#232323}.rtl-container.green.night svg .fill-color-2{fill:#222}.rtl-container.green.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.green.night svg .fill-color-4{fill:#383838}.rtl-container.green.night svg .fill-color-5{fill:#555}.rtl-container.green.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.green.night svg .fill-color-7{fill:#202020}.rtl-container.green.night svg .fill-color-8{fill:#242424}.rtl-container.green.night svg .fill-color-9{fill:#262626}.rtl-container.green.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.green.night svg .fill-color-11{fill:#171717}.rtl-container.green.night svg .fill-color-12{fill:#ccc}.rtl-container.green.night svg .fill-color-13{fill:#adadad}.rtl-container.green.night svg .fill-color-14{fill:#ababab}.rtl-container.green.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.green.night svg .fill-color-16{fill:#707070}.rtl-container.green.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.green.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.green.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.green.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.green.night svg .fill-color-21{fill:#cacaca}.rtl-container.green.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.green.night svg .fill-color-23{fill:#777}.rtl-container.green.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.green.night svg .fill-color-25{fill:#252525}.rtl-container.green.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.green.night svg .fill-color-27{fill:#000}.rtl-container.green.night svg .fill-color-28{fill:#313131}.rtl-container.green.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.green.night svg .fill-color-30{fill:#fff}.rtl-container.green.night svg .fill-color-31{fill:#185127}.rtl-container.green.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.green.night svg .fill-color-primary{fill:#185127}.rtl-container.green.night svg .fill-color-primary-lighter{fill:#5d8568}.rtl-container.green.night svg .fill-color-primary-darker{fill:#30ff4b}.rtl-container.green.night .mat-select-value,.rtl-container.green.night .mat-select-arrow{color:#fff}.rtl-container.green.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.green.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.green.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.green.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.green.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.green.night .mat-button.mat-primary,.rtl-container.green.night .mat-icon-button.mat-primary,.rtl-container.green.night .mat-stroked-button.mat-primary{color:#30ff4b}.rtl-container.green.night tr.alert.alert-warn .mat-cell,.rtl-container.green.night tr.alert.alert-warn .mat-header-cell,.rtl-container.green.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.green.night .material-icons.info-icon{font-size:100%;color:#30ff4b}.rtl-container.green.night .material-icons.info-icon.info-icon-primary{color:#30ff4b}.rtl-container.green.night .material-icons.info-icon.info-icon-text,.rtl-container.green.night .material-icons.info-icon.arrow-downward,.rtl-container.green.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.green.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.green.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#30ff4b}.rtl-container.green.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#0e3717}.rtl-container.green.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#30ff4b}.rtl-container.green.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.green.night .mat-progress-bar-buffer{background-color:#bacbbe}.rtl-container.green.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.green.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.green.night .foreground.mat-progress-spinner circle,.rtl-container.green.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.green.night .mat-toolbar-row,.rtl-container.green.night .mat-toolbar-single-row{height:4rem}.rtl-container.green.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.green.night a{color:#185127}.rtl-container.green.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.green.night .h-active-link{border-bottom:2px solid white}.rtl-container.green.night .mat-icon-36{color:#ffffffb3}.rtl-container.green.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.green.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.green.night .genseed-message{width:10%;color:#185127}.rtl-container.green.night .border-primary{border:1px solid #185127}.rtl-container.green.night .border-accent{border:1px solid #aaaaaa}.rtl-container.green.night .border-warn{border:1px solid #b00020}.rtl-container.green.night .material-icons.primary{color:#185127}.rtl-container.green.night .material-icons.accent{color:#aaa}.rtl-container.green.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.green.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.green.night .row-disabled{background-color:gray}.rtl-container.green.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.green.night .mat-mdc-card-content,.rtl-container.green.night .mat-mdc-card-subtitle,.rtl-container.green.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.green.night .mat-menu-panel{min-width:4rem}.rtl-container.green.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.green.night .horizontal-button:hover{background:#5d8568;color:#aaa}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#185127}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.green.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.green.night .mat-button,.rtl-container.green.night .mat-icon-button,.rtl-container.green.night .mat-stroked-button,.rtl-container.green.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.green.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.green.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.green.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.green.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.green.night .mat-cell,.rtl-container.green.night .mat-header-cell,.rtl-container.green.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.green.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.green.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#185127}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#185127;opacity:1}.rtl-container.green.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.green.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.green.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.green.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.green.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.green.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.green.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.green.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.green.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.green.night .more-button{color:#fff}.rtl-container.green.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.green.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.green.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.green.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.green.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.green.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.green.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.green.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.green.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.green.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.green.night .tab-badge .mat-badge-content.mat-badge-active{background:#185127}.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.green.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.green.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.green.night .rtl-select-overlay{min-width:7rem}}.rtl-container.green.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.green.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.green.night .table-actions-button{min-width:8rem}.rtl-container.green.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.green.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#8ca893!important}.rtl-container.green.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#154a23!important}.rtl-container.green.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.green.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.green.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.green.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.green.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.green.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.green.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.green.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.green.night .color-warn{color:#b00020}.rtl-container.green.night .fill-warn{fill:#b00020}.rtl-container.green.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.green.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.green.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.green.night .alert.alert-info a{color:#004085}.rtl-container.green.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.green.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.green.night .alert.alert-warn a{color:#856404}.rtl-container.green.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.green.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.green.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.green.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.green.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.green.night .failed-status{color:#b00020}.rtl-container.green.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.green.night .svg-fill-primary{fill:#185127}.rtl-container.green.night .svg-fill-primary-lighter{fill:#5d8568}.rtl-container.green.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.green.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.green.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.green.night .dashboard-card-content .underline,.rtl-container.green.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#185127}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#185127}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#185127}.rtl-container.green.night .mat-mdc-form-field-hint .currency-icon{color:#185127}.rtl-container.green.night .mat-mdc-form-field-hint .currency-icon path{fill:#185127}.rtl-container.green.night .fa-icon-primary{color:#185127}.rtl-container.green.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night ngx-charts-bar-vertical text,.rtl-container.green.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.green.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.green.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.green.night .mat-paginator-container{padding:0}.rtl-container.green.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.green.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.green.night .invoice-animation-div .particles-circle{position:absolute;background-color:#185127;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #185127;background-color:transparent}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.green.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.green.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.green.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.green.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.teal.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-filled-caret-color: #00695c;--mat-form-field-filled-focus-active-indicator-color: #00695c;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-outlined-caret-color: #00695c;--mat-form-field-outlined-focus-outline-color: #00695c;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #00695c;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #00695c;--mat-slide-toggle-selected-handle-color: #00695c;--mat-slide-toggle-selected-hover-state-layer-color: #00695c;--mat-slide-toggle-selected-pressed-state-layer-color: #00695c;--mat-slide-toggle-selected-focus-handle-color: #00695c;--mat-slide-toggle-selected-hover-handle-color: #00695c;--mat-slide-toggle-selected-pressed-handle-color: #00695c;--mat-slide-toggle-selected-focus-track-color: #4db6ac;--mat-slide-toggle-selected-hover-track-color: #4db6ac;--mat-slide-toggle-selected-pressed-track-color: #4db6ac;--mat-slide-toggle-selected-track-color: #4db6ac;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #00695c;--mat-slider-focus-handle-color: #00695c;--mat-slider-handle-color: #00695c;--mat-slider-hover-handle-color: #00695c;--mat-slider-focus-state-layer-color: color-mix(in srgb, #00695c 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #00695c 4%, transparent);--mat-slider-inactive-track-color: #00695c;--mat-slider-ripple-color: #00695c;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #00695c;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #4db6ac;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #00695c;--mat-badge-background-color: #00695c;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #00695c 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #00695c 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #00695c 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #00695c 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.teal.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.teal.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.teal.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #00695c;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #00695c;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.teal.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.teal.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.teal.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #00695c;--mat-progress-bar-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.teal.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #00695c;--mat-chip-elevated-disabled-container-color: #00695c;--mat-chip-elevated-selected-container-color: #00695c;--mat-chip-flat-disabled-selected-container-color: #00695c;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.teal.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #00695c;--mat-radio-selected-hover-icon-color: #00695c;--mat-radio-selected-icon-color: #00695c;--mat-radio-selected-pressed-icon-color: #00695c;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.teal.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.teal.day .mdc-list-item__start,.rtl-container.teal.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #00695c;--mat-radio-selected-hover-icon-color: #00695c;--mat-radio-selected-icon-color: #00695c;--mat-radio-selected-pressed-icon-color: #00695c;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-accent .mdc-list-item__start,.rtl-container.teal.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-warn .mdc-list-item__start,.rtl-container.teal.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #00695c;--mat-checkbox-selected-hover-icon-color: #00695c;--mat-checkbox-selected-icon-color: #00695c;--mat-checkbox-selected-pressed-icon-color: #00695c;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #00695c;--mat-checkbox-selected-hover-state-layer-color: #00695c;--mat-checkbox-selected-pressed-state-layer-color: #00695c;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#00695c}.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.teal.day .mat-mdc-tab-group,.rtl-container.teal.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #00695c;--mat-tab-active-ripple-color: #00695c;--mat-tab-inactive-ripple-color: #00695c;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #00695c;--mat-tab-active-hover-label-text-color: #00695c;--mat-tab-active-focus-indicator-color: #00695c;--mat-tab-active-hover-indicator-color: #00695c;--mat-tab-active-indicator-color: #00695c}.rtl-container.teal.day .mat-mdc-tab-group.mat-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.teal.day .mat-mdc-tab-group.mat-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #00695c;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.teal.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #00695c;--mat-checkbox-selected-hover-icon-color: #00695c;--mat-checkbox-selected-icon-color: #00695c;--mat-checkbox-selected-pressed-icon-color: #00695c;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #00695c;--mat-checkbox-selected-hover-state-layer-color: #00695c;--mat-checkbox-selected-pressed-state-layer-color: #00695c;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-button.mat-primary,.rtl-container.teal.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.teal.day .mat-mdc-raised-button.mat-primary,.rtl-container.teal.day .mat-mdc-outlined-button.mat-primary,.rtl-container.teal.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #00695c;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #00695c;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-button-outlined-state-layer-color: #00695c;--mat-button-protected-container-color: #00695c;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #00695c;--mat-button-text-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-button-text-state-layer-color: #00695c;--mat-button-tonal-container-color: #00695c;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-mdc-button.mat-accent,.rtl-container.teal.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.teal.day .mat-mdc-raised-button.mat-accent,.rtl-container.teal.day .mat-mdc-outlined-button.mat-accent,.rtl-container.teal.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.teal.day .mat-mdc-button.mat-warn,.rtl-container.teal.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.teal.day .mat-mdc-raised-button.mat-warn,.rtl-container.teal.day .mat-mdc-outlined-button.mat-warn,.rtl-container.teal.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.teal.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: color-mix(in srgb, #00695c 12%, transparent)}.rtl-container.teal.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.teal.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.teal.day .mat-mdc-fab.mat-primary,.rtl-container.teal.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #00695c;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-mdc-fab.mat-accent,.rtl-container.teal.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.teal.day .mat-mdc-fab.mat-warn,.rtl-container.teal.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.teal.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.teal.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.teal.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.teal.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.teal.day .mat-datepicker-content.mat-accent,.rtl-container.teal.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-datepicker-content.mat-warn,.rtl-container.teal.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-icon.mat-primary{--mat-icon-color: #00695c}.rtl-container.teal.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.teal.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.teal.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #00695c;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.teal.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.teal.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.teal.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.teal.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.teal.day .bg-primary{background-color:#009688;color:#fff}.rtl-container.teal.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.teal.day .page-title,.rtl-container.teal.day .mat-mdc-select-value,.rtl-container.teal.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.teal.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.teal.day .help-expansion .mat-expansion-panel-header,.rtl-container.teal.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.teal.day .help-expansion .mat-expansion-indicator:after,.rtl-container.teal.day .help-expansion .mat-expansion-panel-content,.rtl-container.teal.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#009688}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#009688}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.teal.day .mat-tree-node:hover,.rtl-container.teal.day .mat-nested-tree-node-parent:hover,.rtl-container.teal.day .mat-select-panel .mat-option:hover,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#009688;cursor:pointer}.rtl-container.teal.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.day .mat-tree-node:hover .mat-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#009688}.rtl-container.teal.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#009688}.rtl-container.teal.day .spinner-container h2{color:#fff}.rtl-container.teal.day .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.teal.day .mat-form-field-suffix{color:#0000008a}.rtl-container.teal.day .mat-stroked-button.mat-primary{border-color:#009688}.rtl-container.teal.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.teal.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.teal.day .selected-color{border-color:#4db6ac}.rtl-container.teal.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.teal.day table.mat-mdc-table thead tr th,.rtl-container.teal.day .page-title-container,.rtl-container.teal.day .page-sub-title-container{color:#0000008a}.rtl-container.teal.day .page-title-container .page-title-img,.rtl-container.teal.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.teal.day .page-title-container .mat-input-element,.rtl-container.teal.day .page-title-container .mat-radio-label-content,.rtl-container.teal.day .page-title-container .theme-name,.rtl-container.teal.day .page-sub-title-container .mat-input-element,.rtl-container.teal.day .page-sub-title-container .mat-radio-label-content,.rtl-container.teal.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.teal.day .cc-data-block .cc-data-title{color:#009688}.rtl-container.teal.day .active-link,.rtl-container.teal.day .active-link .fa-icon-small{color:#009688;font-weight:500;cursor:pointer;fill:#009688}.rtl-container.teal.day .mat-tree-node:hover,.rtl-container.teal.day .mat-nested-tree-node-parent:hover,.rtl-container.teal.day .mat-select-panel .mat-option:hover,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#009688;cursor:pointer;background:#0000000a}.rtl-container.teal.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.day .mat-tree-node:hover .mat-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#009688}.rtl-container.teal.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#009688}.rtl-container.teal.day .mat-tree-node .sidenav-img,.rtl-container.teal.day .mat-nested-tree-node .sidenav-img,.rtl-container.teal.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.teal.day .page-title-container .page-title-img,.rtl-container.teal.day svg.top-icon-small{fill:#000000de}.rtl-container.teal.day .mat-progress-bar-fill:after{background-color:#004d40}.rtl-container.teal.day .modal-qr-code-container{background:#0000001f}.rtl-container.teal.day .mdc-tab__text-label,.rtl-container.teal.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.teal.day .mat-mdc-card,.rtl-container.teal.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.teal.day .dashboard-info-title{color:#009688}.rtl-container.teal.day .dashboard-capacity-header,.rtl-container.teal.day .dashboard-info-value{color:#0000008a}.rtl-container.teal.day .color-primary{color:#009688!important}.rtl-container.teal.day .dot-primary{background-color:#009688!important}.rtl-container.teal.day .dot-primary-lighter{background-color:#4db6ac!important}.rtl-container.teal.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .mat-mdc-form-field-hint{color:#009688}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.teal.day .mat-mdc-form-field-hint fa-icon svg path{fill:#009688}.rtl-container.teal.day .currency-icon path,.rtl-container.teal.day .currency-icon polygon{fill:#0000008a}.rtl-container.teal.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.teal.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.teal.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-primary-lighter{stroke:#4db6ac}.rtl-container.teal.day svg .stroke-color-primary{stroke:#009688}.rtl-container.teal.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.teal.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-1{fill:#fff}.rtl-container.teal.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.teal.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-6{fill:#fff}.rtl-container.teal.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-9{fill:#fff}.rtl-container.teal.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.teal.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.teal.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-16{fill:#404040}.rtl-container.teal.day svg .fill-color-17{fill:#404040}.rtl-container.teal.day svg .fill-color-18{fill:#000}.rtl-container.teal.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-24{fill:#000}.rtl-container.teal.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.teal.day svg .fill-color-27{fill:#000}.rtl-container.teal.day svg .fill-color-28{fill:#313131}.rtl-container.teal.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-30{fill:#fff}.rtl-container.teal.day svg .fill-color-31{fill:#009688}.rtl-container.teal.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.day svg .fill-color-primary{fill:#009688}.rtl-container.teal.day svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.day svg .fill-color-primary-darker{fill:#009688}.rtl-container.teal.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.teal.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.teal.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#009688}.rtl-container.teal.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.teal.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.teal.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.teal.day .material-icons.mat-icon-no-color,.rtl-container.teal.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.teal.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.teal.day .material-icons.info-icon.info-icon-primary{color:#009688}.rtl-container.teal.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.teal.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.teal.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.teal.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.teal.day .material-icons.info-icon.arrow-downward,.rtl-container.teal.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.teal.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#009688}.rtl-container.teal.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#004d40}.rtl-container.teal.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#80cbc4}.rtl-container.teal.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.teal.day .mat-progress-bar-buffer{background-color:#b2dfdb}.rtl-container.teal.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.teal.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.teal.day .foreground.mat-progress-spinner circle,.rtl-container.teal.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.teal.day .mat-toolbar-row,.rtl-container.teal.day .mat-toolbar-single-row{height:4rem}.rtl-container.teal.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day a{color:#009688}.rtl-container.teal.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.teal.day .h-active-link{border-bottom:2px solid white}.rtl-container.teal.day .mat-icon-36{color:#0000008a}.rtl-container.teal.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.teal.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.teal.day .genseed-message{width:10%;color:#009688}.rtl-container.teal.day .border-primary{border:1px solid #009688}.rtl-container.teal.day .border-accent{border:1px solid #9e9e9e}.rtl-container.teal.day .border-warn{border:1px solid #b00020}.rtl-container.teal.day .material-icons.primary{color:#009688}.rtl-container.teal.day .material-icons.accent{color:#9e9e9e}.rtl-container.teal.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.teal.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.teal.day .row-disabled{background-color:gray}.rtl-container.teal.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.teal.day .mat-mdc-card-content,.rtl-container.teal.day .mat-mdc-card-subtitle,.rtl-container.teal.day .mat-mdc-card-title{color:#0000008a}.rtl-container.teal.day .mat-menu-panel{min-width:4rem}.rtl-container.teal.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.teal.day .horizontal-button:hover{background:#4db6ac;color:#9e9e9e}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#009688}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.teal.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.teal.day .mat-button,.rtl-container.teal.day .mat-icon-button,.rtl-container.teal.day .mat-stroked-button,.rtl-container.teal.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.teal.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.teal.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.teal.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.teal.day .cc-data-block .cc-data-value{color:#000}.rtl-container.teal.day .mat-cell,.rtl-container.teal.day .mat-header-cell,.rtl-container.teal.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.teal.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.teal.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#009688}.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#009688;opacity:1}.rtl-container.teal.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.teal.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.teal.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.teal.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.teal.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.teal.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.teal.day .more-button{color:#000}.rtl-container.teal.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.teal.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.teal.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.teal.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.teal.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.teal.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.teal.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.teal.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.teal.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.teal.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.teal.day .tab-badge .mat-badge-content.mat-badge-active{background:#009688}.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.teal.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.teal.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.teal.day .rtl-select-overlay{min-width:7rem}}.rtl-container.teal.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.teal.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.teal.day .table-actions-button{min-width:8rem}.rtl-container.teal.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.teal.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#80cbc4!important}.rtl-container.teal.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#00897b!important}.rtl-container.teal.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.teal.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.teal.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.teal.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.teal.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.teal.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.teal.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.teal.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.teal.day .color-warn{color:#b00020}.rtl-container.teal.day .fill-warn{fill:#b00020}.rtl-container.teal.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.teal.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.teal.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.teal.day .alert.alert-info a{color:#004085}.rtl-container.teal.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.teal.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.teal.day .alert.alert-warn a{color:#856404}.rtl-container.teal.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.teal.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.teal.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.teal.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.teal.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.teal.day .failed-status{color:#b00020}.rtl-container.teal.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.teal.day .svg-fill-primary{fill:#009688}.rtl-container.teal.day .svg-fill-primary-lighter{fill:#4db6ac}.rtl-container.teal.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.teal.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.teal.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.teal.day .dashboard-card-content .underline,.rtl-container.teal.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#009688}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#009688}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#009688}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon{color:#009688}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon path{fill:#009688}.rtl-container.teal.day .fa-icon-primary{color:#009688}.rtl-container.teal.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day ngx-charts-bar-vertical text,.rtl-container.teal.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.teal.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.teal.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.teal.day .mat-paginator-container{padding:0}.rtl-container.teal.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.teal.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.teal.day .invoice-animation-div .particles-circle{position:absolute;background-color:#009688;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #009688;background-color:transparent}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.teal.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.teal.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.teal.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.teal.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.teal.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-filled-caret-color: #00695c;--mat-form-field-filled-focus-active-indicator-color: #00695c;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-outlined-caret-color: #00695c;--mat-form-field-outlined-focus-outline-color: #00695c;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #00695c 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #00695c;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #00695c;--mat-slide-toggle-selected-handle-color: #00695c;--mat-slide-toggle-selected-hover-state-layer-color: #00695c;--mat-slide-toggle-selected-pressed-state-layer-color: #00695c;--mat-slide-toggle-selected-focus-handle-color: #00695c;--mat-slide-toggle-selected-hover-handle-color: #00695c;--mat-slide-toggle-selected-pressed-handle-color: #00695c;--mat-slide-toggle-selected-focus-track-color: #00897b;--mat-slide-toggle-selected-hover-track-color: #00897b;--mat-slide-toggle-selected-pressed-track-color: #00897b;--mat-slide-toggle-selected-track-color: #00897b;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #00695c;--mat-slider-focus-handle-color: #00695c;--mat-slider-handle-color: #00695c;--mat-slider-hover-handle-color: #00695c;--mat-slider-focus-state-layer-color: color-mix(in srgb, #00695c 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #00695c 4%, transparent);--mat-slider-inactive-track-color: #00695c;--mat-slider-ripple-color: #00695c;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #00695c;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #00897b;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #00695c;--mat-badge-background-color: #00695c;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #00695c 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #00695c 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #00695c 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #00695c 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.teal.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.teal.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.teal.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #00695c;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #00695c;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.teal.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.teal.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.teal.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #00695c;--mat-progress-bar-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.teal.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #00695c;--mat-chip-elevated-disabled-container-color: #00695c;--mat-chip-elevated-selected-container-color: #00695c;--mat-chip-flat-disabled-selected-container-color: #00695c;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.teal.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #00695c;--mat-radio-selected-hover-icon-color: #00695c;--mat-radio-selected-icon-color: #00695c;--mat-radio-selected-pressed-icon-color: #00695c;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.teal.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.teal.night .mdc-list-item__start,.rtl-container.teal.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #00695c;--mat-radio-selected-hover-icon-color: #00695c;--mat-radio-selected-icon-color: #00695c;--mat-radio-selected-pressed-icon-color: #00695c;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-accent .mdc-list-item__start,.rtl-container.teal.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-warn .mdc-list-item__start,.rtl-container.teal.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.teal.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #00695c;--mat-checkbox-selected-hover-icon-color: #00695c;--mat-checkbox-selected-icon-color: #00695c;--mat-checkbox-selected-pressed-icon-color: #00695c;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #00695c;--mat-checkbox-selected-hover-state-layer-color: #00695c;--mat-checkbox-selected-pressed-state-layer-color: #00695c;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#00695c}.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.teal.night .mat-mdc-tab-group,.rtl-container.teal.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #00695c;--mat-tab-active-ripple-color: #00695c;--mat-tab-inactive-ripple-color: #00695c;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #00695c;--mat-tab-active-hover-label-text-color: #00695c;--mat-tab-active-focus-indicator-color: #00695c;--mat-tab-active-hover-indicator-color: #00695c;--mat-tab-active-indicator-color: #00695c}.rtl-container.teal.night .mat-mdc-tab-group.mat-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.teal.night .mat-mdc-tab-group.mat-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #00695c;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #00695c;--mat-checkbox-selected-hover-icon-color: #00695c;--mat-checkbox-selected-icon-color: #00695c;--mat-checkbox-selected-pressed-icon-color: #00695c;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #00695c;--mat-checkbox-selected-hover-state-layer-color: #00695c;--mat-checkbox-selected-pressed-state-layer-color: #00695c;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-button.mat-primary,.rtl-container.teal.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.teal.night .mat-mdc-raised-button.mat-primary,.rtl-container.teal.night .mat-mdc-outlined-button.mat-primary,.rtl-container.teal.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #00695c;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #00695c;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-button-outlined-state-layer-color: #00695c;--mat-button-protected-container-color: #00695c;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #00695c;--mat-button-text-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-button-text-state-layer-color: #00695c;--mat-button-tonal-container-color: #00695c;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-mdc-button.mat-accent,.rtl-container.teal.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.teal.night .mat-mdc-raised-button.mat-accent,.rtl-container.teal.night .mat-mdc-outlined-button.mat-accent,.rtl-container.teal.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.teal.night .mat-mdc-button.mat-warn,.rtl-container.teal.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.teal.night .mat-mdc-raised-button.mat-warn,.rtl-container.teal.night .mat-mdc-outlined-button.mat-warn,.rtl-container.teal.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.teal.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: color-mix(in srgb, #00695c 12%, transparent)}.rtl-container.teal.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.teal.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.teal.night .mat-mdc-fab.mat-primary,.rtl-container.teal.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #00695c;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #00695c 12%, transparent);--mat-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-mdc-fab.mat-accent,.rtl-container.teal.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.teal.night .mat-mdc-fab.mat-warn,.rtl-container.teal.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.teal.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.teal.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.teal.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.teal.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.teal.night .mat-datepicker-content.mat-accent,.rtl-container.teal.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.teal.night .mat-datepicker-content.mat-warn,.rtl-container.teal.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.teal.night .mat-icon.mat-primary{--mat-icon-color: #00695c}.rtl-container.teal.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.teal.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.teal.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.teal.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #00695c;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.teal.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.teal.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.teal.night .mat-primary{color:#64ffda!important}.rtl-container.teal.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.teal.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.teal.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.teal.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.teal.night .bg-primary{background-color:#009688;color:#fff}.rtl-container.teal.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#64ffda}.rtl-container.teal.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.teal.night .currency-icon path,.rtl-container.teal.night .currency-icon polygon{fill:#fff}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.teal.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#64ffda}.rtl-container.teal.night .cc-data-block .cc-data-title{color:#64ffda}.rtl-container.teal.night .mat-stroked-button.mat-primary{border-color:#64ffda;color:#64ffda}.rtl-container.teal.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.teal.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.teal.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.teal.night .active-link,.rtl-container.teal.night .active-link .fa-icon-small,.rtl-container.teal.night .mat-select-panel .mat-option.mat-active,.rtl-container.teal.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#64ffda;font-weight:500;cursor:pointer;fill:#64ffda}.rtl-container.teal.night .help-expansion .mat-expansion-panel-header,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.teal.night .help-expansion .mat-expansion-indicator:after,.rtl-container.teal.night .help-expansion .mat-expansion-panel-content,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.teal.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.teal.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.teal.night .mat-expansion-panel,.rtl-container.teal.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.teal.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.teal.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.teal.night .mdc-data-table__header-cell,.rtl-container.teal.night .mat-mdc-paginator,.rtl-container.teal.night .mat-mdc-form-field-focus-overlay,.rtl-container.teal.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.teal.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.teal.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#64ffda}.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.teal.night .svg-donation{opacity:1!important}.rtl-container.teal.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#64ffda!important}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#64ffda!important}.rtl-container.teal.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#009688}.rtl-container.teal.night a{color:#64ffda!important;cursor:pointer}.rtl-container.teal.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.teal.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.teal.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.teal.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.teal.night .mat-mdc-select-placeholder,.rtl-container.teal.night .mat-mdc-select-value,.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#64ffda}.rtl-container.teal.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.teal.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#64ffda}.rtl-container.teal.night .mat-tree-node:hover,.rtl-container.teal.night .mat-nested-tree-node-parent:hover,.rtl-container.teal.night .mat-select-panel .mat-option:hover,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#64ffda;cursor:pointer;background:#ffffff0f}.rtl-container.teal.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.night .mat-tree-node:hover .mat-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#64ffda}.rtl-container.teal.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.teal.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#64ffda}.rtl-container.teal.night .mat-tree-node:hover .boltz-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#64ffda}.rtl-container.teal.night .mat-tree-node .sidenav-img,.rtl-container.teal.night .mat-nested-tree-node .sidenav-img,.rtl-container.teal.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.teal.night .page-title-container .page-title-img,.rtl-container.teal.night svg.top-icon-small{fill:#fff}.rtl-container.teal.night .selected-color{border-color:#4db6ac}.rtl-container.teal.night .mat-progress-bar-fill:after{background-color:#00897b}.rtl-container.teal.night .chart-legend .legend-label:hover,.rtl-container.teal.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.teal.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.teal.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#64ffda}.rtl-container.teal.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.teal.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#64ffda}.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#64ffda}.rtl-container.teal.night .mat-select-panel{background-color:#121212}.rtl-container.teal.night .mat-tree{background:#121212}.rtl-container.teal.night h4{color:#64ffda}.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.teal.night .dashboard-info-title{color:#64ffda}.rtl-container.teal.night .dashboard-info-value,.rtl-container.teal.night .dashboard-capacity-header{color:#fff}.rtl-container.teal.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.teal.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.teal.night .color-primary{color:#64ffda!important}.rtl-container.teal.night .dot-primary{background-color:#64ffda!important}.rtl-container.teal.night .dot-primary-lighter{background-color:#009688!important}.rtl-container.teal.night .mat-stepper-vertical{background-color:#121212}.rtl-container.teal.night .spinner-container h2{color:#64ffda}.rtl-container.teal.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.teal.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.teal.night svg .boltz-icon-fill{fill:#fff}.rtl-container.teal.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-primary-lighter{stroke:#4db6ac}.rtl-container.teal.night svg .stroke-color-primary{stroke:#009688}.rtl-container.teal.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.teal.night svg .fill-color-0{fill:#171717}.rtl-container.teal.night svg .fill-color-1{fill:#232323}.rtl-container.teal.night svg .fill-color-2{fill:#222}.rtl-container.teal.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.teal.night svg .fill-color-4{fill:#383838}.rtl-container.teal.night svg .fill-color-5{fill:#555}.rtl-container.teal.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.teal.night svg .fill-color-7{fill:#202020}.rtl-container.teal.night svg .fill-color-8{fill:#242424}.rtl-container.teal.night svg .fill-color-9{fill:#262626}.rtl-container.teal.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.teal.night svg .fill-color-11{fill:#171717}.rtl-container.teal.night svg .fill-color-12{fill:#ccc}.rtl-container.teal.night svg .fill-color-13{fill:#adadad}.rtl-container.teal.night svg .fill-color-14{fill:#ababab}.rtl-container.teal.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.teal.night svg .fill-color-16{fill:#707070}.rtl-container.teal.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.teal.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.teal.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.teal.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.teal.night svg .fill-color-21{fill:#cacaca}.rtl-container.teal.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.teal.night svg .fill-color-23{fill:#777}.rtl-container.teal.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.teal.night svg .fill-color-25{fill:#252525}.rtl-container.teal.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.teal.night svg .fill-color-27{fill:#000}.rtl-container.teal.night svg .fill-color-28{fill:#313131}.rtl-container.teal.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.teal.night svg .fill-color-30{fill:#fff}.rtl-container.teal.night svg .fill-color-31{fill:#009688}.rtl-container.teal.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.night svg .fill-color-primary{fill:#009688}.rtl-container.teal.night svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.night svg .fill-color-primary-darker{fill:#64ffda}.rtl-container.teal.night .mat-select-value,.rtl-container.teal.night .mat-select-arrow{color:#fff}.rtl-container.teal.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.teal.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.teal.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.teal.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.teal.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.teal.night .mat-button.mat-primary,.rtl-container.teal.night .mat-icon-button.mat-primary,.rtl-container.teal.night .mat-stroked-button.mat-primary{color:#64ffda}.rtl-container.teal.night tr.alert.alert-warn .mat-cell,.rtl-container.teal.night tr.alert.alert-warn .mat-header-cell,.rtl-container.teal.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.teal.night .material-icons.info-icon{font-size:100%;color:#64ffda}.rtl-container.teal.night .material-icons.info-icon.info-icon-primary{color:#64ffda}.rtl-container.teal.night .material-icons.info-icon.info-icon-text,.rtl-container.teal.night .material-icons.info-icon.arrow-downward,.rtl-container.teal.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.teal.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#64ffda}.rtl-container.teal.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#00695c}.rtl-container.teal.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#64ffda}.rtl-container.teal.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.teal.night .mat-progress-bar-buffer{background-color:#b2dfdb}.rtl-container.teal.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.teal.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.teal.night .foreground.mat-progress-spinner circle,.rtl-container.teal.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.teal.night .mat-toolbar-row,.rtl-container.teal.night .mat-toolbar-single-row{height:4rem}.rtl-container.teal.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.teal.night a{color:#009688}.rtl-container.teal.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.teal.night .h-active-link{border-bottom:2px solid white}.rtl-container.teal.night .mat-icon-36{color:#ffffffb3}.rtl-container.teal.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.teal.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.teal.night .genseed-message{width:10%;color:#009688}.rtl-container.teal.night .border-primary{border:1px solid #009688}.rtl-container.teal.night .border-accent{border:1px solid #aaaaaa}.rtl-container.teal.night .border-warn{border:1px solid #b00020}.rtl-container.teal.night .material-icons.primary{color:#009688}.rtl-container.teal.night .material-icons.accent{color:#aaa}.rtl-container.teal.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.teal.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.teal.night .row-disabled{background-color:gray}.rtl-container.teal.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.teal.night .mat-mdc-card-content,.rtl-container.teal.night .mat-mdc-card-subtitle,.rtl-container.teal.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.teal.night .mat-menu-panel{min-width:4rem}.rtl-container.teal.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.teal.night .horizontal-button:hover{background:#4db6ac;color:#aaa}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#009688}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.teal.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.teal.night .mat-button,.rtl-container.teal.night .mat-icon-button,.rtl-container.teal.night .mat-stroked-button,.rtl-container.teal.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.teal.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.teal.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.teal.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.teal.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.teal.night .mat-cell,.rtl-container.teal.night .mat-header-cell,.rtl-container.teal.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.teal.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.teal.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#009688}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#009688;opacity:1}.rtl-container.teal.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.teal.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.teal.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.teal.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.teal.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.teal.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.teal.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.teal.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.teal.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.teal.night .more-button{color:#fff}.rtl-container.teal.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.teal.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.teal.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.teal.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.teal.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.teal.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.teal.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.teal.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.teal.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.teal.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.teal.night .tab-badge .mat-badge-content.mat-badge-active{background:#009688}.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.teal.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.teal.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.teal.night .rtl-select-overlay{min-width:7rem}}.rtl-container.teal.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.teal.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.teal.night .table-actions-button{min-width:8rem}.rtl-container.teal.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.teal.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#80cbc4!important}.rtl-container.teal.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#00897b!important}.rtl-container.teal.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.teal.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.teal.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.teal.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.teal.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.teal.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.teal.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.teal.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.teal.night .color-warn{color:#b00020}.rtl-container.teal.night .fill-warn{fill:#b00020}.rtl-container.teal.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.teal.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.teal.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.teal.night .alert.alert-info a{color:#004085}.rtl-container.teal.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.teal.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.teal.night .alert.alert-warn a{color:#856404}.rtl-container.teal.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.teal.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.teal.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.teal.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.teal.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.teal.night .failed-status{color:#b00020}.rtl-container.teal.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.teal.night .svg-fill-primary{fill:#009688}.rtl-container.teal.night .svg-fill-primary-lighter{fill:#4db6ac}.rtl-container.teal.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.teal.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.teal.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.teal.night .dashboard-card-content .underline,.rtl-container.teal.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#009688}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#009688}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#009688}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon{color:#009688}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon path{fill:#009688}.rtl-container.teal.night .fa-icon-primary{color:#009688}.rtl-container.teal.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night ngx-charts-bar-vertical text,.rtl-container.teal.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.teal.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.teal.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.teal.night .mat-paginator-container{padding:0}.rtl-container.teal.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.teal.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.teal.night .invoice-animation-div .particles-circle{position:absolute;background-color:#009688;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #009688;background-color:transparent}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.teal.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.teal.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.teal.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.teal.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.pink.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-filled-caret-color: #e91e63;--mat-form-field-filled-focus-active-indicator-color: #e91e63;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-outlined-caret-color: #e91e63;--mat-form-field-outlined-focus-outline-color: #e91e63;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #e91e63;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #e91e63;--mat-slide-toggle-selected-handle-color: #e91e63;--mat-slide-toggle-selected-hover-state-layer-color: #e91e63;--mat-slide-toggle-selected-pressed-state-layer-color: #e91e63;--mat-slide-toggle-selected-focus-handle-color: #e91e63;--mat-slide-toggle-selected-hover-handle-color: #e91e63;--mat-slide-toggle-selected-pressed-handle-color: #e91e63;--mat-slide-toggle-selected-focus-track-color: #f06292;--mat-slide-toggle-selected-hover-track-color: #f06292;--mat-slide-toggle-selected-pressed-track-color: #f06292;--mat-slide-toggle-selected-track-color: #f06292;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #e91e63;--mat-slider-focus-handle-color: #e91e63;--mat-slider-handle-color: #e91e63;--mat-slider-hover-handle-color: #e91e63;--mat-slider-focus-state-layer-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #e91e63 4%, transparent);--mat-slider-inactive-track-color: #e91e63;--mat-slider-ripple-color: #e91e63;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #e91e63;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #f06292;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #e91e63;--mat-badge-background-color: #e91e63;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #e91e63 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #e91e63 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #e91e63 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.pink.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.pink.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.pink.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #e91e63;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #e91e63;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.pink.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.pink.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.pink.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #e91e63;--mat-progress-bar-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.pink.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #e91e63;--mat-chip-elevated-disabled-container-color: #e91e63;--mat-chip-elevated-selected-container-color: #e91e63;--mat-chip-flat-disabled-selected-container-color: #e91e63;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.pink.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #e91e63;--mat-radio-selected-hover-icon-color: #e91e63;--mat-radio-selected-icon-color: #e91e63;--mat-radio-selected-pressed-icon-color: #e91e63;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.pink.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.pink.day .mdc-list-item__start,.rtl-container.pink.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #e91e63;--mat-radio-selected-hover-icon-color: #e91e63;--mat-radio-selected-icon-color: #e91e63;--mat-radio-selected-pressed-icon-color: #e91e63;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-accent .mdc-list-item__start,.rtl-container.pink.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-warn .mdc-list-item__start,.rtl-container.pink.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #e91e63;--mat-checkbox-selected-hover-icon-color: #e91e63;--mat-checkbox-selected-icon-color: #e91e63;--mat-checkbox-selected-pressed-icon-color: #e91e63;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #e91e63;--mat-checkbox-selected-hover-state-layer-color: #e91e63;--mat-checkbox-selected-pressed-state-layer-color: #e91e63;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#e91e63}.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.pink.day .mat-mdc-tab-group,.rtl-container.pink.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #e91e63;--mat-tab-active-ripple-color: #e91e63;--mat-tab-inactive-ripple-color: #e91e63;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #e91e63;--mat-tab-active-hover-label-text-color: #e91e63;--mat-tab-active-focus-indicator-color: #e91e63;--mat-tab-active-hover-indicator-color: #e91e63;--mat-tab-active-indicator-color: #e91e63}.rtl-container.pink.day .mat-mdc-tab-group.mat-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.pink.day .mat-mdc-tab-group.mat-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #e91e63;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.pink.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #e91e63;--mat-checkbox-selected-hover-icon-color: #e91e63;--mat-checkbox-selected-icon-color: #e91e63;--mat-checkbox-selected-pressed-icon-color: #e91e63;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #e91e63;--mat-checkbox-selected-hover-state-layer-color: #e91e63;--mat-checkbox-selected-pressed-state-layer-color: #e91e63;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-button.mat-primary,.rtl-container.pink.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.pink.day .mat-mdc-raised-button.mat-primary,.rtl-container.pink.day .mat-mdc-outlined-button.mat-primary,.rtl-container.pink.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #e91e63;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #e91e63;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-button-outlined-state-layer-color: #e91e63;--mat-button-protected-container-color: #e91e63;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #e91e63;--mat-button-text-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-button-text-state-layer-color: #e91e63;--mat-button-tonal-container-color: #e91e63;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-mdc-button.mat-accent,.rtl-container.pink.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.pink.day .mat-mdc-raised-button.mat-accent,.rtl-container.pink.day .mat-mdc-outlined-button.mat-accent,.rtl-container.pink.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.pink.day .mat-mdc-button.mat-warn,.rtl-container.pink.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.pink.day .mat-mdc-raised-button.mat-warn,.rtl-container.pink.day .mat-mdc-outlined-button.mat-warn,.rtl-container.pink.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.pink.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: color-mix(in srgb, #e91e63 12%, transparent)}.rtl-container.pink.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.pink.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.pink.day .mat-mdc-fab.mat-primary,.rtl-container.pink.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #e91e63;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-mdc-fab.mat-accent,.rtl-container.pink.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.pink.day .mat-mdc-fab.mat-warn,.rtl-container.pink.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.pink.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.pink.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.pink.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.pink.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.pink.day .mat-datepicker-content.mat-accent,.rtl-container.pink.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-datepicker-content.mat-warn,.rtl-container.pink.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-icon.mat-primary{--mat-icon-color: #e91e63}.rtl-container.pink.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.pink.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.pink.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #e91e63;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.pink.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.pink.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.pink.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.pink.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.pink.day .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.pink.day .page-title,.rtl-container.pink.day .mat-mdc-select-value,.rtl-container.pink.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.pink.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.pink.day .help-expansion .mat-expansion-panel-header,.rtl-container.pink.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.pink.day .help-expansion .mat-expansion-indicator:after,.rtl-container.pink.day .help-expansion .mat-expansion-panel-content,.rtl-container.pink.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#e91e63}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.pink.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#e91e63}.rtl-container.pink.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.pink.day .mat-tree-node:hover,.rtl-container.pink.day .mat-nested-tree-node-parent:hover,.rtl-container.pink.day .mat-select-panel .mat-option:hover,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#e91e63;cursor:pointer}.rtl-container.pink.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.day .mat-tree-node:hover .mat-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#e91e63}.rtl-container.pink.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#e91e63}.rtl-container.pink.day .spinner-container h2{color:#fff}.rtl-container.pink.day .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.pink.day .mat-form-field-suffix{color:#0000008a}.rtl-container.pink.day .mat-stroked-button.mat-primary{border-color:#e91e63}.rtl-container.pink.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.pink.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.pink.day .selected-color{border-color:#f06292}.rtl-container.pink.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.pink.day table.mat-mdc-table thead tr th,.rtl-container.pink.day .page-title-container,.rtl-container.pink.day .page-sub-title-container{color:#0000008a}.rtl-container.pink.day .page-title-container .page-title-img,.rtl-container.pink.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.pink.day .page-title-container .mat-input-element,.rtl-container.pink.day .page-title-container .mat-radio-label-content,.rtl-container.pink.day .page-title-container .theme-name,.rtl-container.pink.day .page-sub-title-container .mat-input-element,.rtl-container.pink.day .page-sub-title-container .mat-radio-label-content,.rtl-container.pink.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.pink.day .cc-data-block .cc-data-title{color:#e91e63}.rtl-container.pink.day .active-link,.rtl-container.pink.day .active-link .fa-icon-small{color:#e91e63;font-weight:500;cursor:pointer;fill:#e91e63}.rtl-container.pink.day .mat-tree-node:hover,.rtl-container.pink.day .mat-nested-tree-node-parent:hover,.rtl-container.pink.day .mat-select-panel .mat-option:hover,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#e91e63;cursor:pointer;background:#0000000a}.rtl-container.pink.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.day .mat-tree-node:hover .mat-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#e91e63}.rtl-container.pink.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#e91e63}.rtl-container.pink.day .mat-tree-node .sidenav-img,.rtl-container.pink.day .mat-nested-tree-node .sidenav-img,.rtl-container.pink.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.pink.day .page-title-container .page-title-img,.rtl-container.pink.day svg.top-icon-small{fill:#000000de}.rtl-container.pink.day .mat-progress-bar-fill:after{background-color:#880e4f}.rtl-container.pink.day .modal-qr-code-container{background:#0000001f}.rtl-container.pink.day .mdc-tab__text-label,.rtl-container.pink.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.pink.day .mat-mdc-card,.rtl-container.pink.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.pink.day .dashboard-info-title{color:#e91e63}.rtl-container.pink.day .dashboard-capacity-header,.rtl-container.pink.day .dashboard-info-value{color:#0000008a}.rtl-container.pink.day .color-primary{color:#e91e63!important}.rtl-container.pink.day .dot-primary{background-color:#e91e63!important}.rtl-container.pink.day .dot-primary-lighter{background-color:#f06292!important}.rtl-container.pink.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .mat-mdc-form-field-hint{color:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.pink.day .mat-mdc-form-field-hint fa-icon svg path{fill:#e91e63}.rtl-container.pink.day .currency-icon path,.rtl-container.pink.day .currency-icon polygon{fill:#0000008a}.rtl-container.pink.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.pink.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.pink.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-primary-lighter{stroke:#f06292}.rtl-container.pink.day svg .stroke-color-primary{stroke:#e91e63}.rtl-container.pink.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.pink.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-1{fill:#fff}.rtl-container.pink.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.pink.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-6{fill:#fff}.rtl-container.pink.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-9{fill:#fff}.rtl-container.pink.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.pink.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.pink.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-16{fill:#404040}.rtl-container.pink.day svg .fill-color-17{fill:#404040}.rtl-container.pink.day svg .fill-color-18{fill:#000}.rtl-container.pink.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-24{fill:#000}.rtl-container.pink.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.pink.day svg .fill-color-27{fill:#000}.rtl-container.pink.day svg .fill-color-28{fill:#313131}.rtl-container.pink.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-30{fill:#fff}.rtl-container.pink.day svg .fill-color-31{fill:#e91e63}.rtl-container.pink.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.pink.day svg .fill-color-primary{fill:#e91e63}.rtl-container.pink.day svg .fill-color-primary-lighter{fill:#f06292}.rtl-container.pink.day svg .fill-color-primary-darker{fill:#e91e63}.rtl-container.pink.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.pink.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.pink.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#e91e63}.rtl-container.pink.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.pink.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.pink.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.pink.day .material-icons.mat-icon-no-color,.rtl-container.pink.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.pink.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.pink.day .material-icons.info-icon.info-icon-primary{color:#e91e63}.rtl-container.pink.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.pink.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.pink.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.pink.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.pink.day .material-icons.info-icon.arrow-downward,.rtl-container.pink.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.pink.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#e91e63}.rtl-container.pink.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#880e4f}.rtl-container.pink.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#f48fb1}.rtl-container.pink.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.pink.day .mat-progress-bar-buffer{background-color:#f8bbd0}.rtl-container.pink.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.pink.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.pink.day .foreground.mat-progress-spinner circle,.rtl-container.pink.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.pink.day .mat-toolbar-row,.rtl-container.pink.day .mat-toolbar-single-row{height:4rem}.rtl-container.pink.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day a{color:#e91e63}.rtl-container.pink.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.pink.day .h-active-link{border-bottom:2px solid white}.rtl-container.pink.day .mat-icon-36{color:#0000008a}.rtl-container.pink.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.pink.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.pink.day .genseed-message{width:10%;color:#e91e63}.rtl-container.pink.day .border-primary{border:1px solid #e91e63}.rtl-container.pink.day .border-accent{border:1px solid #9e9e9e}.rtl-container.pink.day .border-warn{border:1px solid #b00020}.rtl-container.pink.day .material-icons.primary{color:#e91e63}.rtl-container.pink.day .material-icons.accent{color:#9e9e9e}.rtl-container.pink.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.pink.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.pink.day .row-disabled{background-color:gray}.rtl-container.pink.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.pink.day .mat-mdc-card-content,.rtl-container.pink.day .mat-mdc-card-subtitle,.rtl-container.pink.day .mat-mdc-card-title{color:#0000008a}.rtl-container.pink.day .mat-menu-panel{min-width:4rem}.rtl-container.pink.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.pink.day .horizontal-button:hover{background:#f06292;color:#9e9e9e}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#e91e63}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.pink.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.pink.day .mat-button,.rtl-container.pink.day .mat-icon-button,.rtl-container.pink.day .mat-stroked-button,.rtl-container.pink.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.pink.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.pink.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.pink.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.pink.day .cc-data-block .cc-data-value{color:#000}.rtl-container.pink.day .mat-cell,.rtl-container.pink.day .mat-header-cell,.rtl-container.pink.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.pink.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.pink.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#e91e63}.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#e91e63;opacity:1}.rtl-container.pink.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.pink.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.pink.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.pink.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.pink.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.pink.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.pink.day .more-button{color:#000}.rtl-container.pink.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.pink.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.pink.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.pink.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.pink.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.pink.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.pink.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.pink.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.pink.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.pink.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.pink.day .tab-badge .mat-badge-content.mat-badge-active{background:#e91e63}.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.pink.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.pink.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.pink.day .rtl-select-overlay{min-width:7rem}}.rtl-container.pink.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.pink.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.pink.day .table-actions-button{min-width:8rem}.rtl-container.pink.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.pink.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#f48fb1!important}.rtl-container.pink.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#d81b60!important}.rtl-container.pink.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.pink.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.pink.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.pink.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.pink.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.pink.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.pink.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.pink.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.pink.day .color-warn{color:#b00020}.rtl-container.pink.day .fill-warn{fill:#b00020}.rtl-container.pink.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.pink.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.pink.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.pink.day .alert.alert-info a{color:#004085}.rtl-container.pink.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.pink.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.pink.day .alert.alert-warn a{color:#856404}.rtl-container.pink.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.pink.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.pink.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.pink.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.pink.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.pink.day .failed-status{color:#b00020}.rtl-container.pink.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.pink.day .svg-fill-primary{fill:#e91e63}.rtl-container.pink.day .svg-fill-primary-lighter{fill:#f06292}.rtl-container.pink.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.pink.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.pink.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.pink.day .dashboard-card-content .underline,.rtl-container.pink.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#e91e63}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#e91e63}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon{color:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon path{fill:#e91e63}.rtl-container.pink.day .fa-icon-primary{color:#e91e63}.rtl-container.pink.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day ngx-charts-bar-vertical text,.rtl-container.pink.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.pink.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.pink.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.pink.day .mat-paginator-container{padding:0}.rtl-container.pink.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.pink.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.pink.day .invoice-animation-div .particles-circle{position:absolute;background-color:#e91e63;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #e91e63;background-color:transparent}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.pink.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.pink.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.pink.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.pink.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.pink.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-filled-caret-color: #e91e63;--mat-form-field-filled-focus-active-indicator-color: #e91e63;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-outlined-caret-color: #e91e63;--mat-form-field-outlined-focus-outline-color: #e91e63;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #e91e63 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #e91e63;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-disabled-selected-icon-color: rgba(255, 255, 255, .87);--mat-slide-toggle-selected-focus-state-layer-color: #e91e63;--mat-slide-toggle-selected-handle-color: #e91e63;--mat-slide-toggle-selected-hover-state-layer-color: #e91e63;--mat-slide-toggle-selected-pressed-state-layer-color: #e91e63;--mat-slide-toggle-selected-focus-handle-color: #e91e63;--mat-slide-toggle-selected-hover-handle-color: #e91e63;--mat-slide-toggle-selected-pressed-handle-color: #e91e63;--mat-slide-toggle-selected-focus-track-color: #d81b60;--mat-slide-toggle-selected-hover-track-color: #d81b60;--mat-slide-toggle-selected-pressed-track-color: #d81b60;--mat-slide-toggle-selected-track-color: #d81b60;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #e91e63;--mat-slider-focus-handle-color: #e91e63;--mat-slider-handle-color: #e91e63;--mat-slider-hover-handle-color: #e91e63;--mat-slider-focus-state-layer-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #e91e63 4%, transparent);--mat-slider-inactive-track-color: #e91e63;--mat-slider-ripple-color: #e91e63;--mat-slider-with-tick-marks-active-container-color: rgba(255, 255, 255, .87);--mat-slider-with-tick-marks-inactive-container-color: #e91e63;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #d81b60;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #e91e63;--mat-badge-background-color: #e91e63;--mat-badge-text-color: rgba(255, 255, 255, .87);--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #e91e63 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #e91e63 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(255, 255, 255, .87);--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #e91e63 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: rgba(255, 255, 255, .87);--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.pink.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.pink.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.pink.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #e91e63;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #e91e63;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.pink.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.pink.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.pink.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #e91e63;--mat-progress-bar-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.pink.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: rgba(255, 255, 255, .87);--mat-chip-elevated-container-color: #e91e63;--mat-chip-elevated-disabled-container-color: #e91e63;--mat-chip-elevated-selected-container-color: #e91e63;--mat-chip-flat-disabled-selected-container-color: #e91e63;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(255, 255, 255, .87);--mat-chip-selected-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-disabled-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-icon-selected-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(255, 255, 255, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.pink.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #e91e63;--mat-radio-selected-hover-icon-color: #e91e63;--mat-radio-selected-icon-color: #e91e63;--mat-radio-selected-pressed-icon-color: #e91e63;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.pink.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.pink.night .mdc-list-item__start,.rtl-container.pink.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #e91e63;--mat-radio-selected-hover-icon-color: #e91e63;--mat-radio-selected-icon-color: #e91e63;--mat-radio-selected-pressed-icon-color: #e91e63;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-accent .mdc-list-item__start,.rtl-container.pink.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-warn .mdc-list-item__start,.rtl-container.pink.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.pink.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #e91e63;--mat-checkbox-selected-hover-icon-color: #e91e63;--mat-checkbox-selected-icon-color: #e91e63;--mat-checkbox-selected-pressed-icon-color: #e91e63;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #e91e63;--mat-checkbox-selected-hover-state-layer-color: #e91e63;--mat-checkbox-selected-pressed-state-layer-color: #e91e63;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#e91e63}.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.pink.night .mat-mdc-tab-group,.rtl-container.pink.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #e91e63;--mat-tab-active-ripple-color: #e91e63;--mat-tab-inactive-ripple-color: #e91e63;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #e91e63;--mat-tab-active-hover-label-text-color: #e91e63;--mat-tab-active-focus-indicator-color: #e91e63;--mat-tab-active-hover-indicator-color: #e91e63;--mat-tab-active-indicator-color: #e91e63}.rtl-container.pink.night .mat-mdc-tab-group.mat-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.pink.night .mat-mdc-tab-group.mat-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #e91e63;--mat-tab-foreground-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: rgba(255, 255, 255, .87);--mat-checkbox-selected-focus-icon-color: #e91e63;--mat-checkbox-selected-hover-icon-color: #e91e63;--mat-checkbox-selected-icon-color: #e91e63;--mat-checkbox-selected-pressed-icon-color: #e91e63;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #e91e63;--mat-checkbox-selected-hover-state-layer-color: #e91e63;--mat-checkbox-selected-pressed-state-layer-color: #e91e63;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-button.mat-primary,.rtl-container.pink.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.pink.night .mat-mdc-raised-button.mat-primary,.rtl-container.pink.night .mat-mdc-outlined-button.mat-primary,.rtl-container.pink.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #e91e63;--mat-button-filled-label-text-color: rgba(255, 255, 255, .87);--mat-button-filled-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(255, 255, 255, .87);--mat-button-outlined-label-text-color: #e91e63;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-button-outlined-state-layer-color: #e91e63;--mat-button-protected-container-color: #e91e63;--mat-button-protected-label-text-color: rgba(255, 255, 255, .87);--mat-button-protected-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(255, 255, 255, .87);--mat-button-text-label-text-color: #e91e63;--mat-button-text-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-button-text-state-layer-color: #e91e63;--mat-button-tonal-container-color: #e91e63;--mat-button-tonal-label-text-color: rgba(255, 255, 255, .87);--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-mdc-button.mat-accent,.rtl-container.pink.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.pink.night .mat-mdc-raised-button.mat-accent,.rtl-container.pink.night .mat-mdc-outlined-button.mat-accent,.rtl-container.pink.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.pink.night .mat-mdc-button.mat-warn,.rtl-container.pink.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.pink.night .mat-mdc-raised-button.mat-warn,.rtl-container.pink.night .mat-mdc-outlined-button.mat-warn,.rtl-container.pink.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.pink.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: color-mix(in srgb, #e91e63 12%, transparent)}.rtl-container.pink.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.pink.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.pink.night .mat-mdc-fab.mat-primary,.rtl-container.pink.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #e91e63;--mat-fab-foreground-color: rgba(255, 255, 255, .87);--mat-fab-ripple-color: color-mix(in srgb, #e91e63 12%, transparent);--mat-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: rgba(255, 255, 255, .87);--mat-fab-small-ripple-color: color-mix(in srgb, rgba(255, 255, 255, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(255, 255, 255, .87);--mat-fab-state-layer-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-mdc-fab.mat-accent,.rtl-container.pink.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.pink.night .mat-mdc-fab.mat-warn,.rtl-container.pink.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.pink.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.pink.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.pink.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.pink.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.pink.night .mat-datepicker-content.mat-accent,.rtl-container.pink.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.pink.night .mat-datepicker-content.mat-warn,.rtl-container.pink.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.pink.night .mat-icon.mat-primary{--mat-icon-color: #e91e63}.rtl-container.pink.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.pink.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.pink.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.pink.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #e91e63;--mat-toolbar-container-text-color: rgba(255, 255, 255, .87)}.rtl-container.pink.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.pink.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.pink.night .mat-primary{color:#ff4081!important}.rtl-container.pink.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.pink.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.pink.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.pink.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.pink.night .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#ff4081}.rtl-container.pink.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.pink.night .currency-icon path,.rtl-container.pink.night .currency-icon polygon{fill:#fff}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.pink.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#ff4081}.rtl-container.pink.night .cc-data-block .cc-data-title{color:#ff4081}.rtl-container.pink.night .mat-stroked-button.mat-primary{border-color:#ff4081;color:#ff4081}.rtl-container.pink.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.pink.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.pink.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.pink.night .active-link,.rtl-container.pink.night .active-link .fa-icon-small,.rtl-container.pink.night .mat-select-panel .mat-option.mat-active,.rtl-container.pink.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#ff4081;font-weight:500;cursor:pointer;fill:#ff4081}.rtl-container.pink.night .help-expansion .mat-expansion-panel-header,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.pink.night .help-expansion .mat-expansion-indicator:after,.rtl-container.pink.night .help-expansion .mat-expansion-panel-content,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.pink.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.pink.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.pink.night .mat-expansion-panel,.rtl-container.pink.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.pink.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.pink.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.pink.night .mdc-data-table__header-cell,.rtl-container.pink.night .mat-mdc-paginator,.rtl-container.pink.night .mat-mdc-form-field-focus-overlay,.rtl-container.pink.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.pink.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.pink.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#ff4081}.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.pink.night .svg-donation{opacity:1!important}.rtl-container.pink.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#ff4081!important}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#ff4081!important}.rtl-container.pink.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#e91e63}.rtl-container.pink.night a{color:#ff4081!important;cursor:pointer}.rtl-container.pink.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.pink.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.pink.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.pink.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.pink.night .mat-mdc-select-placeholder,.rtl-container.pink.night .mat-mdc-select-value,.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#ff4081}.rtl-container.pink.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.pink.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#ff4081}.rtl-container.pink.night .mat-tree-node:hover,.rtl-container.pink.night .mat-nested-tree-node-parent:hover,.rtl-container.pink.night .mat-select-panel .mat-option:hover,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#ff4081;cursor:pointer;background:#ffffff0f}.rtl-container.pink.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.night .mat-tree-node:hover .mat-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#ff4081}.rtl-container.pink.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.pink.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#ff4081}.rtl-container.pink.night .mat-tree-node:hover .boltz-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#ff4081}.rtl-container.pink.night .mat-tree-node .sidenav-img,.rtl-container.pink.night .mat-nested-tree-node .sidenav-img,.rtl-container.pink.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.pink.night .page-title-container .page-title-img,.rtl-container.pink.night svg.top-icon-small{fill:#fff}.rtl-container.pink.night .selected-color{border-color:#f06292}.rtl-container.pink.night .mat-progress-bar-fill:after{background-color:#d81b60}.rtl-container.pink.night .chart-legend .legend-label:hover,.rtl-container.pink.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.pink.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.pink.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#ff4081}.rtl-container.pink.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.pink.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#ff4081}.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#ff4081}.rtl-container.pink.night .mat-select-panel{background-color:#121212}.rtl-container.pink.night .mat-tree{background:#121212}.rtl-container.pink.night h4{color:#ff4081}.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.pink.night .dashboard-info-title{color:#ff4081}.rtl-container.pink.night .dashboard-info-value,.rtl-container.pink.night .dashboard-capacity-header{color:#fff}.rtl-container.pink.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.pink.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.pink.night .color-primary{color:#ff4081!important}.rtl-container.pink.night .dot-primary{background-color:#ff4081!important}.rtl-container.pink.night .dot-primary-lighter{background-color:#e91e63!important}.rtl-container.pink.night .mat-stepper-vertical{background-color:#121212}.rtl-container.pink.night .spinner-container h2{color:#ff4081}.rtl-container.pink.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.pink.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.pink.night svg .boltz-icon-fill{fill:#fff}.rtl-container.pink.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-primary-lighter{stroke:#f06292}.rtl-container.pink.night svg .stroke-color-primary{stroke:#e91e63}.rtl-container.pink.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.pink.night svg .fill-color-0{fill:#171717}.rtl-container.pink.night svg .fill-color-1{fill:#232323}.rtl-container.pink.night svg .fill-color-2{fill:#222}.rtl-container.pink.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.pink.night svg .fill-color-4{fill:#383838}.rtl-container.pink.night svg .fill-color-5{fill:#555}.rtl-container.pink.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.pink.night svg .fill-color-7{fill:#202020}.rtl-container.pink.night svg .fill-color-8{fill:#242424}.rtl-container.pink.night svg .fill-color-9{fill:#262626}.rtl-container.pink.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.pink.night svg .fill-color-11{fill:#171717}.rtl-container.pink.night svg .fill-color-12{fill:#ccc}.rtl-container.pink.night svg .fill-color-13{fill:#adadad}.rtl-container.pink.night svg .fill-color-14{fill:#ababab}.rtl-container.pink.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.pink.night svg .fill-color-16{fill:#707070}.rtl-container.pink.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.pink.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.pink.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.pink.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.pink.night svg .fill-color-21{fill:#cacaca}.rtl-container.pink.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.pink.night svg .fill-color-23{fill:#777}.rtl-container.pink.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.pink.night svg .fill-color-25{fill:#252525}.rtl-container.pink.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.pink.night svg .fill-color-27{fill:#000}.rtl-container.pink.night svg .fill-color-28{fill:#313131}.rtl-container.pink.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.pink.night svg .fill-color-30{fill:#fff}.rtl-container.pink.night svg .fill-color-31{fill:#e91e63}.rtl-container.pink.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.pink.night svg .fill-color-primary{fill:#e91e63}.rtl-container.pink.night svg .fill-color-primary-lighter{fill:#f06292}.rtl-container.pink.night svg .fill-color-primary-darker{fill:#ff4081}.rtl-container.pink.night .mat-select-value,.rtl-container.pink.night .mat-select-arrow{color:#fff}.rtl-container.pink.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.pink.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.pink.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.pink.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.pink.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.pink.night .mat-button.mat-primary,.rtl-container.pink.night .mat-icon-button.mat-primary,.rtl-container.pink.night .mat-stroked-button.mat-primary{color:#ff4081}.rtl-container.pink.night tr.alert.alert-warn .mat-cell,.rtl-container.pink.night tr.alert.alert-warn .mat-header-cell,.rtl-container.pink.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.pink.night .material-icons.info-icon{font-size:100%;color:#ff4081}.rtl-container.pink.night .material-icons.info-icon.info-icon-primary{color:#ff4081}.rtl-container.pink.night .material-icons.info-icon.info-icon-text,.rtl-container.pink.night .material-icons.info-icon.arrow-downward,.rtl-container.pink.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.pink.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#ff4081}.rtl-container.pink.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#ad1457}.rtl-container.pink.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#ff4081}.rtl-container.pink.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.pink.night .mat-progress-bar-buffer{background-color:#f8bbd0}.rtl-container.pink.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.pink.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.pink.night .foreground.mat-progress-spinner circle,.rtl-container.pink.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.pink.night .mat-toolbar-row,.rtl-container.pink.night .mat-toolbar-single-row{height:4rem}.rtl-container.pink.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.pink.night a{color:#e91e63}.rtl-container.pink.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.pink.night .h-active-link{border-bottom:2px solid white}.rtl-container.pink.night .mat-icon-36{color:#ffffffb3}.rtl-container.pink.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.pink.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.pink.night .genseed-message{width:10%;color:#e91e63}.rtl-container.pink.night .border-primary{border:1px solid #e91e63}.rtl-container.pink.night .border-accent{border:1px solid #aaaaaa}.rtl-container.pink.night .border-warn{border:1px solid #b00020}.rtl-container.pink.night .material-icons.primary{color:#e91e63}.rtl-container.pink.night .material-icons.accent{color:#aaa}.rtl-container.pink.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.pink.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.pink.night .row-disabled{background-color:gray}.rtl-container.pink.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.pink.night .mat-mdc-card-content,.rtl-container.pink.night .mat-mdc-card-subtitle,.rtl-container.pink.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.pink.night .mat-menu-panel{min-width:4rem}.rtl-container.pink.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.pink.night .horizontal-button:hover{background:#f06292;color:#aaa}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#e91e63}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.pink.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.pink.night .mat-button,.rtl-container.pink.night .mat-icon-button,.rtl-container.pink.night .mat-stroked-button,.rtl-container.pink.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.pink.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.pink.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.pink.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.pink.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.pink.night .mat-cell,.rtl-container.pink.night .mat-header-cell,.rtl-container.pink.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.pink.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.pink.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#e91e63}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#e91e63;opacity:1}.rtl-container.pink.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.pink.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.pink.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.pink.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.pink.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.pink.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.pink.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.pink.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.pink.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.pink.night .more-button{color:#fff}.rtl-container.pink.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.pink.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.pink.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.pink.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.pink.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.pink.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.pink.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.pink.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.pink.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.pink.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.pink.night .tab-badge .mat-badge-content.mat-badge-active{background:#e91e63}.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.pink.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.pink.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.pink.night .rtl-select-overlay{min-width:7rem}}.rtl-container.pink.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.pink.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.pink.night .table-actions-button{min-width:8rem}.rtl-container.pink.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.pink.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#f48fb1!important}.rtl-container.pink.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#d81b60!important}.rtl-container.pink.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.pink.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.pink.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.pink.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.pink.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.pink.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.pink.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.pink.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.pink.night .color-warn{color:#b00020}.rtl-container.pink.night .fill-warn{fill:#b00020}.rtl-container.pink.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.pink.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.pink.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.pink.night .alert.alert-info a{color:#004085}.rtl-container.pink.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.pink.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.pink.night .alert.alert-warn a{color:#856404}.rtl-container.pink.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.pink.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.pink.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.pink.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.pink.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.pink.night .failed-status{color:#b00020}.rtl-container.pink.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.pink.night .svg-fill-primary{fill:#e91e63}.rtl-container.pink.night .svg-fill-primary-lighter{fill:#f06292}.rtl-container.pink.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.pink.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.pink.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.pink.night .dashboard-card-content .underline,.rtl-container.pink.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#e91e63}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#e91e63}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#e91e63}.rtl-container.pink.night .mat-mdc-form-field-hint .currency-icon{color:#e91e63}.rtl-container.pink.night .mat-mdc-form-field-hint .currency-icon path{fill:#e91e63}.rtl-container.pink.night .fa-icon-primary{color:#e91e63}.rtl-container.pink.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night ngx-charts-bar-vertical text,.rtl-container.pink.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.pink.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.pink.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.pink.night .mat-paginator-container{padding:0}.rtl-container.pink.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.pink.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.pink.night .invoice-animation-div .particles-circle{position:absolute;background-color:#e91e63;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #e91e63;background-color:transparent}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.pink.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.pink.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.pink.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.pink.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.yellow.day{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-card-elevated-container-color: white;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: white;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mat-card-filled-container-color: white;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: #424242;--mat-tooltip-supporting-text-color: white;--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-filled-caret-color: #945f1f;--mat-form-field-filled-focus-active-indicator-color: #945f1f;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-outlined-caret-color: #945f1f;--mat-form-field-outlined-focus-outline-color: #945f1f;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #f6f6f6;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-form-field-filled-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-hover-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(0, 0, 0, .54);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: rgba(0, 0, 0, .87);--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-hover-label-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(0, 0, 0, .54);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(0, 0, 0, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-form-field-outlined-hover-outline-color: rgba(0, 0, 0, .87);--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #945f1f;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: white;--mat-dialog-container-color: white;--mat-dialog-subhead-color: rgba(0, 0, 0, .87);--mat-dialog-supporting-text-color: rgba(0, 0, 0, .54);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #945f1f;--mat-slide-toggle-selected-handle-color: #945f1f;--mat-slide-toggle-selected-hover-state-layer-color: #945f1f;--mat-slide-toggle-selected-pressed-state-layer-color: #945f1f;--mat-slide-toggle-selected-focus-handle-color: #945f1f;--mat-slide-toggle-selected-hover-handle-color: #945f1f;--mat-slide-toggle-selected-pressed-handle-color: #945f1f;--mat-slide-toggle-selected-focus-track-color: #b48f62;--mat-slide-toggle-selected-hover-track-color: #b48f62;--mat-slide-toggle-selected-pressed-track-color: #b48f62;--mat-slide-toggle-selected-track-color: #b48f62;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-selected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-handle-color: rgba(0, 0, 0, .87);--mat-slide-toggle-disabled-unselected-icon-color: #f6f6f6;--mat-slide-toggle-disabled-unselected-track-color: rgba(0, 0, 0, .87);--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: white;--mat-slide-toggle-label-text-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-handle-color: #424242;--mat-slide-toggle-unselected-focus-handle-color: #424242;--mat-slide-toggle-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-focus-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-icon-color: #f6f6f6;--mat-slide-toggle-unselected-handle-color: rgba(0, 0, 0, .54);--mat-slide-toggle-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-hover-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-handle-color: #424242;--mat-slide-toggle-unselected-pressed-track-color: rgba(0, 0, 0, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-slide-toggle-unselected-track-color: rgba(0, 0, 0, .12);--mat-slider-active-track-color: #945f1f;--mat-slider-focus-handle-color: #945f1f;--mat-slider-handle-color: #945f1f;--mat-slider-hover-handle-color: #945f1f;--mat-slider-focus-state-layer-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #945f1f 4%, transparent);--mat-slider-inactive-track-color: #945f1f;--mat-slider-ripple-color: #945f1f;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #945f1f;--mat-slider-disabled-active-track-color: rgba(0, 0, 0, .87);--mat-slider-disabled-handle-color: rgba(0, 0, 0, .87);--mat-slider-disabled-inactive-track-color: rgba(0, 0, 0, .87);--mat-slider-label-container-color: #424242;--mat-slider-label-label-text-color: white;--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: rgba(0, 0, 0, .87);--mat-slider-with-tick-marks-disabled-container-color: rgba(0, 0, 0, .87);--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mat-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .54);--mat-list-list-item-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-leading-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .54);--mat-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87);--mat-button-filled-container-color: white;--mat-button-filled-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: rgba(0, 0, 0, .87);--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-filled-state-layer-color: rgba(0, 0, 0, .87);--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: rgba(0, 0, 0, .87);--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-outlined-state-layer-color: rgba(0, 0, 0, .87);--mat-button-protected-container-color: white;--mat-button-protected-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: rgba(0, 0, 0, .87);--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-protected-state-layer-color: rgba(0, 0, 0, .87);--mat-button-text-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: rgba(0, 0, 0, .87);--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-text-state-layer-color: rgba(0, 0, 0, .87);--mat-button-tonal-container-color: white;--mat-button-tonal-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: rgba(0, 0, 0, .87);--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-tonal-state-layer-color: rgba(0, 0, 0, .87);--mat-icon-button-disabled-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-icon-button-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-container-color: white;--mat-fab-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: rgba(0, 0, 0, .87);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-container-color: white;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(0, 0, 0, .54);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: rgba(0, 0, 0, .87);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-fab-small-state-layer-color: rgba(0, 0, 0, .87);--mat-fab-state-layer-color: rgba(0, 0, 0, .87);--mat-snack-bar-container-color: #424242;--mat-snack-bar-supporting-text-color: white;--mat-snack-bar-button-color: #b48f62;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mat-progress-spinner-active-indicator-color: #945f1f;--mat-badge-background-color: #945f1f;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-button-toggle-background-color: white;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-disabled-state-background-color: white;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-divider-color: rgba(0, 0, 0, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: white;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-legacy-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-selected-state-background-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-button-toggle-state-layer-color: rgba(0, 0, 0, .87);--mat-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #945f1f 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #945f1f 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #945f1f 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: rgba(0, 0, 0, .87);--mat-toolbar-container-background-color: white;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87);--mat-timepicker-container-background-color: white}.rtl-container.yellow.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.yellow.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent)}.rtl-container.yellow.day .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #945f1f;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #945f1f;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.yellow.day .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #424242;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #424242;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.yellow.day .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(0, 0, 0, .54);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #fafafa;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent)}.rtl-container.yellow.day .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #945f1f;--mat-progress-bar-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #424242;--mat-progress-bar-track-color: rgba(66, 66, 66, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-filled-caret-color: #424242;--mat-form-field-filled-focus-active-indicator-color: #424242;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent);--mat-form-field-outlined-caret-color: #424242;--mat-form-field-outlined-focus-outline-color: #424242;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #424242 87%, transparent)}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #424242;--mat-select-invalid-arrow-color: #b00020}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-placeholder-text-color: rgba(0, 0, 0, .54);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.yellow.day .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: rgba(0, 0, 0, .87);--mat-chip-elevated-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, rgba(0, 0, 0, .87) 12%, transparent);--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: rgba(0, 0, 0, .87);--mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-icon-selected-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, .87);--mat-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #945f1f;--mat-chip-elevated-disabled-container-color: #945f1f;--mat-chip-elevated-selected-container-color: #945f1f;--mat-chip-flat-disabled-selected-container-color: #945f1f;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #424242;--mat-chip-elevated-disabled-container-color: #424242;--mat-chip-elevated-selected-container-color: #424242;--mat-chip-flat-disabled-selected-container-color: #424242;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #424242;--mat-slide-toggle-selected-handle-color: #424242;--mat-slide-toggle-selected-hover-state-layer-color: #424242;--mat-slide-toggle-selected-pressed-state-layer-color: #424242;--mat-slide-toggle-selected-focus-handle-color: #424242;--mat-slide-toggle-selected-hover-handle-color: #424242;--mat-slide-toggle-selected-pressed-handle-color: #424242;--mat-slide-toggle-selected-focus-track-color: #e0e0e0;--mat-slide-toggle-selected-hover-track-color: #e0e0e0;--mat-slide-toggle-selected-pressed-track-color: #e0e0e0;--mat-slide-toggle-selected-track-color: #e0e0e0}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #c84d63;--mat-slide-toggle-selected-hover-track-color: #c84d63;--mat-slide-toggle-selected-pressed-track-color: #c84d63;--mat-slide-toggle-selected-track-color: #c84d63}.rtl-container.yellow.day .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #945f1f;--mat-radio-selected-hover-icon-color: #945f1f;--mat-radio-selected-icon-color: #945f1f;--mat-radio-selected-pressed-icon-color: #945f1f;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-accent{--mat-slider-active-track-color: #424242;--mat-slider-focus-handle-color: #424242;--mat-slider-handle-color: #424242;--mat-slider-hover-handle-color: #424242;--mat-slider-focus-state-layer-color: color-mix(in srgb, #424242 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #424242 4%, transparent);--mat-slider-inactive-track-color: #424242;--mat-slider-ripple-color: #424242;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #424242}.rtl-container.yellow.day .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.yellow.day .mdc-list-item__start,.rtl-container.yellow.day .mdc-list-item__end{--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #945f1f;--mat-radio-selected-hover-icon-color: #945f1f;--mat-radio-selected-icon-color: #945f1f;--mat-radio-selected-pressed-icon-color: #945f1f;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-accent .mdc-list-item__start,.rtl-container.yellow.day .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #424242;--mat-radio-selected-hover-icon-color: #424242;--mat-radio-selected-icon-color: #424242;--mat-radio-selected-pressed-icon-color: #424242;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-warn .mdc-list-item__start,.rtl-container.yellow.day .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-radio-disabled-selected-icon-color: rgba(0, 0, 0, .87);--mat-radio-disabled-unselected-icon-color: rgba(0, 0, 0, .87);--mat-radio-label-text-color: rgba(0, 0, 0, .87);--mat-radio-ripple-color: rgba(0, 0, 0, .87);--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mat-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #945f1f;--mat-checkbox-selected-hover-icon-color: #945f1f;--mat-checkbox-selected-icon-color: #945f1f;--mat-checkbox-selected-pressed-icon-color: #945f1f;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #945f1f;--mat-checkbox-selected-hover-state-layer-color: #945f1f;--mat-checkbox-selected-pressed-state-layer-color: #945f1f;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #424242;--mat-checkbox-selected-hover-icon-color: #424242;--mat-checkbox-selected-icon-color: #424242;--mat-checkbox-selected-pressed-icon-color: #424242;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #424242;--mat-checkbox-selected-hover-state-layer-color: #424242;--mat-checkbox-selected-pressed-state-layer-color: #424242;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-label-text-color: rgba(0, 0, 0, .87);--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#945f1f}.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.yellow.day .mat-mdc-tab-group,.rtl-container.yellow.day .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #945f1f;--mat-tab-active-ripple-color: #945f1f;--mat-tab-inactive-ripple-color: #945f1f;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #945f1f;--mat-tab-active-hover-label-text-color: #945f1f;--mat-tab-active-focus-indicator-color: #945f1f;--mat-tab-active-hover-indicator-color: #945f1f;--mat-tab-active-indicator-color: #945f1f}.rtl-container.yellow.day .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #424242;--mat-tab-active-ripple-color: #424242;--mat-tab-inactive-ripple-color: #424242;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #424242;--mat-tab-active-hover-label-text-color: #424242;--mat-tab-active-focus-indicator-color: #424242;--mat-tab-active-hover-indicator-color: #424242;--mat-tab-active-indicator-color: #424242}.rtl-container.yellow.day .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(0, 0, 0, .54);--mat-tab-pagination-icon-color: rgba(0, 0, 0, .87);--mat-tab-inactive-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(0, 0, 0, .54);--mat-tab-inactive-hover-label-text-color: rgba(0, 0, 0, .54);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #945f1f;--mat-tab-foreground-color: #ffffff}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #424242;--mat-tab-foreground-color: white}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.yellow.day .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #945f1f;--mat-checkbox-selected-hover-icon-color: #945f1f;--mat-checkbox-selected-icon-color: #945f1f;--mat-checkbox-selected-pressed-icon-color: #945f1f;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #945f1f;--mat-checkbox-selected-hover-state-layer-color: #945f1f;--mat-checkbox-selected-pressed-state-layer-color: #945f1f;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-icon-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-hover-state-layer-color: rgba(0, 0, 0, .87);--mat-checkbox-unselected-pressed-state-layer-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-button.mat-primary,.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-primary,.rtl-container.yellow.day .mat-mdc-raised-button.mat-primary,.rtl-container.yellow.day .mat-mdc-outlined-button.mat-primary,.rtl-container.yellow.day .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #945f1f;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #945f1f;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-button-outlined-state-layer-color: #945f1f;--mat-button-protected-container-color: #945f1f;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #945f1f;--mat-button-text-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-button-text-state-layer-color: #945f1f;--mat-button-tonal-container-color: #945f1f;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.yellow.day .mat-mdc-button.mat-accent,.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-accent,.rtl-container.yellow.day .mat-mdc-raised-button.mat-accent,.rtl-container.yellow.day .mat-mdc-outlined-button.mat-accent,.rtl-container.yellow.day .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #424242;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #424242;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-outlined-state-layer-color: #424242;--mat-button-protected-container-color: #424242;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #424242;--mat-button-text-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-button-text-state-layer-color: #424242;--mat-button-tonal-container-color: #424242;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.yellow.day .mat-mdc-button.mat-warn,.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-warn,.rtl-container.yellow.day .mat-mdc-raised-button.mat-warn,.rtl-container.yellow.day .mat-mdc-outlined-button.mat-warn,.rtl-container.yellow.day .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(0, 0, 0, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.yellow.day .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: color-mix(in srgb, #945f1f 12%, transparent)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: color-mix(in srgb, #424242 12%, transparent)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.yellow.day .mat-mdc-fab.mat-primary,.rtl-container.yellow.day .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #945f1f;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.yellow.day .mat-mdc-fab.mat-accent,.rtl-container.yellow.day .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #424242 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.yellow.day .mat-mdc-fab.mat-warn,.rtl-container.yellow.day .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.yellow.day .mat-accent{--mat-progress-spinner-active-indicator-color: #424242}.rtl-container.yellow.day .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.yellow.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.yellow.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.yellow.day .mat-datepicker-content.mat-accent,.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #424242 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #424242 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #424242 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #424242;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-datepicker-content.mat-warn,.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #424242 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .54);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, rgba(0, 0, 0, .87) 38%, transparent);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-icon.mat-primary{--mat-icon-color: #945f1f}.rtl-container.yellow.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.yellow.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.yellow.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #945f1f;--mat-toolbar-container-text-color: #ffffff}.rtl-container.yellow.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.yellow.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.yellow.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.yellow.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.yellow.day .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.yellow.day .page-title,.rtl-container.yellow.day .mat-mdc-select-value,.rtl-container.yellow.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.yellow.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.yellow.day .help-expansion .mat-expansion-indicator:after,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-content,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#945f1f}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#9e9e9e}.rtl-container.yellow.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#945f1f}.rtl-container.yellow.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.yellow.day .mat-tree-node:hover,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover,.rtl-container.yellow.day .mat-select-panel .mat-option:hover,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#945f1f;cursor:pointer}.rtl-container.yellow.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.day .mat-tree-node:hover .mat-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#945f1f}.rtl-container.yellow.day .spinner-container h2{color:#fff}.rtl-container.yellow.day .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.yellow.day .mat-form-field-suffix{color:#0000008a}.rtl-container.yellow.day .mat-stroked-button.mat-primary{border-color:#945f1f}.rtl-container.yellow.day .mat-stroked-button.mat-accent{border-color:#9e9e9e}.rtl-container.yellow.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.yellow.day .selected-color{border-color:#b48f62}.rtl-container.yellow.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.yellow.day table.mat-mdc-table thead tr th,.rtl-container.yellow.day .page-title-container,.rtl-container.yellow.day .page-sub-title-container{color:#0000008a}.rtl-container.yellow.day .page-title-container .page-title-img,.rtl-container.yellow.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.yellow.day .page-title-container .mat-input-element,.rtl-container.yellow.day .page-title-container .mat-radio-label-content,.rtl-container.yellow.day .page-title-container .theme-name,.rtl-container.yellow.day .page-sub-title-container .mat-input-element,.rtl-container.yellow.day .page-sub-title-container .mat-radio-label-content,.rtl-container.yellow.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.yellow.day .cc-data-block .cc-data-title{color:#945f1f}.rtl-container.yellow.day .active-link,.rtl-container.yellow.day .active-link .fa-icon-small{color:#945f1f;font-weight:500;cursor:pointer;fill:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover,.rtl-container.yellow.day .mat-select-panel .mat-option:hover,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#945f1f;cursor:pointer;background:#0000000a}.rtl-container.yellow.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.day .mat-tree-node:hover .mat-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#945f1f}.rtl-container.yellow.day .mat-tree-node .sidenav-img,.rtl-container.yellow.day .mat-nested-tree-node .sidenav-img,.rtl-container.yellow.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.yellow.day .page-title-container .page-title-img,.rtl-container.yellow.day svg.top-icon-small{fill:#000000de}.rtl-container.yellow.day .mat-progress-bar-fill:after{background-color:#65320a}.rtl-container.yellow.day .modal-qr-code-container{background:#0000001f}.rtl-container.yellow.day .mdc-tab__text-label,.rtl-container.yellow.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.yellow.day .mat-mdc-card,.rtl-container.yellow.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.yellow.day .dashboard-info-title{color:#945f1f}.rtl-container.yellow.day .dashboard-capacity-header,.rtl-container.yellow.day .dashboard-info-value{color:#0000008a}.rtl-container.yellow.day .color-primary{color:#945f1f!important}.rtl-container.yellow.day .dot-primary{background-color:#945f1f!important}.rtl-container.yellow.day .dot-primary-lighter{background-color:#b48f62!important}.rtl-container.yellow.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-mdc-form-field-hint{color:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.yellow.day .mat-mdc-form-field-hint fa-icon svg path{fill:#945f1f}.rtl-container.yellow.day .currency-icon path,.rtl-container.yellow.day .currency-icon polygon{fill:#0000008a}.rtl-container.yellow.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.yellow.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.yellow.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-primary-lighter{stroke:#b48f62}.rtl-container.yellow.day svg .stroke-color-primary{stroke:#945f1f}.rtl-container.yellow.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.yellow.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-1{fill:#fff}.rtl-container.yellow.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.yellow.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-6{fill:#fff}.rtl-container.yellow.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-9{fill:#fff}.rtl-container.yellow.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.yellow.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.yellow.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-16{fill:#404040}.rtl-container.yellow.day svg .fill-color-17{fill:#404040}.rtl-container.yellow.day svg .fill-color-18{fill:#000}.rtl-container.yellow.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-24{fill:#000}.rtl-container.yellow.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.yellow.day svg .fill-color-27{fill:#000}.rtl-container.yellow.day svg .fill-color-28{fill:#313131}.rtl-container.yellow.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-30{fill:#fff}.rtl-container.yellow.day svg .fill-color-31{fill:#945f1f}.rtl-container.yellow.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.yellow.day svg .fill-color-primary{fill:#945f1f}.rtl-container.yellow.day svg .fill-color-primary-lighter{fill:#b48f62}.rtl-container.yellow.day svg .fill-color-primary-darker{fill:#945f1f}.rtl-container.yellow.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.yellow.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.yellow.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#945f1f}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.yellow.day .material-icons.mat-icon-no-color,.rtl-container.yellow.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.yellow.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.yellow.day .material-icons.info-icon.info-icon-primary{color:#945f1f}.rtl-container.yellow.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.yellow.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.yellow.day .material-icons.mat-icon-no-color.arrow-downward,.rtl-container.yellow.day .material-icons.mat-icon-no-color.arrow-upward,.rtl-container.yellow.day .material-icons.info-icon.arrow-downward,.rtl-container.yellow.day .material-icons.info-icon.arrow-upward{font-size:150%;color:#fff}.rtl-container.yellow.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#945f1f}.rtl-container.yellow.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#65320a}.rtl-container.yellow.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#caaf8f}.rtl-container.yellow.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.yellow.day .mat-progress-bar-buffer{background-color:#dfcfbc}.rtl-container.yellow.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.yellow.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.yellow.day .foreground.mat-progress-spinner circle,.rtl-container.yellow.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.yellow.day .mat-toolbar-row,.rtl-container.yellow.day .mat-toolbar-single-row{height:4rem}.rtl-container.yellow.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day a{color:#945f1f}.rtl-container.yellow.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.yellow.day .h-active-link{border-bottom:2px solid white}.rtl-container.yellow.day .mat-icon-36{color:#0000008a}.rtl-container.yellow.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.yellow.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.yellow.day .genseed-message{width:10%;color:#945f1f}.rtl-container.yellow.day .border-primary{border:1px solid #945f1f}.rtl-container.yellow.day .border-accent{border:1px solid #9e9e9e}.rtl-container.yellow.day .border-warn{border:1px solid #b00020}.rtl-container.yellow.day .material-icons.primary{color:#945f1f}.rtl-container.yellow.day .material-icons.accent{color:#9e9e9e}.rtl-container.yellow.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.yellow.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.yellow.day .row-disabled{background-color:gray}.rtl-container.yellow.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.yellow.day .mat-mdc-card-content,.rtl-container.yellow.day .mat-mdc-card-subtitle,.rtl-container.yellow.day .mat-mdc-card-title{color:#0000008a}.rtl-container.yellow.day .mat-menu-panel{min-width:4rem}.rtl-container.yellow.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.yellow.day .horizontal-button:hover{background:#b48f62;color:#9e9e9e}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#945f1f}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.yellow.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.yellow.day .mat-button,.rtl-container.yellow.day .mat-icon-button,.rtl-container.yellow.day .mat-stroked-button,.rtl-container.yellow.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.yellow.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.yellow.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.yellow.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.yellow.day .cc-data-block .cc-data-value{color:#000}.rtl-container.yellow.day .mat-cell,.rtl-container.yellow.day .mat-header-cell,.rtl-container.yellow.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.yellow.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.yellow.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#945f1f}.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#945f1f;opacity:1}.rtl-container.yellow.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.yellow.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.yellow.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.yellow.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.yellow.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.yellow.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.yellow.day .more-button{color:#000}.rtl-container.yellow.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.yellow.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.yellow.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.yellow.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.yellow.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.yellow.day .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.yellow.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.yellow.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.yellow.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.yellow.day .tab-badge .mat-badge-content{font-size:90%}.rtl-container.yellow.day .tab-badge .mat-badge-content.mat-badge-active{background:#945f1f}.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.yellow.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.yellow.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.yellow.day .rtl-select-overlay{min-width:7rem}}.rtl-container.yellow.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.yellow.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.yellow.day .table-actions-button{min-width:8rem}.rtl-container.yellow.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.yellow.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#caaf8f!important}.rtl-container.yellow.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#8c571b!important}.rtl-container.yellow.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.yellow.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.yellow.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.yellow.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.yellow.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.yellow.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.yellow.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.yellow.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.yellow.day .color-warn{color:#b00020}.rtl-container.yellow.day .fill-warn{fill:#b00020}.rtl-container.yellow.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.yellow.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.yellow.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.yellow.day .alert.alert-info a{color:#004085}.rtl-container.yellow.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.yellow.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.yellow.day .alert.alert-warn a{color:#856404}.rtl-container.yellow.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.yellow.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.yellow.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.yellow.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.yellow.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.yellow.day .failed-status{color:#b00020}.rtl-container.yellow.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.yellow.day .svg-fill-primary{fill:#945f1f}.rtl-container.yellow.day .svg-fill-primary-lighter{fill:#b48f62}.rtl-container.yellow.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.yellow.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.yellow.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.yellow.day .dashboard-card-content .underline,.rtl-container.yellow.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#945f1f}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#945f1f}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon{color:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon path{fill:#945f1f}.rtl-container.yellow.day .fa-icon-primary{color:#945f1f}.rtl-container.yellow.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day ngx-charts-bar-vertical text,.rtl-container.yellow.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.yellow.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.yellow.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.yellow.day .mat-paginator-container{padding:0}.rtl-container.yellow.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.yellow.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.yellow.day .invoice-animation-div .particles-circle{position:absolute;background-color:#945f1f;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #945f1f;background-color:transparent}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.yellow.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.yellow.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.yellow.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.yellow.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.yellow.night{--mat-app-background-color: #303030;--mat-app-text-color: white;--mat-app-elevation-shadow-level-0: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-1: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-2: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-3: 0px 3px 3px -2px rgba(0, 0, 0, .2), 0px 3px 4px 0px rgba(0, 0, 0, .14), 0px 1px 8px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-4: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-5: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 5px 8px 0px rgba(0, 0, 0, .14), 0px 1px 14px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-6: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-7: 0px 4px 5px -2px rgba(0, 0, 0, .2), 0px 7px 10px 1px rgba(0, 0, 0, .14), 0px 2px 16px 1px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-8: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-9: 0px 5px 6px -3px rgba(0, 0, 0, .2), 0px 9px 12px 1px rgba(0, 0, 0, .14), 0px 3px 16px 2px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-10: 0px 6px 6px -3px rgba(0, 0, 0, .2), 0px 10px 14px 1px rgba(0, 0, 0, .14), 0px 4px 18px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-11: 0px 6px 7px -4px rgba(0, 0, 0, .2), 0px 11px 15px 1px rgba(0, 0, 0, .14), 0px 4px 20px 3px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-12: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-13: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 13px 19px 2px rgba(0, 0, 0, .14), 0px 5px 24px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-14: 0px 7px 9px -4px rgba(0, 0, 0, .2), 0px 14px 21px 2px rgba(0, 0, 0, .14), 0px 5px 26px 4px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-15: 0px 8px 9px -5px rgba(0, 0, 0, .2), 0px 15px 22px 2px rgba(0, 0, 0, .14), 0px 6px 28px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-16: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-17: 0px 8px 11px -5px rgba(0, 0, 0, .2), 0px 17px 26px 2px rgba(0, 0, 0, .14), 0px 6px 32px 5px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-18: 0px 9px 11px -5px rgba(0, 0, 0, .2), 0px 18px 28px 2px rgba(0, 0, 0, .14), 0px 7px 34px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-19: 0px 9px 12px -6px rgba(0, 0, 0, .2), 0px 19px 29px 2px rgba(0, 0, 0, .14), 0px 7px 36px 6px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-20: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 20px 31px 3px rgba(0, 0, 0, .14), 0px 8px 38px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-21: 0px 10px 13px -6px rgba(0, 0, 0, .2), 0px 21px 33px 3px rgba(0, 0, 0, .14), 0px 8px 40px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-22: 0px 10px 14px -6px rgba(0, 0, 0, .2), 0px 22px 35px 3px rgba(0, 0, 0, .14), 0px 8px 42px 7px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-23: 0px 11px 14px -7px rgba(0, 0, 0, .2), 0px 23px 36px 3px rgba(0, 0, 0, .14), 0px 9px 44px 8px rgba(0, 0, 0, .12);--mat-app-elevation-shadow-level-24: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-optgroup-label-text-color: white;--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent);--mat-card-elevated-container-color: #424242;--mat-card-elevated-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-card-outlined-container-color: #424242;--mat-card-outlined-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-outlined-outline-color: rgba(255, 255, 255, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mat-card-filled-container-color: #424242;--mat-card-filled-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-tooltip-container-color: white;--mat-tooltip-supporting-text-color: rgba(0, 0, 0, .87);--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-filled-caret-color: #945f1f;--mat-form-field-filled-focus-active-indicator-color: #945f1f;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-outlined-caret-color: #945f1f;--mat-form-field-outlined-focus-outline-color: #945f1f;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #945f1f 87%, transparent);--mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-state-layer-color: white;--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .7);--mat-form-field-disabled-select-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .12;--mat-form-field-filled-container-color: #4a4a4a;--mat-form-field-filled-disabled-container-color: color-mix(in srgb, white 4%, transparent);--mat-form-field-filled-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-hover-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-color: white;--mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-filled-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-filled-error-hover-label-text-color: #b00020;--mat-form-field-filled-error-focus-label-text-color: #b00020;--mat-form-field-filled-error-label-text-color: #b00020;--mat-form-field-filled-error-caret-color: #b00020;--mat-form-field-filled-active-indicator-color: rgba(255, 255, 255, .7);--mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-filled-hover-active-indicator-color: white;--mat-form-field-filled-error-active-indicator-color: #b00020;--mat-form-field-filled-error-focus-active-indicator-color: #b00020;--mat-form-field-filled-error-hover-active-indicator-color: #b00020;--mat-form-field-outlined-label-text-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-hover-label-text-color: white;--mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-color: white;--mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, white 38%, transparent);--mat-form-field-outlined-input-text-placeholder-color: rgba(255, 255, 255, .7);--mat-form-field-outlined-error-caret-color: #b00020;--mat-form-field-outlined-error-focus-label-text-color: #b00020;--mat-form-field-outlined-error-label-text-color: #b00020;--mat-form-field-outlined-error-hover-label-text-color: #b00020;--mat-form-field-outlined-outline-color: rgba(255, 255, 255, .38);--mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, white 12%, transparent);--mat-form-field-outlined-hover-outline-color: white;--mat-form-field-outlined-error-focus-outline-color: #b00020;--mat-form-field-outlined-error-hover-outline-color: #b00020;--mat-form-field-outlined-error-outline-color: #b00020;--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #945f1f;--mat-select-invalid-arrow-color: #b00020;--mat-autocomplete-background-color: #424242;--mat-dialog-container-color: #424242;--mat-dialog-subhead-color: white;--mat-dialog-supporting-text-color: rgba(255, 255, 255, .7);--mat-slide-toggle-selected-icon-color: #ffffff;--mat-slide-toggle-disabled-selected-icon-color: #ffffff;--mat-slide-toggle-selected-focus-state-layer-color: #945f1f;--mat-slide-toggle-selected-handle-color: #945f1f;--mat-slide-toggle-selected-hover-state-layer-color: #945f1f;--mat-slide-toggle-selected-pressed-state-layer-color: #945f1f;--mat-slide-toggle-selected-focus-handle-color: #945f1f;--mat-slide-toggle-selected-hover-handle-color: #945f1f;--mat-slide-toggle-selected-pressed-handle-color: #945f1f;--mat-slide-toggle-selected-focus-track-color: #8c571b;--mat-slide-toggle-selected-hover-track-color: #8c571b;--mat-slide-toggle-selected-pressed-track-color: #8c571b;--mat-slide-toggle-selected-track-color: #8c571b;--mat-slide-toggle-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-slide-toggle-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-disabled-selected-handle-color: white;--mat-slide-toggle-disabled-selected-track-color: white;--mat-slide-toggle-disabled-unselected-handle-color: white;--mat-slide-toggle-disabled-unselected-icon-color: #4a4a4a;--mat-slide-toggle-disabled-unselected-track-color: white;--mat-slide-toggle-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slide-toggle-handle-surface-color: #424242;--mat-slide-toggle-label-text-color: white;--mat-slide-toggle-unselected-hover-handle-color: white;--mat-slide-toggle-unselected-focus-handle-color: white;--mat-slide-toggle-unselected-focus-state-layer-color: white;--mat-slide-toggle-unselected-focus-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-icon-color: #4a4a4a;--mat-slide-toggle-unselected-handle-color: rgba(255, 255, 255, .7);--mat-slide-toggle-unselected-hover-state-layer-color: white;--mat-slide-toggle-unselected-hover-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-handle-color: white;--mat-slide-toggle-unselected-pressed-track-color: rgba(255, 255, 255, .12);--mat-slide-toggle-unselected-pressed-state-layer-color: white;--mat-slide-toggle-unselected-track-color: rgba(255, 255, 255, .12);--mat-slider-active-track-color: #945f1f;--mat-slider-focus-handle-color: #945f1f;--mat-slider-handle-color: #945f1f;--mat-slider-hover-handle-color: #945f1f;--mat-slider-focus-state-layer-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #945f1f 4%, transparent);--mat-slider-inactive-track-color: #945f1f;--mat-slider-ripple-color: #945f1f;--mat-slider-with-tick-marks-active-container-color: #ffffff;--mat-slider-with-tick-marks-inactive-container-color: #945f1f;--mat-slider-disabled-active-track-color: white;--mat-slider-disabled-handle-color: white;--mat-slider-disabled-inactive-track-color: white;--mat-slider-label-container-color: white;--mat-slider-label-label-text-color: rgba(0, 0, 0, .87);--mat-slider-value-indicator-opacity: 1;--mat-slider-with-overlap-handle-outline-color: white;--mat-slider-with-tick-marks-disabled-container-color: white;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-menu-item-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mat-list-list-item-label-text-color: white;--mat-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .7);--mat-list-list-item-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-disabled-label-text-color: white;--mat-list-list-item-disabled-leading-icon-color: white;--mat-list-list-item-disabled-trailing-icon-color: white;--mat-list-list-item-hover-label-text-color: white;--mat-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-hover-state-layer-color: white;--mat-list-list-item-hover-state-layer-opacity: .04;--mat-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .7);--mat-list-list-item-focus-label-text-color: white;--mat-list-list-item-focus-state-layer-color: white;--mat-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: white;--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .7);--mat-paginator-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white;--mat-button-filled-container-color: #424242;--mat-button-filled-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-filled-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-filled-focus-state-layer-opacity: .12;--mat-button-filled-hover-state-layer-opacity: .04;--mat-button-filled-label-text-color: white;--mat-button-filled-pressed-state-layer-opacity: .12;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-outlined-disabled-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-outlined-focus-state-layer-opacity: .12;--mat-button-outlined-hover-state-layer-opacity: .04;--mat-button-outlined-label-text-color: white;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-pressed-state-layer-opacity: .12;--mat-button-outlined-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-outlined-state-layer-color: white;--mat-button-protected-container-color: #424242;--mat-button-protected-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-protected-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-protected-focus-state-layer-opacity: .12;--mat-button-protected-hover-state-layer-opacity: .04;--mat-button-protected-label-text-color: white;--mat-button-protected-pressed-state-layer-opacity: .12;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-text-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-text-focus-state-layer-opacity: .12;--mat-button-text-hover-state-layer-opacity: .04;--mat-button-text-label-text-color: white;--mat-button-text-pressed-state-layer-opacity: .12;--mat-button-text-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-text-state-layer-color: white;--mat-button-tonal-container-color: #424242;--mat-button-tonal-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-disabled-label-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-tonal-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-button-tonal-focus-state-layer-opacity: .12;--mat-button-tonal-hover-state-layer-opacity: .04;--mat-button-tonal-label-text-color: white;--mat-button-tonal-pressed-state-layer-opacity: .12;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white;--mat-icon-button-disabled-icon-color: color-mix(in srgb, white 38%, transparent);--mat-icon-button-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-icon-color: inherit;--mat-icon-button-pressed-state-layer-opacity: .12;--mat-icon-button-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-icon-button-state-layer-color: white;--mat-fab-container-color: #424242;--mat-fab-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-focus-state-layer-opacity: .12;--mat-fab-foreground-color: white;--mat-fab-hover-state-layer-opacity: .04;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-container-color: #424242;--mat-fab-small-disabled-state-container-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, white 38%, transparent);--mat-fab-small-disabled-state-layer-color: rgba(255, 255, 255, .7);--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-foreground-color: white;--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white;--mat-snack-bar-container-color: white;--mat-snack-bar-supporting-text-color: rgba(0, 0, 0, .87);--mat-snack-bar-button-color: #8c571b;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mat-progress-spinner-active-indicator-color: #945f1f;--mat-badge-background-color: #945f1f;--mat-badge-text-color: #ffffff;--mat-badge-disabled-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-badge-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-button-toggle-background-color: #424242;--mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-disabled-state-background-color: #424242;--mat-button-toggle-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-divider-color: rgba(255, 255, 255, .12);--mat-button-toggle-legacy-disabled-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-disabled-state-background-color: #424242;--mat-button-toggle-legacy-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-button-toggle-legacy-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-selected-state-text-color: white;--mat-button-toggle-legacy-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-legacy-text-color: white;--mat-button-toggle-selected-state-background-color: color-mix(in srgb, white 12%, transparent);--mat-button-toggle-selected-state-text-color: white;--mat-button-toggle-state-layer-color: white;--mat-button-toggle-text-color: white;--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #945f1f 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #ffffff;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #945f1f 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #ffffff;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #945f1f 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-expansion-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-expansion-header-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(255, 255, 255, .6);--mat-stepper-header-icon-foreground-color: #ffffff;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: #ffffff;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: #ffffff;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: #ffffff;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-stepper-header-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: white;--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white;--mat-timepicker-container-background-color: #424242}.rtl-container.yellow.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.yellow.night .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: color-mix(in srgb, white 4%, transparent);--mat-option-focus-state-layer-color: color-mix(in srgb, white 12%, transparent);--mat-option-selected-state-layer-color: color-mix(in srgb, white 12%, transparent)}.rtl-container.yellow.night .mat-primary{--mat-pseudo-checkbox-full-selected-icon-color: #945f1f;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #945f1f;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.yellow.night .mat-accent{--mat-pseudo-checkbox-full-selected-icon-color: #eeeeee;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #eeeeee;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.yellow.night .mat-warn{--mat-pseudo-checkbox-full-selected-icon-color: #b00020;--mat-pseudo-checkbox-full-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-unselected-icon-color: rgba(255, 255, 255, .7);--mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #303030;--mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-pseudo-checkbox-minimal-selected-checkmark-color: #b00020;--mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, white 38%, transparent)}.rtl-container.yellow.night .mat-mdc-progress-bar{--mat-progress-bar-active-indicator-color: #945f1f;--mat-progress-bar-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-accent{--mat-progress-bar-active-indicator-color: #eeeeee;--mat-progress-bar-track-color: rgba(238, 238, 238, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-warn{--mat-progress-bar-active-indicator-color: #b00020;--mat-progress-bar-track-color: rgba(176, 0, 32, .25)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-filled-caret-color: #eeeeee;--mat-form-field-filled-focus-active-indicator-color: #eeeeee;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent);--mat-form-field-outlined-caret-color: #eeeeee;--mat-form-field-outlined-focus-outline-color: #eeeeee;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #eeeeee 87%, transparent)}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mat-form-field-focus-select-arrow-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-filled-caret-color: #b00020;--mat-form-field-filled-focus-active-indicator-color: #b00020;--mat-form-field-filled-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent);--mat-form-field-outlined-caret-color: #b00020;--mat-form-field-outlined-focus-outline-color: #b00020;--mat-form-field-outlined-focus-label-text-color: color-mix(in srgb, #b00020 87%, transparent)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #eeeeee;--mat-select-invalid-arrow-color: #b00020}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: white;--mat-select-disabled-trigger-text-color: color-mix(in srgb, white 38%, transparent);--mat-select-placeholder-text-color: rgba(255, 255, 255, .7);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .7);--mat-select-disabled-arrow-color: color-mix(in srgb, white 38%, transparent);--mat-select-focused-arrow-color: #b00020;--mat-select-invalid-arrow-color: #b00020}.rtl-container.yellow.night .mat-mdc-standard-chip{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-disabled-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-elevated-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, white 12%, transparent);--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mat-chip-disabled-label-text-color: #ffffff;--mat-chip-elevated-container-color: #945f1f;--mat-chip-elevated-disabled-container-color: #945f1f;--mat-chip-elevated-selected-container-color: #945f1f;--mat-chip-flat-disabled-selected-container-color: #945f1f;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #ffffff;--mat-chip-selected-disabled-trailing-icon-color: #ffffff;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #ffffff;--mat-chip-selected-trailing-icon-color: #ffffff;--mat-chip-with-icon-disabled-icon-color: #ffffff;--mat-chip-with-icon-icon-color: #ffffff;--mat-chip-with-icon-selected-icon-color: #ffffff;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #ffffff;--mat-chip-with-trailing-icon-trailing-icon-color: #ffffff}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mat-chip-disabled-label-text-color: #000000;--mat-chip-elevated-container-color: #eeeeee;--mat-chip-elevated-disabled-container-color: #eeeeee;--mat-chip-elevated-selected-container-color: #eeeeee;--mat-chip-flat-disabled-selected-container-color: #eeeeee;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: #000000;--mat-chip-selected-disabled-trailing-icon-color: #000000;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: #000000;--mat-chip-selected-trailing-icon-color: #000000;--mat-chip-with-icon-disabled-icon-color: #000000;--mat-chip-with-icon-icon-color: #000000;--mat-chip-with-icon-selected-icon-color: #000000;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: #000000;--mat-chip-with-trailing-icon-trailing-icon-color: #000000}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mat-chip-disabled-label-text-color: white;--mat-chip-elevated-container-color: #b00020;--mat-chip-elevated-disabled-container-color: #b00020;--mat-chip-elevated-selected-container-color: #b00020;--mat-chip-flat-disabled-selected-container-color: #b00020;--mat-chip-focus-state-layer-color: white;--mat-chip-focus-state-layer-opacity: .12;--mat-chip-hover-state-layer-color: white;--mat-chip-label-text-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-focus-state-layer-color: .12;--mat-chip-selected-focus-state-layer-opacity: .12;--mat-chip-selected-hover-state-layer-color: .04;--mat-chip-selected-label-text-color: white;--mat-chip-selected-trailing-icon-color: white;--mat-chip-with-icon-disabled-icon-color: white;--mat-chip-with-icon-icon-color: white;--mat-chip-with-icon-selected-icon-color: white;--mat-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mat-chip-with-trailing-icon-trailing-icon-color: white}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-accent{--mat-slide-toggle-selected-icon-color: #000000;--mat-slide-toggle-disabled-selected-icon-color: #000000;--mat-slide-toggle-selected-focus-state-layer-color: #eeeeee;--mat-slide-toggle-selected-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-state-layer-color: #eeeeee;--mat-slide-toggle-selected-pressed-state-layer-color: #eeeeee;--mat-slide-toggle-selected-focus-handle-color: #eeeeee;--mat-slide-toggle-selected-hover-handle-color: #eeeeee;--mat-slide-toggle-selected-pressed-handle-color: #eeeeee;--mat-slide-toggle-selected-focus-track-color: #999999;--mat-slide-toggle-selected-hover-track-color: #999999;--mat-slide-toggle-selected-pressed-track-color: #999999;--mat-slide-toggle-selected-track-color: #999999}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-warn{--mat-slide-toggle-selected-icon-color: white;--mat-slide-toggle-disabled-selected-icon-color: white;--mat-slide-toggle-selected-focus-state-layer-color: #b00020;--mat-slide-toggle-selected-handle-color: #b00020;--mat-slide-toggle-selected-hover-state-layer-color: #b00020;--mat-slide-toggle-selected-pressed-state-layer-color: #b00020;--mat-slide-toggle-selected-focus-handle-color: #b00020;--mat-slide-toggle-selected-hover-handle-color: #b00020;--mat-slide-toggle-selected-pressed-handle-color: #b00020;--mat-slide-toggle-selected-focus-track-color: #a9001c;--mat-slide-toggle-selected-hover-track-color: #a9001c;--mat-slide-toggle-selected-pressed-track-color: #a9001c;--mat-slide-toggle-selected-track-color: #a9001c}.rtl-container.yellow.night .mat-mdc-radio-button.mat-primary{--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #945f1f;--mat-radio-selected-hover-icon-color: #945f1f;--mat-radio-selected-icon-color: #945f1f;--mat-radio-selected-pressed-icon-color: #945f1f;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-mdc-radio-button.mat-accent{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-mdc-radio-button.mat-warn{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-accent{--mat-slider-active-track-color: #eeeeee;--mat-slider-focus-handle-color: #eeeeee;--mat-slider-handle-color: #eeeeee;--mat-slider-hover-handle-color: #eeeeee;--mat-slider-focus-state-layer-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-slider-inactive-track-color: #eeeeee;--mat-slider-ripple-color: #eeeeee;--mat-slider-with-tick-marks-active-container-color: #000000;--mat-slider-with-tick-marks-inactive-container-color: #eeeeee}.rtl-container.yellow.night .mat-warn{--mat-slider-active-track-color: #b00020;--mat-slider-focus-handle-color: #b00020;--mat-slider-handle-color: #b00020;--mat-slider-hover-handle-color: #b00020;--mat-slider-focus-state-layer-color: color-mix(in srgb, #b00020 12%, transparent);--mat-slider-hover-state-layer-color: color-mix(in srgb, #b00020 4%, transparent);--mat-slider-inactive-track-color: #b00020;--mat-slider-ripple-color: #b00020;--mat-slider-with-tick-marks-active-container-color: white;--mat-slider-with-tick-marks-inactive-container-color: #b00020}.rtl-container.yellow.night .mdc-list-item__start,.rtl-container.yellow.night .mdc-list-item__end{--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #945f1f;--mat-radio-selected-hover-icon-color: #945f1f;--mat-radio-selected-icon-color: #945f1f;--mat-radio-selected-pressed-icon-color: #945f1f;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-accent .mdc-list-item__start,.rtl-container.yellow.night .mat-accent .mdc-list-item__end{--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #eeeeee;--mat-radio-selected-hover-icon-color: #eeeeee;--mat-radio-selected-icon-color: #eeeeee;--mat-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-warn .mdc-list-item__start,.rtl-container.yellow.night .mat-warn .mdc-list-item__end{--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-radio-disabled-selected-icon-color: white;--mat-radio-disabled-unselected-icon-color: white;--mat-radio-label-text-color: white;--mat-radio-ripple-color: white;--mat-radio-selected-focus-icon-color: #b00020;--mat-radio-selected-hover-icon-color: #b00020;--mat-radio-selected-icon-color: #b00020;--mat-radio-selected-pressed-icon-color: #b00020;--mat-radio-unselected-focus-icon-color: white;--mat-radio-unselected-hover-icon-color: white;--mat-radio-unselected-icon-color: rgba(255, 255, 255, .7);--mat-radio-unselected-pressed-icon-color: white}.rtl-container.yellow.night .mat-mdc-list-option{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #945f1f;--mat-checkbox-selected-hover-icon-color: #945f1f;--mat-checkbox-selected-icon-color: #945f1f;--mat-checkbox-selected-pressed-icon-color: #945f1f;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #945f1f;--mat-checkbox-selected-hover-state-layer-color: #945f1f;--mat-checkbox-selected-pressed-state-layer-color: #945f1f;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-accent{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #000000;--mat-checkbox-selected-focus-icon-color: #eeeeee;--mat-checkbox-selected-hover-icon-color: #eeeeee;--mat-checkbox-selected-icon-color: #eeeeee;--mat-checkbox-selected-pressed-icon-color: #eeeeee;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #eeeeee;--mat-checkbox-selected-hover-state-layer-color: #eeeeee;--mat-checkbox-selected-pressed-state-layer-color: #eeeeee;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-warn{--mat-checkbox-disabled-label-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-label-text-color: white;--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start{color:#945f1f}.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.yellow.night .mat-mdc-tab-group,.rtl-container.yellow.night .mat-mdc-tab-nav-bar{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #945f1f;--mat-tab-active-ripple-color: #945f1f;--mat-tab-inactive-ripple-color: #945f1f;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #945f1f;--mat-tab-active-hover-label-text-color: #945f1f;--mat-tab-active-focus-indicator-color: #945f1f;--mat-tab-active-hover-indicator-color: #945f1f;--mat-tab-active-indicator-color: #945f1f}.rtl-container.yellow.night .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-accent{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #eeeeee;--mat-tab-active-ripple-color: #eeeeee;--mat-tab-inactive-ripple-color: #eeeeee;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #eeeeee;--mat-tab-active-hover-label-text-color: #eeeeee;--mat-tab-active-focus-indicator-color: #eeeeee;--mat-tab-active-hover-indicator-color: #eeeeee;--mat-tab-active-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-warn{--mat-tab-disabled-ripple-color: rgba(255, 255, 255, .7);--mat-tab-pagination-icon-color: white;--mat-tab-inactive-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-label-text-color: #b00020;--mat-tab-active-ripple-color: #b00020;--mat-tab-inactive-ripple-color: #b00020;--mat-tab-inactive-focus-label-text-color: rgba(255, 255, 255, .7);--mat-tab-inactive-hover-label-text-color: rgba(255, 255, 255, .7);--mat-tab-active-focus-label-text-color: #b00020;--mat-tab-active-hover-label-text-color: #b00020;--mat-tab-active-focus-indicator-color: #b00020;--mat-tab-active-hover-indicator-color: #b00020;--mat-tab-active-indicator-color: #b00020}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-background-color: #945f1f;--mat-tab-foreground-color: #ffffff}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-background-color: #eeeeee;--mat-tab-foreground-color: #000000}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-background-color: #b00020;--mat-tab-foreground-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-primary{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: #ffffff;--mat-checkbox-selected-focus-icon-color: #945f1f;--mat-checkbox-selected-hover-icon-color: #945f1f;--mat-checkbox-selected-icon-color: #945f1f;--mat-checkbox-selected-pressed-icon-color: #945f1f;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #945f1f;--mat-checkbox-selected-hover-state-layer-color: #945f1f;--mat-checkbox-selected-pressed-state-layer-color: #945f1f;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-warn{--mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, white 38%, transparent);--mat-checkbox-selected-checkmark-color: white;--mat-checkbox-selected-focus-icon-color: #b00020;--mat-checkbox-selected-hover-icon-color: #b00020;--mat-checkbox-selected-icon-color: #b00020;--mat-checkbox-selected-pressed-icon-color: #b00020;--mat-checkbox-unselected-focus-icon-color: white;--mat-checkbox-unselected-hover-icon-color: white;--mat-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-checkbox-selected-focus-state-layer-color: #b00020;--mat-checkbox-selected-hover-state-layer-color: #b00020;--mat-checkbox-selected-pressed-state-layer-color: #b00020;--mat-checkbox-unselected-focus-state-layer-color: white;--mat-checkbox-unselected-hover-state-layer-color: white;--mat-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-button.mat-primary,.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-primary,.rtl-container.yellow.night .mat-mdc-raised-button.mat-primary,.rtl-container.yellow.night .mat-mdc-outlined-button.mat-primary,.rtl-container.yellow.night .mat-tonal-button.mat-primary{--mat-button-filled-container-color: #945f1f;--mat-button-filled-label-text-color: #ffffff;--mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-filled-state-layer-color: #ffffff;--mat-button-outlined-label-text-color: #945f1f;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-button-outlined-state-layer-color: #945f1f;--mat-button-protected-container-color: #945f1f;--mat-button-protected-label-text-color: #ffffff;--mat-button-protected-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-protected-state-layer-color: #ffffff;--mat-button-text-label-text-color: #945f1f;--mat-button-text-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-button-text-state-layer-color: #945f1f;--mat-button-tonal-container-color: #945f1f;--mat-button-tonal-label-text-color: #ffffff;--mat-button-tonal-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-button-tonal-state-layer-color: #ffffff}.rtl-container.yellow.night .mat-mdc-button.mat-accent,.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-accent,.rtl-container.yellow.night .mat-mdc-raised-button.mat-accent,.rtl-container.yellow.night .mat-mdc-outlined-button.mat-accent,.rtl-container.yellow.night .mat-tonal-button.mat-accent{--mat-button-filled-container-color: #eeeeee;--mat-button-filled-label-text-color: #000000;--mat-button-filled-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-filled-state-layer-color: #000000;--mat-button-outlined-label-text-color: #eeeeee;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-outlined-state-layer-color: #eeeeee;--mat-button-protected-container-color: #eeeeee;--mat-button-protected-label-text-color: #000000;--mat-button-protected-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-protected-state-layer-color: #000000;--mat-button-text-label-text-color: #eeeeee;--mat-button-text-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-button-text-state-layer-color: #eeeeee;--mat-button-tonal-container-color: #eeeeee;--mat-button-tonal-label-text-color: #000000;--mat-button-tonal-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-button-tonal-state-layer-color: #000000}.rtl-container.yellow.night .mat-mdc-button.mat-warn,.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-warn,.rtl-container.yellow.night .mat-mdc-raised-button.mat-warn,.rtl-container.yellow.night .mat-mdc-outlined-button.mat-warn,.rtl-container.yellow.night .mat-tonal-button.mat-warn{--mat-button-filled-container-color: #b00020;--mat-button-filled-label-text-color: white;--mat-button-filled-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-filled-state-layer-color: white;--mat-button-outlined-label-text-color: #b00020;--mat-button-outlined-outline-color: rgba(255, 255, 255, .12);--mat-button-outlined-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-outlined-state-layer-color: #b00020;--mat-button-protected-container-color: #b00020;--mat-button-protected-label-text-color: white;--mat-button-protected-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-protected-state-layer-color: white;--mat-button-text-label-text-color: #b00020;--mat-button-text-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-button-text-state-layer-color: #b00020;--mat-button-tonal-container-color: #b00020;--mat-button-tonal-label-text-color: white;--mat-button-tonal-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-button-tonal-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-icon-button.mat-primary{--mat-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: color-mix(in srgb, #945f1f 12%, transparent)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-accent{--mat-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-warn{--mat-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: color-mix(in srgb, #b00020 12%, transparent)}.rtl-container.yellow.night .mat-mdc-fab.mat-primary,.rtl-container.yellow.night .mat-mdc-mini-fab.mat-primary{--mat-fab-container-color: #945f1f;--mat-fab-foreground-color: #ffffff;--mat-fab-ripple-color: color-mix(in srgb, #945f1f 12%, transparent);--mat-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: #ffffff;--mat-fab-small-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);--mat-fab-small-state-layer-color: #ffffff;--mat-fab-state-layer-color: #ffffff}.rtl-container.yellow.night .mat-mdc-fab.mat-accent,.rtl-container.yellow.night .mat-mdc-mini-fab.mat-accent{--mat-fab-container-color: #eeeeee;--mat-fab-foreground-color: #000000;--mat-fab-ripple-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: #000000;--mat-fab-small-ripple-color: color-mix(in srgb, #000000 12%, transparent);--mat-fab-small-state-layer-color: #000000;--mat-fab-state-layer-color: #000000}.rtl-container.yellow.night .mat-mdc-fab.mat-warn,.rtl-container.yellow.night .mat-mdc-mini-fab.mat-warn{--mat-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-ripple-color: color-mix(in srgb, #b00020 12%, transparent);--mat-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-ripple-color: color-mix(in srgb, white 12%, transparent);--mat-fab-small-state-layer-color: white;--mat-fab-state-layer-color: white}.rtl-container.yellow.night .mat-accent{--mat-progress-spinner-active-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-warn{--mat-progress-spinner-active-indicator-color: #b00020}.rtl-container.yellow.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: #000000}.rtl-container.yellow.night .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.yellow.night .mat-datepicker-content.mat-accent,.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: #000000;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #eeeeee 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: #000000;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #eeeeee 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #eeeeee 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #eeeeee;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.yellow.night .mat-datepicker-content.mat-warn,.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-calendar-date-in-range-state-background-color: color-mix(in srgb, #b00020 20%, transparent);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: color-mix(in srgb, #eeeeee 20%, transparent);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: rgb(69.5241935484, 163.4758064516, 93.9516129032);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #b00020 38%, transparent);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #b00020 12%, transparent);--mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #b00020 4%, transparent);--mat-datepicker-toggle-active-state-icon-color: #b00020;--mat-datepicker-toggle-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-navigation-button-icon-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .7);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, white 38%, transparent);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white}.rtl-container.yellow.night .mat-icon.mat-primary{--mat-icon-color: #945f1f}.rtl-container.yellow.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.yellow.night .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.yellow.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: #000000;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: #000000;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: #000000;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: #000000}.rtl-container.yellow.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #945f1f;--mat-toolbar-container-text-color: #ffffff}.rtl-container.yellow.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: #000000}.rtl-container.yellow.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.yellow.night .mat-primary{color:#ffa164!important}.rtl-container.yellow.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.yellow.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.yellow.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.yellow.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.yellow.night .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.yellow.night .currency-icon path,.rtl-container.yellow.night .currency-icon polygon{fill:#fff}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#b00020}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#aaa}.rtl-container.yellow.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#ffa164}.rtl-container.yellow.night .cc-data-block .cc-data-title{color:#ffa164}.rtl-container.yellow.night .mat-stroked-button.mat-primary{border-color:#ffa164;color:#ffa164}.rtl-container.yellow.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.yellow.night .mat-stroked-button.mat-accent{border-color:#aaa}.rtl-container.yellow.night .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.yellow.night .active-link,.rtl-container.yellow.night .active-link .fa-icon-small,.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active,.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#ffa164;font-weight:500;cursor:pointer;fill:#ffa164}.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.yellow.night .help-expansion .mat-expansion-indicator:after,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-content,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.yellow.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.yellow.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.yellow.night .mat-expansion-panel,.rtl-container.yellow.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.yellow.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.yellow.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.yellow.night .mdc-data-table__header-cell,.rtl-container.yellow.night .mat-mdc-paginator,.rtl-container.yellow.night .mat-mdc-form-field-focus-overlay,.rtl-container.yellow.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.yellow.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.yellow.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#ffa164}.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.yellow.night .svg-donation{opacity:1!important}.rtl-container.yellow.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#ffa164!important}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#ffa164!important}.rtl-container.yellow.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#945f1f}.rtl-container.yellow.night a{color:#ffa164!important;cursor:pointer}.rtl-container.yellow.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.yellow.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.yellow.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.yellow.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.yellow.night .mat-mdc-select-placeholder,.rtl-container.yellow.night .mat-mdc-select-value,.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#ffa164}.rtl-container.yellow.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.yellow.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover,.rtl-container.yellow.night .mat-select-panel .mat-option:hover,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#ffa164;cursor:pointer;background:#ffffff0f}.rtl-container.yellow.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.night .mat-tree-node:hover .mat-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover .boltz-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#ffa164}.rtl-container.yellow.night .mat-tree-node .sidenav-img,.rtl-container.yellow.night .mat-nested-tree-node .sidenav-img,.rtl-container.yellow.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.yellow.night .page-title-container .page-title-img,.rtl-container.yellow.night svg.top-icon-small{fill:#fff}.rtl-container.yellow.night .selected-color{border-color:#b48f62}.rtl-container.yellow.night .mat-progress-bar-fill:after{background-color:#8c571b}.rtl-container.yellow.night .chart-legend .legend-label:hover,.rtl-container.yellow.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.yellow.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.yellow.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#ffa164}.rtl-container.yellow.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.yellow.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#ffa164}.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#ffa164}.rtl-container.yellow.night .mat-select-panel{background-color:#121212}.rtl-container.yellow.night .mat-tree{background:#121212}.rtl-container.yellow.night h4{color:#ffa164}.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.yellow.night .dashboard-info-title{color:#ffa164}.rtl-container.yellow.night .dashboard-info-value,.rtl-container.yellow.night .dashboard-capacity-header{color:#fff}.rtl-container.yellow.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.yellow.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.yellow.night .color-primary{color:#ffa164!important}.rtl-container.yellow.night .dot-primary{background-color:#ffa164!important}.rtl-container.yellow.night .dot-primary-lighter{background-color:#945f1f!important}.rtl-container.yellow.night .mat-stepper-vertical{background-color:#121212}.rtl-container.yellow.night .spinner-container h2{color:#ffa164}.rtl-container.yellow.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.yellow.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.yellow.night svg .boltz-icon-fill{fill:#fff}.rtl-container.yellow.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-primary-lighter{stroke:#b48f62}.rtl-container.yellow.night svg .stroke-color-primary{stroke:#945f1f}.rtl-container.yellow.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.yellow.night svg .fill-color-0{fill:#171717}.rtl-container.yellow.night svg .fill-color-1{fill:#232323}.rtl-container.yellow.night svg .fill-color-2{fill:#222}.rtl-container.yellow.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.yellow.night svg .fill-color-4{fill:#383838}.rtl-container.yellow.night svg .fill-color-5{fill:#555}.rtl-container.yellow.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.yellow.night svg .fill-color-7{fill:#202020}.rtl-container.yellow.night svg .fill-color-8{fill:#242424}.rtl-container.yellow.night svg .fill-color-9{fill:#262626}.rtl-container.yellow.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.yellow.night svg .fill-color-11{fill:#171717}.rtl-container.yellow.night svg .fill-color-12{fill:#ccc}.rtl-container.yellow.night svg .fill-color-13{fill:#adadad}.rtl-container.yellow.night svg .fill-color-14{fill:#ababab}.rtl-container.yellow.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.yellow.night svg .fill-color-16{fill:#707070}.rtl-container.yellow.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.yellow.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.yellow.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.yellow.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.yellow.night svg .fill-color-21{fill:#cacaca}.rtl-container.yellow.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.yellow.night svg .fill-color-23{fill:#777}.rtl-container.yellow.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.yellow.night svg .fill-color-25{fill:#252525}.rtl-container.yellow.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.yellow.night svg .fill-color-27{fill:#000}.rtl-container.yellow.night svg .fill-color-28{fill:#313131}.rtl-container.yellow.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.yellow.night svg .fill-color-30{fill:#fff}.rtl-container.yellow.night svg .fill-color-31{fill:#945f1f}.rtl-container.yellow.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.yellow.night svg .fill-color-primary{fill:#945f1f}.rtl-container.yellow.night svg .fill-color-primary-lighter{fill:#b48f62}.rtl-container.yellow.night svg .fill-color-primary-darker{fill:#ffa164}.rtl-container.yellow.night .mat-select-value,.rtl-container.yellow.night .mat-select-arrow{color:#fff}.rtl-container.yellow.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.yellow.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.yellow.night .mat-button.mat-primary,.rtl-container.yellow.night .mat-icon-button.mat-primary,.rtl-container.yellow.night .mat-stroked-button.mat-primary{color:#ffa164}.rtl-container.yellow.night tr.alert.alert-warn .mat-cell,.rtl-container.yellow.night tr.alert.alert-warn .mat-header-cell,.rtl-container.yellow.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.yellow.night .material-icons.info-icon{font-size:100%;color:#ffa164}.rtl-container.yellow.night .material-icons.info-icon.info-icon-primary{color:#ffa164}.rtl-container.yellow.night .material-icons.info-icon.info-icon-text,.rtl-container.yellow.night .material-icons.info-icon.arrow-downward,.rtl-container.yellow.night .material-icons.info-icon.arrow-upward{color:#fff}.rtl-container.yellow.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#ffa164}.rtl-container.yellow.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#774312}.rtl-container.yellow.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#ffa164}.rtl-container.yellow.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.yellow.night .mat-progress-bar-buffer{background-color:#dfcfbc}.rtl-container.yellow.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.yellow.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.yellow.night .foreground.mat-progress-spinner circle,.rtl-container.yellow.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.yellow.night .mat-toolbar-row,.rtl-container.yellow.night .mat-toolbar-single-row{height:4rem}.rtl-container.yellow.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.yellow.night a{color:#945f1f}.rtl-container.yellow.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.yellow.night .h-active-link{border-bottom:2px solid white}.rtl-container.yellow.night .mat-icon-36{color:#ffffffb3}.rtl-container.yellow.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.yellow.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.yellow.night .genseed-message{width:10%;color:#945f1f}.rtl-container.yellow.night .border-primary{border:1px solid #945f1f}.rtl-container.yellow.night .border-accent{border:1px solid #aaaaaa}.rtl-container.yellow.night .border-warn{border:1px solid #b00020}.rtl-container.yellow.night .material-icons.primary{color:#945f1f}.rtl-container.yellow.night .material-icons.accent{color:#aaa}.rtl-container.yellow.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.yellow.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.yellow.night .row-disabled{background-color:gray}.rtl-container.yellow.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.yellow.night .mat-mdc-card-content,.rtl-container.yellow.night .mat-mdc-card-subtitle,.rtl-container.yellow.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.yellow.night .mat-menu-panel{min-width:4rem}.rtl-container.yellow.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.yellow.night .horizontal-button:hover{background:#b48f62;color:#aaa}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#945f1f}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.yellow.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.yellow.night .mat-button,.rtl-container.yellow.night .mat-icon-button,.rtl-container.yellow.night .mat-stroked-button,.rtl-container.yellow.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.yellow.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.yellow.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width:37.5em){.rtl-container.yellow.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.yellow.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.yellow.night .mat-cell,.rtl-container.yellow.night .mat-header-cell,.rtl-container.yellow.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.yellow.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.yellow.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#945f1f}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#945f1f;opacity:1}.rtl-container.yellow.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.yellow.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.yellow.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width:75em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:56.25em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width:37.5em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.yellow.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.yellow.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.yellow.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.yellow.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.yellow.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.yellow.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.yellow.night .more-button{color:#fff}.rtl-container.yellow.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.yellow.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.yellow.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.yellow.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.yellow.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width:75em){.rtl-container.yellow.night .modal-info-header{padding:.5rem}}@media only screen and (max-width:56.25em){.rtl-container.yellow.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width:37.5em){.rtl-container.yellow.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.yellow.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.yellow.night .tab-badge .mat-badge-content{font-size:90%}.rtl-container.yellow.night .tab-badge .mat-badge-content.mat-badge-active{background:#945f1f}.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:.125rem!important;width:fit-content;padding:.125rem .5rem 0}@media only screen and (max-width:37.5em){.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.yellow.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width:56.25em){.rtl-container.yellow.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width:37.5em){.rtl-container.yellow.night .rtl-select-overlay{min-width:7rem}}.rtl-container.yellow.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.yellow.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.yellow.night .table-actions-button{min-width:8rem}.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.yellow.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#caaf8f!important}.rtl-container.yellow.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#8c571b!important}.rtl-container.yellow.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.yellow.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.yellow.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.yellow.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.yellow.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.yellow.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.yellow.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.yellow.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.yellow.night .color-warn{color:#b00020}.rtl-container.yellow.night .fill-warn{fill:#b00020}.rtl-container.yellow.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.yellow.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.yellow.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.yellow.night .alert.alert-info a{color:#004085}.rtl-container.yellow.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.yellow.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.yellow.night .alert.alert-warn a{color:#856404}.rtl-container.yellow.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.yellow.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.yellow.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.yellow.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.yellow.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.yellow.night .failed-status{color:#b00020}.rtl-container.yellow.night .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.yellow.night .svg-fill-primary{fill:#945f1f}.rtl-container.yellow.night .svg-fill-primary-lighter{fill:#b48f62}.rtl-container.yellow.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.yellow.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.yellow.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.yellow.night .dashboard-card-content .underline,.rtl-container.yellow.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#945f1f}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#945f1f}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#945f1f}.rtl-container.yellow.night .mat-mdc-form-field-hint .currency-icon{color:#945f1f}.rtl-container.yellow.night .mat-mdc-form-field-hint .currency-icon path{fill:#945f1f}.rtl-container.yellow.night .fa-icon-primary{color:#945f1f}.rtl-container.yellow.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night ngx-charts-bar-vertical text,.rtl-container.yellow.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.yellow.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.yellow.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.yellow.night .mat-paginator-container{padding:0}.rtl-container.yellow.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.yellow.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.yellow.night .invoice-animation-div .particles-circle{position:absolute;background-color:#945f1f;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #945f1f;background-color:transparent}@keyframes particles-1{0%{transform:scale(1);visibility:visible}to{left:199px;top:201px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}@keyframes particles-2{0%{transform:scale(1);visibility:visible}to{left:-40px;top:82px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}@keyframes particles-3{0%{transform:scale(1);visibility:visible}to{left:162px;top:109px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}@keyframes particles-4{0%{transform:scale(1);visibility:visible}to{left:223px;top:78px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}@keyframes particles-5{0%{transform:scale(1);visibility:visible}to{left:184px;top:113px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}@keyframes particles-6{0%{transform:scale(1);visibility:visible}to{left:-42px;top:-238px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}@keyframes particles-7{0%{transform:scale(1);visibility:visible}to{left:150px;top:-98px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}@keyframes particles-8{0%{transform:scale(1);visibility:visible}to{left:62px;top:225px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}@keyframes particles-9{0%{transform:scale(1);visibility:visible}to{left:113px;top:86px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}@keyframes particles-10{0%{transform:scale(1);visibility:visible}to{left:229px;top:-127px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}@keyframes particles-11{0%{transform:scale(1);visibility:visible}to{left:243px;top:-106px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}@keyframes particles-12{0%{transform:scale(1);visibility:visible}to{left:-168px;top:138px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}@keyframes particles-13{0%{transform:scale(1);visibility:visible}to{left:-124px;top:62px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}@keyframes particles-14{0%{transform:scale(1);visibility:visible}to{left:246px;top:30px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}@keyframes particles-15{0%{transform:scale(1);visibility:visible}to{left:-22px;top:-171px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}@keyframes particles-16{0%{transform:scale(1);visibility:visible}to{left:-144px;top:115px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}@keyframes particles-17{0%{transform:scale(1);visibility:visible}to{left:209px;top:84px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}@keyframes particles-18{0%{transform:scale(1);visibility:visible}to{left:84px;top:-190px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}@keyframes particles-19{0%{transform:scale(1);visibility:visible}to{left:-94px;top:208px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}@keyframes particles-20{0%{transform:scale(1);visibility:visible}to{left:147px;top:203px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}@keyframes particles-21{0%{transform:scale(1);visibility:visible}to{left:178px;top:206px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}@keyframes particles-22{0%{transform:scale(1);visibility:visible}to{left:-10px;top:-226px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}@keyframes particles-23{0%{transform:scale(1);visibility:visible}to{left:3px;top:222px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}@keyframes particles-24{0%{transform:scale(1);visibility:visible}to{left:-182px;top:-44px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}@keyframes particles-25{0%{transform:scale(1);visibility:visible}to{left:-146px;top:166px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}@keyframes particles-26{0%{transform:scale(1);visibility:visible}to{left:144px;top:218px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}@keyframes particles-27{0%{transform:scale(1);visibility:visible}to{left:48px;top:222px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}@keyframes particles-28{0%{transform:scale(1);visibility:visible}to{left:-48px;top:50px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}@keyframes particles-29{0%{transform:scale(1);visibility:visible}to{left:-228px;top:-15px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}@keyframes particles-30{0%{transform:scale(1);visibility:visible}to{left:91px;top:-199px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}@keyframes particles-31{0%{transform:scale(1);visibility:visible}to{left:-40px;top:104px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}@keyframes particles-32{0%{transform:scale(1);visibility:visible}to{left:-102px;top:4px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}@keyframes particles-33{0%{transform:scale(1);visibility:visible}to{left:-26px;top:-89px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}@keyframes particles-34{0%{transform:scale(1);visibility:visible}to{left:-151px;top:-149px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}@keyframes particles-35{0%{transform:scale(1);visibility:visible}to{left:186px;top:200px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.yellow.night .wiggle{animation:.5s wiggle ease-in-out infinite}@keyframes wiggle{0%{transform:rotate(-3deg)}20%{transform:rotate(20deg)}40%{transform:rotate(-15deg)}60%{transform:rotate(5deg)}90%{transform:rotate(-1deg)}to{transform:rotate(0)}}.rtl-container.yellow.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.yellow.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.yellow.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}@keyframes shockwaveJump{0%{transform:scale(1)}40%{transform:scale(1.08)}50%{transform:scale(.98)}55%{transform:scale(1.02)}60%{transform:scale(.98)}to{transform:scale(1)}}@keyframes shockwave{0%{transform:scale(1);box-shadow:0 0 2px #00000026,inset 0 0 1px #00000026}95%{box-shadow:0 0 50px #0000,inset 0 0 30px #0000}to{transform:scale(2.25)}}@font-face{font-family:Material Icons;font-style:normal;font-weight:400;font-display:block;src:url(material-icons.59322316b3fd6063.woff2) format("woff2"),url(material-icons.4ad034d2c499d9b6.woff) format("woff")}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Outlined;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-outlined.f86cb7b0aa53f0fe.woff2) format("woff2"),url(material-icons-outlined.78a93b2079680a08.woff) format("woff")}.material-icons-outlined{font-family:Material Icons Outlined;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Round;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-round.b10ec9db5b7fbc74.woff2) format("woff2"),url(material-icons-round.92dc7ca2f4c591e7.woff) format("woff")}.material-icons-round{font-family:Material Icons Round;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Sharp;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-sharp.3885863ee4746422.woff2) format("woff2"),url(material-icons-sharp.a71cb2bf66c604de.woff) format("woff")}.material-icons-sharp{font-family:Material Icons Sharp;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Two Tone;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-two-tone.675bd578bd14533e.woff2) format("woff2"),url(material-icons-two-tone.588d63134de807a7.woff) format("woff")}.material-icons-two-tone{font-family:Material Icons Two Tone;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Roboto;src:url(Roboto-Thin.f7a95c9c5999532c.woff2) format("woff2"),url(Roboto-Thin.c13c157cb81e8ebb.woff) format("woff");font-weight:100;font-style:normal}@font-face{font-family:Roboto-Thin;src:url(Roboto-Thin.f7a95c9c5999532c.woff2) format("woff2"),url(Roboto-Thin.c13c157cb81e8ebb.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-ThinItalic.b0e084abf689f393.woff2) format("woff2"),url(Roboto-ThinItalic.1111028df6cea564.woff) format("woff");font-weight:100;font-style:italic}@font-face{font-family:Roboto-ThinItalic;src:url(Roboto-ThinItalic.b0e084abf689f393.woff2) format("woff2"),url(Roboto-ThinItalic.1111028df6cea564.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Light.0e01b6cd13b3857f.woff2) format("woff2"),url(Roboto-Light.603ca9a537b88428.woff) format("woff");font-weight:300;font-style:normal}@font-face{font-family:Roboto-Light;src:url(Roboto-Light.0e01b6cd13b3857f.woff2) format("woff2"),url(Roboto-Light.603ca9a537b88428.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-LightItalic.232ef4b20215f720.woff2) format("woff2"),url(Roboto-LightItalic.1b5e142f787151c8.woff) format("woff");font-weight:300;font-style:italic}@font-face{font-family:Roboto-LightItalic;src:url(Roboto-LightItalic.232ef4b20215f720.woff2) format("woff2"),url(Roboto-LightItalic.1b5e142f787151c8.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Regular.475ba9e4e2d63456.woff2) format("woff2"),url(Roboto-Regular.bcefbfee882bc1cb.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Roboto-Regular;src:url(Roboto-Regular.475ba9e4e2d63456.woff2) format("woff2"),url(Roboto-Regular.bcefbfee882bc1cb.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-RegularItalic.e3a9ebdaac06bbc4.woff2) format("woff2"),url(Roboto-RegularItalic.0668fae6af0cf8c2.woff) format("woff");font-weight:400;font-style:italic}@font-face{font-family:Roboto-RegularItalic;src:url(Roboto-RegularItalic.e3a9ebdaac06bbc4.woff2) format("woff2"),url(Roboto-RegularItalic.0668fae6af0cf8c2.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Medium.457532032ceb0168.woff2) format("woff2"),url(Roboto-Medium.6e1ae5f0b324a0aa.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:Roboto-Medium;src:url(Roboto-Medium.457532032ceb0168.woff2) format("woff2"),url(Roboto-Medium.6e1ae5f0b324a0aa.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-MediumItalic.872f7060602d55d2.woff2) format("woff2"),url(Roboto-MediumItalic.e06fb533801cbb08.woff) format("woff");font-weight:500;font-style:italic}@font-face{font-family:Roboto-MediumItalic;src:url(Roboto-MediumItalic.872f7060602d55d2.woff2) format("woff2"),url(Roboto-MediumItalic.e06fb533801cbb08.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Bold.447291a88c067396.woff2) format("woff2"),url(Roboto-Bold.fc482e6133cf5e26.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:Roboto-Bold;src:url(Roboto-Bold.447291a88c067396.woff2) format("woff2"),url(Roboto-Bold.fc482e6133cf5e26.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-BoldItalic.1b15168ef6fa4e16.woff2) format("woff2"),url(Roboto-BoldItalic.e26ba339b06f09f7.woff) format("woff");font-weight:700;font-style:italic}@font-face{font-family:Roboto-BoldItalic;src:url(Roboto-BoldItalic.1b15168ef6fa4e16.woff2) format("woff2"),url(Roboto-BoldItalic.e26ba339b06f09f7.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Black.2eaa390d458c877d.woff2) format("woff2"),url(Roboto-Black.b25f67ad8583da68.woff) format("woff");font-weight:900;font-style:normal}@font-face{font-family:Roboto-Black;src:url(Roboto-Black.2eaa390d458c877d.woff2) format("woff2"),url(Roboto-Black.b25f67ad8583da68.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-BlackItalic.7dc03ee444552bc5.woff2) format("woff2"),url(Roboto-BlackItalic.c8dc642467cb3099.woff) format("woff");font-weight:900;font-style:italic}@font-face{font-family:Roboto-BlackItalic;src:url(Roboto-BlackItalic.7dc03ee444552bc5.woff2) format("woff2"),url(Roboto-BlackItalic.c8dc642467cb3099.woff) format("woff")} diff --git a/frontend/styles.e57f489d97a0d3fc.css b/frontend/styles.e57f489d97a0d3fc.css deleted file mode 100644 index d9deb60c..00000000 --- a/frontend/styles.e57f489d97a0d3fc.css +++ /dev/null @@ -1 +0,0 @@ -.ps{overflow:hidden!important;overflow-anchor:none;-ms-overflow-style:none;touch-action:auto;-ms-touch-action:auto}.ps__rail-x{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;height:15px;bottom:0;margin-top:-15px;position:relative}.ps__rail-y{display:none;opacity:0;transition:background-color .2s linear,opacity .2s linear;-webkit-transition:background-color .2s linear,opacity .2s linear;width:0px;right:0;position:relative}.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y{display:block;background-color:transparent}.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y,.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y{opacity:.6}.ps .ps__rail-x:hover,.ps .ps__rail-y:hover,.ps .ps__rail-x:focus,.ps .ps__rail-y:focus,.ps .ps__rail-x.ps--clicking,.ps .ps__rail-y.ps--clicking{background-color:transparent;opacity:.9}.ps__thumb-x{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,height .2s ease-in-out;-webkit-transition:background-color .2s linear,height .2s ease-in-out;height:4px;bottom:2px;position:absolute}.ps__thumb-y{background-color:#aaa;border-radius:6px;transition:background-color .2s linear,width .2s ease-in-out;-webkit-transition:background-color .2s linear,width .2s ease-in-out;width:4px;right:2px;position:absolute}.ps__rail-x:hover>.ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x.ps--clicking .ps__thumb-x{background-color:#999;height:6px}.ps__rail-y:hover>.ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y.ps--clicking .ps__thumb-y{background-color:#999;width:6px}@supports (-ms-overflow-style: none){.ps{overflow:auto!important}}@media screen and (-ms-high-contrast: active),(-ms-high-contrast: none){.ps{overflow:auto!important}}html{width:100%;height:99%;line-height:1.5;overflow-x:hidden;font-family:Roboto,sans-serif!important;font-size:95%}@media only screen and (max-width: 56.25em){html{font-size:90%}}@media only screen and (max-width: 37.5em){html{font-size:80%}}body{box-sizing:border-box;height:100%;margin:0;overflow:hidden}.rtl-container{position:absolute;width:100%;height:100%;inset:0;overflow:hidden}.rtl-container .mat-menu-panel .mat-menu-content{padding-top:0;padding-bottom:0}.rtl-container .mat-nested-tree-node-child>.mat-tree-node{padding-left:2.5rem}.mat-sidenav-container .mat-sidenav-content{height:95vh;min-height:95vh}.sidenav{width:16rem!important;height:100%;overflow:hidden!important}span.page-text,.mat-mdc-slide-toggle,.material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:3rem}.mat-mdc-checkbox{min-height:4rem}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-feature-settings:"liga"}.sticky{position:fixed;top:0;z-index:9999}.horizontal-menu{padding:0;z-index:999;position:fixed;top:0;height:4rem;overflow:visible}.inner-sidenav-content{position:relative;inset:0;padding:.75rem}@media only screen and (max-width: 56.25em){.inner-sidenav-content{padding:.5rem}}@media only screen and (max-width: 37.5em){.inner-sidenav-content{padding:.5rem .25rem}}.top-50{top:50px}*{margin:0;padding:0}.rtl-spinner{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;width:100%;position:fixed;background:#fff;z-index:999999;visibility:visible;opacity:1}.rtl-spinner h4{margin-top:.625rem}.spinner-dialog-panel .mat-mdc-dialog-container .mat-mdc-dialog-surface{background:transparent;box-shadow:none}.mat-mdc-dialog-container .mat-mdc-dialog-surface{overflow:hidden}@media only screen and (max-width: 75em){button.mdc-button{min-width:50px}}@media only screen and (max-width: 56.25em){button.mdc-button{min-width:40px}}@media only screen and (max-width: 37.5em){button.mdc-button{min-width:20px}}button.mdc-button.mat-mdc-button-base{font-size:103%;font-weight:500;font-family:Roboto,sans-serif}button.mdc-button.mat-mdc-button-base.mat-mdc-unelevated-button{margin-bottom:1rem}.mat-mdc-icon-button.mat-mdc-button-base.btn-icon-small{height:40px;padding:.75rem}.mdc-floating-label{will-change:unset!important}.mat-mdc-form-field.mat-form-field-disabled,.mat-mdc-form-field.mat-form-field-disabled .mat-mdc-text-field-wrapper.mdc-text-field--disable,.mat-mdc-form-field.mat-form-field-disabled .mdc-floating-label.mat-mdc-floating-label,.mat-mdc-form-field.mat-form-field-disabled .mat-mdc-input-element.mat-mdc-form-field-input-control,.mat-mdc-slide-toggle .mdc-switch.mdc-switch--disabled{cursor:not-allowed}.padding-gap{padding:.5rem!important}@media only screen and (max-width: 56.25em){.padding-gap{padding:.25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap{padding:.125rem!important}}.padding-gap-x{padding:0 .5rem!important}@media only screen and (max-width: 75em){.padding-gap-x{padding:0 .25rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-x{padding:0 .25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-x{padding:0 .125rem!important}}.padding-gap-large{padding:1rem!important}@media only screen and (max-width: 75em){.padding-gap-large{padding:2rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-large{padding:.25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-large{padding:.125rem!important}}.padding-gap-x-large{padding:0 1rem!important}@media only screen and (max-width: 75em){.padding-gap-x-large{padding:0 .5rem!important}}@media only screen and (max-width: 56.25em){.padding-gap-x-large{padding:0 .25rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-x-large{padding:0 .125rem!important}}.padding-gap-bottom-large{padding-bottom:1rem!important}@media only screen and (max-width: 56.25em){.padding-gap-bottom-large{padding-bottom:.5rem!important}}@media only screen and (max-width: 37.5em){.padding-gap-bottom-large{padding-bottom:.125rem!important}}.overflow-wrap{overflow-wrap:break-word!important;overflow:hidden}.mat-mdc-card{padding:0!important;overflow:hidden;border-radius:2px!important}.mat-mdc-card-original{padding:1rem!important;border-radius:4px!important}.mat-mdc-form-field-flex .mat-mdc-form-field-icon-suffix,.mat-mdc-form-field-flex .mat-mdc-form-field-icon-prefix{padding-right:1rem}mat-card-content.mat-mdc-card-content:first-child{padding-top:0}.card-content-gap{padding:.6rem 1rem!important;height:100%}@media only screen and (max-width: 56.25em){.card-content-gap{padding:.5rem!important}}@media only screen and (max-width: 37.5em){.card-content-gap{padding:.25rem .125rem!important}}.routing-tabs-block .mat-mdc-tab-body-wrapper{padding:0!important;min-height:100px}.mat-mdc-card-actions{display:block;margin-bottom:1rem;padding-left:.3333333333rem;padding-right:.3333333333rem}.mat-mdc-card-content,.mat-mdc-card-subtitle,.mat-mdc-card-title{display:block;margin-bottom:1rem}.mat-mdc-card-content form,.mat-mdc-card-subtitle form,.mat-mdc-card-title form{overflow:hidden}.mat-mdc-card-title{font-size:125%}.mat-mdc-card-subtitle{font-size:120%}.mat-mdc-card-header-text{margin:0!important;line-height:1}.mat-form-field-wrapper{width:100%}.mat-mdc-select{margin:0 1rem 0 0}.green{color:#28ca43!important}.yellow{color:#ffbd2e!important}.red{color:#c62828!important}.grey{color:#ccc!important}.mt-1px{margin-top:1px!important}.mt-2px{margin-top:2px!important}.mt-4px{margin-top:4px!important}.mt-5px{margin-top:5px!important}.my-2px{margin:2px 0!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.625rem!important}@media only screen and (max-width: 56.25em){.mt-1{margin-top:.5rem!important}}@media only screen and (max-width: 37.5em){.mt-1{margin-top:.5rem!important}}.mb-0{margin-bottom:0!important}.mb-2px{margin-bottom:2px!important}.mb-5px{margin-bottom:5px!important}.mb-1{margin-bottom:.625rem!important}@media only screen and (max-width: 56.25em){.mb-1{margin-bottom:.5rem!important}}@media only screen and (max-width: 37.5em){.mb-1{margin-bottom:.5rem!important}}.mb-6{margin-bottom:3.75rem!important}@media only screen and (max-width: 56.25em){.mb-6{margin-bottom:3rem!important}}@media only screen and (max-width: 37.5em){.mb-6{margin-bottom:3rem!important}}.ml-0{margin-left:0!important}.ml-half{margin-left:.25rem!important}.ml-1{margin-left:.625rem!important}@media only screen and (max-width: 56.25em){.ml-1{margin-left:.25rem!important}}@media only screen and (max-width: 37.5em){.ml-1{margin-left:2px!important}}.ml-minus-1{margin-left:-.625rem!important}.mr-0{margin-right:0!important}.mr-3px{margin-right:3px!important}.mr-5px{margin-right:5px!important}.mr-1{margin-right:.625rem!important}@media only screen and (max-width: 56.25em){.mr-1{margin-right:.25rem!important}}@media only screen and (max-width: 37.5em){.mr-1{margin-right:2px!important}}.mx-1{margin:0 .625rem!important}@media only screen and (max-width: 56.25em){.mx-1{margin:0 .25rem!important}}@media only screen and (max-width: 37.5em){.mx-1{margin:0 2px!important}}.my-1{margin:.625rem 0!important}@media only screen and (max-width: 56.25em){.my-1{margin:.5rem 0!important}}@media only screen and (max-width: 37.5em){.my-1{margin:.5rem 0!important}}.m-1{margin:.625rem!important}@media only screen and (max-width: 56.25em){.m-1{margin:.5rem!important}}@media only screen and (max-width: 37.5em){.m-1{margin:.5rem!important}}.mt-2{margin-top:1.25rem!important}@media only screen and (max-width: 56.25em){.mt-2{margin-top:1rem!important}}@media only screen and (max-width: 37.5em){.mt-2{margin-top:1rem!important}}.mt-3{margin-top:2rem!important}@media only screen and (max-width: 56.25em){.mt-3{margin-top:1.5rem!important}}@media only screen and (max-width: 37.5em){.mt-3{margin-top:1.5rem!important}}.mt-4{margin-top:2.5rem!important}@media only screen and (max-width: 56.25em){.mt-4{margin-top:2rem!important}}@media only screen and (max-width: 37.5em){.mt-4{margin-top:2rem!important}}.mt-6{margin-top:3.75rem!important}@media only screen and (max-width: 56.25em){.mt-6{margin-top:3rem!important}}@media only screen and (max-width: 37.5em){.mt-6{margin-top:3rem!important}}.mt-minus-1{margin-top:-.625rem!important}@media only screen and (max-width: 56.25em){.mt-minus-1{margin-top:-.5rem!important}}@media only screen and (max-width: 37.5em){.mt-minus-1{margin-top:-.5rem!important}}.mt-minus-2{margin-top:-1.25rem!important}@media only screen and (max-width: 56.25em){.mt-minus-2{margin-top:-1rem!important}}@media only screen and (max-width: 37.5em){.mt-minus-2{margin-top:-1rem!important}}.mb-2{margin-bottom:1rem!important}@media only screen and (max-width: 56.25em){.mb-2{margin-bottom:1rem!important}}@media only screen and (max-width: 37.5em){.mb-2{margin-bottom:1rem!important}}.mb-3{margin-bottom:2rem!important}@media only screen and (max-width: 56.25em){.mb-3{margin-bottom:1.5rem!important}}@media only screen and (max-width: 37.5em){.mb-3{margin-bottom:1.5rem!important}}.mb-4{margin-bottom:2.5rem!important}@media only screen and (max-width: 56.25em){.mb-4{margin-bottom:1.25rem!important}}@media only screen and (max-width: 37.5em){.mb-4{margin-bottom:1.25rem!important}}.ml-2{margin-left:1.25rem!important}@media only screen and (max-width: 56.25em){.ml-2{margin-left:.5rem!important}}@media only screen and (max-width: 37.5em){.ml-2{margin-left:.25rem!important}}.mr-2{margin-right:1.25rem!important}@media only screen and (max-width: 56.25em){.mr-2{margin-right:.5rem!important}}@media only screen and (max-width: 37.5em){.mr-2{margin-right:.25rem!important}}.ml-4{margin-left:2.5rem!important}@media only screen and (max-width: 56.25em){.ml-4{margin-left:1rem!important}}@media only screen and (max-width: 37.5em){.ml-4{margin-left:.5rem!important}}.ml-5{margin-left:3rem!important}@media only screen and (max-width: 56.25em){.ml-5{margin-left:1.25rem!important}}@media only screen and (max-width: 37.5em){.ml-5{margin-left:.625rem!important}}.mr-4{margin-right:2.5rem!important}@media only screen and (max-width: 56.25em){.mr-4{margin-right:1rem!important}}@media only screen and (max-width: 37.5em){.mr-4{margin-right:.5rem!important}}.mr-5{margin-right:3rem!important}@media only screen and (max-width: 56.25em){.mr-5{margin-right:1.25rem!important}}@media only screen and (max-width: 37.5em){.mr-5{margin-right:.625rem!important}}.mr-6{margin-right:3.75rem!important}@media only screen and (max-width: 56.25em){.mr-6{margin-right:2rem!important}}@media only screen and (max-width: 37.5em){.mr-6{margin-right:1.25rem!important}}.mx-2{margin:0 1.25rem!important}@media only screen and (max-width: 56.25em){.mx-2{margin:0 .5rem!important}}@media only screen and (max-width: 37.5em){.mx-2{margin:0 .25rem!important}}.my-0{margin-top:0!important;margin-bottom:0!important}.my-2{margin:1.25rem 0!important}@media only screen and (max-width: 56.25em){.my-2{margin:1rem 0!important}}@media only screen and (max-width: 37.5em){.my-2{margin:1rem 0!important}}.my-3{margin:2rem 0!important}@media only screen and (max-width: 56.25em){.my-3{margin:1.5rem 0!important}}@media only screen and (max-width: 37.5em){.my-3{margin:1.5rem 0!important}}.my-4{margin:2.5rem 0!important}@media only screen and (max-width: 56.25em){.my-4{margin:1.25rem 0!important}}@media only screen and (max-width: 37.5em){.my-4{margin:1.25rem 0!important}}.m-2{margin:1.25rem!important}@media only screen and (max-width: 56.25em){.m-2{margin:1rem!important}}@media only screen and (max-width: 37.5em){.m-2{margin:1rem!important}}.pt-1{padding-top:.625rem!important}@media only screen and (max-width: 56.25em){.pt-1{padding-top:.5rem!important}}@media only screen and (max-width: 37.5em){.pt-1{padding-top:.5rem!important}}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.625rem!important}@media only screen and (max-width: 56.25em){.pb-1{padding-bottom:.5rem!important}}@media only screen and (max-width: 37.5em){.pb-1{padding-bottom:.5rem!important}}.pl-5px{padding-left:5px!important}@media only screen and (max-width: 56.25em){.pl-5px{padding-left:.25rem!important}}@media only screen and (max-width: 37.5em){.pl-5px{padding-left:3px!important}}.pl-1{padding-left:.625rem!important}@media only screen and (max-width: 56.25em){.pl-1{padding-left:.25rem!important}}@media only screen and (max-width: 37.5em){.pl-1{padding-left:2px!important}}.pl-15px{padding-left:1rem!important}@media only screen and (max-width: 56.25em){.pl-15px{padding-left:.3333333333rem!important}}@media only screen and (max-width: 37.5em){.pl-15px{padding-left:.25rem!important}}.pr-0{padding-right:0!important}.pr-1{padding-right:.625rem!important}@media only screen and (max-width: 56.25em){.pr-1{padding-right:.25rem!important}}@media only screen and (max-width: 37.5em){.pr-1{padding-right:2px!important}}.pr-3{padding-right:2rem!important}@media only screen and (max-width: 56.25em){.pr-3{padding-right:.75rem!important}}@media only screen and (max-width: 37.5em){.pr-3{padding-right:.3333333333rem!important}}.pr-4{padding-right:2.5rem!important}@media only screen and (max-width: 56.25em){.pr-4{padding-right:1rem!important}}@media only screen and (max-width: 37.5em){.pr-4{padding-right:.5rem!important}}.pr-4px{padding-right:.25rem!important}.pr-6px{padding-right:.3333333333rem!important}.p-0{padding:0!important}.p-5px{padding:5px!important}.pl-0{padding-left:0!important}.px-1{padding:0 .625rem!important}@media only screen and (max-width: 56.25em){.px-1{padding:0 .25rem!important}}@media only screen and (max-width: 37.5em){.px-1{padding:0 2px!important}}.py-0{padding:.625rem 0!important}@media only screen and (max-width: 56.25em){.py-0{padding:.5rem 0!important}}@media only screen and (max-width: 37.5em){.py-0{padding:.5rem 0!important}}.py-1{padding:.625rem 0!important}@media only screen and (max-width: 56.25em){.py-1{padding:.5rem 0!important}}@media only screen and (max-width: 37.5em){.py-1{padding:.5rem 0!important}}.p-1{padding:.625rem!important}@media only screen and (max-width: 56.25em){.p-1{padding:.5rem!important}}@media only screen and (max-width: 37.5em){.p-1{padding:.5rem!important}}.p-16{padding:1rem!important}@media only screen and (max-width: 56.25em){.p-16{padding:.5rem!important}}@media only screen and (max-width: 37.5em){.p-16{padding:.25rem!important}}.pt-2{padding-top:1.25rem!important}@media only screen and (max-width: 56.25em){.pt-2{padding-top:1rem!important}}@media only screen and (max-width: 37.5em){.pt-2{padding-top:1rem!important}}.pt-3{padding-top:2rem!important}@media only screen and (max-width: 56.25em){.pt-3{padding-top:1.5rem!important}}@media only screen and (max-width: 37.5em){.pt-3{padding-top:1.5rem!important}}.pb-2{padding-bottom:1.25rem!important}@media only screen and (max-width: 56.25em){.pb-2{padding-bottom:1rem!important}}@media only screen and (max-width: 37.5em){.pb-2{padding-bottom:1rem!important}}.pl-2{padding-left:1.25rem!important}@media only screen and (max-width: 56.25em){.pl-2{padding-left:.5rem!important}}@media only screen and (max-width: 37.5em){.pl-2{padding-left:.25rem!important}}.pt-4{padding-top:1.25rem!important}@media only screen and (max-width: 56.25em){.pt-4{padding-top:1.5rem!important}}@media only screen and (max-width: 37.5em){.pt-4{padding-top:1.5rem!important}}.pl-3{padding-left:2rem!important}@media only screen and (max-width: 56.25em){.pl-3{padding-left:.75rem!important}}@media only screen and (max-width: 37.5em){.pl-3{padding-left:.3333333333rem!important}}.pl-4{padding-left:2.5rem!important}@media only screen and (max-width: 56.25em){.pl-4{padding-left:1rem!important}}@media only screen and (max-width: 37.5em){.pl-4{padding-left:.5rem!important}}.pr-2{padding-right:1.25rem!important}@media only screen and (max-width: 56.25em){.pr-2{padding-right:.5rem!important}}@media only screen and (max-width: 37.5em){.pr-2{padding-right:.25rem!important}}.pr-5{padding-right:2.5rem!important}@media only screen and (max-width: 56.25em){.pr-5{padding-right:1rem!important}}@media only screen and (max-width: 37.5em){.pr-5{padding-right:.5rem!important}}.px-2{padding:0 1.25rem!important}@media only screen and (max-width: 56.25em){.px-2{padding:0 .5rem!important}}@media only screen and (max-width: 37.5em){.px-2{padding:0 .25rem!important}}.px-3{padding:0 2rem!important}@media only screen and (max-width: 56.25em){.px-3{padding:0 .75rem!important}}@media only screen and (max-width: 37.5em){.px-3{padding:0 .3333333333rem!important}}.px-4{padding:0 2.5rem!important}@media only screen and (max-width: 56.25em){.px-4{padding:0 1rem!important}}@media only screen and (max-width: 37.5em){.px-4{padding:0 .5rem!important}}.py-2{padding:1.25rem 0!important}@media only screen and (max-width: 56.25em){.py-2{padding:1rem 0!important}}@media only screen and (max-width: 37.5em){.py-2{padding:1rem 0!important}}.p-2{padding:1.25rem!important}@media only screen and (max-width: 56.25em){.p-2{padding:1rem!important}}@media only screen and (max-width: 37.5em){.p-2{padding:1rem!important}}.p-24{padding:1.5rem!important}@media only screen and (max-width: 56.25em){.p-24{padding:.75rem!important}}@media only screen and (max-width: 37.5em){.p-24{padding:.625rem!important}}.ps-2{padding-left:1.25rem!important}.m-1px{margin:1px!important}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-auto{overflow:auto}.mat-footer-row .mat-footer-cell{border-bottom:none!important}.mat-row:last-child .mdc-data-table__cell{border-bottom:none!important}.mat-mdc-form-field-infix{width:14rem!important}.flex-ellipsis{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-right:2rem}.mat-list,.mat-list .mat-list-item .mat-list-item-content,.mat-nav-list,.mat-selection-list{padding:0!important}.inline-spinner{display:inline-flex!important;top:5px!important}.top-minus-5px{position:relative;top:-5px}.top-minus-25px{position:relative;top:-1.5rem;margin-bottom:-1.5rem!important}.top-minus-30px{position:relative;top:-2rem}.cursor-pointer:hover{cursor:pointer!important}.cursor-default:hover{cursor:default!important}.cursor-not-allowed:hover{cursor:not-allowed!important}.inline-flex{display:inline-flex!important}.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.op-image{box-shadow:0 0 2px #ccc;border:2px solid;border-color:transparent;cursor:pointer;transition:.2s}.settings-icon{position:fixed;top:30%;right:0;width:.25rem;height:2.5rem;opacity:.6;cursor:pointer;z-index:999999}.test-banner{padding-top:2px;background-color:#fc7783;text-transform:uppercase;border-radius:2px}.currency-icon.currency-icon-small{max-width:.8375rem;max-height:.8375rem}.currency-icon.currency-icon-medium{max-width:1rem;max-height:1rem}.currency-icon.currency-icon-large{max-width:1.125rem;max-height:1.125rem}.currency-icon.currency-icon-x-large{max-width:1.25rem;max-height:1.25rem}.fa-icon-small,.top-icon-small{min-width:1.25rem}.fa-icon-small svg,.top-icon-small svg{min-width:1.25rem}.botlz-icon-sm{min-width:1rem;width:1rem;max-width:1rem}.copy-icon{position:relative;top:.25rem}.copy-icon-smaller{position:relative;top:2px}.top-5px{position:relative;top:5px}.animate-settings{animation:animate-settings 10s linear infinite}@keyframes animate-settings{to{transform:rotate(360deg)}}.mt-minus-5{position:relative;margin-top:-5px}.color-white{color:#fff!important}.custom-card{padding:0 0 .5rem!important}.not-found-box{min-width:50%}.w-100{width:100%!important}.w-96{width:96%!important}.w-84{width:84%!important}.h-100{height:100%!important}.h-93{height:93%!important}.h-40{height:400px!important}.h-46{height:460px!important}.h-50{height:500px!important}.h-10{height:100px!important}.h-4{height:12rem!important}.h-35px{height:35px!important}a{outline:none;text-decoration:none;text-decoration:underline}.mat-tree{width:100%}.mat-tree-node,.mat-nested-tree-node-parent{min-height:3rem;height:3rem;padding:0 .75rem;cursor:pointer}@media only screen and (max-width: 37.5em){.mat-tree-node,.mat-nested-tree-node-parent{min-height:4rem;height:4rem}}.mat-tree-node:focus,.mat-tree-node:active,.mat-nested-tree-node:focus,.mat-nested-tree-node:active,.mat-nested-tree-node-parent:focus,.mat-nested-tree-node-parent:active,.mat-tree-node span:focus,.mat-tree-node span:active,.mat-nested-tree-node-parent span:focus,.mat-nested-tree-node-parent span:active,.mat-tree-node div:focus,.mat-tree-node div:active,.mat-nested-tree-node-parent div:focus,.mat-nested-tree-node-parent div:active,.mat-tree-node .mat-icon:focus,.mat-tree-node .mat-icon:active,.mat-nested-tree-node-parent .mat-icon:focus,.mat-nested-tree-node-parent .mat-icon:active{outline:none}.lnd-info{height:6rem}.flex-wrap{flex-wrap:wrap!important}.word-break{word-break:break-all!important}.font-bold-500{font-weight:500!important}.font-bold-700{font-weight:700!important}.pubkey-info-top{flex-wrap:wrap;margin-top:1px;min-height:1rem;cursor:pointer;display:flex;align-content:center}.logo{font-weight:700;letter-spacing:1px}.fa-icon-regular{min-width:2.5rem;width:2.5rem;max-width:2.5rem}.icon-large{margin-left:-100%}.icon-small{height:1.25rem!important;width:1.25rem!important}.icon-smaller{height:.625rem!important;width:.625rem!important}.mat-icon-36{width:2.25rem!important;height:2.25rem!important}.mat-mdc-select.multi-node-select{width:84%}.page-title-container{font-size:110%;padding:0 .75rem;margin-bottom:.5rem}@media only screen and (max-width: 56.25em){.page-title-container{padding:0 .5rem;margin:.5rem 0}}@media only screen and (max-width: 37.5em){.page-title-container{padding:0 .5rem;margin:.5rem 0}}table{width:100%}th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 1rem}@media only screen and (max-width: 75em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .5rem}}@media only screen and (max-width: 56.25em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .25rem}}@media only screen and (max-width: 37.5em){th.mdc-data-table__header-cell,td.mdc-data-table__cell{padding:0 .125rem}}th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:1rem}@media only screen and (max-width: 75em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.5rem!important}}@media only screen and (max-width: 56.25em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.25rem!important}}@media only screen and (max-width: 37.5em){th.mdc-data-table__header-cell:first-of-type,td.mdc-data-table__cell:first-of-type,td.mat-footer-cell:first-of-type,mat-cell:first-of-type,.mdc-data-table__header-cell:first-of-type,mat-footer-cell:first-of-type{padding-left:.125rem!important}}th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:1rem}@media only screen and (max-width: 75em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.5rem!important}}@media only screen and (max-width: 56.25em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.25rem!important}}@media only screen and (max-width: 37.5em){th.mdc-data-table__header-cell:last-of-type,td.mdc-data-table__cell:last-of-type,td.mat-footer-cell:last-of-type,mat-cell:last-of-type,.mdc-data-table__header-cell:last-of-type,mat-footer-cell:last-of-type{padding-right:.125rem!important}}.dot{display:inline-flex;width:.8rem;height:.8rem;border-radius:.8rem;margin:.25rem 0 0}.dot.tiny-dot{width:.5rem;height:.5rem;border-radius:.5rem;margin:0 .3333333333rem 1px 0}.dot.green{background-color:#28ca43}.dot.yellow{background-color:#ffbd2e}.dot.red{background-color:#c62828}.dot.grey{background-color:#ccc}.font-size-80{font-size:80%!important}.font-size-90{font-size:90%!important}.font-size-120{font-size:120%!important}.font-size-200{font-size:200%!important}.font-size-300{font-size:300%!important}.font-weight-500{font-weight:500!important}.font-weight-900{font-weight:900!important}.pre-wrap{white-space:pre-wrap!important}.display-none{display:none!important}.mat-divider.mat-divider-horizontal.mat-divider-inset{margin-left:1rem}.mat-vertical-stepper-header{padding:.625rem .625rem .625rem .5rem!important}.mat-vertical-stepper-content{margin:0 .5rem}.ellipsis-child{flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.blinker{animation:blink-animation 1s steps(5,start) infinite;-webkit-animation:blink-animation 1s steps(5,start) infinite}@keyframes blink-animation{to{visibility:hidden}}.mat-progress-bar.dashboard-progress-bar{height:6px;min-height:6px}.alert{margin-bottom:.625rem;padding:.3333333333rem .625rem;border-radius:2px}.dashboard-vert-menu.mat-menu-panel{min-height:3rem}.mat-mdc-tab .mdc-tab__content{overflow:hidden!important}.mdc-tab__text-label{opacity:1;padding:0;min-width:11rem}@media only screen and (max-width: 56.25em){.mdc-tab__text-label{min-width:auto}}@media only screen and (max-width: 37.5em){.mdc-tab__text-label{min-width:auto}}.dashboard-card{margin-bottom:0}.dashboard-card .mat-mdc-card-header{padding:16px 0 0 16px}.dashboard-card .mat-mdc-card-content.dashboard-card-content{margin-bottom:0}.dashboard-tabs-group.mat-mdc-tab-group{max-width:91%}.dashboard-tabs-group .mat-mdc-tab-list{width:100%}.dashboard-tabs-group .mdc-tab{margin:0;padding:0 1.5rem;display:flex;flex:1 0 auto;justify-content:center}.dashboard-tabs-group.mat-mdc-tab-group .mat-mdc-tab .mdc-tab__content .mdc-tab__text-label{min-width:5.5rem}.node-grid-tile.mat-grid-tile .mat-figure{align-items:start}.mat-vertical-content-container{margin-left:1.25rem!important}.xs-scroll-y{overflow-y:scroll;max-height:600px}.h-2{min-height:1.25rem!important}.border-valid{border:1px solid #28ca43!important}.border-invalid{border:1px solid #c62828!important}.icon-green{fill:#28ca43}.visible{visibility:visible!important}.hidden{visibility:hidden!important}.h-5{height:50px}.btn-sticky-container{height:0;opacity:.5}.btn-sticky-container .mat-icon{animation:scrollDownAnimation 2s infinite}@keyframes scrollDownAnimation{0%{transform:translateY(0)}10%{transform:translateY(-20%)}20%{transform:translateY(20%)}30%{transform:translateY(-20%)}40%{transform:translateY(20%)}50%{transform:translateY(0)}}.mat-form-field-appearance-legacy.mat-form-field-disabled input,.mat-form-field-appearance-legacy.mat-form-field-disabled mat-select,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-trigger,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-value,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-select-arro-wrapper,.mat-form-field-appearance-legacy.mat-form-field-disabled textarea,.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-infix{cursor:not-allowed}.mat-mdc-tooltip-panel{max-width:25rem!important}.ngx-charts-tooltip-content.type-tooltip{background:#323232e6!important}.ngx-charts-tooltip-content .tooltip-caret{border-top-color:#323232e6!important}.mat-mdc-tooltip-panel .mdc-tooltip__surface{min-width:10rem;max-width:unset;text-align:start}.go-to-link{text-decoration:underline;font-weight:500;cursor:pointer}.mat-mdc-card.dashboard-card{padding:0 .75rem!important}@media only screen and (max-width: 56.25em){.mat-mdc-card.dashboard-card{padding:.25rem .625rem!important}}@media only screen and (max-width: 37.5em){.mat-mdc-card.dashboard-card{padding:.25rem .5rem!important}}.mat-mdc-card.dashboard-card.p-0{padding:0!important}.mat-mdc-card.dashboard-card .mat-mdc-card-header-text{width:100%}.mat-progress-bar{min-height:4px}.dashboard-card-content{text-align:left}.ellipsis-parent{display:flex}.mat-column-actions{min-height:3.25rem}@media only screen and (max-width: 37.5em){.mat-column-actions{min-height:4.1rem}}.mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 1rem}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .5rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header{padding:0 .25rem}}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-header .mat-expansion-indicator{margin-top:-5px}.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 1.5rem 1rem}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .5rem .5rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body{padding:0 .25rem .125rem}}@media only screen and (max-width: 56.25em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-title,.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-description{margin-right:.5rem}}@media only screen and (max-width: 37.5em){.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-title,.mat-expansion-panel.flat-expansion-panel .mat-expansion-panel-body .mat-expansion-panel-header-description{margin-right:.25rem}}html{--mat-ripple-color: rgba(0, 0, 0, .1)}html{--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}html{--mat-optgroup-label-text-color: rgba(0, 0, 0, .87)}.mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #5e4ea5;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #5e4ea5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}html,.mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}html{--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87)}.mat-elevation-z0,.mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.mat-elevation-z1,.mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.mat-elevation-z2,.mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.mat-elevation-z3,.mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.mat-elevation-z4,.mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.mat-elevation-z5,.mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.mat-elevation-z6,.mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.mat-elevation-z7,.mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.mat-elevation-z8,.mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.mat-elevation-z9,.mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.mat-elevation-z10,.mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.mat-elevation-z11,.mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.mat-elevation-z12,.mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.mat-elevation-z13,.mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.mat-elevation-z14,.mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.mat-elevation-z15,.mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.mat-elevation-z16,.mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.mat-elevation-z17,.mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.mat-elevation-z18,.mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.mat-elevation-z19,.mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.mat-elevation-z20,.mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.mat-elevation-z21,.mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.mat-elevation-z22,.mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.mat-elevation-z23,.mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.mat-elevation-z24,.mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}html{--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px}html{--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54)}html{--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0}.mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #5e4ea5;--mdc-linear-progress-track-color: rgba(94, 78, 165, .25)}.mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}html{--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px}html{--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff}html{--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px}html{--mdc-filled-text-field-caret-color: #5e4ea5;--mdc-filled-text-field-focus-active-indicator-color: #5e4ea5;--mdc-filled-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #5e4ea5;--mdc-outlined-text-field-focus-outline-color: #5e4ea5;--mdc-outlined-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(94, 78, 165, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08}.mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}html{--mat-form-field-container-height: 56px;--mat-form-field-filled-label-display: block;--mat-form-field-container-vertical-padding: 16px;--mat-form-field-filled-with-label-container-padding-top: 24px;--mat-form-field-filled-with-label-container-padding-bottom: 8px}html{--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(94, 78, 165, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}html .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}html .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}html{--mat-select-arrow-transform: translateY(-8px)}html{--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12)}html{--mat-autocomplete-background-color: white}html{--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px}html{--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6)}.mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #5e4ea5;--mdc-chip-elevated-selected-container-color: #5e4ea5;--mdc-chip-elevated-disabled-container-color: #5e4ea5;--mdc-chip-flat-disabled-selected-container-color: #5e4ea5;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.mat-mdc-chip.mat-mdc-standard-chip{--mdc-chip-container-height: 32px}html{--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent}html{--mdc-switch-selected-focus-state-layer-color: #56479d;--mdc-switch-selected-handle-color: #56479d;--mdc-switch-selected-hover-state-layer-color: #56479d;--mdc-switch-selected-pressed-state-layer-color: #56479d;--mdc-switch-selected-focus-handle-color: #312579;--mdc-switch-selected-hover-handle-color: #312579;--mdc-switch-selected-pressed-handle-color: #312579;--mdc-switch-selected-focus-track-color: #8e83c0;--mdc-switch-selected-hover-track-color: #8e83c0;--mdc-switch-selected-pressed-track-color: #8e83c0;--mdc-switch-selected-track-color: #8e83c0;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38)}html .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}html .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}html .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}html{--mdc-switch-state-layer-size: 40px}html{--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px}.mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}html{--mdc-radio-state-layer-size: 40px;--mat-radio-touch-target-display: block}html{--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6}html{--mdc-slider-handle-color: #5e4ea5;--mdc-slider-focus-handle-color: #5e4ea5;--mdc-slider-hover-handle-color: #5e4ea5;--mdc-slider-active-track-color: #5e4ea5;--mdc-slider-inactive-track-color: #5e4ea5;--mdc-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #5e4ea5;--mat-slider-hover-state-layer-color: rgba(94, 78, 165, .05);--mat-slider-focus-state-layer-color: rgba(94, 78, 165, .2);--mat-slider-value-indicator-opacity: .6}html .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}html .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}html{--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px}html{--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12)}html{--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px}html{--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12}.mdc-list-item__start,.mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5}.mat-accent .mdc-list-item__start,.mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.mat-warn .mdc-list-item__start,.mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#5e4ea5}.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}html{--mdc-list-list-item-one-line-container-height: 48px;--mdc-list-list-item-two-line-container-height: 64px;--mdc-list-list-item-three-line-container-height: 88px;--mat-list-list-item-leading-icon-start-space: 16px;--mat-list-list-item-leading-icon-end-space: 32px}.mdc-list-item__start,.mdc-list-item__end{--mdc-radio-state-layer-size: 40px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line{height:56px}.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines,.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines{height:72px}html{--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12)}html{--mat-paginator-container-size: 56px;--mat-paginator-form-field-container-height: 40px;--mat-paginator-form-field-container-vertical-padding: 8px}html{--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0}.mat-mdc-tab-group,.mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #5e4ea5;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #5e4ea5;--mat-tab-header-active-ripple-color: #5e4ea5;--mat-tab-header-inactive-ripple-color: #5e4ea5;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #5e4ea5;--mat-tab-header-active-hover-label-text-color: #5e4ea5;--mat-tab-header-active-focus-indicator-color: #5e4ea5;--mat-tab-header-active-hover-indicator-color: #5e4ea5}.mat-mdc-tab-group.mat-accent,.mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.mat-mdc-tab-group.mat-warn,.mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.mat-mdc-tab-group.mat-background-primary,.mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #5e4ea5;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-group.mat-background-accent,.mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-group.mat-background-warn,.mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.mat-mdc-tab-header{--mdc-secondary-navigation-tab-container-height: 48px}html{--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16}html{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38)}.mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}html{--mdc-checkbox-state-layer-size: 40px;--mat-checkbox-touch-target-display: block}html{--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px}html{--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12}.mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #5e4ea5;--mat-text-button-state-layer-color: #5e4ea5;--mat-text-button-ripple-color: rgba(94, 78, 165, .1)}.mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #5e4ea5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #5e4ea5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #5e4ea5;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #5e4ea5;--mat-outlined-button-ripple-color: rgba(94, 78, 165, .1)}.mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}html{--mdc-text-button-container-height: 36px;--mdc-filled-button-container-height: 36px;--mdc-outlined-button-container-height: 36px;--mdc-protected-button-container-height: 36px;--mat-text-button-touch-target-display: block;--mat-filled-button-touch-target-display: block;--mat-protected-button-touch-target-display: block;--mat-outlined-button-touch-target-display: block}html{--mdc-icon-button-icon-size: 24px}html{--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12}html .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: rgba(94, 78, 165, .1)}html .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}html .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}html{--mat-icon-button-touch-target-display: block}.mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 48px;width:var(--mdc-icon-button-state-layer-size);height:var(--mdc-icon-button-state-layer-size);padding:12px}html{--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px}html{--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000}html .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #5e4ea5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}html .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}html{--mat-fab-touch-target-display: block;--mat-fab-small-touch-target-display: block}html{--mdc-snackbar-container-shape: 4px}html{--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242}html{--mat-table-row-item-outline-width: 1px}html{--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12)}html{--mat-table-header-container-height: 56px;--mat-table-footer-container-height: 52px;--mat-table-row-item-container-height: 52px}html{--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px}html{--mdc-circular-progress-active-indicator-color: #5e4ea5}html .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}html .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}html{--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0}html{--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38)}.mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}html{--mat-bottom-sheet-container-shape: 4px}html{--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white}html{--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12}html{--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0}html{--mat-standard-button-toggle-height: 48px}html{--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12)}html{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(94, 78, 165, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(94, 78, 165, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87)}.mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.mat-calendar-controls{--mat-icon-button-touch-target-display: none}.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base{--mdc-icon-button-state-layer-size: 40px;width:var(--mdc-icon-button-state-layer-size);height:var(--mdc-icon-button-state-layer-size);padding:8px}html{--mat-divider-width: 1px}html{--mat-divider-color: rgba(0, 0, 0, .12)}html{--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none}html{--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54)}html{--mat-expansion-header-collapsed-state-height: 48px;--mat-expansion-header-expanded-state-height: 64px}html{--mat-icon-color: inherit}.mat-icon.mat-primary{--mat-icon-color: #5e4ea5}.mat-icon.mat-accent{--mat-icon-color: #424242}.mat-icon.mat-warn{--mat-icon-color: #b00020}html{--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto}html{--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6)}html{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent}html .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}html .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}html{--mat-stepper-header-height: 72px}html{--mat-sort-arrow-color: #757575}html{--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87)}.mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #5e4ea5;--mat-toolbar-container-text-color: white}.mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}html{--mat-toolbar-standard-height: 64px;--mat-toolbar-mobile-height: 56px}html{--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}html{--mat-tree-node-min-height: 48px}.rtl-container .mat-ripple{overflow:hidden;position:relative}.rtl-container .mat-ripple:not(:empty){transform:translateZ(0)}.rtl-container .mat-ripple.mat-ripple-unbounded{overflow:visible}.rtl-container .mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0,0,.2,1);transform:scale3d(0,0,0);background-color:var(--mat-ripple-color, rgba(0, 0, 0, .1))}.cdk-high-contrast-active .rtl-container .mat-ripple-element{display:none}.rtl-container .cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .rtl-container .cdk-visually-hidden{left:auto;right:0}.rtl-container .cdk-overlay-container,.rtl-container .cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.rtl-container .cdk-overlay-container{position:fixed;z-index:1000}.rtl-container .cdk-overlay-container:empty{display:none}.rtl-container .cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.rtl-container .cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.rtl-container .cdk-overlay-backdrop{position:absolute;inset:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:transparent;transition:opacity .4s cubic-bezier(.25,.8,.25,1);opacity:0}.rtl-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .rtl-container .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.rtl-container .cdk-overlay-dark-backdrop{background:#00000052}.rtl-container .cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.rtl-container .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.rtl-container .cdk-overlay-backdrop-noop-animation{transition:none}.rtl-container .cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.rtl-container .cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}.rtl-container textarea.cdk-textarea-autosize{resize:none}.rtl-container textarea.cdk-textarea-autosize-measuring{padding:2px 0!important;box-sizing:content-box!important;height:auto!important;overflow:hidden!important}.rtl-container textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0!important;box-sizing:content-box!important;height:0!important}@keyframes cdk-text-field-autofill-start{}@keyframes cdk-text-field-autofill-end{}.rtl-container .cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.rtl-container .cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}.rtl-container .mat-focus-indicator{position:relative}.rtl-container .mat-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border:var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.rtl-container .mat-focus-indicator:focus:before{content:""}.cdk-high-contrast-active .rtl-container{--mat-focus-indicator-display: block}.rtl-container .mat-mdc-focus-indicator{position:relative}.rtl-container .mat-mdc-focus-indicator:before{inset:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-mdc-focus-indicator-display, none);border:var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);border-radius:var(--mat-mdc-focus-indicator-border-radius, 4px)}.rtl-container .mat-mdc-focus-indicator:focus:before{content:""}.cdk-high-contrast-active .rtl-container{--mat-mdc-focus-indicator-display: block}.mat-app-background{background-color:var(--mat-app-background-color, transparent);color:var(--mat-app-text-color, inherit)}.rtl-container.purple.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.purple.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.purple.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.purple.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.purple.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.purple.day .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.purple.day .page-title,.rtl-container.purple.day .mat-mdc-select-value,.rtl-container.purple.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.purple.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.purple.day .help-expansion .mat-expansion-panel-header,.rtl-container.purple.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.purple.day .help-expansion .mat-expansion-indicator:after,.rtl-container.purple.day .help-expansion .mat-expansion-panel-content,.rtl-container.purple.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#5e4ea5}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.purple.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.purple.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#5e4ea5}.rtl-container.purple.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.purple.day .mat-tree-node:hover,.rtl-container.purple.day .mat-nested-tree-node-parent:hover,.rtl-container.purple.day .mat-select-panel .mat-option:hover,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#5e4ea5;cursor:pointer}.rtl-container.purple.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.day .mat-tree-node:hover .mat-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#5e4ea5}.rtl-container.purple.day .spinner-container h2{color:#fff}.rtl-container.purple.day .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.purple.day .mat-form-field-suffix{color:#0000008a}.rtl-container.purple.day .mat-stroked-button.mat-primary{border-color:#5e4ea5}.rtl-container.purple.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.purple.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.purple.day .selected-color{border-color:#8e83c0}.rtl-container.purple.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.purple.day table.mat-mdc-table thead tr th,.rtl-container.purple.day .page-title-container,.rtl-container.purple.day .page-sub-title-container{color:#0000008a}.rtl-container.purple.day .page-title-container .page-title-img,.rtl-container.purple.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.purple.day .page-title-container .mat-input-element,.rtl-container.purple.day .page-title-container .mat-radio-label-content,.rtl-container.purple.day .page-title-container .theme-name,.rtl-container.purple.day .page-sub-title-container .mat-input-element,.rtl-container.purple.day .page-sub-title-container .mat-radio-label-content,.rtl-container.purple.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.purple.day .cc-data-block .cc-data-title{color:#5e4ea5}.rtl-container.purple.day .active-link,.rtl-container.purple.day .active-link .fa-icon-small{color:#5e4ea5;font-weight:500;cursor:pointer;fill:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover,.rtl-container.purple.day .mat-nested-tree-node-parent:hover,.rtl-container.purple.day .mat-select-panel .mat-option:hover,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#5e4ea5;cursor:pointer;background:#0000000a}.rtl-container.purple.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.day .mat-tree-node:hover .mat-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#5e4ea5}.rtl-container.purple.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#5e4ea5}.rtl-container.purple.day .mat-tree-node .sidenav-img,.rtl-container.purple.day .mat-nested-tree-node .sidenav-img,.rtl-container.purple.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.purple.day .page-title-container .page-title-img,.rtl-container.purple.day svg.top-icon-small{fill:#000000de}.rtl-container.purple.day .mat-progress-bar-fill:after{background-color:#312579}.rtl-container.purple.day .modal-qr-code-container{background:#0000001f}.rtl-container.purple.day .mdc-tab__text-label,.rtl-container.purple.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.purple.day .mat-mdc-card,.rtl-container.purple.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.purple.day .dashboard-info-title{color:#5e4ea5}.rtl-container.purple.day .dashboard-capacity-header,.rtl-container.purple.day .dashboard-info-value{color:#0000008a}.rtl-container.purple.day .color-primary{color:#5e4ea5!important}.rtl-container.purple.day .dot-primary{background-color:#5e4ea5!important}.rtl-container.purple.day .dot-primary-lighter{background-color:#8e83c0!important}.rtl-container.purple.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .mat-mdc-form-field-hint{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.purple.day .mat-mdc-form-field-hint fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.day .currency-icon path,.rtl-container.purple.day .currency-icon polygon{fill:#0000008a}.rtl-container.purple.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.purple.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.purple.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.day svg .stroke-color-primary-lighter{stroke:#8e83c0}.rtl-container.purple.day svg .stroke-color-primary{stroke:#5e4ea5}.rtl-container.purple.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.purple.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-1{fill:#fff}.rtl-container.purple.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.purple.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-6{fill:#fff}.rtl-container.purple.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-9{fill:#fff}.rtl-container.purple.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.purple.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.purple.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-16{fill:#404040}.rtl-container.purple.day svg .fill-color-17{fill:#404040}.rtl-container.purple.day svg .fill-color-18{fill:#000}.rtl-container.purple.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.purple.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.purple.day svg .fill-color-24{fill:#000}.rtl-container.purple.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.purple.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.purple.day svg .fill-color-27{fill:#000}.rtl-container.purple.day svg .fill-color-28{fill:#313131}.rtl-container.purple.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.purple.day svg .fill-color-30{fill:#fff}.rtl-container.purple.day svg .fill-color-31{fill:#5e4ea5}.rtl-container.purple.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.purple.day svg .fill-color-primary{fill:#5e4ea5}.rtl-container.purple.day svg .fill-color-primary-lighter{fill:#8e83c0}.rtl-container.purple.day svg .fill-color-primary-darker{fill:#5e4ea5}.rtl-container.purple.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.purple.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.purple.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#5e4ea5}.rtl-container.purple.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.purple.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.purple.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.purple.day .material-icons.mat-icon-no-color,.rtl-container.purple.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.purple.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.purple.day .material-icons.info-icon.info-icon-primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.purple.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.purple.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#5e4ea5}.rtl-container.purple.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#312579}.rtl-container.purple.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.purple.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#afa7d2}.rtl-container.purple.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.purple.day .mat-progress-bar-buffer{background-color:#cfcae4}.rtl-container.purple.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.purple.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.purple.day .foreground.mat-progress-spinner circle,.rtl-container.purple.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.purple.day .mat-toolbar-row,.rtl-container.purple.day .mat-toolbar-single-row{height:4rem}.rtl-container.purple.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day a{color:#5e4ea5}.rtl-container.purple.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.purple.day .h-active-link{border-bottom:2px solid white}.rtl-container.purple.day .mat-icon-36{color:#0000008a}.rtl-container.purple.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.purple.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.purple.day .genseed-message{width:10%;color:#5e4ea5}.rtl-container.purple.day .border-primary{border:1px solid #5e4ea5}.rtl-container.purple.day .border-accent{border:1px solid #424242}.rtl-container.purple.day .border-warn{border:1px solid #b00020}.rtl-container.purple.day .material-icons.primary{color:#5e4ea5}.rtl-container.purple.day .material-icons.accent{color:#424242}.rtl-container.purple.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.purple.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.purple.day .row-disabled{background-color:gray}.rtl-container.purple.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.purple.day .mat-mdc-card-content,.rtl-container.purple.day .mat-mdc-card-subtitle,.rtl-container.purple.day .mat-mdc-card-title{color:#0000008a}.rtl-container.purple.day .mat-menu-panel{min-width:4rem}.rtl-container.purple.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.purple.day .horizontal-button:hover{background:#8e83c0;color:#424242}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#5e4ea5}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.purple.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.purple.day .mat-button,.rtl-container.purple.day .mat-icon-button,.rtl-container.purple.day .mat-stroked-button,.rtl-container.purple.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.purple.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.purple.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.purple.day .cc-data-block .cc-data-value{color:#000}.rtl-container.purple.day .mat-cell,.rtl-container.purple.day .mat-header-cell,.rtl-container.purple.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.purple.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.purple.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#5e4ea5}.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.purple.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#5e4ea5;opacity:1}.rtl-container.purple.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.purple.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.purple.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.purple.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.purple.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.purple.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.purple.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.purple.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.purple.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.purple.day .more-button{color:#000}.rtl-container.purple.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.purple.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.purple.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.purple.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.purple.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.purple.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.purple.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.purple.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.purple.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.purple.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.purple.day .tab-badge .mat-badge-content.mat-badge-active{background:#5e4ea5}.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.purple.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.day .rtl-select-overlay{min-width:7rem}}.rtl-container.purple.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.purple.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.purple.day .table-actions-button{min-width:8rem}.rtl-container.purple.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.purple.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#afa7d2!important}.rtl-container.purple.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#56479d!important}.rtl-container.purple.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.purple.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.purple.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.purple.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.purple.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.purple.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.purple.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.purple.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.purple.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.purple.day .color-warn{color:#b00020}.rtl-container.purple.day .fill-warn{fill:#b00020}.rtl-container.purple.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.purple.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.purple.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.purple.day .alert.alert-info a{color:#004085}.rtl-container.purple.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.purple.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.purple.day .alert.alert-warn a{color:#856404}.rtl-container.purple.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.purple.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.purple.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.purple.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.purple.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.purple.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.purple.day .failed-status{color:#b00020}.rtl-container.purple.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.purple.day .svg-fill-primary{fill:#5e4ea5}.rtl-container.purple.day .svg-fill-primary-lighter{fill:#8e83c0}.rtl-container.purple.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.purple.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.purple.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.purple.day .dashboard-card-content .underline,.rtl-container.purple.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.purple.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.purple.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon{color:#5e4ea5}.rtl-container.purple.day .mat-mdc-form-field-hint .currency-icon path{fill:#5e4ea5}.rtl-container.purple.day .fa-icon-primary{color:#5e4ea5}.rtl-container.purple.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.day ngx-charts-bar-vertical text,.rtl-container.purple.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.purple.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.purple.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.purple.day .mat-paginator-container{padding:0}.rtl-container.purple.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.purple.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.purple.day .invoice-animation-div .particles-circle{position:absolute;background-color:#5e4ea5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #5e4ea5;background-color:transparent}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.purple.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.purple.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.purple.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.purple.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.purple.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.purple.night{--mat-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #5e4ea5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #5e4ea5;--mdc-filled-text-field-focus-active-indicator-color: #5e4ea5;--mdc-filled-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #5e4ea5;--mdc-outlined-text-field-focus-outline-color: #5e4ea5;--mdc-outlined-text-field-focus-label-text-color: rgba(94, 78, 165, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(94, 78, 165, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(94, 78, 165, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #8e83c0;--mdc-switch-selected-handle-color: #8e83c0;--mdc-switch-selected-hover-state-layer-color: #8e83c0;--mdc-switch-selected-pressed-state-layer-color: #8e83c0;--mdc-switch-selected-focus-handle-color: #afa7d2;--mdc-switch-selected-hover-handle-color: #afa7d2;--mdc-switch-selected-pressed-handle-color: #afa7d2;--mdc-switch-selected-focus-track-color: #56479d;--mdc-switch-selected-hover-track-color: #56479d;--mdc-switch-selected-pressed-track-color: #56479d;--mdc-switch-selected-track-color: #56479d;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #5e4ea5;--mdc-slider-focus-handle-color: #5e4ea5;--mdc-slider-hover-handle-color: #5e4ea5;--mdc-slider-active-track-color: #5e4ea5;--mdc-slider-inactive-track-color: #5e4ea5;--mdc-slider-with-tick-marks-inactive-container-color: #5e4ea5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #5e4ea5;--mat-slider-hover-state-layer-color: rgba(94, 78, 165, .05);--mat-slider-focus-state-layer-color: rgba(94, 78, 165, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #5e4ea5;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #5e4ea5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #5e4ea5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(94, 78, 165, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(94, 78, 165, .3);--mat-datepicker-toggle-active-state-icon-color: #5e4ea5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(94, 78, 165, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #5e4ea5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #5e4ea5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #5e4ea5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.purple.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.purple.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.purple.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #5e4ea5;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #5e4ea5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.purple.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.purple.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.purple.night .mat-elevation-z0,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.purple.night .mat-elevation-z1,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z2,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z3,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.purple.night .mat-elevation-z4,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-elevation-z5,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.purple.night .mat-elevation-z6,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.purple.night .mat-elevation-z7,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.purple.night .mat-elevation-z8,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.purple.night .mat-elevation-z9,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.purple.night .mat-elevation-z10,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z11,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.purple.night .mat-elevation-z12,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z13,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z14,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.purple.night .mat-elevation-z15,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z16,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z17,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.purple.night .mat-elevation-z18,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.purple.night .mat-elevation-z19,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.purple.night .mat-elevation-z20,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z21,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z22,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.purple.night .mat-elevation-z23,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.purple.night .mat-elevation-z24,.rtl-container.purple.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.purple.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #5e4ea5;--mdc-linear-progress-track-color: rgba(94, 78, 165, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.purple.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.purple.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.purple.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #5e4ea5;--mdc-chip-elevated-selected-container-color: #5e4ea5;--mdc-chip-elevated-disabled-container-color: #5e4ea5;--mdc-chip-flat-disabled-selected-container-color: #5e4ea5;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.purple.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.purple.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.purple.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.purple.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.purple.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #5e4ea5;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.purple.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.purple.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.purple.night .mdc-list-item__start,.rtl-container.purple.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #5e4ea5;--mdc-radio-selected-hover-icon-color: #5e4ea5;--mdc-radio-selected-icon-color: #5e4ea5;--mdc-radio-selected-pressed-icon-color: #5e4ea5}.rtl-container.purple.night .mat-accent .mdc-list-item__start,.rtl-container.purple.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.purple.night .mat-warn .mdc-list-item__start,.rtl-container.purple.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.purple.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.purple.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.purple.night .mat-mdc-tab-group,.rtl-container.purple.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #5e4ea5;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #5e4ea5;--mat-tab-header-active-ripple-color: #5e4ea5;--mat-tab-header-inactive-ripple-color: #5e4ea5;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #5e4ea5;--mat-tab-header-active-hover-label-text-color: #5e4ea5;--mat-tab-header-active-focus-indicator-color: #5e4ea5;--mat-tab-header-active-hover-indicator-color: #5e4ea5}.rtl-container.purple.night .mat-mdc-tab-group.mat-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.purple.night .mat-mdc-tab-group.mat-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #5e4ea5;--mat-tab-header-with-background-foreground-color: white}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.purple.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.purple.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #5e4ea5;--mdc-checkbox-selected-hover-icon-color: #5e4ea5;--mdc-checkbox-selected-icon-color: #5e4ea5;--mdc-checkbox-selected-pressed-icon-color: #5e4ea5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #5e4ea5;--mdc-checkbox-selected-hover-state-layer-color: #5e4ea5;--mdc-checkbox-selected-pressed-state-layer-color: #5e4ea5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.purple.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #5e4ea5;--mat-text-button-state-layer-color: #5e4ea5;--mat-text-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #5e4ea5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #5e4ea5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #5e4ea5;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #5e4ea5;--mat-outlined-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #5e4ea5;--mat-icon-button-state-layer-color: #5e4ea5;--mat-icon-button-ripple-color: rgba(94, 78, 165, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.purple.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #5e4ea5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #5e4ea5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.purple.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.purple.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.purple.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.purple.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.purple.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.purple.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.purple.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.purple.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.purple.night .mat-icon.mat-primary{--mat-icon-color: #5e4ea5}.rtl-container.purple.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.purple.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.purple.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.purple.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.purple.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #5e4ea5;--mat-toolbar-container-text-color: white}.rtl-container.purple.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.purple.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.purple.night .mat-primary{color:#9787ff!important}.rtl-container.purple.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.purple.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.purple.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.purple.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.purple.night .bg-primary{background-color:#5e4ea5;color:#fff}.rtl-container.purple.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#9787ff}.rtl-container.purple.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.purple.night .currency-icon path,.rtl-container.purple.night .currency-icon polygon{fill:#fff}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.purple.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.purple.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#9787ff}.rtl-container.purple.night .cc-data-block .cc-data-title{color:#9787ff}.rtl-container.purple.night .mat-stroked-button.mat-primary{border-color:#9787ff;color:#9787ff}.rtl-container.purple.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.purple.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.purple.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.purple.night .active-link,.rtl-container.purple.night .active-link .fa-icon-small,.rtl-container.purple.night .mat-select-panel .mat-option.mat-active,.rtl-container.purple.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#9787ff;font-weight:500;cursor:pointer;fill:#9787ff}.rtl-container.purple.night .help-expansion .mat-expansion-panel-header,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.purple.night .help-expansion .mat-expansion-indicator:after,.rtl-container.purple.night .help-expansion .mat-expansion-panel-content,.rtl-container.purple.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.purple.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.purple.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.purple.night .mat-expansion-panel,.rtl-container.purple.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.purple.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.purple.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.purple.night .mdc-data-table__header-cell,.rtl-container.purple.night .mat-mdc-paginator,.rtl-container.purple.night .mat-mdc-form-field-focus-overlay,.rtl-container.purple.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.purple.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.purple.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#9787ff}.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.purple.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.purple.night .svg-donation{opacity:1!important}.rtl-container.purple.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#9787ff!important}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#9787ff!important}.rtl-container.purple.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#9787ff}.rtl-container.purple.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#5e4ea5}.rtl-container.purple.night a{color:#9787ff!important;cursor:pointer}.rtl-container.purple.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.purple.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.purple.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.purple.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.purple.night .mat-mdc-select-placeholder,.rtl-container.purple.night .mat-mdc-select-value,.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#9787ff}.rtl-container.purple.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.purple.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.purple.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.purple.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#9787ff}.rtl-container.purple.night .mat-tree-node:hover,.rtl-container.purple.night .mat-nested-tree-node-parent:hover,.rtl-container.purple.night .mat-select-panel .mat-option:hover,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#9787ff;cursor:pointer;background:#ffffff0f}.rtl-container.purple.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.purple.night .mat-tree-node:hover .mat-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#9787ff}.rtl-container.purple.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.purple.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.purple.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.purple.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#9787ff}.rtl-container.purple.night .mat-tree-node:hover .boltz-icon,.rtl-container.purple.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.purple.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.purple.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.purple.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#9787ff}.rtl-container.purple.night .mat-tree-node .sidenav-img,.rtl-container.purple.night .mat-nested-tree-node .sidenav-img,.rtl-container.purple.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.purple.night .page-title-container .page-title-img,.rtl-container.purple.night svg.top-icon-small{fill:#fff}.rtl-container.purple.night .selected-color{border-color:#8e83c0}.rtl-container.purple.night .mat-progress-bar-fill:after{background-color:#56479d}.rtl-container.purple.night .chart-legend .legend-label:hover,.rtl-container.purple.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.purple.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.purple.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#9787ff}.rtl-container.purple.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.purple.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#9787ff}.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#9787ff}.rtl-container.purple.night .mat-select-panel{background-color:#121212}.rtl-container.purple.night .mat-tree{background:#121212}.rtl-container.purple.night h4{color:#9787ff}.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.purple.night .dashboard-info-title{color:#9787ff}.rtl-container.purple.night .dashboard-info-value,.rtl-container.purple.night .dashboard-capacity-header{color:#fff}.rtl-container.purple.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.purple.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.purple.night .color-primary{color:#9787ff!important}.rtl-container.purple.night .dot-primary{background-color:#9787ff!important}.rtl-container.purple.night .dot-primary-lighter{background-color:#5e4ea5!important}.rtl-container.purple.night .mat-stepper-vertical{background-color:#121212}.rtl-container.purple.night .spinner-container h2{color:#9787ff}.rtl-container.purple.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.purple.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.purple.night svg .boltz-icon-fill{fill:#fff}.rtl-container.purple.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.purple.night svg .stroke-color-primary-lighter{stroke:#8e83c0}.rtl-container.purple.night svg .stroke-color-primary{stroke:#5e4ea5}.rtl-container.purple.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.purple.night svg .fill-color-0{fill:#171717}.rtl-container.purple.night svg .fill-color-1{fill:#232323}.rtl-container.purple.night svg .fill-color-2{fill:#222}.rtl-container.purple.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.purple.night svg .fill-color-4{fill:#383838}.rtl-container.purple.night svg .fill-color-5{fill:#555}.rtl-container.purple.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.purple.night svg .fill-color-7{fill:#202020}.rtl-container.purple.night svg .fill-color-8{fill:#242424}.rtl-container.purple.night svg .fill-color-9{fill:#262626}.rtl-container.purple.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.purple.night svg .fill-color-11{fill:#171717}.rtl-container.purple.night svg .fill-color-12{fill:#ccc}.rtl-container.purple.night svg .fill-color-13{fill:#adadad}.rtl-container.purple.night svg .fill-color-14{fill:#ababab}.rtl-container.purple.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.purple.night svg .fill-color-16{fill:#707070}.rtl-container.purple.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.purple.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.purple.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.purple.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.purple.night svg .fill-color-21{fill:#cacaca}.rtl-container.purple.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.purple.night svg .fill-color-23{fill:#777}.rtl-container.purple.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.purple.night svg .fill-color-25{fill:#252525}.rtl-container.purple.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.purple.night svg .fill-color-27{fill:#000}.rtl-container.purple.night svg .fill-color-28{fill:#313131}.rtl-container.purple.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.purple.night svg .fill-color-30{fill:#fff}.rtl-container.purple.night svg .fill-color-31{fill:#5e4ea5}.rtl-container.purple.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.purple.night svg .fill-color-primary{fill:#5e4ea5}.rtl-container.purple.night svg .fill-color-primary-lighter{fill:#8e83c0}.rtl-container.purple.night svg .fill-color-primary-darker{fill:#9787ff}.rtl-container.purple.night .mat-select-value,.rtl-container.purple.night .mat-select-arrow{color:#fff}.rtl-container.purple.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.purple.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.purple.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.purple.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.purple.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.purple.night .mat-button.mat-primary,.rtl-container.purple.night .mat-icon-button.mat-primary,.rtl-container.purple.night .mat-stroked-button.mat-primary{color:#9787ff}.rtl-container.purple.night tr.alert.alert-warn .mat-cell,.rtl-container.purple.night tr.alert.alert-warn .mat-header-cell,.rtl-container.purple.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.purple.night .material-icons.info-icon{font-size:100%;color:#9787ff}.rtl-container.purple.night .material-icons.info-icon.info-icon-primary{color:#9787ff}.rtl-container.purple.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.purple.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#9787ff}.rtl-container.purple.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#42358a}.rtl-container.purple.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.purple.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#9787ff}.rtl-container.purple.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.purple.night .mat-progress-bar-buffer{background-color:#cfcae4}.rtl-container.purple.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.purple.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.purple.night .foreground.mat-progress-spinner circle,.rtl-container.purple.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.purple.night .mat-toolbar-row,.rtl-container.purple.night .mat-toolbar-single-row{height:4rem}.rtl-container.purple.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.purple.night a{color:#5e4ea5}.rtl-container.purple.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.purple.night .h-active-link{border-bottom:2px solid white}.rtl-container.purple.night .mat-icon-36{color:#ffffffb3}.rtl-container.purple.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.purple.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.purple.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.purple.night .genseed-message{width:10%;color:#5e4ea5}.rtl-container.purple.night .border-primary{border:1px solid #5e4ea5}.rtl-container.purple.night .border-accent{border:1px solid #eeeeee}.rtl-container.purple.night .border-warn{border:1px solid #ff343b}.rtl-container.purple.night .material-icons.primary{color:#5e4ea5}.rtl-container.purple.night .material-icons.accent{color:#eee}.rtl-container.purple.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.rtl-container.purple.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.purple.night .row-disabled{background-color:gray}.rtl-container.purple.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.purple.night .mat-mdc-card-content,.rtl-container.purple.night .mat-mdc-card-subtitle,.rtl-container.purple.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.purple.night .mat-menu-panel{min-width:4rem}.rtl-container.purple.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.purple.night .horizontal-button:hover{background:#8e83c0;color:#eee}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#5e4ea5}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.purple.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.purple.night .mat-button,.rtl-container.purple.night .mat-icon-button,.rtl-container.purple.night .mat-stroked-button,.rtl-container.purple.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.purple.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.purple.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.purple.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.purple.night .mat-cell,.rtl-container.purple.night .mat-header-cell,.rtl-container.purple.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.purple.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.purple.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#5e4ea5}.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.purple.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.purple.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#5e4ea5;opacity:1}.rtl-container.purple.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.purple.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.purple.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.purple.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.purple.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.purple.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.purple.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.purple.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.purple.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.purple.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.purple.night .more-button{color:#fff}.rtl-container.purple.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.purple.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.purple.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.purple.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.purple.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.purple.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.purple.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.purple.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.purple.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.purple.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.purple.night .tab-badge .mat-badge-content.mat-badge-active{background:#5e4ea5}.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.purple.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.purple.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.purple.night .rtl-select-overlay{min-width:7rem}}.rtl-container.purple.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.purple.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.purple.night .table-actions-button{min-width:8rem}.rtl-container.purple.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.purple.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.purple.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.purple.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#afa7d2!important}.rtl-container.purple.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#56479d!important}.rtl-container.purple.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.purple.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.purple.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.purple.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.purple.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.purple.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.purple.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.purple.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.purple.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.purple.night .color-warn{color:#ff343b}.rtl-container.purple.night .fill-warn{fill:#ff343b}.rtl-container.purple.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.purple.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.purple.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.purple.night .alert.alert-info a{color:#004085}.rtl-container.purple.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.purple.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.purple.night .alert.alert-warn a{color:#856404}.rtl-container.purple.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.purple.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.purple.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.purple.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.purple.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.purple.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.purple.night .failed-status{color:#ff343b}.rtl-container.purple.night .material-icons.icon-failed-status{fill:#ff343b;height:1.25rem}.rtl-container.purple.night .svg-fill-primary{fill:#5e4ea5}.rtl-container.purple.night .svg-fill-primary-lighter{fill:#8e83c0}.rtl-container.purple.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.purple.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.purple.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.purple.night .dashboard-card-content .underline,.rtl-container.purple.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.purple.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#5e4ea5}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.purple.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#5e4ea5}.rtl-container.purple.night .mat-mdc-form-field-hint .currency-icon{color:#5e4ea5}.rtl-container.purple.night .mat-mdc-form-field-hint .currency-icon path{fill:#5e4ea5}.rtl-container.purple.night .fa-icon-primary{color:#5e4ea5}.rtl-container.purple.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.purple.night ngx-charts-bar-vertical text,.rtl-container.purple.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.purple.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.purple.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.purple.night .mat-paginator-container{padding:0}.rtl-container.purple.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.purple.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.purple.night .invoice-animation-div .particles-circle{position:absolute;background-color:#5e4ea5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #5e4ea5;background-color:transparent}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.purple.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.purple.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.purple.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.purple.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.purple.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.blue.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #1976d2;--mdc-filled-text-field-focus-active-indicator-color: #1976d2;--mdc-filled-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #1976d2;--mdc-outlined-text-field-focus-outline-color: #1976d2;--mdc-outlined-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(25, 118, 210, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(25, 118, 210, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #1e88e5;--mdc-switch-selected-handle-color: #1e88e5;--mdc-switch-selected-hover-state-layer-color: #1e88e5;--mdc-switch-selected-pressed-state-layer-color: #1e88e5;--mdc-switch-selected-focus-handle-color: #0d47a1;--mdc-switch-selected-hover-handle-color: #0d47a1;--mdc-switch-selected-pressed-handle-color: #0d47a1;--mdc-switch-selected-focus-track-color: #64b5f6;--mdc-switch-selected-hover-track-color: #64b5f6;--mdc-switch-selected-pressed-track-color: #64b5f6;--mdc-switch-selected-track-color: #64b5f6;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #1976d2;--mdc-slider-focus-handle-color: #1976d2;--mdc-slider-hover-handle-color: #1976d2;--mdc-slider-active-track-color: #1976d2;--mdc-slider-inactive-track-color: #1976d2;--mdc-slider-with-tick-marks-inactive-container-color: #1976d2;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #1976d2;--mat-slider-hover-state-layer-color: rgba(25, 118, 210, .05);--mat-slider-focus-state-layer-color: rgba(25, 118, 210, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #1976d2;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #1976d2;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 118, 210, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(25, 118, 210, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.blue.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.blue.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #1976d2;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #1976d2;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.blue.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.blue.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.blue.day .mat-elevation-z0,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.day .mat-elevation-z1,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z2,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z3,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.day .mat-elevation-z4,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-elevation-z5,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.blue.day .mat-elevation-z6,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.day .mat-elevation-z7,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.blue.day .mat-elevation-z8,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.day .mat-elevation-z9,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.blue.day .mat-elevation-z10,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z11,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.blue.day .mat-elevation-z12,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z13,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z14,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.blue.day .mat-elevation-z15,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z16,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z17,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.blue.day .mat-elevation-z18,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.blue.day .mat-elevation-z19,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.blue.day .mat-elevation-z20,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z21,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z22,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.blue.day .mat-elevation-z23,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.blue.day .mat-elevation-z24,.rtl-container.blue.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #1976d2;--mdc-linear-progress-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.blue.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.blue.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.blue.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.blue.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.blue.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #1976d2;--mdc-chip-elevated-selected-container-color: #1976d2;--mdc-chip-elevated-disabled-container-color: #1976d2;--mdc-chip-flat-disabled-selected-container-color: #1976d2;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.blue.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.blue.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.blue.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.blue.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.blue.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.blue.day .mdc-list-item__start,.rtl-container.blue.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2}.rtl-container.blue.day .mat-accent .mdc-list-item__start,.rtl-container.blue.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.blue.day .mat-warn .mdc-list-item__start,.rtl-container.blue.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.blue.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#1976d2}.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.blue.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.blue.day .mat-mdc-tab-group,.rtl-container.blue.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #1976d2;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #1976d2;--mat-tab-header-active-ripple-color: #1976d2;--mat-tab-header-inactive-ripple-color: #1976d2;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #1976d2;--mat-tab-header-active-hover-label-text-color: #1976d2;--mat-tab-header-active-focus-indicator-color: #1976d2;--mat-tab-header-active-hover-indicator-color: #1976d2}.rtl-container.blue.day .mat-mdc-tab-group.mat-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.blue.day .mat-mdc-tab-group.mat-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #1976d2;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.blue.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.blue.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #1976d2;--mat-text-button-state-layer-color: #1976d2;--mat-text-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #1976d2;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #1976d2;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #1976d2;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #1976d2;--mat-outlined-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.blue.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #1976d2;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.blue.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.blue.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.blue.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.blue.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.blue.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.blue.day .mat-icon.mat-primary{--mat-icon-color: #1976d2}.rtl-container.blue.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.blue.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.blue.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #1976d2;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.blue.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.blue.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.blue.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.blue.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.blue.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.blue.day .bg-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.blue.day .page-title,.rtl-container.blue.day .mat-mdc-select-value,.rtl-container.blue.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.blue.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.blue.day .help-expansion .mat-expansion-panel-header,.rtl-container.blue.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.blue.day .help-expansion .mat-expansion-indicator:after,.rtl-container.blue.day .help-expansion .mat-expansion-panel-content,.rtl-container.blue.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#1976d2}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.blue.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#1976d2}.rtl-container.blue.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.blue.day .mat-tree-node:hover,.rtl-container.blue.day .mat-nested-tree-node-parent:hover,.rtl-container.blue.day .mat-select-panel .mat-option:hover,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#1976d2;cursor:pointer}.rtl-container.blue.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.day .mat-tree-node:hover .mat-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#1976d2}.rtl-container.blue.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#1976d2}.rtl-container.blue.day .spinner-container h2{color:#fff}.rtl-container.blue.day .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.blue.day .mat-form-field-suffix{color:#0000008a}.rtl-container.blue.day .mat-stroked-button.mat-primary{border-color:#1976d2}.rtl-container.blue.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.blue.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.blue.day .selected-color{border-color:#90caf9}.rtl-container.blue.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.blue.day table.mat-mdc-table thead tr th,.rtl-container.blue.day .page-title-container,.rtl-container.blue.day .page-sub-title-container{color:#0000008a}.rtl-container.blue.day .page-title-container .page-title-img,.rtl-container.blue.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.blue.day .page-title-container .mat-input-element,.rtl-container.blue.day .page-title-container .mat-radio-label-content,.rtl-container.blue.day .page-title-container .theme-name,.rtl-container.blue.day .page-sub-title-container .mat-input-element,.rtl-container.blue.day .page-sub-title-container .mat-radio-label-content,.rtl-container.blue.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.blue.day .cc-data-block .cc-data-title{color:#1976d2}.rtl-container.blue.day .active-link,.rtl-container.blue.day .active-link .fa-icon-small{color:#1976d2;font-weight:500;cursor:pointer;fill:#1976d2}.rtl-container.blue.day .mat-tree-node:hover,.rtl-container.blue.day .mat-nested-tree-node-parent:hover,.rtl-container.blue.day .mat-select-panel .mat-option:hover,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#1976d2;cursor:pointer;background:#0000000a}.rtl-container.blue.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.day .mat-tree-node:hover .mat-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#1976d2}.rtl-container.blue.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#1976d2}.rtl-container.blue.day .mat-tree-node .sidenav-img,.rtl-container.blue.day .mat-nested-tree-node .sidenav-img,.rtl-container.blue.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.blue.day .page-title-container .page-title-img,.rtl-container.blue.day svg.top-icon-small{fill:#000000de}.rtl-container.blue.day .mat-progress-bar-fill:after{background-color:#0d47a1}.rtl-container.blue.day .modal-qr-code-container{background:#0000001f}.rtl-container.blue.day .mdc-tab__text-label,.rtl-container.blue.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.blue.day .mat-mdc-card,.rtl-container.blue.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.blue.day .dashboard-info-title{color:#1976d2}.rtl-container.blue.day .dashboard-capacity-header,.rtl-container.blue.day .dashboard-info-value{color:#0000008a}.rtl-container.blue.day .color-primary{color:#1976d2!important}.rtl-container.blue.day .dot-primary{background-color:#1976d2!important}.rtl-container.blue.day .dot-primary-lighter{background-color:#90caf9!important}.rtl-container.blue.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .mat-mdc-form-field-hint{color:#1976d2}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.blue.day .mat-mdc-form-field-hint fa-icon svg path{fill:#1976d2}.rtl-container.blue.day .currency-icon path,.rtl-container.blue.day .currency-icon polygon{fill:#0000008a}.rtl-container.blue.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.blue.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.blue.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.day svg .stroke-color-primary-lighter{stroke:#90caf9}.rtl-container.blue.day svg .stroke-color-primary{stroke:#1976d2}.rtl-container.blue.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.blue.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-1{fill:#fff}.rtl-container.blue.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.blue.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-6{fill:#fff}.rtl-container.blue.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-9{fill:#fff}.rtl-container.blue.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.blue.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.blue.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-16{fill:#404040}.rtl-container.blue.day svg .fill-color-17{fill:#404040}.rtl-container.blue.day svg .fill-color-18{fill:#000}.rtl-container.blue.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.blue.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.blue.day svg .fill-color-24{fill:#000}.rtl-container.blue.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.blue.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.blue.day svg .fill-color-27{fill:#000}.rtl-container.blue.day svg .fill-color-28{fill:#313131}.rtl-container.blue.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.blue.day svg .fill-color-30{fill:#fff}.rtl-container.blue.day svg .fill-color-31{fill:#1976d2}.rtl-container.blue.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.day svg .fill-color-primary{fill:#1976d2}.rtl-container.blue.day svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.day svg .fill-color-primary-darker{fill:#1976d2}.rtl-container.blue.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.blue.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.blue.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#1976d2}.rtl-container.blue.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.blue.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.blue.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.blue.day .material-icons.mat-icon-no-color,.rtl-container.blue.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.blue.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.blue.day .material-icons.info-icon.info-icon-primary{color:#1976d2}.rtl-container.blue.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.blue.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.blue.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#1976d2}.rtl-container.blue.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#0d47a1}.rtl-container.blue.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.blue.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#90caf9}.rtl-container.blue.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.blue.day .mat-progress-bar-buffer{background-color:#bbdefb}.rtl-container.blue.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.blue.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.blue.day .foreground.mat-progress-spinner circle,.rtl-container.blue.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.blue.day .mat-toolbar-row,.rtl-container.blue.day .mat-toolbar-single-row{height:4rem}.rtl-container.blue.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day a{color:#1976d2}.rtl-container.blue.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.blue.day .h-active-link{border-bottom:2px solid white}.rtl-container.blue.day .mat-icon-36{color:#0000008a}.rtl-container.blue.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.blue.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.blue.day .genseed-message{width:10%;color:#1976d2}.rtl-container.blue.day .border-primary{border:1px solid #1976d2}.rtl-container.blue.day .border-accent{border:1px solid #424242}.rtl-container.blue.day .border-warn{border:1px solid #b00020}.rtl-container.blue.day .material-icons.primary{color:#1976d2}.rtl-container.blue.day .material-icons.accent{color:#424242}.rtl-container.blue.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.blue.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.blue.day .row-disabled{background-color:gray}.rtl-container.blue.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.blue.day .mat-mdc-card-content,.rtl-container.blue.day .mat-mdc-card-subtitle,.rtl-container.blue.day .mat-mdc-card-title{color:#0000008a}.rtl-container.blue.day .mat-menu-panel{min-width:4rem}.rtl-container.blue.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.blue.day .horizontal-button:hover{background:#90caf9;color:#424242}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#1976d2}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.blue.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.blue.day .mat-button,.rtl-container.blue.day .mat-icon-button,.rtl-container.blue.day .mat-stroked-button,.rtl-container.blue.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.blue.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.blue.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.blue.day .cc-data-block .cc-data-value{color:#000}.rtl-container.blue.day .mat-cell,.rtl-container.blue.day .mat-header-cell,.rtl-container.blue.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.blue.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.blue.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#1976d2}.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.blue.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#1976d2;opacity:1}.rtl-container.blue.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.blue.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.blue.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.blue.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.blue.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.blue.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.blue.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.blue.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.blue.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.blue.day .more-button{color:#000}.rtl-container.blue.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.blue.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.blue.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.blue.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.blue.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.blue.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.blue.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.blue.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.blue.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.blue.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.blue.day .tab-badge .mat-badge-content.mat-badge-active{background:#1976d2}.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.blue.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.day .rtl-select-overlay{min-width:7rem}}.rtl-container.blue.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.blue.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.blue.day .table-actions-button{min-width:8rem}.rtl-container.blue.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.blue.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#90caf9!important}.rtl-container.blue.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#1e88e5!important}.rtl-container.blue.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.blue.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.blue.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.blue.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.blue.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.blue.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.blue.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.blue.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.blue.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.blue.day .color-warn{color:#b00020}.rtl-container.blue.day .fill-warn{fill:#b00020}.rtl-container.blue.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.blue.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.blue.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.blue.day .alert.alert-info a{color:#004085}.rtl-container.blue.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.blue.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.blue.day .alert.alert-warn a{color:#856404}.rtl-container.blue.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.blue.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.blue.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.blue.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.blue.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.blue.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.blue.day .failed-status{color:#b00020}.rtl-container.blue.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.blue.day .svg-fill-primary{fill:#1976d2}.rtl-container.blue.day .svg-fill-primary-lighter{fill:#90caf9}.rtl-container.blue.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.blue.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.blue.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.blue.day .dashboard-card-content .underline,.rtl-container.blue.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.blue.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#1976d2}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#1976d2}.rtl-container.blue.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.blue.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#1976d2}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon{color:#1976d2}.rtl-container.blue.day .mat-mdc-form-field-hint .currency-icon path{fill:#1976d2}.rtl-container.blue.day .fa-icon-primary{color:#1976d2}.rtl-container.blue.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.day ngx-charts-bar-vertical text,.rtl-container.blue.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.blue.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.blue.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.blue.day .mat-paginator-container{padding:0}.rtl-container.blue.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.blue.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.blue.day .invoice-animation-div .particles-circle{position:absolute;background-color:#1976d2;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #1976d2;background-color:transparent}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.blue.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.blue.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.blue.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.blue.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.blue.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.blue.night{--mat-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #1976d2;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #1976d2;--mdc-filled-text-field-focus-active-indicator-color: #1976d2;--mdc-filled-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #1976d2;--mdc-outlined-text-field-focus-outline-color: #1976d2;--mdc-outlined-text-field-focus-label-text-color: rgba(25, 118, 210, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(25, 118, 210, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(25, 118, 210, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #64b5f6;--mdc-switch-selected-handle-color: #64b5f6;--mdc-switch-selected-hover-state-layer-color: #64b5f6;--mdc-switch-selected-pressed-state-layer-color: #64b5f6;--mdc-switch-selected-focus-handle-color: #90caf9;--mdc-switch-selected-hover-handle-color: #90caf9;--mdc-switch-selected-pressed-handle-color: #90caf9;--mdc-switch-selected-focus-track-color: #1e88e5;--mdc-switch-selected-hover-track-color: #1e88e5;--mdc-switch-selected-pressed-track-color: #1e88e5;--mdc-switch-selected-track-color: #1e88e5;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #1976d2;--mdc-slider-focus-handle-color: #1976d2;--mdc-slider-hover-handle-color: #1976d2;--mdc-slider-active-track-color: #1976d2;--mdc-slider-inactive-track-color: #1976d2;--mdc-slider-with-tick-marks-inactive-container-color: #1976d2;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #1976d2;--mat-slider-hover-state-layer-color: rgba(25, 118, 210, .05);--mat-slider-focus-state-layer-color: rgba(25, 118, 210, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #1976d2;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #1976d2;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #1976d2;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(25, 118, 210, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(25, 118, 210, .3);--mat-datepicker-toggle-active-state-icon-color: #1976d2;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(25, 118, 210, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #1976d2;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #1976d2;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #1976d2;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.blue.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.blue.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.blue.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #1976d2;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #1976d2;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.blue.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.blue.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.blue.night .mat-elevation-z0,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.blue.night .mat-elevation-z1,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z2,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z3,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.blue.night .mat-elevation-z4,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-elevation-z5,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.blue.night .mat-elevation-z6,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.blue.night .mat-elevation-z7,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.blue.night .mat-elevation-z8,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.blue.night .mat-elevation-z9,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.blue.night .mat-elevation-z10,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z11,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.blue.night .mat-elevation-z12,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z13,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z14,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.blue.night .mat-elevation-z15,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z16,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z17,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.blue.night .mat-elevation-z18,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.blue.night .mat-elevation-z19,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.blue.night .mat-elevation-z20,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z21,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z22,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.blue.night .mat-elevation-z23,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.blue.night .mat-elevation-z24,.rtl-container.blue.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.blue.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #1976d2;--mdc-linear-progress-track-color: rgba(25, 118, 210, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.blue.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.blue.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.blue.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #1976d2;--mdc-chip-elevated-selected-container-color: #1976d2;--mdc-chip-elevated-disabled-container-color: #1976d2;--mdc-chip-flat-disabled-selected-container-color: #1976d2;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.blue.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.blue.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.blue.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.blue.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.blue.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #1976d2;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.blue.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.blue.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.blue.night .mdc-list-item__start,.rtl-container.blue.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #1976d2;--mdc-radio-selected-hover-icon-color: #1976d2;--mdc-radio-selected-icon-color: #1976d2;--mdc-radio-selected-pressed-icon-color: #1976d2}.rtl-container.blue.night .mat-accent .mdc-list-item__start,.rtl-container.blue.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.blue.night .mat-warn .mdc-list-item__start,.rtl-container.blue.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.blue.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#1976d2}.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.blue.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.blue.night .mat-mdc-tab-group,.rtl-container.blue.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #1976d2;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #1976d2;--mat-tab-header-active-ripple-color: #1976d2;--mat-tab-header-inactive-ripple-color: #1976d2;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #1976d2;--mat-tab-header-active-hover-label-text-color: #1976d2;--mat-tab-header-active-focus-indicator-color: #1976d2;--mat-tab-header-active-hover-indicator-color: #1976d2}.rtl-container.blue.night .mat-mdc-tab-group.mat-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.blue.night .mat-mdc-tab-group.mat-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #1976d2;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.blue.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.blue.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #1976d2;--mdc-checkbox-selected-hover-icon-color: #1976d2;--mdc-checkbox-selected-icon-color: #1976d2;--mdc-checkbox-selected-pressed-icon-color: #1976d2;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #1976d2;--mdc-checkbox-selected-hover-state-layer-color: #1976d2;--mdc-checkbox-selected-pressed-state-layer-color: #1976d2;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.blue.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #1976d2;--mat-text-button-state-layer-color: #1976d2;--mat-text-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #1976d2;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #1976d2;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #1976d2;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #1976d2;--mat-outlined-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #1976d2;--mat-icon-button-state-layer-color: #1976d2;--mat-icon-button-ripple-color: rgba(25, 118, 210, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.blue.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #1976d2;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #1976d2;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.blue.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.blue.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.blue.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.blue.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.blue.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.blue.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.blue.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.blue.night .mat-icon.mat-primary{--mat-icon-color: #1976d2}.rtl-container.blue.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.blue.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.blue.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.blue.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.blue.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #1976d2;--mat-toolbar-container-text-color: white}.rtl-container.blue.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.blue.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.blue.night .mat-primary{color:#448aff!important}.rtl-container.blue.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.blue.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.blue.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.blue.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.blue.night .bg-primary{background-color:#1976d2;color:#fff}.rtl-container.blue.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#448aff}.rtl-container.blue.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#448aff}.rtl-container.blue.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#448aff}.rtl-container.blue.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.blue.night .currency-icon path,.rtl-container.blue.night .currency-icon polygon{fill:#fff}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.blue.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.blue.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#448aff}.rtl-container.blue.night .cc-data-block .cc-data-title{color:#448aff}.rtl-container.blue.night .mat-stroked-button.mat-primary{border-color:#448aff;color:#448aff}.rtl-container.blue.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.blue.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.blue.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.blue.night .active-link,.rtl-container.blue.night .active-link .fa-icon-small,.rtl-container.blue.night .mat-select-panel .mat-option.mat-active,.rtl-container.blue.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#448aff;font-weight:500;cursor:pointer;fill:#448aff}.rtl-container.blue.night .help-expansion .mat-expansion-panel-header,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.blue.night .help-expansion .mat-expansion-indicator:after,.rtl-container.blue.night .help-expansion .mat-expansion-panel-content,.rtl-container.blue.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.blue.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.blue.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.blue.night .mat-expansion-panel,.rtl-container.blue.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.blue.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.blue.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.blue.night .mdc-data-table__header-cell,.rtl-container.blue.night .mat-mdc-paginator,.rtl-container.blue.night .mat-mdc-form-field-focus-overlay,.rtl-container.blue.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.blue.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.blue.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#448aff}.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.blue.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.blue.night .svg-donation{opacity:1!important}.rtl-container.blue.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#448aff!important}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#448aff!important}.rtl-container.blue.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#448aff}.rtl-container.blue.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#1976d2}.rtl-container.blue.night a{color:#448aff!important;cursor:pointer}.rtl-container.blue.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.blue.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.blue.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.blue.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.blue.night .mat-mdc-select-placeholder,.rtl-container.blue.night .mat-mdc-select-value,.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#448aff}.rtl-container.blue.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.blue.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.blue.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.blue.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#448aff}.rtl-container.blue.night .mat-tree-node:hover,.rtl-container.blue.night .mat-nested-tree-node-parent:hover,.rtl-container.blue.night .mat-select-panel .mat-option:hover,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#448aff;cursor:pointer;background:#ffffff0f}.rtl-container.blue.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.blue.night .mat-tree-node:hover .mat-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#448aff}.rtl-container.blue.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.blue.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.blue.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.blue.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#448aff}.rtl-container.blue.night .mat-tree-node:hover .boltz-icon,.rtl-container.blue.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.blue.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.blue.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.blue.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#448aff}.rtl-container.blue.night .mat-tree-node .sidenav-img,.rtl-container.blue.night .mat-nested-tree-node .sidenav-img,.rtl-container.blue.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.blue.night .page-title-container .page-title-img,.rtl-container.blue.night svg.top-icon-small{fill:#fff}.rtl-container.blue.night .selected-color{border-color:#90caf9}.rtl-container.blue.night .mat-progress-bar-fill:after{background-color:#1e88e5}.rtl-container.blue.night .chart-legend .legend-label:hover,.rtl-container.blue.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.blue.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.blue.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#448aff}.rtl-container.blue.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.blue.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#448aff}.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#448aff}.rtl-container.blue.night .mat-select-panel{background-color:#121212}.rtl-container.blue.night .mat-tree{background:#121212}.rtl-container.blue.night h4{color:#448aff}.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.blue.night .dashboard-info-title{color:#448aff}.rtl-container.blue.night .dashboard-info-value,.rtl-container.blue.night .dashboard-capacity-header{color:#fff}.rtl-container.blue.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.blue.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.blue.night .color-primary{color:#448aff!important}.rtl-container.blue.night .dot-primary{background-color:#448aff!important}.rtl-container.blue.night .dot-primary-lighter{background-color:#1976d2!important}.rtl-container.blue.night .mat-stepper-vertical{background-color:#121212}.rtl-container.blue.night .spinner-container h2{color:#448aff}.rtl-container.blue.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.blue.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.blue.night svg .boltz-icon-fill{fill:#fff}.rtl-container.blue.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.blue.night svg .stroke-color-primary-lighter{stroke:#90caf9}.rtl-container.blue.night svg .stroke-color-primary{stroke:#1976d2}.rtl-container.blue.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.blue.night svg .fill-color-0{fill:#171717}.rtl-container.blue.night svg .fill-color-1{fill:#232323}.rtl-container.blue.night svg .fill-color-2{fill:#222}.rtl-container.blue.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.blue.night svg .fill-color-4{fill:#383838}.rtl-container.blue.night svg .fill-color-5{fill:#555}.rtl-container.blue.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.blue.night svg .fill-color-7{fill:#202020}.rtl-container.blue.night svg .fill-color-8{fill:#242424}.rtl-container.blue.night svg .fill-color-9{fill:#262626}.rtl-container.blue.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.blue.night svg .fill-color-11{fill:#171717}.rtl-container.blue.night svg .fill-color-12{fill:#ccc}.rtl-container.blue.night svg .fill-color-13{fill:#adadad}.rtl-container.blue.night svg .fill-color-14{fill:#ababab}.rtl-container.blue.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.blue.night svg .fill-color-16{fill:#707070}.rtl-container.blue.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.blue.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.blue.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.blue.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.blue.night svg .fill-color-21{fill:#cacaca}.rtl-container.blue.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.blue.night svg .fill-color-23{fill:#777}.rtl-container.blue.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.blue.night svg .fill-color-25{fill:#252525}.rtl-container.blue.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.blue.night svg .fill-color-27{fill:#000}.rtl-container.blue.night svg .fill-color-28{fill:#313131}.rtl-container.blue.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.blue.night svg .fill-color-30{fill:#fff}.rtl-container.blue.night svg .fill-color-31{fill:#1976d2}.rtl-container.blue.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.blue.night svg .fill-color-primary{fill:#1976d2}.rtl-container.blue.night svg .fill-color-primary-lighter{fill:#90caf9}.rtl-container.blue.night svg .fill-color-primary-darker{fill:#448aff}.rtl-container.blue.night .mat-select-value,.rtl-container.blue.night .mat-select-arrow{color:#fff}.rtl-container.blue.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.blue.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.blue.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.blue.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.blue.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.blue.night .mat-button.mat-primary,.rtl-container.blue.night .mat-icon-button.mat-primary,.rtl-container.blue.night .mat-stroked-button.mat-primary{color:#448aff}.rtl-container.blue.night tr.alert.alert-warn .mat-cell,.rtl-container.blue.night tr.alert.alert-warn .mat-header-cell,.rtl-container.blue.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.blue.night .material-icons.info-icon{font-size:100%;color:#448aff}.rtl-container.blue.night .material-icons.info-icon.info-icon-primary{color:#448aff}.rtl-container.blue.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.blue.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#448aff}.rtl-container.blue.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#1565c0}.rtl-container.blue.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.blue.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#448aff}.rtl-container.blue.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.blue.night .mat-progress-bar-buffer{background-color:#bbdefb}.rtl-container.blue.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.blue.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.blue.night .foreground.mat-progress-spinner circle,.rtl-container.blue.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.blue.night .mat-toolbar-row,.rtl-container.blue.night .mat-toolbar-single-row{height:4rem}.rtl-container.blue.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.blue.night a{color:#1976d2}.rtl-container.blue.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.blue.night .h-active-link{border-bottom:2px solid white}.rtl-container.blue.night .mat-icon-36{color:#ffffffb3}.rtl-container.blue.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.blue.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.blue.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.blue.night .genseed-message{width:10%;color:#1976d2}.rtl-container.blue.night .border-primary{border:1px solid #1976d2}.rtl-container.blue.night .border-accent{border:1px solid #eeeeee}.rtl-container.blue.night .border-warn{border:1px solid #ff343b}.rtl-container.blue.night .material-icons.primary{color:#1976d2}.rtl-container.blue.night .material-icons.accent{color:#eee}.rtl-container.blue.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.rtl-container.blue.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.blue.night .row-disabled{background-color:gray}.rtl-container.blue.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.blue.night .mat-mdc-card-content,.rtl-container.blue.night .mat-mdc-card-subtitle,.rtl-container.blue.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.blue.night .mat-menu-panel{min-width:4rem}.rtl-container.blue.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.blue.night .horizontal-button:hover{background:#90caf9;color:#eee}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#1976d2}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.blue.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.blue.night .mat-button,.rtl-container.blue.night .mat-icon-button,.rtl-container.blue.night .mat-stroked-button,.rtl-container.blue.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.blue.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.blue.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.blue.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.blue.night .mat-cell,.rtl-container.blue.night .mat-header-cell,.rtl-container.blue.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.blue.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.blue.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#1976d2}.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.blue.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.blue.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#1976d2;opacity:1}.rtl-container.blue.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.blue.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.blue.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.blue.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.blue.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.blue.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.blue.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.blue.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.blue.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.blue.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.blue.night .more-button{color:#fff}.rtl-container.blue.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.blue.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.blue.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.blue.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.blue.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.blue.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.blue.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.blue.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.blue.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.blue.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.blue.night .tab-badge .mat-badge-content.mat-badge-active{background:#1976d2}.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.blue.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.blue.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.blue.night .rtl-select-overlay{min-width:7rem}}.rtl-container.blue.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.blue.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.blue.night .table-actions-button{min-width:8rem}.rtl-container.blue.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.blue.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.blue.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.blue.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#90caf9!important}.rtl-container.blue.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#1e88e5!important}.rtl-container.blue.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.blue.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.blue.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.blue.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.blue.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.blue.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.blue.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.blue.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.blue.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.blue.night .color-warn{color:#ff343b}.rtl-container.blue.night .fill-warn{fill:#ff343b}.rtl-container.blue.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.blue.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.blue.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.blue.night .alert.alert-info a{color:#004085}.rtl-container.blue.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.blue.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.blue.night .alert.alert-warn a{color:#856404}.rtl-container.blue.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.blue.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.blue.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.blue.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.blue.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.blue.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.blue.night .failed-status{color:#ff343b}.rtl-container.blue.night .material-icons.icon-failed-status{fill:#ff343b;height:1.25rem}.rtl-container.blue.night .svg-fill-primary{fill:#1976d2}.rtl-container.blue.night .svg-fill-primary-lighter{fill:#90caf9}.rtl-container.blue.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.blue.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.blue.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.blue.night .dashboard-card-content .underline,.rtl-container.blue.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.blue.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#1976d2}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#1976d2}.rtl-container.blue.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.blue.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#1976d2}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon{color:#1976d2}.rtl-container.blue.night .mat-mdc-form-field-hint .currency-icon path{fill:#1976d2}.rtl-container.blue.night .fa-icon-primary{color:#1976d2}.rtl-container.blue.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.blue.night ngx-charts-bar-vertical text,.rtl-container.blue.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.blue.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.blue.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.blue.night .mat-paginator-container{padding:0}.rtl-container.blue.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.blue.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.blue.night .invoice-animation-div .particles-circle{position:absolute;background-color:#1976d2;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #1976d2;background-color:transparent}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.blue.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.blue.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.blue.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.blue.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.blue.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.indigo.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #3f51b5;--mdc-filled-text-field-focus-active-indicator-color: #3f51b5;--mdc-filled-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #3f51b5;--mdc-outlined-text-field-focus-outline-color: #3f51b5;--mdc-outlined-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(63, 81, 181, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(63, 81, 181, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #3949ab;--mdc-switch-selected-handle-color: #3949ab;--mdc-switch-selected-hover-state-layer-color: #3949ab;--mdc-switch-selected-pressed-state-layer-color: #3949ab;--mdc-switch-selected-focus-handle-color: #1a237e;--mdc-switch-selected-hover-handle-color: #1a237e;--mdc-switch-selected-pressed-handle-color: #1a237e;--mdc-switch-selected-focus-track-color: #7986cb;--mdc-switch-selected-hover-track-color: #7986cb;--mdc-switch-selected-pressed-track-color: #7986cb;--mdc-switch-selected-track-color: #7986cb;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #3f51b5;--mdc-slider-focus-handle-color: #3f51b5;--mdc-slider-hover-handle-color: #3f51b5;--mdc-slider-active-track-color: #3f51b5;--mdc-slider-inactive-track-color: #3f51b5;--mdc-slider-with-tick-marks-inactive-container-color: #3f51b5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #3f51b5;--mat-slider-hover-state-layer-color: rgba(63, 81, 181, .05);--mat-slider-focus-state-layer-color: rgba(63, 81, 181, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #3f51b5;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(63, 81, 181, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(63, 81, 181, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.indigo.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.indigo.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #3f51b5;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #3f51b5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.indigo.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.indigo.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.indigo.day .mat-elevation-z0,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.day .mat-elevation-z1,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z2,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z3,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.day .mat-elevation-z4,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-elevation-z5,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.indigo.day .mat-elevation-z6,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.day .mat-elevation-z7,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.indigo.day .mat-elevation-z8,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.day .mat-elevation-z9,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.indigo.day .mat-elevation-z10,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z11,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.indigo.day .mat-elevation-z12,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z13,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z14,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.indigo.day .mat-elevation-z15,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z16,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z17,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.indigo.day .mat-elevation-z18,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.indigo.day .mat-elevation-z19,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.indigo.day .mat-elevation-z20,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z21,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z22,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.indigo.day .mat-elevation-z23,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.indigo.day .mat-elevation-z24,.rtl-container.indigo.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #3f51b5;--mdc-linear-progress-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.indigo.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.indigo.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.indigo.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.indigo.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.indigo.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #3f51b5;--mdc-chip-elevated-selected-container-color: #3f51b5;--mdc-chip-elevated-disabled-container-color: #3f51b5;--mdc-chip-flat-disabled-selected-container-color: #3f51b5;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.indigo.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.indigo.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.indigo.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.indigo.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.indigo.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.indigo.day .mdc-list-item__start,.rtl-container.indigo.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5}.rtl-container.indigo.day .mat-accent .mdc-list-item__start,.rtl-container.indigo.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.indigo.day .mat-warn .mdc-list-item__start,.rtl-container.indigo.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.indigo.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.indigo.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.indigo.day .mat-mdc-tab-group,.rtl-container.indigo.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #3f51b5;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #3f51b5;--mat-tab-header-active-ripple-color: #3f51b5;--mat-tab-header-inactive-ripple-color: #3f51b5;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #3f51b5;--mat-tab-header-active-hover-label-text-color: #3f51b5;--mat-tab-header-active-focus-indicator-color: #3f51b5;--mat-tab-header-active-hover-indicator-color: #3f51b5}.rtl-container.indigo.day .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.indigo.day .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #3f51b5;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.indigo.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.indigo.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #3f51b5;--mat-text-button-state-layer-color: #3f51b5;--mat-text-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #3f51b5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #3f51b5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #3f51b5;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #3f51b5;--mat-outlined-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.indigo.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #3f51b5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.indigo.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.indigo.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.indigo.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.indigo.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.indigo.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.indigo.day .mat-icon.mat-primary{--mat-icon-color: #3f51b5}.rtl-container.indigo.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.indigo.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.indigo.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #3f51b5;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.indigo.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.indigo.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.indigo.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.indigo.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.indigo.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.indigo.day .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.indigo.day .page-title,.rtl-container.indigo.day .mat-mdc-select-value,.rtl-container.indigo.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.indigo.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.indigo.day .help-expansion .mat-expansion-indicator:after,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-content,.rtl-container.indigo.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#3f51b5}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.indigo.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.indigo.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#3f51b5}.rtl-container.indigo.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.indigo.day .mat-tree-node:hover,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover,.rtl-container.indigo.day .mat-select-panel .mat-option:hover,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#3f51b5;cursor:pointer}.rtl-container.indigo.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.day .mat-tree-node:hover .mat-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#3f51b5}.rtl-container.indigo.day .spinner-container h2{color:#fff}.rtl-container.indigo.day .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.indigo.day .mat-form-field-suffix{color:#0000008a}.rtl-container.indigo.day .mat-stroked-button.mat-primary{border-color:#3f51b5}.rtl-container.indigo.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.indigo.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.indigo.day .selected-color{border-color:#9fa8da}.rtl-container.indigo.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.indigo.day table.mat-mdc-table thead tr th,.rtl-container.indigo.day .page-title-container,.rtl-container.indigo.day .page-sub-title-container{color:#0000008a}.rtl-container.indigo.day .page-title-container .page-title-img,.rtl-container.indigo.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.indigo.day .page-title-container .mat-input-element,.rtl-container.indigo.day .page-title-container .mat-radio-label-content,.rtl-container.indigo.day .page-title-container .theme-name,.rtl-container.indigo.day .page-sub-title-container .mat-input-element,.rtl-container.indigo.day .page-sub-title-container .mat-radio-label-content,.rtl-container.indigo.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.indigo.day .cc-data-block .cc-data-title{color:#3f51b5}.rtl-container.indigo.day .active-link,.rtl-container.indigo.day .active-link .fa-icon-small{color:#3f51b5;font-weight:500;cursor:pointer;fill:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover,.rtl-container.indigo.day .mat-select-panel .mat-option:hover,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#3f51b5;cursor:pointer;background:#0000000a}.rtl-container.indigo.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.day .mat-tree-node:hover .mat-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#3f51b5}.rtl-container.indigo.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#3f51b5}.rtl-container.indigo.day .mat-tree-node .sidenav-img,.rtl-container.indigo.day .mat-nested-tree-node .sidenav-img,.rtl-container.indigo.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.indigo.day .page-title-container .page-title-img,.rtl-container.indigo.day svg.top-icon-small{fill:#000000de}.rtl-container.indigo.day .mat-progress-bar-fill:after{background-color:#1a237e}.rtl-container.indigo.day .modal-qr-code-container{background:#0000001f}.rtl-container.indigo.day .mdc-tab__text-label,.rtl-container.indigo.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.indigo.day .mat-mdc-card,.rtl-container.indigo.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.indigo.day .dashboard-info-title{color:#3f51b5}.rtl-container.indigo.day .dashboard-capacity-header,.rtl-container.indigo.day .dashboard-info-value{color:#0000008a}.rtl-container.indigo.day .color-primary{color:#3f51b5!important}.rtl-container.indigo.day .dot-primary{background-color:#3f51b5!important}.rtl-container.indigo.day .dot-primary-lighter{background-color:#9fa8da!important}.rtl-container.indigo.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-mdc-form-field-hint{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.indigo.day .mat-mdc-form-field-hint fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.day .currency-icon path,.rtl-container.indigo.day .currency-icon polygon{fill:#0000008a}.rtl-container.indigo.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.indigo.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.indigo.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.day svg .stroke-color-primary-lighter{stroke:#9fa8da}.rtl-container.indigo.day svg .stroke-color-primary{stroke:#3f51b5}.rtl-container.indigo.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.indigo.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-1{fill:#fff}.rtl-container.indigo.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.indigo.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-6{fill:#fff}.rtl-container.indigo.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-9{fill:#fff}.rtl-container.indigo.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.indigo.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.indigo.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-16{fill:#404040}.rtl-container.indigo.day svg .fill-color-17{fill:#404040}.rtl-container.indigo.day svg .fill-color-18{fill:#000}.rtl-container.indigo.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.indigo.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.indigo.day svg .fill-color-24{fill:#000}.rtl-container.indigo.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.indigo.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.indigo.day svg .fill-color-27{fill:#000}.rtl-container.indigo.day svg .fill-color-28{fill:#313131}.rtl-container.indigo.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.indigo.day svg .fill-color-30{fill:#fff}.rtl-container.indigo.day svg .fill-color-31{fill:#3f51b5}.rtl-container.indigo.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.indigo.day svg .fill-color-primary{fill:#3f51b5}.rtl-container.indigo.day svg .fill-color-primary-lighter{fill:#9fa8da}.rtl-container.indigo.day svg .fill-color-primary-darker{fill:#3f51b5}.rtl-container.indigo.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.indigo.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.indigo.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#3f51b5}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.indigo.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.indigo.day .material-icons.mat-icon-no-color,.rtl-container.indigo.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.indigo.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.indigo.day .material-icons.info-icon.info-icon-primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.indigo.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.indigo.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#3f51b5}.rtl-container.indigo.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#1a237e}.rtl-container.indigo.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.indigo.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#9fa8da}.rtl-container.indigo.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.indigo.day .mat-progress-bar-buffer{background-color:#c5cae9}.rtl-container.indigo.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.indigo.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.indigo.day .foreground.mat-progress-spinner circle,.rtl-container.indigo.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.indigo.day .mat-toolbar-row,.rtl-container.indigo.day .mat-toolbar-single-row{height:4rem}.rtl-container.indigo.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day a{color:#3f51b5}.rtl-container.indigo.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.indigo.day .h-active-link{border-bottom:2px solid white}.rtl-container.indigo.day .mat-icon-36{color:#0000008a}.rtl-container.indigo.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.indigo.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.indigo.day .genseed-message{width:10%;color:#3f51b5}.rtl-container.indigo.day .border-primary{border:1px solid #3f51b5}.rtl-container.indigo.day .border-accent{border:1px solid #424242}.rtl-container.indigo.day .border-warn{border:1px solid #b00020}.rtl-container.indigo.day .material-icons.primary{color:#3f51b5}.rtl-container.indigo.day .material-icons.accent{color:#424242}.rtl-container.indigo.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.indigo.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.indigo.day .row-disabled{background-color:gray}.rtl-container.indigo.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.indigo.day .mat-mdc-card-content,.rtl-container.indigo.day .mat-mdc-card-subtitle,.rtl-container.indigo.day .mat-mdc-card-title{color:#0000008a}.rtl-container.indigo.day .mat-menu-panel{min-width:4rem}.rtl-container.indigo.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.indigo.day .horizontal-button:hover{background:#9fa8da;color:#424242}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#3f51b5}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.indigo.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.indigo.day .mat-button,.rtl-container.indigo.day .mat-icon-button,.rtl-container.indigo.day .mat-stroked-button,.rtl-container.indigo.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.indigo.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.indigo.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.indigo.day .cc-data-block .cc-data-value{color:#000}.rtl-container.indigo.day .mat-cell,.rtl-container.indigo.day .mat-header-cell,.rtl-container.indigo.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.indigo.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.indigo.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#3f51b5}.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.indigo.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#3f51b5;opacity:1}.rtl-container.indigo.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.indigo.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.indigo.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.indigo.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.indigo.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.indigo.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.indigo.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.indigo.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.indigo.day .more-button{color:#000}.rtl-container.indigo.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.indigo.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.indigo.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.indigo.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.indigo.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.indigo.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.indigo.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.indigo.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.indigo.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.indigo.day .tab-badge .mat-badge-content.mat-badge-active{background:#3f51b5}.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.indigo.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.day .rtl-select-overlay{min-width:7rem}}.rtl-container.indigo.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.indigo.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.indigo.day .table-actions-button{min-width:8rem}.rtl-container.indigo.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.indigo.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#9fa8da!important}.rtl-container.indigo.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#3949ab!important}.rtl-container.indigo.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.indigo.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.indigo.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.indigo.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.indigo.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.indigo.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.indigo.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.indigo.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.indigo.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.indigo.day .color-warn{color:#b00020}.rtl-container.indigo.day .fill-warn{fill:#b00020}.rtl-container.indigo.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.indigo.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.indigo.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.indigo.day .alert.alert-info a{color:#004085}.rtl-container.indigo.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.indigo.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.indigo.day .alert.alert-warn a{color:#856404}.rtl-container.indigo.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.indigo.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.indigo.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.indigo.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.indigo.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.indigo.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.indigo.day .failed-status{color:#b00020}.rtl-container.indigo.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.indigo.day .svg-fill-primary{fill:#3f51b5}.rtl-container.indigo.day .svg-fill-primary-lighter{fill:#9fa8da}.rtl-container.indigo.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.indigo.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.indigo.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.indigo.day .dashboard-card-content .underline,.rtl-container.indigo.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.indigo.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.indigo.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon{color:#3f51b5}.rtl-container.indigo.day .mat-mdc-form-field-hint .currency-icon path{fill:#3f51b5}.rtl-container.indigo.day .fa-icon-primary{color:#3f51b5}.rtl-container.indigo.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.day ngx-charts-bar-vertical text,.rtl-container.indigo.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.indigo.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.indigo.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.indigo.day .mat-paginator-container{padding:0}.rtl-container.indigo.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.indigo.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.indigo.day .invoice-animation-div .particles-circle{position:absolute;background-color:#3f51b5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #3f51b5;background-color:transparent}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.indigo.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.indigo.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.indigo.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.indigo.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.indigo.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.indigo.night{--mat-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #3f51b5;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #3f51b5;--mdc-filled-text-field-focus-active-indicator-color: #3f51b5;--mdc-filled-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #3f51b5;--mdc-outlined-text-field-focus-outline-color: #3f51b5;--mdc-outlined-text-field-focus-label-text-color: rgba(63, 81, 181, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(63, 81, 181, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(63, 81, 181, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #7986cb;--mdc-switch-selected-handle-color: #7986cb;--mdc-switch-selected-hover-state-layer-color: #7986cb;--mdc-switch-selected-pressed-state-layer-color: #7986cb;--mdc-switch-selected-focus-handle-color: #9fa8da;--mdc-switch-selected-hover-handle-color: #9fa8da;--mdc-switch-selected-pressed-handle-color: #9fa8da;--mdc-switch-selected-focus-track-color: #3949ab;--mdc-switch-selected-hover-track-color: #3949ab;--mdc-switch-selected-pressed-track-color: #3949ab;--mdc-switch-selected-track-color: #3949ab;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #3f51b5;--mdc-slider-focus-handle-color: #3f51b5;--mdc-slider-hover-handle-color: #3f51b5;--mdc-slider-active-track-color: #3f51b5;--mdc-slider-inactive-track-color: #3f51b5;--mdc-slider-with-tick-marks-inactive-container-color: #3f51b5;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #3f51b5;--mat-slider-hover-state-layer-color: rgba(63, 81, 181, .05);--mat-slider-focus-state-layer-color: rgba(63, 81, 181, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #3f51b5;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #3f51b5;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #3f51b5;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(63, 81, 181, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(63, 81, 181, .3);--mat-datepicker-toggle-active-state-icon-color: #3f51b5;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(63, 81, 181, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #3f51b5;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #3f51b5;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #3f51b5;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.indigo.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.indigo.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.indigo.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #3f51b5;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #3f51b5;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.indigo.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.indigo.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.indigo.night .mat-elevation-z0,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.indigo.night .mat-elevation-z1,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z2,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z3,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.indigo.night .mat-elevation-z4,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-elevation-z5,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.indigo.night .mat-elevation-z6,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.indigo.night .mat-elevation-z7,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.indigo.night .mat-elevation-z8,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.indigo.night .mat-elevation-z9,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.indigo.night .mat-elevation-z10,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z11,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.indigo.night .mat-elevation-z12,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z13,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z14,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.indigo.night .mat-elevation-z15,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z16,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z17,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.indigo.night .mat-elevation-z18,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.indigo.night .mat-elevation-z19,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.indigo.night .mat-elevation-z20,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z21,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z22,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.indigo.night .mat-elevation-z23,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.indigo.night .mat-elevation-z24,.rtl-container.indigo.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.indigo.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #3f51b5;--mdc-linear-progress-track-color: rgba(63, 81, 181, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.indigo.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.indigo.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.indigo.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #3f51b5;--mdc-chip-elevated-selected-container-color: #3f51b5;--mdc-chip-elevated-disabled-container-color: #3f51b5;--mdc-chip-flat-disabled-selected-container-color: #3f51b5;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.indigo.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.indigo.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.indigo.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.indigo.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.indigo.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #3f51b5;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.indigo.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.indigo.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.indigo.night .mdc-list-item__start,.rtl-container.indigo.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #3f51b5;--mdc-radio-selected-hover-icon-color: #3f51b5;--mdc-radio-selected-icon-color: #3f51b5;--mdc-radio-selected-pressed-icon-color: #3f51b5}.rtl-container.indigo.night .mat-accent .mdc-list-item__start,.rtl-container.indigo.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.indigo.night .mat-warn .mdc-list-item__start,.rtl-container.indigo.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.indigo.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.indigo.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.indigo.night .mat-mdc-tab-group,.rtl-container.indigo.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #3f51b5;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #3f51b5;--mat-tab-header-active-ripple-color: #3f51b5;--mat-tab-header-inactive-ripple-color: #3f51b5;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #3f51b5;--mat-tab-header-active-hover-label-text-color: #3f51b5;--mat-tab-header-active-focus-indicator-color: #3f51b5;--mat-tab-header-active-hover-indicator-color: #3f51b5}.rtl-container.indigo.night .mat-mdc-tab-group.mat-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-mdc-tab-group.mat-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #3f51b5;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.indigo.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.indigo.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #3f51b5;--mdc-checkbox-selected-hover-icon-color: #3f51b5;--mdc-checkbox-selected-icon-color: #3f51b5;--mdc-checkbox-selected-pressed-icon-color: #3f51b5;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #3f51b5;--mdc-checkbox-selected-hover-state-layer-color: #3f51b5;--mdc-checkbox-selected-pressed-state-layer-color: #3f51b5;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.indigo.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #3f51b5;--mat-text-button-state-layer-color: #3f51b5;--mat-text-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #3f51b5;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #3f51b5;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #3f51b5;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #3f51b5;--mat-outlined-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #3f51b5;--mat-icon-button-state-layer-color: #3f51b5;--mat-icon-button-ripple-color: rgba(63, 81, 181, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.indigo.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #3f51b5;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #3f51b5;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.indigo.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.indigo.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.indigo.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.indigo.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.indigo.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.indigo.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.indigo.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.indigo.night .mat-icon.mat-primary{--mat-icon-color: #3f51b5}.rtl-container.indigo.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.indigo.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.indigo.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.indigo.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.indigo.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #3f51b5;--mat-toolbar-container-text-color: white}.rtl-container.indigo.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.indigo.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.indigo.night .mat-primary{color:#536dfe!important}.rtl-container.indigo.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.indigo.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.indigo.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.indigo.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.indigo.night .bg-primary{background-color:#3f51b5;color:#fff}.rtl-container.indigo.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.indigo.night .currency-icon path,.rtl-container.indigo.night .currency-icon polygon{fill:#fff}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.indigo.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.indigo.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#536dfe}.rtl-container.indigo.night .cc-data-block .cc-data-title{color:#536dfe}.rtl-container.indigo.night .mat-stroked-button.mat-primary{border-color:#536dfe;color:#536dfe}.rtl-container.indigo.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.indigo.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.indigo.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.indigo.night .active-link,.rtl-container.indigo.night .active-link .fa-icon-small,.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active,.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#536dfe;font-weight:500;cursor:pointer;fill:#536dfe}.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.indigo.night .help-expansion .mat-expansion-indicator:after,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-content,.rtl-container.indigo.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.indigo.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.indigo.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.indigo.night .mat-expansion-panel,.rtl-container.indigo.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.indigo.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.indigo.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.indigo.night .mdc-data-table__header-cell,.rtl-container.indigo.night .mat-mdc-paginator,.rtl-container.indigo.night .mat-mdc-form-field-focus-overlay,.rtl-container.indigo.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.indigo.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.indigo.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#536dfe}.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.indigo.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.indigo.night .svg-donation{opacity:1!important}.rtl-container.indigo.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#536dfe!important}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#536dfe!important}.rtl-container.indigo.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#536dfe}.rtl-container.indigo.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#3f51b5}.rtl-container.indigo.night a{color:#536dfe!important;cursor:pointer}.rtl-container.indigo.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.indigo.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.indigo.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.indigo.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.indigo.night .mat-mdc-select-placeholder,.rtl-container.indigo.night .mat-mdc-select-value,.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#536dfe}.rtl-container.indigo.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.indigo.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.indigo.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.indigo.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover,.rtl-container.indigo.night .mat-select-panel .mat-option:hover,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#536dfe;cursor:pointer;background:#ffffff0f}.rtl-container.indigo.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.indigo.night .mat-tree-node:hover .mat-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.indigo.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#536dfe}.rtl-container.indigo.night .mat-tree-node:hover .boltz-icon,.rtl-container.indigo.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.indigo.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.indigo.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.indigo.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#536dfe}.rtl-container.indigo.night .mat-tree-node .sidenav-img,.rtl-container.indigo.night .mat-nested-tree-node .sidenav-img,.rtl-container.indigo.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.indigo.night .page-title-container .page-title-img,.rtl-container.indigo.night svg.top-icon-small{fill:#fff}.rtl-container.indigo.night .selected-color{border-color:#9fa8da}.rtl-container.indigo.night .mat-progress-bar-fill:after{background-color:#3949ab}.rtl-container.indigo.night .chart-legend .legend-label:hover,.rtl-container.indigo.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.indigo.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.indigo.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#536dfe}.rtl-container.indigo.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.indigo.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#536dfe}.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#536dfe}.rtl-container.indigo.night .mat-select-panel{background-color:#121212}.rtl-container.indigo.night .mat-tree{background:#121212}.rtl-container.indigo.night h4{color:#536dfe}.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.indigo.night .dashboard-info-title{color:#536dfe}.rtl-container.indigo.night .dashboard-info-value,.rtl-container.indigo.night .dashboard-capacity-header{color:#fff}.rtl-container.indigo.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.indigo.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.indigo.night .color-primary{color:#536dfe!important}.rtl-container.indigo.night .dot-primary{background-color:#536dfe!important}.rtl-container.indigo.night .dot-primary-lighter{background-color:#3f51b5!important}.rtl-container.indigo.night .mat-stepper-vertical{background-color:#121212}.rtl-container.indigo.night .spinner-container h2{color:#536dfe}.rtl-container.indigo.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.indigo.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.indigo.night svg .boltz-icon-fill{fill:#fff}.rtl-container.indigo.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.indigo.night svg .stroke-color-primary-lighter{stroke:#9fa8da}.rtl-container.indigo.night svg .stroke-color-primary{stroke:#3f51b5}.rtl-container.indigo.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.indigo.night svg .fill-color-0{fill:#171717}.rtl-container.indigo.night svg .fill-color-1{fill:#232323}.rtl-container.indigo.night svg .fill-color-2{fill:#222}.rtl-container.indigo.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.indigo.night svg .fill-color-4{fill:#383838}.rtl-container.indigo.night svg .fill-color-5{fill:#555}.rtl-container.indigo.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.indigo.night svg .fill-color-7{fill:#202020}.rtl-container.indigo.night svg .fill-color-8{fill:#242424}.rtl-container.indigo.night svg .fill-color-9{fill:#262626}.rtl-container.indigo.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.indigo.night svg .fill-color-11{fill:#171717}.rtl-container.indigo.night svg .fill-color-12{fill:#ccc}.rtl-container.indigo.night svg .fill-color-13{fill:#adadad}.rtl-container.indigo.night svg .fill-color-14{fill:#ababab}.rtl-container.indigo.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.indigo.night svg .fill-color-16{fill:#707070}.rtl-container.indigo.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.indigo.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.indigo.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.indigo.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.indigo.night svg .fill-color-21{fill:#cacaca}.rtl-container.indigo.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.indigo.night svg .fill-color-23{fill:#777}.rtl-container.indigo.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.indigo.night svg .fill-color-25{fill:#252525}.rtl-container.indigo.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.indigo.night svg .fill-color-27{fill:#000}.rtl-container.indigo.night svg .fill-color-28{fill:#313131}.rtl-container.indigo.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.indigo.night svg .fill-color-30{fill:#fff}.rtl-container.indigo.night svg .fill-color-31{fill:#3f51b5}.rtl-container.indigo.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.indigo.night svg .fill-color-primary{fill:#3f51b5}.rtl-container.indigo.night svg .fill-color-primary-lighter{fill:#9fa8da}.rtl-container.indigo.night svg .fill-color-primary-darker{fill:#536dfe}.rtl-container.indigo.night .mat-select-value,.rtl-container.indigo.night .mat-select-arrow{color:#fff}.rtl-container.indigo.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.indigo.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.indigo.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.indigo.night .mat-button.mat-primary,.rtl-container.indigo.night .mat-icon-button.mat-primary,.rtl-container.indigo.night .mat-stroked-button.mat-primary{color:#536dfe}.rtl-container.indigo.night tr.alert.alert-warn .mat-cell,.rtl-container.indigo.night tr.alert.alert-warn .mat-header-cell,.rtl-container.indigo.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.indigo.night .material-icons.info-icon{font-size:100%;color:#536dfe}.rtl-container.indigo.night .material-icons.info-icon.info-icon-primary{color:#536dfe}.rtl-container.indigo.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.indigo.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#536dfe}.rtl-container.indigo.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#283593}.rtl-container.indigo.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.indigo.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#536dfe}.rtl-container.indigo.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.indigo.night .mat-progress-bar-buffer{background-color:#c5cae9}.rtl-container.indigo.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.indigo.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.indigo.night .foreground.mat-progress-spinner circle,.rtl-container.indigo.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.indigo.night .mat-toolbar-row,.rtl-container.indigo.night .mat-toolbar-single-row{height:4rem}.rtl-container.indigo.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.indigo.night a{color:#3f51b5}.rtl-container.indigo.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.indigo.night .h-active-link{border-bottom:2px solid white}.rtl-container.indigo.night .mat-icon-36{color:#ffffffb3}.rtl-container.indigo.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.indigo.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.indigo.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.indigo.night .genseed-message{width:10%;color:#3f51b5}.rtl-container.indigo.night .border-primary{border:1px solid #3f51b5}.rtl-container.indigo.night .border-accent{border:1px solid #eeeeee}.rtl-container.indigo.night .border-warn{border:1px solid #ff343b}.rtl-container.indigo.night .material-icons.primary{color:#3f51b5}.rtl-container.indigo.night .material-icons.accent{color:#eee}.rtl-container.indigo.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.rtl-container.indigo.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.indigo.night .row-disabled{background-color:gray}.rtl-container.indigo.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.indigo.night .mat-mdc-card-content,.rtl-container.indigo.night .mat-mdc-card-subtitle,.rtl-container.indigo.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.indigo.night .mat-menu-panel{min-width:4rem}.rtl-container.indigo.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.indigo.night .horizontal-button:hover{background:#9fa8da;color:#eee}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#3f51b5}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.indigo.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.indigo.night .mat-button,.rtl-container.indigo.night .mat-icon-button,.rtl-container.indigo.night .mat-stroked-button,.rtl-container.indigo.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.indigo.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.indigo.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.indigo.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.indigo.night .mat-cell,.rtl-container.indigo.night .mat-header-cell,.rtl-container.indigo.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.indigo.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.indigo.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#3f51b5}.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.indigo.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#3f51b5;opacity:1}.rtl-container.indigo.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.indigo.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.indigo.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.indigo.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.indigo.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.indigo.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.indigo.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.indigo.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.indigo.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.indigo.night .more-button{color:#fff}.rtl-container.indigo.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.indigo.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.indigo.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.indigo.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.indigo.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.indigo.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.indigo.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.indigo.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.indigo.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.indigo.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.indigo.night .tab-badge .mat-badge-content.mat-badge-active{background:#3f51b5}.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.indigo.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.indigo.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.indigo.night .rtl-select-overlay{min-width:7rem}}.rtl-container.indigo.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.indigo.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.indigo.night .table-actions-button{min-width:8rem}.rtl-container.indigo.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.indigo.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.indigo.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.indigo.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#9fa8da!important}.rtl-container.indigo.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#3949ab!important}.rtl-container.indigo.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.indigo.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.indigo.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.indigo.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.indigo.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.indigo.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.indigo.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.indigo.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.indigo.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.indigo.night .color-warn{color:#ff343b}.rtl-container.indigo.night .fill-warn{fill:#ff343b}.rtl-container.indigo.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.indigo.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.indigo.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.indigo.night .alert.alert-info a{color:#004085}.rtl-container.indigo.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.indigo.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.indigo.night .alert.alert-warn a{color:#856404}.rtl-container.indigo.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.indigo.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.indigo.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.indigo.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.indigo.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.indigo.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.indigo.night .failed-status{color:#ff343b}.rtl-container.indigo.night .material-icons.icon-failed-status{fill:#ff343b;height:1.25rem}.rtl-container.indigo.night .svg-fill-primary{fill:#3f51b5}.rtl-container.indigo.night .svg-fill-primary-lighter{fill:#9fa8da}.rtl-container.indigo.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.indigo.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.indigo.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.indigo.night .dashboard-card-content .underline,.rtl-container.indigo.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.indigo.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#3f51b5}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.indigo.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#3f51b5}.rtl-container.indigo.night .mat-mdc-form-field-hint .currency-icon{color:#3f51b5}.rtl-container.indigo.night .mat-mdc-form-field-hint .currency-icon path{fill:#3f51b5}.rtl-container.indigo.night .fa-icon-primary{color:#3f51b5}.rtl-container.indigo.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.indigo.night ngx-charts-bar-vertical text,.rtl-container.indigo.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.indigo.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.indigo.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.indigo.night .mat-paginator-container{padding:0}.rtl-container.indigo.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.indigo.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.indigo.night .invoice-animation-div .particles-circle{position:absolute;background-color:#3f51b5;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #3f51b5;background-color:transparent}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.indigo.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.indigo.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.indigo.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.indigo.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.indigo.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.green.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #185127;--mdc-filled-text-field-focus-active-indicator-color: #185127;--mdc-filled-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #185127;--mdc-outlined-text-field-focus-outline-color: #185127;--mdc-outlined-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(24, 81, 39, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(24, 81, 39, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #154a23;--mdc-switch-selected-handle-color: #154a23;--mdc-switch-selected-hover-state-layer-color: #154a23;--mdc-switch-selected-pressed-state-layer-color: #154a23;--mdc-switch-selected-focus-handle-color: #08270e;--mdc-switch-selected-hover-handle-color: #08270e;--mdc-switch-selected-pressed-handle-color: #08270e;--mdc-switch-selected-focus-track-color: #5d8568;--mdc-switch-selected-hover-track-color: #5d8568;--mdc-switch-selected-pressed-track-color: #5d8568;--mdc-switch-selected-track-color: #5d8568;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #185127;--mdc-slider-focus-handle-color: #185127;--mdc-slider-hover-handle-color: #185127;--mdc-slider-active-track-color: #185127;--mdc-slider-inactive-track-color: #185127;--mdc-slider-with-tick-marks-inactive-container-color: #185127;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #185127;--mat-slider-hover-state-layer-color: rgba(24, 81, 39, .05);--mat-slider-focus-state-layer-color: rgba(24, 81, 39, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #185127;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #185127;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 81, 39, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 81, 39, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.green.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.green.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #185127;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #185127;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.green.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.green.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.green.day .mat-elevation-z0,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.day .mat-elevation-z1,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.day .mat-elevation-z2,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.day .mat-elevation-z3,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.day .mat-elevation-z4,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-elevation-z5,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.green.day .mat-elevation-z6,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.day .mat-elevation-z7,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.green.day .mat-elevation-z8,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.day .mat-elevation-z9,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.green.day .mat-elevation-z10,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.green.day .mat-elevation-z11,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.green.day .mat-elevation-z12,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.day .mat-elevation-z13,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.green.day .mat-elevation-z14,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.green.day .mat-elevation-z15,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.green.day .mat-elevation-z16,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.day .mat-elevation-z17,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.green.day .mat-elevation-z18,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.green.day .mat-elevation-z19,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.green.day .mat-elevation-z20,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.green.day .mat-elevation-z21,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.green.day .mat-elevation-z22,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.green.day .mat-elevation-z23,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.green.day .mat-elevation-z24,.rtl-container.green.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #185127;--mdc-linear-progress-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.green.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.green.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.green.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.green.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.green.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #185127;--mdc-chip-elevated-selected-container-color: #185127;--mdc-chip-elevated-disabled-container-color: #185127;--mdc-chip-flat-disabled-selected-container-color: #185127;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.green.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.green.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.green.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.green.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.green.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.green.day .mdc-list-item__start,.rtl-container.green.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127}.rtl-container.green.day .mat-accent .mdc-list-item__start,.rtl-container.green.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.green.day .mat-warn .mdc-list-item__start,.rtl-container.green.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.green.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#185127}.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.green.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.green.day .mat-mdc-tab-group,.rtl-container.green.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #185127;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #185127;--mat-tab-header-active-ripple-color: #185127;--mat-tab-header-inactive-ripple-color: #185127;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #185127;--mat-tab-header-active-hover-label-text-color: #185127;--mat-tab-header-active-focus-indicator-color: #185127;--mat-tab-header-active-hover-indicator-color: #185127}.rtl-container.green.day .mat-mdc-tab-group.mat-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.green.day .mat-mdc-tab-group.mat-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.green.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #185127;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.green.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.green.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #185127;--mat-text-button-state-layer-color: #185127;--mat-text-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #185127;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #185127;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #185127;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #185127;--mat-outlined-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.green.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.green.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #185127;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #185127;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.green.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.green.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.green.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.green.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.green.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.green.day .mat-icon.mat-primary{--mat-icon-color: #185127}.rtl-container.green.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.green.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.green.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #185127;--mat-toolbar-container-text-color: white}.rtl-container.green.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.green.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.green.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.green.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.green.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.green.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.green.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.green.day .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.green.day .page-title,.rtl-container.green.day .mat-mdc-select-value,.rtl-container.green.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.green.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.green.day .help-expansion .mat-expansion-panel-header,.rtl-container.green.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.green.day .help-expansion .mat-expansion-indicator:after,.rtl-container.green.day .help-expansion .mat-expansion-panel-content,.rtl-container.green.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#185127}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.green.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.green.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#185127}.rtl-container.green.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.green.day .mat-tree-node:hover,.rtl-container.green.day .mat-nested-tree-node-parent:hover,.rtl-container.green.day .mat-select-panel .mat-option:hover,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#185127;cursor:pointer}.rtl-container.green.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.day .mat-tree-node:hover .mat-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#185127}.rtl-container.green.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#185127}.rtl-container.green.day .spinner-container h2{color:#fff}.rtl-container.green.day .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.green.day .mat-form-field-suffix{color:#0000008a}.rtl-container.green.day .mat-stroked-button.mat-primary{border-color:#185127}.rtl-container.green.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.green.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.green.day .selected-color{border-color:#5d8568}.rtl-container.green.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.green.day table.mat-mdc-table thead tr th,.rtl-container.green.day .page-title-container,.rtl-container.green.day .page-sub-title-container{color:#0000008a}.rtl-container.green.day .page-title-container .page-title-img,.rtl-container.green.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.green.day .page-title-container .mat-input-element,.rtl-container.green.day .page-title-container .mat-radio-label-content,.rtl-container.green.day .page-title-container .theme-name,.rtl-container.green.day .page-sub-title-container .mat-input-element,.rtl-container.green.day .page-sub-title-container .mat-radio-label-content,.rtl-container.green.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.green.day .cc-data-block .cc-data-title{color:#185127}.rtl-container.green.day .active-link,.rtl-container.green.day .active-link .fa-icon-small{color:#185127;font-weight:500;cursor:pointer;fill:#185127}.rtl-container.green.day .mat-tree-node:hover,.rtl-container.green.day .mat-nested-tree-node-parent:hover,.rtl-container.green.day .mat-select-panel .mat-option:hover,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#185127;cursor:pointer;background:#0000000a}.rtl-container.green.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.day .mat-tree-node:hover .mat-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#185127}.rtl-container.green.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#185127}.rtl-container.green.day .mat-tree-node .sidenav-img,.rtl-container.green.day .mat-nested-tree-node .sidenav-img,.rtl-container.green.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.green.day .page-title-container .page-title-img,.rtl-container.green.day svg.top-icon-small{fill:#000000de}.rtl-container.green.day .mat-progress-bar-fill:after{background-color:#08270e}.rtl-container.green.day .modal-qr-code-container{background:#0000001f}.rtl-container.green.day .mdc-tab__text-label,.rtl-container.green.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.green.day .mat-mdc-card,.rtl-container.green.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.green.day .dashboard-info-title{color:#185127}.rtl-container.green.day .dashboard-capacity-header,.rtl-container.green.day .dashboard-info-value{color:#0000008a}.rtl-container.green.day .color-primary{color:#185127!important}.rtl-container.green.day .dot-primary{background-color:#185127!important}.rtl-container.green.day .dot-primary-lighter{background-color:#5d8568!important}.rtl-container.green.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .mat-mdc-form-field-hint{color:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.green.day .mat-mdc-form-field-hint fa-icon svg path{fill:#185127}.rtl-container.green.day .currency-icon path,.rtl-container.green.day .currency-icon polygon{fill:#0000008a}.rtl-container.green.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.green.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.green.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.day svg .stroke-color-primary-lighter{stroke:#5d8568}.rtl-container.green.day svg .stroke-color-primary{stroke:#185127}.rtl-container.green.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.green.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-1{fill:#fff}.rtl-container.green.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.green.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-6{fill:#fff}.rtl-container.green.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-9{fill:#fff}.rtl-container.green.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.green.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.green.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-16{fill:#404040}.rtl-container.green.day svg .fill-color-17{fill:#404040}.rtl-container.green.day svg .fill-color-18{fill:#000}.rtl-container.green.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.green.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.green.day svg .fill-color-24{fill:#000}.rtl-container.green.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.green.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.green.day svg .fill-color-27{fill:#000}.rtl-container.green.day svg .fill-color-28{fill:#313131}.rtl-container.green.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.green.day svg .fill-color-30{fill:#fff}.rtl-container.green.day svg .fill-color-31{fill:#185127}.rtl-container.green.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.green.day svg .fill-color-primary{fill:#185127}.rtl-container.green.day svg .fill-color-primary-lighter{fill:#5d8568}.rtl-container.green.day svg .fill-color-primary-darker{fill:#185127}.rtl-container.green.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.green.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.green.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#185127}.rtl-container.green.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.green.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.green.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.green.day .material-icons.mat-icon-no-color,.rtl-container.green.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.green.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.green.day .material-icons.info-icon.info-icon-primary{color:#185127}.rtl-container.green.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.green.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.green.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.green.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#185127}.rtl-container.green.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#08270e}.rtl-container.green.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.green.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#8ca893}.rtl-container.green.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.green.day .mat-progress-bar-buffer{background-color:#bacbbe}.rtl-container.green.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.green.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.green.day .foreground.mat-progress-spinner circle,.rtl-container.green.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.green.day .mat-toolbar-row,.rtl-container.green.day .mat-toolbar-single-row{height:4rem}.rtl-container.green.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.green.day a{color:#185127}.rtl-container.green.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.green.day .h-active-link{border-bottom:2px solid white}.rtl-container.green.day .mat-icon-36{color:#0000008a}.rtl-container.green.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.green.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.green.day .genseed-message{width:10%;color:#185127}.rtl-container.green.day .border-primary{border:1px solid #185127}.rtl-container.green.day .border-accent{border:1px solid #424242}.rtl-container.green.day .border-warn{border:1px solid #b00020}.rtl-container.green.day .material-icons.primary{color:#185127}.rtl-container.green.day .material-icons.accent{color:#424242}.rtl-container.green.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.green.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.green.day .row-disabled{background-color:gray}.rtl-container.green.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.green.day .mat-mdc-card-content,.rtl-container.green.day .mat-mdc-card-subtitle,.rtl-container.green.day .mat-mdc-card-title{color:#0000008a}.rtl-container.green.day .mat-menu-panel{min-width:4rem}.rtl-container.green.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.green.day .horizontal-button:hover{background:#5d8568;color:#424242}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#185127}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.green.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.green.day .mat-button,.rtl-container.green.day .mat-icon-button,.rtl-container.green.day .mat-stroked-button,.rtl-container.green.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.green.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.green.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.green.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.green.day .cc-data-block .cc-data-value{color:#000}.rtl-container.green.day .mat-cell,.rtl-container.green.day .mat-header-cell,.rtl-container.green.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.green.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.green.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#185127}.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.green.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#185127;opacity:1}.rtl-container.green.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.green.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.green.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.green.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.green.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.green.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.green.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.green.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.green.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.green.day .more-button{color:#000}.rtl-container.green.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.green.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.green.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.green.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.green.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.green.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.green.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.green.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.green.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.green.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.green.day .tab-badge .mat-badge-content.mat-badge-active{background:#185127}.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.green.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.green.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.day .rtl-select-overlay{min-width:7rem}}.rtl-container.green.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.green.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.green.day .table-actions-button{min-width:8rem}.rtl-container.green.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.green.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#8ca893!important}.rtl-container.green.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#154a23!important}.rtl-container.green.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.green.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.green.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.green.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.green.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.green.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.green.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.green.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.green.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.green.day .color-warn{color:#b00020}.rtl-container.green.day .fill-warn{fill:#b00020}.rtl-container.green.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.green.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.green.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.green.day .alert.alert-info a{color:#004085}.rtl-container.green.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.green.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.green.day .alert.alert-warn a{color:#856404}.rtl-container.green.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.green.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.green.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.green.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.green.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.green.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.green.day .failed-status{color:#b00020}.rtl-container.green.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.green.day .svg-fill-primary{fill:#185127}.rtl-container.green.day .svg-fill-primary-lighter{fill:#5d8568}.rtl-container.green.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.green.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.green.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.green.day .dashboard-card-content .underline,.rtl-container.green.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.green.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#185127}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#185127}.rtl-container.green.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.green.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon{color:#185127}.rtl-container.green.day .mat-mdc-form-field-hint .currency-icon path{fill:#185127}.rtl-container.green.day .fa-icon-primary{color:#185127}.rtl-container.green.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.day ngx-charts-bar-vertical text,.rtl-container.green.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.green.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.green.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.green.day .mat-paginator-container{padding:0}.rtl-container.green.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.green.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.green.day .invoice-animation-div .particles-circle{position:absolute;background-color:#185127;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #185127;background-color:transparent}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.green.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.green.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.green.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.green.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.green.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.green.night{--mat-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #185127;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #185127;--mdc-filled-text-field-focus-active-indicator-color: #185127;--mdc-filled-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #185127;--mdc-outlined-text-field-focus-outline-color: #185127;--mdc-outlined-text-field-focus-label-text-color: rgba(24, 81, 39, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(24, 81, 39, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(24, 81, 39, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #5d8568;--mdc-switch-selected-handle-color: #5d8568;--mdc-switch-selected-hover-state-layer-color: #5d8568;--mdc-switch-selected-pressed-state-layer-color: #5d8568;--mdc-switch-selected-focus-handle-color: #8ca893;--mdc-switch-selected-hover-handle-color: #8ca893;--mdc-switch-selected-pressed-handle-color: #8ca893;--mdc-switch-selected-focus-track-color: #154a23;--mdc-switch-selected-hover-track-color: #154a23;--mdc-switch-selected-pressed-track-color: #154a23;--mdc-switch-selected-track-color: #154a23;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #185127;--mdc-slider-focus-handle-color: #185127;--mdc-slider-hover-handle-color: #185127;--mdc-slider-active-track-color: #185127;--mdc-slider-inactive-track-color: #185127;--mdc-slider-with-tick-marks-inactive-container-color: #185127;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #185127;--mat-slider-hover-state-layer-color: rgba(24, 81, 39, .05);--mat-slider-focus-state-layer-color: rgba(24, 81, 39, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #185127;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #185127;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #185127;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(24, 81, 39, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(24, 81, 39, .3);--mat-datepicker-toggle-active-state-icon-color: #185127;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(24, 81, 39, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #185127;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #185127;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #185127;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.green.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.green.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.green.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #185127;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #185127;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.green.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.green.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.green.night .mat-elevation-z0,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.green.night .mat-elevation-z1,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.green.night .mat-elevation-z2,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.green.night .mat-elevation-z3,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.green.night .mat-elevation-z4,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-elevation-z5,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.green.night .mat-elevation-z6,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.green.night .mat-elevation-z7,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.green.night .mat-elevation-z8,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.green.night .mat-elevation-z9,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.green.night .mat-elevation-z10,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.green.night .mat-elevation-z11,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.green.night .mat-elevation-z12,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.green.night .mat-elevation-z13,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.green.night .mat-elevation-z14,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.green.night .mat-elevation-z15,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.green.night .mat-elevation-z16,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.green.night .mat-elevation-z17,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.green.night .mat-elevation-z18,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.green.night .mat-elevation-z19,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.green.night .mat-elevation-z20,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.green.night .mat-elevation-z21,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.green.night .mat-elevation-z22,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.green.night .mat-elevation-z23,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.green.night .mat-elevation-z24,.rtl-container.green.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.green.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #185127;--mdc-linear-progress-track-color: rgba(24, 81, 39, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.green.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.green.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.green.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #185127;--mdc-chip-elevated-selected-container-color: #185127;--mdc-chip-elevated-disabled-container-color: #185127;--mdc-chip-flat-disabled-selected-container-color: #185127;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.green.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.green.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.green.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.green.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.green.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.green.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #185127;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.green.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.green.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.green.night .mdc-list-item__start,.rtl-container.green.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #185127;--mdc-radio-selected-hover-icon-color: #185127;--mdc-radio-selected-icon-color: #185127;--mdc-radio-selected-pressed-icon-color: #185127}.rtl-container.green.night .mat-accent .mdc-list-item__start,.rtl-container.green.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.green.night .mat-warn .mdc-list-item__start,.rtl-container.green.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.green.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#185127}.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.green.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.green.night .mat-mdc-tab-group,.rtl-container.green.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #185127;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #185127;--mat-tab-header-active-ripple-color: #185127;--mat-tab-header-inactive-ripple-color: #185127;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #185127;--mat-tab-header-active-hover-label-text-color: #185127;--mat-tab-header-active-focus-indicator-color: #185127;--mat-tab-header-active-hover-indicator-color: #185127}.rtl-container.green.night .mat-mdc-tab-group.mat-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.green.night .mat-mdc-tab-group.mat-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.green.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #185127;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.green.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.green.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #185127;--mdc-checkbox-selected-hover-icon-color: #185127;--mdc-checkbox-selected-icon-color: #185127;--mdc-checkbox-selected-pressed-icon-color: #185127;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #185127;--mdc-checkbox-selected-hover-state-layer-color: #185127;--mdc-checkbox-selected-pressed-state-layer-color: #185127;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.green.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #185127;--mat-text-button-state-layer-color: #185127;--mat-text-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #185127;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #185127;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #185127;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #185127;--mat-outlined-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #185127;--mat-icon-button-state-layer-color: #185127;--mat-icon-button-ripple-color: rgba(24, 81, 39, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.green.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.green.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #185127;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #185127;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.green.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.green.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.green.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.green.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.green.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.green.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.green.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.green.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.green.night .mat-icon.mat-primary{--mat-icon-color: #185127}.rtl-container.green.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.green.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.green.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.green.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.green.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #185127;--mat-toolbar-container-text-color: white}.rtl-container.green.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.green.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.green.night .mat-primary{color:#30ff4b!important}.rtl-container.green.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.green.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.green.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.green.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.green.night .bg-primary{background-color:#185127;color:#fff}.rtl-container.green.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#30ff4b}.rtl-container.green.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.green.night .currency-icon path,.rtl-container.green.night .currency-icon polygon{fill:#fff}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.green.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.green.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#30ff4b}.rtl-container.green.night .cc-data-block .cc-data-title{color:#30ff4b}.rtl-container.green.night .mat-stroked-button.mat-primary{border-color:#30ff4b;color:#30ff4b}.rtl-container.green.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.green.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.green.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.green.night .active-link,.rtl-container.green.night .active-link .fa-icon-small,.rtl-container.green.night .mat-select-panel .mat-option.mat-active,.rtl-container.green.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#30ff4b;font-weight:500;cursor:pointer;fill:#30ff4b}.rtl-container.green.night .help-expansion .mat-expansion-panel-header,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.green.night .help-expansion .mat-expansion-indicator:after,.rtl-container.green.night .help-expansion .mat-expansion-panel-content,.rtl-container.green.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.green.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.green.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.green.night .mat-expansion-panel,.rtl-container.green.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.green.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.green.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.green.night .mdc-data-table__header-cell,.rtl-container.green.night .mat-mdc-paginator,.rtl-container.green.night .mat-mdc-form-field-focus-overlay,.rtl-container.green.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.green.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.green.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#30ff4b}.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.green.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.green.night .svg-donation{opacity:1!important}.rtl-container.green.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#30ff4b!important}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#30ff4b!important}.rtl-container.green.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#30ff4b}.rtl-container.green.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#185127}.rtl-container.green.night a{color:#30ff4b!important;cursor:pointer}.rtl-container.green.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.green.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.green.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.green.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.green.night .mat-mdc-select-placeholder,.rtl-container.green.night .mat-mdc-select-value,.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#30ff4b}.rtl-container.green.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.green.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.green.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.green.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#30ff4b}.rtl-container.green.night .mat-tree-node:hover,.rtl-container.green.night .mat-nested-tree-node-parent:hover,.rtl-container.green.night .mat-select-panel .mat-option:hover,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#30ff4b;cursor:pointer;background:#ffffff0f}.rtl-container.green.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.green.night .mat-tree-node:hover .mat-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#30ff4b}.rtl-container.green.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.green.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.green.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.green.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.green.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.green.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#30ff4b}.rtl-container.green.night .mat-tree-node:hover .boltz-icon,.rtl-container.green.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.green.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.green.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.green.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#30ff4b}.rtl-container.green.night .mat-tree-node .sidenav-img,.rtl-container.green.night .mat-nested-tree-node .sidenav-img,.rtl-container.green.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.green.night .page-title-container .page-title-img,.rtl-container.green.night svg.top-icon-small{fill:#fff}.rtl-container.green.night .selected-color{border-color:#5d8568}.rtl-container.green.night .mat-progress-bar-fill:after{background-color:#154a23}.rtl-container.green.night .chart-legend .legend-label:hover,.rtl-container.green.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.green.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.green.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#30ff4b}.rtl-container.green.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.green.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#30ff4b}.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#30ff4b}.rtl-container.green.night .mat-select-panel{background-color:#121212}.rtl-container.green.night .mat-tree{background:#121212}.rtl-container.green.night h4{color:#30ff4b}.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.green.night .dashboard-info-title{color:#30ff4b}.rtl-container.green.night .dashboard-info-value,.rtl-container.green.night .dashboard-capacity-header{color:#fff}.rtl-container.green.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.green.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.green.night .color-primary{color:#30ff4b!important}.rtl-container.green.night .dot-primary{background-color:#30ff4b!important}.rtl-container.green.night .dot-primary-lighter{background-color:#185127!important}.rtl-container.green.night .mat-stepper-vertical{background-color:#121212}.rtl-container.green.night .spinner-container h2{color:#30ff4b}.rtl-container.green.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.green.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.green.night svg .boltz-icon-fill{fill:#fff}.rtl-container.green.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.green.night svg .stroke-color-primary-lighter{stroke:#5d8568}.rtl-container.green.night svg .stroke-color-primary{stroke:#185127}.rtl-container.green.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.green.night svg .fill-color-0{fill:#171717}.rtl-container.green.night svg .fill-color-1{fill:#232323}.rtl-container.green.night svg .fill-color-2{fill:#222}.rtl-container.green.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.green.night svg .fill-color-4{fill:#383838}.rtl-container.green.night svg .fill-color-5{fill:#555}.rtl-container.green.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.green.night svg .fill-color-7{fill:#202020}.rtl-container.green.night svg .fill-color-8{fill:#242424}.rtl-container.green.night svg .fill-color-9{fill:#262626}.rtl-container.green.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.green.night svg .fill-color-11{fill:#171717}.rtl-container.green.night svg .fill-color-12{fill:#ccc}.rtl-container.green.night svg .fill-color-13{fill:#adadad}.rtl-container.green.night svg .fill-color-14{fill:#ababab}.rtl-container.green.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.green.night svg .fill-color-16{fill:#707070}.rtl-container.green.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.green.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.green.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.green.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.green.night svg .fill-color-21{fill:#cacaca}.rtl-container.green.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.green.night svg .fill-color-23{fill:#777}.rtl-container.green.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.green.night svg .fill-color-25{fill:#252525}.rtl-container.green.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.green.night svg .fill-color-27{fill:#000}.rtl-container.green.night svg .fill-color-28{fill:#313131}.rtl-container.green.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.green.night svg .fill-color-30{fill:#fff}.rtl-container.green.night svg .fill-color-31{fill:#185127}.rtl-container.green.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.green.night svg .fill-color-primary{fill:#185127}.rtl-container.green.night svg .fill-color-primary-lighter{fill:#5d8568}.rtl-container.green.night svg .fill-color-primary-darker{fill:#30ff4b}.rtl-container.green.night .mat-select-value,.rtl-container.green.night .mat-select-arrow{color:#fff}.rtl-container.green.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.green.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.green.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.green.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.green.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.green.night .mat-button.mat-primary,.rtl-container.green.night .mat-icon-button.mat-primary,.rtl-container.green.night .mat-stroked-button.mat-primary{color:#30ff4b}.rtl-container.green.night tr.alert.alert-warn .mat-cell,.rtl-container.green.night tr.alert.alert-warn .mat-header-cell,.rtl-container.green.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.green.night .material-icons.info-icon{font-size:100%;color:#30ff4b}.rtl-container.green.night .material-icons.info-icon.info-icon-primary{color:#30ff4b}.rtl-container.green.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.green.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.green.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#30ff4b}.rtl-container.green.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#0e3717}.rtl-container.green.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.green.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#30ff4b}.rtl-container.green.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.green.night .mat-progress-bar-buffer{background-color:#bacbbe}.rtl-container.green.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.green.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.green.night .foreground.mat-progress-spinner circle,.rtl-container.green.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.green.night .mat-toolbar-row,.rtl-container.green.night .mat-toolbar-single-row{height:4rem}.rtl-container.green.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.green.night a{color:#185127}.rtl-container.green.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.green.night .h-active-link{border-bottom:2px solid white}.rtl-container.green.night .mat-icon-36{color:#ffffffb3}.rtl-container.green.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.green.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.green.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.green.night .genseed-message{width:10%;color:#185127}.rtl-container.green.night .border-primary{border:1px solid #185127}.rtl-container.green.night .border-accent{border:1px solid #eeeeee}.rtl-container.green.night .border-warn{border:1px solid #ff343b}.rtl-container.green.night .material-icons.primary{color:#185127}.rtl-container.green.night .material-icons.accent{color:#eee}.rtl-container.green.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.rtl-container.green.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.green.night .row-disabled{background-color:gray}.rtl-container.green.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.green.night .mat-mdc-card-content,.rtl-container.green.night .mat-mdc-card-subtitle,.rtl-container.green.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.green.night .mat-menu-panel{min-width:4rem}.rtl-container.green.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.green.night .horizontal-button:hover{background:#5d8568;color:#eee}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#185127}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.green.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.green.night .mat-button,.rtl-container.green.night .mat-icon-button,.rtl-container.green.night .mat-stroked-button,.rtl-container.green.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.green.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.green.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.green.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.green.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.green.night .mat-cell,.rtl-container.green.night .mat-header-cell,.rtl-container.green.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.green.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.green.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#185127}.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.green.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.green.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#185127;opacity:1}.rtl-container.green.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.green.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.green.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.green.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.green.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.green.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.green.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.green.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.green.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.green.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.green.night .more-button{color:#fff}.rtl-container.green.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.green.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.green.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.green.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.green.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.green.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.green.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.green.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.green.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.green.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.green.night .tab-badge .mat-badge-content.mat-badge-active{background:#185127}.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.green.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.green.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.green.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.green.night .rtl-select-overlay{min-width:7rem}}.rtl-container.green.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.green.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.green.night .table-actions-button{min-width:8rem}.rtl-container.green.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.green.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.green.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.green.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#8ca893!important}.rtl-container.green.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#154a23!important}.rtl-container.green.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.green.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.green.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.green.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.green.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.green.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.green.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.green.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.green.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.green.night .color-warn{color:#ff343b}.rtl-container.green.night .fill-warn{fill:#ff343b}.rtl-container.green.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.green.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.green.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.green.night .alert.alert-info a{color:#004085}.rtl-container.green.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.green.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.green.night .alert.alert-warn a{color:#856404}.rtl-container.green.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.green.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.green.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.green.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.green.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.green.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.green.night .failed-status{color:#ff343b}.rtl-container.green.night .material-icons.icon-failed-status{fill:#ff343b;height:1.25rem}.rtl-container.green.night .svg-fill-primary{fill:#185127}.rtl-container.green.night .svg-fill-primary-lighter{fill:#5d8568}.rtl-container.green.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.green.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.green.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.green.night .dashboard-card-content .underline,.rtl-container.green.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.green.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#185127}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#185127}.rtl-container.green.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.green.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#185127}.rtl-container.green.night .mat-mdc-form-field-hint .currency-icon{color:#185127}.rtl-container.green.night .mat-mdc-form-field-hint .currency-icon path{fill:#185127}.rtl-container.green.night .fa-icon-primary{color:#185127}.rtl-container.green.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.green.night ngx-charts-bar-vertical text,.rtl-container.green.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.green.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.green.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.green.night .mat-paginator-container{padding:0}.rtl-container.green.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.green.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.green.night .invoice-animation-div .particles-circle{position:absolute;background-color:#185127;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #185127;background-color:transparent}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.green.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.green.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.green.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.green.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.green.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.teal.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #00695c;--mdc-filled-text-field-focus-active-indicator-color: #00695c;--mdc-filled-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #00695c;--mdc-outlined-text-field-focus-outline-color: #00695c;--mdc-outlined-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(0, 105, 92, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(0, 105, 92, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #00897b;--mdc-switch-selected-handle-color: #00897b;--mdc-switch-selected-hover-state-layer-color: #00897b;--mdc-switch-selected-pressed-state-layer-color: #00897b;--mdc-switch-selected-focus-handle-color: #004d40;--mdc-switch-selected-hover-handle-color: #004d40;--mdc-switch-selected-pressed-handle-color: #004d40;--mdc-switch-selected-focus-track-color: #4db6ac;--mdc-switch-selected-hover-track-color: #4db6ac;--mdc-switch-selected-pressed-track-color: #4db6ac;--mdc-switch-selected-track-color: #4db6ac;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #00695c;--mdc-slider-focus-handle-color: #00695c;--mdc-slider-hover-handle-color: #00695c;--mdc-slider-active-track-color: #00695c;--mdc-slider-inactive-track-color: #00695c;--mdc-slider-with-tick-marks-inactive-container-color: #00695c;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #00695c;--mat-slider-hover-state-layer-color: rgba(0, 105, 92, .05);--mat-slider-focus-state-layer-color: rgba(0, 105, 92, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #00695c;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #00695c;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 105, 92, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 105, 92, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.teal.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.teal.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #00695c;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #00695c;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.teal.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.teal.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.teal.day .mat-elevation-z0,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.day .mat-elevation-z1,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z2,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z3,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.day .mat-elevation-z4,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-elevation-z5,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.teal.day .mat-elevation-z6,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.day .mat-elevation-z7,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.teal.day .mat-elevation-z8,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.day .mat-elevation-z9,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.teal.day .mat-elevation-z10,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z11,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.teal.day .mat-elevation-z12,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z13,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z14,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.teal.day .mat-elevation-z15,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z16,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z17,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.teal.day .mat-elevation-z18,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.teal.day .mat-elevation-z19,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.teal.day .mat-elevation-z20,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z21,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z22,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.teal.day .mat-elevation-z23,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.teal.day .mat-elevation-z24,.rtl-container.teal.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #00695c;--mdc-linear-progress-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.teal.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.teal.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.teal.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.teal.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.teal.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #00695c;--mdc-chip-elevated-selected-container-color: #00695c;--mdc-chip-elevated-disabled-container-color: #00695c;--mdc-chip-flat-disabled-selected-container-color: #00695c;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.teal.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.teal.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.teal.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.teal.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.teal.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.teal.day .mdc-list-item__start,.rtl-container.teal.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c}.rtl-container.teal.day .mat-accent .mdc-list-item__start,.rtl-container.teal.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.teal.day .mat-warn .mdc-list-item__start,.rtl-container.teal.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.teal.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#00695c}.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.teal.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.teal.day .mat-mdc-tab-group,.rtl-container.teal.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #00695c;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #00695c;--mat-tab-header-active-ripple-color: #00695c;--mat-tab-header-inactive-ripple-color: #00695c;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #00695c;--mat-tab-header-active-hover-label-text-color: #00695c;--mat-tab-header-active-focus-indicator-color: #00695c;--mat-tab-header-active-hover-indicator-color: #00695c}.rtl-container.teal.day .mat-mdc-tab-group.mat-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.teal.day .mat-mdc-tab-group.mat-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #00695c;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.teal.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.teal.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #00695c;--mat-text-button-state-layer-color: #00695c;--mat-text-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #00695c;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #00695c;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #00695c;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #00695c;--mat-outlined-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.teal.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #00695c;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.teal.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.teal.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.teal.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.teal.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.teal.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.teal.day .mat-icon.mat-primary{--mat-icon-color: #00695c}.rtl-container.teal.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.teal.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.teal.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #00695c;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.teal.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.teal.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.teal.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.teal.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.teal.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.teal.day .bg-primary{background-color:#00695c;color:#fff}.rtl-container.teal.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.teal.day .page-title,.rtl-container.teal.day .mat-mdc-select-value,.rtl-container.teal.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.teal.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.teal.day .help-expansion .mat-expansion-panel-header,.rtl-container.teal.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.teal.day .help-expansion .mat-expansion-indicator:after,.rtl-container.teal.day .help-expansion .mat-expansion-panel-content,.rtl-container.teal.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#00695c}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.teal.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#00695c}.rtl-container.teal.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.teal.day .mat-tree-node:hover,.rtl-container.teal.day .mat-nested-tree-node-parent:hover,.rtl-container.teal.day .mat-select-panel .mat-option:hover,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#00695c;cursor:pointer}.rtl-container.teal.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.day .mat-tree-node:hover .mat-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#00695c}.rtl-container.teal.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#00695c}.rtl-container.teal.day .spinner-container h2{color:#fff}.rtl-container.teal.day .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.teal.day .mat-form-field-suffix{color:#0000008a}.rtl-container.teal.day .mat-stroked-button.mat-primary{border-color:#00695c}.rtl-container.teal.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.teal.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.teal.day .selected-color{border-color:#4db6ac}.rtl-container.teal.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.teal.day table.mat-mdc-table thead tr th,.rtl-container.teal.day .page-title-container,.rtl-container.teal.day .page-sub-title-container{color:#0000008a}.rtl-container.teal.day .page-title-container .page-title-img,.rtl-container.teal.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.teal.day .page-title-container .mat-input-element,.rtl-container.teal.day .page-title-container .mat-radio-label-content,.rtl-container.teal.day .page-title-container .theme-name,.rtl-container.teal.day .page-sub-title-container .mat-input-element,.rtl-container.teal.day .page-sub-title-container .mat-radio-label-content,.rtl-container.teal.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.teal.day .cc-data-block .cc-data-title{color:#00695c}.rtl-container.teal.day .active-link,.rtl-container.teal.day .active-link .fa-icon-small{color:#00695c;font-weight:500;cursor:pointer;fill:#00695c}.rtl-container.teal.day .mat-tree-node:hover,.rtl-container.teal.day .mat-nested-tree-node-parent:hover,.rtl-container.teal.day .mat-select-panel .mat-option:hover,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#00695c;cursor:pointer;background:#0000000a}.rtl-container.teal.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.day .mat-tree-node:hover .mat-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#00695c}.rtl-container.teal.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#00695c}.rtl-container.teal.day .mat-tree-node .sidenav-img,.rtl-container.teal.day .mat-nested-tree-node .sidenav-img,.rtl-container.teal.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.teal.day .page-title-container .page-title-img,.rtl-container.teal.day svg.top-icon-small{fill:#000000de}.rtl-container.teal.day .mat-progress-bar-fill:after{background-color:#004d40}.rtl-container.teal.day .modal-qr-code-container{background:#0000001f}.rtl-container.teal.day .mdc-tab__text-label,.rtl-container.teal.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.teal.day .mat-mdc-card,.rtl-container.teal.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.teal.day .dashboard-info-title{color:#00695c}.rtl-container.teal.day .dashboard-capacity-header,.rtl-container.teal.day .dashboard-info-value{color:#0000008a}.rtl-container.teal.day .color-primary{color:#00695c!important}.rtl-container.teal.day .dot-primary{background-color:#00695c!important}.rtl-container.teal.day .dot-primary-lighter{background-color:#4db6ac!important}.rtl-container.teal.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .mat-mdc-form-field-hint{color:#00695c}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.teal.day .mat-mdc-form-field-hint fa-icon svg path{fill:#00695c}.rtl-container.teal.day .currency-icon path,.rtl-container.teal.day .currency-icon polygon{fill:#0000008a}.rtl-container.teal.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.teal.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.teal.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.day svg .stroke-color-primary-lighter{stroke:#4db6ac}.rtl-container.teal.day svg .stroke-color-primary{stroke:#00695c}.rtl-container.teal.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.teal.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-1{fill:#fff}.rtl-container.teal.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.teal.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-6{fill:#fff}.rtl-container.teal.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-9{fill:#fff}.rtl-container.teal.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.teal.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.teal.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-16{fill:#404040}.rtl-container.teal.day svg .fill-color-17{fill:#404040}.rtl-container.teal.day svg .fill-color-18{fill:#000}.rtl-container.teal.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.teal.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.teal.day svg .fill-color-24{fill:#000}.rtl-container.teal.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.teal.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.teal.day svg .fill-color-27{fill:#000}.rtl-container.teal.day svg .fill-color-28{fill:#313131}.rtl-container.teal.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.teal.day svg .fill-color-30{fill:#fff}.rtl-container.teal.day svg .fill-color-31{fill:#00695c}.rtl-container.teal.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.day svg .fill-color-primary{fill:#00695c}.rtl-container.teal.day svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.day svg .fill-color-primary-darker{fill:#00695c}.rtl-container.teal.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.teal.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.teal.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#00695c}.rtl-container.teal.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.teal.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.teal.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.teal.day .material-icons.mat-icon-no-color,.rtl-container.teal.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.teal.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.teal.day .material-icons.info-icon.info-icon-primary{color:#00695c}.rtl-container.teal.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.teal.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.teal.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#00695c}.rtl-container.teal.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#004d40}.rtl-container.teal.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.teal.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#80cbc4}.rtl-container.teal.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.teal.day .mat-progress-bar-buffer{background-color:#b2dfdb}.rtl-container.teal.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.teal.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.teal.day .foreground.mat-progress-spinner circle,.rtl-container.teal.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.teal.day .mat-toolbar-row,.rtl-container.teal.day .mat-toolbar-single-row{height:4rem}.rtl-container.teal.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day a{color:#00695c}.rtl-container.teal.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.teal.day .h-active-link{border-bottom:2px solid white}.rtl-container.teal.day .mat-icon-36{color:#0000008a}.rtl-container.teal.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.teal.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.teal.day .genseed-message{width:10%;color:#00695c}.rtl-container.teal.day .border-primary{border:1px solid #00695c}.rtl-container.teal.day .border-accent{border:1px solid #424242}.rtl-container.teal.day .border-warn{border:1px solid #b00020}.rtl-container.teal.day .material-icons.primary{color:#00695c}.rtl-container.teal.day .material-icons.accent{color:#424242}.rtl-container.teal.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.teal.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.teal.day .row-disabled{background-color:gray}.rtl-container.teal.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.teal.day .mat-mdc-card-content,.rtl-container.teal.day .mat-mdc-card-subtitle,.rtl-container.teal.day .mat-mdc-card-title{color:#0000008a}.rtl-container.teal.day .mat-menu-panel{min-width:4rem}.rtl-container.teal.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.teal.day .horizontal-button:hover{background:#4db6ac;color:#424242}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#00695c}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.teal.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.teal.day .mat-button,.rtl-container.teal.day .mat-icon-button,.rtl-container.teal.day .mat-stroked-button,.rtl-container.teal.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.teal.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.teal.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.teal.day .cc-data-block .cc-data-value{color:#000}.rtl-container.teal.day .mat-cell,.rtl-container.teal.day .mat-header-cell,.rtl-container.teal.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.teal.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.teal.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#00695c}.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.teal.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#00695c;opacity:1}.rtl-container.teal.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.teal.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.teal.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.teal.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.teal.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.teal.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.teal.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.teal.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.teal.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.teal.day .more-button{color:#000}.rtl-container.teal.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.teal.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.teal.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.teal.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.teal.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.teal.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.teal.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.teal.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.teal.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.teal.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.teal.day .tab-badge .mat-badge-content.mat-badge-active{background:#00695c}.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.teal.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.day .rtl-select-overlay{min-width:7rem}}.rtl-container.teal.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.teal.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.teal.day .table-actions-button{min-width:8rem}.rtl-container.teal.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.teal.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#80cbc4!important}.rtl-container.teal.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#00897b!important}.rtl-container.teal.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.teal.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.teal.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.teal.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.teal.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.teal.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.teal.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.teal.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.teal.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.teal.day .color-warn{color:#b00020}.rtl-container.teal.day .fill-warn{fill:#b00020}.rtl-container.teal.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.teal.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.teal.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.teal.day .alert.alert-info a{color:#004085}.rtl-container.teal.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.teal.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.teal.day .alert.alert-warn a{color:#856404}.rtl-container.teal.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.teal.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.teal.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.teal.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.teal.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.teal.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.teal.day .failed-status{color:#b00020}.rtl-container.teal.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.teal.day .svg-fill-primary{fill:#00695c}.rtl-container.teal.day .svg-fill-primary-lighter{fill:#4db6ac}.rtl-container.teal.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.teal.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.teal.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.teal.day .dashboard-card-content .underline,.rtl-container.teal.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.teal.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#00695c}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#00695c}.rtl-container.teal.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.teal.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#00695c}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon{color:#00695c}.rtl-container.teal.day .mat-mdc-form-field-hint .currency-icon path{fill:#00695c}.rtl-container.teal.day .fa-icon-primary{color:#00695c}.rtl-container.teal.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.day ngx-charts-bar-vertical text,.rtl-container.teal.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.teal.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.teal.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.teal.day .mat-paginator-container{padding:0}.rtl-container.teal.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.teal.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.teal.day .invoice-animation-div .particles-circle{position:absolute;background-color:#00695c;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #00695c;background-color:transparent}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.teal.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.teal.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.teal.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.teal.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.teal.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.teal.night{--mat-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #00695c;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #00695c;--mdc-filled-text-field-focus-active-indicator-color: #00695c;--mdc-filled-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #00695c;--mdc-outlined-text-field-focus-outline-color: #00695c;--mdc-outlined-text-field-focus-label-text-color: rgba(0, 105, 92, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(0, 105, 92, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(0, 105, 92, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #4db6ac;--mdc-switch-selected-handle-color: #4db6ac;--mdc-switch-selected-hover-state-layer-color: #4db6ac;--mdc-switch-selected-pressed-state-layer-color: #4db6ac;--mdc-switch-selected-focus-handle-color: #80cbc4;--mdc-switch-selected-hover-handle-color: #80cbc4;--mdc-switch-selected-pressed-handle-color: #80cbc4;--mdc-switch-selected-focus-track-color: #00897b;--mdc-switch-selected-hover-track-color: #00897b;--mdc-switch-selected-pressed-track-color: #00897b;--mdc-switch-selected-track-color: #00897b;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #00695c;--mdc-slider-focus-handle-color: #00695c;--mdc-slider-hover-handle-color: #00695c;--mdc-slider-active-track-color: #00695c;--mdc-slider-inactive-track-color: #00695c;--mdc-slider-with-tick-marks-inactive-container-color: #00695c;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #00695c;--mat-slider-hover-state-layer-color: rgba(0, 105, 92, .05);--mat-slider-focus-state-layer-color: rgba(0, 105, 92, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #00695c;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #00695c;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #00695c;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 105, 92, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 105, 92, .3);--mat-datepicker-toggle-active-state-icon-color: #00695c;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 105, 92, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #00695c;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #00695c;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #00695c;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.teal.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.teal.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.teal.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #00695c;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #00695c;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.teal.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.teal.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.teal.night .mat-elevation-z0,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.teal.night .mat-elevation-z1,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z2,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z3,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.teal.night .mat-elevation-z4,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-elevation-z5,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.teal.night .mat-elevation-z6,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.teal.night .mat-elevation-z7,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.teal.night .mat-elevation-z8,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.teal.night .mat-elevation-z9,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.teal.night .mat-elevation-z10,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z11,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.teal.night .mat-elevation-z12,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z13,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z14,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.teal.night .mat-elevation-z15,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z16,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z17,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.teal.night .mat-elevation-z18,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.teal.night .mat-elevation-z19,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.teal.night .mat-elevation-z20,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z21,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z22,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.teal.night .mat-elevation-z23,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.teal.night .mat-elevation-z24,.rtl-container.teal.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.teal.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #00695c;--mdc-linear-progress-track-color: rgba(0, 105, 92, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.teal.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.teal.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.teal.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #00695c;--mdc-chip-elevated-selected-container-color: #00695c;--mdc-chip-elevated-disabled-container-color: #00695c;--mdc-chip-flat-disabled-selected-container-color: #00695c;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.teal.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.teal.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.teal.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.teal.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.teal.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #00695c;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.teal.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.teal.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.teal.night .mdc-list-item__start,.rtl-container.teal.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #00695c;--mdc-radio-selected-hover-icon-color: #00695c;--mdc-radio-selected-icon-color: #00695c;--mdc-radio-selected-pressed-icon-color: #00695c}.rtl-container.teal.night .mat-accent .mdc-list-item__start,.rtl-container.teal.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.teal.night .mat-warn .mdc-list-item__start,.rtl-container.teal.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.teal.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#00695c}.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.teal.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.teal.night .mat-mdc-tab-group,.rtl-container.teal.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #00695c;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #00695c;--mat-tab-header-active-ripple-color: #00695c;--mat-tab-header-inactive-ripple-color: #00695c;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #00695c;--mat-tab-header-active-hover-label-text-color: #00695c;--mat-tab-header-active-focus-indicator-color: #00695c;--mat-tab-header-active-hover-indicator-color: #00695c}.rtl-container.teal.night .mat-mdc-tab-group.mat-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.teal.night .mat-mdc-tab-group.mat-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #00695c;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.teal.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.teal.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #00695c;--mdc-checkbox-selected-hover-icon-color: #00695c;--mdc-checkbox-selected-icon-color: #00695c;--mdc-checkbox-selected-pressed-icon-color: #00695c;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #00695c;--mdc-checkbox-selected-hover-state-layer-color: #00695c;--mdc-checkbox-selected-pressed-state-layer-color: #00695c;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.teal.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #00695c;--mat-text-button-state-layer-color: #00695c;--mat-text-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #00695c;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #00695c;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #00695c;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #00695c;--mat-outlined-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #00695c;--mat-icon-button-state-layer-color: #00695c;--mat-icon-button-ripple-color: rgba(0, 105, 92, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.teal.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #00695c;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #00695c;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.teal.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.teal.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.teal.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.teal.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.teal.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.teal.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.teal.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.teal.night .mat-icon.mat-primary{--mat-icon-color: #00695c}.rtl-container.teal.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.teal.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.teal.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.teal.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.teal.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #00695c;--mat-toolbar-container-text-color: white}.rtl-container.teal.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.teal.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.teal.night .mat-primary{color:#64ffda!important}.rtl-container.teal.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.teal.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.teal.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.teal.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.teal.night .bg-primary{background-color:#00695c;color:#fff}.rtl-container.teal.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#64ffda}.rtl-container.teal.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.teal.night .currency-icon path,.rtl-container.teal.night .currency-icon polygon{fill:#fff}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.teal.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.teal.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#64ffda}.rtl-container.teal.night .cc-data-block .cc-data-title{color:#64ffda}.rtl-container.teal.night .mat-stroked-button.mat-primary{border-color:#64ffda;color:#64ffda}.rtl-container.teal.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.teal.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.teal.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.teal.night .active-link,.rtl-container.teal.night .active-link .fa-icon-small,.rtl-container.teal.night .mat-select-panel .mat-option.mat-active,.rtl-container.teal.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#64ffda;font-weight:500;cursor:pointer;fill:#64ffda}.rtl-container.teal.night .help-expansion .mat-expansion-panel-header,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.teal.night .help-expansion .mat-expansion-indicator:after,.rtl-container.teal.night .help-expansion .mat-expansion-panel-content,.rtl-container.teal.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.teal.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.teal.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.teal.night .mat-expansion-panel,.rtl-container.teal.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.teal.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.teal.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.teal.night .mdc-data-table__header-cell,.rtl-container.teal.night .mat-mdc-paginator,.rtl-container.teal.night .mat-mdc-form-field-focus-overlay,.rtl-container.teal.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.teal.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.teal.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#64ffda}.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.teal.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.teal.night .svg-donation{opacity:1!important}.rtl-container.teal.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#64ffda!important}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#64ffda!important}.rtl-container.teal.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#64ffda}.rtl-container.teal.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#00695c}.rtl-container.teal.night a{color:#64ffda!important;cursor:pointer}.rtl-container.teal.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.teal.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.teal.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.teal.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.teal.night .mat-mdc-select-placeholder,.rtl-container.teal.night .mat-mdc-select-value,.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#64ffda}.rtl-container.teal.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.teal.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.teal.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.teal.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#64ffda}.rtl-container.teal.night .mat-tree-node:hover,.rtl-container.teal.night .mat-nested-tree-node-parent:hover,.rtl-container.teal.night .mat-select-panel .mat-option:hover,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#64ffda;cursor:pointer;background:#ffffff0f}.rtl-container.teal.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.teal.night .mat-tree-node:hover .mat-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#64ffda}.rtl-container.teal.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.teal.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.teal.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.teal.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#64ffda}.rtl-container.teal.night .mat-tree-node:hover .boltz-icon,.rtl-container.teal.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.teal.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.teal.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.teal.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#64ffda}.rtl-container.teal.night .mat-tree-node .sidenav-img,.rtl-container.teal.night .mat-nested-tree-node .sidenav-img,.rtl-container.teal.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.teal.night .page-title-container .page-title-img,.rtl-container.teal.night svg.top-icon-small{fill:#fff}.rtl-container.teal.night .selected-color{border-color:#4db6ac}.rtl-container.teal.night .mat-progress-bar-fill:after{background-color:#00897b}.rtl-container.teal.night .chart-legend .legend-label:hover,.rtl-container.teal.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.teal.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.teal.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#64ffda}.rtl-container.teal.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.teal.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#64ffda}.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#64ffda}.rtl-container.teal.night .mat-select-panel{background-color:#121212}.rtl-container.teal.night .mat-tree{background:#121212}.rtl-container.teal.night h4{color:#64ffda}.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.teal.night .dashboard-info-title{color:#64ffda}.rtl-container.teal.night .dashboard-info-value,.rtl-container.teal.night .dashboard-capacity-header{color:#fff}.rtl-container.teal.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.teal.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.teal.night .color-primary{color:#64ffda!important}.rtl-container.teal.night .dot-primary{background-color:#64ffda!important}.rtl-container.teal.night .dot-primary-lighter{background-color:#00695c!important}.rtl-container.teal.night .mat-stepper-vertical{background-color:#121212}.rtl-container.teal.night .spinner-container h2{color:#64ffda}.rtl-container.teal.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.teal.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.teal.night svg .boltz-icon-fill{fill:#fff}.rtl-container.teal.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.teal.night svg .stroke-color-primary-lighter{stroke:#4db6ac}.rtl-container.teal.night svg .stroke-color-primary{stroke:#00695c}.rtl-container.teal.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.teal.night svg .fill-color-0{fill:#171717}.rtl-container.teal.night svg .fill-color-1{fill:#232323}.rtl-container.teal.night svg .fill-color-2{fill:#222}.rtl-container.teal.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.teal.night svg .fill-color-4{fill:#383838}.rtl-container.teal.night svg .fill-color-5{fill:#555}.rtl-container.teal.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.teal.night svg .fill-color-7{fill:#202020}.rtl-container.teal.night svg .fill-color-8{fill:#242424}.rtl-container.teal.night svg .fill-color-9{fill:#262626}.rtl-container.teal.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.teal.night svg .fill-color-11{fill:#171717}.rtl-container.teal.night svg .fill-color-12{fill:#ccc}.rtl-container.teal.night svg .fill-color-13{fill:#adadad}.rtl-container.teal.night svg .fill-color-14{fill:#ababab}.rtl-container.teal.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.teal.night svg .fill-color-16{fill:#707070}.rtl-container.teal.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.teal.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.teal.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.teal.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.teal.night svg .fill-color-21{fill:#cacaca}.rtl-container.teal.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.teal.night svg .fill-color-23{fill:#777}.rtl-container.teal.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.teal.night svg .fill-color-25{fill:#252525}.rtl-container.teal.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.teal.night svg .fill-color-27{fill:#000}.rtl-container.teal.night svg .fill-color-28{fill:#313131}.rtl-container.teal.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.teal.night svg .fill-color-30{fill:#fff}.rtl-container.teal.night svg .fill-color-31{fill:#00695c}.rtl-container.teal.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.teal.night svg .fill-color-primary{fill:#00695c}.rtl-container.teal.night svg .fill-color-primary-lighter{fill:#4db6ac}.rtl-container.teal.night svg .fill-color-primary-darker{fill:#64ffda}.rtl-container.teal.night .mat-select-value,.rtl-container.teal.night .mat-select-arrow{color:#fff}.rtl-container.teal.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.teal.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.teal.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.teal.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.teal.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.teal.night .mat-button.mat-primary,.rtl-container.teal.night .mat-icon-button.mat-primary,.rtl-container.teal.night .mat-stroked-button.mat-primary{color:#64ffda}.rtl-container.teal.night tr.alert.alert-warn .mat-cell,.rtl-container.teal.night tr.alert.alert-warn .mat-header-cell,.rtl-container.teal.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.teal.night .material-icons.info-icon{font-size:100%;color:#64ffda}.rtl-container.teal.night .material-icons.info-icon.info-icon-primary{color:#64ffda}.rtl-container.teal.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.teal.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#64ffda}.rtl-container.teal.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#00695c}.rtl-container.teal.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.teal.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#64ffda}.rtl-container.teal.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.teal.night .mat-progress-bar-buffer{background-color:#b2dfdb}.rtl-container.teal.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.teal.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.teal.night .foreground.mat-progress-spinner circle,.rtl-container.teal.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.teal.night .mat-toolbar-row,.rtl-container.teal.night .mat-toolbar-single-row{height:4rem}.rtl-container.teal.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.teal.night a{color:#00695c}.rtl-container.teal.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.teal.night .h-active-link{border-bottom:2px solid white}.rtl-container.teal.night .mat-icon-36{color:#ffffffb3}.rtl-container.teal.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.teal.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.teal.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.teal.night .genseed-message{width:10%;color:#00695c}.rtl-container.teal.night .border-primary{border:1px solid #00695c}.rtl-container.teal.night .border-accent{border:1px solid #eeeeee}.rtl-container.teal.night .border-warn{border:1px solid #ff343b}.rtl-container.teal.night .material-icons.primary{color:#00695c}.rtl-container.teal.night .material-icons.accent{color:#eee}.rtl-container.teal.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.rtl-container.teal.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.teal.night .row-disabled{background-color:gray}.rtl-container.teal.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.teal.night .mat-mdc-card-content,.rtl-container.teal.night .mat-mdc-card-subtitle,.rtl-container.teal.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.teal.night .mat-menu-panel{min-width:4rem}.rtl-container.teal.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.teal.night .horizontal-button:hover{background:#4db6ac;color:#eee}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#00695c}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.teal.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.teal.night .mat-button,.rtl-container.teal.night .mat-icon-button,.rtl-container.teal.night .mat-stroked-button,.rtl-container.teal.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.teal.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.teal.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.teal.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.teal.night .mat-cell,.rtl-container.teal.night .mat-header-cell,.rtl-container.teal.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.teal.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.teal.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#00695c}.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.teal.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.teal.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#00695c;opacity:1}.rtl-container.teal.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.teal.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.teal.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.teal.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.teal.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.teal.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.teal.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.teal.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.teal.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.teal.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.teal.night .more-button{color:#fff}.rtl-container.teal.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.teal.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.teal.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.teal.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.teal.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.teal.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.teal.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.teal.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.teal.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.teal.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.teal.night .tab-badge .mat-badge-content.mat-badge-active{background:#00695c}.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.teal.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.teal.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.teal.night .rtl-select-overlay{min-width:7rem}}.rtl-container.teal.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.teal.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.teal.night .table-actions-button{min-width:8rem}.rtl-container.teal.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.teal.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.teal.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.teal.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#80cbc4!important}.rtl-container.teal.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#00897b!important}.rtl-container.teal.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.teal.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.teal.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.teal.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.teal.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.teal.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.teal.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.teal.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.teal.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.teal.night .color-warn{color:#ff343b}.rtl-container.teal.night .fill-warn{fill:#ff343b}.rtl-container.teal.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.teal.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.teal.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.teal.night .alert.alert-info a{color:#004085}.rtl-container.teal.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.teal.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.teal.night .alert.alert-warn a{color:#856404}.rtl-container.teal.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.teal.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.teal.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.teal.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.teal.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.teal.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.teal.night .failed-status{color:#ff343b}.rtl-container.teal.night .material-icons.icon-failed-status{fill:#ff343b;height:1.25rem}.rtl-container.teal.night .svg-fill-primary{fill:#00695c}.rtl-container.teal.night .svg-fill-primary-lighter{fill:#4db6ac}.rtl-container.teal.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.teal.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.teal.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.teal.night .dashboard-card-content .underline,.rtl-container.teal.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.teal.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#00695c}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#00695c}.rtl-container.teal.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.teal.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#00695c}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon{color:#00695c}.rtl-container.teal.night .mat-mdc-form-field-hint .currency-icon path{fill:#00695c}.rtl-container.teal.night .fa-icon-primary{color:#00695c}.rtl-container.teal.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.teal.night ngx-charts-bar-vertical text,.rtl-container.teal.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.teal.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.teal.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.teal.night .mat-paginator-container{padding:0}.rtl-container.teal.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.teal.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.teal.night .invoice-animation-div .particles-circle{position:absolute;background-color:#00695c;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #00695c;background-color:transparent}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.teal.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.teal.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.teal.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.teal.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.teal.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.pink.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #e91e63;--mdc-filled-text-field-focus-active-indicator-color: #e91e63;--mdc-filled-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #e91e63;--mdc-outlined-text-field-focus-outline-color: #e91e63;--mdc-outlined-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(233, 30, 99, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(233, 30, 99, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #d81b60;--mdc-switch-selected-handle-color: #d81b60;--mdc-switch-selected-hover-state-layer-color: #d81b60;--mdc-switch-selected-pressed-state-layer-color: #d81b60;--mdc-switch-selected-focus-handle-color: #880e4f;--mdc-switch-selected-hover-handle-color: #880e4f;--mdc-switch-selected-pressed-handle-color: #880e4f;--mdc-switch-selected-focus-track-color: #f06292;--mdc-switch-selected-hover-track-color: #f06292;--mdc-switch-selected-pressed-track-color: #f06292;--mdc-switch-selected-track-color: #f06292;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #e91e63;--mdc-slider-focus-handle-color: #e91e63;--mdc-slider-hover-handle-color: #e91e63;--mdc-slider-active-track-color: #e91e63;--mdc-slider-inactive-track-color: #e91e63;--mdc-slider-with-tick-marks-inactive-container-color: #e91e63;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #e91e63;--mat-slider-hover-state-layer-color: rgba(233, 30, 99, .05);--mat-slider-focus-state-layer-color: rgba(233, 30, 99, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #e91e63;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #e91e63;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(233, 30, 99, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(233, 30, 99, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.pink.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.pink.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #e91e63;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #e91e63;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.pink.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.pink.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.pink.day .mat-elevation-z0,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.day .mat-elevation-z1,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z2,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z3,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.day .mat-elevation-z4,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-elevation-z5,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.pink.day .mat-elevation-z6,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.day .mat-elevation-z7,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.pink.day .mat-elevation-z8,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.day .mat-elevation-z9,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.pink.day .mat-elevation-z10,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z11,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.pink.day .mat-elevation-z12,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z13,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z14,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.pink.day .mat-elevation-z15,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z16,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z17,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.pink.day .mat-elevation-z18,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.pink.day .mat-elevation-z19,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.pink.day .mat-elevation-z20,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z21,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z22,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.pink.day .mat-elevation-z23,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.pink.day .mat-elevation-z24,.rtl-container.pink.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #e91e63;--mdc-linear-progress-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.pink.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.pink.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.pink.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.pink.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.pink.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #e91e63;--mdc-chip-elevated-selected-container-color: #e91e63;--mdc-chip-elevated-disabled-container-color: #e91e63;--mdc-chip-flat-disabled-selected-container-color: #e91e63;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.pink.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.pink.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.pink.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.pink.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.pink.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.pink.day .mdc-list-item__start,.rtl-container.pink.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63}.rtl-container.pink.day .mat-accent .mdc-list-item__start,.rtl-container.pink.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.pink.day .mat-warn .mdc-list-item__start,.rtl-container.pink.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.pink.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#e91e63}.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.pink.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.pink.day .mat-mdc-tab-group,.rtl-container.pink.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #e91e63;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #e91e63;--mat-tab-header-active-ripple-color: #e91e63;--mat-tab-header-inactive-ripple-color: #e91e63;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #e91e63;--mat-tab-header-active-hover-label-text-color: #e91e63;--mat-tab-header-active-focus-indicator-color: #e91e63;--mat-tab-header-active-hover-indicator-color: #e91e63}.rtl-container.pink.day .mat-mdc-tab-group.mat-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.pink.day .mat-mdc-tab-group.mat-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #e91e63;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.pink.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.pink.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #e91e63;--mat-text-button-state-layer-color: #e91e63;--mat-text-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #e91e63;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #e91e63;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #e91e63;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #e91e63;--mat-outlined-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.pink.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #e91e63;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.pink.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.pink.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.pink.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.pink.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.pink.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.pink.day .mat-icon.mat-primary{--mat-icon-color: #e91e63}.rtl-container.pink.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.pink.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.pink.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #e91e63;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.pink.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.pink.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.pink.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.pink.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.pink.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.pink.day .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.pink.day .page-title,.rtl-container.pink.day .mat-mdc-select-value,.rtl-container.pink.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.pink.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.pink.day .help-expansion .mat-expansion-panel-header,.rtl-container.pink.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.pink.day .help-expansion .mat-expansion-indicator:after,.rtl-container.pink.day .help-expansion .mat-expansion-panel-content,.rtl-container.pink.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#e91e63}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.pink.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.pink.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#e91e63}.rtl-container.pink.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.pink.day .mat-tree-node:hover,.rtl-container.pink.day .mat-nested-tree-node-parent:hover,.rtl-container.pink.day .mat-select-panel .mat-option:hover,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#e91e63;cursor:pointer}.rtl-container.pink.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.day .mat-tree-node:hover .mat-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#e91e63}.rtl-container.pink.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#e91e63}.rtl-container.pink.day .spinner-container h2{color:#fff}.rtl-container.pink.day .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.pink.day .mat-form-field-suffix{color:#0000008a}.rtl-container.pink.day .mat-stroked-button.mat-primary{border-color:#e91e63}.rtl-container.pink.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.pink.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.pink.day .selected-color{border-color:#f06292}.rtl-container.pink.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.pink.day table.mat-mdc-table thead tr th,.rtl-container.pink.day .page-title-container,.rtl-container.pink.day .page-sub-title-container{color:#0000008a}.rtl-container.pink.day .page-title-container .page-title-img,.rtl-container.pink.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.pink.day .page-title-container .mat-input-element,.rtl-container.pink.day .page-title-container .mat-radio-label-content,.rtl-container.pink.day .page-title-container .theme-name,.rtl-container.pink.day .page-sub-title-container .mat-input-element,.rtl-container.pink.day .page-sub-title-container .mat-radio-label-content,.rtl-container.pink.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.pink.day .cc-data-block .cc-data-title{color:#e91e63}.rtl-container.pink.day .active-link,.rtl-container.pink.day .active-link .fa-icon-small{color:#e91e63;font-weight:500;cursor:pointer;fill:#e91e63}.rtl-container.pink.day .mat-tree-node:hover,.rtl-container.pink.day .mat-nested-tree-node-parent:hover,.rtl-container.pink.day .mat-select-panel .mat-option:hover,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#e91e63;cursor:pointer;background:#0000000a}.rtl-container.pink.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.day .mat-tree-node:hover .mat-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#e91e63}.rtl-container.pink.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#e91e63}.rtl-container.pink.day .mat-tree-node .sidenav-img,.rtl-container.pink.day .mat-nested-tree-node .sidenav-img,.rtl-container.pink.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.pink.day .page-title-container .page-title-img,.rtl-container.pink.day svg.top-icon-small{fill:#000000de}.rtl-container.pink.day .mat-progress-bar-fill:after{background-color:#880e4f}.rtl-container.pink.day .modal-qr-code-container{background:#0000001f}.rtl-container.pink.day .mdc-tab__text-label,.rtl-container.pink.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.pink.day .mat-mdc-card,.rtl-container.pink.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.pink.day .dashboard-info-title{color:#e91e63}.rtl-container.pink.day .dashboard-capacity-header,.rtl-container.pink.day .dashboard-info-value{color:#0000008a}.rtl-container.pink.day .color-primary{color:#e91e63!important}.rtl-container.pink.day .dot-primary{background-color:#e91e63!important}.rtl-container.pink.day .dot-primary-lighter{background-color:#f06292!important}.rtl-container.pink.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .mat-mdc-form-field-hint{color:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.pink.day .mat-mdc-form-field-hint fa-icon svg path{fill:#e91e63}.rtl-container.pink.day .currency-icon path,.rtl-container.pink.day .currency-icon polygon{fill:#0000008a}.rtl-container.pink.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.pink.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.pink.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.day svg .stroke-color-primary-lighter{stroke:#f06292}.rtl-container.pink.day svg .stroke-color-primary{stroke:#e91e63}.rtl-container.pink.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.pink.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-1{fill:#fff}.rtl-container.pink.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.pink.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-6{fill:#fff}.rtl-container.pink.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-9{fill:#fff}.rtl-container.pink.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.pink.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.pink.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-16{fill:#404040}.rtl-container.pink.day svg .fill-color-17{fill:#404040}.rtl-container.pink.day svg .fill-color-18{fill:#000}.rtl-container.pink.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.pink.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.pink.day svg .fill-color-24{fill:#000}.rtl-container.pink.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.pink.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.pink.day svg .fill-color-27{fill:#000}.rtl-container.pink.day svg .fill-color-28{fill:#313131}.rtl-container.pink.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.pink.day svg .fill-color-30{fill:#fff}.rtl-container.pink.day svg .fill-color-31{fill:#e91e63}.rtl-container.pink.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.pink.day svg .fill-color-primary{fill:#e91e63}.rtl-container.pink.day svg .fill-color-primary-lighter{fill:#f06292}.rtl-container.pink.day svg .fill-color-primary-darker{fill:#e91e63}.rtl-container.pink.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.pink.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.pink.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#e91e63}.rtl-container.pink.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.pink.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.pink.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.pink.day .material-icons.mat-icon-no-color,.rtl-container.pink.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.pink.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.pink.day .material-icons.info-icon.info-icon-primary{color:#e91e63}.rtl-container.pink.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.pink.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.pink.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#e91e63}.rtl-container.pink.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#880e4f}.rtl-container.pink.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.pink.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#f48fb1}.rtl-container.pink.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.pink.day .mat-progress-bar-buffer{background-color:#f8bbd0}.rtl-container.pink.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.pink.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.pink.day .foreground.mat-progress-spinner circle,.rtl-container.pink.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.pink.day .mat-toolbar-row,.rtl-container.pink.day .mat-toolbar-single-row{height:4rem}.rtl-container.pink.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day a{color:#e91e63}.rtl-container.pink.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.pink.day .h-active-link{border-bottom:2px solid white}.rtl-container.pink.day .mat-icon-36{color:#0000008a}.rtl-container.pink.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.pink.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.pink.day .genseed-message{width:10%;color:#e91e63}.rtl-container.pink.day .border-primary{border:1px solid #e91e63}.rtl-container.pink.day .border-accent{border:1px solid #424242}.rtl-container.pink.day .border-warn{border:1px solid #b00020}.rtl-container.pink.day .material-icons.primary{color:#e91e63}.rtl-container.pink.day .material-icons.accent{color:#424242}.rtl-container.pink.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.pink.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.pink.day .row-disabled{background-color:gray}.rtl-container.pink.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.pink.day .mat-mdc-card-content,.rtl-container.pink.day .mat-mdc-card-subtitle,.rtl-container.pink.day .mat-mdc-card-title{color:#0000008a}.rtl-container.pink.day .mat-menu-panel{min-width:4rem}.rtl-container.pink.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.pink.day .horizontal-button:hover{background:#f06292;color:#424242}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#e91e63}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.pink.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.pink.day .mat-button,.rtl-container.pink.day .mat-icon-button,.rtl-container.pink.day .mat-stroked-button,.rtl-container.pink.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.pink.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.pink.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.pink.day .cc-data-block .cc-data-value{color:#000}.rtl-container.pink.day .mat-cell,.rtl-container.pink.day .mat-header-cell,.rtl-container.pink.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.pink.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.pink.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#e91e63}.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.pink.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#e91e63;opacity:1}.rtl-container.pink.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.pink.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.pink.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.pink.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.pink.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.pink.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.pink.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.pink.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.pink.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.pink.day .more-button{color:#000}.rtl-container.pink.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.pink.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.pink.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.pink.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.pink.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.pink.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.pink.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.pink.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.pink.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.pink.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.pink.day .tab-badge .mat-badge-content.mat-badge-active{background:#e91e63}.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.pink.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.day .rtl-select-overlay{min-width:7rem}}.rtl-container.pink.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.pink.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.pink.day .table-actions-button{min-width:8rem}.rtl-container.pink.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.pink.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#f48fb1!important}.rtl-container.pink.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#d81b60!important}.rtl-container.pink.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.pink.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.pink.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.pink.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.pink.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.pink.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.pink.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.pink.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.pink.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.pink.day .color-warn{color:#b00020}.rtl-container.pink.day .fill-warn{fill:#b00020}.rtl-container.pink.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.pink.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.pink.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.pink.day .alert.alert-info a{color:#004085}.rtl-container.pink.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.pink.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.pink.day .alert.alert-warn a{color:#856404}.rtl-container.pink.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.pink.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.pink.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.pink.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.pink.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.pink.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.pink.day .failed-status{color:#b00020}.rtl-container.pink.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.pink.day .svg-fill-primary{fill:#e91e63}.rtl-container.pink.day .svg-fill-primary-lighter{fill:#f06292}.rtl-container.pink.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.pink.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.pink.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.pink.day .dashboard-card-content .underline,.rtl-container.pink.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.pink.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#e91e63}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#e91e63}.rtl-container.pink.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.pink.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon{color:#e91e63}.rtl-container.pink.day .mat-mdc-form-field-hint .currency-icon path{fill:#e91e63}.rtl-container.pink.day .fa-icon-primary{color:#e91e63}.rtl-container.pink.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.day ngx-charts-bar-vertical text,.rtl-container.pink.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.pink.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.pink.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.pink.day .mat-paginator-container{padding:0}.rtl-container.pink.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.pink.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.pink.day .invoice-animation-div .particles-circle{position:absolute;background-color:#e91e63;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #e91e63;background-color:transparent}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.pink.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.pink.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.pink.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.pink.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.pink.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.pink.night{--mat-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #e91e63;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #e91e63;--mdc-filled-text-field-focus-active-indicator-color: #e91e63;--mdc-filled-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #e91e63;--mdc-outlined-text-field-focus-outline-color: #e91e63;--mdc-outlined-text-field-focus-label-text-color: rgba(233, 30, 99, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(233, 30, 99, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(233, 30, 99, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #f06292;--mdc-switch-selected-handle-color: #f06292;--mdc-switch-selected-hover-state-layer-color: #f06292;--mdc-switch-selected-pressed-state-layer-color: #f06292;--mdc-switch-selected-focus-handle-color: #f48fb1;--mdc-switch-selected-hover-handle-color: #f48fb1;--mdc-switch-selected-pressed-handle-color: #f48fb1;--mdc-switch-selected-focus-track-color: #d81b60;--mdc-switch-selected-hover-track-color: #d81b60;--mdc-switch-selected-pressed-track-color: #d81b60;--mdc-switch-selected-track-color: #d81b60;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #e91e63;--mdc-slider-focus-handle-color: #e91e63;--mdc-slider-hover-handle-color: #e91e63;--mdc-slider-active-track-color: #e91e63;--mdc-slider-inactive-track-color: #e91e63;--mdc-slider-with-tick-marks-inactive-container-color: #e91e63;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #e91e63;--mat-slider-hover-state-layer-color: rgba(233, 30, 99, .05);--mat-slider-focus-state-layer-color: rgba(233, 30, 99, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #e91e63;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #e91e63;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #e91e63;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(233, 30, 99, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(233, 30, 99, .3);--mat-datepicker-toggle-active-state-icon-color: #e91e63;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(233, 30, 99, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #e91e63;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #e91e63;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #e91e63;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.pink.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.pink.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.pink.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #e91e63;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #e91e63;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.pink.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.pink.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.pink.night .mat-elevation-z0,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.pink.night .mat-elevation-z1,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z2,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z3,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.pink.night .mat-elevation-z4,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-elevation-z5,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.pink.night .mat-elevation-z6,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.pink.night .mat-elevation-z7,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.pink.night .mat-elevation-z8,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.pink.night .mat-elevation-z9,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.pink.night .mat-elevation-z10,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z11,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.pink.night .mat-elevation-z12,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z13,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z14,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.pink.night .mat-elevation-z15,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z16,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z17,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.pink.night .mat-elevation-z18,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.pink.night .mat-elevation-z19,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.pink.night .mat-elevation-z20,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z21,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z22,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.pink.night .mat-elevation-z23,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.pink.night .mat-elevation-z24,.rtl-container.pink.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.pink.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #e91e63;--mdc-linear-progress-track-color: rgba(233, 30, 99, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.pink.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.pink.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.pink.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #e91e63;--mdc-chip-elevated-selected-container-color: #e91e63;--mdc-chip-elevated-disabled-container-color: #e91e63;--mdc-chip-flat-disabled-selected-container-color: #e91e63;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.pink.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.pink.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.pink.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.pink.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.pink.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #e91e63;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.pink.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.pink.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.pink.night .mdc-list-item__start,.rtl-container.pink.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #e91e63;--mdc-radio-selected-hover-icon-color: #e91e63;--mdc-radio-selected-icon-color: #e91e63;--mdc-radio-selected-pressed-icon-color: #e91e63}.rtl-container.pink.night .mat-accent .mdc-list-item__start,.rtl-container.pink.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.pink.night .mat-warn .mdc-list-item__start,.rtl-container.pink.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.pink.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#e91e63}.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.pink.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.pink.night .mat-mdc-tab-group,.rtl-container.pink.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #e91e63;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #e91e63;--mat-tab-header-active-ripple-color: #e91e63;--mat-tab-header-inactive-ripple-color: #e91e63;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #e91e63;--mat-tab-header-active-hover-label-text-color: #e91e63;--mat-tab-header-active-focus-indicator-color: #e91e63;--mat-tab-header-active-hover-indicator-color: #e91e63}.rtl-container.pink.night .mat-mdc-tab-group.mat-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.pink.night .mat-mdc-tab-group.mat-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #e91e63;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.pink.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.pink.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #e91e63;--mdc-checkbox-selected-hover-icon-color: #e91e63;--mdc-checkbox-selected-icon-color: #e91e63;--mdc-checkbox-selected-pressed-icon-color: #e91e63;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #e91e63;--mdc-checkbox-selected-hover-state-layer-color: #e91e63;--mdc-checkbox-selected-pressed-state-layer-color: #e91e63;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.pink.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #e91e63;--mat-text-button-state-layer-color: #e91e63;--mat-text-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #e91e63;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #e91e63;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #e91e63;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #e91e63;--mat-outlined-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #e91e63;--mat-icon-button-state-layer-color: #e91e63;--mat-icon-button-ripple-color: rgba(233, 30, 99, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.pink.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #e91e63;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #e91e63;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.pink.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.pink.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.pink.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.pink.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.pink.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.pink.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.pink.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.pink.night .mat-icon.mat-primary{--mat-icon-color: #e91e63}.rtl-container.pink.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.pink.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.pink.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.pink.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.pink.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #e91e63;--mat-toolbar-container-text-color: white}.rtl-container.pink.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.pink.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.pink.night .mat-primary{color:#ff4081!important}.rtl-container.pink.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.pink.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.pink.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.pink.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.pink.night .bg-primary{background-color:#e91e63;color:#fff}.rtl-container.pink.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#ff4081}.rtl-container.pink.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.pink.night .currency-icon path,.rtl-container.pink.night .currency-icon polygon{fill:#fff}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.pink.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.pink.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#ff4081}.rtl-container.pink.night .cc-data-block .cc-data-title{color:#ff4081}.rtl-container.pink.night .mat-stroked-button.mat-primary{border-color:#ff4081;color:#ff4081}.rtl-container.pink.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.pink.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.pink.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.pink.night .active-link,.rtl-container.pink.night .active-link .fa-icon-small,.rtl-container.pink.night .mat-select-panel .mat-option.mat-active,.rtl-container.pink.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#ff4081;font-weight:500;cursor:pointer;fill:#ff4081}.rtl-container.pink.night .help-expansion .mat-expansion-panel-header,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.pink.night .help-expansion .mat-expansion-indicator:after,.rtl-container.pink.night .help-expansion .mat-expansion-panel-content,.rtl-container.pink.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.pink.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.pink.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.pink.night .mat-expansion-panel,.rtl-container.pink.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.pink.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.pink.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.pink.night .mdc-data-table__header-cell,.rtl-container.pink.night .mat-mdc-paginator,.rtl-container.pink.night .mat-mdc-form-field-focus-overlay,.rtl-container.pink.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.pink.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.pink.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#ff4081}.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.pink.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.pink.night .svg-donation{opacity:1!important}.rtl-container.pink.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#ff4081!important}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#ff4081!important}.rtl-container.pink.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#ff4081}.rtl-container.pink.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#e91e63}.rtl-container.pink.night a{color:#ff4081!important;cursor:pointer}.rtl-container.pink.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.pink.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.pink.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.pink.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.pink.night .mat-mdc-select-placeholder,.rtl-container.pink.night .mat-mdc-select-value,.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#ff4081}.rtl-container.pink.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.pink.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.pink.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.pink.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#ff4081}.rtl-container.pink.night .mat-tree-node:hover,.rtl-container.pink.night .mat-nested-tree-node-parent:hover,.rtl-container.pink.night .mat-select-panel .mat-option:hover,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#ff4081;cursor:pointer;background:#ffffff0f}.rtl-container.pink.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.pink.night .mat-tree-node:hover .mat-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#ff4081}.rtl-container.pink.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.pink.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.pink.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.pink.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#ff4081}.rtl-container.pink.night .mat-tree-node:hover .boltz-icon,.rtl-container.pink.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.pink.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.pink.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.pink.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#ff4081}.rtl-container.pink.night .mat-tree-node .sidenav-img,.rtl-container.pink.night .mat-nested-tree-node .sidenav-img,.rtl-container.pink.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.pink.night .page-title-container .page-title-img,.rtl-container.pink.night svg.top-icon-small{fill:#fff}.rtl-container.pink.night .selected-color{border-color:#f06292}.rtl-container.pink.night .mat-progress-bar-fill:after{background-color:#d81b60}.rtl-container.pink.night .chart-legend .legend-label:hover,.rtl-container.pink.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.pink.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.pink.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#ff4081}.rtl-container.pink.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.pink.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#ff4081}.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#ff4081}.rtl-container.pink.night .mat-select-panel{background-color:#121212}.rtl-container.pink.night .mat-tree{background:#121212}.rtl-container.pink.night h4{color:#ff4081}.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.pink.night .dashboard-info-title{color:#ff4081}.rtl-container.pink.night .dashboard-info-value,.rtl-container.pink.night .dashboard-capacity-header{color:#fff}.rtl-container.pink.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.pink.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.pink.night .color-primary{color:#ff4081!important}.rtl-container.pink.night .dot-primary{background-color:#ff4081!important}.rtl-container.pink.night .dot-primary-lighter{background-color:#e91e63!important}.rtl-container.pink.night .mat-stepper-vertical{background-color:#121212}.rtl-container.pink.night .spinner-container h2{color:#ff4081}.rtl-container.pink.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.pink.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.pink.night svg .boltz-icon-fill{fill:#fff}.rtl-container.pink.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.pink.night svg .stroke-color-primary-lighter{stroke:#f06292}.rtl-container.pink.night svg .stroke-color-primary{stroke:#e91e63}.rtl-container.pink.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.pink.night svg .fill-color-0{fill:#171717}.rtl-container.pink.night svg .fill-color-1{fill:#232323}.rtl-container.pink.night svg .fill-color-2{fill:#222}.rtl-container.pink.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.pink.night svg .fill-color-4{fill:#383838}.rtl-container.pink.night svg .fill-color-5{fill:#555}.rtl-container.pink.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.pink.night svg .fill-color-7{fill:#202020}.rtl-container.pink.night svg .fill-color-8{fill:#242424}.rtl-container.pink.night svg .fill-color-9{fill:#262626}.rtl-container.pink.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.pink.night svg .fill-color-11{fill:#171717}.rtl-container.pink.night svg .fill-color-12{fill:#ccc}.rtl-container.pink.night svg .fill-color-13{fill:#adadad}.rtl-container.pink.night svg .fill-color-14{fill:#ababab}.rtl-container.pink.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.pink.night svg .fill-color-16{fill:#707070}.rtl-container.pink.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.pink.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.pink.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.pink.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.pink.night svg .fill-color-21{fill:#cacaca}.rtl-container.pink.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.pink.night svg .fill-color-23{fill:#777}.rtl-container.pink.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.pink.night svg .fill-color-25{fill:#252525}.rtl-container.pink.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.pink.night svg .fill-color-27{fill:#000}.rtl-container.pink.night svg .fill-color-28{fill:#313131}.rtl-container.pink.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.pink.night svg .fill-color-30{fill:#fff}.rtl-container.pink.night svg .fill-color-31{fill:#e91e63}.rtl-container.pink.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.pink.night svg .fill-color-primary{fill:#e91e63}.rtl-container.pink.night svg .fill-color-primary-lighter{fill:#f06292}.rtl-container.pink.night svg .fill-color-primary-darker{fill:#ff4081}.rtl-container.pink.night .mat-select-value,.rtl-container.pink.night .mat-select-arrow{color:#fff}.rtl-container.pink.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.pink.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.pink.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.pink.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.pink.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.pink.night .mat-button.mat-primary,.rtl-container.pink.night .mat-icon-button.mat-primary,.rtl-container.pink.night .mat-stroked-button.mat-primary{color:#ff4081}.rtl-container.pink.night tr.alert.alert-warn .mat-cell,.rtl-container.pink.night tr.alert.alert-warn .mat-header-cell,.rtl-container.pink.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.pink.night .material-icons.info-icon{font-size:100%;color:#ff4081}.rtl-container.pink.night .material-icons.info-icon.info-icon-primary{color:#ff4081}.rtl-container.pink.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.pink.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#ff4081}.rtl-container.pink.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#ad1457}.rtl-container.pink.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.pink.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#ff4081}.rtl-container.pink.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.pink.night .mat-progress-bar-buffer{background-color:#f8bbd0}.rtl-container.pink.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.pink.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.pink.night .foreground.mat-progress-spinner circle,.rtl-container.pink.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.pink.night .mat-toolbar-row,.rtl-container.pink.night .mat-toolbar-single-row{height:4rem}.rtl-container.pink.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.pink.night a{color:#e91e63}.rtl-container.pink.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.pink.night .h-active-link{border-bottom:2px solid white}.rtl-container.pink.night .mat-icon-36{color:#ffffffb3}.rtl-container.pink.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.pink.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.pink.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.pink.night .genseed-message{width:10%;color:#e91e63}.rtl-container.pink.night .border-primary{border:1px solid #e91e63}.rtl-container.pink.night .border-accent{border:1px solid #eeeeee}.rtl-container.pink.night .border-warn{border:1px solid #ff343b}.rtl-container.pink.night .material-icons.primary{color:#e91e63}.rtl-container.pink.night .material-icons.accent{color:#eee}.rtl-container.pink.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.rtl-container.pink.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.pink.night .row-disabled{background-color:gray}.rtl-container.pink.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.pink.night .mat-mdc-card-content,.rtl-container.pink.night .mat-mdc-card-subtitle,.rtl-container.pink.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.pink.night .mat-menu-panel{min-width:4rem}.rtl-container.pink.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.pink.night .horizontal-button:hover{background:#f06292;color:#eee}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#e91e63}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.pink.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.pink.night .mat-button,.rtl-container.pink.night .mat-icon-button,.rtl-container.pink.night .mat-stroked-button,.rtl-container.pink.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.pink.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.pink.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.pink.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.pink.night .mat-cell,.rtl-container.pink.night .mat-header-cell,.rtl-container.pink.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.pink.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.pink.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#e91e63}.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.pink.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.pink.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#e91e63;opacity:1}.rtl-container.pink.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.pink.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.pink.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.pink.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.pink.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.pink.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.pink.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.pink.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.pink.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.pink.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.pink.night .more-button{color:#fff}.rtl-container.pink.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.pink.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.pink.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.pink.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.pink.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.pink.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.pink.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.pink.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.pink.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.pink.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.pink.night .tab-badge .mat-badge-content.mat-badge-active{background:#e91e63}.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.pink.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.pink.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.pink.night .rtl-select-overlay{min-width:7rem}}.rtl-container.pink.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.pink.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.pink.night .table-actions-button{min-width:8rem}.rtl-container.pink.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.pink.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.pink.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.pink.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#f48fb1!important}.rtl-container.pink.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#d81b60!important}.rtl-container.pink.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.pink.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.pink.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.pink.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.pink.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.pink.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.pink.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.pink.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.pink.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.pink.night .color-warn{color:#ff343b}.rtl-container.pink.night .fill-warn{fill:#ff343b}.rtl-container.pink.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.pink.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.pink.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.pink.night .alert.alert-info a{color:#004085}.rtl-container.pink.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.pink.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.pink.night .alert.alert-warn a{color:#856404}.rtl-container.pink.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.pink.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.pink.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.pink.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.pink.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.pink.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.pink.night .failed-status{color:#ff343b}.rtl-container.pink.night .material-icons.icon-failed-status{fill:#ff343b;height:1.25rem}.rtl-container.pink.night .svg-fill-primary{fill:#e91e63}.rtl-container.pink.night .svg-fill-primary-lighter{fill:#f06292}.rtl-container.pink.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.pink.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.pink.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.pink.night .dashboard-card-content .underline,.rtl-container.pink.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.pink.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#e91e63}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#e91e63}.rtl-container.pink.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.pink.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#e91e63}.rtl-container.pink.night .mat-mdc-form-field-hint .currency-icon{color:#e91e63}.rtl-container.pink.night .mat-mdc-form-field-hint .currency-icon path{fill:#e91e63}.rtl-container.pink.night .fa-icon-primary{color:#e91e63}.rtl-container.pink.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.pink.night ngx-charts-bar-vertical text,.rtl-container.pink.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.pink.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.pink.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.pink.night .mat-paginator-container{padding:0}.rtl-container.pink.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.pink.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.pink.night .invoice-animation-div .particles-circle{position:absolute;background-color:#e91e63;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #e91e63;background-color:transparent}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.pink.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.pink.night .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.pink.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.pink.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.pink.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.yellow.day{--mat-ripple-color: rgba(0, 0, 0, .1);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04);--mat-optgroup-label-text-color: rgba(0, 0, 0, .87);--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;--mat-app-background-color: #fafafa;--mat-app-text-color: rgba(0, 0, 0, .87);--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: white;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: white;--mdc-outlined-card-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(0, 0, 0, .54);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #945f1f;--mdc-filled-text-field-focus-active-indicator-color: #945f1f;--mdc-filled-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-filled-text-field-container-color: whitesmoke;--mdc-filled-text-field-disabled-container-color: #fafafa;--mdc-filled-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-filled-text-field-error-hover-label-text-color: #b00020;--mdc-filled-text-field-error-focus-label-text-color: #b00020;--mdc-filled-text-field-error-label-text-color: #b00020;--mdc-filled-text-field-error-caret-color: #b00020;--mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, .87);--mdc-filled-text-field-error-active-indicator-color: #b00020;--mdc-filled-text-field-error-focus-active-indicator-color: #b00020;--mdc-filled-text-field-error-hover-active-indicator-color: #b00020;--mdc-outlined-text-field-caret-color: #945f1f;--mdc-outlined-text-field-focus-outline-color: #945f1f;--mdc-outlined-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, .6);--mdc-outlined-text-field-error-caret-color: #b00020;--mdc-outlined-text-field-error-focus-label-text-color: #b00020;--mdc-outlined-text-field-error-label-text-color: #b00020;--mdc-outlined-text-field-error-hover-label-text-color: #b00020;--mdc-outlined-text-field-outline-color: rgba(0, 0, 0, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, .06);--mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, .87);--mdc-outlined-text-field-error-focus-outline-color: #b00020;--mdc-outlined-text-field-error-hover-outline-color: #b00020;--mdc-outlined-text-field-error-outline-color: #b00020;--mat-form-field-focus-select-arrow-color: rgba(148, 95, 31, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, .38);--mat-form-field-state-layer-color: rgba(0, 0, 0, .87);--mat-form-field-error-text-color: #b00020;--mat-form-field-select-option-text-color: inherit;--mat-form-field-select-disabled-option-text-color: GrayText;--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, .54);--mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, .38);--mat-form-field-hover-state-layer-opacity: .04;--mat-form-field-focus-state-layer-opacity: .08;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(148, 95, 31, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: white;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: white;--mdc-dialog-subhead-color: rgba(0, 0, 0, .87);--mdc-dialog-supporting-text-color: rgba(0, 0, 0, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #8c571b;--mdc-switch-selected-handle-color: #8c571b;--mdc-switch-selected-hover-state-layer-color: #8c571b;--mdc-switch-selected-pressed-state-layer-color: #8c571b;--mdc-switch-selected-focus-handle-color: #65320a;--mdc-switch-selected-hover-handle-color: #65320a;--mdc-switch-selected-pressed-handle-color: #65320a;--mdc-switch-selected-focus-track-color: #b48f62;--mdc-switch-selected-hover-track-color: #b48f62;--mdc-switch-selected-pressed-track-color: #b48f62;--mdc-switch-selected-track-color: #b48f62;--mdc-switch-disabled-selected-handle-color: #424242;--mdc-switch-disabled-selected-icon-color: #fff;--mdc-switch-disabled-selected-track-color: #424242;--mdc-switch-disabled-unselected-handle-color: #424242;--mdc-switch-disabled-unselected-icon-color: #fff;--mdc-switch-disabled-unselected-track-color: #424242;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #fff;--mdc-switch-unselected-focus-handle-color: #212121;--mdc-switch-unselected-focus-state-layer-color: #424242;--mdc-switch-unselected-focus-track-color: #e0e0e0;--mdc-switch-unselected-handle-color: #616161;--mdc-switch-unselected-hover-handle-color: #212121;--mdc-switch-unselected-hover-state-layer-color: #424242;--mdc-switch-unselected-hover-track-color: #e0e0e0;--mdc-switch-unselected-icon-color: #fff;--mdc-switch-unselected-pressed-handle-color: #212121;--mdc-switch-unselected-pressed-state-layer-color: #424242;--mdc-switch-unselected-pressed-track-color: #e0e0e0;--mdc-switch-unselected-track-color: #e0e0e0;--mdc-switch-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #945f1f;--mdc-slider-focus-handle-color: #945f1f;--mdc-slider-hover-handle-color: #945f1f;--mdc-slider-active-track-color: #945f1f;--mdc-slider-inactive-track-color: #945f1f;--mdc-slider-with-tick-marks-inactive-container-color: #945f1f;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #000;--mdc-slider-disabled-handle-color: #000;--mdc-slider-disabled-inactive-track-color: #000;--mdc-slider-label-container-color: #000;--mdc-slider-label-label-text-color: #fff;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #000;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #945f1f;--mat-slider-hover-state-layer-color: rgba(148, 95, 31, .05);--mat-slider-focus-state-layer-color: rgba(148, 95, 31, .2);--mat-slider-value-indicator-opacity: .6;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: rgba(0, 0, 0, .87);--mat-menu-item-icon-color: rgba(0, 0, 0, .87);--mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-menu-container-color: white;--mat-menu-divider-color: rgba(0, 0, 0, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, .54);--mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, .38);--mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-disabled-label-text-color: black;--mdc-list-list-item-disabled-leading-icon-color: black;--mdc-list-list-item-disabled-trailing-icon-color: black;--mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, .38);--mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, .87);--mdc-list-list-item-hover-state-layer-color: black;--mdc-list-list-item-hover-state-layer-opacity: .04;--mdc-list-list-item-focus-state-layer-color: black;--mdc-list-list-item-focus-state-layer-opacity: .12;--mat-paginator-container-text-color: rgba(0, 0, 0, .87);--mat-paginator-container-background-color: white;--mat-paginator-enabled-icon-color: rgba(0, 0, 0, .54);--mat-paginator-disabled-icon-color: rgba(0, 0, 0, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black;--mat-checkbox-disabled-label-color: rgba(0, 0, 0, .38);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: black;--mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-text-button-state-layer-color: black;--mat-text-button-disabled-state-layer-color: black;--mat-text-button-ripple-color: rgba(0, 0, 0, .1);--mat-text-button-hover-state-layer-opacity: .04;--mat-text-button-focus-state-layer-opacity: .12;--mat-text-button-pressed-state-layer-opacity: .12;--mdc-filled-button-container-color: white;--mdc-filled-button-label-text-color: black;--mdc-filled-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mat-filled-button-state-layer-color: black;--mat-filled-button-disabled-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1);--mat-filled-button-hover-state-layer-opacity: .04;--mat-filled-button-focus-state-layer-opacity: .12;--mat-filled-button-pressed-state-layer-opacity: .12;--mdc-protected-button-container-color: white;--mdc-protected-button-label-text-color: black;--mdc-protected-button-disabled-container-color: rgba(0, 0, 0, .12);--mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: black;--mat-protected-button-disabled-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1);--mat-protected-button-hover-state-layer-opacity: .04;--mat-protected-button-focus-state-layer-opacity: .12;--mat-protected-button-pressed-state-layer-opacity: .12;--mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, .12);--mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, .38);--mdc-outlined-button-label-text-color: black;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: black;--mat-outlined-button-disabled-state-layer-color: black;--mat-outlined-button-ripple-color: rgba(0, 0, 0, .1);--mat-outlined-button-hover-state-layer-opacity: .04;--mat-outlined-button-focus-state-layer-opacity: .12;--mat-outlined-button-pressed-state-layer-opacity: .12;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, .38);--mat-icon-button-state-layer-color: black;--mat-icon-button-disabled-state-layer-color: black;--mat-icon-button-ripple-color: rgba(0, 0, 0, .1);--mat-icon-button-hover-state-layer-opacity: .04;--mat-icon-button-focus-state-layer-opacity: .12;--mat-icon-button-pressed-state-layer-opacity: .12;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: white;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-disabled-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1);--mat-fab-hover-state-layer-opacity: .04;--mat-fab-focus-state-layer-opacity: .12;--mat-fab-pressed-state-layer-opacity: .12;--mat-fab-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-fab-small-container-color: white;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-disabled-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1);--mat-fab-small-hover-state-layer-opacity: .04;--mat-fab-small-focus-state-layer-opacity: .12;--mat-fab-small-pressed-state-layer-opacity: .12;--mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, .12);--mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, .38);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #333333;--mdc-snackbar-supporting-text-color: rgba(255, 255, 255, .87);--mat-snack-bar-button-color: #424242;--mat-table-row-item-outline-width: 1px;--mat-table-background-color: white;--mat-table-header-headline-color: rgba(0, 0, 0, .87);--mat-table-row-item-label-text-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-color: rgba(0, 0, 0, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #945f1f;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #945f1f;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #b9b9b9;--mat-badge-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: rgba(0, 0, 0, .87);--mat-bottom-sheet-container-background-color: white;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(0, 0, 0, .38);--mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, .54);--mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;--mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;--mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-background-color: white;--mat-standard-button-toggle-state-layer-color: black;--mat-standard-button-toggle-selected-state-background-color: #e0e0e0;--mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-standard-button-toggle-disabled-state-background-color: white;--mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, .87);--mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;--mat-standard-button-toggle-divider-color: #e0e0e0;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(148, 95, 31, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(148, 95, 31, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-period-button-text-color: black;--mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, .12);--mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, .54);--mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, .18);--mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, .87);--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, .24);--mat-datepicker-range-input-separator-color: rgba(0, 0, 0, .87);--mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, .38);--mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, .38);--mat-datepicker-calendar-container-background-color: white;--mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, .87);--mat-divider-width: 1px;--mat-divider-color: rgba(0, 0, 0, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: white;--mat-expansion-container-text-color: rgba(0, 0, 0, .87);--mat-expansion-actions-divider-color: rgba(0, 0, 0, .12);--mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, .26);--mat-expansion-header-text-color: rgba(0, 0, 0, .87);--mat-expansion-header-description-color: rgba(0, 0, 0, .54);--mat-expansion-header-indicator-color: rgba(0, 0, 0, .54);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(0, 0, 0, .12);--mat-sidenav-container-background-color: white;--mat-sidenav-container-text-color: rgba(0, 0, 0, .87);--mat-sidenav-content-background-color: #fafafa;--mat-sidenav-content-text-color: rgba(0, 0, 0, .87);--mat-sidenav-scrim-color: rgba(0, 0, 0, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: white;--mat-stepper-line-color: rgba(0, 0, 0, .12);--mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-stepper-header-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, .54);--mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, .87);--mat-stepper-header-error-state-label-text-color: #b00020;--mat-stepper-header-icon-background-color: rgba(0, 0, 0, .54);--mat-stepper-header-error-state-icon-foreground-color: #b00020;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #757575;--mat-toolbar-container-background-color: whitesmoke;--mat-toolbar-container-text-color: rgba(0, 0, 0, .87);--mat-tree-container-background-color: white;--mat-tree-node-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-accent{--mat-option-selected-state-label-text-color: #424242;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.yellow.day .mat-warn{--mat-option-selected-state-label-text-color: #b00020;--mat-option-label-text-color: rgba(0, 0, 0, .87);--mat-option-hover-state-layer-color: rgba(0, 0, 0, .04);--mat-option-focus-state-layer-color: rgba(0, 0, 0, .04);--mat-option-selected-state-layer-color: rgba(0, 0, 0, .04)}.rtl-container.yellow.day .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #945f1f;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #945f1f;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.yellow.day .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #424242;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #424242;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.yellow.day .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #b00020;--mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #b00020;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0}.rtl-container.yellow.day .mat-elevation-z0,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.day .mat-elevation-z1,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z2,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z3,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.day .mat-elevation-z4,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-elevation-z5,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.yellow.day .mat-elevation-z6,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.day .mat-elevation-z7,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.yellow.day .mat-elevation-z8,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.day .mat-elevation-z9,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.yellow.day .mat-elevation-z10,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z11,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.yellow.day .mat-elevation-z12,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z13,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z14,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.yellow.day .mat-elevation-z15,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z16,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z17,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.yellow.day .mat-elevation-z18,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.yellow.day .mat-elevation-z19,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.yellow.day .mat-elevation-z20,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z21,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z22,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.yellow.day .mat-elevation-z23,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.yellow.day .mat-elevation-z24,.rtl-container.yellow.day .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.rtl-container.yellow.day .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #945f1f;--mdc-linear-progress-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #424242;--mdc-linear-progress-track-color: rgba(66, 66, 66, .25)}.rtl-container.yellow.day .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #b00020;--mdc-linear-progress-track-color: rgba(176, 0, 32, .25)}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #424242;--mdc-filled-text-field-focus-active-indicator-color: #424242;--mdc-filled-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mdc-outlined-text-field-caret-color: #424242;--mdc-outlined-text-field-focus-outline-color: #424242;--mdc-outlined-text-field-focus-label-text-color: rgba(66, 66, 66, .87);--mat-form-field-focus-select-arrow-color: rgba(66, 66, 66, .87)}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #b00020;--mdc-filled-text-field-focus-active-indicator-color: #b00020;--mdc-filled-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mdc-outlined-text-field-caret-color: #b00020;--mdc-outlined-text-field-focus-outline-color: #b00020;--mdc-outlined-text-field-focus-label-text-color: rgba(176, 0, 32, .87);--mat-form-field-focus-select-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.yellow.day .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(66, 66, 66, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.yellow.day .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: white;--mat-select-enabled-trigger-text-color: rgba(0, 0, 0, .87);--mat-select-disabled-trigger-text-color: rgba(0, 0, 0, .38);--mat-select-placeholder-text-color: rgba(0, 0, 0, .6);--mat-select-enabled-arrow-color: rgba(0, 0, 0, .54);--mat-select-disabled-arrow-color: rgba(0, 0, 0, .38);--mat-select-focused-arrow-color: rgba(176, 0, 32, .87);--mat-select-invalid-arrow-color: rgba(176, 0, 32, .87)}.rtl-container.yellow.day .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.yellow.day .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #212121;--mdc-chip-elevated-container-color: #e0e0e0;--mdc-chip-elevated-selected-container-color: #e0e0e0;--mdc-chip-elevated-disabled-container-color: #e0e0e0;--mdc-chip-flat-disabled-selected-container-color: #e0e0e0;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #212121;--mdc-chip-selected-label-text-color: #212121;--mdc-chip-with-icon-icon-color: #212121;--mdc-chip-with-icon-disabled-icon-color: #212121;--mdc-chip-with-icon-selected-icon-color: #212121;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;--mdc-chip-with-trailing-icon-trailing-icon-color: #212121;--mat-chip-selected-disabled-trailing-icon-color: #212121;--mat-chip-selected-trailing-icon-color: #212121}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #945f1f;--mdc-chip-elevated-selected-container-color: #945f1f;--mdc-chip-elevated-disabled-container-color: #945f1f;--mdc-chip-flat-disabled-selected-container-color: #945f1f;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #424242;--mdc-chip-elevated-selected-container-color: #424242;--mdc-chip-elevated-disabled-container-color: #424242;--mdc-chip-flat-disabled-selected-container-color: #424242;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.yellow.day .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #b00020;--mdc-chip-elevated-selected-container-color: #b00020;--mdc-chip-elevated-disabled-container-color: #b00020;--mdc-chip-flat-disabled-selected-container-color: #b00020;--mdc-chip-focus-state-layer-color: black;--mdc-chip-hover-state-layer-color: black;--mdc-chip-selected-hover-state-layer-color: black;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: black;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.day .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #757575;--mdc-switch-selected-handle-color: #757575;--mdc-switch-selected-hover-state-layer-color: #757575;--mdc-switch-selected-pressed-state-layer-color: #757575;--mdc-switch-selected-focus-handle-color: #212121;--mdc-switch-selected-hover-handle-color: #212121;--mdc-switch-selected-pressed-handle-color: #212121;--mdc-switch-selected-focus-track-color: #e0e0e0;--mdc-switch-selected-hover-track-color: #e0e0e0;--mdc-switch-selected-pressed-track-color: #e0e0e0;--mdc-switch-selected-track-color: #e0e0e0}.rtl-container.yellow.day .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #a9001c;--mdc-switch-selected-handle-color: #a9001c;--mdc-switch-selected-hover-state-layer-color: #a9001c;--mdc-switch-selected-pressed-state-layer-color: #a9001c;--mdc-switch-selected-focus-handle-color: #87000b;--mdc-switch-selected-hover-handle-color: #87000b;--mdc-switch-selected-pressed-handle-color: #87000b;--mdc-switch-selected-focus-track-color: #c84d63;--mdc-switch-selected-hover-track-color: #c84d63;--mdc-switch-selected-pressed-track-color: #c84d63;--mdc-switch-selected-track-color: #c84d63}.rtl-container.yellow.day .mat-mdc-radio-button{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #424242;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020;--mat-radio-ripple-color: black;--mat-radio-checked-ripple-color: #b00020;--mat-radio-disabled-label-color: rgba(0, 0, 0, .38)}.rtl-container.yellow.day .mat-accent{--mat-slider-ripple-color: #424242;--mat-slider-hover-state-layer-color: rgba(66, 66, 66, .05);--mat-slider-focus-state-layer-color: rgba(66, 66, 66, .2);--mdc-slider-handle-color: #424242;--mdc-slider-focus-handle-color: #424242;--mdc-slider-hover-handle-color: #424242;--mdc-slider-active-track-color: #424242;--mdc-slider-inactive-track-color: #424242;--mdc-slider-with-tick-marks-inactive-container-color: #424242;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.yellow.day .mat-warn{--mat-slider-ripple-color: #b00020;--mat-slider-hover-state-layer-color: rgba(176, 0, 32, .05);--mat-slider-focus-state-layer-color: rgba(176, 0, 32, .2);--mdc-slider-handle-color: #b00020;--mdc-slider-focus-handle-color: #b00020;--mdc-slider-hover-handle-color: #b00020;--mdc-slider-active-track-color: #b00020;--mdc-slider-inactive-track-color: #b00020;--mdc-slider-with-tick-marks-inactive-container-color: #b00020;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.yellow.day .mdc-list-item__start,.rtl-container.yellow.day .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f}.rtl-container.yellow.day .mat-accent .mdc-list-item__start,.rtl-container.yellow.day .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #424242;--mdc-radio-selected-hover-icon-color: #424242;--mdc-radio-selected-icon-color: #424242;--mdc-radio-selected-pressed-icon-color: #424242}.rtl-container.yellow.day .mat-warn .mdc-list-item__start,.rtl-container.yellow.day .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: black;--mdc-radio-disabled-unselected-icon-color: black;--mdc-radio-unselected-hover-icon-color: #212121;--mdc-radio-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-radio-selected-focus-icon-color: #b00020;--mdc-radio-selected-hover-icon-color: #b00020;--mdc-radio-selected-icon-color: #b00020;--mdc-radio-selected-pressed-icon-color: #b00020}.rtl-container.yellow.day .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #424242;--mdc-checkbox-selected-hover-icon-color: #424242;--mdc-checkbox-selected-icon-color: #424242;--mdc-checkbox-selected-pressed-icon-color: #424242;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #424242;--mdc-checkbox-selected-hover-state-layer-color: #424242;--mdc-checkbox-selected-pressed-state-layer-color: #424242;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#945f1f}.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.yellow.day .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.yellow.day .mat-mdc-tab-group,.rtl-container.yellow.day .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #945f1f;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #945f1f;--mat-tab-header-active-ripple-color: #945f1f;--mat-tab-header-inactive-ripple-color: #945f1f;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #945f1f;--mat-tab-header-active-hover-label-text-color: #945f1f;--mat-tab-header-active-focus-indicator-color: #945f1f;--mat-tab-header-active-hover-indicator-color: #945f1f}.rtl-container.yellow.day .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #424242;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #424242;--mat-tab-header-active-ripple-color: #424242;--mat-tab-header-inactive-ripple-color: #424242;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #424242;--mat-tab-header-active-hover-label-text-color: #424242;--mat-tab-header-active-focus-indicator-color: #424242;--mat-tab-header-active-hover-indicator-color: #424242}.rtl-container.yellow.day .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #b00020;--mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, .38);--mat-tab-header-pagination-icon-color: black;--mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-label-text-color: #b00020;--mat-tab-header-active-ripple-color: #b00020;--mat-tab-header-inactive-ripple-color: #b00020;--mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, .6);--mat-tab-header-active-focus-label-text-color: #b00020;--mat-tab-header-active-hover-label-text-color: #b00020;--mat-tab-header-active-focus-indicator-color: #b00020;--mat-tab-header-active-hover-indicator-color: #b00020}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-primary,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #945f1f;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-accent,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #424242;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.day .mat-mdc-tab-group.mat-background-warn,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #b00020;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.day .mat-mdc-checkbox{--mdc-form-field-label-text-color: rgba(0, 0, 0, .87)}.rtl-container.yellow.day .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #b00020;--mdc-checkbox-selected-hover-icon-color: #b00020;--mdc-checkbox-selected-icon-color: #b00020;--mdc-checkbox-selected-pressed-icon-color: #b00020;--mdc-checkbox-unselected-focus-icon-color: #212121;--mdc-checkbox-unselected-hover-icon-color: #212121;--mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, .54);--mdc-checkbox-selected-focus-state-layer-color: #b00020;--mdc-checkbox-selected-hover-state-layer-color: #b00020;--mdc-checkbox-selected-pressed-state-layer-color: #b00020;--mdc-checkbox-unselected-focus-state-layer-color: black;--mdc-checkbox-unselected-hover-state-layer-color: black;--mdc-checkbox-unselected-pressed-state-layer-color: black}.rtl-container.yellow.day .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #945f1f;--mat-text-button-state-layer-color: #945f1f;--mat-text-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #424242;--mat-text-button-state-layer-color: #424242;--mat-text-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #b00020;--mat-text-button-state-layer-color: #b00020;--mat-text-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #945f1f;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #b00020;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #945f1f;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #b00020;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #945f1f;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #945f1f;--mat-outlined-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #424242;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #424242;--mat-outlined-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #b00020;--mdc-outlined-button-outline-color: rgba(0, 0, 0, .12);--mat-outlined-button-state-layer-color: #b00020;--mat-outlined-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #424242;--mat-icon-button-state-layer-color: #424242;--mat-icon-button-ripple-color: rgba(66, 66, 66, .1)}.rtl-container.yellow.day .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #b00020;--mat-icon-button-state-layer-color: #b00020;--mat-icon-button-ripple-color: rgba(176, 0, 32, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #945f1f;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #424242;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #b00020;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #424242;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #b00020;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.day .mat-accent{--mdc-circular-progress-active-indicator-color: #424242}.rtl-container.yellow.day .mat-warn{--mdc-circular-progress-active-indicator-color: #b00020}.rtl-container.yellow.day .mat-badge-accent{--mat-badge-background-color: #424242;--mat-badge-text-color: white}.rtl-container.yellow.day .mat-badge-warn{--mat-badge-background-color: #b00020;--mat-badge-text-color: white}.rtl-container.yellow.day .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #424242;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(66, 66, 66, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(66, 66, 66, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(66, 66, 66, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.day .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #b00020;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(176, 0, 32, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(176, 0, 32, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(176, 0, 32, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #424242}.rtl-container.yellow.day .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #b00020}.rtl-container.yellow.day .mat-icon.mat-primary{--mat-icon-color: #945f1f}.rtl-container.yellow.day .mat-icon.mat-accent{--mat-icon-color: #424242}.rtl-container.yellow.day .mat-icon.mat-warn{--mat-icon-color: #b00020}.rtl-container.yellow.day .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #424242;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #424242;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #424242;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.day .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #b00020;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #b00020;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #b00020;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.day .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #945f1f;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #424242;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #b00020;--mat-toolbar-container-text-color: white}.rtl-container.yellow.day .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#fff}.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-progress-spinner circle,.rtl-container.yellow.day .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container .mat-spinner circle{stroke:#fff}.rtl-container.yellow.day .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#616161}.rtl-container.yellow.day .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#eee}.rtl-container.yellow.day .rtl-top-toolbar{border-bottom:1px solid white;padding:0 2.5rem 0 1rem}.rtl-container.yellow.day .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.day .mat-mdc-select.multi-node-select .mat-mdc-select-value{color:#000000de}.rtl-container.yellow.day .page-title,.rtl-container.yellow.day .mat-mdc-select-value,.rtl-container.yellow.day .mat-expansion-panel-header .mat-expansion-panel-header-title,.rtl-container.yellow.day .mat-expansion-panel-header-title{color:#0000008a}.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#0000008a}.rtl-container.yellow.day .help-expansion .mat-expansion-indicator:after,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-content,.rtl-container.yellow.day .help-expansion .mat-expansion-panel-header-description{color:#0000008a}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar{font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#945f1f}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-warn-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#b00020}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar{max-width:90vw!important;font-weight:600}.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mdc-snackbar__surface,.rtl-container.yellow.day .mat-mdc-snack-bar-container.rtl-accent-snack-bar .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;background-color:#fff;opacity:.9!important;border-radius:4px;color:#424242}.rtl-container.yellow.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#945f1f}.rtl-container.yellow.day button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#b00020}.rtl-container.yellow.day .mat-tree-node:hover,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover,.rtl-container.yellow.day .mat-select-panel .mat-option:hover,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#945f1f;cursor:pointer}.rtl-container.yellow.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.day .mat-tree-node:hover .mat-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.day .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg{fill:#945f1f}.rtl-container.yellow.day .spinner-container h2{color:#fff}.rtl-container.yellow.day .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent .mat-icon,.rtl-container.yellow.day .mat-form-field-suffix{color:#0000008a}.rtl-container.yellow.day .mat-stroked-button.mat-primary{border-color:#945f1f}.rtl-container.yellow.day .mat-stroked-button.mat-accent{border-color:#424242}.rtl-container.yellow.day .mat-stroked-button.mat-warn{border-color:#b00020}.rtl-container.yellow.day .selected-color{border-color:#b48f62}.rtl-container.yellow.day .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{opacity:.06}.rtl-container.yellow.day table.mat-mdc-table thead tr th,.rtl-container.yellow.day .page-title-container,.rtl-container.yellow.day .page-sub-title-container{color:#0000008a}.rtl-container.yellow.day .page-title-container .page-title-img,.rtl-container.yellow.day .page-sub-title-container .page-title-img{color:#00000061}.rtl-container.yellow.day .page-title-container .mat-input-element,.rtl-container.yellow.day .page-title-container .mat-radio-label-content,.rtl-container.yellow.day .page-title-container .theme-name,.rtl-container.yellow.day .page-sub-title-container .mat-input-element,.rtl-container.yellow.day .page-sub-title-container .mat-radio-label-content,.rtl-container.yellow.day .page-sub-title-container .theme-name{color:#000000de}.rtl-container.yellow.day .cc-data-block .cc-data-title{color:#945f1f}.rtl-container.yellow.day .active-link,.rtl-container.yellow.day .active-link .fa-icon-small{color:#945f1f;font-weight:500;cursor:pointer;fill:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover,.rtl-container.yellow.day .mat-select-panel .mat-option:hover,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover{color:#945f1f;cursor:pointer;background:#0000000a}.rtl-container.yellow.day .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.day .mat-tree-node:hover .mat-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon{color:#945f1f}.rtl-container.yellow.day .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.day .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.day .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.day .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg{fill:#945f1f}.rtl-container.yellow.day .mat-tree-node .sidenav-img,.rtl-container.yellow.day .mat-nested-tree-node .sidenav-img,.rtl-container.yellow.day .mat-nested-tree-node-parent .sidenav-img,.rtl-container.yellow.day .page-title-container .page-title-img,.rtl-container.yellow.day svg.top-icon-small{fill:#000000de}.rtl-container.yellow.day .mat-progress-bar-fill:after{background-color:#65320a}.rtl-container.yellow.day .modal-qr-code-container{background:#0000001f}.rtl-container.yellow.day .mdc-tab__text-label,.rtl-container.yellow.day .mat-mdc-tab-link{color:#0000008a}.rtl-container.yellow.day .mat-mdc-card,.rtl-container.yellow.day .mat-mdc-card:not([class*=mat-elevation-z]){box-shadow:none;border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#00000061}.rtl-container.yellow.day .dashboard-info-title{color:#945f1f}.rtl-container.yellow.day .dashboard-capacity-header,.rtl-container.yellow.day .dashboard-info-value{color:#0000008a}.rtl-container.yellow.day .color-primary{color:#945f1f!important}.rtl-container.yellow.day .dot-primary{background-color:#945f1f!important}.rtl-container.yellow.day .dot-primary-lighter{background-color:#b48f62!important}.rtl-container.yellow.day .mat-expansion-panel.flat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-mdc-form-field-hint{color:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon path,.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon polygon,.rtl-container.yellow.day .mat-mdc-form-field-hint fa-icon svg path{fill:#945f1f}.rtl-container.yellow.day .currency-icon path,.rtl-container.yellow.day .currency-icon polygon{fill:#0000008a}.rtl-container.yellow.day svg .boltz-icon{stroke:#0000008a;stroke-width:4}.rtl-container.yellow.day svg .boltz-icon-fill{fill:#0000008a}.rtl-container.yellow.day svg .stroke-color-thicker{stroke:#404040;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thick{stroke:#404040;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color{stroke:#404040;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thin{stroke:#404040;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thiner{stroke:#404040;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-thinest{stroke:#404040;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.day svg .stroke-color-primary-lighter{stroke:#b48f62}.rtl-container.yellow.day svg .stroke-color-primary{stroke:#945f1f}.rtl-container.yellow.day svg .fill-color-boltz-bk{fill:#313131}.rtl-container.yellow.day svg .fill-color-0{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-1{fill:#fff}.rtl-container.yellow.day svg .fill-color-2{fill:#f1f1f1}.rtl-container.yellow.day svg .fill-color-3{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-4{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-5{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-6{fill:#fff}.rtl-container.yellow.day svg .fill-color-7{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-8{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-9{fill:#fff}.rtl-container.yellow.day svg .fill-color-10{fill:#e6e6e6}.rtl-container.yellow.day svg .fill-color-11{fill:#e6e6e6}.rtl-container.yellow.day svg .fill-color-12{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-13{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-14{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-15{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-16{fill:#404040}.rtl-container.yellow.day svg .fill-color-17{fill:#404040}.rtl-container.yellow.day svg .fill-color-18{fill:#000}.rtl-container.yellow.day svg .fill-color-19{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-20{fill:#4a4a4a}.rtl-container.yellow.day svg .fill-color-21{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-22{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-23{fill:#cbcbcb}.rtl-container.yellow.day svg .fill-color-24{fill:#000}.rtl-container.yellow.day svg .fill-color-25{fill:#f2f2f2}.rtl-container.yellow.day svg .fill-color-26{fill:#6f6f6f}.rtl-container.yellow.day svg .fill-color-27{fill:#000}.rtl-container.yellow.day svg .fill-color-28{fill:#313131}.rtl-container.yellow.day svg .fill-color-29{fill:#5b5b5b}.rtl-container.yellow.day svg .fill-color-30{fill:#fff}.rtl-container.yellow.day svg .fill-color-31{fill:#945f1f}.rtl-container.yellow.day svg .fill-color-green-light{fill:#6ecb48}.rtl-container.yellow.day svg .fill-color-primary{fill:#945f1f}.rtl-container.yellow.day svg .fill-color-primary-lighter{fill:#b48f62}.rtl-container.yellow.day svg .fill-color-primary-darker{fill:#945f1f}.rtl-container.yellow.day .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.yellow.day .mat-form-field-disabled .mat-form-field-flex{background-color:#0000000a}.rtl-container.yellow.day .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label{color:#945f1f}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#0000000a}.rtl-container.yellow.day .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{color:#0000008a;cursor:not-allowed!important}.rtl-container.yellow.day .material-icons.mat-icon-no-color,.rtl-container.yellow.day .material-icons.info-icon{font-size:100%;color:#0000008a}.rtl-container.yellow.day .material-icons.mat-icon-no-color.info-icon-primary,.rtl-container.yellow.day .material-icons.info-icon.info-icon-primary{color:#945f1f}.rtl-container.yellow.day .material-icons.mat-icon-no-color.info-icon-text,.rtl-container.yellow.day .material-icons.info-icon.info-icon-text{color:#0000008a}.rtl-container.yellow.day ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#945f1f}.rtl-container.yellow.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#65320a}.rtl-container.yellow.day ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.yellow.day ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#caaf8f}.rtl-container.yellow.day .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.yellow.day .mat-progress-bar-buffer{background-color:#dfcfbc}.rtl-container.yellow.day .foreground-text{color:#000000de!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.yellow.day .foreground-secondary-text{color:#0000008a!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.yellow.day .foreground.mat-progress-spinner circle,.rtl-container.yellow.day .foreground.mat-spinner circle{stroke:#000000de}.rtl-container.yellow.day .mat-toolbar-row,.rtl-container.yellow.day .mat-toolbar-single-row{height:4rem}.rtl-container.yellow.day .lnd-info{border-bottom:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day a{color:#945f1f}.rtl-container.yellow.day .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.yellow.day .h-active-link{border-bottom:2px solid white}.rtl-container.yellow.day .mat-icon-36{color:#0000008a}.rtl-container.yellow.day .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.day .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.yellow.day .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.yellow.day .genseed-message{width:10%;color:#945f1f}.rtl-container.yellow.day .border-primary{border:1px solid #945f1f}.rtl-container.yellow.day .border-accent{border:1px solid #424242}.rtl-container.yellow.day .border-warn{border:1px solid #b00020}.rtl-container.yellow.day .material-icons.primary{color:#945f1f}.rtl-container.yellow.day .material-icons.accent{color:#424242}.rtl-container.yellow.day .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#b00020}.rtl-container.yellow.day .mat-vertical-content{padding:0 0 .75rem}.rtl-container.yellow.day .row-disabled{background-color:gray}.rtl-container.yellow.day .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.yellow.day .mat-mdc-card-content,.rtl-container.yellow.day .mat-mdc-card-subtitle,.rtl-container.yellow.day .mat-mdc-card-title{color:#0000008a}.rtl-container.yellow.day .mat-menu-panel{min-width:4rem}.rtl-container.yellow.day .horizontal-button{height:4rem;border-radius:0}.rtl-container.yellow.day .horizontal-button:hover{background:#b48f62;color:#424242}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#945f1f}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.yellow.day .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.yellow.day .mat-button,.rtl-container.yellow.day .mat-icon-button,.rtl-container.yellow.day .mat-stroked-button,.rtl-container.yellow.day .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.yellow.day .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.yellow.day .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.yellow.day .cc-data-block .cc-data-value{color:#000}.rtl-container.yellow.day .mat-cell,.rtl-container.yellow.day .mat-header-cell,.rtl-container.yellow.day .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#0000001f}.rtl-container.yellow.day .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.yellow.day .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]){color:#945f1f}.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.yellow.day .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#945f1f;opacity:1}.rtl-container.yellow.day table.mat-mdc-table{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.yellow.day table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.yellow.day table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.yellow.day table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.yellow.day .bordered-box{border:1px solid rgba(0,0,0,.12);border-radius:2px;background:none}.rtl-container.yellow.day .bordered-box.read-only{background-color:#0000000a}.rtl-container.yellow.day .mat-expansion-panel{border:1px solid rgba(0,0,0,.12)}.rtl-container.yellow.day .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.yellow.day .more-button{color:#000}.rtl-container.yellow.day .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.yellow.day .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.yellow.day .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.yellow.day .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.yellow.day .modal-info-header{color:#000000de;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.yellow.day .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.day .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.yellow.day .modal-info-header .page-title-img svg{color:#000000de}.rtl-container.yellow.day .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.yellow.day .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.yellow.day .tab-badge .mat-badge-content.mat-badge-active{background:#945f1f}.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.yellow.day .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.day .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.day .rtl-select-overlay{min-width:7rem}}.rtl-container.yellow.day .table-actions-select{border-color:#00000061;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.yellow.day .table-actions-select .mat-select-placeholder{color:#000000de}.rtl-container.yellow.day .table-actions-button{min-width:8rem}.rtl-container.yellow.day .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.day .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.day .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.yellow.day .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#caaf8f!important}.rtl-container.yellow.day .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#8c571b!important}.rtl-container.yellow.day .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.yellow.day .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.yellow.day .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.yellow.day .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.yellow.day .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.yellow.day .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid black}.rtl-container.yellow.day .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.yellow.day .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.yellow.day .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.yellow.day .color-warn{color:#b00020}.rtl-container.yellow.day .fill-warn{fill:#b00020}.rtl-container.yellow.day .alert{border:1px solid rgba(0,0,0,.54);color:#000;background-color:#0000000a}.rtl-container.yellow.day .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.yellow.day .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.yellow.day .alert.alert-info a{color:#004085}.rtl-container.yellow.day .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.yellow.day .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.yellow.day .alert.alert-warn a{color:#856404}.rtl-container.yellow.day .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.yellow.day .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.yellow.day .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.yellow.day .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.yellow.day .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.yellow.day .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.yellow.day .failed-status{color:#b00020}.rtl-container.yellow.day .material-icons.icon-failed-status{fill:#b00020;height:1.25rem}.rtl-container.yellow.day .svg-fill-primary{fill:#945f1f}.rtl-container.yellow.day .svg-fill-primary-lighter{fill:#b48f62}.rtl-container.yellow.day .mat-expansion-panel-header[aria-disabled=true]{color:#000000de}.rtl-container.yellow.day .mat-chip-list-wrapper input.mat-input-element,.rtl-container.yellow.day .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.yellow.day .dashboard-card-content .underline,.rtl-container.yellow.day .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.yellow.day .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(0,0,0,.12);margin-bottom:.5rem}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#945f1f}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#945f1f}.rtl-container.yellow.day .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.yellow.day .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon{color:#945f1f}.rtl-container.yellow.day .mat-mdc-form-field-hint .currency-icon path{fill:#945f1f}.rtl-container.yellow.day .fa-icon-primary{color:#945f1f}.rtl-container.yellow.day .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.day ngx-charts-bar-vertical text,.rtl-container.yellow.day ngx-charts-bar-vertical-2d text{fill:#000000de}.rtl-container.yellow.day ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.yellow.day ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.yellow.day .mat-paginator-container{padding:0}.rtl-container.yellow.day .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.yellow.day .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.yellow.day .invoice-animation-div .particles-circle{position:absolute;background-color:#945f1f;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #945f1f;background-color:transparent}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}.rtl-container.yellow.day .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.yellow.day .wiggle{animation:.5s wiggle ease-in-out infinite}.rtl-container.yellow.day .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.yellow.day .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.yellow.day .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}.rtl-container.yellow.night{--mat-ripple-color: rgba(255, 255, 255, .1);--mat-option-selected-state-label-text-color: #945f1f;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08);--mat-optgroup-label-text-color: white;--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;--mat-app-background-color: #303030;--mat-app-text-color: white;--mdc-elevated-card-container-shape: 4px;--mdc-outlined-card-container-shape: 4px;--mdc-outlined-card-outline-width: 1px;--mdc-elevated-card-container-color: #424242;--mdc-elevated-card-container-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-outlined-card-container-color: #424242;--mdc-outlined-card-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mat-card-subtitle-text-color: rgba(255, 255, 255, .7);--mdc-linear-progress-active-indicator-height: 4px;--mdc-linear-progress-track-height: 4px;--mdc-linear-progress-track-shape: 0;--mdc-plain-tooltip-container-shape: 4px;--mdc-plain-tooltip-supporting-text-line-height: 16px;--mdc-plain-tooltip-container-color: #616161;--mdc-plain-tooltip-supporting-text-color: #fff;--mdc-filled-text-field-active-indicator-height: 1px;--mdc-filled-text-field-focus-active-indicator-height: 2px;--mdc-filled-text-field-container-shape: 4px;--mdc-outlined-text-field-outline-width: 1px;--mdc-outlined-text-field-focus-outline-width: 2px;--mdc-outlined-text-field-container-shape: 4px;--mdc-filled-text-field-caret-color: #945f1f;--mdc-filled-text-field-focus-active-indicator-color: #945f1f;--mdc-filled-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-filled-text-field-container-color: #4a4a4a;--mdc-filled-text-field-disabled-container-color: #464646;--mdc-filled-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-filled-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-filled-text-field-error-hover-label-text-color: #ff343b;--mdc-filled-text-field-error-focus-label-text-color: #ff343b;--mdc-filled-text-field-error-label-text-color: #ff343b;--mdc-filled-text-field-error-caret-color: #ff343b;--mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, .42);--mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, .06);--mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, .87);--mdc-filled-text-field-error-active-indicator-color: #ff343b;--mdc-filled-text-field-error-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-error-hover-active-indicator-color: #ff343b;--mdc-outlined-text-field-caret-color: #945f1f;--mdc-outlined-text-field-focus-outline-color: #945f1f;--mdc-outlined-text-field-focus-label-text-color: rgba(148, 95, 31, .87);--mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-hover-label-text-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-input-text-placeholder-color: rgba(255, 255, 255, .6);--mdc-outlined-text-field-error-caret-color: #ff343b;--mdc-outlined-text-field-error-focus-label-text-color: #ff343b;--mdc-outlined-text-field-error-label-text-color: #ff343b;--mdc-outlined-text-field-error-hover-label-text-color: #ff343b;--mdc-outlined-text-field-outline-color: rgba(255, 255, 255, .38);--mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, .06);--mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, .87);--mdc-outlined-text-field-error-focus-outline-color: #ff343b;--mdc-outlined-text-field-error-hover-outline-color: #ff343b;--mdc-outlined-text-field-error-outline-color: #ff343b;--mat-form-field-focus-select-arrow-color: rgba(148, 95, 31, .87);--mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, .38);--mat-form-field-state-layer-color: rgba(255, 255, 255, .87);--mat-form-field-error-text-color: #ff343b;--mat-form-field-select-option-text-color: rgba(0, 0, 0, .87);--mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, .38);--mat-form-field-leading-icon-color: unset;--mat-form-field-disabled-leading-icon-color: unset;--mat-form-field-trailing-icon-color: unset;--mat-form-field-disabled-trailing-icon-color: unset;--mat-form-field-error-focus-trailing-icon-color: unset;--mat-form-field-error-hover-trailing-icon-color: unset;--mat-form-field-error-trailing-icon-color: unset;--mat-form-field-enabled-select-arrow-color: rgba(255, 255, 255, .54);--mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, .38);--mat-form-field-hover-state-layer-opacity: .08;--mat-form-field-focus-state-layer-opacity: .24;--mat-select-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(148, 95, 31, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87);--mat-autocomplete-container-shape: 4px;--mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mat-autocomplete-background-color: #424242;--mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mdc-dialog-container-shadow-color: #000;--mdc-dialog-container-shape: 4px;--mat-dialog-container-max-width: 80vw;--mat-dialog-container-small-max-width: 80vw;--mat-dialog-container-min-width: 0;--mat-dialog-actions-alignment: start;--mat-dialog-actions-padding: 8px;--mat-dialog-content-padding: 20px 24px;--mat-dialog-with-actions-content-padding: 20px 24px;--mat-dialog-headline-padding: 0 24px 9px;--mdc-dialog-container-color: #424242;--mdc-dialog-subhead-color: rgba(255, 255, 255, .87);--mdc-dialog-supporting-text-color: rgba(255, 255, 255, .6);--mdc-switch-disabled-selected-icon-opacity: .38;--mdc-switch-disabled-track-opacity: .12;--mdc-switch-disabled-unselected-icon-opacity: .38;--mdc-switch-handle-height: 20px;--mdc-switch-handle-shape: 10px;--mdc-switch-handle-width: 20px;--mdc-switch-selected-icon-size: 18px;--mdc-switch-track-height: 14px;--mdc-switch-track-shape: 7px;--mdc-switch-track-width: 36px;--mdc-switch-unselected-icon-size: 18px;--mdc-switch-selected-focus-state-layer-opacity: .12;--mdc-switch-selected-hover-state-layer-opacity: .04;--mdc-switch-selected-pressed-state-layer-opacity: .1;--mdc-switch-unselected-focus-state-layer-opacity: .12;--mdc-switch-unselected-hover-state-layer-opacity: .04;--mdc-switch-unselected-pressed-state-layer-opacity: .1;--mat-switch-disabled-selected-handle-opacity: .38;--mat-switch-disabled-unselected-handle-opacity: .38;--mat-switch-unselected-handle-size: 20px;--mat-switch-selected-handle-size: 20px;--mat-switch-pressed-handle-size: 20px;--mat-switch-with-icon-handle-size: 20px;--mat-switch-selected-handle-horizontal-margin: 0;--mat-switch-selected-with-icon-handle-horizontal-margin: 0;--mat-switch-selected-pressed-handle-horizontal-margin: 0;--mat-switch-unselected-handle-horizontal-margin: 0;--mat-switch-unselected-with-icon-handle-horizontal-margin: 0;--mat-switch-unselected-pressed-handle-horizontal-margin: 0;--mat-switch-visible-track-opacity: 1;--mat-switch-hidden-track-opacity: 1;--mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, .2, 1);--mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(.4, 0, .6, 1);--mat-switch-track-outline-width: 1px;--mat-switch-track-outline-color: transparent;--mat-switch-selected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-width: 1px;--mat-switch-disabled-unselected-track-outline-color: transparent;--mdc-switch-selected-focus-state-layer-color: #b48f62;--mdc-switch-selected-handle-color: #b48f62;--mdc-switch-selected-hover-state-layer-color: #b48f62;--mdc-switch-selected-pressed-state-layer-color: #b48f62;--mdc-switch-selected-focus-handle-color: #caaf8f;--mdc-switch-selected-hover-handle-color: #caaf8f;--mdc-switch-selected-pressed-handle-color: #caaf8f;--mdc-switch-selected-focus-track-color: #8c571b;--mdc-switch-selected-hover-track-color: #8c571b;--mdc-switch-selected-pressed-track-color: #8c571b;--mdc-switch-selected-track-color: #8c571b;--mdc-switch-disabled-selected-handle-color: #000;--mdc-switch-disabled-selected-icon-color: #212121;--mdc-switch-disabled-selected-track-color: #f5f5f5;--mdc-switch-disabled-unselected-handle-color: #000;--mdc-switch-disabled-unselected-icon-color: #212121;--mdc-switch-disabled-unselected-track-color: #f5f5f5;--mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);--mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mdc-switch-handle-shadow-color: black;--mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-switch-selected-icon-color: #212121;--mdc-switch-unselected-focus-handle-color: #fafafa;--mdc-switch-unselected-focus-state-layer-color: #f5f5f5;--mdc-switch-unselected-focus-track-color: #616161;--mdc-switch-unselected-handle-color: #9e9e9e;--mdc-switch-unselected-hover-handle-color: #fafafa;--mdc-switch-unselected-hover-state-layer-color: #f5f5f5;--mdc-switch-unselected-hover-track-color: #616161;--mdc-switch-unselected-icon-color: #212121;--mdc-switch-unselected-pressed-handle-color: #fafafa;--mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;--mdc-switch-unselected-pressed-track-color: #616161;--mdc-switch-unselected-track-color: #616161;--mdc-switch-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-radio-disabled-selected-icon-opacity: .38;--mdc-radio-disabled-unselected-icon-opacity: .38;--mdc-radio-state-layer-size: 40px;--mat-slider-value-indicator-width: auto;--mat-slider-value-indicator-height: 32px;--mat-slider-value-indicator-caret-display: block;--mat-slider-value-indicator-border-radius: 4px;--mat-slider-value-indicator-padding: 0 12px;--mat-slider-value-indicator-text-transform: none;--mat-slider-value-indicator-container-transform: translateX(-50%);--mdc-slider-active-track-height: 6px;--mdc-slider-active-track-shape: 9999px;--mdc-slider-handle-height: 20px;--mdc-slider-handle-shape: 50%;--mdc-slider-handle-width: 20px;--mdc-slider-inactive-track-height: 4px;--mdc-slider-inactive-track-shape: 9999px;--mdc-slider-with-overlap-handle-outline-width: 1px;--mdc-slider-with-tick-marks-active-container-opacity: .6;--mdc-slider-with-tick-marks-container-shape: 50%;--mdc-slider-with-tick-marks-container-size: 2px;--mdc-slider-with-tick-marks-inactive-container-opacity: .6;--mdc-slider-handle-color: #945f1f;--mdc-slider-focus-handle-color: #945f1f;--mdc-slider-hover-handle-color: #945f1f;--mdc-slider-active-track-color: #945f1f;--mdc-slider-inactive-track-color: #945f1f;--mdc-slider-with-tick-marks-inactive-container-color: #945f1f;--mdc-slider-with-tick-marks-active-container-color: white;--mdc-slider-disabled-active-track-color: #fff;--mdc-slider-disabled-handle-color: #fff;--mdc-slider-disabled-inactive-track-color: #fff;--mdc-slider-label-container-color: #fff;--mdc-slider-label-label-text-color: #000;--mdc-slider-with-overlap-handle-outline-color: #fff;--mdc-slider-with-tick-marks-disabled-container-color: #fff;--mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, .2), 0px 1px 1px 0px rgba(0, 0, 0, .14), 0px 1px 3px 0px rgba(0, 0, 0, .12);--mat-slider-ripple-color: #945f1f;--mat-slider-hover-state-layer-color: rgba(148, 95, 31, .05);--mat-slider-focus-state-layer-color: rgba(148, 95, 31, .2);--mat-slider-value-indicator-opacity: .9;--mat-menu-container-shape: 4px;--mat-menu-divider-bottom-spacing: 0;--mat-menu-divider-top-spacing: 0;--mat-menu-item-spacing: 16px;--mat-menu-item-icon-size: 24px;--mat-menu-item-leading-spacing: 16px;--mat-menu-item-trailing-spacing: 16px;--mat-menu-item-with-icon-leading-spacing: 16px;--mat-menu-item-with-icon-trailing-spacing: 16px;--mat-menu-item-label-text-color: white;--mat-menu-item-icon-color: white;--mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-menu-container-color: #424242;--mat-menu-divider-color: rgba(255, 255, 255, .12);--mdc-list-list-item-container-shape: 0;--mdc-list-list-item-leading-avatar-shape: 50%;--mdc-list-list-item-container-color: transparent;--mdc-list-list-item-selected-container-color: transparent;--mdc-list-list-item-leading-avatar-color: transparent;--mdc-list-list-item-leading-icon-size: 24px;--mdc-list-list-item-leading-avatar-size: 40px;--mdc-list-list-item-trailing-icon-size: 24px;--mdc-list-list-item-disabled-state-layer-color: transparent;--mdc-list-list-item-disabled-state-layer-opacity: 0;--mdc-list-list-item-disabled-label-text-opacity: .38;--mdc-list-list-item-disabled-leading-icon-opacity: .38;--mdc-list-list-item-disabled-trailing-icon-opacity: .38;--mat-list-active-indicator-color: transparent;--mat-list-active-indicator-shape: 4px;--mdc-list-list-item-label-text-color: white;--mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, .7);--mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, .5);--mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-disabled-label-text-color: white;--mdc-list-list-item-disabled-leading-icon-color: white;--mdc-list-list-item-disabled-trailing-icon-color: white;--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, .5);--mdc-list-list-item-focus-label-text-color: white;--mdc-list-list-item-hover-state-layer-color: white;--mdc-list-list-item-hover-state-layer-opacity: .08;--mdc-list-list-item-focus-state-layer-color: white;--mdc-list-list-item-focus-state-layer-opacity: .24;--mat-paginator-container-text-color: rgba(255, 255, 255, .87);--mat-paginator-container-background-color: #424242;--mat-paginator-enabled-icon-color: rgba(255, 255, 255, .54);--mat-paginator-disabled-icon-color: rgba(255, 255, 255, .12);--mdc-tab-indicator-active-indicator-height: 2px;--mdc-tab-indicator-active-indicator-shape: 0;--mdc-secondary-navigation-tab-container-height: 48px;--mat-tab-header-divider-color: transparent;--mat-tab-header-divider-height: 0;--mdc-checkbox-disabled-selected-checkmark-color: #fff;--mdc-checkbox-selected-focus-state-layer-opacity: .16;--mdc-checkbox-selected-hover-state-layer-opacity: .04;--mdc-checkbox-selected-pressed-state-layer-opacity: .16;--mdc-checkbox-unselected-focus-state-layer-opacity: .16;--mdc-checkbox-unselected-hover-state-layer-opacity: .04;--mdc-checkbox-unselected-pressed-state-layer-opacity: .16;--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white;--mat-checkbox-disabled-label-color: rgba(255, 255, 255, .5);--mdc-text-button-container-shape: 4px;--mdc-text-button-keep-touch-target: false;--mdc-filled-button-container-shape: 4px;--mdc-filled-button-keep-touch-target: false;--mdc-protected-button-container-shape: 4px;--mdc-protected-button-keep-touch-target: false;--mdc-outlined-button-keep-touch-target: false;--mdc-outlined-button-outline-width: 1px;--mdc-outlined-button-container-shape: 4px;--mat-text-button-horizontal-padding: 8px;--mat-text-button-with-icon-horizontal-padding: 8px;--mat-text-button-icon-spacing: 8px;--mat-text-button-icon-offset: 0;--mat-filled-button-horizontal-padding: 16px;--mat-filled-button-icon-spacing: 8px;--mat-filled-button-icon-offset: -4px;--mat-protected-button-horizontal-padding: 16px;--mat-protected-button-icon-spacing: 8px;--mat-protected-button-icon-offset: -4px;--mat-outlined-button-horizontal-padding: 15px;--mat-outlined-button-icon-spacing: 8px;--mat-outlined-button-icon-offset: -4px;--mdc-text-button-label-text-color: white;--mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-text-button-state-layer-color: white;--mat-text-button-disabled-state-layer-color: white;--mat-text-button-ripple-color: rgba(255, 255, 255, .1);--mat-text-button-hover-state-layer-opacity: .08;--mat-text-button-focus-state-layer-opacity: .24;--mat-text-button-pressed-state-layer-opacity: .24;--mdc-filled-button-container-color: #424242;--mdc-filled-button-label-text-color: white;--mdc-filled-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mat-filled-button-state-layer-color: white;--mat-filled-button-disabled-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1);--mat-filled-button-hover-state-layer-opacity: .08;--mat-filled-button-focus-state-layer-opacity: .24;--mat-filled-button-pressed-state-layer-opacity: .24;--mdc-protected-button-container-color: #424242;--mdc-protected-button-label-text-color: white;--mdc-protected-button-disabled-container-color: rgba(255, 255, 255, .12);--mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, .2), 0px 2px 2px 0px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12);--mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, .2), 0px 0px 0px 0px rgba(0, 0, 0, .14), 0px 0px 0px 0px rgba(0, 0, 0, .12);--mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-protected-button-container-shadow-color: #000;--mat-protected-button-state-layer-color: white;--mat-protected-button-disabled-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1);--mat-protected-button-hover-state-layer-opacity: .08;--mat-protected-button-focus-state-layer-opacity: .24;--mat-protected-button-pressed-state-layer-opacity: .24;--mdc-outlined-button-disabled-outline-color: rgba(255, 255, 255, .12);--mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, .5);--mdc-outlined-button-label-text-color: white;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: white;--mat-outlined-button-disabled-state-layer-color: white;--mat-outlined-button-ripple-color: rgba(255, 255, 255, .1);--mat-outlined-button-hover-state-layer-opacity: .08;--mat-outlined-button-focus-state-layer-opacity: .24;--mat-outlined-button-pressed-state-layer-opacity: .24;--mdc-icon-button-icon-size: 24px;--mdc-icon-button-icon-color: inherit;--mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, .5);--mat-icon-button-state-layer-color: white;--mat-icon-button-disabled-state-layer-color: white;--mat-icon-button-ripple-color: rgba(255, 255, 255, .1);--mat-icon-button-hover-state-layer-opacity: .08;--mat-icon-button-focus-state-layer-opacity: .24;--mat-icon-button-pressed-state-layer-opacity: .24;--mdc-fab-container-shape: 50%;--mdc-fab-icon-size: 24px;--mdc-fab-small-container-shape: 50%;--mdc-fab-small-icon-size: 24px;--mdc-extended-fab-container-height: 48px;--mdc-extended-fab-container-shape: 24px;--mdc-fab-container-color: #424242;--mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-container-shadow-color: #000;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-disabled-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1);--mat-fab-hover-state-layer-opacity: .08;--mat-fab-focus-state-layer-opacity: .24;--mat-fab-pressed-state-layer-opacity: .24;--mat-fab-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-fab-small-container-color: #424242;--mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-fab-small-container-shadow-color: #000;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-disabled-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1);--mat-fab-small-hover-state-layer-opacity: .08;--mat-fab-small-focus-state-layer-opacity: .24;--mat-fab-small-pressed-state-layer-opacity: .24;--mat-fab-small-disabled-state-container-color: rgba(255, 255, 255, .12);--mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, .5);--mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, .2), 0px 6px 10px 0px rgba(0, 0, 0, .14), 0px 1px 18px 0px rgba(0, 0, 0, .12);--mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, .2), 0px 8px 10px 1px rgba(0, 0, 0, .14), 0px 3px 14px 2px rgba(0, 0, 0, .12);--mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, .2), 0px 12px 17px 2px rgba(0, 0, 0, .14), 0px 5px 22px 4px rgba(0, 0, 0, .12);--mdc-extended-fab-container-shadow-color: #000;--mdc-snackbar-container-shape: 4px;--mdc-snackbar-container-color: #d9d9d9;--mdc-snackbar-supporting-text-color: rgba(66, 66, 66, .87);--mat-snack-bar-button-color: rgba(0, 0, 0, .87);--mat-table-row-item-outline-width: 1px;--mat-table-background-color: #424242;--mat-table-header-headline-color: white;--mat-table-row-item-label-text-color: white;--mat-table-row-item-outline-color: rgba(255, 255, 255, .12);--mdc-circular-progress-active-indicator-width: 4px;--mdc-circular-progress-size: 48px;--mdc-circular-progress-active-indicator-color: #945f1f;--mat-badge-container-shape: 50%;--mat-badge-container-size: unset;--mat-badge-small-size-container-size: unset;--mat-badge-large-size-container-size: unset;--mat-badge-legacy-container-size: 22px;--mat-badge-legacy-small-size-container-size: 16px;--mat-badge-legacy-large-size-container-size: 28px;--mat-badge-container-offset: -11px 0;--mat-badge-small-size-container-offset: -8px 0;--mat-badge-large-size-container-offset: -14px 0;--mat-badge-container-overlap-offset: -11px;--mat-badge-small-size-container-overlap-offset: -8px;--mat-badge-large-size-container-overlap-offset: -14px;--mat-badge-container-padding: 0;--mat-badge-small-size-container-padding: 0;--mat-badge-large-size-container-padding: 0;--mat-badge-background-color: #945f1f;--mat-badge-text-color: white;--mat-badge-disabled-state-background-color: #6e6e6e;--mat-badge-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-bottom-sheet-container-shape: 4px;--mat-bottom-sheet-container-text-color: white;--mat-bottom-sheet-container-background-color: #424242;--mat-legacy-button-toggle-height: 36px;--mat-legacy-button-toggle-shape: 2px;--mat-legacy-button-toggle-focus-state-layer-opacity: 1;--mat-standard-button-toggle-shape: 4px;--mat-standard-button-toggle-hover-state-layer-opacity: .04;--mat-standard-button-toggle-focus-state-layer-opacity: .12;--mat-legacy-button-toggle-text-color: rgba(255, 255, 255, .5);--mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, .12);--mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, .7);--mat-legacy-button-toggle-selected-state-background-color: #212121;--mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-legacy-button-toggle-disabled-state-background-color: black;--mat-legacy-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-text-color: white;--mat-standard-button-toggle-background-color: #424242;--mat-standard-button-toggle-state-layer-color: white;--mat-standard-button-toggle-selected-state-background-color: #212121;--mat-standard-button-toggle-selected-state-text-color: white;--mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-standard-button-toggle-disabled-state-background-color: #424242;--mat-standard-button-toggle-disabled-selected-state-text-color: white;--mat-standard-button-toggle-disabled-selected-state-background-color: #424242;--mat-standard-button-toggle-divider-color: #595959;--mat-datepicker-calendar-container-shape: 4px;--mat-datepicker-calendar-container-touch-shape: 4px;--mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, .2), 0px 4px 5px 0px rgba(0, 0, 0, .14), 0px 1px 10px 0px rgba(0, 0, 0, .12);--mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, .2), 0px 24px 38px 3px rgba(0, 0, 0, .14), 0px 9px 46px 8px rgba(0, 0, 0, .12);--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #945f1f;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(148, 95, 31, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(148, 95, 31, .3);--mat-datepicker-toggle-active-state-icon-color: #945f1f;--mat-datepicker-calendar-date-in-range-state-background-color: rgba(148, 95, 31, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;--mat-datepicker-toggle-icon-color: white;--mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-period-button-text-color: white;--mat-datepicker-calendar-period-button-icon-color: white;--mat-datepicker-calendar-navigation-button-icon-color: white;--mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, .12);--mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, .7);--mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, .3);--mat-datepicker-calendar-date-text-color: white;--mat-datepicker-calendar-date-outline-color: transparent;--mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, .24);--mat-datepicker-range-input-separator-color: white;--mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, .5);--mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, .5);--mat-datepicker-calendar-container-background-color: #424242;--mat-datepicker-calendar-container-text-color: white;--mat-divider-width: 1px;--mat-divider-color: rgba(255, 255, 255, .12);--mat-expansion-container-shape: 4px;--mat-expansion-legacy-header-indicator-display: inline-block;--mat-expansion-header-indicator-display: none;--mat-expansion-container-background-color: #424242;--mat-expansion-container-text-color: white;--mat-expansion-actions-divider-color: rgba(255, 255, 255, .12);--mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-expansion-header-disabled-state-text-color: rgba(255, 255, 255, .3);--mat-expansion-header-text-color: white;--mat-expansion-header-description-color: rgba(255, 255, 255, .7);--mat-expansion-header-indicator-color: rgba(255, 255, 255, .7);--mat-icon-color: inherit;--mat-sidenav-container-shape: 0;--mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, .2), 0px 16px 24px 2px rgba(0, 0, 0, .14), 0px 6px 30px 5px rgba(0, 0, 0, .12);--mat-sidenav-container-width: auto;--mat-sidenav-container-divider-color: rgba(255, 255, 255, .12);--mat-sidenav-container-background-color: #424242;--mat-sidenav-container-text-color: white;--mat-sidenav-content-background-color: #303030;--mat-sidenav-content-text-color: white;--mat-sidenav-scrim-color: rgba(189, 189, 189, .6);--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #945f1f;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #945f1f;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #945f1f;--mat-stepper-header-edit-state-icon-foreground-color: white;--mat-stepper-container-color: #424242;--mat-stepper-line-color: rgba(255, 255, 255, .12);--mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, .04);--mat-stepper-header-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, .7);--mat-stepper-header-selected-state-label-text-color: white;--mat-stepper-header-error-state-label-text-color: #ff343b;--mat-stepper-header-icon-background-color: rgba(255, 255, 255, .7);--mat-stepper-header-error-state-icon-foreground-color: #ff343b;--mat-stepper-header-error-state-icon-background-color: transparent;--mat-sort-arrow-color: #c6c6c6;--mat-toolbar-container-background-color: #212121;--mat-toolbar-container-text-color: white;--mat-tree-container-background-color: #424242;--mat-tree-node-text-color: white}.rtl-container.yellow.night .mat-accent{--mat-option-selected-state-label-text-color: #eeeeee;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.yellow.night .mat-warn{--mat-option-selected-state-label-text-color: #ff343b;--mat-option-label-text-color: white;--mat-option-hover-state-layer-color: rgba(255, 255, 255, .08);--mat-option-focus-state-layer-color: rgba(255, 255, 255, .08);--mat-option-selected-state-layer-color: rgba(255, 255, 255, .08)}.rtl-container.yellow.night .mat-primary{--mat-full-pseudo-checkbox-selected-icon-color: #945f1f;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #945f1f;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.yellow.night .mat-accent{--mat-full-pseudo-checkbox-selected-icon-color: #eeeeee;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #eeeeee;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.yellow.night .mat-warn{--mat-full-pseudo-checkbox-selected-icon-color: #ff343b;--mat-full-pseudo-checkbox-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, .7);--mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #303030;--mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;--mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;--mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff343b;--mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868}.rtl-container.yellow.night .mat-elevation-z0,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z0{box-shadow:0 0 #0003,0 0 #00000024,0 0 #0000001f}.rtl-container.yellow.night .mat-elevation-z1,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z1{box-shadow:0 2px 1px -1px #0003,0 1px 1px #00000024,0 1px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z2,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z2{box-shadow:0 3px 1px -2px #0003,0 2px 2px #00000024,0 1px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z3,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z3{box-shadow:0 3px 3px -2px #0003,0 3px 4px #00000024,0 1px 8px #0000001f}.rtl-container.yellow.night .mat-elevation-z4,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z4{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-elevation-z5,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z5{box-shadow:0 3px 5px -1px #0003,0 5px 8px #00000024,0 1px 14px #0000001f}.rtl-container.yellow.night .mat-elevation-z6,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z6{box-shadow:0 3px 5px -1px #0003,0 6px 10px #00000024,0 1px 18px #0000001f}.rtl-container.yellow.night .mat-elevation-z7,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z7{box-shadow:0 4px 5px -2px #0003,0 7px 10px 1px #00000024,0 2px 16px 1px #0000001f}.rtl-container.yellow.night .mat-elevation-z8,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z8{box-shadow:0 5px 5px -3px #0003,0 8px 10px 1px #00000024,0 3px 14px 2px #0000001f}.rtl-container.yellow.night .mat-elevation-z9,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z9{box-shadow:0 5px 6px -3px #0003,0 9px 12px 1px #00000024,0 3px 16px 2px #0000001f}.rtl-container.yellow.night .mat-elevation-z10,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z10{box-shadow:0 6px 6px -3px #0003,0 10px 14px 1px #00000024,0 4px 18px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z11,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z11{box-shadow:0 6px 7px -4px #0003,0 11px 15px 1px #00000024,0 4px 20px 3px #0000001f}.rtl-container.yellow.night .mat-elevation-z12,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z12{box-shadow:0 7px 8px -4px #0003,0 12px 17px 2px #00000024,0 5px 22px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z13,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z13{box-shadow:0 7px 8px -4px #0003,0 13px 19px 2px #00000024,0 5px 24px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z14,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z14{box-shadow:0 7px 9px -4px #0003,0 14px 21px 2px #00000024,0 5px 26px 4px #0000001f}.rtl-container.yellow.night .mat-elevation-z15,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z15{box-shadow:0 8px 9px -5px #0003,0 15px 22px 2px #00000024,0 6px 28px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z16,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z16{box-shadow:0 8px 10px -5px #0003,0 16px 24px 2px #00000024,0 6px 30px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z17,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z17{box-shadow:0 8px 11px -5px #0003,0 17px 26px 2px #00000024,0 6px 32px 5px #0000001f}.rtl-container.yellow.night .mat-elevation-z18,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z18{box-shadow:0 9px 11px -5px #0003,0 18px 28px 2px #00000024,0 7px 34px 6px #0000001f}.rtl-container.yellow.night .mat-elevation-z19,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z19{box-shadow:0 9px 12px -6px #0003,0 19px 29px 2px #00000024,0 7px 36px 6px #0000001f}.rtl-container.yellow.night .mat-elevation-z20,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z20{box-shadow:0 10px 13px -6px #0003,0 20px 31px 3px #00000024,0 8px 38px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z21,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z21{box-shadow:0 10px 13px -6px #0003,0 21px 33px 3px #00000024,0 8px 40px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z22,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z22{box-shadow:0 10px 14px -6px #0003,0 22px 35px 3px #00000024,0 8px 42px 7px #0000001f}.rtl-container.yellow.night .mat-elevation-z23,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z23{box-shadow:0 11px 14px -7px #0003,0 23px 36px 3px #00000024,0 9px 44px 8px #0000001f}.rtl-container.yellow.night .mat-elevation-z24,.rtl-container.yellow.night .mat-mdc-elevation-specific.mat-elevation-z24{box-shadow:0 11px 15px -7px #0003,0 24px 38px 3px #00000024,0 9px 46px 8px #0000001f}.mat-theme-loaded-marker{display:none}.rtl-container.yellow.night .mat-mdc-progress-bar{--mdc-linear-progress-active-indicator-color: #945f1f;--mdc-linear-progress-track-color: rgba(148, 95, 31, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-accent{--mdc-linear-progress-active-indicator-color: #eeeeee;--mdc-linear-progress-track-color: rgba(238, 238, 238, .25)}.rtl-container.yellow.night .mat-mdc-progress-bar.mat-warn{--mdc-linear-progress-active-indicator-color: #ff343b;--mdc-linear-progress-track-color: rgba(255, 52, 59, .25)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mdc-filled-text-field-caret-color: #eeeeee;--mdc-filled-text-field-focus-active-indicator-color: #eeeeee;--mdc-filled-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mdc-outlined-text-field-caret-color: #eeeeee;--mdc-outlined-text-field-focus-outline-color: #eeeeee;--mdc-outlined-text-field-focus-label-text-color: rgba(238, 238, 238, .87);--mat-form-field-focus-select-arrow-color: rgba(238, 238, 238, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mdc-filled-text-field-caret-color: #ff343b;--mdc-filled-text-field-focus-active-indicator-color: #ff343b;--mdc-filled-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mdc-outlined-text-field-caret-color: #ff343b;--mdc-outlined-text-field-focus-outline-color: #ff343b;--mdc-outlined-text-field-focus-label-text-color: rgba(255, 52, 59, .87);--mat-form-field-focus-select-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-accent{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(238, 238, 238, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-form-field.mat-warn{--mat-select-panel-background-color: #424242;--mat-select-enabled-trigger-text-color: rgba(255, 255, 255, .87);--mat-select-disabled-trigger-text-color: rgba(255, 255, 255, .38);--mat-select-placeholder-text-color: rgba(255, 255, 255, .6);--mat-select-enabled-arrow-color: rgba(255, 255, 255, .54);--mat-select-disabled-arrow-color: rgba(255, 255, 255, .38);--mat-select-focused-arrow-color: rgba(255, 52, 59, .87);--mat-select-invalid-arrow-color: rgba(255, 52, 59, .87)}.rtl-container.yellow.night .mat-mdc-standard-chip{--mdc-chip-container-shape-family: rounded;--mdc-chip-container-shape-radius: 16px 16px 16px 16px;--mdc-chip-with-avatar-avatar-shape-family: rounded;--mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;--mdc-chip-with-avatar-avatar-size: 28px;--mdc-chip-with-icon-icon-size: 18px;--mdc-chip-outline-width: 0;--mdc-chip-outline-color: transparent;--mdc-chip-disabled-outline-color: transparent;--mdc-chip-focus-outline-color: transparent;--mdc-chip-hover-state-layer-opacity: .04;--mdc-chip-with-avatar-disabled-avatar-opacity: 1;--mdc-chip-flat-selected-outline-width: 0;--mdc-chip-selected-hover-state-layer-opacity: .04;--mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;--mdc-chip-with-icon-disabled-icon-opacity: 1;--mat-chip-disabled-container-opacity: .4;--mat-chip-trailing-action-opacity: .54;--mat-chip-trailing-action-focus-opacity: 1;--mat-chip-trailing-action-state-layer-color: transparent;--mat-chip-selected-trailing-action-state-layer-color: transparent;--mat-chip-trailing-action-hover-state-layer-opacity: 0;--mat-chip-trailing-action-focus-state-layer-opacity: 0}.rtl-container.yellow.night .mat-mdc-standard-chip{--mdc-chip-disabled-label-text-color: #fafafa;--mdc-chip-elevated-container-color: #595959;--mdc-chip-elevated-selected-container-color: #595959;--mdc-chip-elevated-disabled-container-color: #595959;--mdc-chip-flat-disabled-selected-container-color: #595959;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: #fafafa;--mdc-chip-selected-label-text-color: #fafafa;--mdc-chip-with-icon-icon-color: #fafafa;--mdc-chip-with-icon-disabled-icon-color: #fafafa;--mdc-chip-with-icon-selected-icon-color: #fafafa;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;--mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;--mat-chip-selected-disabled-trailing-icon-color: #fafafa;--mat-chip-selected-trailing-icon-color: #fafafa}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #945f1f;--mdc-chip-elevated-selected-container-color: #945f1f;--mdc-chip-elevated-disabled-container-color: #945f1f;--mdc-chip-flat-disabled-selected-container-color: #945f1f;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent{--mdc-chip-disabled-label-text-color: black;--mdc-chip-elevated-container-color: #eeeeee;--mdc-chip-elevated-selected-container-color: #eeeeee;--mdc-chip-elevated-disabled-container-color: #eeeeee;--mdc-chip-flat-disabled-selected-container-color: #eeeeee;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: black;--mdc-chip-selected-label-text-color: black;--mdc-chip-with-icon-icon-color: black;--mdc-chip-with-icon-disabled-icon-color: black;--mdc-chip-with-icon-selected-icon-color: black;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: black;--mdc-chip-with-trailing-icon-trailing-icon-color: black;--mat-chip-selected-disabled-trailing-icon-color: black;--mat-chip-selected-trailing-icon-color: black}.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,.rtl-container.yellow.night .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn{--mdc-chip-disabled-label-text-color: white;--mdc-chip-elevated-container-color: #ff343b;--mdc-chip-elevated-selected-container-color: #ff343b;--mdc-chip-elevated-disabled-container-color: #ff343b;--mdc-chip-flat-disabled-selected-container-color: #ff343b;--mdc-chip-focus-state-layer-color: white;--mdc-chip-hover-state-layer-color: white;--mdc-chip-selected-hover-state-layer-color: white;--mdc-chip-focus-state-layer-opacity: .12;--mdc-chip-selected-focus-state-layer-color: white;--mdc-chip-selected-focus-state-layer-opacity: .12;--mdc-chip-label-text-color: white;--mdc-chip-selected-label-text-color: white;--mdc-chip-with-icon-icon-color: white;--mdc-chip-with-icon-disabled-icon-color: white;--mdc-chip-with-icon-selected-icon-color: white;--mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;--mdc-chip-with-trailing-icon-trailing-icon-color: white;--mat-chip-selected-disabled-trailing-icon-color: white;--mat-chip-selected-trailing-icon-color: white}.rtl-container.yellow.night .mat-mdc-slide-toggle{--mdc-form-field-label-text-color: white}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-accent{--mdc-switch-selected-focus-state-layer-color: #eeeeee;--mdc-switch-selected-handle-color: #eeeeee;--mdc-switch-selected-hover-state-layer-color: #eeeeee;--mdc-switch-selected-pressed-state-layer-color: #eeeeee;--mdc-switch-selected-focus-handle-color: #eeeeee;--mdc-switch-selected-hover-handle-color: #eeeeee;--mdc-switch-selected-pressed-handle-color: #eeeeee;--mdc-switch-selected-focus-track-color: #999999;--mdc-switch-selected-hover-track-color: #999999;--mdc-switch-selected-pressed-track-color: #999999;--mdc-switch-selected-track-color: #999999}.rtl-container.yellow.night .mat-mdc-slide-toggle.mat-warn{--mdc-switch-selected-focus-state-layer-color: #c84d63;--mdc-switch-selected-handle-color: #c84d63;--mdc-switch-selected-hover-state-layer-color: #c84d63;--mdc-switch-selected-pressed-state-layer-color: #c84d63;--mdc-switch-selected-focus-handle-color: #d88090;--mdc-switch-selected-hover-handle-color: #d88090;--mdc-switch-selected-pressed-handle-color: #d88090;--mdc-switch-selected-focus-track-color: #a9001c;--mdc-switch-selected-hover-track-color: #a9001c;--mdc-switch-selected-pressed-track-color: #a9001c;--mdc-switch-selected-track-color: #a9001c}.rtl-container.yellow.night .mat-mdc-radio-button{--mdc-form-field-label-text-color: white}.rtl-container.yellow.night .mat-mdc-radio-button.mat-primary{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #945f1f;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-mdc-radio-button.mat-accent{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #eeeeee;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-mdc-radio-button.mat-warn{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b;--mat-radio-ripple-color: white;--mat-radio-checked-ripple-color: #ff343b;--mat-radio-disabled-label-color: rgba(255, 255, 255, .5)}.rtl-container.yellow.night .mat-accent{--mat-slider-ripple-color: #eeeeee;--mat-slider-hover-state-layer-color: rgba(238, 238, 238, .05);--mat-slider-focus-state-layer-color: rgba(238, 238, 238, .2);--mdc-slider-handle-color: #eeeeee;--mdc-slider-focus-handle-color: #eeeeee;--mdc-slider-hover-handle-color: #eeeeee;--mdc-slider-active-track-color: #eeeeee;--mdc-slider-inactive-track-color: #eeeeee;--mdc-slider-with-tick-marks-inactive-container-color: #eeeeee;--mdc-slider-with-tick-marks-active-container-color: black}.rtl-container.yellow.night .mat-warn{--mat-slider-ripple-color: #ff343b;--mat-slider-hover-state-layer-color: rgba(255, 52, 59, .05);--mat-slider-focus-state-layer-color: rgba(255, 52, 59, .2);--mdc-slider-handle-color: #ff343b;--mdc-slider-focus-handle-color: #ff343b;--mdc-slider-hover-handle-color: #ff343b;--mdc-slider-active-track-color: #ff343b;--mdc-slider-inactive-track-color: #ff343b;--mdc-slider-with-tick-marks-inactive-container-color: #ff343b;--mdc-slider-with-tick-marks-active-container-color: white}.rtl-container.yellow.night .mdc-list-item__start,.rtl-container.yellow.night .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #945f1f;--mdc-radio-selected-hover-icon-color: #945f1f;--mdc-radio-selected-icon-color: #945f1f;--mdc-radio-selected-pressed-icon-color: #945f1f}.rtl-container.yellow.night .mat-accent .mdc-list-item__start,.rtl-container.yellow.night .mat-accent .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #eeeeee;--mdc-radio-selected-hover-icon-color: #eeeeee;--mdc-radio-selected-icon-color: #eeeeee;--mdc-radio-selected-pressed-icon-color: #eeeeee}.rtl-container.yellow.night .mat-warn .mdc-list-item__start,.rtl-container.yellow.night .mat-warn .mdc-list-item__end{--mdc-radio-disabled-selected-icon-color: white;--mdc-radio-disabled-unselected-icon-color: white;--mdc-radio-unselected-hover-icon-color: #eeeeee;--mdc-radio-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-radio-selected-focus-icon-color: #ff343b;--mdc-radio-selected-hover-icon-color: #ff343b;--mdc-radio-selected-icon-color: #ff343b;--mdc-radio-selected-pressed-icon-color: #ff343b}.rtl-container.yellow.night .mat-mdc-list-option{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-accent{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: black;--mdc-checkbox-selected-focus-icon-color: #eeeeee;--mdc-checkbox-selected-hover-icon-color: #eeeeee;--mdc-checkbox-selected-icon-color: #eeeeee;--mdc-checkbox-selected-pressed-icon-color: #eeeeee;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #eeeeee;--mdc-checkbox-selected-hover-state-layer-color: #eeeeee;--mdc-checkbox-selected-pressed-state-layer-color: #eeeeee;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-option.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start{color:#945f1f}.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,.rtl-container.yellow.night .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end{opacity:1}.rtl-container.yellow.night .mat-mdc-tab-group,.rtl-container.yellow.night .mat-mdc-tab-nav-bar{--mdc-tab-indicator-active-indicator-color: #945f1f;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #945f1f;--mat-tab-header-active-ripple-color: #945f1f;--mat-tab-header-inactive-ripple-color: #945f1f;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #945f1f;--mat-tab-header-active-hover-label-text-color: #945f1f;--mat-tab-header-active-focus-indicator-color: #945f1f;--mat-tab-header-active-hover-indicator-color: #945f1f}.rtl-container.yellow.night .mat-mdc-tab-group.mat-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-accent{--mdc-tab-indicator-active-indicator-color: #eeeeee;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #eeeeee;--mat-tab-header-active-ripple-color: #eeeeee;--mat-tab-header-inactive-ripple-color: #eeeeee;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #eeeeee;--mat-tab-header-active-hover-label-text-color: #eeeeee;--mat-tab-header-active-focus-indicator-color: #eeeeee;--mat-tab-header-active-hover-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-mdc-tab-group.mat-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-warn{--mdc-tab-indicator-active-indicator-color: #ff343b;--mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, .5);--mat-tab-header-pagination-icon-color: white;--mat-tab-header-inactive-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-label-text-color: #ff343b;--mat-tab-header-active-ripple-color: #ff343b;--mat-tab-header-inactive-ripple-color: #ff343b;--mat-tab-header-inactive-focus-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-inactive-hover-label-text-color: rgba(255, 255, 255, .6);--mat-tab-header-active-focus-label-text-color: #ff343b;--mat-tab-header-active-hover-label-text-color: #ff343b;--mat-tab-header-active-focus-indicator-color: #ff343b;--mat-tab-header-active-hover-indicator-color: #ff343b}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-primary,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-primary{--mat-tab-header-with-background-background-color: #945f1f;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-accent,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-accent{--mat-tab-header-with-background-background-color: #eeeeee;--mat-tab-header-with-background-foreground-color: black}.rtl-container.yellow.night .mat-mdc-tab-group.mat-background-warn,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-background-warn{--mat-tab-header-with-background-background-color: #ff343b;--mat-tab-header-with-background-foreground-color: white}.rtl-container.yellow.night .mat-mdc-checkbox{--mdc-form-field-label-text-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-primary{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #945f1f;--mdc-checkbox-selected-hover-icon-color: #945f1f;--mdc-checkbox-selected-icon-color: #945f1f;--mdc-checkbox-selected-pressed-icon-color: #945f1f;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #945f1f;--mdc-checkbox-selected-hover-state-layer-color: #945f1f;--mdc-checkbox-selected-pressed-state-layer-color: #945f1f;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-checkbox.mat-warn{--mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, .38);--mdc-checkbox-selected-checkmark-color: white;--mdc-checkbox-selected-focus-icon-color: #ff343b;--mdc-checkbox-selected-hover-icon-color: #ff343b;--mdc-checkbox-selected-icon-color: #ff343b;--mdc-checkbox-selected-pressed-icon-color: #ff343b;--mdc-checkbox-unselected-focus-icon-color: #eeeeee;--mdc-checkbox-unselected-hover-icon-color: #eeeeee;--mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-unselected-pressed-icon-color: rgba(255, 255, 255, .54);--mdc-checkbox-selected-focus-state-layer-color: #ff343b;--mdc-checkbox-selected-hover-state-layer-color: #ff343b;--mdc-checkbox-selected-pressed-state-layer-color: #ff343b;--mdc-checkbox-unselected-focus-state-layer-color: white;--mdc-checkbox-unselected-hover-state-layer-color: white;--mdc-checkbox-unselected-pressed-state-layer-color: white}.rtl-container.yellow.night .mat-mdc-button.mat-primary{--mdc-text-button-label-text-color: #945f1f;--mat-text-button-state-layer-color: #945f1f;--mat-text-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-button.mat-accent{--mdc-text-button-label-text-color: #eeeeee;--mat-text-button-state-layer-color: #eeeeee;--mat-text-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-button.mat-warn{--mdc-text-button-label-text-color: #ff343b;--mat-text-button-state-layer-color: #ff343b;--mat-text-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-primary{--mdc-filled-button-container-color: #945f1f;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-accent{--mdc-filled-button-container-color: #eeeeee;--mdc-filled-button-label-text-color: black;--mat-filled-button-state-layer-color: black;--mat-filled-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-unelevated-button.mat-warn{--mdc-filled-button-container-color: #ff343b;--mdc-filled-button-label-text-color: white;--mat-filled-button-state-layer-color: white;--mat-filled-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-primary{--mdc-protected-button-container-color: #945f1f;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-accent{--mdc-protected-button-container-color: #eeeeee;--mdc-protected-button-label-text-color: black;--mat-protected-button-state-layer-color: black;--mat-protected-button-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-raised-button.mat-warn{--mdc-protected-button-container-color: #ff343b;--mdc-protected-button-label-text-color: white;--mat-protected-button-state-layer-color: white;--mat-protected-button-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-primary{--mdc-outlined-button-label-text-color: #945f1f;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #945f1f;--mat-outlined-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-accent{--mdc-outlined-button-label-text-color: #eeeeee;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #eeeeee;--mat-outlined-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-outlined-button.mat-warn{--mdc-outlined-button-label-text-color: #ff343b;--mdc-outlined-button-outline-color: rgba(255, 255, 255, .12);--mat-outlined-button-state-layer-color: #ff343b;--mat-outlined-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-primary{--mdc-icon-button-icon-color: #945f1f;--mat-icon-button-state-layer-color: #945f1f;--mat-icon-button-ripple-color: rgba(148, 95, 31, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-accent{--mdc-icon-button-icon-color: #eeeeee;--mat-icon-button-state-layer-color: #eeeeee;--mat-icon-button-ripple-color: rgba(238, 238, 238, .1)}.rtl-container.yellow.night .mat-mdc-icon-button.mat-warn{--mdc-icon-button-icon-color: #ff343b;--mat-icon-button-state-layer-color: #ff343b;--mat-icon-button-ripple-color: rgba(255, 52, 59, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-primary{--mdc-fab-container-color: #945f1f;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-accent{--mdc-fab-container-color: #eeeeee;--mat-fab-foreground-color: black;--mat-fab-state-layer-color: black;--mat-fab-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-fab.mat-warn{--mdc-fab-container-color: #ff343b;--mat-fab-foreground-color: white;--mat-fab-state-layer-color: white;--mat-fab-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-mini-fab.mat-primary{--mdc-fab-small-container-color: #945f1f;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-mdc-mini-fab.mat-accent{--mdc-fab-small-container-color: #eeeeee;--mat-fab-small-foreground-color: black;--mat-fab-small-state-layer-color: black;--mat-fab-small-ripple-color: rgba(0, 0, 0, .1)}.rtl-container.yellow.night .mat-mdc-mini-fab.mat-warn{--mdc-fab-small-container-color: #ff343b;--mat-fab-small-foreground-color: white;--mat-fab-small-state-layer-color: white;--mat-fab-small-ripple-color: rgba(255, 255, 255, .1)}.rtl-container.yellow.night .mat-accent{--mdc-circular-progress-active-indicator-color: #eeeeee}.rtl-container.yellow.night .mat-warn{--mdc-circular-progress-active-indicator-color: #ff343b}.rtl-container.yellow.night .mat-badge-accent{--mat-badge-background-color: #eeeeee;--mat-badge-text-color: black}.rtl-container.yellow.night .mat-badge-warn{--mat-badge-background-color: #ff343b;--mat-badge-text-color: white}.rtl-container.yellow.night .mat-datepicker-content.mat-accent{--mat-datepicker-calendar-date-selected-state-text-color: black;--mat-datepicker-calendar-date-selected-state-background-color: #eeeeee;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(238, 238, 238, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: black;--mat-datepicker-calendar-date-focus-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(238, 238, 238, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(238, 238, 238, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.night .mat-datepicker-content.mat-warn{--mat-datepicker-calendar-date-selected-state-text-color: white;--mat-datepicker-calendar-date-selected-state-background-color: #ff343b;--mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 52, 59, .4);--mat-datepicker-calendar-date-today-selected-state-outline-color: white;--mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 52, 59, .3);--mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 52, 59, .2);--mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, .2);--mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;--mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-accent{--mat-datepicker-toggle-active-state-icon-color: #eeeeee}.rtl-container.yellow.night .mat-datepicker-toggle-active.mat-warn{--mat-datepicker-toggle-active-state-icon-color: #ff343b}.rtl-container.yellow.night .mat-icon.mat-primary{--mat-icon-color: #945f1f}.rtl-container.yellow.night .mat-icon.mat-accent{--mat-icon-color: #eeeeee}.rtl-container.yellow.night .mat-icon.mat-warn{--mat-icon-color: #ff343b}.rtl-container.yellow.night .mat-step-header.mat-accent{--mat-stepper-header-icon-foreground-color: black;--mat-stepper-header-selected-state-icon-background-color: #eeeeee;--mat-stepper-header-selected-state-icon-foreground-color: black;--mat-stepper-header-done-state-icon-background-color: #eeeeee;--mat-stepper-header-done-state-icon-foreground-color: black;--mat-stepper-header-edit-state-icon-background-color: #eeeeee;--mat-stepper-header-edit-state-icon-foreground-color: black}.rtl-container.yellow.night .mat-step-header.mat-warn{--mat-stepper-header-icon-foreground-color: white;--mat-stepper-header-selected-state-icon-background-color: #ff343b;--mat-stepper-header-selected-state-icon-foreground-color: white;--mat-stepper-header-done-state-icon-background-color: #ff343b;--mat-stepper-header-done-state-icon-foreground-color: white;--mat-stepper-header-edit-state-icon-background-color: #ff343b;--mat-stepper-header-edit-state-icon-foreground-color: white}.rtl-container.yellow.night .mat-toolbar.mat-primary{--mat-toolbar-container-background-color: #945f1f;--mat-toolbar-container-text-color: white}.rtl-container.yellow.night .mat-toolbar.mat-accent{--mat-toolbar-container-background-color: #eeeeee;--mat-toolbar-container-text-color: black}.rtl-container.yellow.night .mat-toolbar.mat-warn{--mat-toolbar-container-background-color: #ff343b;--mat-toolbar-container-text-color: white}.rtl-container.yellow.night .mat-primary{color:#ffa164!important}.rtl-container.yellow.night .mat-sidenav-container .mat-sidenav-content{background-color:#050505}.rtl-container.yellow.night .mat-sidenav-container .mat-sidenav-content .mat-mdc-card.mdc-card,.rtl-container.yellow.night .sidenav.mat-drawer{background-color:#121212}.rtl-container.yellow.night .rtl-top-toolbar{border-bottom:1px solid #424242;padding:0 2.5rem 0 1rem}.rtl-container.yellow.night .bg-primary{background-color:#945f1f;color:#fff}.rtl-container.yellow.night .mat-mdc-button-base.mat-mdc-unelevated-button.mat-primary{color:#fff!important}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text{color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label.mdc-tab__text-label-active{color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label.mdc-tab__text-label-active .tab-badge .mat-badge-content{background:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#121212;background:#ffffffb3}.rtl-container.yellow.night .currency-icon path,.rtl-container.yellow.night .currency-icon polygon{fill:#fff}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#fff}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-warn-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#ff343b}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container{max-width:90vw!important;font-weight:700}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mdc-snackbar__surface{max-width:40vw;background-color:#424242}.rtl-container.yellow.night .rtl-accent-snack-bar.mat-mdc-snack-bar-container .mat-mdc-snack-bar-label.mdc-snackbar__label{max-width:40vw;color:#eee}.rtl-container.yellow.night .mat-mdc-tab-group.mat-primary .mat-ink-bar,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#ffa164}.rtl-container.yellow.night .cc-data-block .cc-data-title{color:#ffa164}.rtl-container.yellow.night .mat-stroked-button.mat-primary{border-color:#ffa164;color:#ffa164}.rtl-container.yellow.night .mat-stroked-button.mat-primary:hover .mat-button-focus-overlay{background-color:#fff;opacity:.09}.rtl-container.yellow.night .mat-stroked-button.mat-accent{border-color:#eee}.rtl-container.yellow.night .mat-stroked-button.mat-warn{border-color:#ff343b}.rtl-container.yellow.night .active-link,.rtl-container.yellow.night .active-link .fa-icon-small,.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active,.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active .fa-icon-small{color:#ffa164;font-weight:500;cursor:pointer;fill:#ffa164}.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-title{font-weight:500;color:#fff}.rtl-container.yellow.night .help-expansion .mat-expansion-indicator:after,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-content,.rtl-container.yellow.night .help-expansion .mat-expansion-panel-header-description{color:#fff}.rtl-container.yellow.night .mat-mdc-select-panel.mdc-menu-surface,.rtl-container.yellow.night .mat-mdc-menu-panel.mdc-menu-surface,.rtl-container.yellow.night .mat-expansion-panel,.rtl-container.yellow.night .mat-mdc-dialog-container.mdc-dialog,.rtl-container.yellow.night .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.yellow.night .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.yellow.night .mdc-data-table__header-cell,.rtl-container.yellow.night .mat-mdc-paginator,.rtl-container.yellow.night .mat-mdc-form-field-focus-overlay,.rtl-container.yellow.night .mdc-text-field--disabled.mdc-text-field--filled{background-color:#121212}.rtl-container.yellow.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,.rtl-container.yellow.night .mdc-text-field--filled:not(.mdc-text-field--disabled){background-color:#121212;color:#ffa164}.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-surface.mdc-dialog__surface,.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container,.rtl-container.yellow.night .cdk-overlay-pane.spinner-dialog-panel .mat-mdc-dialog-container.mdc-dialog{background-color:transparent}.rtl-container.yellow.night .svg-donation{opacity:1!important}.rtl-container.yellow.night .mat-mdc-menu-item:hover .mdc-list-item__primary-text .svg-donation{color:#ffa164!important}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small{color:#ffa164!important}.rtl-container.yellow.night .mdc-text-field--filled .mdc-line-ripple:after{border-bottom-color:#ffa164}.rtl-container.yellow.night .mdc-tab__text-label .tab-badge .mat-badge-content{color:#fff;background:#945f1f}.rtl-container.yellow.night a{color:#ffa164!important;cursor:pointer}.rtl-container.yellow.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button{border-color:#ffffff80}.rtl-container.yellow.night button.mdc-button.mat-mdc-button-base.mat-mdc-outlined-button.mat-warn{border-color:#ff343b}.rtl-container.yellow.night .mat-mdc-select-arrow svg{fill:#fff}.rtl-container.yellow.night .mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input,.rtl-container.yellow.night .mat-mdc-select-placeholder,.rtl-container.yellow.night .mat-mdc-select-value,.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab__text-label{color:#fff}.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled) .mdc-tab-indicator__content--underline{border-color:#ffa164}.rtl-container.yellow.night .mdc-list-item--selected .mdc-list-item__primary-text,.rtl-container.yellow.night .mdc-list-item--activated .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-tab:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.yellow.night .mat-mdc-tab-link:not(.mat-mdc-tab-disabled).mdc-tab--active .mdc-tab__text-label,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled),.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover),.rtl-container.yellow.night .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){color:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover,.rtl-container.yellow.night .mat-select-panel .mat-option:hover,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled),.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled){color:#ffa164;cursor:pointer;background:#ffffff0f}.rtl-container.yellow.night .mat-tree-node:hover .ng-fa-icon,.rtl-container.yellow.night .mat-tree-node:hover .mat-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .ng-fa-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .mat-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .ng-fa-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .mat-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .ng-fa-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .mat-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .ng-fa-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .mat-icon{color:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover .sidenav-img svg,.rtl-container.yellow.night .mat-tree-node:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .sidenav-img svg,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .sidenav-img svg,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .sidenav-img svg,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon-fill,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .sidenav-img svg,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon-fill{fill:#ffa164}.rtl-container.yellow.night .mat-tree-node:hover .boltz-icon,.rtl-container.yellow.night .mat-nested-tree-node-parent:hover .boltz-icon,.rtl-container.yellow.night .mat-select-panel .mat-option:hover .boltz-icon,.rtl-container.yellow.night .mat-menu-panel .mat-menu-content .mat-menu-item:hover .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-active .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option.mat-selected.mat-active .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:hover:not(.mat-option-disabled) .boltz-icon,.rtl-container.yellow.night .mat-autocomplete-panel .mat-option:focus:not(.mat-option-disabled) .boltz-icon{stroke:#ffa164}.rtl-container.yellow.night .mat-tree-node .sidenav-img,.rtl-container.yellow.night .mat-nested-tree-node .sidenav-img,.rtl-container.yellow.night .mat-nested-tree-node-parent .sidenav-img,.rtl-container.yellow.night .page-title-container .page-title-img,.rtl-container.yellow.night svg.top-icon-small{fill:#fff}.rtl-container.yellow.night .selected-color{border-color:#b48f62}.rtl-container.yellow.night .mat-progress-bar-fill:after{background-color:#8c571b}.rtl-container.yellow.night .chart-legend .legend-label:hover,.rtl-container.yellow.night .chart-legend .legend-label .active .legend-label-text{color:#fff!important}.rtl-container.yellow.night .cdk-overlay-container .cdk-overlay-dark-backdrop{background:#0009}.rtl-container.yellow.night .cdk-overlay-container .cdk-global-overlay-wrapper .mat-dialog-container .spinner-container{color:#ffa164}.rtl-container.yellow.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__determinate-circle,.rtl-container.yellow.night .cdk-overlay-container .mat-mdc-progress-spinner .mdc-circular-progress__indeterminate-circle-graphic{stroke:#ffa164}.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#ffa164}.rtl-container.yellow.night .mat-select-panel{background-color:#121212}.rtl-container.yellow.night .mat-tree{background:#121212}.rtl-container.yellow.night h4{color:#ffa164}.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title,.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title .ng-fa-icon{color:#fff}.rtl-container.yellow.night .dashboard-info-title{color:#ffa164}.rtl-container.yellow.night .dashboard-info-value,.rtl-container.yellow.night .dashboard-capacity-header{color:#fff}.rtl-container.yellow.night .mat-progress-bar.this-channel-bar .mat-progress-bar-fill:after{background-color:#444}.rtl-container.yellow.night .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer{background-color:#bbb}.rtl-container.yellow.night .color-primary{color:#ffa164!important}.rtl-container.yellow.night .dot-primary{background-color:#ffa164!important}.rtl-container.yellow.night .dot-primary-lighter{background-color:#945f1f!important}.rtl-container.yellow.night .mat-stepper-vertical{background-color:#121212}.rtl-container.yellow.night .spinner-container h2{color:#ffa164}.rtl-container.yellow.night table.mat-mdc-table thead tr th{color:#fff}.rtl-container.yellow.night svg .boltz-icon{stroke:#fff;stroke-width:4}.rtl-container.yellow.night svg .boltz-icon-fill{fill:#fff}.rtl-container.yellow.night svg .stroke-color-thicker{stroke:#b6b6b6;stroke-width:15.3333;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thick{stroke:#b6b6b6;stroke-width:13.4583;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color{stroke:#b6b6b6;stroke-width:12.5;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thin{stroke:#b6b6b6;stroke-width:11.625;stroke-miterlimit:10;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thiner{stroke:#b6b6b6;stroke-width:10.125;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-thinest{stroke:#b6b6b6;stroke-width:9.40381;stroke-linecap:"round";stroke-linejoin:"round"}.rtl-container.yellow.night svg .stroke-color-primary-lighter{stroke:#b48f62}.rtl-container.yellow.night svg .stroke-color-primary{stroke:#945f1f}.rtl-container.yellow.night svg .fill-color-boltz-bk{fill:#171717}.rtl-container.yellow.night svg .fill-color-0{fill:#171717}.rtl-container.yellow.night svg .fill-color-1{fill:#232323}.rtl-container.yellow.night svg .fill-color-2{fill:#222}.rtl-container.yellow.night svg .fill-color-3{fill:#3a3a3a}.rtl-container.yellow.night svg .fill-color-4{fill:#383838}.rtl-container.yellow.night svg .fill-color-5{fill:#555}.rtl-container.yellow.night svg .fill-color-6{fill:#5b5b5b}.rtl-container.yellow.night svg .fill-color-7{fill:#202020}.rtl-container.yellow.night svg .fill-color-8{fill:#242424}.rtl-container.yellow.night svg .fill-color-9{fill:#262626}.rtl-container.yellow.night svg .fill-color-10{fill:#1a1a1a}.rtl-container.yellow.night svg .fill-color-11{fill:#171717}.rtl-container.yellow.night svg .fill-color-12{fill:#ccc}.rtl-container.yellow.night svg .fill-color-13{fill:#adadad}.rtl-container.yellow.night svg .fill-color-14{fill:#ababab}.rtl-container.yellow.night svg .fill-color-15{fill:#b6b6b6}.rtl-container.yellow.night svg .fill-color-16{fill:#707070}.rtl-container.yellow.night svg .fill-color-17{fill:#7c7c7c}.rtl-container.yellow.night svg .fill-color-18{fill:#5a5a5a}.rtl-container.yellow.night svg .fill-color-19{fill:#4a4a4a}.rtl-container.yellow.night svg .fill-color-20{fill:#9f9f9f}.rtl-container.yellow.night svg .fill-color-21{fill:#cacaca}.rtl-container.yellow.night svg .fill-color-22{fill:#7f7f7f}.rtl-container.yellow.night svg .fill-color-23{fill:#777}.rtl-container.yellow.night svg .fill-color-24{fill:#5e5e5e}.rtl-container.yellow.night svg .fill-color-25{fill:#252525}.rtl-container.yellow.night svg .fill-color-26{fill:#6f6f6f}.rtl-container.yellow.night svg .fill-color-27{fill:#000}.rtl-container.yellow.night svg .fill-color-28{fill:#313131}.rtl-container.yellow.night svg .fill-color-29{fill:#e7e7e7}.rtl-container.yellow.night svg .fill-color-30{fill:#fff}.rtl-container.yellow.night svg .fill-color-31{fill:#945f1f}.rtl-container.yellow.night svg .fill-color-green-light{fill:#6ecb48}.rtl-container.yellow.night svg .fill-color-primary{fill:#945f1f}.rtl-container.yellow.night svg .fill-color-primary-lighter{fill:#b48f62}.rtl-container.yellow.night svg .fill-color-primary-darker{fill:#ffa164}.rtl-container.yellow.night .mat-select-value,.rtl-container.yellow.night .mat-select-arrow{color:#fff}.rtl-container.yellow.night .mat-form-field-disabled .mat-form-field-underline{background-color:transparent;background-image:linear-gradient(90deg,rgba(0,0,0,.42) 0,rgba(0,0,0,.42) 33%,transparent 0);background-size:5px 100%;height:1.4px}.rtl-container.yellow.night .mat-form-field-disabled .mat-form-field-flex{background-color:#ffffff0f}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled{opacity:1}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-content{background-color:#ffffff0f}.rtl-container.yellow.night .mat-slide-toggle.mat-disabled .mat-slide-toggle-label{cursor:not-allowed!important}.rtl-container.yellow.night .mat-button.mat-primary,.rtl-container.yellow.night .mat-icon-button.mat-primary,.rtl-container.yellow.night .mat-stroked-button.mat-primary{color:#ffa164}.rtl-container.yellow.night tr.alert.alert-warn .mat-cell,.rtl-container.yellow.night tr.alert.alert-warn .mat-header-cell,.rtl-container.yellow.night tr.alert.alert-warn .mat-footer-cell{color:#856404}.rtl-container.yellow.night .material-icons.info-icon{font-size:100%;color:#ffa164}.rtl-container.yellow.night .material-icons.info-icon.info-icon-primary{color:#ffa164}.rtl-container.yellow.night .material-icons.info-icon.info-icon-text{color:#fff}.rtl-container.yellow.night ngx-charts-bar-vertical.one-color .ngx-charts .chart.bar-chart g g path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.one-color .ngx-charts .chart.bar-chart g g path{fill:#ffa164}.rtl-container.yellow.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(odd) path{fill:#774312}.rtl-container.yellow.night ngx-charts-bar-vertical.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path,.rtl-container.yellow.night ngx-charts-bar-vertical-2d.two-color .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path{fill:#ffa164}.rtl-container.yellow.night .mat-expansion-panel.flat-expansion-panel{box-shadow:none;padding:0;border-radius:2px;background:none}.rtl-container.yellow.night .mat-progress-bar-buffer{background-color:#dfcfbc}.rtl-container.yellow.night .foreground-text{color:#fff!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all}.rtl-container.yellow.night .foreground-secondary-text{color:#ffffffb3!important;white-space:pre-line;overflow-wrap:break-word;word-break:break-all;min-height:1.5rem}.rtl-container.yellow.night .foreground.mat-progress-spinner circle,.rtl-container.yellow.night .foreground.mat-spinner circle{stroke:#fff}.rtl-container.yellow.night .mat-toolbar-row,.rtl-container.yellow.night .mat-toolbar-single-row{height:4rem}.rtl-container.yellow.night .lnd-info{border-bottom:1px solid rgba(255,255,255,.12)}.rtl-container.yellow.night a{color:#945f1f}.rtl-container.yellow.night .horizontal-button .fa-icon-small{fill:#fff;color:#fff}.rtl-container.yellow.night .h-active-link{border-bottom:2px solid white}.rtl-container.yellow.night .mat-icon-36{color:#ffffffb3}.rtl-container.yellow.night .mat-primary .mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple),.rtl-container.yellow.night .mat-primary .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:none;font-weight:900}.rtl-container.yellow.night .validation-error-icon{position:relative;top:2px;left:4px}.rtl-container.yellow.night .genseed-message{width:10%;color:#945f1f}.rtl-container.yellow.night .border-primary{border:1px solid #945f1f}.rtl-container.yellow.night .border-accent{border:1px solid #eeeeee}.rtl-container.yellow.night .border-warn{border:1px solid #ff343b}.rtl-container.yellow.night .material-icons.primary{color:#945f1f}.rtl-container.yellow.night .material-icons.accent{color:#eee}.rtl-container.yellow.night .validation-error-message{position:relative;margin-top:.4px;width:100%;color:#ff343b}.rtl-container.yellow.night .mat-vertical-content{padding:0 0 .75rem}.rtl-container.yellow.night .row-disabled{background-color:gray}.rtl-container.yellow.night .row-disabled .mat-icon{cursor:not-allowed}.rtl-container.yellow.night .mat-mdc-card-content,.rtl-container.yellow.night .mat-mdc-card-subtitle,.rtl-container.yellow.night .mat-mdc-card-title{color:#ffffffb3}.rtl-container.yellow.night .mat-menu-panel{min-width:4rem}.rtl-container.yellow.night .horizontal-button{height:4rem;border-radius:0}.rtl-container.yellow.night .horizontal-button:hover{background:#b48f62;color:#eee}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show{line-height:1.5rem;border-radius:1 1.25rem;background-color:#fff;color:#945f1f}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show:hover{box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night .mat-stroked-button.mat-primary.horizontal-button-show:hover .mat-button-focus-overlay{opacity:.09}.rtl-container.yellow.night .mat-dialog-container{padding:0;overflow:hidden;border-radius:2px}.rtl-container.yellow.night .mat-button,.rtl-container.yellow.night .mat-icon-button,.rtl-container.yellow.night .mat-stroked-button,.rtl-container.yellow.night .mat-mdc-unelevated-button{border-radius:2px}.rtl-container.yellow.night .cc-data-block .cc-data-title{font-weight:500;min-width:180px}.rtl-container.yellow.night .cc-data-block .cc-data-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:unset}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .cc-data-block .cc-data-title{min-width:100px}}.rtl-container.yellow.night .cc-data-block .cc-data-value{color:#fff}.rtl-container.yellow.night .mat-cell,.rtl-container.yellow.night .mat-header-cell,.rtl-container.yellow.night .mat-footer-cell{border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#ffffff1f}.rtl-container.yellow.night .mdc-list-item__primary-text{place-content:flex-start;align-items:center;flex-direction:row;box-sizing:border-box;display:flex}.rtl-container.yellow.night .svg-donation{opacity:.67;width:1.5rem;margin-right:10px}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled),.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]),.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]){color:#945f1f}.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:hover:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option:focus:not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mat-mdc-option-active .svg-donation,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item--selected:not(.mat-mdc-option-multiple):not(.mdc-list-item--disabled) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item:hover:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-program-focused:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item.cdk-keyboard-focused:not([disabled]) .svg-donation,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .mdc-list-item__primary-text,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .fa-icon-small,.rtl-container.yellow.night .mat-mdc-menu-item-highlighted:not([disabled]) .svg-donation{color:#945f1f;opacity:1}.rtl-container.yellow.night table.mat-mdc-table{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.yellow.night table.mat-mdc-table thead tr th:not(:first-of-type),.rtl-container.yellow.night table.mat-mdc-table tbody tr td:not(:first-of-type){padding-left:.625rem}@media only screen and (max-width: 75em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night table.mat-mdc-table tbody tr td.mat-mdc-cell{white-space:unset}}.rtl-container.yellow.night table.mat-mdc-table tfoot tr td p{padding-left:1.5rem}.rtl-container.yellow.night table.mat-mdc-table.error-border{border:1px solid red;box-shadow:0 3px 1px -2px #f003,0 2px 2px #ff000024,0 1px 5px #ff00001f!important}.rtl-container.yellow.night .bordered-box{border:1px solid rgba(255,255,255,.12);border-radius:2px;background:none}.rtl-container.yellow.night .bordered-box.read-only{background-color:#0000000a}.rtl-container.yellow.night .mat-expansion-panel{border:1px solid rgba(255,255,255,.12)}.rtl-container.yellow.night .mat-expansion-panel.error-border{border:1px solid red}.rtl-container.yellow.night .more-button{color:#fff}.rtl-container.yellow.night .mat-icon-button.more-button-short{height:1rem;line-height:1rem}.rtl-container.yellow.night .mat-icon-button.more-button-short .mat-icon{line-height:1rem}.rtl-container.yellow.night .dashboard-tabs-group .mdc-tab__text-label:last-child{padding-right:0}.rtl-container.yellow.night .dashboard-tabs-group .mdc-tab__text-label:last-child .more-button{position:absolute;right:.25rem;top:.25rem;max-width:1.5rem}.rtl-container.yellow.night .modal-info-header{color:#fff;font-weight:500;padding:.5rem .5rem .5rem 1rem}@media only screen and (max-width: 75em){.rtl-container.yellow.night .modal-info-header{padding:.5rem}}@media only screen and (max-width: 56.25em){.rtl-container.yellow.night .modal-info-header{padding:.5rem .5rem .5rem .25rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .modal-info-header{padding:.5rem .5rem .5rem .125rem}}.rtl-container.yellow.night .modal-info-header .page-title-img svg{color:#fff}.rtl-container.yellow.night .mat-badge-medium.mat-badge-above .mat-badge-content{top:-1px}.rtl-container.yellow.night .tab-badge .mat-badge-content{font-size:90%;padding-bottom:2px}.rtl-container.yellow.night .tab-badge .mat-badge-content.mat-badge-active{background:#945f1f}.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{right:unset;margin-left:.5rem!important}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .mat-badge-medium.mat-badge-after .mat-badge-content{margin-left:0!important}}.rtl-container.yellow.night .rtl-select-overlay{min-width:11rem!important}@media only screen and (max-width: 56.25em){.rtl-container.yellow.night .rtl-select-overlay{min-width:10rem}}@media only screen and (max-width: 37.5em){.rtl-container.yellow.night .rtl-select-overlay{min-width:7rem}}.rtl-container.yellow.night .table-actions-select{border-color:#ffffff80;padding:.25rem .5rem;margin:.5rem 0;min-height:2.25rem;float:right;min-width:8rem}.rtl-container.yellow.night .table-actions-select .mat-select-placeholder{color:#fff}.rtl-container.yellow.night .table-actions-button{min-width:8rem}.rtl-container.yellow.night .mat-select-panel .mat-option.mat-active{background:none}.rtl-container.yellow.night .mat-drawer-inner-container{overflow:hidden}.rtl-container.yellow.night .mat-fa-icon-button{width:1.25rem;height:1.25rem;line-height:1.25rem}.rtl-container.yellow.night .balances-info-pie-chart .legend-label:nth-child(1) .legend-label-color{background-color:#caaf8f!important}.rtl-container.yellow.night .balances-info-pie-chart .legend-label:nth-child(2) .legend-label-color{background-color:#8c571b!important}.rtl-container.yellow.night .dashboard-card .dashboard-divider{border-top-width:2px}.rtl-container.yellow.night .dashboard-card .mat-mdc-card-header .mat-mdc-card-title{min-height:2.5rem;margin-bottom:0 0 .5rem 0}.rtl-container.yellow.night .dashboard-card .dashboard-info-value{font-weight:700}.rtl-container.yellow.night .dashboard-card .dashboard-info-title{font-weight:500}.rtl-container.yellow.night .dashboard-card .dashboard-info-title .material-icons.mat-icon.mat-mdc-tooltip-trigger{min-height:1rem}.rtl-container.yellow.night .dashboard-card .dashboard-node-dot{margin:0 0 -2px .625rem;border:1px solid white}.rtl-container.yellow.night .dashboard-card .dashboard-node-square{display:inline-flex;width:.8rem;height:.8rem;margin-right:.625rem}.rtl-container.yellow.night .dashboard-card .dashboard-capacity-header{font-weight:700}.rtl-container.yellow.night .dashboard-card .mat-icon-button.more-button{width:1.25rem;max-width:1.25rem}.rtl-container.yellow.night .color-warn{color:#ff343b}.rtl-container.yellow.night .fill-warn{fill:#ff343b}.rtl-container.yellow.night .alert{border:1px solid rgba(255,255,255,.7);color:#fff;background-color:#0000000a}.rtl-container.yellow.night .alert.alert-info{border:1px solid #004085;background-color:#cce5ff;color:#004085}.rtl-container.yellow.night .alert.alert-info .alert-icon.ng-fa-icon,.rtl-container.yellow.night .alert.alert-info a{color:#004085}.rtl-container.yellow.night .alert.alert-warn{border:1px solid #856404;background-color:#fff3cd;color:#856404}.rtl-container.yellow.night .alert.alert-warn .alert-icon.ng-fa-icon,.rtl-container.yellow.night .alert.alert-warn a{color:#856404}.rtl-container.yellow.night .alert.alert-danger{border:1px solid #c62828;background-color:#f8d7da;color:#c62828;overflow-wrap:break-word}.rtl-container.yellow.night .alert.alert-danger .alert-icon.ng-fa-icon{color:#c62828}.rtl-container.yellow.night .alert.alert-success{border:1px solid #28ca43;background-color:#d4edda;color:#28ca43}.rtl-container.yellow.night .alert.alert-success .alert-icon.ng-fa-icon{color:#28ca43}.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-prefix .mat-datepicker-toggle-default-icon,.rtl-container.yellow.night .mat-form-field-appearance-legacy .mat-form-field-suffix .mat-datepicker-toggle-default-icon{width:1rem}.rtl-container.yellow.night .button-link-dashboard{line-height:0px;font-weight:600;text-decoration:underline;padding:0}.rtl-container.yellow.night .failed-status{color:#ff343b}.rtl-container.yellow.night .material-icons.icon-failed-status{fill:#ff343b;height:1.25rem}.rtl-container.yellow.night .svg-fill-primary{fill:#945f1f}.rtl-container.yellow.night .svg-fill-primary-lighter{fill:#b48f62}.rtl-container.yellow.night .mat-expansion-panel-header[aria-disabled=true]{color:#fff}.rtl-container.yellow.night .mat-chip-list-wrapper input.mat-input-element,.rtl-container.yellow.night .mat-chip-list-wrapper .mat-standard-chip{margin:.5rem .125rem;min-height:1.5rem}.rtl-container.yellow.night .dashboard-card-content .underline,.rtl-container.yellow.night .mat-mdc-tab-header .mat-mdc-tab-label-container,.rtl-container.yellow.night .mat-mdc-tab-nav-bar.mat-mdc-tab-header .mat-mdc-tab-link-container{border-bottom:1px solid rgba(255,255,255,.12);margin-bottom:.5rem}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover fa-icon svg path,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active fa-icon svg path{fill:#945f1f}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover .currency-icon,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon{color:#945f1f}.rtl-container.yellow.night .mat-mdc-option.mdc-list-item:hover .currency-icon path,.rtl-container.yellow.night .mat-mdc-option.mdc-list-item.mat-mdc-option-active .currency-icon path{fill:#945f1f}.rtl-container.yellow.night .mat-mdc-form-field-hint .currency-icon{color:#945f1f}.rtl-container.yellow.night .mat-mdc-form-field-hint .currency-icon path{fill:#945f1f}.rtl-container.yellow.night .fa-icon-primary{color:#945f1f}.rtl-container.yellow.night .fa-icon-primary:hover{cursor:pointer;box-shadow:0 2px 4px -1px #0003,0 4px 5px #00000024,0 1px 10px #0000001f}.rtl-container.yellow.night ngx-charts-bar-vertical text,.rtl-container.yellow.night ngx-charts-bar-vertical-2d text{fill:#fff}.rtl-container.yellow.night ngx-charts-bar-vertical .ngx-charts .grid-panel.odd rect,.rtl-container.yellow.night ngx-charts-bar-vertical-2d .ngx-charts .grid-panel.odd rect{fill:none}.rtl-container.yellow.night .mat-paginator-container{padding:0}.rtl-container.yellow.night .invoice-animation-container{position:relative;width:100%;transform:translateY(0)}.rtl-container.yellow.night .invoice-animation-div{position:relative;display:flex;justify-content:flex-start}.rtl-container.yellow.night .invoice-animation-div .particles-circle{position:absolute;background-color:#945f1f;width:30px;height:30px;top:10px;left:50%;margin-top:-13px;margin-left:-45%;z-index:-1;border-radius:50%;transform:scale(0);visibility:hidden}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(odd){border:solid 2px #945f1f;background-color:transparent}@keyframes particles-1{0%{transform:scale(1);visibility:visible}to{left:199px;top:201px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(1){animation:particles-1 2.5s 25ms}@keyframes particles-2{0%{transform:scale(1);visibility:visible}to{left:-40px;top:82px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(2){animation:particles-2 2.5s .05s}@keyframes particles-3{0%{transform:scale(1);visibility:visible}to{left:162px;top:109px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(3){animation:particles-3 2.5s 75ms}@keyframes particles-4{0%{transform:scale(1);visibility:visible}to{left:223px;top:78px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(4){animation:particles-4 2.5s .1s}@keyframes particles-5{0%{transform:scale(1);visibility:visible}to{left:184px;top:113px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(5){animation:particles-5 2.5s .125s}@keyframes particles-6{0%{transform:scale(1);visibility:visible}to{left:-42px;top:-238px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(6){animation:particles-6 2.5s .15s}@keyframes particles-7{0%{transform:scale(1);visibility:visible}to{left:150px;top:-98px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(7){animation:particles-7 2.5s .175s}@keyframes particles-8{0%{transform:scale(1);visibility:visible}to{left:62px;top:225px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(8){animation:particles-8 2.5s .2s}@keyframes particles-9{0%{transform:scale(1);visibility:visible}to{left:113px;top:86px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(9){animation:particles-9 2.5s .225s}@keyframes particles-10{0%{transform:scale(1);visibility:visible}to{left:229px;top:-127px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(10){animation:particles-10 2.5s .25s}@keyframes particles-11{0%{transform:scale(1);visibility:visible}to{left:243px;top:-106px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(11){animation:particles-11 2.5s .275s}@keyframes particles-12{0%{transform:scale(1);visibility:visible}to{left:-168px;top:138px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(12){animation:particles-12 2.5s .3s}@keyframes particles-13{0%{transform:scale(1);visibility:visible}to{left:-124px;top:62px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(13){animation:particles-13 2.5s .325s}@keyframes particles-14{0%{transform:scale(1);visibility:visible}to{left:246px;top:30px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(14){animation:particles-14 2.5s .35s}@keyframes particles-15{0%{transform:scale(1);visibility:visible}to{left:-22px;top:-171px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(15){animation:particles-15 2.5s .375s}@keyframes particles-16{0%{transform:scale(1);visibility:visible}to{left:-144px;top:115px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(16){animation:particles-16 2.5s .4s}@keyframes particles-17{0%{transform:scale(1);visibility:visible}to{left:209px;top:84px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(17){animation:particles-17 2.5s .425s}@keyframes particles-18{0%{transform:scale(1);visibility:visible}to{left:84px;top:-190px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(18){animation:particles-18 2.5s .45s}@keyframes particles-19{0%{transform:scale(1);visibility:visible}to{left:-94px;top:208px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(19){animation:particles-19 2.5s .475s}@keyframes particles-20{0%{transform:scale(1);visibility:visible}to{left:147px;top:203px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(20){animation:particles-20 2.5s .5s}@keyframes particles-21{0%{transform:scale(1);visibility:visible}to{left:178px;top:206px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(21){animation:particles-21 2.5s .525s}@keyframes particles-22{0%{transform:scale(1);visibility:visible}to{left:-10px;top:-226px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(22){animation:particles-22 2.5s .55s}@keyframes particles-23{0%{transform:scale(1);visibility:visible}to{left:3px;top:222px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(23){animation:particles-23 2.5s .575s}@keyframes particles-24{0%{transform:scale(1);visibility:visible}to{left:-182px;top:-44px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(24){animation:particles-24 2.5s .6s}@keyframes particles-25{0%{transform:scale(1);visibility:visible}to{left:-146px;top:166px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(25){animation:particles-25 2.5s .625s}@keyframes particles-26{0%{transform:scale(1);visibility:visible}to{left:144px;top:218px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(26){animation:particles-26 2.5s .65s}@keyframes particles-27{0%{transform:scale(1);visibility:visible}to{left:48px;top:222px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(27){animation:particles-27 2.5s .675s}@keyframes particles-28{0%{transform:scale(1);visibility:visible}to{left:-48px;top:50px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(28){animation:particles-28 2.5s .7s}@keyframes particles-29{0%{transform:scale(1);visibility:visible}to{left:-228px;top:-15px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(29){animation:particles-29 2.5s .725s}@keyframes particles-30{0%{transform:scale(1);visibility:visible}to{left:91px;top:-199px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(30){animation:particles-30 2.5s .75s}@keyframes particles-31{0%{transform:scale(1);visibility:visible}to{left:-40px;top:104px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(31){animation:particles-31 2.5s .775s}@keyframes particles-32{0%{transform:scale(1);visibility:visible}to{left:-102px;top:4px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(32){animation:particles-32 2.5s .8s}@keyframes particles-33{0%{transform:scale(1);visibility:visible}to{left:-26px;top:-89px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(33){animation:particles-33 2.5s .825s}@keyframes particles-34{0%{transform:scale(1);visibility:visible}to{left:-151px;top:-149px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(34){animation:particles-34 2.5s .85s}@keyframes particles-35{0%{transform:scale(1);visibility:visible}to{left:186px;top:200px;transform:scale(0);visibility:hidden}}.rtl-container.yellow.night .invoice-animation-div .particles-circle:nth-of-type(35){animation:particles-35 2.5s .875s}.rtl-container.yellow.night .wiggle{animation:.5s wiggle ease-in-out infinite}@keyframes wiggle{0%{transform:rotate(-3deg)}20%{transform:rotate(20deg)}40%{transform:rotate(-15deg)}60%{transform:rotate(5deg)}90%{transform:rotate(-1deg)}to{transform:rotate(0)}}.rtl-container.yellow.night .shockwave{animation:shockwaveJump 1s ease-out infinite}.rtl-container.yellow.night .shockwave:after{content:"";position:absolute;inset:0;animation:shockwave 1s .65s ease-out infinite}.rtl-container.yellow.night .shockwave:before{content:"";position:absolute;inset:0;animation:shockwave 1s .5s ease-out infinite}@keyframes shockwaveJump{0%{transform:scale(1)}40%{transform:scale(1.08)}50%{transform:scale(.98)}55%{transform:scale(1.02)}60%{transform:scale(.98)}to{transform:scale(1)}}@keyframes shockwave{0%{transform:scale(1);box-shadow:0 0 2px #00000026,inset 0 0 1px #00000026}95%{box-shadow:0 0 50px #0000,inset 0 0 30px #0000}to{transform:scale(2.25)}}@font-face{font-family:Material Icons;font-style:normal;font-weight:400;font-display:block;src:url(material-icons.59322316b3fd6063.woff2) format("woff2"),url(material-icons.4ad034d2c499d9b6.woff) format("woff")}.material-icons{font-family:Material Icons;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Outlined;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-outlined.f86cb7b0aa53f0fe.woff2) format("woff2"),url(material-icons-outlined.78a93b2079680a08.woff) format("woff")}.material-icons-outlined{font-family:Material Icons Outlined;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Round;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-round.b10ec9db5b7fbc74.woff2) format("woff2"),url(material-icons-round.92dc7ca2f4c591e7.woff) format("woff")}.material-icons-round{font-family:Material Icons Round;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Sharp;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-sharp.3885863ee4746422.woff2) format("woff2"),url(material-icons-sharp.a71cb2bf66c604de.woff) format("woff")}.material-icons-sharp{font-family:Material Icons Sharp;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Material Icons Two Tone;font-style:normal;font-weight:400;font-display:block;src:url(material-icons-two-tone.675bd578bd14533e.woff2) format("woff2"),url(material-icons-two-tone.588d63134de807a7.woff) format("woff")}.material-icons-two-tone{font-family:Material Icons Two Tone;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;font-feature-settings:"liga"}@font-face{font-family:Roboto;src:url(Roboto-Thin.f7a95c9c5999532c.woff2) format("woff2"),url(Roboto-Thin.c13c157cb81e8ebb.woff) format("woff");font-weight:100;font-style:normal}@font-face{font-family:Roboto-Thin;src:url(Roboto-Thin.f7a95c9c5999532c.woff2) format("woff2"),url(Roboto-Thin.c13c157cb81e8ebb.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-ThinItalic.b0e084abf689f393.woff2) format("woff2"),url(Roboto-ThinItalic.1111028df6cea564.woff) format("woff");font-weight:100;font-style:italic}@font-face{font-family:Roboto-ThinItalic;src:url(Roboto-ThinItalic.b0e084abf689f393.woff2) format("woff2"),url(Roboto-ThinItalic.1111028df6cea564.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Light.0e01b6cd13b3857f.woff2) format("woff2"),url(Roboto-Light.603ca9a537b88428.woff) format("woff");font-weight:300;font-style:normal}@font-face{font-family:Roboto-Light;src:url(Roboto-Light.0e01b6cd13b3857f.woff2) format("woff2"),url(Roboto-Light.603ca9a537b88428.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-LightItalic.232ef4b20215f720.woff2) format("woff2"),url(Roboto-LightItalic.1b5e142f787151c8.woff) format("woff");font-weight:300;font-style:italic}@font-face{font-family:Roboto-LightItalic;src:url(Roboto-LightItalic.232ef4b20215f720.woff2) format("woff2"),url(Roboto-LightItalic.1b5e142f787151c8.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Regular.475ba9e4e2d63456.woff2) format("woff2"),url(Roboto-Regular.bcefbfee882bc1cb.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Roboto-Regular;src:url(Roboto-Regular.475ba9e4e2d63456.woff2) format("woff2"),url(Roboto-Regular.bcefbfee882bc1cb.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-RegularItalic.e3a9ebdaac06bbc4.woff2) format("woff2"),url(Roboto-RegularItalic.0668fae6af0cf8c2.woff) format("woff");font-weight:400;font-style:italic}@font-face{font-family:Roboto-RegularItalic;src:url(Roboto-RegularItalic.e3a9ebdaac06bbc4.woff2) format("woff2"),url(Roboto-RegularItalic.0668fae6af0cf8c2.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Medium.457532032ceb0168.woff2) format("woff2"),url(Roboto-Medium.6e1ae5f0b324a0aa.woff) format("woff");font-weight:500;font-style:normal}@font-face{font-family:Roboto-Medium;src:url(Roboto-Medium.457532032ceb0168.woff2) format("woff2"),url(Roboto-Medium.6e1ae5f0b324a0aa.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-MediumItalic.872f7060602d55d2.woff2) format("woff2"),url(Roboto-MediumItalic.e06fb533801cbb08.woff) format("woff");font-weight:500;font-style:italic}@font-face{font-family:Roboto-MediumItalic;src:url(Roboto-MediumItalic.872f7060602d55d2.woff2) format("woff2"),url(Roboto-MediumItalic.e06fb533801cbb08.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Bold.447291a88c067396.woff2) format("woff2"),url(Roboto-Bold.fc482e6133cf5e26.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:Roboto-Bold;src:url(Roboto-Bold.447291a88c067396.woff2) format("woff2"),url(Roboto-Bold.fc482e6133cf5e26.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-BoldItalic.1b15168ef6fa4e16.woff2) format("woff2"),url(Roboto-BoldItalic.e26ba339b06f09f7.woff) format("woff");font-weight:700;font-style:italic}@font-face{font-family:Roboto-BoldItalic;src:url(Roboto-BoldItalic.1b15168ef6fa4e16.woff2) format("woff2"),url(Roboto-BoldItalic.e26ba339b06f09f7.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-Black.2eaa390d458c877d.woff2) format("woff2"),url(Roboto-Black.b25f67ad8583da68.woff) format("woff");font-weight:900;font-style:normal}@font-face{font-family:Roboto-Black;src:url(Roboto-Black.2eaa390d458c877d.woff2) format("woff2"),url(Roboto-Black.b25f67ad8583da68.woff) format("woff")}@font-face{font-family:Roboto;src:url(Roboto-BlackItalic.7dc03ee444552bc5.woff2) format("woff2"),url(Roboto-BlackItalic.c8dc642467cb3099.woff) format("woff");font-weight:900;font-style:italic}@font-face{font-family:Roboto-BlackItalic;src:url(Roboto-BlackItalic.7dc03ee444552bc5.woff2) format("woff2"),url(Roboto-BlackItalic.c8dc642467cb3099.woff) format("woff")} diff --git a/package-lock.json b/package-lock.json index cafc98ff..028a8f84 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,89 +1,295 @@ { "name": "rtl", - "version": "0.15.2-beta", + "version": "0.15.10-beta", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rtl", - "version": "0.15.2-beta", + "version": "0.15.10-beta", "license": "MIT", "dependencies": { - "@ngrx/effects": "^17.2.0", - "@ngrx/store": "^17.2.0", - "@swimlane/ngx-charts": "^20.5.0", - "angular-user-idle": "^4.0.0", - "atob": "^2.1.2", - "cookie-parser": "^1.4.6", - "crypto-browserify": "^3.12.0", - "csurf": "^1.11.0", - "express": "^4.19.2", - "express-session": "^1.18.0", - "hocon-parser": "^1.0.1", - "ini": "^4.1.3", - "jsonwebtoken": "^9.0.2", - "ng-qrcode": "^18.0.0", - "ngx-perfect-scrollbar-next": "^10.1.1", - "otplib": "^12.0.1", - "pdfmake": "^0.2.10", - "process": "^0.11.10", - "request": "^2.88.2", - "request-promise": "^4.2.6", - "rxjs": "^7.8.1", - "sha256": "^0.2.0", - "socket.io-client": "^4.7.5", - "stream-browserify": "^3.0.0", - "tslib": "^2.6.2", - "vm-browserify": "^1.1.2", - "ws": "^8.17.0", - "zone.js": "^0.14.6" + "@ngrx/effects": "21.0.1", + "@ngrx/store": "21.0.1", + "@swimlane/ngx-charts": "23.1.0", + "angular-user-idle": "4.0.0", + "atob": "2.1.2", + "axios": "1.18.1", + "buffer": "6.0.3", + "cookie-parser": "1.4.7", + "csrf-csrf": "4.0.3", + "express": "5.2.1", + "express-session": "1.18.2", + "hocon-parser": "1.0.1", + "ini": "6.0.0", + "jsonwebtoken": "9.0.3", + "ng-qrcode": "21.0.0", + "ngx-perfect-scrollbar-next": "10.1.1", + "otplib": "12.0.1", + "pdfmake": "0.3.11", + "process": "0.11.10", + "rxjs": "7.8.2", + "sha256": "0.2.0", + "socket.io-client": "4.8.3", + "tslib": "2.8.1", + "ws": "8.21.0", + "zone.js": "0.16.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^18.0.2", - "@angular-eslint/builder": "^18.0.1", - "@angular-eslint/eslint-plugin": "^18.0.1", - "@angular-eslint/eslint-plugin-template": "^18.0.1", - "@angular-eslint/schematics": "^18.0.1", - "@angular-eslint/template-parser": "^18.0.1", - "@angular/animations": "^18.0.1", - "@angular/cdk": "^17.0.1", - "@angular/cli": "^18.0.2", - "@angular/common": "^18.0.1", - "@angular/compiler": "^18.0.1", - "@angular/compiler-cli": "^18.0.1", - "@angular/core": "^18.0.1", - "@angular/flex-layout": "^15.0.0-beta.42", - "@angular/forms": "^18.0.1", - "@angular/material": "^17.0.1", - "@angular/platform-browser": "^18.0.1", - "@angular/platform-browser-dynamic": "^18.0.1", - "@angular/router": "^18.0.1", - "@eslint/eslintrc": "^3.1.0", - "@fortawesome/angular-fontawesome": "^0.15.0", - "@fortawesome/fontawesome-svg-core": "^6.5.2", - "@fortawesome/free-regular-svg-icons": "^6.5.2", - "@fortawesome/free-solid-svg-icons": "^6.5.2", - "@ngrx/store-devtools": "^17.2.0", - "@types/jasmine": "^5.1.4", - "@types/node": "^20.14.1", - "@typescript-eslint/eslint-plugin": "^7.12.0", - "@typescript-eslint/parser": "^7.12.0", - "dotenv": "^16.4.5", - "eslint": "^9.4.0", - "eslint-plugin-deprecation": "^3.0.0", - "jasmine-core": "^5.1.2", - "jasmine-spec-reporter": "^7.0.0", - "karma": "^6.4.3", - "karma-chrome-launcher": "^3.2.0", - "karma-coverage": "^2.2.1", - "karma-jasmine": "^5.1.0", - "karma-jasmine-html-reporter": "^2.1.0", - "material-icons": "^1.13.12", - "nodemon": "^3.1.3", - "protractor": "^7.0.0", - "roboto-fontface": "^0.10.0", - "ts-node": "^10.9.2", - "typescript": "~5.4.5" + "@angular-devkit/build-angular": "20.3.32", + "@angular-eslint/builder": "20.7.0", + "@angular-eslint/eslint-plugin": "20.7.0", + "@angular-eslint/eslint-plugin-template": "20.7.0", + "@angular-eslint/schematics": "20.7.0", + "@angular-eslint/template-parser": "20.7.0", + "@angular/animations": "20.3.27", + "@angular/build": "20.3.32", + "@angular/cdk": "20.2.14", + "@angular/cli": "20.3.32", + "@angular/common": "20.3.27", + "@angular/compiler": "20.3.27", + "@angular/compiler-cli": "20.3.27", + "@angular/core": "20.3.27", + "@angular/flex-layout": "15.0.0-beta.42", + "@angular/forms": "20.3.27", + "@angular/material": "20.2.14", + "@angular/platform-browser": "20.3.27", + "@angular/platform-browser-dynamic": "20.3.27", + "@angular/router": "20.3.27", + "@eslint/eslintrc": "3.3.3", + "@fortawesome/angular-fontawesome": "4.0.0", + "@fortawesome/fontawesome-svg-core": "7.1.0", + "@fortawesome/free-regular-svg-icons": "7.1.0", + "@fortawesome/free-solid-svg-icons": "7.1.0", + "@ngrx/store-devtools": "21.0.1", + "@types/jasmine": "5.1.15", + "@types/node": "20.19.30", + "@typescript-eslint/eslint-plugin": "8.65.0", + "@typescript-eslint/parser": "8.65.0", + "dotenv": "17.2.3", + "eslint": "9.39.5", + "eslint-plugin-deprecation": "3.0.0", + "jasmine-core": "5.13.0", + "jasmine-spec-reporter": "7.0.0", + "karma": "6.4.4", + "karma-chrome-launcher": "3.2.0", + "karma-coverage": "2.2.1", + "karma-jasmine": "5.1.0", + "karma-jasmine-html-reporter": "2.1.0", + "material-icons": "1.13.14", + "nodemon": "3.1.14", + "roboto-fontface": "0.10.0", + "ts-node": "10.9.2", + "typescript": "5.8.3" + } + }, + "node_modules/@algolia/abtesting": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.1.0.tgz", + "integrity": "sha512-sEyWjw28a/9iluA37KLGu8vjxEIlb60uxznfTUmXImy7H5NvbpSO6yYgmgH5KiD7j+zTUUihiST0jEP12IoXow==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.35.0", + "@algolia/requester-browser-xhr": "5.35.0", + "@algolia/requester-fetch": "5.35.0", + "@algolia/requester-node-http": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-abtesting": { + "version": "5.35.0", + "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.35.0.tgz", + "integrity": "sha512-uUdHxbfHdoppDVflCHMxRlj49/IllPwwQ2cQ8DLC4LXr3kY96AHBpW0dMyi6ygkn2MtFCc6BxXCzr668ZRhLBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.35.0", + "@algolia/requester-browser-xhr": "5.35.0", + "@algolia/requester-fetch": "5.35.0", + "@algolia/requester-node-http": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-analytics": { + "version": "5.35.0", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.35.0.tgz", + "integrity": "sha512-SunAgwa9CamLcRCPnPHx1V2uxdQwJGqb1crYrRWktWUdld0+B2KyakNEeVn5lln4VyeNtW17Ia7V7qBWyM/Skw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.35.0", + "@algolia/requester-browser-xhr": "5.35.0", + "@algolia/requester-fetch": "5.35.0", + "@algolia/requester-node-http": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-common": { + "version": "5.35.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.35.0.tgz", + "integrity": "sha512-ipE0IuvHu/bg7TjT2s+187kz/E3h5ssfTtjpg1LbWMgxlgiaZIgTTbyynM7NfpSJSKsgQvCQxWjGUO51WSCu7w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-insights": { + "version": "5.35.0", + "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.35.0.tgz", + "integrity": "sha512-UNbCXcBpqtzUucxExwTSfAe8gknAJ485NfPN6o1ziHm6nnxx97piIbcBQ3edw823Tej2Wxu1C0xBY06KgeZ7gA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.35.0", + "@algolia/requester-browser-xhr": "5.35.0", + "@algolia/requester-fetch": "5.35.0", + "@algolia/requester-node-http": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-personalization": { + "version": "5.35.0", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.35.0.tgz", + "integrity": "sha512-/KWjttZ6UCStt4QnWoDAJ12cKlQ+fkpMtyPmBgSS2WThJQdSV/4UWcqCUqGH7YLbwlj3JjNirCu3Y7uRTClxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.35.0", + "@algolia/requester-browser-xhr": "5.35.0", + "@algolia/requester-fetch": "5.35.0", + "@algolia/requester-node-http": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-query-suggestions": { + "version": "5.35.0", + "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.35.0.tgz", + "integrity": "sha512-8oCuJCFf/71IYyvQQC+iu4kgViTODbXDk3m7yMctEncRSRV+u2RtDVlpGGfPlJQOrAY7OONwJlSHkmbbm2Kp/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.35.0", + "@algolia/requester-browser-xhr": "5.35.0", + "@algolia/requester-fetch": "5.35.0", + "@algolia/requester-node-http": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-search": { + "version": "5.35.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.35.0.tgz", + "integrity": "sha512-FfmdHTrXhIduWyyuko1YTcGLuicVbhUyRjO3HbXE4aP655yKZgdTIfMhZ/V5VY9bHuxv/fGEh3Od1Lvv2ODNTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.35.0", + "@algolia/requester-browser-xhr": "5.35.0", + "@algolia/requester-fetch": "5.35.0", + "@algolia/requester-node-http": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/ingestion": { + "version": "1.35.0", + "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.35.0.tgz", + "integrity": "sha512-gPzACem9IL1Co8mM1LKMhzn1aSJmp+Vp434An4C0OBY4uEJRcqsLN3uLBlY+bYvFg8C8ImwM9YRiKczJXRk0XA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.35.0", + "@algolia/requester-browser-xhr": "5.35.0", + "@algolia/requester-fetch": "5.35.0", + "@algolia/requester-node-http": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/monitoring": { + "version": "1.35.0", + "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.35.0.tgz", + "integrity": "sha512-w9MGFLB6ashI8BGcQoVt7iLgDIJNCn4OIu0Q0giE3M2ItNrssvb8C0xuwJQyTy1OFZnemG0EB1OvXhIHOvQwWw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.35.0", + "@algolia/requester-browser-xhr": "5.35.0", + "@algolia/requester-fetch": "5.35.0", + "@algolia/requester-node-http": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/recommend": { + "version": "5.35.0", + "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.35.0.tgz", + "integrity": "sha512-AhrVgaaXAb8Ue0u2nuRWwugt0dL5UmRgS9LXe0Hhz493a8KFeZVUE56RGIV3hAa6tHzmAV7eIoqcWTQvxzlJeQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.35.0", + "@algolia/requester-browser-xhr": "5.35.0", + "@algolia/requester-fetch": "5.35.0", + "@algolia/requester-node-http": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-browser-xhr": { + "version": "5.35.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.35.0.tgz", + "integrity": "sha512-diY415KLJZ6x1Kbwl9u96Jsz0OstE3asjXtJ9pmk1d+5gPuQ5jQyEsgC+WmEXzlec3iuVszm8AzNYYaqw6B+Zw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-fetch": { + "version": "5.35.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.35.0.tgz", + "integrity": "sha512-uydqnSmpAjrgo8bqhE9N1wgcB98psTRRQXcjc4izwMB7yRl9C8uuAQ/5YqRj04U0mMQ+fdu2fcNF6m9+Z1BzDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-node-http": { + "version": "5.35.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.35.0.tgz", + "integrity": "sha512-RgLX78ojYOrThJHrIiPzT4HW3yfQa0D7K+MQ81rhxqaNyNBu4F1r+72LNHYH/Z+y9I1Mrjrd/c/Ue5zfDgAEjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" } }, "node_modules/@ampproject/remapping": { @@ -91,6 +297,7 @@ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "dev": true, + "license": "Apache-2.0", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" @@ -100,124 +307,128 @@ } }, "node_modules/@angular-devkit/architect": { - "version": "0.1800.5", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1800.5.tgz", - "integrity": "sha512-KliFJTqwAIyRvW10JnJLlpXK86yx683unTgwgvkg9V4gUc/7cNCmWJiOCmYh1+gATpFq+3d3o36EdTzb4QS03g==", + "version": "0.2003.32", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2003.32.tgz", + "integrity": "sha512-V5d531w97LENARKdYk5Km0F2rt8NPEL3rXUQk7+gbo9r/jgLWn9GU3VHQ30oBWXnU7Vu00Hdp/8yFeYgpWqSow==", "dev": true, + "license": "MIT", "dependencies": { - "@angular-devkit/core": "18.0.5", - "rxjs": "7.8.1" + "@angular-devkit/core": "20.3.32", + "rxjs": "7.8.2" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "node": "^20.19.0 || ^22.12.0 || >=24.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@angular-devkit/build-angular": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-18.0.5.tgz", - "integrity": "sha512-itZN5tAZ+66bHZ4JNxIiPxfbSvQP6Gk4hcCzfGzcs3G0VsahR0rpX0Rg+1CRX1bpDzan3z8AVfwIxlLPKSOBbg==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-20.3.32.tgz", + "integrity": "sha512-1prN/HmTkL2TTd4zoNz/fFOds9eUc78winkjvBRxTL+OuUQMIeWIjpUui53mk2qdeW9ImiITcqCQVpZL95fLvQ==", "dev": true, + "license": "MIT", "dependencies": { "@ampproject/remapping": "2.3.0", - "@angular-devkit/architect": "0.1800.5", - "@angular-devkit/build-webpack": "0.1800.5", - "@angular-devkit/core": "18.0.5", - "@angular/build": "18.0.5", - "@babel/core": "7.24.5", - "@babel/generator": "7.24.5", - "@babel/helper-annotate-as-pure": "7.22.5", - "@babel/helper-split-export-declaration": "7.24.5", - "@babel/plugin-transform-async-generator-functions": "7.24.3", - "@babel/plugin-transform-async-to-generator": "7.24.1", - "@babel/plugin-transform-runtime": "7.24.3", - "@babel/preset-env": "7.24.5", - "@babel/runtime": "7.24.5", - "@discoveryjs/json-ext": "0.5.7", - "@ngtools/webpack": "18.0.5", - "@vitejs/plugin-basic-ssl": "1.1.0", + "@angular-devkit/architect": "0.2003.32", + "@angular-devkit/build-webpack": "0.2003.32", + "@angular-devkit/core": "20.3.32", + "@angular/build": "20.3.32", + "@babel/core": "7.29.7", + "@babel/generator": "7.28.3", + "@babel/helper-annotate-as-pure": "7.27.3", + "@babel/helper-split-export-declaration": "7.24.7", + "@babel/plugin-transform-async-generator-functions": "7.28.0", + "@babel/plugin-transform-async-to-generator": "7.27.1", + "@babel/plugin-transform-runtime": "7.28.3", + "@babel/preset-env": "7.28.3", + "@babel/runtime": "7.28.3", + "@discoveryjs/json-ext": "0.6.3", + "@ngtools/webpack": "20.3.32", "ansi-colors": "4.1.3", - "autoprefixer": "10.4.19", - "babel-loader": "9.1.3", + "autoprefixer": "10.4.21", + "babel-loader": "10.0.0", "browserslist": "^4.21.5", - "copy-webpack-plugin": "11.0.0", - "critters": "0.0.22", - "css-loader": "7.1.1", - "esbuild-wasm": "0.21.3", - "fast-glob": "3.3.2", - "http-proxy-middleware": "3.0.0", - "https-proxy-agent": "7.0.4", - "inquirer": "9.2.22", - "istanbul-lib-instrument": "6.0.2", - "jsonc-parser": "3.2.1", + "copy-webpack-plugin": "14.0.0", + "css-loader": "7.1.2", + "esbuild-wasm": "0.28.1", + "fast-glob": "3.3.3", + "http-proxy-middleware": "3.0.7", + "istanbul-lib-instrument": "6.0.3", + "jsonc-parser": "3.3.1", "karma-source-map-support": "1.4.0", - "less": "4.2.0", - "less-loader": "12.2.0", + "less": "4.4.0", + "less-loader": "12.3.0", "license-webpack-plugin": "4.0.2", - "loader-utils": "3.2.1", - "magic-string": "0.30.10", - "mini-css-extract-plugin": "2.9.0", - "mrmime": "2.0.0", - "open": "8.4.2", - "ora": "5.4.1", - "parse5-html-rewriting-stream": "7.0.0", - "picomatch": "4.0.2", - "piscina": "4.5.0", - "postcss": "8.4.38", + "loader-utils": "3.3.1", + "mini-css-extract-plugin": "2.9.4", + "open": "10.2.0", + "ora": "8.2.0", + "picomatch": "4.0.4", + "piscina": "5.2.0", + "postcss": "8.5.12", "postcss-loader": "8.1.1", "resolve-url-loader": "5.0.0", - "rxjs": "7.8.1", - "sass": "1.77.2", - "sass-loader": "14.2.1", - "semver": "7.6.2", + "rxjs": "7.8.2", + "sass": "1.90.0", + "sass-loader": "16.0.5", + "semver": "7.7.2", "source-map-loader": "5.0.0", "source-map-support": "0.5.21", - "terser": "5.31.0", + "terser": "5.43.1", "tree-kill": "1.2.2", - "tslib": "2.6.2", - "undici": "6.18.0", - "vite": "5.2.11", - "watchpack": "2.4.1", - "webpack": "5.91.0", - "webpack-dev-middleware": "7.2.1", - "webpack-dev-server": "5.0.4", - "webpack-merge": "5.10.0", + "tslib": "2.8.1", + "webpack": "5.105.0", + "webpack-dev-middleware": "7.4.2", + "webpack-dev-server": "5.2.5", + "webpack-merge": "6.0.1", "webpack-subresource-integrity": "5.1.0" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "node": "^20.19.0 || ^22.12.0 || >=24.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, "optionalDependencies": { - "esbuild": "0.21.3" + "esbuild": "0.28.1" }, "peerDependencies": { - "@angular/compiler-cli": "^18.0.0", - "@angular/localize": "^18.0.0", - "@angular/platform-server": "^18.0.0", - "@angular/service-worker": "^18.0.0", - "@web/test-runner": "^0.18.0", + "@angular/compiler-cli": "^20.0.0", + "@angular/core": "^20.0.0", + "@angular/localize": "^20.0.0", + "@angular/platform-browser": "^20.0.0", + "@angular/platform-server": "^20.0.0", + "@angular/service-worker": "^20.0.0", + "@angular/ssr": "^20.3.32", + "@web/test-runner": "^0.20.0", "browser-sync": "^3.0.2", - "jest": "^29.5.0", - "jest-environment-jsdom": "^29.5.0", + "jest": "^29.5.0 || ^30.2.0", + "jest-environment-jsdom": "^29.5.0 || ^30.2.0", "karma": "^6.3.0", - "ng-packagr": "^18.0.0", + "ng-packagr": "^20.0.0", "protractor": "^7.0.0", - "tailwindcss": "^2.0.0 || ^3.0.0", - "typescript": ">=5.4 <5.5" + "tailwindcss": "^2.0.0 || ^3.0.0 || ^4.0.0", + "typescript": ">=5.8 <6.0" }, "peerDependenciesMeta": { + "@angular/core": { + "optional": true + }, "@angular/localize": { "optional": true }, + "@angular/platform-browser": { + "optional": true + }, "@angular/platform-server": { "optional": true }, "@angular/service-worker": { "optional": true }, + "@angular/ssr": { + "optional": true + }, "@web/test-runner": { "optional": true }, @@ -244,23 +455,18 @@ } } }, - "node_modules/@angular-devkit/build-angular/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - }, "node_modules/@angular-devkit/build-webpack": { - "version": "0.1800.5", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.1800.5.tgz", - "integrity": "sha512-/eiIwlQJBZlCWLsfaoSOsSGFY24cLKCCY4fs/fvcBXxG5/g1FFx24Zt73j0qRoNeK3soUg9+lmCAiRvO6cGpJg==", + "version": "0.2003.32", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.2003.32.tgz", + "integrity": "sha512-dFyM5Qkgl6wgSb8EJF8uZCt9K+VUsDP8APS5siCNHyhjzjACqDevk5RwqWCfPU/QjzlgCp11MbkKr/Y2sgaDcw==", "dev": true, + "license": "MIT", "dependencies": { - "@angular-devkit/architect": "0.1800.5", - "rxjs": "7.8.1" + "@angular-devkit/architect": "0.2003.32", + "rxjs": "7.8.2" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "node": "^20.19.0 || ^22.12.0 || >=24.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, @@ -270,25 +476,26 @@ } }, "node_modules/@angular-devkit/core": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-18.0.5.tgz", - "integrity": "sha512-sGtrS0SqkcBvyuv0QkIfyadwPgDhMroz1r51lMh1hwzJaJ0LNuVMLviEeYIybeBnvAdp9YvYC8I1WgB/FUEFBw==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-20.3.32.tgz", + "integrity": "sha512-pXipSsYP/XTEAljmwqgy1u3GR/ZzSMg1FERINekGT61Th1pGhzjs02rPgbyftqz2e5/tfQ6XgTP7xYzm3+S35Q==", "dev": true, + "license": "MIT", "dependencies": { - "ajv": "8.13.0", + "ajv": "8.18.0", "ajv-formats": "3.0.1", - "jsonc-parser": "3.2.1", - "picomatch": "4.0.2", - "rxjs": "7.8.1", - "source-map": "0.7.4" + "jsonc-parser": "3.3.1", + "picomatch": "4.0.4", + "rxjs": "7.8.2", + "source-map": "0.7.6" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "node": "^20.19.0 || ^22.12.0 || >=24.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, "peerDependencies": { - "chokidar": "^3.5.2" + "chokidar": "^4.0.0" }, "peerDependenciesMeta": { "chokidar": { @@ -297,31 +504,33 @@ } }, "node_modules/@angular-devkit/schematics": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-18.0.5.tgz", - "integrity": "sha512-hZwAq3hwuJzCuh7uqO/7T9IMERhYVxz+ganJlEykpyr58o0IjUM1Q4ZSH5UOYlGRPdBCZJbfiafZ0Sg5w5xBww==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-20.3.32.tgz", + "integrity": "sha512-UxWncmJTcYMDEaAKRi3QHU3qXivIcIOulFOKozW8svfs/A43Oq1GG4kvDZ+WVf/w2UWTmMaSlfFa4KIQciSIDA==", "dev": true, + "license": "MIT", "dependencies": { - "@angular-devkit/core": "18.0.5", - "jsonc-parser": "3.2.1", - "magic-string": "0.30.10", - "ora": "5.4.1", - "rxjs": "7.8.1" + "@angular-devkit/core": "20.3.32", + "jsonc-parser": "3.3.1", + "magic-string": "0.30.17", + "ora": "8.2.0", + "rxjs": "7.8.2" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "node": "^20.19.0 || ^22.12.0 || >=24.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@angular-eslint/builder": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-18.0.1.tgz", - "integrity": "sha512-b/VUeTQznAmGdwP4OyPWyegqSRWub7E8/WXBqojrSFyLkFhpTiHpk/3/5G3LsgTb0zBfyAsqkA0yaadsHu9pjA==", + "version": "20.7.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-20.7.0.tgz", + "integrity": "sha512-qgf4Cfs1z0VsVpzF/OnxDRvBp60OIzeCsp4mzlckWYVniKo19EPIN6kFDol5eTAIOMPgiBQlMIwgQMHgocXEig==", "dev": true, + "license": "MIT", "dependencies": { - "@nx/devkit": "^19.0.6", - "nx": "^19.0.6" + "@angular-devkit/architect": ">= 0.2000.0 < 0.2100.0", + "@angular-devkit/core": ">= 20.0.0 < 21.0.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", @@ -329,70 +538,87 @@ } }, "node_modules/@angular-eslint/bundled-angular-compiler": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-18.0.1.tgz", - "integrity": "sha512-lr4Ysoo28FBOKcJFQUGTMpbWDcak+gyuYvyggp37ERvazE6EDomPFxzEHNqVT9EI9sZ+GDBOoPR+EdFh0ALGNw==", - "dev": true + "version": "20.7.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-20.7.0.tgz", + "integrity": "sha512-9KPz24YoiL0SvTtTX6sd1zmysU5cKOCcmpEiXkCoO3L2oYZGlVxmMT4hfSaHMt8qmfvV2KzQMoR6DZM84BwRzQ==", + "dev": true, + "license": "MIT" }, "node_modules/@angular-eslint/eslint-plugin": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-18.0.1.tgz", - "integrity": "sha512-pS3SYLa9DA+ENklGxEUlcw6/xCxgDk9fgjyaheuSjDxL3TIh1pTa4V2TptODdcPh7XCYXiVmy+e/w79mXlGzOw==", + "version": "20.7.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-20.7.0.tgz", + "integrity": "sha512-aHH2YTiaonojsKN+y2z4IMugCwdsH/dYIjYBig6kfoSPyf9rGK4zx+gnNGq/pGRjF3bOYrmFgIviYpQVb80inQ==", "dev": true, + "license": "MIT", "dependencies": { - "@angular-eslint/bundled-angular-compiler": "18.0.1", - "@angular-eslint/utils": "18.0.1" + "@angular-eslint/bundled-angular-compiler": "20.7.0", + "@angular-eslint/utils": "20.7.0", + "ts-api-utils": "^2.1.0" }, "peerDependencies": { - "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular-eslint/eslint-plugin-template": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-18.0.1.tgz", - "integrity": "sha512-u/eov/CFBb8l35D8dW78Dx5fBLd8FZFibKN9XQknhzXnDMpISuUOMny5g5/wvYYjqLgqEySXMiHKEAxEup7xtA==", + "version": "20.7.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-20.7.0.tgz", + "integrity": "sha512-WFmvW2vBR6ExsSKEaActQTteyw6ikWyuJau9XmWEPFd+2eusEt/+wO21ybjDn3uc5FTp1IcdhfYy+U5OdDjH5w==", "dev": true, + "license": "MIT", "dependencies": { - "@angular-eslint/bundled-angular-compiler": "18.0.1", - "@angular-eslint/utils": "18.0.1", - "aria-query": "5.3.0", - "axobject-query": "4.0.0" + "@angular-eslint/bundled-angular-compiler": "20.7.0", + "@angular-eslint/utils": "20.7.0", + "aria-query": "5.3.2", + "axobject-query": "4.1.0" }, "peerDependencies": { - "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "@angular-eslint/template-parser": "20.7.0", + "@typescript-eslint/types": "^7.11.0 || ^8.0.0", + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular-eslint/schematics": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-18.0.1.tgz", - "integrity": "sha512-G9PgFrjyvBaQR8enMnP2scnQDLk99GMpifh3voiOmdEkxaQHRWqhCWncV7GATwpXDzeyj9J9XT9iHGJjnZTpJQ==", + "version": "20.7.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-20.7.0.tgz", + "integrity": "sha512-S0onfRipDUIL6gFGTFjiWwUDhi42XYrBoi3kJ3wBbKBeIgYv9SP1ppTKDD4ZoDaDU9cQE8nToX7iPn9ifMw6eQ==", "dev": true, + "license": "MIT", "dependencies": { - "@angular-eslint/eslint-plugin": "18.0.1", - "@angular-eslint/eslint-plugin-template": "18.0.1", - "@nx/devkit": "^19.0.6", - "ignore": "5.3.1", - "nx": "^19.0.6", - "semver": "7.6.2", + "@angular-devkit/core": ">= 20.0.0 < 21.0.0", + "@angular-devkit/schematics": ">= 20.0.0 < 21.0.0", + "@angular-eslint/eslint-plugin": "20.7.0", + "@angular-eslint/eslint-plugin-template": "20.7.0", + "ignore": "7.0.5", + "semver": "7.7.3", "strip-json-comments": "3.1.1" + } + }, + "node_modules/@angular-eslint/schematics/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" }, - "peerDependencies": { - "@angular-devkit/core": ">= 18.0.0 < 19.0.0", - "@angular-devkit/schematics": ">= 18.0.0 < 19.0.0" + "engines": { + "node": ">=10" } }, "node_modules/@angular-eslint/template-parser": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-18.0.1.tgz", - "integrity": "sha512-22fKzkWo9Ts8aY/WHL1A6seS2tpltgRRXVfnZnnqvQRyRiuPnx1FC0ly7+QPZkThh8vdLwxU+BvtLq9Uiqh9OQ==", + "version": "20.7.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-20.7.0.tgz", + "integrity": "sha512-CVskZnF38IIxVVlKWi1VCz7YH/gHMJu2IY9bD1AVoBBGIe0xA4FRXJkW2Y+EDs9vQqZTkZZljhK5gL65Ro1PeQ==", "dev": true, + "license": "MIT", "dependencies": { - "@angular-eslint/bundled-angular-compiler": "18.0.1", - "eslint-scope": "^8.0.0" + "@angular-eslint/bundled-angular-compiler": "20.7.0", + "eslint-scope": "^9.0.0" }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0", @@ -400,299 +626,284 @@ } }, "node_modules/@angular-eslint/utils": { - "version": "18.0.1", - "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-18.0.1.tgz", - "integrity": "sha512-Q9lCySqg+9h2cz08+SoWj48cY1i04tL1k3bsQJmF2TsylAw2mSsNGX2X3h9WkdxY7sUoY0mP7MVW1iU54Gobcg==", + "version": "20.7.0", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-20.7.0.tgz", + "integrity": "sha512-B6EJHbsk2W/lnS3kS/gm56VGvX735419z/DzgbRDcOvqMGMLwD1ILzv5OTEcL1rzpnB0AHW+IxOu6y/aCzSNUA==", "dev": true, + "license": "MIT", "dependencies": { - "@angular-eslint/bundled-angular-compiler": "18.0.1" + "@angular-eslint/bundled-angular-compiler": "20.7.0" }, "peerDependencies": { - "@typescript-eslint/utils": "^7.11.0 || ^8.0.0-alpha.20", + "@typescript-eslint/utils": "^7.11.0 || ^8.0.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": "*" } }, "node_modules/@angular/animations": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-18.0.4.tgz", - "integrity": "sha512-xbdtBUvpTGEmVQkCoOad26LBMRy9ddM9pvCidMZBWXiM7NEuc3dfVT99a1cU4MZFiJeiQEvOWQn03iXskbBMGQ==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/animations/-/animations-20.3.27.tgz", + "integrity": "sha512-BgGTloDiD3qIFVSxZq8xO6CiyhKn00WbhQQiklZF8WI2hXd3Hmc1OUAAHqSMh2c9uL7X1ZYkg9lSzjiasK2vKg==", + "deprecated": "@angular/animations is deprecated. Use `animate.enter` and `animate.leave` instead. For more information see: https://v22.angular.dev/guide/animations.", "dev": true, + "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0" + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/core": "18.0.4" + "@angular/core": "20.3.27" } }, "node_modules/@angular/build": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@angular/build/-/build-18.0.5.tgz", - "integrity": "sha512-6C+azPDYqPWX9/+53OTyvzmAKxrGwgQcDnueC/Sc6NZJOAs2VsOIn5ULPtcRDlrf/Rbo0dGM4OvKCM2q1BRuBg==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@angular/build/-/build-20.3.32.tgz", + "integrity": "sha512-ph/qcT6C7RYriU5dxXfNrYBEvCwU4acxTNoxkdGQHYxM7iOKT0K1YO6v5JBNRZ1S4LOJhWmGaWzJ+sRei0iGsQ==", "dev": true, + "license": "MIT", "dependencies": { "@ampproject/remapping": "2.3.0", - "@angular-devkit/architect": "0.1800.5", - "@babel/core": "7.24.5", - "@babel/helper-annotate-as-pure": "7.22.5", - "@babel/helper-split-export-declaration": "7.24.5", - "@vitejs/plugin-basic-ssl": "1.1.0", - "ansi-colors": "4.1.3", + "@angular-devkit/architect": "0.2003.32", + "@babel/core": "7.29.7", + "@babel/helper-annotate-as-pure": "7.27.3", + "@babel/helper-split-export-declaration": "7.24.7", + "@inquirer/confirm": "5.1.14", + "@vitejs/plugin-basic-ssl": "2.1.0", + "beasties": "0.3.5", "browserslist": "^4.23.0", - "critters": "0.0.22", - "esbuild": "0.21.3", - "fast-glob": "3.3.2", - "https-proxy-agent": "7.0.4", - "inquirer": "9.2.22", - "lmdb": "3.0.8", - "magic-string": "0.30.10", - "mrmime": "2.0.0", - "ora": "5.4.1", - "parse5-html-rewriting-stream": "7.0.0", - "picomatch": "4.0.2", - "piscina": "4.5.0", - "sass": "1.77.2", - "semver": "7.6.2", - "undici": "6.18.0", - "vite": "5.2.11", - "watchpack": "2.4.1" + "esbuild": "0.28.1", + "https-proxy-agent": "7.0.6", + "istanbul-lib-instrument": "6.0.3", + "jsonc-parser": "3.3.1", + "listr2": "9.0.1", + "magic-string": "0.30.17", + "mrmime": "2.0.1", + "parse5-html-rewriting-stream": "8.0.0", + "picomatch": "4.0.4", + "piscina": "5.2.0", + "rollup": "4.59.0", + "sass": "1.90.0", + "semver": "7.7.2", + "source-map-support": "0.5.21", + "tinyglobby": "0.2.14", + "vite": "7.3.6", + "watchpack": "2.4.4" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "node": "^20.19.0 || ^22.12.0 || >=24.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, + "optionalDependencies": { + "lmdb": "3.4.2" + }, "peerDependencies": { - "@angular/compiler-cli": "^18.0.0", - "@angular/localize": "^18.0.0", - "@angular/platform-server": "^18.0.0", - "@angular/service-worker": "^18.0.0", + "@angular/compiler": "^20.0.0", + "@angular/compiler-cli": "^20.0.0", + "@angular/core": "^20.0.0", + "@angular/localize": "^20.0.0", + "@angular/platform-browser": "^20.0.0", + "@angular/platform-server": "^20.0.0", + "@angular/service-worker": "^20.0.0", + "@angular/ssr": "^20.3.32", + "karma": "^6.4.0", "less": "^4.2.0", + "ng-packagr": "^20.0.0", "postcss": "^8.4.0", - "tailwindcss": "^2.0.0 || ^3.0.0", - "typescript": ">=5.4 <5.5" + "tailwindcss": "^2.0.0 || ^3.0.0 || ^4.0.0", + "tslib": "^2.3.0", + "typescript": ">=5.8 <6.0", + "vitest": "^3.1.1" }, "peerDependenciesMeta": { + "@angular/core": { + "optional": true + }, "@angular/localize": { "optional": true }, + "@angular/platform-browser": { + "optional": true + }, "@angular/platform-server": { "optional": true }, "@angular/service-worker": { "optional": true }, + "@angular/ssr": { + "optional": true + }, + "karma": { + "optional": true + }, "less": { "optional": true }, + "ng-packagr": { + "optional": true + }, "postcss": { "optional": true }, "tailwindcss": { "optional": true + }, + "vitest": { + "optional": true } } }, "node_modules/@angular/cdk": { - "version": "17.3.10", - "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-17.3.10.tgz", - "integrity": "sha512-b1qktT2c1TTTe5nTji/kFAVW92fULK0YhYAvJ+BjZTPKu2FniZNe8o4qqQ0pUuvtMu+ZQxp/QqFYoidIVCjScg==", + "version": "20.2.14", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-20.2.14.tgz", + "integrity": "sha512-7bZxc01URbiPiIBWThQ69XwOxVduqEKN4PhpbF2AAyfMc/W8Hcr4VoIJOwL0O1Nkq5beS8pCAqoOeIgFyXd/kg==", "dev": true, + "license": "MIT", "dependencies": { + "parse5": "^8.0.0", "tslib": "^2.3.0" }, - "optionalDependencies": { - "parse5": "^7.1.2" - }, "peerDependencies": { - "@angular/common": "^17.0.0 || ^18.0.0", - "@angular/core": "^17.0.0 || ^18.0.0", + "@angular/common": "^20.0.0 || ^21.0.0", + "@angular/core": "^20.0.0 || ^21.0.0", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/cli": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-18.0.5.tgz", - "integrity": "sha512-w3NOdj6T7QhBmFleavc+AEhcAMyPkt7RsyWW2saufD6x55gzynGQZb9UBZwKDUAR6UtqchBX/HEBWCLNnjbiHg==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-20.3.32.tgz", + "integrity": "sha512-WIMbTrEJYVVz4Phs8nn6yK/bzCSt1dDlxtAEnS2melTWXKGF6WK/OqVaH0+Cox0SNagA81dvvSbGlFYCxncYfQ==", "dev": true, + "license": "MIT", "dependencies": { - "@angular-devkit/architect": "0.1800.5", - "@angular-devkit/core": "18.0.5", - "@angular-devkit/schematics": "18.0.5", - "@schematics/angular": "18.0.5", + "@angular-devkit/architect": "0.2003.32", + "@angular-devkit/core": "20.3.32", + "@angular-devkit/schematics": "20.3.32", + "@inquirer/prompts": "7.8.2", + "@listr2/prompt-adapter-inquirer": "3.0.1", + "@modelcontextprotocol/sdk": "1.26.0", + "@schematics/angular": "20.3.32", "@yarnpkg/lockfile": "1.1.0", - "ansi-colors": "4.1.3", - "ini": "4.1.2", - "inquirer": "9.2.22", - "jsonc-parser": "3.2.1", - "npm-package-arg": "11.0.2", - "npm-pick-manifest": "9.0.1", - "ora": "5.4.1", - "pacote": "18.0.6", - "resolve": "1.22.8", - "semver": "7.6.2", - "symbol-observable": "4.0.0", - "yargs": "17.7.2" + "algoliasearch": "5.35.0", + "ini": "5.0.0", + "jsonc-parser": "3.3.1", + "listr2": "9.0.1", + "npm-package-arg": "13.0.0", + "pacote": "21.5.1", + "resolve": "1.22.10", + "semver": "7.7.2", + "yargs": "18.0.0", + "zod": "4.1.13" }, "bin": { "ng": "bin/ng.js" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "node": "^20.19.0 || ^22.12.0 || >=24.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@angular/cli/node_modules/ini": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.2.tgz", - "integrity": "sha512-AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-5.0.0.tgz", + "integrity": "sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==", "dev": true, + "license": "ISC", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^18.17.0 || >=20.5.0" } }, "node_modules/@angular/common": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/common/-/common-18.0.4.tgz", - "integrity": "sha512-7WxZKLzSu5QtyLGrtlZrtUQlP3WfDR++yHr5jF9DJZ3IY35UutwiPCegCcq4Qh5X2xWqnRKGm20TLlKVoj0t5Q==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/common/-/common-20.3.27.tgz", + "integrity": "sha512-4ectYP60XatB9zZ40WlfmaTzjmEhaz8SSqLsbZI4VZ8gDb5qNmxWtwwt8UxS3NmDHEgqdNL8UPO4E94+yKCICg==", "dev": true, + "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0" + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/core": "18.0.4", + "@angular/core": "20.3.27", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/compiler": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-18.0.4.tgz", - "integrity": "sha512-OVPXtJo5SkGQUCioCVxKcRfEw48tz8xCtJGDXjVKWtyOkXnmWl8Y/e54mteiJd1KybXHvPLW0LPtWZYB06Qy7g==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-20.3.27.tgz", + "integrity": "sha512-in3THZ678GAYuOR9RZV18+zZz0KGhlGikyUEfLeALLjGf9ZaR3n+t19BmYx6G2VkF/Xqadne1omQ2vbl6PRASA==", "dev": true, + "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0" - }, - "peerDependencies": { - "@angular/core": "18.0.4" - }, - "peerDependenciesMeta": { - "@angular/core": { - "optional": true - } + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" } }, "node_modules/@angular/compiler-cli": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-18.0.4.tgz", - "integrity": "sha512-pUv664JCZHKHsLDvO8iNjWXVHOB2ggKxVoxiowOMNpR4dqxrK/oOLGkPGltYUW/xF6Eajc7Zs0lK/R5uljoYQg==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-20.3.27.tgz", + "integrity": "sha512-R0j9mFfUdGmmw867V/TfMSOBkLZT6ASxyY5tc1NDNmxQioZDVIDP9pqBOayzhJ0xiuDc9JellQXUTZ+vm+b/Zg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/core": "7.24.7", + "@babel/core": "7.29.7", "@jridgewell/sourcemap-codec": "^1.4.14", - "chokidar": "^3.0.0", + "chokidar": "^4.0.0", "convert-source-map": "^1.5.1", "reflect-metadata": "^0.2.0", "semver": "^7.0.0", "tslib": "^2.3.0", - "yargs": "^17.2.1" + "yargs": "^18.0.0" }, "bin": { "ng-xi18n": "bundles/src/bin/ng_xi18n.js", - "ngc": "bundles/src/bin/ngc.js", - "ngcc": "bundles/ngcc/index.js" + "ngc": "bundles/src/bin/ngc.js" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0" + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/compiler": "18.0.4", - "typescript": ">=5.4 <5.5" - } - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/core": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", - "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", - "dev": true, - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helpers": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/template": "^7.24.7", - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" + "@angular/compiler": "20.3.27", + "typescript": ">=5.8 <6.0" }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@angular/compiler-cli/node_modules/@babel/generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", - "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, "node_modules/@angular/core": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/core/-/core-18.0.4.tgz", - "integrity": "sha512-k0AUZbJc0eyzRexvKlR1sR0qNhe54Om9ln6lRn7y1+gAsg+OwFDyF427fFuzqpZVe/MmpvX3CXWdl0twZAYEiA==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/core/-/core-20.3.27.tgz", + "integrity": "sha512-8EfYIUST5CKldOF4MAYWTFFRB7EtwqUoQBZdar6US39/EEzWm/wm/iRNkH2jmKe4YuPa2GoeHS1WQ8VRuOk7Dg==", "dev": true, + "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0" + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { + "@angular/compiler": "20.3.27", "rxjs": "^6.5.3 || ^7.4.0", - "zone.js": "~0.14.0" + "zone.js": "~0.15.0" + }, + "peerDependenciesMeta": { + "@angular/compiler": { + "optional": true + }, + "zone.js": { + "optional": true + } } }, "node_modules/@angular/flex-layout": { @@ -701,6 +912,7 @@ "integrity": "sha512-cTAPVMMxnyIFwpZwdq0PL5mdP9Qh+R8MB7ZBezVaN3Rz2fRrkagzKpLvPX3TFzepXrvHBdpKsU4b8u+NxEC/6g==", "deprecated": "This package has been deprecated. Please see https://blog.angular.io/modern-css-in-angular-layouts-4a259dca9127", "dev": true, + "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, @@ -713,103 +925,58 @@ } }, "node_modules/@angular/forms": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-18.0.4.tgz", - "integrity": "sha512-LM2rVIuJa2fGxP0oCy0uFSGY6h9tyL64gtGp02QqKaVszG4oJ8wue0/VSbBtKyH0xEN4eOXDzOXbiahbtFhRZA==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/forms/-/forms-20.3.27.tgz", + "integrity": "sha512-cNG26wi3tr3m8At6puxJpAMVk9mBhEqREA4Jk/klalMwWuYEf8ApTEAw0a5NUfMxDkL3dcJJwDRf8rK6ma6TYQ==", "dev": true, + "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0" + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/common": "18.0.4", - "@angular/core": "18.0.4", - "@angular/platform-browser": "18.0.4", + "@angular/common": "20.3.27", + "@angular/core": "20.3.27", + "@angular/platform-browser": "20.3.27", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/material": { - "version": "17.3.10", - "resolved": "https://registry.npmjs.org/@angular/material/-/material-17.3.10.tgz", - "integrity": "sha512-hHMQES0tQPH5JW33W+mpBPuM8ybsloDTqFPuRV8cboDjosAWfJhzAKF3ozICpNlUrs62La/2Wu/756GcQrxebg==", + "version": "20.2.14", + "resolved": "https://registry.npmjs.org/@angular/material/-/material-20.2.14.tgz", + "integrity": "sha512-IbAgV6XLsvmHiJzxycVhcNC1PA4M30qi+ERCOir6cT333Bxm8vDV32gsOjfL52uzG5YRARroPC+8s1XqR2oxeA==", "dev": true, + "license": "MIT", "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/auto-init": "15.0.0-canary.7f224ddd4.0", - "@material/banner": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/button": "15.0.0-canary.7f224ddd4.0", - "@material/card": "15.0.0-canary.7f224ddd4.0", - "@material/checkbox": "15.0.0-canary.7f224ddd4.0", - "@material/chips": "15.0.0-canary.7f224ddd4.0", - "@material/circular-progress": "15.0.0-canary.7f224ddd4.0", - "@material/data-table": "15.0.0-canary.7f224ddd4.0", - "@material/density": "15.0.0-canary.7f224ddd4.0", - "@material/dialog": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/drawer": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/fab": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/floating-label": "15.0.0-canary.7f224ddd4.0", - "@material/form-field": "15.0.0-canary.7f224ddd4.0", - "@material/icon-button": "15.0.0-canary.7f224ddd4.0", - "@material/image-list": "15.0.0-canary.7f224ddd4.0", - "@material/layout-grid": "15.0.0-canary.7f224ddd4.0", - "@material/line-ripple": "15.0.0-canary.7f224ddd4.0", - "@material/linear-progress": "15.0.0-canary.7f224ddd4.0", - "@material/list": "15.0.0-canary.7f224ddd4.0", - "@material/menu": "15.0.0-canary.7f224ddd4.0", - "@material/menu-surface": "15.0.0-canary.7f224ddd4.0", - "@material/notched-outline": "15.0.0-canary.7f224ddd4.0", - "@material/radio": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/segmented-button": "15.0.0-canary.7f224ddd4.0", - "@material/select": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/slider": "15.0.0-canary.7f224ddd4.0", - "@material/snackbar": "15.0.0-canary.7f224ddd4.0", - "@material/switch": "15.0.0-canary.7f224ddd4.0", - "@material/tab": "15.0.0-canary.7f224ddd4.0", - "@material/tab-bar": "15.0.0-canary.7f224ddd4.0", - "@material/tab-indicator": "15.0.0-canary.7f224ddd4.0", - "@material/tab-scroller": "15.0.0-canary.7f224ddd4.0", - "@material/textfield": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tooltip": "15.0.0-canary.7f224ddd4.0", - "@material/top-app-bar": "15.0.0-canary.7f224ddd4.0", - "@material/touch-target": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", "tslib": "^2.3.0" }, "peerDependencies": { - "@angular/animations": "^17.0.0 || ^18.0.0", - "@angular/cdk": "17.3.10", - "@angular/common": "^17.0.0 || ^18.0.0", - "@angular/core": "^17.0.0 || ^18.0.0", - "@angular/forms": "^17.0.0 || ^18.0.0", - "@angular/platform-browser": "^17.0.0 || ^18.0.0", + "@angular/cdk": "20.2.14", + "@angular/common": "^20.0.0 || ^21.0.0", + "@angular/core": "^20.0.0 || ^21.0.0", + "@angular/forms": "^20.0.0 || ^21.0.0", + "@angular/platform-browser": "^20.0.0 || ^21.0.0", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@angular/platform-browser": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-18.0.4.tgz", - "integrity": "sha512-8TJEPzIRV89s1ZP9T+7g9K7PFNfec+4Xyw5BLaTRBOqjXHmMzk+miRx0L18Lr66rp5r2vbNEE9vojMVHQRwhVA==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-20.3.27.tgz", + "integrity": "sha512-IV2zQ4zk6liyw5NE48bQqSk3nOAZ1rmDAQi7W4Kw0N8cs9MYVgK3zulo0zx5UqSv1kuNDAGb0HPR5tUGVOf9kw==", "dev": true, + "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0" + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/animations": "18.0.4", - "@angular/common": "18.0.4", - "@angular/core": "18.0.4" + "@angular/animations": "20.3.27", + "@angular/common": "20.3.27", + "@angular/core": "20.3.27" }, "peerDependenciesMeta": { "@angular/animations": { @@ -818,79 +985,86 @@ } }, "node_modules/@angular/platform-browser-dynamic": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-18.0.4.tgz", - "integrity": "sha512-K36/gamqs8etGlmWew7IwZ/bDJdI5ZeUqvOUmkKjJ9F2I/g5P/zZrB1qExwN/zsxzxd9idkvEhwY+YDeiZEEJg==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/platform-browser-dynamic/-/platform-browser-dynamic-20.3.27.tgz", + "integrity": "sha512-4UUs8vOswgBOWCRoeZrswguarBLrM3j6WGb927Y3GXdN37fVJQYjyKHivNeQwZvwsGgl5Nl6mvpBpZv47n/OrQ==", + "deprecated": "@angular/platform-browser-dynamic is deprecated. Use `@angular/platform-browser` instead.", "dev": true, + "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0" + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/common": "18.0.4", - "@angular/compiler": "18.0.4", - "@angular/core": "18.0.4", - "@angular/platform-browser": "18.0.4" + "@angular/common": "20.3.27", + "@angular/compiler": "20.3.27", + "@angular/core": "20.3.27", + "@angular/platform-browser": "20.3.27" } }, "node_modules/@angular/router": { - "version": "18.0.4", - "resolved": "https://registry.npmjs.org/@angular/router/-/router-18.0.4.tgz", - "integrity": "sha512-nr1ZI3lynKBtr3a75APuVkIaiXRG5mEnW/RIyxwzxbKBB14901mby46o0jm9Y/CPb2rH5UpuwZhTKRE6QS/xLw==", + "version": "20.3.27", + "resolved": "https://registry.npmjs.org/@angular/router/-/router-20.3.27.tgz", + "integrity": "sha512-F3hfJQ0GAuD6LdeB7A6fMfaErc4HXCtCQGh3C/8VrbVEbGfIgSveNjQXzGYPNklnOLhj1BmWf5w0WniUAEjLBA==", "dev": true, + "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0" + "node": "^20.19.0 || ^22.12.0 || >=24.0.0" }, "peerDependencies": { - "@angular/common": "18.0.4", - "@angular/core": "18.0.4", - "@angular/platform-browser": "18.0.4", + "@angular/common": "20.3.27", + "@angular/core": "20.3.27", + "@angular/platform-browser": "20.3.27", "rxjs": "^6.5.3 || ^7.4.0" } }, "node_modules/@babel/code-frame": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", - "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz", + "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/highlight": "^7.24.7", - "picocolors": "^1.0.0" + "@babel/helper-validator-identifier": "^7.29.7", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", - "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz", + "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.5.tgz", - "integrity": "sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz", + "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==", "dev": true, + "license": "MIT", "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.24.5", - "@babel/helpers": "^7.24.5", - "@babel/parser": "^7.24.5", - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.5", - "@babel/types": "^7.24.5", + "@babel/code-frame": "^7.29.7", + "@babel/generator": "^7.29.7", + "@babel/helper-compilation-targets": "^7.29.7", + "@babel/helper-module-transforms": "^7.29.7", + "@babel/helpers": "^7.29.7", + "@babel/parser": "^7.29.7", + "@babel/template": "^7.29.7", + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7", + "@jridgewell/remapping": "^2.3.5", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -905,70 +1079,80 @@ "url": "https://opencollective.com/babel" } }, + "node_modules/@babel/core/node_modules/@babel/generator": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz", + "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.7", + "@babel/types": "^7.29.7", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/core/node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@babel/core/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/generator": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.5.tgz", - "integrity": "sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.3.tgz", + "integrity": "sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.5", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" + "@babel/parser": "^7.28.3", + "@babel/types": "^7.28.2", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", - "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.27.3.tgz", + "integrity": "sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.24.7.tgz", - "integrity": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==", - "dev": true, - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/types": "^7.27.3" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", - "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz", + "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "browserslist": "^4.22.2", + "@babel/compat-data": "^7.29.7", + "@babel/helper-validator-option": "^7.29.7", + "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -981,24 +1165,24 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.7.tgz", - "integrity": "sha512-kTkaDl7c9vO80zeX1rJxnuRpEsD5tA81yh11X1gQo+PhSti3JS+7qeZo9U4RHobKRiFPKaGK3svUAeb8D0Q7eg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.29.7.tgz", + "integrity": "sha512-IY3ZD9Tmooqr3TUhc3DUWxiuo8xx1DWLhd5M7hQ+ZWJamqM2BbalrBJb2MisSLoYorOj75U03qULCxQTY9r3hg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-member-expression-to-functions": "^7.24.7", - "@babel/helper-optimise-call-expression": "^7.24.7", - "@babel/helper-replace-supers": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/helper-annotate-as-pure": "^7.29.7", + "@babel/helper-member-expression-to-functions": "^7.29.7", + "@babel/helper-optimise-call-expression": "^7.29.7", + "@babel/helper-replace-supers": "^7.29.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.29.7", + "@babel/traverse": "^7.29.7", "semver": "^6.3.1" }, "engines": { @@ -1009,24 +1193,13 @@ } }, "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz", + "integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", - "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1037,18 +1210,20 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.24.7.tgz", - "integrity": "sha512-03TCmXy2FtXJEZfbXDTSqq1fRJArk7lX9DOFC/47VthYcxyIOx+eXQmdo6DOQvrbpIix+KfXwvuXdFDZHxt+rA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.29.7.tgz", + "integrity": "sha512-907Uymvqgg1dwUA+7IGwFAOSYzQOuzPXKNJ1yxzwPffzkYFg2q2eHi1fIOs6sXkG9NbIUMunnUlkYsfRFNvomg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "regexpu-core": "^5.3.1", + "@babel/helper-annotate-as-pure": "^7.29.7", + "regexpu-core": "^6.3.1", "semver": "^6.3.1" }, "engines": { @@ -1059,12 +1234,13 @@ } }, "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz", + "integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.7" + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1075,100 +1251,98 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz", - "integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==", + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.8.tgz", + "integrity": "sha512-47UwBLPpQi1NoWzLuHNjRoHlYXMwIJoBf7MFou6viC/sIHWYygpvr0B6IAyh5sBdA2nr2LPIRww8lfaUVQINBA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", + "@babel/helper-compilation-targets": "^7.28.6", + "@babel/helper-plugin-utils": "^7.28.6", + "debug": "^4.4.3", "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" + "resolve": "^1.22.11" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", - "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", + "node_modules/@babel/helper-define-polyfill-provider/node_modules/resolve": { + "version": "1.22.12", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.12.tgz", + "integrity": "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.7" + "es-errors": "^1.3.0", + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" }, "engines": { - "node": ">=6.9.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@babel/helper-function-name": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", - "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", + "node_modules/@babel/helper-globals": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz", + "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==", "dev": true, - "dependencies": { - "@babel/template": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", - "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" - }, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.7.tgz", - "integrity": "sha512-LGeMaf5JN4hAT471eJdBs/GK1DoYIJ5GCtZN/EsL6KUiiDZOvO/eKE11AMZJa2zP4zk4qe9V2O/hxAmkRc8p6w==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.29.7.tgz", + "integrity": "sha512-j+7JYmk1JYDtACIGj0QJqqWZjoUpMoEikQGADMaHgCMCSDqd2+P32rfcibUNrGOMWrlzK1WJBdxrB3JJQZwWtg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", - "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz", + "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", - "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz", + "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-simple-access": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7" + "@babel/helper-module-imports": "^7.29.7", + "@babel/helper-validator-identifier": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1177,48 +1351,39 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-module-transforms/node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", - "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", - "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.29.7.tgz", + "integrity": "sha512-+kmGVjcT9RGYzoDwdwEqEvGgKe3BYq+O1iGzjFubaNgZHwYHP6lsF2Yghf4kEuv9BV7tYDZ913aBW9am6YKong==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.7" + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz", - "integrity": "sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.29.7.tgz", + "integrity": "sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.24.7.tgz", - "integrity": "sha512-9pKLcTlZ92hNZMQfGCHImUpDOlAgkkpqalWEeftW5FBya75k8Li2ilerxkM/uBEj01iBZXcCIB/bwvDYgWyibA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.29.7.tgz", + "integrity": "sha512-16AMiW26DbXWBbr3B8wNozKM0ydMLB892vaOaJW/fPJdnT8vJk5sdkQcU/isqUxyCE0cEoa8wZOcbgDuC4b6Og==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-wrap-function": "^7.24.7" + "@babel/helper-annotate-as-pure": "^7.29.7", + "@babel/helper-wrap-function": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1228,26 +1393,28 @@ } }, "node_modules/@babel/helper-remap-async-to-generator/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz", + "integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.7" + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.7.tgz", - "integrity": "sha512-qTAxxBM81VEyoAY0TtLrx1oAEJc09ZK67Q9ljQToqCnA+55eNwCORaxlKyu+rNfX86o8OXRUSNUnrtsAZXM9sg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.29.7.tgz", + "integrity": "sha512-atfGXWSeCiF4DnKZIfmJfQRkSw9b9gNNXR1kqKjbhG4pGYCOnkp8OcTB8E3NXjBu8NpheSnOeNKz8KT7UNFTmQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-member-expression-to-functions": "^7.24.7", - "@babel/helper-optimise-call-expression": "^7.24.7" + "@babel/helper-member-expression-to-functions": "^7.29.7", + "@babel/helper-optimise-call-expression": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1256,119 +1423,101 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-simple-access": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", - "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", - "dev": true, - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", - "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.29.7.tgz", + "integrity": "sha512-brcMGQaVzIeUb+6/bs1Av0f8YuNNjKY2JyvfRCsFuFsdKccEQ5Ges2y74D74NZ1Rz8lKJ9ksJkfqwQFJ/iNEyQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz", - "integrity": "sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", + "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.5" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", - "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz", + "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", - "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz", + "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", - "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz", + "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.24.7.tgz", - "integrity": "sha512-N9JIYk3TD+1vq/wn77YnJOqMtfWhNewNE+DJV4puD2X7Ew9J4JvrzrFDfTfyv5EgEXVy9/Wt8QiOErzEmv5Ifw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.29.7.tgz", + "integrity": "sha512-iES0Skag9ERIF68aXadpO6dbXa03mNWK3sEqJaMnLNs/eC3l0lkImdfoy6Y09/SfkpawdAB4RjQ7PVA7TcVGdw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-function-name": "^7.24.7", - "@babel/template": "^7.24.7", - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/template": "^7.29.7", + "@babel/traverse": "^7.29.7", + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz", - "integrity": "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz", + "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/template": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", - "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", - "dev": true, - "dependencies": { - "@babel/helper-validator-identifier": "^7.24.7", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" + "@babel/template": "^7.29.7", + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", - "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz", + "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==", "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.7" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -1377,13 +1526,30 @@ } }, "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.7.tgz", - "integrity": "sha512-TiT1ss81W80eQsN+722OaeQMY/G4yTb4G9JrqeiDADs3N8lbPMGldWi9x8tyqCW5NLx1Jh2AvkE6r6QvEltMMQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.29.7.tgz", + "integrity": "sha512-j8SrR0zLZrRsC09DlszEx8FpMiwukKffYXMK0d5LmOglO7vGG6sz/BR/20yHqWH+Lnn31JTt2PE3hIWNgM2J6w==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/traverse": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.29.7.tgz", + "integrity": "sha512-r8j8escF+U2FUHo0KOhPUdMzUO+jp9fInva6+ACVAF3Y97Ev+5iNZwiqTghmzNeWwDkOPlYuTcfb1vDaoZKmAQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1393,12 +1559,13 @@ } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.7.tgz", - "integrity": "sha512-unaQgZ/iRu/By6tsjMZzpeBZjChYfLYry6HrEXPoz3KmfF0sVBQ1l8zKMQ4xRGLWVsjuvB8nQfjNP/DcfEOCsg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.29.7.tgz", + "integrity": "sha512-GE1TFSiuFeGsCxmYXZl8HwoPrVlwe4rHPFE8weieGKZqnDORK+Ar3vgWMgW+AOxQ6/2TgLSKx9p6W7O4rC6qgQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1408,14 +1575,15 @@ } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.7.tgz", - "integrity": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.29.7.tgz", + "integrity": "sha512-QQt9qKHZ2sg/kivaLr7lnQr8HVrQDdBNSfCsTjiDxRuX/K5ORyKq+Bu8Xr0cDE3Dfkv0cw28Ve0EKyKMvulkOw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/plugin-transform-optional-chaining": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.29.7", + "@babel/plugin-transform-optional-chaining": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1425,13 +1593,14 @@ } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.7.tgz", - "integrity": "sha512-utA4HuR6F4Vvcr+o4DnjL8fCOlgRFGbeeBEGNg3ZTrLFw6VWG5XmUrvcQ0FjIYMU2ST4XcR2Wsp7t9qOAPnxMg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.29.7.tgz", + "integrity": "sha512-pn6QacGLgvCcwc+syUhKE/qSjV2D1IHDB84RNxWYSt1mW3K/SCtjinZ2p0cETJxAWBjPy3K/1lHwG5BjjPxNlw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1445,6 +1614,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" }, @@ -1452,76 +1622,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.7.tgz", - "integrity": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.29.7.tgz", + "integrity": "sha512-/An1OCBN93thpBAGyfsK2pcf0jvju1SAtKkL2Ny++B5Sy6sqgzXDQH1cZxWbF96Wuk+bn41MDA9bLd4VVAw6rw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1531,138 +1639,13 @@ } }, "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", - "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.29.7.tgz", + "integrity": "sha512-zGYcYfq/WmZ4V+kBIXQon9dSSc8ircGZqw9ZaNhhGj9nZkeBu1jHLBDQqYYi5WA9uawvA2sIMbry2nCFhf5Djg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1676,6 +1659,7 @@ "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -1688,12 +1672,13 @@ } }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.7.tgz", - "integrity": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.29.7.tgz", + "integrity": "sha512-N7zArUXWzAMzm+/N0uPBeVB3Fam5lMxtUwMmDK5f/IBBS7a7p1qeUoxd/6CckXoxUdgsntq1Dh8xNW06maZbDQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1703,15 +1688,15 @@ } }, "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", - "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.28.0.tgz", + "integrity": "sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20", - "@babel/plugin-syntax-async-generators": "^7.8.4" + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1", + "@babel/traverse": "^7.28.0" }, "engines": { "node": ">=6.9.0" @@ -1721,14 +1706,15 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", - "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.27.1.tgz", + "integrity": "sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.24.1", - "@babel/helper-plugin-utils": "^7.24.0", - "@babel/helper-remap-async-to-generator": "^7.22.20" + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-remap-async-to-generator": "^7.27.1" }, "engines": { "node": ">=6.9.0" @@ -1738,12 +1724,13 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.7.tgz", - "integrity": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.29.7.tgz", + "integrity": "sha512-cUSmjh72N+rN4PrkFlN1dJwNCwjVp5d38/CQrEsFggkD10UiFlBFgdH3tv5dNsLuHY+3S8db2xCHjhZcv5WgvA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1753,12 +1740,13 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.7.tgz", - "integrity": "sha512-Nd5CvgMbWc+oWzBsuaMcbwjJWAcp5qzrbg69SZdHSP7AMY0AbWFqFO0WTFCA1jxhMCwodRwvRec8k0QUbZk7RQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.29.7.tgz", + "integrity": "sha512-ONyr4+AZhKh8yKWInVxU9AXA9EbsyeLcL6V0dJy6M2/62vuvpGm29zzuymbTpdc451GEpDIdAyPLP3r+P61yKQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1768,13 +1756,14 @@ } }, "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.7.tgz", - "integrity": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.29.7.tgz", + "integrity": "sha512-GtcpjFvanPfzNQi3eTitsCqtRRmmqzpy/A+yhTR1HaZo1Ly3EA8ZXxlPyHdR8/IuRMYc3E4wdGBewB2QKQjAaA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-class-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1784,14 +1773,14 @@ } }, "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.7.tgz", - "integrity": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.29.7.tgz", + "integrity": "sha512-kibJgmEdX2iMwsHY2tSZNDgj8PwIlCQz7FK9KuGKO8zsuoUwSEhoNnNVp/emKWrbY4HeO6kkXfdMqRKKKXBm2A==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-class-static-block": "^7.14.5" + "@babel/helper-create-class-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1801,19 +1790,18 @@ } }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.7.tgz", - "integrity": "sha512-CFbbBigp8ln4FU6Bpy6g7sE8B/WmCmzvivzUC6xDAdWVsjYTXijpuuGJmYkAaoWAzcItGKT3IOAbxRItZ5HTjw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.29.7.tgz", + "integrity": "sha512-qV0OGGBVacduzQHE649JyCneOFI/maT+YKsO+K4Yi3xv2wTPNjM/W2o2gdzMwEAZz7fXNTHAe0NcSg30bIN69g==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-replace-supers": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "globals": "^11.1.0" + "@babel/helper-annotate-as-pure": "^7.29.7", + "@babel/helper-compilation-targets": "^7.29.7", + "@babel/helper-globals": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-replace-supers": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1823,37 +1811,27 @@ } }, "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz", + "integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/plugin-transform-classes/node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", - "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.7.tgz", - "integrity": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.29.7.tgz", + "integrity": "sha512-RK7/IyU5phpuCdBAuig5VkzG/EnbDaui5SQGdU9BFrHdV+mV4cUjLMQ9lJDjLNtWHsqtiefpGZUXQP2BiTYMsA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/template": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/template": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1863,12 +1841,14 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.7.tgz", - "integrity": "sha512-19eJO/8kdCQ9zISOf+SEUJM/bAUIsvY3YDnXZTupUCQ8LgrWnsG/gFB9dvXqdXnRXMAM8fvt7b0CBKQHNGy1mw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.29.7.tgz", + "integrity": "sha512-iPX8aD6H9zV5s7ZsqTdNocPN/MGQ5sSMnElKrktxjJRMnB2jN/1p2+R7GkfD6CAYoVFqy5A4XnSIUeGgJzIWpg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1878,13 +1858,14 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.7.tgz", - "integrity": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.29.7.tgz", + "integrity": "sha512-3qc18hsD2RdZiyJNDNc7HQpv6xbncwh8FYtxNFFzclSyh/trPD9KkVR9BDECUjDLvb7yJVF15GfYUuC+LMkkiQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1894,12 +1875,13 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.7.tgz", - "integrity": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.29.7.tgz", + "integrity": "sha512-6IvRRriEMqnBwD6chtxdLpMYCHWEzN+oL5cyQtjykya19UgzbmKhxmhZgKC/LHxS2nYr9Q/qYPZ5Lr6jOL9+yQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1908,14 +1890,48 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.7.tgz", - "integrity": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==", + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.29.7.tgz", + "integrity": "sha512-2wiIyo2BjtgU7HufSeDnL9L2O7zr8jmhFKuSr65VpRkUiRKRNpb0mdlk56+XPPKoIrfHqzbMuglDvZun0RISsA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.29.7.tgz", + "integrity": "sha512-giOlEm/EFjfjr+te9NsdjkUo2v4f8rS/SXPumRVHAtbNcyNlvtREkU1dZzaIDclNpnaVhlCqRdFKhJBjBikzLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-explicit-resource-management": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-explicit-resource-management/-/plugin-transform-explicit-resource-management-7.29.7.tgz", + "integrity": "sha512-Rstj7coNz8sE+7Ju7ihpHLI564lsK5pUpNNlvptCIC/16E/S5hbl6n3kESPKdNRmqEWlpn5xpS5Q2dvXBsySLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/plugin-transform-destructuring": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1925,13 +1941,13 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.7.tgz", - "integrity": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.29.7.tgz", + "integrity": "sha512-zFpMOTLZBdW5LfObqcSbL6kefg4R4eLdmvS0wbN9M6D5Mym/sKm9toOoWyVOa+xDjvCnuWcHls2YonXwHvH3CQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1941,13 +1957,13 @@ } }, "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.7.tgz", - "integrity": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.29.7.tgz", + "integrity": "sha512-24B2nOy2TeJSMheqwPD4DDQOV/elLSIlKxjZt4i05H5AgdPdWR3n18HnNrcJ+j76WJd9gbwb9jPjNYUy6RautA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1957,13 +1973,14 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.7.tgz", - "integrity": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.29.7.tgz", + "integrity": "sha512-zeSIHh0+E1Um1WJRXCFlHQYu2ieJNdivLLjlBEp+dIBu3S51n+SZZmIXjxnItw6pz56Cn+KvK68BIBVsxq2JiQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1973,14 +1990,15 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.7.tgz", - "integrity": "sha512-U9FcnA821YoILngSmYkW6FjyQe2TyZD5pHt4EVIhmcTkrJw/3KqcrRSxuOo5tFZJi7TE19iDyI1u+weTI7bn2w==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.29.7.tgz", + "integrity": "sha512-otRWaHXE6fbAGkePvaj/kvs3HsqXfPhlnzwSOlnFgbqCPMd975dW+4wZ00WFBt+/YlBGcJwNrARQTOJOb4ZrIg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-compilation-targets": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -1990,13 +2008,13 @@ } }, "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.7.tgz", - "integrity": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.29.7.tgz", + "integrity": "sha512-RRnE2+eon1rJAq8MnoF1b5kTpY1vU88twHcvcKMrsqP/jxIRqDVs9iJB5fqPuqyeFAW0wJo4MlUIPpQCq/aRsg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-json-strings": "^7.8.3" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2006,12 +2024,13 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.7.tgz", - "integrity": "sha512-vcwCbb4HDH+hWi8Pqenwnjy+UiklO4Kt1vfspcQYFhJdpthSnW8XvWGyDZWKNVrVbVViI/S7K9PDJZiUmP2fYQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.29.7.tgz", + "integrity": "sha512-DZ/oLP21ZuWx1vKqnoNv6/tvEK48AQOBRai40CX9dTjGluvT/YZCyY3rryDtyUqCEoyNroy5KKPwX2iQCiRvyw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2021,13 +2040,13 @@ } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.7.tgz", - "integrity": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.29.7.tgz", + "integrity": "sha512-A0H91hh6W8MFRkp5TqJmMr39jzGD1A1E1Ysiv2O06Sfbhkapm+XyIzxWCEh5kqwOZ1/8QZ0dY3SeQ7XBqfJd5Q==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2037,12 +2056,13 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.7.tgz", - "integrity": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.29.7.tgz", + "integrity": "sha512-hl1kwFZCCiDyfH25Xmco9jTrkPgnS9pmOzSG7W5I4SaGbLeqKv417hcU2RKmaxoPEgsoJh7ZPOrnPGq99bHoUg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2052,13 +2072,14 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.7.tgz", - "integrity": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.29.7.tgz", + "integrity": "sha512-fxtQoH3m5ywUSIfaH0FGCzWu4McsYon5bD3K4XnskC7f+OyQMj7rsOMi4NvvmJ83WwBAg4UCe+ov4VZlqEvyew==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-module-transforms": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2068,14 +2089,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.7.tgz", - "integrity": "sha512-iFI8GDxtevHJ/Z22J5xQpVqFLlMNstcLXh994xifFwxxGslr2ZXXLWgtBeLctOD63UFDArdvN6Tg8RFw+aEmjQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.29.7.tgz", + "integrity": "sha512-j0vCldybPC5b5dwCQOJ21uKtHzt7hxLygJTg9eF1ScfaikEDNfzn94XoW5Fi+seBR0nCyL23xaBFFkq7dTM8XQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-simple-access": "^7.24.7" + "@babel/helper-module-transforms": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2085,15 +2106,16 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.7.tgz", - "integrity": "sha512-GYQE0tW7YoaN13qFh3O1NCY4MPkUiAH3fiF7UcV/I3ajmDKEdG3l+UOcbAm4zUE3gnvUU+Eni7XrVKo9eO9auw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.29.7.tgz", + "integrity": "sha512-TM2ZcQLoG2/y4HODiStCo10DibYhWhGWAwVv+EQKmG/7GFl0N+AAmUiXOMKM+aiJ9XBJ9AHVZBvTzMnJ2sM3cQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-hoist-variables": "^7.24.7", - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7" + "@babel/helper-module-transforms": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-validator-identifier": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2103,13 +2125,14 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.7.tgz", - "integrity": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.29.7.tgz", + "integrity": "sha512-B4UkaTK3QpgCwJnrxKfMPKdo92CN7OKXAlpAAnM3UPu0Q0lCCk57ylA9AJbRy2v8dDKOPAAWcoR6CMyeoHwRCA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-module-transforms": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2119,13 +2142,14 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.24.7.tgz", - "integrity": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.29.7.tgz", + "integrity": "sha512-vuFoLwr4qnv2xbZ16SQd6uPcH5FNrLHhk/Jzo++0XJFcaDsr4gjJVg6j398oMHiC+83k/GiBzviwF5KBJkPUtQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2135,12 +2159,13 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.7.tgz", - "integrity": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.29.7.tgz", + "integrity": "sha512-fEo41GmsOUhOBlw8ioo6zvjX5Xc2Lqkzlyfqbpsk3eB6TReV18uhxZ0esfEokVbY2+PVJAQHNKxER6lGrzNd3A==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2150,13 +2175,13 @@ } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.7.tgz", - "integrity": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.29.7.tgz", + "integrity": "sha512-idmp1dFaekP9GbcMvG24Kvw2BfhFZjHnNJCkV4WuIY4PskJzwI3f1N5OdgYke38T7rftO6ERulFRn2cFeZwRkg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2166,13 +2191,13 @@ } }, "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.7.tgz", - "integrity": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.29.7.tgz", + "integrity": "sha512-zR7fv/z14OjgHl4AgRtkDBvBMhIzCxqV/qN/2BCRC7LjFwvuzjYe7gDWxC4Wl/SNsLM6SE1IWvRPYMgSJaUvNw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2182,15 +2207,17 @@ } }, "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.7.tgz", - "integrity": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.29.7.tgz", + "integrity": "sha512-Ld98jn4c0smUywL57m7SgsHq3OpThOa6LqZJif3G6jYOovPleoFhVrBJ1WegRApSFB2wu4+RelAj9AC9G08Z4A==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.24.7" + "@babel/helper-compilation-targets": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/plugin-transform-destructuring": "^7.29.7", + "@babel/plugin-transform-parameters": "^7.29.7", + "@babel/traverse": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2200,13 +2227,14 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.7.tgz", - "integrity": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.29.7.tgz", + "integrity": "sha512-Ea/diGcw0twB5IlZPO5sgET6fJsLJqPABqTuFWIR+iMPGPZJkATEIWx0wa+aEQ5UY1CBQyP/gkAiLEqn1vBiQA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-replace-supers": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-replace-supers": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2216,13 +2244,13 @@ } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.7.tgz", - "integrity": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.29.7.tgz", + "integrity": "sha512-sLsyndxK2VwX6yNUOakMb7Sh553ZTe/vVM1XJ+9Z5aW1ytsc8xOIwmyk05NNjN60vkc5/KqoTH6hB4V41LJhng==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2232,14 +2260,14 @@ } }, "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.7.tgz", - "integrity": "sha512-tK+0N9yd4j+x/4hxF3F0e0fu/VdcxU18y5SevtyM/PCFlQvXbR0Zmlo2eBrKtVipGNFzpq56o8WsIIKcJFUCRQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.29.7.tgz", + "integrity": "sha512-6GM1dhvK3gNODkXcEcMCOLEDCLSoZ/sBbro2Ax8HURyasQ4NshagQixkRFdh5niI6E4gmA/jYI/4aT7rRos3ZQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2249,12 +2277,13 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.7.tgz", - "integrity": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.29.7.tgz", + "integrity": "sha512-ZDOBqV/qLYJI0YElr8DcENEyARsFQeESqWXH6gZlghYXuPPjvweuDhP4VyEi4BlUBlLRFZVjxoZDMjxhLW766g==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2264,13 +2293,14 @@ } }, "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.7.tgz", - "integrity": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.29.7.tgz", + "integrity": "sha512-/6Rz4DK1ETDEM/bWHsPHcaEe7ZaT1EqSXjtSP/L0DijOYuaUhiRiOKcwpZ8P7zR4xXEHc2ITdiCgBm9Tpyv9ug==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-class-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2280,15 +2310,15 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.7.tgz", - "integrity": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.29.7.tgz", + "integrity": "sha512-+BNo06dnrzdNNqCm1X6YUaVv0DKk8Q+JYcoZfOkLhYWNCXzlwTSRq8zGWayT1csjcpNXV9CQTBRRbmTLZac5cA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.24.7", - "@babel/helper-create-class-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + "@babel/helper-annotate-as-pure": "^7.29.7", + "@babel/helper-create-class-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2298,24 +2328,26 @@ } }, "node_modules/@babel/plugin-transform-private-property-in-object/node_modules/@babel/helper-annotate-as-pure": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", - "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.29.7.tgz", + "integrity": "sha512-OoK6239jHPuSQOoS0kfTVKn0b/rVTk0seKq4Gd2UMLtmOVLjDC0ki3e+c90Trqv2gMfvJFqkiljrr568+qddiw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.7" + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.7.tgz", - "integrity": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.29.7.tgz", + "integrity": "sha512-bOMRLQuI0A5ZqHq3OWJ89/rXpJ/NJrbVhXiP4zwPGMs6kpcVsuTUNjwoE30K0Qm3mf48a/TnRYYD6vPNqcg6jA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2325,13 +2357,13 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.7.tgz", - "integrity": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.29.7.tgz", + "integrity": "sha512-rNNFV0DBAJp988xW2DOntfDoYn1eR8GGF5AT5vYc+rjyfaQkM242c9tZUHHPe7KYaiJizXPWhQTzzdbXySyhBw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "regenerator-transform": "^0.15.2" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2340,13 +2372,31 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.7.tgz", - "integrity": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==", + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.29.7.tgz", + "integrity": "sha512-mB5Fs0VWrJ42ZCmc8114v60qetdaUVNkj9PmSZRmanCZM3S9hm0CFRLjRmYIsuXav14l2jvZ+4T8iiCGnhj3nQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.29.7.tgz", + "integrity": "sha512-5+YhdpVgmfSmwZyLMftfaiffLRMHjzIRHFHHLdibcSyJm2pasMrKHrO3Ptrt2DRshjvpgjEJJ1zVW14WPq/6QA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2356,16 +2406,17 @@ } }, "node_modules/@babel/plugin-transform-runtime": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.24.3.tgz", - "integrity": "sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.28.3.tgz", + "integrity": "sha512-Y6ab1kGqZ0u42Zv/4a7l0l72n9DKP/MKoKWaUSBylrhNZO2prYuqFOLbn5aW5SIFXwSH93yfjbgllL8lxuGKLg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.24.3", - "@babel/helper-plugin-utils": "^7.24.0", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.1", - "babel-plugin-polyfill-regenerator": "^0.6.1", + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-plugin-utils": "^7.27.1", + "babel-plugin-polyfill-corejs2": "^0.4.14", + "babel-plugin-polyfill-corejs3": "^0.13.0", + "babel-plugin-polyfill-regenerator": "^0.6.5", "semver": "^6.3.1" }, "engines": { @@ -2380,17 +2431,19 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.7.tgz", - "integrity": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.29.7.tgz", + "integrity": "sha512-I+WYbGBAiCn7nA6xBrlgPH+MB7HWb4u8pv5S0Pv7OtwNvIFvCCb24YlttKEeUFVurfBCEaOTnuhlqsb7f0Z5Dg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2400,13 +2453,14 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.7.tgz", - "integrity": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.29.7.tgz", + "integrity": "sha512-/u5K1QWada7tbYNqTjMh96718g9NTwh9tfPJMsSmVsQwGT447FskV+KcfeXkXq2GWki4EM/MuTdmBec+hOuVTQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7", + "@babel/helper-skip-transparent-expression-wrappers": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2416,12 +2470,13 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.7.tgz", - "integrity": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.29.7.tgz", + "integrity": "sha512-BCHzNYJGe9l7EpwwDBN/ztlL2NYFFq8hp9ddjtUEM9f2O7S7kKV/lL6Fwo7IF7NSkYhPK2vO+86nIGltA90MsA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2431,12 +2486,13 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.7.tgz", - "integrity": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.29.7.tgz", + "integrity": "sha512-NCSEJ4sLFU2gqAub45HYh4fus2yQ36rr6ei6vpU7NdoJqCpxvEG8E6eJpscGyXP3VHD2Ny+fSXr04k1hoUrFqA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2446,12 +2502,13 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.7.tgz", - "integrity": "sha512-VtR8hDy7YLB7+Pet9IarXjg/zgCMSF+1mNS/EQEiEaUPoFXCVsHG64SIxcaaI2zJgRiv+YmgaQESUfWAdbjzgg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.29.7.tgz", + "integrity": "sha512-223mNGoTkBiTEWFoK+Q6Go3tueMRclO8vxxxxquNCYuNI4jWOofFKJRRDu6SDrB8Sgo1UEGW9T4GAQ8ZyRso1A==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2461,12 +2518,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.7.tgz", - "integrity": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.29.7.tgz", + "integrity": "sha512-jCfXxSjf94lf4E0hKE0AByxF6F3/pVFqRdUUNkDJhsY0m1ZKjnN6ZYyMeHNpzflxb/0q5b7t3p+BE+SLF1WOtA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2476,13 +2534,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.7.tgz", - "integrity": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.29.7.tgz", + "integrity": "sha512-OgZ+zoAJgZLUCunsTRQ5LAjOywDv5zzZ2/hQ5aMw1pGXyY2rtE8/chXYUmu3AlVHKpm10KEdG9aMwbI/K76ZGw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2492,13 +2551,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.7.tgz", - "integrity": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.29.7.tgz", + "integrity": "sha512-7D/x/23/d/3VqZ0QA+LGbZMlGwZjztBygSWWWsfTPoQ1oQ6Q1P6Mr3d0kk42XabyUVw+fha3LqdRsFqeKqvCyA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2508,13 +2568,14 @@ } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.7.tgz", - "integrity": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.29.7.tgz", + "integrity": "sha512-BLOhLht9DOJwIxlmp91wHvkXv1lguuHS3/FwUO8HL1H0u8s4hR1gASVFyilu9iGtcTRYqjTZmlsFFeQletntEg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.24.7", - "@babel/helper-plugin-utils": "^7.24.7" + "@babel/helper-create-regexp-features-plugin": "^7.29.7", + "@babel/helper-plugin-utils": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2524,91 +2585,81 @@ } }, "node_modules/@babel/preset-env": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.5.tgz", - "integrity": "sha512-UGK2ifKtcC8i5AI4cH+sbLLuLc2ktYSFJgBAXorKAsHUZmrQ1q6aQ6i3BvU24wWs2AAKqQB6kq3N9V9Gw1HiMQ==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.28.3.tgz", + "integrity": "sha512-ROiDcM+GbYVPYBOeCR6uBXKkQpBExLl8k9HO1ygXEyds39j+vCCsjmj7S8GOniZQlEs81QlkdJZe76IpLSiqpg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.24.4", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.24.5", - "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", + "@babel/compat-data": "^7.28.0", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-plugin-utils": "^7.27.1", + "@babel/helper-validator-option": "^7.27.1", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.27.1", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.27.1", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.27.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.27.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.28.3", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.24.1", - "@babel/plugin-syntax-import-attributes": "^7.24.1", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-import-assertions": "^7.27.1", + "@babel/plugin-syntax-import-attributes": "^7.27.1", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.24.1", - "@babel/plugin-transform-async-generator-functions": "^7.24.3", - "@babel/plugin-transform-async-to-generator": "^7.24.1", - "@babel/plugin-transform-block-scoped-functions": "^7.24.1", - "@babel/plugin-transform-block-scoping": "^7.24.5", - "@babel/plugin-transform-class-properties": "^7.24.1", - "@babel/plugin-transform-class-static-block": "^7.24.4", - "@babel/plugin-transform-classes": "^7.24.5", - "@babel/plugin-transform-computed-properties": "^7.24.1", - "@babel/plugin-transform-destructuring": "^7.24.5", - "@babel/plugin-transform-dotall-regex": "^7.24.1", - "@babel/plugin-transform-duplicate-keys": "^7.24.1", - "@babel/plugin-transform-dynamic-import": "^7.24.1", - "@babel/plugin-transform-exponentiation-operator": "^7.24.1", - "@babel/plugin-transform-export-namespace-from": "^7.24.1", - "@babel/plugin-transform-for-of": "^7.24.1", - "@babel/plugin-transform-function-name": "^7.24.1", - "@babel/plugin-transform-json-strings": "^7.24.1", - "@babel/plugin-transform-literals": "^7.24.1", - "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", - "@babel/plugin-transform-member-expression-literals": "^7.24.1", - "@babel/plugin-transform-modules-amd": "^7.24.1", - "@babel/plugin-transform-modules-commonjs": "^7.24.1", - "@babel/plugin-transform-modules-systemjs": "^7.24.1", - "@babel/plugin-transform-modules-umd": "^7.24.1", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.24.1", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", - "@babel/plugin-transform-numeric-separator": "^7.24.1", - "@babel/plugin-transform-object-rest-spread": "^7.24.5", - "@babel/plugin-transform-object-super": "^7.24.1", - "@babel/plugin-transform-optional-catch-binding": "^7.24.1", - "@babel/plugin-transform-optional-chaining": "^7.24.5", - "@babel/plugin-transform-parameters": "^7.24.5", - "@babel/plugin-transform-private-methods": "^7.24.1", - "@babel/plugin-transform-private-property-in-object": "^7.24.5", - "@babel/plugin-transform-property-literals": "^7.24.1", - "@babel/plugin-transform-regenerator": "^7.24.1", - "@babel/plugin-transform-reserved-words": "^7.24.1", - "@babel/plugin-transform-shorthand-properties": "^7.24.1", - "@babel/plugin-transform-spread": "^7.24.1", - "@babel/plugin-transform-sticky-regex": "^7.24.1", - "@babel/plugin-transform-template-literals": "^7.24.1", - "@babel/plugin-transform-typeof-symbol": "^7.24.5", - "@babel/plugin-transform-unicode-escapes": "^7.24.1", - "@babel/plugin-transform-unicode-property-regex": "^7.24.1", - "@babel/plugin-transform-unicode-regex": "^7.24.1", - "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", + "@babel/plugin-transform-arrow-functions": "^7.27.1", + "@babel/plugin-transform-async-generator-functions": "^7.28.0", + "@babel/plugin-transform-async-to-generator": "^7.27.1", + "@babel/plugin-transform-block-scoped-functions": "^7.27.1", + "@babel/plugin-transform-block-scoping": "^7.28.0", + "@babel/plugin-transform-class-properties": "^7.27.1", + "@babel/plugin-transform-class-static-block": "^7.28.3", + "@babel/plugin-transform-classes": "^7.28.3", + "@babel/plugin-transform-computed-properties": "^7.27.1", + "@babel/plugin-transform-destructuring": "^7.28.0", + "@babel/plugin-transform-dotall-regex": "^7.27.1", + "@babel/plugin-transform-duplicate-keys": "^7.27.1", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-dynamic-import": "^7.27.1", + "@babel/plugin-transform-explicit-resource-management": "^7.28.0", + "@babel/plugin-transform-exponentiation-operator": "^7.27.1", + "@babel/plugin-transform-export-namespace-from": "^7.27.1", + "@babel/plugin-transform-for-of": "^7.27.1", + "@babel/plugin-transform-function-name": "^7.27.1", + "@babel/plugin-transform-json-strings": "^7.27.1", + "@babel/plugin-transform-literals": "^7.27.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.27.1", + "@babel/plugin-transform-member-expression-literals": "^7.27.1", + "@babel/plugin-transform-modules-amd": "^7.27.1", + "@babel/plugin-transform-modules-commonjs": "^7.27.1", + "@babel/plugin-transform-modules-systemjs": "^7.27.1", + "@babel/plugin-transform-modules-umd": "^7.27.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.27.1", + "@babel/plugin-transform-new-target": "^7.27.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1", + "@babel/plugin-transform-numeric-separator": "^7.27.1", + "@babel/plugin-transform-object-rest-spread": "^7.28.0", + "@babel/plugin-transform-object-super": "^7.27.1", + "@babel/plugin-transform-optional-catch-binding": "^7.27.1", + "@babel/plugin-transform-optional-chaining": "^7.27.1", + "@babel/plugin-transform-parameters": "^7.27.7", + "@babel/plugin-transform-private-methods": "^7.27.1", + "@babel/plugin-transform-private-property-in-object": "^7.27.1", + "@babel/plugin-transform-property-literals": "^7.27.1", + "@babel/plugin-transform-regenerator": "^7.28.3", + "@babel/plugin-transform-regexp-modifiers": "^7.27.1", + "@babel/plugin-transform-reserved-words": "^7.27.1", + "@babel/plugin-transform-shorthand-properties": "^7.27.1", + "@babel/plugin-transform-spread": "^7.27.1", + "@babel/plugin-transform-sticky-regex": "^7.27.1", + "@babel/plugin-transform-template-literals": "^7.27.1", + "@babel/plugin-transform-typeof-symbol": "^7.27.1", + "@babel/plugin-transform-unicode-escapes": "^7.27.1", + "@babel/plugin-transform-unicode-property-regex": "^7.27.1", + "@babel/plugin-transform-unicode-regex": "^7.27.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.27.1", "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.10.4", - "babel-plugin-polyfill-regenerator": "^0.6.1", - "core-js-compat": "^3.31.0", + "babel-plugin-polyfill-corejs2": "^0.4.14", + "babel-plugin-polyfill-corejs3": "^0.13.0", + "babel-plugin-polyfill-regenerator": "^0.6.5", + "core-js-compat": "^3.43.0", "semver": "^6.3.1" }, "engines": { @@ -2623,6 +2674,7 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } @@ -2632,6 +2684,7 @@ "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dev": true, + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/types": "^7.4.4", @@ -2641,95 +2694,76 @@ "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", - "dev": true - }, "node_modules/@babel/runtime": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.5.tgz", - "integrity": "sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==", + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.3.tgz", + "integrity": "sha512-9uIQ10o0WGdpP6GDhXcdOJPJuDgFtIDtN/9+ArJQ2NAfAmiuhTQdzkaTGR33v43GYS2UrSA0eX2pPPHoFVvpxA==", "dev": true, - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz", - "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz", + "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/types": "^7.24.7" + "@babel/code-frame": "^7.29.7", + "@babel/parser": "^7.29.7", + "@babel/types": "^7.29.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz", - "integrity": "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz", + "integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-hoist-variables": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/types": "^7.24.7", - "debug": "^4.3.1", - "globals": "^11.1.0" + "@babel/code-frame": "^7.29.7", + "@babel/generator": "^7.29.7", + "@babel/helper-globals": "^7.29.7", + "@babel/parser": "^7.29.7", + "@babel/template": "^7.29.7", + "@babel/types": "^7.29.7", + "debug": "^4.3.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse/node_modules/@babel/generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", - "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz", + "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.7", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse/node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", - "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" + "@babel/parser": "^7.29.7", + "@babel/types": "^7.29.7", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/types": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", - "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", + "version": "7.29.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz", + "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-string-parser": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.29.7", + "@babel/helper-validator-identifier": "^7.29.7" }, "engines": { "node": ">=6.9.0" @@ -2740,6 +2774,7 @@ "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.1.90" } @@ -2749,6 +2784,7 @@ "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "0.3.9" }, @@ -2761,431 +2797,540 @@ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } }, "node_modules/@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.6.3.tgz", + "integrity": "sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==", "dev": true, + "license": "MIT", "engines": { - "node": ">=10.0.0" + "node": ">=14.17.0" } }, "node_modules/@esbuild/aix-ppc64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.3.tgz", - "integrity": "sha512-yTgnwQpFVYfvvo4SvRFB0SwrW8YjOxEoT7wfMT7Ol5v7v5LDNvSGo67aExmxOb87nQNeWPVvaGBNfQ7BXcrZ9w==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.28.1.tgz", + "integrity": "sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==", "cpu": [ "ppc64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "aix" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/android-arm": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.3.tgz", - "integrity": "sha512-bviJOLMgurLJtF1/mAoJLxDZDL6oU5/ztMHnJQRejbJrSc9FFu0QoUoFhvi6qSKJEw9y5oGyvr9fuDtzJ30rNQ==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.28.1.tgz", + "integrity": "sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/android-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.3.tgz", - "integrity": "sha512-c+ty9necz3zB1Y+d/N+mC6KVVkGUUOcm4ZmT5i/Fk5arOaY3i6CA3P5wo/7+XzV8cb4GrI/Zjp8NuOQ9Lfsosw==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.28.1.tgz", + "integrity": "sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/android-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.3.tgz", - "integrity": "sha512-JReHfYCRK3FVX4Ra+y5EBH1b9e16TV2OxrPAvzMsGeES0X2Ndm9ImQRI4Ket757vhc5XBOuGperw63upesclRw==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.28.1.tgz", + "integrity": "sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.3.tgz", - "integrity": "sha512-U3fuQ0xNiAkXOmQ6w5dKpEvXQRSpHOnbw7gEfHCRXPeTKW9sBzVck6C5Yneb8LfJm0l6le4NQfkNPnWMSlTFUQ==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.28.1.tgz", + "integrity": "sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.3.tgz", - "integrity": "sha512-3m1CEB7F07s19wmaMNI2KANLcnaqryJxO1fXHUV5j1rWn+wMxdUYoPyO2TnAbfRZdi7ADRwJClmOwgT13qlP3Q==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.28.1.tgz", + "integrity": "sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.3.tgz", - "integrity": "sha512-fsNAAl5pU6wmKHq91cHWQT0Fz0vtyE1JauMzKotrwqIKAswwP5cpHUCxZNSTuA/JlqtScq20/5KZ+TxQdovU/g==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.28.1.tgz", + "integrity": "sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "freebsd" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.3.tgz", - "integrity": "sha512-tci+UJ4zP5EGF4rp8XlZIdq1q1a/1h9XuronfxTMCNBslpCtmk97Q/5qqy1Mu4zIc0yswN/yP/BLX+NTUC1bXA==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.28.1.tgz", + "integrity": "sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "freebsd" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-arm": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.3.tgz", - "integrity": "sha512-f6kz2QpSuyHHg01cDawj0vkyMwuIvN62UAguQfnNVzbge2uWLhA7TCXOn83DT0ZvyJmBI943MItgTovUob36SQ==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.28.1.tgz", + "integrity": "sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.3.tgz", - "integrity": "sha512-vvG6R5g5ieB4eCJBQevyDMb31LMHthLpXTc2IGkFnPWS/GzIFDnaYFp558O+XybTmYrVjxnryru7QRleJvmZ6Q==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.28.1.tgz", + "integrity": "sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.3.tgz", - "integrity": "sha512-HjCWhH7K96Na+66TacDLJmOI9R8iDWDDiqe17C7znGvvE4sW1ECt9ly0AJ3dJH62jHyVqW9xpxZEU1jKdt+29A==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.28.1.tgz", + "integrity": "sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==", "cpu": [ "ia32" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.3.tgz", - "integrity": "sha512-BGpimEccmHBZRcAhdlRIxMp7x9PyJxUtj7apL2IuoG9VxvU/l/v1z015nFs7Si7tXUwEsvjc1rOJdZCn4QTU+Q==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.28.1.tgz", + "integrity": "sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==", "cpu": [ "loong64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.3.tgz", - "integrity": "sha512-5rMOWkp7FQGtAH3QJddP4w3s47iT20hwftqdm7b+loe95o8JU8ro3qZbhgMRy0VuFU0DizymF1pBKkn3YHWtsw==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.28.1.tgz", + "integrity": "sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==", "cpu": [ "mips64el" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.3.tgz", - "integrity": "sha512-h0zj1ldel89V5sjPLo5H1SyMzp4VrgN1tPkN29TmjvO1/r0MuMRwJxL8QY05SmfsZRs6TF0c/IDH3u7XYYmbAg==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.28.1.tgz", + "integrity": "sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==", "cpu": [ "ppc64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.3.tgz", - "integrity": "sha512-dkAKcTsTJ+CRX6bnO17qDJbLoW37npd5gSNtSzjYQr0svghLJYGYB0NF1SNcU1vDcjXLYS5pO4qOW4YbFama4A==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.28.1.tgz", + "integrity": "sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==", "cpu": [ "riscv64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.3.tgz", - "integrity": "sha512-vnD1YUkovEdnZWEuMmy2X2JmzsHQqPpZElXx6dxENcIwTu+Cu5ERax6+Ke1QsE814Zf3c6rxCfwQdCTQ7tPuXA==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.28.1.tgz", + "integrity": "sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==", "cpu": [ "s390x" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/linux-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.3.tgz", - "integrity": "sha512-IOXOIm9WaK7plL2gMhsWJd+l2bfrhfilv0uPTptoRoSb2p09RghhQQp9YY6ZJhk/kqmeRt6siRdMSLLwzuT0KQ==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.28.1.tgz", + "integrity": "sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ], "engines": { - "node": ">=12" + "node": ">=18" } }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.3.tgz", - "integrity": "sha512-uTgCwsvQ5+vCQnqM//EfDSuomo2LhdWhFPS8VL8xKf+PKTCrcT/2kPPoWMTs22aB63MLdGMJiE3f1PHvCDmUOw==", + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.28.1.tgz", + "integrity": "sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==", "cpu": [ - "x64" + "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "netbsd" ], "engines": { - "node": ">=12" + "node": ">=18" } }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.3.tgz", - "integrity": "sha512-vNAkR17Ub2MgEud2Wag/OE4HTSI6zlb291UYzHez/psiKarp0J8PKGDnAhMBcHFoOHMXHfExzmjMojJNbAStrQ==", + "node_modules/@esbuild/netbsd-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.28.1.tgz", + "integrity": "sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.28.1.tgz", + "integrity": "sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", "optional": true, "os": [ "openbsd" ], "engines": { - "node": ">=12" + "node": ">=18" } }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.3.tgz", - "integrity": "sha512-W8H9jlGiSBomkgmouaRoTXo49j4w4Kfbl6I1bIdO/vT0+0u4f20ko3ELzV3hPI6XV6JNBVX+8BC+ajHkvffIJA==", + "node_modules/@esbuild/openbsd-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.28.1.tgz", + "integrity": "sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.28.1.tgz", + "integrity": "sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.28.1.tgz", + "integrity": "sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", "optional": true, "os": [ "sunos" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.3.tgz", - "integrity": "sha512-EjEomwyLSCg8Ag3LDILIqYCZAq/y3diJ04PnqGRgq8/4O3VNlXyMd54j/saShaN4h5o5mivOjAzmU6C3X4v0xw==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.28.1.tgz", + "integrity": "sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.3.tgz", - "integrity": "sha512-WGiE/GgbsEwR33++5rzjiYsKyHywE8QSZPF7Rfx9EBfK3Qn3xyR6IjyCr5Uk38Kg8fG4/2phN7sXp4NPWd3fcw==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.28.1.tgz", + "integrity": "sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==", "cpu": [ "ia32" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@esbuild/win32-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.3.tgz", - "integrity": "sha512-xRxC0jaJWDLYvcUvjQmHCJSfMrgmUuvsoXgDeU/wTorQ1ngDdUBuFtgY3W1Pc5sprGAvZBtWdJX7RPg/iZZUqA==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.28.1.tgz", + "integrity": "sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ], "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/@eslint-community/eslint-utils": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", - "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", "dev": true, + "license": "MIT", "dependencies": { - "eslint-visitor-keys": "^3.3.0" + "eslint-visitor-keys": "^3.4.3" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, + "funding": { + "url": "https://opencollective.com/eslint" + }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "node_modules/@eslint-community/regexpp": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.1.tgz", - "integrity": "sha512-Zm2NGpWELsQAD1xsJzGQpYfvICSsFkEpU0jxBjfdC6uNEWXcHnfs9hScFWtXVDVl+rBQJGrl4g1vcKIejpH9dA==", + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", "dev": true, + "license": "MIT", "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, "node_modules/@eslint/config-array": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.16.0.tgz", - "integrity": "sha512-/jmuSd74i4Czf1XXn7wGRWZCuyaUZ330NH1Bek0Pplatt4Sy1S5haN21SCLLdbeKslQ+S0wEJ+++v5YibSi+Lg==", + "version": "0.21.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz", + "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@eslint/object-schema": "^2.1.4", + "@eslint/object-schema": "^2.1.7", "debug": "^4.3.1", - "minimatch": "^3.0.5" + "minimatch": "^3.1.5" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, "node_modules/@eslint/eslintrc": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", - "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.3.tgz", + "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==", "dev": true, + "license": "MIT", "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", @@ -3193,7 +3338,7 @@ "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", + "js-yaml": "^4.1.1", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" }, @@ -3205,10 +3350,11 @@ } }, "node_modules/@eslint/eslintrc/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", + "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -3220,154 +3366,190 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", - "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, + "license": "MIT", "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 4" } }, "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@eslint/js": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.5.0.tgz", - "integrity": "sha512-A7+AOT2ICkodvtsWnxZP4Xxk3NbZ3VMHd8oihydLRGrJgqqdEz1qSeEgXYyT/Cu8h1TWWsQRejIx48mtjZ5y1w==", + "version": "9.39.5", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.5.tgz", + "integrity": "sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==", "dev": true, + "license": "MIT", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" } }, "node_modules/@eslint/object-schema": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", - "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "node_modules/@foliojs-fork/fontkit": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/@foliojs-fork/fontkit/-/fontkit-1.9.2.tgz", - "integrity": "sha512-IfB5EiIb+GZk+77TRB86AHroVaqfq8JRFlUbz0WEwsInyCG0epX2tCPOy+UfaWPju30DeVoUAXfzWXmhn753KA==", + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", "dependencies": { - "@foliojs-fork/restructure": "^2.0.2", - "brotli": "^1.2.0", - "clone": "^1.0.4", - "deep-equal": "^1.0.0", - "dfa": "^1.2.0", - "tiny-inflate": "^1.0.2", - "unicode-properties": "^1.2.2", - "unicode-trie": "^2.0.0" + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "node_modules/@foliojs-fork/linebreak": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@foliojs-fork/linebreak/-/linebreak-1.1.2.tgz", - "integrity": "sha512-ZPohpxxbuKNE0l/5iBJnOAfUaMACwvUIKCvqtWGKIMv1lPYoNjYXRfhi9FeeV9McBkBLxsMFWTVVhHJA8cyzvg==", - "dependencies": { - "base64-js": "1.3.1", - "unicode-trie": "^2.0.0" - } - }, - "node_modules/@foliojs-fork/linebreak/node_modules/base64-js": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", - "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==" - }, - "node_modules/@foliojs-fork/pdfkit": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@foliojs-fork/pdfkit/-/pdfkit-0.14.0.tgz", - "integrity": "sha512-nMOiQAv6id89MT3tVTCgc7HxD5ZMANwio2o5yvs5sexQkC0KI3BLaLakpsrHmFfeGFAhqPmZATZGbJGXTUebpg==", - "dependencies": { - "@foliojs-fork/fontkit": "^1.9.1", - "@foliojs-fork/linebreak": "^1.1.1", - "crypto-js": "^4.2.0", - "png-js": "^1.0.0" - } - }, - "node_modules/@foliojs-fork/restructure": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@foliojs-fork/restructure/-/restructure-2.0.2.tgz", - "integrity": "sha512-59SgoZ3EXbkfSX7b63tsou/SDGzwUEK6MuB5sKqgVK1/XE0fxmpsOb9DQI8LXW3KfGnAjImCGhhEb7uPPAUVNA==" - }, "node_modules/@fortawesome/angular-fontawesome": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/@fortawesome/angular-fontawesome/-/angular-fontawesome-0.15.0.tgz", - "integrity": "sha512-oxmJDYGNSym5ycFR0LX4ZOPAU+wWmMAznYpkm5DNAtWWkhMLcrZl15eZQmVIEE+qruQ7JiVrg3tpo8bEkFlDgw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@fortawesome/angular-fontawesome/-/angular-fontawesome-4.0.0.tgz", + "integrity": "sha512-TCqHqT5ovFY1A4RgMpoBUgS+RX3OVs39+CzHFgzDhbCPAopOa26J748TZJcuZwJAvGAk9tbWeVEmWuLByINAeg==", "dev": true, + "license": "MIT", "dependencies": { - "@fortawesome/fontawesome-svg-core": "^6.5.2", - "tslib": "^2.6.2" + "@fortawesome/fontawesome-svg-core": "^7.1.0", + "tslib": "^2.8.1" }, "peerDependencies": { - "@angular/core": "^18.0.0" + "@angular/core": "^21.0.0" } }, "node_modules/@fortawesome/fontawesome-common-types": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.5.2.tgz", - "integrity": "sha512-gBxPg3aVO6J0kpfHNILc+NMhXnqHumFxOmjYCFfOiLZfwhnnfhtsdA2hfJlDnj+8PjAs6kKQPenOTKj3Rf7zHw==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-7.1.0.tgz", + "integrity": "sha512-l/BQM7fYntsCI//du+6sEnHOP6a74UixFyOYUyz2DLMXKx+6DEhfR3F2NYGE45XH1JJuIamacb4IZs9S0ZOWLA==", "dev": true, - "hasInstallScript": true, + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/@fortawesome/fontawesome-svg-core": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.5.2.tgz", - "integrity": "sha512-5CdaCBGl8Rh9ohNdxeeTMxIj8oc3KNBgIeLMvJosBMdslK/UnEB8rzyDRrbKdL1kDweqBPo4GT9wvnakHWucZw==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-7.1.0.tgz", + "integrity": "sha512-fNxRUk1KhjSbnbuBxlWSnBLKLBNun52ZBTcs22H/xEEzM6Ap81ZFTQ4bZBxVQGQgVY0xugKGoRcCbaKjLQ3XZA==", "dev": true, - "hasInstallScript": true, + "license": "MIT", "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.2" + "@fortawesome/fontawesome-common-types": "7.1.0" }, "engines": { "node": ">=6" } }, "node_modules/@fortawesome/free-regular-svg-icons": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.5.2.tgz", - "integrity": "sha512-iabw/f5f8Uy2nTRtJ13XZTS1O5+t+anvlamJ3zJGLEVE2pKsAWhPv2lq01uQlfgCX7VaveT3EVs515cCN9jRbw==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-7.1.0.tgz", + "integrity": "sha512-0e2fdEyB4AR+e6kU4yxwA/MonnYcw/CsMEP9lH82ORFi9svA6/RhDyhxIv5mlJaldmaHLLYVTb+3iEr+PDSZuQ==", "dev": true, - "hasInstallScript": true, + "license": "(CC-BY-4.0 AND MIT)", "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.2" + "@fortawesome/fontawesome-common-types": "7.1.0" }, "engines": { "node": ">=6" } }, "node_modules/@fortawesome/free-solid-svg-icons": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.5.2.tgz", - "integrity": "sha512-QWFZYXFE7O1Gr1dTIp+D6UcFUF0qElOnZptpi7PBUMylJh+vFmIedVe1Ir6RM1t2tEQLLSV1k7bR4o92M+uqlw==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-7.1.0.tgz", + "integrity": "sha512-Udu3K7SzAo9N013qt7qmm22/wo2hADdheXtBfxFTecp+ogsc0caQNRKEb7pkvvagUGOpG9wJC1ViH6WXs8oXIA==", "dev": true, - "hasInstallScript": true, + "license": "(CC-BY-4.0 AND MIT)", "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.2" + "@fortawesome/fontawesome-common-types": "7.1.0" }, "engines": { "node": ">=6" } }, + "node_modules/@gar/promise-retry": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@gar/promise-retry/-/promise-retry-1.0.3.tgz", + "integrity": "sha512-GmzA9ckNokPypTg10pgpeHNQe7ph+iIKKmhKu3Ob9ANkswreCx7R3cKmY781K8QK3AqVL3xVh9A42JvIAbkkSA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/@hono/node-server": { + "version": "1.19.14", + "resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.14.tgz", + "integrity": "sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.14.1" + }, + "peerDependencies": { + "hono": "^4" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz", + "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/types": "^0.15.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz", + "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.2", + "@humanfs/types": "^0.15.0", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/types": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz", + "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=12.22" }, @@ -3377,10 +3559,11 @@ } }, "node_modules/@humanwhocodes/retry": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.0.tgz", - "integrity": "sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==", + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=18.18" }, @@ -3389,144 +3572,399 @@ "url": "https://github.com/sponsors/nzakas" } }, - "node_modules/@inquirer/figures": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.3.tgz", - "integrity": "sha512-ErXXzENMH5pJt5/ssXV0DfWUZqly8nGzf0UcBV9xTnP+KyffE2mqyxIMBrZ8ijQck2nU0TQm40EQB53YreyWHw==", + "node_modules/@inquirer/ansi": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-1.0.2.tgz", + "integrity": "sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=18" } }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "node_modules/@inquirer/checkbox": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-4.3.2.tgz", + "integrity": "sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA==", "dev": true, + "license": "MIT", "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + "@inquirer/ansi": "^1.0.2", + "@inquirer/core": "^10.3.2", + "@inquirer/figures": "^1.0.15", + "@inquirer/type": "^3.0.10", + "yoctocolors-cjs": "^2.1.3" }, "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" + "peerDependencies": { + "@types/node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } } }, - "node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "node_modules/@inquirer/confirm": { + "version": "5.1.14", + "resolved": "https://registry.npmjs.org/@inquirer/confirm/-/confirm-5.1.14.tgz", + "integrity": "sha512-5yR4IBfe0kXe59r1YCTG8WXkUbl7Z35HK87Sw+WUyGD8wNUx7JvY7laahzeytyE1oLn74bQnL7hstctQxisQ8Q==", "dev": true, + "license": "MIT", "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "@inquirer/core": "^10.1.15", + "@inquirer/type": "^3.0.8" }, "engines": { - "node": ">=12" + "node": ">=18" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } } }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "node_modules/@inquirer/core": { + "version": "10.3.2", + "resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.3.2.tgz", + "integrity": "sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" + "@inquirer/ansi": "^1.0.2", + "@inquirer/figures": "^1.0.15", + "@inquirer/type": "^3.0.10", + "cli-width": "^4.1.0", + "mute-stream": "^2.0.0", + "signal-exit": "^4.1.0", + "wrap-ansi": "^6.2.0", + "yoctocolors-cjs": "^2.1.3" }, "engines": { - "node": ">=12" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } } }, - "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "node_modules/@inquirer/editor": { + "version": "4.2.23", + "resolved": "https://registry.npmjs.org/@inquirer/editor/-/editor-4.2.23.tgz", + "integrity": "sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" + "@inquirer/core": "^10.3.2", + "@inquirer/external-editor": "^1.0.3", + "@inquirer/type": "^3.0.10" }, "engines": { - "node": ">=12" + "node": ">=18" }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/expand": { + "version": "4.0.23", + "resolved": "https://registry.npmjs.org/@inquirer/expand/-/expand-4.0.23.tgz", + "integrity": "sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.3.2", + "@inquirer/type": "^3.0.10", + "yoctocolors-cjs": "^2.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/external-editor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@inquirer/external-editor/-/external-editor-1.0.3.tgz", + "integrity": "sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==", + "dev": true, + "license": "MIT", + "dependencies": { + "chardet": "^2.1.1", + "iconv-lite": "^0.7.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/figures": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.15.tgz", + "integrity": "sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/input": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.3.1.tgz", + "integrity": "sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.3.2", + "@inquirer/type": "^3.0.10" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/number": { + "version": "3.0.23", + "resolved": "https://registry.npmjs.org/@inquirer/number/-/number-3.0.23.tgz", + "integrity": "sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.3.2", + "@inquirer/type": "^3.0.10" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/password": { + "version": "4.0.23", + "resolved": "https://registry.npmjs.org/@inquirer/password/-/password-4.0.23.tgz", + "integrity": "sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/ansi": "^1.0.2", + "@inquirer/core": "^10.3.2", + "@inquirer/type": "^3.0.10" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/prompts": { + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/@inquirer/prompts/-/prompts-7.8.2.tgz", + "integrity": "sha512-nqhDw2ZcAUrKNPwhjinJny903bRhI0rQhiDz1LksjeRxqa36i3l75+4iXbOy0rlDpLJGxqtgoPavQjmmyS5UJw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/checkbox": "^4.2.1", + "@inquirer/confirm": "^5.1.14", + "@inquirer/editor": "^4.2.17", + "@inquirer/expand": "^4.0.17", + "@inquirer/input": "^4.2.1", + "@inquirer/number": "^3.0.17", + "@inquirer/password": "^4.0.17", + "@inquirer/rawlist": "^4.1.5", + "@inquirer/search": "^3.1.0", + "@inquirer/select": "^4.3.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/rawlist": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-4.1.11.tgz", + "integrity": "sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.3.2", + "@inquirer/type": "^3.0.10", + "yoctocolors-cjs": "^2.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/search": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@inquirer/search/-/search-3.2.2.tgz", + "integrity": "sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.3.2", + "@inquirer/figures": "^1.0.15", + "@inquirer/type": "^3.0.10", + "yoctocolors-cjs": "^2.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/select": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.4.2.tgz", + "integrity": "sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/ansi": "^1.0.2", + "@inquirer/core": "^10.3.2", + "@inquirer/figures": "^1.0.15", + "@inquirer/type": "^3.0.10", + "yoctocolors-cjs": "^2.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/type": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.10.tgz", + "integrity": "sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@isaacs/fs-minipass": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", + "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "minipass": "^7.0.4" + }, + "engines": { + "node": ">=18.0.0" } }, "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.6.tgz", + "integrity": "sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/@jest/schemas": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", - "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "dev": true, + "license": "MIT", "dependencies": { - "@sinclair/typebox": "^0.27.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", "dev": true, + "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" } }, "node_modules/@jridgewell/resolve-uri": { @@ -3534,40 +3972,35 @@ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "dev": true, + "license": "MIT", "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "dev": true, + "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" @@ -3578,6 +4011,318 @@ "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz", "integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==", "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/buffers": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-17.67.0.tgz", + "integrity": "sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/codegen": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-1.0.0.tgz", + "integrity": "sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/fs-core": { + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-core/-/fs-core-4.64.0.tgz", + "integrity": "sha512-zs2TAq7Six5jgMuoMNjpspAvOP3mhtgq/k1UyQodEzCtQi/N83y2/y+zcvnZSGp/Rxq96DBN+bValOBQAyn/ew==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/fs-node-builtins": "4.64.0", + "@jsonjoy.com/fs-node-utils": "4.64.0", + "thingies": "^2.5.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/fs-fsa": { + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-fsa/-/fs-fsa-4.64.0.tgz", + "integrity": "sha512-nMWOVbkLFyEgmXZih3wyvxA9XpgyyqyfrINMHvEFqhi7uqfRl7c9ERJt6yX7vgMPrB9Uo+OJO+Spa0cFzPD01w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/fs-core": "4.64.0", + "@jsonjoy.com/fs-node-builtins": "4.64.0", + "@jsonjoy.com/fs-node-utils": "4.64.0", + "thingies": "^2.5.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/fs-node": { + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node/-/fs-node-4.64.0.tgz", + "integrity": "sha512-dO+NNkODbUli4uV42bcNrrLvq5rE7SNpdZ5TNd0dtbLsAaNK3MDiIC9lUi+brboGoIjW6vd2fB1qao60nrk5xA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/fs-core": "4.64.0", + "@jsonjoy.com/fs-node-builtins": "4.64.0", + "@jsonjoy.com/fs-node-utils": "4.64.0", + "@jsonjoy.com/fs-print": "4.64.0", + "@jsonjoy.com/fs-snapshot": "4.64.0", + "glob-to-regex.js": "^1.0.0", + "thingies": "^2.5.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/fs-node-builtins": { + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-builtins/-/fs-node-builtins-4.64.0.tgz", + "integrity": "sha512-/o7WRFhUWaM/fOrslwLZGnzn4RmRILykn+lAL+mNObqqRNw+CQSiij6hpCeZ+C7buhdoVo7go/OYqzaSUfDYmA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/fs-node-to-fsa": { + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-to-fsa/-/fs-node-to-fsa-4.64.0.tgz", + "integrity": "sha512-WDD9WVs0hb7UAEKTgZW2f66WDrbj7gIIWwpP3spbLyXa0rghtUaFTB8L4gdR3ZCWwiKIsj38/CNijpVmpnuPUw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/fs-fsa": "4.64.0", + "@jsonjoy.com/fs-node-builtins": "4.64.0", + "@jsonjoy.com/fs-node-utils": "4.64.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/fs-node-utils": { + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-utils/-/fs-node-utils-4.64.0.tgz", + "integrity": "sha512-k5Indsx9hWW9xSF7Y6oSKKwtCUNhzZxadub3owhIlitc+iMRVlPPdX2duTKQWBL3qNWpXya8jykgaaWpheeS4w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/fs-node-builtins": "4.64.0", + "glob-to-regex.js": "^1.0.1" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/fs-print": { + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-print/-/fs-print-4.64.0.tgz", + "integrity": "sha512-PHZFccchvkhWrwPWHjmVAhbC3vSHCtyZvlZfJJ3ho2bnzl450hXri6/8e6pbkWdH+SkmLXNml0sV8e5HDAfxKw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/fs-node-utils": "4.64.0", + "tree-dump": "^1.1.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/fs-snapshot": { + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-snapshot/-/fs-snapshot-4.64.0.tgz", + "integrity": "sha512-oM7UDeL83q6NBzzsfKAsYKXKVXlykKFqqOLh4xZZKAzzROTlInkPbc6LTDGThEOnPiFiUzA7tYziHG9xavd76Q==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/buffers": "^17.65.0", + "@jsonjoy.com/fs-node-utils": "4.64.0", + "@jsonjoy.com/json-pack": "^17.65.0", + "@jsonjoy.com/util": "^17.65.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/base64": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-17.67.0.tgz", + "integrity": "sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/codegen": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-17.67.0.tgz", + "integrity": "sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pack": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-17.67.0.tgz", + "integrity": "sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/base64": "17.67.0", + "@jsonjoy.com/buffers": "17.67.0", + "@jsonjoy.com/codegen": "17.67.0", + "@jsonjoy.com/json-pointer": "17.67.0", + "@jsonjoy.com/util": "17.67.0", + "hyperdyperid": "^1.2.0", + "thingies": "^2.5.0", + "tree-dump": "^1.1.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pointer": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-17.67.0.tgz", + "integrity": "sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/util": "17.67.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/util": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-17.67.0.tgz", + "integrity": "sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/buffers": "17.67.0", + "@jsonjoy.com/codegen": "17.67.0" + }, "engines": { "node": ">=10.0" }, @@ -3590,15 +4335,58 @@ } }, "node_modules/@jsonjoy.com/json-pack": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.0.4.tgz", - "integrity": "sha512-aOcSN4MeAtFROysrbqG137b7gaDDSmVrl5mpo6sT/w+kcXpWnzhMjmY/Fh/sDx26NBxyIE7MB1seqLeCAzy9Sg==", + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.21.0.tgz", + "integrity": "sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@jsonjoy.com/base64": "^1.1.1", - "@jsonjoy.com/util": "^1.1.2", + "@jsonjoy.com/base64": "^1.1.2", + "@jsonjoy.com/buffers": "^1.2.0", + "@jsonjoy.com/codegen": "^1.0.0", + "@jsonjoy.com/json-pointer": "^1.0.2", + "@jsonjoy.com/util": "^1.9.0", "hyperdyperid": "^1.2.0", - "thingies": "^1.20.0" + "thingies": "^2.5.0", + "tree-dump": "^1.1.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/json-pack/node_modules/@jsonjoy.com/buffers": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz", + "integrity": "sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/json-pointer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-1.0.2.tgz", + "integrity": "sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/codegen": "^1.0.0", + "@jsonjoy.com/util": "^1.9.0" }, "engines": { "node": ">=10.0" @@ -3612,10 +4400,32 @@ } }, "node_modules/@jsonjoy.com/util": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.2.0.tgz", - "integrity": "sha512-4B8B+3vFsY4eo33DMKyJPlQ3sBMpPFUZK2dr3O3rXrOGKKbYG44J0XSFkDo1VOQiri5HFEhIeVvItjR2xcazmg==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.9.0.tgz", + "integrity": "sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==", "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/buffers": "^1.0.0", + "@jsonjoy.com/codegen": "^1.0.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/util/node_modules/@jsonjoy.com/buffers": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz", + "integrity": "sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==", + "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=10.0" }, @@ -3631,1049 +4441,682 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", - "dev": true - }, - "node_modules/@ljharb/through": { - "version": "2.3.13", - "resolved": "https://registry.npmjs.org/@ljharb/through/-/through-2.3.13.tgz", - "integrity": "sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==", "dev": true, + "license": "MIT" + }, + "node_modules/@listr2/prompt-adapter-inquirer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@listr2/prompt-adapter-inquirer/-/prompt-adapter-inquirer-3.0.1.tgz", + "integrity": "sha512-3XFmGwm3u6ioREG+ynAQB7FoxfajgQnMhIu8wC5eo/Lsih4aKDg0VuIMGaOsYn7hJSJagSeaD4K8yfpkEoDEmA==", + "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7" + "@inquirer/type": "^3.0.7" }, "engines": { - "node": ">= 0.4" + "node": ">=20.0.0" + }, + "peerDependencies": { + "@inquirer/prompts": ">= 3 < 8", + "listr2": "9.0.1" } }, "node_modules/@lmdb/lmdb-darwin-arm64": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.0.8.tgz", - "integrity": "sha512-+lFwFvU+zQ9zVIFETNtmW++syh3Ps5JS8MPQ8zOYtQZoU+dTR8ivWHTaE2QVk1JG2payGDLUAvpndLAjGMdeeA==", + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-arm64/-/lmdb-darwin-arm64-3.4.2.tgz", + "integrity": "sha512-NK80WwDoODyPaSazKbzd3NEJ3ygePrkERilZshxBViBARNz21rmediktGHExoj9n5t9+ChlgLlxecdFKLCuCKg==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" ] }, "node_modules/@lmdb/lmdb-darwin-x64": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.0.8.tgz", - "integrity": "sha512-T98rfsgfdQMS5/mqdsPb6oHSJ+iBYNa+PQDLtXLh6rzTEBsYP9x2uXxIj6VS4qXVDWXVi8rv85NCOG+UBOsHXQ==", + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-darwin-x64/-/lmdb-darwin-x64-3.4.2.tgz", + "integrity": "sha512-zevaowQNmrp3U7Fz1s9pls5aIgpKRsKb3dZWDINtLiozh3jZI9fBrI19lYYBxqdyiIyNdlyiidPnwPShj4aK+w==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" ] }, "node_modules/@lmdb/lmdb-linux-arm": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.0.8.tgz", - "integrity": "sha512-gVNCi3bYWatdPMeFpFjuZl6bzVL55FkeZU3sPeU+NsMRXC+Zl3qOx3M6cM4OMlJWbhHjYjf2b8q83K0mczaiWQ==", + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm/-/lmdb-linux-arm-3.4.2.tgz", + "integrity": "sha512-OmHCULY17rkx/RoCoXlzU7LyR8xqrksgdYWwtYa14l/sseezZ8seKWXcogHcjulBddER5NnEFV4L/Jtr2nyxeg==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@lmdb/lmdb-linux-arm64": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.0.8.tgz", - "integrity": "sha512-uEBGCQIChsixpykL0pjCxfF64btv64vzsb1NoM5u0qvabKvKEvErhXGoqovyldDu9u1T/fswD8Kf6ih0vJEvDQ==", + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-arm64/-/lmdb-linux-arm64-3.4.2.tgz", + "integrity": "sha512-ZBEfbNZdkneebvZs98Lq30jMY8V9IJzckVeigGivV7nTHJc+89Ctomp1kAIWKlwIG0ovCDrFI448GzFPORANYg==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@lmdb/lmdb-linux-x64": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.0.8.tgz", - "integrity": "sha512-6v0B4sa9ulNezmDZtVpLjNHmA0qZzUl3001YJ2RF0naxsuv/Jq/xEwNYpOzfcdizHfpCE0oBkWzk/r+Slr+0zw==", + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-linux-x64/-/lmdb-linux-x64-3.4.2.tgz", + "integrity": "sha512-vL9nM17C77lohPYE4YaAQvfZCSVJSryE4fXdi8M7uWPBnU+9DJabgKVAeyDb84ZM2vcFseoBE4/AagVtJeRE7g==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, - "node_modules/@lmdb/lmdb-win32-x64": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.0.8.tgz", - "integrity": "sha512-lDLGRIMqdwYD39vinwNqqZUxCdL2m2iIdn+0HyQgIHEiT0g5rIAlzaMKzoGWon5NQumfxXFk9y0DarttkR7C1w==", + "node_modules/@lmdb/lmdb-win32-arm64": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-arm64/-/lmdb-win32-arm64-3.4.2.tgz", + "integrity": "sha512-SXWjdBfNDze4ZPeLtYIzsIeDJDJ/SdsA0pEXcUBayUIMO0FQBHfVZZyHXQjjHr4cvOAzANBgIiqaXRwfMhzmLw==", "cpu": [ - "x64" + "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ] }, - "node_modules/@material/animation": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/animation/-/animation-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-1GSJaPKef+7HRuV+HusVZHps64cmZuOItDbt40tjJVaikcaZvwmHlcTxRIqzcRoCdt5ZKHh3NoO7GB9Khg4Jnw==", + "node_modules/@lmdb/lmdb-win32-x64": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@lmdb/lmdb-win32-x64/-/lmdb-win32-x64-3.4.2.tgz", + "integrity": "sha512-IY+r3bxKW6Q6sIPiMC0L533DEfRJSXibjSI3Ft/w9Q8KQBNqEIvUFXt+09wV8S5BRk0a8uSF19YWxuRwEfI90g==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/@material/auto-init": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/auto-init/-/auto-init-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-t7ZGpRJ3ec0QDUO0nJu/SMgLW7qcuG2KqIsEYD1Ej8qhI2xpdR2ydSDQOkVEitXmKoGol1oq4nYSBjTlB65GqA==", + "node_modules/@modelcontextprotocol/sdk": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.26.0.tgz", + "integrity": "sha512-Y5RmPncpiDtTXDbLKswIJzTqu2hyBKxTNsgKqKclDbhIgg1wgtf1fRuvxgTnRfcnxtvvgbIEcqUOzZrJ6iSReg==", "dev": true, + "license": "MIT", "dependencies": { - "@material/base": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/banner": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/banner/-/banner-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-g9wBUZzYBizyBcBQXTIafnRUUPi7efU9gPJfzeGgkynXiccP/vh5XMmH+PBxl5v+4MlP/d4cZ2NUYoAN7UTqSA==", - "dev": true, - "dependencies": { - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/button": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/base": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/base/-/base-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-I9KQOKXpLfJkP8MqZyr8wZIzdPHrwPjFvGd9zSK91/vPyE4hzHRJc/0njsh9g8Lm9PRYLbifXX+719uTbHxx+A==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/@material/button": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/button/-/button-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-BHB7iyHgRVH+JF16+iscR+Qaic+p7LU1FOLgP8KucRlpF9tTwIxQA6mJwGRi5gUtcG+vyCmzVS+hIQ6DqT/7BA==", - "dev": true, - "dependencies": { - "@material/density": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/touch-target": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/card": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/card/-/card-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-kt7y9/IWOtJTr3Z/AoWJT3ZLN7CLlzXhx2udCLP9ootZU2bfGK0lzNwmo80bv/pJfrY9ihQKCtuGTtNxUy+vIw==", - "dev": true, - "dependencies": { - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/checkbox": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/checkbox/-/checkbox-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-rURcrL5O1u6hzWR+dNgiQ/n89vk6tdmdP3mZgnxJx61q4I/k1yijKqNJSLrkXH7Rto3bM5NRKMOlgvMvVd7UMQ==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/density": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/touch-target": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/chips": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/chips/-/chips-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-AYAivV3GSk/T/nRIpH27sOHFPaSMrE3L0WYbnb5Wa93FgY8a0fbsFYtSH2QmtwnzXveg+B1zGTt7/xIIcynKdQ==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/checkbox": "15.0.0-canary.7f224ddd4.0", - "@material/density": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/touch-target": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "safevalues": "^0.3.4", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/circular-progress": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/circular-progress/-/circular-progress-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-DJrqCKb+LuGtjNvKl8XigvyK02y36GRkfhMUYTcJEi3PrOE00bwXtyj7ilhzEVshQiXg6AHGWXtf5UqwNrx3Ow==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/progress-indicator": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/data-table": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/data-table/-/data-table-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-/2WZsuBIq9z9RWYF5Jo6b7P6u0fwit+29/mN7rmAZ6akqUR54nXyNfoSNiyydMkzPlZZsep5KrSHododDhBZbA==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/checkbox": "15.0.0-canary.7f224ddd4.0", - "@material/density": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/icon-button": "15.0.0-canary.7f224ddd4.0", - "@material/linear-progress": "15.0.0-canary.7f224ddd4.0", - "@material/list": "15.0.0-canary.7f224ddd4.0", - "@material/menu": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/select": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/touch-target": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/density": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/density/-/density-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-o9EXmGKVpiQ6mHhyV3oDDzc78Ow3E7v8dlaOhgaDSXgmqaE8v5sIlLNa/LKSyUga83/fpGk3QViSGXotpQx0jA==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/@material/dialog": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/dialog/-/dialog-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-u0XpTlv1JqWC/bQ3DavJ1JguofTelLT2wloj59l3/1b60jv42JQ6Am7jU3I8/SIUB1MKaW7dYocXjDWtWJakLA==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/button": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/icon-button": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/touch-target": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/dom": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/dom/-/dom-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-mQ1HT186GPQSkRg5S18i70typ5ZytfjL09R0gJ2Qg5/G+MLCGi7TAjZZSH65tuD/QGOjel4rDdWOTmYbPYV6HA==", - "dev": true, - "dependencies": { - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/drawer": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/drawer/-/drawer-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-qyO0W0KBftfH8dlLR0gVAgv7ZHNvU8ae11Ao6zJif/YxcvK4+gph1z8AO4H410YmC2kZiwpSKyxM1iQCCzbb4g==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/list": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/elevation": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/elevation/-/elevation-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-tV6s4/pUBECedaI36Yj18KmRCk1vfue/JP/5yYRlFNnLMRVISePbZaKkn/BHXVf+26I3W879+XqIGlDVdmOoMA==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/fab": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/fab/-/fab-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-4h76QrzfZTcPdd+awDPZ4Q0YdSqsXQnS540TPtyXUJ/5G99V6VwGpjMPIxAsW0y+pmI9UkLL/srrMaJec+7r4Q==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/touch-target": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/feature-targeting": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/feature-targeting/-/feature-targeting-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-SAjtxYh6YlKZriU83diDEQ7jNSP2MnxKsER0TvFeyG1vX/DWsUyYDOIJTOEa9K1N+fgJEBkNK8hY55QhQaspew==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/@material/floating-label": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/floating-label/-/floating-label-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-0KMo5ijjYaEHPiZ2pCVIcbaTS2LycvH9zEhEMKwPPGssBCX7iz5ffYQFk7e5yrQand1r3jnQQgYfHAwtykArnQ==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/focus-ring": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/focus-ring/-/focus-ring-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-Jmg1nltq4J6S6A10EGMZnvufrvU3YTi+8R8ZD9lkSbun0Fm2TVdICQt/Auyi6An9zP66oQN6c31eqO6KfIPsDg==", - "dev": true, - "dependencies": { - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0" - } - }, - "node_modules/@material/form-field": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/form-field/-/form-field-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-fEPWgDQEPJ6WF7hNnIStxucHR9LE4DoDSMqCsGWS2Yu+NLZYLuCEecgR0UqQsl1EQdNRaFh8VH93KuxGd2hiPg==", - "dev": true, - "dependencies": { - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/icon-button": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/icon-button/-/icon-button-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-DcK7IL4ICY/DW+48YQZZs9g0U1kRaW0Wb0BxhvppDMYziHo/CTpFdle4gjyuTyRxPOdHQz5a97ru48Z9O4muTw==", - "dev": true, - "dependencies": { - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/density": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/touch-target": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/image-list": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/image-list/-/image-list-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-voMjG2p80XbjL1B2lmF65zO5gEgJOVKClLdqh4wbYzYfwY/SR9c8eLvlYG7DLdFaFBl/7gGxD8TvvZ329HUFPw==", - "dev": true, - "dependencies": { - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/layout-grid": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/layout-grid/-/layout-grid-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-veDABLxMn2RmvfnUO2RUmC1OFfWr4cU+MrxKPoDD2hl3l3eDYv5fxws6r5T1JoSyXoaN+oEZpheS0+M9Ure8Pg==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/@material/line-ripple": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/line-ripple/-/line-ripple-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-f60hVJhIU6I3/17Tqqzch1emUKEcfVVgHVqADbU14JD+oEIz429ZX9ksZ3VChoU3+eejFl+jVdZMLE/LrAuwpg==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/linear-progress": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/linear-progress/-/linear-progress-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-pRDEwPQielDiC9Sc5XhCXrGxP8wWOnAO8sQlMebfBYHYqy5hhiIzibezS8CSaW4MFQFyXmCmpmqWlbqGYRmiyg==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/progress-indicator": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/list": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/list/-/list-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-Is0NV91sJlXF5pOebYAtWLF4wU2MJDbYqztML/zQNENkQxDOvEXu3nWNb3YScMIYJJXvARO0Liur5K4yPagS1Q==", - "dev": true, - "dependencies": { - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/density": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/menu": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/menu/-/menu-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-D11QU1dXqLbh5X1zKlEhS3QWh0b5BPNXlafc5MXfkdJHhOiieb7LC9hMJhbrHtj24FadJ7evaFW/T2ugJbJNnQ==", - "dev": true, - "dependencies": { - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/list": "15.0.0-canary.7f224ddd4.0", - "@material/menu-surface": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/menu-surface": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/menu-surface/-/menu-surface-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-7RZHvw0gbwppaAJ/Oh5SWmfAKJ62aw1IMB3+3MRwsb5PLoV666wInYa+zJfE4i7qBeOn904xqT2Nko5hY0ssrg==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/notched-outline": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/notched-outline/-/notched-outline-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-Yg2usuKB2DKlKIBISbie9BFsOVuffF71xjbxPbybvqemxqUBd+bD5/t6H1fLE+F8/NCu5JMigho4ewUU+0RCiw==", - "dev": true, - "dependencies": { - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/floating-label": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/progress-indicator": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/progress-indicator/-/progress-indicator-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-UPbDjE5CqT+SqTs0mNFG6uFEw7wBlgYmh+noSkQ6ty/EURm8lF125dmi4dv4kW0+octonMXqkGtAoZwLIHKf/w==", - "dev": true, - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/@material/radio": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/radio/-/radio-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-wR1X0Sr0KmQLu6+YOFKAI84G3L6psqd7Kys5kfb8WKBM36zxO5HQXC5nJm/Y0rdn22ixzsIz2GBo0MNU4V4k1A==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/density": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/touch-target": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/ripple": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/ripple/-/ripple-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-JqOsWM1f4aGdotP0rh1vZlPZTg6lZgh39FIYHFMfOwfhR+LAikUJ+37ciqZuewgzXB6iiRO6a8aUH6HR5SJYPg==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/rtl": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/rtl/-/rtl-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-UVf14qAtmPiaaZjuJtmN36HETyoKWmsZM/qn1L5ciR2URb8O035dFWnz4ZWFMmAYBno/L7JiZaCkPurv2ZNrGA==", - "dev": true, - "dependencies": { - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/segmented-button": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/segmented-button/-/segmented-button-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-LCnVRUSAhELTKI/9hSvyvIvQIpPpqF29BV+O9yM4WoNNmNWqTulvuiv7grHZl6Z+kJuxSg4BGbsPxxb9dXozPg==", - "dev": true, - "dependencies": { - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/touch-target": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/select": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/select/-/select-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-WioZtQEXRpglum0cMSzSqocnhsGRr+ZIhvKb3FlaNrTaK8H3Y4QA7rVjv3emRtrLOOjaT6/RiIaUMTo9AGzWQQ==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/density": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/floating-label": "15.0.0-canary.7f224ddd4.0", - "@material/line-ripple": "15.0.0-canary.7f224ddd4.0", - "@material/list": "15.0.0-canary.7f224ddd4.0", - "@material/menu": "15.0.0-canary.7f224ddd4.0", - "@material/menu-surface": "15.0.0-canary.7f224ddd4.0", - "@material/notched-outline": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/shape": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/shape/-/shape-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-8z8l1W3+cymObunJoRhwFPKZ+FyECfJ4MJykNiaZq7XJFZkV6xNmqAVrrbQj93FtLsECn9g4PjjIomguVn/OEw==", - "dev": true, - "dependencies": { - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/slider": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/slider/-/slider-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-QU/WSaSWlLKQRqOhJrPgm29wqvvzRusMqwAcrCh1JTrCl+xwJ43q5WLDfjYhubeKtrEEgGu9tekkAiYfMG7EBw==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/snackbar": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/snackbar/-/snackbar-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-sm7EbVKddaXpT/aXAYBdPoN0k8yeg9+dprgBUkrdqGzWJAeCkxb4fv2B3He88YiCtvkTz2KLY4CThPQBSEsMFQ==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/button": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/icon-button": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/switch": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/switch/-/switch-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-lEDJfRvkVyyeHWIBfoxYjJVl+WlEAE2kZ/+6OqB1FW0OV8ftTODZGhHRSzjVBA1/p4FPuhAtKtoK9jTpa4AZjA==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/density": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "safevalues": "^0.3.4", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/tab": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/tab/-/tab-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-E1xGACImyCLurhnizyOTCgOiVezce4HlBFAI6YhJo/AyVwjN2Dtas4ZLQMvvWWqpyhITNkeYdOchwCC1mrz3AQ==", - "dev": true, - "dependencies": { - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/focus-ring": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/tab-indicator": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/tab-bar": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/tab-bar/-/tab-bar-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-p1Asb2NzrcECvAQU3b2SYrpyJGyJLQWR+nXTYzDKE8WOpLIRCXap2audNqD7fvN/A20UJ1J8U01ptrvCkwJ4eA==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/density": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/tab": "15.0.0-canary.7f224ddd4.0", - "@material/tab-indicator": "15.0.0-canary.7f224ddd4.0", - "@material/tab-scroller": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/tab-indicator": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/tab-indicator/-/tab-indicator-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-h9Td3MPqbs33spcPS7ecByRHraYgU4tNCZpZzZXw31RypjKvISDv/PS5wcA4RmWqNGih78T7xg4QIGsZg4Pk4w==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/tab-scroller": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/tab-scroller/-/tab-scroller-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-LFeYNjQpdXecwECd8UaqHYbhscDCwhGln5Yh+3ctvcEgvmDPNjhKn/DL3sWprWvG8NAhP6sHMrsGhQFVdCWtTg==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/tab": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/textfield": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/textfield/-/textfield-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-AExmFvgE5nNF0UA4l2cSzPghtxSUQeeoyRjFLHLy+oAaE4eKZFrSy0zEpqPeWPQpEMDZk+6Y+6T3cOFYBeSvsw==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/density": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/floating-label": "15.0.0-canary.7f224ddd4.0", - "@material/line-ripple": "15.0.0-canary.7f224ddd4.0", - "@material/notched-outline": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/theme": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/theme/-/theme-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-hs45hJoE9yVnoVOcsN1jklyOa51U4lzWsEnQEuJTPOk2+0HqCQ0yv/q0InpSnm2i69fNSyZC60+8HADZGF8ugQ==", - "dev": true, - "dependencies": { - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/tokens": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/tokens/-/tokens-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-r9TDoicmcT7FhUXC4eYMFnt9TZsz0G8T3wXvkKncLppYvZ517gPyD/1+yhuGfGOxAzxTrM66S/oEc1fFE2q4hw==", - "dev": true, - "dependencies": { - "@material/elevation": "15.0.0-canary.7f224ddd4.0" - } - }, - "node_modules/@material/tooltip": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/tooltip/-/tooltip-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-8qNk3pmPLTnam3XYC1sZuplQXW9xLn4Z4MI3D+U17Q7pfNZfoOugGr+d2cLA9yWAEjVJYB0mj8Yu86+udo4N9w==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/button": "15.0.0-canary.7f224ddd4.0", - "@material/dom": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/tokens": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "safevalues": "^0.3.4", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/top-app-bar": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/top-app-bar/-/top-app-bar-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-SARR5/ClYT4CLe9qAXakbr0i0cMY0V3V4pe3ElIJPfL2Z2c4wGR1mTR8m2LxU1MfGKK8aRoUdtfKaxWejp+eNA==", - "dev": true, - "dependencies": { - "@material/animation": "15.0.0-canary.7f224ddd4.0", - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/elevation": "15.0.0-canary.7f224ddd4.0", - "@material/ripple": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/shape": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "@material/typography": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/touch-target": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/touch-target/-/touch-target-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-BJo/wFKHPYLGsRaIpd7vsQwKr02LtO2e89Psv0on/p0OephlNIgeB9dD9W+bQmaeZsZ6liKSKRl6wJWDiK71PA==", - "dev": true, - "dependencies": { - "@material/base": "15.0.0-canary.7f224ddd4.0", - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/rtl": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" - } - }, - "node_modules/@material/typography": { - "version": "15.0.0-canary.7f224ddd4.0", - "resolved": "https://registry.npmjs.org/@material/typography/-/typography-15.0.0-canary.7f224ddd4.0.tgz", - "integrity": "sha512-kBaZeCGD50iq1DeRRH5OM5Jl7Gdk+/NOfKArkY4ksBZvJiStJ7ACAhpvb8MEGm4s3jvDInQFLsDq3hL+SA79sQ==", - "dev": true, - "dependencies": { - "@material/feature-targeting": "15.0.0-canary.7f224ddd4.0", - "@material/theme": "15.0.0-canary.7f224ddd4.0", - "tslib": "^2.1.0" + "@hono/node-server": "^1.19.9", + "ajv": "^8.17.1", + "ajv-formats": "^3.0.1", + "content-type": "^1.0.5", + "cors": "^2.8.5", + "cross-spawn": "^7.0.5", + "eventsource": "^3.0.2", + "eventsource-parser": "^3.0.0", + "express": "^5.2.1", + "express-rate-limit": "^8.2.1", + "hono": "^4.11.4", + "jose": "^6.1.3", + "json-schema-typed": "^8.0.2", + "pkce-challenge": "^5.0.0", + "raw-body": "^3.0.0", + "zod": "^3.25 || ^4.0", + "zod-to-json-schema": "^3.25.1" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@cfworker/json-schema": "^4.1.1", + "zod": "^3.25 || ^4.0" + }, + "peerDependenciesMeta": { + "@cfworker/json-schema": { + "optional": true + }, + "zod": { + "optional": false + } } }, "node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz", - "integrity": "sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.4.tgz", + "integrity": "sha512-LCkGo6JDfaBhgST7UpPWgNgLINpcpabaHfyz5OBx75nUYxBsaEPxjnyNjWpeb/xBup/682QnBfRBy2/LvPutZQ==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" ] }, "node_modules/@msgpackr-extract/msgpackr-extract-darwin-x64": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.3.tgz", - "integrity": "sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.4.tgz", + "integrity": "sha512-zExlW9zUJKZH/tOtVMttwjKa4Xm/3KcNjnE3dPN92uCktwavMxpgCA3MoJK/DOnTWsQgo224OaST27/mPNAf+w==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" ] }, "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.3.tgz", - "integrity": "sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.4.tgz", + "integrity": "sha512-Tg3yX65f5GbtXLkrYEHE5oibZG9epyYWas7FogTTEJeDEF9JlXJzKgXaNhT3UXlTOeA+AfZpYZYZ0uPj7Cfquw==", "cpu": [ "arm" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm64": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.3.tgz", - "integrity": "sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.4.tgz", + "integrity": "sha512-dgX0P/9wGPJeHFBG+ZmhgE6bmtMt7NP5CRBGyyktpopdk/mW4POnrpQsSLtKI1dwpc+pPLuXHDh6vvskyQE/sw==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@msgpackr-extract/msgpackr-extract-linux-x64": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.3.tgz", - "integrity": "sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.4.tgz", + "integrity": "sha512-8TNXMEjJc3QEy7R/x1INhgiU+XakDAFUzBhaz7+Rbrs8NH5UQeHQxxmzsSBJGyV6I1jW79undiQm8tOI+D+8FQ==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@msgpackr-extract/msgpackr-extract-win32-x64": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.3.tgz", - "integrity": "sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.4.tgz", + "integrity": "sha512-CmCXPQrkbwExx3j946/PtHWHbYJiCRBRDl4BlkRQcJB/YOwQxJRTpoo7aTsortjgoJ1x7opzTSxn7C+ASSLVjQ==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ] }, + "node_modules/@napi-rs/nice": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice/-/nice-1.1.1.tgz", + "integrity": "sha512-xJIPs+bYuc9ASBl+cvGsKbGrJmS6fAKaSZCnT0lhahT5rhA2VVy9/EcIgd2JhtEuFOJNx7UHNn/qiTPTY4nrQw==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Brooooooklyn" + }, + "optionalDependencies": { + "@napi-rs/nice-android-arm-eabi": "1.1.1", + "@napi-rs/nice-android-arm64": "1.1.1", + "@napi-rs/nice-darwin-arm64": "1.1.1", + "@napi-rs/nice-darwin-x64": "1.1.1", + "@napi-rs/nice-freebsd-x64": "1.1.1", + "@napi-rs/nice-linux-arm-gnueabihf": "1.1.1", + "@napi-rs/nice-linux-arm64-gnu": "1.1.1", + "@napi-rs/nice-linux-arm64-musl": "1.1.1", + "@napi-rs/nice-linux-ppc64-gnu": "1.1.1", + "@napi-rs/nice-linux-riscv64-gnu": "1.1.1", + "@napi-rs/nice-linux-s390x-gnu": "1.1.1", + "@napi-rs/nice-linux-x64-gnu": "1.1.1", + "@napi-rs/nice-linux-x64-musl": "1.1.1", + "@napi-rs/nice-openharmony-arm64": "1.1.1", + "@napi-rs/nice-win32-arm64-msvc": "1.1.1", + "@napi-rs/nice-win32-ia32-msvc": "1.1.1", + "@napi-rs/nice-win32-x64-msvc": "1.1.1" + } + }, + "node_modules/@napi-rs/nice-android-arm-eabi": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-android-arm-eabi/-/nice-android-arm-eabi-1.1.1.tgz", + "integrity": "sha512-kjirL3N6TnRPv5iuHw36wnucNqXAO46dzK9oPb0wj076R5Xm8PfUVA9nAFB5ZNMmfJQJVKACAPd/Z2KYMppthw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-android-arm64": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-android-arm64/-/nice-android-arm64-1.1.1.tgz", + "integrity": "sha512-blG0i7dXgbInN5urONoUCNf+DUEAavRffrO7fZSeoRMJc5qD+BJeNcpr54msPF6qfDD6kzs9AQJogZvT2KD5nw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-darwin-arm64": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-darwin-arm64/-/nice-darwin-arm64-1.1.1.tgz", + "integrity": "sha512-s/E7w45NaLqTGuOjC2p96pct4jRfo61xb9bU1unM/MJ/RFkKlJyJDx7OJI/O0ll/hrfpqKopuAFDV8yo0hfT7A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-darwin-x64": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-darwin-x64/-/nice-darwin-x64-1.1.1.tgz", + "integrity": "sha512-dGoEBnVpsdcC+oHHmW1LRK5eiyzLwdgNQq3BmZIav+9/5WTZwBYX7r5ZkQC07Nxd3KHOCkgbHSh4wPkH1N1LiQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-freebsd-x64": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-freebsd-x64/-/nice-freebsd-x64-1.1.1.tgz", + "integrity": "sha512-kHv4kEHAylMYmlNwcQcDtXjklYp4FCf0b05E+0h6nDHsZ+F0bDe04U/tXNOqrx5CmIAth4vwfkjjUmp4c4JktQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-linux-arm-gnueabihf": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-arm-gnueabihf/-/nice-linux-arm-gnueabihf-1.1.1.tgz", + "integrity": "sha512-E1t7K0efyKXZDoZg1LzCOLxgolxV58HCkaEkEvIYQx12ht2pa8hoBo+4OB3qh7e+QiBlp1SRf+voWUZFxyhyqg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-linux-arm64-gnu": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-arm64-gnu/-/nice-linux-arm64-gnu-1.1.1.tgz", + "integrity": "sha512-CIKLA12DTIZlmTaaKhQP88R3Xao+gyJxNWEn04wZwC2wmRapNnxCUZkVwggInMJvtVElA+D4ZzOU5sX4jV+SmQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-linux-arm64-musl": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-arm64-musl/-/nice-linux-arm64-musl-1.1.1.tgz", + "integrity": "sha512-+2Rzdb3nTIYZ0YJF43qf2twhqOCkiSrHx2Pg6DJaCPYhhaxbLcdlV8hCRMHghQ+EtZQWGNcS2xF4KxBhSGeutg==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-linux-ppc64-gnu": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-ppc64-gnu/-/nice-linux-ppc64-gnu-1.1.1.tgz", + "integrity": "sha512-4FS8oc0GeHpwvv4tKciKkw3Y4jKsL7FRhaOeiPei0X9T4Jd619wHNe4xCLmN2EMgZoeGg+Q7GY7BsvwKpL22Tg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-linux-riscv64-gnu": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-riscv64-gnu/-/nice-linux-riscv64-gnu-1.1.1.tgz", + "integrity": "sha512-HU0nw9uD4FO/oGCCk409tCi5IzIZpH2agE6nN4fqpwVlCn5BOq0MS1dXGjXaG17JaAvrlpV5ZeyZwSon10XOXw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-linux-s390x-gnu": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-s390x-gnu/-/nice-linux-s390x-gnu-1.1.1.tgz", + "integrity": "sha512-2YqKJWWl24EwrX0DzCQgPLKQBxYDdBxOHot1KWEq7aY2uYeX+Uvtv4I8xFVVygJDgf6/92h9N3Y43WPx8+PAgQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-linux-x64-gnu": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-x64-gnu/-/nice-linux-x64-gnu-1.1.1.tgz", + "integrity": "sha512-/gaNz3R92t+dcrfCw/96pDopcmec7oCcAQ3l/M+Zxr82KT4DljD37CpgrnXV+pJC263JkW572pdbP3hP+KjcIg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-linux-x64-musl": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-linux-x64-musl/-/nice-linux-x64-musl-1.1.1.tgz", + "integrity": "sha512-xScCGnyj/oppsNPMnevsBe3pvNaoK7FGvMjT35riz9YdhB2WtTG47ZlbxtOLpjeO9SqqQ2J2igCmz6IJOD5JYw==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-openharmony-arm64": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-openharmony-arm64/-/nice-openharmony-arm64-1.1.1.tgz", + "integrity": "sha512-6uJPRVwVCLDeoOaNyeiW0gp2kFIM4r7PL2MczdZQHkFi9gVlgm+Vn+V6nTWRcu856mJ2WjYJiumEajfSm7arPQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-win32-arm64-msvc": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-win32-arm64-msvc/-/nice-win32-arm64-msvc-1.1.1.tgz", + "integrity": "sha512-uoTb4eAvM5B2aj/z8j+Nv8OttPf2m+HVx3UjA5jcFxASvNhQriyCQF1OB1lHL43ZhW+VwZlgvjmP5qF3+59atA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-win32-ia32-msvc": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-win32-ia32-msvc/-/nice-win32-ia32-msvc-1.1.1.tgz", + "integrity": "sha512-CNQqlQT9MwuCsg1Vd/oKXiuH+TcsSPJmlAFc5frFyX/KkOh0UpBLEj7aoY656d5UKZQMQFP7vJNa1DNUNORvug==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, + "node_modules/@napi-rs/nice-win32-x64-msvc": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@napi-rs/nice-win32-x64-msvc/-/nice-win32-x64-msvc-1.1.1.tgz", + "integrity": "sha512-vB+4G/jBQCAh0jelMTY3+kgFy00Hlx2f2/1zjMoH821IbplbWZOkLiTYXQkygNTzQJTq5cvwBDgn2ppHD+bglQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10" + } + }, "node_modules/@ngrx/effects": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/@ngrx/effects/-/effects-17.2.0.tgz", - "integrity": "sha512-tXDJNsuBtbvI/7+vYnkDKKpUvLbopw1U5G6LoPnKNrbTPsPcUGmCqF5Su/ZoRN3BhXjt2j+eoeVdpBkxdxMRgg==", + "version": "21.0.1", + "resolved": "https://registry.npmjs.org/@ngrx/effects/-/effects-21.0.1.tgz", + "integrity": "sha512-hSdpToAiSYa5FJ/CAygQHpnCaF2S1HO7q/57ob3XvNTWmkofa0VqI/IIe4W57bojh2YOWCJ91SCn3kAjymaV3g==", + "license": "MIT", "dependencies": { - "@ngrx/operators": "17.0.0-beta.0", "tslib": "^2.0.0" }, "peerDependencies": { - "@angular/core": "^17.0.0", - "@ngrx/store": "17.2.0", + "@angular/core": "^21.0.0", + "@ngrx/store": "21.0.1", "rxjs": "^6.5.3 || ^7.5.0" } }, - "node_modules/@ngrx/operators": { - "version": "17.0.0-beta.0", - "resolved": "https://registry.npmjs.org/@ngrx/operators/-/operators-17.0.0-beta.0.tgz", - "integrity": "sha512-EbO8AONuQ6zo2v/mPyBOi4y0CTAp1x4Z+bx7ZF+Pd8BL5ma53BTCL1TmzaeK5zPUe0yApudLk9/ZbHXPnVox5A==", - "dependencies": { - "tslib": "^2.3.0" - }, - "peerDependencies": { - "rxjs": "^6.5.3 || ^7.4.0" - } - }, "node_modules/@ngrx/store": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/@ngrx/store/-/store-17.2.0.tgz", - "integrity": "sha512-7wKgZ59B/6yQSvvsU0DQXipDqpkAXv7LwcXLD5Ww7nvqN0fQoRPThMh4+Wv55DCJhE0bQc1NEMciLA47uRt7Wg==", + "version": "21.0.1", + "resolved": "https://registry.npmjs.org/@ngrx/store/-/store-21.0.1.tgz", + "integrity": "sha512-2hGnw/c5o8nmKzyx7TrUUM7FXjE2zqjX0EF+wLbw9Oy/L+VdCmx+ZI1BFjuAR4B8PKEWHG2KSbOM13SMNkpZiA==", + "license": "MIT", "dependencies": { "tslib": "^2.0.0" }, "peerDependencies": { - "@angular/core": "^17.0.0", + "@angular/core": "^21.0.0", "rxjs": "^6.5.3 || ^7.5.0" } }, "node_modules/@ngrx/store-devtools": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/@ngrx/store-devtools/-/store-devtools-17.2.0.tgz", - "integrity": "sha512-ig0qr6hMexZGnrlxfHvZmu5CanRjH7hhx60XUbB5BdBvWJIIRaWKPLcsniiDUhljAD87gvzrrilbCTiML38+CA==", + "version": "21.0.1", + "resolved": "https://registry.npmjs.org/@ngrx/store-devtools/-/store-devtools-21.0.1.tgz", + "integrity": "sha512-G9fO7CFwYUpz8+JZ9uny+lVJ7iv6PcFJDg+jae5CCrAUIiflnR8gbwD8exAd2AODpxPCpmnSojuLNpLDAcwGzQ==", "dev": true, + "license": "MIT", "dependencies": { "tslib": "^2.0.0" }, "peerDependencies": { - "@ngrx/store": "17.2.0", + "@angular/core": "^21.0.0", + "@ngrx/store": "21.0.1", "rxjs": "^6.5.3 || ^7.5.0" } }, "node_modules/@ngtools/webpack": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-18.0.5.tgz", - "integrity": "sha512-Dx386WZZn0RwUaBHQYhDW8oi254SxEu8Ty5LHnStqBP6xXdcnsdGel+h9qvJ67He9iu8Rj0PB64EFE4PiklMdQ==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-20.3.32.tgz", + "integrity": "sha512-a3KWNfv3NEyNHdGusIP/+lfLtjH7L5rcqgouBm6v3t1vHQ4zg2sNgoYIQIJCAJnFI2b080YrP9jh2FqKTCJlug==", "dev": true, + "license": "MIT", "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "node": "^20.19.0 || ^22.12.0 || >=24.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" }, "peerDependencies": { - "@angular/compiler-cli": "^18.0.0", - "typescript": ">=5.4 <5.5", + "@angular/compiler-cli": "^20.0.0", + "typescript": ">=5.8 <6.0", "webpack": "^5.54.0" } }, + "node_modules/@noble/ciphers": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.3.0.tgz", + "integrity": "sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==", + "license": "MIT", + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@noble/hashes": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz", + "integrity": "sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==", + "license": "MIT", + "engines": { + "node": "^14.21.3 || >=16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" @@ -4687,6 +5130,7 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, + "license": "MIT", "engines": { "node": ">= 8" } @@ -4696,6 +5140,7 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" @@ -4705,505 +5150,312 @@ } }, "node_modules/@npmcli/agent": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.2.tgz", - "integrity": "sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-4.0.2.tgz", + "integrity": "sha512-EUEuWAxnL07Sp5/iC/1X6Xj+XThUvnbei9zfRWZdEXa7lss9RTHMhAHBeg+MZ5To9s/gGaSI+UwZTPdYMvKSeg==", "dev": true, + "license": "ISC", "dependencies": { "agent-base": "^7.1.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.1", - "lru-cache": "^10.0.1", + "lru-cache": "^11.2.1", "socks-proxy-agent": "^8.0.3" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/agent/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "version": "11.5.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz", + "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==", "dev": true, + "license": "BlueOak-1.0.0", "engines": { - "node": "14 || >=16.14" + "node": "20 || >=22" } }, "node_modules/@npmcli/fs": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.1.tgz", - "integrity": "sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-5.0.0.tgz", + "integrity": "sha512-7OsC1gNORBEawOa5+j2pXN9vsicaIOH5cPXxoR6fJOmH6/EXpJB2CajXOu1fPRFun2m1lktEFX11+P89hqO/og==", "dev": true, + "license": "ISC", "dependencies": { "semver": "^7.3.5" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/git": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.7.tgz", - "integrity": "sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==", + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-7.0.2.tgz", + "integrity": "sha512-oeolHDjExNAJAnlYP2qzNjMX/Xi9bmu78C9dIGr4xjobrSKbuMYCph8lTzn4vnW3NjIqVmw/f8BCfouqyJXlRg==", "dev": true, + "license": "ISC", "dependencies": { - "@npmcli/promise-spawn": "^7.0.0", - "lru-cache": "^10.0.1", - "npm-pick-manifest": "^9.0.0", - "proc-log": "^4.0.0", - "promise-inflight": "^1.0.1", - "promise-retry": "^2.0.1", + "@gar/promise-retry": "^1.0.0", + "@npmcli/promise-spawn": "^9.0.0", + "ini": "^6.0.0", + "lru-cache": "^11.2.1", + "npm-pick-manifest": "^11.0.1", + "proc-log": "^6.0.0", "semver": "^7.3.5", - "which": "^4.0.0" + "which": "^6.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/git/node_modules/isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-4.0.0.tgz", + "integrity": "sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==", "dev": true, + "license": "BlueOak-1.0.0", "engines": { - "node": ">=16" + "node": ">=20" } }, "node_modules/@npmcli/git/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "version": "11.5.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz", + "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==", "dev": true, + "license": "BlueOak-1.0.0", "engines": { - "node": "14 || >=16.14" + "node": "20 || >=22" + } + }, + "node_modules/@npmcli/git/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/git/node_modules/which": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", - "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-6.0.1.tgz", + "integrity": "sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==", "dev": true, + "license": "ISC", "dependencies": { - "isexe": "^3.1.1" + "isexe": "^4.0.0" }, "bin": { "node-which": "bin/which.js" }, "engines": { - "node": "^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/installed-package-contents": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.1.0.tgz", - "integrity": "sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-4.0.0.tgz", + "integrity": "sha512-yNyAdkBxB72gtZ4GrwXCM0ZUedo9nIbOMKfGjt6Cu6DXf0p8y1PViZAKDC8q8kv/fufx0WTjRBdSlyrvnP7hmA==", "dev": true, + "license": "ISC", "dependencies": { - "npm-bundled": "^3.0.0", - "npm-normalize-package-bin": "^3.0.0" + "npm-bundled": "^5.0.0", + "npm-normalize-package-bin": "^5.0.0" }, "bin": { "installed-package-contents": "bin/index.js" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/node-gyp": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz", - "integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-5.0.0.tgz", + "integrity": "sha512-uuG5HZFXLfyFKqg8QypsmgLQW7smiRjVc45bqD/ofZZcR/uxEjgQU8qDPv0s9TEeMUiAAU/GC5bR6++UdTirIQ==", "dev": true, + "license": "ISC", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/package-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-5.2.0.tgz", - "integrity": "sha512-qe/kiqqkW0AGtvBjL8TJKZk/eBBSpnJkUWvHdQ9jM2lKHXRYYJuyNpJPlJw3c8QjC2ow6NZYiLExhUaeJelbxQ==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-7.0.5.tgz", + "integrity": "sha512-iVuTlG3ORq2iaVa1IWUxAO/jIp77tUKBhoMjuzYW2kL4MLN1bi/ofqkZ7D7OOwh8coAx1/S2ge0rMdGv8sLSOQ==", "dev": true, + "license": "ISC", "dependencies": { - "@npmcli/git": "^5.0.0", - "glob": "^10.2.2", - "hosted-git-info": "^7.0.0", - "json-parse-even-better-errors": "^3.0.0", - "normalize-package-data": "^6.0.0", - "proc-log": "^4.0.0", - "semver": "^7.5.3" + "@npmcli/git": "^7.0.0", + "glob": "^13.0.0", + "hosted-git-info": "^9.0.0", + "json-parse-even-better-errors": "^5.0.0", + "proc-log": "^6.0.0", + "semver": "^7.5.3", + "spdx-expression-parse": "^4.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/@npmcli/package-json/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/@npmcli/package-json/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz", + "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==", "dev": true, + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/@npmcli/package-json/node_modules/glob": { - "version": "10.4.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", - "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", + "version": "13.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz", + "integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "minimatch": "^10.2.2", + "minipass": "^7.1.3", + "path-scurry": "^2.0.2" }, "engines": { - "node": ">=16 || 14 >=14.18" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/@npmcli/package-json/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^5.0.5" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/@npmcli/package-json/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^20.17.0 || >=22.9.0" + } + }, "node_modules/@npmcli/promise-spawn": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.2.tgz", - "integrity": "sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==", + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-9.0.1.tgz", + "integrity": "sha512-OLUaoqBuyxeTqUvjA3FZFiXUfYC1alp3Sa99gW3EUDz3tZ3CbXDdcZ7qWKBzicrJleIgucoWamWH1saAmH/l2Q==", "dev": true, + "license": "ISC", "dependencies": { - "which": "^4.0.0" + "which": "^6.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/promise-spawn/node_modules/isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-4.0.0.tgz", + "integrity": "sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==", "dev": true, + "license": "BlueOak-1.0.0", "engines": { - "node": ">=16" + "node": ">=20" } }, "node_modules/@npmcli/promise-spawn/node_modules/which": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", - "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-6.0.1.tgz", + "integrity": "sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==", "dev": true, + "license": "ISC", "dependencies": { - "isexe": "^3.1.1" + "isexe": "^4.0.0" }, "bin": { "node-which": "bin/which.js" }, "engines": { - "node": "^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/redact": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@npmcli/redact/-/redact-2.0.1.tgz", - "integrity": "sha512-YgsR5jCQZhVmTJvjduTOIHph0L73pK8xwMVaDY0PatySqVM9AZj93jpoXYSJqfHFxFkN9dmqTw6OiqExsS3LPw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/redact/-/redact-4.0.0.tgz", + "integrity": "sha512-gOBg5YHMfZy+TfHArfVogwgfBeQnKbbGo3pSUyK/gSI0AVu+pEiDVcKlQb0D8Mg1LNRZILZ6XG8I5dJ4KuAd9Q==", "dev": true, + "license": "ISC", "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@npmcli/run-script": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-8.1.0.tgz", - "integrity": "sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==", + "version": "10.0.4", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-10.0.4.tgz", + "integrity": "sha512-mGUWr1uMnf0le2TwfOZY4SFxZGXGfm4Jtay/nwAa2FLNAKXUoUwaGwBMNH36UHPtinWfTSJ3nqFQr0091CxVGg==", "dev": true, + "license": "ISC", "dependencies": { - "@npmcli/node-gyp": "^3.0.0", - "@npmcli/package-json": "^5.0.0", - "@npmcli/promise-spawn": "^7.0.0", - "node-gyp": "^10.0.0", - "proc-log": "^4.0.0", - "which": "^4.0.0" + "@npmcli/node-gyp": "^5.0.0", + "@npmcli/package-json": "^7.0.0", + "@npmcli/promise-spawn": "^9.0.0", + "node-gyp": "^12.1.0", + "proc-log": "^6.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, - "node_modules/@npmcli/run-script/node_modules/isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "node_modules/@npmcli/run-script/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", "dev": true, + "license": "ISC", "engines": { - "node": ">=16" - } - }, - "node_modules/@npmcli/run-script/node_modules/which": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", - "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", - "dev": true, - "dependencies": { - "isexe": "^3.1.1" - }, - "bin": { - "node-which": "bin/which.js" - }, - "engines": { - "node": "^16.13.0 || >=18.0.0" - } - }, - "node_modules/@nrwl/devkit": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nrwl/devkit/-/devkit-19.3.1.tgz", - "integrity": "sha512-SUS4P+yOwqGIZYlGMiHyU8Lav6ofal77cNTHuI5g/tHjewA6oSoi7xlrsJpzT6F5dtsoTtrilStfOIp50HkOLw==", - "dev": true, - "dependencies": { - "@nx/devkit": "19.3.1" - } - }, - "node_modules/@nrwl/tao": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nrwl/tao/-/tao-19.3.1.tgz", - "integrity": "sha512-K3VqTNwJ5/4vAaExIVmESWnQgO95MiJEgo+OzkmfkFvYTCOH2006OwvgCJFTQdjyONJ8Ao/lUPrHSDfsoevSeA==", - "dev": true, - "dependencies": { - "nx": "19.3.1", - "tslib": "^2.3.0" - }, - "bin": { - "tao": "index.js" - } - }, - "node_modules/@nx/devkit": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/devkit/-/devkit-19.3.1.tgz", - "integrity": "sha512-sMMPGy6xivhipajvyfR96RMDJiKdmhIRgRxAVW298nKSKwrkRrxW48EtxYqUtI8MZkUPQigNVvqN8fyZ/gE7CA==", - "dev": true, - "dependencies": { - "@nrwl/devkit": "19.3.1", - "ejs": "^3.1.7", - "enquirer": "~2.3.6", - "ignore": "^5.0.4", - "minimatch": "9.0.3", - "semver": "^7.5.3", - "tmp": "~0.2.1", - "tslib": "^2.3.0", - "yargs-parser": "21.1.1" - }, - "peerDependencies": { - "nx": ">= 17 <= 20" - } - }, - "node_modules/@nx/devkit/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@nx/devkit/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@nx/nx-darwin-arm64": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-arm64/-/nx-darwin-arm64-19.3.1.tgz", - "integrity": "sha512-B8kpnfBBJJE4YfSvpNPNdKLi63cyd41dZJRePkBrW/7Va/wUiHuKoyAEQZEI2WmH9ZM3RNmw7dp5vESr05Sw5g==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-darwin-x64": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-darwin-x64/-/nx-darwin-x64-19.3.1.tgz", - "integrity": "sha512-XKY76oi7hLQAKZzGlEsqPxNWx7BOS8E801CA9k+hKNVqNJdD6Vz/1hkhzKo/TwBrPkyhdvrq+BqBMLS7ZDefKw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-freebsd-x64": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-freebsd-x64/-/nx-freebsd-x64-19.3.1.tgz", - "integrity": "sha512-ZXDmzosPEq1DKC9r7UxPxF9I2GE11TmmYePcwN2xE1/you9+NUd14+SVW/jh/uH1j1n/41w0g35oNA6X0U+fGw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-arm-gnueabihf": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-19.3.1.tgz", - "integrity": "sha512-2Ls+08J14BmkHpkQ6DhHGdW97IcY3vvqmuwogTBrt5ATmJIim3o/O4Kp4Sq+uuotf0kae0NP986BuoFw/WW/xg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-arm64-gnu": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-19.3.1.tgz", - "integrity": "sha512-+UbThXaqKmctAavcwdYxmtZIjrojGLK4PJKdivR0awjPEJ9qXnxA0bOQk/GdbD8nse66LR2NnPeNDxxqfsh8tw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-arm64-musl": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-19.3.1.tgz", - "integrity": "sha512-JMuBbg2Zqdz4N7i+hiJGr2QdsDarDZ8vyzzeoevFq3b8nhZfqKh/lno7+Y0WkXNpH7aT05GHaUA1r1NXf/5BeQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-x64-gnu": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-19.3.1.tgz", - "integrity": "sha512-cVmDMtolaqK7PziWxvjus1nCyj2wMNM+N0/4+rBEjG4v47gTtBxlZJoxK02jApdV+XELehsTjd0Z/xVfO4Rl1Q==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-linux-x64-musl": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-19.3.1.tgz", - "integrity": "sha512-UGujK/TLMz9TNJ6+6HLhoOV7pdlgPVosSyeNZcoXCHOg/Mg9NGM7Hgk9jDodtcAY+TP6QMDJIMVGuXBsCE7NLQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-win32-arm64-msvc": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-19.3.1.tgz", - "integrity": "sha512-q+2aaRXarh/+HOOW/JXRwEnEEwPdGipsfzXBPDuDDJ7aOYKuyG7g1DlSERKdzI/aEBP+joneZbcbZHaDcEv2xw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nx/nx-win32-x64-msvc": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-19.3.1.tgz", - "integrity": "sha512-TG4DP1lodTnIwY/CiSsc9Pk7o9/JZXgd1pP/xdHNTkrZYjE//z6TbSm+facBLuryuMhp6s/WlJaAlW241qva0Q==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@otplib/core": { "version": "12.0.1", "resolved": "https://registry.npmjs.org/@otplib/core/-/core-12.0.1.tgz", - "integrity": "sha512-4sGntwbA/AC+SbPhbsziRiD+jNDdIzsZ3JUyfZwjtKyc/wufl1pnSIaG4Uqx8ymPagujub0o92kgBnB89cuAMA==" + "integrity": "sha512-4sGntwbA/AC+SbPhbsziRiD+jNDdIzsZ3JUyfZwjtKyc/wufl1pnSIaG4Uqx8ymPagujub0o92kgBnB89cuAMA==", + "license": "MIT" }, "node_modules/@otplib/plugin-crypto": { "version": "12.0.1", "resolved": "https://registry.npmjs.org/@otplib/plugin-crypto/-/plugin-crypto-12.0.1.tgz", "integrity": "sha512-qPuhN3QrT7ZZLcLCyKOSNhuijUi9G5guMRVrxq63r9YNOxxQjPm59gVxLM+7xGnHnM6cimY57tuKsjK7y9LM1g==", + "deprecated": "Please upgrade to v13 of otplib. Refer to otplib docs for migration paths", + "license": "MIT", "dependencies": { "@otplib/core": "^12.0.1" } @@ -5212,6 +5464,8 @@ "version": "12.0.1", "resolved": "https://registry.npmjs.org/@otplib/plugin-thirty-two/-/plugin-thirty-two-12.0.1.tgz", "integrity": "sha512-MtT+uqRso909UkbrrYpJ6XFjj9D+x2Py7KjTO9JDPhL0bJUYVu5kFP4TFZW4NFAywrAtFRxOVY261u0qwb93gA==", + "deprecated": "Please upgrade to v13 of otplib. Refer to otplib docs for migration paths", + "license": "MIT", "dependencies": { "@otplib/core": "^12.0.1", "thirty-two": "^1.0.2" @@ -5221,6 +5475,8 @@ "version": "12.0.1", "resolved": "https://registry.npmjs.org/@otplib/preset-default/-/preset-default-12.0.1.tgz", "integrity": "sha512-xf1v9oOJRyXfluBhMdpOkr+bsE+Irt+0D5uHtvg6x1eosfmHCsCC6ej/m7FXiWqdo0+ZUI6xSKDhJwc8yfiOPQ==", + "deprecated": "Please upgrade to v13 of otplib. Refer to otplib docs for migration paths", + "license": "MIT", "dependencies": { "@otplib/core": "^12.0.1", "@otplib/plugin-crypto": "^12.0.1", @@ -5231,438 +5487,1159 @@ "version": "12.0.1", "resolved": "https://registry.npmjs.org/@otplib/preset-v11/-/preset-v11-12.0.1.tgz", "integrity": "sha512-9hSetMI7ECqbFiKICrNa4w70deTUfArtwXykPUvSHWOdzOlfa9ajglu7mNCntlvxycTiOAXkQGwjQCzzDEMRMg==", + "license": "MIT", "dependencies": { "@otplib/core": "^12.0.1", "@otplib/plugin-crypto": "^12.0.1", "@otplib/plugin-thirty-two": "^12.0.1" } }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "node_modules/@parcel/watcher": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.6.tgz", + "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==", "dev": true, + "hasInstallScript": true, + "license": "MIT", "optional": true, + "dependencies": { + "detect-libc": "^2.0.3", + "is-glob": "^4.0.3", + "node-addon-api": "^7.0.0", + "picomatch": "^4.0.3" + }, "engines": { - "node": ">=14" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.6", + "@parcel/watcher-darwin-arm64": "2.5.6", + "@parcel/watcher-darwin-x64": "2.5.6", + "@parcel/watcher-freebsd-x64": "2.5.6", + "@parcel/watcher-linux-arm-glibc": "2.5.6", + "@parcel/watcher-linux-arm-musl": "2.5.6", + "@parcel/watcher-linux-arm64-glibc": "2.5.6", + "@parcel/watcher-linux-arm64-musl": "2.5.6", + "@parcel/watcher-linux-x64-glibc": "2.5.6", + "@parcel/watcher-linux-x64-musl": "2.5.6", + "@parcel/watcher-win32-arm64": "2.5.6", + "@parcel/watcher-win32-ia32": "2.5.6", + "@parcel/watcher-win32-x64": "2.5.6" } }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.18.0.tgz", - "integrity": "sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==", + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz", + "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz", + "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz", + "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz", + "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz", + "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==", "cpu": [ "arm" ], "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz", + "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==", + "cpu": [ + "arm" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz", + "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz", + "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz", + "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz", + "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz", + "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz", + "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz", + "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher/node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/@peculiar/asn1-cms": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-cms/-/asn1-cms-2.8.0.tgz", + "integrity": "sha512-NgekZOrSJFSBFLFoLfwePguAWAx7z1+f2TEsWFUMyiqqfntZ4+S/S5hzqME3q4pCA0iOsFKdwiQ35dwY24eVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "@peculiar/asn1-x509-attr": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-csr": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-csr/-/asn1-csr-2.8.0.tgz", + "integrity": "sha512-akbF8+uvleHs8sejNPQxwmVFuInAg6FMNHOwMILXfP518YfFJwdR3jr6oNUPOaEJfuEhn/vkNOCIT6ASUd4mbg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-ecc": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-ecc/-/asn1-ecc-2.8.0.tgz", + "integrity": "sha512-ohwlk+u9Rv2NOAY1c6MfHj45ATVF8R1DUN/WCgABiRtLi2ZftlZWZX7KvpAbU8v9xPcmoILfELeEABj/rn18AQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-pfx": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-pfx/-/asn1-pfx-2.8.0.tgz", + "integrity": "sha512-5yof1ytoB++RQtaFbqSUJ8pxDJtZT6vbVqZ8XoJ61ph7UjNVvfFwAilnCodqkNsAodpy13gDhoxZXw00pghnyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-cms": "^2.8.0", + "@peculiar/asn1-pkcs8": "^2.8.0", + "@peculiar/asn1-rsa": "^2.8.0", + "@peculiar/asn1-schema": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-pkcs8": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs8/-/asn1-pkcs8-2.8.0.tgz", + "integrity": "sha512-qAKXtLpBEw9LqhKpjw3ajZSXlBur+ipW+y2ivVBQAG6F6qRx94yO+1ZR4mvw+YaCfKSaOzLeYEzsPaBp4SJELA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-pkcs9": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-pkcs9/-/asn1-pkcs9-2.8.0.tgz", + "integrity": "sha512-b5nDWCnkV60+cQ141D6sVVwK9nz64R5n3zSVnklGd+ECdkW2Ol3U1a6yYFlalpSOaD557yuJB64A+q42jG7lUQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-cms": "^2.8.0", + "@peculiar/asn1-pfx": "^2.8.0", + "@peculiar/asn1-pkcs8": "^2.8.0", + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "@peculiar/asn1-x509-attr": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-rsa": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-rsa/-/asn1-rsa-2.8.0.tgz", + "integrity": "sha512-zHEUlCqB2mk7x2lxDwHHJy7hWZOPdGHVlsmITWKB5/PbQo61atbu9PJ/0r9dQNMwFzbKPXZ8uK8/91eUhRznSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-schema": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.8.0.tgz", + "integrity": "sha512-7YT0U/ze0tF2QOBbE15gKZwy5tvgGyLRiRHLzhlbOpf7BT032oBSd0haZqXn5W6l26WLlu3dyxzjM+2638/z2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/utils": "^2.0.2", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-x509": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509/-/asn1-x509-2.8.0.tgz", + "integrity": "sha512-N0CMuhWUzsWEVq6F1q9X6+VKUnWzSW+cSVg+aPaGGwDdbFoFWTYgin5MHwXgpWd6y9COMBxnfy/Qc+Xc7F0Zwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/utils": "^2.0.2", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/asn1-x509-attr": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/@peculiar/asn1-x509-attr/-/asn1-x509-attr-2.8.0.tgz", + "integrity": "sha512-tHjkfS/qhMnmrlB2J9NhflQlQ7In3khO3CfmVrriOlpTeErY9ZIKOso1hQ5JQiyrJ7ShvqVPk7E5fQmbclkSKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-schema": "^2.8.0", + "@peculiar/asn1-x509": "^2.8.0", + "asn1js": "^3.0.10", + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@peculiar/utils/-/utils-2.0.3.tgz", + "integrity": "sha512-+oL3HPFRIZ1St2K50lWCXiioIgSoxzz7R1J3uF6neO2yl1sgmpgY6XXJH4BdpoDkMWznQTeYF6oWNDZLCdQ4eQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^2.8.1" + } + }, + "node_modules/@peculiar/x509": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/@peculiar/x509/-/x509-1.14.3.tgz", + "integrity": "sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@peculiar/asn1-cms": "^2.6.0", + "@peculiar/asn1-csr": "^2.6.0", + "@peculiar/asn1-ecc": "^2.6.0", + "@peculiar/asn1-pkcs9": "^2.6.0", + "@peculiar/asn1-rsa": "^2.6.0", + "@peculiar/asn1-schema": "^2.6.0", + "@peculiar/asn1-x509": "^2.6.0", + "pvtsutils": "^1.3.6", + "reflect-metadata": "^0.2.2", + "tslib": "^2.8.1", + "tsyringe": "^4.10.0" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz", + "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", "optional": true, "os": [ "android" ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.18.0.tgz", - "integrity": "sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz", + "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "android" ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.18.0.tgz", - "integrity": "sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz", + "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.18.0.tgz", - "integrity": "sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz", + "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "darwin" ] }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz", + "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz", + "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.18.0.tgz", - "integrity": "sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz", + "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==", "cpu": [ "arm" ], "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.18.0.tgz", - "integrity": "sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz", + "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==", "cpu": [ "arm" ], "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.18.0.tgz", - "integrity": "sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz", + "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==", "cpu": [ "arm64" ], "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.18.0.tgz", - "integrity": "sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz", + "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==", "cpu": [ "arm64" ], "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", "optional": true, "os": [ "linux" ] }, - "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.18.0.tgz", - "integrity": "sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==", + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz", + "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==", + "cpu": [ + "loong64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz", + "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz", + "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==", "cpu": [ "ppc64" ], "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz", + "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.18.0.tgz", - "integrity": "sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz", + "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==", "cpu": [ "riscv64" ], "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz", + "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.18.0.tgz", - "integrity": "sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz", + "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==", "cpu": [ "s390x" ], "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.18.0.tgz", - "integrity": "sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz", + "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==", "cpu": [ "x64" ], "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", "optional": true, "os": [ "linux" ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.18.0.tgz", - "integrity": "sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz", + "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==", "cpu": [ "x64" ], "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", "optional": true, "os": [ "linux" ] }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.18.0.tgz", - "integrity": "sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==", + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz", + "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz", + "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==", "cpu": [ "arm64" ], "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz", + "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.18.0.tgz", - "integrity": "sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz", + "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==", "cpu": [ "ia32" ], "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz", + "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.18.0.tgz", - "integrity": "sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz", + "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==", "cpu": [ "x64" ], "dev": true, + "license": "MIT", "optional": true, "os": [ "win32" ] }, "node_modules/@schematics/angular": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-18.0.5.tgz", - "integrity": "sha512-dV50GIEGl6S5wE6xtAhmHWdLhsOlnNUpAx/v3BPR2AOr90zJvIM03TqAQTzAlnPatxK2WLelRgqVMbPfAVvLAg==", + "version": "20.3.32", + "resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-20.3.32.tgz", + "integrity": "sha512-asporFGNP/U4p/A6jHqRmC8zGBxsSbjA/17I0p1tIW4HLbDTwJ0Z1gTSGpkHGRGTeowPZZSCj7s0IWVoaBCjnA==", "dev": true, + "license": "MIT", "dependencies": { - "@angular-devkit/core": "18.0.5", - "@angular-devkit/schematics": "18.0.5", - "jsonc-parser": "3.2.1" + "@angular-devkit/core": "20.3.32", + "@angular-devkit/schematics": "20.3.32", + "jsonc-parser": "3.3.1" }, "engines": { - "node": "^18.19.1 || ^20.11.1 || >=22.0.0", + "node": "^20.19.0 || ^22.12.0 || >=24.0.0", "npm": "^6.11.0 || ^7.5.6 || >=8.0.0", "yarn": ">= 1.13.0" } }, "node_modules/@sigstore/bundle": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-2.3.2.tgz", - "integrity": "sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-4.0.0.tgz", + "integrity": "sha512-NwCl5Y0V6Di0NexvkTqdoVfmjTaQwoLM236r89KEojGmq/jMls8S+zb7yOwAPdXvbwfKDlP+lmXgAL4vKSQT+A==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@sigstore/protobuf-specs": "^0.3.2" + "@sigstore/protobuf-specs": "^0.5.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@sigstore/core": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@sigstore/core/-/core-1.1.0.tgz", - "integrity": "sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@sigstore/core/-/core-3.2.1.tgz", + "integrity": "sha512-qRsxPnCrbC/puegGxKuynfnxgLiHqWStrSjxkoB4YKqq3Z3s4cyZyj42ZdWFAEblNP65C+rBH8EuREHIXoi83g==", "dev": true, + "license": "Apache-2.0", "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@sigstore/protobuf-specs": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.3.2.tgz", - "integrity": "sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==", + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.5.1.tgz", + "integrity": "sha512-/ScWUhhoFasJsSRGTVBwId1loQjjnjAfE4djL6ZhrXRpNCmPTnUKF5Jokd58ILseOMjzET3UrMOtJPS9sYeI0g==", "dev": true, + "license": "Apache-2.0", "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^18.17.0 || >=20.5.0" } }, "node_modules/@sigstore/sign": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-2.3.2.tgz", - "integrity": "sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-4.1.1.tgz", + "integrity": "sha512-Hf4xglukg0XXQ2RiD5vSoLjdPe8OBUPA8XeVjUObheuDcWdYWrnH/BNmxZCzkAy68MzmNCxXLeurJvs6hcP2OQ==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^2.3.2", - "@sigstore/core": "^1.0.0", - "@sigstore/protobuf-specs": "^0.3.2", - "make-fetch-happen": "^13.0.1", - "proc-log": "^4.2.0", - "promise-retry": "^2.0.1" + "@gar/promise-retry": "^1.0.2", + "@sigstore/bundle": "^4.0.0", + "@sigstore/core": "^3.2.0", + "@sigstore/protobuf-specs": "^0.5.0", + "make-fetch-happen": "^15.0.4", + "proc-log": "^6.1.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/@sigstore/sign/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@sigstore/tuf": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-2.3.4.tgz", - "integrity": "sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-4.0.2.tgz", + "integrity": "sha512-TCAzTy0xzdP79EnxSjq9KQ3eaR7+FmudLC6eRKknVKZbV7ZNlGLClAAQb/HMNJ5n2OBNk2GT1tEmU0xuPr+SLQ==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@sigstore/protobuf-specs": "^0.3.2", - "tuf-js": "^2.2.1" + "@sigstore/protobuf-specs": "^0.5.0", + "tuf-js": "^4.1.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/@sigstore/verify": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@sigstore/verify/-/verify-1.2.1.tgz", - "integrity": "sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@sigstore/verify/-/verify-3.1.1.tgz", + "integrity": "sha512-qv7+G3J2cc6wwFj3yKvXOamzqhMwSk1ogPGmhpS8iXllcPrJaIIBA+4HbttlHVu1pqWTdmaCH/WE7UOC51kdoA==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^2.3.2", - "@sigstore/core": "^1.1.0", - "@sigstore/protobuf-specs": "^0.3.2" + "@sigstore/bundle": "^4.0.0", + "@sigstore/core": "^3.2.1", + "@sigstore/protobuf-specs": "^0.5.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, - "node_modules/@sinclair/typebox": { - "version": "0.27.8", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", - "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", - "dev": true - }, "node_modules/@socket.io/component-emitter": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz", - "integrity": "sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==" + "integrity": "sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==", + "license": "MIT" + }, + "node_modules/@swc/helpers": { + "version": "0.5.23", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.23.tgz", + "integrity": "sha512-5lSsMOTXURePglDfvuAQUqkGek9Hg2kksOYay2m0+XR++b2NWYL/4sWyuvVBIs8oKnJaxkdi9whaL/sqN13afw==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" + } }, "node_modules/@swimlane/ngx-charts": { - "version": "20.5.0", - "resolved": "https://registry.npmjs.org/@swimlane/ngx-charts/-/ngx-charts-20.5.0.tgz", - "integrity": "sha512-PNBIHdu/R3ceD7jnw1uCBVOj4k3T6IxfdW6xsDsglGkZyoWMEEq4tLoEurjLEKzmDtRv9c35kVNOXy0lkOuXeA==", + "version": "23.1.0", + "resolved": "https://registry.npmjs.org/@swimlane/ngx-charts/-/ngx-charts-23.1.0.tgz", + "integrity": "sha512-f2lBc8M9164PtylLDLd98XqO6owSw4LQMT9L/vQovT3nIjMO7t5l9JnytyOB8s5KImo3p+7x+1/HYxBZ5iOVWA==", + "license": "MIT", "dependencies": { - "d3-array": "^3.1.1", + "d3-array": "^3.2.0", "d3-brush": "^3.0.0", "d3-color": "^3.1.0", "d3-ease": "^3.0.1", "d3-format": "^3.1.0", - "d3-hierarchy": "^3.1.0", + "d3-hierarchy": "^3.1.2", "d3-interpolate": "^3.0.1", "d3-sankey": "^0.12.3", "d3-scale": "^4.0.2", "d3-selection": "^3.0.0", "d3-shape": "^3.2.0", - "d3-time-format": "^3.0.0", + "d3-time-format": "^4.1.0", "d3-transition": "^3.0.1", - "rfdc": "^1.3.0", - "tslib": "^2.0.0" + "gradient-path": "^2.3.0", + "tslib": "^2.3.1" }, "peerDependencies": { - "@angular/animations": ">=12.0.0", - "@angular/cdk": ">=12.0.0", - "@angular/common": ">=12.0.0", - "@angular/core": ">=12.0.0", - "@angular/forms": ">=12.0.0", - "@angular/platform-browser": ">=12.0.0", - "@angular/platform-browser-dynamic": ">=12.0.0", - "rxjs": "^6.5.3 || ^7.4.0" + "@angular/animations": "18.x || 19.x || 20.x", + "@angular/cdk": "18.x || 19.x || 20.x", + "@angular/common": "18.x || 19.x || 20.x", + "@angular/core": "18.x || 19.x || 20.x", + "@angular/forms": "18.x || 19.x || 20.x", + "@angular/platform-browser": "18.x || 19.x || 20.x", + "@angular/platform-browser-dynamic": "18.x || 19.x || 20.x", + "rxjs": "7.x" } }, "node_modules/@tsconfig/node10": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", - "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", - "dev": true + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.12.tgz", + "integrity": "sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==", + "dev": true, + "license": "MIT" }, "node_modules/@tsconfig/node12": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@tsconfig/node14": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@tsconfig/node16": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@tufjs/canonical-json": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz", "integrity": "sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==", "dev": true, + "license": "MIT", "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/@tufjs/models": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-2.0.1.tgz", - "integrity": "sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-4.1.0.tgz", + "integrity": "sha512-Y8cK9aggNRsqJVaKUlEYs4s7CvQ1b1ta2DVPyAimb0I2qhzjNk+A+mxvll/klL0RlfuIUei8BF7YWiua4kQqww==", "dev": true, + "license": "MIT", "dependencies": { "@tufjs/canonical-json": "2.0.0", - "minimatch": "^9.0.4" + "minimatch": "^10.1.1" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/@tufjs/models/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/@tufjs/models/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz", + "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==", "dev": true, + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/@tufjs/models/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^5.0.5" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/@types/body-parser": { - "version": "1.19.5", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", - "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "version": "1.19.6", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.6.tgz", + "integrity": "sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==", "dev": true, + "license": "MIT", "dependencies": { "@types/connect": "*", "@types/node": "*" @@ -5673,6 +6650,7 @@ "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*" } @@ -5682,6 +6660,7 @@ "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*" } @@ -5691,31 +6670,28 @@ "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", "dev": true, + "license": "MIT", "dependencies": { "@types/express-serve-static-core": "*", "@types/node": "*" } }, - "node_modules/@types/cookie": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", - "integrity": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==", - "dev": true - }, "node_modules/@types/cors": { - "version": "2.8.17", - "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.17.tgz", - "integrity": "sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==", + "version": "2.8.19", + "resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.19.tgz", + "integrity": "sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/eslint": { - "version": "8.56.10", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.10.tgz", - "integrity": "sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==", + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", + "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", "dev": true, + "license": "MIT", "dependencies": { "@types/estree": "*", "@types/json-schema": "*" @@ -5726,34 +6702,45 @@ "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "dev": true, + "license": "MIT", "dependencies": { "@types/eslint": "*", "@types/estree": "*" } }, + "node_modules/@types/esrecurse": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/@types/esrecurse/-/esrecurse-4.3.1.tgz", + "integrity": "sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==", + "dev": true, + "license": "MIT" + }, "node_modules/@types/estree": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", - "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", - "dev": true + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz", + "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==", + "dev": true, + "license": "MIT" }, "node_modules/@types/express": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", - "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", + "version": "4.17.25", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.25.tgz", + "integrity": "sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw==", "dev": true, + "license": "MIT", "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", - "@types/serve-static": "*" + "@types/serve-static": "^1" } }, "node_modules/@types/express-serve-static-core": { - "version": "4.19.5", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.5.tgz", - "integrity": "sha512-y6W03tvrACO72aijJ5uF02FRq5cgDR9lUxddQ8vyF+GvmjJQqbzDcJngEjURc+ZsG31VI3hODNZJ2URj86pzmg==", + "version": "4.19.9", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.9.tgz", + "integrity": "sha512-QP2ESEe/ImWY0HDwNAnK9PvEffUyhLTnWkk7KXzHfyeWAnlrDe1fN77bXl6ia8KT3wPlmA7t9/VPRpnf4Ex9sg==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*", "@types/qs": "*", @@ -5762,93 +6749,81 @@ } }, "node_modules/@types/http-errors": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", - "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", - "dev": true + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.5.tgz", + "integrity": "sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==", + "dev": true, + "license": "MIT" }, "node_modules/@types/http-proxy": { - "version": "1.17.14", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", - "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", + "version": "1.17.17", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.17.tgz", + "integrity": "sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/jasmine": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-5.1.4.tgz", - "integrity": "sha512-px7OMFO/ncXxixDe1zR13V1iycqWae0MxTaw62RpFlksUi5QuNWgQJFkTQjIOvrmutJbI7Fp2Y2N1F6D2R4G6w==", - "dev": true + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-5.1.15.tgz", + "integrity": "sha512-ZAC8KjmV2MJxbNTrwXFN+HKeajpXQZp6KpPiR6Aa4XvaEnjP6qh23lL/Rqb7AYzlp3h/rcwDrQ7Gg7q28cQTQg==", + "dev": true, + "license": "MIT" }, "node_modules/@types/json-schema": { "version": "7.0.15", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/mime": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/node": { - "version": "20.14.8", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.8.tgz", - "integrity": "sha512-DO+2/jZinXfROG7j7WKFn/3C6nFwxy2lLpgLjEXJz+0XKphZlTLJ14mo8Vfg8X5BWN6XjyESXq+LcYdT7tR3bA==", + "version": "20.19.30", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.30.tgz", + "integrity": "sha512-WJtwWJu7UdlvzEAUm484QNg5eAoq5QR08KDNx7g45Usrs2NtOPiX8ugDqmKdXkyL03rBqU5dYNYVQetEpBHq2g==", "dev": true, + "license": "MIT", "dependencies": { - "undici-types": "~5.26.4" + "undici-types": "~6.21.0" } }, - "node_modules/@types/node-forge": { - "version": "1.3.11", - "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", - "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/q": { - "version": "0.0.32", - "resolved": "https://registry.npmjs.org/@types/q/-/q-0.0.32.tgz", - "integrity": "sha512-qYi3YV9inU/REEfxwVcGZzbS3KG/Xs90lv0Pr+lDtuVjBPGd1A+eciXzVSaRvLify132BfcvhvEjeVahrUl0Ug==", - "dev": true - }, "node_modules/@types/qs": { - "version": "6.9.15", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", - "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==", - "dev": true + "version": "6.15.1", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.15.1.tgz", + "integrity": "sha512-GZHUBZR9hckSUhrxmp1nG6NwdpM9fCunJwyThLW1X3AyHgd9IlHb6VANpQQqDr2o/qQp6McZ3y/IA2rVzKzSbw==", + "dev": true, + "license": "MIT" }, "node_modules/@types/range-parser": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/retry": { "version": "0.12.2", "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz", "integrity": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==", - "dev": true - }, - "node_modules/@types/selenium-webdriver": { - "version": "3.0.26", - "resolved": "https://registry.npmjs.org/@types/selenium-webdriver/-/selenium-webdriver-3.0.26.tgz", - "integrity": "sha512-dyIGFKXfUFiwkMfNGn1+F6b80ZjR3uSYv1j6xVJSDlft5waZ2cwkHW4e7zNzvq7hiEackcgvBpmnXZrI1GltPg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/@types/send": { - "version": "0.17.4", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", - "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz", + "integrity": "sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==", "dev": true, + "license": "MIT", "dependencies": { - "@types/mime": "^1", "@types/node": "*" } }, @@ -5857,19 +6832,32 @@ "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", "dev": true, + "license": "MIT", "dependencies": { "@types/express": "*" } }, "node_modules/@types/serve-static": { - "version": "1.15.7", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", - "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", + "version": "1.15.10", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.10.tgz", + "integrity": "sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==", "dev": true, + "license": "MIT", "dependencies": { "@types/http-errors": "*", "@types/node": "*", - "@types/send": "*" + "@types/send": "<1" + } + }, + "node_modules/@types/serve-static/node_modules/@types/send": { + "version": "0.17.6", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.6.tgz", + "integrity": "sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" } }, "node_modules/@types/sockjs": { @@ -5877,131 +6865,171 @@ "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*" } }, + "node_modules/@types/tinycolor2": { + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/@types/tinycolor2/-/tinycolor2-1.4.6.tgz", + "integrity": "sha512-iEN8J0BoMnsWBqjVbWH/c0G0Hh7O21lpR2/+PrvAVgWdzL7eexIFm4JN/Wn10PTcmNdtS6U67r499mlWMXOxNw==", + "license": "MIT" + }, "node_modules/@types/ws": { - "version": "8.5.10", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", - "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", + "version": "8.18.1", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz", + "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.14.1.tgz", - "integrity": "sha512-aAJd6bIf2vvQRjUG3ZkNXkmBpN+J7Wd0mfQiiVCJMu9Z5GcZZdcc0j8XwN/BM97Fl7e3SkTXODSk4VehUv7CGw==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.65.0.tgz", + "integrity": "sha512-IEgob78X12rHpUmtcwFsXhZdVGJtwTVP8FiCLZkR6GlYVrl2PcuB+KhCE5BlVC/eQpQnu8WXRtkHZuPar+gCRA==", "dev": true, + "license": "MIT", "dependencies": { - "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/type-utils": "7.14.1", - "@typescript-eslint/utils": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", - "graphemer": "^1.4.0", - "ignore": "^5.3.1", + "@eslint-community/regexpp": "^4.12.2", + "@typescript-eslint/scope-manager": "8.65.0", + "@typescript-eslint/type-utils": "8.65.0", + "@typescript-eslint/utils": "8.65.0", + "@typescript-eslint/visitor-keys": "8.65.0", + "ignore": "^7.0.5", "natural-compare": "^1.4.0", - "ts-api-utils": "^1.3.0" + "ts-api-utils": "^2.5.0" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^7.0.0", - "eslint": "^8.56.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "@typescript-eslint/parser": "^8.65.0", + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/parser": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.14.1.tgz", - "integrity": "sha512-8lKUOebNLcR0D7RvlcloOacTOWzOqemWEWkKSVpMZVF/XVcwjPR+3MD08QzbW9TCGJ+DwIc6zUSGZ9vd8cO1IA==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.65.0.tgz", + "integrity": "sha512-CZ4nMxWwgu1HEEFNkeaCptra9QCtkmKdgf3sWh1rl1trIhmxLilgTV4cwcbQ4wemnT4sWQN8CaKOmdYx+g2gMA==", "dev": true, + "license": "MIT", "dependencies": { - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/typescript-estree": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", - "debug": "^4.3.4" + "@typescript-eslint/scope-manager": "8.65.0", + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/typescript-estree": "8.65.0", + "@typescript-eslint/visitor-keys": "8.65.0", + "debug": "^4.4.3" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^8.56.0" + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.65.0.tgz", + "integrity": "sha512-SxnPhbTsGahizDgbu7oqFH/xVtzIqMd/s+WtnSxNxJZJpLbdT5IPdzg8EZxO3+PoKahXmwJLeNQOpKJb3/bi7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.65.0", + "@typescript-eslint/types": "^8.65.0", + "debug": "^4.4.3" }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.14.1.tgz", - "integrity": "sha512-gPrFSsoYcsffYXTOZ+hT7fyJr95rdVe4kGVX1ps/dJ+DfmlnjFN/GcMxXcVkeHDKqsq6uAcVaQaIi3cFffmAbA==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.65.0.tgz", + "integrity": "sha512-Esbl8OSYiVxBokYgWPf7VVWg/BE798wXhimnn9ML9Pt5qoDf8bfQlgjlKXR/k98+AcNzlLKYrpCcrcuZ9DZLgg==", "dev": true, + "license": "MIT", "dependencies": { - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1" + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/visitor-keys": "8.65.0" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@typescript-eslint/type-utils": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.14.1.tgz", - "integrity": "sha512-/MzmgNd3nnbDbOi3LfasXWWe292+iuo+umJ0bCCMCPc1jLO/z2BQmWUUUXvXLbrQey/JgzdF/OV+I5bzEGwJkQ==", + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.65.0.tgz", + "integrity": "sha512-j6GzGqCiRdA7Qhur2VVmKZAkBLfnHFQfx4TaJGL9RMveZqCo48jSHHO0DTgizEnGhtWnqmbtCUSrqSkdiY/0Hg==", "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "7.14.1", - "@typescript-eslint/utils": "7.14.1", - "debug": "^4.3.4", - "ts-api-utils": "^1.3.0" - }, + "license": "MIT", "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^8.56.0" + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.65.0.tgz", + "integrity": "sha512-YjaZ7PRI5qY7ax2L3PbvX0rRyGtipAReCWs0mhhDBHjH/vl0g0BonaGXrKdKpMbIIsMIwDgbk/xzkBTyAltS5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/typescript-estree": "8.65.0", + "@typescript-eslint/utils": "8.65.0", + "debug": "^4.4.3", + "ts-api-utils": "^2.5.0" }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/types": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.14.1.tgz", - "integrity": "sha512-mL7zNEOQybo5R3AavY+Am7KLv8BorIv7HCYS5rKoNZKQD9tsfGUpO4KdAn3sSUvTiS4PQkr2+K0KJbxj8H9NDg==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.65.0.tgz", + "integrity": "sha512-JSSwWNy+H0E/01jJEM+hrX6N0OFDzFzeIhHFSAS01tlVaevpG8cFyYRPhS5yjGOvBUx3sqQHVMjCL1CAZZMxBg==", "dev": true, + "license": "MIT", "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", @@ -6009,251 +7037,328 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.14.1.tgz", - "integrity": "sha512-k5d0VuxViE2ulIO6FbxxSZaxqDVUyMbXcidC8rHvii0I56XZPv8cq+EhMns+d/EVIL41sMXqRbK3D10Oza1bbA==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.65.0.tgz", + "integrity": "sha512-JboAE2swaYt4tb1fHhHTABE2K+OLy09XfcTbhnk4Pw96f9dd2e9iYsJ28gBggHlo5z5x1rkyWvcPoTuNTd4oGg==", "dev": true, + "license": "MIT", "dependencies": { - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/visitor-keys": "7.14.1", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", - "ts-api-utils": "^1.3.0" + "@typescript-eslint/project-service": "8.65.0", + "@typescript-eslint/tsconfig-utils": "8.65.0", + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/visitor-keys": "8.65.0", + "debug": "^4.4.3", + "minimatch": "^10.2.2", + "semver": "^7.7.3", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.5.0" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.8.tgz", + "integrity": "sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==", "dev": true, + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "20 || >=22" } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "10.2.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.6.tgz", + "integrity": "sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^5.0.8" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@typescript-eslint/utils": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.14.1.tgz", - "integrity": "sha512-CMmVVELns3nak3cpJhZosDkm63n+DwBlDX8g0k4QUa9BMnF+lH2lr3d130M1Zt1xxmB3LLk3NV7KQCq86ZBBhQ==", + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.8.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz", + "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==", "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "7.14.1", - "@typescript-eslint/types": "7.14.1", - "@typescript-eslint/typescript-estree": "7.14.1" + "license": "ISC", + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/tinyglobby": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz", + "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.65.0.tgz", + "integrity": "sha512-gXiwIHsYreboxeJucHKPvgwl7dXt50mF8s1/c00cP/WoVTyWKFdtfhRWwZiXYFU5H2O8vVoSLNrexFZjYS/SGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.9.1", + "@typescript-eslint/scope-manager": "8.65.0", + "@typescript-eslint/types": "8.65.0", + "@typescript-eslint/typescript-estree": "8.65.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^8.56.0" + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "7.14.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.14.1.tgz", - "integrity": "sha512-Crb+F75U1JAEtBeQGxSKwI60hZmmzaqA3z9sYsVm8X7W5cwLEm5bRe0/uXS6+MR/y8CVpKSR/ontIAIEPFcEkA==", + "version": "8.65.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.65.0.tgz", + "integrity": "sha512-8C71BQkGjiMmXtop7pHVJu1l2NNShFdkCyD6a2ezzs5vU/L3LRtb69EtcteFwz0mYMPzIgOw0n6OV4VBUWZd7A==", "dev": true, + "license": "MIT", "dependencies": { - "@typescript-eslint/types": "7.14.1", - "eslint-visitor-keys": "^3.4.3" + "@typescript-eslint/types": "8.65.0", + "eslint-visitor-keys": "^5.0.0" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@vitejs/plugin-basic-ssl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-1.1.0.tgz", - "integrity": "sha512-wO4Dk/rm8u7RNhOf95ZzcEmC9rYOncYgvq4z3duaJrCgjN8BxAnDVyndanfcJZ0O6XZzHz6Q0hTimxTg8Y9g/A==", + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", "dev": true, + "license": "Apache-2.0", "engines": { - "node": ">=14.6.0" + "node": "^20.19.0 || ^22.13.0 || >=24" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@vitejs/plugin-basic-ssl": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-basic-ssl/-/plugin-basic-ssl-2.1.0.tgz", + "integrity": "sha512-dOxxrhgyDIEUADhb/8OlV9JIqYLgos03YorAueTIeOUskLJSEsfwCByjbu98ctXitUN3znXKp0bYD/WHSudCeA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" }, "peerDependencies": { - "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" + "vite": "^6.0.0 || ^7.0.0" } }, "node_modules/@webassemblyjs/ast": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", - "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "dev": true, + "license": "MIT", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", - "dev": true + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "dev": true, + "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", - "dev": true + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "dev": true, + "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", - "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", - "dev": true + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "dev": true, + "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "dev": true, + "license": "MIT", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", - "dev": true + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "dev": true, + "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", - "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "dev": true, + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.12.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "dev": true, + "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "dev": true, + "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", - "dev": true + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "dev": true, + "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", - "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "dev": true, + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-opt": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1", - "@webassemblyjs/wast-printer": "1.12.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", - "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "dev": true, + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", - "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "dev": true, + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-buffer": "1.12.1", - "@webassemblyjs/wasm-gen": "1.12.1", - "@webassemblyjs/wasm-parser": "1.12.1" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", - "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "dev": true, + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.12.1", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", - "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "dev": true, + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, @@ -6261,99 +7366,52 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true + "dev": true, + "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true + "dev": true, + "license": "Apache-2.0" }, "node_modules/@yarnpkg/lockfile": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", - "dev": true - }, - "node_modules/@yarnpkg/parsers": { - "version": "3.0.0-rc.46", - "resolved": "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.46.tgz", - "integrity": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==", "dev": true, - "dependencies": { - "js-yaml": "^3.10.0", - "tslib": "^2.4.0" - }, - "engines": { - "node": ">=14.15.0" - } - }, - "node_modules/@yarnpkg/parsers/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/@yarnpkg/parsers/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/@yarnpkg/parsers/node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/@zkochan/js-yaml": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/@zkochan/js-yaml/-/js-yaml-0.0.7.tgz", - "integrity": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } + "license": "BSD-2-Clause" }, "node_modules/abbrev": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", - "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-4.0.0.tgz", + "integrity": "sha512-a1wflyaL0tHtJSmLSOVybYhy22vRih4eduhhrkcjgrWGnRfrZtovJ2FRjxuTtkkj47O/baf0R86QU5OuYpz8fA==", "dev": true, + "license": "ISC", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz", + "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==", + "license": "MIT", "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "mime-types": "^3.0.0", + "negotiator": "^1.0.0" }, "engines": { "node": ">= 0.6" } }, "node_modules/acorn": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.0.tgz", - "integrity": "sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw==", + "version": "8.17.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.17.0.tgz", + "integrity": "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==", "dev": true, + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -6361,13 +7419,17 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "node_modules/acorn-import-phases": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz", + "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==", "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.13.0" + }, "peerDependencies": { - "acorn": "^8" + "acorn": "^8.14.0" } }, "node_modules/acorn-jsx": { @@ -6375,15 +7437,17 @@ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, + "license": "MIT", "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/acorn-walk": { - "version": "8.3.3", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.3.tgz", - "integrity": "sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==", + "version": "8.3.5", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.5.tgz", + "integrity": "sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==", "dev": true, + "license": "MIT", "dependencies": { "acorn": "^8.11.0" }, @@ -6396,6 +7460,7 @@ "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", "dev": true, + "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", "regex-parser": "^2.2.11" @@ -6409,6 +7474,7 @@ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, + "license": "MIT", "dependencies": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", @@ -6418,50 +7484,27 @@ "node": ">=8.9.0" } }, - "node_modules/adm-zip": { - "version": "0.5.14", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.14.tgz", - "integrity": "sha512-DnyqqifT4Jrcvb8USYjp6FHtBpEIz1mnXu6pTRHZ0RL69LbQYiO+0lDFg5+OKA7U29oWSs3a/i8fhn8ZcceIWg==", - "dev": true, - "engines": { - "node": ">=12.0" - } - }, "node_modules/agent-base": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", - "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", + "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", "dev": true, - "dependencies": { - "debug": "^4.3.4" - }, + "license": "MIT", "engines": { "node": ">= 14" } }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/ajv": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.13.0.tgz", - "integrity": "sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz", + "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" + "require-from-string": "^2.0.2" }, "funding": { "type": "github", @@ -6473,6 +7516,7 @@ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz", "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==", "dev": true, + "license": "MIT", "dependencies": { "ajv": "^8.0.0" }, @@ -6490,6 +7534,7 @@ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" }, @@ -6497,10 +7542,37 @@ "ajv": "^8.8.2" } }, + "node_modules/algoliasearch": { + "version": "5.35.0", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.35.0.tgz", + "integrity": "sha512-Y+moNhsqgLmvJdgTsO4GZNgsaDWv8AOGAaPeIeHKlDn/XunoAqYbA+XNpBd1dW8GOXAUDyxC9Rxc7AV4kpFcIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/abtesting": "1.1.0", + "@algolia/client-abtesting": "5.35.0", + "@algolia/client-analytics": "5.35.0", + "@algolia/client-common": "5.35.0", + "@algolia/client-insights": "5.35.0", + "@algolia/client-personalization": "5.35.0", + "@algolia/client-query-suggestions": "5.35.0", + "@algolia/client-search": "5.35.0", + "@algolia/ingestion": "1.35.0", + "@algolia/monitoring": "1.35.0", + "@algolia/recommend": "5.35.0", + "@algolia/requester-browser-xhr": "5.35.0", + "@algolia/requester-fetch": "5.35.0", + "@algolia/requester-node-http": "5.35.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, "node_modules/angular-user-idle": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/angular-user-idle/-/angular-user-idle-4.0.0.tgz", "integrity": "sha512-W3543QftsrlPWDrxolbILFTHCtw0mOQI6NaLk2qfjWkTpkRTxECdi165iMNAj5ZomnCqJVXlft9azF30OsMHLg==", + "license": "MIT", "dependencies": { "tslib": "^2.3.0" }, @@ -6515,20 +7587,22 @@ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.3.0.tgz", + "integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==", "dev": true, + "license": "MIT", "dependencies": { - "type-fest": "^0.21.3" + "environment": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -6542,6 +7616,7 @@ "engines": [ "node >= 0.8.0" ], + "license": "Apache-2.0", "bin": { "ansi-html": "bin/ansi-html" } @@ -6550,20 +7625,24 @@ "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", "dependencies": { - "color-convert": "^1.9.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/anymatch": { @@ -6571,6 +7650,7 @@ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, + "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -6580,10 +7660,11 @@ } }, "node_modules/anymatch/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", "dev": true, + "license": "MIT", "engines": { "node": ">=8.6" }, @@ -6595,101 +7676,59 @@ "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "dev": true, + "license": "Python-2.0" }, "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", + "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", "dev": true, - "dependencies": { - "dequal": "^2.0.3" + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" } }, "node_modules/array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "dev": true, - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "node_modules/asn1js": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/asn1js/-/asn1js-3.0.10.tgz", + "integrity": "sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg==", "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "license": "BSD-3-Clause", "dependencies": { - "safer-buffer": "~2.1.0" - } - }, - "node_modules/asn1.js": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", - "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", - "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "pvtsutils": "^1.3.6", + "pvutils": "^1.1.5", + "tslib": "^2.8.1" + }, "engines": { - "node": ">=0.8" + "node": ">=12.0.0" } }, - "node_modules/async": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", - "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", - "dev": true - }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" }, "node_modules/atob": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "license": "(MIT OR Apache-2.0)", "bin": { "atob": "bin/atob.js" }, @@ -6698,9 +7737,9 @@ } }, "node_modules/autoprefixer": { - "version": "10.4.19", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", - "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", + "version": "10.4.21", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz", + "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==", "dev": true, "funding": [ { @@ -6716,12 +7755,13 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "browserslist": "^4.23.0", - "caniuse-lite": "^1.0.30001599", + "browserslist": "^4.24.4", + "caniuse-lite": "^1.0.30001702", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", + "picocolors": "^1.1.1", "postcss-value-parser": "^4.2.0" }, "bin": { @@ -6734,64 +7774,79 @@ "postcss": "^8.1.0" } }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", - "engines": { - "node": "*" + "node_modules/axios": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.18.1.tgz", + "integrity": "sha512-3nTvFlvpn9Zu/RkHUqtc7/+al4UpRW5az71ap5zccp6e8RAYEzhMTecX8Dz1wWDYrPpUoB1HAQEGEAEvUr7S9g==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.16.0", + "form-data": "^4.0.5", + "https-proxy-agent": "^5.0.1", + "proxy-from-env": "^2.1.0" } }, - "node_modules/aws4": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.13.0.tgz", - "integrity": "sha512-3AungXC4I8kKsS9PuS4JH2nc+0bVY/mjgrephHTIi8fpEeGsTHBUJeosp0Wc1myYMElmD0B3Oc4XL/HVJ4PV2g==" - }, - "node_modules/axios": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.2.tgz", - "integrity": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==", - "dev": true, + "node_modules/axios/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "license": "MIT", "dependencies": { - "follow-redirects": "^1.15.6", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/axios/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "license": "MIT", + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" } }, "node_modules/axobject-query": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.0.0.tgz", - "integrity": "sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", + "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", "dev": true, - "dependencies": { - "dequal": "^2.0.3" + "license": "Apache-2.0", + "engines": { + "node": ">= 0.4" } }, "node_modules/babel-loader": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", - "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-10.0.0.tgz", + "integrity": "sha512-z8jt+EdS61AMw22nSfoNJAZ0vrtmhPRVi6ghL3rCeRZI8cdNYFiV5xeV3HbE7rlZZNmGH8BVccwWt8/ED0QOHA==", "dev": true, + "license": "MIT", "dependencies": { - "find-cache-dir": "^4.0.0", - "schema-utils": "^4.0.0" + "find-up": "^5.0.0" }, "engines": { - "node": ">= 14.15.0" + "node": "^18.20.0 || ^20.10.0 || >=22.0.0" }, "peerDependencies": { "@babel/core": "^7.12.0", - "webpack": ">=5" + "webpack": ">=5.61.0" } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.11", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz", - "integrity": "sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==", + "version": "0.4.17", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.17.tgz", + "integrity": "sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.2", + "@babel/compat-data": "^7.28.6", + "@babel/helper-define-polyfill-provider": "^0.6.8", "semver": "^6.3.1" }, "peerDependencies": { @@ -6803,30 +7858,33 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", - "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz", + "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.1", - "core-js-compat": "^3.36.1" + "@babel/helper-define-polyfill-provider": "^0.6.5", + "core-js-compat": "^3.43.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz", - "integrity": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==", + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.8.tgz", + "integrity": "sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.2" + "@babel/helper-define-polyfill-provider": "^0.6.8" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" @@ -6836,7 +7894,8 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/base64-js": { "version": "1.5.1", @@ -6855,29 +7914,57 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/base64id": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz", "integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==", "dev": true, + "license": "MIT", "engines": { "node": "^4.5.0 || >= 5.9" } }, + "node_modules/baseline-browser-mapping": { + "version": "2.10.43", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.43.tgz", + "integrity": "sha512-AjYpR78kDWAY3Efj+cDTFH9t9SCoL7OoTp1BOb0mQV7S+6CiLwnWM3FyxhJtdPufDFKzmCSFoUncKjWgJEZTCQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", - "dev": true + "dev": true, + "license": "MIT" }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "node_modules/beasties": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/beasties/-/beasties-0.3.5.tgz", + "integrity": "sha512-NaWu+f4YrJxEttJSm16AzMIFtVldCvaJ68b1L098KpqXmxt9xOLtKoLkKxb8ekhOrLqEJAbvT6n6SEvB/sac7A==", + "dev": true, + "license": "Apache-2.0", "dependencies": { - "tweetnacl": "^0.14.3" + "css-select": "^6.0.0", + "css-what": "^7.0.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "htmlparser2": "^10.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.49", + "postcss-media-query-parser": "^0.2.3" + }, + "engines": { + "node": ">=14.0.0" } }, "node_modules/big.js": { @@ -6885,6 +7972,7 @@ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true, + "license": "MIT", "engines": { "node": "*" } @@ -6894,6 +7982,7 @@ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, @@ -6901,120 +7990,84 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/blocking-proxy": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/blocking-proxy/-/blocking-proxy-1.0.1.tgz", - "integrity": "sha512-KE8NFMZr3mN2E0HcvCgRtX7DjhiIQrwle+nSVJVC/yqFb9+xznHl2ZcoBp2L9qzkI4t4cBFJ1efXF8Dwi132RA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "blocking-proxy": "built/lib/bin.js" - }, - "engines": { - "node": ">=6.9.x" - } - }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - }, - "node_modules/bn.js": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" - }, "node_modules/body-parser": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", - "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.3.0.tgz", + "integrity": "sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==", + "license": "MIT", "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" + "bytes": "^3.1.2", + "content-type": "^2.0.0", + "debug": "^4.4.3", + "http-errors": "^2.0.1", + "iconv-lite": "^0.7.2", + "on-finished": "^2.4.1", + "qs": "^6.15.2", + "raw-body": "^3.0.2", + "type-is": "^2.1.0" }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" + "node_modules/body-parser/node_modules/content-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz", + "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/body-parser/node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "license": "MIT", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" }, "engines": { "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "node_modules/body-parser/node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" }, "node_modules/body-parser/node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", "engines": { "node": ">=0.6" } }, "node_modules/bonjour-service": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz", - "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==", + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.4.3.tgz", + "integrity": "sha512-2Kd5UYlFUVgAKMTyuBLl6w49wqfOnbxHqmuH0oCl/n7TfAikR0zoowNOP5BU4dfXmm+Vr9JyEN370auSMx+CNg==", "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", "multicast-dns": "^7.2.5" @@ -7024,13 +8077,15 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "1.1.16", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.16.tgz", + "integrity": "sha512-IDw48K2/2kRkg9LdJxurvq3lV3aBgq0REY89duEqFRthjlPdXHKMj7EnQOXVckxzgisinf3nHfrcE2FufFLXMw==", "dev": true, + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -7041,6 +8096,7 @@ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, + "license": "MIT", "dependencies": { "fill-range": "^7.1.1" }, @@ -7048,86 +8104,28 @@ "node": ">=8" } }, - "node_modules/brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" - }, "node_modules/brotli": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/brotli/-/brotli-1.3.3.tgz", "integrity": "sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==", + "license": "MIT", "dependencies": { "base64-js": "^1.1.2" } }, - "node_modules/browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "license": "MIT", "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "node_modules/browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "dependencies": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" - } - }, - "node_modules/browserify-sign": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.3.tgz", - "integrity": "sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==", - "dependencies": { - "bn.js": "^5.2.1", - "browserify-rsa": "^4.1.0", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.5", - "hash-base": "~3.0", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.7", - "readable-stream": "^2.3.8", - "safe-buffer": "^5.2.1" - }, - "engines": { - "node": ">= 0.12" + "pako": "~1.0.5" } }, "node_modules/browserslist": { - "version": "4.23.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", - "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", + "version": "4.28.6", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.6.tgz", + "integrity": "sha512-FQBYNK15VMslhLHpA7+n+n1GOlF1kId2xcCg7/j95f24AOF6VDYMNH4mFxF7KuaTdv627faazpOAjFzMrfJOUw==", "dev": true, "funding": [ { @@ -7143,11 +8141,13 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001629", - "electron-to-chromium": "^1.4.796", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.16" + "baseline-browser-mapping": "^2.10.42", + "caniuse-lite": "^1.0.30001803", + "electron-to-chromium": "^1.5.389", + "node-releases": "^2.0.51", + "update-browserslist-db": "^1.2.3" }, "bin": { "browserslist": "cli.js" @@ -7156,54 +8156,10 @@ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/browserstack": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/browserstack/-/browserstack-1.6.1.tgz", - "integrity": "sha512-GxtFjpIaKdbAyzHfFDKixKO8IBT7wR3NjbzrGc78nNs/Ciys9wU3/nBtsqsWv5nDSrdI5tz0peKuzCPuNXNUiw==", - "dev": true, - "dependencies": { - "https-proxy-agent": "^2.2.1" - } - }, - "node_modules/browserstack/node_modules/agent-base": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", - "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", - "dev": true, - "dependencies": { - "es6-promisify": "^5.0.0" - }, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/browserstack/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/browserstack/node_modules/https-proxy-agent": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", - "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", - "dev": true, - "dependencies": { - "agent-base": "^4.3.0", - "debug": "^3.1.0" - }, - "engines": { - "node": ">= 4.5.0" - } - }, "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "funding": [ { "type": "github", @@ -7218,32 +8174,31 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "ieee754": "^1.2.1" } }, "node_modules/buffer-equal-constant-time": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==", + "license": "BSD-3-Clause" }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" + "dev": true, + "license": "MIT" }, "node_modules/bundle-name": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", "dev": true, + "license": "MIT", "dependencies": { "run-applescript": "^7.0.0" }, @@ -7258,99 +8213,131 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, - "node_modules/cacache": { - "version": "18.0.3", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.3.tgz", - "integrity": "sha512-qXCd4rh6I07cnDqh8V48/94Tc/WSfj+o3Gn6NZ0aZovS255bUx8O13uKxRFd2eWG0xgsco7+YItQNPaa5E85hg==", + "node_modules/bytestreamjs": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/bytestreamjs/-/bytestreamjs-2.0.1.tgz", + "integrity": "sha512-U1Z/ob71V/bXfVABvNr/Kumf5VyeQRBEm6Txb0PQ6S7V5GpBM3w4Cbqz/xPDicR5tN0uvDifng8C+5qECeGwyQ==", "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/cacache": { + "version": "20.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-20.0.4.tgz", + "integrity": "sha512-M3Lab8NPYlZU2exsL3bMVvMrMqgwCnMWfdZbK28bn3pK6APT/Te/I8hjRPNu1uwORY9a1eEQoifXbKPQMfMTOA==", + "dev": true, + "license": "ISC", "dependencies": { - "@npmcli/fs": "^3.1.0", + "@npmcli/fs": "^5.0.0", "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^10.0.1", + "glob": "^13.0.0", + "lru-cache": "^11.1.0", "minipass": "^7.0.3", "minipass-collect": "^2.0.1", "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", - "p-map": "^4.0.0", - "ssri": "^10.0.0", - "tar": "^6.1.11", - "unique-filename": "^3.0.0" + "p-map": "^7.0.2", + "ssri": "^13.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/cacache/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/cacache/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz", + "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==", "dev": true, + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/cacache/node_modules/glob": { - "version": "10.4.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", - "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", + "version": "13.0.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-13.0.6.tgz", + "integrity": "sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "minimatch": "^10.2.2", + "minipass": "^7.1.3", + "path-scurry": "^2.0.2" }, "engines": { - "node": ">=16 || 14 >=14.18" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/cacache/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "version": "11.5.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz", + "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==", "dev": true, + "license": "BlueOak-1.0.0", "engines": { - "node": "14 || >=16.14" + "node": "20 || >=22" } }, "node_modules/cacache/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^5.0.5" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", "dependencies": { - "es-define-property": "^1.0.0", "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" }, "engines": { "node": ">= 0.4" @@ -7364,6 +8351,7 @@ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -7372,14 +8360,15 @@ "version": "5.3.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/caniuse-lite": { - "version": "1.0.30001636", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001636.tgz", - "integrity": "sha512-bMg2vmr8XBsbL6Lr0UHXy/21m84FTxDLWn2FSqMd5PrlbMxwJlQnC2YWYxVgp66PZE+BBNF2jYQUBKCo1FDeZg==", + "version": "1.0.30001806", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001806.tgz", + "integrity": "sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==", "dev": true, "funding": [ { @@ -7394,64 +8383,57 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ] - }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + ], + "license": "CC-BY-4.0" }, "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-2.2.0.tgz", + "integrity": "sha512-rddelWYNPRrXq6PtNEN2S3f6t9ILzvqaN5pVgi4kqt9jHQaXIial9PznB5iSPVlQSLNaaH22ItWz3EJtQ10+OA==", + "dev": true, + "license": "MIT" }, "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", "dev": true, + "license": "MIT", "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" + "readdirp": "^4.0.1" }, "engines": { - "node": ">= 8.10.0" + "node": ">= 14.16.0" }, "funding": { "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" } }, "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", + "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", "dev": true, + "license": "BlueOak-1.0.0", "engines": { - "node": ">=10" + "node": ">=18" } }, "node_modules/chrome-trace-event": { @@ -7459,45 +8441,33 @@ "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.0" } }, - "node_modules/cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", + "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", "dev": true, + "license": "MIT", "dependencies": { - "restore-cursor": "^3.1.0" + "restore-cursor": "^5.0.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/cli-spinners": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.1.tgz", - "integrity": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==", + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" }, @@ -7505,83 +8475,84 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/cli-truncate": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz", + "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==", + "dev": true, + "license": "MIT", + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/cli-width": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz", "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==", "dev": true, + "license": "ISC", "engines": { "node": ">= 12" } }, "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-9.0.1.tgz", + "integrity": "sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==", "dev": true, + "license": "ISC", "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" + "string-width": "^7.2.0", + "strip-ansi": "^7.1.0", + "wrap-ansi": "^9.0.0" }, "engines": { - "node": ">=12" + "node": ">=20" } }, "node_modules/cliui/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/cliui/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/cliui/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, "node_modules/cliui/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", + "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "license": "MIT", "engines": { "node": ">=0.8" } @@ -7591,6 +8562,7 @@ "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, + "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4", "kind-of": "^6.0.2", @@ -7600,32 +8572,50 @@ "node": ">=6" } }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "node_modules/clone-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, + "license": "MIT", "dependencies": { - "color-name": "1.1.3" + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" }, "node_modules/colorette": { "version": "2.0.20", "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/colors": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.1.90" } @@ -7634,6 +8624,7 @@ "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" }, @@ -7645,19 +8636,15 @@ "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true - }, - "node_modules/common-path-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", - "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "dev": true, + "license": "MIT", "dependencies": { "mime-db": ">= 1.43.0 < 2" }, @@ -7666,37 +8653,30 @@ } }, "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", "dev": true, + "license": "MIT", "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", + "bytes": "3.1.2", + "compressible": "~2.0.18", "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "engines": { "node": ">= 0.8.0" } }, - "node_modules/compression/node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, "node_modules/compression/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -7705,25 +8685,32 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "dev": true, + "license": "MIT" }, - "node_modules/compression/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true + "node_modules/compression/node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/connect": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", "dev": true, + "license": "MIT", "dependencies": { "debug": "2.6.9", "finalhandler": "1.1.2", @@ -7739,6 +8726,7 @@ "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8" } @@ -7748,15 +8736,27 @@ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "license": "MIT", "dependencies": { "ms": "2.0.0" } }, + "node_modules/connect/node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/connect/node_modules/finalhandler": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", "dev": true, + "license": "MIT", "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", @@ -7774,13 +8774,15 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/connect/node_modules/on-finished": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", "dev": true, + "license": "MIT", "dependencies": { "ee-first": "1.1.1" }, @@ -7793,25 +8795,29 @@ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "dependencies": { - "safe-buffer": "5.2.1" - }, + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.1.0.tgz", + "integrity": "sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==", + "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/content-type": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -7825,7 +8831,8 @@ "version": "1.9.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/convert-string": { "version": "0.1.0", @@ -7833,19 +8840,21 @@ "integrity": "sha512-1KX9ESmtl8xpT2LN2tFnKSbV4NiarbVi8DVb39ZriijvtTklyrT+4dT1wsGMHKD3CJUjXgvJzstm9qL9ICojGA==" }, "node_modules/cookie": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz", - "integrity": "sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==", + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/cookie-parser": { - "version": "1.4.6", - "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.6.tgz", - "integrity": "sha512-z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==", + "version": "1.4.7", + "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.7.tgz", + "integrity": "sha512-nGUvgXnotP3BsjiLX2ypbQnWoGUPIIfHQNZkkC668ntrzGWEZVW70HDEB1qnNGMicPje6EttlIgzo51YSwNQGw==", + "license": "MIT", "dependencies": { - "cookie": "0.4.1", + "cookie": "0.7.2", "cookie-signature": "1.0.6" }, "engines": { @@ -7855,13 +8864,15 @@ "node_modules/cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "license": "MIT" }, "node_modules/copy-anything": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", "dev": true, + "license": "MIT", "dependencies": { "is-what": "^3.14.1" }, @@ -7870,20 +8881,20 @@ } }, "node_modules/copy-webpack-plugin": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", - "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-14.0.0.tgz", + "integrity": "sha512-3JLW90aBGeaTLpM7mYQKpnVdgsUZRExY55giiZgLuX/xTQRUs1dOCwbBnWnvY6Q6rfZoXMNwzOQJCSZPppfqXA==", "dev": true, + "license": "MIT", "dependencies": { - "fast-glob": "^3.2.11", "glob-parent": "^6.0.1", - "globby": "^13.1.1", "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" + "schema-utils": "^4.2.0", + "serialize-javascript": "^7.0.3", + "tinyglobby": "^0.2.12" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 20.9.0" }, "funding": { "type": "opencollective", @@ -7893,56 +8904,14 @@ "webpack": "^5.1.0" } }, - "node_modules/copy-webpack-plugin/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/copy-webpack-plugin/node_modules/globby": { - "version": "13.2.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", - "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", - "dev": true, - "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.3.0", - "ignore": "^5.2.4", - "merge2": "^1.4.1", - "slash": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/copy-webpack-plugin/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/core-js-compat": { - "version": "3.37.1", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.37.1.tgz", - "integrity": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==", + "version": "3.49.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.49.0.tgz", + "integrity": "sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==", "dev": true, + "license": "MIT", "dependencies": { - "browserslist": "^4.23.0" + "browserslist": "^4.28.1" }, "funding": { "type": "opencollective", @@ -7952,26 +8921,34 @@ "node_modules/core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true, + "license": "MIT" }, "node_modules/cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "version": "2.8.6", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz", + "integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==", "dev": true, + "license": "MIT", "dependencies": { "object-assign": "^4", "vary": "^1" }, "engines": { "node": ">= 0.10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/cosmiconfig": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", - "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.2.tgz", + "integrity": "sha512-gtTZxTDau1wL7Y7zifc2dd8jHSK/k6BTx/2Xp/BpdlAdnlYWFVt7qhJqgwi7637yRwRQ3qL4ZidbB4I8tA5VOg==", "dev": true, + "license": "MIT", "dependencies": { "env-paths": "^2.2.1", "import-fresh": "^3.3.0", @@ -7993,141 +8970,19 @@ } } }, - "node_modules/create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" - } - }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "node_modules/create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "node_modules/critters": { - "version": "0.0.22", - "resolved": "https://registry.npmjs.org/critters/-/critters-0.0.22.tgz", - "integrity": "sha512-NU7DEcQZM2Dy8XTKFHxtdnIM/drE312j2T4PCVaSUcS0oBeyT/NImpRw/Ap0zOr/1SE7SgPK9tGPg1WK/sVakw==", "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "css-select": "^5.1.0", - "dom-serializer": "^2.0.0", - "domhandler": "^5.0.2", - "htmlparser2": "^8.0.2", - "postcss": "^8.4.23", - "postcss-media-query-parser": "^0.2.3" - } - }, - "node_modules/critters/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/critters/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/critters/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/critters/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/critters/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/critters/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "license": "MIT" }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -8137,50 +8992,56 @@ "node": ">= 8" } }, - "node_modules/crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "node_modules/csrf-csrf": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/csrf-csrf/-/csrf-csrf-4.0.3.tgz", + "integrity": "sha512-DaygOzelL4Qo1pHwI9LPyZL+X2456/OzpT596kNeZGiTSqKVDOk/9PPJ+FjzZacjMUEusOHw3WJKe1RW4iUhrw==", + "license": "ISC", "dependencies": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - }, - "engines": { - "node": "*" + "http-errors": "^2.0.0" } }, - "node_modules/crypto-js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", - "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==" - }, - "node_modules/csrf": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/csrf/-/csrf-3.1.0.tgz", - "integrity": "sha512-uTqEnCvWRk042asU6JtapDTcJeeailFy4ydOQS28bj1hcLnYRiqi8SsD2jS412AY1I/4qdOwWZun774iqywf9w==", + "node_modules/csrf-csrf/node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "license": "MIT", "dependencies": { - "rndm": "1.2.0", - "tsscmp": "1.0.6", - "uid-safe": "2.1.5" + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" }, "engines": { "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/csrf-csrf/node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/csrf-csrf/node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" } }, "node_modules/css-loader": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.1.tgz", - "integrity": "sha512-OxIR5P2mjO1PSXk44bWuQ8XtMK4dpEqpIyERCx3ewOo3I8EmbcxMPUc5ScLtQfgXtOojoMv57So4V/C02HQLsw==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.2.tgz", + "integrity": "sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==", "dev": true, + "license": "MIT", "dependencies": { "icss-utils": "^5.1.0", "postcss": "^8.4.33", @@ -8212,26 +9073,28 @@ } }, "node_modules/css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-6.0.0.tgz", + "integrity": "sha512-rZZVSLle8v0+EY8QAkDWrKhpgt6SA5OtHsgBnsj6ZaLb5dmDVOWUDtQitd9ydxxvEjhewNudS6eTVU7uOyzvXw==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" + "css-what": "^7.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.2.2", + "nth-check": "^2.1.1" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-7.0.0.tgz", + "integrity": "sha512-wD5oz5xibMOPHzy13CyGmogB3phdvcDaB5t0W/Nr5Z2O/agcB8YwOz6e2Lsp10pNDzBoDO9nVa3RGs/2BttpHQ==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">= 6" }, @@ -8244,6 +9107,7 @@ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true, + "license": "MIT", "bin": { "cssesc": "bin/cssesc" }, @@ -8251,39 +9115,18 @@ "node": ">=4" } }, - "node_modules/csurf": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/csurf/-/csurf-1.11.0.tgz", - "integrity": "sha512-UCtehyEExKTxgiu8UHdGvHj4tnpE/Qctue03Giq5gPgMQ9cg/ciod5blZQ5a4uCEenNQjxyGuzygLdKUmee/bQ==", - "deprecated": "Please use another csrf package", - "dependencies": { - "cookie": "0.4.0", - "cookie-signature": "1.0.6", - "csrf": "3.1.0", - "http-errors": "~1.7.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/csurf/node_modules/cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/custom-event": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz", "integrity": "sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/d3-array": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "license": "ISC", "dependencies": { "internmap": "1 - 2" }, @@ -8295,6 +9138,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", + "license": "ISC", "dependencies": { "d3-dispatch": "1 - 3", "d3-drag": "2 - 3", @@ -8310,6 +9154,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", "engines": { "node": ">=12" } @@ -8318,6 +9163,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", + "license": "ISC", "engines": { "node": ">=12" } @@ -8326,6 +9172,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", + "license": "ISC", "dependencies": { "d3-dispatch": "1 - 3", "d3-selection": "3" @@ -8338,14 +9185,16 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", "engines": { "node": ">=12" } }, "node_modules/d3-format": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", - "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.2.tgz", + "integrity": "sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==", + "license": "ISC", "engines": { "node": ">=12" } @@ -8354,6 +9203,7 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", + "license": "ISC", "engines": { "node": ">=12" } @@ -8362,6 +9212,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", "dependencies": { "d3-color": "1 - 3" }, @@ -8373,6 +9224,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", "engines": { "node": ">=12" } @@ -8381,6 +9233,7 @@ "version": "0.12.3", "resolved": "https://registry.npmjs.org/d3-sankey/-/d3-sankey-0.12.3.tgz", "integrity": "sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==", + "license": "BSD-3-Clause", "dependencies": { "d3-array": "1 - 2", "d3-shape": "^1.2.0" @@ -8390,6 +9243,7 @@ "version": "2.12.1", "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.12.1.tgz", "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", + "license": "BSD-3-Clause", "dependencies": { "internmap": "^1.0.0" } @@ -8397,12 +9251,14 @@ "node_modules/d3-sankey/node_modules/d3-path": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.9.tgz", - "integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==" + "integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==", + "license": "BSD-3-Clause" }, "node_modules/d3-sankey/node_modules/d3-shape": { "version": "1.3.7", "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.7.tgz", "integrity": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==", + "license": "BSD-3-Clause", "dependencies": { "d3-path": "1" } @@ -8410,12 +9266,14 @@ "node_modules/d3-sankey/node_modules/internmap": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/internmap/-/internmap-1.0.1.tgz", - "integrity": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==" + "integrity": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==", + "license": "ISC" }, "node_modules/d3-scale": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "license": "ISC", "dependencies": { "d3-array": "2.10.0 - 3", "d3-format": "1 - 3", @@ -8431,6 +9289,7 @@ "version": "3.0.0", "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "license": "ISC", "engines": { "node": ">=12" } @@ -8439,6 +9298,7 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", "dependencies": { "d3-path": "^3.1.0" }, @@ -8450,6 +9310,7 @@ "version": "3.1.0", "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "license": "ISC", "dependencies": { "d3-array": "2 - 3" }, @@ -8458,38 +9319,22 @@ } }, "node_modules/d3-time-format": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-3.0.0.tgz", - "integrity": "sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "license": "ISC", "dependencies": { - "d3-time": "1 - 2" + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/d3-time-format/node_modules/d3-array": { - "version": "2.12.1", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.12.1.tgz", - "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", - "dependencies": { - "internmap": "^1.0.0" - } - }, - "node_modules/d3-time-format/node_modules/d3-time": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-2.1.1.tgz", - "integrity": "sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==", - "dependencies": { - "d3-array": "2" - } - }, - "node_modules/d3-time-format/node_modules/internmap": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/internmap/-/internmap-1.0.1.tgz", - "integrity": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==" - }, "node_modules/d3-timer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", "engines": { "node": ">=12" } @@ -8498,6 +9343,7 @@ "version": "3.0.1", "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", + "license": "ISC", "dependencies": { "d3-color": "1 - 3", "d3-dispatch": "1 - 3", @@ -8512,32 +9358,23 @@ "d3-selection": "2 - 3" } }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", - "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, "node_modules/date-format": { "version": "4.0.14", "resolved": "https://registry.npmjs.org/date-format/-/date-format-4.0.14.tgz", "integrity": "sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==", "dev": true, + "license": "MIT", "engines": { "node": ">=4.0" } }, "node_modules/debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -8552,40 +9389,24 @@ "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/deep-equal": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz", - "integrity": "sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==", - "dependencies": { - "is-arguments": "^1.1.1", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "regexp.prototype.flags": "^1.5.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/default-browser": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", - "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.5.0.tgz", + "integrity": "sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==", "dev": true, + "license": "MIT", "dependencies": { "bundle-name": "^4.1.0", "default-browser-id": "^5.0.0" @@ -8598,10 +9419,11 @@ } }, "node_modules/default-browser-id": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", - "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.1.tgz", + "integrity": "sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=18" }, @@ -8609,135 +9431,24 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/default-gateway": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", - "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", "dev": true, - "dependencies": { - "execa": "^5.0.0" - }, + "license": "MIT", "engines": { - "node": ">= 10" - } - }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dev": true, - "dependencies": { - "clone": "^1.0.2" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/del": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", - "integrity": "sha512-Z4fzpbIRjOu7lO5jCETSWoqUDVe0IPOlfugBsF6suen2LKDlVb4QZpKEM9P+buNJ4KI1eN7I083w/pbKUpsrWQ==", - "dev": true, - "dependencies": { - "globby": "^5.0.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "rimraf": "^2.2.8" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/del/node_modules/array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", - "dev": true, - "dependencies": { - "array-uniq": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/del/node_modules/globby": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", - "integrity": "sha512-HJRTIH2EeH44ka+LWig+EqT2ONSYpVlNfx6pyd592/VF1TbfljJ7elwie7oSwcViLGqOdWocSdu2txwBF9bjmQ==", - "dev": true, - "dependencies": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/del/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", "engines": { "node": ">=0.4.0" } @@ -8746,42 +9457,29 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/des.js": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", - "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", - "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, "node_modules/destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" } }, "node_modules/detect-libc": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", - "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", "dev": true, + "license": "Apache-2.0", + "optional": true, "engines": { "node": ">=8" } @@ -8790,62 +9488,44 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/dfa": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/dfa/-/dfa-1.2.0.tgz", - "integrity": "sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==" + "integrity": "sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==", + "license": "MIT" }, "node_modules/di": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz", "integrity": "sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.4.tgz", + "integrity": "sha512-X07nttJQkwkfKfvTPG/KSnE2OMdcUCao6+eXF3wmnIQRn2aPAHH3VxDbDOdegkd6JbPsXqShpvEOHfAT+nCNwQ==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" } }, - "node_modules/diff-sequences": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", - "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } - }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, "node_modules/dijkstrajs": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz", - "integrity": "sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==" + "integrity": "sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==", + "license": "MIT" }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, + "license": "MIT", "dependencies": { "path-type": "^4.0.0" }, @@ -8858,6 +9538,7 @@ "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", "dev": true, + "license": "MIT", "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" }, @@ -8870,6 +9551,7 @@ "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", "integrity": "sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ==", "dev": true, + "license": "MIT", "dependencies": { "custom-event": "~1.0.0", "ent": "~2.2.0", @@ -8882,6 +9564,7 @@ "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dev": true, + "license": "MIT", "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.2", @@ -8901,13 +9584,15 @@ "type": "github", "url": "https://github.com/sponsors/fb55" } - ] + ], + "license": "BSD-2-Clause" }, "node_modules/domhandler": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.3.0" }, @@ -8919,10 +9604,11 @@ } }, "node_modules/domutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", + "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^2.0.0", "domelementtype": "^2.3.0", @@ -8933,10 +9619,11 @@ } }, "node_modules/dotenv": { - "version": "16.4.5", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", - "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "version": "17.2.3", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.2.3.tgz", + "integrity": "sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=12" }, @@ -8944,45 +9631,25 @@ "url": "https://dotenvx.com" } }, - "node_modules/dotenv-expand": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", - "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", - "dev": true - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/ecc-jsbn/node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - }, "node_modules/ecdsa-sig-formatter": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "license": "Apache-2.0", "dependencies": { "safe-buffer": "^5.0.1" } @@ -8990,180 +9657,158 @@ "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "node_modules/ejs": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz", - "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==", - "dev": true, - "dependencies": { - "jake": "^10.8.5" - }, - "bin": { - "ejs": "bin/cli.js" - }, - "engines": { - "node": ">=0.10.0" - } + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.4.811", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.811.tgz", - "integrity": "sha512-CDyzcJ5XW78SHzsIOdn27z8J4ist8eaFLhdto2hSMSJQgsiwvbv2fbizcKUICryw1Wii1TI/FEkvzvJsR3awrA==", - "dev": true - }, - "node_modules/elliptic": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.5.tgz", - "integrity": "sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==", - "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "version": "1.5.393", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.393.tgz", + "integrity": "sha512-kiDJdIUawuEIcp9XoICKp1iTYDEbgguIPq526N1Q7jIQDeQ3CqoMx71025PI/7E48Ddtw2HuWsVjY7afEgNxmg==", + "dev": true, + "license": "ISC" }, "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", + "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", + "dev": true, + "license": "MIT" }, "node_modules/emojis-list": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">= 4" } }, - "node_modules/encode-utf8": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/encode-utf8/-/encode-utf8-1.0.3.tgz", - "integrity": "sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==" - }, "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, - "node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "optional": true, - "dependencies": { - "iconv-lite": "^0.6.2" - } - }, - "node_modules/encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dev": true, - "dependencies": { - "once": "^1.4.0" - } - }, "node_modules/engine.io": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.5.5.tgz", - "integrity": "sha512-C5Pn8Wk+1vKBoHghJODM63yk8MvrO9EWZUfkAt5HAqIgPE4/8FF0PEGHXtEd40l223+cE5ABWuPzm38PHFXfMA==", + "version": "6.6.9", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.6.9.tgz", + "integrity": "sha512-clKkw4C7nJ22mGgoVcCg6V/W/TxdNyIOTr89k2ONZu81qqkddPFDF0LXcbAwhzPD8DjkiRCjzuiO6Y+fkpD4vg==", "dev": true, + "license": "MIT", "dependencies": { - "@types/cookie": "^0.4.1", "@types/cors": "^2.8.12", "@types/node": ">=10.0.0", + "@types/ws": "^8.5.12", "accepts": "~1.3.4", "base64id": "2.0.0", - "cookie": "~0.4.1", + "cookie": "~0.7.2", "cors": "~2.8.5", - "debug": "~4.3.1", + "debug": "~4.4.1", "engine.io-parser": "~5.2.1", - "ws": "~8.17.1" + "ws": "~8.21.0" }, "engines": { "node": ">=10.2.0" } }, "node_modules/engine.io-client": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.5.4.tgz", - "integrity": "sha512-GeZeeRjpD2qf49cZQ0Wvh/8NJNfeXkXXcoGh+F77oEAgo9gUHwT1fCRxSNU+YEEaysOJTnsFHmM5oAcPy4ntvQ==", + "version": "6.6.6", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.6.6.tgz", + "integrity": "sha512-iY6QdftLQ9pyiPoX082bpf/u1UewnOaJrtJIF9T0++QB34lZrj0uP+Q/bj8AlUsAxqhnkTV2BS8SBZSxOmoV5Q==", + "license": "MIT", "dependencies": { "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.1", + "debug": "~4.4.1", "engine.io-parser": "~5.2.1", - "ws": "~8.17.1", - "xmlhttprequest-ssl": "~2.0.0" + "ws": "~8.21.0", + "xmlhttprequest-ssl": "~2.1.1" } }, "node_modules/engine.io-parser": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.2.tgz", - "integrity": "sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==", + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz", + "integrity": "sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==", + "license": "MIT", "engines": { "node": ">=10.0.0" } }, - "node_modules/enhanced-resolve": { - "version": "5.17.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.0.tgz", - "integrity": "sha512-dwDPwZL0dmye8Txp2gzFmA6sxALaSvdRDjPH0viLcKrtlOL3tw62nWWweVD1SdILDTJrbrL6tdWVN58Wo6U3eA==", + "node_modules/engine.io/node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/engine.io/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/engine.io/node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/engine.io/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.24.2", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.24.2.tgz", + "integrity": "sha512-rpsZEGT1jFuve6QlpyRp9ckQ+kN61hvF9BzCPyMdaKTm8UJce96KBn3sorXOFXlzjPrs3Vc4T1NsSroZ3PxlFw==", + "dev": true, + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "tapable": "^2.3.3" }, "engines": { "node": ">=10.13.0" } }, - "node_modules/enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", - "dev": true, - "dependencies": { - "ansi-colors": "^4.1.1" - }, - "engines": { - "node": ">=8.6" - } - }, "node_modules/ent": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.1.tgz", - "integrity": "sha512-QHuXVeZx9d+tIQAz/XztU0ZwZf2Agg9CcXcgE1rurqvdBeDBrpSwjl8/6XUqMg7tw2Y7uAdKb2sRv+bSEFqQ5A==", + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.2.tgz", + "integrity": "sha512-kKvD1tO6BM+oK9HzCPpUdRb4vKFQY/FPTFmurMvh6LlN68VMrdj77w8yp51/kDbpkFOS9J8w5W6zIzgM2H8/hw==", "dev": true, + "license": "MIT", "dependencies": { - "punycode": "^1.4.1" + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "punycode": "^1.4.1", + "safe-regex-test": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -9174,6 +9819,7 @@ "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=0.12" }, @@ -9186,21 +9832,30 @@ "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } }, - "node_modules/err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", - "dev": true + "node_modules/environment": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz", + "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/errno": { "version": "0.1.8", "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", "dev": true, + "license": "MIT", "optional": true, "dependencies": { "prr": "~1.0.1" @@ -9214,17 +9869,16 @@ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, + "license": "MIT", "dependencies": { "is-arrayish": "^0.2.1" } }, "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", - "dependencies": { - "get-intrinsic": "^1.2.4" - }, + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", "engines": { "node": ">= 0.4" } @@ -9233,86 +9887,106 @@ "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/es-module-lexer": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", - "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", - "dev": true - }, - "node_modules/es6-promise": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", - "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", - "dev": true - }, - "node_modules/es6-promisify": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", - "integrity": "sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==", + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.3.1.tgz", + "integrity": "sha512-shc1dbU90Yl/xq1QrC7QRtfcwURZuVRfPhZbDoldJ1cn1gzDvBaBWlv0eFolj5+0znnPJz5TXLxsN77X/12KTA==", "dev": true, + "license": "MIT" + }, + "node_modules/es-object-atoms": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz", + "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==", + "license": "MIT", "dependencies": { - "es6-promise": "^4.0.3" + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" } }, "node_modules/esbuild": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.3.tgz", - "integrity": "sha512-Kgq0/ZsAPzKrbOjCQcjoSmPoWhlcVnGAUo7jvaLHoxW1Drto0KGkR1xBNg2Cp43b9ImvxmPEJZ9xkfcnqPsfBw==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.28.1.tgz", + "integrity": "sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==", "dev": true, "hasInstallScript": true, + "license": "MIT", "bin": { "esbuild": "bin/esbuild" }, "engines": { - "node": ">=12" + "node": ">=18" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.21.3", - "@esbuild/android-arm": "0.21.3", - "@esbuild/android-arm64": "0.21.3", - "@esbuild/android-x64": "0.21.3", - "@esbuild/darwin-arm64": "0.21.3", - "@esbuild/darwin-x64": "0.21.3", - "@esbuild/freebsd-arm64": "0.21.3", - "@esbuild/freebsd-x64": "0.21.3", - "@esbuild/linux-arm": "0.21.3", - "@esbuild/linux-arm64": "0.21.3", - "@esbuild/linux-ia32": "0.21.3", - "@esbuild/linux-loong64": "0.21.3", - "@esbuild/linux-mips64el": "0.21.3", - "@esbuild/linux-ppc64": "0.21.3", - "@esbuild/linux-riscv64": "0.21.3", - "@esbuild/linux-s390x": "0.21.3", - "@esbuild/linux-x64": "0.21.3", - "@esbuild/netbsd-x64": "0.21.3", - "@esbuild/openbsd-x64": "0.21.3", - "@esbuild/sunos-x64": "0.21.3", - "@esbuild/win32-arm64": "0.21.3", - "@esbuild/win32-ia32": "0.21.3", - "@esbuild/win32-x64": "0.21.3" + "@esbuild/aix-ppc64": "0.28.1", + "@esbuild/android-arm": "0.28.1", + "@esbuild/android-arm64": "0.28.1", + "@esbuild/android-x64": "0.28.1", + "@esbuild/darwin-arm64": "0.28.1", + "@esbuild/darwin-x64": "0.28.1", + "@esbuild/freebsd-arm64": "0.28.1", + "@esbuild/freebsd-x64": "0.28.1", + "@esbuild/linux-arm": "0.28.1", + "@esbuild/linux-arm64": "0.28.1", + "@esbuild/linux-ia32": "0.28.1", + "@esbuild/linux-loong64": "0.28.1", + "@esbuild/linux-mips64el": "0.28.1", + "@esbuild/linux-ppc64": "0.28.1", + "@esbuild/linux-riscv64": "0.28.1", + "@esbuild/linux-s390x": "0.28.1", + "@esbuild/linux-x64": "0.28.1", + "@esbuild/netbsd-arm64": "0.28.1", + "@esbuild/netbsd-x64": "0.28.1", + "@esbuild/openbsd-arm64": "0.28.1", + "@esbuild/openbsd-x64": "0.28.1", + "@esbuild/openharmony-arm64": "0.28.1", + "@esbuild/sunos-x64": "0.28.1", + "@esbuild/win32-arm64": "0.28.1", + "@esbuild/win32-ia32": "0.28.1", + "@esbuild/win32-x64": "0.28.1" } }, "node_modules/esbuild-wasm": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.21.3.tgz", - "integrity": "sha512-DMOV+eeVra0yVq3XIojfczdEQsz+RiFnpEj7lqs8Gux9mlTpN7yIbw0a4KzLspn0Uhw6UVEH3nUAidSqc/rcQg==", + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/esbuild-wasm/-/esbuild-wasm-0.28.1.tgz", + "integrity": "sha512-p/GD4E8oYRjg3kjdKrnMb0s4PzXgJF42e0MF4H0+ACyK/kIlFRp3e0fzOleIG+wBBm6MM3XQrbpe7soEA+vJIA==", "dev": true, + "license": "MIT", "bin": { "esbuild": "bin/esbuild" }, "engines": { - "node": ">=12" + "node": ">=18" } }, "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -9320,39 +9994,49 @@ "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" }, "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=0.8.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint": { - "version": "9.5.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.5.0.tgz", - "integrity": "sha512-+NAOZFrW/jFTS3dASCGBxX1pkFD0/fsO+hfAkJ4TyYKwgsXZbqzrw+seCYFCcPCYXvnD67tAnglU7GQTz6kcVw==", + "version": "9.39.5", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.5.tgz", + "integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==", "dev": true, + "license": "MIT", "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/config-array": "^0.16.0", - "@eslint/eslintrc": "^3.1.0", - "@eslint/js": "9.5.0", + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.2", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.6", + "@eslint/js": "9.39.5", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", - "@humanwhocodes/retry": "^0.3.0", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.12.4", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.14.0", "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", + "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^8.0.1", - "eslint-visitor-keys": "^4.0.0", - "espree": "^10.0.1", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", "esquery": "^1.5.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", @@ -9362,15 +10046,11 @@ "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", + "minimatch": "^3.1.5", "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" + "optionator": "^0.9.3" }, "bin": { "eslint": "bin/eslint.js" @@ -9380,6 +10060,14 @@ }, "funding": { "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } } }, "node_modules/eslint-plugin-deprecation": { @@ -9387,6 +10075,7 @@ "resolved": "https://registry.npmjs.org/eslint-plugin-deprecation/-/eslint-plugin-deprecation-3.0.0.tgz", "integrity": "sha512-JuVLdNg/uf0Adjg2tpTyYoYaMbwQNn/c78P1HcccokvhtRphgnRjZDKmhlxbxYptppex03zO76f97DD/yQHv7A==", "dev": true, + "license": "LGPL-3.0-or-later", "dependencies": { "@typescript-eslint/utils": "^7.0.0", "ts-api-utils": "^1.3.0", @@ -9397,17 +10086,202 @@ "typescript": "^4.2.4 || ^5.0.0" } }, - "node_modules/eslint-scope": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.1.tgz", - "integrity": "sha512-pL8XjgP4ZOmmwfFE8mEhSxA7ZY4C+LWyqjQ3o4yWkkmD0qcMT9kkW3zWHOczhWcjTSgqycYAgwSlXvZltv65og==", + "node_modules/eslint-plugin-deprecation/node_modules/@typescript-eslint/scope-manager": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.18.0.tgz", + "integrity": "sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==", "dev": true, + "license": "MIT", "dependencies": { + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-deprecation/node_modules/@typescript-eslint/types": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.18.0.tgz", + "integrity": "sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-deprecation/node_modules/@typescript-eslint/typescript-estree": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.18.0.tgz", + "integrity": "sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/visitor-keys": "7.18.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-deprecation/node_modules/@typescript-eslint/utils": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.18.0.tgz", + "integrity": "sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "7.18.0", + "@typescript-eslint/types": "7.18.0", + "@typescript-eslint/typescript-estree": "7.18.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + } + }, + "node_modules/eslint-plugin-deprecation/node_modules/@typescript-eslint/visitor-keys": { + "version": "7.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.18.0.tgz", + "integrity": "sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "7.18.0", + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-deprecation/node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint-plugin-deprecation/node_modules/brace-expansion": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.2.tgz", + "integrity": "sha512-w5JZcKgdhDOgOwm8H+KgbosopHMuGcl6qbulwjtz3SM7I7P3yW1eAjzMPLrIE+NQ9vjgANKHWeMHnrT0OXW1oA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/eslint-plugin-deprecation/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint-plugin-deprecation/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/eslint-plugin-deprecation/node_modules/minimatch": { + "version": "9.0.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz", + "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.2" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/eslint-plugin-deprecation/node_modules/ts-api-utils": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.3.tgz", + "integrity": "sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/eslint-scope": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-9.1.2.tgz", + "integrity": "sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@types/esrecurse": "^4.3.1", + "@types/estree": "^1.0.8", "esrecurse": "^4.3.0", "estraverse": "^5.2.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": "^20.19.0 || ^22.13.0 || >=24" }, "funding": { "url": "https://opencollective.com/eslint" @@ -9418,6 +10292,7 @@ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -9425,11 +10300,36 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/eslint/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/eslint/node_modules/@eslint/eslintrc": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.6.tgz", + "integrity": "sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==", "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.14.0", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.3.0", + "minimatch": "^3.1.5", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/ajv": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", + "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", + "dev": true, + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -9441,72 +10341,16 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/eslint/node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "color-convert": "^2.0.1" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/eslint-visitor-keys": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", - "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", - "dev": true, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, @@ -9514,54 +10358,46 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/eslint/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, + "license": "Apache-2.0", "engines": { - "node": ">=10.13.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/eslint/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 4" } }, "node_modules/eslint/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "license": "MIT" }, "node_modules/espree": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-10.1.0.tgz", - "integrity": "sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==", + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "acorn": "^8.12.0", + "acorn": "^8.15.0", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^4.0.0" + "eslint-visitor-keys": "^4.2.1" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -9571,10 +10407,11 @@ } }, "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", - "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", "dev": true, + "license": "Apache-2.0", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, @@ -9582,24 +10419,12 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "estraverse": "^5.1.0" }, @@ -9612,6 +10437,7 @@ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" }, @@ -9624,6 +10450,7 @@ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } @@ -9633,6 +10460,7 @@ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } @@ -9641,6 +10469,7 @@ "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -9649,115 +10478,123 @@ "version": "4.0.7", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/events": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.x" } }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/eventsource": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-3.0.7.tgz", + "integrity": "sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==", "dev": true, + "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "eventsource-parser": "^3.0.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": ">=18.0.0" } }, - "node_modules/exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "node_modules/eventsource-parser": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.1.0.tgz", + "integrity": "sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==", "dev": true, + "license": "MIT", "engines": { - "node": ">= 0.8.0" + "node": ">=18.0.0" } }, "node_modules/exponential-backoff": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", - "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", - "dev": true + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.3.tgz", + "integrity": "sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==", + "dev": true, + "license": "Apache-2.0" }, "node_modules/express": { - "version": "4.19.2", - "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", - "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz", + "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==", + "license": "MIT", "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.2", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.6.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" + "accepts": "^2.0.0", + "body-parser": "^2.2.1", + "content-disposition": "^1.0.0", + "content-type": "^1.0.5", + "cookie": "^0.7.1", + "cookie-signature": "^1.2.1", + "debug": "^4.4.0", + "depd": "^2.0.0", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "etag": "^1.8.1", + "finalhandler": "^2.1.0", + "fresh": "^2.0.0", + "http-errors": "^2.0.0", + "merge-descriptors": "^2.0.0", + "mime-types": "^3.0.0", + "on-finished": "^2.4.1", + "once": "^1.4.0", + "parseurl": "^1.3.3", + "proxy-addr": "^2.0.7", + "qs": "^6.14.0", + "range-parser": "^1.2.1", + "router": "^2.2.0", + "send": "^1.1.0", + "serve-static": "^2.2.0", + "statuses": "^2.0.1", + "type-is": "^2.0.1", + "vary": "^1.1.2" }, "engines": { - "node": ">= 0.10.0" + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/express-rate-limit": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/express-rate-limit/-/express-rate-limit-8.6.0.tgz", + "integrity": "sha512-XKJXDsASUOo0LLtFwW5hCcQGH0N4WQc/Rn8/Pvoia+TJFOkkFPvrtW9lZOeeNcxQJspvOIERMwiRLsVFlhHEkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.4.3", + "ip-address": "^10.2.0" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/express-rate-limit" + }, + "peerDependencies": { + "express": ">= 4.11" } }, "node_modules/express-session": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.18.0.tgz", - "integrity": "sha512-m93QLWr0ju+rOwApSsyso838LQwgfs44QtOP/WBiwtAgPIo/SAh1a5c6nn2BR6mFNZehTpqKDESzP+fRHVbxwQ==", + "version": "1.18.2", + "resolved": "https://registry.npmjs.org/express-session/-/express-session-1.18.2.tgz", + "integrity": "sha512-SZjssGQC7TzTs9rpPDuUrR23GNZ9+2+IkA/+IJWmvQilTr5OSliEHGF+D9scbIpdC6yGtTI0/VhaHoVes2AN/A==", + "license": "MIT", "dependencies": { - "cookie": "0.6.0", + "cookie": "0.7.2", "cookie-signature": "1.0.7", "debug": "2.6.9", "depd": "~2.0.0", - "on-headers": "~1.0.2", + "on-headers": "~1.1.0", "parseurl": "~1.3.3", "safe-buffer": "5.2.1", "uid-safe": "~2.1.5" @@ -9766,23 +10603,17 @@ "node": ">= 0.8.0" } }, - "node_modules/express-session/node_modules/cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/express-session/node_modules/cookie-signature": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz", - "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==" + "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==", + "license": "MIT" }, "node_modules/express-session/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -9790,48 +10621,49 @@ "node_modules/express-session/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" }, - "node_modules/express/node_modules/cookie": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", - "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "node_modules/express/node_modules/cookie-signature": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz", + "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==", + "license": "MIT", "engines": { - "node": ">= 0.6" - } - }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" + "node": ">=6.6.0" } }, "node_modules/express/node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "license": "MIT", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" }, "engines": { "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "node_modules/express/node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" }, "node_modules/express/node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", "engines": { "node": ">=0.6" } @@ -9839,79 +10671,83 @@ "node_modules/extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", "dev": true, - "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/external-editor/node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "engines": [ - "node >=0.6.0" - ] + "license": "MIT" }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" }, "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", "dev": true, + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "micromatch": "^4.0.8" }, "engines": { "node": ">=8.6.0" } }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true + "dev": true, + "license": "MIT" + }, + "node_modules/fast-uri": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.4.tgz", + "integrity": "sha512-8JnbkQ4juDyvYs4mgFGQqg4yCYtFDtUtmp2QIQq11ZZe5CFQ5wcqm1rqDgAh/QdMySuBnPzMUiJUNZG5N/AiQw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" }, "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", "dev": true, + "license": "ISC", "dependencies": { "reusify": "^1.0.4" } @@ -9921,6 +10757,7 @@ "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dev": true, + "license": "Apache-2.0", "dependencies": { "websocket-driver": ">=0.5.1" }, @@ -9928,19 +10765,22 @@ "node": ">=0.8.0" } }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=12.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } } }, "node_modules/file-entry-cache": { @@ -9948,6 +10788,7 @@ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", "dev": true, + "license": "MIT", "dependencies": { "flat-cache": "^4.0.0" }, @@ -9955,41 +10796,12 @@ "node": ">=16.0.0" } }, - "node_modules/filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", - "dev": true, - "dependencies": { - "minimatch": "^5.0.1" - } - }, - "node_modules/filelist/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/fill-range": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, + "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -9998,49 +10810,24 @@ } }, "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.1.tgz", + "integrity": "sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==", + "license": "MIT", "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" + "debug": "^4.4.0", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "on-finished": "^2.4.1", + "parseurl": "^1.3.3", + "statuses": "^2.0.1" }, "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/find-cache-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", - "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", - "dev": true, - "dependencies": { - "common-path-prefix": "^3.0.0", - "pkg-dir": "^7.0.0" - }, - "engines": { - "node": ">=14.16" + "node": ">= 18.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/find-up": { @@ -10048,6 +10835,7 @@ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, + "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -10064,6 +10852,7 @@ "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", "dev": true, + "license": "BSD-3-Clause", "bin": { "flat": "cli.js" } @@ -10073,6 +10862,7 @@ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", "dev": true, + "license": "MIT", "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.4" @@ -10082,22 +10872,23 @@ } }, "node_modules/flatted": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", - "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", - "dev": true + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", + "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", + "dev": true, + "license": "ISC" }, "node_modules/follow-redirects": { - "version": "1.15.6", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", - "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", - "dev": true, + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz", + "integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==", "funding": [ { "type": "individual", "url": "https://github.com/sponsors/RubenVerborgh" } ], + "license": "MIT", "engines": { "node": ">=4.0" }, @@ -10107,60 +10898,65 @@ } } }, - "node_modules/foreground-child": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", - "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", - "dev": true, + "node_modules/fontkit": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/fontkit/-/fontkit-2.0.4.tgz", + "integrity": "sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==", + "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", - "engines": { - "node": "*" + "@swc/helpers": "^0.5.12", + "brotli": "^1.3.2", + "clone": "^2.1.2", + "dfa": "^1.2.0", + "fast-deep-equal": "^3.1.3", + "restructure": "^3.0.0", + "tiny-inflate": "^1.0.3", + "unicode-properties": "^1.4.0", + "unicode-trie": "^2.0.0" } }, "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "dev": true, + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.6.tgz", + "integrity": "sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==", + "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.4", + "mime-types": "^2.1.35" }, "engines": { "node": ">= 6" } }, + "node_modules/form-data/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/form-data/node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -10170,6 +10966,7 @@ "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "dev": true, + "license": "MIT", "engines": { "node": "*" }, @@ -10179,68 +10976,27 @@ } }, "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", + "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==", + "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">= 0.8" } }, - "node_modules/front-matter": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/front-matter/-/front-matter-4.0.2.tgz", - "integrity": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==", - "dev": true, - "dependencies": { - "js-yaml": "^3.13.1" - } - }, - "node_modules/front-matter/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/front-matter/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/front-matter/node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, "node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", "dev": true, + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" }, "engines": { - "node": ">=14.14" + "node": ">=6 <7 || >=8" } }, "node_modules/fs-minipass": { @@ -10248,6 +11004,7 @@ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", "dev": true, + "license": "ISC", "dependencies": { "minipass": "^7.0.3" }, @@ -10259,7 +11016,8 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/fsevents": { "version": "2.3.3", @@ -10267,6 +11025,7 @@ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, "hasInstallScript": true, + "license": "MIT", "optional": true, "os": [ "darwin" @@ -10279,14 +11038,7 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -10296,6 +11048,7 @@ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -10304,20 +11057,40 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" } }, + "node_modules/get-east-asian-width": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz", + "integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -10326,32 +11099,26 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", "dependencies": { - "assert-plus": "^1.0.0" + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" } }, "node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", + "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", "dev": true, + "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -10368,58 +11135,62 @@ } }, "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, + "license": "ISC", "dependencies": { - "is-glob": "^4.0.1" + "is-glob": "^4.0.3" }, "engines": { - "node": ">= 6" + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regex.js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/glob-to-regex.js/-/glob-to-regex.js-1.2.0.tgz", + "integrity": "sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, "node_modules/glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", "dev": true, + "license": "MIT", "engines": { - "node": ">=4" - } - }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dependencies": { - "get-intrinsic": "^1.1.3" + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -10429,117 +11200,50 @@ "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true + "dev": true, + "license": "ISC" }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true + "node_modules/gradient-path": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/gradient-path/-/gradient-path-2.3.0.tgz", + "integrity": "sha512-vZdF/Z0EpqUztzWXFjFC16lqcialHacYoRonslk/bC6CuujkuIrqx7etlzdYHY4SnUU94LRWESamZKfkGh7yYQ==", + "license": "MIT", + "dependencies": { + "tinygradient": "^1.0.0" + } }, "node_modules/handle-thing": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", - "dev": true - }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/har-validator/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/har-validator/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } + "license": "MIT" }, - "node_modules/has-ansi/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "node_modules/has": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">= 0.4.0" } }, "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, + "license": "MIT", "engines": { - "node": ">=4" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", - "dependencies": { - "es-define-property": "^1.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -10551,6 +11255,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", "dependencies": { "has-symbols": "^1.0.3" }, @@ -10561,31 +11266,11 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hash-base": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", - "integrity": "sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz", + "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==", + "license": "MIT", "dependencies": { "function-bind": "^1.1.2" }, @@ -10593,40 +11278,43 @@ "node": ">= 0.4" } }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, "node_modules/hocon-parser": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/hocon-parser/-/hocon-parser-1.0.1.tgz", - "integrity": "sha512-qMKuQh6pLPQc0gXsl91hAJEjD4JghV1VukO5gKOzjolCnupCbGHpERzMCkZLwVDLq7sL8xR6P4iWhcM1my3HtA==" + "integrity": "sha512-qMKuQh6pLPQc0gXsl91hAJEjD4JghV1VukO5gKOzjolCnupCbGHpERzMCkZLwVDLq7sL8xR6P4iWhcM1my3HtA==", + "license": "ISC" + }, + "node_modules/hono": { + "version": "4.12.31", + "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.31.tgz", + "integrity": "sha512-zJIHFrl6bq3RDd2YusFNCDlM8qUprxKswyi/OPzPyzKDdyBXDqWx8bZlZ7R+saTdSTatUmb3O7K4SspGPaEOQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16.9.0" + } }, "node_modules/hosted-git-info": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz", - "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-9.0.3.tgz", + "integrity": "sha512-Hc+ghLoSt6QaYZUv0WBiIvmMDZuZZ7oaDvdH8MbfOO4lOsxdXLEvuC6ePoGs9H1X9oCLyq6+NVN0MKqD+ydxyg==", "dev": true, + "license": "ISC", "dependencies": { - "lru-cache": "^10.0.1" + "lru-cache": "^11.1.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "version": "11.5.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz", + "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==", "dev": true, + "license": "BlueOak-1.0.0", "engines": { - "node": "14 || >=16.14" + "node": "20 || >=22" } }, "node_modules/hpack.js": { @@ -10634,6 +11322,7 @@ "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dev": true, + "license": "MIT", "dependencies": { "inherits": "^2.0.1", "obuf": "^1.0.0", @@ -10641,32 +11330,17 @@ "wbuf": "^1.1.0" } }, - "node_modules/html-entities": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz", - "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/mdevils" - }, - { - "type": "patreon", - "url": "https://patreon.com/mdevils" - } - ] - }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/htmlparser2": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", - "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.1.0.tgz", + "integrity": "sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==", "dev": true, "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", @@ -10675,72 +11349,54 @@ "url": "https://github.com/sponsors/fb55" } ], + "license": "MIT", "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "entities": "^4.4.0" + "domutils": "^3.2.2", + "entities": "^7.0.1" + } + }, + "node_modules/htmlparser2/node_modules/entities": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz", + "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", + "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==", + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", - "dev": true - }, - "node_modules/http-errors": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", - "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/http-errors/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/http-errors/node_modules/setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" - }, - "node_modules/http-errors/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "engines": { - "node": ">= 0.6" - } + "dev": true, + "license": "MIT" }, "node_modules/http-parser-js": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", - "dev": true + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.10.tgz", + "integrity": "sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==", + "dev": true, + "license": "MIT" }, "node_modules/http-proxy": { "version": "1.18.1", "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, + "license": "MIT", "dependencies": { "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", @@ -10755,6 +11411,7 @@ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dev": true, + "license": "MIT", "dependencies": { "agent-base": "^7.1.0", "debug": "^4.3.4" @@ -10764,76 +11421,61 @@ } }, "node_modules/http-proxy-middleware": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-3.0.0.tgz", - "integrity": "sha512-36AV1fIaI2cWRzHo+rbcxhe3M3jUDCNzc4D5zRl57sEWRAxdXYtw7FSQKYY6PDKssiAKjLYypbssHk+xs/kMXw==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-3.0.7.tgz", + "integrity": "sha512-iwbQltVlx8bCrqePUM8C+hllHvdawVhQJaLrj1X7qllkvFQdXFsr16pW/mo9+JDVjN+QO2XUx9jd8SmoFkE5qw==", "dev": true, + "license": "MIT", "dependencies": { - "@types/http-proxy": "^1.17.10", - "debug": "^4.3.4", + "@types/http-proxy": "^1.17.15", + "debug": "^4.3.6", "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.5" + "is-glob": "^4.0.3", + "is-plain-object": "^5.0.0", + "micromatch": "^4.0.8" }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" + "node": "^14.18.0 || ^16.10.0 || >=18.0.0" } }, "node_modules/https-proxy-agent": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", - "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", "dev": true, + "license": "MIT", "dependencies": { - "agent-base": "^7.0.2", + "agent-base": "^7.1.2", "debug": "4" }, "engines": { "node": ">= 14" } }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" - } - }, "node_modules/hyperdyperid": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz", "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==", "dev": true, + "license": "MIT", "engines": { "node": ">=10.18" } }, "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.7.3.tgz", + "integrity": "sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==", + "license": "MIT", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { "node": ">=0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/icss-utils": { @@ -10841,6 +11483,7 @@ "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", "dev": true, + "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" }, @@ -10852,7 +11495,6 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, "funding": [ { "type": "github", @@ -10866,13 +11508,15 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "BSD-3-Clause" }, "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 4" } @@ -10881,39 +11525,56 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", "integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/ignore-walk": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.5.tgz", - "integrity": "sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-8.0.0.tgz", + "integrity": "sha512-FCeMZT4NiRQGh+YkeKMtWrOmBgWjHjMJ26WQWrRQyoyzqevdaGSakUaJW5xQYmjLlUVk2qUnCjYVBax9EKKg8A==", "dev": true, + "license": "ISC", "dependencies": { - "minimatch": "^9.0.0" + "minimatch": "^10.0.3" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/ignore-walk/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/ignore-walk/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz", + "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==", "dev": true, + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "18 || 20 || >=22" } }, "node_modules/ignore-walk/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^5.0.5" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -10924,6 +11585,7 @@ "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", "dev": true, + "license": "MIT", "optional": true, "bin": { "image-size": "bin/image-size.js" @@ -10932,23 +11594,19 @@ "node": ">=0.10.0" } }, - "node_modules/immediate": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", - "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", - "dev": true - }, "node_modules/immutable": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.6.tgz", - "integrity": "sha512-Ju0+lEMyzMVZarkTn/gqRpdqd5dOPaz1mCZ0SH3JV6iFw81PldE/PEB1hWVEA288HPt4WXW8O7AWxB10M+03QQ==", - "dev": true + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.9.tgz", + "integrity": "sha512-m8nVez3rwrgmWxtLMt1ZYXB2Lv7OKYn/disyxAlSDYAlKSlFoPPfIAmAM/M5xqL4m4C/wAPw7S2/CNaUii1Hxg==", + "dev": true, + "license": "MIT" }, "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "dev": true, + "license": "MIT", "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -10965,25 +11623,18 @@ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.19" } }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, + "license": "ISC", "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -10992,71 +11643,33 @@ "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" }, "node_modules/ini": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.3.tgz", - "integrity": "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-6.0.0.tgz", + "integrity": "sha512-IBTdIkzZNOpqm7q3dRqJvMaldXjDHWkEDfrwGEQTs5eaQMWV+djAhR+wahyNNMAa+qpbDUhBMVt4ZKNwpPm7xQ==", + "license": "ISC", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/inquirer": { - "version": "9.2.22", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.2.22.tgz", - "integrity": "sha512-SqLLa/Oe5rZUagTR9z+Zd6izyatHglbmbvVofo1KzuVB54YHleWzeHNLoR7FOICGOeQSqeLh1cordb3MzhGcEw==", - "dev": true, - "dependencies": { - "@inquirer/figures": "^1.0.2", - "@ljharb/through": "^2.3.13", - "ansi-escapes": "^4.3.2", - "chalk": "^5.3.0", - "cli-cursor": "^3.1.0", - "cli-width": "^4.1.0", - "external-editor": "^3.1.0", - "lodash": "^4.17.21", - "mute-stream": "1.0.0", - "ora": "^5.4.1", - "run-async": "^3.0.0", - "rxjs": "^7.8.1", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^6.2.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/inquirer/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/internmap": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/ip-address": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz", - "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.2.0.tgz", + "integrity": "sha512-/+S6j4E9AHvW9SWMSEY9Xfy66O5PWvVEJ08O0y5JGyEKQpojb0K0GKpz/v5HJ/G0vi3D2sjGK78119oXZeE0qA==", "dev": true, - "dependencies": { - "jsbn": "1.1.0", - "sprintf-js": "^1.1.3" - }, + "license": "MIT", "engines": { "node": ">= 12" } @@ -11065,36 +11678,24 @@ "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", "engines": { "node": ">= 0.10" } }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, + "license": "MIT", "dependencies": { "binary-extensions": "^2.0.0" }, @@ -11103,44 +11704,29 @@ } }, "node_modules/is-core-module": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.14.0.tgz", - "integrity": "sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==", + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", "dev": true, + "license": "MIT", "dependencies": { - "hasown": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "has": "^1.0.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", "dev": true, + "license": "MIT", "bin": { "is-docker": "cli.js" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -11151,16 +11737,22 @@ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-glob": { @@ -11168,6 +11760,7 @@ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, + "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" }, @@ -11180,6 +11773,7 @@ "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", "dev": true, + "license": "MIT", "dependencies": { "is-docker": "^3.0.0" }, @@ -11193,41 +11787,25 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-inside-container/node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "node_modules/is-interactive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", + "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", "dev": true, - "bin": { - "is-docker": "cli.js" - }, + "license": "MIT", "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", - "dev": true - }, "node_modules/is-network-error": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.1.0.tgz", - "integrity": "sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.3.2.tgz", + "integrity": "sha512-PhBY86zaxNZUuWP6h13Vu5oFe0XY6/UlKzQnYFELzGVHygP3MxmvTfYSG7GN3aIab/iWudSMgjSnG9Dq+nHrgA==", "dev": true, + "license": "MIT", "engines": { "node": ">=16" }, @@ -11240,57 +11818,17 @@ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.12.0" } }, - "node_modules/is-path-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha512-cnS56eR9SPAscL77ik76ATVqoPARTqPIVkMDVxRaWH06zT+6+CzIroYRJ0VVvm0Z1zfAvxvz9i/D3Ppjaqt5Nw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-path-in-cwd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", - "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", - "dev": true, - "dependencies": { - "is-path-inside": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-path-in-cwd/node_modules/is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha512-qhsCR/Esx4U4hg/9I19OVUAJkGWtjRYHMRgUMZE2TDdj+Ag+kttZanLupfddNyglzz50cUlmWzUaI37GDfNx/g==", - "dev": true, - "dependencies": { - "path-is-inside": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/is-plain-obj": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -11299,24 +11837,32 @@ } }, "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, + "node_modules/is-promise": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", + "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", + "license": "MIT" + }, "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "dev": true, + "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" @@ -11325,30 +11871,14 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" - }, "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", + "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", "dev": true, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -11358,30 +11888,38 @@ "version": "3.14.1", "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz", + "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==", "dev": true, + "license": "MIT", "dependencies": { - "is-docker": "^2.0.0" + "is-inside-container": "^1.0.0" }, "engines": { - "node": ">=8" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true, + "license": "MIT" }, "node_modules/isbinaryfile": { "version": "4.0.10", "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz", "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 8.0.0" }, @@ -11393,36 +11931,35 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - }, "node_modules/istanbul-lib-coverage": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.2.tgz", - "integrity": "sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==", + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", + "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.23.9", "@babel/parser": "^7.23.9", @@ -11439,6 +11976,7 @@ "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^4.0.0", @@ -11448,32 +11986,12 @@ "node": ">=10" } }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", @@ -11488,15 +12006,17 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/istanbul-reports": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", - "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz", + "integrity": "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" @@ -11505,255 +12025,29 @@ "node": ">=8" } }, - "node_modules/jackspeak": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz", - "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==", - "dev": true, - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, - "node_modules/jake": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.1.tgz", - "integrity": "sha512-61btcOHNnLnsOdtLgA5efqQWjnSi/vow5HbI7HMdKKWqvrKR1bLK3BPlJn9gcSaP2ewuamUSMB5XEy76KUIS2w==", - "dev": true, - "dependencies": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.4", - "minimatch": "^3.1.2" - }, - "bin": { - "jake": "bin/cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/jake/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jake/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jake/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jake/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jake/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jake/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jasmine": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/jasmine/-/jasmine-2.8.0.tgz", - "integrity": "sha512-KbdGQTf5jbZgltoHs31XGiChAPumMSY64OZMWLNYnEnMfG5uwGBhffePwuskexjT+/Jea/gU3qAU8344hNohSw==", - "dev": true, - "dependencies": { - "exit": "^0.1.2", - "glob": "^7.0.6", - "jasmine-core": "~2.8.0" - }, - "bin": { - "jasmine": "bin/jasmine.js" - } - }, "node_modules/jasmine-core": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-5.1.2.tgz", - "integrity": "sha512-2oIUMGn00FdUiqz6epiiJr7xcFyNYj3rDcfmnzfkBnHyBQ3cBQUs4mmyGsOb7TTLb9kxk7dBcmEmqhDKkBoDyA==", - "dev": true + "version": "5.13.0", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-5.13.0.tgz", + "integrity": "sha512-vsYjfh7lyqvZX5QgqKc4YH8phs7g96Z8bsdIFNEU3VqXhlHaq+vov/Fgn/sr6MiUczdZkyXRC3TX369Ll4Nzbw==", + "dev": true, + "license": "MIT" }, "node_modules/jasmine-spec-reporter": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/jasmine-spec-reporter/-/jasmine-spec-reporter-7.0.0.tgz", "integrity": "sha512-OtC7JRasiTcjsaCBPtMO0Tl8glCejM4J4/dNuOJdA8lBjz4PmWjYQ6pzb0uzpBNAWJMDudYuj9OdXJWqM2QTJg==", "dev": true, + "license": "Apache-2.0", "dependencies": { "colors": "1.4.0" } }, - "node_modules/jasmine/node_modules/jasmine-core": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-2.8.0.tgz", - "integrity": "sha512-SNkOkS+/jMZvLhuSx1fjhcNWUC/KG6oVyFUGkSBEr9n1axSNduWU8GlI7suaHXr4yxjet6KjrUZxUTE5WzzWwQ==", - "dev": true - }, - "node_modules/jasminewd2": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/jasminewd2/-/jasminewd2-2.2.0.tgz", - "integrity": "sha512-Rn0nZe4rfDhzA63Al3ZGh0E+JTmM6ESZYXJGKuqKGZObsAB9fwXPD03GjtIEvJBDOhN94T5MzbwZSqzFHSQPzg==", - "dev": true, - "engines": { - "node": ">= 6.9.x" - } - }, - "node_modules/jest-diff": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", - "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", - "dev": true, - "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^29.6.3", - "jest-get-type": "^29.6.3", - "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/jest-diff/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-get-type": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", - "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, "node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dev": true, + "license": "MIT", "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", @@ -11763,20 +12057,12 @@ "node": ">= 10.13.0" } }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -11788,25 +12074,54 @@ } }, "node_modules/jiti": { - "version": "1.21.6", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", - "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "version": "1.21.7", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", + "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", "dev": true, + "license": "MIT", "bin": { "jiti": "bin/jiti.js" } }, + "node_modules/jose": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/jose/-/jose-6.2.3.tgz", + "integrity": "sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/panva" + } + }, + "node_modules/js-md5": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/js-md5/-/js-md5-0.8.3.tgz", + "integrity": "sha512-qR0HB5uP6wCuRMrWPTrkMaev7MJZwJuuw4fnwAzRgP4J4/F8RwtodOKpGp4XpqsLBFzzgqIO42efFAyz2Et6KQ==", + "license": "MIT" + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.0.tgz", + "integrity": "sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/puzrin" + }, + { + "type": "github", + "url": "https://github.com/sponsors/nodeca" + } + ], + "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -11814,66 +12129,63 @@ "js-yaml": "bin/js-yaml.js" } }, - "node_modules/jsbn": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz", - "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==", - "dev": true - }, "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "dev": true, + "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, "engines": { - "node": ">=4" + "node": ">=6" } }, "node_modules/json-buffer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/json-parse-even-better-errors": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.2.tgz", - "integrity": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-5.0.0.tgz", + "integrity": "sha512-ZF1nxZ28VhQouRWhUcVlUIN3qwSgPuswK05s/HIaoetAoE/9tngVmCHjSxmSQPav1nd+lPtTL0YZ/2AFdR/iYQ==", "dev": true, + "license": "MIT", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - }, "node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-typed": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-8.0.2.tgz", + "integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==", + "dev": true, + "license": "BSD-2-Clause" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" + "dev": true, + "license": "MIT" }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, + "license": "MIT", "bin": { "json5": "lib/cli.js" }, @@ -11882,19 +12194,18 @@ } }, "node_modules/jsonc-parser": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", - "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", - "dev": true + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz", + "integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==", + "dev": true, + "license": "MIT" }, "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", "dev": true, - "dependencies": { - "universalify": "^2.0.0" - }, + "license": "MIT", "optionalDependencies": { "graceful-fs": "^4.1.6" } @@ -11906,14 +12217,16 @@ "dev": true, "engines": [ "node >= 0.2.0" - ] + ], + "license": "MIT" }, "node_modules/jsonwebtoken": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz", - "integrity": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==", + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.3.tgz", + "integrity": "sha512-MT/xP0CrubFRNLNKvxJ2BYfy53Zkm++5bX9dtuPbqAeQpTVe0MQTFhao8+Cp//EmJp244xt6Drw/GVEGCUj40g==", + "license": "MIT", "dependencies": { - "jws": "^3.2.2", + "jws": "^4.0.1", "lodash.includes": "^4.3.0", "lodash.isboolean": "^3.0.3", "lodash.isinteger": "^4.0.4", @@ -11929,56 +12242,33 @@ "npm": ">=6" } }, - "node_modules/jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/jszip": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", - "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", - "dev": true, - "dependencies": { - "lie": "~3.3.0", - "pako": "~1.0.2", - "readable-stream": "~2.3.6", - "setimmediate": "^1.0.5" - } - }, "node_modules/jwa": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", - "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz", + "integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==", + "license": "MIT", "dependencies": { - "buffer-equal-constant-time": "1.0.1", + "buffer-equal-constant-time": "^1.0.1", "ecdsa-sig-formatter": "1.0.11", "safe-buffer": "^5.0.1" } }, "node_modules/jws": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", - "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz", + "integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==", + "license": "MIT", "dependencies": { - "jwa": "^1.4.1", + "jwa": "^2.0.1", "safe-buffer": "^5.0.1" } }, "node_modules/karma": { - "version": "6.4.3", - "resolved": "https://registry.npmjs.org/karma/-/karma-6.4.3.tgz", - "integrity": "sha512-LuucC/RE92tJ8mlCwqEoRWXP38UMAqpnq98vktmS9SznSoUPPUJQbc91dHcxcunROvfQjdORVA/YFviH+Xci9Q==", + "version": "6.4.4", + "resolved": "https://registry.npmjs.org/karma/-/karma-6.4.4.tgz", + "integrity": "sha512-LrtUxbdvt1gOpo3gxG+VAJlJAEMhbWlM4YrFQgql98FwF7+K8K12LYO4hnDdUkNjeztYrOXEMqgTajSWgmtI/w==", "dev": true, + "license": "MIT", "dependencies": { "@colors/colors": "1.5.0", "body-parser": "^1.19.0", @@ -12017,6 +12307,7 @@ "resolved": "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-3.2.0.tgz", "integrity": "sha512-rE9RkUPI7I9mAxByQWkGJFXfFD6lE4gC5nPuZdobf/QdTEJI6EU4yIay/cfU/xV4ZxlM5JiTv7zWYgA64NpS5Q==", "dev": true, + "license": "MIT", "dependencies": { "which": "^1.2.1" } @@ -12026,6 +12317,7 @@ "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -12038,6 +12330,7 @@ "resolved": "https://registry.npmjs.org/karma-coverage/-/karma-coverage-2.2.1.tgz", "integrity": "sha512-yj7hbequkQP2qOSb20GuNSIyE//PgJWHwC2IydLE6XRtsnaflv+/OSGNssPjobYUlhVVagy99TQpqUt3vAUG7A==", "dev": true, + "license": "MIT", "dependencies": { "istanbul-lib-coverage": "^3.2.0", "istanbul-lib-instrument": "^5.1.0", @@ -12055,6 +12348,7 @@ "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, + "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", @@ -12071,6 +12365,7 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } @@ -12080,6 +12375,7 @@ "resolved": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-5.1.0.tgz", "integrity": "sha512-i/zQLFrfEpRyQoJF9fsCdTMOF5c2dK7C7OmsuKg2D0YSsuZSfQDiLuaiktbuio6F2wiCsZSnSnieIQ0ant/uzQ==", "dev": true, + "license": "MIT", "dependencies": { "jasmine-core": "^4.1.0" }, @@ -12095,6 +12391,7 @@ "resolved": "https://registry.npmjs.org/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-2.1.0.tgz", "integrity": "sha512-sPQE1+nlsn6Hwb5t+HHwyy0A1FNCVKuL1192b+XNauMYWThz2kweiBVW1DqloRpVvZIJkIoHVB7XRpK78n1xbQ==", "dev": true, + "license": "MIT", "peerDependencies": { "jasmine-core": "^4.0.0 || ^5.0.0", "karma": "^6.0.0", @@ -12105,30 +12402,67 @@ "version": "4.6.1", "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.6.1.tgz", "integrity": "sha512-VYz/BjjmC3klLJlLwA4Kw8ytk0zDSmbbDLNs794VnWmkcCB7I9aAL/D48VNQtmITyPvea2C3jdUMfc3kAoy0PQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/karma-source-map-support": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/karma-source-map-support/-/karma-source-map-support-1.4.0.tgz", "integrity": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==", "dev": true, + "license": "MIT", "dependencies": { "source-map-support": "^0.5.5" } }, - "node_modules/karma/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/karma/node_modules/body-parser": { + "version": "1.20.6", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.6.tgz", + "integrity": "sha512-p5tAzS57i5MV9fZFDj9LeIiTZEufbSe2eDozP+ElheSUq1m74CRq1jI4mYNDdVs9vQztXFLuk/Gd6BWTdwRJ5g==", "dev": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "bytes": "~3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "~1.2.0", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "on-finished": "~2.4.1", + "qs": "~6.15.1", + "raw-body": "~2.5.3", + "type-is": "~1.6.18", + "unpipe": "~1.0.0" }, "engines": { - "node": ">=8" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/karma/node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, "node_modules/karma/node_modules/cliui": { @@ -12136,44 +12470,231 @@ "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, + "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" } }, - "node_modules/karma/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/karma/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "ms": "2.0.0" } }, - "node_modules/karma/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true + "node_modules/karma/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/karma/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/karma/node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/karma/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/karma/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/karma/node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/karma/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/karma/node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/karma/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, + "node_modules/karma/node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/karma/node_modules/raw-body": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz", + "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==", + "dev": true, + "license": "MIT", + "dependencies": { + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/karma/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/karma/node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true, + "license": "ISC" }, "node_modules/karma/node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, + "node_modules/karma/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/karma/node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/karma/node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/karma/node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -12187,10 +12708,11 @@ } }, "node_modules/karma/node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "version": "16.2.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.2.tgz", + "integrity": "sha512-Nt9ZJjXTv5R8MHbqby/wXQ6Gi0Bb3TcYZkR1bzuL4yB2OxWPkXknz513gEF0GoA6tn00UpbPvERW8rzCuWCA6w==", "dev": true, + "license": "MIT", "dependencies": { "cliui": "^7.0.2", "escalade": "^3.1.1", @@ -12209,6 +12731,7 @@ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, + "license": "ISC", "engines": { "node": ">=10" } @@ -12218,6 +12741,7 @@ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, + "license": "MIT", "dependencies": { "json-buffer": "3.0.1" } @@ -12227,25 +12751,28 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/launch-editor": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.8.0.tgz", - "integrity": "sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==", + "version": "2.14.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.14.1.tgz", + "integrity": "sha512-QWBrQsMpH7gPr965dsKD/3cKWiNoTjpATQf++Xq63N6sKRGMwlVXz41O1IZTMfZQgBctD/K5Zt06+/I6pP6+HA==", "dev": true, + "license": "MIT", "dependencies": { - "picocolors": "^1.0.0", - "shell-quote": "^1.8.1" + "picocolors": "^1.1.1", + "shell-quote": "^1.8.4" } }, "node_modules/less": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/less/-/less-4.2.0.tgz", - "integrity": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/less/-/less-4.4.0.tgz", + "integrity": "sha512-kdTwsyRuncDfjEs0DlRILWNvxhDG/Zij4YLO4TMJgDLW+8OzpfkdPnRgrsRuY1o+oaxJGWsps5f/RVBgGmmN0w==", "dev": true, + "license": "Apache-2.0", "dependencies": { "copy-anything": "^2.0.1", "parse-node-version": "^1.0.1", @@ -12255,7 +12782,7 @@ "lessc": "bin/lessc" }, "engines": { - "node": ">=6" + "node": ">=14" }, "optionalDependencies": { "errno": "^0.1.1", @@ -12268,10 +12795,11 @@ } }, "node_modules/less-loader": { - "version": "12.2.0", - "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-12.2.0.tgz", - "integrity": "sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg==", + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-12.3.0.tgz", + "integrity": "sha512-0M6+uYulvYIWs52y0LqN4+QM9TqWAohYSNTo4htE8Z7Cn3G/qQMEmktfHmyJT23k+20kU9zHH2wrfFXkxNLtVw==", "dev": true, + "license": "MIT", "engines": { "node": ">= 18.12.0" }, @@ -12298,6 +12826,7 @@ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, + "license": "MIT", "optional": true, "dependencies": { "pify": "^4.0.1", @@ -12312,6 +12841,7 @@ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, + "license": "MIT", "optional": true, "bin": { "mime": "cli.js" @@ -12325,6 +12855,7 @@ "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true, + "license": "MIT", "optional": true, "engines": { "node": ">=6" @@ -12335,6 +12866,7 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, + "license": "ISC", "optional": true, "bin": { "semver": "bin/semver" @@ -12345,6 +12877,7 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, + "license": "BSD-3-Clause", "optional": true, "engines": { "node": ">=0.10.0" @@ -12355,6 +12888,7 @@ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" @@ -12368,6 +12902,7 @@ "resolved": "https://registry.npmjs.org/license-webpack-plugin/-/license-webpack-plugin-4.0.2.tgz", "integrity": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==", "dev": true, + "license": "ISC", "dependencies": { "webpack-sources": "^3.0.0" }, @@ -12380,63 +12915,136 @@ } } }, - "node_modules/lie": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", - "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", - "dev": true, + "node_modules/linebreak": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/linebreak/-/linebreak-1.1.0.tgz", + "integrity": "sha512-MHp03UImeVhB7XZtjd0E4n6+3xr5Dq/9xI/5FptGk5FrbDR3zagPa2DS6U8ks/3HjbKWG9Q1M2ufOzxV2qLYSQ==", + "license": "MIT", "dependencies": { - "immediate": "~3.0.5" + "base64-js": "0.0.8", + "unicode-trie": "^2.0.0" + } + }, + "node_modules/linebreak/node_modules/base64-js": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz", + "integrity": "sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" } }, "node_modules/lines-and-columns": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-2.0.4.tgz", - "integrity": "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==", + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true, + "license": "MIT" + }, + "node_modules/listr2": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-9.0.1.tgz", + "integrity": "sha512-SL0JY3DaxylDuo/MecFeiC+7pedM0zia33zl0vcjgwcq1q1FWWF1To9EIauPbl8GbMCU0R2e0uJ8bZunhYKD2g==", + "dev": true, + "license": "MIT", + "dependencies": { + "cli-truncate": "^4.0.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^6.1.0", + "rfdc": "^1.4.1", + "wrap-ansi": "^9.0.0" + }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=20.0.0" + } + }, + "node_modules/listr2/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/listr2/node_modules/eventemitter3": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz", + "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==", + "dev": true, + "license": "MIT" + }, + "node_modules/listr2/node_modules/wrap-ansi": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", + "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/lmdb": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-3.0.8.tgz", - "integrity": "sha512-9rp8JT4jPhCRJUL7vRARa2N06OLSYzLwQsEkhC6Qu5XbcLyM/XBLMzDlgS/K7l7c5CdURLdDk9uE+hPFIogHTQ==", + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/lmdb/-/lmdb-3.4.2.tgz", + "integrity": "sha512-nwVGUfTBUwJKXd6lRV8pFNfnrCC1+l49ESJRM19t/tFb/97QfJEixe5DYRvug5JO7DSFKoKaVy7oGMt5rVqZvg==", "dev": true, "hasInstallScript": true, + "license": "MIT", + "optional": true, "dependencies": { - "msgpackr": "^1.9.9", + "msgpackr": "^1.11.2", "node-addon-api": "^6.1.0", - "node-gyp-build-optional-packages": "5.1.1", - "ordered-binary": "^1.4.1", + "node-gyp-build-optional-packages": "5.2.2", + "ordered-binary": "^1.5.3", "weak-lru-cache": "^1.2.2" }, "bin": { "download-lmdb-prebuilds": "bin/download-prebuilds.js" }, "optionalDependencies": { - "@lmdb/lmdb-darwin-arm64": "3.0.8", - "@lmdb/lmdb-darwin-x64": "3.0.8", - "@lmdb/lmdb-linux-arm": "3.0.8", - "@lmdb/lmdb-linux-arm64": "3.0.8", - "@lmdb/lmdb-linux-x64": "3.0.8", - "@lmdb/lmdb-win32-x64": "3.0.8" + "@lmdb/lmdb-darwin-arm64": "3.4.2", + "@lmdb/lmdb-darwin-x64": "3.4.2", + "@lmdb/lmdb-linux-arm": "3.4.2", + "@lmdb/lmdb-linux-arm64": "3.4.2", + "@lmdb/lmdb-linux-x64": "3.4.2", + "@lmdb/lmdb-win32-arm64": "3.4.2", + "@lmdb/lmdb-win32-x64": "3.4.2" } }, "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.2.tgz", + "integrity": "sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, "node_modules/loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", + "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 12.13.0" } @@ -12446,6 +13054,7 @@ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, + "license": "MIT", "dependencies": { "p-locate": "^5.0.0" }, @@ -12457,141 +13066,180 @@ } }, "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz", + "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==", + "dev": true, + "license": "MIT" }, "node_modules/lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.includes": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", - "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" + "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==", + "license": "MIT" }, "node_modules/lodash.isboolean": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", + "license": "MIT" }, "node_modules/lodash.isinteger": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", - "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" + "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==", + "license": "MIT" }, "node_modules/lodash.isnumber": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==", + "license": "MIT" }, "node_modules/lodash.isplainobject": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "license": "MIT" }, "node_modules/lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "license": "MIT" }, "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/lodash.once": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" + "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==", + "license": "MIT" }, "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz", + "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==", "dev": true, + "license": "MIT", "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" + "chalk": "^5.3.0", + "is-unicode-supported": "^1.3.0" }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/log-symbols/node_modules/is-unicode-supported": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", + "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz", + "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==", + "dev": true, + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "ansi-escapes": "^7.0.0", + "cli-cursor": "^5.0.0", + "slice-ansi": "^7.1.0", + "strip-ansi": "^7.1.0", + "wrap-ansi": "^9.0.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/log-update/node_modules/is-fullwidth-code-point": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz", + "integrity": "sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==", "dev": true, + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "get-east-asian-width": "^1.3.1" }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-symbols/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/log-update/node_modules/slice-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.2.tgz", + "integrity": "sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==", "dev": true, + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "ansi-styles": "^6.2.1", + "is-fullwidth-code-point": "^5.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/log-symbols/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/log-symbols/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", + "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/log4js": { @@ -12599,6 +13247,7 @@ "resolved": "https://registry.npmjs.org/log4js/-/log4js-6.9.1.tgz", "integrity": "sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==", "dev": true, + "license": "Apache-2.0", "dependencies": { "date-format": "^4.0.14", "debug": "^4.3.4", @@ -12615,17 +13264,19 @@ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, + "license": "ISC", "dependencies": { "yallist": "^3.0.2" } }, "node_modules/magic-string": { - "version": "0.30.10", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", - "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", + "version": "0.30.17", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", + "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", "dev": true, + "license": "MIT", "dependencies": { - "@jridgewell/sourcemap-codec": "^1.4.15" + "@jridgewell/sourcemap-codec": "^1.5.0" } }, "node_modules/make-dir": { @@ -12633,6 +13284,7 @@ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, + "license": "MIT", "dependencies": { "semver": "^7.5.3" }, @@ -12647,90 +13299,123 @@ "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/make-fetch-happen": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.1.tgz", - "integrity": "sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==", + "version": "15.0.6", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-15.0.6.tgz", + "integrity": "sha512-Je0fLJ0F5atA7F+eIlLzk+Wkcl57JDf4kf+EW8xiP5E31xOQxkIxTbgf1Oi1Lw9tRI9UEMRdI5Vz2xTzoNU1Jw==", "dev": true, + "license": "ISC", "dependencies": { - "@npmcli/agent": "^2.0.0", - "cacache": "^18.0.0", + "@gar/promise-retry": "^1.0.0", + "@npmcli/agent": "^4.0.0", + "@npmcli/redact": "^4.0.0", + "cacache": "^20.0.1", "http-cache-semantics": "^4.1.1", - "is-lambda": "^1.0.1", "minipass": "^7.0.2", - "minipass-fetch": "^3.0.0", + "minipass-fetch": "^5.0.0", "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "proc-log": "^4.2.0", - "promise-retry": "^2.0.1", - "ssri": "^10.0.0" + "negotiator": "^1.0.0", + "proc-log": "^6.0.0", + "ssri": "^13.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/make-fetch-happen/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/material-icons": { - "version": "1.13.12", - "resolved": "https://registry.npmjs.org/material-icons/-/material-icons-1.13.12.tgz", - "integrity": "sha512-/2YoaB79IjUK2B2JB+vIXXYGtBfHb/XG66LvoKVM5ykHW7yfrV5SP6d7KLX6iijY6/G9GqwgtPQ/sbhFnOURVA==", - "dev": true + "version": "1.13.14", + "resolved": "https://registry.npmjs.org/material-icons/-/material-icons-1.13.14.tgz", + "integrity": "sha512-kZOfc7xCC0rAT8Q3DQixYAeT+tBqZnxkseQtp2bxBxz7q5pMAC+wmit7vJn1g/l7wRU+HEPq23gER4iPjGs5Cg==", + "dev": true, + "license": "Apache-2.0" }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" } }, "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz", + "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==", + "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">= 0.8" } }, "node_modules/memfs": { - "version": "4.9.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.9.3.tgz", - "integrity": "sha512-bsYSSnirtYTWi1+OPMFb0M048evMKyUYe0EbtuGQgq6BVQM1g1W8/KIUJCCvjgI/El0j6Q4WsmMiBwLUBSw8LA==", + "version": "4.64.0", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.64.0.tgz", + "integrity": "sha512-Kw72fgY7Wn+sD8KmtNWSafl1dz0UvAsE/PHs3YVfLiaZuA3HxNm9sRLqAu0ATiBGJvME1PxZXbBZPv5GycDeAw==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@jsonjoy.com/json-pack": "^1.0.3", - "@jsonjoy.com/util": "^1.1.2", - "tree-dump": "^1.0.1", + "@jsonjoy.com/fs-core": "4.64.0", + "@jsonjoy.com/fs-fsa": "4.64.0", + "@jsonjoy.com/fs-node": "4.64.0", + "@jsonjoy.com/fs-node-builtins": "4.64.0", + "@jsonjoy.com/fs-node-to-fsa": "4.64.0", + "@jsonjoy.com/fs-node-utils": "4.64.0", + "@jsonjoy.com/fs-print": "4.64.0", + "@jsonjoy.com/fs-snapshot": "4.64.0", + "@jsonjoy.com/json-pack": "^1.11.0", + "@jsonjoy.com/util": "^1.9.0", + "glob-to-regex.js": "^1.0.1", + "thingies": "^2.5.0", + "tree-dump": "^1.0.3", "tslib": "^2.0.0" }, - "engines": { - "node": ">= 4.0.0" - }, "funding": { "type": "github", "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz", + "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 8" } @@ -12739,15 +13424,18 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/micromatch": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", - "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, + "license": "MIT", "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" @@ -12757,10 +13445,11 @@ } }, "node_modules/micromatch/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", "dev": true, + "license": "MIT", "engines": { "node": ">=8.6" }, @@ -12768,28 +13457,12 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "bin": { - "miller-rabin": "bin/miller-rabin" - } - }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, "node_modules/mime": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", "dev": true, + "license": "MIT", "bin": { "mime": "cli.js" }, @@ -12798,38 +13471,49 @@ } }, "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.2.tgz", + "integrity": "sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==", + "license": "MIT", "dependencies": { - "mime-db": "1.52.0" + "mime-db": "^1.54.0" }, "engines": { - "node": ">= 0.6" + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "node_modules/mimic-function": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", + "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=6" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/mini-css-extract-plugin": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.0.tgz", - "integrity": "sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==", + "version": "2.9.4", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.9.4.tgz", + "integrity": "sha512-ZWYT7ln73Hptxqxk2DxPU9MmapXRhxkJD6tkSR04dnQxm8BGu2hzgKLugK5yySD97u/8yy7Ma7E76k9ZdvtjkQ==", "dev": true, + "license": "MIT", "dependencies": { "schema-utils": "^4.0.0", "tapable": "^2.2.1" @@ -12848,18 +13532,16 @@ "node_modules/minimalistic-assert": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true, + "license": "ISC" }, "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", "dev": true, + "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" }, @@ -12872,15 +13554,17 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", + "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", "dev": true, + "license": "BlueOak-1.0.0", "engines": { "node": ">=16 || 14 >=14.17" } @@ -12890,6 +13574,7 @@ "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz", "integrity": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==", "dev": true, + "license": "ISC", "dependencies": { "minipass": "^7.0.3" }, @@ -12898,27 +13583,29 @@ } }, "node_modules/minipass-fetch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.5.tgz", - "integrity": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-5.0.2.tgz", + "integrity": "sha512-2d0q2a8eCi2IRg/IGubCNRJoYbA1+YPXAzQVRFmB45gdGZafyivnZ5YSEfo3JikbjGxOdntGFvBQGqaSMXlAFQ==", "dev": true, + "license": "MIT", "dependencies": { "minipass": "^7.0.3", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" + "minipass-sized": "^2.0.0", + "minizlib": "^3.0.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" }, "optionalDependencies": { - "encoding": "^0.1.13" + "iconv-lite": "^0.7.2" } }, "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.7.tgz", + "integrity": "sha512-TbqTz9cUwWyHS2Dy89P3ocAGUGxKjjLuR9z8w4WUTGAVgEj17/4nhgo2Du56i0Fm3Pm30g4iA8Lcqctc76jCzA==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { "minipass": "^3.0.0" }, @@ -12931,6 +13618,7 @@ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, @@ -12942,13 +13630,15 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/minipass-pipeline": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", "dev": true, + "license": "ISC", "dependencies": { "minipass": "^3.0.0" }, @@ -12961,6 +13651,7 @@ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dev": true, + "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, @@ -12972,74 +13663,41 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-2.0.0.tgz", + "integrity": "sha512-zSsHhto5BcUVM2m1LurnXY6M//cGhVaegT71OfOXoprxT6o780GZd792ea6FfrQkuU4usHZIUczAQMRUE2plzA==", "dev": true, + "license": "ISC", "dependencies": { - "minipass": "^3.0.0" + "minipass": "^7.1.2" }, "engines": { "node": ">=8" } }, - "node_modules/minipass-sized/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minipass-sized/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz", + "integrity": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==", "dev": true, + "license": "MIT", "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" + "minipass": "^7.1.2" }, "engines": { - "node": ">= 8" + "node": ">= 18" } }, - "node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/minizlib/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, + "license": "MIT", "dependencies": { "minimist": "^1.2.6" }, @@ -13048,34 +13706,39 @@ } }, "node_modules/mrmime": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", - "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", + "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" }, "node_modules/msgpackr": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.10.2.tgz", - "integrity": "sha512-L60rsPynBvNE+8BWipKKZ9jHcSGbtyJYIwjRq0VrIvQ08cRjntGXJYW/tmciZ2IHWIY8WEW32Qa2xbh5+SKBZA==", + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.12.1.tgz", + "integrity": "sha512-4EUH9tQHnMmEgzW/MdAP0KIfa1T9AF+htl0ffe2n5vb2EKn9y2co8ccpgWko6S52Jy1PQZKwRnx5/KkYjtd9MQ==", "dev": true, + "license": "MIT", + "optional": true, "optionalDependencies": { "msgpackr-extract": "^3.0.2" } }, "node_modules/msgpackr-extract": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.3.tgz", - "integrity": "sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.4.tgz", + "integrity": "sha512-4kmO/MdyUIkLIvTPr8VHLil4AtoKIoniWPIEk5+CDy0xnWC84azhSFmuJ7PxZdsYtiP5kEeQsORAVIeMgxT+Hw==", "dev": true, "hasInstallScript": true, + "license": "MIT", "optional": true, "dependencies": { "node-gyp-build-optional-packages": "5.2.2" @@ -13084,27 +13747,12 @@ "download-msgpackr-prebuilds": "bin/download-prebuilds.js" }, "optionalDependencies": { - "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.3", - "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.3", - "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.3", - "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.3", - "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.3", - "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.3" - } - }, - "node_modules/msgpackr-extract/node_modules/node-gyp-build-optional-packages": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.2.2.tgz", - "integrity": "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==", - "dev": true, - "optional": true, - "dependencies": { - "detect-libc": "^2.0.1" - }, - "bin": { - "node-gyp-build-optional-packages": "bin.js", - "node-gyp-build-optional-packages-optional": "optional.js", - "node-gyp-build-optional-packages-test": "build-test.js" + "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.4", + "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.4", + "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.4", + "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.4", + "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.4", + "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.4" } }, "node_modules/multicast-dns": { @@ -13112,6 +13760,7 @@ "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dev": true, + "license": "MIT", "dependencies": { "dns-packet": "^5.2.2", "thunky": "^1.0.2" @@ -13121,18 +13770,19 @@ } }, "node_modules/mute-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz", - "integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-2.0.0.tgz", + "integrity": "sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==", "dev": true, + "license": "ISC", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^18.17.0 || >=20.5.0" } }, "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "version": "3.3.16", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz", + "integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==", "dev": true, "funding": [ { @@ -13140,6 +13790,7 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -13151,13 +13802,15 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/needle": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/needle/-/needle-3.3.1.tgz", - "integrity": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.5.0.tgz", + "integrity": "sha512-jaQyPKKk2YokHrEg+vFDYxXIHTCBgiZwSHOoVx/8V3GIBS8/VN6NdVRmg8q1ERtPkMvmOvebsgga4sAj5hls/w==", "dev": true, + "license": "MIT", "optional": true, "dependencies": { "iconv-lite": "^0.6.3", @@ -13175,6 +13828,7 @@ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, + "license": "MIT", "optional": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" @@ -13184,9 +13838,10 @@ } }, "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz", + "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==", + "license": "MIT", "engines": { "node": ">= 0.6" } @@ -13195,25 +13850,28 @@ "version": "2.6.2", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/ng-qrcode": { - "version": "18.0.0", - "resolved": "https://registry.npmjs.org/ng-qrcode/-/ng-qrcode-18.0.0.tgz", - "integrity": "sha512-qmtU6n8lxyTGxrtRbzXYPR7JNGwQ6SZXqnEUQksjmFsPLssZRchal9zlw4eUMPm/bRxy+hSV6dWe/59mTNtc8A==", + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/ng-qrcode/-/ng-qrcode-21.0.0.tgz", + "integrity": "sha512-dtjzHsJXe/StMixj6FckeOw5hnjvAfr0VRSj55uDRyBJhdBMKtE9lvfPSYYOrMO4hWs6fInr1/XhFQyR2dVllA==", + "license": "MIT", "dependencies": { "qrcode": "^1.5.3", "tslib": "^2.6.2" }, "peerDependencies": { - "@angular/common": ">=18 <19", - "@angular/core": ">=18 <19" + "@angular/common": ">=21 <22", + "@angular/core": ">=21 <22" } }, "node_modules/ngx-perfect-scrollbar-next": { "version": "10.1.1", "resolved": "https://registry.npmjs.org/ngx-perfect-scrollbar-next/-/ngx-perfect-scrollbar-next-10.1.1.tgz", "integrity": "sha512-4D4lKtjnBCSQ1LXweWrColVV0OZ87K/5etaNJvncWSk6TD5VFVyhP35wTwg+Agulhdoghfmo0qe97ZFH2KjT0Q==", + "license": "MIT", "dependencies": { "perfect-scrollbar": "1.5.5", "resize-observer-polyfill": "^1.5.1", @@ -13224,84 +13882,46 @@ "@angular/core": ">=9.0.0" } }, - "node_modules/nice-napi": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nice-napi/-/nice-napi-1.0.2.tgz", - "integrity": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "!win32" - ], - "dependencies": { - "node-addon-api": "^3.0.0", - "node-gyp-build": "^4.2.2" - } - }, - "node_modules/nice-napi/node_modules/node-addon-api": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-3.2.1.tgz", - "integrity": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==", - "dev": true, - "optional": true - }, "node_modules/node-addon-api": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.1.0.tgz", "integrity": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==", - "dev": true - }, - "node_modules/node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "dev": true, - "engines": { - "node": ">= 6.13.0" - } + "license": "MIT", + "optional": true }, "node_modules/node-gyp": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.1.0.tgz", - "integrity": "sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==", + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-12.4.0.tgz", + "integrity": "sha512-OMcPNvqTCFUnNaBlmdgq+lfNqY7gTiSmNRDjY3uAXRyudeKZEZxu3CLtjMQrx4zZxCX2b/mpNqTtwuCJgXhHkw==", "dev": true, + "license": "MIT", "dependencies": { "env-paths": "^2.2.0", "exponential-backoff": "^3.1.1", - "glob": "^10.3.10", "graceful-fs": "^4.2.6", - "make-fetch-happen": "^13.0.0", - "nopt": "^7.0.0", - "proc-log": "^3.0.0", + "nopt": "^9.0.0", + "proc-log": "^6.0.0", "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^4.0.0" + "tar": "^7.5.4", + "tinyglobby": "^0.2.12", + "undici": "^6.25.0", + "which": "^6.0.0" }, "bin": { "node-gyp": "bin/node-gyp.js" }, "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/node-gyp-build": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", - "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", - "dev": true, - "optional": true, - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/node-gyp-build-optional-packages": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.1.1.tgz", - "integrity": "sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.2.2.tgz", + "integrity": "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==", "dev": true, + "license": "MIT", + "optional": true, "dependencies": { "detect-libc": "^2.0.1" }, @@ -13311,108 +13931,63 @@ "node-gyp-build-optional-packages-test": "build-test.js" } }, - "node_modules/node-gyp/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/node-gyp/node_modules/glob": { - "version": "10.4.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", - "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/node-gyp/node_modules/isexe": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", - "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-4.0.0.tgz", + "integrity": "sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==", "dev": true, + "license": "BlueOak-1.0.0", "engines": { - "node": ">=16" - } - }, - "node_modules/node-gyp/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=20" } }, "node_modules/node-gyp/node_modules/proc-log": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", - "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", "dev": true, + "license": "ISC", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/node-gyp/node_modules/which": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", - "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-6.0.1.tgz", + "integrity": "sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==", "dev": true, + "license": "ISC", "dependencies": { - "isexe": "^3.1.1" + "isexe": "^4.0.0" }, "bin": { "node-which": "bin/which.js" }, "engines": { - "node": "^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, - "node_modules/node-machine-id": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/node-machine-id/-/node-machine-id-1.1.12.tgz", - "integrity": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==", - "dev": true - }, "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", - "dev": true + "version": "2.0.51", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.51.tgz", + "integrity": "sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } }, "node_modules/nodemon": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.4.tgz", - "integrity": "sha512-wjPBbFhtpJwmIeY2yP7QF+UKzPfltVGtfce1g/bB15/8vCGZj8uxD62b/b9M9/WVgme0NZudpownKN+c0plXlQ==", + "version": "3.1.14", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.14.tgz", + "integrity": "sha512-jakjZi93UtB3jHMWsXL68FXSAosbLfY0In5gtKq3niLSkrWznrVBzXFNOEMJUfc9+Ke7SHWoAZsiMkNP3vq6Jw==", "dev": true, + "license": "MIT", "dependencies": { "chokidar": "^3.5.2", "debug": "^4", "ignore-by-default": "^1.0.1", - "minimatch": "^3.1.2", + "minimatch": "^10.2.1", "pstree.remy": "^1.1.8", "semver": "^7.5.3", "simple-update-notifier": "^2.0.0", @@ -13431,34 +14006,146 @@ "url": "https://opencollective.com/nodemon" } }, - "node_modules/nopt": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.1.tgz", - "integrity": "sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==", + "node_modules/nodemon/node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", "dev": true, + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" + } + }, + "node_modules/nodemon/node_modules/brace-expansion": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.8.tgz", + "integrity": "sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==", + "dev": true, + "license": "MIT", "dependencies": { - "abbrev": "^2.0.0" + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/nodemon/node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/nodemon/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/nodemon/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/nodemon/node_modules/minimatch": { + "version": "10.2.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.6.tgz", + "integrity": "sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "brace-expansion": "^5.0.8" + }, + "engines": { + "node": "18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/nodemon/node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/nodemon/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/nodemon/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/nopt": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-9.0.0.tgz", + "integrity": "sha512-Zhq3a+yFKrYwSBluL4H9XP3m3y5uvQkB/09CwDruCiRmR/UJYnn9W4R48ry0uGC70aeTPKLynBtscP9efFFcPw==", + "dev": true, + "license": "ISC", + "dependencies": { + "abbrev": "^4.0.0" }, "bin": { "nopt": "bin/nopt.js" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/normalize-package-data": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.1.tgz", - "integrity": "sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==", - "dev": true, - "dependencies": { - "hosted-git-info": "^7.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/normalize-path": { @@ -13466,6 +14153,7 @@ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -13475,114 +14163,131 @@ "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/npm-bundled": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.1.tgz", - "integrity": "sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-5.0.0.tgz", + "integrity": "sha512-JLSpbzh6UUXIEoqPsYBvVNVmyrjVZ1fzEFbqxKkTJQkWBO3xFzFT+KDnSKQWwOQNbuWRwt5LSD6HOTLGIWzfrw==", "dev": true, + "license": "ISC", "dependencies": { - "npm-normalize-package-bin": "^3.0.0" + "npm-normalize-package-bin": "^5.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/npm-install-checks": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.3.0.tgz", - "integrity": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-8.0.0.tgz", + "integrity": "sha512-ScAUdMpyzkbpxoNekQ3tNRdFI8SJ86wgKZSQZdUxT+bj0wVFpsEMWnkXP0twVe1gJyNF5apBWDJhhIbgrIViRA==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "semver": "^7.1.1" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/npm-normalize-package-bin": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", - "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-5.0.0.tgz", + "integrity": "sha512-CJi3OS4JLsNMmr2u07OJlhcrPxCeOeP/4xq67aWNai6TNWWbTrlNDgl8NcFKVlcBKp18GPj+EzbNIgrBfZhsag==", "dev": true, + "license": "ISC", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/npm-package-arg": { - "version": "11.0.2", - "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.2.tgz", - "integrity": "sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==", + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-13.0.0.tgz", + "integrity": "sha512-+t2etZAGcB7TbbLHfDwooV9ppB2LhhcT6A+L9cahsf9mEUAoQ6CktLEVvEnpD0N5CkX7zJqnPGaFtoQDy9EkHQ==", "dev": true, + "license": "ISC", "dependencies": { - "hosted-git-info": "^7.0.0", - "proc-log": "^4.0.0", + "hosted-git-info": "^9.0.0", + "proc-log": "^5.0.0", "semver": "^7.3.5", - "validate-npm-package-name": "^5.0.0" + "validate-npm-package-name": "^6.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/npm-packlist": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-8.0.2.tgz", - "integrity": "sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==", + "version": "10.0.4", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-10.0.4.tgz", + "integrity": "sha512-uMW73iajD8hiH4ZBxEV3HC+eTnppIqwakjOYuvgddnalIw2lJguKviK1pcUJDlIWm1wSJkchpDZDSVVsZEYRng==", "dev": true, + "license": "ISC", "dependencies": { - "ignore-walk": "^6.0.4" + "ignore-walk": "^8.0.0", + "proc-log": "^6.0.0" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/npm-packlist/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/npm-pick-manifest": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.1.tgz", - "integrity": "sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==", + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-11.0.3.tgz", + "integrity": "sha512-buzyCfeoGY/PxKqmBqn1IUJrZnUi1VVJTdSSRPGI60tJdUhUoSQFhs0zycJokDdOznQentgrpf8LayEHyyYlqQ==", "dev": true, + "license": "ISC", "dependencies": { - "npm-install-checks": "^6.0.0", - "npm-normalize-package-bin": "^3.0.0", - "npm-package-arg": "^11.0.0", + "npm-install-checks": "^8.0.0", + "npm-normalize-package-bin": "^5.0.0", + "npm-package-arg": "^13.0.0", "semver": "^7.3.5" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/npm-registry-fetch": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-17.1.0.tgz", - "integrity": "sha512-5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA==", + "version": "19.1.1", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-19.1.1.tgz", + "integrity": "sha512-TakBap6OM1w0H73VZVDf44iFXsOS3h+L4wVMXmbWOQroZgFhMch0juN6XSzBNlD965yIKvWg2dfu7NSiaYLxtw==", "dev": true, + "license": "ISC", "dependencies": { - "@npmcli/redact": "^2.0.0", + "@npmcli/redact": "^4.0.0", "jsonparse": "^1.3.1", - "make-fetch-happen": "^13.0.0", + "make-fetch-happen": "^15.0.0", "minipass": "^7.0.2", - "minipass-fetch": "^3.0.0", - "minizlib": "^2.1.2", - "npm-package-arg": "^11.0.0", - "proc-log": "^4.0.0" + "minipass-fetch": "^5.0.0", + "minizlib": "^3.0.1", + "npm-package-arg": "^13.0.0", + "proc-log": "^6.0.0" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "node_modules/npm-registry-fetch/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", "dev": true, - "dependencies": { - "path-key": "^3.0.0" - }, + "license": "ISC", "engines": { - "node": ">=8" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/nth-check": { @@ -13590,6 +14295,7 @@ "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0" }, @@ -13597,232 +14303,21 @@ "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/nx": { - "version": "19.3.1", - "resolved": "https://registry.npmjs.org/nx/-/nx-19.3.1.tgz", - "integrity": "sha512-dDkhnXMpnDN5/ZJxJXz7wPlKA3pQwQmwNQ3YmTrCwucNbpwNRdwXiDgbLpjlGCtaeE9yZh2E/dAH1HNbgViJ6g==", - "dev": true, - "hasInstallScript": true, - "dependencies": { - "@nrwl/tao": "19.3.1", - "@yarnpkg/lockfile": "^1.1.0", - "@yarnpkg/parsers": "3.0.0-rc.46", - "@zkochan/js-yaml": "0.0.7", - "axios": "^1.6.0", - "chalk": "^4.1.0", - "cli-cursor": "3.1.0", - "cli-spinners": "2.6.1", - "cliui": "^8.0.1", - "dotenv": "~16.3.1", - "dotenv-expand": "~10.0.0", - "enquirer": "~2.3.6", - "figures": "3.2.0", - "flat": "^5.0.2", - "front-matter": "^4.0.2", - "fs-extra": "^11.1.0", - "ignore": "^5.0.4", - "jest-diff": "^29.4.1", - "jsonc-parser": "3.2.0", - "lines-and-columns": "~2.0.3", - "minimatch": "9.0.3", - "node-machine-id": "1.1.12", - "npm-run-path": "^4.0.1", - "open": "^8.4.0", - "ora": "5.3.0", - "semver": "^7.5.3", - "string-width": "^4.2.3", - "strong-log-transformer": "^2.1.0", - "tar-stream": "~2.2.0", - "tmp": "~0.2.1", - "tsconfig-paths": "^4.1.2", - "tslib": "^2.3.0", - "yargs": "^17.6.2", - "yargs-parser": "21.1.1" - }, - "bin": { - "nx": "bin/nx.js", - "nx-cloud": "bin/nx-cloud.js" - }, - "optionalDependencies": { - "@nx/nx-darwin-arm64": "19.3.1", - "@nx/nx-darwin-x64": "19.3.1", - "@nx/nx-freebsd-x64": "19.3.1", - "@nx/nx-linux-arm-gnueabihf": "19.3.1", - "@nx/nx-linux-arm64-gnu": "19.3.1", - "@nx/nx-linux-arm64-musl": "19.3.1", - "@nx/nx-linux-x64-gnu": "19.3.1", - "@nx/nx-linux-x64-musl": "19.3.1", - "@nx/nx-win32-arm64-msvc": "19.3.1", - "@nx/nx-win32-x64-msvc": "19.3.1" - }, - "peerDependencies": { - "@swc-node/register": "^1.8.0", - "@swc/core": "^1.3.85" - }, - "peerDependenciesMeta": { - "@swc-node/register": { - "optional": true - }, - "@swc/core": { - "optional": true - } - } - }, - "node_modules/nx/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/nx/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/nx/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/nx/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/nx/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/nx/node_modules/dotenv": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.2.tgz", - "integrity": "sha512-HTlk5nmhkm8F6JcdXvHIzaorzCoziNQT9mGxLPVXW8wJF1TiGSL60ZGB4gHWabHOaMmWmhvk2/lPHfnBiT78AQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/motdotla/dotenv?sponsor=1" - } - }, - "node_modules/nx/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/nx/node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", - "dev": true - }, - "node_modules/nx/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/nx/node_modules/ora": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.3.0.tgz", - "integrity": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==", - "dev": true, - "dependencies": { - "bl": "^4.0.3", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "log-symbols": "^4.0.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nx/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "engines": { - "node": "*" - } - }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/object-inspect": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", - "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -13830,39 +14325,18 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/object-is": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", - "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "engines": { - "node": ">= 0.4" - } - }, "node_modules/obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", "dependencies": { "ee-first": "1.1.1" }, @@ -13871,9 +14345,10 @@ } }, "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.1.0.tgz", + "integrity": "sha512-737ZY3yNnXy37FHkQxPzt4UZ2UWPWiCZWLvFZ4fu5cueciegX0zGPnrlY6bwRg4FdQOe9YU8MkmJwGhoMybl8A==", + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -13882,38 +14357,41 @@ "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, + "license": "ISC", "dependencies": { "wrappy": "1" } }, "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz", + "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==", "dev": true, + "license": "MIT", "dependencies": { - "mimic-fn": "^2.1.0" + "mimic-function": "^5.0.0" }, "engines": { - "node": ">=6" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/open": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", - "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.2.0.tgz", + "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==", "dev": true, + "license": "MIT", "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "wsl-utils": "^0.1.0" }, "engines": { - "node": ">=12" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -13924,6 +14402,7 @@ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, + "license": "MIT", "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", @@ -13937,117 +14416,42 @@ } }, "node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-8.2.0.tgz", + "integrity": "sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==", "dev": true, + "license": "MIT", "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" + "chalk": "^5.3.0", + "cli-cursor": "^5.0.0", + "cli-spinners": "^2.9.2", + "is-interactive": "^2.0.0", + "is-unicode-supported": "^2.0.0", + "log-symbols": "^6.0.0", + "stdin-discarder": "^0.2.2", + "string-width": "^7.2.0", + "strip-ansi": "^7.1.0" }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ora/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ora/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/ora/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ora/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/ora/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ora/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/ordered-binary": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.5.1.tgz", - "integrity": "sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==", - "dev": true - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.6.1.tgz", + "integrity": "sha512-QkCdPooczexPLiXIrbVOPYkR3VO3T6v2OyKRkR1Xbhpy7/LAVXwahnRCgRp78Oe/Ehf0C/HATAxfSr6eA1oX+w==", "dev": true, - "engines": { - "node": ">=0.10.0" - } + "license": "MIT", + "optional": true }, "node_modules/otplib": { "version": "12.0.1", "resolved": "https://registry.npmjs.org/otplib/-/otplib-12.0.1.tgz", "integrity": "sha512-xDGvUOQjop7RDgxTQ+o4pOol0/3xSZzawTiPKRrHnQWAy0WjhNs/5HdIDJCrqC4MBynmjXgULc6YfioaxZeFgg==", + "license": "MIT", "dependencies": { "@otplib/core": "^12.0.1", "@otplib/preset-default": "^12.0.1", @@ -14059,6 +14463,7 @@ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, + "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, @@ -14074,6 +14479,7 @@ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, + "license": "MIT", "dependencies": { "p-limit": "^3.0.2" }, @@ -14085,25 +14491,24 @@ } }, "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.5.tgz", + "integrity": "sha512-e8vJF4XdVkzqqSHguEMz41mQO1wKwxKm5ENrUJQUu9kLDCtn83cxbyHZcszr4QC5zEA7WffRRC4gsTecC7J9oA==", "dev": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-retry": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-6.2.0.tgz", - "integrity": "sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-6.2.1.tgz", + "integrity": "sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/retry": "0.12.2", "is-network-error": "^1.0.0", @@ -14116,71 +14521,69 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-retry/node_modules/retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "license": "MIT", "engines": { "node": ">=6" } }, - "node_modules/package-json-from-dist": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", - "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", - "dev": true - }, "node_modules/pacote": { - "version": "18.0.6", - "resolved": "https://registry.npmjs.org/pacote/-/pacote-18.0.6.tgz", - "integrity": "sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==", + "version": "21.5.1", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-21.5.1.tgz", + "integrity": "sha512-KvcJ9iy3crysCsgqc4+PknH/w6jkrp8JN36mpZBPwNaDRwTfMZD37YzRazNstiZUOhuF5pno9f78n9mEJBavwg==", "dev": true, + "license": "ISC", "dependencies": { - "@npmcli/git": "^5.0.0", - "@npmcli/installed-package-contents": "^2.0.1", - "@npmcli/package-json": "^5.1.0", - "@npmcli/promise-spawn": "^7.0.0", - "@npmcli/run-script": "^8.0.0", - "cacache": "^18.0.0", + "@gar/promise-retry": "^1.0.0", + "@npmcli/git": "^7.0.0", + "@npmcli/installed-package-contents": "^4.0.0", + "@npmcli/package-json": "^7.0.0", + "@npmcli/promise-spawn": "^9.0.0", + "@npmcli/run-script": "^10.0.0", + "cacache": "^20.0.0", "fs-minipass": "^3.0.0", "minipass": "^7.0.2", - "npm-package-arg": "^11.0.0", - "npm-packlist": "^8.0.0", - "npm-pick-manifest": "^9.0.0", - "npm-registry-fetch": "^17.0.0", - "proc-log": "^4.0.0", - "promise-retry": "^2.0.1", - "sigstore": "^2.2.0", - "ssri": "^10.0.0", - "tar": "^6.1.11" + "npm-package-arg": "^13.0.0", + "npm-packlist": "^10.0.1", + "npm-pick-manifest": "^11.0.1", + "npm-registry-fetch": "^19.0.0", + "proc-log": "^6.0.0", + "sigstore": "^4.0.0", + "ssri": "^13.0.0", + "tar": "^7.4.3" }, "bin": { "pacote": "bin/index.js" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" + } + }, + "node_modules/pacote/node_modules/proc-log": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-6.1.0.tgz", + "integrity": "sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", - "dev": true + "license": "(MIT AND Zlib)" }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, + "license": "MIT", "dependencies": { "callsites": "^3.0.0" }, @@ -14188,27 +14591,12 @@ "node": ">=6" } }, - "node_modules/parse-asn1": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.7.tgz", - "integrity": "sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==", - "dependencies": { - "asn1.js": "^4.10.1", - "browserify-aes": "^1.2.0", - "evp_bytestokey": "^1.0.3", - "hash-base": "~3.0", - "pbkdf2": "^3.1.2", - "safe-buffer": "^5.2.1" - }, - "engines": { - "node": ">= 0.10" - } - }, "node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -14226,65 +14614,91 @@ "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "node_modules/parse-json/node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/parse-node-version": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.10" } }, "node_modules/parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", - "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.1.tgz", + "integrity": "sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==", "dev": true, + "license": "MIT", "dependencies": { - "entities": "^4.4.0" + "entities": "^8.0.0" }, "funding": { "url": "https://github.com/inikulin/parse5?sponsor=1" } }, "node_modules/parse5-html-rewriting-stream": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-7.0.0.tgz", - "integrity": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/parse5-html-rewriting-stream/-/parse5-html-rewriting-stream-8.0.0.tgz", + "integrity": "sha512-wzh11mj8KKkno1pZEu+l2EVeWsuKDfR5KNWZOTsslfUX8lPDZx77m9T0kIoAVkFtD1nx6YF8oh4BnPHvxMtNMw==", "dev": true, + "license": "MIT", "dependencies": { - "entities": "^4.3.0", - "parse5": "^7.0.0", - "parse5-sax-parser": "^7.0.0" + "entities": "^6.0.0", + "parse5": "^8.0.0", + "parse5-sax-parser": "^8.0.0" }, "funding": { "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/parse5-sax-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-7.0.0.tgz", - "integrity": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==", + "node_modules/parse5-html-rewriting-stream/node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/parse5-sax-parser": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/parse5-sax-parser/-/parse5-sax-parser-8.0.0.tgz", + "integrity": "sha512-/dQ8UzHZwnrzs3EvDj6IkKrD/jIZyTlB+8XrHJvcjNgRdmWruNdN9i9RK/JtxakmlUdPwKubKPTCqvbTgzGhrw==", + "dev": true, + "license": "MIT", "dependencies": { - "parse5": "^7.0.0" + "parse5": "^8.0.0" }, "funding": { "url": "https://github.com/inikulin/parse5?sponsor=1" } }, + "node_modules/parse5/node_modules/entities": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-8.0.0.tgz", + "integrity": "sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=20.19.0" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", "engines": { "node": ">= 0.8" } @@ -14293,6 +14707,7 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", "engines": { "node": ">=8" } @@ -14302,21 +14717,17 @@ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", - "dev": true - }, "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } @@ -14325,108 +14736,103 @@ "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.2.tgz", + "integrity": "sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" }, "engines": { - "node": ">=16 || 14 >=14.18" + "node": "18 || 20 || >=22" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", + "version": "11.5.2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.2.tgz", + "integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==", "dev": true, + "license": "BlueOak-1.0.0", "engines": { - "node": "14 || >=16.14" + "node": "20 || >=22" } }, "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.4.2.tgz", + "integrity": "sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "node_modules/pdfkit": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/pdfkit/-/pdfkit-0.19.1.tgz", + "integrity": "sha512-6Gzk+wDwTs4VSxsR5rCMTnIl5nlmkye1oWB0l2hDB1EX6ZNSIBroKQEv+2+fPPn+stVjyqzmsqRJVDfB9fo5DA==", + "license": "MIT", "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - }, - "engines": { - "node": ">=0.12" + "@noble/ciphers": "^1.0.0", + "@noble/hashes": "^1.6.0", + "fontkit": "^2.0.4", + "js-md5": "^0.8.3", + "linebreak": "^1.1.0", + "png-js": "^1.1.0" } }, "node_modules/pdfmake": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.2.10.tgz", - "integrity": "sha512-doipFnmE1UHSk+Z3wfQuVweVQqx2pE/Ns2G5gCqZmWwqjDj+mZHnZYH/ryXWoIfD+iVdZUAutgI/VHkTCN+Xrw==", + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/pdfmake/-/pdfmake-0.3.11.tgz", + "integrity": "sha512-Uc49J9hUMyuqJk+U+PxlpBpPr96A4HOOfesGx609EPr2ue82+5/Smq/KTAkEqh0/jUGSi1fumvqZ5yAWijJTJg==", + "license": "MIT", "dependencies": { - "@foliojs-fork/linebreak": "^1.1.1", - "@foliojs-fork/pdfkit": "^0.14.0", - "iconv-lite": "^0.6.3", - "xmldoc": "^1.1.2" + "linebreak": "^1.1.0", + "pdfkit": "^0.19.1", + "xmldoc": "^2.0.3" }, "engines": { - "node": ">=12" - } - }, - "node_modules/pdfmake/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" + "node": ">=20" } }, "node_modules/perfect-scrollbar": { "version": "1.5.5", "resolved": "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.5.tgz", - "integrity": "sha512-dzalfutyP3e/FOpdlhVryN4AJ5XDVauVWxybSkLZmakFE2sS3y3pc4JnSprw8tGmHvkaG5Edr5T7LBTZ+WWU2g==" - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + "integrity": "sha512-dzalfutyP3e/FOpdlhVryN4AJ5XDVauVWxybSkLZmakFE2sS3y3pc4JnSprw8tGmHvkaG5Edr5T7LBTZ+WWU2g==", + "license": "MIT" }, "node_modules/picocolors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", - "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", - "dev": true + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" }, "node_modules/picomatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", - "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", "dev": true, + "license": "MIT", "engines": { "node": ">=12" }, @@ -14434,159 +14840,81 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", - "dev": true, - "dependencies": { - "pinkie": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/piscina": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/piscina/-/piscina-4.5.0.tgz", - "integrity": "sha512-iBaLWI56PFP81cfBSomWTmhOo9W2/yhIOL+Tk8O1vBCpK39cM0tGxB+wgYjG31qq4ohGvysfXSdnj8h7g4rZxA==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/piscina/-/piscina-5.2.0.tgz", + "integrity": "sha512-DszUCKeVN/5G5QKo6jAVHL8fmKnkJvQ0ACiVgY7YGCq3TUB2oznAOayvZPIAdEThvhczkXR+qm3IHsNXpFCYfA==", "dev": true, + "license": "MIT", + "engines": { + "node": ">=20.x" + }, "optionalDependencies": { - "nice-napi": "^1.0.2" + "@napi-rs/nice": "^1.0.4" } }, - "node_modules/pkg-dir": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", - "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", + "node_modules/pkce-challenge": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/pkce-challenge/-/pkce-challenge-5.0.1.tgz", + "integrity": "sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==", "dev": true, + "license": "MIT", + "engines": { + "node": ">=16.20.0" + } + }, + "node_modules/pkijs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pkijs/-/pkijs-3.4.0.tgz", + "integrity": "sha512-emEcLuomt2j03vxD54giVB4SxTjnsqkU692xZOZXHDVoYyypEm+b3jpiTcc+Cf+myooc+/Ly0z01jqeNHVgJGw==", + "dev": true, + "license": "BSD-3-Clause", "dependencies": { - "find-up": "^6.3.0" + "@noble/hashes": "1.4.0", + "asn1js": "^3.0.6", + "bytestreamjs": "^2.0.1", + "pvtsutils": "^1.3.6", + "pvutils": "^1.1.3", + "tslib": "^2.8.1" }, "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=16.0.0" } }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", - "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "node_modules/pkijs/node_modules/@noble/hashes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz", + "integrity": "sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==", "dev": true, - "dependencies": { - "locate-path": "^7.1.0", - "path-exists": "^5.0.0" - }, + "license": "MIT", "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">= 16" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", - "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", - "dev": true, - "dependencies": { - "p-locate": "^6.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", - "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^1.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", - "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", - "dev": true, - "dependencies": { - "p-limit": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/path-exists": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", - "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/pkg-dir/node_modules/yocto-queue": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", - "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://paulmillr.com/funding/" } }, "node_modules/png-js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/png-js/-/png-js-1.0.0.tgz", - "integrity": "sha512-k+YsbhpA9e+EFfKjTCH3VW6aoKlyNYI6NYdTfDL4CIvFnvsuO84ttonmZE7rc+v23SLTH8XX+5w/Ak9v0xGY4g==" + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/png-js/-/png-js-1.1.0.tgz", + "integrity": "sha512-PM/uYGzGdNSzqeOgly68+6wKQDL1SY0a/N+OEa/+br6LnHWOAJB0Npiamnodfq3jd2LS/i2fMeOKSAILjA+m5Q==", + "dependencies": { + "browserify-zlib": "^0.2.0" + } }, "node_modules/pngjs": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz", "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==", + "license": "MIT", "engines": { "node": ">=10.13.0" } }, "node_modules/postcss": { - "version": "8.4.38", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", - "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "version": "8.5.12", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.12.tgz", + "integrity": "sha512-W62t/Se6rA0Az3DfCL0AqJwXuKwBeYg6nOaIgzP+xZ7N5BFCI7DYi1qs6ygUYT6rvfi6t9k65UMLJC+PHZpDAA==", "dev": true, "funding": [ { @@ -14602,10 +14930,11 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.2.0" + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, "engines": { "node": "^10 || ^12 || >=14" @@ -14616,6 +14945,7 @@ "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-8.1.1.tgz", "integrity": "sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==", "dev": true, + "license": "MIT", "dependencies": { "cosmiconfig": "^9.0.0", "jiti": "^1.20.0", @@ -14646,13 +14976,15 @@ "version": "0.2.3", "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/postcss-modules-extract-imports": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", "dev": true, + "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" }, @@ -14661,13 +14993,14 @@ } }, "node_modules/postcss-modules-local-by-default": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz", - "integrity": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", + "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", "dev": true, + "license": "MIT", "dependencies": { "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", + "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.1.0" }, "engines": { @@ -14678,12 +15011,13 @@ } }, "node_modules/postcss-modules-scope": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz", - "integrity": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", + "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", "dev": true, + "license": "ISC", "dependencies": { - "postcss-selector-parser": "^6.0.4" + "postcss-selector-parser": "^7.0.0" }, "engines": { "node": "^10 || ^12 || >= 14" @@ -14697,6 +15031,7 @@ "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "dev": true, + "license": "ISC", "dependencies": { "icss-utils": "^5.0.0" }, @@ -14708,10 +15043,11 @@ } }, "node_modules/postcss-selector-parser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", - "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.4.tgz", + "integrity": "sha512-HeP7D2wyhkR+XaK6v4W8oRF62Dsz4flyuczALJp61GckGm42u1saSSJ/0auvcBqxs3jMRFEcPK34At/0JBKdOg==", "dev": true, + "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -14724,56 +15060,34 @@ "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.8.0" } }, - "node_modules/pretty-format": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", - "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^29.6.3", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, "node_modules/proc-log": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-4.2.0.tgz", - "integrity": "sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-5.0.0.tgz", + "integrity": "sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==", "dev": true, + "license": "ISC", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^18.17.0 || >=20.5.0" } }, "node_modules/process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "license": "MIT", "engines": { "node": ">= 0.6.0" } @@ -14781,260 +15095,15 @@ "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "dev": true - }, - "node_modules/promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true, - "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/protractor": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/protractor/-/protractor-7.0.0.tgz", - "integrity": "sha512-UqkFjivi4GcvUQYzqGYNe0mLzfn5jiLmO8w9nMhQoJRLhy2grJonpga2IWhI6yJO30LibWXJJtA4MOIZD2GgZw==", - "deprecated": "We have news to share - Protractor is deprecated and will reach end-of-life by Summer 2023. To learn more and find out about other options please refer to this post on the Angular blog. Thank you for using and contributing to Protractor. https://goo.gle/state-of-e2e-in-angular", - "dev": true, - "dependencies": { - "@types/q": "^0.0.32", - "@types/selenium-webdriver": "^3.0.0", - "blocking-proxy": "^1.0.0", - "browserstack": "^1.5.1", - "chalk": "^1.1.3", - "glob": "^7.0.3", - "jasmine": "2.8.0", - "jasminewd2": "^2.1.0", - "q": "1.4.1", - "saucelabs": "^1.5.0", - "selenium-webdriver": "3.6.0", - "source-map-support": "~0.4.0", - "webdriver-js-extender": "2.1.0", - "webdriver-manager": "^12.1.7", - "yargs": "^15.3.1" - }, - "bin": { - "protractor": "bin/protractor", - "webdriver-manager": "bin/webdriver-manager" - }, - "engines": { - "node": ">=10.13.x" - } - }, - "node_modules/protractor/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/protractor/node_modules/ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/protractor/node_modules/chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", - "dev": true, - "dependencies": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/protractor/node_modules/cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "node_modules/protractor/node_modules/cliui/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/protractor/node_modules/cliui/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/protractor/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/protractor/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/protractor/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/protractor/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/protractor/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/protractor/node_modules/source-map-support": { - "version": "0.4.18", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", - "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", - "dev": true, - "dependencies": { - "source-map": "^0.5.6" - } - }, - "node_modules/protractor/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/protractor/node_modules/supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/protractor/node_modules/y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", - "dev": true - }, - "node_modules/protractor/node_modules/yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "dev": true, - "dependencies": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/protractor/node_modules/yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "engines": { - "node": ">=6" - } + "license": "MIT" }, "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" @@ -15044,62 +15113,54 @@ } }, "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "dev": true + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz", + "integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==", + "license": "MIT", + "engines": { + "node": ">=10" + } }, "node_modules/prr": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", "dev": true, + "license": "MIT", "optional": true }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - }, "node_modules/pstree.remy": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz", "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==", - "dev": true - }, - "node_modules/public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dependencies": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/public-encrypt/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "dev": true, + "license": "MIT" }, "node_modules/punycode": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==", - "dev": true - }, - "node_modules/q": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.4.1.tgz", - "integrity": "sha512-/CdEdaw49VZVmyIDGUQKDDT53c7qBkO6g5CefWz91Ae+l4+cRtcDYwMTXh6me4O8TMldeGHG3N2Bl84V78Ywbg==", - "deprecated": "You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other.\n\n(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)", "dev": true, + "license": "MIT" + }, + "node_modules/pvtsutils": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/pvtsutils/-/pvtsutils-1.3.6.tgz", + "integrity": "sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^2.8.1" + } + }, + "node_modules/pvutils": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/pvutils/-/pvutils-1.1.5.tgz", + "integrity": "sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.6.0", - "teleport": ">=0.2.0" + "node": ">=16.0.0" } }, "node_modules/qjobs": { @@ -15107,17 +15168,18 @@ "resolved": "https://registry.npmjs.org/qjobs/-/qjobs-1.2.0.tgz", "integrity": "sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.9" } }, "node_modules/qrcode": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.3.tgz", - "integrity": "sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==", + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.4.tgz", + "integrity": "sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==", + "license": "MIT", "dependencies": { "dijkstrajs": "^1.0.1", - "encode-utf8": "^1.0.3", "pngjs": "^5.0.0", "yargs": "^15.3.1" }, @@ -15132,16 +15194,24 @@ "version": "6.0.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^6.2.0" } }, + "node_modules/qrcode/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, "node_modules/qrcode/node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -15150,10 +15220,20 @@ "node": ">=8" } }, + "node_modules/qrcode/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/qrcode/node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, @@ -15165,6 +15245,7 @@ "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -15179,6 +15260,7 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, @@ -15186,15 +15268,31 @@ "node": ">=8" } }, + "node_modules/qrcode/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/qrcode/node_modules/y18n": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", + "license": "ISC" }, "node_modules/qrcode/node_modules/yargs": { "version": "15.4.1", "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "license": "MIT", "dependencies": { "cliui": "^6.0.0", "decamelize": "^1.2.0", @@ -15216,6 +15314,7 @@ "version": "18.1.3", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "license": "ISC", "dependencies": { "camelcase": "^5.0.0", "decamelize": "^1.2.0" @@ -15225,11 +15324,13 @@ } }, "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "version": "6.15.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.3.tgz", + "integrity": "sha512-O9gl3zCl5h5blw1KGUzQKhA5oUXSl8rwUIM5o0S3nCXMliSvy5Dzx7/DJcI+SwgICv+IneSZwhBh1oSyEHA71A==", + "license": "BSD-3-Clause", "dependencies": { - "side-channel": "^1.0.4" + "es-define-property": "^1.0.1", + "side-channel": "^1.1.1" }, "engines": { "node": ">=0.6" @@ -15256,88 +15357,87 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/random-bytes": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz", "integrity": "sha512-iv7LhNVO047HzYR3InF6pUcUsPQiHTM1Qal51DcGSuZFBil1aBBWG5eHPNek7bvILMaYJ/8RU1e8w1AMdHmLQQ==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dependencies": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.3.0.tgz", + "integrity": "sha512-hek2mFQpPuI4E1BBKrSto+BU3e3x4xuarsbiwr3+lf7p44juvFMV0XFWQAP3xUyqXA4RrXLIoaSUGbSt056ZMw==", + "license": "MIT", "engines": { "node": ">= 0.6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/raw-body": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", - "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.2.tgz", + "integrity": "sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==", + "license": "MIT", "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.7.0", + "unpipe": "~1.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">= 0.10" } }, "node_modules/raw-body/node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "license": "MIT", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" }, "engines": { "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, + "node_modules/raw-body/node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, "node_modules/raw-body/node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", "engines": { "node": ">=0.6" } }, - "node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "dev": true - }, "node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -15351,49 +15451,44 @@ "node_modules/readable-stream/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" }, "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, + "license": "MIT", "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/readdirp/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" + "node": ">= 14.18.0" }, "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "type": "individual", + "url": "https://paulmillr.com/funding/" } }, "node_modules/reflect-metadata": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.2.2.tgz", "integrity": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==", - "dev": true + "dev": true, + "license": "Apache-2.0" }, "node_modules/regenerate": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/regenerate-unicode-properties": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", - "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.2.tgz", + "integrity": "sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==", "dev": true, + "license": "MIT", "dependencies": { "regenerate": "^1.4.2" }, @@ -15401,170 +15496,56 @@ "node": ">=4" } }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", - "dev": true - }, - "node_modules/regenerator-transform": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", - "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.8.4" - } - }, "node_modules/regex-parser": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.0.tgz", - "integrity": "sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==", - "dev": true - }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", - "dependencies": { - "call-bind": "^1.0.6", - "define-properties": "^1.2.1", - "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.3.1.tgz", + "integrity": "sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==", + "dev": true, + "license": "MIT" }, "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.4.0.tgz", + "integrity": "sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/regjsgen": "^0.8.0", "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", + "regenerate-unicode-properties": "^10.2.2", + "regjsgen": "^0.8.0", + "regjsparser": "^0.13.0", "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" + "unicode-match-property-value-ecmascript": "^2.2.1" }, "engines": { "node": ">=4" } }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", "dev": true, + "license": "MIT" + }, + "node_modules/regjsparser": { + "version": "0.13.2", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.13.2.tgz", + "integrity": "sha512-NgRBy2Nx/bE+9F27nVHnqcN5HjyLmecqsqx2PJHu3/IEtADD4WuxuXIVExD5PoSDFVrl78dOonfcOe5O+5nbzQ==", + "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "jsesc": "~0.5.0" + "jsesc": "~3.1.0" }, "bin": { "regjsparser": "bin/parser" } }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request-promise": { - "version": "4.2.6", - "resolved": "https://registry.npmjs.org/request-promise/-/request-promise-4.2.6.tgz", - "integrity": "sha512-HCHI3DJJUakkOr8fNoCc73E5nU5bqITjOYFMDrKHYOXWXrgD/SBaC7LjwuPymUprRyuF06UK7hd/lMHkmUXglQ==", - "deprecated": "request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", - "dependencies": { - "bluebird": "^3.5.0", - "request-promise-core": "1.1.4", - "stealthy-require": "^1.1.1", - "tough-cookie": "^2.3.3" - }, - "engines": { - "node": ">=0.10.0" - }, - "peerDependencies": { - "request": "^2.34" - } - }, - "node_modules/request-promise-core": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", - "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", - "dependencies": { - "lodash": "^4.17.19" - }, - "engines": { - "node": ">=0.10.0" - }, - "peerDependencies": { - "request": "^2.34" - } - }, - "node_modules/request/node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/request/node_modules/qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", - "engines": { - "node": ">=0.6" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -15574,6 +15555,7 @@ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -15581,32 +15563,39 @@ "node_modules/require-main-filename": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "license": "ISC" }, "node_modules/requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/resize-observer-polyfill": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", - "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==", + "license": "MIT" }, "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", "dev": true, + "license": "MIT", "dependencies": { - "is-core-module": "^2.13.0", + "is-core-module": "^2.16.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -15616,6 +15605,7 @@ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -15625,6 +15615,7 @@ "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz", "integrity": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==", "dev": true, + "license": "MIT", "dependencies": { "adjust-sourcemap-loader": "^4.0.0", "convert-source-map": "^1.7.0", @@ -15641,6 +15632,7 @@ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, + "license": "MIT", "dependencies": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", @@ -15655,37 +15647,50 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz", + "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==", "dev": true, + "license": "MIT", "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" + "onetime": "^7.0.0", + "signal-exit": "^4.1.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/restructure": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/restructure/-/restructure-3.0.2.tgz", + "integrity": "sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==", + "license": "MIT" + }, "node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", "dev": true, + "license": "MIT", "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" @@ -15694,7 +15699,9 @@ "node_modules/rfdc": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", - "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true, + "license": "MIT" }, "node_modules/rimraf": { "version": "3.0.2", @@ -15702,6 +15709,7 @@ "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, + "license": "ISC", "dependencies": { "glob": "^7.1.3" }, @@ -15712,33 +15720,21 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "node_modules/rndm": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz", - "integrity": "sha512-fJhQQI5tLrQvYIYFpOnFinzv9dwmR7hRnUz1XqP3OJ1jIweTNOd6aTO4jwQSgcBSFUB+/KHJxuGneime+FdzOw==" - }, "node_modules/roboto-fontface": { "version": "0.10.0", "resolved": "https://registry.npmjs.org/roboto-fontface/-/roboto-fontface-0.10.0.tgz", "integrity": "sha512-OlwfYEgA2RdboZohpldlvJ1xngOins5d7ejqnIBWr9KaMxsnBqotpptRXTyfNRLnFpqzX6sTDt+X+a+6udnU8g==", - "dev": true + "dev": true, + "license": "Apache-2.0" }, "node_modules/rollup": { - "version": "4.18.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.18.0.tgz", - "integrity": "sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==", + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz", + "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==", "dev": true, + "license": "MIT", "dependencies": { - "@types/estree": "1.0.5" + "@types/estree": "1.0.8" }, "bin": { "rollup": "dist/bin/rollup" @@ -15748,30 +15744,63 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.18.0", - "@rollup/rollup-android-arm64": "4.18.0", - "@rollup/rollup-darwin-arm64": "4.18.0", - "@rollup/rollup-darwin-x64": "4.18.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.18.0", - "@rollup/rollup-linux-arm-musleabihf": "4.18.0", - "@rollup/rollup-linux-arm64-gnu": "4.18.0", - "@rollup/rollup-linux-arm64-musl": "4.18.0", - "@rollup/rollup-linux-powerpc64le-gnu": "4.18.0", - "@rollup/rollup-linux-riscv64-gnu": "4.18.0", - "@rollup/rollup-linux-s390x-gnu": "4.18.0", - "@rollup/rollup-linux-x64-gnu": "4.18.0", - "@rollup/rollup-linux-x64-musl": "4.18.0", - "@rollup/rollup-win32-arm64-msvc": "4.18.0", - "@rollup/rollup-win32-ia32-msvc": "4.18.0", - "@rollup/rollup-win32-x64-msvc": "4.18.0", + "@rollup/rollup-android-arm-eabi": "4.59.0", + "@rollup/rollup-android-arm64": "4.59.0", + "@rollup/rollup-darwin-arm64": "4.59.0", + "@rollup/rollup-darwin-x64": "4.59.0", + "@rollup/rollup-freebsd-arm64": "4.59.0", + "@rollup/rollup-freebsd-x64": "4.59.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.59.0", + "@rollup/rollup-linux-arm-musleabihf": "4.59.0", + "@rollup/rollup-linux-arm64-gnu": "4.59.0", + "@rollup/rollup-linux-arm64-musl": "4.59.0", + "@rollup/rollup-linux-loong64-gnu": "4.59.0", + "@rollup/rollup-linux-loong64-musl": "4.59.0", + "@rollup/rollup-linux-ppc64-gnu": "4.59.0", + "@rollup/rollup-linux-ppc64-musl": "4.59.0", + "@rollup/rollup-linux-riscv64-gnu": "4.59.0", + "@rollup/rollup-linux-riscv64-musl": "4.59.0", + "@rollup/rollup-linux-s390x-gnu": "4.59.0", + "@rollup/rollup-linux-x64-gnu": "4.59.0", + "@rollup/rollup-linux-x64-musl": "4.59.0", + "@rollup/rollup-openbsd-x64": "4.59.0", + "@rollup/rollup-openharmony-arm64": "4.59.0", + "@rollup/rollup-win32-arm64-msvc": "4.59.0", + "@rollup/rollup-win32-ia32-msvc": "4.59.0", + "@rollup/rollup-win32-x64-gnu": "4.59.0", + "@rollup/rollup-win32-x64-msvc": "4.59.0", "fsevents": "~2.3.2" } }, - "node_modules/run-applescript": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz", - "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==", + "node_modules/rollup/node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", "dev": true, + "license": "MIT" + }, + "node_modules/router": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/router/-/router-2.2.0.tgz", + "integrity": "sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==", + "license": "MIT", + "dependencies": { + "debug": "^4.4.0", + "depd": "^2.0.0", + "is-promise": "^4.0.0", + "parseurl": "^1.3.3", + "path-to-regexp": "^8.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/run-applescript": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.1.0.tgz", + "integrity": "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==", + "dev": true, + "license": "MIT", "engines": { "node": ">=18" }, @@ -15779,15 +15808,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/run-async": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-3.0.0.tgz", - "integrity": "sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -15807,14 +15827,16 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", + "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", + "license": "Apache-2.0", "dependencies": { "tslib": "^2.1.0" } @@ -15836,27 +15858,42 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" + }, + "node_modules/safe-regex-test": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", + "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-regex": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/safevalues": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/safevalues/-/safevalues-0.3.4.tgz", - "integrity": "sha512-LRneZZRXNgjzwG4bDQdOTSbze3fHm1EAKN/8bePxnlEZiBmkYEDggaHbuvHI9/hoqHbGfsEA7tWS9GhYHZBBsw==", - "dev": true + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" }, "node_modules/sass": { - "version": "1.77.2", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.2.tgz", - "integrity": "sha512-eb4GZt1C3avsX3heBNlrc7I09nyT00IUuo4eFhAbeXWU2fvA7oXI53SxODVAA+zgZCk9aunAZgO+losjR3fAwA==", + "version": "1.90.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.90.0.tgz", + "integrity": "sha512-9GUyuksjw70uNpb1MTYWsH9MQHOHY6kwfnkafC24+7aOMZn9+rVMBxRbLvw756mrBFbIsFg6Xw9IkR2Fnn3k+Q==", "dev": true, + "license": "MIT", "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", + "chokidar": "^4.0.0", + "immutable": "^5.0.2", "source-map-js": ">=0.6.2 <2.0.0" }, "bin": { @@ -15864,13 +15901,17 @@ }, "engines": { "node": ">=14.0.0" + }, + "optionalDependencies": { + "@parcel/watcher": "^2.4.1" } }, "node_modules/sass-loader": { - "version": "14.2.1", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-14.2.1.tgz", - "integrity": "sha512-G0VcnMYU18a4N7VoNDegg2OuMjYtxnqzQWARVWCIVSZwJeiL9kg8QMsuIZOplsJgTzZLF6jGxI3AClj8I9nRdQ==", + "version": "16.0.5", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.5.tgz", + "integrity": "sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==", "dev": true, + "license": "MIT", "dependencies": { "neo-async": "^2.6.2" }, @@ -15906,62 +15947,21 @@ } } }, - "node_modules/saucelabs": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/saucelabs/-/saucelabs-1.5.0.tgz", - "integrity": "sha512-jlX3FGdWvYf4Q3LFfFWS1QvPg3IGCGWxIc8QBFdPTbpTJnt/v17FHXYVAn7C8sHf1yUXo2c7yIM0isDryfYtHQ==", - "dev": true, - "dependencies": { - "https-proxy-agent": "^2.2.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/saucelabs/node_modules/agent-base": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", - "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", - "dev": true, - "dependencies": { - "es6-promisify": "^5.0.0" - }, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/saucelabs/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/saucelabs/node_modules/https-proxy-agent": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", - "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", - "dev": true, - "dependencies": { - "agent-base": "^4.3.0", - "debug": "^3.1.0" - }, - "engines": { - "node": ">= 4.5.0" - } - }, "node_modules/sax": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.1.tgz", - "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==" + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.6.0.tgz", + "integrity": "sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==", + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=11.0.0" + } }, "node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.3.tgz", + "integrity": "sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==", "dev": true, + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", @@ -15969,7 +15969,7 @@ "ajv-keywords": "^5.1.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 10.13.0" }, "funding": { "type": "opencollective", @@ -15981,6 +15981,7 @@ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, + "license": "MIT", "dependencies": { "ajv": "^8.0.0" }, @@ -15997,65 +15998,28 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", - "dev": true - }, - "node_modules/selenium-webdriver": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-3.6.0.tgz", - "integrity": "sha512-WH7Aldse+2P5bbFBO4Gle/nuQOdVwpHMTL6raL3uuBj/vPG07k6uzt3aiahu352ONBr5xXh0hDlM3LhtXPOC4Q==", "dev": true, - "dependencies": { - "jszip": "^3.1.3", - "rimraf": "^2.5.4", - "tmp": "0.0.30", - "xml2js": "^0.4.17" - }, - "engines": { - "node": ">= 6.9.0" - } - }, - "node_modules/selenium-webdriver/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/selenium-webdriver/node_modules/tmp": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.30.tgz", - "integrity": "sha512-HXdTB7lvMwcb55XFfrTM8CPr/IYREk4hVBFaQ4b/6nInrluSL86hfHm7vu0luYKCfyBZp2trCjpc8caC3vVM3w==", - "dev": true, - "dependencies": { - "os-tmpdir": "~1.0.1" - }, - "engines": { - "node": ">=0.4.0" - } + "license": "MIT" }, "node_modules/selfsigned": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", - "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-5.5.0.tgz", + "integrity": "sha512-ftnu3TW4+3eBfLRFnDEkzGxSF/10BJBkaLJuBHZX0kiPS7bRdlpZGu6YGt4KngMkdTwJE6MbjavFpqHvqVt+Ew==", "dev": true, + "license": "MIT", "dependencies": { - "@types/node-forge": "^1.3.0", - "node-forge": "^1" + "@peculiar/x509": "^1.14.2", + "pkijs": "^3.3.3" }, "engines": { - "node": ">=10" + "node": ">=18" } }, "node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "license": "ISC", "bin": { "semver": "bin/semver.js" }, @@ -16064,105 +16028,111 @@ } }, "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz", + "integrity": "sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==", + "license": "MIT", "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" + "debug": "^4.4.3", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "etag": "^1.8.1", + "fresh": "^2.0.0", + "http-errors": "^2.0.1", + "mime-types": "^3.0.2", + "ms": "^2.1.3", + "on-finished": "^2.4.1", + "range-parser": "^1.2.1", + "statuses": "^2.0.2" }, "engines": { - "node": ">= 0.8.0" + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, "node_modules/send/node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "license": "MIT", "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" }, "engines": { "node": ">= 0.8" - } - }, - "node_modules/send/node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "bin": { - "mime": "cli.js" }, - "engines": { - "node": ">=4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + "node_modules/send/node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" }, "node_modules/send/node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", "engines": { "node": ">=0.6" } }, "node_modules/serialize-javascript": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", - "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-7.0.7.tgz", + "integrity": "sha512-YAy8Od6KV+uuwUuU50np8fGB/Aues6Y0nAhA9y/hId74PlKUcme4pXcBD46NWKr1Q4osN/iseZ17YqO1XfmI8g==", "dev": true, - "dependencies": { - "randombytes": "^2.1.0" + "license": "BSD-3-Clause", + "engines": { + "node": ">=20.0.0" } }, "node_modules/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.2.tgz", + "integrity": "sha512-KDj11HScOaLmrPxl70KYNW1PksP4Nb/CLL2yvC+Qd2kHMPEEpfc4Re2e4FOay+bC/+XQl/7zAcWON3JVo5v3KQ==", "dev": true, + "license": "MIT", "dependencies": { - "accepts": "~1.3.4", + "accepts": "~1.3.8", "batch": "0.6.1", "debug": "2.6.9", "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" + "http-errors": "~1.8.0", + "mime-types": "~2.1.35", + "parseurl": "~1.3.3" }, "engines": { "node": ">= 0.8.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/serve-index/node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" } }, "node_modules/serve-index/node_modules/debug": { @@ -16170,6 +16140,7 @@ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, + "license": "MIT", "dependencies": { "ms": "2.0.0" } @@ -16179,123 +16150,119 @@ "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/serve-index/node_modules/http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", "dev": true, + "license": "MIT", "dependencies": { "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" }, "engines": { "node": ">= 0.6" } }, - "node_modules/serve-index/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true + "node_modules/serve-index/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } }, "node_modules/serve-index/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "dev": true, + "license": "MIT" + }, + "node_modules/serve-index/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true, + "license": "ISC" }, "node_modules/serve-index/node_modules/statuses": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.6" } }, + "node_modules/serve-index/node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.2.1.tgz", + "integrity": "sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==", + "license": "MIT", "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "parseurl": "^1.3.3", + "send": "^1.2.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">= 18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/set-blocking": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" - }, - "node_modules/set-function-length": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", - "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/set-function-name": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", - "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", - "dependencies": { - "define-data-property": "^1.1.4", - "es-errors": "^1.3.0", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", - "dev": true - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, - "node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "bin": { - "sha.js": "bin.js" - } + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "license": "ISC" }, "node_modules/sha256": { "version": "0.2.0", @@ -16311,6 +16278,7 @@ "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "dev": true, + "license": "MIT", "dependencies": { "kind-of": "^6.0.2" }, @@ -16323,6 +16291,7 @@ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, + "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, @@ -16335,28 +16304,88 @@ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.10.0.tgz", + "integrity": "sha512-w1aiOKwKuRgtwAReIIj89puqg+I7GvX4IbLrvmhXbzQsj1+Zwi4VO3+fa6ZF91TWSjIxoEkKnMeHcLEODK5ZXA==", "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/side-channel": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", - "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz", + "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==", + "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4", - "object-inspect": "^1.13.1" + "object-inspect": "^1.13.4", + "side-channel-list": "^1.0.1", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz", + "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" }, "engines": { "node": ">= 0.4" @@ -16366,26 +16395,34 @@ } }, "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, "node_modules/sigstore": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-2.3.1.tgz", - "integrity": "sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-4.1.1.tgz", + "integrity": "sha512-endqECJkfhozrXMK5ngu/UAA0xVcVEFdnHJCElGaExypjW+HK5i6zu3NteLoaX/iFbRUbC3+DjttQs0GARr+5w==", "dev": true, + "license": "Apache-2.0", "dependencies": { - "@sigstore/bundle": "^2.3.2", - "@sigstore/core": "^1.0.0", - "@sigstore/protobuf-specs": "^0.3.2", - "@sigstore/sign": "^2.3.2", - "@sigstore/tuf": "^2.3.4", - "@sigstore/verify": "^1.2.1" + "@sigstore/bundle": "^4.0.0", + "@sigstore/core": "^3.2.1", + "@sigstore/protobuf-specs": "^0.5.0", + "@sigstore/sign": "^4.1.1", + "@sigstore/tuf": "^4.0.2", + "@sigstore/verify": "^3.1.1" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/simple-update-notifier": { @@ -16393,6 +16430,7 @@ "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz", "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==", "dev": true, + "license": "MIT", "dependencies": { "semver": "^7.5.3" }, @@ -16405,31 +16443,64 @@ "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, + "node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, "node_modules/smart-buffer": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", "dev": true, + "license": "MIT", "engines": { "node": ">= 6.0.0", "npm": ">= 3.0.0" } }, "node_modules/socket.io": { - "version": "4.7.5", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.7.5.tgz", - "integrity": "sha512-DmeAkF6cwM9jSfmp6Dr/5/mfMwb5Z5qRrSXLpo3Fq5SqyU8CMF15jIN4ZhfSwu35ksM1qmHZDQ/DK5XTccSTvA==", + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.8.3.tgz", + "integrity": "sha512-2Dd78bqzzjE6KPkD5fHZmDAKRNe3J15q+YHDrIsy9WEkqttc7GY+kT9OBLSMaPbQaEd0x1BjcmtMtXkfpc+T5A==", "dev": true, + "license": "MIT", "dependencies": { "accepts": "~1.3.4", "base64id": "~2.0.0", "cors": "~2.8.5", - "debug": "~4.3.2", - "engine.io": "~6.5.2", + "debug": "~4.4.1", + "engine.io": "~6.6.0", "socket.io-adapter": "~2.5.2", "socket.io-parser": "~4.2.4" }, @@ -16438,23 +16509,25 @@ } }, "node_modules/socket.io-adapter": { - "version": "2.5.5", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.5.tgz", - "integrity": "sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==", + "version": "2.5.8", + "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.8.tgz", + "integrity": "sha512-6Oy52pbg+kvdCVvjcN+FnY7BvxZ7cIHNScbvztT/It5d0vbwoJoVZmF2gjJmnV0/4WlXRfG15zc45ySk9Ah8bw==", "dev": true, + "license": "MIT", "dependencies": { - "debug": "~4.3.4", - "ws": "~8.17.1" + "debug": "~4.4.1", + "ws": "~8.21.0" } }, "node_modules/socket.io-client": { - "version": "4.7.5", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.7.5.tgz", - "integrity": "sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ==", + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.8.3.tgz", + "integrity": "sha512-uP0bpjWrjQmUt5DTHq9RuoCBdFJF10cdX9X+a368j/Ft0wmaVgxlrjvK3kjvgCODOMMOz9lcaRzxmso0bTWZ/g==", + "license": "MIT", "dependencies": { "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.2", - "engine.io-client": "~6.5.2", + "debug": "~4.4.1", + "engine.io-client": "~6.6.1", "socket.io-parser": "~4.2.4" }, "engines": { @@ -16462,22 +16535,71 @@ } }, "node_modules/socket.io-parser": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.4.tgz", - "integrity": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==", + "version": "4.2.7", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.7.tgz", + "integrity": "sha512-IH/iSeO9T6gz1KkFleGDWkG9N3dl4jXVYUtMhIqH10Md0ttMer8nUNWiP1DKuNrybD2xBrixLJdCC9J6ECoYkg==", + "license": "MIT", "dependencies": { "@socket.io/component-emitter": "~3.1.0", - "debug": "~4.3.1" + "debug": "~4.4.1" }, "engines": { "node": ">=10.0.0" } }, + "node_modules/socket.io/node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/socket.io/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/socket.io/node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/socket.io/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/sockjs": { "version": "0.3.24", "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "dev": true, + "license": "MIT", "dependencies": { "faye-websocket": "^0.11.3", "uuid": "^8.3.2", @@ -16488,18 +16610,21 @@ "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "deprecated": "uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).", "dev": true, + "license": "MIT", "bin": { "uuid": "dist/bin/uuid" } }, "node_modules/socks": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz", - "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==", + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.9.tgz", + "integrity": "sha512-LJhUYUvItdQ0LkJTmPeaEObWXAqFyfmP85x0tch/ez9cahmhlBBLbIqDFnvBnUJGagb0JbIQrkBs1wJ+yRYpEw==", "dev": true, + "license": "MIT", "dependencies": { - "ip-address": "^9.0.5", + "ip-address": "^10.1.1", "smart-buffer": "^4.2.0" }, "engines": { @@ -16508,33 +16633,36 @@ } }, "node_modules/socks-proxy-agent": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.3.tgz", - "integrity": "sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==", + "version": "8.0.5", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz", + "integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==", "dev": true, + "license": "MIT", "dependencies": { - "agent-base": "^7.1.1", + "agent-base": "^7.1.2", "debug": "^4.3.4", - "socks": "^2.7.1" + "socks": "^2.8.3" }, "engines": { "node": ">= 14" } }, "node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", + "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", "dev": true, + "license": "BSD-3-Clause", "engines": { - "node": ">= 8" + "node": ">= 12" } }, "node_modules/source-map-js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", - "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } @@ -16544,6 +16672,7 @@ "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-5.0.0.tgz", "integrity": "sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==", "dev": true, + "license": "MIT", "dependencies": { "iconv-lite": "^0.6.3", "source-map-js": "^1.0.2" @@ -16564,6 +16693,7 @@ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, + "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, @@ -16576,6 +16706,7 @@ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" @@ -16586,47 +16717,42 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, "node_modules/spdx-exceptions": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", - "dev": true + "dev": true, + "license": "CC-BY-3.0" }, "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz", + "integrity": "sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==", "dev": true, + "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/spdx-license-ids": { - "version": "3.0.18", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz", - "integrity": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==", - "dev": true + "version": "3.0.23", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.23.tgz", + "integrity": "sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==", + "dev": true, + "license": "CC0-1.0" }, "node_modules/spdy": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", "dev": true, + "license": "MIT", "dependencies": { "debug": "^4.1.0", "handle-thing": "^2.0.0", @@ -16643,6 +16769,7 @@ "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", "dev": true, + "license": "MIT", "dependencies": { "debug": "^4.1.0", "detect-node": "^2.0.4", @@ -16657,6 +16784,7 @@ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, + "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -16666,89 +16794,39 @@ "node": ">= 6" } }, - "node_modules/sprintf-js": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", - "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", - "dev": true - }, - "node_modules/sshpk": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.18.0.tgz", - "integrity": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==", - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sshpk/node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - }, "node_modules/ssri": { - "version": "10.0.6", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.6.tgz", - "integrity": "sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==", + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-13.0.1.tgz", + "integrity": "sha512-QUiRf1+u9wPTL/76GTYlKttDEBWV1ga9ZXW8BG6kfdeyyM8LGPix9gROyg9V2+P0xNyF3X2Go526xKFdMZrHSQ==", "dev": true, + "license": "ISC", "dependencies": { "minipass": "^7.0.3" }, "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, - "node_modules/stealthy-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g==", + "node_modules/stdin-discarder": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz", + "integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stream-browserify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", - "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", - "dependencies": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" - } - }, - "node_modules/stream-browserify/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "node": ">=18" }, - "engines": { - "node": ">= 6" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/streamroller": { @@ -16756,6 +16834,7 @@ "resolved": "https://registry.npmjs.org/streamroller/-/streamroller-3.1.5.tgz", "integrity": "sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==", "dev": true, + "license": "MIT", "dependencies": { "date-format": "^4.0.14", "debug": "^4.3.4", @@ -16765,42 +16844,12 @@ "node": ">=8.0" } }, - "node_modules/streamroller/node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/streamroller/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/streamroller/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, "node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } @@ -16808,40 +16857,33 @@ "node_modules/string_decoder/node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" }, "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", "dev": true, + "license": "MIT", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, @@ -16849,42 +16891,12 @@ "node": ">=8" } }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" }, @@ -16892,33 +16904,17 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/strong-log-transformer": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-2.1.0.tgz", - "integrity": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==", - "dev": true, - "dependencies": { - "duplexer": "^0.1.1", - "minimist": "^1.2.0", - "through": "^2.3.4" - }, - "bin": { - "sl-log-transformer": "bin/sl-log-transformer.js" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "license": "MIT", "dependencies": { - "has-flag": "^3.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/supports-preserve-symlinks-flag": { @@ -16926,6 +16922,7 @@ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -16933,130 +16930,56 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/symbol-observable": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-4.0.0.tgz", - "integrity": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==", - "dev": true, - "engines": { - "node": ">=0.10" - } - }, "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz", + "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, "node_modules/tar": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", - "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "version": "7.5.22", + "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.22.tgz", + "integrity": "sha512-MFO/QzvtAOmJbkhOaCTvbGcFN9L9b+JunIsDwaKljSOdcLMea3NJ1k9Usz/rjdfSXTq4dfzfeS7W4p4YOAAHeA==", "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" + "@isaacs/fs-minipass": "^4.0.0", + "chownr": "^3.0.0", + "minipass": "^7.1.2", + "minizlib": "^3.1.0", + "yallist": "^5.0.0" }, "engines": { - "node": ">=10" - } - }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, - "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tar-stream/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/tar/node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/tar/node_modules/minipass": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/tar/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" + "node": ">=18" } }, "node_modules/tar/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", + "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", + "dev": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } }, "node_modules/terser": { - "version": "5.31.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.0.tgz", - "integrity": "sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==", + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", + "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -17068,16 +16991,16 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.10", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", - "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.6.1.tgz", + "integrity": "sha512-201R5j+sJpK8nFWwKVyNfZot8FaJbLZDq5evriVzbV1wDtSXDjRUDRfJzHpAaxFDMEhsZL1QkeqM61wgsS3KaQ==", "dev": true, + "license": "MIT", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.20", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.26.0" + "schema-utils": "^4.3.0", + "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" @@ -17090,79 +17013,56 @@ "webpack": "^5.1.0" }, "peerDependenciesMeta": { + "@minify-html/node": { + "optional": true + }, "@swc/core": { "optional": true }, + "@swc/css": { + "optional": true + }, + "@swc/html": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "cssnano": { + "optional": true + }, + "csso": { + "optional": true + }, "esbuild": { "optional": true }, + "html-minifier-terser": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "postcss": { + "optional": true + }, "uglify-js": { "optional": true } } }, - "node_modules/terser-webpack-plugin/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/thingies": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/thingies/-/thingies-2.6.0.tgz", + "integrity": "sha512-rMHRjmlFLM1R96UYPvpmnc3LYtdFrT33JIB7L9hetGue1qAPfn1N2LJeEjxUSidu1Iku+haLZXDuEXUHNGO/lg==", "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "license": "MIT", + "engines": { + "node": ">=10.18" }, "funding": { "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "dev": true - }, - "node_modules/thingies": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/thingies/-/thingies-1.21.0.tgz", - "integrity": "sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==", - "dev": true, - "engines": { - "node": ">=10.18" + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { "tslib": "^2" @@ -17176,39 +17076,60 @@ "node": ">=0.2.6" } }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true - }, "node_modules/thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/tiny-inflate": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", - "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==" + "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==", + "license": "MIT" }, - "node_modules/tmp": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", - "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", + "node_modules/tinycolor2": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==", + "license": "MIT" + }, + "node_modules/tinyglobby": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz", + "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==", "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.4.4", + "picomatch": "^4.0.2" + }, "engines": { - "node": ">=14.14" + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" } }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "node_modules/tinygradient": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/tinygradient/-/tinygradient-1.1.5.tgz", + "integrity": "sha512-8nIfc2vgQ4TeLnk2lFj4tRLvvJwEfQuabdsmvDdQPT0xlk9TaNtpGd6nNRxXoK6vQhN6RSzj+Cnp5tTQmpxmbw==", + "license": "MIT", + "dependencies": { + "@types/tinycolor2": "^1.4.0", + "tinycolor2": "^1.0.0" + } + }, + "node_modules/tmp": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.7.tgz", + "integrity": "sha512-e0votIpp4Uo2AJYSzVHV6xCcawuiez3DzqDAbrTc3YxBkplN6e+dM13ZeIcZnDg/QpSuU2zfZ3rzwY8ukEnaXw==", "dev": true, + "license": "MIT", "engines": { - "node": ">=4" + "node": ">=14.14" } }, "node_modules/to-regex-range": { @@ -17216,6 +17137,7 @@ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, + "license": "MIT", "dependencies": { "is-number": "^7.0.0" }, @@ -17223,48 +17145,22 @@ "node": ">=8.0" } }, - "node_modules/toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", - "engines": { - "node": ">=0.6" - } - }, "node_modules/touch": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz", "integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==", "dev": true, + "license": "ISC", "bin": { "nodetouch": "bin/nodetouch.js" } }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/tough-cookie/node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "engines": { - "node": ">=6" - } - }, "node_modules/tree-dump": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.2.tgz", - "integrity": "sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.1.0.tgz", + "integrity": "sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=10.0" }, @@ -17281,20 +17177,22 @@ "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", "dev": true, + "license": "MIT", "bin": { "tree-kill": "cli.js" } }, "node_modules/ts-api-utils": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", - "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz", + "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=16" + "node": ">=18.12" }, "peerDependencies": { - "typescript": ">=4.2.0" + "typescript": ">=4.8.4" } }, "node_modules/ts-node": { @@ -17302,6 +17200,7 @@ "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", "dev": true, + "license": "MIT", "dependencies": { "@cspotcode/source-map-support": "^0.8.0", "@tsconfig/node10": "^1.0.7", @@ -17340,68 +17239,53 @@ } } }, - "node_modules/tsconfig-paths": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", - "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/tsyringe": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/tsyringe/-/tsyringe-4.10.0.tgz", + "integrity": "sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==", "dev": true, + "license": "MIT", "dependencies": { - "json5": "^2.2.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" + "tslib": "^1.9.3" }, "engines": { - "node": ">=6" + "node": ">= 6.0.0" } }, - "node_modules/tslib": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", - "integrity": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" - }, - "node_modules/tsscmp": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", - "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", - "engines": { - "node": ">=0.6.x" - } + "node_modules/tsyringe/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true, + "license": "0BSD" }, "node_modules/tuf-js": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-2.2.1.tgz", - "integrity": "sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-4.1.0.tgz", + "integrity": "sha512-50QV99kCKH5P/Vs4E2Gzp7BopNV+KzTXqWeaxrfu5IQJBOULRsTIS9seSsOVT8ZnGXzCyx55nYWAi4qJzpZKEQ==", "dev": true, + "license": "MIT", "dependencies": { - "@tufjs/models": "2.0.1", - "debug": "^4.3.4", - "make-fetch-happen": "^13.0.1" + "@tufjs/models": "4.1.0", + "debug": "^4.4.3", + "make-fetch-happen": "^15.0.1" }, "engines": { - "node": "^16.14.0 || >=18.0.0" + "node": "^20.17.0 || >=22.9.0" } }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" - }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, + "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1" }, @@ -17409,41 +17293,50 @@ "node": ">= 0.8.0" } }, - "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, + "node_modules/type-is": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.1.0.tgz", + "integrity": "sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==", + "license": "MIT", + "dependencies": { + "content-type": "^2.0.0", + "media-typer": "^1.1.0", + "mime-types": "^3.0.0" + }, "engines": { - "node": ">=10" + "node": ">= 18" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/express" } }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, + "node_modules/type-is/node_modules/content-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz", + "integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==", + "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/typed-assert": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/typed-assert/-/typed-assert-1.0.9.tgz", "integrity": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/typescript": { - "version": "5.4.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", - "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", "dev": true, + "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -17453,9 +17346,9 @@ } }, "node_modules/ua-parser-js": { - "version": "0.7.38", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.38.tgz", - "integrity": "sha512-fYmIy7fKTSFAhG3fuPlubeGaMoAd6r0rSnfEsO5nEY55i26KSLt9EH7PLQiiqPUhNqYIJvSkTy1oArIcXAbPbA==", + "version": "0.7.41", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.41.tgz", + "integrity": "sha512-O3oYyCMPYgNNHuO7Jjk3uacJWZF8loBgwrfd/5LE/HyZ3lUIOdniQ7DNXJcIgZbwioZxk0fLfI4EVnetdiX5jg==", "dev": true, "funding": [ { @@ -17471,6 +17364,10 @@ "url": "https://github.com/sponsors/faisalman" } ], + "license": "MIT", + "bin": { + "ua-parser-js": "script/cli.js" + }, "engines": { "node": "*" } @@ -17479,6 +17376,7 @@ "version": "2.1.5", "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz", "integrity": "sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==", + "license": "MIT", "dependencies": { "random-bytes": "~1.0.0" }, @@ -17490,28 +17388,32 @@ "version": "2.0.5", "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz", "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/undici": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-6.18.0.tgz", - "integrity": "sha512-nT8jjv/fE9Et1ilR6QoW8ingRTY2Pp4l2RUrdzV5Yz35RJDrtPc1DXvuNqcpsJSGIRHFdt3YKKktTzJA6r0fTA==", + "version": "6.27.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-6.27.0.tgz", + "integrity": "sha512-YmfV3YnEDzXRC5lZ2jWtWWHKGUm1zIt8AhesR1tens+HTNv+YZlN/dp6G727LOvMJ8xjP9Be7Y2Sdr96LDm+pg==", "dev": true, + "license": "MIT", "engines": { "node": ">=18.17" } }, "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "dev": true + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" }, "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -17521,6 +17423,7 @@ "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "dev": true, + "license": "MIT", "dependencies": { "unicode-canonical-property-names-ecmascript": "^2.0.0", "unicode-property-aliases-ecmascript": "^2.0.0" @@ -17530,10 +17433,11 @@ } }, "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.1.tgz", + "integrity": "sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -17542,16 +17446,18 @@ "version": "1.4.1", "resolved": "https://registry.npmjs.org/unicode-properties/-/unicode-properties-1.4.1.tgz", "integrity": "sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==", + "license": "MIT", "dependencies": { "base64-js": "^1.3.0", "unicode-trie": "^2.0.0" } }, "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.2.0.tgz", + "integrity": "sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -17560,6 +17466,7 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz", "integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==", + "license": "MIT", "dependencies": { "pako": "^0.2.5", "tiny-inflate": "^1.0.0" @@ -17568,53 +17475,32 @@ "node_modules/unicode-trie/node_modules/pako": { "version": "0.2.9", "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", - "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==" - }, - "node_modules/unique-filename": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", - "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", - "dev": true, - "dependencies": { - "unique-slug": "^4.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/unique-slug": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", - "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", + "license": "MIT" }, "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", "dev": true, + "license": "MIT", "engines": { - "node": ">= 10.0.0" + "node": ">= 4.0.0" } }, "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/update-browserslist-db": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", - "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", "dev": true, "funding": [ { @@ -17630,9 +17516,10 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -17645,6 +17532,8 @@ "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" } @@ -17653,6 +17542,8 @@ "version": "2.3.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -17660,91 +17551,65 @@ "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, + "license": "MIT" }, "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "dev": true, + "license": "MIT", "engines": { "node": ">= 0.4.0" } }, - "node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "bin": { - "uuid": "bin/uuid" - } - }, "node_modules/v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true - }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } + "license": "MIT" }, "node_modules/validate-npm-package-name": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.1.tgz", - "integrity": "sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-6.0.2.tgz", + "integrity": "sha512-IUoow1YUtvoBBC06dXs8bR8B9vuA3aJfmQNKMoaPG/OFsPmoQvw8xh+6Ye25Gx9DQhoEom3Pcu9MKHerm/NpUQ==", "dev": true, + "license": "ISC", "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + "node": "^18.17.0 || >=20.5.0" } }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/verror/node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" - }, "node_modules/vite": { - "version": "5.2.11", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.11.tgz", - "integrity": "sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==", + "version": "7.3.6", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.6.tgz", + "integrity": "sha512-4XP60spRGjSZFf1qYH+dJIkK2znL3zQfl9KkOV9MkkRR/3Dls0dxaBsQPTloEc5BLXWPL9vsOxopxyKoMmDueg==", "dev": true, + "license": "MIT", "dependencies": { - "esbuild": "^0.20.1", - "postcss": "^8.4.38", - "rollup": "^4.13.0" + "esbuild": "^0.27.0 || ^0.28.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" }, "bin": { "vite": "bin/vite.js" }, "engines": { - "node": "^18.0.0 || >=20.0.0" + "node": "^20.19.0 || >=22.12.0" }, "funding": { "url": "https://github.com/vitejs/vite?sponsor=1" @@ -17753,18 +17618,25 @@ "fsevents": "~2.3.3" }, "peerDependencies": { - "@types/node": "^18.0.0 || >=20.0.0", - "less": "*", + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", "lightningcss": "^1.21.0", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" }, "peerDependenciesMeta": { "@types/node": { "optional": true }, + "jiti": { + "optional": true + }, "less": { "optional": true }, @@ -17774,6 +17646,9 @@ "sass": { "optional": true }, + "sass-embedded": { + "optional": true + }, "stylus": { "optional": true }, @@ -17782,434 +17657,48 @@ }, "terser": { "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true } } }, - "node_modules/vite/node_modules/@esbuild/aix-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", - "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", - "cpu": [ - "ppc64" - ], + "node_modules/vite/node_modules/tinyglobby": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz", + "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==", "dev": true, - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" }, "engines": { - "node": ">=12" + "node": ">=12.0.0" }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" } }, - "node_modules/vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" - }, "node_modules/void-elements": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", "integrity": "sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/watchpack": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.1.tgz", - "integrity": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", "dev": true, + "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -18223,176 +17712,51 @@ "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", "dev": true, + "license": "MIT", "dependencies": { "minimalistic-assert": "^1.0.0" } }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dev": true, - "dependencies": { - "defaults": "^1.0.3" - } - }, "node_modules/weak-lru-cache": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/weak-lru-cache/-/weak-lru-cache-1.2.2.tgz", "integrity": "sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==", - "dev": true - }, - "node_modules/webdriver-js-extender": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/webdriver-js-extender/-/webdriver-js-extender-2.1.0.tgz", - "integrity": "sha512-lcUKrjbBfCK6MNsh7xaY2UAUmZwe+/ib03AjVOpFobX4O7+83BUveSrLfU0Qsyb1DaKJdQRbuU+kM9aZ6QUhiQ==", "dev": true, - "dependencies": { - "@types/selenium-webdriver": "^3.0.0", - "selenium-webdriver": "^3.0.1" - }, - "engines": { - "node": ">=6.9.x" - } - }, - "node_modules/webdriver-manager": { - "version": "12.1.9", - "resolved": "https://registry.npmjs.org/webdriver-manager/-/webdriver-manager-12.1.9.tgz", - "integrity": "sha512-Yl113uKm8z4m/KMUVWHq1Sjtla2uxEBtx2Ue3AmIlnlPAKloDn/Lvmy6pqWCUersVISpdMeVpAaGbNnvMuT2LQ==", - "dev": true, - "dependencies": { - "adm-zip": "^0.5.2", - "chalk": "^1.1.1", - "del": "^2.2.0", - "glob": "^7.0.3", - "ini": "^1.3.4", - "minimist": "^1.2.0", - "q": "^1.4.1", - "request": "^2.87.0", - "rimraf": "^2.5.2", - "semver": "^5.3.0", - "xml2js": "^0.4.17" - }, - "bin": { - "webdriver-manager": "bin/webdriver-manager" - }, - "engines": { - "node": ">=6.9.x" - } - }, - "node_modules/webdriver-manager/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/webdriver-manager/node_modules/ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/webdriver-manager/node_modules/chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", - "dev": true, - "dependencies": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/webdriver-manager/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true - }, - "node_modules/webdriver-manager/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/webdriver-manager/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/webdriver-manager/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "dev": true, - "dependencies": { - "ansi-regex": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/webdriver-manager/node_modules/supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } + "license": "MIT", + "optional": true }, "node_modules/webpack": { - "version": "5.91.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.91.0.tgz", - "integrity": "sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==", + "version": "5.105.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.105.0.tgz", + "integrity": "sha512-gX/dMkRQc7QOMzgTe6KsYFM7DxeIONQSui1s0n/0xht36HvrgbxtM1xBlgx596NbpHuQU8P7QpKwrZYwUX48nw==", "dev": true, + "license": "MIT", "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.5", - "@webassemblyjs/ast": "^1.12.1", - "@webassemblyjs/wasm-edit": "^1.12.1", - "@webassemblyjs/wasm-parser": "^1.12.1", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.21.10", + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.8", + "@types/json-schema": "^7.0.15", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.15.0", + "acorn-import-phases": "^1.0.3", + "browserslist": "^4.28.1", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.16.0", - "es-module-lexer": "^1.2.1", + "enhanced-resolve": "^5.19.0", + "es-module-lexer": "^2.0.0", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", + "loader-runner": "^4.3.1", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.10", - "watchpack": "^2.4.1", - "webpack-sources": "^3.2.3" + "schema-utils": "^4.3.3", + "tapable": "^2.3.0", + "terser-webpack-plugin": "^5.3.16", + "watchpack": "^2.5.1", + "webpack-sources": "^3.3.3" }, "bin": { "webpack": "bin/webpack.js" @@ -18411,10 +17775,11 @@ } }, "node_modules/webpack-dev-middleware": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.2.1.tgz", - "integrity": "sha512-hRLz+jPQXo999Nx9fXVdKlg/aehsw1ajA9skAneGmT03xwmyuhvF93p6HUKKbWhXdcERtGTzUCtIQr+2IQegrA==", + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.4.2.tgz", + "integrity": "sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==", "dev": true, + "license": "MIT", "dependencies": { "colorette": "^2.0.10", "memfs": "^4.6.0", @@ -18439,15 +17804,40 @@ } } }, - "node_modules/webpack-dev-server": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.0.4.tgz", - "integrity": "sha512-dljXhUgx3HqKP2d8J/fUMvhxGhzjeNVarDLcbO/EWMSgRizDkxHQDZQaLFL5VJY9tRBj2Gz+rvCEYYvhbqPHNA==", + "node_modules/webpack-dev-middleware/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/webpack-dev-middleware/node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/webpack-dev-server": { + "version": "5.2.5", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.2.5.tgz", + "integrity": "sha512-4wZtCquSuv9CKX8oybo+mqxtxZqWz47uM1Ch94lxowBztOhWCbhqvRbfC/mODOwxgV2brY+JGZpHq58/SuVFYg==", + "dev": true, + "license": "MIT", "dependencies": { "@types/bonjour": "^3.5.13", "@types/connect-history-api-fallback": "^1.5.4", - "@types/express": "^4.17.21", + "@types/express": "^4.17.25", + "@types/express-serve-static-core": "^4.17.21", "@types/serve-index": "^1.9.4", "@types/serve-static": "^1.15.5", "@types/sockjs": "^0.3.36", @@ -18456,25 +17846,22 @@ "bonjour-service": "^1.2.1", "chokidar": "^3.6.0", "colorette": "^2.0.10", - "compression": "^1.7.4", + "compression": "^1.8.1", "connect-history-api-fallback": "^2.0.0", - "default-gateway": "^6.0.3", - "express": "^4.17.3", + "express": "^4.22.1", "graceful-fs": "^4.2.6", - "html-entities": "^2.4.0", - "http-proxy-middleware": "^2.0.3", + "http-proxy-middleware": "^2.0.9", "ipaddr.js": "^2.1.0", "launch-editor": "^2.6.1", "open": "^10.0.3", "p-retry": "^6.2.0", - "rimraf": "^5.0.5", "schema-utils": "^4.2.0", - "selfsigned": "^2.4.1", + "selfsigned": "^5.5.0", "serve-index": "^1.9.1", "sockjs": "^0.3.24", "spdy": "^4.0.2", - "webpack-dev-middleware": "^7.1.0", - "ws": "^8.16.0" + "webpack-dev-middleware": "^7.4.2", + "ws": "^8.18.0" }, "bin": { "webpack-dev-server": "bin/webpack-dev-server.js" @@ -18498,55 +17885,216 @@ } } }, - "node_modules/webpack-dev-server/node_modules/brace-expansion": { + "node_modules/webpack-dev-server/node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/webpack-dev-server/node_modules/body-parser": { + "version": "1.20.6", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.6.tgz", + "integrity": "sha512-p5tAzS57i5MV9fZFDj9LeIiTZEufbSe2eDozP+ElheSUq1m74CRq1jI4mYNDdVs9vQztXFLuk/Gd6BWTdwRJ5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "bytes": "~3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "~1.2.0", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "on-finished": "~2.4.1", + "qs": "~6.15.1", + "raw-body": "~2.5.3", + "type-is": "~1.6.18", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/webpack-dev-server/node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/webpack-dev-server/node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/webpack-dev-server/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, + "node_modules/webpack-dev-server/node_modules/express": { + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.22.2.tgz", + "integrity": "sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "~1.20.5", + "content-disposition": "~0.5.4", + "content-type": "~1.0.4", + "cookie": "~0.7.1", + "cookie-signature": "~1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.3.1", + "fresh": "~0.5.2", + "http-errors": "~2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "~0.1.12", + "proxy-addr": "~2.0.7", + "qs": "~6.15.1", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "~0.19.0", + "serve-static": "~1.16.2", + "setprototypeof": "1.2.0", + "statuses": "~2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/webpack-dev-server/node_modules/finalhandler": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz", + "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "statuses": "~2.0.2", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/webpack-dev-server/node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/webpack-dev-server/node_modules/http-errors": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", "dev": true, + "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/webpack-dev-server/node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/webpack-dev-server/node_modules/glob": { - "version": "10.4.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", - "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" }, "engines": { - "node": ">=16 || 14 >=14.18" + "node": ">= 0.8" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "opencollective", + "url": "https://opencollective.com/express" } }, "node_modules/webpack-dev-server/node_modules/http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.10.tgz", + "integrity": "sha512-RKzRWNPxUZqbuk3BC5mGVJbBnWgr+diEnjJexIOytFbBzDy88Fbh/YvBr3DsNrl1jYAfjWfpATEv0NO35FDuPQ==", "dev": true, + "license": "MIT", "dependencies": { "@types/http-proxy": "^1.17.8", "http-proxy": "^1.18.1", @@ -18566,100 +18114,247 @@ } } }, - "node_modules/webpack-dev-server/node_modules/ipaddr.js": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", - "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", + "node_modules/webpack-dev-server/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/ipaddr.js": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.4.0.tgz", + "integrity": "sha512-9VGk3HGanVE6JoZXHiCpnGy5X0jYDnN4EA4lntFPj+1vIWlFhIylq2CrrCOJH9EAhc5CYhq18F2Av2tgoAPsYQ==", + "dev": true, + "license": "MIT", "engines": { "node": ">= 10" } }, - "node_modules/webpack-dev-server/node_modules/is-wsl": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", - "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", + "node_modules/webpack-dev-server/node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "dev": true, - "dependencies": { - "is-inside-container": "^1.0.0" - }, + "license": "MIT", "engines": { - "node": ">=16" - }, + "node": ">= 0.6" + } + }, + "node_modules/webpack-dev-server/node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "dev": true, + "license": "MIT", "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/webpack-dev-server/node_modules/minimatch": { - "version": "9.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", - "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "node_modules/webpack-dev-server/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/webpack-dev-server/node_modules/open": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz", - "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==", - "dev": true, - "dependencies": { - "default-browser": "^5.2.1", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "is-wsl": "^3.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/webpack-dev-server/node_modules/rimraf": { - "version": "5.0.7", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.7.tgz", - "integrity": "sha512-nV6YcJo5wbLW77m+8KjH8aB/7/rxQy9SZ0HY5shnwULfS+9nmTtVXAJET5NdZmCzA4fPI/Hm1wo/Po/4mopOdg==", - "dev": true, - "dependencies": { - "glob": "^10.3.7" - }, + "license": "MIT", "bin": { - "rimraf": "dist/esm/bin.mjs" + "mime": "cli.js" }, "engines": { - "node": ">=14.18" + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/webpack-dev-server/node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/webpack-dev-server/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/webpack-dev-server/node_modules/path-to-regexp": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.13.tgz", + "integrity": "sha512-A/AGNMFN3c8bOlvV9RreMdrv7jsmF9XIfDeCd87+I8RNg6s78BhJxMu69NEMHBSJFxKidViTEdruRwEk/WIKqA==", + "dev": true, + "license": "MIT" + }, + "node_modules/webpack-dev-server/node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/webpack-dev-server/node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/webpack-dev-server/node_modules/raw-body": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz", + "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==", + "dev": true, + "license": "MIT", + "dependencies": { + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/webpack-dev-server/node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/send": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz", + "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "~0.5.2", + "http-errors": "~2.0.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.4.1", + "range-parser": "~1.2.1", + "statuses": "~2.0.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/webpack-dev-server/node_modules/serve-static": { + "version": "1.16.3", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz", + "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "~0.19.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/webpack-dev-server/node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true, + "license": "ISC" + }, + "node_modules/webpack-dev-server/node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/webpack-dev-server/node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" } }, "node_modules/webpack-merge": { - "version": "5.10.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", - "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", + "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", "dev": true, + "license": "MIT", "dependencies": { "clone-deep": "^4.0.1", "flat": "^5.0.2", - "wildcard": "^2.0.0" + "wildcard": "^2.0.1" }, "engines": { - "node": ">=10.0.0" + "node": ">=18.0.0" } }, "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.5.1.tgz", + "integrity": "sha512-jyuiGJdtvY434z5bUZrjz67v76/ePNvFZTp9Mdz29IlH4+GPsgyGjiv0fKI+M7BdkU6ADjulUcKAd3tUK3WlEw==", "dev": true, + "license": "MIT", "engines": { "node": ">=10.13.0" } @@ -18669,6 +18364,7 @@ "resolved": "https://registry.npmjs.org/webpack-subresource-integrity/-/webpack-subresource-integrity-5.1.0.tgz", "integrity": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==", "dev": true, + "license": "MIT", "dependencies": { "typed-assert": "^1.0.8" }, @@ -18685,36 +18381,12 @@ } } }, - "node_modules/webpack/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/webpack/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "peerDependencies": { - "ajv": "^6.9.1" - } - }, "node_modules/webpack/node_modules/eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, + "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" @@ -18728,6 +18400,7 @@ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } @@ -18736,37 +18409,51 @@ "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "node_modules/webpack/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/webpack/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, + "license": "MIT" + }, + "node_modules/webpack/node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/webpack/node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "mime-db": "1.52.0" }, "engines": { - "node": ">= 10.13.0" + "node": ">= 0.6" + } + }, + "node_modules/webpack/node_modules/watchpack": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.5.2.tgz", + "integrity": "sha512-6i/00NBjP4yGPs+caKSyRfpTF/8Torsu0MOW3mMzIbhgISFder8i7xbqgHlLMwJrdiN8ndBV3UA1/AfzPSr+jg==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "engines": { + "node": ">=10.13.0" } }, "node_modules/websocket-driver": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", - "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.5.tgz", + "integrity": "sha512-ZL2+3c7kMBdIRCMz6l8jQMHyGVxj+UL+xVk74Ombiciboca8rHa15L86B19E5oh1pL9Ii/uj54gtsIrZGMo6zA==", "dev": true, + "license": "Apache-2.0", "dependencies": { "http-parser-js": ">=0.5.1", "safe-buffer": ">=5.1.0", @@ -18781,6 +18468,7 @@ "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", "dev": true, + "license": "Apache-2.0", "engines": { "node": ">=0.8.0" } @@ -18790,6 +18478,7 @@ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -18803,19 +18492,22 @@ "node_modules/which-module": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", - "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==", + "license": "ISC" }, "node_modules/wildcard": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/word-wrap": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.10.0" } @@ -18824,6 +18516,7 @@ "version": "6.2.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -18833,97 +18526,46 @@ "node": ">=8" } }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, + "node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "node": ">=8" } }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/wrap-ansi-cjs/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true + "license": "ISC" }, "node_modules/ws": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz", - "integrity": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==", + "version": "8.21.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.21.0.tgz", + "integrity": "sha512-Vsp28b7DRcimFQvrqu2Wek3z1iYxDCWqHYB8Qsnk/S4RfaCQzPGPyBNuVjJV3cd6UiKtUtp6sNM77gWvzcCH+g==", + "license": "MIT", "engines": { "node": ">=10.0.0" }, @@ -18940,40 +18582,38 @@ } } }, - "node_modules/xml2js": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", - "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", + "node_modules/wsl-utils": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/wsl-utils/-/wsl-utils-0.1.0.tgz", + "integrity": "sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==", "dev": true, + "license": "MIT", "dependencies": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" + "is-wsl": "^3.1.0" }, "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/xmlbuilder": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", - "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", - "dev": true, - "engines": { - "node": ">=4.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/xmldoc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/xmldoc/-/xmldoc-1.3.0.tgz", - "integrity": "sha512-y7IRWW6PvEnYQZNZFMRLNJw+p3pezM4nKYPfr15g4OOW9i8VpeydycFuipE2297OvZnh3jSb2pxOt9QpkZUVng==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/xmldoc/-/xmldoc-2.0.3.tgz", + "integrity": "sha512-6gRk4NY/Jvg67xn7OzJuxLRsGgiXBaPUQplVJ/9l99uIugxh4FTOewYz5ic8WScj7Xx/2WvhENiQKwkK9RpE4w==", + "license": "MIT", "dependencies": { - "sax": "^1.2.4" + "sax": "^1.4.3" + }, + "engines": { + "node": ">=12.0.0" } }, "node_modules/xmlhttprequest-ssl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz", - "integrity": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.1.2.tgz", + "integrity": "sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==", "engines": { "node": ">=0.4.0" } @@ -18983,6 +18623,7 @@ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, + "license": "ISC", "engines": { "node": ">=10" } @@ -18991,33 +18632,35 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true + "dev": true, + "license": "ISC" }, "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "version": "18.0.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-18.0.0.tgz", + "integrity": "sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==", "dev": true, + "license": "MIT", "dependencies": { - "cliui": "^8.0.1", + "cliui": "^9.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", + "string-width": "^7.2.0", "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" + "yargs-parser": "^22.0.0" }, "engines": { - "node": ">=12" + "node": "^20.19.0 || ^22.12.0 || >=23" } }, "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "version": "22.0.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-22.0.0.tgz", + "integrity": "sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==", "dev": true, + "license": "ISC", "engines": { - "node": ">=12" + "node": "^20.19.0 || ^22.12.0 || >=23" } }, "node_modules/yn": { @@ -19025,6 +18668,7 @@ "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -19034,6 +18678,7 @@ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=10" }, @@ -19041,10 +18686,44 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/yoctocolors-cjs": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/yoctocolors-cjs/-/yoctocolors-cjs-2.1.3.tgz", + "integrity": "sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "4.1.13", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.1.13.tgz", + "integrity": "sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-to-json-schema": { + "version": "3.25.2", + "resolved": "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.25.2.tgz", + "integrity": "sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==", + "dev": true, + "license": "ISC", + "peerDependencies": { + "zod": "^3.25.28 || ^4" + } + }, "node_modules/zone.js": { - "version": "0.14.7", - "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.14.7.tgz", - "integrity": "sha512-0w6DGkX2BPuiK/NLf+4A8FLE43QwBfuqz2dVgi/40Rj1WmqUskCqj329O/pwrqFJLG5X8wkeG2RhIAro441xtg==" + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.16.0.tgz", + "integrity": "sha512-LqLPpIQANebrlxY6jKcYKdgN5DTXyyHAKnnWWjE5pPfEQ4n7j5zn7mOEEpwNZVKGqx3kKKmvplEmoBrvpgROTA==", + "license": "MIT" } } } diff --git a/package.json b/package.json index b8dc11a4..e680a466 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rtl", - "version": "0.15.2-beta", + "version": "0.15.10-beta", "license": "MIT", "type": "module", "scripts": { @@ -11,90 +11,97 @@ "watchfrontenddev": "ng build --configuration development --optimization false --watch", "buildfrontendtest": "ng test --watch=false && ng build", "buildfrontend": "ng build --configuration production", - "buildbackend": "tsc --project ./server/tsconfig.server.json", - "watchbackend": "tsc --project ./server/tsconfig.server.json --watch", + "buildbackend": "npx tsc --project ./server/tsconfig.server.json", + "watchbackend": "npx tsc --project ./server/tsconfig.server.json --watch", "server": "set NODE_ENV=development&&nodemon --watch backend --watch server ./rtl.js", "serverUbuntu": "NODE_ENV=development nodemon --watch backend --watch server ./rtl.js", "testdev": "ng test --watch=true --code-coverage", - "test": "ng test --watch=false --browsers=ChromeHeadless", + "testbackend": "node --test test/backend/*.test.mjs", + "test": "npm run buildbackend && npm run testbackend && ng test --watch=false --browsers=ChromeHeadless", "lint": "eslint" }, "private": true, "dependencies": { - "@ngrx/effects": "^17.2.0", - "@ngrx/store": "^17.2.0", - "@swimlane/ngx-charts": "^20.5.0", - "angular-user-idle": "^4.0.0", - "atob": "^2.1.2", - "cookie-parser": "^1.4.6", - "crypto-browserify": "^3.12.0", - "csurf": "^1.11.0", - "express": "^4.19.2", - "express-session": "^1.18.0", - "hocon-parser": "^1.0.1", - "ini": "^4.1.3", - "jsonwebtoken": "^9.0.2", - "ng-qrcode": "^18.0.0", - "ngx-perfect-scrollbar-next": "^10.1.1", - "otplib": "^12.0.1", - "pdfmake": "^0.2.10", - "process": "^0.11.10", - "request": "^2.88.2", - "request-promise": "^4.2.6", - "rxjs": "^7.8.1", - "sha256": "^0.2.0", - "socket.io-client": "^4.7.5", - "stream-browserify": "^3.0.0", - "tslib": "^2.6.2", - "vm-browserify": "^1.1.2", - "ws": "^8.17.0", - "zone.js": "^0.14.6" + "@ngrx/effects": "21.0.1", + "@ngrx/store": "21.0.1", + "@swimlane/ngx-charts": "23.1.0", + "angular-user-idle": "4.0.0", + "atob": "2.1.2", + "axios": "1.18.1", + "buffer": "6.0.3", + "cookie-parser": "1.4.7", + "csrf-csrf": "4.0.3", + "express": "5.2.1", + "express-session": "1.18.2", + "hocon-parser": "1.0.1", + "ini": "6.0.0", + "jsonwebtoken": "9.0.3", + "ng-qrcode": "21.0.0", + "ngx-perfect-scrollbar-next": "10.1.1", + "otplib": "12.0.1", + "pdfmake": "0.3.11", + "process": "0.11.10", + "rxjs": "7.8.2", + "sha256": "0.2.0", + "socket.io-client": "4.8.3", + "tslib": "2.8.1", + "ws": "8.21.0", + "zone.js": "0.16.0" }, "devDependencies": { - "@angular-devkit/build-angular": "^18.0.2", - "@angular-eslint/builder": "^18.0.1", - "@angular-eslint/eslint-plugin": "^18.0.1", - "@angular-eslint/eslint-plugin-template": "^18.0.1", - "@angular-eslint/schematics": "^18.0.1", - "@angular-eslint/template-parser": "^18.0.1", - "@angular/animations": "^18.0.1", - "@angular/cdk": "^17.0.1", - "@angular/cli": "^18.0.2", - "@angular/common": "^18.0.1", - "@angular/compiler": "^18.0.1", - "@angular/compiler-cli": "^18.0.1", - "@angular/core": "^18.0.1", - "@angular/flex-layout": "^15.0.0-beta.42", - "@angular/forms": "^18.0.1", - "@angular/material": "^17.0.1", - "@angular/platform-browser": "^18.0.1", - "@angular/platform-browser-dynamic": "^18.0.1", - "@angular/router": "^18.0.1", - "@eslint/eslintrc": "^3.1.0", - "@fortawesome/angular-fontawesome": "^0.15.0", - "@fortawesome/fontawesome-svg-core": "^6.5.2", - "@fortawesome/free-regular-svg-icons": "^6.5.2", - "@fortawesome/free-solid-svg-icons": "^6.5.2", - "@ngrx/store-devtools": "^17.2.0", - "@types/jasmine": "^5.1.4", - "@types/node": "^20.14.1", - "@typescript-eslint/eslint-plugin": "^7.12.0", - "@typescript-eslint/parser": "^7.12.0", - "dotenv": "^16.4.5", - "eslint": "^9.4.0", - "eslint-plugin-deprecation": "^3.0.0", - "jasmine-core": "^5.1.2", - "jasmine-spec-reporter": "^7.0.0", - "karma": "^6.4.3", - "karma-chrome-launcher": "^3.2.0", - "karma-coverage": "^2.2.1", - "karma-jasmine": "^5.1.0", - "karma-jasmine-html-reporter": "^2.1.0", - "material-icons": "^1.13.12", - "nodemon": "^3.1.3", - "protractor": "^7.0.0", - "roboto-fontface": "^0.10.0", - "ts-node": "^10.9.2", - "typescript": "~5.4.5" + "@angular-devkit/build-angular": "20.3.32", + "@angular-eslint/builder": "20.7.0", + "@angular-eslint/eslint-plugin": "20.7.0", + "@angular-eslint/eslint-plugin-template": "20.7.0", + "@angular-eslint/schematics": "20.7.0", + "@angular-eslint/template-parser": "20.7.0", + "@angular/animations": "20.3.27", + "@angular/build": "20.3.32", + "@angular/cdk": "20.2.14", + "@angular/cli": "20.3.32", + "@angular/common": "20.3.27", + "@angular/compiler": "20.3.27", + "@angular/compiler-cli": "20.3.27", + "@angular/core": "20.3.27", + "@angular/flex-layout": "15.0.0-beta.42", + "@angular/forms": "20.3.27", + "@angular/material": "20.2.14", + "@angular/platform-browser": "20.3.27", + "@angular/platform-browser-dynamic": "20.3.27", + "@angular/router": "20.3.27", + "@eslint/eslintrc": "3.3.3", + "@fortawesome/angular-fontawesome": "4.0.0", + "@fortawesome/fontawesome-svg-core": "7.1.0", + "@fortawesome/free-regular-svg-icons": "7.1.0", + "@fortawesome/free-solid-svg-icons": "7.1.0", + "@ngrx/store-devtools": "21.0.1", + "@types/jasmine": "5.1.15", + "@types/node": "20.19.30", + "@typescript-eslint/eslint-plugin": "8.65.0", + "@typescript-eslint/parser": "8.65.0", + "dotenv": "17.2.3", + "eslint": "9.39.5", + "eslint-plugin-deprecation": "3.0.0", + "jasmine-core": "5.13.0", + "jasmine-spec-reporter": "7.0.0", + "karma": "6.4.4", + "karma-chrome-launcher": "3.2.0", + "karma-coverage": "2.2.1", + "karma-jasmine": "5.1.0", + "karma-jasmine-html-reporter": "2.1.0", + "material-icons": "1.13.14", + "nodemon": "3.1.14", + "roboto-fontface": "0.10.0", + "ts-node": "10.9.2", + "typescript": "5.8.3" + }, + "overrides": { + "chalk": "4.1.0", + "strip-ansi": "6.0.1", + "color-convert": "2.0.1", + "color-name": "1.1.4", + "is-core-module": "2.13.0", + "error-ex": "1.3.2", + "has-ansi": "2.1.1" } } diff --git a/release-notes/Release-notes-0.15.10.md b/release-notes/Release-notes-0.15.10.md new file mode 100644 index 00000000..876c3360 --- /dev/null +++ b/release-notes/Release-notes-0.15.10.md @@ -0,0 +1,102 @@ +# Release Notes — 0.15.10 + +This document collects the changes that go into the 0.15.10 release. Each PR merged for +this release should add its entry under the appropriate section below. + +## Bug Fixes + +- **Auth: harden login request validation** + ([#1654](https://github.com/Ride-The-Lightning/RTL/pull/1654)). + Tightens server-side validation of authentication requests and adds regression coverage + (`test/backend/authenticate.test.mjs`). Users who have two-factor authentication enabled + are encouraged to update promptly. + +- **Config & logging: reduce exposure of authentication secrets** + ([#1659](https://github.com/Ride-The-Lightning/RTL/pull/1659)). + Tightens redaction of authentication material in node logs and configuration API + responses, pins deployment-level authentication settings server-side, contains backup + file downloads to the node's backup directory, and hardens the settings persistence + path. Adds regression coverage (`test/backend/common.test.mjs`). Users are encouraged + to update promptly. + +- **Eclair: stop logging the node's auth header at DEBUG level** + ([#1664](https://github.com/Ride-The-Lightning/RTL/pull/1664)). + `getChannels` in the Eclair channels controller logged its entire request options object, + which for Eclair carries HTTP basic auth — so raising an Eclair node's `logLevel` to + `DEBUG` wrote `authorization: Basic ` into the node log, a recoverable form of the + configured `lnApiPassword`. The log now carries only the request url and form, matching + every other DEBUG log in the controllers. Present since 0.12.0 and only reachable by + opting in to `DEBUG` (the default level is `ERROR`), but it contradicted the logging + guarantee stated for #1659. Regression coverage added + (`test/backend/eclair-channels.test.mjs`). Found by auditing node logs at `DEBUG` while + verifying this release against the regtest fixture. + +## Code Health + +- **Bound remaining unbounded LND alias-resolution fan-outs** + ([#1651](https://github.com/Ride-The-Lightning/RTL/pull/1651), fixes + [#1630](https://github.com/Ride-The-Lightning/RTL/issues/1630)). + Mirrors the `runWithConcurrencyLimit(tasks, 20, done)` pattern introduced in #1629 + across the remaining unbounded `Promise.all(map(...))` alias-resolution fan-outs in + the LND graph and channels controllers, preventing a large node from firing one + alias-lookup request per peer, channel, or hop all at once. + + During review, a related race condition was found and fixed: the module-level + `options` variable in these controllers was reassigned per-request, but + `getAliasForChannel` and `getAliasFromPubkey` read it by closure rather than + receiving it as a parameter. Once alias-resolution tasks were deferred across + event-loop turns by the concurrency limiter, a concurrent request to a different + node could overwrite `options` mid-fan-out, causing a task to send with the wrong + node's credentials or URL. Both functions now accept an explicit `requestOptions` + parameter, and each handler captures a per-request copy before building the task + thunks. The catch blocks inside the concurrency-limit callbacks were also updated + to log raw exceptions directly instead of routing them through `handleError` + (which expects an HTTP-error-shaped value), matching the existing pattern used + by `closeChannel`. + +- **Batch dependency update resolving the open Dependabot security PRs** + ([#1653](https://github.com/Ride-The-Lightning/RTL/pull/1653)). + Dependabot had three open security PRs against `master` (#1648, #1649, #1650). Rather than + merging them piecemeal (they conflict with each other on `package-lock.json` and target the + wrong branch for the release flow), the fixes were applied in one pass on the release branch. + The only production exposure was `axios`, carrying ten advisories at 1.16.0 — prototype + pollution in request-option merging, `formDataToJSON` recursion DoS, `maxBodyLength` bypasses + on fetch/HTTP2 uploads, and a `NO_PROXY` bypass — now on 1.18.1 (a patch above Dependabot's + validated 1.18.0, which was superseded during the batch). The lockfile was regenerated from + scratch rather than incrementally patched, and the flagged transitive deps were moved to their + fixed in-range versions (`fast-uri` 3.1.4, plus `form-data`, `qs`, `tough-cookie`, `tar`, + `del` and `globby`). The dev toolchain took safe patch/minor bumps: `nodemon` 3.1.14, + `eslint` 9.39.5, and `@typescript-eslint/*` 8.65.0. + + The unused `protractor` devDependency was also dropped. It had been dead since the Angular + scaffold that introduced it — no `e2e/` directory, no `protractor.conf.js`, and no `e2e` + target in `angular.json`, leaving a single line in `package.json` as its only reference — + while dragging in 100 packages and the deprecated `request` stack. Removing it clears both + remaining critical advisories (`request`, `form-data`) along with fourteen others + (`adm-zip`, `selenium-webdriver`, `webdriver-manager`, `xml2js`, `tmp`, `rimraf` and the + rest of the webdriver chain). + + `npm audit`: **50 vulnerabilities (2 critical, 37 high, 10 moderate, 1 low) → 29 + (0 critical, 23 high, 6 moderate)**, and **production dependencies are now clean at 0** + (from 1 high). Everything still flagged is dev-only build tooling that cannot be fixed by a + version bump: the Angular CLI chain (`@hono/node-server` and `@modelcontextprotocol/sdk` + need Angular 21, i.e. `@angular/core` ^21 and TypeScript ≥5.9 — a framework migration, not a + bump; #1650 is left for that work), the `@angular-eslint` line, and the karma/jasmine stack. + None of it ships in the released bundle. + +- **Angular framework patch update to 20.3.27** + ([#1661](https://github.com/Ride-The-Lightning/RTL/pull/1661)). + Dependabot opened one PR per package against `master` for `@angular/core` (#1658), + `@angular/compiler` (#1657) and `@angular/common` (#1655). The framework packages are + pinned to exact versions and their peer ranges require them to move as a set, so the three + were applied as a single batch on the release branch, taking all nine 20.3.26 packages + (`animations`, `common`, `compiler`, `compiler-cli`, `core`, `forms`, `platform-browser`, + `platform-browser-dynamic`, `router`) to 20.3.27. Upstream fixes only, no advisories: + the compiler now disallows `i18n` event attributes and limits its possible-event-handler + check to property names longer than two characters, `HttpClient` distinguishes repeated + transfer-cache params, and `platform-server` picks up a newer `domino`. + + This stays inside Angular 20 — the build toolchain (`@angular/build`, `@angular/cli` + 20.3.32) and `@angular/cdk`/`@angular/material` (20.2.14) are already at the top of their + v20 lines, so nothing in this batch pulls in the Angular 21 migration still tracked by + #1650. `frontend/` was rebuilt for the new framework code. diff --git a/release-notes/Release-notes-0.15.9.md b/release-notes/Release-notes-0.15.9.md new file mode 100644 index 00000000..4824eb00 --- /dev/null +++ b/release-notes/Release-notes-0.15.9.md @@ -0,0 +1,304 @@ +# Release Notes — 0.15.9 + +This document collects the changes that go into the 0.15.9 release. Each PR merged for +this release should add its entry under the appropriate section below. + +## Bug Fixes + +- **Multi-node: preserve per-node auth when saving application settings** + ([#1645](https://github.com/Ride-The-Lightning/RTL/pull/1645), supersedes + [#1598](https://github.com/Ride-The-Lightning/RTL/pull/1598)). + When saving application settings on a multi-node setup, `addSecureData` matched each saved + node against the in-memory config by **array position** (`appConfig.nodes[i]`), so once nodes + were reordered or one was removed, another node's `macaroonPath`/`runePath` could be grafted + onto the wrong node — corrupting its authentication. Matching is now keyed by `node.index` + (via a lookup map) in both `addSecureData` and the config-write path, and the persisted + `RTL-Config.json` is sanitized of runtime-only fields (the request `options` object and the + resolved `runeValue`) so they are never written to disk. Contributed by @CosimoRicciardi in + #1598; landed here rebased onto the release branch with a regression test + (`test/backend/rtlconf.test.mjs`). + +- **All implementations: fix a page-load error when a channel's alias is undefined** + ([#1581](https://github.com/Ride-The-Lightning/RTL/pull/1581)). + On the home dashboard, channel labels were rendered as `(channel.alias || channel.peer_id).length` + (and the `remote_alias`/`shortChannelId` variants). When both the alias and its fallback id were + undefined, calling `.length` on `undefined` threw during change detection and errored the page on + load. The bindings now fall back to an empty string (`|| ''`, with optional chaining) so a missing + alias can no longer break the page. + +- **Multi-node: fix stale auth options blocking a node whose credentials weren't ready at startup** + ([#1601](https://github.com/Ride-The-Lightning/RTL/pull/1601)). + `CommonService.setOptions` short-circuited on `this.nodes[0]` regardless of which node was being + processed, so once the first node's auth headers loaded, every subsequent call returned early. A + second node whose credential load had failed — e.g. a Core Lightning rune file written + asynchronously after RTL starts — was never retried and kept failing with `missing rune!` until + RTL was restarted. The cache check is now per-node, so a node that failed to initialize is retried + on the next request once its credential is available, while already-loaded nodes are still skipped. + +- **Core Lightning: fix contradictory channel connection status between the list and the + detail panel** ([#1625](https://github.com/Ride-The-Lightning/RTL/pull/1625), fixes + [#1606](https://github.com/Ride-The-Lightning/RTL/issues/1606)). + CLN's `listpeerchannels` reports connection state as `peer_connected`, but the open and + pending channel-list columns read the legacy `connected` field, which the backend never + populated. The list therefore always rendered "Disconnected" while the detail panel (which + reads `peer_connected`) showed the true state. The backend now normalizes + `connected = peer_connected` in the `listPeerChannels` response so legacy consumers stay in + sync, and the list columns read `peer_connected` directly. Regression tests were added for + both channel tables. + +- **Core Lightning: fix the channel View Info modal rendering blank for disconnected channels** + ([#1625](https://github.com/Ride-The-Lightning/RTL/pull/1625), fixes + [#1606](https://github.com/Ride-The-Lightning/RTL/issues/1606)). + The channel information modal renders a block-explorer link from `selNode.settings.blockExplorerUrl`, + but the pending/inactive channels table opened the modal without passing `selNode`. With it + undefined, that binding threw during change detection and blanked every field below it — State, + Connected, Private and the balances all showed no value. Because a disconnected channel moves to + the pending/inactive table, this is exactly what was seen on "View Info" for a disconnected + channel. The pending table now passes `selNode` (matching the open table), and the modal guards + the explorer link so a missing `selNode` can no longer blank the dialog. The LND channel + information modal had the same unguarded `selNode.settings.blockExplorerUrl` binding (reachable + from the active-HTLCs and channel-backup tables, which open it without `selNode`), so the same + guard was applied there for parity. Eclair's modal doesn't use `selNode.settings`, so it is + unaffected. + +- **All implementations: restore the "items per page" dropdown (and first/last-page buttons) + on paginated tables** ([#1626](https://github.com/Ride-The-Lightning/RTL/pull/1626), fixes + [#1580](https://github.com/Ride-The-Lightning/RTL/issues/1580)). + A dependency-update commit in the 0.15.8-beta cycle mechanically renamed the paginator + binding `[showFirstLastButtons]` to `[hidePageSize]` on every `mat-paginator` while keeping + the same `screenSize === XS ? false : true` expression. Because the two properties have + opposite polarity, this inverted the behavior: on desktop the page-size selector was hidden, + so users were locked to 10 items per page with no way to raise it — and the first/last-page + buttons were dropped everywhere as collateral. Reverting the ~44 affected paginators back to + `[showFirstLastButtons]` restores both behaviors across the LND, Core Lightning, Eclair and + shared tables. + +- **Accessibility: add missing form-field labels and remove positive tab indexes** + ([#1609](https://github.com/Ride-The-Lightning/RTL/pull/1609), fixes + [#1566](https://github.com/Ride-The-Lightning/RTL/issues/1566)). + Several `mat-select` and datepicker controls across the send, invoice, open/close-channel, + bump-fee, public-key and settings forms were rendered without a `mat-label`, so screen readers + had no way to announce their purpose (WCAG 1.3.1 / 3.3.2). Descriptive labels were added to + the affected controls. The forms also relied on positive `tabindex` values, an anti-pattern + (WCAG 2.4.3) that produced an inconsistent keyboard order; these were removed so focus follows + natural DOM order across the LND, Core Lightning, Eclair and shared modals. + +- **Bound peer/route alias resolution to stop clnrest "Resource temporarily unavailable" errors** + ([#1629](https://github.com/Ride-The-Lightning/RTL/pull/1629), + fixes [#1501](https://github.com/Ride-The-Lightning/RTL/issues/1501)). + RTL resolves peer aliases by calling `listnodes` (CLN) / `graph/node` (LND) once per peer. A + prior fix bounded this to 20 concurrent calls (plus a cache) for the CLN channel list, but the + Core Lightning **peers list** and **route lookup** — and the LND **peers list** — still fired an + unbounded `Promise.all`, one request per peer at once. On Core Lightning nodes with many peers + this overwhelms clnrest and fails with `Resource temporarily unavailable (os error 11)` + (`EAGAIN`), leaving raw node IDs instead of aliases. All of these paths now use the same 20-way + concurrency limit (Eclair already resolves aliases inline from a bulk nodes list, so it is + unaffected). The CLN alias lookup was also made self-contained so aliases resolve regardless of + which screen is opened first; the limiter now resolves immediately for an empty or non-positive + input (which would previously never send a response); and the CLN alias cache gained a 6-hour TTL + and a max size so aliases refresh without an RTL restart and the cache can't grow unbounded. + +- **Reports: realign the Scroll Range select with the date picker** + ([#1637](https://github.com/Ride-The-Lightning/RTL/pull/1637), fixes + [#1635](https://github.com/Ride-The-Lightning/RTL/issues/1635)). + The a11y fix in #1609 wrapped the Reports page's bare Scroll Range `mat-select` in a + `mat-form-field` so it could carry a label, but the new wrapper reserved Material's + hint/subscript space below the input (78.8px total vs the date field's 56px) and was + top-anchored, leaving the Monthly/Yearly Date picker sitting ~11px lower than the select + on every implementation's report screens. The field now uses `subscriptSizing="dynamic"` + (no hints are used, so no space is reserved) and centers on the cross axis, restoring the + aligned 56px control row from v0.15.8 while keeping the accessibility label. Verified by + measuring the rendered layout headlessly against the regtest fixture: both fields now + render at identical top/height. + +## Enhancements + +- **Add a Disable Authentication option** + ([#1582](https://github.com/Ride-The-Lightning/RTL/pull/1582)). + A new `disableAuth` config flag (or `DISABLE_AUTH` environment variable) lets RTL run without its + login screen — intended for node-platform vendors who put their own authentication layer in front + of RTL, not for standalone users. When enabled, RTL issues a session token automatically and + disables password updates and 2FA; a configured `APP_PASSWORD` is rejected as incompatible. + Backend, frontend, and configuration docs were updated. + +- **LND: show "Blocks till Maturity" by default on the Pending Force Closing list** + ([#1627](https://github.com/Ride-The-Lightning/RTL/pull/1627), fixes + [#1567](https://github.com/Ride-The-Lightning/RTL/issues/1567)). + Blocks-till-maturity is critical for a force-closing channel, but it was only visible in the + per-channel detail modal. The column and its data binding already existed in the table (and + was selectable via column settings); it was simply absent from the default column selection. + Added `blocks_til_maturity` to the `pending_force_closing` defaults for both the desktop and + mobile (SM) layouts, so it's surfaced on the list out of the box. Users who have already + customized this page keep their saved columns and can add it via the column-settings gear. + +## Code Health + +- **LND: remove the deprecated `outgoing_chan_id` from QueryRoutes** + ([#1591](https://github.com/Ride-The-Lightning/RTL/pull/1591)). + LND deprecated the singular `outgoing_chan_id` query parameter on `QueryRoutes` as of + v0.20.0 in favor of the plural `outgoing_chan_ids`. The code path was already unreachable + in RTL — no caller of the `GetQueryRoutes` action ever populated `outgoingChanId`, so the + parameter was never sent — so this drops the unused model field, the effect's conditional + URL builder, and the server-side passthrough. The plural `outgoing_chan_ids` used by the + send-payment and rebalance flows is unaffected. + +- **LND: migrate `sat_per_byte` to `sat_per_vbyte` in node requests** + ([#1592](https://github.com/Ride-The-Lightning/RTL/pull/1592)). + LND's v0.21.0 release notes deprecate the `sat_per_byte` field, with removal planned in + v0.22 across `CloseChannel`, `OpenChannel`, `SendCoins`, `SendMany` and + `walletrpc.BumpFee`. LND already interprets the old field as sat/vbyte internally, so + this is a pure wire-format rename with no value conversion. The close-channel, + open-channel, send-coins and bump-fee request paths (and their matching TypeScript + identifiers) now send `sat_per_vbyte`, keeping RTL compatible ahead of the removal. + +- **Batch dependency update resolving all 20 open Dependabot security PRs** + ([#1633](https://github.com/Ride-The-Lightning/RTL/pull/1633)). + Dependabot had 20 open security-alert PRs against `master` (#1583–#1617). Rather than + merging them piecemeal (they conflict with each other on `package-lock.json` and target + the wrong branch for the release flow), the same bumps were applied in one pass on the + release branch: `axios` 1.16.0 and `ws` 8.21.0 (direct), the socket.io server stack + (`engine.io`, `engine.io-client`, `socket.io-adapter`, `socket.io-parser`), express's + `path-to-regexp`, `follow-redirects`, `lodash`, and the rest of the flagged transitive + deps; the Angular framework packages moved in lockstep to 20.3.26 and the CLI/build + toolchain to 20.3.32 (which drops the vulnerable `node-forge` from the tree entirely). + In-range fixes Dependabot hadn't re-opened PRs for (`pdfmake` 0.3.11 for its SSRF + advisory, `qs`, `uuid`, `tough-cookie`, `cookie`, `ajv`, `bn.js`, `elliptic`) were + picked up in the same pass. `npm audit` goes from 85 vulnerabilities (23 production) + to 29 (13 production, none high or critical besides the `request` stack); everything + remaining requires code changes, not version bumps — the deprecated + `request`/`request-promise` stack, `csurf` and the `crypto-browserify` polyfill + chain — and is tracked separately. Verified with a clean lint, the full frontend test suite, both production + builds, and an end-to-end smoke test of the docker regtest fixture across LND, Core + Lightning and Eclair (auth, getinfo, channel lists, and the WebSocket upgrade path). + +- **Replace the deprecated `request`/`request-promise` HTTP stack with axios** + ([#1638](https://github.com/Ride-The-Lightning/RTL/pull/1638), part of + [#1634](https://github.com/Ride-The-Lightning/RTL/issues/1634)). + `request` has been deprecated and unmaintained since 2020 and carries an unfixable SSRF + advisory plus vulnerable pinned copies of `form-data` (critical), `qs`, `tough-cookie` and + `uuid` — 8 of the 13 production `npm audit` findings left after #1633, none fixable by a + version bump. All 36 backend files that imported `request-promise` (the LND, Core Lightning + and Eclair controllers, Boltz/Loop/RTLConf shared controllers, `common.ts` and the LND + websocket client) now go through a small compatibility wrapper (`server/utils/request.ts`) + backed by `axios` — already a production dependency, so nothing new is added. The wrapper + accepts the existing request-promise options (`qs`, `form` including pre-encoded string + bodies, `body`, `baseUrl`/`uri`, `rejectUnauthorized`, `json`), resolves with the response + body directly, and rejects with a plain object mirroring request-promise's + `StatusCodeError`/`RequestError` shape, so `CommonService.handleError`'s status-code and + message extraction (including the `ECONNREFUSED` → 503 mapping and Eclair's status-code + special case) behaves as before; auth headers are omitted from rejected errors so they + cannot leak into logs. Callers without `json: true` still receive the raw text body, and + LND's line-delimited `/v2/router/send` stream still surfaces as a string for the existing + parser. Production `npm audit` drops from 13 findings (2 critical) to 6 low, all in the + `crypto-browserify`/`elliptic` polyfill chain tracked in #1634. Verified end-to-end against + the docker regtest fixture: 43 API checks across all three implementations (reads, invoice + creation, a routed LND payment over the streaming endpoint, cross-implementation payments + from Core Lightning and Eclair, message sign/verify, channel backup to disk, bad-invoice + and node-unreachable error mapping) plus a clean lint and both production builds. + +- **Replace the deprecated `csurf` middleware with `csrf-csrf`** + ([#1643](https://github.com/Ride-The-Lightning/RTL/pull/1643), part of + [#1634](https://github.com/Ride-The-Lightning/RTL/issues/1634)). + `csurf` has been deprecated since 2022 and pins an old `cookie` release with a known + advisory; npm's only offered "fix" is a downgrade. It is now replaced by the maintained + `csrf-csrf` (v4), which implements the same double-submit-cookie pattern with an + HMAC-signed, session-bound token keyed on RTL's existing boot secret. The frontend + contract is unchanged — the token still arrives in the `XSRF-TOKEN` cookie/header and is + echoed back as `x-xsrf-token` (all header/body/query token sources csurf accepted are + still accepted), the signed token cookie keeps the `_csrf` name (now httpOnly), and the + `EBADCSRFTOKEN` error path in `app.ts` applies as before, so no Angular or Quickpay + changes were needed. One behavioral fix this surfaced: `app.ts` called `req.csrfToken()` + twice (cookie + header) — harmless under csurf, but token-desyncing under csrf-csrf — + and now generates the token once per request. Tokens are also now bound to the session, + so a token stolen from one session no longer validates in another — a check csurf's + cookie mode didn't perform (and the websocket upgrade check in `authCheck.ts` keeps its + previous semantics). Production `npm audit` drops from 6 low findings to 4, all in the + `crypto-browserify`/`elliptic` chain tracked in #1634. Verified against the docker + regtest fixture: both API suites (43 checks across LND, Core Lightning and Eclair) plus + a dedicated CSRF battery — valid-token auth, missing/garbage token → 403, + cross-session token replay → 403, token stability, the `XSRF-TOKEN` response header for + Quickpay, and the websocket handshake. + **Note for third-party scripts / API consumers**: because tokens are session-bound, the + session cookie (`connect.sid`) must now be carried alongside the `_csrf` cookie and the + token header — a token without its session no longer validates. Handshake against `GET /` + (or any non-static route): static-served paths such as `/rtl/` do not mint CSRF cookies. + If a token goes stale (destroyed or expired session, or an RTL restart), the 403 response + re-mints fresh `XSRF-TOKEN`/`_csrf` cookies, so retrying with the new token succeeds. + +- **Drop the `crypto-browserify` polyfill chain by moving 2FA TOTP to WebCrypto** + ([#1644](https://github.com/Ride-The-Lightning/RTL/pull/1644), closes + [#1634](https://github.com/Ride-The-Lightning/RTL/issues/1634)). + The frontend build pulled in the browser polyfills `crypto-browserify`, `stream-browserify` + and `vm-browserify` (mapped in via `tsconfig.json` `paths`) solely because `otplib`'s + `@otplib/plugin-crypto` requires Node's `crypto`. That chain carried the last remaining + production `npm audit` findings — the `elliptic` advisory (GHSA-848j-6mx2-7j84, no fixed + release) plus `browserify-sign`/`create-ecdh`. The two-factor-auth settings dialog — the only + browser consumer of `otplib` — now uses a small WebCrypto-based TOTP service + (`src/app/shared/services/totp.service.ts`, RFC 6238: HMAC-SHA1, 6 digits, 30s step) instead, + so `otplib` is no longer bundled and the three polyfills and their `tsconfig` path mappings are + removed. The backend still verifies login tokens with `otplib`, and the new service is a + byte-for-byte match for it (verified against otplib and the RFC 6238 test vectors), so existing + authenticator enrollments keep working unchanged. `token.check()` becomes async (WebCrypto's + digest API is promise-based); the dialog's verify handler was updated accordingly. **Production + `npm audit` now reports zero vulnerabilities** (down from 13, incl. 2 critical, at the start of + this dependency-cleanup series). Verified against the docker regtest fixture: enrolling a 2FA + secret generated by the new service, confirming the backend's `otplib` accepts a token it + produces at login, and rejecting wrong/absent tokens — plus a unit spec covering the RFC 6238 + vectors, `keyuri` parity, and base32 round-tripping, both API suites, and the full frontend + spec suite (204 specs). + +- **Rebuild the compiled CLN channels controller to match its source** + ([#1631](https://github.com/Ride-The-Lightning/RTL/pull/1631)). + The #1606 fix updated `server/controllers/cln/channels.ts` to mirror `peer_connected` onto the + legacy `connected` field, but the committed compiled artifact + `backend/controllers/cln/channels.js` was never regenerated, so it lagged its source. Rebuilt it + so the committed backend output includes the connected-mirror line. + +## Developer Tooling + +- **Link the release notes from the README for discoverability** + ([#1646](https://github.com/Ride-The-Lightning/RTL/pull/1646)). + The `release-notes/` folder was not referenced anywhere — no README link, workflow, or + script — so it was effectively undiscoverable. The README's intro navigation now links to + it (`[Release Notes](../release-notes)`, alongside the existing docs links), so the + per-release notes are reachable from the repo homepage. The folder stays at the repo root + (release history is content, not `.github/` repo-meta). + +- **Documented the Dependabot / dependency-update process in CONTRIBUTING.md** + ([#1636](https://github.com/Ride-The-Lightning/RTL/pull/1636)). + Dependabot's security PRs target `master` and are never merged individually — they are + resolved in batch dependency-update PRs against the current release branch (as done in + #1633). That process was previously undocumented. CONTRIBUTING.md now has a "Handling + Dependabot PRs" section covering the full flow: collecting targets (including in-range + fixes hidden by exact pins), applying bumps with Angular in lockstep, regenerating the + lockfile from scratch, rebuilding and committing the compiled artifacts, verification, + and tracking deprecated packages that need code-level replacement in dedicated issues. + +- **Rebuilt the regtest docker fixture** + ([#1621](https://github.com/Ride-The-Lightning/RTL/pull/1621)). + The `docker/` dev setup had been unable to start since February 2021 — a broken `boltz` service + (undeclared `BOLTZ_*` variables, a non-existent build context, and undeclared volumes) made + Compose reject the whole project, so even `docker compose up -d bitcoind` failed. It was replaced + with a working regtest network: `bitcoind` 30.0 + three LND 0.20.0-beta nodes + (alice → bob → carol, so RTL's routing/forwarding screens have data) + RTL, all using Polar's + multi-arch images (nothing built locally; works on arm64), plus a deterministic `seed.sh`. The + Core Lightning node below was later added on top of this fixture. + +- **Added a Core Lightning node to the regtest docker fixture** + ([#1625](https://github.com/Ride-The-Lightning/RTL/pull/1625)). + The `docker/` fixture now runs a `cln` node (official `elementsproject/lightningd` image) + alongside the three LND nodes, wired to RTL over clnrest with rune auth, and the seed opens + a `cln→alice` channel. This gives RTL's Core Lightning screens a real backend for local + development and testing — it was used to verify the CLN channel-connection fix above + end-to-end. See `docker/README.md`. + +- **Added an Eclair node to the regtest docker fixture** + ([#1632](https://github.com/Ride-The-Lightning/RTL/pull/1632)). + The `docker/` fixture now runs an `eclair` node alongside the LND and Core Lightning nodes, + completing backend coverage of all three implementations RTL supports. RTL talks to its HTTP + API with basic auth (`lnApiPassword`), and the seed opens an `eclair→bob` channel plus + payments and an open invoice so RTL's Eclair screens have data. Polar's multi-arch + `polarlightning/eclair` image is used because the official `acinq/eclair` image is amd64-only + and its versioned tags are years stale. Since Eclair drives a bitcoind wallet rather than its + own, an init container creates a dedicated `eclair` wallet before the node starts — otherwise + it would attach to the fixture's mining wallet. A `bin/e-cli` helper wraps `eclair-cli`. diff --git a/server/controllers/cln/channels.ts b/server/controllers/cln/channels.ts index 62f02914..dce63045 100644 --- a/server/controllers/cln/channels.ts +++ b/server/controllers/cln/channels.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { getAlias } from './network.js'; @@ -14,11 +14,21 @@ export const listPeerChannels = (req, res, next) => { options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listpeerchannels'; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Peer Channels List Received', data: body.channels }); - return Promise.all(body.channels?.map((channel) => { + if (!body.channels || body.channels.length === 0) { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'No Channels to Process' }); + return res.status(200).json([]); + } + const getPeerAliasesTasks = body.channels.map((channel) => () => { channel.to_them_msat = channel.total_msat - channel.to_us_msat; - channel.balancedness = (channel.total_msat === 0) ? 1 : (1 - Math.abs((channel.to_us_msat - (channel.total_msat - channel.to_us_msat)) / channel.total_msat)).toFixed(3); + channel.balancedness = (channel.total_msat === 0) ? 1 : (1 - Math.abs((channel.to_us_msat - channel.to_them_msat) / channel.total_msat)).toFixed(3); + // listpeerchannels reports connection state as peer_connected. Mirror it onto the + // documented legacy 'connected' field (see the Channel model) as a real boolean, so + // any backward-compat consumer of this endpoint gets a defined true/false rather than + // undefined when peer_connected is absent (issue #1606). + channel.connected = !!channel.peer_connected; return getAlias(req.session.selectedNode, channel, 'peer_id'); - })).then((values) => { + }); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Peer Channels List With Aliases Received', data: body.channels }); return res.status(200).json(body.channels || []); }); diff --git a/server/controllers/cln/getInfo.ts b/server/controllers/cln/getInfo.ts index ac311a74..79b93384 100644 --- a/server/controllers/cln/getInfo.ts +++ b/server/controllers/cln/getInfo.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { CLWSClient, CLWebSocketClient } from './webSocketClient.js'; diff --git a/server/controllers/cln/invoices.ts b/server/controllers/cln/invoices.ts index 7ff9eee5..be729498 100644 --- a/server/controllers/cln/invoices.ts +++ b/server/controllers/cln/invoices.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; @@ -9,11 +9,11 @@ export const deleteExpiredInvoice = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoices', msg: 'Deleting Expired Invoices..' }); options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/delexpiredinvoice'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/autoclean-once'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoices Deleted', data: body }); - res.status(204).json({ status: 'Invoice Deleted Successfully' }); + res.status(201).json({ status: 'Cleaned Invoices: ' + body.autoclean.expiredinvoices.cleaned + ', Uncleaned Invoices: ' + body.autoclean.expiredinvoices.uncleaned }); }).catch((errRes) => { const err = common.handleError(errRes, 'Invoice', 'Delete Invoice Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); diff --git a/server/controllers/cln/network.ts b/server/controllers/cln/network.ts index 37cf8ad1..8a107c96 100644 --- a/server/controllers/cln/network.ts +++ b/server/controllers/cln/network.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -6,6 +6,11 @@ import { SelectedNode } from '../../models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; +// Alias cache: peerId -> { alias, ts }. Bounded by a TTL so an updated node alias is picked +// up without an RTL restart, and by a max size so it can't grow unbounded (evicts oldest). +const ALIAS_CACHE_TTL = 6 * 60 * 60 * 1000; // 6 hours +const ALIAS_CACHE_MAX = 5000; +const aliasCache = new Map(); export const getRoute = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Getting Network Routes..' }); @@ -15,9 +20,18 @@ export const getRoute = (req, res, next) => { options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Network', msg: 'Network Routes Received', data: body }); - return Promise.all(body.route?.map((rt) => getAlias(req.session.selectedNode, rt, 'id'))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Network Routes with Alias Received', data: body }); - res.status(200).json(body || []); + // Resolve hop aliases with a bounded number of concurrent listnodes calls, matching the + // peers/channels paths, so a long route can't storm clnrest (#1501). + const getRouteAliasesTasks = (body.route || []).map((rt) => () => getAlias(req.session.selectedNode, rt, 'id')); + common.runWithConcurrencyLimit(getRouteAliasesTasks, 20, () => { + // Guard the response-send: the limiter invokes this outside the surrounding .catch. + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Network Routes with Alias Received', data: body }); + res.status(200).json(body || []); + } catch (e) { + const err = common.handleError(e, 'Network', 'Query Routes Error', req.session.selectedNode); + if (!res.headersSent) { res.status(err.statusCode).json({ message: err.message, error: err.error }); } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Network', 'Query Routes Error', req.session.selectedNode); @@ -79,20 +93,47 @@ export const listNodes = (req, res, next) => { }; export const getAlias = (selNode: SelectedNode, peer: any, id: string) => { - options.url = selNode.settings.lnServerUrl + '/v1/listnodes'; - if (!peer[id]) { + const peerId = peer[id]; + if (!peerId) { logger.log({ selectedNode: selNode, level: 'ERROR', fileName: 'Network', msg: 'Empty Peer ID' }); peer.alias = ''; - return peer; + return Promise.resolve(peer); } - options.body = { id : peer[id] }; - return request.post(options).then((body) => { + + const cached = aliasCache.get(peerId); + if (cached && (Date.now() - cached.ts) < ALIAS_CACHE_TTL) { + peer.alias = cached.alias; + return Promise.resolve(peer); + } + + // Build a self-contained request from the selected node's own auth options rather than the + // shared module-level 'options', which is only set by a prior network.ts endpoint call. That + // coupling meant a cold Peers/route lookup (no prior network call) dereferenced a null 'options' + // and threw; now that the limiter swallows per-task throws, that surfaced as a 200 with every + // alias unset (#1501 review F1). selNode.authentication.options is guaranteed present here + // because every caller runs getOptions() first. + const nodeOptions = selNode.authentication?.options; + if (!nodeOptions || !nodeOptions.headers) { + peer.alias = peerId.substring(0, 20); + return Promise.resolve(peer); + } + const aliasOptions = { ...nodeOptions, method: 'POST', url: selNode.settings.lnServerUrl + '/v1/listnodes', body: { id: peerId }, json: true, qs: {} }; + delete aliasOptions.form; + + return request.post(aliasOptions).then((body) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Network', msg: 'Peer Alias Finished', data: body }); - peer.alias = body.nodes[0] && body.nodes[0].alias ? body.nodes[0].alias : peer[id].substring(0, 20); + const alias = body.nodes?.[0]?.alias || peerId.substring(0, 20); + // Re-insert so a refreshed entry moves to the most-recent position, then evict the + // oldest if we're over the cap (Map preserves insertion order). + aliasCache.delete(peerId); + aliasCache.set(peerId, { alias, ts: Date.now() }); + if (aliasCache.size > ALIAS_CACHE_MAX) { aliasCache.delete(aliasCache.keys().next().value); } + peer.alias = alias; return peer; }).catch((errRes) => { common.handleError(errRes, 'Network', 'Peer Alias Error', selNode); - peer.alias = peer[id].substring(0, 20); + const alias = peerId.substring(0, 20); + peer.alias = alias; return peer; }); }; diff --git a/server/controllers/cln/offers.ts b/server/controllers/cln/offers.ts index 993b852c..9662c1e8 100644 --- a/server/controllers/cln/offers.ts +++ b/server/controllers/cln/offers.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { Database, DatabaseService } from '../../utils/database.js'; @@ -82,7 +82,7 @@ export const disableOffer = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Disabling Offer..' }); options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/disableOffer'; + options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/disableoffer'; options.body = req.body; request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Offers', msg: 'Offer Disabled', data: body }); diff --git a/server/controllers/cln/onchain.ts b/server/controllers/cln/onchain.ts index 0495499b..d7cce50c 100644 --- a/server/controllers/cln/onchain.ts +++ b/server/controllers/cln/onchain.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/cln/payments.ts b/server/controllers/cln/payments.ts index fbf424aa..9553af31 100644 --- a/server/controllers/cln/payments.ts +++ b/server/controllers/cln/payments.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { Database, DatabaseService } from '../../utils/database.js'; diff --git a/server/controllers/cln/peers.ts b/server/controllers/cln/peers.ts index 2772cf40..8106bbb4 100644 --- a/server/controllers/cln/peers.ts +++ b/server/controllers/cln/peers.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { getAlias } from './network.js'; @@ -15,9 +15,20 @@ export const getPeers = (req, res, next) => { request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; - return Promise.all(peers?.map((peer) => getAlias(req.session.selectedNode, peer, 'id'))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); - res.status(200).json(body.peers || []); + // Resolve peer aliases with a bounded number of concurrent listnodes calls. An unbounded + // Promise.all here fires one request per peer at once, which overwhelms clnrest on nodes + // with many peers and fails with "Resource temporarily unavailable (os error 11)" (#1501). + const getPeerAliasesTasks = peers.map((peer) => () => getAlias(req.session.selectedNode, peer, 'id')); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + // The limiter invokes this outside the surrounding .then/.catch chain, so guard the + // response-send: a throw here would otherwise be an unhandled rejection with no response. + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); + res.status(200).json(body.peers || []); + } catch (e) { + const err = common.handleError(e, 'Peers', 'List Peers Error', req.session.selectedNode); + if (!res.headersSent) { res.status(err.statusCode).json({ message: err.message, error: err.error }); } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'List Peers Error', req.session.selectedNode); @@ -37,8 +48,18 @@ export const postPeer = (req, res, next) => { listOptions.url = req.session.selectedNode.settings.lnServerUrl + '/v1/listpeers'; request.post(listOptions).then((listPeersRes) => { const peers = listPeersRes && listPeersRes.peers ? common.newestOnTop(listPeersRes.peers, 'id', connectRes.id) : []; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); - res.status(201).json(peers); + // Resolve aliases (bounded) for the returned peers so a freshly connected peer shows its + // alias rather than a raw node id, matching getPeers and the LND postPeer path (#1629 F5). + const getPeerAliasesTasks = peers.map((peer) => () => getAlias(req.session.selectedNode, peer, 'id')); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: peers }); + res.status(201).json(peers); + } catch (e) { + const err = common.handleError(e, 'Peers', 'Connect Peer Error', req.session.selectedNode); + if (!res.headersSent) { res.status(err.statusCode).json({ message: err.message, error: err.error }); } + } + }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); diff --git a/server/controllers/cln/utility.ts b/server/controllers/cln/utility.ts index 2949d40d..dbcb8bca 100644 --- a/server/controllers/cln/utility.ts +++ b/server/controllers/cln/utility.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; @@ -42,7 +42,7 @@ export const verifyMessage = (req, res, next) => { if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/checkmessage'; options.body = req.body; - request.post(options, (error, response, body) => { + request.post(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Message', msg: 'Message Verified', data: body }); res.status(201).json(body); }).catch((errRes) => { diff --git a/server/controllers/eclair/channels.ts b/server/controllers/eclair/channels.ts index 2451d34c..24dcf4ce 100644 --- a/server/controllers/eclair/channels.ts +++ b/server/controllers/eclair/channels.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -31,7 +31,7 @@ export const simplifyAllChannels = (selNode: SelectedNode, channels) => { }); channelNodeIds = channelNodeIds.substring(1); options.url = selNode.settings.lnServerUrl + '/nodes'; - options.form = { nodeIds: channelNodeIds }; + options.form = channelNodeIds; logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Node Ids to find alias', data: channelNodeIds }); return request.post(options).then((nodes) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Filtered Nodes Received', data: nodes }); @@ -55,7 +55,10 @@ export const getChannels = (req, res, next) => { options.form = req.query; logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Channels Node Id', data: options.form }); } - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Options', data: options }); + // Log the call's shape only. Eclair authenticates with HTTP basic auth, so the options + // object carries the node's lnApiPassword in its authorization header, and node logs are + // routinely shared when debugging. + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Options', data: { url: options.url, form: options.form } }); if (common.read_dummy_data) { common.getDummyData('Channels', req.session.selectedNode.lnImplementation).then((data) => { res.status(200).json(data); }); } else { @@ -68,7 +71,7 @@ export const getChannels = (req, res, next) => { }); } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Empty Channels List Received' }); - res.status(200).json([]); + return res.status(200).json([]); } }). catch((errRes) => { diff --git a/server/controllers/eclair/fees.ts b/server/controllers/eclair/fees.ts index afd2b2ed..19a25f4f 100644 --- a/server/controllers/eclair/fees.ts +++ b/server/controllers/eclair/fees.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; diff --git a/server/controllers/eclair/getInfo.ts b/server/controllers/eclair/getInfo.ts index 67f6c0de..3fda9d46 100644 --- a/server/controllers/eclair/getInfo.ts +++ b/server/controllers/eclair/getInfo.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { ECLWSClient, ECLWebSocketClient } from './webSocketClient.js'; diff --git a/server/controllers/eclair/invoices.ts b/server/controllers/eclair/invoices.ts index 59013c3d..a6f80ab5 100644 --- a/server/controllers/eclair/invoices.ts +++ b/server/controllers/eclair/invoices.ts @@ -1,7 +1,7 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; -import { SelectedNode } from 'server/models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; diff --git a/server/controllers/eclair/network.ts b/server/controllers/eclair/network.ts index 934ec5f7..ac89a89b 100644 --- a/server/controllers/eclair/network.ts +++ b/server/controllers/eclair/network.ts @@ -1,7 +1,7 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; -import { SelectedNode } from 'server/models/config.model.js'; +import { SelectedNode } from '../../models/config.model.js'; let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; diff --git a/server/controllers/eclair/onchain.ts b/server/controllers/eclair/onchain.ts index 4da0b24a..b2f9b001 100644 --- a/server/controllers/eclair/onchain.ts +++ b/server/controllers/eclair/onchain.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/eclair/payments.ts b/server/controllers/eclair/payments.ts index 80339325..921f386e 100644 --- a/server/controllers/eclair/payments.ts +++ b/server/controllers/eclair/payments.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -89,7 +89,7 @@ export const queryPaymentRoute = (req, res, next) => { }); } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Empty Payment Route Information Received' }); - res.status(200).json({ routes: [] }); + return res.status(200).json({ routes: [] }); } }).catch((errRes) => { const err = common.handleError(errRes, 'Payments', 'Query Route Error', req.session.selectedNode); diff --git a/server/controllers/eclair/peers.ts b/server/controllers/eclair/peers.ts index 2690774d..a0712a75 100644 --- a/server/controllers/eclair/peers.ts +++ b/server/controllers/eclair/peers.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -42,7 +42,7 @@ export const getPeers = (req, res, next) => { }); } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Empty Peers Received' }); - res.status(200).json([]); + return res.status(200).json([]); } }). catch((errRes) => { @@ -91,7 +91,7 @@ export const connectPeer = (req, res, next) => { res.status(201).json(peers); }); } else { - res.status(201).json([]); + return res.status(201).json([]); } }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); diff --git a/server/controllers/lnd/balance.ts b/server/controllers/lnd/balance.ts index fde5efa8..0cc6a3d6 100644 --- a/server/controllers/lnd/balance.ts +++ b/server/controllers/lnd/balance.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/lnd/channels.ts b/server/controllers/lnd/channels.ts index 76e196c4..7bbdfbe0 100644 --- a/server/controllers/lnd/channels.ts +++ b/server/controllers/lnd/channels.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -6,10 +6,10 @@ let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; -export const getAliasForChannel = (selNode: SelectedNode, channel) => { +export const getAliasForChannel = (selNode: SelectedNode, channel, requestOptions) => { const pubkey = (channel.remote_pubkey) ? channel.remote_pubkey : (channel.remote_node_pub) ? channel.remote_node_pub : ''; - options.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; - return request(options).then((aliasBody) => { + requestOptions.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; + return request(requestOptions).then((aliasBody) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Channels', msg: 'Alias Received', data: aliasBody.node.alias }); channel.remote_alias = aliasBody.node.alias && aliasBody.node.alias !== '' ? aliasBody.node.alias : aliasBody.node.pub_key.slice(0, 20); return channel; @@ -31,20 +31,23 @@ export const getAllChannels = (req, res, next) => { request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Channels List Received', data: body }); if (body.channels) { - return Promise.all( - body.channels?.map((channel) => { - local = (channel.local_balance) ? +channel.local_balance : 0; - remote = (channel.remote_balance) ? +channel.remote_balance : 0; - total = local + remote; - channel.balancedness = (total === 0) ? 1 : (1 - Math.abs((local - remote) / total)).toFixed(3); - return getAliasForChannel(req.session.selectedNode, channel); - }) - ).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sorted Channels List Received', data: body }); - return res.status(200).json(body); - }).catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Get All Channel Aliases Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + body.channels.forEach((channel) => { + local = (channel.local_balance) ? +channel.local_balance : 0; + remote = (channel.remote_balance) ? +channel.remote_balance : 0; + total = local + remote; + channel.balancedness = (total === 0) ? 1 : (1 - Math.abs((local - remote) / total)).toFixed(3); + }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getChannelAliasesTasks = body.channels.map((channel) => () => getAliasForChannel(selNode, channel, { ...requestOptions })); + common.runWithConcurrencyLimit(getChannelAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sorted Channels List Received', data: body }); + return res.status(200).json(body); + } catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Get All Channel Aliases Error', error: e.message }); + if (!res.headersSent) { res.status(500).json({ message: 'Get All Channel Aliases Error', error: e.message }); } + } }); } else { body.channels = []; @@ -67,27 +70,30 @@ export const getPendingChannels = (req, res, next) => { if (!body.total_limbo_balance) { body.total_limbo_balance = 0; } - const promises = []; + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getPendingAliasesTasks = []; if (body.pending_open_channels && body.pending_open_channels.length > 0) { - body.pending_open_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.pending_open_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } if (body.pending_force_closing_channels && body.pending_force_closing_channels.length > 0) { - body.pending_force_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.pending_force_closing_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } if (body.pending_closing_channels && body.pending_closing_channels.length > 0) { - body.pending_closing_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.pending_closing_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } if (body.waiting_close_channels && body.waiting_close_channels.length > 0) { - body.waiting_close_channels?.map((channel) => promises.push(getAliasForChannel(req.session.selectedNode, channel.channel))); + body.waiting_close_channels?.map((channel) => getPendingAliasesTasks.push(() => getAliasForChannel(selNode, channel.channel, { ...requestOptions }))); } - return Promise.all(promises).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Pending Channels List Received', data: body }); - return res.status(200).json(body); - }). - catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Get Pending Channel Aliases Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - }); + common.runWithConcurrencyLimit(getPendingAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Pending Channels List Received', data: body }); + return res.status(200).json(body); + } catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Get Pending Channel Aliases Error', error: e.message }); + if (!res.headersSent) { res.status(500).json({ message: 'Get Pending Channel Aliases Error', error: e.message }); } + } + }); }).catch((errRes) => { const err = common.handleError(errRes, 'Channels', 'List Pending Channels Error', req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); @@ -102,17 +108,20 @@ export const getClosedChannels = (req, res, next) => { options.qs = req.query; request(options).then((body) => { if (body.channels && body.channels.length > 0) { - return Promise.all( - body.channels?.map((channel) => { - channel.close_type = (!channel.close_type) ? 'COOPERATIVE_CLOSE' : channel.close_type; - return getAliasForChannel(req.session.selectedNode, channel); - }) - ).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closed Channels List Received', data: body }); - return res.status(200).json(body); - }).catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Get Closed Channel Aliases Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); + body.channels.forEach((channel) => { + channel.close_type = (!channel.close_type) ? 'COOPERATIVE_CLOSE' : channel.close_type; + }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getClosedAliasesTasks = body.channels.map((channel) => () => getAliasForChannel(selNode, channel, { ...requestOptions })); + common.runWithConcurrencyLimit(getClosedAliasesTasks, 20, () => { + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closed Channels List Received', data: body }); + return res.status(200).json(body); + } catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Get Closed Channel Aliases Error', error: e.message }); + if (!res.headersSent) { res.status(500).json({ message: 'Get Closed Channel Aliases Error', error: e.message }); } + } }); } else { body.channels = []; @@ -139,7 +148,7 @@ export const postChannel = (req, res, next) => { if (trans_type === '1') { options.form.target_conf = trans_type_value; } else if (trans_type === '2') { - options.form.sat_per_byte = trans_type_value; + options.form.sat_per_vbyte = trans_type_value; } if (commitment_type) { options.form.commitment_type = commitment_type; @@ -155,37 +164,6 @@ export const postChannel = (req, res, next) => { }); }; -export const postTransactions = (req, res, next) => { - const { paymentReq, paymentAmount, feeLimit, outgoingChannel, allowSelfPayment, lastHopPubkey } = req.body; - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Sending Payment..' }); - options = common.getOptions(req); - if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } - options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/transaction-stream'; - options.form = { payment_request: paymentReq }; - if (paymentAmount) { - options.form.amt = paymentAmount; - } - if (feeLimit) { options.form.fee_limit = feeLimit; } - if (outgoingChannel) { options.form.outgoing_chan_id = outgoingChannel; } - if (allowSelfPayment) { options.form.allow_self_payment = allowSelfPayment; } - if (lastHopPubkey) { options.form.last_hop_pubkey = Buffer.from(lastHopPubkey, 'hex').toString('base64'); } - options.form = JSON.stringify(options.form); - logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Send Payment Options', data: options.form }); - request.post(options).then((body) => { - body = body.result ? body.result : body; - if (body.payment_error) { - const err = common.handleError(body.payment_error, 'Channels', 'Send Payment Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - } else { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Payment Sent', data: body }); - res.status(201).json(body); - } - }).catch((errRes) => { - const err = common.handleError(errRes, 'Channels', 'Send Payment Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - }); -}; - export const closeChannel = (req, res, next) => { try { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Closing Channel..' }); @@ -198,9 +176,15 @@ export const closeChannel = (req, res, next) => { const channelpoint = req.params.channelPoint?.replace(':', '/'); options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/channels/' + channelpoint + '?force=' + req.query.force; if (req.query.target_conf) { options.url = options.url + '&target_conf=' + req.query.target_conf; } - if (req.query.sat_per_byte) { options.url = options.url + '&sat_per_byte=' + req.query.sat_per_byte; } + if (req.query.sat_per_vbyte) { options.url = options.url + '&sat_per_vbyte=' + req.query.sat_per_vbyte; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Channels', msg: 'Closing Channel Options URL', data: options.url }); - request.delete(options); + // Fire-and-forget: LND keeps the close stream open until the closing tx + // confirms, so exempt it from the request timeout; the 202 is already sent, + // so log a rejection instead of letting it crash the process. + request.delete({ ...options, timeout: 0 }).catch((errRes) => { + const err = common.handleError(errRes, 'Channels', 'Close Channel Error', req.session.selectedNode); + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Channels', msg: 'Close Channel Error', error: err }); + }); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Channels', msg: 'Channel Close Requested' }); res.status(202).json({ message: 'Close channel request has been submitted.' }); } catch (error: any) { diff --git a/server/controllers/lnd/channelsBackup.ts b/server/controllers/lnd/channelsBackup.ts index 82eb0e95..80974f65 100644 --- a/server/controllers/lnd/channelsBackup.ts +++ b/server/controllers/lnd/channelsBackup.ts @@ -1,6 +1,6 @@ import * as fs from 'fs'; import { sep } from 'path'; -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; @@ -11,10 +11,10 @@ const common: CommonService = Common; function getFilesList(channelBackupPath, callback) { const files_list = []; let all_restore_exists = false; - let response = { all_restore_exists: false, files: [] } || { message: '', error: {}, statusCode: 500 }; + let response = { all_restore_exists: false, files: [] }; fs.readdir(channelBackupPath + sep + 'restore', (err, files) => { if (err && err.code !== 'ENOENT' && err.errno !== -4058) { - response = { message: 'Channels Restore List Failed!', error: err, statusCode: 500 }; + response = Object.assign({ message: 'Channels Restore List Failed!', error: err, statusCode: 500 }); } if (files && files.length > 0) { files.forEach((file) => { diff --git a/server/controllers/lnd/fees.ts b/server/controllers/lnd/fees.ts index 428b1a41..d722a659 100644 --- a/server/controllers/lnd/fees.ts +++ b/server/controllers/lnd/fees.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { getAllForwardingEvents } from './switch.js'; diff --git a/server/controllers/lnd/getInfo.ts b/server/controllers/lnd/getInfo.ts index 658975ef..f4d09154 100644 --- a/server/controllers/lnd/getInfo.ts +++ b/server/controllers/lnd/getInfo.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { LNDWSClient, LNDWebSocketClient } from './webSocketClient.js'; diff --git a/server/controllers/lnd/graph.ts b/server/controllers/lnd/graph.ts index 6f5ff67b..86d14267 100644 --- a/server/controllers/lnd/graph.ts +++ b/server/controllers/lnd/graph.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -6,9 +6,9 @@ let options = null; const logger: LoggerService = Logger; const common: CommonService = Common; -export const getAliasFromPubkey = (selNode: SelectedNode, pubkey) => { - options.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; - return request(options).then((res) => { +export const getAliasFromPubkey = (selNode: SelectedNode, pubkey, requestOptions) => { + requestOptions.url = selNode.settings.lnServerUrl + '/v1/graph/node/' + pubkey; + return request(requestOptions).then((res) => { logger.log({ selectedNode: selNode, level: 'DEBUG', fileName: 'Graph', msg: 'Alias Received', data: res.node.alias }); return res.node.alias; }). @@ -76,27 +76,27 @@ export const getQueryRoutes = (req, res, next) => { options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/graph/routes/' + req.params.destPubkey + '/' + req.params.amount; - if (req.query.outgoing_chan_id) { - options.url = options.url + '?outgoing_chan_id=' + req.query.outgoing_chan_id; - } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Graph', msg: 'Query Routes URL', data: options.url }); request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Graph', msg: 'Query Routes Received', data: body }); if (body.routes && body.routes.length && body.routes.length > 0 && body.routes[0].hops && body.routes[0].hops.length && body.routes[0].hops.length > 0) { - return Promise.all(body.routes[0].hops?.map((hop) => getAliasFromPubkey(req.session.selectedNode, hop.pub_key))). - then((values) => { + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getRouteAliasesTasks = body.routes[0].hops.map((hop) => () => getAliasFromPubkey(selNode, hop.pub_key, { ...requestOptions })); + common.runWithConcurrencyLimit(getRouteAliasesTasks, 20, (values) => { + try { body.routes[0].hops?.map((hop, i) => { hop.hop_sequence = i + 1; - hop.pubkey_alias = values[i]; + hop.pubkey_alias = typeof values[i] === 'string' ? values[i] : 'Unknown'; return hop; }); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Routes with Alias Received', data: body }); res.status(200).json(body); - }). - catch((errRes) => { - const err = common.handleError(errRes, 'Graph', 'Get Query Routes Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - }); + } catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Graph', msg: 'Get Query Routes Error', error: e.message }); + if (!res.headersSent) { res.status(500).json({ message: 'Get Query Routes Error', error: e.message }); } + } + }); } else { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Graph Routes Received', data: body }); return res.status(200).json(body); @@ -141,15 +141,19 @@ export const getAliasesForPubkeys = (req, res, next) => { if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } if (req.query.pubkeys) { const pubkeyArr = req.query.pubkeys.split(','); - return Promise.all(pubkeyArr?.map((pubkey) => getAliasFromPubkey(req.session.selectedNode, pubkey))). - then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Node Alias', data: values }); - res.status(200).json(values); - }). - catch((errRes) => { - const err = common.handleError(errRes, 'Graph', 'Get Aliases for Pubkeys Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); - }); + const selNode = req.session.selectedNode; + const { qs: _qs, ...requestOptions } = options; + const getAliasesTasks = pubkeyArr.map((pubkey) => () => getAliasFromPubkey(selNode, pubkey, { ...requestOptions })); + common.runWithConcurrencyLimit(getAliasesTasks, 20, (values) => { + try { + const safeValues = values.map((v) => (typeof v === 'string' ? v : 'Unknown')); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Graph', msg: 'Node Alias', data: safeValues }); + res.status(200).json(safeValues); + } catch (e) { + logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Graph', msg: 'Get Aliases for Pubkeys Error', error: e.message }); + if (!res.headersSent) { res.status(500).json({ message: 'Get Aliases for Pubkeys Error', error: e.message }); } + } + }); } else { return res.status(200).json([]); } diff --git a/server/controllers/lnd/invoices.ts b/server/controllers/lnd/invoices.ts index 2897689f..3979bcd0 100644 --- a/server/controllers/lnd/invoices.ts +++ b/server/controllers/lnd/invoices.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { LNDWSClient, LNDWebSocketClient } from './webSocketClient.js'; @@ -8,6 +8,23 @@ const logger: LoggerService = Logger; const common: CommonService = Common; const lndWsClient: LNDWebSocketClient = LNDWSClient; +const KEYSEND_MESSAGE_TLV_TYPE = '34349334'; + +const extractKeysendMessage = (invoice) => { + if (invoice.is_keysend && (!invoice.memo || invoice.memo === '') && invoice.htlcs && invoice.htlcs.length > 0) { + for (const htlc of invoice.htlcs) { + if (htlc.custom_records && htlc.custom_records[KEYSEND_MESSAGE_TLV_TYPE]) { + try { + return Buffer.from(htlc.custom_records[KEYSEND_MESSAGE_TLV_TYPE], 'base64').toString('utf8'); + } catch (err) { + return ''; + } + } + } + } + return invoice.memo || ''; +}; + export const invoiceLookup = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Getting Invoice Information..' }); options = common.getOptions(req); @@ -22,6 +39,7 @@ export const invoiceLookup = (req, res, next) => { body.r_preimage = body.r_preimage ? Buffer.from(body.r_preimage, 'base64').toString('hex') : ''; body.r_hash = body.r_hash ? Buffer.from(body.r_hash, 'base64').toString('hex') : ''; body.description_hash = body.description_hash ? Buffer.from(body.description_hash, 'base64').toString('hex') : null; + body.memo = extractKeysendMessage(body); logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Invoice Information Received', data: body }); res.status(200).json(body); }).catch((errRes) => { @@ -43,6 +61,7 @@ export const listInvoices = (req, res, next) => { invoice.r_preimage = invoice.r_preimage ? Buffer.from(invoice.r_preimage, 'base64').toString('hex') : ''; invoice.r_hash = invoice.r_hash ? Buffer.from(invoice.r_hash, 'base64').toString('hex') : ''; invoice.description_hash = invoice.description_hash ? Buffer.from(invoice.description_hash, 'base64').toString('hex') : null; + invoice.memo = extractKeysendMessage(invoice); }); } logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Invoice', msg: 'Sorted Invoices List Received', data: body }); diff --git a/server/controllers/lnd/message.ts b/server/controllers/lnd/message.ts index 864dddd4..f86d81b7 100644 --- a/server/controllers/lnd/message.ts +++ b/server/controllers/lnd/message.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/lnd/newAddress.ts b/server/controllers/lnd/newAddress.ts index cbeb6fc8..ecd1a261 100644 --- a/server/controllers/lnd/newAddress.ts +++ b/server/controllers/lnd/newAddress.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/lnd/payments.ts b/server/controllers/lnd/payments.ts index dd927271..11e104ac 100644 --- a/server/controllers/lnd/payments.ts +++ b/server/controllers/lnd/payments.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -88,6 +88,9 @@ export const paymentLookup = (req, res, next) => { options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/router/track/' + req.params.paymentHash; + // Deliberately keep the wrapper's default timeout here: this holds a + // browser-facing response open while tracking, and payments in flight + // longer than that are delivered via the websocket subscription instead. request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Information Received for ' + req.params.paymentHash, data: body }); res.status(200).json(body.result || body); @@ -96,3 +99,35 @@ export const paymentLookup = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); }); }; + +export const sendPayment = (req, res, next) => { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Sending Payment..' }); + options = common.getOptions(req); + if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } + options.url = req.session.selectedNode.settings.lnServerUrl + '/v2/router/send'; + if (req.body.last_hop_pubkey) { + req.body.last_hop_pubkey = Buffer.from(req.body.last_hop_pubkey, 'hex').toString('base64'); + } + req.body.amp = req.body.amp ?? false; + req.body.timeout_seconds = (Number.isFinite(+req.body.timeout_seconds) && +req.body.timeout_seconds > 0) ? +req.body.timeout_seconds : 600; + options.form = JSON.stringify(req.body); + logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Payments', msg: 'Send Payment Options', data: options.form }); + // LND ends the stream at timeout_seconds with a FAILURE_REASON_TIMEOUT result; + // give the transport a margin over that so LND's mapped failure always wins + // the race against the wrapper's own timeout. + request.post({ ...options, timeout: (+req.body.timeout_seconds + 60) * 1000 }).then((body) => { + const results = body.split('\n').filter(Boolean).map((jsonString) => JSON.parse(jsonString)); + body = results.length > 0 ? results[results.length - 1] : { result: { status: 'UNKNOWN' } }; + if (body.result.status === 'FAILED') { + const err = common.handleError(common.titleCase(body.result.failure_reason.replace(/_/g, ' ').replace('FAILURE REASON ', '')), 'Payments', 'Send Payment Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + if (body.result.status === 'SUCCEEDED') { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Payments', msg: 'Payment Sent', data: body.result }); + res.status(201).json(body.result); + } + }).catch((errRes) => { + const err = common.handleError(errRes, 'Payments', 'Send Payment Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + }); +}; diff --git a/server/controllers/lnd/peers.ts b/server/controllers/lnd/peers.ts index 0723ea03..3f460b65 100644 --- a/server/controllers/lnd/peers.ts +++ b/server/controllers/lnd/peers.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { SelectedNode } from '../../models/config.model.js'; @@ -26,9 +26,18 @@ export const getPeers = (req, res, next) => { request(options).then((body) => { logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Peers', msg: 'Peers List Received', data: body }); const peers = !body.peers ? [] : body.peers; - return Promise.all(peers?.map((peer) => getAliasForPeers(req.session.selectedNode, peer))).then((values) => { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); - res.status(200).json(body.peers); + // Bound concurrent alias lookups so a node with many peers can't fire one graph/node + // request per peer at once and overwhelm the backend (parity with the CLN fix, #1501). + const getPeerAliasesTasks = peers.map((peer) => () => getAliasForPeers(req.session.selectedNode, peer)); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + // Guard the response-send: the limiter invokes this outside the surrounding .catch. + try { + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Sorted Peers List Received', data: body.peers }); + res.status(200).json(body.peers); + } catch (e) { + const err = common.handleError(e, 'Peers', 'List Peers Error', req.session.selectedNode); + if (!res.headersSent) { res.status(err.statusCode).json({ message: err.message, error: err.error }); } + } }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'List Peers Error', req.session.selectedNode); @@ -51,15 +60,21 @@ export const postPeer = (req, res, next) => { options.url = req.session.selectedNode.settings.lnServerUrl + '/v1/peers'; request(options).then((body) => { const peers = (!body.peers) ? [] : body.peers; - return Promise.all(peers?.map((peer) => getAliasForPeers(req.session.selectedNode, peer))).then((values) => { - if (body.peers) { - body.peers = common.newestOnTop(body.peers, 'pub_key', pubkey); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: body }); + // Bound concurrent alias lookups (parity with the CLN fix, #1501). + const getPeerAliasesTasks = peers.map((peer) => () => getAliasForPeers(req.session.selectedNode, peer)); + common.runWithConcurrencyLimit(getPeerAliasesTasks, 20, () => { + // Guard the response-send: the limiter invokes this outside the surrounding .catch, and + // this replaced an explicit inner .catch — a throw here must not hang the POST (#1629 F4). + try { + if (body.peers) { + body.peers = common.newestOnTop(body.peers, 'pub_key', pubkey); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Peers', msg: 'Peers List after Connect Received', data: body }); + } + res.status(201).json(body.peers); + } catch (e) { + const err = common.handleError(e, 'Peers', 'Connect Peer Error', req.session.selectedNode); + if (!res.headersSent) { res.status(err.statusCode).json({ message: err.message, error: err.error }); } } - res.status(201).json(body.peers); - }).catch((errRes) => { - const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.message, error: err.error }); }); }).catch((errRes) => { const err = common.handleError(errRes, 'Peers', 'Connect Peer Error', req.session.selectedNode); diff --git a/server/controllers/lnd/switch.ts b/server/controllers/lnd/switch.ts index be755263..5c00044a 100644 --- a/server/controllers/lnd/switch.ts +++ b/server/controllers/lnd/switch.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/controllers/lnd/transactions.ts b/server/controllers/lnd/transactions.ts index d92ea3ea..e77e9ee7 100644 --- a/server/controllers/lnd/transactions.ts +++ b/server/controllers/lnd/transactions.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; @@ -28,7 +28,7 @@ export const postTransactions = (req, res, next) => { options.form = { amount: amount, addr: address, - sat_per_byte: fees, + sat_per_vbyte: fees, target_conf: blocks }; if (sendAll) { options.form.send_all = sendAll; } diff --git a/server/controllers/lnd/wallet.ts b/server/controllers/lnd/wallet.ts index 2782cd56..0b4afbd2 100644 --- a/server/controllers/lnd/wallet.ts +++ b/server/controllers/lnd/wallet.ts @@ -1,5 +1,5 @@ import atob from 'atob'; -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; @@ -110,7 +110,7 @@ export const getUTXOs = (req, res, next) => { }; export const bumpFee = (req, res, next) => { - const { txid, outputIndex, targetConf, satPerByte } = req.body; + const { txid, outputIndex, targetConf, satPerVByte } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Wallet', msg: 'Bumping Fee..' }); options = common.getOptions(req); if (options.error) { return res.status(options.statusCode).json({ message: options.message, error: options.error }); } @@ -122,8 +122,8 @@ export const bumpFee = (req, res, next) => { }; if (targetConf) { options.form.target_conf = targetConf; - } else if (satPerByte) { - options.form.sat_per_byte = satPerByte; + } else if (satPerVByte) { + options.form.sat_per_vbyte = satPerVByte; } options.form = JSON.stringify(options.form); request.post(options).then((body) => { diff --git a/server/controllers/lnd/webSocketClient.ts b/server/controllers/lnd/webSocketClient.ts index 09605704..ef3a791b 100644 --- a/server/controllers/lnd/webSocketClient.ts +++ b/server/controllers/lnd/webSocketClient.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import * as fs from 'fs'; import { join } from 'path'; @@ -58,7 +58,9 @@ export class LNDWebSocketClient { public subscribeToInvoice = (options: any, selectedNode: SelectedNode, rHash: string) => { rHash = rHash?.replace(/\+/g, '-')?.replace(/[/]/g, '_'); this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Subscribing to Invoice ' + rHash + ' ..' }); - options.url = selectedNode.settings.lnServerUrl + '/v2/invoices/subscribe/' + rHash; + // Copy the options: the caller may pass the session-cached object, and the + // long poll needs an unbounded timeout without leaking it to other calls. + options = { ...options, url: selectedNode.settings.lnServerUrl + '/v2/invoices/subscribe/' + rHash, timeout: 0 }; request(options).then((msg) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Invoice Information Received for ' + rHash }); if (typeof msg === 'string') { @@ -82,7 +84,9 @@ export class LNDWebSocketClient { public subscribeToPayment = (options: any, selectedNode: SelectedNode, paymentHash: string) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Subscribing to Payment ' + paymentHash + ' ..' }); - options.url = selectedNode.settings.lnServerUrl + '/v2/router/track/' + paymentHash; + // Copy the options: the long poll needs an unbounded timeout without + // leaking it to other calls sharing the object. + options = { ...options, url: selectedNode.settings.lnServerUrl + '/v2/router/track/' + paymentHash, timeout: 0 }; request(options).then((msg) => { this.logger.log({ selectedNode: selectedNode, level: 'INFO', fileName: 'WebSocketClient', msg: 'Payment Information Received for ' + paymentHash }); msg['type'] = 'payment'; diff --git a/server/controllers/shared/RTLConf.ts b/server/controllers/shared/RTLConf.ts index ed0f0ed6..f3755f81 100644 --- a/server/controllers/shared/RTLConf.ts +++ b/server/controllers/shared/RTLConf.ts @@ -1,14 +1,14 @@ import jwt from 'jsonwebtoken'; import * as fs from 'fs'; -import { sep } from 'path'; +import { resolve, sep } from 'path'; import ini from 'ini'; import parseHocon from 'hocon-parser'; -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Database, DatabaseService } from '../../utils/database.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; import { WSServer } from '../../utils/webSocketServer.js'; -import { Authentication, SSO } from '../../models/config.model.js'; +import { Authentication } from '../../models/config.model.js'; const options = { url: '' }; const logger: LoggerService = Logger; @@ -81,7 +81,22 @@ export const getCurrencyRates = (req, res, next) => { export const getFile = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting File..' }); - const file = req.query.path ? req.query.path : (req.session.selectedNode.settings.channelBackupPath + sep + 'channel-' + req.query.channel?.replace(':', '-') + '.bak'); + const channelBackupPath = req.session.selectedNode.settings.channelBackupPath; + let file = ''; + if (req.query.path) { + // The UI only ever requests channel backup files; contain caller paths to the node's + // backup directory so this endpoint cannot read the config, macaroons or the SSO + // cookie (getConfig serves the config file masked; this must not bypass that). + const resolved = resolve(req.query.path); + if (resolved !== resolve(channelBackupPath) && !resolved.startsWith(resolve(channelBackupPath) + sep)) { + logger.log({ selectedNode: req.session.selectedNode, level: 'WARN', fileName: 'RTLConf', msg: 'Blocked file read outside the channel backup directory', data: req.query.path }); + const err = common.handleError({ statusCode: 403, message: 'Reading File Error', error: 'File path is outside the channel backup directory' }, 'RTLConf', 'Reading File Error', req.session.selectedNode); + return res.status(err.statusCode).json({ message: err.message, error: err.error }); + } + file = resolved; + } else { + file = channelBackupPath + sep + 'channel-' + req.query.channel?.replace(':', '-') + '.bak'; + } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'Channel Point', data: req.query.channel }); logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'RTLConf', msg: 'File Path', data: file }); fs.readFile(file, 'utf8', (errRes, data) => { @@ -91,7 +106,8 @@ export const getFile = (req, res, next) => { const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); return res.status(err.statusCode).json({ message: err.error, error: err.error }); } else { - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'File Data Received', data: data }); + // File contents can carry node credentials; never write them to the log. + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'File Data Received' }); res.status(200).json(data); } }); @@ -99,40 +115,32 @@ export const getFile = (req, res, next) => { export const getApplicationSettings = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Getting RTL Configuration..' }); - const confFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; - fs.readFile(confFile, 'utf8', (errRes, data) => { - if (errRes) { - const errMsg = 'Get Node Config Error'; - const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); - return res.status(err.statusCode).json({ message: err.error, error: err.error }); - } else { - const appConfData = common.removeSecureData(JSON.parse(data)); - appConfData.allowPasswordUpdate = common.appConfig.allowPasswordUpdate; - appConfData.enable2FA = common.appConfig.enable2FA; - appConfData.selectedNodeIndex = (req.session.selectedNode && req.session.selectedNode.index ? req.session.selectedNode.index : common.selectedNode.index); - common.appConfig.selectedNodeIndex = appConfData.selectedNodeIndex; - const token = req.headers.authorization ? req.headers.authorization.split(' ')[1] : ''; - jwt.verify(token, common.secret_key, (err, user) => { - if (err) { - // Delete unnecessary data for initial response (without security token) - const selNodeIdx = appConfData.nodes.findIndex((node) => node.index === appConfData.selectedNodeIndex) || 0; - appConfData.SSO = new SSO(); - appConfData.secret2FA = ''; - appConfData.dbDirectoryPath = ''; - appConfData.nodes[selNodeIdx].authentication = new Authentication(); - delete appConfData.nodes[selNodeIdx].settings.bitcoindConfigPath; - delete appConfData.nodes[selNodeIdx].settings.lnServerUrl; - delete appConfData.nodes[selNodeIdx].settings.swapServerUrl; - delete appConfData.nodes[selNodeIdx].settings.boltzServerUrl; - delete appConfData.nodes[selNodeIdx].settings.enableOffers; - delete appConfData.nodes[selNodeIdx].settings.enablePeerswap; - delete appConfData.nodes[selNodeIdx].settings.channelBackupPath; - appConfData.nodes = [appConfData.nodes[selNodeIdx]]; - } - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'RTL Configuration Received', data: appConfData }); - res.status(200).json(appConfData); - }); + const appConfData = common.removeSecureData(JSON.parse(JSON.stringify(common.appConfig))); + appConfData.allowPasswordUpdate = common.appConfig.allowPasswordUpdate; + appConfData.enable2FA = common.appConfig.enable2FA; + appConfData.selectedNodeIndex = (req.session.selectedNode && req.session.selectedNode.index ? req.session.selectedNode.index : common.selectedNode.index); + common.appConfig.selectedNodeIndex = appConfData.selectedNodeIndex; + const token = req.headers.authorization ? req.headers.authorization.split(' ')[1] : ''; + jwt.verify(token, common.secret_key, (err, user) => { + if (err) { + // Delete unnecessary data for initial response (without security token) + const selNodeIdx = appConfData.nodes.findIndex((node) => node.index === appConfData.selectedNodeIndex) || 0; + delete appConfData.SSO.rtlCookiePath; + delete appConfData.SSO.cookieValue; + delete appConfData.SSO.logoutRedirectLink; + appConfData.dbDirectoryPath = ''; + appConfData.nodes[selNodeIdx].authentication = new Authentication(); + delete appConfData.nodes[selNodeIdx].settings.bitcoindConfigPath; + delete appConfData.nodes[selNodeIdx].settings.lnServerUrl; + delete appConfData.nodes[selNodeIdx].settings.swapServerUrl; + delete appConfData.nodes[selNodeIdx].settings.boltzServerUrl; + delete appConfData.nodes[selNodeIdx].settings.enableOffers; + delete appConfData.nodes[selNodeIdx].settings.enablePeerswap; + delete appConfData.nodes[selNodeIdx].settings.channelBackupPath; + appConfData.nodes = [appConfData.nodes[selNodeIdx]]; } + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'RTL Configuration Received', data: appConfData }); + res.status(200).json(appConfData); }); }; @@ -208,28 +216,47 @@ export const getConfig = (req, res, next) => { export const updateNodeSettings = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Node Settings..' }); const RTLConfFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; - const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); - const node = config.nodes.find((node) => (node.index === req.session.selectedNode.index)); - if (node && node.settings) { - node.settings = req.body.settings; - if (req.body.authentication.boltzMacaroonPath) { - node.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; - } else { - delete node.authentication.boltzMacaroonPath; - } - if (req.body.authentication.swapMacaroonPath) { - node.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; - } else { - delete node.authentication.swapMacaroonPath; - } - } try { + const config = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); + const node = config.nodes.find((node) => (node.index === req.session.selectedNode.index)); + if (node && node.settings) { + // channelBackupPath anchors getFile's containment root and is documented as a + // config-file-only setting; accepting it from the API would let the caller being + // contained choose the containment base. Pin it to the server-held value. + const serverChannelBackupPath = node.settings.channelBackupPath; + node.settings = { ...node.settings, ...req.body.settings }; + node.settings.channelBackupPath = serverChannelBackupPath; + if (node.authentication && req.body.authentication) { + if (req.body.authentication.boltzMacaroonPath) { + node.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; + } else { + delete node.authentication.boltzMacaroonPath; + } + if (req.body.authentication.swapMacaroonPath) { + node.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + } else { + delete node.authentication.swapMacaroonPath; + } + } + } fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); const selectedNode = common.findNode(req.session.selectedNode.index); if (selectedNode && selectedNode.settings) { - selectedNode.settings = req.body.settings; - selectedNode.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; - selectedNode.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + const serverChannelBackupPath = selectedNode.settings.channelBackupPath; + selectedNode.settings = { ...selectedNode.settings, ...req.body.settings }; + selectedNode.settings.channelBackupPath = serverChannelBackupPath; + if (selectedNode.authentication && req.body.authentication) { + if (req.body.authentication.boltzMacaroonPath) { + selectedNode.authentication.boltzMacaroonPath = req.body.authentication.boltzMacaroonPath; + } else { + delete selectedNode.authentication.boltzMacaroonPath; + } + if (req.body.authentication.swapMacaroonPath) { + selectedNode.authentication.swapMacaroonPath = req.body.authentication.swapMacaroonPath; + } else { + delete selectedNode.authentication.swapMacaroonPath; + } + } common.replaceNode(req, selectedNode); } let responseNode = JSON.parse(JSON.stringify(common.selectedNode)); @@ -247,17 +274,79 @@ export const updateApplicationSettings = (req, res, next) => { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Updating Application Settings..' }); const RTLConfFile = common.appConfig.rtlConfFilePath + sep + 'RTL-Config.json'; try { - const config = common.addSecureData(req.body); - common.appConfig = JSON.parse(JSON.stringify(config)); - delete config.selectedNodeIndex; - delete config.enable2FA; - delete config.allowPasswordUpdate; - delete config.rtlConfFilePath; - delete config.rtlPass; - fs.writeFileSync(RTLConfFile, JSON.stringify(config, null, 2), 'utf-8'); - const newConfig = JSON.parse(JSON.stringify(common.appConfig)); - logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Application Settings Updated', data: common.maskPasswords(newConfig) }); - res.status(201).json(common.removeSecureData(newConfig)); + const oldConfig = JSON.parse(fs.readFileSync(RTLConfFile, 'utf-8')); + const config = common.addSecureData(JSON.parse(JSON.stringify(req.body))); + const runtimeConfig = oldConfig; + Object.keys(config).forEach((key) => { + if (key !== 'nodes') { + runtimeConfig[key] = config[key]; + } + }); + if (config.nodes && config.nodes.length > 0) { + const oldNodes = (common.appConfig.nodes && common.appConfig.nodes.length > 0) ? common.appConfig.nodes : (oldConfig.nodes || []); + const newNodesMap = new Map(config.nodes.map((node) => [node.index, node])); + const updatedAndExistingNodes = oldNodes.map((oldNode) => { + const newNode = newNodesMap.get(oldNode.index); + newNodesMap.delete(oldNode.index); + const node = newNode ? { + ...oldNode, + ...newNode, + authentication: { ...(oldNode.authentication || {}), ...(newNode.authentication || {}) }, + settings: { ...(oldNode.settings || {}), ...(newNode.settings || {}) } + } : { + ...oldNode, + authentication: { ...(oldNode.authentication || {}) }, + settings: { ...(oldNode.settings || {}) } + }; + return node; + }); + const newOnlyNodes = [...newNodesMap.values()].map((newNode) => JSON.parse(JSON.stringify(newNode))); + runtimeConfig.nodes = [...updatedAndExistingNodes, ...newOnlyNodes]; + } + const newAppConfig = JSON.parse(JSON.stringify({ + ...runtimeConfig, + selectedNodeIndex: config.selectedNodeIndex !== undefined ? + config.selectedNodeIndex : common.appConfig.selectedNodeIndex, + enable2FA: config.enable2FA !== undefined ? + config.enable2FA : common.appConfig.enable2FA, + allowPasswordUpdate: config.allowPasswordUpdate !== undefined ? + config.allowPasswordUpdate : common.appConfig.allowPasswordUpdate, + rtlConfFilePath: common.appConfig.rtlConfFilePath, + rtlPass: common.appConfig.rtlPass + })); + const fileConfig = JSON.parse(JSON.stringify(newAppConfig)); + delete fileConfig.selectedNodeIndex; + delete fileConfig.enable2FA; + delete fileConfig.allowPasswordUpdate; + delete fileConfig.rtlConfFilePath; + delete fileConfig.rtlPass; + delete fileConfig.multiPass; + // Runtime-only SSO bearer; must not be persisted with the config. + if (fileConfig.SSO) { delete fileConfig.SSO.cookieValue; } + fileConfig.nodes?.forEach((node) => { + delete node.authentication?.options; + delete node.authentication?.runeValue; + }); + // Persist atomically (temp file + rename, so a mid-write failure cannot truncate the + // config) and only then adopt the new runtime config, so a failed write leaves the + // process on the old one. The temp file inherits the existing file's mode so a + // hardened 0600 is not silently downgraded; a fresh file gets 0600. Symlinks and + // single-file bind mounts cannot be renamed over — fall back to an in-place write, + // which preserves inode and mode. + const tempConfigFile = RTLConfFile + '.tmp'; + try { + fs.writeFileSync(tempConfigFile, JSON.stringify(fileConfig, null, 2), 'utf-8'); + fs.chmodSync(tempConfigFile, fs.existsSync(RTLConfFile) ? (fs.statSync(RTLConfFile).mode & 0o777) : 0o600); + fs.renameSync(tempConfigFile, RTLConfFile); + } catch { + fs.rmSync(tempConfigFile, { force: true, recursive: true }); + fs.writeFileSync(RTLConfFile, JSON.stringify(fileConfig, null, 2), 'utf-8'); + } + common.appConfig = newAppConfig; + // removeSecureData clones, so the runtime config is untouched; it strips rtlPass, + // the TOTP seed, the SSO cookie and all per-node credentials symmetrically. + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'RTLConf', msg: 'Application Settings Updated', data: common.removeSecureData(newAppConfig) }); + res.status(201).json(common.removeSecureData(newAppConfig)); } catch (errRes) { const errMsg = 'Update Default Node Error'; const err = common.handleError({ statusCode: 500, message: errMsg, error: errRes }, 'RTLConf', errMsg, req.session.selectedNode); diff --git a/server/controllers/shared/authenticate.ts b/server/controllers/shared/authenticate.ts index 607b2320..e8917e67 100644 --- a/server/controllers/shared/authenticate.ts +++ b/server/controllers/shared/authenticate.ts @@ -21,6 +21,9 @@ const loginInterval = setInterval(() => { } } }, LOCKING_PERIOD); +// The sweeper must not hold the event loop open on its own (it would keep +// `node --test` or a CLI invocation alive for the full 30-minute period). +loginInterval.unref(); export const getFailedInfo = (reqIP, currentTime) => { let failed = { count: 0, lastTried: currentTime }; @@ -47,12 +50,32 @@ const handleMultipleFailedAttemptsError = (failed, currentTime, errMsg) => { } }; -export const verifyToken = (twoFAToken) => !!(common.appConfig.secret2FA && common.appConfig.secret2FA !== '' && otplib.authenticator.check(twoFAToken, common.appConfig.secret2FA)); +export const verifyToken = (twoFAToken) => !!(common.appConfig.secret2FA && common.appConfig.secret2FA !== '' && (otplib as any).authenticator.check(twoFAToken, common.appConfig.secret2FA)); + +// Mirrors isAuthenticated: a request carrying a valid session JWT has already +// completed 2FA at login, since tokens are only minted after verification when +// 2FA is enabled. Used to exempt in-app re-authorization (e.g. the password +// prompt before on-chain sends) from the TOTP requirement without opening a +// password-only path. +const hasValidAuthToken = (req) => { + try { + const token = req.headers.authorization.split(' ')[1]; + jwt.verify(token, common.secret_key); + return true; + } catch (error) { + return false; + } +}; export const authenticateUser = (req, res, next) => { const { authenticateWith, authenticationValue, twoFAToken } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Authenticating User..' }); - if (+common.appConfig.SSO.rtlSso) { + if (!!common.appConfig.disableAuth) { + if (!req.session.selectedNode) { req.session.selectedNode = common.selectedNode; } + const token = jwt.sign({ user: 'AUTH_DISABLED_USER' }, common.secret_key); + logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'User Disabled Authentication' }); + res.status(200).json({ token: token }); + } else if (+common.appConfig.SSO.rtlSSO) { if (authenticateWith === 'JWT' && jwt.verify(authenticationValue, common.secret_key)) { logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'User Authenticated' }); res.status(406).json({ message: 'SSO Authentication Error', error: 'Login with Password is not allowed with SSO.' }); @@ -75,8 +98,15 @@ export const authenticateUser = (req, res, next) => { const failed = getFailedInfo(reqIP, currentTime); const password = authenticationValue; if (common.appConfig.rtlPass === password && failed.count < ALLOWED_LOGIN_ATTEMPTS) { - if (twoFAToken && twoFAToken !== '') { - if (!verifyToken(twoFAToken)) { + // Gate on the server-side 2FA configuration, not on the request: when 2FA is + // enabled a token is mandatory, so a request omitting twoFAToken is rejected + // instead of silently skipping verification. The login UI keys its token prompt + // on enable2FA, so both fields are consulted — a stale secret with 2FA disabled + // must not lock the operator out of a UI that never prompts for a token. + // Requests with a valid session token (in-app re-authorization, e.g. the + // password prompt before on-chain sends) are exempt from the TOTP requirement. + if (common.appConfig.enable2FA && common.appConfig.secret2FA && common.appConfig.secret2FA !== '' && !hasValidAuthToken(req)) { + if (typeof twoFAToken !== 'string' || twoFAToken === '' || !verifyToken(twoFAToken)) { logger.log({ selectedNode: req.session.selectedNode, level: 'ERROR', fileName: 'Authenticate', msg: 'Invalid Token! Failed IP ' + reqIP, error: { error: 'Invalid token.' } }); failed.count = failed.count + 1; failed.lastTried = currentTime; @@ -100,7 +130,7 @@ export const authenticateUser = (req, res, next) => { export const resetPassword = (req, res, next) => { const { currPassword, newPassword } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Authenticate', msg: 'Resetting Password..' }); - if (+common.appConfig.SSO.rtlSso) { + if (+common.appConfig.SSO.rtlSSO) { const errMsg = 'Password cannot be reset for SSO authentication'; const err = common.handleError({ statusCode: 401, message: 'Password Reset Error', error: errMsg }, 'Authenticate', errMsg, req.session.selectedNode); return res.status(err.statusCode).json({ message: err.message, error: err.error }); diff --git a/server/controllers/shared/boltz.ts b/server/controllers/shared/boltz.ts index 35c9506b..ec11267a 100644 --- a/server/controllers/shared/boltz.ts +++ b/server/controllers/shared/boltz.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; @@ -80,7 +80,7 @@ export const getSwapInfo = (req, res, next) => { }; export const createSwap = (req, res, next) => { - const { amount, sendFromInternal, address } = req.body; + const { amount, sendFromInternal, address, refundAddress } = req.body; logger.log({ selectedNode: req.session.selectedNode, level: 'INFO', fileName: 'Boltz', msg: 'Creating Swap..' }); options = common.getBoltzServerOptions(req); if (options.url === '') { @@ -89,7 +89,7 @@ export const createSwap = (req, res, next) => { return res.status(err.statusCode).json({ message: err.message, error: err.error }); } options.url = options.url + '/v1/createswap'; - options.body = { amount: amount }; + options.body = { amount: amount, refundAddress }; if (sendFromInternal) { options.body.send_from_internal = sendFromInternal; } if (address && address !== '') { options.body.address = address; } logger.log({ selectedNode: req.session.selectedNode, level: 'DEBUG', fileName: 'Boltz', msg: 'Create Swap Options Body', data: options.body }); diff --git a/server/controllers/shared/loop.ts b/server/controllers/shared/loop.ts index b86a81bd..ede3b14d 100644 --- a/server/controllers/shared/loop.ts +++ b/server/controllers/shared/loop.ts @@ -1,4 +1,4 @@ -import request from 'request-promise'; +import request from '../../utils/request.js'; import { Logger, LoggerService } from '../../utils/logger.js'; import { Common, CommonService } from '../../utils/common.js'; let options = null; diff --git a/server/models/config.model.ts b/server/models/config.model.ts index ca53fbe0..d6ee76cf 100644 --- a/server/models/config.model.ts +++ b/server/models/config.model.ts @@ -1,7 +1,7 @@ export class SSO { constructor( - public rtlSso?: number, + public rtlSSO?: number, public rtlCookiePath?: string, public logoutRedirectLink?: string, public cookieValue?: string @@ -55,6 +55,7 @@ export class ApplicationConfig { public selectedNodeIndex: number, public dbDirectoryPath?: string, public rtlConfFilePath?: string, + public disableAuth?: boolean, public rtlPass?: string, public multiPass?: string, public multiPassHashed?: string, diff --git a/server/routes/lnd/channels.ts b/server/routes/lnd/channels.ts index d7f2745c..f1d2d9b8 100644 --- a/server/routes/lnd/channels.ts +++ b/server/routes/lnd/channels.ts @@ -1,7 +1,7 @@ import exprs from 'express'; const { Router } = exprs; import { isAuthenticated } from '../../utils/authCheck.js'; -import { getAllChannels, getPendingChannels, getClosedChannels, postChannel, postTransactions, closeChannel, postChanPolicy } from '../../controllers/lnd/channels.js'; +import { getAllChannels, getPendingChannels, getClosedChannels, postChannel, closeChannel, postChanPolicy } from '../../controllers/lnd/channels.js'; const router = Router(); @@ -9,7 +9,6 @@ router.get('/', isAuthenticated, getAllChannels); router.get('/pending', isAuthenticated, getPendingChannels); router.get('/closed', isAuthenticated, getClosedChannels); router.post('/', isAuthenticated, postChannel); -router.post('/transactions', isAuthenticated, postTransactions); router.delete('/:channelPoint', isAuthenticated, closeChannel); router.post('/chanPolicy', isAuthenticated, postChanPolicy); diff --git a/server/routes/lnd/payments.ts b/server/routes/lnd/payments.ts index 272c62ba..7db776c8 100644 --- a/server/routes/lnd/payments.ts +++ b/server/routes/lnd/payments.ts @@ -1,7 +1,7 @@ import exprs from 'express'; const { Router } = exprs; import { isAuthenticated } from '../../utils/authCheck.js'; -import { decodePayment, decodePayments, getPayments, getAllLightningTransactions, paymentLookup } from '../../controllers/lnd/payments.js'; +import { decodePayment, decodePayments, getPayments, getAllLightningTransactions, paymentLookup, sendPayment } from '../../controllers/lnd/payments.js'; const router = Router(); @@ -10,5 +10,6 @@ router.get('/alltransactions', isAuthenticated, getAllLightningTransactions); router.get('/decode/:payRequest', isAuthenticated, decodePayment); router.get('/lookup/:paymentHash', isAuthenticated, paymentLookup); router.post('/', isAuthenticated, decodePayments); +router.post('/send', isAuthenticated, sendPayment); export default router; diff --git a/server/routes/lnd/wallet.ts b/server/routes/lnd/wallet.ts index e0210005..787a599d 100644 --- a/server/routes/lnd/wallet.ts +++ b/server/routes/lnd/wallet.ts @@ -5,7 +5,8 @@ import { genSeed, updateSelNodeOptions, getUTXOs, operateWallet, bumpFee, labelT const router = Router(); -router.get('/genseed/:passphrase?', isAuthenticated, genSeed); +router.get('/genseed', isAuthenticated, genSeed); +router.get('/genseed/:passphrase', isAuthenticated, genSeed); router.get('/updateSelNodeOptions', isAuthenticated, updateSelNodeOptions); router.get('/getUTXOs', isAuthenticated, getUTXOs); router.post('/wallet/:operation', isAuthenticated, operateWallet); diff --git a/server/routes/shared/authenticate.ts b/server/routes/shared/authenticate.ts index e4785b1f..8359eefa 100644 --- a/server/routes/shared/authenticate.ts +++ b/server/routes/shared/authenticate.ts @@ -1,12 +1,15 @@ import exprs from 'express'; const { Router } = exprs; import { authenticateUser, verifyToken, resetPassword, logoutUser } from '../../controllers/shared/authenticate.js'; +import { isAuthenticated } from '../../utils/authCheck.js'; const router = Router(); router.post('/', authenticateUser); router.post('/token', verifyToken); -router.post('/reset', resetPassword); +// Password changes mint a fresh session token, so the route requires an existing +// authenticated session; the frontend interceptor attaches it for the settings UI. +router.post('/reset', isAuthenticated, resetPassword); router.get('/logout', logoutUser); export default router; diff --git a/server/tsconfig.server.json b/server/tsconfig.server.json index 3f810889..c2697f94 100644 --- a/server/tsconfig.server.json +++ b/server/tsconfig.server.json @@ -3,9 +3,14 @@ "compilerOptions": { "baseUrl": "../", "outDir": "../backend", + "module": "Node16", + "moduleResolution": "Node16", + "target": "ES2022", + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "noEmit": false, + "allowImportingTsExtensions": false, + "types": ["node"] }, - "include": [ - "./**/*" - ] + "include": ["./**/*"] } - \ No newline at end of file diff --git a/server/utils/app.ts b/server/utils/app.ts index 4c3c9e28..7f0373a8 100644 --- a/server/utils/app.ts +++ b/server/utils/app.ts @@ -59,18 +59,22 @@ export class ExpressApplication { this.app.use(this.common.baseHref + '/api/ecl', eclRoutes); this.app.use(this.common.baseHref, express.static(join(this.directoryName, '../..', 'frontend'))); this.app.use((req: any, res, next) => { - res.cookie('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : (req.cookies && req.cookies._csrf) ? req.cookies._csrf : ''); // RTL Angular Frontend - res.setHeader('XSRF-TOKEN', req.csrfToken ? req.csrfToken() : (req.cookies && req.cookies._csrf) ? req.cookies._csrf : ''); // RTL Quickpay JQuery + // Generate the token once per request: with csrf-csrf every call mints a + // new token on a first visit, so calling twice would desync the cookie + // from the header and the _csrf cookie it must match. + const csrfToken = req.csrfToken ? req.csrfToken() : (req.cookies && req.cookies._csrf) ? req.cookies._csrf : ''; + res.cookie('XSRF-TOKEN', csrfToken); // RTL Angular Frontend + res.setHeader('XSRF-TOKEN', csrfToken); // RTL Quickpay JQuery res.sendFile(join(this.directoryName, '../..', 'frontend', 'index.html')); }); this.app.use((err, req, res, next) => { - this.handleApplicationErrors(err, res); + this.handleApplicationErrors(err, req, res); next(); }); this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'App', msg: 'Application Routes Set' }); }; - public handleApplicationErrors = (err, res) => { + public handleApplicationErrors = (err, req, res) => { switch (err.code) { case 'EACCES': this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Server requires elevated privileges' }); @@ -85,6 +89,15 @@ export class ExpressApplication { res.status(401).send('Server is down/locked.'); break; case 'EBADCSRFTOKEN': + // Re-mint the token for the current session so a client retry succeeds + // (the stale one may be bound to a destroyed session or rotated secret). + try { + const csrfToken = CSRF.reMintToken(req, res); + res.cookie('XSRF-TOKEN', csrfToken); + res.setHeader('XSRF-TOKEN', csrfToken); + } catch (csrfError) { + this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'CSRF Token Re-Mint Failed', error: csrfError }); + } this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'App', msg: 'Invalid CSRF token. Form tempered.' }); res.status(403).send('Invalid CSRF token, form tempered.'); break; diff --git a/server/utils/authCheck.ts b/server/utils/authCheck.ts index 16306ef7..bc48f6fb 100644 --- a/server/utils/authCheck.ts +++ b/server/utils/authCheck.ts @@ -1,11 +1,11 @@ import jwt from 'jsonwebtoken'; -import csurf from 'csurf/index.js'; +import CSRF from './csrf.js'; import { Common, CommonService } from './common.js'; import { Logger, LoggerService } from './logger.js'; const common: CommonService = Common; const logger: LoggerService = Logger; -const csurfProtection = csurf({ cookie: true }); +const csurfProtection = CSRF.csrfProtection; export const isAuthenticated = (req, res, next) => { try { diff --git a/server/utils/common.ts b/server/utils/common.ts index 165d6df5..a3b452f3 100644 --- a/server/utils/common.ts +++ b/server/utils/common.ts @@ -2,7 +2,7 @@ import * as fs from 'fs'; import { join, dirname, isAbsolute, resolve, sep } from 'path'; import { fileURLToPath } from 'url'; import * as crypto from 'crypto'; -import request from 'request-promise'; +import request from './request.js'; import { Logger, LoggerService } from './logger.js'; import { ApplicationConfig, SelectedNode } from '../models/config.model.js'; @@ -11,7 +11,7 @@ export class CommonService { public logger: LoggerService = Logger; public nodes: SelectedNode[] = []; public selectedNode: SelectedNode = null; - public ssoInit = { rtlSso: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' }; + public ssoInit = { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' }; public appConfig: ApplicationConfig = { defaultNodeIndex: 0, selectedNodeIndex: 0, rtlConfFilePath: '', dbDirectoryPath: join(dirname(fileURLToPath(import.meta.url)), '..', '..'), rtlPass: '', allowPasswordUpdate: true, enable2FA: false, secret2FA: '', SSO: this.ssoInit, nodes: [] }; public port = 3000; public host = ''; @@ -27,23 +27,37 @@ export class CommonService { constructor() {} public maskPasswords = (obj) => { - const keys = Object.keys(obj); - const length = keys.length; - if (length !== 0) { - for (let i = 0; i < length; i++) { - if (typeof obj[keys[i]] === 'object') { - keys[keys[i]] = this.maskPasswords(obj[keys[i]]); - } - if (typeof keys[i] === 'string' && - ((keys[i].toLowerCase().includes('password') && keys[i] !== 'allowPasswordUpdate') || keys[i].toLowerCase().includes('multipass') || - keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword') || - keys[i].toLowerCase().includes('rpcuser')) - ) { - obj[keys[i]] = '*'.repeat(20); + // Clone up front: masking a live config object must not blank the credentials LN + // requests authenticate with (mirrors removeSecureData). + const masked = JSON.parse(JSON.stringify(obj)); + const maskRecursive = (current) => { + const keys = Object.keys(current); + const length = keys.length; + if (length !== 0) { + for (let i = 0; i < length; i++) { + // Header maps always carry credentials in this codebase (macaroon, rune, basic + // auth). Key-substring matching cannot catch them without also hiding the *Path + // fields the settings UI legitimately shows, so mask the whole map. + if (keys[i] === 'headers' && current[keys[i]] && typeof current[keys[i]] === 'object') { + Object.keys(current[keys[i]]).forEach((headerKey) => { current[keys[i]][headerKey] = '*'.repeat(20); }); + } else if (current[keys[i]] && typeof current[keys[i]] === 'object') { + // Truthiness guard: null is 'object' too and must not reach Object.keys. + maskRecursive(current[keys[i]]); + } + if (typeof keys[i] === 'string' && + ((keys[i].toLowerCase().includes('password') && keys[i] !== 'allowPasswordUpdate') || keys[i].toLowerCase().includes('multipass') || + keys[i].toLowerCase().includes('rpcpass') || keys[i].toLowerCase().includes('rpcpassword') || + keys[i].toLowerCase().includes('rpcuser') || keys[i].toLowerCase().includes('rpcauth') || + keys[i].toLowerCase().includes('secret2fa') || keys[i].toLowerCase().includes('cookievalue') || + keys[i].toLowerCase().includes('rtlpass') || keys[i].toLowerCase().includes('runevalue')) + ) { + current[keys[i]] = '*'.repeat(20); + } } } - } - return obj; + return current; + }; + return maskRecursive(masked); }; public removeAuthSecureData = (node: SelectedNode) => { @@ -58,39 +72,68 @@ export class CommonService { }; public removeSecureData = (config: ApplicationConfig) => { - delete config.rtlConfFilePath; - delete config.rtlPass; - delete config.multiPass; - delete config.multiPassHashed; - delete config.secret2FA; - config.nodes?.map((node) => this.removeAuthSecureData(node)); - return config; + // Clone before deleting: cookieValue is runtime-only, so mutating a caller's live + // appConfig would destroy SSO state with no way to restore it. + const sanitized = JSON.parse(JSON.stringify(config)); + delete sanitized.rtlConfFilePath; + delete sanitized.rtlPass; + delete sanitized.multiPass; + delete sanitized.multiPassHashed; + delete sanitized.secret2FA; + // The SSO cookie is a live bearer credential; it must never leave the server. + if (sanitized.SSO) { delete sanitized.SSO.cookieValue; } + sanitized.nodes?.forEach((node) => this.removeAuthSecureData(node)); + return sanitized; }; public addSecureData = (config: ApplicationConfig) => { config.rtlConfFilePath = this.appConfig.rtlConfFilePath; config.rtlPass = this.appConfig.rtlPass; - config.multiPassHashed = this.appConfig.multiPassHashed; - config.SSO.rtlCookiePath = this.appConfig.SSO.rtlCookiePath; + // Pin the hash only when the server holds one: on a default install's first boot the + // file already has multiPassHashed but the in-memory config does not, and pinning + // undefined would erase the only password from the file on save, bricking the boot. + if (this.appConfig.multiPassHashed) { + config.multiPassHashed = this.appConfig.multiPassHashed; + } else { + delete config.multiPassHashed; + } + // Deployment-level switches are pinned to server-held values: the settings API must + // not flip the authentication mode (disableAuth, SSO) or move SSO fields, the + // password policy, or the database location; no UI flow writes them. Pinning the + // whole SSO object also means a trimmed or missing SSO object can never wipe server + // state. + config.disableAuth = this.appConfig.disableAuth; + config.allowPasswordUpdate = this.appConfig.allowPasswordUpdate; + config.dbDirectoryPath = this.appConfig.dbDirectoryPath; + config.SSO = JSON.parse(JSON.stringify(this.appConfig.SSO || {})); if (this.appConfig.multiPass) { config.multiPass = this.appConfig.multiPass; } - if (config.secret2FA === this.appConfig.secret2FA) { + // Restore the TOTP seed when the client omits it — and when it sends an empty seed + // while still claiming 2FA is on (an inconsistent pair no honest flow produces). + // The settings UI's enable flow sends a non-empty seed; its disable flow sends an + // empty seed with enable2FA false. Both are honored. + if (config.secret2FA === undefined || (config.secret2FA === '' && config.enable2FA)) { config.secret2FA = this.appConfig.secret2FA; } - config.nodes.map((node, i) => { - if (this.appConfig && this.appConfig.nodes && this.appConfig.nodes.length > i && this.appConfig.nodes[i].authentication) { - if (this.appConfig.nodes[i].authentication.macaroonPath) { - node.authentication.macaroonPath = this.appConfig.nodes[i].authentication.macaroonPath; + // enable2FA derives from the seed, matching the boot-time derivation in config.ts, + // so the two fields can never diverge after a save. + config.enable2FA = !!config.secret2FA; + const appConfigNodes = new Map(this.appConfig.nodes?.map((node) => [node.index, node]) || []); + config.nodes?.forEach((node) => { + const appConfigNode = appConfigNodes.get(node.index); + if (appConfigNode?.authentication) { + node.authentication = node.authentication || {}; + if (appConfigNode.authentication.macaroonPath) { + node.authentication.macaroonPath = appConfigNode.authentication.macaroonPath; } - if (this.appConfig.nodes[i].authentication.runePath) { - node.authentication.runePath = this.appConfig.nodes[i].authentication.runePath; + if (appConfigNode.authentication.runePath) { + node.authentication.runePath = appConfigNode.authentication.runePath; } - if (this.appConfig.nodes[i].authentication.lnApiPassword) { - node.authentication.lnApiPassword = this.appConfig.nodes[i].authentication.lnApiPassword; + if (appConfigNode.authentication.lnApiPassword) { + node.authentication.lnApiPassword = appConfigNode.authentication.lnApiPassword; } } - return node; }); return config; }; @@ -110,7 +153,7 @@ export class CommonService { this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Loop macaroon Error', error: err }); } } - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Swap Options', data: swapOptions }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Swap Options Set' }); return swapOptions; }; @@ -128,7 +171,7 @@ export class CommonService { this.logger.log({ selectedNode: this.selectedNode, level: 'ERROR', fileName: 'Common', msg: 'Boltz macaroon Error', error: err }); } } - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Boltz Options', data: boltzOptions }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Boltz Options Set' }); return boltzOptions; }; @@ -177,7 +220,7 @@ export class CommonService { } } if (req.session.selectedNode) { - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Updated Node Options for ' + req.session.selectedNode.lnNode, data: req.session.selectedNode.authentication.options }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Updated Node Options for ' + req.session.selectedNode.lnNode }); } return { status: 200, message: 'Updated Successfully' }; } catch (err) { @@ -204,9 +247,9 @@ export class CommonService { }; public setOptions = (req) => { - if (this.nodes[0].authentication.options && this.nodes[0].authentication.options.headers) { return; } if (this.nodes && this.nodes.length > 0) { this.nodes.forEach((node) => { + if (node.authentication.options && node.authentication.options.headers) { return; } node.authentication.options = { url: '', rejectUnauthorized: false, @@ -245,7 +288,7 @@ export class CommonService { form: '' }; } - this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Set Node Options for ' + node.lnNode, data: node.authentication.options }); + this.logger.log({ selectedNode: this.selectedNode, level: 'INFO', fileName: 'Common', msg: 'Set Node Options for ' + node.lnNode }); }); this.updateSelectedNodeOptions(req); } @@ -362,10 +405,11 @@ export class CommonService { this.logger.log({ selectedNode: selectedNode, level: 'ERROR', fileName: fileName, msg: errMsg, error: (typeof err === 'object' ? JSON.stringify(err) : err) }); let newErrorObj = { statusCode: 500, message: '', error: '' }; if (err.code && err.code === 'ENOENT') { + // The absolute path stays in the server log above but is not echoed to clients. newErrorObj = { statusCode: 500, - message: 'No such file or directory ' + (err.path ? err.path : ''), - error: 'No such file or directory ' + (err.path ? err.path : '') + message: 'No such file or directory', + error: 'No such file or directory' }; } else { newErrorObj = { @@ -413,7 +457,8 @@ export class CommonService { }); }; - public readCookie = () => { + public readCookie = (config) => { + this.appConfig.SSO = config.SSO; const exists = fs.existsSync(this.appConfig.SSO.rtlCookiePath); if (exists) { try { @@ -541,7 +586,7 @@ export class CommonService { const selNode = req.session.selectedNode; if (selNode && selNode.index) { this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup:', msg: JSON.stringify(this.removeSecureData(JSON.parse(JSON.stringify(this.appConfig)))) }); - this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'SSO: ' + this.appConfig.SSO.rtlSso }); + this.logger.log({ selectedNode: selNode, level: 'INFO', fileName: 'Config Setup Variable', msg: 'SSO: ' + this.appConfig.SSO.rtlSSO }); } }; @@ -580,6 +625,59 @@ export class CommonService { return JSON.parse(dataStr); }; + public runWithConcurrencyLimit = (tasks, limit, done) => { + const results = new Array(tasks?.length || 0); + // 'done' must fire exactly once. Guard it: multiple runNext() completions (e.g. several + // non-function task elements draining synchronously) must not send the response twice. + let finished = false; + const finish = () => { + if (finished) { return; } + finished = true; + done(results); + }; + // No tasks: the start loop below never runs, so 'done' would never fire and the + // response would hang. Resolve immediately for empty lists (e.g. a node with no peers). + if (!tasks || tasks.length === 0) { return finish(); } + let nextIndex = 0; + let activeCount = 0; + + const runNext = () => { + if (nextIndex >= tasks.length) { + if (activeCount === 0) { + finish(); // all tasks are finished + } + return; + } + + const currentIndex = nextIndex++; + activeCount++; + + const task = tasks[currentIndex]; + if (typeof task !== 'function') { + results[currentIndex] = { error: new Error('Invalid task at index ' + currentIndex) }; + activeCount--; + runNext(); + return; + } + + Promise.resolve().then(() => task()).then((result) => { + results[currentIndex] = result; + }).catch((err) => { + results[currentIndex] = { error: err }; + }).finally(() => { + activeCount--; + runNext(); + }); + }; + + // Normalize to at least 1: a non-positive limit would start no tasks, so 'done' (only + // reached from a task's finally) would never fire and the response would hang. + const startCount = Math.max(1, limit); + for (let i = 0; i < startCount && i < tasks.length; i++) { + runNext(); + } + }; + } export const Common = new CommonService(); diff --git a/server/utils/config.ts b/server/utils/config.ts index 362a722a..30b73c59 100644 --- a/server/utils/config.ts +++ b/server/utils/config.ts @@ -126,9 +126,17 @@ export class ConfigService { private validateNodeConfig = (config) => { config.allowPasswordUpdate = true; if ((process?.env?.RTL_SSO && +process?.env?.RTL_SSO === 0) || (typeof process?.env?.RTL_SSO === 'undefined' && +config.SSO.rtlSSO === 0)) { - if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { + if (!!process?.env?.DISABLE_AUTH || !!config.disableAuth) { + config.allowPasswordUpdate = false; + config.enable2FA = false; + this.logger.log({ selectedNode: this.common.selectedNode, level: 'WARN', fileName: 'Config', msg: 'Authentication is Disabled via environment or config' }); + if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { + this.errMsg = this.errMsg + '\nRTL Password cannot be set with disabled authentication. Please remove disableAuth option or password.'; + } + } else if (process?.env?.APP_PASSWORD && process?.env?.APP_PASSWORD.trim() !== '') { config.rtlPass = this.hash.update(process?.env?.APP_PASSWORD).digest('hex'); config.allowPasswordUpdate = false; + this.logger.log({ selectedNode: this.common.selectedNode, level: 'WARN', fileName: 'Config', msg: 'Passing APP_PASSWORD via environment is suggested for standalone RTL application' }); } else if (config.multiPassHashed && config.multiPassHashed !== '') { config.rtlPass = config.multiPassHashed; } else if (config.multiPass && config.multiPass !== '') { @@ -150,7 +158,7 @@ export class ConfigService { this.common.nodes[idx] = { settings: { blockExplorerUrl: '' }, authentication: {} }; this.common.nodes[idx].index = node.index; this.common.nodes[idx].lnNode = node.lnNode; - this.common.nodes[idx].lnImplementation = (process?.env?.lnImplementation) ? process?.env?.lnImplementation : node.lnImplementation ? node.lnImplementation : 'LND'; + this.common.nodes[idx].lnImplementation = (process?.env?.LN_IMPLEMENTATION) ? process?.env?.LN_IMPLEMENTATION : node.lnImplementation ? node.lnImplementation : 'LND'; if (this.common.nodes[idx].lnImplementation === 'CLT') { this.common.nodes[idx].lnImplementation = 'CLN'; } switch (this.common.nodes[idx].lnImplementation) { case 'CLN': @@ -276,7 +284,9 @@ export class ConfigService { this.logger.log({ selectedNode: this.common.selectedNode, level: 'ERROR', fileName: 'Config', msg: 'Something went wrong while creating the backup directory: \n' + err }); } this.common.nodes[idx].settings.logFile = config.rtlConfFilePath + '/logs/RTL-Node-' + node.index + '.log'; - this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'Config', msg: 'Node Config: ' + JSON.stringify(this.common.nodes[idx]) }); + // maskPasswords keeps paths visible for debugging while redacting credential + // fields such as lnApiPassword before they reach the log file. + this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'Config', msg: 'Node Config: ' + JSON.stringify(this.common.maskPasswords(this.common.nodes[idx])) }); const log_file = this.common.nodes[idx].settings.logFile; if (fs.existsSync(log_file || '')) { fs.writeFile((log_file || ''), '', () => { }); @@ -298,9 +308,9 @@ export class ConfigService { private setSSOParams = (config) => { if (process?.env?.RTL_SSO) { - config.SSO.rtlSso = +process?.env?.RTL_SSO; + config.SSO.rtlSSO = +process?.env?.RTL_SSO; } else if (config.SSO && config.SSO.rtlSSO) { - config.SSO.rtlSso = config.SSO.rtlSSO; + config.SSO.rtlSSO = config.SSO.rtlSSO; } if (process?.env?.RTL_COOKIE_PATH) { @@ -317,11 +327,11 @@ export class ConfigService { config.SSO.logoutRedirectLink = config.SSO.logoutRedirectLink; } - if (+config.SSO.rtlSso) { + if (+config.SSO.rtlSSO) { if (!config.SSO.rtlCookiePath || config.SSO.rtlCookiePath.trim() === '') { this.errMsg = 'Please set rtlCookiePath value for single sign on option!'; } else { - this.common.readCookie(); + this.common.readCookie(config); } } }; diff --git a/server/utils/csrf.ts b/server/utils/csrf.ts index 074a2dea..d145d4e6 100644 --- a/server/utils/csrf.ts +++ b/server/utils/csrf.ts @@ -1,14 +1,36 @@ -import csurf from 'csurf/index.js'; +import { doubleCsrf } from 'csrf-csrf'; import { Application } from 'express'; import { Logger, LoggerService } from './logger.js'; import { Common, CommonService } from './common.js'; class CSRF { - public csrfProtection = csurf({ cookie: true }); public logger: LoggerService = Logger; public common: CommonService = Common; + // Signed double-submit-cookie protection (replaces the deprecated csurf). + // The signed token lives in the httpOnly '_csrf' cookie; the client echoes + // the same token (read from the XSRF-TOKEN cookie set in app.ts) in a + // header. The cookie is not secure-only because RTL commonly serves plain + // HTTP (matching the session cookie); token sources match what csurf + // accepted. The error code EBADCSRFTOKEN is handled in app.ts. + private doubleCsrfUtilities = doubleCsrf({ + getSecret: () => this.common.secret_key, + getSessionIdentifier: (req: any) => (req.session ? req.session.id : ''), + cookieName: '_csrf', + cookieOptions: { sameSite: 'strict', path: '/', secure: false, httpOnly: true }, + getCsrfTokenFromRequest: (req: any) => (req.body && req.body._csrf) || (req.query && req.query._csrf) || + req.headers['csrf-token'] || req.headers['xsrf-token'] || + req.headers['x-csrf-token'] || req.headers['x-xsrf-token'] + }); + + public csrfProtection = this.doubleCsrfUtilities.doubleCsrfProtection; + + // Force-mints a fresh token for the current session, discarding any token + // cookie bound to a previous session or boot secret (used by the + // EBADCSRFTOKEN error path in app.ts so a client retry succeeds). + public reMintToken = (req, res) => this.doubleCsrfUtilities.generateCsrfToken(req, res, { overwrite: true }); + public mount(app: Application): Application { this.logger.log({ selectedNode: this.common.selectedNode, level: 'INFO', fileName: 'CSRF', msg: 'Setting up CSRF..' }); if (process.env.NODE_ENV !== 'development') { diff --git a/server/utils/request.ts b/server/utils/request.ts new file mode 100644 index 00000000..38ea1cdd --- /dev/null +++ b/server/utils/request.ts @@ -0,0 +1,90 @@ +import axios from 'axios'; +import * as https from 'https'; + +// Drop-in replacement for the deprecated request-promise, backed by axios. +// Accepts the same options shape used across the controllers ({ url, baseUrl, +// uri, qs, form, body, headers, rejectUnauthorized, json }), resolves with the +// response body directly and rejects with a plain, serializable object that +// mirrors request-promise's StatusCodeError/RequestError shape expected by +// CommonService.handleError. Auth headers are intentionally excluded from the +// rejected error so they can never leak into logs or API error responses. + +const insecureAgent = new https.Agent({ rejectUnauthorized: false }); + +const buildConfig = (options, method: string) => { + const config: any = { + url: options.url && options.url !== '' ? options.url : options.uri, + method: method || options.method || 'GET', + headers: options.headers ? { ...options.headers } : {}, + // Bound hung upstreams; 10 minutes accommodates the slowest legitimate + // operations (LND's /v2/router/send streams up to timeout_seconds=600 and + // slow CLN channel operations get req.setTimeout(600000) upstream). + // Callers can override per request; 0 disables the bound entirely, which + // the LND invoice/payment subscription streams need (open until settled). + timeout: options.timeout !== null && options.timeout !== undefined ? options.timeout : 600000 + }; + if (options.baseUrl) { config.baseURL = options.baseUrl; } + if (options.qs && Object.keys(options.qs).length > 0) { config.params = options.qs; } + if (options.rejectUnauthorized === false) { config.httpsAgent = insecureAgent; } + if (options.form !== null && options.form !== undefined) { + if (typeof options.form === 'string') { + // Pre-encoded (or raw JSON string for LND's wallet endpoints), send as-is. + config.data = options.form; + } else { + const params = new URLSearchParams(); + Object.entries(options.form).forEach(([key, value]) => { + if (value === null || value === undefined) { return; } + if (Array.isArray(value)) { + // Eclair parses list fields as comma-separated values; omit empty lists + // (request-promise's qs encoding also dropped them). + if (value.length > 0) { params.append(key, value.join(',')); } + } else { + params.append(key, String(value)); + } + }); + config.data = params; + } + config.headers['Content-Type'] = 'application/x-www-form-urlencoded'; + } else if (options.body !== null && options.body !== undefined) { + config.data = options.body; + } + if (options.json !== true) { + // Callers without json: true (block explorer, currency rates) JSON.parse the body themselves. + config.responseType = 'text'; + config.transformResponse = [(data) => data]; + } + return config; +}; + +const toRequestPromiseError = (err, config) => { + const errOptions = { url: config.url, method: config.method }; + if (err.response) { + return { + name: 'StatusCodeError', + statusCode: err.response.status, + message: err.response.status + ' - ' + JSON.stringify(err.response.data), + error: err.response.data, + options: errOptions + }; + } + const message = err.message && err.message !== '' ? err.message : err.code; + return { + name: 'RequestError', + message: message, + error: { code: err.code, message: message }, + options: errOptions + }; +}; + +const call = (options, method?: string) => { + const config = buildConfig(options, method); + return axios.request(config).then((response) => response.data).catch((err) => Promise.reject(toRequestPromiseError(err, config))); +}; + +const request = (options) => call(options); +request.get = (options) => call(options, 'GET'); +request.post = (options) => call(options, 'POST'); +request.put = (options) => call(options, 'PUT'); +request.delete = (options) => call(options, 'DELETE'); + +export default request; diff --git a/src/app/app.component.ts b/src/app/app.component.ts index c082854a..b4f1f48d 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -21,6 +21,7 @@ import { routeAnimation } from './shared/animation/route-animation'; import { RTLState } from './store/rtl.state'; @Component({ + standalone: false, selector: 'rtl-app', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'], @@ -98,11 +99,13 @@ export class AppComponent implements OnInit, AfterViewInit, OnDestroy { } this.actions.pipe( takeUntil(this.unSubs[4]), - filter((action) => action.type === RTLActions.FETCH_APPLICATION_SETTINGS || action.type === RTLActions.LOGIN || action.type === RTLActions.LOGOUT)). + filter((action) => action.type === RTLActions.SET_APPLICATION_SETTINGS || action.type === RTLActions.LOGIN || action.type === RTLActions.LOGOUT)). subscribe((action: (any)) => { if (action.type === RTLActions.SET_APPLICATION_SETTINGS) { if (!this.sessionService.getItem('token')) { - if (+action.payload.SSO.rtlSSO) { + if (!!action.payload.disableAuth) { + this.store.dispatch(login({ payload: { password: 'disabledAuth', defaultPassword: false } })); + } else if (+action.payload.SSO.rtlSSO) { if (!this.accessKey || this.accessKey.trim().length < 32) { this.router.navigate(['./error'], { state: { errorCode: '406', errorMessage: 'Access key too short. It should be at least 32 characters long.' } }); } else { diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 2fc88734..3ef102da 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -1,8 +1,8 @@ import { HammerModule } from '@angular/platform-browser'; import { NgModule, isDevMode } from '@angular/core'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; -import { HTTP_INTERCEPTORS } from '@angular/common/http'; import { LayoutModule } from '@angular/cdk/layout'; +import { HTTP_INTERCEPTORS, provideHttpClient, withFetch, withInterceptorsFromDi } from '@angular/common/http'; import { StoreModule } from '@ngrx/store'; import { EffectsModule } from '@ngrx/effects'; @@ -54,10 +54,16 @@ if (isDevMode()) { isDevEnvironemt = true; } ], declarations: [AppComponent], providers: [ + provideHttpClient(withFetch(), withInterceptorsFromDi()), provideUserIdleConfig({ idle: (HOUR_SECONDS - 10), timeout: 10, ping: 12000 }), { provide: HTTP_INTERCEPTORS, useClass: AuthInterceptor, multi: true }, - SessionService, DataService, WebSocketClientService, LoopService, CommonService, BoltzService + SessionService, + DataService, + WebSocketClientService, + LoopService, + CommonService, + BoltzService ], bootstrap: [AppComponent] }) -export class AppModule { } +export class AppModule {} diff --git a/src/app/cln/cln-root.component.ts b/src/app/cln/cln-root.component.ts index ece2565c..8552424c 100644 --- a/src/app/cln/cln-root.component.ts +++ b/src/app/cln/cln-root.component.ts @@ -3,6 +3,7 @@ import { Event, NavigationCancel, NavigationEnd, NavigationError, NavigationStar import { routeAnimation } from '../shared/animation/route-animation'; @Component({ + standalone: false, selector: 'rtl-cln-root', templateUrl: './cln-root.component.html', styleUrls: ['./cln-root.component.scss'], diff --git a/src/app/cln/graph/graph.component.html b/src/app/cln/graph/graph.component.html index 24cdd1b5..acb9cf87 100644 --- a/src/app/cln/graph/graph.component.html +++ b/src/app/cln/graph/graph.component.html @@ -6,7 +6,7 @@
diff --git a/src/app/cln/graph/graph.component.ts b/src/app/cln/graph/graph.component.ts index 6ad08c90..998415ab 100644 --- a/src/app/cln/graph/graph.component.ts +++ b/src/app/cln/graph/graph.component.ts @@ -5,6 +5,7 @@ import { takeUntil, filter } from 'rxjs/operators'; import { faSearch } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-cln-graph', templateUrl: './graph.component.html', styleUrls: ['./graph.component.scss'] diff --git a/src/app/cln/graph/lookups/channel-lookup/channel-lookup.component.ts b/src/app/cln/graph/lookups/channel-lookup/channel-lookup.component.ts index ceccdca7..a6c24a7f 100644 --- a/src/app/cln/graph/lookups/channel-lookup/channel-lookup.component.ts +++ b/src/app/cln/graph/lookups/channel-lookup/channel-lookup.component.ts @@ -8,6 +8,7 @@ import { RTLState } from '../../../../store/rtl.state'; import { clnNodeInformation } from '../../../store/cln.selector'; @Component({ + standalone: false, selector: 'rtl-cln-channel-lookup', templateUrl: './channel-lookup.component.html', styleUrls: ['./channel-lookup.component.scss'] diff --git a/src/app/cln/graph/lookups/lookups.component.ts b/src/app/cln/graph/lookups/lookups.component.ts index d48ee07d..cc45ed50 100644 --- a/src/app/cln/graph/lookups/lookups.component.ts +++ b/src/app/cln/graph/lookups/lookups.component.ts @@ -13,6 +13,7 @@ import { RTLState } from '../../../store/rtl.state'; import { channelLookup, peerLookup } from '../../store/cln.actions'; @Component({ + standalone: false, selector: 'rtl-cln-lookups', templateUrl: './lookups.component.html', styleUrls: ['./lookups.component.scss'] diff --git a/src/app/cln/graph/lookups/node-lookup/node-lookup.component.ts b/src/app/cln/graph/lookups/node-lookup/node-lookup.component.ts index d78dd9e8..d4a233ce 100644 --- a/src/app/cln/graph/lookups/node-lookup/node-lookup.component.ts +++ b/src/app/cln/graph/lookups/node-lookup/node-lookup.component.ts @@ -15,6 +15,7 @@ import { CLNConnectPeerComponent } from '../../../peers-channels/connect-peer/co import { nodeInfoAndBalance } from '../../../store/cln.selector'; @Component({ + standalone: false, selector: 'rtl-cln-node-lookup', templateUrl: './node-lookup.component.html', styleUrls: ['./node-lookup.component.scss'] diff --git a/src/app/cln/graph/query-routes/query-routes.component.ts b/src/app/cln/graph/query-routes/query-routes.component.ts index 64a42bf7..7d9b9355 100644 --- a/src/app/cln/graph/query-routes/query-routes.component.ts +++ b/src/app/cln/graph/query-routes/query-routes.component.ts @@ -20,6 +20,7 @@ import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-cln-query-routes', templateUrl: './query-routes.component.html', styleUrls: ['./query-routes.component.scss'] diff --git a/src/app/cln/home/balances-info/balances-info.component.html b/src/app/cln/home/balances-info/balances-info.component.html index 39c80be4..c7f78b31 100644 --- a/src/app/cln/home/balances-info/balances-info.component.html +++ b/src/app/cln/home/balances-info/balances-info.component.html @@ -2,12 +2,12 @@

Lightning

{{balances.lightning | number:'1.0-0'}} Sats
- +

On-chain

{{balances.onchain | number:'1.0-0'}} Sats
- +

Total

diff --git a/src/app/cln/home/balances-info/balances-info.component.ts b/src/app/cln/home/balances-info/balances-info.component.ts index 69e36bfe..879fdeeb 100644 --- a/src/app/cln/home/balances-info/balances-info.component.ts +++ b/src/app/cln/home/balances-info/balances-info.component.ts @@ -1,6 +1,7 @@ import { Component, Input } from '@angular/core'; @Component({ + standalone: false, selector: 'rtl-cln-balances-info', templateUrl: './balances-info.component.html', styleUrls: ['./balances-info.component.scss'] diff --git a/src/app/cln/home/channel-capacity-info/channel-capacity-info.component.html b/src/app/cln/home/channel-capacity-info/channel-capacity-info.component.html index 6a9cebb6..f9adf678 100644 --- a/src/app/cln/home/channel-capacity-info/channel-capacity-info.component.html +++ b/src/app/cln/home/channel-capacity-info/channel-capacity-info.component.html @@ -9,14 +9,14 @@ Remote:{{channelBalances?.remoteBalance || 0 | number:'1.0-0'}} Sats
- +
diff --git a/src/app/cln/home/channel-capacity-info/channel-capacity-info.component.ts b/src/app/cln/home/channel-capacity-info/channel-capacity-info.component.ts index b5503c4e..b7c75b71 100644 --- a/src/app/cln/home/channel-capacity-info/channel-capacity-info.component.ts +++ b/src/app/cln/home/channel-capacity-info/channel-capacity-info.component.ts @@ -5,6 +5,7 @@ import { faBalanceScale, faDumbbell } from '@fortawesome/free-solid-svg-icons'; import { Channel } from '../../../shared/models/clnModels'; @Component({ + standalone: false, selector: 'rtl-cln-channel-capacity-info', templateUrl: './channel-capacity-info.component.html', styleUrls: ['./channel-capacity-info.component.scss'] diff --git a/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.html b/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.html index b14f346d..8ae4a6fb 100644 --- a/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.html +++ b/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.html @@ -8,15 +8,15 @@ diff --git a/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.spec.ts b/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.spec.ts index 827dcf46..5fc8b59d 100644 --- a/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.spec.ts +++ b/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.spec.ts @@ -7,6 +7,8 @@ import { mockDataService } from '../../../shared/test-helpers/mock-services'; import { CLNChannelLiquidityInfoComponent } from './channel-liquidity-info.component'; import { DataService } from '../../../shared/services/data.service'; +import { provideHttpClientTesting } from '@angular/common/http/testing'; +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http'; describe('CLNChannelLiquidityInfoComponent', () => { let component: CLNChannelLiquidityInfoComponent; @@ -17,6 +19,8 @@ describe('CLNChannelLiquidityInfoComponent', () => { declarations: [CLNChannelLiquidityInfoComponent], imports: [SharedModule, RouterTestingModule], providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), CommonService, { provide: DataService, useClass: mockDataService } ] diff --git a/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.ts b/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.ts index b5e0c109..e2dadfa1 100644 --- a/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.ts +++ b/src/app/cln/home/channel-liquidity-info/channel-liquidity-info.component.ts @@ -6,6 +6,7 @@ import { ScreenSizeEnum } from '../../../shared/services/consts-enums-functions' import { CommonService } from '../../../shared/services/common.service'; @Component({ + standalone: false, selector: 'rtl-cln-channel-liquidity-info', templateUrl: './channel-liquidity-info.component.html', styleUrls: ['./channel-liquidity-info.component.scss'] diff --git a/src/app/cln/home/channel-status-info/channel-status-info.component.ts b/src/app/cln/home/channel-status-info/channel-status-info.component.ts index 95c46f11..103d6ae9 100644 --- a/src/app/cln/home/channel-status-info/channel-status-info.component.ts +++ b/src/app/cln/home/channel-status-info/channel-status-info.component.ts @@ -2,6 +2,7 @@ import { Component, Input } from '@angular/core'; import { ChannelsStatus } from '../../../shared/models/clnModels'; @Component({ + standalone: false, selector: 'rtl-cln-channel-status-info', templateUrl: './channel-status-info.component.html', styleUrls: ['./channel-status-info.component.scss'] diff --git a/src/app/cln/home/fee-info/fee-info.component.ts b/src/app/cln/home/fee-info/fee-info.component.ts index c8a75ef3..40226dac 100644 --- a/src/app/cln/home/fee-info/fee-info.component.ts +++ b/src/app/cln/home/fee-info/fee-info.component.ts @@ -2,6 +2,7 @@ import { Component, Input } from '@angular/core'; import { Fees } from '../../../shared/models/clnModels'; @Component({ + standalone: false, selector: 'rtl-cln-fee-info', templateUrl: './fee-info.component.html', styleUrls: ['./fee-info.component.scss'] diff --git a/src/app/cln/home/home.component.html b/src/app/cln/home/home.component.html index 1fb20f0f..ba7cac26 100644 --- a/src/app/cln/home/home.component.html +++ b/src/app/cln/home/home.component.html @@ -23,7 +23,7 @@ - - - + + - - + +
@@ -71,8 +71,8 @@ - - + + diff --git a/src/app/cln/network-info/network-info.component.ts b/src/app/cln/network-info/network-info.component.ts index 86cf5c5d..101c7a6d 100644 --- a/src/app/cln/network-info/network-info.component.ts +++ b/src/app/cln/network-info/network-info.component.ts @@ -16,6 +16,7 @@ import { rootSelectedNode } from '../../store/rtl.selector'; import { channels, feeRatesPerKB, feeRatesPerKW, forwardingHistory, utxoBalances, nodeInfoAndAPIsStatus } from '../store/cln.selector'; @Component({ + standalone: false, selector: 'rtl-cln-network-info', templateUrl: './network-info.component.html', styleUrls: ['./network-info.component.scss'] diff --git a/src/app/cln/network-info/on-chain-fee-estimates/on-chain-fee-estimates.component.ts b/src/app/cln/network-info/on-chain-fee-estimates/on-chain-fee-estimates.component.ts index 7ecaf001..9c40fb23 100644 --- a/src/app/cln/network-info/on-chain-fee-estimates/on-chain-fee-estimates.component.ts +++ b/src/app/cln/network-info/on-chain-fee-estimates/on-chain-fee-estimates.component.ts @@ -3,6 +3,7 @@ import { Component, Input } from '@angular/core'; import { FeeRates } from '../../../shared/models/clnModels'; @Component({ + standalone: false, selector: 'rtl-cln-onchain-fee-estimates', templateUrl: './on-chain-fee-estimates.component.html', styleUrls: ['./on-chain-fee-estimates.component.scss'] diff --git a/src/app/cln/on-chain/on-chain-receive/on-chain-receive.component.ts b/src/app/cln/on-chain/on-chain-receive/on-chain-receive.component.ts index 939dd447..d8f4180b 100644 --- a/src/app/cln/on-chain/on-chain-receive/on-chain-receive.component.ts +++ b/src/app/cln/on-chain/on-chain-receive/on-chain-receive.component.ts @@ -11,6 +11,7 @@ import { openAlert } from '../../../store/rtl.actions'; import { getNewAddress } from '../../store/cln.actions'; @Component({ + standalone: false, selector: 'rtl-cln-on-chain-receive', templateUrl: './on-chain-receive.component.html', styleUrls: ['./on-chain-receive.component.scss'] diff --git a/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.html b/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.html index ce79e989..09e80cd7 100644 --- a/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.html +++ b/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.html @@ -4,33 +4,47 @@
{{sweepAll ? 'Sweep All Funds' : 'Send Funds'}}
- + - + +
+ + +
Fee rates recommended by mempool (sat/vByte):
+ + - High: {{recommendedFee.fastestFee || 'Unknown'}} + - Medium: {{recommendedFee.halfHourFee || 'Unknown'}} + - Low: {{recommendedFee.hourFee || 'Unknown'}} + - Economy: {{recommendedFee.economyFee || 'Unknown'}} + - Minimum: {{recommendedFee.minimumFee || 'Unknown'}} + +
+
Bitcoin Address - + Bitcoin address is required. Amount - + Amount replaced by UTXO balance {{selAmountUnit}} {{amountError}} - + Amount Unit + {{amountUnit}}
- + Fee Rate - + {{feeRateType.feeRateType}} @@ -38,15 +52,15 @@ Fee Rate (Sats/vByte) - + Fee Rate is required.
- + Min Confirmation Blocks - + Min Confirmation Blocks is required.
@@ -61,13 +75,13 @@
Coin Selection - + {{totalSelectedUTXOAmount | number}} Sats ({{selUTXOs.length > 1 ? selUTXOs.length + ' UTXOs' : '1 UTXO'}}) {{utxo.amount_msat/1000 | number:'1.0-0'}} Sats
- + Use selected UTXOs balance info_outline @@ -81,8 +95,8 @@ {{sendFundError}}
- - + +
@@ -99,12 +113,12 @@
Password - + Password is required.
- +
@@ -114,14 +128,14 @@
Bitcoin Address - + Bitcoin address is required.
- + Fee Rate - + {{feeRateType.feeRateType}} @@ -129,22 +143,22 @@ Fee Rate (Sats/vByte) - + Fee Rate is required.
- + Min Confirmation Blocks - + Min Confirmation Blocks is required.
- +
@@ -161,14 +175,14 @@ {{sendFundError}}
- +
- +
diff --git a/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts b/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts index 0fe835f6..04e3592c 100644 --- a/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts +++ b/src/app/cln/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts @@ -8,7 +8,7 @@ import { Actions } from '@ngrx/effects'; import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog'; import { MatSnackBar } from '@angular/material/snack-bar'; import { MatStepper } from '@angular/material/stepper'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faExclamationTriangle, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; import * as sha256 from 'sha256'; import { Node, RTLConfiguration } from '../../../shared/models/RTLconfig'; @@ -25,8 +25,11 @@ import { setChannelTransaction } from '../../store/cln.actions'; import { rootAppConfig, rootSelectedNode } from '../../../store/rtl.selector'; import { clnNodeInformation, utxoBalances } from '../../store/cln.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; +import { DataService } from '../../../shared/services/data.service'; +import { RecommendedFeeRates } from '../../../shared/models/rtlModels'; @Component({ + standalone: false, selector: 'rtl-cln-on-chain-send-modal', templateUrl: './on-chain-send-modal.component.html', styleUrls: ['./on-chain-send-modal.component.scss'] @@ -37,6 +40,7 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { @ViewChild('formSweepAll', { static: false }) formSweepAll: any; @ViewChild('stepper', { static: false }) stepper: MatStepper; public faExclamationTriangle = faExclamationTriangle; + public faInfoCircle = faInfoCircle; public sweepAll = false; public selNode: Node | null; public appConfig: RTLConfiguration; @@ -65,6 +69,7 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { public advancedTitle = 'Advanced Options'; public flgValidated = false; public flgEditable = true; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; public passwordFormLabel = 'Authenticate with your RTL password'; public sendFundFormLabel = 'Sweep funds'; public confirmFormLabel = 'Confirm sweep'; @@ -74,12 +79,13 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { confirmFormGroup: UntypedFormGroup; public screenSize = ''; public screenSizeEnum = ScreenSizeEnum; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; constructor( public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: CLNOnChainSendFunds, private logger: LoggerService, + private dataService: DataService, private store: Store, private commonService: CommonService, private decimalPipe: DecimalPipe, @@ -91,6 +97,13 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { } ngOnInit() { + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[0])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); this.sweepAll = this.data.sweepAll; this.passwordFormGroup = this.formBuilder.group({ hiddenPassword: ['', [Validators.required]], @@ -104,7 +117,7 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { minConfValue: [{ value: null, disabled: true }] }); this.confirmFormGroup = this.formBuilder.group({}); - this.sendFundFormGroup.controls.flgMinConf.valueChanges.pipe(takeUntil(this.unSubs[0])).subscribe((flg) => { + this.sendFundFormGroup.controls.flgMinConf.valueChanges.pipe(takeUntil(this.unSubs[1])).subscribe((flg) => { if (flg) { this.sendFundFormGroup.controls.selFeeRate.disable(); this.sendFundFormGroup.controls.selFeeRate.setValue(null); @@ -121,7 +134,7 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { this.sendFundFormGroup.controls.minConfValue.setErrors(null); } }); - this.sendFundFormGroup.controls.selFeeRate.valueChanges.pipe(takeUntil(this.unSubs[1])).subscribe((feeRate) => { + this.sendFundFormGroup.controls.selFeeRate.valueChanges.pipe(takeUntil(this.unSubs[2])).subscribe((feeRate) => { this.sendFundFormGroup.controls.customFeeRate.setValue(null); this.sendFundFormGroup.controls.customFeeRate.reset(); if (feeRate === 'customperkb' && !this.sendFundFormGroup.controls.flgMinConf.value) { @@ -130,23 +143,23 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { this.sendFundFormGroup.controls.customFeeRate.setValidators(null); } }); - combineLatest([this.store.select(rootSelectedNode), this.store.select(rootAppConfig)]).pipe(takeUntil(this.unSubs[1])). + combineLatest([this.store.select(rootSelectedNode), this.store.select(rootAppConfig)]).pipe(takeUntil(this.unSubs[3])). subscribe(([selNode, appConfig]) => { this.fiatConversion = selNode.settings.fiatConversion; this.amountUnits = selNode.settings.currencyUnits; this.appConfig = appConfig; }); - this.store.select(clnNodeInformation).pipe(takeUntil(this.unSubs[2])). + this.store.select(clnNodeInformation).pipe(takeUntil(this.unSubs[4])). subscribe((nodeInfo: GetInfo) => { this.information = nodeInfo; }); - this.store.select(utxoBalances).pipe(takeUntil(this.unSubs[3])). + this.store.select(utxoBalances).pipe(takeUntil(this.unSubs[5])). subscribe((utxoBalancesSeletor: { utxos: UTXO[], balance: Balance, localRemoteBalance: LocalRemoteBalance, apiCallStatus: ApiCallStatusPayload }) => { this.utxos = this.commonService.sortAscByKey(utxoBalancesSeletor.utxos?.filter((utxo) => utxo.status === 'confirmed'), 'value'); this.logger.info(utxoBalancesSeletor); }); this.actions.pipe( - takeUntil(this.unSubs[4]), + takeUntil(this.unSubs[6]), filter((action) => action.type === CLNActions.UPDATE_API_CALL_STATUS_CLN || action.type === CLNActions.SET_CHANNEL_TRANSACTION_RES_CLN)). subscribe((action: any) => { if (action.type === CLNActions.SET_CHANNEL_TRANSACTION_RES_CLN) { @@ -219,7 +232,7 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { } if (this.transaction.satoshi && this.transaction.satoshi !== 'all' && this.selAmountUnit !== CurrencyUnitEnum.SATS) { this.commonService.convertCurrency(+this.transaction.satoshi, this.selAmountUnit === this.amountUnits[2] ? CurrencyUnitEnum.OTHER : this.selAmountUnit, CurrencyUnitEnum.SATS, this.amountUnits[2], this.fiatConversion). - pipe(takeUntil(this.unSubs[5])). + pipe(takeUntil(this.unSubs[7])). subscribe({ next: (data) => { this.transaction.satoshi = data[CurrencyUnitEnum.SATS]; @@ -307,7 +320,7 @@ export class CLNOnChainSendModalComponent implements OnInit, OnDestroy { let currSelectedUnit = event.value === this.amountUnits[2] ? CurrencyUnitEnum.OTHER : event.value; if (this.transaction.satoshi && this.selAmountUnit !== event.value) { this.commonService.convertCurrency(+this.transaction.satoshi, prevSelectedUnit, currSelectedUnit, this.amountUnits[2], this.fiatConversion). - pipe(takeUntil(this.unSubs[6])). + pipe(takeUntil(this.unSubs[8])). subscribe({ next: (data) => { this.selAmountUnit = event.value; diff --git a/src/app/cln/on-chain/on-chain-send/on-chain-send.component.ts b/src/app/cln/on-chain/on-chain-send/on-chain-send.component.ts index 534ffb96..f68dae11 100644 --- a/src/app/cln/on-chain/on-chain-send/on-chain-send.component.ts +++ b/src/app/cln/on-chain/on-chain-send/on-chain-send.component.ts @@ -10,6 +10,7 @@ import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; @Component({ + standalone: false, selector: 'rtl-cln-on-chain-send', templateUrl: './on-chain-send.component.html', styleUrls: ['./on-chain-send.component.scss'] diff --git a/src/app/cln/on-chain/on-chain.component.ts b/src/app/cln/on-chain/on-chain.component.ts index 7a590951..5a7f63cc 100644 --- a/src/app/cln/on-chain/on-chain.component.ts +++ b/src/app/cln/on-chain/on-chain.component.ts @@ -15,6 +15,7 @@ import { Balance, LocalRemoteBalance, UTXO } from '../../shared/models/clnModels import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-cln-on-chain', templateUrl: './on-chain.component.html', styleUrls: ['./on-chain.component.scss'] diff --git a/src/app/cln/on-chain/utxo-tables/utxo-tables.component.html b/src/app/cln/on-chain/utxo-tables/utxo-tables.component.html index b843856d..476805c6 100644 --- a/src/app/cln/on-chain/utxo-tables/utxo-tables.component.html +++ b/src/app/cln/on-chain/utxo-tables/utxo-tables.component.html @@ -2,13 +2,13 @@ - UTXOs + UTXOs - Dust UTXOs + Dust UTXOs diff --git a/src/app/cln/on-chain/utxo-tables/utxo-tables.component.ts b/src/app/cln/on-chain/utxo-tables/utxo-tables.component.ts index 303a05c6..06eece7d 100644 --- a/src/app/cln/on-chain/utxo-tables/utxo-tables.component.ts +++ b/src/app/cln/on-chain/utxo-tables/utxo-tables.component.ts @@ -11,6 +11,7 @@ import { utxoBalances } from '../../store/cln.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-cln-utxo-tables', templateUrl: './utxo-tables.component.html', styleUrls: ['./utxo-tables.component.scss'] diff --git a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.html b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.html index e9b1daba..feff7444 100644 --- a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.html +++ b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.html @@ -30,7 +30,7 @@ - + diff --git a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.ts b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.ts index 68387a4e..a907902c 100644 --- a/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.ts +++ b/src/app/cln/on-chain/utxo-tables/utxos/utxos.component.ts @@ -21,6 +21,7 @@ import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-cln-on-chain-utxos', templateUrl: './utxos.component.html', styleUrls: ['./utxos.component.scss'], diff --git a/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.html b/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.html index 3dfdf9b3..07b1aa93 100644 --- a/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.html +++ b/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.html @@ -4,13 +4,13 @@
Bump Fee
- +

Bump fee for transaction id: {{bumpFeeChannel?.funding_txid}} - +

@@ -29,14 +29,14 @@
Output Index - + Output Index required. Invalid index value. Fees (Sats/vByte) + type="number" name="fees" required [step]="1" [min]="0" [(ngModel)]="fees"> Fees is required.
@@ -47,8 +47,8 @@
- - + +
diff --git a/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.ts b/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.ts index 29a47122..1e29d8da 100644 --- a/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.ts +++ b/src/app/cln/peers-channels/channels/bump-fee-modal/bump-fee.component.ts @@ -21,6 +21,7 @@ import { openSnackBar } from '../../../../store/rtl.actions'; import { getNewAddress, setChannelTransaction } from '../../../store/cln.actions'; @Component({ + standalone: false, selector: 'rtl-cln-bump-fee', templateUrl: './bump-fee.component.html', styleUrls: ['./bump-fee.component.scss'] diff --git a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.html b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.html index 16c9dd9f..0fb69f9d 100644 --- a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.html +++ b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.html @@ -43,7 +43,7 @@

Funding Transaction ID

{{channel.funding_txid}} - +
diff --git a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.ts b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.ts index ed0da577..25c6cd37 100644 --- a/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.ts +++ b/src/app/cln/peers-channels/channels/channel-information-modal/channel-information.component.ts @@ -12,6 +12,7 @@ import { Channel } from '../../../../shared/models/clnModels'; import { ScreenSizeEnum } from '../../../../shared/services/consts-enums-functions'; @Component({ + standalone: false, selector: 'rtl-cln-channel-information', templateUrl: './channel-information.component.html', styleUrls: ['./channel-information.component.scss'] @@ -56,6 +57,7 @@ export class CLNChannelInformationComponent implements OnInit { } onExplorerClicked() { + if (!this.selNode?.settings?.blockExplorerUrl) { return; } window.open(this.selNode.settings.blockExplorerUrl + '/tx/' + this.channel.funding_txid, '_blank'); } diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.scss b/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.scss index 155311fd..c9ee4aee 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.scss +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.scss @@ -1,4 +1,4 @@ -@import "../../../../../shared/theme/styles/constants.scss"; +@use '../../../../../shared/theme/styles/constants.scss' as *; .mat-column-amount_msat { .htlc-row-span:not(:first-of-type) { diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts b/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts index d86da482..53eee9ac 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts @@ -21,6 +21,7 @@ import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-cln-channel-active-htlcs-table', templateUrl: './channel-active-htlcs-table.component.html', styleUrls: ['./channel-active-htlcs-table.component.scss'], diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html index d599e0bc..53e283cc 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html @@ -66,7 +66,7 @@
Connected - {{(channel?.connected) ? 'Connected' : 'Disconnected'}} + {{(channel?.peer_connected) ? 'Connected' : 'Disconnected'}} Local Reserve (Sats) @@ -104,7 +104,7 @@
{{channel.balancedness || 0 | number}}
- +
diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.spec.ts b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.spec.ts index 7aaa4cf9..89408e46 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.spec.ts +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.spec.ts @@ -17,6 +17,9 @@ import { ECLReducer } from '../../../../../eclair/store/ecl.reducers'; import { CLNEffects } from '../../../../store/cln.effects'; import { CLNChannelOpenTableComponent } from './channel-open-table.component'; import { ExtraOptions, Route, Router } from '@angular/router'; +import { HttpClientTestingModule, provideHttpClientTesting } from '@angular/common/http/testing'; +import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http'; +import { MatTableDataSource } from '@angular/material/table'; describe('CLNChannelOpenTableComponent', () => { let component: CLNChannelOpenTableComponent; @@ -33,6 +36,8 @@ describe('CLNChannelOpenTableComponent', () => { EffectsModule.forRoot([mockRTLEffects, mockLNDEffects, mockCLEffects, mockECLEffects]) ], providers: [ + provideHttpClient(withInterceptorsFromDi()), + provideHttpClientTesting(), CommonService, { provide: Router, useClass: mockRouter }, { provide: LoggerService, useClass: mockLoggerService }, @@ -54,6 +59,29 @@ describe('CLNChannelOpenTableComponent', () => { expect(component).toBeTruthy(); }); + const connectedCellText = (): string => { + const cell = fixture.nativeElement.querySelector('td.mat-column-connected'); + return cell ? cell.textContent.trim() : ''; + }; + + const renderSingleChannel = (channel: any) => { + component.displayedColumns = ['connected']; + component.channels = new MatTableDataSource([channel]); + fixture.detectChanges(); + }; + + // Issue #1606: the connected column must reflect peer_connected (what listpeerchannels + // returns), not the legacy 'connected' field, so it stays consistent with the detail panel. + it('should render Connected from peer_connected even when legacy connected is false', () => { + renderSingleChannel({ peer_connected: true, connected: false }); + expect(connectedCellText()).toBe('Connected'); + }); + + it('should render Disconnected from peer_connected even when legacy connected is true', () => { + renderSingleChannel({ peer_connected: false, connected: true }); + expect(connectedCellText()).toBe('Disconnected'); + }); + afterEach(() => { TestBed.resetTestingModule(); }); diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts index 6d5f860b..584044af 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts @@ -29,6 +29,7 @@ import { MessageDataField } from '../../../../../shared/models/alertData'; import { rootSelectedNode } from '../../../../../store/rtl.selector'; @Component({ + standalone: false, selector: 'rtl-cln-channel-open-table', templateUrl: './channel-open-table.component.html', styleUrls: ['./channel-open-table.component.scss'], diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html index e5f8e1b6..40ce7c28 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.html @@ -58,7 +58,7 @@ Connected - {{(channel?.connected) ? 'Connected' : 'Disconnected'}} + {{(channel?.peer_connected) ? 'Connected' : 'Disconnected'}} State @@ -108,7 +108,7 @@ View Info - Close Channel + Close Channel Bump Fee diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.spec.ts b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.spec.ts index 5d97bffe..dd9acf83 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.spec.ts +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.spec.ts @@ -1,5 +1,5 @@ import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing'; -import { StoreModule } from '@ngrx/store'; +import { Store, StoreModule } from '@ngrx/store'; import { RootReducer } from '../../../../../store/rtl.reducers'; import { LNDReducer } from '../../../../../lnd/store/lnd.reducers'; @@ -15,6 +15,7 @@ import { RTLEffects } from '../../../../../store/rtl.effects'; import { SharedModule } from '../../../../../shared/shared.module'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { DataService } from '../../../../../shared/services/data.service'; +import { MatTableDataSource } from '@angular/material/table'; describe('CLNChannelPendingTableComponent', () => { let component: CLNChannelPendingTableComponent; @@ -49,6 +50,43 @@ describe('CLNChannelPendingTableComponent', () => { expect(component).toBeTruthy(); }); + const connectedCellText = (): string => { + const cell = fixture.nativeElement.querySelector('td.mat-column-connected'); + return cell ? cell.textContent.trim() : ''; + }; + + const renderSingleChannel = (channel: any) => { + component.displayedColumns = ['connected']; + component.channels = new MatTableDataSource([channel]); + fixture.detectChanges(); + }; + + // Issue #1606: the connected column must reflect peer_connected (what listpeerchannels + // returns), not the legacy 'connected' field, so it stays consistent with the detail panel. + it('should render Connected from peer_connected even when legacy connected is false', () => { + renderSingleChannel({ peer_connected: true, connected: false }); + expect(connectedCellText()).toBe('Connected'); + }); + + it('should render Disconnected from peer_connected even when legacy connected is true', () => { + renderSingleChannel({ peer_connected: false, connected: true }); + expect(connectedCellText()).toBe('Disconnected'); + }); + + // Issue #1606: the channel information modal reads selNode.settings.blockExplorerUrl, so the + // pending table must pass selNode when opening it. Without it the modal throws mid-render and + // blanks State/Connected/balances for disconnected channels (which live in this table). + it('should pass selNode when opening the channel information modal', () => { + const store = TestBed.inject(Store); + const dispatchSpy = spyOn(store, 'dispatch'); + const selNode: any = { settings: { blockExplorerUrl: 'https://mempool.space' } }; + component.selNode = selNode; + component.onChannelClick({ short_channel_id: '120x1x0', peer_connected: false } as any, {} as any); + expect(dispatchSpy).toHaveBeenCalled(); + const action: any = dispatchSpy.calls.mostRecent().args[0]; + expect(action.payload.data.selNode).toBe(selNode); + }); + afterEach(() => { TestBed.resetTestingModule(); }); diff --git a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts index aaf77734..5e1bf058 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts +++ b/src/app/cln/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts @@ -20,11 +20,14 @@ import { openAlert, openConfirmation } from '../../../../../store/rtl.actions'; import { RTLState } from '../../../../../store/rtl.state'; import { closeChannel } from '../../../../store/cln.actions'; import { channels, clnPageSettings, nodeInfoAndBalanceAndNumPeers } from '../../../../store/cln.selector'; +import { rootSelectedNode } from '../../../../../store/rtl.selector'; +import { Node } from '../../../../../shared/models/RTLconfig'; import { ColumnDefinition, PageSettings, TableSetting } from '../../../../../shared/models/pageSettings'; import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; import { MAT_SELECT_CONFIG } from '@angular/material/select'; @Component({ + standalone: false, selector: 'rtl-cln-channel-pending-table', templateUrl: './channel-pending-table.component.html', styleUrls: ['./channel-pending-table.component.scss'], @@ -61,6 +64,7 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O public errorMessage = ''; public apiCallStatus: ApiCallStatusPayload | null = null; public apiCallStatusEnum = APICallStatusEnum; + public selNode: Node | null = null; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; constructor(private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService, private camelCaseWithReplace: CamelCaseWithReplacePipe) { @@ -108,6 +112,10 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O } this.logger.info(channelsSeletor); }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[4])). + subscribe((nodeSettings) => { + this.selNode = nodeSettings; + }); } ngAfterViewInit() { @@ -132,6 +140,7 @@ export class CLNChannelPendingTableComponent implements OnInit, AfterViewInit, O payload: { data: { channel: selChannel, + selNode: this.selNode, showCopy: true, component: CLNChannelInformationComponent } diff --git a/src/app/cln/peers-channels/channels/channels-tables/channels-tables.component.html b/src/app/cln/peers-channels/channels/channels-tables/channels-tables.component.html index c1985c89..7f5110e9 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channels-tables.component.html +++ b/src/app/cln/peers-channels/channels/channels-tables/channels-tables.component.html @@ -6,17 +6,17 @@ - Open + Open - Pending/Inactive + Pending/Inactive - Active HTLCs + Active HTLCs diff --git a/src/app/cln/peers-channels/channels/channels-tables/channels-tables.component.ts b/src/app/cln/peers-channels/channels/channels-tables/channels-tables.component.ts index 583cff49..c02a0689 100644 --- a/src/app/cln/peers-channels/channels/channels-tables/channels-tables.component.ts +++ b/src/app/cln/peers-channels/channels/channels-tables/channels-tables.component.ts @@ -17,6 +17,7 @@ import { channels, nodeInfoAndBalance, peers, utxoBalances } from '../../../stor import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-cln-channels-tables', templateUrl: './channels-tables.component.html', styleUrls: ['./channels-tables.component.scss'] diff --git a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.html b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.html index e9baec0d..edc32560 100644 --- a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.html +++ b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.html @@ -4,14 +4,14 @@
{{alertTitle}}
- +
Peer Alias - + {{peer.alias ? peer.alias : peer.id ? peer.id : ''}} @@ -24,14 +24,14 @@
Amount - + Remaining: {{totalBalance - ((fundingAmount) ? fundingAmount : 0) | number}}{{flgUseAllBalance ? '. Amount replaced by UTXO balance' : ''}} Sats Amount is required. Amount must be less than or equal to {{totalBalance}}.
- Private Channel + Private Channel
@@ -56,9 +56,9 @@
- + Fee Rate - + {{feeRateType.feeRateType}} @@ -66,30 +66,30 @@ Fee Rate (Sats/vByte) - + Mempool Min: {{recommendedFee.minimumFee}} (Sats/vByte) Fee Rate is required. Lower than min feerate {{recommendedFee.minimumFee}} in the mempool.
- + Min Confirmation Blocks - + Min Blocks is required.
Coin Selection - + {{totalSelectedUTXOAmount | number}} Sats ({{selUTXOs.length > 1 ? selUTXOs.length + ' UTXOs' : '1 UTXO'}}) {{(utxo.amount_msat) / 1000 | number:'1.0-0'}} Sats
- + Use selected UTXOs balance info_outline @@ -102,8 +102,8 @@ {{channelConnectionError}}
- - + +
diff --git a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.scss b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.scss index 44b270e5..91ad86af 100644 --- a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.scss +++ b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.scss @@ -1,4 +1,4 @@ -@import "../../../../shared/theme/styles/constants.scss"; +@use '../../../../shared/theme/styles/constants.scss' as *; .open-inputs-box { padding: 1.2rem 2.4rem 0.8rem 2.4rem !important; diff --git a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.ts b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.ts index 25c7de35..98fd4743 100644 --- a/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.ts +++ b/src/app/cln/peers-channels/channels/open-channel-modal/open-channel.component.ts @@ -22,6 +22,7 @@ import { rootSelectedNode } from '../../../../store/rtl.selector'; import { Node } from '../../../../shared/models/RTLconfig'; @Component({ + standalone: false, selector: 'rtl-cln-open-channel', templateUrl: './open-channel.component.html', styleUrls: ['./open-channel.component.scss'] @@ -168,6 +169,13 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { } } else { this.advancedTitle = 'Advanced Options'; + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[3])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); } } @@ -209,19 +217,6 @@ export class CLNOpenChannelComponent implements OnInit, OnDestroy { this.store.dispatch(saveNewChannel({ payload: newChannel })); } - onSelFeeRateChanged(event) { - this.customFeeRate = null; - if (event.value === 'customperkb') { - this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[3])).subscribe({ - next: (rfRes: RecommendedFeeRates) => { - this.recommendedFee = rfRes; - }, error: (err) => { - this.logger.error(err); - } - }); - } - } - ngOnDestroy() { this.unSubs.forEach((completeSub) => { completeSub.next(null); diff --git a/src/app/cln/peers-channels/connect-peer/connect-peer.component.html b/src/app/cln/peers-channels/connect-peer/connect-peer.component.html index 71b97fd8..9047bcfd 100644 --- a/src/app/cln/peers-channels/connect-peer/connect-peer.component.html +++ b/src/app/cln/peers-channels/connect-peer/connect-peer.component.html @@ -59,7 +59,7 @@
- + Fee Rate diff --git a/src/app/cln/peers-channels/connect-peer/connect-peer.component.ts b/src/app/cln/peers-channels/connect-peer/connect-peer.component.ts index db1cbae6..94de58f5 100644 --- a/src/app/cln/peers-channels/connect-peer/connect-peer.component.ts +++ b/src/app/cln/peers-channels/connect-peer/connect-peer.component.ts @@ -22,6 +22,7 @@ import { rootSelectedNode } from '../../../store/rtl.selector'; import { Node } from '../../../shared/models/RTLconfig'; @Component({ + standalone: false, selector: 'rtl-cln-connect-peer', templateUrl: './connect-peer.component.html', styleUrls: ['./connect-peer.component.scss'] diff --git a/src/app/cln/peers-channels/connections.component.html b/src/app/cln/peers-channels/connections.component.html index 698e73bf..aa54e7ab 100644 --- a/src/app/cln/peers-channels/connections.component.html +++ b/src/app/cln/peers-channels/connections.component.html @@ -19,12 +19,12 @@ - Channels + Channels - Peers + Peers diff --git a/src/app/cln/peers-channels/connections.component.ts b/src/app/cln/peers-channels/connections.component.ts index 660dc56f..e93a5ebf 100644 --- a/src/app/cln/peers-channels/connections.component.ts +++ b/src/app/cln/peers-channels/connections.component.ts @@ -13,6 +13,7 @@ import { utxoBalances, channels, peers } from '../store/cln.selector'; import { Balance, Channel, LocalRemoteBalance, Peer, UTXO } from '../../shared/models/clnModels'; @Component({ + standalone: false, selector: 'rtl-cln-connections', templateUrl: './connections.component.html', styleUrls: ['./connections.component.scss'] diff --git a/src/app/cln/peers-channels/peers/peers.component.ts b/src/app/cln/peers-channels/peers/peers.component.ts index b33676d6..289f17bf 100644 --- a/src/app/cln/peers-channels/peers/peers.component.ts +++ b/src/app/cln/peers-channels/peers/peers.component.ts @@ -28,6 +28,7 @@ import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-cln-peers', templateUrl: './peers.component.html', styleUrls: ['./peers.component.scss'], diff --git a/src/app/cln/reports/reports.component.html b/src/app/cln/reports/reports.component.html index 81079649..526ba593 100644 --- a/src/app/cln/reports/reports.component.html +++ b/src/app/cln/reports/reports.component.html @@ -6,7 +6,7 @@ diff --git a/src/app/cln/reports/reports.component.ts b/src/app/cln/reports/reports.component.ts index 9de8871c..904c82b4 100644 --- a/src/app/cln/reports/reports.component.ts +++ b/src/app/cln/reports/reports.component.ts @@ -5,6 +5,7 @@ import { takeUntil, filter } from 'rxjs/operators'; import { faChartBar } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-cln-reports', templateUrl: './reports.component.html', styleUrls: ['./reports.component.scss'] diff --git a/src/app/cln/reports/routing/routing-report.component.html b/src/app/cln/reports/routing/routing-report.component.html index 240f215c..2d1b1be2 100644 --- a/src/app/cln/reports/routing/routing-report.component.html +++ b/src/app/cln/reports/routing/routing-report.component.html @@ -3,8 +3,8 @@
Report By: - Fees - Events + Fees + Events
@@ -42,7 +42,7 @@
- +
diff --git a/src/app/cln/reports/routing/routing-report.component.ts b/src/app/cln/reports/routing/routing-report.component.ts index e109ca4a..1f032264 100644 --- a/src/app/cln/reports/routing/routing-report.component.ts +++ b/src/app/cln/reports/routing/routing-report.component.ts @@ -16,6 +16,7 @@ import { getForwardingHistory } from '../../store/cln.actions'; import { DataService } from '../../../shared/services/data.service'; @Component({ + standalone: false, selector: 'rtl-cln-routing-report', templateUrl: './routing-report.component.html', styleUrls: ['./routing-report.component.scss'], diff --git a/src/app/cln/reports/transactions/transactions-report.component.ts b/src/app/cln/reports/transactions/transactions-report.component.ts index a8af631c..557ef9fc 100644 --- a/src/app/cln/reports/transactions/transactions-report.component.ts +++ b/src/app/cln/reports/transactions/transactions-report.component.ts @@ -15,6 +15,7 @@ import { LoggerService } from '../../../shared/services/logger.service'; import { PageSettings, TableSetting } from '../../../shared/models/pageSettings'; @Component({ + standalone: false, selector: 'rtl-cln-transactions-report', templateUrl: './transactions-report.component.html', styleUrls: ['./transactions-report.component.scss'], diff --git a/src/app/cln/routing/failed-transactions/failed-transactions.component.ts b/src/app/cln/routing/failed-transactions/failed-transactions.component.ts index ef72feb5..0d0a2d0c 100644 --- a/src/app/cln/routing/failed-transactions/failed-transactions.component.ts +++ b/src/app/cln/routing/failed-transactions/failed-transactions.component.ts @@ -24,6 +24,7 @@ import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-cln-failed-history', templateUrl: './failed-transactions.component.html', styleUrls: ['./failed-transactions.component.scss'], diff --git a/src/app/cln/routing/forwarding-history/forwarding-history.component.ts b/src/app/cln/routing/forwarding-history/forwarding-history.component.ts index 63a903ab..c0c36761 100644 --- a/src/app/cln/routing/forwarding-history/forwarding-history.component.ts +++ b/src/app/cln/routing/forwarding-history/forwarding-history.component.ts @@ -23,6 +23,7 @@ import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-cln-forwarding-history', templateUrl: './forwarding-history.component.html', styleUrls: ['./forwarding-history.component.scss'], diff --git a/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.ts b/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.ts index 3f8cb980..1aa1185a 100644 --- a/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.ts +++ b/src/app/cln/routing/local-failed-transactions/local-failed-transactions.component.ts @@ -24,6 +24,7 @@ import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-cln-local-failed-history', templateUrl: './local-failed-transactions.component.html', styleUrls: ['./local-failed-transactions.component.scss'], diff --git a/src/app/cln/routing/routing-peers/routing-peers.component.ts b/src/app/cln/routing/routing-peers/routing-peers.component.ts index b57a82fd..2d1b3ca0 100644 --- a/src/app/cln/routing/routing-peers/routing-peers.component.ts +++ b/src/app/cln/routing/routing-peers/routing-peers.component.ts @@ -19,6 +19,7 @@ import { getForwardingHistory } from '../../store/cln.actions'; import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ + standalone: false, selector: 'rtl-cln-routing-peers', templateUrl: './routing-peers.component.html', styleUrls: ['./routing-peers.component.scss'], diff --git a/src/app/cln/routing/routing.component.html b/src/app/cln/routing/routing.component.html index 2c978bbd..540e5b9d 100644 --- a/src/app/cln/routing/routing.component.html +++ b/src/app/cln/routing/routing.component.html @@ -8,7 +8,7 @@
diff --git a/src/app/cln/routing/routing.component.ts b/src/app/cln/routing/routing.component.ts index b20f3a7d..c6a2ec2c 100644 --- a/src/app/cln/routing/routing.component.ts +++ b/src/app/cln/routing/routing.component.ts @@ -5,6 +5,7 @@ import { takeUntil, filter } from 'rxjs/operators'; import { faMapSigns } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-cln-routing', templateUrl: './routing.component.html', styleUrls: ['./routing.component.scss'] diff --git a/src/app/cln/sign-verify-message/sign-verify-message.component.html b/src/app/cln/sign-verify-message/sign-verify-message.component.html index 79281299..d3758ff4 100644 --- a/src/app/cln/sign-verify-message/sign-verify-message.component.html +++ b/src/app/cln/sign-verify-message/sign-verify-message.component.html @@ -6,7 +6,7 @@
diff --git a/src/app/cln/sign-verify-message/sign-verify-message.component.ts b/src/app/cln/sign-verify-message/sign-verify-message.component.ts index 7935a8dc..b6ed59b2 100644 --- a/src/app/cln/sign-verify-message/sign-verify-message.component.ts +++ b/src/app/cln/sign-verify-message/sign-verify-message.component.ts @@ -5,6 +5,7 @@ import { takeUntil, filter } from 'rxjs/operators'; import { faUserCheck } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-cln-sign-verify-message', templateUrl: './sign-verify-message.component.html', styleUrls: ['./sign-verify-message.component.scss'] diff --git a/src/app/cln/sign-verify-message/sign/sign.component.scss b/src/app/cln/sign-verify-message/sign/sign.component.scss index 87005d26..7ea889b3 100644 --- a/src/app/cln/sign-verify-message/sign/sign.component.scss +++ b/src/app/cln/sign-verify-message/sign/sign.component.scss @@ -1,4 +1,4 @@ -@import "../../../shared/theme/styles/constants.scss"; +@use '../../../shared/theme/styles/constants.scss' as *; .signature-box { padding: $gap*2; diff --git a/src/app/cln/sign-verify-message/sign/sign.component.ts b/src/app/cln/sign-verify-message/sign/sign.component.ts index a2d6bc8d..9dc5f120 100644 --- a/src/app/cln/sign-verify-message/sign/sign.component.ts +++ b/src/app/cln/sign-verify-message/sign/sign.component.ts @@ -7,6 +7,7 @@ import { DataService } from '../../../shared/services/data.service'; import { LoggerService } from '../../../shared/services/logger.service'; @Component({ + standalone: false, selector: 'rtl-cln-sign', templateUrl: './sign.component.html', styleUrls: ['./sign.component.scss'] diff --git a/src/app/cln/sign-verify-message/verify/verify.component.ts b/src/app/cln/sign-verify-message/verify/verify.component.ts index a029b026..a4292d83 100644 --- a/src/app/cln/sign-verify-message/verify/verify.component.ts +++ b/src/app/cln/sign-verify-message/verify/verify.component.ts @@ -7,6 +7,7 @@ import { DataService } from '../../../shared/services/data.service'; import { LoggerService } from '../../../shared/services/logger.service'; @Component({ + standalone: false, selector: 'rtl-cln-verify', templateUrl: './verify.component.html', styleUrls: ['./verify.component.scss'] diff --git a/src/app/cln/store/cln.effects.ts b/src/app/cln/store/cln.effects.ts index e7fba95b..312013db 100644 --- a/src/app/cln/store/cln.effects.ts +++ b/src/app/cln/store/cln.effects.ts @@ -14,7 +14,7 @@ import { WebSocketClientService } from '../../shared/services/web-socket.service import { ErrorMessageComponent } from '../../shared/components/data-modal/error-message/error-message.component'; import { CLNInvoiceInformationComponent } from '../transactions/invoices/invoice-information-modal/invoice-information.component'; import { GetInfo, Payment, FeeRates, ListInvoices, Invoice, Peer, OnChain, QueryRoutes, SaveChannel, GetNewAddress, DetachPeer, UpdateChannel, CloseChannel, SendPayment, GetQueryRoutes, ChannelLookup, Channel, OfferInvoice, Offer } from '../../shared/models/clnModels'; -import { API_URL, API_END_POINTS, AlertTypeEnum, APICallStatusEnum, UI_MESSAGES, CLNWSEventTypeEnum, CLNActions, RTLActions, CLNForwardingEventsStatusEnum } from '../../shared/services/consts-enums-functions'; +import { API_URL, API_END_POINTS, SECS_IN_YEAR, AlertTypeEnum, APICallStatusEnum, UI_MESSAGES, CLNWSEventTypeEnum, CLNActions, RTLActions, CLNForwardingEventsStatusEnum } from '../../shared/services/consts-enums-functions'; import { closeAllDialogs, closeSpinner, logout, openAlert, openSnackBar, openSpinner, setApiUrl, setNodeData } from '../../store/rtl.actions'; import { RTLState } from '../../store/rtl.state'; @@ -114,8 +114,8 @@ export class CLNEffects implements OnDestroy { }), catchError((err) => { const code = this.commonService.extractErrorCode(err); - const msg = (code === 'ETIMEDOUT') ? 'Unable to Connect to Core Lightning Server.' : this.commonService.extractErrorMessage(err); - this.router.navigate(['/login'], { state: { logoutReason: JSON.stringify(msg) } }); + const msg = (code === 503) ? 'Unable to Connect to Core Lightning Server.' : this.commonService.extractErrorMessage(err); + this.router.navigate(['/error'], { state: { errorCode: code, errorMessage: msg } }); this.handleErrorWithoutAlert('FetchInfo', UI_MESSAGES.GET_NODE_INFO, 'Fetching Node Info Failed.', { status: code, error: msg }); return of({ type: RTLActions.VOID }); }) @@ -608,12 +608,12 @@ export class CLNEffects implements OnDestroy { ofType(CLNActions.DELETE_EXPIRED_INVOICE_CLN), mergeMap((action: { type: string, payload: number }) => { this.store.dispatch(openSpinner({ payload: UI_MESSAGES.DELETE_INVOICE })); - return this.httpClient.post(this.CHILD_API_URL + API_END_POINTS.INVOICES_API + '/delete', { maxexpiry: action.payload }). + return this.httpClient.post(this.CHILD_API_URL + API_END_POINTS.INVOICES_API + '/delete', { subsystem: 'expiredinvoices', age: SECS_IN_YEAR }). pipe( map((postRes: any) => { this.logger.info(postRes); this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.DELETE_INVOICE })); - this.store.dispatch(openSnackBar({ payload: 'Invoices Deleted Successfully!' })); + this.store.dispatch(openSnackBar({ payload: postRes.status })); return { type: CLNActions.FETCH_INVOICES_CLN }; }), catchError((err: any) => { diff --git a/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.html b/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.html index 43f6f457..8721733c 100644 --- a/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.html +++ b/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.html @@ -4,18 +4,18 @@
Create Invoice
- +
Description - +
Amount - + Sats = @@ -28,17 +28,18 @@ Expiry - + {{selTimeUnit | titlecase}} - + Time Unit + {{timeUnit | titlecase}}
- Private Routing Hints + Private Routing Hints info_outline
@@ -46,8 +47,8 @@ {{invoiceError}}
- - + +
diff --git a/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.ts b/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.ts index 63eda2de..f49f76a8 100644 --- a/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.ts +++ b/src/app/cln/transactions/invoices/create-invoice-modal/create-invoice.component.ts @@ -20,6 +20,7 @@ import { saveNewInvoice } from '../../../store/cln.actions'; import { clnNodeInformation } from '../../../store/cln.selector'; @Component({ + standalone: false, selector: 'rtl-cln-create-invoices', templateUrl: './create-invoice.component.html', styleUrls: ['./create-invoice.component.scss'] diff --git a/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.html b/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.html index 8431e4dc..fda7fd51 100644 --- a/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.html +++ b/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.html @@ -1,6 +1,6 @@
@@ -19,7 +19,7 @@
diff --git a/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.ts b/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.ts index 038c962e..e4a8ad14 100644 --- a/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.ts +++ b/src/app/cln/transactions/invoices/invoice-information-modal/invoice-information.component.ts @@ -17,6 +17,7 @@ import { listInvoices } from '../../../store/cln.selector'; import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-cln-invoice-information', templateUrl: './invoice-information.component.html', styleUrls: ['./invoice-information.component.scss'] diff --git a/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.ts b/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.ts index 05f1d85c..3e9c3ad2 100644 --- a/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.ts +++ b/src/app/cln/transactions/invoices/invoices-table/lightning-invoices-table.component.ts @@ -31,6 +31,7 @@ import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; import { ConvertedCurrency } from '../../../../shared/models/rtlModels'; @Component({ + standalone: false, selector: 'rtl-cln-lightning-invoices-table', templateUrl: './lightning-invoices-table.component.html', styleUrls: ['./lightning-invoices-table.component.scss'], diff --git a/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.ts b/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.ts index b0341ff7..09755621 100644 --- a/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.ts +++ b/src/app/cln/transactions/offers/create-offer-modal/create-offer.component.ts @@ -19,6 +19,7 @@ import { saveNewOffer } from '../../../store/cln.actions'; import { clnNodeInformation } from '../../../store/cln.selector'; @Component({ + standalone: false, selector: 'rtl-cln-create-offer', templateUrl: './create-offer.component.html', styleUrls: ['./create-offer.component.scss'] diff --git a/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.ts b/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.ts index 935e8bfc..6c9247da 100644 --- a/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.ts +++ b/src/app/cln/transactions/offers/offer-bookmarks-table/offer-bookmarks-table.component.ts @@ -26,6 +26,7 @@ import { DatePipe } from '@angular/common'; import { MAT_SELECT_CONFIG } from '@angular/material/select'; @Component({ + standalone: false, selector: 'rtl-cln-offer-bookmarks-table', templateUrl: './offer-bookmarks-table.component.html', styleUrls: ['./offer-bookmarks-table.component.scss'], diff --git a/src/app/cln/transactions/offers/offer-information-modal/offer-information.component.html b/src/app/cln/transactions/offers/offer-information-modal/offer-information.component.html index 1131b27e..a3287290 100644 --- a/src/app/cln/transactions/offers/offer-information-modal/offer-information.component.html +++ b/src/app/cln/transactions/offers/offer-information-modal/offer-information.component.html @@ -1,6 +1,6 @@
@@ -14,7 +14,7 @@
diff --git a/src/app/cln/transactions/offers/offer-information-modal/offer-information.component.ts b/src/app/cln/transactions/offers/offer-information-modal/offer-information.component.ts index 036d5b4c..b8b39998 100644 --- a/src/app/cln/transactions/offers/offer-information-modal/offer-information.component.ts +++ b/src/app/cln/transactions/offers/offer-information-modal/offer-information.component.ts @@ -15,6 +15,7 @@ import { ScreenSizeEnum } from '../../../../shared/services/consts-enums-functio import { Offer, OfferRequest } from '../../../../shared/models/clnModels'; @Component({ + standalone: false, selector: 'rtl-cln-offer-information', templateUrl: './offer-information.component.html', styleUrls: ['./offer-information.component.scss'] diff --git a/src/app/cln/transactions/offers/offers-table/offers-table.component.ts b/src/app/cln/transactions/offers/offers-table/offers-table.component.ts index a1a44d3b..a2392af7 100644 --- a/src/app/cln/transactions/offers/offers-table/offers-table.component.ts +++ b/src/app/cln/transactions/offers/offers-table/offers-table.component.ts @@ -33,6 +33,7 @@ import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; import { MAT_SELECT_CONFIG } from '@angular/material/select'; @Component({ + standalone: false, selector: 'rtl-cln-offers-table', templateUrl: './offers-table.component.html', styleUrls: ['./offers-table.component.scss'], diff --git a/src/app/cln/transactions/payments/lightning-payments.component.scss b/src/app/cln/transactions/payments/lightning-payments.component.scss index 17b3a64a..890b38b2 100644 --- a/src/app/cln/transactions/payments/lightning-payments.component.scss +++ b/src/app/cln/transactions/payments/lightning-payments.component.scss @@ -1,4 +1,4 @@ -@import "../../../shared/theme/styles/constants.scss"; +@use '../../../shared/theme/styles/constants.scss' as *; .mat-column-status, .mat-column-group_status { max-width: 2.2rem; diff --git a/src/app/cln/transactions/payments/lightning-payments.component.ts b/src/app/cln/transactions/payments/lightning-payments.component.ts index da82e2f1..34815053 100644 --- a/src/app/cln/transactions/payments/lightning-payments.component.ts +++ b/src/app/cln/transactions/payments/lightning-payments.component.ts @@ -31,6 +31,7 @@ import { ConvertedCurrency } from '../../../shared/models/rtlModels'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-cln-lightning-payments', templateUrl: './lightning-payments.component.html', styleUrls: ['./lightning-payments.component.scss'], diff --git a/src/app/cln/transactions/send-payment-modal/send-payment.component.html b/src/app/cln/transactions/send-payment-modal/send-payment.component.html index 310ffd3b..5c97941a 100644 --- a/src/app/cln/transactions/send-payment-modal/send-payment.component.html +++ b/src/app/cln/transactions/send-payment-modal/send-payment.component.html @@ -8,9 +8,9 @@ - Invoice - Keysend - Offer + Invoice + Keysend + Offer
diff --git a/src/app/cln/transactions/send-payment-modal/send-payment.component.ts b/src/app/cln/transactions/send-payment-modal/send-payment.component.ts index 61f84ea2..4bd55e77 100644 --- a/src/app/cln/transactions/send-payment-modal/send-payment.component.ts +++ b/src/app/cln/transactions/send-payment-modal/send-payment.component.ts @@ -24,6 +24,7 @@ import { CLNPaymentInformation } from '../../../shared/models/alertData'; import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ + standalone: false, selector: 'rtl-cln-lightning-send-payments', templateUrl: './send-payment.component.html', styleUrls: ['./send-payment.component.scss'] diff --git a/src/app/cln/transactions/transactions.component.html b/src/app/cln/transactions/transactions.component.html index 2e3a4d42..dc08d366 100644 --- a/src/app/cln/transactions/transactions.component.html +++ b/src/app/cln/transactions/transactions.component.html @@ -17,7 +17,7 @@
diff --git a/src/app/cln/transactions/transactions.component.ts b/src/app/cln/transactions/transactions.component.ts index 6c851647..7b9d781c 100644 --- a/src/app/cln/transactions/transactions.component.ts +++ b/src/app/cln/transactions/transactions.component.ts @@ -17,6 +17,7 @@ import { Node } from '../../shared/models/RTLconfig'; import { fetchOffers, fetchOfferBookmarks } from '../store/cln.actions'; @Component({ + standalone: false, selector: 'rtl-cln-transactions', templateUrl: './transactions.component.html', styleUrls: ['./transactions.component.scss'] diff --git a/src/app/eclair/ecl-root.component.ts b/src/app/eclair/ecl-root.component.ts index 42df8017..b5405c49 100644 --- a/src/app/eclair/ecl-root.component.ts +++ b/src/app/eclair/ecl-root.component.ts @@ -3,6 +3,7 @@ import { Event, NavigationCancel, NavigationEnd, NavigationError, NavigationStar import { routeAnimation } from '../shared/animation/route-animation'; @Component({ + standalone: false, selector: 'rtl-ecl-root', templateUrl: './ecl-root.component.html', styleUrls: ['./ecl-root.component.scss'], diff --git a/src/app/eclair/graph/graph.component.html b/src/app/eclair/graph/graph.component.html index 5f44ebc0..3a6a9f4c 100644 --- a/src/app/eclair/graph/graph.component.html +++ b/src/app/eclair/graph/graph.component.html @@ -6,7 +6,7 @@
diff --git a/src/app/eclair/graph/graph.component.ts b/src/app/eclair/graph/graph.component.ts index 18dfaea0..7c96766c 100644 --- a/src/app/eclair/graph/graph.component.ts +++ b/src/app/eclair/graph/graph.component.ts @@ -5,6 +5,7 @@ import { takeUntil, filter } from 'rxjs/operators'; import { faSearch } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-ecl-graph', templateUrl: './graph.component.html', styleUrls: ['./graph.component.scss'] diff --git a/src/app/eclair/graph/lookups/lookups.component.ts b/src/app/eclair/graph/lookups/lookups.component.ts index 1261fec3..02d95f0f 100644 --- a/src/app/eclair/graph/lookups/lookups.component.ts +++ b/src/app/eclair/graph/lookups/lookups.component.ts @@ -15,6 +15,7 @@ import { RTLState } from '../../../store/rtl.state'; import { peerLookup } from '../../store/ecl.actions'; @Component({ + standalone: false, selector: 'rtl-ecl-lookups', templateUrl: './lookups.component.html', styleUrls: ['./lookups.component.scss'] diff --git a/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.ts b/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.ts index 7406267e..e1366603 100644 --- a/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.ts +++ b/src/app/eclair/graph/lookups/node-lookup/node-lookup.component.ts @@ -17,6 +17,7 @@ import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload' import { openAlert } from '../../../../store/rtl.actions'; @Component({ + standalone: false, selector: 'rtl-ecl-node-lookup', templateUrl: './node-lookup.component.html', styleUrls: ['./node-lookup.component.scss'] diff --git a/src/app/eclair/graph/query-routes/query-routes.component.ts b/src/app/eclair/graph/query-routes/query-routes.component.ts index f0ce1465..04819ff4 100644 --- a/src/app/eclair/graph/query-routes/query-routes.component.ts +++ b/src/app/eclair/graph/query-routes/query-routes.component.ts @@ -16,6 +16,7 @@ import { getQueryRoutes } from '../../store/ecl.actions'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-ecl-query-routes', templateUrl: './query-routes.component.html', styleUrls: ['./query-routes.component.scss'] diff --git a/src/app/eclair/home/balances-info/balances-info.component.html b/src/app/eclair/home/balances-info/balances-info.component.html index 13245b68..fdf48c92 100644 --- a/src/app/eclair/home/balances-info/balances-info.component.html +++ b/src/app/eclair/home/balances-info/balances-info.component.html @@ -2,12 +2,12 @@

Lightning

{{balances.lightning | number}} Sats
- +

On-chain

{{balances.onchain | number}} Sats
- +

Total

diff --git a/src/app/eclair/home/balances-info/balances-info.component.ts b/src/app/eclair/home/balances-info/balances-info.component.ts index 075f4066..e6d4f222 100644 --- a/src/app/eclair/home/balances-info/balances-info.component.ts +++ b/src/app/eclair/home/balances-info/balances-info.component.ts @@ -1,6 +1,7 @@ import { Component, Input } from '@angular/core'; @Component({ + standalone: false, selector: 'rtl-ecl-balances-info', templateUrl: './balances-info.component.html', styleUrls: ['./balances-info.component.scss'] diff --git a/src/app/eclair/home/channel-capacity-info/channel-capacity-info.component.html b/src/app/eclair/home/channel-capacity-info/channel-capacity-info.component.html index 79a5091a..cc716103 100644 --- a/src/app/eclair/home/channel-capacity-info/channel-capacity-info.component.html +++ b/src/app/eclair/home/channel-capacity-info/channel-capacity-info.component.html @@ -9,13 +9,13 @@ Remote:{{channelBalances?.remoteBalance || 0 | number:'1.0-0'}} Sats
- +
diff --git a/src/app/eclair/home/channel-capacity-info/channel-capacity-info.component.ts b/src/app/eclair/home/channel-capacity-info/channel-capacity-info.component.ts index 2e2afd04..ee15bc6d 100644 --- a/src/app/eclair/home/channel-capacity-info/channel-capacity-info.component.ts +++ b/src/app/eclair/home/channel-capacity-info/channel-capacity-info.component.ts @@ -5,6 +5,7 @@ import { faBalanceScale, faDumbbell } from '@fortawesome/free-solid-svg-icons'; import { Channel } from '../../../shared/models/eclModels'; @Component({ + standalone: false, selector: 'rtl-ecl-channel-capacity-info', templateUrl: './channel-capacity-info.component.html', styleUrls: ['./channel-capacity-info.component.scss'] diff --git a/src/app/eclair/home/channel-liquidity-info/channel-liquidity-info.component.html b/src/app/eclair/home/channel-liquidity-info/channel-liquidity-info.component.html index fce3353d..bec96389 100644 --- a/src/app/eclair/home/channel-liquidity-info/channel-liquidity-info.component.html +++ b/src/app/eclair/home/channel-liquidity-info/channel-liquidity-info.component.html @@ -8,15 +8,15 @@ diff --git a/src/app/eclair/home/channel-liquidity-info/channel-liquidity-info.component.ts b/src/app/eclair/home/channel-liquidity-info/channel-liquidity-info.component.ts index 18941495..12ae7b1c 100644 --- a/src/app/eclair/home/channel-liquidity-info/channel-liquidity-info.component.ts +++ b/src/app/eclair/home/channel-liquidity-info/channel-liquidity-info.component.ts @@ -6,6 +6,7 @@ import { ScreenSizeEnum } from '../../../shared/services/consts-enums-functions' import { CommonService } from '../../../shared/services/common.service'; @Component({ + standalone: false, selector: 'rtl-ecl-channel-liquidity-info', templateUrl: './channel-liquidity-info.component.html', styleUrls: ['./channel-liquidity-info.component.scss'] diff --git a/src/app/eclair/home/channel-status-info/channel-status-info.component.ts b/src/app/eclair/home/channel-status-info/channel-status-info.component.ts index c359a898..51fd7bcb 100644 --- a/src/app/eclair/home/channel-status-info/channel-status-info.component.ts +++ b/src/app/eclair/home/channel-status-info/channel-status-info.component.ts @@ -2,6 +2,7 @@ import { Component, Input } from '@angular/core'; import { ChannelsStatus } from '../../../shared/models/eclModels'; @Component({ + standalone: false, selector: 'rtl-ecl-channel-status-info', templateUrl: './channel-status-info.component.html', styleUrls: ['./channel-status-info.component.scss'] diff --git a/src/app/eclair/home/fee-info/fee-info.component.ts b/src/app/eclair/home/fee-info/fee-info.component.ts index 862b9df8..fada0770 100644 --- a/src/app/eclair/home/fee-info/fee-info.component.ts +++ b/src/app/eclair/home/fee-info/fee-info.component.ts @@ -2,6 +2,7 @@ import { Component, OnChanges, Input } from '@angular/core'; import { Fees } from '../../../shared/models/eclModels'; @Component({ + standalone: false, selector: 'rtl-ecl-fee-info', templateUrl: './fee-info.component.html', styleUrls: ['./fee-info.component.scss'] diff --git a/src/app/eclair/home/home.component.html b/src/app/eclair/home/home.component.html index 168e9353..747b1f8d 100644 --- a/src/app/eclair/home/home.component.html +++ b/src/app/eclair/home/home.component.html @@ -25,7 +25,7 @@
- - - + + - + - +
diff --git a/src/app/eclair/home/home.component.ts b/src/app/eclair/home/home.component.ts index 4def0b2e..7ba11584 100644 --- a/src/app/eclair/home/home.component.ts +++ b/src/app/eclair/home/home.component.ts @@ -28,6 +28,7 @@ export interface Tile { } @Component({ + standalone: false, selector: 'rtl-ecl-home', templateUrl: './home.component.html', styleUrls: ['./home.component.scss'] diff --git a/src/app/eclair/home/node-info/node-info.component.ts b/src/app/eclair/home/node-info/node-info.component.ts index a92eeb6c..22360189 100644 --- a/src/app/eclair/home/node-info/node-info.component.ts +++ b/src/app/eclair/home/node-info/node-info.component.ts @@ -3,6 +3,7 @@ import { GetInfo } from '../../../shared/models/eclModels'; import { CommonService } from '../../../shared/services/common.service'; @Component({ + standalone: false, selector: 'rtl-ecl-node-info', templateUrl: './node-info.component.html', styleUrls: ['./node-info.component.scss'] diff --git a/src/app/eclair/on-chain/on-chain-receive/on-chain-receive.component.ts b/src/app/eclair/on-chain/on-chain-receive/on-chain-receive.component.ts index e2758a92..e598357b 100644 --- a/src/app/eclair/on-chain/on-chain-receive/on-chain-receive.component.ts +++ b/src/app/eclair/on-chain/on-chain-receive/on-chain-receive.component.ts @@ -10,6 +10,7 @@ import { openAlert } from '../../../store/rtl.actions'; import { getNewAddress } from '../../store/ecl.actions'; @Component({ + standalone: false, selector: 'rtl-ecl-on-chain-receive', templateUrl: './on-chain-receive.component.html', styleUrls: ['./on-chain-receive.component.scss'] diff --git a/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.html b/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.html index d69dcd82..0dbd488e 100644 --- a/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.html +++ b/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.html @@ -4,30 +4,44 @@
Send Payment
- + - + +
+ + +
Fee rates recommended by mempool (sat/vByte):
+ + - High: {{recommendedFee.fastestFee || 'Unknown'}} + - Medium: {{recommendedFee.halfHourFee || 'Unknown'}} + - Low: {{recommendedFee.hourFee || 'Unknown'}} + - Economy: {{recommendedFee.economyFee || 'Unknown'}} + - Minimum: {{recommendedFee.minimumFee || 'Unknown'}} + +
+
Bitcoin Address - + Bitcoin address is required. Amount - + {{selAmountUnit}} {{amountError}} - + Amount Unit + {{amountUnit}}
Target Confirmation Blocks - + Target Confirmation Blocks is required.
@@ -37,8 +51,8 @@ {{sendFundError}}
- - + +
diff --git a/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts b/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts index 3ba5857e..f3b5605c 100644 --- a/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts +++ b/src/app/eclair/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts @@ -5,7 +5,7 @@ import { takeUntil, filter } from 'rxjs/operators'; import { Store } from '@ngrx/store'; import { Actions } from '@ngrx/effects'; import { MatDialogRef } from '@angular/material/dialog'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faExclamationTriangle, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; import { Node } from '../../../shared/models/RTLconfig'; import { GetInfo, OnChainBalance, SendPaymentOnChain } from '../../../shared/models/eclModels'; @@ -17,8 +17,11 @@ import { RTLState } from '../../../store/rtl.state'; import { openSnackBar } from '../../../store/rtl.actions'; import { sendOnchainFunds } from '../../store/ecl.actions'; import { rootSelectedNode } from '../../../store/rtl.selector'; +import { DataService } from '../../../shared/services/data.service'; +import { RecommendedFeeRates } from '../../../shared/models/rtlModels'; @Component({ + standalone: false, selector: 'rtl-ecl-on-chain-send-modal', templateUrl: './on-chain-send-modal.component.html', styleUrls: ['./on-chain-send-modal.component.scss'] @@ -27,6 +30,7 @@ export class ECLOnChainSendModalComponent implements OnInit, OnDestroy { @ViewChild('form', { static: true }) form: any; public faExclamationTriangle = faExclamationTriangle; + public faInfoCircle = faInfoCircle; public selNode: Node | null; public addressTypes = []; public selectedAddress = ADDRESS_TYPES[1]; @@ -41,19 +45,27 @@ export class ECLOnChainSendModalComponent implements OnInit, OnDestroy { public currConvertorRate = {}; public unitConversionValue = 0; public currencyUnitFormats = CURRENCY_UNIT_FORMATS; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; public amountError = 'Amount is Required.'; private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; - constructor(public dialogRef: MatDialogRef, private logger: LoggerService, private store: Store, private commonService: CommonService, private decimalPipe: DecimalPipe, private actions: Actions) { } + constructor(public dialogRef: MatDialogRef, private logger: LoggerService, private dataService: DataService, private store: Store, private commonService: CommonService, private decimalPipe: DecimalPipe, private actions: Actions) { } ngOnInit() { - this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[0])).subscribe((selNode) => { + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[0])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[1])).subscribe((selNode) => { this.fiatConversion = selNode.settings.fiatConversion; this.amountUnits = selNode.settings.currencyUnits; this.logger.info(selNode); }); this.actions.pipe( - takeUntil(this.unSubs[1]), + takeUntil(this.unSubs[2]), filter((action) => action.type === ECLActions.UPDATE_API_CALL_STATUS_ECL || action.type === ECLActions.SEND_ONCHAIN_FUNDS_RES_ECL) ). subscribe((action: any) => { @@ -74,7 +86,7 @@ export class ECLOnChainSendModalComponent implements OnInit, OnDestroy { this.sendFundError = ''; if (this.transaction.amount && this.selAmountUnit !== CurrencyUnitEnum.SATS) { this.commonService.convertCurrency(this.transaction.amount, this.selAmountUnit === this.amountUnits[2] ? CurrencyUnitEnum.OTHER : this.selAmountUnit, CurrencyUnitEnum.SATS, this.amountUnits[2], this.fiatConversion). - pipe(takeUntil(this.unSubs[2])). + pipe(takeUntil(this.unSubs[3])). subscribe({ next: (data) => { this.transaction.amount = parseInt(data[CurrencyUnitEnum.SATS]); @@ -107,7 +119,7 @@ export class ECLOnChainSendModalComponent implements OnInit, OnDestroy { let currSelectedUnit = event.value === this.amountUnits[2] ? CurrencyUnitEnum.OTHER : event.value; if (this.transaction.amount && this.selAmountUnit !== event.value) { this.commonService.convertCurrency(this.transaction.amount, prevSelectedUnit, currSelectedUnit, this.amountUnits[2], this.fiatConversion). - pipe(takeUntil(this.unSubs[3])). + pipe(takeUntil(this.unSubs[4])). subscribe({ next: (data) => { this.selAmountUnit = event.value; diff --git a/src/app/eclair/on-chain/on-chain-send/on-chain-send.component.ts b/src/app/eclair/on-chain/on-chain-send/on-chain-send.component.ts index 5b795f67..d57587b3 100644 --- a/src/app/eclair/on-chain/on-chain-send/on-chain-send.component.ts +++ b/src/app/eclair/on-chain/on-chain-send/on-chain-send.component.ts @@ -10,6 +10,7 @@ import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; @Component({ + standalone: false, selector: 'rtl-ecl-on-chain-send', templateUrl: './on-chain-send.component.html', styleUrls: ['./on-chain-send.component.scss'] diff --git a/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.ts b/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.ts index 6a537483..468b6737 100644 --- a/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.ts +++ b/src/app/eclair/on-chain/on-chain-transaction-history/on-chain-transaction-history.component.ts @@ -24,6 +24,7 @@ import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-ecl-on-chain-transaction-history', templateUrl: './on-chain-transaction-history.component.html', styleUrls: ['./on-chain-transaction-history.component.scss'], diff --git a/src/app/eclair/on-chain/on-chain.component.html b/src/app/eclair/on-chain/on-chain.component.html index 35b6d60d..24b830d0 100644 --- a/src/app/eclair/on-chain/on-chain.component.html +++ b/src/app/eclair/on-chain/on-chain.component.html @@ -17,7 +17,7 @@
diff --git a/src/app/eclair/on-chain/on-chain.component.ts b/src/app/eclair/on-chain/on-chain.component.ts index 24edcefa..911059ba 100644 --- a/src/app/eclair/on-chain/on-chain.component.ts +++ b/src/app/eclair/on-chain/on-chain.component.ts @@ -15,6 +15,7 @@ import { OnChainBalance } from '../../shared/models/eclModels'; import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-ecl-on-chain', templateUrl: './on-chain.component.html', styleUrls: ['./on-chain.component.scss'] diff --git a/src/app/eclair/peers-channels/channels/channel-information-modal/channel-information.component.ts b/src/app/eclair/peers-channels/channels/channel-information-modal/channel-information.component.ts index c6e4da59..bcdd232b 100644 --- a/src/app/eclair/peers-channels/channels/channel-information-modal/channel-information.component.ts +++ b/src/app/eclair/peers-channels/channels/channel-information-modal/channel-information.component.ts @@ -11,6 +11,7 @@ import { Channel } from '../../../../shared/models/eclModels'; import { ScreenSizeEnum } from '../../../../shared/services/consts-enums-functions'; @Component({ + standalone: false, selector: 'rtl-ecl-channel-information', templateUrl: './channel-information.component.html', styleUrls: ['./channel-information.component.scss'] diff --git a/src/app/eclair/peers-channels/channels/channel-rebalance-infographics/channel-rebalance-infographics.component.ts b/src/app/eclair/peers-channels/channels/channel-rebalance-infographics/channel-rebalance-infographics.component.ts index 112011fe..4852ee88 100644 --- a/src/app/eclair/peers-channels/channels/channel-rebalance-infographics/channel-rebalance-infographics.component.ts +++ b/src/app/eclair/peers-channels/channels/channel-rebalance-infographics/channel-rebalance-infographics.component.ts @@ -5,6 +5,7 @@ import { sliderAnimation } from '../../../../shared/animation/slider-animation'; import { CommonService } from '../../../../shared/services/common.service'; @Component({ + standalone: false, selector: 'rtl-ecl-channel-rebalance-infographics', templateUrl: './channel-rebalance-infographics.component.html', styleUrls: ['./channel-rebalance-infographics.component.scss'], diff --git a/src/app/eclair/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts b/src/app/eclair/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts index f32a0b42..f79d591f 100644 --- a/src/app/eclair/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts +++ b/src/app/eclair/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts @@ -18,6 +18,7 @@ import { RTLState } from '../../../../store/rtl.state'; import { fetchChannels } from '../../../store/ecl.actions'; @Component({ + standalone: false, selector: 'rtl-ecl-channel-rebalance', templateUrl: './channel-rebalance.component.html', styleUrls: ['./channel-rebalance.component.scss'], diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.html b/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.html index 94bf5d69..4c302d42 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.html +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.html @@ -76,7 +76,7 @@
{{channel?.balancedness || 0 | number}}
- + diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.ts b/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.ts index d869e354..744bae0a 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.ts +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-inactive-table/channel-inactive-table.component.ts @@ -24,6 +24,7 @@ import { CamelCaseWithSpacesPipe } from '../../../../../shared/pipes/app.pipe'; import { MAT_SELECT_CONFIG } from '@angular/material/select'; @Component({ + standalone: false, selector: 'rtl-ecl-channel-inactive-table', templateUrl: './channel-inactive-table.component.html', styleUrls: ['./channel-inactive-table.component.scss'], diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html b/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html index 43b7e294..259d811b 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html @@ -82,7 +82,7 @@
{{channel?.balancedness || 0 | number}}
- +
diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts b/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts index 4db4bbef..c0be5a4a 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts @@ -26,6 +26,7 @@ import { MAT_SELECT_CONFIG } from '@angular/material/select'; import { ECLChannelRebalanceComponent } from '../../channel-rebalance-modal/channel-rebalance.component'; @Component({ + standalone: false, selector: 'rtl-ecl-channel-open-table', templateUrl: './channel-open-table.component.html', styleUrls: ['./channel-open-table.component.scss'], diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts b/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts index c6322d30..8e7aede2 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts +++ b/src/app/eclair/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts @@ -24,6 +24,7 @@ import { MAT_SELECT_CONFIG } from '@angular/material/select'; @Component({ + standalone: false, selector: 'rtl-ecl-channel-pending-table', templateUrl: './channel-pending-table.component.html', styleUrls: ['./channel-pending-table.component.scss'], diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.html b/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.html index f934f9ef..142c11c3 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.html +++ b/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.html @@ -6,17 +6,17 @@ - Open + Open - Pending + Pending - Inactive + Inactive diff --git a/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.ts b/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.ts index 0f98ff4d..af389f50 100644 --- a/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.ts +++ b/src/app/eclair/peers-channels/channels/channels-tables/channels-tables.component.ts @@ -16,6 +16,7 @@ import { allChannelsInfo, eclNodeInformation, onchainBalance, peers } from '../. import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-ecl-channels-tables', templateUrl: './channels-tables.component.html', styleUrls: ['./channels-tables.component.scss'] diff --git a/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.ts b/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.ts index e8228a9c..8e017358 100644 --- a/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.ts +++ b/src/app/eclair/peers-channels/channels/open-channel-modal/open-channel.component.ts @@ -20,6 +20,7 @@ import { LoggerService } from '../../../../shared/services/logger.service'; import { DataService } from '../../../../shared/services/data.service'; @Component({ + standalone: false, selector: 'rtl-ecl-open-channel', templateUrl: './open-channel.component.html', styleUrls: ['./open-channel.component.scss'] diff --git a/src/app/eclair/peers-channels/connect-peer/connect-peer.component.ts b/src/app/eclair/peers-channels/connect-peer/connect-peer.component.ts index b20bec40..11d11c90 100644 --- a/src/app/eclair/peers-channels/connect-peer/connect-peer.component.ts +++ b/src/app/eclair/peers-channels/connect-peer/connect-peer.component.ts @@ -20,6 +20,7 @@ import { rootSelectedNode } from '../../../store/rtl.selector'; import { Node } from '../../../shared/models/RTLconfig'; @Component({ + standalone: false, selector: 'rtl-ecl-connect-peer', templateUrl: './connect-peer.component.html', styleUrls: ['./connect-peer.component.scss'] diff --git a/src/app/eclair/peers-channels/connections.component.html b/src/app/eclair/peers-channels/connections.component.html index 698e73bf..aa54e7ab 100644 --- a/src/app/eclair/peers-channels/connections.component.html +++ b/src/app/eclair/peers-channels/connections.component.html @@ -19,12 +19,12 @@ - Channels + Channels - Peers + Peers diff --git a/src/app/eclair/peers-channels/connections.component.ts b/src/app/eclair/peers-channels/connections.component.ts index bb54d217..bc6dad30 100644 --- a/src/app/eclair/peers-channels/connections.component.ts +++ b/src/app/eclair/peers-channels/connections.component.ts @@ -11,6 +11,7 @@ import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { Channel, ChannelsStatus, LightningBalance, OnChainBalance, Peer } from '../../shared/models/eclModels'; @Component({ + standalone: false, selector: 'rtl-ecl-connections', templateUrl: './connections.component.html', styleUrls: ['./connections.component.scss'] diff --git a/src/app/eclair/peers-channels/peers/peers.component.ts b/src/app/eclair/peers-channels/peers/peers.component.ts index 225a7dd6..fd3e9eaa 100644 --- a/src/app/eclair/peers-channels/peers/peers.component.ts +++ b/src/app/eclair/peers-channels/peers/peers.component.ts @@ -27,6 +27,7 @@ import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-ecl-peers', templateUrl: './peers.component.html', styleUrls: ['./peers.component.scss'], diff --git a/src/app/eclair/reports/reports.component.html b/src/app/eclair/reports/reports.component.html index 0dfdaf50..82134e27 100644 --- a/src/app/eclair/reports/reports.component.html +++ b/src/app/eclair/reports/reports.component.html @@ -6,7 +6,7 @@ diff --git a/src/app/eclair/reports/reports.component.ts b/src/app/eclair/reports/reports.component.ts index a8494893..6b6c4f7e 100644 --- a/src/app/eclair/reports/reports.component.ts +++ b/src/app/eclair/reports/reports.component.ts @@ -5,6 +5,7 @@ import { takeUntil, filter } from 'rxjs/operators'; import { faChartBar } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-ecl-reports', templateUrl: './reports.component.html', styleUrls: ['./reports.component.scss'] diff --git a/src/app/eclair/reports/routing/routing-report.component.html b/src/app/eclair/reports/routing/routing-report.component.html index 1ba51f0e..46f4f6c9 100644 --- a/src/app/eclair/reports/routing/routing-report.component.html +++ b/src/app/eclair/reports/routing/routing-report.component.html @@ -3,8 +3,8 @@
Report By: - Fees - Events + Fees + Events
@@ -37,7 +37,7 @@
- +
diff --git a/src/app/eclair/reports/routing/routing-report.component.ts b/src/app/eclair/reports/routing/routing-report.component.ts index b2eb0404..45ba5e34 100644 --- a/src/app/eclair/reports/routing/routing-report.component.ts +++ b/src/app/eclair/reports/routing/routing-report.component.ts @@ -14,6 +14,7 @@ import { payments } from '../../store/ecl.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-ecl-routing-report', templateUrl: './routing-report.component.html', styleUrls: ['./routing-report.component.scss'], diff --git a/src/app/eclair/reports/transactions/transactions-report.component.ts b/src/app/eclair/reports/transactions/transactions-report.component.ts index 9d2bc480..a2cccb50 100644 --- a/src/app/eclair/reports/transactions/transactions-report.component.ts +++ b/src/app/eclair/reports/transactions/transactions-report.component.ts @@ -15,6 +15,7 @@ import { LoggerService } from '../../../shared/services/logger.service'; import { PageSettings, TableSetting } from '../../../shared/models/pageSettings'; @Component({ + standalone: false, selector: 'rtl-ecl-transactions-report', templateUrl: './transactions-report.component.html', styleUrls: ['./transactions-report.component.scss'], diff --git a/src/app/eclair/routing/forwarding-history/forwarding-history.component.html b/src/app/eclair/routing/forwarding-history/forwarding-history.component.html index c39f6115..0447b1b5 100644 --- a/src/app/eclair/routing/forwarding-history/forwarding-history.component.html +++ b/src/app/eclair/routing/forwarding-history/forwarding-history.component.html @@ -21,7 +21,7 @@ - + diff --git a/src/app/eclair/routing/forwarding-history/forwarding-history.component.ts b/src/app/eclair/routing/forwarding-history/forwarding-history.component.ts index 1dfe7482..1fc2e462 100644 --- a/src/app/eclair/routing/forwarding-history/forwarding-history.component.ts +++ b/src/app/eclair/routing/forwarding-history/forwarding-history.component.ts @@ -22,6 +22,7 @@ import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-ecl-forwarding-history', templateUrl: './forwarding-history.component.html', styleUrls: ['./forwarding-history.component.scss'], diff --git a/src/app/eclair/routing/routing-peers/routing-peers.component.ts b/src/app/eclair/routing/routing-peers/routing-peers.component.ts index 1060b586..f3a7d31b 100644 --- a/src/app/eclair/routing/routing-peers/routing-peers.component.ts +++ b/src/app/eclair/routing/routing-peers/routing-peers.component.ts @@ -18,6 +18,7 @@ import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/mo import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; @Component({ + standalone: false, selector: 'rtl-ecl-routing-peers', templateUrl: './routing-peers.component.html', styleUrls: ['./routing-peers.component.scss'], diff --git a/src/app/eclair/routing/routing.component.html b/src/app/eclair/routing/routing.component.html index 691a82bf..5576482c 100644 --- a/src/app/eclair/routing/routing.component.html +++ b/src/app/eclair/routing/routing.component.html @@ -8,7 +8,7 @@
diff --git a/src/app/eclair/routing/routing.component.ts b/src/app/eclair/routing/routing.component.ts index e35cad22..79262e3e 100644 --- a/src/app/eclair/routing/routing.component.ts +++ b/src/app/eclair/routing/routing.component.ts @@ -6,6 +6,7 @@ import { faMapSigns } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-ecl-routing', templateUrl: './routing.component.html', styleUrls: ['./routing.component.scss'] diff --git a/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.html b/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.html index 3fbb8556..b1332f0f 100644 --- a/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.html +++ b/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.html @@ -4,19 +4,19 @@
Create Invoice
- +
Description - + Description is required.
Amount - + Sats = @@ -29,11 +29,12 @@ Expiry - + {{selTimeUnit | titlecase}} - + Time Unit + {{timeUnit | titlecase}} @@ -43,8 +44,8 @@ {{invoiceError}}
- - + +
diff --git a/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.ts b/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.ts index 18da1cb5..e50c62a8 100644 --- a/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.ts +++ b/src/app/eclair/transactions/create-invoice-modal/create-invoice.component.ts @@ -20,6 +20,7 @@ import { eclNodeInformation } from '../../store/ecl.selector'; import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ + standalone: false, selector: 'rtl-ecl-create-invoices', templateUrl: './create-invoice.component.html', styleUrls: ['./create-invoice.component.scss'] diff --git a/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.html b/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.html index d2d988d4..410d6582 100644 --- a/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.html +++ b/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.html @@ -1,6 +1,6 @@
@@ -14,7 +14,7 @@
diff --git a/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.ts b/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.ts index 518e25a6..2ab44420 100644 --- a/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.ts +++ b/src/app/eclair/transactions/invoice-information-modal/invoice-information.component.ts @@ -16,6 +16,7 @@ import { eclNodeInformation, invoices } from '../../store/ecl.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-ecl-invoice-information', templateUrl: './invoice-information.component.html', styleUrls: ['./invoice-information.component.scss'] diff --git a/src/app/eclair/transactions/invoices/lightning-invoices.component.ts b/src/app/eclair/transactions/invoices/lightning-invoices.component.ts index dc9f0446..b4078a1a 100644 --- a/src/app/eclair/transactions/invoices/lightning-invoices.component.ts +++ b/src/app/eclair/transactions/invoices/lightning-invoices.component.ts @@ -30,6 +30,7 @@ import { CamelCaseWithSpacesPipe } from '../../../shared/pipes/app.pipe'; import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ + standalone: false, selector: 'rtl-ecl-lightning-invoices', templateUrl: './lightning-invoices.component.html', styleUrls: ['./lightning-invoices.component.scss'], diff --git a/src/app/eclair/transactions/payment-information-modal/payment-information.component.ts b/src/app/eclair/transactions/payment-information-modal/payment-information.component.ts index 7fb0a7fe..56907b03 100644 --- a/src/app/eclair/transactions/payment-information-modal/payment-information.component.ts +++ b/src/app/eclair/transactions/payment-information-modal/payment-information.component.ts @@ -5,6 +5,7 @@ import { PaymentSent } from '../../../shared/models/eclModels'; import { ECLPaymentInformation } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-ecl-payment-information', templateUrl: './payment-information.component.html', styleUrls: ['./payment-information.component.scss'] diff --git a/src/app/eclair/transactions/payments/lightning-payments.component.scss b/src/app/eclair/transactions/payments/lightning-payments.component.scss index 035220c7..063b38b7 100644 --- a/src/app/eclair/transactions/payments/lightning-payments.component.scss +++ b/src/app/eclair/transactions/payments/lightning-payments.component.scss @@ -1,4 +1,4 @@ -@import "../../../shared/theme/styles/constants.scss"; +@use '../../../shared/theme/styles/constants.scss' as *; .mat-column-group_actions { & .part-group-head, .part-group-details { diff --git a/src/app/eclair/transactions/payments/lightning-payments.component.ts b/src/app/eclair/transactions/payments/lightning-payments.component.ts index aa67cf13..897de9ea 100644 --- a/src/app/eclair/transactions/payments/lightning-payments.component.ts +++ b/src/app/eclair/transactions/payments/lightning-payments.component.ts @@ -32,6 +32,7 @@ import { ConvertedCurrency } from '../../../shared/models/rtlModels'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-ecl-lightning-payments', templateUrl: './lightning-payments.component.html', styleUrls: ['./lightning-payments.component.scss'], diff --git a/src/app/eclair/transactions/send-payment-modal/send-payment.component.ts b/src/app/eclair/transactions/send-payment-modal/send-payment.component.ts index 61614b90..c5f8ecce 100644 --- a/src/app/eclair/transactions/send-payment-modal/send-payment.component.ts +++ b/src/app/eclair/transactions/send-payment-modal/send-payment.component.ts @@ -24,6 +24,7 @@ import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ + standalone: false, selector: 'rtl-ecl-lightning-send-payments', templateUrl: './send-payment.component.html', styleUrls: ['./send-payment.component.scss'] diff --git a/src/app/eclair/transactions/transactions.component.html b/src/app/eclair/transactions/transactions.component.html index 09e498d2..b48334b7 100644 --- a/src/app/eclair/transactions/transactions.component.html +++ b/src/app/eclair/transactions/transactions.component.html @@ -17,7 +17,7 @@
diff --git a/src/app/eclair/transactions/transactions.component.ts b/src/app/eclair/transactions/transactions.component.ts index ace7c5e6..4e9468a8 100644 --- a/src/app/eclair/transactions/transactions.component.ts +++ b/src/app/eclair/transactions/transactions.component.ts @@ -15,6 +15,7 @@ import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { Node } from '../../shared/models/RTLconfig'; @Component({ + standalone: false, selector: 'rtl-ecl-transactions', templateUrl: './transactions.component.html', styleUrls: ['./transactions.component.scss'] diff --git a/src/app/lnd/backup/backup.component.html b/src/app/lnd/backup/backup.component.html index 99c71209..3e91b33b 100644 --- a/src/app/lnd/backup/backup.component.html +++ b/src/app/lnd/backup/backup.component.html @@ -6,7 +6,7 @@
diff --git a/src/app/lnd/backup/backup.component.ts b/src/app/lnd/backup/backup.component.ts index 88a0f2b3..ab8a1646 100644 --- a/src/app/lnd/backup/backup.component.ts +++ b/src/app/lnd/backup/backup.component.ts @@ -5,6 +5,7 @@ import { takeUntil, filter } from 'rxjs/operators'; import { faDownload } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-backup', templateUrl: './backup.component.html', styleUrls: ['./backup.component.scss'] diff --git a/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.ts b/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.ts index 1c5a61c0..4e05445d 100644 --- a/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.ts +++ b/src/app/lnd/backup/channel-backup-table/channel-backup-table.component.ts @@ -25,6 +25,7 @@ import { backupChannels, verifyChannel } from '../../store/lnd.actions'; import { channels } from '../../store/lnd.selector'; @Component({ + standalone: false, selector: 'rtl-channel-backup-table', templateUrl: './channel-backup-table.component.html', styleUrls: ['./channel-backup-table.component.scss'], diff --git a/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.ts b/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.ts index 1b82c413..b719eddb 100644 --- a/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.ts +++ b/src/app/lnd/backup/channel-restore-table/channel-restore-table.component.ts @@ -18,6 +18,7 @@ import { rootSelectedNode } from '../../../store/rtl.selector'; import { restoreChannels, restoreChannelsList } from '../../store/lnd.actions'; @Component({ + standalone: false, selector: 'rtl-channel-restore-table', templateUrl: './channel-restore-table.component.html', styleUrls: ['./channel-restore-table.component.scss'], diff --git a/src/app/lnd/graph/graph.component.html b/src/app/lnd/graph/graph.component.html index 5f44ebc0..3a6a9f4c 100644 --- a/src/app/lnd/graph/graph.component.html +++ b/src/app/lnd/graph/graph.component.html @@ -6,7 +6,7 @@
diff --git a/src/app/lnd/graph/graph.component.ts b/src/app/lnd/graph/graph.component.ts index 400f3a88..3543b306 100644 --- a/src/app/lnd/graph/graph.component.ts +++ b/src/app/lnd/graph/graph.component.ts @@ -5,6 +5,7 @@ import { takeUntil, filter } from 'rxjs/operators'; import { faSearch } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-graph', templateUrl: './graph.component.html', styleUrls: ['./graph.component.scss'] diff --git a/src/app/lnd/graph/lookups/channel-lookup/channel-lookup.component.ts b/src/app/lnd/graph/lookups/channel-lookup/channel-lookup.component.ts index a9afa8e5..b080756d 100644 --- a/src/app/lnd/graph/lookups/channel-lookup/channel-lookup.component.ts +++ b/src/app/lnd/graph/lookups/channel-lookup/channel-lookup.component.ts @@ -8,6 +8,7 @@ import { RTLState } from '../../../../store/rtl.state'; import { lndNodeInformation } from '../../../store/lnd.selector'; @Component({ + standalone: false, selector: 'rtl-channel-lookup', templateUrl: './channel-lookup.component.html', styleUrls: ['./channel-lookup.component.scss'] diff --git a/src/app/lnd/graph/lookups/lookups.component.ts b/src/app/lnd/graph/lookups/lookups.component.ts index 23a00376..ca25f0c7 100644 --- a/src/app/lnd/graph/lookups/lookups.component.ts +++ b/src/app/lnd/graph/lookups/lookups.component.ts @@ -13,6 +13,7 @@ import { RTLState } from '../../../store/rtl.state'; import { channelLookup, peerLookup } from '../../store/lnd.actions'; @Component({ + standalone: false, selector: 'rtl-lookups', templateUrl: './lookups.component.html', styleUrls: ['./lookups.component.scss'] diff --git a/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.ts b/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.ts index 07b91445..dd2b2990 100644 --- a/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.ts +++ b/src/app/lnd/graph/lookups/node-lookup/node-lookup.component.ts @@ -14,6 +14,7 @@ import { blockchainBalance, lndNodeInformation } from '../../../store/lnd.select import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-node-lookup', templateUrl: './node-lookup.component.html', styleUrls: ['./node-lookup.component.scss'] diff --git a/src/app/lnd/graph/query-routes/query-routes.component.ts b/src/app/lnd/graph/query-routes/query-routes.component.ts index cb4c1b6d..2f1db415 100644 --- a/src/app/lnd/graph/query-routes/query-routes.component.ts +++ b/src/app/lnd/graph/query-routes/query-routes.component.ts @@ -21,6 +21,7 @@ import { LoggerService } from '../../../shared/services/logger.service'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-query-routes', templateUrl: './query-routes.component.html', styleUrls: ['./query-routes.component.scss'] diff --git a/src/app/lnd/home/balances-info/balances-info.component.html b/src/app/lnd/home/balances-info/balances-info.component.html index cdb08714..9aec381a 100644 --- a/src/app/lnd/home/balances-info/balances-info.component.html +++ b/src/app/lnd/home/balances-info/balances-info.component.html @@ -2,12 +2,12 @@

Lightning

{{balances?.lightning | number}} Sats
- +

On-chain

{{balances?.onchain | number}} Sats
- +

Total

diff --git a/src/app/lnd/home/balances-info/balances-info.component.ts b/src/app/lnd/home/balances-info/balances-info.component.ts index 86928d26..d22b264d 100644 --- a/src/app/lnd/home/balances-info/balances-info.component.ts +++ b/src/app/lnd/home/balances-info/balances-info.component.ts @@ -1,6 +1,7 @@ import { Component, Input } from '@angular/core'; @Component({ + standalone: false, selector: 'rtl-balances-info', templateUrl: './balances-info.component.html', styleUrls: ['./balances-info.component.scss'] diff --git a/src/app/lnd/home/channel-capacity-info/channel-capacity-info.component.html b/src/app/lnd/home/channel-capacity-info/channel-capacity-info.component.html index fbfe747a..8aeae58d 100644 --- a/src/app/lnd/home/channel-capacity-info/channel-capacity-info.component.html +++ b/src/app/lnd/home/channel-capacity-info/channel-capacity-info.component.html @@ -9,14 +9,14 @@ Remote:{{channelBalances?.remoteBalance || 0 | number}} Sats
- +
diff --git a/src/app/lnd/home/channel-capacity-info/channel-capacity-info.component.ts b/src/app/lnd/home/channel-capacity-info/channel-capacity-info.component.ts index 2702835a..c0d2c7e7 100644 --- a/src/app/lnd/home/channel-capacity-info/channel-capacity-info.component.ts +++ b/src/app/lnd/home/channel-capacity-info/channel-capacity-info.component.ts @@ -5,6 +5,7 @@ import { faBalanceScale, faDumbbell } from '@fortawesome/free-solid-svg-icons'; import { Channel } from '../../../shared/models/lndModels'; @Component({ + standalone: false, selector: 'rtl-channel-capacity-info', templateUrl: './channel-capacity-info.component.html', styleUrls: ['./channel-capacity-info.component.scss'] diff --git a/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.html b/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.html index 1c2ea025..124e7a2c 100644 --- a/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.html +++ b/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.html @@ -7,8 +7,8 @@
diff --git a/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.ts b/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.ts index e82c6e62..0b85c3f7 100644 --- a/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.ts +++ b/src/app/lnd/home/channel-liquidity-info/channel-liquidity-info.component.ts @@ -16,6 +16,7 @@ import { rootSelectedNode } from '../../../store/rtl.selector'; import { Node } from '../../../shared/models/RTLconfig'; @Component({ + standalone: false, selector: 'rtl-channel-liquidity-info', templateUrl: './channel-liquidity-info.component.html', styleUrls: ['./channel-liquidity-info.component.scss'] diff --git a/src/app/lnd/home/channel-status-info/channel-status-info.component.ts b/src/app/lnd/home/channel-status-info/channel-status-info.component.ts index a481cbcb..0422f19c 100644 --- a/src/app/lnd/home/channel-status-info/channel-status-info.component.ts +++ b/src/app/lnd/home/channel-status-info/channel-status-info.component.ts @@ -2,6 +2,7 @@ import { Component, Input } from '@angular/core'; import { ChannelsStatus } from '../../../shared/models/lndModels'; @Component({ + standalone: false, selector: 'rtl-channel-status-info', templateUrl: './channel-status-info.component.html', styleUrls: ['./channel-status-info.component.scss'] diff --git a/src/app/lnd/home/fee-info/fee-info.component.ts b/src/app/lnd/home/fee-info/fee-info.component.ts index 72caeacc..5c8ef4bf 100644 --- a/src/app/lnd/home/fee-info/fee-info.component.ts +++ b/src/app/lnd/home/fee-info/fee-info.component.ts @@ -2,6 +2,7 @@ import { Component, OnChanges, Input } from '@angular/core'; import { Fees } from '../../../shared/models/lndModels'; @Component({ + standalone: false, selector: 'rtl-fee-info', templateUrl: './fee-info.component.html', styleUrls: ['./fee-info.component.scss'] diff --git a/src/app/lnd/home/home.component.html b/src/app/lnd/home/home.component.html index 4dd5225a..2588cc42 100644 --- a/src/app/lnd/home/home.component.html +++ b/src/app/lnd/home/home.component.html @@ -23,7 +23,7 @@
- - - + + - - + +
+ - - + +
+ + +
Fee rates recommended by mempool (sat/vByte):
+ + - High: {{recommendedFee.fastestFee || 'Unknown'}} + - Medium: {{recommendedFee.halfHourFee || 'Unknown'}} + - Low: {{recommendedFee.hourFee || 'Unknown'}} + - Economy: {{recommendedFee.economyFee || 'Unknown'}} + - Minimum: {{recommendedFee.minimumFee || 'Unknown'}} + +
+
+ Bitcoin Address - + Bitcoin address is required. Amount - + {{selAmountUnit}} {{amountError}} - + Amount Unit + {{amountUnit}}
- + Transaction Type + {{transType.name}} @@ -34,12 +49,12 @@ Number of Blocks - + Number of blocks is required. Fees (Sats/vByte) - + Fees is required.
@@ -49,8 +64,8 @@ {{sendFundError}}
- - + +
@@ -66,12 +81,12 @@
Password - + Password is required.
- +
@@ -81,11 +96,12 @@
Bitcoin Address - + Bitcoin address is required. - + Transaction Type + {{transType.name}} @@ -93,17 +109,17 @@ Number of Blocks - + Number of blocks is required. Fees (Sats/vByte) - + Fees is required.
- +
@@ -120,14 +136,14 @@ {{sendFundError}}
- +
- +
diff --git a/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts b/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts index 6199bd1a..9474a7ad 100644 --- a/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts +++ b/src/app/lnd/on-chain/on-chain-send-modal/on-chain-send-modal.component.ts @@ -8,7 +8,7 @@ import { Actions } from '@ngrx/effects'; import { MatSnackBar } from '@angular/material/snack-bar'; import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog'; import { MatStepper } from '@angular/material/stepper'; -import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; +import { faExclamationTriangle, faInfoCircle } from '@fortawesome/free-solid-svg-icons'; import { OnChainSendFunds } from '../../../shared/models/alertData'; import { Node, RTLConfiguration } from '../../../shared/models/RTLconfig'; @@ -23,8 +23,11 @@ import { RTLState } from '../../../store/rtl.state'; import { isAuthorized, openSnackBar } from '../../../store/rtl.actions'; import { setChannelTransaction } from '../../store/lnd.actions'; import { rootAppConfig, rootSelectedNode } from '../../../store/rtl.selector'; +import { DataService } from '../../../shared/services/data.service'; +import { RecommendedFeeRates } from '../../../shared/models/rtlModels'; @Component({ + standalone: false, selector: 'rtl-on-chain-send-modal', templateUrl: './on-chain-send-modal.component.html', styleUrls: ['./on-chain-send-modal.component.scss'] @@ -35,6 +38,7 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { @ViewChild('formSweepAll', { static: false }) formSweepAll: any; @ViewChild('stepper', { static: false }) stepper: MatStepper; public faExclamationTriangle = faExclamationTriangle; + public faInfoCircle = faInfoCircle; public sweepAll = false; public selNode: Node | null; public appConfig: RTLConfiguration; @@ -58,6 +62,7 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { public sendFundError = ''; public flgValidated = false; public flgEditable = true; + public recommendedFee: RecommendedFeeRates = { fastestFee: 0, halfHourFee: 0, hourFee: 0 }; public passwordFormLabel = 'Authenticate with your RTL password'; public sendFundFormLabel = 'Sweep funds'; public confirmFormLabel = 'Confirm sweep'; @@ -65,12 +70,13 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { passwordFormGroup: UntypedFormGroup; sendFundFormGroup: UntypedFormGroup; confirmFormGroup: UntypedFormGroup; - private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; + private unSubs: Array> = [new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject(), new Subject()]; constructor( public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: OnChainSendFunds, private logger: LoggerService, + private dataService: DataService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService, @@ -80,6 +86,13 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { private formBuilder: UntypedFormBuilder) { } ngOnInit() { + this.dataService.getRecommendedFeeRates().pipe(takeUntil(this.unSubs[0])).subscribe({ + next: (rfRes: RecommendedFeeRates) => { + this.recommendedFee = rfRes; + }, error: (err) => { + this.logger.error(err); + } + }); this.sweepAll = this.data.sweepAll; this.passwordFormGroup = this.formBuilder.group({ hiddenPassword: ['', [Validators.required]], @@ -92,7 +105,7 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { selTransType: ['1', Validators.required] }); this.confirmFormGroup = this.formBuilder.group({}); - this.sendFundFormGroup.controls.selTransType.valueChanges.pipe(takeUntil(this.unSubs[0])).subscribe((transType) => { + this.sendFundFormGroup.controls.selTransType.valueChanges.pipe(takeUntil(this.unSubs[1])).subscribe((transType) => { if (transType === '1') { this.sendFundFormGroup.controls.transactionBlocks.setValidators([Validators.required]); this.sendFundFormGroup.controls.transactionBlocks.setValue(null); @@ -105,16 +118,16 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { this.sendFundFormGroup.controls.transactionFees.setValue(null); } }); - this.store.select(rootAppConfig).pipe(takeUntil(this.unSubs[1])).subscribe((appConfig) => { + this.store.select(rootAppConfig).pipe(takeUntil(this.unSubs[2])).subscribe((appConfig) => { this.appConfig = appConfig; }); - this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[2])).subscribe((selNode) => { + this.store.select(rootSelectedNode).pipe(takeUntil(this.unSubs[3])).subscribe((selNode) => { this.fiatConversion = selNode.settings.fiatConversion; this.amountUnits = selNode.settings.currencyUnits; this.logger.info(selNode); }); this.actions.pipe( - takeUntil(this.unSubs[3]), + takeUntil(this.unSubs[4]), filter((action) => action.type === LNDActions.UPDATE_API_CALL_STATUS_LND || action.type === LNDActions.SET_CHANNEL_TRANSACTION_RES_LND)). subscribe((action: any) => { if (action.type === LNDActions.SET_CHANNEL_TRANSACTION_RES_LND) { @@ -173,7 +186,7 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { } if (this.transactionAmount && this.selAmountUnit !== CurrencyUnitEnum.SATS) { this.commonService.convertCurrency(this.transactionAmount, this.selAmountUnit === this.amountUnits[2] ? CurrencyUnitEnum.OTHER : this.selAmountUnit, CurrencyUnitEnum.SATS, this.amountUnits[2], this.fiatConversion). - pipe(takeUntil(this.unSubs[4])). + pipe(takeUntil(this.unSubs[5])). subscribe({ next: (data) => { this.selAmountUnit = CurrencyUnitEnum.SATS; @@ -254,7 +267,7 @@ export class OnChainSendModalComponent implements OnInit, OnDestroy { if (this.transactionAmount && this.selAmountUnit !== event.value) { const amount = this.transactionAmount ? this.transactionAmount : 0; this.commonService.convertCurrency(amount, prevSelectedUnit, currSelectedUnit, this.amountUnits[2], this.fiatConversion). - pipe(takeUntil(this.unSubs[5])). + pipe(takeUntil(this.unSubs[6])). subscribe({ next: (data) => { this.selAmountUnit = event.value; diff --git a/src/app/lnd/on-chain/on-chain-send/on-chain-send.component.ts b/src/app/lnd/on-chain/on-chain-send/on-chain-send.component.ts index 439ee065..81a5f911 100644 --- a/src/app/lnd/on-chain/on-chain-send/on-chain-send.component.ts +++ b/src/app/lnd/on-chain/on-chain-send/on-chain-send.component.ts @@ -10,6 +10,7 @@ import { RTLState } from '../../../store/rtl.state'; import { openAlert } from '../../../store/rtl.actions'; @Component({ + standalone: false, selector: 'rtl-on-chain-send', templateUrl: './on-chain-send.component.html', styleUrls: ['./on-chain-send.component.scss'] diff --git a/src/app/lnd/on-chain/on-chain.component.ts b/src/app/lnd/on-chain/on-chain.component.ts index c1c07464..6ff8da21 100644 --- a/src/app/lnd/on-chain/on-chain.component.ts +++ b/src/app/lnd/on-chain/on-chain.component.ts @@ -13,6 +13,7 @@ import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { BlockchainBalance } from '../../shared/models/lndModels'; @Component({ + standalone: false, selector: 'rtl-on-chain', templateUrl: './on-chain.component.html', styleUrls: ['./on-chain.component.scss'] diff --git a/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.ts b/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.ts index 070f00f5..7e3b43bd 100644 --- a/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.ts +++ b/src/app/lnd/on-chain/utxo-tables/on-chain-transaction-history/on-chain-transaction-history.component.ts @@ -23,6 +23,7 @@ import { CamelCaseWithReplacePipe } from '../../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-on-chain-transaction-history', templateUrl: './on-chain-transaction-history.component.html', styleUrls: ['./on-chain-transaction-history.component.scss'], diff --git a/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.html b/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.html index cb648971..695f4f9e 100644 --- a/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.html +++ b/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.html @@ -2,19 +2,19 @@ - UTXOs + UTXOs - Transactions + Transactions - Dust UTXOs + Dust UTXOs diff --git a/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.ts b/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.ts index 574640fb..33685d8d 100644 --- a/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.ts +++ b/src/app/lnd/on-chain/utxo-tables/utxo-tables.component.ts @@ -12,6 +12,7 @@ import { Transaction, UTXO } from '../../../shared/models/lndModels'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-utxo-tables', templateUrl: './utxo-tables.component.html', styleUrls: ['./utxo-tables.component.scss'] diff --git a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html index 6e426681..4a181262 100644 --- a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html +++ b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.html @@ -89,7 +89,7 @@ View Info Label Lease - Bump Fee + Bump Fee
diff --git a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.ts b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.ts index 74c5e3a5..7307f99b 100644 --- a/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.ts +++ b/src/app/lnd/on-chain/utxo-tables/utxos/utxos.component.ts @@ -29,6 +29,7 @@ import { MessageDataField } from '../../../../shared/models/alertData'; import { BumpFeeComponent } from '../../../peers-channels/channels/bump-fee-modal/bump-fee.component'; @Component({ + standalone: false, selector: 'rtl-on-chain-utxos', templateUrl: './utxos.component.html', styleUrls: ['./utxos.component.scss'], diff --git a/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.html b/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.html index 9ce1c6ec..fed60c10 100644 --- a/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.html +++ b/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.html @@ -4,14 +4,14 @@
Bump Fee
- +

{{txid ? 'Bump fee for transaction ID: ' + txid : 'Bump fee: '}} - +

@@ -30,12 +30,13 @@
Index for Change Output - + Index for change output is required. Invalid index value. - + Transaction Type + {{transType.name}} @@ -44,12 +45,12 @@ Number of Blocks + [step]="1" [min]="0" [(ngModel)]="blocks"> Number of blocks is required. Fees (Sats/vByte) - + Fees is required.
@@ -60,8 +61,8 @@
- - + +
diff --git a/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.ts b/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.ts index ae000619..cc980914 100644 --- a/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.ts +++ b/src/app/lnd/peers-channels/channels/bump-fee-modal/bump-fee.component.ts @@ -16,6 +16,7 @@ import { DataService } from '../../../../shared/services/data.service'; import { LoggerService } from '../../../../shared/services/logger.service'; @Component({ + standalone: false, selector: 'rtl-bump-fee', templateUrl: './bump-fee.component.html', styleUrls: ['./bump-fee.component.scss'] diff --git a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.html b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.html index 4808f71f..700c4b5d 100644 --- a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.html +++ b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.html @@ -27,7 +27,7 @@

Channel Point

{{channel.channel_point}} - +
diff --git a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.ts b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.ts index 359bf338..9677afcf 100644 --- a/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.ts +++ b/src/app/lnd/peers-channels/channels/channel-information-modal/channel-information.component.ts @@ -12,6 +12,7 @@ import { Channel } from '../../../../shared/models/lndModels'; import { ScreenSizeEnum } from '../../../../shared/services/consts-enums-functions'; @Component({ + standalone: false, selector: 'rtl-channel-information', templateUrl: './channel-information.component.html', styleUrls: ['./channel-information.component.scss'] @@ -51,6 +52,7 @@ export class ChannelInformationComponent implements OnInit { } onExplorerClicked() { + if (!this.selNode?.settings?.blockExplorerUrl) { return; } window.open(this.selNode.settings.blockExplorerUrl + '/tx/' + this.channel.channel_point, '_blank'); } diff --git a/src/app/lnd/peers-channels/channels/channel-rebalance-infographics/channel-rebalance-infographics.component.ts b/src/app/lnd/peers-channels/channels/channel-rebalance-infographics/channel-rebalance-infographics.component.ts index c057839a..884f93df 100644 --- a/src/app/lnd/peers-channels/channels/channel-rebalance-infographics/channel-rebalance-infographics.component.ts +++ b/src/app/lnd/peers-channels/channels/channel-rebalance-infographics/channel-rebalance-infographics.component.ts @@ -5,6 +5,7 @@ import { sliderAnimation } from '../../../../shared/animation/slider-animation'; import { CommonService } from '../../../../shared/services/common.service'; @Component({ + standalone: false, selector: 'rtl-channel-rebalance-infographics', templateUrl: './channel-rebalance-infographics.component.html', styleUrls: ['./channel-rebalance-infographics.component.scss'], diff --git a/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts b/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts index 0d790326..59c7f7e8 100644 --- a/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts +++ b/src/app/lnd/peers-channels/channels/channel-rebalance-modal/channel-rebalance.component.ts @@ -12,8 +12,8 @@ import { faInfoCircle } from '@fortawesome/free-solid-svg-icons'; import { ChannelRebalanceAlert } from '../../../../shared/models/alertData'; import { LoggerService } from '../../../../shared/services/logger.service'; import { CommonService } from '../../../../shared/services/common.service'; -import { Channel, QueryRoutes, ListInvoices } from '../../../../shared/models/lndModels'; -import { DEFAULT_INVOICE_EXPIRY, FEE_LIMIT_TYPES, LNDActions, PAGE_SIZE, ScreenSizeEnum, UI_MESSAGES } from '../../../../shared/services/consts-enums-functions'; +import { Channel, QueryRoutes, ListInvoices, SendPayment } from '../../../../shared/models/lndModels'; +import { DEFAULT_INVOICE_EXPIRY, FEE_LIMIT_TYPES, LNDActions, PAGE_SIZE, ScreenSizeEnum, UI_MESSAGES, getFeeLimitSat } from '../../../../shared/services/consts-enums-functions'; import { RTLState } from '../../../../store/rtl.state'; import { saveNewInvoice, sendPayment } from '../../../store/lnd.actions'; @@ -22,6 +22,7 @@ import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload' import { opacityAnimation } from '../../../../shared/animation/opacity-animation'; @Component({ + standalone: false, selector: 'rtl-channel-rebalance', templateUrl: './channel-rebalance.component.html', styleUrls: ['./channel-rebalance.component.scss'], @@ -239,13 +240,29 @@ export class ChannelRebalanceComponent implements OnInit, OnDestroy { this.flgInvoiceGenerated = true; this.paymentRequest = payReq; if (this.feeFormGroup.controls.selFeeLimitType.value.id === 'percent' && !(+this.feeFormGroup.controls.feeLimit.value % 1 === 0)) { - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.NO_SPINNER, paymentReq: payReq, outgoingChannel: this.selChannel, - feeLimitType: 'fixed', feeLimit: Math.ceil((+this.feeFormGroup.controls.feeLimit.value * +this.inputFormGroup.controls.rebalanceAmount.value) / 100), - allowSelfPayment: true, lastHopPubkey: this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey, fromDialog: true } })); + const payload: SendPayment = { + uiMessage: UI_MESSAGES.NO_SPINNER, + payment_request: payReq, + amp: false, + outgoing_chan_ids: this.selChannel?.chan_id ? [this.selChannel?.chan_id] : undefined, + fee_limit_sat: Math.ceil(getFeeLimitSat('fixed', this.feeFormGroup.controls.feeLimit.value, (this.inputFormGroup.controls.rebalanceAmount.value || 0))), + allow_self_payment: true, + last_hop_pubkey: this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey, + fromDialog: true + }; + this.store.dispatch(sendPayment({ payload })); } else { - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.NO_SPINNER, paymentReq: payReq, outgoingChannel: this.selChannel, - feeLimitType: this.feeFormGroup.controls.selFeeLimitType.value.id, feeLimit: this.feeFormGroup.controls.feeLimit.value, allowSelfPayment: true, - lastHopPubkey: this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey, fromDialog: true } })); + const payload: SendPayment = { + uiMessage: UI_MESSAGES.NO_SPINNER, + payment_request: payReq, + amp: false, + outgoing_chan_ids: this.selChannel?.chan_id ? [this.selChannel?.chan_id] : undefined, + fee_limit_sat: getFeeLimitSat(this.feeFormGroup.controls.selFeeLimitType.value.id, this.feeFormGroup.controls.feeLimit.value, (this.inputFormGroup.controls.rebalanceAmount.value || 0)), + allow_self_payment: true, + last_hop_pubkey: this.inputFormGroup.controls.selRebalancePeer.value.remote_pubkey, + fromDialog: true + }; + this.store.dispatch(sendPayment({ payload })); } } diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.scss b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.scss index 748fe83f..cb9eaa90 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.scss +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.scss @@ -1,4 +1,4 @@ -@import "../../../../../shared/theme/styles/constants.scss"; +@use '../../../../../shared/theme/styles/constants.scss' as *; .mat-column-amount { .htlc-row-span:not(:first-of-type) { diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts index 17c1dbf3..b881105c 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-active-htlcs-table/channel-active-htlcs-table.component.ts @@ -22,6 +22,7 @@ import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-channel-active-htlcs-table', templateUrl: './channel-active-htlcs-table.component.html', styleUrls: ['./channel-active-htlcs-table.component.scss'], diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.ts b/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.ts index 90adc7a4..df6d5e84 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.ts +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-closed-table/channel-closed-table.component.ts @@ -22,6 +22,7 @@ import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-channel-closed-table', templateUrl: './channel-closed-table.component.html', styleUrls: ['./channel-closed-table.component.scss'], diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html b/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html index e7a0b282..8bf67408 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.html @@ -133,7 +133,7 @@
{{channel.balancedness || 0 | number}}
- + diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts b/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts index 30803b22..92e7e5dc 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-open-table/channel-open-table.component.ts @@ -33,6 +33,7 @@ import { CamelCaseWithReplacePipe } from '../../../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-channel-open-table', templateUrl: './channel-open-table.component.html', styleUrls: ['./channel-open-table.component.scss'], diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts index 339b4a44..435ea5f7 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts +++ b/src/app/lnd/peers-channels/channels/channels-tables/channel-pending-table/channel-pending-table.component.ts @@ -24,6 +24,7 @@ import { PageSettings, TableSetting } from '../../../../../shared/models/pageSet import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-channel-pending-table', templateUrl: './channel-pending-table.component.html', styleUrls: ['./channel-pending-table.component.scss'], diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channels-tables.component.html b/src/app/lnd/peers-channels/channels/channels-tables/channels-tables.component.html index 4a51b342..e7401552 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channels-tables.component.html +++ b/src/app/lnd/peers-channels/channels/channels-tables/channels-tables.component.html @@ -6,22 +6,22 @@ - Open + Open - Pending + Pending - Closed + Closed - Active HTLCs + Active HTLCs diff --git a/src/app/lnd/peers-channels/channels/channels-tables/channels-tables.component.ts b/src/app/lnd/peers-channels/channels/channels-tables/channels-tables.component.ts index b291cb99..6f63a3cf 100644 --- a/src/app/lnd/peers-channels/channels/channels-tables/channels-tables.component.ts +++ b/src/app/lnd/peers-channels/channels/channels-tables/channels-tables.component.ts @@ -14,6 +14,7 @@ import { blockchainBalance, channels, closedChannels, lndNodeInformation, peers, import { ApiCallStatusPayload } from '../../../../shared/models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-channels-tables', templateUrl: './channels-tables.component.html', styleUrls: ['./channels-tables.component.scss'] diff --git a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.html b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.html index 552010b1..f75154c2 100644 --- a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.html +++ b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.html @@ -4,7 +4,7 @@
{{channelToClose.active ? 'Close Channel' : 'Force Close Channel'}}
- +
@@ -37,7 +37,8 @@
- + Transaction Type + {{transType.name}} @@ -50,22 +51,22 @@ Number of Blocks + [step]="1" [min]="0" [(ngModel)]="blocks"> Number of blocks is required. Fees (Sats/vByte) + type="number" name="ccfees" required [step]="1" [min]="0" [(ngModel)]="fees"> Fees is required.
- - - + + +
diff --git a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.ts b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.ts index 6d480b4b..129a47a6 100644 --- a/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.ts +++ b/src/app/lnd/peers-channels/channels/close-channel-modal/close-channel.component.ts @@ -17,6 +17,7 @@ import { RecommendedFeeRates } from '../../../../shared/models/rtlModels'; import { DataService } from '../../../../shared/services/data.service'; @Component({ + standalone: false, selector: 'rtl-close-channel', templateUrl: './close-channel.component.html', styleUrls: ['./close-channel.component.scss'] @@ -70,7 +71,7 @@ export class CloseChannelComponent implements OnInit, OnDestroy { closeChannelParams.targetConf = this.blocks; } if (this.fees) { - closeChannelParams.satPerByte = this.fees; + closeChannelParams.satPerVByte = this.fees; } this.store.dispatch(closeChannel({ payload: closeChannelParams })); this.dialogRef.close(false); diff --git a/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.html b/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.html index 88f319b8..37605eeb 100644 --- a/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.html +++ b/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.html @@ -4,14 +4,14 @@
{{alertTitle}}
- +
Peer Alias - + {{peer.alias ? peer.alias : peer.pub_key ? peer.pub_key : ''}} @@ -24,14 +24,14 @@
Amount - + (Remaining: {{totalBalance - ((fundingAmount) ? fundingAmount : 0) | number}}) Sats Amount is required. Amount must be less than or equal to {{totalBalance}}.
- Private Channel + Private Channel
@@ -56,7 +56,8 @@
- + Transaction Type + {{transType.name}} @@ -64,7 +65,7 @@ {{selTransType==='0' ? 'Default' : selTransType==='1' ? 'Target Confirmation Blocks' : 'Fee (Sats/vByte)'}} - + Mempool Min: {{recommendedFee.minimumFee}} (Sats/vByte) Target Confirmation Blocks is required. Fee is required. @@ -73,10 +74,10 @@
- Taproot Channel + Taproot Channel
- Spend Unconfirmed Output + Spend Unconfirmed Output
@@ -87,8 +88,8 @@ {{channelConnectionError}}
- - + +
diff --git a/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.ts b/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.ts index ec0c9502..4a109054 100644 --- a/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.ts +++ b/src/app/lnd/peers-channels/channels/open-channel-modal/open-channel.component.ts @@ -21,6 +21,7 @@ import { DataService } from '../../../../shared/services/data.service'; import { LoggerService } from '../../../../shared/services/logger.service'; @Component({ + standalone: false, selector: 'rtl-open-channel', templateUrl: './open-channel.component.html', styleUrls: ['./open-channel.component.scss'] diff --git a/src/app/lnd/peers-channels/connect-peer/connect-peer.component.ts b/src/app/lnd/peers-channels/connect-peer/connect-peer.component.ts index 9e947e63..46e8c779 100644 --- a/src/app/lnd/peers-channels/connect-peer/connect-peer.component.ts +++ b/src/app/lnd/peers-channels/connect-peer/connect-peer.component.ts @@ -25,6 +25,7 @@ import { CommonService } from '../../../shared/services/common.service'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-connect-peer', templateUrl: './connect-peer.component.html', styleUrls: ['./connect-peer.component.scss'] diff --git a/src/app/lnd/peers-channels/connections.component.html b/src/app/lnd/peers-channels/connections.component.html index 698e73bf..aa54e7ab 100644 --- a/src/app/lnd/peers-channels/connections.component.html +++ b/src/app/lnd/peers-channels/connections.component.html @@ -19,12 +19,12 @@ - Channels + Channels - Peers + Peers diff --git a/src/app/lnd/peers-channels/connections.component.ts b/src/app/lnd/peers-channels/connections.component.ts index f33731e5..d56bcc27 100644 --- a/src/app/lnd/peers-channels/connections.component.ts +++ b/src/app/lnd/peers-channels/connections.component.ts @@ -15,6 +15,7 @@ import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { BlockchainBalance, Channel, ChannelsSummary, LightningBalance, Peer } from '../../shared/models/lndModels'; @Component({ + standalone: false, selector: 'rtl-connections', templateUrl: './connections.component.html', styleUrls: ['./connections.component.scss'] diff --git a/src/app/lnd/peers-channels/peers/peers.component.ts b/src/app/lnd/peers-channels/peers/peers.component.ts index 0e0d13e6..9c335996 100644 --- a/src/app/lnd/peers-channels/peers/peers.component.ts +++ b/src/app/lnd/peers-channels/peers/peers.component.ts @@ -26,6 +26,7 @@ import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-peers', templateUrl: './peers.component.html', styleUrls: ['./peers.component.scss'], diff --git a/src/app/lnd/reports/reports.component.html b/src/app/lnd/reports/reports.component.html index 0dfdaf50..82134e27 100644 --- a/src/app/lnd/reports/reports.component.html +++ b/src/app/lnd/reports/reports.component.html @@ -6,7 +6,7 @@ diff --git a/src/app/lnd/reports/reports.component.ts b/src/app/lnd/reports/reports.component.ts index 85c891ed..874a5f39 100644 --- a/src/app/lnd/reports/reports.component.ts +++ b/src/app/lnd/reports/reports.component.ts @@ -5,6 +5,7 @@ import { takeUntil, filter } from 'rxjs/operators'; import { faChartBar } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-reports', templateUrl: './reports.component.html', styleUrls: ['./reports.component.scss'] diff --git a/src/app/lnd/reports/routing/routing-report.component.html b/src/app/lnd/reports/routing/routing-report.component.html index c1776df9..60297c0e 100644 --- a/src/app/lnd/reports/routing/routing-report.component.html +++ b/src/app/lnd/reports/routing/routing-report.component.html @@ -3,8 +3,8 @@
Report By: - Fees - Events + Fees + Events
@@ -41,7 +41,7 @@
- +
diff --git a/src/app/lnd/reports/routing/routing-report.component.ts b/src/app/lnd/reports/routing/routing-report.component.ts index bf42c3c8..c2591ad2 100644 --- a/src/app/lnd/reports/routing/routing-report.component.ts +++ b/src/app/lnd/reports/routing/routing-report.component.ts @@ -14,6 +14,7 @@ import { lndNodeInformation } from '../../store/lnd.selector'; import { LoggerService } from '../../../shared/services/logger.service'; @Component({ + standalone: false, selector: 'rtl-routing-report', templateUrl: './routing-report.component.html', styleUrls: ['./routing-report.component.scss'], diff --git a/src/app/lnd/reports/transactions/transactions-report.component.ts b/src/app/lnd/reports/transactions/transactions-report.component.ts index 86f408c0..b4665720 100644 --- a/src/app/lnd/reports/transactions/transactions-report.component.ts +++ b/src/app/lnd/reports/transactions/transactions-report.component.ts @@ -17,6 +17,7 @@ import { PageSettings, TableSetting } from '../../../shared/models/pageSettings' import { clnPageSettings } from '../../../cln/store/cln.selector'; @Component({ + standalone: false, selector: 'rtl-transactions-report', templateUrl: './transactions-report.component.html', styleUrls: ['./transactions-report.component.scss'], diff --git a/src/app/lnd/routing/forwarding-history/forwarding-history.component.ts b/src/app/lnd/routing/forwarding-history/forwarding-history.component.ts index ba6651f1..e6c68c4d 100644 --- a/src/app/lnd/routing/forwarding-history/forwarding-history.component.ts +++ b/src/app/lnd/routing/forwarding-history/forwarding-history.component.ts @@ -22,6 +22,7 @@ import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-forwarding-history', templateUrl: './forwarding-history.component.html', styleUrls: ['./forwarding-history.component.scss'], diff --git a/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.ts b/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.ts index dbb94284..9d6413cd 100644 --- a/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.ts +++ b/src/app/lnd/routing/non-routing-peers/non-routing-peers.component.ts @@ -19,6 +19,7 @@ import { ColumnDefinition, PageSettings, TableSetting } from '../../../shared/mo import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; @Component({ + standalone: false, selector: 'rtl-non-routing-peers', templateUrl: './non-routing-peers.component.html', styleUrls: ['./non-routing-peers.component.scss'], diff --git a/src/app/lnd/routing/routing-peers/routing-peers.component.ts b/src/app/lnd/routing/routing-peers/routing-peers.component.ts index 2598b4db..d0147917 100644 --- a/src/app/lnd/routing/routing-peers/routing-peers.component.ts +++ b/src/app/lnd/routing/routing-peers/routing-peers.component.ts @@ -19,6 +19,7 @@ import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-routing-peers', templateUrl: './routing-peers.component.html', styleUrls: ['./routing-peers.component.scss'], diff --git a/src/app/lnd/routing/routing.component.html b/src/app/lnd/routing/routing.component.html index 69a630c3..e053367b 100644 --- a/src/app/lnd/routing/routing.component.html +++ b/src/app/lnd/routing/routing.component.html @@ -32,7 +32,7 @@
diff --git a/src/app/lnd/routing/routing.component.ts b/src/app/lnd/routing/routing.component.ts index 7798b77a..954f8877 100644 --- a/src/app/lnd/routing/routing.component.ts +++ b/src/app/lnd/routing/routing.component.ts @@ -10,6 +10,7 @@ import { getForwardingHistory, setForwardingHistory } from '../store/lnd.actions import { LoggerService } from '../../shared/services/logger.service'; @Component({ + standalone: false, selector: 'rtl-routing', templateUrl: './routing.component.html', styleUrls: ['./routing.component.scss'] diff --git a/src/app/lnd/sign-verify-message/sign-verify-message.component.html b/src/app/lnd/sign-verify-message/sign-verify-message.component.html index 5c37a8cf..948e1576 100644 --- a/src/app/lnd/sign-verify-message/sign-verify-message.component.html +++ b/src/app/lnd/sign-verify-message/sign-verify-message.component.html @@ -6,7 +6,7 @@
diff --git a/src/app/lnd/sign-verify-message/sign-verify-message.component.ts b/src/app/lnd/sign-verify-message/sign-verify-message.component.ts index bd0196e8..4dec5c0c 100644 --- a/src/app/lnd/sign-verify-message/sign-verify-message.component.ts +++ b/src/app/lnd/sign-verify-message/sign-verify-message.component.ts @@ -5,6 +5,7 @@ import { takeUntil, filter } from 'rxjs/operators'; import { faUserCheck } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-sign-verify-message', templateUrl: './sign-verify-message.component.html', styleUrls: ['./sign-verify-message.component.scss'] diff --git a/src/app/lnd/sign-verify-message/sign/sign.component.scss b/src/app/lnd/sign-verify-message/sign/sign.component.scss index b04464ab..46436948 100644 --- a/src/app/lnd/sign-verify-message/sign/sign.component.scss +++ b/src/app/lnd/sign-verify-message/sign/sign.component.scss @@ -1,4 +1,4 @@ -@import "../../../shared/theme/styles/constants.scss"; +@use '../../../shared/theme/styles/constants.scss' as *; .signature-box { padding: $gap*2; diff --git a/src/app/lnd/sign-verify-message/sign/sign.component.ts b/src/app/lnd/sign-verify-message/sign/sign.component.ts index 6273e84f..abe4cf0a 100644 --- a/src/app/lnd/sign-verify-message/sign/sign.component.ts +++ b/src/app/lnd/sign-verify-message/sign/sign.component.ts @@ -7,6 +7,7 @@ import { DataService } from '../../../shared/services/data.service'; import { LoggerService } from '../../../shared/services/logger.service'; @Component({ + standalone: false, selector: 'rtl-sign', templateUrl: './sign.component.html', styleUrls: ['./sign.component.scss'] diff --git a/src/app/lnd/sign-verify-message/verify/verify.component.ts b/src/app/lnd/sign-verify-message/verify/verify.component.ts index 1a0774ba..07f1574a 100644 --- a/src/app/lnd/sign-verify-message/verify/verify.component.ts +++ b/src/app/lnd/sign-verify-message/verify/verify.component.ts @@ -7,6 +7,7 @@ import { DataService } from '../../../shared/services/data.service'; import { LoggerService } from '../../../shared/services/logger.service'; @Component({ + standalone: false, selector: 'rtl-verify', templateUrl: './verify.component.html', styleUrls: ['./verify.component.scss'] diff --git a/src/app/lnd/store/lnd.effects.ts b/src/app/lnd/store/lnd.effects.ts index 2f4c1ef3..af9d99bb 100644 --- a/src/app/lnd/store/lnd.effects.ts +++ b/src/app/lnd/store/lnd.effects.ts @@ -345,8 +345,8 @@ export class LNDEffects implements OnDestroy { if (action.payload.targetConf) { reqUrl = reqUrl + '&target_conf=' + action.payload.targetConf; } - if (action.payload.satPerByte) { - reqUrl = reqUrl + '&sat_per_byte=' + action.payload.satPerByte; + if (action.payload.satPerVByte) { + reqUrl = reqUrl + '&sat_per_vbyte=' + action.payload.satPerVByte; } return this.httpClient.delete(reqUrl).pipe( map((postRes: any) => { @@ -691,31 +691,16 @@ export class LNDEffects implements OnDestroy { mergeMap((action: { type: string, payload: SendPayment }) => { this.store.dispatch(openSpinner({ payload: action.payload.uiMessage })); this.store.dispatch(updateLNDAPICallStatus({ payload: { action: 'SendPayment', status: APICallStatusEnum.INITIATED } })); - const queryHeaders = {}; - queryHeaders['paymentReq'] = action.payload.paymentReq; - if (action.payload.paymentAmount) { - queryHeaders['paymentAmount'] = action.payload.paymentAmount; - } - if (action.payload.outgoingChannel) { - queryHeaders['outgoingChannel'] = action.payload.outgoingChannel.chan_id; - } - if (action.payload.allowSelfPayment) { - queryHeaders['allowSelfPayment'] = action.payload.allowSelfPayment; - } // Channel Rebalancing - if (action.payload.lastHopPubkey) { - queryHeaders['lastHopPubkey'] = action.payload.lastHopPubkey; - } - if (action.payload.feeLimitType && action.payload.feeLimitType !== FEE_LIMIT_TYPES[0].id) { - queryHeaders['feeLimit'] = {}; - queryHeaders['feeLimit'][action.payload.feeLimitType] = action.payload.feeLimit; - } - return this.httpClient.post(this.CHILD_API_URL + API_END_POINTS.CHANNELS_API + '/transactions', queryHeaders).pipe( + const queryParams = JSON.parse(JSON.stringify(action.payload)); + delete queryParams.uiMessage; + delete queryParams.fromDialog; + return this.httpClient.post(this.CHILD_API_URL + API_END_POINTS.PAYMENTS_API + '/send', queryParams).pipe( map((sendRes: any) => { this.logger.info(sendRes); this.store.dispatch(closeSpinner({ payload: action.payload.uiMessage })); this.store.dispatch(updateLNDAPICallStatus({ payload: { action: 'SendPayment', status: APICallStatusEnum.COMPLETED } })); if (sendRes.payment_error) { - if (action.payload.allowSelfPayment) { + if (action.payload.allow_self_payment) { this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: this.invoicesPageSettings?.recordsPerPage, reversed: true } })); return { type: LNDActions.SEND_PAYMENT_STATUS_LND, @@ -734,7 +719,7 @@ export class LNDEffects implements OnDestroy { this.store.dispatch(updateLNDAPICallStatus({ payload: { action: 'SendPayment', status: APICallStatusEnum.COMPLETED } })); this.store.dispatch(fetchChannels()); this.store.dispatch(fetchPayments({ payload: { max_payments: this.paymentsPageSettings?.recordsPerPage, reversed: true } })); - if (action.payload.allowSelfPayment) { + if (action.payload.allow_self_payment) { this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: this.invoicesPageSettings?.recordsPerPage, reversed: true } })); } else { let msg = 'Payment Sent Successfully.'; @@ -751,7 +736,7 @@ export class LNDEffects implements OnDestroy { }), catchError((err: any) => { this.logger.error('Error: ' + JSON.stringify(err)); - if (action.payload.allowSelfPayment) { + if (action.payload.allow_self_payment) { this.handleErrorWithoutAlert('SendPayment', action.payload.uiMessage, 'Send Payment Failed.', err); this.store.dispatch(fetchInvoices({ payload: { num_max_invoices: this.invoicesPageSettings?.recordsPerPage, reversed: true } })); return of({ @@ -889,10 +874,7 @@ export class LNDEffects implements OnDestroy { queryRoutesFetch = createEffect(() => this.actions.pipe( ofType(LNDActions.GET_QUERY_ROUTES_LND), mergeMap((action: { type: string, payload: GetQueryRoutes }) => { - let url = this.CHILD_API_URL + API_END_POINTS.NETWORK_API + '/routes/' + action.payload.destPubkey + '/' + action.payload.amount; - if (action.payload.outgoingChanId) { - url = url + '?outgoing_chan_id=' + action.payload.outgoingChanId; - } + const url = this.CHILD_API_URL + API_END_POINTS.NETWORK_API + '/routes/' + action.payload.destPubkey + '/' + action.payload.amount; return this.httpClient.get(url).pipe( map((qrRes: any) => { this.logger.info(qrRes); diff --git a/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.html b/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.html index 0d160827..91177974 100644 --- a/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.html +++ b/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.html @@ -4,17 +4,17 @@
Create Invoice
- +
Memo - + Amount - + Sats = @@ -27,21 +27,22 @@ Expiry - + {{selTimeUnit | titlecase}} - + Time Unit + {{timeUnit | titlecase}}
- Private Routing Hints + Private Routing Hints info_outline
- AMP Invoice + AMP Invoice info_outline
@@ -50,8 +51,8 @@ {{invoiceError}}
- - + +
diff --git a/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.ts b/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.ts index 3d716e50..17ab83fe 100644 --- a/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.ts +++ b/src/app/lnd/transactions/create-invoice-modal/create-invoice.component.ts @@ -20,6 +20,7 @@ import { lndNodeInformation } from '../../store/lnd.selector'; import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ + standalone: false, selector: 'rtl-create-invoices', templateUrl: './create-invoice.component.html', styleUrls: ['./create-invoice.component.scss'] diff --git a/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.html b/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.html index 19b153ff..4329484e 100644 --- a/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.html +++ b/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.html @@ -1,6 +1,6 @@
@@ -14,7 +14,7 @@
diff --git a/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.ts b/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.ts index e6537292..d4064b88 100644 --- a/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.ts +++ b/src/app/lnd/transactions/invoice-information-modal/invoice-information.component.ts @@ -16,6 +16,7 @@ import { invoices, lndNodeInformation } from '../../store/lnd.selector'; import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-invoice-information', templateUrl: './invoice-information.component.html', styleUrls: ['./invoice-information.component.scss'] diff --git a/src/app/lnd/transactions/invoices/lightning-invoices.component.ts b/src/app/lnd/transactions/invoices/lightning-invoices.component.ts index 351c21c1..daebbb07 100644 --- a/src/app/lnd/transactions/invoices/lightning-invoices.component.ts +++ b/src/app/lnd/transactions/invoices/lightning-invoices.component.ts @@ -30,6 +30,7 @@ import { CamelCaseWithReplacePipe } from '../../../shared/pipes/app.pipe'; import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ + standalone: false, selector: 'rtl-lightning-invoices', templateUrl: './lightning-invoices.component.html', styleUrls: ['./lightning-invoices.component.scss'], diff --git a/src/app/lnd/transactions/lookup-transactions/invoice-lookup/invoice-lookup.component.html b/src/app/lnd/transactions/lookup-transactions/invoice-lookup/invoice-lookup.component.html index c03679e3..422f5bce 100644 --- a/src/app/lnd/transactions/lookup-transactions/invoice-lookup/invoice-lookup.component.html +++ b/src/app/lnd/transactions/lookup-transactions/invoice-lookup/invoice-lookup.component.html @@ -1,13 +1,13 @@
diff --git a/src/app/lnd/transactions/lookup-transactions/invoice-lookup/invoice-lookup.component.ts b/src/app/lnd/transactions/lookup-transactions/invoice-lookup/invoice-lookup.component.ts index d66d8bd0..fe48eeeb 100644 --- a/src/app/lnd/transactions/lookup-transactions/invoice-lookup/invoice-lookup.component.ts +++ b/src/app/lnd/transactions/lookup-transactions/invoice-lookup/invoice-lookup.component.ts @@ -5,6 +5,7 @@ import { Invoice } from '../../../../shared/models/lndModels'; import { ScreenSizeEnum } from '../../../../shared/services/consts-enums-functions'; @Component({ + standalone: false, selector: 'rtl-invoice-lookup', templateUrl: './invoice-lookup.component.html', styleUrls: ['./invoice-lookup.component.scss'] diff --git a/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.ts b/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.ts index 5c012e40..4bae04c1 100644 --- a/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.ts +++ b/src/app/lnd/transactions/lookup-transactions/lookup-transactions.component.ts @@ -14,6 +14,7 @@ import { RTLState } from '../../../store/rtl.state'; import { invoiceLookup, paymentLookup } from '../../store/lnd.actions'; @Component({ + standalone: false, selector: 'rtl-lookup-transactions', templateUrl: './lookup-transactions.component.html', styleUrls: ['./lookup-transactions.component.scss'] diff --git a/src/app/lnd/transactions/lookup-transactions/payment-lookup/payment-lookup.component.ts b/src/app/lnd/transactions/lookup-transactions/payment-lookup/payment-lookup.component.ts index 6c5f2876..53539997 100644 --- a/src/app/lnd/transactions/lookup-transactions/payment-lookup/payment-lookup.component.ts +++ b/src/app/lnd/transactions/lookup-transactions/payment-lookup/payment-lookup.component.ts @@ -6,6 +6,7 @@ import { Payment, PayRequest } from '../../../../shared/models/lndModels'; import { DataService } from '../../../../shared/services/data.service'; @Component({ + standalone: false, selector: 'rtl-payment-lookup', templateUrl: './payment-lookup.component.html', styleUrls: ['./payment-lookup.component.scss'] diff --git a/src/app/lnd/transactions/payments/lightning-payments.component.scss b/src/app/lnd/transactions/payments/lightning-payments.component.scss index daf2e756..a9759384 100644 --- a/src/app/lnd/transactions/payments/lightning-payments.component.scss +++ b/src/app/lnd/transactions/payments/lightning-payments.component.scss @@ -1,4 +1,4 @@ -@import "../../../shared/theme/styles/constants.scss"; +@use '../../../shared/theme/styles/constants.scss' as *; .mat-column-status, .mat-column-group_status { max-width: 2.2rem; diff --git a/src/app/lnd/transactions/payments/lightning-payments.component.ts b/src/app/lnd/transactions/payments/lightning-payments.component.ts index 6e9cf859..fc3be851 100644 --- a/src/app/lnd/transactions/payments/lightning-payments.component.ts +++ b/src/app/lnd/transactions/payments/lightning-payments.component.ts @@ -31,6 +31,7 @@ import { ConvertedCurrency } from '../../../shared/models/rtlModels'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-lightning-payments', templateUrl: './lightning-payments.component.html', styleUrls: ['./lightning-payments.component.scss'], @@ -195,7 +196,7 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest subscribe((confirmRes) => { if (confirmRes) { this.paymentDecoded.num_satoshis = confirmRes[0].inputValue; - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, paymentReq: this.paymentRequest, paymentAmount: confirmRes[0].inputValue, fromDialog: false } })); + this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, payment_request: this.paymentRequest, amp: false, amt: confirmRes[0].inputValue, fromDialog: false } })); this.resetData(); } }); @@ -224,7 +225,7 @@ export class LightningPaymentsComponent implements OnInit, AfterViewInit, OnDest pipe(take(1)). subscribe((confirmRes) => { if (confirmRes) { - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, paymentReq: this.paymentRequest, fromDialog: false } })); + this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, payment_request: this.paymentRequest, amp: false, fromDialog: false } })); this.resetData(); } }); diff --git a/src/app/lnd/transactions/send-payment-modal/send-payment.component.html b/src/app/lnd/transactions/send-payment-modal/send-payment.component.html index d9b1975e..b317e6b1 100644 --- a/src/app/lnd/transactions/send-payment-modal/send-payment.component.html +++ b/src/app/lnd/transactions/send-payment-modal/send-payment.component.html @@ -4,7 +4,7 @@
Send Payment
- +
@@ -56,6 +56,7 @@ Channel not found in the list. + AMP Payment
@@ -63,8 +64,8 @@ {{paymentError}}
- - + +
diff --git a/src/app/lnd/transactions/send-payment-modal/send-payment.component.spec.ts b/src/app/lnd/transactions/send-payment-modal/send-payment.component.spec.ts index 828e2a69..e30c9977 100644 --- a/src/app/lnd/transactions/send-payment-modal/send-payment.component.spec.ts +++ b/src/app/lnd/transactions/send-payment-modal/send-payment.component.spec.ts @@ -90,8 +90,8 @@ describe('LightningSendPaymentsComponent', () => { const sendButton = fixture.debugElement.nativeElement.querySelector('#sendBtn'); sendButton.click(); const expectedSendPaymentPayload: SendPayment = { - uiMessage: UI_MESSAGES.SEND_PAYMENT, outgoingChannel: null, feeLimitType: 'none', feeLimit: null, fromDialog: true, - paymentReq: 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq' + + uiMessage: UI_MESSAGES.SEND_PAYMENT, outgoing_chan_ids: undefined, fee_limit_sat: 1000000, fromDialog: true, amp: false, + payment_request: 'lntb4u1psvdzaypp555uks3f6774kl3vdy2dfr00j847pyxtrqelsdnczuxnmtqv99srsdpy23jhxarfdenjqmn8wfuzq3txvejkxarnyq' + '6qcqp2sp5xjzu6pz2sf8x4v8nmr58kjdm6k05etjfq9c96mwkhzl0g9j7sjkqrzjq28vwprzypa40c75myejm8s2aenkeykcnd7flvy9plp2yjq56nvrc8ss5c' + 'qqqzgqqqqqqqlgqqqqqqgq9q9qy9qsqpt6u4rwfrck3tmpn54kdxjx3xdch62t5wype2f44mmlar07y749xt9elhfhf6dnlfk2tjwg3qpy8njh6remphfcc0630aq' + '38j0s3hrgpv4eel3' diff --git a/src/app/lnd/transactions/send-payment-modal/send-payment.component.ts b/src/app/lnd/transactions/send-payment-modal/send-payment.component.ts index 27b6c6d1..0c08a77c 100644 --- a/src/app/lnd/transactions/send-payment-modal/send-payment.component.ts +++ b/src/app/lnd/transactions/send-payment-modal/send-payment.component.ts @@ -9,8 +9,8 @@ import { MatDialogRef } from '@angular/material/dialog'; import { faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; import { Node } from '../../../shared/models/RTLconfig'; -import { PayRequest, Channel, ChannelsSummary, LightningBalance } from '../../../shared/models/lndModels'; -import { APICallStatusEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, FEE_LIMIT_TYPES, LNDActions, UI_MESSAGES } from '../../../shared/services/consts-enums-functions'; +import { PayRequest, Channel, ChannelsSummary, LightningBalance, SendPayment } from '../../../shared/models/lndModels'; +import { APICallStatusEnum, CurrencyUnitEnum, CURRENCY_UNIT_FORMATS, FEE_LIMIT_TYPES, LNDActions, UI_MESSAGES, getFeeLimitSat } from '../../../shared/services/consts-enums-functions'; import { CommonService } from '../../../shared/services/common.service'; import { LoggerService } from '../../../shared/services/logger.service'; import { DataService } from '../../../shared/services/data.service'; @@ -23,6 +23,7 @@ import { ApiCallStatusPayload } from '../../../shared/models/apiCallsPayload'; import { ConvertedCurrency } from '../../../shared/models/rtlModels'; @Component({ + standalone: false, selector: 'rtl-lightning-send-payments', templateUrl: './send-payment.component.html', styleUrls: ['./send-payment.component.scss'] @@ -43,6 +44,7 @@ export class LightningSendPaymentsComponent implements OnInit, OnDestroy { public activeChannels: Channel[] = []; public filteredMinAmtActvChannels: Channel[] = []; public selectedChannelCtrl = new UntypedFormControl(); + public isAmp = false; public feeLimit: number | null = null; public selFeeLimitType = FEE_LIMIT_TYPES[0]; public feeLimitTypes = FEE_LIMIT_TYPES; @@ -142,10 +144,27 @@ export class LightningSendPaymentsComponent implements OnInit, OnDestroy { if (!this.paymentDecoded.num_satoshis || this.paymentDecoded.num_satoshis === '' || this.paymentDecoded.num_satoshis === '0') { this.zeroAmtInvoice = true; this.paymentDecoded.num_satoshis = this.paymentAmount?.toString() || ''; - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, paymentReq: this.paymentRequest, paymentAmount: this.paymentAmount || 0, outgoingChannel: this.selectedChannelCtrl.value, feeLimitType: this.selFeeLimitType.id, feeLimit: this.feeLimit, fromDialog: true } })); + const payload: SendPayment = { + uiMessage: UI_MESSAGES.SEND_PAYMENT, + payment_request: this.paymentRequest, + amp: this.isAmp, + amt: this.paymentAmount || 0, + outgoing_chan_ids: this.selectedChannelCtrl.value?.chan_id ? [this.selectedChannelCtrl.value.chan_id] : undefined, + fee_limit_sat: getFeeLimitSat(this.selFeeLimitType.id, this.feeLimit, (this.paymentAmount || 0)), + fromDialog: true + }; + this.store.dispatch(sendPayment({ payload })); } else { this.zeroAmtInvoice = false; - this.store.dispatch(sendPayment({ payload: { uiMessage: UI_MESSAGES.SEND_PAYMENT, paymentReq: this.paymentRequest, outgoingChannel: this.selectedChannelCtrl.value, feeLimitType: this.selFeeLimitType.id, feeLimit: this.feeLimit, fromDialog: true } })); + const payload: SendPayment = { + uiMessage: UI_MESSAGES.SEND_PAYMENT, + payment_request: this.paymentRequest, + amp: this.isAmp, + outgoing_chan_ids: this.selectedChannelCtrl.value?.chan_id ? [this.selectedChannelCtrl.value.chan_id] : undefined, + fee_limit_sat: getFeeLimitSat(this.selFeeLimitType.id, this.feeLimit, (+this.paymentDecoded.num_satoshis || 0)), + fromDialog: true + }; + this.store.dispatch(sendPayment({ payload })); } } @@ -231,6 +250,7 @@ export class LightningSendPaymentsComponent implements OnInit, OnDestroy { resetData() { this.paymentDecoded = {}; this.paymentRequest = ''; + this.isAmp = false; this.selectedChannelCtrl.setValue(null); this.filteredMinAmtActvChannels = this.activeChannels; if (this.filteredMinAmtActvChannels.length && this.filteredMinAmtActvChannels.length > 0) { diff --git a/src/app/lnd/transactions/transactions.component.html b/src/app/lnd/transactions/transactions.component.html index 09e498d2..b48334b7 100644 --- a/src/app/lnd/transactions/transactions.component.html +++ b/src/app/lnd/transactions/transactions.component.html @@ -17,7 +17,7 @@
diff --git a/src/app/lnd/transactions/transactions.component.ts b/src/app/lnd/transactions/transactions.component.ts index 09ef116e..cb6ce07a 100644 --- a/src/app/lnd/transactions/transactions.component.ts +++ b/src/app/lnd/transactions/transactions.component.ts @@ -15,6 +15,7 @@ import { ApiCallStatusPayload } from '../../shared/models/apiCallsPayload'; import { Node } from '../../shared/models/RTLconfig'; @Component({ + standalone: false, selector: 'rtl-transactions', templateUrl: './transactions.component.html', styleUrls: ['./transactions.component.scss'] diff --git a/src/app/lnd/wallet/initialize/initialize.component.html b/src/app/lnd/wallet/initialize/initialize.component.html index b1481964..315f6d53 100644 --- a/src/app/lnd/wallet/initialize/initialize.component.html +++ b/src/app/lnd/wallet/initialize/initialize.component.html @@ -42,7 +42,7 @@
- Existing Cipher + Existing Cipher Comma separated array of 24 words cipher seed @@ -60,7 +60,7 @@
- Existing Passphrase + Existing Passphrase Passphrase diff --git a/src/app/lnd/wallet/initialize/initialize.component.ts b/src/app/lnd/wallet/initialize/initialize.component.ts index c4a913eb..f652d513 100644 --- a/src/app/lnd/wallet/initialize/initialize.component.ts +++ b/src/app/lnd/wallet/initialize/initialize.component.ts @@ -22,6 +22,7 @@ export function cipherSeedLength(control: UntypedFormGroup): ValidationErrors | } @Component({ + standalone: false, selector: 'rtl-initialize-wallet', templateUrl: './initialize.component.html', styleUrls: ['./initialize.component.scss'], diff --git a/src/app/lnd/wallet/unlock/unlock.component.ts b/src/app/lnd/wallet/unlock/unlock.component.ts index e7472983..f13d40ab 100644 --- a/src/app/lnd/wallet/unlock/unlock.component.ts +++ b/src/app/lnd/wallet/unlock/unlock.component.ts @@ -5,6 +5,7 @@ import { RTLState } from '../../../store/rtl.state'; import { unlockWallet } from '../../store/lnd.actions'; @Component({ + standalone: false, selector: 'rtl-unlock-wallet', templateUrl: './unlock.component.html', styleUrls: ['./unlock.component.scss'] diff --git a/src/app/lnd/wallet/wallet.component.ts b/src/app/lnd/wallet/wallet.component.ts index 05e7cf99..ec5f7203 100644 --- a/src/app/lnd/wallet/wallet.component.ts +++ b/src/app/lnd/wallet/wallet.component.ts @@ -3,6 +3,7 @@ import { faWallet } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-wallet', templateUrl: './wallet.component.html', styleUrls: ['./wallet.component.scss'] diff --git a/src/app/shared/components/currency-unit-converter/currency-unit-converter.component.ts b/src/app/shared/components/currency-unit-converter/currency-unit-converter.component.ts index 13a9d6af..3e667bfb 100644 --- a/src/app/shared/components/currency-unit-converter/currency-unit-converter.component.ts +++ b/src/app/shared/components/currency-unit-converter/currency-unit-converter.component.ts @@ -10,6 +10,7 @@ import { RTLState } from '../../../store/rtl.state'; import { rootSelectedNode } from '../../../store/rtl.selector'; @Component({ + standalone: false, selector: 'rtl-currency-unit-converter', templateUrl: './currency-unit-converter.component.html', styleUrls: ['./currency-unit-converter.component.scss'] diff --git a/src/app/shared/components/data-modal/alert-message/alert-message.component.html b/src/app/shared/components/data-modal/alert-message/alert-message.component.html index 022c356b..f4c3661b 100644 --- a/src/app/shared/components/data-modal/alert-message/alert-message.component.html +++ b/src/app/shared/components/data-modal/alert-message/alert-message.component.html @@ -1,8 +1,8 @@
-
+
{{data.alertTitle || alertTypeEnum[data.type]}} @@ -21,8 +21,8 @@
@@ -38,19 +38,21 @@

{{data.titleMessage}}

-
+

{{obj.title}}

- + + + {{(obj.value * 1000) | date:'dd/MMM/y HH:mm'}} {{obj.value | number: obj.digitsInfo ? obj.digitsInfo : '1.0-3'}} @@ -61,7 +63,7 @@ info

- @@ -69,7 +71,7 @@ - +
diff --git a/src/app/shared/components/data-modal/alert-message/alert-message.component.ts b/src/app/shared/components/data-modal/alert-message/alert-message.component.ts index 98e61c82..58f1e4c6 100644 --- a/src/app/shared/components/data-modal/alert-message/alert-message.component.ts +++ b/src/app/shared/components/data-modal/alert-message/alert-message.component.ts @@ -17,6 +17,7 @@ import { AlertData, MessageDataField } from '../../../models/alertData'; import { AlertTypeEnum, DataTypeEnum, ScreenSizeEnum, LoopStateEnum } from '../../../services/consts-enums-functions'; @Component({ + standalone: false, selector: 'rtl-alert-message', templateUrl: './alert-message.component.html', styleUrls: ['./alert-message.component.scss'] diff --git a/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.html b/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.html index 50839f73..2efbb1ae 100644 --- a/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.html +++ b/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.html @@ -20,7 +20,7 @@
-
+

{{obj.title}}

@@ -45,9 +45,9 @@

{{data.titleMessage}}

- + {{getInput.placeholder}} - + {{getInput.placeholder}} is required. {{getInput.hintFunction ? getInput.hintFunction(getInput.inputValue) : getInput.hintText}} diff --git a/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.ts b/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.ts index a6902bbc..611a08b5 100644 --- a/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.ts +++ b/src/app/shared/components/data-modal/confirmation-message/confirmation-message.component.ts @@ -11,6 +11,7 @@ import { RTLState } from '../../../../store/rtl.state'; import { closeConfirmation } from '../../../../store/rtl.actions'; @Component({ + standalone: false, selector: 'rtl-confirmation-message', templateUrl: './confirmation-message.component.html', styleUrls: ['./confirmation-message.component.scss'] diff --git a/src/app/shared/components/data-modal/error-message/error-message.component.ts b/src/app/shared/components/data-modal/error-message/error-message.component.ts index c505b7b2..0806d9f0 100644 --- a/src/app/shared/components/data-modal/error-message/error-message.component.ts +++ b/src/app/shared/components/data-modal/error-message/error-message.component.ts @@ -5,6 +5,7 @@ import { LoggerService } from '../../../services/logger.service'; import { ErrorData } from '../../../models/alertData'; @Component({ + standalone: false, selector: 'rtl-error-message', templateUrl: './error-message.component.html', styleUrls: ['./error-message.component.scss'] diff --git a/src/app/shared/components/data-modal/is-authorized/is-authorized.component.ts b/src/app/shared/components/data-modal/is-authorized/is-authorized.component.ts index 26146e48..3cc06eda 100644 --- a/src/app/shared/components/data-modal/is-authorized/is-authorized.component.ts +++ b/src/app/shared/components/data-modal/is-authorized/is-authorized.component.ts @@ -10,6 +10,7 @@ import { RTLState } from '../../../../store/rtl.state'; import { isAuthorized, closeAlert } from '../../../../store/rtl.actions'; @Component({ + standalone: false, selector: 'rtl-is-authorized', templateUrl: './is-authorized.component.html', styleUrls: ['./is-authorized.component.scss'] diff --git a/src/app/shared/components/data-modal/login-2fa-token/login-2fa-token.component.ts b/src/app/shared/components/data-modal/login-2fa-token/login-2fa-token.component.ts index dd1e9898..06859b3a 100644 --- a/src/app/shared/components/data-modal/login-2fa-token/login-2fa-token.component.ts +++ b/src/app/shared/components/data-modal/login-2fa-token/login-2fa-token.component.ts @@ -6,6 +6,7 @@ import { RTLState } from '../../../../store/rtl.state'; import { closeAlert } from '../../../../store/rtl.actions'; @Component({ + standalone: false, selector: 'rtl-login-token', templateUrl: './login-2fa-token.component.html', styleUrls: ['./login-2fa-token.component.scss'] diff --git a/src/app/shared/components/data-modal/on-chain-generated-address/on-chain-generated-address.component.html b/src/app/shared/components/data-modal/on-chain-generated-address/on-chain-generated-address.component.html index b8473cf4..a382f266 100644 --- a/src/app/shared/components/data-modal/on-chain-generated-address/on-chain-generated-address.component.html +++ b/src/app/shared/components/data-modal/on-chain-generated-address/on-chain-generated-address.component.html @@ -1,6 +1,6 @@
@@ -13,7 +13,7 @@
diff --git a/src/app/shared/components/data-modal/on-chain-generated-address/on-chain-generated-address.component.ts b/src/app/shared/components/data-modal/on-chain-generated-address/on-chain-generated-address.component.ts index ccae103a..b19f2314 100644 --- a/src/app/shared/components/data-modal/on-chain-generated-address/on-chain-generated-address.component.ts +++ b/src/app/shared/components/data-modal/on-chain-generated-address/on-chain-generated-address.component.ts @@ -9,6 +9,7 @@ import { OnChainAddressInformation } from '../../../models/alertData'; import { ScreenSizeEnum } from '../../../services/consts-enums-functions'; @Component({ + standalone: false, selector: 'rtl-on-chain-generated-address', templateUrl: './on-chain-generated-address.component.html', styleUrls: ['./on-chain-generated-address.component.scss'] diff --git a/src/app/shared/components/data-modal/show-pubkey/show-pubkey.component.html b/src/app/shared/components/data-modal/show-pubkey/show-pubkey.component.html index d2700f65..8f4b642b 100644 --- a/src/app/shared/components/data-modal/show-pubkey/show-pubkey.component.html +++ b/src/app/shared/components/data-modal/show-pubkey/show-pubkey.component.html @@ -1,6 +1,6 @@
@@ -8,16 +8,17 @@ {{selInfoType.infoName}}
- +
- + Info Type + {{infoType.infoName}} @@ -32,7 +33,7 @@
- +
diff --git a/src/app/shared/components/data-modal/show-pubkey/show-pubkey.component.ts b/src/app/shared/components/data-modal/show-pubkey/show-pubkey.component.ts index 4a71440a..fd6be5da 100644 --- a/src/app/shared/components/data-modal/show-pubkey/show-pubkey.component.ts +++ b/src/app/shared/components/data-modal/show-pubkey/show-pubkey.component.ts @@ -10,6 +10,7 @@ import { GetInfoRoot } from '../../../models/RTLconfig'; import { ScreenSizeEnum } from '../../../services/consts-enums-functions'; @Component({ + standalone: false, selector: 'rtl-show-pubkey', templateUrl: './show-pubkey.component.html', styleUrls: ['./show-pubkey.component.scss'] diff --git a/src/app/shared/components/data-modal/spinner-dialog/spinner-dialog.component.ts b/src/app/shared/components/data-modal/spinner-dialog/spinner-dialog.component.ts index 563d8aa5..006ac429 100644 --- a/src/app/shared/components/data-modal/spinner-dialog/spinner-dialog.component.ts +++ b/src/app/shared/components/data-modal/spinner-dialog/spinner-dialog.component.ts @@ -2,6 +2,7 @@ import { Component, Inject } from '@angular/core'; import { MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog'; @Component({ + standalone: false, selector: 'rtl-spinner-dialog', templateUrl: './spinner-dialog.component.html', styleUrls: ['./spinner-dialog.component.scss'] diff --git a/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.html b/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.html index 9e809197..3f9aec49 100644 --- a/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.html +++ b/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.html @@ -26,7 +26,7 @@ {{secretFormLabel}}
- +
diff --git a/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.ts b/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.ts index a499c5c9..dc5cde0e 100644 --- a/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.ts +++ b/src/app/shared/components/data-modal/two-factor-auth/two-factor-auth.component.ts @@ -7,7 +7,6 @@ import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog'; import { MatSnackBar } from '@angular/material/snack-bar'; import { MatStepper } from '@angular/material/stepper'; import { faInfoCircle, faCopy, faExclamationTriangle } from '@fortawesome/free-solid-svg-icons'; -import { authenticator } from 'otplib'; import * as sha256 from 'sha256'; import { RTLConfiguration } from '../../../models/RTLconfig'; @@ -15,8 +14,10 @@ import { AuthConfig } from '../../../models/alertData'; import { RTLEffects } from '../../../../store/rtl.effects'; import { RTLState } from '../../../../store/rtl.state'; import { isAuthorized, updateApplicationSettings } from '../../../../store/rtl.actions'; +import { TotpService } from '../../../services/totp.service'; @Component({ + standalone: false, selector: 'rtl-two-factor-auth', templateUrl: './two-factor-auth.component.html', styleUrls: ['./two-factor-auth.component.scss'] @@ -29,6 +30,7 @@ export class TwoFactorAuthComponent implements OnInit, OnDestroy { public faInfoCircle = faInfoCircle; public flgValidated = false; public isTokenValid = true; + private verifyingToken = false; public otpauth = ''; public appConfig: RTLConfiguration | null = null; public flgEditable = true; @@ -50,7 +52,7 @@ export class TwoFactorAuthComponent implements OnInit, OnDestroy { disableFormGroup: UntypedFormGroup = this.formBuilder.group({}); unSubs: Array> = [new Subject(), new Subject()]; - constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: AuthConfig, private store: Store, private formBuilder: UntypedFormBuilder, private rtlEffects: RTLEffects, private snackBar: MatSnackBar) { } + constructor(public dialogRef: MatDialogRef, @Inject(MAT_DIALOG_DATA) public data: AuthConfig, private store: Store, private formBuilder: UntypedFormBuilder, private rtlEffects: RTLEffects, private snackBar: MatSnackBar, private totpService: TotpService) { } ngOnInit() { this.appConfig = this.data.appConfig || null; @@ -61,8 +63,8 @@ export class TwoFactorAuthComponent implements OnInit, OnDestroy { } generateSecret() { - const secret2fa = authenticator.generateSecret(); - this.otpauth = authenticator.keyuri('', 'Ride The Lightning (RTL)', secret2fa); + const secret2fa = this.totpService.generateSecret(); + this.otpauth = this.totpService.keyuri('', 'Ride The Lightning (RTL)', secret2fa); return secret2fa; } @@ -97,18 +99,25 @@ export class TwoFactorAuthComponent implements OnInit, OnDestroy { this.generateSecret(); this.isTokenValid = true; } else { - if (!this.tokenFormGroup.controls.token.value) { + if (!this.tokenFormGroup.controls.token.value || this.verifyingToken) { return true; } - this.isTokenValid = authenticator.check(this.tokenFormGroup.controls.token.value, this.secretFormGroup.controls.secret.value); - if (!this.isTokenValid) { - this.tokenFormGroup.controls.token.setErrors({ notValid: true }); - return true; - } - this.appConfig.enable2FA = true; - this.appConfig.secret2FA = this.secretFormGroup.controls.secret.value; - this.store.dispatch(updateApplicationSettings({ payload: { showSnackBar: false, message: 'Two factor authentication enabled successfully.', config: this.appConfig } })); - this.tokenFormGroup.controls.token.setValue(''); + // check() is async, so guard against a second click dispatching the update twice. + this.verifyingToken = true; + this.totpService.check(this.tokenFormGroup.controls.token.value, this.secretFormGroup.controls.secret.value).then((isTokenValid) => { + this.verifyingToken = false; + this.isTokenValid = isTokenValid; + if (!isTokenValid) { + this.tokenFormGroup.controls.token.setErrors({ notValid: true }); + return; + } + this.appConfig.enable2FA = true; + this.appConfig.secret2FA = this.secretFormGroup.controls.secret.value; + this.store.dispatch(updateApplicationSettings({ payload: { showSnackBar: false, message: 'Two factor authentication enabled successfully.', config: this.appConfig } })); + this.tokenFormGroup.controls.token.setValue(''); + this.flgValidated = true; + }); + return; } this.flgValidated = true; } diff --git a/src/app/shared/components/error/error.component.ts b/src/app/shared/components/error/error.component.ts index 34a9eca1..5782824d 100644 --- a/src/app/shared/components/error/error.component.ts +++ b/src/app/shared/components/error/error.component.ts @@ -6,6 +6,7 @@ import { takeUntil } from 'rxjs/operators'; import { faTimes } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-error', templateUrl: './error.component.html' }) diff --git a/src/app/shared/components/help/help.component.ts b/src/app/shared/components/help/help.component.ts index 9465084b..5b8d746c 100644 --- a/src/app/shared/components/help/help.component.ts +++ b/src/app/shared/components/help/help.component.ts @@ -11,6 +11,7 @@ import { RTLState } from '../../../store/rtl.state'; import { rootSelectedNode } from '../../../store/rtl.selector'; @Component({ + standalone: false, selector: 'rtl-help', templateUrl: './help.component.html', styleUrls: ['./help.component.scss'] diff --git a/src/app/shared/components/horizontal-scroller/horizontal-scroller.component.html b/src/app/shared/components/horizontal-scroller/horizontal-scroller.component.html index a5cc3023..24031dd3 100644 --- a/src/app/shared/components/horizontal-scroller/horizontal-scroller.component.html +++ b/src/app/shared/components/horizontal-scroller/horizontal-scroller.component.html @@ -1,34 +1,39 @@
- - + +
- - + +
- - - {{scrollRange | titlecase}} - - + + Scroll Range + + + {{scrollRange | titlecase}} + + +
- Monthly Date + - Yearly Date + diff --git a/src/app/shared/components/horizontal-scroller/horizontal-scroller.component.ts b/src/app/shared/components/horizontal-scroller/horizontal-scroller.component.ts index b0ff1100..a665b67d 100644 --- a/src/app/shared/components/horizontal-scroller/horizontal-scroller.component.ts +++ b/src/app/shared/components/horizontal-scroller/horizontal-scroller.component.ts @@ -5,6 +5,7 @@ import { SCROLL_RANGES } from '../../services/consts-enums-functions'; import { LoggerService } from '../../services/logger.service'; @Component({ + standalone: false, selector: 'rtl-horizontal-scroller', templateUrl: './horizontal-scroller.component.html', styleUrls: ['./horizontal-scroller.component.scss'], diff --git a/src/app/shared/components/ln-services/boltz/boltz-root.component.ts b/src/app/shared/components/ln-services/boltz/boltz-root.component.ts index c7ca4218..a6e58ea5 100755 --- a/src/app/shared/components/ln-services/boltz/boltz-root.component.ts +++ b/src/app/shared/components/ln-services/boltz/boltz-root.component.ts @@ -13,6 +13,7 @@ import { RTLState } from '../../../../store/rtl.state'; import { openAlert } from '../../../../store/rtl.actions'; @Component({ + standalone: false, selector: 'rtl-boltz-root', templateUrl: './boltz-root.component.html', styleUrls: ['./boltz-root.component.scss'] diff --git a/src/app/shared/components/ln-services/boltz/swap-in-info-graphics/info-graphics.component.ts b/src/app/shared/components/ln-services/boltz/swap-in-info-graphics/info-graphics.component.ts index 7de4e151..744b2806 100755 --- a/src/app/shared/components/ln-services/boltz/swap-in-info-graphics/info-graphics.component.ts +++ b/src/app/shared/components/ln-services/boltz/swap-in-info-graphics/info-graphics.component.ts @@ -5,6 +5,7 @@ import { sliderAnimation } from '../../../../animation/slider-animation'; import { CommonService } from '../../../../services/common.service'; @Component({ + standalone: false, selector: 'rtl-boltz-swapin-info-graphics', templateUrl: './info-graphics.component.html', styleUrls: ['./info-graphics.component.scss'], diff --git a/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.html b/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.html index 934492ba..10f13d8a 100755 --- a/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.html +++ b/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.html @@ -1,8 +1,8 @@
-
{{swapDirectionCaption}}
-
+
{{swapDirectionCaption}}
+
@@ -38,6 +38,16 @@ info_outline
+
+ + Refund Address + + The address where funds will be returned in case of a failed swap + + Refund address is required when not using internal wallet. + + +
diff --git a/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.ts b/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.ts index 3ccf0256..6fbe2e17 100755 --- a/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.ts +++ b/src/app/shared/components/ln-services/boltz/swap-modal/swap-modal.component.ts @@ -16,6 +16,7 @@ import { LoggerService } from '../../../../services/logger.service'; import { CommonService } from '../../../../services/common.service'; @Component({ + standalone: false, selector: 'rtl-boltz-swap-modal', templateUrl: './swap-modal.component.html', styleUrls: ['./swap-modal.component.scss'], @@ -56,7 +57,8 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { this.inputFormGroup = this.formBuilder.group({ amount: [this.serviceInfo.limits?.minimal, [Validators.required, Validators.min(this.serviceInfo.limits?.minimal || 0), Validators.max(this.serviceInfo.limits?.maximal || 0)]], acceptZeroConf: [false], - sendFromInternal: [true] + sendFromInternal: [true], + refundAddress: [{ value: '', disabled: true }] }); this.addressFormGroup = this.formBuilder.group({ addressType: ['local', [Validators.required]], @@ -89,6 +91,25 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { this.addressFormGroup.setErrors({ Invalid: true }); }); } + if (this.direction === SwapTypeEnum.SWAP_IN) { + this.inputFormGroup.controls.sendFromInternal.valueChanges. + pipe(takeUntil(this.unSubs[4])). + subscribe(() => { + this.onSendFromInternalChange(); + }); + } + } + + onSendFromInternalChange() { + if (!this.inputFormGroup.controls.sendFromInternal.value) { + this.inputFormGroup.controls.refundAddress.enable(); + this.inputFormGroup.controls.refundAddress.setValidators([Validators.required]); + this.inputFormGroup.controls.refundAddress.updateValueAndValidity(); + } else { + this.inputFormGroup.controls.refundAddress.disable(); + this.inputFormGroup.controls.refundAddress.clearValidators(); + this.inputFormGroup.controls.refundAddress.updateValueAndValidity(); + } } onAddressTypeChange(event: any) { @@ -115,7 +136,22 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { this.stepper.selected?.stepControl.setErrors(null); this.stepper.next(); if (this.direction === SwapTypeEnum.SWAP_IN) { - this.boltzService.swapIn(this.inputFormGroup.controls.amount.value, this.isSendFromInternalCompatible ? this.inputFormGroup.controls.sendFromInternal.value : null).pipe(takeUntil(this.unSubs[2])). + const refundAddress = this.inputFormGroup.controls.sendFromInternal.value ? + null : this.inputFormGroup.controls.refundAddress.value; + + const sendFromInternal = this.isSendFromInternalCompatible ? this.inputFormGroup.controls.sendFromInternal.value : null; + + if (!sendFromInternal && !refundAddress) { + this.stepper.selected?.stepControl.setErrors({ Invalid: true }); + this.flgEditable = true; + return; + } + + this.boltzService.swapIn( + this.inputFormGroup.controls.amount.value, + sendFromInternal, + refundAddress + ).pipe(takeUntil(this.unSubs[2])). subscribe({ next: (swapStatus: CreateSwapResponse) => { this.swapStatus = swapStatus; @@ -156,7 +192,11 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { case 1: if (this.inputFormGroup.controls.amount.value) { if (this.direction === SwapTypeEnum.SWAP_IN) { - this.inputFormLabel = this.swapDirectionCaption + ' Amount: ' + (this.decimalPipe.transform(this.inputFormGroup.controls.amount.value ? this.inputFormGroup.controls.amount.value : 0)) + ' Sats | Send from Internal Wallet: ' + (this.inputFormGroup.controls.sendFromInternal.value ? 'Yes' : 'No'); + let summary = this.swapDirectionCaption + ' Amount: ' + (this.decimalPipe.transform(this.inputFormGroup.controls.amount.value ? this.inputFormGroup.controls.amount.value : 0)) + ' Sats | Send from Internal Wallet: ' + (this.inputFormGroup.controls.sendFromInternal.value ? 'Yes' : 'No'); + if (!this.inputFormGroup.controls.sendFromInternal.value && this.inputFormGroup.controls.refundAddress.value) { + summary += ' | Refund Address: ' + this.inputFormGroup.controls.refundAddress.value; + } + this.inputFormLabel = summary; } else { this.inputFormLabel = this.swapDirectionCaption + ' Amount: ' + (this.decimalPipe.transform(this.inputFormGroup.controls.amount.value ? this.inputFormGroup.controls.amount.value : 0)) + ' Sats | Zero Conf: ' + (this.inputFormGroup.controls.acceptZeroConf.value ? 'Yes' : 'No'); } @@ -201,7 +241,12 @@ export class SwapModalComponent implements OnInit, AfterViewInit, OnDestroy { onRestart() { this.stepper.reset(); this.flgEditable = true; - this.inputFormGroup.reset({ amount: this.serviceInfo.limits?.minimal, acceptZeroConf: false, sendFromInternal: true }); + this.inputFormGroup.reset({ + amount: this.serviceInfo.limits?.minimal, + acceptZeroConf: false, + sendFromInternal: true, + refundAddress: '' + }); this.statusFormGroup.reset(); this.addressFormGroup.reset({ addressType: 'local', address: '' }); this.addressFormGroup.controls.address.disable(); diff --git a/src/app/shared/components/ln-services/boltz/swap-out-info-graphics/info-graphics.component.ts b/src/app/shared/components/ln-services/boltz/swap-out-info-graphics/info-graphics.component.ts index d8fc90d4..4405f771 100755 --- a/src/app/shared/components/ln-services/boltz/swap-out-info-graphics/info-graphics.component.ts +++ b/src/app/shared/components/ln-services/boltz/swap-out-info-graphics/info-graphics.component.ts @@ -5,6 +5,7 @@ import { sliderAnimation } from '../../../../animation/slider-animation'; import { CommonService } from '../../../../services/common.service'; @Component({ + standalone: false, selector: 'rtl-boltz-swapout-info-graphics', templateUrl: './info-graphics.component.html', styleUrls: ['./info-graphics.component.scss'], diff --git a/src/app/shared/components/ln-services/boltz/swap-service-info/swap-service-info.component.ts b/src/app/shared/components/ln-services/boltz/swap-service-info/swap-service-info.component.ts index 17d0112b..b7ed0b1c 100755 --- a/src/app/shared/components/ln-services/boltz/swap-service-info/swap-service-info.component.ts +++ b/src/app/shared/components/ln-services/boltz/swap-service-info/swap-service-info.component.ts @@ -3,6 +3,7 @@ import { SwapTypeEnum } from '../../../../services/consts-enums-functions'; import { ServiceInfo } from '../../../../models/boltzModels'; @Component({ + standalone: false, selector: 'rtl-boltz-service-info', templateUrl: './swap-service-info.component.html', styleUrls: ['./swap-service-info.component.scss'] diff --git a/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.html b/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.html index 88c3c8f2..a869609b 100755 --- a/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.html +++ b/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.html @@ -32,13 +32,13 @@
diff --git a/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.ts b/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.ts index f4371625..f02596b2 100755 --- a/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.ts +++ b/src/app/shared/components/ln-services/boltz/swap-status/swap-status.component.ts @@ -4,6 +4,7 @@ import { SwapTypeEnum, ScreenSizeEnum } from '../../../../services/consts-enums- import { CommonService } from '../../../../services/common.service'; @Component({ + standalone: false, selector: 'rtl-boltz-swap-status', templateUrl: './swap-status.component.html', styleUrls: ['./swap-status.component.scss'] diff --git a/src/app/shared/components/ln-services/boltz/swaps/swaps.component.ts b/src/app/shared/components/ln-services/boltz/swaps/swaps.component.ts index 87194159..d63e86ec 100755 --- a/src/app/shared/components/ln-services/boltz/swaps/swaps.component.ts +++ b/src/app/shared/components/ln-services/boltz/swaps/swaps.component.ts @@ -23,6 +23,7 @@ import { CamelCaseWithReplacePipe } from '../../../../pipes/app.pipe'; import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-boltz-swaps', templateUrl: './swaps.component.html', styleUrls: ['./swaps.component.scss'], diff --git a/src/app/shared/components/ln-services/ln-services.component.ts b/src/app/shared/components/ln-services/ln-services.component.ts index db364a26..ba1691ec 100755 --- a/src/app/shared/components/ln-services/ln-services.component.ts +++ b/src/app/shared/components/ln-services/ln-services.component.ts @@ -1,6 +1,7 @@ import { Component } from '@angular/core'; @Component({ + standalone: false, selector: 'rtl-ln-services', templateUrl: './ln-services.component.html', styleUrls: ['./ln-services.component.scss'] diff --git a/src/app/shared/components/ln-services/loop/loop-in-info-graphics/info-graphics.component.ts b/src/app/shared/components/ln-services/loop/loop-in-info-graphics/info-graphics.component.ts index abf65dab..4432edf5 100755 --- a/src/app/shared/components/ln-services/loop/loop-in-info-graphics/info-graphics.component.ts +++ b/src/app/shared/components/ln-services/loop/loop-in-info-graphics/info-graphics.component.ts @@ -5,6 +5,7 @@ import { sliderAnimation } from '../../../../animation/slider-animation'; import { CommonService } from '../../../../services/common.service'; @Component({ + standalone: false, selector: 'rtl-loop-in-info-graphics', templateUrl: './info-graphics.component.html', styleUrls: ['./info-graphics.component.scss'], diff --git a/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.html b/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.html index bc9cd4e9..5abb6493 100755 --- a/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.html +++ b/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.html @@ -1,8 +1,8 @@
-
{{channel ? ('Channel ' + loopDirectionCaption) : loopDirectionCaption}}
-
+
{{channel ? ('Channel ' + loopDirectionCaption) : loopDirectionCaption}}
+
@@ -19,11 +19,11 @@ {{inputFormLabel}}
- - + +
- + Amount Range: {{minQuote.amount | number}}-{{maxQuote.amount | number}} @@ -32,7 +32,7 @@ Amount must be greater than or equal to {{minQuote.amount | number}}. Amount must be less than or equal to {{maxQuote.amount | number}}. - + Sweep Confirmation Target Confirmation target is required. diff --git a/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.ts b/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.ts index 39e5082f..510e03f8 100755 --- a/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.ts +++ b/src/app/shared/components/ln-services/loop/loop-modal/loop-modal.component.ts @@ -23,6 +23,7 @@ import { channels } from '../../../../../lnd/store/lnd.selector'; import { ApiCallStatusPayload } from '../../../../models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-loop-modal', templateUrl: './loop-modal.component.html', styleUrls: ['./loop-modal.component.scss'], diff --git a/src/app/shared/components/ln-services/loop/loop-out-info-graphics/info-graphics.component.ts b/src/app/shared/components/ln-services/loop/loop-out-info-graphics/info-graphics.component.ts index ddf04608..986587fa 100755 --- a/src/app/shared/components/ln-services/loop/loop-out-info-graphics/info-graphics.component.ts +++ b/src/app/shared/components/ln-services/loop/loop-out-info-graphics/info-graphics.component.ts @@ -5,6 +5,7 @@ import { sliderAnimation } from '../../../../animation/slider-animation'; import { CommonService } from '../../../../services/common.service'; @Component({ + standalone: false, selector: 'rtl-loop-out-info-graphics', templateUrl: './info-graphics.component.html', styleUrls: ['./info-graphics.component.scss'], diff --git a/src/app/shared/components/ln-services/loop/loop-quote/loop-quote.component.html b/src/app/shared/components/ln-services/loop/loop-quote/loop-quote.component.html index 112a2ae9..5dcee4c5 100755 --- a/src/app/shared/components/ln-services/loop/loop-quote/loop-quote.component.html +++ b/src/app/shared/components/ln-services/loop/loop-quote/loop-quote.component.html @@ -12,14 +12,14 @@
-
+

Swap Fee (Sats) info_outline

{{quote?.swap_fee_sat | number}}
-
+

{{quote?.htlc_sweep_fee_sat ? 'HTLC Sweep Fee (Sats)' : quote?.htlc_publish_fee_sat ? 'HTLC Publish Fee (Sats)' : ''}} info_outline diff --git a/src/app/shared/components/ln-services/loop/loop-quote/loop-quote.component.ts b/src/app/shared/components/ln-services/loop/loop-quote/loop-quote.component.ts index 67c0b926..5ed45d7b 100755 --- a/src/app/shared/components/ln-services/loop/loop-quote/loop-quote.component.ts +++ b/src/app/shared/components/ln-services/loop/loop-quote/loop-quote.component.ts @@ -2,6 +2,7 @@ import { Component, OnInit, Input } from '@angular/core'; import { LoopQuote } from '../../../../models/loopModels'; @Component({ + standalone: false, selector: 'rtl-loop-quote', templateUrl: './loop-quote.component.html', styleUrls: ['./loop-quote.component.scss'] diff --git a/src/app/shared/components/ln-services/loop/loop-status/loop-status.component.ts b/src/app/shared/components/ln-services/loop/loop-status/loop-status.component.ts index 3d3d8de9..34bcb629 100755 --- a/src/app/shared/components/ln-services/loop/loop-status/loop-status.component.ts +++ b/src/app/shared/components/ln-services/loop/loop-status/loop-status.component.ts @@ -2,6 +2,7 @@ import { Component, Input } from '@angular/core'; import { LoopStatus } from '../../../../models/loopModels'; @Component({ + standalone: false, selector: 'rtl-loop-status', templateUrl: './loop-status.component.html', styleUrls: ['./loop-status.component.scss'] diff --git a/src/app/shared/components/ln-services/loop/loop.component.ts b/src/app/shared/components/ln-services/loop/loop.component.ts index 31c791eb..a0324b92 100755 --- a/src/app/shared/components/ln-services/loop/loop.component.ts +++ b/src/app/shared/components/ln-services/loop/loop.component.ts @@ -14,6 +14,7 @@ import { RTLState } from '../../../../store/rtl.state'; import { openAlert, closeSpinner, openSpinner } from '../../../../store/rtl.actions'; @Component({ + standalone: false, selector: 'rtl-loop', templateUrl: './loop.component.html', styleUrls: ['./loop.component.scss'] diff --git a/src/app/shared/components/ln-services/loop/swaps/swaps.component.ts b/src/app/shared/components/ln-services/loop/swaps/swaps.component.ts index 0e29e1fd..a8eae1d4 100755 --- a/src/app/shared/components/ln-services/loop/swaps/swaps.component.ts +++ b/src/app/shared/components/ln-services/loop/swaps/swaps.component.ts @@ -24,6 +24,7 @@ import { CamelCaseWithReplacePipe } from '../../../../pipes/app.pipe'; import { MessageDataField } from '../../../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-swaps', templateUrl: './swaps.component.html', styleUrls: ['./swaps.component.scss'], diff --git a/src/app/shared/components/login/login.component.scss b/src/app/shared/components/login/login.component.scss index 0ad06b97..b8f588ea 100644 --- a/src/app/shared/components/login/login.component.scss +++ b/src/app/shared/components/login/login.component.scss @@ -1,4 +1,4 @@ -@import "../../theme/styles/mixins.scss"; +@use '../../theme/styles/mixins.scss' as *; .login-container { height: 60vh; diff --git a/src/app/shared/components/login/login.component.ts b/src/app/shared/components/login/login.component.ts index 83483729..fc5b11cd 100644 --- a/src/app/shared/components/login/login.component.ts +++ b/src/app/shared/components/login/login.component.ts @@ -11,6 +11,7 @@ import { RTLConfiguration } from '../../models/RTLconfig'; import { APICallStatusEnum, PASSWORD_BLACKLIST, RTLActions, ScreenSizeEnum } from '../../services/consts-enums-functions'; import { CommonService } from '../../services/common.service'; import { LoggerService } from '../../services/logger.service'; +import { SessionService } from '../../services/session.service'; import { RTLEffects } from '../../../store/rtl.effects'; import { RTLState } from '../../../store/rtl.state'; @@ -18,6 +19,7 @@ import { login, openAlert } from '../../../store/rtl.actions'; import { rootAppConfig, authorizedStatus, loginStatus } from '../../../store/rtl.selector'; @Component({ + standalone: false, selector: 'rtl-login', templateUrl: './login.component.html', styleUrls: ['./login.component.scss'] @@ -38,7 +40,7 @@ export class LoginComponent implements OnInit, OnDestroy { public apiCallStatusEnum = APICallStatusEnum; private unSubs: Array> = [new Subject(), new Subject(), new Subject()]; - constructor(private actions: Actions, private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService) { } + constructor(private actions: Actions, private logger: LoggerService, private store: Store, private rtlEffects: RTLEffects, private commonService: CommonService, private sessionService: SessionService) { } ngOnInit() { this.screenSize = this.commonService.getScreenSize(); @@ -62,6 +64,13 @@ export class LoginComponent implements OnInit, OnDestroy { subscribe((action: any) => { this.logoutReason = action.payload; }); + // Logout navigates with a full document load (to re-mint the CSRF token), + // so the reason arrives via sessionStorage instead of the action stream. + const storedLogoutReason = this.sessionService.getItem('logoutReason'); + if (storedLogoutReason) { + this.logoutReason = storedLogoutReason; + this.sessionService.removeItem('logoutReason'); + } } onLogin(): boolean | void { diff --git a/src/app/shared/components/navigation/side-navigation/side-navigation.component.html b/src/app/shared/components/navigation/side-navigation/side-navigation.component.html index f98832b7..593435de 100644 --- a/src/app/shared/components/navigation/side-navigation/side-navigation.component.html +++ b/src/app/shared/components/navigation/side-navigation/side-navigation.component.html @@ -9,7 +9,7 @@ - +
@@ -40,8 +40,8 @@ - - {{node.icon}} + + {{node.icon}} {{node.name}} @@ -50,7 +50,7 @@ - + {{node.name}} diff --git a/src/app/shared/components/navigation/side-navigation/side-navigation.component.ts b/src/app/shared/components/navigation/side-navigation/side-navigation.component.ts index 839784f1..3d12c83f 100644 --- a/src/app/shared/components/navigation/side-navigation/side-navigation.component.ts +++ b/src/app/shared/components/navigation/side-navigation/side-navigation.component.ts @@ -22,6 +22,7 @@ import { logout, openConfirmation, setSelectedNode, showPubkey } from '../../../ import { rootAppConfig, rootSelNodeAndNodeData } from '../../../../store/rtl.selector'; @Component({ + standalone: false, selector: 'rtl-side-navigation', templateUrl: './side-navigation.component.html', styleUrls: ['./side-navigation.component.scss'] @@ -39,8 +40,8 @@ export class SideNavigationComponent implements OnInit, OnDestroy { public information: GetInfoRoot = {}; public informationChain: GetInfoChain = {}; public flgLoading = true; - public logoutNode = [{ id: 200, parentId: 0, name: 'Logout', iconType: 'FA', icon: faEject }]; - public showDataNodes = [{ id: 1000, parentId: 0, name: 'Public Key', iconType: 'FA', icon: faEye }]; + public logoutNode = [{ id: 200, parentId: 0, name: 'Logout', iconType: 'FA', icon: faEject, children: [] }]; + public showDataNodes = [{ id: 1000, parentId: 0, name: 'Public Key', iconType: 'FA', icon: faEye, children: [] }]; public showLogout = false; public numPendingChannels = 0; public smallScreen = false; @@ -156,8 +157,7 @@ export class SideNavigationComponent implements OnInit, OnDestroy { } loadLNDMenu() { - let clonedMenu = []; - clonedMenu = JSON.parse(JSON.stringify(MENU_DATA.LNDChildren)); + const clonedMenu = JSON.parse(JSON.stringify(MENU_DATA.LNDChildren)); this.navMenus.data = clonedMenu?.filter((navMenuData: any) => { if (navMenuData.children && navMenuData.children.length) { navMenuData.children = navMenuData.children?.filter((navMenuChild) => ((navMenuChild.userPersona === UserPersonaEnum.ALL || navMenuChild.userPersona === this.selNode.settings.userPersona) && navMenuChild.link !== '/services/loop' && navMenuChild.link !== '/services/boltz') || @@ -170,13 +170,14 @@ export class SideNavigationComponent implements OnInit, OnDestroy { } loadCLNMenu() { - let clonedMenu = []; - clonedMenu = JSON.parse(JSON.stringify(MENU_DATA.CLNChildren)); + const clonedMenu = JSON.parse(JSON.stringify(MENU_DATA.CLNChildren)); this.navMenus.data = clonedMenu?.filter((navMenuData: any) => { if (navMenuData.children && navMenuData.children.length) { - navMenuData.children = navMenuData.children?.filter((navMenuChild) => ((navMenuChild.userPersona === UserPersonaEnum.ALL || navMenuChild.userPersona === this.selNode.settings.userPersona) && navMenuChild.link !== '/services/peerswap') || - (navMenuChild.link === '/services/peerswap' && this.selNode.settings.enablePeerswap) || - (navMenuChild.link === '/services/boltz' && this.selNode.settings.boltzServerUrl && this.selNode.settings.boltzServerUrl.trim() !== '')); + navMenuData.children = navMenuData.children?.filter((navMenuChild) => ((navMenuChild.userPersona === UserPersonaEnum.ALL || navMenuChild.userPersona === this.selNode.settings.userPersona)) && + (!navMenuChild.link.includes('/services') || + (navMenuChild.link === '/services/peerswap' && this.selNode.settings.enablePeerswap) || + (navMenuChild.link === '/services/boltz' && this.selNode.settings.boltzServerUrl && this.selNode.settings.boltzServerUrl.trim() !== '') + )); return navMenuData.children.length > 0; } return navMenuData.userPersona === UserPersonaEnum.ALL || navMenuData.userPersona === this.selNode.settings.userPersona; diff --git a/src/app/shared/components/navigation/top-menu/top-menu.component.ts b/src/app/shared/components/navigation/top-menu/top-menu.component.ts index 7526c1fc..50df6494 100644 --- a/src/app/shared/components/navigation/top-menu/top-menu.component.ts +++ b/src/app/shared/components/navigation/top-menu/top-menu.component.ts @@ -17,6 +17,7 @@ import { logout, openConfirmation } from '../../../../store/rtl.actions'; import { rootNodeData } from '../../../../store/rtl.selector'; @Component({ + standalone: false, selector: 'rtl-top-menu', templateUrl: './top-menu.component.html', styleUrls: ['./top-menu.component.scss'], diff --git a/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.html b/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.html index 893ea324..dcf4d6e7 100644 --- a/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.html +++ b/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.html @@ -93,7 +93,7 @@

- {{(updateMsg.error && updateMsg.error !== '') ? (('Error: ' + updateMsg.error) || 'Unknown Error') : (updateMsg.data && updateMsg.data !== '') ? updateMsg.data : 'Successfully Updated the Funding Policy!'}} + {{(updateMsg.error && updateMsg.error !== '') ? `Error: ${updateMsg.error || 'Unknown Error'}` : (updateMsg.data && updateMsg.data !== '') ? updateMsg.data : 'Successfully Updated the Funding Policy!'}}

diff --git a/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.ts b/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.ts index 33ac8480..af583767 100644 --- a/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.ts +++ b/src/app/shared/components/node-config/experimental-settings/experimental-settings.component.ts @@ -17,6 +17,7 @@ import { Balance, FunderPolicy, LocalRemoteBalance, UTXO } from '../../../models import { ApiCallStatusPayload } from '../../../models/apiCallsPayload'; @Component({ + standalone: false, selector: 'rtl-experimental-settings', templateUrl: './experimental-settings.component.html', styleUrls: ['./experimental-settings.component.scss'] @@ -47,7 +48,7 @@ export class ExperimentalSettingsComponent implements OnInit, OnDestroy { this.dataService.listConfigs().pipe(takeUntil(this.unSubs[0])).subscribe({ next: (res: any) => { this.logger.info('Received List Configs: ' + JSON.stringify(res)); - this.features[1].enabled = !!res['experimental-dual-fund']; + this.features[1].enabled = !!res['configs']['experimental-dual-fund']['set']; }, error: (err) => { this.logger.error('List Configs Error: ' + JSON.stringify(err)); this.features[1].enabled = false; diff --git a/src/app/shared/components/node-config/lnp-config/lnp-config.component.ts b/src/app/shared/components/node-config/lnp-config/lnp-config.component.ts index 407b7cfb..7202f4d4 100644 --- a/src/app/shared/components/node-config/lnp-config/lnp-config.component.ts +++ b/src/app/shared/components/node-config/lnp-config/lnp-config.component.ts @@ -10,6 +10,7 @@ import { RTLState } from '../../../../store/rtl.state'; import { fetchConfig } from '../../../../store/rtl.actions'; @Component({ + standalone: false, selector: 'rtl-lnp-config', templateUrl: './lnp-config.component.html', styleUrls: ['./lnp-config.component.scss'] diff --git a/src/app/shared/components/node-config/node-config.component.html b/src/app/shared/components/node-config/node-config.component.html index 018e7c5b..cca8299c 100644 --- a/src/app/shared/components/node-config/node-config.component.html +++ b/src/app/shared/components/node-config/node-config.component.html @@ -6,10 +6,10 @@ diff --git a/src/app/shared/components/node-config/node-config.component.ts b/src/app/shared/components/node-config/node-config.component.ts index c676371a..def76ec0 100644 --- a/src/app/shared/components/node-config/node-config.component.ts +++ b/src/app/shared/components/node-config/node-config.component.ts @@ -13,6 +13,7 @@ import { RTLState } from '../../../store/rtl.state'; import { rootAppConfig, rootSelectedNode } from '../../../store/rtl.selector'; @Component({ + standalone: false, selector: 'rtl-node-config', templateUrl: './node-config.component.html', styleUrls: ['./node-config.component.scss'] diff --git a/src/app/shared/components/node-config/node-settings/node-settings.component.scss b/src/app/shared/components/node-config/node-settings/node-settings.component.scss index e654fcf7..71b0bdfb 100644 --- a/src/app/shared/components/node-config/node-settings/node-settings.component.scss +++ b/src/app/shared/components/node-config/node-settings/node-settings.component.scss @@ -1,6 +1,6 @@ @use 'sass:math' as math; -@import "../../../theme/styles/mixins"; -@import '../../../theme/styles/constants.scss'; +@use "../../../theme/styles/mixins" as *; +@use '../../../theme/styles/constants.scss' as *; h4 { margin: ($gap*1.5) 0 $gap 0; diff --git a/src/app/shared/components/node-config/node-settings/node-settings.component.ts b/src/app/shared/components/node-config/node-settings/node-settings.component.ts index e77acb11..b8cbfb48 100644 --- a/src/app/shared/components/node-config/node-settings/node-settings.component.ts +++ b/src/app/shared/components/node-config/node-settings/node-settings.component.ts @@ -14,6 +14,7 @@ import { rootSelectedNode } from '../../../../store/rtl.selector'; import { updateNodeSettings, setSelectedNode } from '../../../../store/rtl.actions'; @Component({ + standalone: false, selector: 'rtl-node-settings', templateUrl: './node-settings.component.html', styleUrls: ['./node-settings.component.scss'] diff --git a/src/app/shared/components/node-config/page-settings/page-settings.component.html b/src/app/shared/components/node-config/page-settings/page-settings.component.html index d47ffbbb..62c49632 100644 --- a/src/app/shared/components/node-config/page-settings/page-settings.component.html +++ b/src/app/shared/components/node-config/page-settings/page-settings.component.html @@ -15,7 +15,7 @@ {{table.tableId | camelcaseWithReplace:'_'}}: Records/Page - + {{pageSizeOption}} @@ -23,7 +23,7 @@ Sort By - + {{selNode.lnImplementation === 'ECL' ? (field | camelCaseWithSpaces) : (field | camelcaseWithReplace:'_')}} @@ -31,7 +31,7 @@ Sort Order - + {{so === 'desc' ? 'Descending' : 'Ascending'}} @@ -39,7 +39,7 @@ Column selection (Desktop Resolution) - + {{field.label ? field.label : (selNode.lnImplementation === 'ECL' ? (field.column | camelCaseWithSpaces) : (field.column | camelcaseWithReplace:'_'))}} @@ -47,7 +47,7 @@ Column Selection (Mobile Resolution) - + {{field.label ? field.label : (selNode.lnImplementation === 'ECL' ? (field.column | camelCaseWithSpaces) : (field.column | camelcaseWithReplace:'_'))}} diff --git a/src/app/shared/components/node-config/page-settings/page-settings.component.scss b/src/app/shared/components/node-config/page-settings/page-settings.component.scss index 5fc009aa..afd630bd 100644 --- a/src/app/shared/components/node-config/page-settings/page-settings.component.scss +++ b/src/app/shared/components/node-config/page-settings/page-settings.component.scss @@ -1,4 +1,4 @@ -@import '../../../theme/styles/constants.scss'; +@use '../../../theme/styles/constants.scss' as *; .table-setting-row { &:not(:first-child) { diff --git a/src/app/shared/components/node-config/page-settings/page-settings.component.ts b/src/app/shared/components/node-config/page-settings/page-settings.component.ts index 98678c5c..edb5d9a4 100644 --- a/src/app/shared/components/node-config/page-settings/page-settings.component.ts +++ b/src/app/shared/components/node-config/page-settings/page-settings.component.ts @@ -21,6 +21,7 @@ import { eclPageSettings } from '../../../../eclair/store/ecl.selector'; import { savePageSettings as savePageSettingsECL } from '../../../../eclair/store/ecl.actions'; @Component({ + standalone: false, selector: 'rtl-page-settings', templateUrl: './page-settings.component.html', styleUrls: ['./page-settings.component.scss'] diff --git a/src/app/shared/components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component.ts b/src/app/shared/components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component.ts index c30f39c4..aec71b71 100644 --- a/src/app/shared/components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component.ts +++ b/src/app/shared/components/node-config/services-settings/boltz-service-settings/boltz-service-settings.component.ts @@ -11,6 +11,7 @@ import { RTLState } from '../../../../../store/rtl.state'; import { rootSelectedNode } from '../../../../../store/rtl.selector'; @Component({ + standalone: false, selector: 'rtl-boltz-service-settings', templateUrl: './boltz-service-settings.component.html', styleUrls: ['./boltz-service-settings.component.scss'] diff --git a/src/app/shared/components/node-config/services-settings/loop-service-settings/loop-service-settings.component.ts b/src/app/shared/components/node-config/services-settings/loop-service-settings/loop-service-settings.component.ts index 98b2f118..541c13e4 100644 --- a/src/app/shared/components/node-config/services-settings/loop-service-settings/loop-service-settings.component.ts +++ b/src/app/shared/components/node-config/services-settings/loop-service-settings/loop-service-settings.component.ts @@ -11,6 +11,7 @@ import { RTLState } from '../../../../../store/rtl.state'; import { rootSelectedNode } from '../../../../../store/rtl.selector'; @Component({ + standalone: false, selector: 'rtl-loop-service-settings', templateUrl: './loop-service-settings.component.html', styleUrls: ['./loop-service-settings.component.scss'] diff --git a/src/app/shared/components/node-config/services-settings/no-service-found/no-service-found.component.ts b/src/app/shared/components/node-config/services-settings/no-service-found/no-service-found.component.ts index 8048a129..a28314aa 100644 --- a/src/app/shared/components/node-config/services-settings/no-service-found/no-service-found.component.ts +++ b/src/app/shared/components/node-config/services-settings/no-service-found/no-service-found.component.ts @@ -1,6 +1,7 @@ import { Component } from '@angular/core'; @Component({ + standalone: false, selector: 'rtl-no-service-found', templateUrl: './no-service-found.component.html' }) diff --git a/src/app/shared/components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component.ts b/src/app/shared/components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component.ts index 89a2c1a6..cb9d5722 100644 --- a/src/app/shared/components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component.ts +++ b/src/app/shared/components/node-config/services-settings/peerswap-service-settings/peerswap-service-settings.component.ts @@ -11,6 +11,7 @@ import { RTLState } from '../../../../../store/rtl.state'; import { rootSelectedNode } from '../../../../../store/rtl.selector'; @Component({ + standalone: false, selector: 'rtl-peerswap-service-settings', templateUrl: './peerswap-service-settings.component.html', styleUrls: ['./peerswap-service-settings.component.scss'] diff --git a/src/app/shared/components/node-config/services-settings/services-settings.component.html b/src/app/shared/components/node-config/services-settings/services-settings.component.html index 44199bd2..76381530 100644 --- a/src/app/shared/components/node-config/services-settings/services-settings.component.html +++ b/src/app/shared/components/node-config/services-settings/services-settings.component.html @@ -8,11 +8,11 @@
diff --git a/src/app/shared/components/node-config/services-settings/services-settings.component.ts b/src/app/shared/components/node-config/services-settings/services-settings.component.ts index 0eefd193..cdfd1bb0 100644 --- a/src/app/shared/components/node-config/services-settings/services-settings.component.ts +++ b/src/app/shared/components/node-config/services-settings/services-settings.component.ts @@ -9,6 +9,7 @@ import { RTLState } from '../../../../store/rtl.state'; import { rootSelectedNode } from '../../../../store/rtl.selector'; @Component({ + standalone: false, selector: 'rtl-services-settings', templateUrl: './services-settings.component.html', styleUrls: ['./services-settings.component.scss'] diff --git a/src/app/shared/components/not-found/not-found.component.ts b/src/app/shared/components/not-found/not-found.component.ts index 798896b2..b1fa12e3 100644 --- a/src/app/shared/components/not-found/not-found.component.ts +++ b/src/app/shared/components/not-found/not-found.component.ts @@ -3,6 +3,7 @@ import { Router } from '@angular/router'; import { faTimes } from '@fortawesome/free-solid-svg-icons'; @Component({ + standalone: false, selector: 'rtl-not-found', templateUrl: './not-found.component.html' }) diff --git a/src/app/shared/components/settings/app-settings/app-settings.component.html b/src/app/shared/components/settings/app-settings/app-settings.component.html index 99d69fab..28e843af 100644 --- a/src/app/shared/components/settings/app-settings/app-settings.component.html +++ b/src/app/shared/components/settings/app-settings/app-settings.component.html @@ -7,7 +7,8 @@
- + Default Node + {{node.lnNode}} ({{node.lnImplementation}}) @@ -16,8 +17,8 @@
- - + +
@@ -28,6 +29,6 @@ Add New Node
- +
-->
diff --git a/src/app/shared/components/settings/app-settings/app-settings.component.ts b/src/app/shared/components/settings/app-settings/app-settings.component.ts index faf7e509..56b411ad 100644 --- a/src/app/shared/components/settings/app-settings/app-settings.component.ts +++ b/src/app/shared/components/settings/app-settings/app-settings.component.ts @@ -12,6 +12,7 @@ import { updateApplicationSettings } from '../../../../store/rtl.actions'; import { rootAppConfig } from '../../../../store/rtl.selector'; @Component({ + standalone: false, selector: 'rtl-app-settings', templateUrl: './app-settings.component.html', styleUrls: ['./app-settings.component.scss'] diff --git a/src/app/shared/components/settings/auth-settings/auth-settings.component.ts b/src/app/shared/components/settings/auth-settings/auth-settings.component.ts index d1a06319..1647dbde 100644 --- a/src/app/shared/components/settings/auth-settings/auth-settings.component.ts +++ b/src/app/shared/components/settings/auth-settings/auth-settings.component.ts @@ -18,6 +18,7 @@ import { rootAppConfig, rootSelectedNode } from '../../../../store/rtl.selector' import { LoggerService } from '../../../services/logger.service'; @Component({ + standalone: false, selector: 'rtl-auth-settings', templateUrl: './auth-settings.component.html', styleUrls: ['./auth-settings.component.scss'] diff --git a/src/app/shared/components/settings/bitcoin-config/bitcoin-config.component.ts b/src/app/shared/components/settings/bitcoin-config/bitcoin-config.component.ts index 56f8cbe3..0b136217 100644 --- a/src/app/shared/components/settings/bitcoin-config/bitcoin-config.component.ts +++ b/src/app/shared/components/settings/bitcoin-config/bitcoin-config.component.ts @@ -10,6 +10,7 @@ import { RTLState } from '../../../../store/rtl.state'; import { fetchConfig } from '../../../../store/rtl.actions'; @Component({ + standalone: false, selector: 'rtl-bitcoin-config', templateUrl: './bitcoin-config.component.html', styleUrls: ['./bitcoin-config.component.scss'] diff --git a/src/app/shared/components/settings/settings.component.html b/src/app/shared/components/settings/settings.component.html index 1dfa2743..85e7a820 100644 --- a/src/app/shared/components/settings/settings.component.html +++ b/src/app/shared/components/settings/settings.component.html @@ -6,9 +6,9 @@
diff --git a/src/app/shared/components/settings/settings.component.ts b/src/app/shared/components/settings/settings.component.ts index 45e70842..4ed1ce9a 100644 --- a/src/app/shared/components/settings/settings.component.ts +++ b/src/app/shared/components/settings/settings.component.ts @@ -10,6 +10,7 @@ import { RTLState } from '../../../store/rtl.state'; import { rootSelectedNode, rootAppConfig } from '../../../store/rtl.selector'; @Component({ + standalone: false, selector: 'rtl-settings', templateUrl: './settings.component.html', styleUrls: ['./settings.component.scss'] diff --git a/src/app/shared/components/transactions-report-table/transactions-report-table.component.ts b/src/app/shared/components/transactions-report-table/transactions-report-table.component.ts index b703284a..a1604000 100644 --- a/src/app/shared/components/transactions-report-table/transactions-report-table.component.ts +++ b/src/app/shared/components/transactions-report-table/transactions-report-table.component.ts @@ -18,6 +18,7 @@ import { CamelCaseWithReplacePipe } from '../../pipes/app.pipe'; import { MessageDataField } from '../../../shared/models/alertData'; @Component({ + standalone: false, selector: 'rtl-transactions-report-table', templateUrl: './transactions-report-table.component.html', styleUrls: ['./transactions-report-table.component.scss'], diff --git a/src/app/shared/directive/auto-focus.directive.ts b/src/app/shared/directive/auto-focus.directive.ts index 947e94bf..b2bca55a 100644 --- a/src/app/shared/directive/auto-focus.directive.ts +++ b/src/app/shared/directive/auto-focus.directive.ts @@ -1,6 +1,7 @@ import { AfterContentInit, Directive, ElementRef, Input } from '@angular/core'; @Directive({ + standalone: false, selector: '[autoFocus]' }) export class AutoFocusDirective implements AfterContentInit { diff --git a/src/app/shared/directive/clipboard.directive.ts b/src/app/shared/directive/clipboard.directive.ts index 74e5c172..65581be9 100644 --- a/src/app/shared/directive/clipboard.directive.ts +++ b/src/app/shared/directive/clipboard.directive.ts @@ -1,6 +1,7 @@ import { Directive, Input, Output, EventEmitter, HostListener } from '@angular/core'; @Directive({ + standalone: false, selector: '[rtlClipboard]' }) export class ClipboardDirective { diff --git a/src/app/shared/directive/date-formats.directive.ts b/src/app/shared/directive/date-formats.directive.ts index 60528201..efe4c332 100644 --- a/src/app/shared/directive/date-formats.directive.ts +++ b/src/app/shared/directive/date-formats.directive.ts @@ -46,6 +46,7 @@ export const YEARLY_DATE_FORMATS: MatDateFormats = { }; @Directive({ + standalone: false, selector: '[monthlyDate]', providers: [ { provide: DateAdapter, useClass: CustomDateAdapter }, @@ -55,6 +56,7 @@ export const YEARLY_DATE_FORMATS: MatDateFormats = { export class MonthlyDateDirective {} @Directive({ + standalone: false, selector: '[yearlyDate]', providers: [ { provide: DateAdapter, useClass: CustomDateAdapter }, diff --git a/src/app/shared/directive/max-amount.directive.ts b/src/app/shared/directive/max-amount.directive.ts index 45918350..0e5373af 100644 --- a/src/app/shared/directive/max-amount.directive.ts +++ b/src/app/shared/directive/max-amount.directive.ts @@ -2,6 +2,7 @@ import { Directive, Input } from '@angular/core'; import { NG_VALIDATORS, Validator, Validators, AbstractControl } from '@angular/forms'; @Directive({ + standalone: false, selector: 'input[max]', providers: [{ provide: NG_VALIDATORS, useExisting: MaxValidator, multi: true }] }) diff --git a/src/app/shared/directive/min-amount.directive.ts b/src/app/shared/directive/min-amount.directive.ts index 30d19af3..811f070a 100644 --- a/src/app/shared/directive/min-amount.directive.ts +++ b/src/app/shared/directive/min-amount.directive.ts @@ -2,6 +2,7 @@ import { Directive, Input } from '@angular/core'; import { NG_VALIDATORS, Validator, Validators, AbstractControl } from '@angular/forms'; @Directive({ + standalone: false, selector: 'input[min]', providers: [{ provide: NG_VALIDATORS, useExisting: MinValidator, multi: true }] }) diff --git a/src/app/shared/models/RTLconfig.ts b/src/app/shared/models/RTLconfig.ts index 810850b1..80125bd6 100644 --- a/src/app/shared/models/RTLconfig.ts +++ b/src/app/shared/models/RTLconfig.ts @@ -51,6 +51,7 @@ export class RTLConfiguration { public SSO: SSO, public enable2FA: boolean, public secret2FA: string, + public disableAuth: boolean, public allowPasswordUpdate: boolean, public nodes: Node[] ) { } diff --git a/src/app/shared/models/lndModels.ts b/src/app/shared/models/lndModels.ts index 85da15a8..62c2786e 100644 --- a/src/app/shared/models/lndModels.ts +++ b/src/app/shared/models/lndModels.ts @@ -534,7 +534,7 @@ export interface CloseChannel { channelPoint: string; forcibly: boolean; targetConf?: number; - satPerByte?: number; + satPerVByte?: number; } export interface FetchInvoices { @@ -552,13 +552,13 @@ export interface FetchPayments { export interface SendPayment { uiMessage: string; fromDialog: boolean; - paymentReq: string; - paymentAmount?: number; - outgoingChannel?: Channel | null; - feeLimitType?: string; - feeLimit?: number | null; - allowSelfPayment?: boolean; - lastHopPubkey?: string; + payment_request: string; + amp: boolean; + amt?: number; + outgoing_chan_ids?: string[] | []; + fee_limit_sat?: number | null; + allow_self_payment?: boolean; + last_hop_pubkey?: string; } export interface GetNewAddress { @@ -571,7 +571,6 @@ export interface GetNewAddress { export interface GetQueryRoutes { destPubkey: string; amount: number; - outgoingChanId?: string; } export interface InitWallet { diff --git a/src/app/shared/models/navMenu.ts b/src/app/shared/models/navMenu.ts index 85c6fbd1..e45bba31 100644 --- a/src/app/shared/models/navMenu.ts +++ b/src/app/shared/models/navMenu.ts @@ -24,68 +24,68 @@ export class MenuRootNode { export const MENU_DATA: MenuRootNode = { LNDChildren: [ - { id: 1, parentId: 0, name: 'Dashboard', iconType: 'FA', icon: faTachometerAlt, link: '/lnd/home', userPersona: UserPersonaEnum.ALL }, - { id: 2, parentId: 0, name: 'On-chain', iconType: 'FA', icon: faLink, link: '/lnd/onchain', userPersona: UserPersonaEnum.ALL }, + { id: 1, parentId: 0, name: 'Dashboard', iconType: 'FA', icon: faTachometerAlt, link: '/lnd/home', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 2, parentId: 0, name: 'On-chain', iconType: 'FA', icon: faLink, link: '/lnd/onchain', userPersona: UserPersonaEnum.ALL, children: [] }, { id: 3, parentId: 0, name: 'Lightning', iconType: 'FA', icon: faBolt, link: '/lnd/connections', userPersona: UserPersonaEnum.ALL, children: [ - { id: 31, parentId: 3, name: 'Peers/Channels', iconType: 'FA', icon: faUsers, link: '/lnd/connections', userPersona: UserPersonaEnum.ALL }, - { id: 32, parentId: 3, name: 'Transactions', iconType: 'FA', icon: faExchangeAlt, link: '/lnd/transactions', userPersona: UserPersonaEnum.ALL }, - { id: 33, parentId: 3, name: 'Routing', iconType: 'FA', icon: faMapSigns, link: '/lnd/routing', userPersona: UserPersonaEnum.ALL }, - { id: 34, parentId: 3, name: 'Reports', iconType: 'FA', icon: faChartBar, link: '/lnd/reports', userPersona: UserPersonaEnum.ALL }, - { id: 35, parentId: 3, name: 'Graph Lookup', iconType: 'FA', icon: faSearch, link: '/lnd/graph', userPersona: UserPersonaEnum.ALL }, - { id: 36, parentId: 3, name: 'Sign/Verify', iconType: 'FA', icon: faUserCheck, link: '/lnd/messages', userPersona: UserPersonaEnum.ALL }, - { id: 37, parentId: 3, name: 'Backup', iconType: 'FA', icon: faDownload, link: '/lnd/channelbackup', userPersona: UserPersonaEnum.ALL }, - { id: 38, parentId: 3, name: 'Network', iconType: 'FA', icon: faProjectDiagram, link: '/lnd/network', userPersona: UserPersonaEnum.OPERATOR }, - { id: 39, parentId: 3, name: 'Node/Network', iconType: 'FA', icon: faServer, link: '/lnd/network', userPersona: UserPersonaEnum.MERCHANT } + { id: 31, parentId: 3, name: 'Peers/Channels', iconType: 'FA', icon: faUsers, link: '/lnd/connections', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 32, parentId: 3, name: 'Transactions', iconType: 'FA', icon: faExchangeAlt, link: '/lnd/transactions', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 33, parentId: 3, name: 'Routing', iconType: 'FA', icon: faMapSigns, link: '/lnd/routing', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 34, parentId: 3, name: 'Reports', iconType: 'FA', icon: faChartBar, link: '/lnd/reports', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 35, parentId: 3, name: 'Graph Lookup', iconType: 'FA', icon: faSearch, link: '/lnd/graph', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 36, parentId: 3, name: 'Sign/Verify', iconType: 'FA', icon: faUserCheck, link: '/lnd/messages', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 37, parentId: 3, name: 'Backup', iconType: 'FA', icon: faDownload, link: '/lnd/channelbackup', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 38, parentId: 3, name: 'Network', iconType: 'FA', icon: faProjectDiagram, link: '/lnd/network', userPersona: UserPersonaEnum.OPERATOR, children: [] }, + { id: 39, parentId: 3, name: 'Node/Network', iconType: 'FA', icon: faServer, link: '/lnd/network', userPersona: UserPersonaEnum.MERCHANT, children: [] } ] }, { id: 4, parentId: 0, name: 'Services', iconType: 'FA', icon: faLayerGroup, link: '/services/loop', userPersona: UserPersonaEnum.ALL, children: [ - { id: 41, parentId: 4, name: 'Loop', iconType: 'FA', icon: faInfinity, link: '/services/loop', userPersona: UserPersonaEnum.ALL }, - { id: 42, parentId: 4, name: 'Boltz', iconType: 'SVG', icon: 'boltzIconBlock', link: '/services/boltz', userPersona: UserPersonaEnum.ALL } + { id: 41, parentId: 4, name: 'Loop', iconType: 'FA', icon: faInfinity, link: '/services/loop', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 42, parentId: 4, name: 'Boltz', iconType: 'SVG', icon: 'boltzIconBlock', link: '/services/boltz', userPersona: UserPersonaEnum.ALL, children: [] } ] }, - { id: 5, parentId: 0, name: 'Node Config', iconType: 'FA', icon: faTools, link: '/config', userPersona: UserPersonaEnum.ALL }, - { id: 6, parentId: 0, name: 'Help', iconType: 'FA', icon: faQuestion, link: '/help', userPersona: UserPersonaEnum.ALL } + { id: 5, parentId: 0, name: 'Node Config', iconType: 'FA', icon: faTools, link: '/config', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 6, parentId: 0, name: 'Help', iconType: 'FA', icon: faQuestion, link: '/help', userPersona: UserPersonaEnum.ALL, children: [] } ], CLNChildren: [ - { id: 1, parentId: 0, name: 'Dashboard', iconType: 'FA', icon: faTachometerAlt, link: '/cln/home', userPersona: UserPersonaEnum.ALL }, - { id: 2, parentId: 0, name: 'On-chain', iconType: 'FA', icon: faLink, link: '/cln/onchain', userPersona: UserPersonaEnum.ALL }, + { id: 1, parentId: 0, name: 'Dashboard', iconType: 'FA', icon: faTachometerAlt, link: '/cln/home', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 2, parentId: 0, name: 'On-chain', iconType: 'FA', icon: faLink, link: '/cln/onchain', userPersona: UserPersonaEnum.ALL, children: [] }, { id: 3, parentId: 0, name: 'Lightning', iconType: 'FA', icon: faBolt, link: '/cln/connections', userPersona: UserPersonaEnum.ALL, children: [ - { id: 31, parentId: 3, name: 'Peers/Channels', iconType: 'FA', icon: faUsers, link: '/cln/connections', userPersona: UserPersonaEnum.ALL }, - { id: 32, parentId: 3, name: 'Liquidity Ads', iconType: 'FA', icon: faBullhorn, link: '/cln/liquidityads', userPersona: UserPersonaEnum.ALL }, - { id: 33, parentId: 3, name: 'Transactions', iconType: 'FA', icon: faExchangeAlt, link: '/cln/transactions', userPersona: UserPersonaEnum.ALL }, - { id: 34, parentId: 3, name: 'Routing', iconType: 'FA', icon: faMapSigns, link: '/cln/routing', userPersona: UserPersonaEnum.ALL }, - { id: 35, parentId: 3, name: 'Reports', iconType: 'FA', icon: faChartBar, link: '/cln/reports', userPersona: UserPersonaEnum.ALL }, - { id: 36, parentId: 3, name: 'Graph Lookup', iconType: 'FA', icon: faSearch, link: '/cln/graph', userPersona: UserPersonaEnum.ALL }, - { id: 37, parentId: 3, name: 'Sign/Verify', iconType: 'FA', icon: faUserCheck, link: '/cln/messages', userPersona: UserPersonaEnum.ALL }, - { id: 38, parentId: 3, name: 'Fee Rates', iconType: 'FA', icon: faPercentage, link: '/cln/rates', userPersona: UserPersonaEnum.OPERATOR }, - { id: 39, parentId: 3, name: 'Node/Fee Rates', iconType: 'FA', icon: faServer, link: '/cln/rates', userPersona: UserPersonaEnum.MERCHANT } + { id: 31, parentId: 3, name: 'Peers/Channels', iconType: 'FA', icon: faUsers, link: '/cln/connections', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 32, parentId: 3, name: 'Liquidity Ads', iconType: 'FA', icon: faBullhorn, link: '/cln/liquidityads', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 33, parentId: 3, name: 'Transactions', iconType: 'FA', icon: faExchangeAlt, link: '/cln/transactions', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 34, parentId: 3, name: 'Routing', iconType: 'FA', icon: faMapSigns, link: '/cln/routing', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 35, parentId: 3, name: 'Reports', iconType: 'FA', icon: faChartBar, link: '/cln/reports', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 36, parentId: 3, name: 'Graph Lookup', iconType: 'FA', icon: faSearch, link: '/cln/graph', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 37, parentId: 3, name: 'Sign/Verify', iconType: 'FA', icon: faUserCheck, link: '/cln/messages', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 38, parentId: 3, name: 'Fee Rates', iconType: 'FA', icon: faPercentage, link: '/cln/rates', userPersona: UserPersonaEnum.OPERATOR, children: [] }, + { id: 39, parentId: 3, name: 'Node/Fee Rates', iconType: 'FA', icon: faServer, link: '/cln/rates', userPersona: UserPersonaEnum.MERCHANT, children: [] } ] }, { id: 4, parentId: 0, name: 'Services', iconType: 'FA', icon: faLayerGroup, link: '/services/loop', userPersona: UserPersonaEnum.ALL, children: [ - // { id: 41, parentId: 4, name: 'Peerswap', iconType: 'FA', icon: faHandshake, link: '/services/peerswap', userPersona: UserPersonaEnum.ALL }, - { id: 42, parentId: 4, name: 'Boltz', iconType: 'SVG', icon: 'boltzIconBlock', link: '/services/boltz', userPersona: UserPersonaEnum.ALL } + // { id: 41, parentId: 4, name: 'Peerswap', iconType: 'FA', icon: faHandshake, link: '/services/peerswap', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 42, parentId: 4, name: 'Boltz', iconType: 'SVG', icon: 'boltzIconBlock', link: '/services/boltz', userPersona: UserPersonaEnum.ALL, children: [] } ] }, - { id: 5, parentId: 0, name: 'Node Config', iconType: 'FA', icon: faTools, link: '/config', userPersona: UserPersonaEnum.ALL }, - { id: 6, parentId: 0, name: 'Help', iconType: 'FA', icon: faQuestion, link: '/help', userPersona: UserPersonaEnum.ALL } + { id: 5, parentId: 0, name: 'Node Config', iconType: 'FA', icon: faTools, link: '/config', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 6, parentId: 0, name: 'Help', iconType: 'FA', icon: faQuestion, link: '/help', userPersona: UserPersonaEnum.ALL, children: [] } ], ECLChildren: [ - { id: 1, parentId: 0, name: 'Dashboard', iconType: 'FA', icon: faTachometerAlt, link: '/ecl/home', userPersona: UserPersonaEnum.ALL }, - { id: 2, parentId: 0, name: 'On-chain', iconType: 'FA', icon: faLink, link: '/ecl/onchain', userPersona: UserPersonaEnum.ALL }, + { id: 1, parentId: 0, name: 'Dashboard', iconType: 'FA', icon: faTachometerAlt, link: '/ecl/home', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 2, parentId: 0, name: 'On-chain', iconType: 'FA', icon: faLink, link: '/ecl/onchain', userPersona: UserPersonaEnum.ALL, children: [] }, { id: 3, parentId: 0, name: 'Lightning', iconType: 'FA', icon: faBolt, link: '/ecl/connections', userPersona: UserPersonaEnum.ALL, children: [ - { id: 31, parentId: 3, name: 'Peers/Channels', iconType: 'FA', icon: faUsers, link: '/ecl/connections', userPersona: UserPersonaEnum.ALL }, - { id: 32, parentId: 3, name: 'Transactions', iconType: 'FA', icon: faExchangeAlt, link: '/ecl/transactions', userPersona: UserPersonaEnum.ALL }, - { id: 33, parentId: 3, name: 'Routing', iconType: 'FA', icon: faMapSigns, link: '/ecl/routing', userPersona: UserPersonaEnum.ALL }, - { id: 34, parentId: 3, name: 'Reports', iconType: 'FA', icon: faChartBar, link: '/ecl/reports', userPersona: UserPersonaEnum.ALL }, - { id: 35, parentId: 3, name: 'Graph Lookup', iconType: 'FA', icon: faSearch, link: '/ecl/graph', userPersona: UserPersonaEnum.ALL } + { id: 31, parentId: 3, name: 'Peers/Channels', iconType: 'FA', icon: faUsers, link: '/ecl/connections', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 32, parentId: 3, name: 'Transactions', iconType: 'FA', icon: faExchangeAlt, link: '/ecl/transactions', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 33, parentId: 3, name: 'Routing', iconType: 'FA', icon: faMapSigns, link: '/ecl/routing', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 34, parentId: 3, name: 'Reports', iconType: 'FA', icon: faChartBar, link: '/ecl/reports', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 35, parentId: 3, name: 'Graph Lookup', iconType: 'FA', icon: faSearch, link: '/ecl/graph', userPersona: UserPersonaEnum.ALL, children: [] } ] }, - { id: 4, parentId: 0, name: 'Node Config', iconType: 'FA', icon: faTools, link: '/config', userPersona: UserPersonaEnum.ALL }, - { id: 5, parentId: 0, name: 'Help', iconType: 'FA', icon: faQuestion, link: '/help', userPersona: UserPersonaEnum.ALL } + { id: 4, parentId: 0, name: 'Node Config', iconType: 'FA', icon: faTools, link: '/config', userPersona: UserPersonaEnum.ALL, children: [] }, + { id: 5, parentId: 0, name: 'Help', iconType: 'FA', icon: faQuestion, link: '/help', userPersona: UserPersonaEnum.ALL, children: [] } ] }; diff --git a/src/app/shared/pipes/app.pipe.ts b/src/app/shared/pipes/app.pipe.ts index 6f84218e..b8eade10 100644 --- a/src/app/shared/pipes/app.pipe.ts +++ b/src/app/shared/pipes/app.pipe.ts @@ -1,6 +1,7 @@ import { NgModule, Pipe, PipeTransform } from '@angular/core'; @Pipe({ + standalone: false, name: 'removeleadingzeros' }) export class RemoveLeadingZerosPipe implements PipeTransform { @@ -12,6 +13,7 @@ export class RemoveLeadingZerosPipe implements PipeTransform { } @Pipe({ + standalone: false, name: 'camelcase' }) export class CamelCasePipe implements PipeTransform { @@ -23,6 +25,7 @@ export class CamelCasePipe implements PipeTransform { } @Pipe({ + standalone: false, name: 'camelCaseWithSpaces' }) export class CamelCaseWithSpacesPipe implements PipeTransform { @@ -34,6 +37,7 @@ export class CamelCaseWithSpacesPipe implements PipeTransform { } @Pipe({ + standalone: false, name: 'camelcaseWithReplace' }) export class CamelCaseWithReplacePipe implements PipeTransform { diff --git a/src/app/shared/services/boltz.service.ts b/src/app/shared/services/boltz.service.ts index cdf9d274..b9646a99 100644 --- a/src/app/shared/services/boltz.service.ts +++ b/src/app/shared/services/boltz.service.ts @@ -85,8 +85,8 @@ export class BoltzService implements OnDestroy { return this.httpClient.post(this.swapUrl, requestBody).pipe(catchError((err) => this.handleErrorWithoutAlert('Swap Out for Address: ' + address, UI_MESSAGES.NO_SPINNER, err))); } - swapIn(amount: number, sendFromInternal: boolean) { - const requestBody = { amount: amount, sendFromInternal: sendFromInternal }; + swapIn(amount: number, sendFromInternal: boolean, refundAddress?: string) { + const requestBody = { amount: amount, sendFromInternal: sendFromInternal, refundAddress }; this.swapUrl = API_URL + API_END_POINTS.BOLTZ_API + '/createswap'; return this.httpClient.post(this.swapUrl, requestBody).pipe(catchError((err) => this.handleErrorWithoutAlert('Swap In for Amount: ' + amount, UI_MESSAGES.NO_SPINNER, err))); } diff --git a/src/app/shared/services/consts-enums-functions.ts b/src/app/shared/services/consts-enums-functions.ts index e93b0b7f..2b544cab 100644 --- a/src/app/shared/services/consts-enums-functions.ts +++ b/src/app/shared/services/consts-enums-functions.ts @@ -12,10 +12,11 @@ export function getPaginatorLabel(field: string) { } export const HOUR_SECONDS = 3600; +export const SECS_IN_YEAR = 31536000; export const DEFAULT_INVOICE_EXPIRY = HOUR_SECONDS * 24 * 7; -export const VERSION = '0.15.2-beta'; +export const VERSION = '0.15.10-beta'; export const API_URL = isDevMode() ? 'http://localhost:3000/rtl/api' : './api'; @@ -69,7 +70,7 @@ export const TRANS_TYPES = [ export const FEE_LIMIT_TYPES = [ { id: 'none', name: 'No Fee Limit', placeholder: 'No Limit' }, { id: 'fixed', name: 'Fixed Limit (Sats)', placeholder: 'Fixed Limit in Sats' }, - { id: 'percent', name: 'Percentage of Payment Amount', placeholder: 'Percentage Limit' } + { id: 'percent', name: 'Percentage of Amount', placeholder: 'Percentage Limit' } ]; export const FEE_RATE_TYPES = [ @@ -137,6 +138,7 @@ export enum AlertTypeEnum { } export enum AuthenticateWith { + NOAUTH = 'NOAUTH', JWT = 'JWT', PASSWORD = 'PASSWORD' } @@ -932,8 +934,8 @@ export const LND_DEFAULT_PAGE_SETTINGS: PageSettings[] = [ columnSelectionSM: ['remote_alias', 'capacity'], columnSelection: ['remote_alias', 'commit_fee', 'commit_weight', 'capacity'] }, { tableId: 'pending_force_closing', sortBy: 'limbo_balance', sortOrder: SortOrderEnum.DESCENDING, - columnSelectionSM: ['remote_alias', 'limbo_balance'], - columnSelection: ['remote_alias', 'recovered_balance', 'limbo_balance', 'capacity'] }, + columnSelectionSM: ['remote_alias', 'blocks_til_maturity', 'limbo_balance'], + columnSelection: ['remote_alias', 'blocks_til_maturity', 'recovered_balance', 'limbo_balance', 'capacity'] }, { tableId: 'pending_closing', sortBy: 'capacity', sortOrder: SortOrderEnum.DESCENDING, columnSelectionSM: ['remote_alias', 'capacity'], columnSelection: ['remote_alias', 'local_balance', 'remote_balance', 'capacity'] }, @@ -1396,3 +1398,14 @@ export function getSelectedCurrency(currencyID: string) { } return foundCurrency; } + + +export function getFeeLimitSat(selFeeLimitTypeID: string, feeLimit: number, amount?: number) { + if (selFeeLimitTypeID === 'fixed') { + return feeLimit; + } + if (selFeeLimitTypeID === 'percent') { + return Math.ceil(((amount || 0) * feeLimit) / 100); + } + return 1000000; +} diff --git a/src/app/shared/services/data.service.ts b/src/app/shared/services/data.service.ts index 4dcbe108..7f19707f 100644 --- a/src/app/shared/services/data.service.ts +++ b/src/app/shared/services/data.service.ts @@ -53,16 +53,17 @@ export class DataService implements OnDestroy { decodePayment(payment: string, fromDialog: boolean) { return this.lnImplementationUpdated.pipe(first(), mergeMap((updatedLnImplementation) => { - let url = this.APIUrl + '/' + updatedLnImplementation + API_END_POINTS.PAYMENTS_API + '/decode/' + payment; - let method = 'GET'; - let body = null; - if (updatedLnImplementation === 'cln') { - url = this.APIUrl + '/' + updatedLnImplementation + API_END_POINTS.UTILITY_API + '/decode'; - body = { string: payment }; - method = 'POST'; - } this.store.dispatch(openSpinner({ payload: UI_MESSAGES.DECODE_PAYMENT })); - return this.httpClient.request(method, url, { body: JSON.stringify(body), headers: { 'Content-Type': 'application/json' } }).pipe( + let request$; + if (updatedLnImplementation === 'cln') { + const url = this.APIUrl + '/' + updatedLnImplementation + API_END_POINTS.UTILITY_API + '/decode'; + const body = { string: payment }; + request$ = this.httpClient.post(url, body, { headers: { 'Content-Type': 'application/json' } }); + } else { + const url = this.APIUrl + '/' + updatedLnImplementation + API_END_POINTS.PAYMENTS_API + '/decode/' + payment; + request$ = this.httpClient.get(url); + } + return request$.pipe( takeUntil(this.unSubs[0]), map((res: any) => { this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.DECODE_PAYMENT })); @@ -72,11 +73,10 @@ export class DataService implements OnDestroy { if (fromDialog) { this.handleErrorWithoutAlert('Decode Payment', UI_MESSAGES.DECODE_PAYMENT, err); } else { - this.handleErrorWithAlert('decodePaymentData', UI_MESSAGES.DECODE_PAYMENT, 'Decode Payment Failed', url, err); + this.handleErrorWithAlert('decodePaymentData', UI_MESSAGES.DECODE_PAYMENT, 'Decode Payment Failed', this.APIUrl + '/' + updatedLnImplementation + (updatedLnImplementation === 'cln' ? API_END_POINTS.UTILITY_API + '/decode' : API_END_POINTS.PAYMENTS_API + '/decode/' + payment), err); } return throwError(() => new Error(this.extractErrorMessage(err))); - }) - ); + })); })); } @@ -171,14 +171,14 @@ export class DataService implements OnDestroy { })); } - bumpFee(txid: string, outputIndex: number, targetConf: number | null, satPerByte: number | null) { + bumpFee(txid: string, outputIndex: number, targetConf: number | null, satPerVByte: number | null) { return this.lnImplementationUpdated.pipe(first(), mergeMap((updatedLnImplementation) => { const bumpFeeBody: any = { txid: txid, outputIndex: outputIndex }; if (targetConf) { bumpFeeBody.targetConf = targetConf; } - if (satPerByte) { - bumpFeeBody.satPerByte = satPerByte; + if (satPerVByte) { + bumpFeeBody.satPerVByte = satPerVByte; } this.store.dispatch(openSpinner({ payload: UI_MESSAGES.BUMP_FEE })); return this.httpClient.post(this.APIUrl + '/' + updatedLnImplementation + API_END_POINTS.WALLET_API + '/bumpfee', bumpFeeBody).pipe( diff --git a/src/app/shared/services/totp.service.spec.ts b/src/app/shared/services/totp.service.spec.ts new file mode 100644 index 00000000..3ff0476f --- /dev/null +++ b/src/app/shared/services/totp.service.spec.ts @@ -0,0 +1,50 @@ +import { TestBed } from '@angular/core/testing'; + +import { TotpService } from './totp.service'; + +describe('TotpService', () => { + let service: TotpService; + // RFC 6238 appendix B secret ("12345678901234567890" ascii) in base32. + const rfcSecret = 'GEZDGNBVGY3TQOJQGEZDGNBVGY3TQOJQ'; + + beforeEach(() => { + TestBed.configureTestingModule({ providers: [TotpService] }); + service = TestBed.inject(TotpService); + }); + + it('should generate RFC 6238 SHA1 test-vector tokens (matching otplib)', async () => { + // 6-digit truncations of the appendix B vectors; verified identical to + // otplib.authenticator.generate() at the same epochs. + expect(await service.generate(rfcSecret, 59000)).toBe('287082'); + expect(await service.generate(rfcSecret, 1111111109000)).toBe('081804'); + expect(await service.generate(rfcSecret, 1234567890000)).toBe('005924'); + expect(await service.generate(rfcSecret, 2000000000000)).toBe('279037'); + }); + + it('should check tokens against the same epoch window', async () => { + expect(await service.check('287082', rfcSecret, 59000)).toBe(true); + expect(await service.check('287082', rfcSecret, 2000000000000)).toBe(false); + expect(await service.check('123456', rfcSecret, 59000)).toBe(false); + expect(await service.check('28708a', rfcSecret, 59000)).toBe(false); + expect(await service.check('', rfcSecret, 59000)).toBe(false); + }); + + it('should reject an invalid base32 secret instead of throwing', async () => { + expect(await service.check('287082', 'not!base32', 59000)).toBe(false); + }); + + it('should generate 16 character base32 secrets', () => { + const secret = service.generateSecret(); + expect(secret.length).toBe(16); + expect(secret).toMatch(/^[A-Z2-7]+$/); + expect(service.generateSecret()).not.toBe(secret); + }); + + it('should build the same keyuri as otplib.authenticator.keyuri', () => { + // Exact output of authenticator.keyuri('', 'Ride The Lightning (RTL)', secret). + expect(service.keyuri('', 'Ride The Lightning (RTL)', rfcSecret)).toBe( + 'otpauth://totp/Ride%20The%20Lightning%20(RTL):?secret=' + rfcSecret + + '&period=30&digits=6&algorithm=SHA1&issuer=Ride%20The%20Lightning%20(RTL)' + ); + }); +}); diff --git a/src/app/shared/services/totp.service.ts b/src/app/shared/services/totp.service.ts new file mode 100644 index 00000000..d8fb3fcc --- /dev/null +++ b/src/app/shared/services/totp.service.ts @@ -0,0 +1,96 @@ +import { Injectable } from '@angular/core'; + +/** + * RFC 6238 TOTP (SHA1, 6 digits, 30 second step, window 0) implemented with + * WebCrypto, replacing otplib in the browser bundle so the crypto-browserify + * polyfill chain can be dropped. The backend still verifies login tokens with + * otplib, so the parameters here must stay in sync with + * server/controllers/shared/authenticate.ts (otplib authenticator defaults). + */ +@Injectable({ providedIn: 'root' }) +export class TotpService { + + private base32Chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567'; + + generateSecret(numberOfBytes: number = 10): string { + const bytes = new Uint8Array(numberOfBytes); + window.crypto.getRandomValues(bytes); + return this.base32Encode(bytes); + } + + keyuri(accountName: string, issuer: string, secret: string): string { + return 'otpauth://totp/' + encodeURIComponent(issuer) + ':' + encodeURIComponent(accountName) + + '?secret=' + secret + '&period=30&digits=6&algorithm=SHA1&issuer=' + encodeURIComponent(issuer); + } + + check(token: string, secret: string, epochMs?: number): Promise { + if (!((/^\d+$/).test(token))) { return Promise.resolve(false); } + return this.generate(secret, epochMs).then((expectedToken) => expectedToken === token).catch(() => false); + } + + async generate(secret: string, epochMs?: number): Promise { + const counter = Math.floor((epochMs ?? Date.now()) / 30 / 1000); + const counterBytes = new Uint8Array(8); + let remaining = counter; + for (let i = 7; i >= 0; i--) { + counterBytes[i] = remaining & 0xff; + remaining = Math.floor(remaining / 256); + } + const hmacKey = this.createHmacKey(this.base32Decode(secret)); + const cryptoKey = await window.crypto.subtle.importKey('raw', hmacKey, { name: 'HMAC', hash: 'SHA-1' }, false, ['sign']); + const digest = new Uint8Array(await window.crypto.subtle.sign('HMAC', cryptoKey, counterBytes)); + const offset = digest[digest.length - 1] & 0xf; + const binary = ((digest[offset] & 0x7f) << 24) | ((digest[offset + 1] & 0xff) << 16) | ((digest[offset + 2] & 0xff) << 8) | (digest[offset + 3] & 0xff); + return String(binary % (10 ** 6)).padStart(6, '0'); + } + + // Mirrors otplib's totpPadSecret for SHA1 (repeat to 20 bytes below 10 bytes). + // Never triggers for the 10 byte secrets generated above, which is the only + // case RTL produces; note otplib itself under-repeats to 18 bytes for 1- and + // 9-byte secrets, so parity is exact only for the secrets used here. + private createHmacKey(secretBytes: Uint8Array): Uint8Array { + if (secretBytes.length * 2 >= 20) { return secretBytes; } + const padded = new Uint8Array(20); + for (let i = 0; i < padded.length; i++) { + padded[i] = secretBytes[i % secretBytes.length]; + } + return padded; + } + + private base32Encode(bytes: Uint8Array): string { + let bits = 0; + let value = 0; + let encoded = ''; + for (const byte of bytes) { + value = (value << 8) | byte; + bits += 8; + while (bits >= 5) { + encoded += this.base32Chars[(value >>> (bits - 5)) & 31]; + bits -= 5; + } + } + if (bits > 0) { + encoded += this.base32Chars[(value << (5 - bits)) & 31]; + } + return encoded; + } + + private base32Decode(secret: string): Uint8Array { + const normalized = secret.toUpperCase().replace(/[=]+$/, ''); + let bits = 0; + let value = 0; + const bytes: number[] = []; + for (const char of normalized) { + const index = this.base32Chars.indexOf(char); + if (index < 0) { throw new Error('Invalid base32 character in secret.'); } + value = (value << 5) | index; + bits += 5; + if (bits >= 8) { + bytes.push((value >>> (bits - 8)) & 0xff); + bits -= 8; + } + } + return Uint8Array.from(bytes); + } + +} diff --git a/src/app/shared/shared.module.ts b/src/app/shared/shared.module.ts index 35750e58..c3cdf190 100644 --- a/src/app/shared/shared.module.ts +++ b/src/app/shared/shared.module.ts @@ -3,11 +3,8 @@ import { CommonModule, DecimalPipe, TitleCasePipe, DatePipe } from '@angular/com import { RouterModule } from '@angular/router'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; -import { HttpClientModule } from '@angular/common/http'; import { FontAwesomeModule } from '@fortawesome/angular-fontawesome'; -import { FlexLayoutModule } from '@angular/flex-layout'; import { LayoutModule } from '@angular/cdk/layout'; -import { Platform } from '@angular/cdk/platform'; import { MatNativeDateModule, DateAdapter, MAT_DATE_FORMATS, MAT_DATE_LOCALE, NativeDateAdapter, MatDateFormats } from '@angular/material/core'; import { MatDialogModule, MAT_DIALOG_DEFAULT_OPTIONS } from '@angular/material/dialog'; @@ -41,6 +38,7 @@ import { MatToolbarModule } from '@angular/material/toolbar'; import { MatTooltipModule } from '@angular/material/tooltip'; import { MatTreeModule } from '@angular/material/tree'; import { MatChipsModule } from '@angular/material/chips'; +import { FlexLayoutModule } from '@angular/flex-layout'; import { NgxChartsModule } from '@swimlane/ngx-charts'; import { QrCodeModule } from 'ng-qrcode'; @@ -106,6 +104,7 @@ import { MonthlyDateDirective, YearlyDateDirective } from './directive/date-form import { MaxValidator } from './directive/max-amount.directive'; import { MinValidator } from './directive/min-amount.directive'; import { RemoveLeadingZerosPipe, CamelCasePipe, CamelCaseWithReplacePipe, CamelCaseWithSpacesPipe } from './pipes/app.pipe'; +import { HttpClientModule } from '@angular/common/http'; const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = { suppressScrollX: false, @@ -144,10 +143,10 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = { @NgModule({ imports: [ CommonModule, + HttpClientModule, FormsModule, ReactiveFormsModule, FontAwesomeModule, - FlexLayoutModule, LayoutModule, MatDialogModule, MatButtonModule, @@ -166,6 +165,7 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = { MatProgressSpinnerModule, MatRadioModule, MatTreeModule, + FlexLayoutModule, MatChipsModule, MatSelectModule, MatSidenavModule, @@ -184,14 +184,12 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = { NgxChartsModule, QrCodeModule, RouterModule, - HttpClientModule, PerfectScrollbarModule ], exports: [ FormsModule, ReactiveFormsModule, FontAwesomeModule, - FlexLayoutModule, LayoutModule, MatDialogModule, MatButtonModule, @@ -210,6 +208,7 @@ export const DEFAULT_DATE_FORMAT: MatDateFormats = { MatProgressSpinnerModule, MatRadioModule, MatTreeModule, + FlexLayoutModule, MatChipsModule, MatSelectModule, MatSidenavModule, diff --git a/src/app/shared/test-helpers/mock-services.ts b/src/app/shared/test-helpers/mock-services.ts index 45233d78..33057fbc 100644 --- a/src/app/shared/test-helpers/mock-services.ts +++ b/src/app/shared/test-helpers/mock-services.ts @@ -98,7 +98,7 @@ export class mockDataService { return of(mockResponseData.verifyMessage); }; - bumpFee(txid: string, outputIndex: number, targetConf: number, satPerByte: number) { + bumpFee(txid: string, outputIndex: number, targetConf: number, satPerVByte: number) { return of(mockResponseData.bumpFee); }; diff --git a/src/app/shared/theme/skins/blue.scss b/src/app/shared/theme/skins/blue.scss index d52fd87d..99e4a413 100644 --- a/src/app/shared/theme/skins/blue.scss +++ b/src/app/shared/theme/skins/blue.scss @@ -1,25 +1,26 @@ @use '@angular/material' as mat; -@import './color-swatches/red-warn.swatch.scss'; -@import './color-swatches/white.swatch.scss'; +@use './color-swatches/blue-primary.swatch.scss' as *; +@use './color-swatches/red-warn.swatch.scss' as *; +@use './color-swatches/white.swatch.scss' as *; +@use './color-swatches/gray.swatch.scss' as *; -$blue-primary: mat.define-palette(mat.$blue-palette, 700, 200, A200); -$blue-accent: mat.define-palette(mat.$gray-palette, 800, 600, 900); -$blue-accent-night: mat.define-palette($mat-white, 300, 600, 900); -$blue-warn: mat.define-palette($red-warn, 500); -$blue-warn-night: mat.define-palette($red-warn, A700); +$blue-primary: mat.m2-define-palette($blue-primary-palette, 700, 200, A200); +$day-accent: mat.m2-define-palette($gray-palette, 800, 600, 900); +$night-accent: mat.m2-define-palette($white-palette, 300, 600, 900); +$red-warn: mat.m2-define-palette($red-warn-palette, 500, 300, 200); -$blue-night-theme: mat.define-dark-theme(( - color: ( - primary: $blue-primary, - accent: $blue-accent-night, - warn: $blue-warn-night - ) +$blue-night-theme: mat.m2-define-dark-theme(( + color: ( + primary: $blue-primary, + accent: $night-accent, + warn: $red-warn, + ) )); -$blue-day-theme: mat.define-light-theme(( - color: ( - primary: $blue-primary, - accent: $blue-accent, - warn: $blue-warn - ) +$blue-day-theme: mat.m2-define-light-theme(( + color: ( + primary: $blue-primary, + accent: $day-accent, + warn: $red-warn, + ) )); diff --git a/src/app/shared/theme/skins/color-swatches/blue-primary.swatch.scss b/src/app/shared/theme/skins/color-swatches/blue-primary.swatch.scss new file mode 100644 index 00000000..cbd417e6 --- /dev/null +++ b/src/app/shared/theme/skins/color-swatches/blue-primary.swatch.scss @@ -0,0 +1,35 @@ +@use '@angular/material' as mat; + +$blue-primary-palette: ( + 50: #e3f2fd, + 100: #bbdefb, + 200: #90caf9, + 300: #64b5f6, + 400: #42a5f5, + 500: #2196f3, + 600: #1e88e5, + 700: #1976d2, + 800: #1565c0, + 900: #0d47a1, + A100: #82b1ff, + A200: #448aff, + A400: #2979ff, + A700: #2962ff, + + contrast: ( + 50: rgba(black, 0.87), + 100: rgba(black, 0.87), + 200: rgba(black, 0.87), + 300: rgba(black, 0.87), + 400: rgba(black, 0.87), + 500: rgba(white, 0.87), + 600: rgba(white, 0.87), + 700: rgba(white, 0.87), + 800: rgba(white, 0.87), + 900: rgba(white, 0.87), + A100: rgba(black, 0.87), + A200: rgba(white, 0.87), + A400: rgba(white, 0.87), + A700: rgba(white, 0.87) + ) +); diff --git a/src/app/shared/theme/skins/color-swatches/gray.swatch.scss b/src/app/shared/theme/skins/color-swatches/gray.swatch.scss new file mode 100644 index 00000000..e11e8693 --- /dev/null +++ b/src/app/shared/theme/skins/color-swatches/gray.swatch.scss @@ -0,0 +1,26 @@ +@use '@angular/material' as mat; + +$gray-palette: ( + 50 : #fafafa, + 100: #f5f5f5, + 200: #eeeeee, + 300: #e0e0e0, + 400: #bdbdbd, + 500: #9e9e9e, + 600: #757575, + 700: #616161, + 800: #424242, + 900: #212121, + contrast: ( + 50 : rgba(black, 0.87), + 100: rgba(black, 0.87), + 200: rgba(black, 0.87), + 300: rgba(black, 0.87), + 400: rgba(black, 0.87), + 500: rgba(white, 1), + 600: rgba(white, 1), + 700: rgba(white, 1), + 800: rgba(white, 1), + 900: rgba(white, 1), + ) +); diff --git a/src/app/shared/theme/skins/color-swatches/green-primary.swatch.scss b/src/app/shared/theme/skins/color-swatches/green-primary.swatch.scss index 5b155ad5..03a4dc69 100644 --- a/src/app/shared/theme/skins/color-swatches/green-primary.swatch.scss +++ b/src/app/shared/theme/skins/color-swatches/green-primary.swatch.scss @@ -1,6 +1,6 @@ @use '@angular/material' as mat; -$green-primary: ( +$green-primary-palette: ( 50 : #e3eae5, 100 : #bacbbe, 200 : #8ca893, diff --git a/src/app/shared/theme/skins/color-swatches/indigo-primary.swatch.scss b/src/app/shared/theme/skins/color-swatches/indigo-primary.swatch.scss new file mode 100644 index 00000000..1496abb9 --- /dev/null +++ b/src/app/shared/theme/skins/color-swatches/indigo-primary.swatch.scss @@ -0,0 +1,35 @@ +@use '@angular/material' as mat; + +$indigo-primary-palette: ( + 50: #e8eaf6, + 100: #c5cae9, + 200: #9fa8da, + 300: #7986cb, + 400: #5c6bc0, + 500: #3f51b5, + 600: #3949ab, + 700: #303f9f, + 800: #283593, + 900: #1a237e, + A100: #8c9eff, + A200: #536dfe, + A400: #3d5afe, + A700: #304ffe, + + contrast: ( + 50: rgba(black, 0.87), + 100: rgba(black, 0.87), + 200: rgba(black, 0.87), + 300: rgba(white, 0.87), + 400: rgba(white, 0.87), + 500: rgba(white, 0.87), + 600: rgba(white, 0.87), + 700: rgba(white, 0.87), + 800: rgba(white, 0.87), + 900: rgba(white, 0.87), + A100: rgba(black, 0.87), + A200: rgba(white, 0.87), + A400: rgba(white, 0.87), + A700: rgba(white, 0.87) + ) +); diff --git a/src/app/shared/theme/skins/color-swatches/pink-primary.swatch.scss b/src/app/shared/theme/skins/color-swatches/pink-primary.swatch.scss new file mode 100644 index 00000000..1c323e17 --- /dev/null +++ b/src/app/shared/theme/skins/color-swatches/pink-primary.swatch.scss @@ -0,0 +1,35 @@ +@use '@angular/material' as mat; + +$pink-primary-palette: ( + 50: #fce4ec, + 100: #f8bbd0, + 200: #f48fb1, + 300: #f06292, + 400: #ec407a, + 500: #e91e63, + 600: #d81b60, + 700: #c2185b, + 800: #ad1457, + 900: #880e4f, + A100: #ff80ab, + A200: #ff4081, + A400: #f50057, + A700: #c51162, + + contrast: ( + 50: rgba(black, 0.87), + 100: rgba(black, 0.87), + 200: rgba(black, 0.87), + 300: rgba(white, 0.87), + 400: rgba(white, 0.87), + 500: rgba(white, 0.87), + 600: rgba(white, 0.87), + 700: rgba(white, 0.87), + 800: rgba(white, 0.87), + 900: rgba(white, 0.87), + A100: rgba(black, 0.87), + A200: rgba(white, 0.87), + A400: rgba(white, 0.87), + A700: rgba(white, 0.87) + ) +); diff --git a/src/app/shared/theme/skins/color-swatches/purple-primary.swatch.scss b/src/app/shared/theme/skins/color-swatches/purple-primary.swatch.scss index 4b0ea882..ecf4c8e5 100644 --- a/src/app/shared/theme/skins/color-swatches/purple-primary.swatch.scss +++ b/src/app/shared/theme/skins/color-swatches/purple-primary.swatch.scss @@ -1,6 +1,6 @@ @use '@angular/material' as mat; -$purple-primary: ( +$purple-primary-palette: ( 50 : #eceaf4, 100 : #cfcae4, 200 : #afa7d2, diff --git a/src/app/shared/theme/skins/color-swatches/red-warn.swatch.scss b/src/app/shared/theme/skins/color-swatches/red-warn.swatch.scss index 36d6f1c5..7807da3a 100644 --- a/src/app/shared/theme/skins/color-swatches/red-warn.swatch.scss +++ b/src/app/shared/theme/skins/color-swatches/red-warn.swatch.scss @@ -1,6 +1,6 @@ @use '@angular/material' as mat; -$red-warn: ( +$red-warn-palette: ( 50 : #f6e0e4, 100 : #e7b3bc, 200 : #d88090, @@ -15,20 +15,16 @@ $red-warn: ( A200 : #ff8085, A400 : #ff4d53, A700 : #ff343b, - contrast: ( - 50 : #000000, - 100 : #000000, - 200 : #000000, - 300 : #ffffff, - 400 : #ffffff, - 500 : #ffffff, - 600 : #ffffff, - 700 : #ffffff, - 800 : #ffffff, - 900 : #ffffff, - A100 : #000000, - A200 : #000000, - A400 : #000000, - A700 : #ffffff, - ) + contrast: ( + 50 : rgba(black, 0.87), + 100: rgba(black, 0.87), + 200: rgba(black, 0.87), + 300: rgba(black, 0.87), + 400: rgba(black, 0.87), + 500: rgba(white, 1), + 600: rgba(white, 1), + 700: rgba(white, 1), + 800: rgba(white, 1), + 900: rgba(white, 1), + ) ); diff --git a/src/app/shared/theme/skins/color-swatches/teal-primary.swatch.scss b/src/app/shared/theme/skins/color-swatches/teal-primary.swatch.scss new file mode 100644 index 00000000..b75eeea5 --- /dev/null +++ b/src/app/shared/theme/skins/color-swatches/teal-primary.swatch.scss @@ -0,0 +1,35 @@ +@use '@angular/material' as mat; + +$teal-primary-palette: ( + 50: #e0f2f1, + 100: #b2dfdb, + 200: #80cbc4, + 300: #4db6ac, + 400: #26a69a, + 500: #009688, + 600: #00897b, + 700: #00796b, + 800: #00695c, + 900: #004d40, + A100: #a7ffeb, + A200: #64ffda, + A400: #1de9b6, + A700: #00bfa5, + + contrast: ( + 50: rgba(black, 0.87), + 100: rgba(black, 0.87), + 200: rgba(black, 0.87), + 300: rgba(black, 0.87), + 400: rgba(black, 0.87), + 500: rgba(white, 0.87), + 600: rgba(white, 0.87), + 700: rgba(white, 0.87), + 800: rgba(white, 0.87), + 900: rgba(white, 0.87), + A100: rgba(black, 0.87), + A200: rgba(black, 0.87), + A400: rgba(black, 0.87), + A700: rgba(white, 0.87) + ) +); diff --git a/src/app/shared/theme/skins/color-swatches/white.swatch.scss b/src/app/shared/theme/skins/color-swatches/white.swatch.scss index ca766fb3..05feedd7 100644 --- a/src/app/shared/theme/skins/color-swatches/white.swatch.scss +++ b/src/app/shared/theme/skins/color-swatches/white.swatch.scss @@ -1,6 +1,6 @@ @use '@angular/material' as mat; -$mat-white: ( +$white-palette: ( 50 : #ffffff, 100 : #ffffff, 200 : #eeeeee, diff --git a/src/app/shared/theme/skins/color-swatches/yellow-primary.swatch.scss b/src/app/shared/theme/skins/color-swatches/yellow-primary.swatch.scss index db4141f6..b5a77e11 100644 --- a/src/app/shared/theme/skins/color-swatches/yellow-primary.swatch.scss +++ b/src/app/shared/theme/skins/color-swatches/yellow-primary.swatch.scss @@ -1,6 +1,6 @@ @use '@angular/material' as mat; -$yellow-primary: ( +$yellow-primary-palette: ( 50 : #f2ece4, 100 : #dfcfbc, 200 : #caaf8f, diff --git a/src/app/shared/theme/skins/green.scss b/src/app/shared/theme/skins/green.scss index 57ef3158..5a1fc334 100644 --- a/src/app/shared/theme/skins/green.scss +++ b/src/app/shared/theme/skins/green.scss @@ -1,26 +1,26 @@ @use '@angular/material' as mat; -@import './color-swatches/red-warn.swatch.scss'; -@import './color-swatches/green-primary.swatch.scss'; -@import './color-swatches/white.swatch.scss'; +@use './color-swatches/green-primary.swatch.scss' as *; +@use './color-swatches/red-warn.swatch.scss' as *; +@use './color-swatches/white.swatch.scss' as *; +@use './color-swatches/gray.swatch.scss' as *; -$green-primary: mat.define-palette($green-primary, 500, 300, A200); -$green-accent: mat.define-palette(mat.$gray-palette, 800, 600, 900); -$green-accent-night: mat.define-palette($mat-white, 300, 600, 900); -$green-warn: mat.define-palette($red-warn, 500); -$green-warn-night: mat.define-palette($red-warn, A700); +$green-primary: mat.m2-define-palette($green-primary-palette, 500, 300, A200); +$day-accent: mat.m2-define-palette($gray-palette, 800, 600, 900); +$night-accent: mat.m2-define-palette($white-palette, 300, 600, 900); +$red-warn: mat.m2-define-palette($red-warn-palette, 500, 300, 200); -$green-night-theme: mat.define-dark-theme(( - color: ( - primary: $green-primary, - accent: $green-accent-night, - warn: $green-warn-night - ) +$green-night-theme: mat.m2-define-dark-theme(( + color: ( + primary: $green-primary, + accent: $night-accent, + warn: $red-warn, + ) )); -$green-day-theme: mat.define-light-theme(( - color: ( - primary: $green-primary, - accent: $green-accent, - warn: $green-warn - ) +$green-day-theme: mat.m2-define-light-theme(( + color: ( + primary: $green-primary, + accent: $day-accent, + warn: $red-warn, + ) )); diff --git a/src/app/shared/theme/skins/indigo.scss b/src/app/shared/theme/skins/indigo.scss index 1890d502..366d5bfa 100644 --- a/src/app/shared/theme/skins/indigo.scss +++ b/src/app/shared/theme/skins/indigo.scss @@ -1,25 +1,26 @@ @use '@angular/material' as mat; -@import './color-swatches/red-warn.swatch.scss'; -@import './color-swatches/white.swatch.scss'; +@use './color-swatches/indigo-primary.swatch.scss' as *; +@use './color-swatches/red-warn.swatch.scss' as *; +@use './color-swatches/white.swatch.scss' as *; +@use './color-swatches/gray.swatch.scss' as *; -$indigo-primary: mat.define-palette(mat.$indigo-palette, 500, 200, A200); -$indigo-accent: mat.define-palette(mat.$gray-palette, 800, 600, 900); -$indigo-accent-night: mat.define-palette($mat-white, 300, 600, 900); -$indigo-warn: mat.define-palette($red-warn, 500); -$indigo-warn-night: mat.define-palette($red-warn, A700); +$indigo-primary: mat.m2-define-palette($indigo-primary-palette, 500, 200, A200); +$day-accent: mat.m2-define-palette($gray-palette, 800, 600, 900); +$night-accent: mat.m2-define-palette($white-palette, 300, 600, 900); +$red-warn: mat.m2-define-palette($red-warn-palette, 500, 300, 200); -$indigo-night-theme: mat.define-dark-theme(( - color: ( - primary: $indigo-primary, - accent: $indigo-accent-night, - warn: $indigo-warn-night - ) +$indigo-night-theme: mat.m2-define-dark-theme(( + color: ( + primary: $indigo-primary, + accent: $night-accent, + warn: $red-warn, + ) )); -$indigo-day-theme: mat.define-light-theme(( - color: ( - primary: $indigo-primary, - accent: $indigo-accent, - warn: $indigo-warn - ) +$indigo-day-theme: mat.m2-define-light-theme(( + color: ( + primary: $indigo-primary, + accent: $day-accent, + warn: $red-warn, + ) )); diff --git a/src/app/shared/theme/skins/pink.scss b/src/app/shared/theme/skins/pink.scss index c2be4348..d5ed9610 100644 --- a/src/app/shared/theme/skins/pink.scss +++ b/src/app/shared/theme/skins/pink.scss @@ -1,25 +1,26 @@ @use '@angular/material' as mat; -@import './color-swatches/red-warn.swatch.scss'; -@import './color-swatches/white.swatch.scss'; +@use './color-swatches/pink-primary.swatch.scss' as *; +@use './color-swatches/red-warn.swatch.scss' as *; +@use './color-swatches/white.swatch.scss' as *; +@use './color-swatches/gray.swatch.scss' as *; -$pink-primary: mat.define-palette(mat.$pink-palette, 500, 300, A200); -$pink-accent: mat.define-palette(mat.$gray-palette, 800, 600, 900); -$pink-accent-night: mat.define-palette($mat-white, 300, 600, 900); -$pink-warn: mat.define-palette($red-warn, 500); -$pink-warn-night: mat.define-palette($red-warn, A700); +$pink-primary: mat.m2-define-palette($pink-primary-palette, 500, 300, A200); +$day-accent: mat.m2-define-palette($gray-palette, 800, 600, 900); +$night-accent: mat.m2-define-palette($white-palette, 300, 600, 900); +$red-warn: mat.m2-define-palette($red-warn-palette, 500, 300, 200); -$pink-night-theme: mat.define-dark-theme(( - color: ( - primary: $pink-primary, - accent: $pink-accent-night, - warn: $pink-warn-night - ) +$pink-night-theme: mat.m2-define-dark-theme(( + color: ( + primary: $pink-primary, + accent: $night-accent, + warn: $red-warn, + ) )); -$pink-day-theme: mat.define-light-theme(( - color: ( - primary: $pink-primary, - accent: $pink-accent, - warn: $pink-warn - ) +$pink-day-theme: mat.m2-define-light-theme(( + color: ( + primary: $pink-primary, + accent: $day-accent, + warn: $red-warn, + ) )); diff --git a/src/app/shared/theme/skins/purple.scss b/src/app/shared/theme/skins/purple.scss index 3b5db1b0..1b109948 100644 --- a/src/app/shared/theme/skins/purple.scss +++ b/src/app/shared/theme/skins/purple.scss @@ -1,26 +1,26 @@ @use '@angular/material' as mat; -@import './color-swatches/purple-primary.swatch.scss'; -@import './color-swatches/red-warn.swatch.scss'; -@import './color-swatches/white.swatch.scss'; +@use './color-swatches/purple-primary.swatch.scss' as *; +@use './color-swatches/red-warn.swatch' as *; +@use './color-swatches/white.swatch.scss' as *; +@use './color-swatches/gray.swatch.scss' as *; -$purple-primary: mat.define-palette($purple-primary, 500, 300, A200); -$purple-accent: mat.define-palette(mat.$gray-palette, 800, 600, 900); -$purple-accent-night: mat.define-palette($mat-white, 300, 600, 900); -$purple-warn: mat.define-palette($red-warn, 500); -$purple-warn-night: mat.define-palette($red-warn, A700); +$purple-primary: mat.m2-define-palette($purple-primary-palette, 500, 300, A200); +$day-accent: mat.m2-define-palette($gray-palette, 800, 600, 900); +$night-accent: mat.m2-define-palette($white-palette, 300, 600, 900); +$red-warn: mat.m2-define-palette($red-warn-palette, 500, 300, 200); -$purple-night-theme: mat.define-dark-theme(( - color: ( - primary: $purple-primary, - accent: $purple-accent-night, - warn: $purple-warn-night - ) +$purple-night-theme: mat.m2-define-dark-theme(( + color: ( + primary: $purple-primary, + accent: $night-accent, + warn: $red-warn, + ) )); -$purple-day-theme: mat.define-light-theme(( - color: ( - primary: $purple-primary, - accent: $purple-accent, - warn: $purple-warn - ) +$purple-day-theme: mat.m2-define-light-theme(( + color: ( + primary: $purple-primary, + accent: $day-accent, + warn: $red-warn, + ) )); diff --git a/src/app/shared/theme/skins/teal.scss b/src/app/shared/theme/skins/teal.scss index ec6e12d9..731e2da3 100644 --- a/src/app/shared/theme/skins/teal.scss +++ b/src/app/shared/theme/skins/teal.scss @@ -1,25 +1,26 @@ @use '@angular/material' as mat; -@import './color-swatches/red-warn.swatch.scss'; -@import './color-swatches/white.swatch.scss'; +@use './color-swatches/teal-primary.swatch.scss' as *; +@use './color-swatches/red-warn.swatch.scss' as *; +@use './color-swatches/white.swatch.scss' as *; +@use './color-swatches/gray.swatch.scss' as *; -$teal-primary: mat.define-palette(mat.$teal-palette, 800, 300, A200); -$teal-accent: mat.define-palette(mat.$gray-palette, 800, 600, 900); -$teal-accent-night: mat.define-palette($mat-white, 300, 600, 900); -$teal-warn: mat.define-palette($red-warn, 500); -$teal-warn-night: mat.define-palette($red-warn, A700); +$teal-primary: mat.m2-define-palette($teal-primary-palette, 800, 300, A200); +$day-accent: mat.m2-define-palette($gray-palette, 800, 600, 900); +$night-accent: mat.m2-define-palette($white-palette, 300, 600, 900); +$red-warn: mat.m2-define-palette($red-warn-palette, 500, 300, 200); -$teal-night-theme: mat.define-dark-theme(( - color: ( - primary: $teal-primary, - accent: $teal-accent-night, - warn: $teal-warn-night - ) +$teal-night-theme: mat.m2-define-dark-theme(( + color: ( + primary: $teal-primary, + accent: $night-accent, + warn: $red-warn, + ) )); -$teal-day-theme: mat.define-light-theme(( - color: ( - primary: $teal-primary, - accent: $teal-accent, - warn: $teal-warn - ) +$teal-day-theme: mat.m2-define-light-theme(( + color: ( + primary: $teal-primary, + accent: $day-accent, + warn: $red-warn, + ) )); diff --git a/src/app/shared/theme/skins/yellow.scss b/src/app/shared/theme/skins/yellow.scss index 137ea8c1..f8671b4a 100644 --- a/src/app/shared/theme/skins/yellow.scss +++ b/src/app/shared/theme/skins/yellow.scss @@ -1,26 +1,26 @@ @use '@angular/material' as mat; -@import './color-swatches/red-warn.swatch.scss'; -@import './color-swatches/yellow-primary.swatch.scss'; -@import './color-swatches/white.swatch.scss'; +@use './color-swatches/yellow-primary.swatch.scss' as *; +@use './color-swatches/red-warn.swatch.scss' as *; +@use './color-swatches/white.swatch.scss' as *; +@use './color-swatches/gray.swatch.scss' as *; -$yellow-primary: mat.define-palette($yellow-primary, 500, 300, A200); -$yellow-accent: mat.define-palette(mat.$gray-palette, 800, 600, 900); -$yellow-accent-night: mat.define-palette($mat-white, 300, 600, 900); -$yellow-warn: mat.define-palette($red-warn, 500); -$yellow-warn-night: mat.define-palette($red-warn, A700); +$yellow-primary: mat.m2-define-palette($yellow-primary-palette, 500, 300, A200); +$day-accent: mat.m2-define-palette($gray-palette, 800, 600, 900); +$night-accent: mat.m2-define-palette($white-palette, 300, 600, 900); +$red-warn: mat.m2-define-palette($red-warn-palette, 500, 300, 200); -$yellow-night-theme: mat.define-dark-theme(( - color: ( - primary: $yellow-primary, - accent: $yellow-accent-night, - warn: $yellow-warn-night - ) +$yellow-night-theme: mat.m2-define-dark-theme(( + color: ( + primary: $yellow-primary, + accent: $night-accent, + warn: $red-warn, + ) )); -$yellow-day-theme: mat.define-light-theme(( - color: ( - primary: $yellow-primary, - accent: $yellow-accent, - warn: $yellow-warn - ) -)) +$yellow-day-theme: mat.m2-define-light-theme(( + color: ( + primary: $yellow-primary, + accent: $day-accent, + warn: $red-warn, + ) +)); diff --git a/src/app/shared/theme/styles/root.scss b/src/app/shared/theme/styles/root.scss index f1219566..b5cfdfa1 100644 --- a/src/app/shared/theme/styles/root.scss +++ b/src/app/shared/theme/styles/root.scss @@ -1,6 +1,6 @@ @use 'sass:math' as math; -@import 'constants'; -@import 'mixins'; +@use 'constants' as *; +@use 'mixins' as *; html { width: 100%; @@ -24,7 +24,7 @@ body { overflow: hidden; } -.rtl-container{ +.rtl-container { position:absolute; width: 100%; height: 100%; @@ -1714,3 +1714,30 @@ mat-cell:last-of-type, .mdc-data-table__header-cell:last-of-type, mat-footer-cel } } } + +/* Flex Layout Replacements */ +.flex-9 { flex: 1 1 9%; } +.flex-17 { flex: 1 1 17%; } +.flex-20 { flex: 1 1 20%; } +.flex-25 { flex: 1 1 25%; } +.flex-30 { flex: 1 1 30%; } +.flex-35 { flex: 1 1 35%; } +.flex-40 { flex: 1 1 40%; } +.flex-48 { flex: 1 1 48%; } +.flex-50 { flex: 1 1 50%; } +.flex-70 { flex: 1 1 70%; } +.flex-83 { flex: 1 1 83%; } +.flex-91 { flex: 1 1 91%; } +.flex-100 { flex: 1 1 100%; } + +.align-center-start { + display: flex; + justify-content: center; + align-items: flex-start; +} + +.align-center-center { + display: flex; + justify-content: center; + align-items: center; +} \ No newline at end of file diff --git a/src/app/shared/theme/styles/styles.scss b/src/app/shared/theme/styles/styles.scss index 1cea002d..d84a352f 100644 --- a/src/app/shared/theme/styles/styles.scss +++ b/src/app/shared/theme/styles/styles.scss @@ -1,4 +1,4 @@ -@import './perfect-scrollbar.scss'; +@use './perfect-scrollbar.scss'; -@import './root.scss'; -@import './theme.scss'; +@use './root.scss'; +@use './theme.scss'; \ No newline at end of file diff --git a/src/app/shared/theme/styles/theme-color.scss b/src/app/shared/theme/styles/theme-color.scss index ed3f8828..8b15dc84 100644 --- a/src/app/shared/theme/styles/theme-color.scss +++ b/src/app/shared/theme/styles/theme-color.scss @@ -1,25 +1,26 @@ @use '@angular/material' as mat; @use 'sass:math' as math; -@import "constants"; -@import "mixins"; +@use 'sass:map' as map; +@use 'constants' as *; +@use 'mixins' as *; @mixin theme-color($theme) { - $primary: map-get($theme, primary); - $primary-color: mat.get-color-from-palette($primary); - $primary-lighter: mat.get-color-from-palette($primary, lighter); - $primary-darker: mat.get-color-from-palette($primary, darker); - $accent: map-get($theme, accent); - $accent-color: mat.get-color-from-palette($accent); - $warn: map-get($theme, warn); - $warn-color: mat.get-color-from-palette($warn); - $foreground: map-get($theme, foreground); - $foreground-base: mat.get-color-from-palette($foreground, base); // 1 - $foreground-text: mat.get-color-from-palette($foreground, text); //.87 - $foreground-secondary-text: mat.get-color-from-palette($foreground, secondary-text); // .54 - $foreground-disabled: mat.get-color-from-palette($foreground, disabled); // .38 - $foreground-divider: mat.get-color-from-palette($foreground, divider); // .12 - $background: map-get($theme, background); - $background-color: mat.get-color-from-palette($background, card); + $primary: map.get($theme, primary); + $primary-color: map.get($primary, 500); + $primary-lighter: map.get($primary, lighter); + $primary-darker: map.get($primary, darker); + $accent: map.get($theme, accent); + $accent-color: map.get($accent, 500); + $warn: map.get($theme, warn); + $warn-color: map.get($warn, 500); + $foreground: map.get($theme, foreground); + $foreground-base: map.get($foreground, base); // 1 + $foreground-text: map.get($foreground, text); //.87 + $foreground-secondary-text: map.get($foreground, secondary-text); // .54 + $foreground-disabled: map.get($foreground, disabled); // .38 + $foreground-divider: map.get($foreground, divider); // .12 + $background: map.get($theme, background); + $background-color: map.get($background, card); $hover-background: rgba(0, 0, 0, 0.04); $hover-background-dark: rgba(255, 255, 255, 0.06); @@ -31,7 +32,7 @@ } .mat-progress-bar-buffer { - background-color: mat.get-color-from-palette($primary, 100); + background-color: map.get($primary, 100); } .foreground-text { @@ -298,14 +299,9 @@ } } - .mat-badge-medium.mat-badge-above .mat-badge-content { - top: -1px; - } - .tab-badge { & .mat-badge-content { font-size: 90%; - padding-bottom: 2px; &.mat-badge-active { background: $primary-color; } @@ -313,8 +309,9 @@ } .mat-badge-medium.mat-badge-after .mat-badge-content { - right: unset; - margin-left: $gap !important; + margin-left: math.div($gap, 4) !important; + width: fit-content; + padding: math.div($gap, 4) $gap 0 $gap; @include for_screensize(phone) { margin-left: 0 !important; } @@ -362,11 +359,11 @@ .balances-info-pie-chart { & .legend-label:nth-child(1) .legend-label-color { - background-color: mat.get-color-from-palette($primary, 200) !important; + background-color: map.get($primary, 200) !important; } & .legend-label:nth-child(2) .legend-label-color { - background-color: mat.get-color-from-palette($primary, 600) !important; + background-color: map.get($primary, 600) !important; } } diff --git a/src/app/shared/theme/styles/theme-mode-dark.scss b/src/app/shared/theme/styles/theme-mode-dark.scss index 695d2a69..5c6ce3ca 100644 --- a/src/app/shared/theme/styles/theme-mode-dark.scss +++ b/src/app/shared/theme/styles/theme-mode-dark.scss @@ -1,23 +1,24 @@ @use '@angular/material' as mat; -@import "constants"; +@use 'sass:map' as map; +@use 'constants' as *; @mixin theme-mode-dark($theme) { - $primary: map-get($theme, primary); - $primary-color: mat.get-color-from-palette($primary); - $primary-lighter: mat.get-color-from-palette($primary, lighter); - $primary-darker: mat.get-color-from-palette($primary, darker); - $accent: map-get($theme, accent); - $accent-color: mat.get-color-from-palette($accent); - $warn: map-get($theme, warn); - $warn-color: mat.get-color-from-palette($warn); - $foreground: map-get($theme, foreground); - $foreground-base: mat.get-color-from-palette($foreground, base); // 1 - $foreground-text: mat.get-color-from-palette($foreground, text); //.87 - $foreground-secondary-text: mat.get-color-from-palette($foreground, secondary-text); // .54 - $foreground-disabled: mat.get-color-from-palette($foreground, disabled); // .38 - $foreground-divider: mat.get-color-from-palette($foreground, divider); // .12 - $background: map-get($theme, background); - $background-color: mat.get-color-from-palette($background, card); + $primary: map.get($theme, primary); + $primary-color: map.get($primary, 500); + $primary-lighter: map.get($primary, lighter); + $primary-darker: map.get($primary, darker); + $accent: map.get($theme, accent); + $accent-color: map.get($accent, 500); + $warn: map.get($theme, warn); + $warn-color: map.get($warn, 500); + $foreground: map.get($theme, foreground); + $foreground-base: map.get($foreground, base); // 1 + $foreground-text: map.get($foreground, text); //.87 + $foreground-secondary-text: map.get($foreground, secondary-text); // .54 + $foreground-disabled: map.get($foreground, disabled); // .38 + $foreground-divider: map.get($foreground, divider); // .12 + $background: map.get($theme, background); + $background-color: map.get($background, card); $hover-background: rgba(0, 0, 0, 0.04); $hover-background-dark: rgba(255, 255, 255, 0.06); @@ -237,7 +238,7 @@ border-color: $primary-lighter; } .mat-progress-bar-fill::after { - background-color: mat.get-color-from-palette($primary, 600); + background-color: map.get($primary, 600); } .chart-legend .legend-label:hover, .chart-legend .legend-label .active .legend-label-text { color: $foreground-text !important; @@ -282,10 +283,10 @@ color: $foreground-text; } .mat-progress-bar.this-channel-bar .mat-progress-bar-fill::after { - background-color: mat.get-color-from-palette($accent, A200); + background-color: map.get($accent, A200); } .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer { - background-color: mat.get-color-from-palette($accent, 400); + background-color: map.get($accent, 400); } .color-primary { color: $primary-darker !important; @@ -373,7 +374,7 @@ } .mat-slide-toggle-bar, .mat-step-header .mat-step-icon:not(.mat-step-icon-selected) { - background-color: mat.get-color-from-palette($background, lightest-background); + background-color: map.get($background, lightest-background); } .mat-slide-toggle.mat-disabled { @@ -402,7 +403,7 @@ &.info-icon-primary { color: $primary-darker; } - &.info-icon-text { + &.info-icon-text, &.arrow-downward, &.arrow-upward { color: $foreground-text; } } @@ -418,7 +419,7 @@ } &.two-color { & .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path { - fill: mat.get-color-from-palette($primary, 800); + fill: map.get($primary, 800); } & .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path { fill: $primary-darker; diff --git a/src/app/shared/theme/styles/theme-mode-light.scss b/src/app/shared/theme/styles/theme-mode-light.scss index 76802ae8..50e92c9c 100644 --- a/src/app/shared/theme/styles/theme-mode-light.scss +++ b/src/app/shared/theme/styles/theme-mode-light.scss @@ -1,23 +1,24 @@ @use '@angular/material' as mat; -@import "constants"; +@use 'sass:map' as map; +@use 'constants' as *; @mixin theme-mode-light($theme) { - $primary: map-get($theme, primary); - $primary-color: mat.get-color-from-palette($primary); - $primary-lighter: mat.get-color-from-palette($primary, lighter); - $primary-darker: mat.get-color-from-palette($primary, darker); - $accent: map-get($theme, accent); - $accent-color: mat.get-color-from-palette($accent); - $warn: map-get($theme, warn); - $warn-color: mat.get-color-from-palette($warn); - $foreground: map-get($theme, foreground); - $foreground-base: mat.get-color-from-palette($foreground, base); // 1 - $foreground-text: mat.get-color-from-palette($foreground, text); //.87 - $foreground-secondary-text: mat.get-color-from-palette($foreground, secondary-text); // .54 - $foreground-disabled: mat.get-color-from-palette($foreground, disabled); // .38 - $foreground-divider: mat.get-color-from-palette($foreground, divider); // .12 - $background: map-get($theme, background); - $background-color: mat.get-color-from-palette($background, card); + $primary: map.get($theme, primary); + $primary-color: map.get($primary, 500); + $primary-lighter: map.get($primary, lighter); + $primary-darker: map.get($primary, darker); + $accent: map.get($theme, accent); + $accent-color: map.get($accent, 500); + $warn: map.get($theme, warn); + $warn-color: map.get($warn, 500); + $foreground: map.get($theme, foreground); + $foreground-base: map.get($foreground, base); // 1 + $foreground-text: map.get($foreground, text); //.87 + $foreground-secondary-text: map.get($foreground, secondary-text); // .54 + $foreground-disabled: map.get($foreground, disabled); // .38 + $foreground-divider: map.get($foreground, divider); // .12 + $background: map.get($theme, background); + $background-color: map.get($background, card); $hover-background: rgba(0, 0, 0, 0.04); $hover-background-dark: rgba(255, 255, 255, 0.06); @@ -33,10 +34,10 @@ } } .mat-progress-bar.this-channel-bar .mat-progress-bar-fill::after { - background-color: mat.get-color-from-palette($accent, 700); + background-color: map.get($accent, 700); } .mat-progress-bar.this-channel-bar .mat-progress-bar-buffer { - background-color: mat.get-color-from-palette($accent, 200); + background-color: map.get($accent, 200); } .rtl-top-toolbar { border-bottom: 1px solid white; @@ -191,7 +192,7 @@ fill: $foreground-text; } .mat-progress-bar-fill::after { - background-color: mat.get-color-from-palette($primary, 900); + background-color: map.get($primary, 900); } .modal-qr-code-container { background: $foreground-divider; @@ -323,6 +324,10 @@ &.info-icon-text { color: $foreground-secondary-text; } + &.arrow-downward, &.arrow-upward { + font-size: 150%; + color: $background-color; + } } } @@ -338,10 +343,10 @@ } &.two-color { & .ngx-charts .chart.bar-chart g g:nth-child(2n+1) path { - fill: mat.get-color-from-palette($primary, 900); + fill: map.get($primary, 900); } & .ngx-charts .chart.bar-chart g g:nth-child(2n+2) path { - fill: mat.get-color-from-palette($primary, 200); + fill: map.get($primary, 200); } } } diff --git a/src/app/shared/theme/styles/theme.scss b/src/app/shared/theme/styles/theme.scss index 7fc48c69..604fa231 100644 --- a/src/app/shared/theme/styles/theme.scss +++ b/src/app/shared/theme/styles/theme.scss @@ -1,104 +1,101 @@ @use '@angular/material' as mat; -@import 'theme-mode-dark'; -@import 'theme-mode-light'; -@import 'theme-color'; -@import "../skins/purple"; +@use 'theme-mode-dark'; +@use 'theme-mode-light'; +@use 'theme-color'; +@use '../skins/purple' as *; +@use '../skins/blue' as *; +@use '../skins/indigo' as *; +@use '../skins/green' as *; +@use '../skins/teal' as *; +@use '../skins/pink' as *; +@use '../skins/yellow' as *; // Default Theme Light & Purple @include mat.all-component-themes($purple-day-theme); -// Adjust Single Component Style -// @include mat.button-color($pink-day-theme); - .rtl-container{ @include mat.core(); &.purple { &.day { - @include theme-mode-light($purple-day-theme); - @include theme-color($purple-day-theme); + @include theme-mode-light.theme-mode-light($purple-day-theme); + @include theme-color.theme-color($purple-day-theme); } &.night { @include mat.all-component-colors($purple-night-theme); - @include theme-mode-dark($purple-night-theme); - @include theme-color($purple-night-theme); + @include theme-mode-dark.theme-mode-dark($purple-night-theme); + @include theme-color.theme-color($purple-night-theme); } } &.blue{ - @import "../skins/blue"; &.day { @include mat.all-component-colors($blue-day-theme); - @include theme-mode-light($blue-day-theme); - @include theme-color($blue-day-theme); + @include theme-mode-light.theme-mode-light($blue-day-theme); + @include theme-color.theme-color($blue-day-theme); } &.night { @include mat.all-component-colors($blue-night-theme); - @include theme-mode-dark($blue-night-theme); - @include theme-color($blue-night-theme); + @include theme-mode-dark.theme-mode-dark($blue-night-theme); + @include theme-color.theme-color($blue-night-theme); } } &.indigo{ - @import "../skins/indigo"; &.day { @include mat.all-component-colors($indigo-day-theme); - @include theme-mode-light($indigo-day-theme); - @include theme-color($indigo-day-theme); + @include theme-mode-light.theme-mode-light($indigo-day-theme); + @include theme-color.theme-color($indigo-day-theme); } &.night { @include mat.all-component-colors($indigo-night-theme); - @include theme-mode-dark($indigo-night-theme); - @include theme-color($indigo-night-theme); + @include theme-mode-dark.theme-mode-dark($indigo-night-theme); + @include theme-color.theme-color($indigo-night-theme); } } &.green{ - @import "../skins/green"; &.day { @include mat.all-component-colors($green-day-theme); - @include theme-mode-light($green-day-theme); - @include theme-color($green-day-theme); + @include theme-mode-light.theme-mode-light($green-day-theme); + @include theme-color.theme-color($green-day-theme); } &.night { @include mat.all-component-colors($green-night-theme); - @include theme-mode-dark($green-night-theme); - @include theme-color($green-night-theme); + @include theme-mode-dark.theme-mode-dark($green-night-theme); + @include theme-color.theme-color($green-night-theme); } } &.teal{ - @import "../skins/teal"; &.day { @include mat.all-component-colors($teal-day-theme); - @include theme-mode-light($teal-day-theme); - @include theme-color($teal-day-theme); + @include theme-mode-light.theme-mode-light($teal-day-theme); + @include theme-color.theme-color($teal-day-theme); } &.night { @include mat.all-component-colors($teal-night-theme); - @include theme-mode-dark($teal-night-theme); - @include theme-color($teal-night-theme); + @include theme-mode-dark.theme-mode-dark($teal-night-theme); + @include theme-color.theme-color($teal-night-theme); } } &.pink{ - @import "../skins/pink"; &.day { @include mat.all-component-colors($pink-day-theme); - @include theme-mode-light($pink-day-theme); - @include theme-color($pink-day-theme); + @include theme-mode-light.theme-mode-light($pink-day-theme); + @include theme-color.theme-color($pink-day-theme); } &.night { @include mat.all-component-colors($pink-night-theme); - @include theme-mode-dark($pink-night-theme); - @include theme-color($pink-night-theme); + @include theme-mode-dark.theme-mode-dark($pink-night-theme); + @include theme-color.theme-color($pink-night-theme); } } &.yellow{ - @import "../skins/yellow"; &.day { @include mat.all-component-colors($yellow-day-theme); - @include theme-mode-light($yellow-day-theme); - @include theme-color($yellow-day-theme); + @include theme-mode-light.theme-mode-light($yellow-day-theme); + @include theme-color.theme-color($yellow-day-theme); } &.night { @include mat.all-component-colors($yellow-night-theme); - @include theme-mode-dark($yellow-night-theme); - @include theme-color($yellow-night-theme); + @include theme-mode-dark.theme-mode-dark($yellow-night-theme); + @include theme-color.theme-color($yellow-night-theme); } } } diff --git a/src/app/store/rtl.effects.ts b/src/app/store/rtl.effects.ts index a9072bce..66ea5af5 100644 --- a/src/app/store/rtl.effects.ts +++ b/src/app/store/rtl.effects.ts @@ -368,7 +368,7 @@ export class RTLEffects implements OnDestroy { this.store.dispatch(resetECLStore()); this.store.dispatch(updateRootAPICallStatus({ payload: { action: 'Login', status: APICallStatusEnum.INITIATED } })); return this.httpClient.post(API_END_POINTS.AUTHENTICATE_API, { - authenticateWith: (!action.payload.password) ? AuthenticateWith.JWT : AuthenticateWith.PASSWORD, + authenticateWith: (action.payload.password === 'disabledAuth') ? AuthenticateWith.NOAUTH : (!action.payload.password) ? AuthenticateWith.JWT : AuthenticateWith.PASSWORD, authenticationValue: (!action.payload.password) ? (this.sessionService.getItem('token') ? this.sessionService.getItem('token') : '') : action.payload.password, twoFAToken: (action.payload.twoFAToken) ? action.payload.twoFAToken : '' }).pipe( @@ -423,18 +423,31 @@ export class RTLEffects implements OnDestroy { this.store.dispatch(openSpinner({ payload: UI_MESSAGES.LOG_OUT })); if (appConfig.SSO && +appConfig.SSO.rtlSSO) { window.location.href = appConfig.SSO.logoutRedirectLink; - } else { - this.router.navigate(['./login'], { state: { logoutReason: action.payload } }); } this.sessionService.clearAll(); this.store.dispatch(setNodeData({ payload: {} })); this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.LOG_OUT })); this.logger.info('Logged out from browser'); + // Navigate with a full document load once the server has destroyed the + // session, so a fresh CSRF token (bound to the new session) is minted + // before the next login. The reason survives the reload in sessionStorage. + const navigateToLogin = () => { + if (!(appConfig.SSO && +appConfig.SSO.rtlSSO)) { + if (action.payload) { this.sessionService.setItem('logoutReason', action.payload); } + window.location.href = document.baseURI + 'login'; + } + }; return this.httpClient.get(API_END_POINTS.AUTHENTICATE_API + '/logout'). pipe(map((postRes: any) => { this.logger.info(postRes); this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.LOG_OUT })); this.logger.info('Logged out from server'); + navigateToLogin(); + }), catchError((err) => { + this.logger.error(err); + this.store.dispatch(closeSpinner({ payload: UI_MESSAGES.LOG_OUT })); + navigateToLogin(); + return of({ type: RTLActions.VOID }); })); })), { dispatch: false } diff --git a/src/app/store/rtl.state.ts b/src/app/store/rtl.state.ts index 02255b8a..9d0553f7 100644 --- a/src/app/store/rtl.state.ts +++ b/src/app/store/rtl.state.ts @@ -30,6 +30,7 @@ export const initRootState: RootState = { SSO: { rtlSSO: 0, logoutRedirectLink: '' }, enable2FA: false, secret2FA: '', + disableAuth: false, allowPasswordUpdate: true, nodes: [{ settings: initNodeSettings, authentication: initNodeAuthentication }] }, diff --git a/src/tsconfig.spec.json b/src/tsconfig.spec.json index 629097cb..eb98b39f 100644 --- a/src/tsconfig.spec.json +++ b/src/tsconfig.spec.json @@ -2,7 +2,7 @@ "extends": "../tsconfig.json", "compilerOptions": { "outDir": "../out-tsc/spec", - "module": "CommonJS", + "module": "ES2022", "types": [ "node", "jasmine" ] diff --git a/test/backend/authenticate.test.mjs b/test/backend/authenticate.test.mjs new file mode 100644 index 00000000..14b8d797 --- /dev/null +++ b/test/backend/authenticate.test.mjs @@ -0,0 +1,171 @@ +import assert from 'node:assert/strict'; +import test from 'node:test'; + +import jwt from 'jsonwebtoken'; +import * as otplib from 'otplib'; +import { authenticateUser } from '../../backend/controllers/shared/authenticate.js'; +import { Common } from '../../backend/utils/common.js'; + +const { authenticator } = otplib; + +const TOTP_SECRET = 'JBSWY3DPEHPK3PXP'; +const PASSWORD_HASH = 'hashed-password'; + +const setupAppConfig = (enable2FA, secret2FA) => { + Common.appConfig = { + defaultNodeIndex: 0, + selectedNodeIndex: 0, + rtlConfFilePath: '', + dbDirectoryPath: '', + rtlPass: PASSWORD_HASH, + allowPasswordUpdate: true, + enable2FA: enable2FA, + secret2FA: secret2FA, + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' }, + nodes: [] + }; + Common.selectedNode = null; + Common.nodes = []; +}; + +// failedLoginAttempts is module-level state in authenticate.js, keyed by the request IP +// from common.getRequestIP, which prefers x-forwarded-for (server/utils/common.ts). +// Unique IPs give each call a fresh counter; tests exercising the counter itself pass an +// explicit ip to share one key across calls. +let ipCounter = 0; +const nextIP = () => '10.0.0.' + (ipCounter = ipCounter + 1); +const mockRequest = ({ twoFAToken, ip, authToken, password } = {}) => { + const headers = { 'x-forwarded-for': ip || nextIP() }; + if (authToken) { headers.authorization = 'Bearer ' + authToken; } + return { + body: { authenticateWith: 'PASSWORD', authenticationValue: password || PASSWORD_HASH, twoFAToken: twoFAToken }, + session: {}, + headers: headers, + connection: {}, + socket: {} + }; +}; + +const mockResponse = () => { + const res = { statusCode: null, body: null }; + res.status = (code) => { + res.statusCode = code; + return { json: (body) => { res.body = body; } }; + }; + return res; +}; + +const mockSessionToken = () => jwt.sign({ user: 'NODE_USER' }, Common.secret_key); + +test('rejects login without a 2FA token when 2FA is enabled', () => { + setupAppConfig(true, TOTP_SECRET); + for (const missingToken of [undefined, '']) { + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: missingToken }), res, null); + assert.equal(res.statusCode, 401); + assert.match(res.body.error, /2FA/); + } +}); + +test('rejects login with an invalid 2FA token when 2FA is enabled', () => { + setupAppConfig(true, TOTP_SECRET); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: '000000' }), res, null); + assert.equal(res.statusCode, 401); + assert.match(res.body.error, /2FA/); +}); + +test('rejects a non-string 2FA token when 2FA is enabled', () => { + setupAppConfig(true, TOTP_SECRET); + // A JSON body can carry an array/object/number. otplib 12.0.1 coerces and rejects these + // (digit regex, then strict === against the string token), but the typeof guard keeps the + // rejection explicit and independent of otplib internals. + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: ['1', '2', '3', '4', '5', '6'] }), res, null); + assert.equal(res.statusCode, 401); + assert.match(res.body.error, /2FA/); +}); + +test('accepts login with a valid 2FA token when 2FA is enabled', () => { + setupAppConfig(true, TOTP_SECRET); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: authenticator.generate(TOTP_SECRET) }), res, null); + assert.equal(res.statusCode, 200); + assert.equal(typeof res.body.token, 'string'); +}); + +test('accepts password-only re-authorization from an authenticated session when 2FA is enabled', () => { + // In-app re-authorization (e.g. the password prompt before on-chain sends) carries the + // session JWT via the auth interceptor; that session was itself minted after 2FA. + setupAppConfig(true, TOTP_SECRET); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: undefined, authToken: mockSessionToken() }), res, null); + assert.equal(res.statusCode, 200); + assert.equal(typeof res.body.token, 'string'); +}); + +test('rejects a wrong password even with an authenticated session when 2FA is enabled', () => { + setupAppConfig(true, TOTP_SECRET); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: undefined, authToken: mockSessionToken(), password: 'wrong-hash' }), res, null); + assert.equal(res.statusCode, 401); + assert.match(res.body.error, /Invalid Password/); +}); + +test('locks out after five failed 2FA attempts, even for a then-valid token', () => { + setupAppConfig(true, TOTP_SECRET); + const ip = nextIP(); // one shared counter key for every attempt in this test + for (let i = 0; i < 4; i++) { + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: '000000', ip: ip }), res, null); + assert.equal(res.statusCode, 401); + assert.match(res.body.error, /2FA/); + } + const fifth = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: '000000', ip: ip }), fifth, null); + assert.equal(fifth.statusCode, 401); + assert.match(fifth.body.error, /locked/); + const sixth = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: authenticator.generate(TOTP_SECRET), ip: ip }), sixth, null); + assert.equal(sixth.statusCode, 401); + assert.match(sixth.body.error, /locked/); +}); + +test('accepts password-only login when 2FA is not configured', () => { + setupAppConfig(false, ''); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: undefined }), res, null); + assert.equal(res.statusCode, 200); + assert.equal(typeof res.body.token, 'string'); +}); + +test('accepts a stale token in the request when 2FA is not configured', () => { + // Pins an intentional behavior change: previously a non-empty twoFAToken with no + // configured secret was rejected (verifyToken short-circuits on the empty secret); + // with no 2FA configured the token is now ignored entirely. + setupAppConfig(false, ''); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: '123456' }), res, null); + assert.equal(res.statusCode, 200); + assert.equal(typeof res.body.token, 'string'); +}); + +test('does not require a token when 2FA is disabled but a stale secret remains', () => { + // The login UI prompts only when enable2FA is set, so enforcing a token on a stale + // secret would lock the operator out of a UI that never asks for one. + setupAppConfig(false, TOTP_SECRET); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: undefined }), res, null); + assert.equal(res.statusCode, 200); + assert.equal(typeof res.body.token, 'string'); +}); + +test('does not enforce a token when 2FA is enabled without a secret', () => { + // Divergence is only reachable via a crafted settings update; a token could never + // verify against an empty secret, so enforcing would lock everyone out. + setupAppConfig(true, ''); + const res = mockResponse(); + authenticateUser(mockRequest({ twoFAToken: undefined }), res, null); + assert.equal(res.statusCode, 200); + assert.equal(typeof res.body.token, 'string'); +}); diff --git a/test/backend/common.test.mjs b/test/backend/common.test.mjs new file mode 100644 index 00000000..5b49f5bd --- /dev/null +++ b/test/backend/common.test.mjs @@ -0,0 +1,209 @@ +import assert from 'node:assert/strict'; +import test from 'node:test'; + +import { Common } from '../../backend/utils/common.js'; + +test('maskPasswords masks TOTP and SSO cookie secrets along with passwords', () => { + const config = { + secret2FA: 'JBSWY3DPEHPK3PXP', + multiPassHashed: 'password-hash', + SSO: { rtlSSO: 1, rtlCookiePath: '/cookie-path', cookieValue: 'live-sso-cookie' }, + nodes: [{ index: 1, authentication: { lnApiPassword: 'eclair-pass', macaroonPath: '/macaroon/path' } }] + }; + const masked = Common.maskPasswords(config); + assert.equal(masked.secret2FA, '*'.repeat(20)); + assert.equal(masked.SSO.cookieValue, '*'.repeat(20)); + assert.equal(masked.multiPassHashed, '*'.repeat(20)); + assert.equal(masked.nodes[0].authentication.lnApiPassword, '*'.repeat(20)); + // Paths are configuration, not secrets — they must stay visible for the settings UI. + assert.equal(masked.nodes[0].authentication.macaroonPath, '/macaroon/path'); + assert.equal(masked.SSO.rtlCookiePath, '/cookie-path'); +}); + +test('removeSecureData strips the SSO cookie along with the other secrets', () => { + const config = { + rtlConfFilePath: '/conf', + rtlPass: 'password-hash', + multiPassHashed: 'password-hash', + secret2FA: 'JBSWY3DPEHPK3PXP', + SSO: { rtlSSO: 1, rtlCookiePath: '/cookie-path', logoutRedirectLink: '', cookieValue: 'live-sso-cookie' }, + nodes: [{ index: 1, authentication: { macaroonPath: '/macaroon/path', runeValue: 'rune', options: {} } }] + }; + const cleaned = Common.removeSecureData(config); + assert.equal(cleaned.rtlConfFilePath, undefined); + assert.equal(cleaned.rtlPass, undefined); + assert.equal(cleaned.multiPassHashed, undefined); + assert.equal(cleaned.secret2FA, undefined); + assert.equal(cleaned.SSO.cookieValue, undefined); + // Non-secret SSO settings survive — the settings UI renders them. + assert.equal(cleaned.SSO.rtlCookiePath, '/cookie-path'); + assert.equal(cleaned.nodes[0].authentication.macaroonPath, undefined); +}); + +test('removeSecureData does not mutate its input', () => { + // cookieValue is runtime-only: if a caller ever passes the live appConfig, an in-place + // delete would wipe SSO state with no way to restore it. The function must clone. + const config = { rtlPass: 'password-hash', SSO: { cookieValue: 'live-sso-cookie' }, nodes: [] }; + Common.removeSecureData(config); + assert.equal(config.rtlPass, 'password-hash'); + assert.equal(config.SSO.cookieValue, 'live-sso-cookie'); +}); + +test('maskPasswords masks rtlPass and runeValue', () => { + const config = { + rtlPass: 'login-hash', + nodes: [{ index: 1, authentication: { runeValue: 'cln-rune' } }] + }; + const masked = Common.maskPasswords(config); + assert.equal(masked.rtlPass, '*'.repeat(20)); + assert.equal(masked.nodes[0].authentication.runeValue, '*'.repeat(20)); +}); + +test('maskPasswords tolerates null values and numeric keys without skipping secrets', () => { + // Integer-like keys order first; the recursion must not clobber its own key list, and + // typeof null === 'object' must not send it into Object.keys(null). + const config = { '1': { nested: 'value' }, lnApiPassword: 'eclair-pass', nothing: null }; + const masked = Common.maskPasswords(config); + assert.equal(masked.lnApiPassword, '*'.repeat(20)); + assert.equal(masked.nothing, null); + assert.deepEqual(masked['1'], { nested: 'value' }); +}); + +test('handleError does not echo the absolute file path to the caller', () => { + // The path belongs in the server log, not in the API response. + const err = Common.handleError({ code: 'ENOENT', path: '/secret/dir/RTL-Config.json' }, 'Test', 'Reading Config Error', { lnImplementation: 'LND', settings: {} }); + assert.equal(err.error.includes('/secret/dir'), false); + assert.equal(err.message.includes('/secret/dir'), false); +}); + +test('handleError keeps the absolute path out of controller-wrapped errors too', () => { + // RTLConf handlers pass { statusCode, message, error: errRes } wrappers; the response + // must resolve to the caller's generic message, never the wrapped fs error's path. + const err = Common.handleError( + { statusCode: 500, message: 'Reading File Error', error: { code: 'ENOENT', path: '/secret/dir/x.bak' } }, + 'Test', 'Reading File Error', { lnImplementation: 'LND', settings: {} } + ); + assert.equal(err.error.includes('/secret/dir'), false); + assert.equal(err.message.includes('/secret/dir'), false); +}); + +test('maskPasswords masks every value under a headers key', () => { + // Header values are always credential carriers here (macaroon, rune, basic auth), and + // key-substring matching cannot catch them without also hiding *Path fields. + const config = { + authentication: { + macaroonPath: '/visible/path', + options: { headers: { 'Grpc-Metadata-macaroon': 'deadbeef', rune: 'cln-rune', authorization: 'Basic xyz' } } + } + }; + const masked = Common.maskPasswords(config); + assert.equal(masked.authentication.options.headers['Grpc-Metadata-macaroon'], '*'.repeat(20)); + assert.equal(masked.authentication.options.headers.rune, '*'.repeat(20)); + assert.equal(masked.authentication.options.headers.authorization, '*'.repeat(20)); + assert.equal(masked.authentication.macaroonPath, '/visible/path'); +}); + +const seedAppConfig = () => { + Common.appConfig = { + defaultNodeIndex: 0, + selectedNodeIndex: 0, + rtlConfFilePath: '/conf', + dbDirectoryPath: '/db', + rtlPass: 'server-hash', + allowPasswordUpdate: true, + enable2FA: true, + secret2FA: 'server-seed', + disableAuth: false, + SSO: { rtlSSO: 0, rtlCookiePath: '/server-cookie', logoutRedirectLink: 'https://server-logout', cookieValue: 'server-cookie' }, + nodes: [] + }; + Common.selectedNode = null; + Common.nodes = []; +}; + +test('addSecureData pins disableAuth and the SSO object to server-held values', () => { + // The settings API must not be able to flip the authentication mode or move SSO fields; + // client-supplied values for these are deployment-level switches, not settings. + seedAppConfig(); + const config = Common.addSecureData({ + disableAuth: true, + SSO: { rtlSSO: 1, rtlCookiePath: '/client-path', logoutRedirectLink: 'https://client', cookieValue: 'client-cookie' }, + secret2FA: 'client-seed', + nodes: [] + }); + assert.equal(config.disableAuth, false); + assert.deepEqual(config.SSO, { rtlSSO: 0, rtlCookiePath: '/server-cookie', logoutRedirectLink: 'https://server-logout', cookieValue: 'server-cookie' }); + // An explicit non-empty seed is the settings UI's enable flow and is honored. + assert.equal(config.secret2FA, 'client-seed'); + assert.equal(config.enable2FA, true); +}); + +test('addSecureData restores an omitted TOTP seed and derives enable2FA from the seed', () => { + seedAppConfig(); + const config = Common.addSecureData({ nodes: [] }); + assert.equal(config.secret2FA, 'server-seed'); + assert.equal(config.enable2FA, true); +}); + +test('addSecureData treats an empty seed with 2FA claimed on as an omission', () => { + // The pre-login config response shape carries secret2FA: ''; echoing it must not wipe + // the seed while enable2FA stays on. + seedAppConfig(); + const config = Common.addSecureData({ secret2FA: '', enable2FA: true, nodes: [] }); + assert.equal(config.secret2FA, 'server-seed'); + assert.equal(config.enable2FA, true); +}); + +test('addSecureData honors an explicit seed wipe only when 2FA is disabled', () => { + // The settings UI's disable flow sends secret2FA: '' together with enable2FA: false. + seedAppConfig(); + const config = Common.addSecureData({ secret2FA: '', enable2FA: false, nodes: [] }); + assert.equal(config.secret2FA, ''); + assert.equal(config.enable2FA, false); +}); + +test('addSecureData does not pin an undefined multiPassHashed over the persisted one', () => { + // First-boot state of a default install: the file already holds multiPassHashed (the + // boot converted it), but the in-memory appConfig still holds plaintext multiPass and + // no hash. Pinning undefined here would erase the only password from the file on save + // and brick the next boot. + seedAppConfig(); + Common.appConfig.multiPassHashed = undefined; + Common.appConfig.multiPass = 'password'; + const config = Common.addSecureData({ nodes: [] }); + assert.equal(Object.prototype.hasOwnProperty.call(config, 'multiPassHashed'), false); + assert.equal(config.multiPass, 'password'); +}); + +test('addSecureData pins multiPassHashed when the server holds one', () => { + seedAppConfig(); + Common.appConfig.multiPassHashed = 'server-hash-value'; + const config = Common.addSecureData({ multiPassHashed: 'client-value', nodes: [] }); + assert.equal(config.multiPassHashed, 'server-hash-value'); +}); + +test('addSecureData pins allowPasswordUpdate and dbDirectoryPath to server-held values', () => { + // allowPasswordUpdate is false precisely when the password is environment-managed, and + // dbDirectoryPath redirects the runtime database — neither is writable from the UI. + seedAppConfig(); + Common.appConfig.allowPasswordUpdate = false; + Common.appConfig.dbDirectoryPath = '/server-db'; + const config = Common.addSecureData({ allowPasswordUpdate: true, dbDirectoryPath: '/client-db', nodes: [] }); + assert.equal(config.allowPasswordUpdate, false); + assert.equal(config.dbDirectoryPath, '/server-db'); +}); + +test('maskPasswords masks bitcoind rpcauth', () => { + const config = { rpcauth: 'user:salt$hmac', rpcuser: 'user', rpcpassword: 'pass' }; + const masked = Common.maskPasswords(config); + assert.equal(masked.rpcauth, '*'.repeat(20)); + assert.equal(masked.rpcuser, '*'.repeat(20)); + assert.equal(masked.rpcpassword, '*'.repeat(20)); +}); + +test('maskPasswords does not mutate its input', () => { + // Masking a live object must not blank the credentials LN requests authenticate with. + const config = { authentication: { options: { headers: { 'Grpc-Metadata-macaroon': 'deadbeef' } } } }; + Common.maskPasswords(config); + assert.equal(config.authentication.options.headers['Grpc-Metadata-macaroon'], 'deadbeef'); +}); diff --git a/test/backend/eclair-channels.test.mjs b/test/backend/eclair-channels.test.mjs new file mode 100644 index 00000000..a1e811e2 --- /dev/null +++ b/test/backend/eclair-channels.test.mjs @@ -0,0 +1,62 @@ +import assert from 'node:assert/strict'; +import { mkdtempSync, readFileSync, rmSync, writeFileSync } from 'node:fs'; +import { tmpdir } from 'node:os'; +import { join } from 'node:path'; +import test from 'node:test'; + +import { getChannels } from '../../backend/controllers/eclair/channels.js'; + +// Eclair authenticates with HTTP basic auth, so the request options carry the node's +// lnApiPassword in the authorization header. A DEBUG log of the whole options object +// therefore writes a recoverable credential into the node log file. +const buildRequest = (logFile) => ({ + session: { + selectedNode: { + index: 1, + lnNode: 'eclair-node', + lnImplementation: 'ECL', + authentication: { + options: { + url: '', + rejectUnauthorized: false, + json: true, + headers: { authorization: 'Basic ' + Buffer.from(':super-secret-password').toString('base64') } + } + }, + settings: { lnServerUrl: 'http://127.0.0.1:1/', logLevel: 'DEBUG', logFile: logFile } + } + }, + query: {} +}); + +const waitForLog = async (logFile) => { + // logger.log appends asynchronously; give it a few turns to flush. + for (let i = 0; i < 40; i++) { + const contents = readFileSync(logFile, 'utf-8'); + if (contents.includes('Channels =>')) { return contents; } + await new Promise((resolve) => setTimeout(resolve, 25)); + } + return readFileSync(logFile, 'utf-8'); +}; + +test('getChannels does not write the eclair auth header to the node log at DEBUG level', async () => { + const tempDir = mkdtempSync(join(tmpdir(), 'ecl-channels-')); + const logFile = join(tempDir, 'RTL-Node-1.log'); + writeFileSync(logFile, ''); + const req = buildRequest(logFile); + const res = { status: () => ({ json: () => { } }) }; + + try { + getChannels(req, res, () => { }); + const contents = await waitForLog(logFile); + + assert.ok(contents.includes('Channels =>'), 'expected the controller to have logged at DEBUG level'); + assert.ok(!contents.includes('authorization'), 'auth header key must not reach the node log'); + assert.ok(!contents.includes('super-secret-password'), 'lnApiPassword must not reach the node log'); + assert.ok(!contents.includes(Buffer.from(':super-secret-password').toString('base64')), 'encoded credential must not reach the node log'); + // The diagnostic value of the log — where the call went — is still there. + assert.ok(contents.includes('/channels'), 'request url should still be logged for diagnostics'); + } finally { + rmSync(tempDir, { force: true, recursive: true }); + } +}); diff --git a/test/backend/rtlconf.test.mjs b/test/backend/rtlconf.test.mjs new file mode 100644 index 00000000..3aafeb1a --- /dev/null +++ b/test/backend/rtlconf.test.mjs @@ -0,0 +1,602 @@ +import assert from 'node:assert/strict'; +import { chmodSync, mkdirSync, mkdtempSync, readFileSync, rmSync, statSync, writeFileSync } from 'node:fs'; +import { tmpdir } from 'node:os'; +import { join, sep } from 'node:path'; +import test from 'node:test'; + +import { updateApplicationSettings, updateNodeSettings, getFile } from '../../backend/controllers/shared/RTLConf.js'; +import { Common } from '../../backend/utils/common.js'; +import { WSServer } from '../../backend/utils/webSocketServer.js'; + +const clone = (value) => JSON.parse(JSON.stringify(value)); + +test('updateApplicationSettings preserves indexed node auth and sanitizes only persisted config', () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-')); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '/cookie', logoutRedirectLink: '', cookieValue: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + }, + { + index: 2, + lnNode: 'cln-secondary', + lnImplementation: 'CLN', + authentication: { runePath: '/cln/rune' }, + settings: { userPersona: 'MERCHANT', themeMode: 'NIGHT', blockExplorerUrl: 'https://old.example' } + } + ] + }; + const runtimeConfig = clone({ + ...oldConfig, + selectedNodeIndex: 2, + enable2FA: true, + allowPasswordUpdate: true, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + multiPassHashed: 'multi-pass-hash', + nodes: [ + { + ...oldConfig.nodes[0], + authentication: { + ...oldConfig.nodes[0].authentication, + options: { headers: { 'Grpc-Metadata-macaroon': 'runtime-lnd-macaroon' } } + } + }, + { + ...oldConfig.nodes[1], + authentication: { + ...oldConfig.nodes[1].authentication, + runeValue: 'runtime-rune', + options: { headers: { rune: 'runtime-rune' } } + } + } + ] + }); + const requestBody = { + defaultNodeIndex: 0, + selectedNodeIndex: 2, + enable2FA: false, + allowPasswordUpdate: false, + dbDirectoryPath: '/db-updated', + secret2FA: '', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' }, + nodes: [ + { + index: 2, + lnNode: 'cln-secondary', + lnImplementation: 'CLN', + authentication: { swapMacaroonPath: '/loop/cln' }, + settings: { themeMode: 'DAY' } + }, + { + index: 5, + lnNode: 'new-lnd', + lnImplementation: 'LND', + authentication: { macaroonPath: '/new-lnd/admin' }, + settings: { userPersona: 'OPERATOR' } + } + ] + }; + + try { + Common.appConfig = clone(runtimeConfig); + Common.nodes = clone(runtimeConfig.nodes); + Common.selectedNode = Common.nodes[1]; + writeFileSync(join(tempDir, 'RTL-Config.json'), JSON.stringify(oldConfig, null, 2), 'utf-8'); + + let responseStatus; + let responseBody; + updateApplicationSettings( + { body: clone(requestBody), session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { + json: (body) => { + responseBody = body; + } + }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + assert.deepEqual(Common.appConfig.nodes.map((node) => node.index), [0, 2, 5]); + + const runtimeClnNode = Common.appConfig.nodes[1]; + assert.equal(runtimeClnNode.authentication.runePath, '/cln/rune'); + assert.equal(runtimeClnNode.authentication.macaroonPath, undefined); + assert.equal(runtimeClnNode.authentication.runeValue, 'runtime-rune'); + assert.deepEqual(runtimeClnNode.authentication.options, { headers: { rune: 'runtime-rune' } }); + assert.equal(runtimeClnNode.authentication.swapMacaroonPath, '/loop/cln'); + assert.equal(runtimeClnNode.settings.themeMode, 'DAY'); + assert.equal(runtimeClnNode.settings.blockExplorerUrl, 'https://old.example'); + + const fileConfig = JSON.parse(readFileSync(join(tempDir, 'RTL-Config.json'), 'utf-8')); + assert.deepEqual(fileConfig.nodes.map((node) => node.index), [0, 2, 5]); + assert.equal(fileConfig.rtlPass, undefined); + assert.equal(fileConfig.rtlConfFilePath, undefined); + assert.equal(fileConfig.selectedNodeIndex, undefined); + assert.equal(fileConfig.enable2FA, undefined); + assert.equal(fileConfig.allowPasswordUpdate, undefined); + assert.equal(fileConfig.nodes[1].authentication.runePath, '/cln/rune'); + assert.equal(fileConfig.nodes[1].authentication.macaroonPath, undefined); + assert.equal(fileConfig.nodes[1].authentication.runeValue, undefined); + assert.equal(fileConfig.nodes[1].authentication.options, undefined); + assert.equal(responseBody.nodes[1].authentication.runePath, undefined); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateApplicationSettings keeps the SSO cookie server-side without exposing or persisting it', () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-sso-')); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 1, rtlCookiePath: '/cookie-path', logoutRedirectLink: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + } + ] + }; + const runtimeConfig = clone({ + ...oldConfig, + selectedNodeIndex: 0, + enable2FA: false, + allowPasswordUpdate: true, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + SSO: { rtlSSO: 1, rtlCookiePath: '/cookie-path', logoutRedirectLink: '', cookieValue: 'live-sso-cookie' } + }); + // The request carries only what the sanitized client can have seen: no cookieValue. + // The server must re-attach it — a settings save must never wipe the live cookie — + // while keeping it out of both the response and the persisted file. + const requestBody = { + ...clone(oldConfig), + selectedNodeIndex: 0, + enable2FA: false, + allowPasswordUpdate: true, + SSO: { rtlSSO: 1, rtlCookiePath: '/cookie-path', logoutRedirectLink: '' } + }; + + try { + Common.appConfig = clone(runtimeConfig); + Common.nodes = clone(runtimeConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(join(tempDir, 'RTL-Config.json'), JSON.stringify(oldConfig, null, 2), 'utf-8'); + + let responseStatus; + let responseBody; + updateApplicationSettings( + { body: clone(requestBody), session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { + json: (body) => { + responseBody = body; + } + }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + assert.equal(Common.appConfig.SSO.cookieValue, 'live-sso-cookie'); + assert.equal(Common.appConfig.SSO.rtlCookiePath, '/cookie-path'); + const fileConfig = JSON.parse(readFileSync(join(tempDir, 'RTL-Config.json'), 'utf-8')); + assert.equal(fileConfig.SSO.cookieValue, undefined); + assert.equal(responseBody.SSO.cookieValue, undefined); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateApplicationSettings restores omitted secret2FA and merges a trimmed SSO object', () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-secrets-')); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '/cookie-path', logoutRedirectLink: 'https://logout.example' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + } + ] + }; + const runtimeConfig = clone({ + ...oldConfig, + selectedNodeIndex: 0, + enable2FA: true, + allowPasswordUpdate: true, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + secret2FA: 'live-totp-seed', + SSO: { rtlSSO: 0, rtlCookiePath: '/cookie-path', logoutRedirectLink: 'https://logout.example', cookieValue: 'live-sso-cookie' } + }); + // Sanitized responses carry neither secret2FA nor cookieValue, so an echoing client + // omits both; a trimmed SSO object also lacks logoutRedirectLink. All three must + // survive the save server-side. + const requestBody = { + ...clone(oldConfig), + selectedNodeIndex: 0, + enable2FA: true, + allowPasswordUpdate: true, + SSO: { rtlSSO: 0 } + }; + + try { + Common.appConfig = clone(runtimeConfig); + Common.nodes = clone(runtimeConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(join(tempDir, 'RTL-Config.json'), JSON.stringify(oldConfig, null, 2), 'utf-8'); + + let responseStatus; + updateApplicationSettings( + { body: clone(requestBody), session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { json: () => {} }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + assert.equal(Common.appConfig.secret2FA, 'live-totp-seed'); + assert.equal(Common.appConfig.enable2FA, true); + assert.equal(Common.appConfig.SSO.cookieValue, 'live-sso-cookie'); + assert.equal(Common.appConfig.SSO.logoutRedirectLink, 'https://logout.example'); + assert.equal(Common.appConfig.SSO.rtlSSO, 0); + const fileConfig = JSON.parse(readFileSync(join(tempDir, 'RTL-Config.json'), 'utf-8')); + assert.equal(fileConfig.SSO.cookieValue, undefined); + assert.equal(fileConfig.secret2FA, 'live-totp-seed'); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateApplicationSettings tolerates a request body without an SSO object', () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-nosso-')); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + } + ] + }; + const requestBody = clone(oldConfig); + delete requestBody.SSO; + + try { + Common.appConfig = clone({ + ...oldConfig, + selectedNodeIndex: 0, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' } + }); + Common.nodes = clone(oldConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(join(tempDir, 'RTL-Config.json'), JSON.stringify(oldConfig, null, 2), 'utf-8'); + + let responseStatus; + updateApplicationSettings( + { body: requestBody, session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { json: () => {} }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + assert.equal(typeof Common.appConfig.SSO, 'object'); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateApplicationSettings leaves the runtime config untouched when the file write fails', () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-writefail-')); + const confPath = join(tempDir, 'RTL-Config.json'); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '/cookie-path', logoutRedirectLink: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + } + ] + }; + const runtimeConfig = clone({ + ...oldConfig, + selectedNodeIndex: 0, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + secret2FA: 'live-totp-seed', + SSO: { rtlSSO: 0, rtlCookiePath: '/cookie-path', logoutRedirectLink: '', cookieValue: 'live-sso-cookie' } + }); + const requestBody = { + ...clone(oldConfig), + selectedNodeIndex: 0, + SSO: { rtlSSO: 0 }, + nodes: [{ ...clone(oldConfig.nodes[0]), settings: { themeMode: 'NIGHT' } }] + }; + + try { + Common.appConfig = clone(runtimeConfig); + Common.nodes = clone(runtimeConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(confPath, JSON.stringify(oldConfig, null, 2), 'utf-8'); + // Both write paths must fail: a read-only dir defeats the temp-file write, and a + // read-only file defeats the in-place fallback. + chmodSync(confPath, 0o444); + chmodSync(tempDir, 0o555); + + let responseStatus = null; + updateApplicationSettings( + { body: clone(requestBody), session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { json: () => {} }; + } + }, + null + ); + + assert.equal(responseStatus, 500); + // The failed write must not have committed the prospective config in memory either. + assert.equal(Common.appConfig.secret2FA, 'live-totp-seed'); + assert.equal(Common.appConfig.SSO.cookieValue, 'live-sso-cookie'); + assert.equal(Common.appConfig.nodes[0].settings.themeMode, 'DAY'); + // And the on-disk file still parses as the pre-call config. + const onDisk = JSON.parse(readFileSync(confPath, 'utf-8')); + assert.equal(onDisk.nodes.length, 1); + } finally { + clearInterval(WSServer.pingInterval); + chmodSync(confPath, 0o644); + chmodSync(tempDir, 0o755); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateApplicationSettings preserves the config file mode across the atomic write', () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-mode-')); + const confPath = join(tempDir, 'RTL-Config.json'); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + } + ] + }; + + try { + Common.appConfig = clone({ + ...oldConfig, + selectedNodeIndex: 0, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' } + }); + Common.nodes = clone(oldConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(confPath, JSON.stringify(oldConfig, null, 2), 'utf-8'); + chmodSync(confPath, 0o600); // operator-hardened; must not be silently downgraded + + let responseStatus = null; + updateApplicationSettings( + { body: clone(oldConfig), session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { json: () => {} }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + assert.equal(statSync(confPath).mode & 0o777, 0o600); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateApplicationSettings falls back to an in-place write when the rename fails', () => { + // Single-file bind mounts and symlinks cannot be renamed over; the save must still work. + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-fallback-')); + const confPath = join(tempDir, 'RTL-Config.json'); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY' } + } + ] + }; + + try { + Common.appConfig = clone({ + ...oldConfig, + selectedNodeIndex: 0, + rtlConfFilePath: tempDir, + rtlPass: 'hashed-password', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '', cookieValue: '' } + }); + Common.nodes = clone(oldConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(confPath, JSON.stringify(oldConfig, null, 2), 'utf-8'); + chmodSync(confPath, 0o600); + mkdirSync(confPath + '.tmp'); // forces the temp write to fail, exercising the fallback + + let responseStatus = null; + updateApplicationSettings( + { body: clone(oldConfig), session: { selectedNode: Common.selectedNode } }, + { + status: (status) => { + responseStatus = status; + return { json: () => {} }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + assert.equal(statSync(confPath).mode & 0o777, 0o600); // in-place write keeps the inode + assert.deepEqual(JSON.parse(readFileSync(confPath, 'utf-8')).nodes.length, 1); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('updateNodeSettings pins channelBackupPath to the server-held value', () => { + // channelBackupPath anchors getFile's containment root; accepting it from the request + // would let the caller being contained choose the containment base. + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-nodesettings-')); + const oldConfig = { + defaultNodeIndex: 0, + dbDirectoryPath: '/db', + SSO: { rtlSSO: 0, rtlCookiePath: '', logoutRedirectLink: '' }, + nodes: [ + { + index: 0, + lnNode: 'lnd-main', + lnImplementation: 'LND', + authentication: { macaroonPath: '/lnd/admin' }, + settings: { userPersona: 'OPERATOR', themeMode: 'DAY', channelBackupPath: '/server/backups' } + } + ] + }; + + try { + Common.appConfig = clone({ ...oldConfig, rtlConfFilePath: tempDir }); + Common.nodes = clone(oldConfig.nodes); + Common.selectedNode = Common.nodes[0]; + writeFileSync(join(tempDir, 'RTL-Config.json'), JSON.stringify(oldConfig, null, 2), 'utf-8'); + + let responseStatus = null; + updateNodeSettings( + { + body: { settings: { themeMode: 'NIGHT', channelBackupPath: tempDir } }, + session: { selectedNode: Common.nodes[0] } + }, + { + status: (status) => { + responseStatus = status; + return { json: () => {} }; + } + }, + null + ); + + assert.equal(responseStatus, 201); + const fileNode = JSON.parse(readFileSync(join(tempDir, 'RTL-Config.json'), 'utf-8')).nodes[0]; + assert.equal(fileNode.settings.channelBackupPath, '/server/backups'); + assert.equal(fileNode.settings.themeMode, 'NIGHT'); // other settings still merge + assert.equal(Common.nodes[0].settings.channelBackupPath, '/server/backups'); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); + +test('getFile contains caller paths to the channel backup directory', async () => { + const tempDir = mkdtempSync(join(tmpdir(), 'rtlconf-getfile-')); + const backupDir = join(tempDir, 'backups'); + mkdirSync(backupDir); + writeFileSync(join(tempDir, 'secret.bak'), 'top-secret', 'utf-8'); + writeFileSync(join(backupDir, 'channel-1x2x3.bak'), 'backup-data', 'utf-8'); + const session = { selectedNode: { lnImplementation: 'LND', settings: { channelBackupPath: backupDir } } }; + const mockRes = () => { + const res = { statusCode: null, body: null }; + res.status = (code) => { + res.statusCode = code; + return { json: (body) => { res.body = body; } }; + }; + return res; + }; + + try { + // An escaping path is rejected before any read. + const rejected = mockRes(); + getFile({ query: { path: join(tempDir, 'secret.bak') }, session }, rejected, null); + assert.equal(rejected.statusCode, 403); + + // A contained path is served. + const served = mockRes(); + await new Promise((resolve) => { + const res = { status: (code) => { served.statusCode = code; return { json: (body) => { served.body = body; resolve(); } }; } }; + getFile({ query: { path: join(backupDir, 'channel-1x2x3.bak') }, session }, res, null); + }); + assert.equal(served.statusCode, 200); + assert.equal(served.body, 'backup-data'); + + // A contained but missing file returns a path-free error (the ENOENT branch). + const missing = mockRes(); + await new Promise((resolve) => { + const res = { status: (code) => { missing.statusCode = code; return { json: (body) => { missing.body = body; resolve(); } }; } }; + getFile({ query: { path: join(backupDir, 'channel-missing.bak') }, session }, res, null); + }); + assert.equal(missing.statusCode, 500); + assert.equal(JSON.stringify(missing.body).includes(backupDir), false); + } finally { + clearInterval(WSServer.pingInterval); + rmSync(tempDir, { force: true, recursive: true }); + } +}); diff --git a/tsconfig.json b/tsconfig.json index 1ea81f1a..6a6dd493 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,6 @@ "compileOnSave": false, "compilerOptions": { "baseUrl": "./", - "outDir": "./backend", "forceConsistentCasingInFileNames": true, "allowSyntheticDefaultImports": true, "strict": false, @@ -17,21 +16,15 @@ "declaration": false, "downlevelIteration": true, "experimentalDecorators": true, - "moduleResolution": "node", - "importHelpers": true, + "moduleResolution": "bundler", "target": "ES2022", "module": "ES2022", + "importHelpers": true, "useDefineForClassFields": false, "lib": [ "ES2022", "dom" - ], - "paths": { - "crypto": ["node_modules/crypto-browserify"], - "stream": ["node_modules/stream-browserify"], - "vm": ["node_modules/vm-browserify"], - "process": ["node_modules/process/browser"] - } + ] }, "include": [ "./server/**/*",